You can subscribe to this list here.
| 2005 |
Jan
|
Feb
|
Mar
(95) |
Apr
(270) |
May
(111) |
Jun
|
Jul
|
Aug
(64) |
Sep
(130) |
Oct
(319) |
Nov
(17) |
Dec
(191) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2006 |
Jan
(53) |
Feb
|
Mar
|
Apr
|
May
(6) |
Jun
(387) |
Jul
(102) |
Aug
(247) |
Sep
(120) |
Oct
(1) |
Nov
(8) |
Dec
(21) |
| 2007 |
Jan
(38) |
Feb
(36) |
Mar
|
Apr
(32) |
May
(135) |
Jun
(523) |
Jul
(192) |
Aug
(103) |
Sep
(533) |
Oct
(77) |
Nov
(23) |
Dec
(203) |
| 2008 |
Jan
(312) |
Feb
(1193) |
Mar
(404) |
Apr
(67) |
May
(62) |
Jun
(497) |
Jul
(297) |
Aug
(110) |
Sep
(335) |
Oct
(256) |
Nov
(50) |
Dec
(118) |
| 2009 |
Jan
(67) |
Feb
(10) |
Mar
(1) |
Apr
(1) |
May
|
Jun
(10) |
Jul
(61) |
Aug
|
Sep
(16) |
Oct
(45) |
Nov
(12) |
Dec
(14) |
| 2010 |
Jan
(30) |
Feb
|
Mar
|
Apr
(4) |
May
|
Jun
|
Jul
(7) |
Aug
(7) |
Sep
(5) |
Oct
(5) |
Nov
|
Dec
|
| 2011 |
Jan
(7) |
Feb
(3) |
Mar
(89) |
Apr
(11) |
May
(5) |
Jun
|
Jul
(8) |
Aug
(1) |
Sep
(2) |
Oct
|
Nov
(2) |
Dec
(89) |
| 2012 |
Jan
(7) |
Feb
(1) |
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
(4) |
Sep
(3) |
Oct
(42) |
Nov
(1) |
Dec
|
| 2013 |
Jan
|
Feb
|
Mar
(19) |
Apr
(90) |
May
(38) |
Jun
(235) |
Jul
(38) |
Aug
(10) |
Sep
|
Oct
(29) |
Nov
|
Dec
|
| 2014 |
Jan
|
Feb
|
Mar
|
Apr
(6) |
May
(52) |
Jun
|
Jul
(7) |
Aug
|
Sep
(17) |
Oct
|
Nov
|
Dec
|
|
From: FlorinCB <ory...@us...> - 2008-09-17 02:48:17
|
Update of /cvsroot/mxbb/mx_pafiledb/pafiledb/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv28310 Modified Files: functions.php functions_pafiledb.php Log Message: fixed this since is not supported now for long time Index: functions.php =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/pafiledb/includes/functions.php,v retrieving revision 1.47 retrieving revision 1.48 diff -C2 -d -r1.47 -r1.48 *** functions.php 15 Jul 2008 22:07:10 -0000 1.47 --- functions.php 17 Sep 2008 09:48:08 -0000 1.48 *************** *** 680,685 **** $path = $url['path']; $port = ( !empty( $url['port'] ) ) ? $url['port'] : 80; ! $fp = @fsockopen( $host, $port, &$errno, &$errstr, 20 ); if ( !$fp ) --- 680,687 ---- $path = $url['path']; $port = ( !empty( $url['port'] ) ) ? $url['port'] : 80; + $errno = ''; + $errstr = ''; ! $fp = @fsockopen( $host, $port, $errno, $errstr, 20 ); if ( !$fp ) Index: functions_pafiledb.php =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/pafiledb/includes/functions_pafiledb.php,v retrieving revision 1.55 retrieving revision 1.56 diff -C2 -d -r1.55 -r1.56 *** functions_pafiledb.php 3 Jun 2008 20:17:07 -0000 1.55 --- functions_pafiledb.php 17 Sep 2008 09:48:09 -0000 1.56 *************** *** 195,199 **** $cat_nav = array(); ! $this->category_nav( $this->cat_rowset[$cat_id]['cat_parent'], &$cat_nav ); $sql = 'UPDATE ' . PA_CATEGORY_TABLE . " --- 195,199 ---- $cat_nav = array(); ! $this->category_nav( $this->cat_rowset[$cat_id]['cat_parent'], $cat_nav ); $sql = 'UPDATE ' . PA_CATEGORY_TABLE . " *************** *** 230,238 **** * @param unknown_type $cat_nav */ ! function category_nav( $parent_id, &$cat_nav ) { if ( !empty( $this->cat_rowset[$parent_id] ) ) { ! $this->category_nav( $this->cat_rowset[$parent_id]['cat_parent'], &$cat_nav ); $cat_nav[$parent_id] = $this->cat_rowset[$parent_id]['cat_name']; } --- 230,238 ---- * @param unknown_type $cat_nav */ ! function category_nav( $parent_id, $cat_nav ) { if ( !empty( $this->cat_rowset[$parent_id] ) ) { ! $this->category_nav( $this->cat_rowset[$parent_id]['cat_parent'], $cat_nav ); $cat_nav[$parent_id] = $this->cat_rowset[$parent_id]['cat_name']; } *************** *** 455,459 **** { $cat_nav = array(); ! $this->category_nav( $this->cat_rowset[$cat_id]['cat_parent'], &$cat_nav ); $sql = 'UPDATE ' . PA_CATEGORY_TABLE . " --- 455,459 ---- { $cat_nav = array(); ! $this->category_nav( $this->cat_rowset[$cat_id]['cat_parent'], $cat_nav ); $sql = 'UPDATE ' . PA_CATEGORY_TABLE . " |
|
From: FlorinCB <ory...@us...> - 2008-09-17 01:25:00
|
Update of /cvsroot/mxbb/core/install/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv14943/includes Modified Files: functions_install.php Log Message: mysql 6.x schema added Index: functions_install.php =================================================================== RCS file: /cvsroot/mxbb/core/install/includes/functions_install.php,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** functions_install.php 17 Sep 2008 07:56:44 -0000 1.18 --- functions_install.php 17 Sep 2008 08:24:23 -0000 1.19 *************** *** 85,88 **** --- 85,98 ---- // '2.0.x' => false, // ), + 'mysql6' => array( + 'LABEL' => 'MySQL 6.x', + 'SCHEMA' => 'mysql_61', + 'MODULE' => 'mysqli', + 'DELIM' => ';', + 'COMMENTS' => 'remove_remarks', + 'DRIVER' => 'mysqli', + 'AVAILABLE' => true, + '2.0.x' => true, + ), 'mysqli' => array( 'LABEL' => 'MySQL with MySQLi Extension', *************** *** 114,118 **** 'AVAILABLE' => true, '2.0.x' => true, ! ), // 'mssql' => array( // 'LABEL' => 'MS SQL Server 2000+', --- 124,128 ---- 'AVAILABLE' => true, '2.0.x' => true, ! ), // 'mssql' => array( // 'LABEL' => 'MS SQL Server 2000+', |
|
From: FlorinCB <ory...@us...> - 2008-09-17 01:24:33
|
Update of /cvsroot/mxbb/core/install/schemas In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv14943/schemas Added Files: mysql_61_schema_install.sql Log Message: mysql 6.x schema added --- NEW FILE: mysql_61_schema_install.sql --- # MySQL-Front Dump 2.4 # # Host: localhost Database: MX-Publisher #-------------------------------------------------------- # # Table structure for table 'mx_table_block' # DROP TABLE IF EXISTS `mx_table_block`; CREATE TABLE `mx_table_block` ( `block_id` smallint(5) unsigned NOT NULL auto_increment, `block_title` varchar(150), `block_desc` text, `function_id` smallint(5) unsigned, `auth_view` tinyint(2) NOT NULL DEFAULT '0', `auth_edit` tinyint(2) NOT NULL DEFAULT '0', `auth_delete` tinyint(2) NOT NULL DEFAULT '0', `auth_view_group` varchar(255) NOT NULL DEFAULT '0', `auth_edit_group` varchar(255) NOT NULL DEFAULT '0', `auth_delete_group` varchar(255) NOT NULL DEFAULT '0', `auth_moderator_group` varchar(255) NOT NULL DEFAULT '0', `show_title` tinyint(2) unsigned NOT NULL DEFAULT '1', `show_block` tinyint(2) unsigned NOT NULL DEFAULT '1', `show_stats` tinyint(2) unsigned NOT NULL DEFAULT '0', `block_time` varchar(255) NOT NULL DEFAULT '', `block_editor_id` mediumint(8) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`block_id`) ) CHARACTER SET `utf8` COLLATE `utf8mb3_bin`; # # Dumping data for table 'mx_table_block' # INSERT INTO `mx_table_block` VALUES("1", "Demo Page 3", "Demo", "24", "0", "5", "0", "0", "0", "0", "0", "1", "1", "0", "1202765204", "2"); INSERT INTO `mx_table_block` VALUES("2", "Split Block", "This is a Demo Block", "11", "0", "5", "0", "0", "0", "0", "0", "1", "1", "0", "1202598000", "2"); INSERT INTO `mx_table_block` VALUES("3", "Site Log", "This is a Demo Block", "10", "0", "5", "0", "0", "0", "0", "0", "1", "1", "0", "1202598000", "2"); INSERT INTO `mx_table_block` VALUES("4", "Demo page", "SubBlocks", "3", "0", "5", "0", "0", "0", "0", "0", "1", "1", "0", "1202761342", "2"); INSERT INTO `mx_table_block` VALUES("7", "Language Select", "This is a Demo Block", "6", "0", "5", "0", "0", "0", "0", "0", "1", "1", "0", "1202598000", "2"); INSERT INTO `mx_table_block` VALUES("8", "Navigation Menu", "This is a vertical Navigation Menu Demo Block", "51", "0", "5", "0", "0", "0", "0", "0", "1", "1", "0", "1202598000", "2"); INSERT INTO `mx_table_block` VALUES("9", "Demo Page 5 - Custom", "Demo", "22", "0", "5", "0", "0", "0", "0", "0", "1", "1", "0", "1202761540", "2"); INSERT INTO `mx_table_block` VALUES("10", "Demo Page 4 - wysiwyg", "Demo", "23", "0", "5", "0", "0", "0", "0", "0", "1", "1", "1", "1202761496", "2"); INSERT INTO `mx_table_block` VALUES("13", "Login", "This is a Demo Block", "7", "9", "5", "0", "0", "0", "0", "0", "1", "1", "0", "1202598000", "2"); INSERT INTO `mx_table_block` VALUES("14", "Theme Select", "This is a Demo Block", "12", "0", "5", "0", "0", "0", "0", "0", "1", "1", "0", "1202598000", "2"); INSERT INTO `mx_table_block` VALUES("15", "Site Search", "Site Search", "15", "0", "5", "0", "0", "0", "0", "0", "1", "1", "0", "1202598000", "2"); INSERT INTO `mx_table_block` VALUES("19", "Who is Online?", "This is a Demo Block", "13", "5", "5", "0", "0", "0", "0", "0", "1", "1", "0", "1202763740", "2"); INSERT INTO `mx_table_block` VALUES("21", "Google", "This is a Demo Block", "4", "0", "5", "0", "0", "0", "0", "0", "1", "1", "0", "1202598000", "2"); INSERT INTO `mx_table_block` VALUES("32", "Demo page", "", "51", "0", "5", "0", "0", "0", "0", "0", "1", "1", "0", "1202761705", "2"); INSERT INTO `mx_table_block` VALUES("27", "IncludeX", "This is a Demo Block", "5", "0", "5", "0", "0", "0", "0", "0", "1", "1", "0", "1202598000", "2"); INSERT INTO `mx_table_block` VALUES("28", "Welcome", "This is the welcome block", "24", "0", "5", "0", "0", "0", "0", "0", "1", "1", "0", "1202766730", "2"); INSERT INTO `mx_table_block` VALUES("29", "Demo Page 1", "Demo", "24", "0", "5", "0", "0", "0", "0", "0", "1", "1", "0", "1202765153", "2"); INSERT INTO `mx_table_block` VALUES("30", "Demo Page 2", "Demo", "24", "0", "5", "0", "0", "0", "0", "0", "1", "1", "0", "1202765190", "2"); INSERT INTO `mx_table_block` VALUES("31", "Page Navigation", "This is a page navigation menu", "52", "0", "5", "0", "0", "0", "0", "0", "1", "1", "0", "1202598000", "2"); # # Table structure for table 'mx_table_block_system_parameter' # DROP TABLE IF EXISTS `mx_table_block_system_parameter`; CREATE TABLE `mx_table_block_system_parameter` ( `block_id` smallint(5) unsigned NOT NULL default '0', `parameter_id` smallint(5) unsigned NOT NULL default '0', `parameter_value` mediumtext, `parameter_opt` text, `sub_id` int(255) unsigned NOT NULL default '0', PRIMARY KEY (`block_id`,`parameter_id`,`sub_id`) ) CHARACTER SET `utf8` COLLATE `utf8mb3_bin`; # # Dumping data for table 'mx_table_block_system_parameter' # INSERT INTO `mx_table_block_system_parameter` VALUES("1", "15", "Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas malesuada semper ante. Aliquam orci ipsum, aliquam sodales, dictum id, tincidunt non, elit. Proin tincidunt felis id urna. Praesent in erat. Nunc at arcu et nisi tempor interdum. Quisque enim. Nunc et lorem. Ut tortor. Suspendisse potenti. Nam egestas orci at mi. Sed pulvinar est sit amet ante. Mauris pharetra mollis risus. Donec accumsan fermentum leo.\r\n\r\nSuspendisse potenti. Quisque tincidunt, mi viverra semper iaculis, nisl metus vehicula libero, eget tincidunt est massa ac purus. Aenean a justo. Sed ultrices, mi vitae hendrerit suscipit, mauris velit rutrum lectus, eget pharetra metus ipsum in purus. Sed placerat ornare nulla. Nullam vel leo non nulla fermentum varius. Integer nec pede a velit tempor aliquam. Sed eu neque in eros scelerisque eleifend. Vivamus id urna. Pellentesque nec nulla. Fusce et sapien. Nulla venenatis imperdiet ligula. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Proin vel nunc eu leo malesuada congue. Praesent faucibus. Vivamus quis sapien in dolor gravida vehicula.", "46dd886e9d", "0"); INSERT INTO `mx_table_block_system_parameter` VALUES("2", "60", "16,13,9", "", "0"); INSERT INTO `mx_table_block_system_parameter` VALUES("2", "61", "33%, 33%,*", "", "0"); INSERT INTO `mx_table_block_system_parameter` VALUES("2", "62", "4", "", "0"); INSERT INTO `mx_table_block_system_parameter` VALUES("3", "91", "3 months", "", "0"); INSERT INTO `mx_table_block_system_parameter` VALUES("3", "92", "5", "", "0"); INSERT INTO `mx_table_block_system_parameter` VALUES("4", "80", "29", "", "0"); INSERT INTO `mx_table_block_system_parameter` VALUES("8", "66", "", "", "0"); INSERT INTO `mx_table_block_system_parameter` VALUES("8", "93", "", "", "0"); INSERT INTO `mx_table_block_system_parameter` VALUES("8", "63", "Vertical", "", "0"); INSERT INTO `mx_table_block_system_parameter` VALUES("32", "93", "", "", "0"); INSERT INTO `mx_table_block_system_parameter` VALUES("32", "66", "", "", "0"); INSERT INTO `mx_table_block_system_parameter` VALUES("31", "100", "", "", "0"); INSERT INTO `mx_table_block_system_parameter` VALUES("31", "101", "", "", "0"); INSERT INTO `mx_table_block_system_parameter` VALUES("31", "102", "Overall_navigation", "", "0"); INSERT INTO `mx_table_block_system_parameter` VALUES("9", "50", "This is basically a [i:021a122fa6]standard[/i:021a122fa6] TextBlock, but you may configure settings for bbcodes, html and smilies for [i:021a122fa6]this[/i:021a122fa6] block.\r\n\r\nTry it out! \r\n(to edit use the top right edit button)", "021a122fa6", "0"); INSERT INTO `mx_table_block_system_parameter` VALUES("9", "51", "none", "", "0"); INSERT INTO `mx_table_block_system_parameter` VALUES("9", "52", "TRUE", "", "0"); INSERT INTO `mx_table_block_system_parameter` VALUES("9", "53", "TRUE", "", "0"); INSERT INTO `mx_table_block_system_parameter` VALUES("9", "56", "TRUE", "", "0"); INSERT INTO `mx_table_block_system_parameter` VALUES("9", "54", "TRUE", "", "0"); INSERT INTO `mx_table_block_system_parameter` VALUES("9", "57", "TRUE", "", "0"); INSERT INTO `mx_table_block_system_parameter` VALUES("9", "55", "b,i,u,img", "", "0"); INSERT INTO `mx_table_block_system_parameter` VALUES("10", "16", "<table width=\"100%\" cellpadding=\"2\" border=\"0\"><tbody><tr><td valign=\"top\" align=\"left\" class=\"row2\"><span class=\"genmed\"><strong>Mon</strong></span></td><td class=\"row2\"><span class=\"gensmall\"><!-- MĹNDAG -->Busy with <em>this and that</em></span></td></tr><tr><td valign=\"top\" align=\"left\" class=\"row1\"><span class=\"genmed\"><strong>Tue</strong></span></td><td class=\"row1\"><span class=\"gensmall\"><!-- TISDAG-->Not so busy</span></td></tr><tr><td valign=\"top\" align=\"left\" class=\"row2\"><span class=\"genmed\"><strong>Wen</strong></span></td><td class=\"row2\"><span class=\"gensmall\"><!-- ONSDAG-->Very busy</span></td></tr><tr><td valign=\"top\" align=\"left\" class=\"row1\"><span class=\"genmed\"><strong>Thu</strong></span></td><td class=\"row1\"><span class=\"gensmall\"><!-- TORSDAG-->Lazy</span></td></tr><tr><td valign=\"top\" align=\"left\" class=\"row2\"><span class=\"genmed\"><strong>Fri</strong></span></td><td class=\"row2\"><span class=\"gensmall\"><!-- FREDAG-->Resting...</span></td></tr></tbody></table><p>This basic table structure is a nice demonstration in which the wysiwyg editor comes in handy!</p><p>Try it out! <br />(to edit use the top right edit button)</p><p>Note: The wysiwyg editor is a 3rd party product (tinyMCE), and must be installed separately. Visit <a target=\"_blank\" href=\"http://www.moxiecode.com\">Moxiecode Systems AB</a> to get the software and place the \'tinymce\' folder in the root/modules/mx_shared directory. </p>", "0", "0"); INSERT INTO `mx_table_block_system_parameter` VALUES("32", "63", "Vertical", "", "0"); INSERT INTO `mx_table_block_system_parameter` VALUES("27", "70", "x_iframe", "", "0"); INSERT INTO `mx_table_block_system_parameter` VALUES("27", "71", "/docs", "", "0"); INSERT INTO `mx_table_block_system_parameter` VALUES("27", "72", "325", "", "0"); INSERT INTO `mx_table_block_system_parameter` VALUES("27", "73", "", "", "0"); INSERT INTO `mx_table_block_system_parameter` VALUES("28", "15", "[b:787bdbfe25]MX-Publisher[/b:787bdbfe25] is a fully modular CMS, featuring dynamic pages, blocks, styles, and more (eg modules) by means of a powerful yet flexible AdminCP. It works standalone or with phpBB2/phpBB3 by using integrated features and functions. MX-Publisher currently supports the mySQL and postgreSQL databases. MX-Publisher is the classical phpBB portal add-on, improved and enhanced for every phpBB version released since 2001.\r\n\r\n[i:787bdbfe25]Welcome, and thanks for using MX-Publisher![/i:787bdbfe25]", "787bdbfe25", "0"); INSERT INTO `mx_table_block_system_parameter` VALUES("29", "15", "On this page we [i:6d09b58ee2]demonstrate[/i:6d09b58ee2] how subpages are easily created, using the CORE dynamic block and the user navigation block. Create new textblocks in the adminCP, and add them in the navigation menu. Have fun!\r\n\r\nLorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas malesuada semper ante. Aliquam orci ipsum, aliquam sodales, dictum id, tincidunt non, elit. Proin tincidunt felis id urna. Praesent in erat. Nunc at arcu et nisi tempor interdum. Quisque enim. Nunc et lorem. Ut tortor. Suspendisse potenti. Nam egestas orci at mi. Sed pulvinar est sit amet ante. Mauris pharetra mollis risus. Donec accumsan fermentum leo.", "6d09b58ee2", "0"); INSERT INTO `mx_table_block_system_parameter` VALUES("30", "15", "Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas malesuada semper ante. Aliquam orci ipsum, aliquam sodales, dictum id, tincidunt non, elit. Proin tincidunt felis id urna. Praesent in erat. Nunc at arcu et nisi tempor interdum. Quisque enim. Nunc et lorem. Ut tortor. Suspendisse potenti. Nam egestas orci at mi. Sed pulvinar est sit amet ante. Mauris pharetra mollis risus. Donec accumsan fermentum leo.\r\n\r\nSuspendisse potenti. Quisque tincidunt, mi viverra semper iaculis, nisl metus vehicula libero, eget tincidunt est massa ac purus. Aenean a justo. Sed ultrices, mi vitae hendrerit suscipit, mauris velit rutrum lectus, eget pharetra metus ipsum in purus. Sed placerat ornare nulla. Nullam vel leo non nulla fermentum varius. Integer nec pede a velit tempor aliquam. Sed eu neque in eros scelerisque eleifend. Vivamus id urna. Pellentesque nec nulla. Fusce et sapien. Nulla venenatis imperdiet ligula. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Proin vel nunc eu leo malesuada congue. Praesent faucibus. Vivamus quis sapien in dolor gravida vehicula.", "61fc3afdd8", "0"); # # Table structure for table 'mx_table_column' # DROP TABLE IF EXISTS `mx_table_column`; CREATE TABLE `mx_table_column` ( `column_id` smallint(5) unsigned NOT NULL auto_increment, `column_title` varchar(100), `column_order` smallint(5) unsigned NOT NULL DEFAULT '0', `bbcode_uid` varchar(10), `column_size` varchar(5) DEFAULT '100%', `page_id` smallint(5) NOT NULL DEFAULT '0', PRIMARY KEY (`column_id`), KEY cat_order (`column_order`) ) CHARACTER SET `utf8` COLLATE `utf8mb3_bin`; # # Dumping data for table 'mx_table_column' # INSERT INTO `mx_table_column` VALUES("2", "Main", "35", NULL, "100%", "1"); INSERT INTO `mx_table_column` VALUES("6", "Main", "50", NULL, "100%", "3"); INSERT INTO `mx_table_column` VALUES("5", "Left", "40", NULL, "200", "3"); INSERT INTO `mx_table_column` VALUES("1", "Left", "25", NULL, "200", "1"); INSERT INTO `mx_table_column` VALUES("10", "Main", "50", NULL, "100%", "5"); INSERT INTO `mx_table_column` VALUES("9", "Left", "40", NULL, "200", "5"); # # Table structure for table 'mx_table_column_block' # DROP TABLE IF EXISTS `mx_table_column_block`; CREATE TABLE `mx_table_column_block` ( `column_id` smallint(5) NOT NULL DEFAULT '0', `block_id` smallint(5) NOT NULL DEFAULT '0', `block_order` smallint(5) NOT NULL DEFAULT '0', PRIMARY KEY (`column_id`,`block_id`) ) CHARACTER SET `utf8` COLLATE `utf8mb3_bin`; # # Dumping data for table 'mx_table_column_block' # INSERT INTO `mx_table_column_block` VALUES("2", "19", "20"); INSERT INTO `mx_table_column_block` VALUES("2", "28", "10"); INSERT INTO `mx_table_column_block` VALUES("1", "8", "10"); INSERT INTO `mx_table_column_block` VALUES("9", "21", "10"); INSERT INTO `mx_table_column_block` VALUES("6", "4", "20"); INSERT INTO `mx_table_column_block` VALUES("5", "32", "10"); INSERT INTO `mx_table_column_block` VALUES("10", "15", "10"); # # Table structure for table 'mx_table_column_templates' # DROP TABLE IF EXISTS `mx_table_column_templates`; CREATE TABLE `mx_table_column_templates` ( `column_template_id` smallint(5) unsigned NOT NULL auto_increment, `column_title` varchar(100) DEFAULT '0', `column_order` smallint(5) unsigned NOT NULL DEFAULT '0', `column_size` varchar(5) DEFAULT '0', `page_template_id` smallint(5) NOT NULL DEFAULT '0', PRIMARY KEY (`column_template_id`), KEY cat_order (`column_order`) ) CHARACTER SET `utf8` COLLATE `utf8mb3_bin`; # # Dumping data for table 'mx_table_column_templates' # INSERT INTO `mx_table_column_templates` VALUES("1", "Left", "40", "200", "2"); INSERT INTO `mx_table_column_templates` VALUES("2", "Main", "50", "100%", "2"); INSERT INTO `mx_table_column_templates` VALUES("3", "Main", "10", "100%", "3"); INSERT INTO `mx_table_column_templates` VALUES("4", "Right", "20", "200", "3"); INSERT INTO `mx_table_column_templates` VALUES("5", "Left", "10", "180", "4"); INSERT INTO `mx_table_column_templates` VALUES("6", "Middle", "20", "100%", "4"); INSERT INTO `mx_table_column_templates` VALUES("7", "Right", "30", "180", "4"); # # Table structure for table 'mx_table_function' # DROP TABLE IF EXISTS `mx_table_function`; CREATE TABLE `mx_table_function` ( `function_id` smallint(5) unsigned NOT NULL auto_increment, `module_id` smallint(5) unsigned NOT NULL DEFAULT '0', `function_name` varchar(150), `function_desc` text, `function_file` varchar(255), `function_admin` varchar(255), PRIMARY KEY (`function_id`), KEY module_id (`module_id`) ) CHARACTER SET `utf8` COLLATE `utf8mb3_bin`; # # Dumping data for table 'mx_table_function' # INSERT INTO `mx_table_function` VALUES("51", "50", "User Navigation", "Advanced menus", "mx_menu_nav.php", ""); INSERT INTO `mx_table_function` VALUES("52", "50", "Page Navigation", "Standard Page Menus", "mx_site_nav.php", ""); INSERT INTO `mx_table_function` VALUES("6", "10", "Language Select", "Quick Language Select Block", "mx_language.php", ""); INSERT INTO `mx_table_function` VALUES("7", "10", "Login", "Login Block", "mx_login.php", ""); INSERT INTO `mx_table_function` VALUES("12", "10", "Style Select", "Quick Style Select Block", "mx_theme.php", ""); INSERT INTO `mx_table_function` VALUES("4", "10", "Google Search", "Simple Google Search Block", "mx_google.php", ""); INSERT INTO `mx_table_function` VALUES("13", "10", "Who is Online", "Who is Online Block", "mx_online.php", ""); INSERT INTO `mx_table_function` VALUES("11", "10", "Split Block", "Split columns, put blocks side by side", "mx_multiple_blocks.php", ""); INSERT INTO `mx_table_function` VALUES("24", "20", "TextBlock (phpBB)", "BBcodes, html and smilies - phpBB style", "mx_textblock_bbcode.php", ""); INSERT INTO `mx_table_function` VALUES("23", "20", "TextBlock (HTML/WYSIWYG)", "User friendly textblocks", "mx_textblock_html.php", ""); INSERT INTO `mx_table_function` VALUES("22", "20", "TextBlock (Customized)", "Textblock, featuring block defined settings", "mx_textblock_multi.php", ""); INSERT INTO `mx_table_function` VALUES("5", "10", "IncludeX", "Include Whatever", "mx_includex.php", ""); INSERT INTO `mx_table_function` VALUES("3", "10", "DynamicBlock", "SubBlocks on the same page", "mx_dynamic.php", ""); INSERT INTO `mx_table_function` VALUES("10", "10", "Site Log", "Admin Site Log monitor", "mx_site_log.php", ""); INSERT INTO `mx_table_function` VALUES("15", "10", "Site Search", "Textblock Search Block", "mx_search.php", ""); # # Table structure for table 'mx_table_menu_categories' # DROP TABLE IF EXISTS `mx_table_menu_categories`; CREATE TABLE `mx_table_menu_categories` ( `block_id` smallint(5) unsigned NOT NULL default '1', `cat_id` mediumint(8) unsigned NOT NULL auto_increment, `cat_title` varchar(100), `cat_order` mediumint(8) unsigned NOT NULL DEFAULT '0', `bbcode_uid` varchar(10), `cat_desc` text, `cat_show` tinyint(1) unsigned NOT NULL DEFAULT '0', `cat_url` smallint(5) unsigned DEFAULT '0', `cat_target` tinyint(2) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`cat_id`), KEY cat_order (`cat_order`) ) CHARACTER SET `utf8` COLLATE `utf8mb3_bin`; # # Dumping data for table 'mx_table_menu_categories' # INSERT INTO `mx_table_menu_categories` VALUES("8", "1", "Resources", "20", "c1affc0aaa", "", "0", "0", "0"); INSERT INTO `mx_table_menu_categories` VALUES("8", "3", "Home", "10", "eab7a16ce5", "", "1", "1", "0"); INSERT INTO `mx_table_menu_categories` VALUES("32", "7", "Demo", "10", "", "", "1", "0", "0"); # # Table structure for table 'mx_table_menu_nav' # DROP TABLE IF EXISTS `mx_table_menu_nav`; CREATE TABLE `mx_table_menu_nav` ( `menu_id` smallint(5) unsigned NOT NULL auto_increment, `cat_id` mediumint(8) unsigned NOT NULL DEFAULT '0', `menu_name` varchar(150), `menu_desc` text, `menu_links` varchar(255), `auth_view` tinyint(2) NOT NULL DEFAULT '0', `menu_order` smallint(5) unsigned DEFAULT '0', `bbcode_uid` varchar(10), `menu_icon` varchar(255), `menu_alt_icon` varchar(255), `menu_alt_icon_hot` varchar(255), `function_id` smallint(5) unsigned DEFAULT '0', `block_id` smallint(8) NOT NULL DEFAULT '0', `page_id` smallint(5) unsigned DEFAULT '0', `auth_view_group` smallint(5) NOT NULL DEFAULT '0', `link_target` tinyint(2) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`menu_id`), KEY cat_id (`cat_id`) ) CHARACTER SET `utf8` COLLATE `utf8mb3_bin`; # # Dumping data for table 'mx_table_menu_nav' # INSERT INTO `mx_table_menu_nav` VALUES("5", "1", "phpBB Home", "", "http://www.phpbb.com", "0", "20", "a9ff189bf5", "icon_info.gif", "", "", "0", "0", "0", "0", "1"); INSERT INTO `mx_table_menu_nav` VALUES("16", "7", "Page 1", "", "", "0", "10", "", "icon_home.gif", "", "", "0", "0", "3", "0", "0"); INSERT INTO `mx_table_menu_nav` VALUES("4", "1", "MX-Publisher Home", "", "http://www.mx-publisher.com", "0", "10", "1f171544ea", "icon_info.gif", "", "", "0", "0", "0", "0", "1"); INSERT INTO `mx_table_menu_nav` VALUES("6", "1", "Demo Page", "On this page we demonstrate a basic subpage setup with textblocks.", "", "0", "30", "", "icon_message.gif", "", "", "0", "0", "3", "0", "0"); INSERT INTO `mx_table_menu_nav` VALUES("1", "3", "Welcome to MXP", "Back to home", "", "0", "10", "", "", "", "", "0", "0", "1", "0", "0"); INSERT INTO `mx_table_menu_nav` VALUES("17", "7", "Page 2", "", "", "0", "20", "", "icon_dot.gif", "", "", "0", "30", "3", "0", "0"); INSERT INTO `mx_table_menu_nav` VALUES("18", "7", "Page 3", "", "", "0", "30", "", "icon_dot.gif", "", "", "0", "1", "3", "0", "0"); INSERT INTO `mx_table_menu_nav` VALUES("19", "7", "WYSIWYG", "", "", "0", "40", "", "icon_dot.gif", "", "", "0", "10", "3", "0", "0"); INSERT INTO `mx_table_menu_nav` VALUES("20", "7", "CUSTOM", "", "", "0", "50", "", "icon_dot.gif", "", "", "0", "9", "3", "0", "0"); # # Table structure for table 'mx_table_module' # DROP TABLE IF EXISTS `mx_table_module`; CREATE TABLE `mx_table_module` ( `module_id` smallint(5) unsigned NOT NULL auto_increment, `module_name` varchar(150), `module_path` varchar(255), `module_desc` text, `module_include_admin` char(1) DEFAULT '0', `module_version` varchar(255), `module_copy` text, PRIMARY KEY (`module_id`) ) CHARACTER SET `utf8` COLLATE `utf8mb3_bin`; # # Dumping data for table 'mx_table_module' # INSERT INTO `mx_table_module` VALUES("10", "Core Blocks", "modules/mx_coreblocks/", "MX-Publisher Core Blocks", "", "MX-Publisher Core Module", "Original mxBB <i>Core Blocks</i> module by <a href=\"http://www.mx-publisher.com\" target=\"_blank\">The MX-Publisher Development Team</a>"); INSERT INTO `mx_table_module` VALUES("20", "Textblocks", "modules/mx_textblocks/", "MX-Publisher Textblocks", "", "MX-Publisher Core Module", "Original mxBB <i>Textblocks</i> module by <a href=\"http://www.mx-publisher.com\" target=\"_blank\">Jon</a>"); INSERT INTO `mx_table_module` VALUES("40", "Users and Groups", "modules/mx_users/", "MX-Publisher Users and Groups", "1", "MX-Publisher Core Module", "Based on original phpBB <i>Admin Tool MODs</i> by Adam Alkins, Omar Ramadan & wGEric :: Adapted for MX-Publisher by <a href=\"http://www.mx-publisher.com\" target=\"_blank\">Jon</a>"); INSERT INTO `mx_table_module` VALUES("50", "Navigation Menu", "modules/mx_navmenu/", "MX-Publisher Site Navigation", "", "MX-Publisher Core Module", "Original mxBB <i>Navigation Menu</i> module by <a href=\"http://www.mx-publisher.com\" target=\"_blank\">Jon</a>"); # # Table structure for table 'mx_table_page' # DROP TABLE IF EXISTS `mx_table_page`; CREATE TABLE `mx_table_page` ( `page_id` smallint(5) NOT NULL auto_increment, `page_name` varchar(255), `page_desc` varchar(255), `page_parent` int(50) DEFAULT '0', `parents_data` mediumtext NOT NULL, `page_order` smallint(5) DEFAULT '0', `page_icon` varchar(255), `page_alt_icon` varchar(255), `menu_icon` varchar(255), `menu_alt_icon` varchar(255), `menu_alt_icon_hot` varchar(255), `menu_active` tinyint(2) DEFAULT '1', `auth_view` tinyint(2) NOT NULL DEFAULT '0', `auth_view_group` varchar(255) NOT NULL DEFAULT '0', `auth_moderator_group` varchar(255) NOT NULL DEFAULT '0', `default_style` smallint(5) NOT NULL DEFAULT '-1', `override_user_style` smallint(2) NOT NULL DEFAULT '-1', `page_header` varchar(255) DEFAULT '', `page_footer` varchar(255) DEFAULT '', `page_main_layout` varchar(255) DEFAULT '', `navigation_block` smallint(5) unsigned NOT NULL DEFAULT '0', `ip_filter` varchar(255) NOT NULL DEFAULT '', `phpbb_stats` tinyint(2) NOT NULL DEFAULT '-1', PRIMARY KEY (`page_id`) ) CHARACTER SET `utf8` COLLATE `utf8mb3_bin`; # # Dumping data for table 'mx_table_page' # INSERT INTO `mx_table_page` VALUES("1", "Home", "This is the startpage", "0", "", "10", "icon_home.gif", "", "none", "", "", "1", "0", "0", "0", "-1", "-1", "", "", "", "0", "a:1:{i:0;s:0:\"\";}", "-1"); INSERT INTO `mx_table_page` VALUES("3", "Demo Page", "Block Demos", "0", "", "30", "icon_docs.gif", "", "", "", "", "1", "0", "0", "0", "-1", "-1", "", "", "", "0", "a:1:{i:0;s:0:\"\";}", "-1"); INSERT INTO `mx_table_page` VALUES("5", "Site Search", "Site Search page", "0", "", "50", "icon_search.gif", "", "", "", "", "1", "0", "0", "0", "-1", "-1", "", "", "", "0", "a:1:{i:0;s:0:\"\";}", "-1"); # # Table structure for table 'mx_table_page_templates' # DROP TABLE IF EXISTS `mx_table_page_templates`; CREATE TABLE `mx_table_page_templates` ( `page_template_id` smallint(3) unsigned NOT NULL auto_increment, `template_name` varchar(255) NOT NULL default '', PRIMARY KEY (`page_template_id`) ) CHARACTER SET `utf8` COLLATE `utf8mb3_bin`; # # Dumping data for table 'mx_table_page_templates' # INSERT INTO `mx_table_page_templates` VALUES("1", "NONE"); INSERT INTO `mx_table_page_templates` VALUES("2", "Two-Columns left"); INSERT INTO `mx_table_page_templates` VALUES("3", "Two-Columns right"); INSERT INTO `mx_table_page_templates` VALUES("4", "Three-Columns"); # # Table structure for table 'mx_table_parameter' # DROP TABLE IF EXISTS `mx_table_parameter`; CREATE TABLE `mx_table_parameter` ( `parameter_id` smallint(5) unsigned NOT NULL auto_increment, `function_id` smallint(5) unsigned NOT NULL DEFAULT '0', `parameter_name` varchar(150), `parameter_type` varchar(30), `parameter_default` varchar(150), `parameter_function` varchar(255), `parameter_auth` tinyint(2) NOT NULL DEFAULT '0', `parameter_order` smallint(5) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`parameter_id`) ) CHARACTER SET `utf8` COLLATE `utf8mb3_bin`; # # Dumping data for table 'mx_table_parameter' # INSERT INTO `mx_table_parameter` VALUES("15", "24", "Text", "phpBBTextBlock", "Insert your text here", "", "0", "0"); INSERT INTO `mx_table_parameter` VALUES("16", "23", "Html", "WysiwygTextBlock", "Entre your Html code here", "", "0", "0"); INSERT INTO `mx_table_parameter` VALUES("50", "22", "Text", "CustomizedTextBlock", "Enter your block text here", "", "0", "0"); INSERT INTO `mx_table_parameter` VALUES("51", "22", "text_style", "Text", "none", "", "1", "0"); INSERT INTO `mx_table_parameter` VALUES("52", "22", "block_style", "Boolean", "TRUE", "", "1", "0"); INSERT INTO `mx_table_parameter` VALUES("53", "22", "title_style", "Boolean", "TRUE", "", "1", "0"); INSERT INTO `mx_table_parameter` VALUES("91", "10", "log_filter_date", "Menu_single_select", "1 month", "a:12:{i:0;s:8:\"no limit\";i:1;s:5:\"1 day\";i:2;s:6:\"2 days\";i:3;s:6:\"3 days\";i:4;s:6:\"1 week\";i:5;s:7:\"2 weeks\";i:6;s:7:\"3 weeks\";i:7;s:7:\"1 month\";i:8;s:8:\"2 months\";i:9;s:8:\"3 months\";i:10;s:8:\"6 months\";i:11;s:6:\"1 year\";}", "1", "0"); INSERT INTO `mx_table_parameter` VALUES("60", "11", "block_ids", "Function", "1,2,3", "get_list_multiple( \"{parameter_id}[]\", BLOCK_TABLE, \'block_id\', \'block_title\', \"{parameter_value}\", TRUE, \'block_desc\')", "0", "0"); INSERT INTO `mx_table_parameter` VALUES("61", "11", "block_sizes", "Text", "20%,30%,*", "", "1", "0"); INSERT INTO `mx_table_parameter` VALUES("62", "11", "space_between", "Number", "4", "", "1", "0"); INSERT INTO `mx_table_parameter` VALUES("80", "3", "default_block_id", "Function", "0", "get_list_formatted(\"block_list\",\"{parameter_value}\",\"{parameter_id}[]\")", "1", "0"); INSERT INTO `mx_table_parameter` VALUES("70", "5", "x_mode", "Menu_single_select", "x_iframe", "a:6:{i:0;s:8:\"x_listen\";i:1;s:8:\"x_iframe\";i:2;s:10:\"x_textfile\";i:3;s:12:\"x_multimedia\";i:4;s:5:\"x_pic\";i:5;s:8:\"x_format\";}", "0", "0"); INSERT INTO `mx_table_parameter` VALUES("71", "5", "x_1", "Text", "/docs", "", "0", "0"); INSERT INTO `mx_table_parameter` VALUES("72", "5", "x_2", "Text", "325", "", "0", "0"); INSERT INTO `mx_table_parameter` VALUES("73", "5", "x_3", "Text", "", "", "0", "0"); INSERT INTO `mx_table_parameter` VALUES("66", "51", "Nav menu", "nav_menu", "", "", "0", "10"); INSERT INTO `mx_table_parameter` VALUES("93", "51", "menu_custom_tpl", "Text", "", "", "1", "20"); INSERT INTO `mx_table_parameter` VALUES("63", "51", "menu_display_mode", "Radio_single_select", "Vertical", "a:3:{i:0;s:8:\"Vertical\";i:1;s:10:\"Horizontal\";i:2;s:18:\"Overall_navigation\";}", "1", "30"); INSERT INTO `mx_table_parameter` VALUES("100", "52", "Site menu", "site_menu", "", "", "0", "10"); INSERT INTO `mx_table_parameter` VALUES("101", "52", "menu_custom_tpl", "Text", "", "", "1", "20"); INSERT INTO `mx_table_parameter` VALUES("102", "52", "menu_display_mode", "Radio_single_select", "Overall_navigation", "a:3:{i:0;s:8:\"Vertical\";i:1;s:10:\"Horizontal\";i:2;s:18:\"Overall_navigation\";}", "1", "30"); INSERT INTO `mx_table_parameter` VALUES("92", "10", "numOfEvents", "Number", "5", "", "1", "0"); INSERT INTO `mx_table_parameter` VALUES("57", "22", "allow_smilies", "Boolean", "TRUE", "", "1", "0"); INSERT INTO `mx_table_parameter` VALUES("54", "22", "allow_html", "Boolean", "TRUE", "", "1", "0"); INSERT INTO `mx_table_parameter` VALUES("56", "22", "allow_bbcode", "Boolean", "TRUE", "", "1", "0"); INSERT INTO `mx_table_parameter` VALUES("55", "22", "html_tags", "Text", "b,i,u", "", "1", "0"); # # Table structure for table 'mx_table_portal' # DROP TABLE IF EXISTS `mx_table_portal`; CREATE TABLE `mx_table_portal` ( `portal_id` smallint(2) unsigned NOT NULL auto_increment, `portal_name` varchar(255) NOT NULL DEFAULT 'yourdomain.com', `portal_desc` varchar(255) NOT NULL DEFAULT 'A _little_ text to describe your site', `portal_status` smallint(2) unsigned NOT NULL DEFAULT '1', `disabled_message` varchar(255) NOT NULL DEFAULT 'We are currently upgrading this site with latest MX-Publisher software.', `server_name` varchar(255) NOT NULL DEFAULT 'www.myserver.tld', `script_path` varchar(255) NOT NULL DEFAULT '/', `script_protocol` varchar(255) NOT NULL DEFAULT 'http://', `server_port` varchar(255) NOT NULL DEFAULT '80', `default_dateformat` varchar(255) NOT NULL DEFAULT 'D M d, Y g:i a', `board_timezone` smallint(2) NOT NULL DEFAULT '0', `gzip_compress` smallint(2) unsigned NOT NULL DEFAULT '0', `mx_use_cache` smallint(2) unsigned NOT NULL DEFAULT '1', `mod_rewrite` smallint(2) unsigned NOT NULL DEFAULT '0', `cookie_domain` varchar(255) NOT NULL DEFAULT '', `cookie_name` varchar(255) NOT NULL DEFAULT 'mxbb30x', `cookie_path` varchar(255) NOT NULL DEFAULT '/', `cookie_secure` smallint(2) unsigned NOT NULL DEFAULT '0', `session_length` varchar(255) NOT NULL DEFAULT '3600', `allow_autologin` smallint(2) unsigned NOT NULL DEFAULT '1', `max_autologin_time` smallint(2) NOT NULL DEFAULT '0', `max_login_attempts` smallint(2) NOT NULL DEFAULT '5', `login_reset_time` varchar(255) NOT NULL DEFAULT '30', `default_lang` varchar(255) NOT NULL DEFAULT 'english', `default_style` smallint(5) NOT NULL DEFAULT '-1', `override_user_style` smallint(2) unsigned NOT NULL DEFAULT '1', `default_admin_style` smallint(5) NOT NULL DEFAULT '-1', `overall_header` varchar(255) NOT NULL DEFAULT 'overall_header_navigation.tpl', `overall_footer` varchar(255) NOT NULL DEFAULT 'overall_footer.tpl', `main_layout` varchar(255) NOT NULL DEFAULT 'mx_main_layout.tpl', `navigation_block` smallint(5) unsigned NOT NULL DEFAULT '31', `top_phpbb_links` smallint(2) unsigned NOT NULL DEFAULT '0', `allow_html` smallint(2) unsigned NOT NULL DEFAULT '1', `allow_html_tags` varchar(255) NOT NULL DEFAULT 'b,i,u,pre', `allow_bbcode` smallint(2) unsigned NOT NULL DEFAULT '1', `allow_smilies` smallint(2) unsigned NOT NULL DEFAULT '1', `smilies_path` varchar(255) NOT NULL DEFAULT 'images/smiles', `board_email` varchar(255) NOT NULL DEFAULT 'you...@yo...', `board_email_sig` varchar(255) NOT NULL DEFAULT 'Thanks, the MX-Publisher Team', `smtp_delivery` smallint(2) unsigned NOT NULL DEFAULT '0', `smtp_host` varchar(255) NOT NULL DEFAULT '', `smtp_username` varchar(255) NOT NULL DEFAULT '', `smtp_password` varchar(255) NOT NULL DEFAULT '', `smtp_auth_method` varchar(255) NOT NULL DEFAULT '', `portal_version` varchar(255) NOT NULL DEFAULT '', `portal_recached` varchar(255) NOT NULL DEFAULT '', `portal_backend` varchar(255) NOT NULL DEFAULT 'internal', `portal_backend_path` varchar(255) NOT NULL DEFAULT '', `portal_startdate` varchar(255) NOT NULL DEFAULT '0', `rand_seed` varchar(255) NOT NULL DEFAULT '0', `record_online_users` varchar(255) NOT NULL DEFAULT '0', `record_online_date` varchar(255) NOT NULL DEFAULT '0', PRIMARY KEY (`portal_id`) ) CHARACTER SET `utf8` COLLATE `utf8mb3_bin`; # # Table structure for table 'mx_table_search_results' # DROP TABLE IF EXISTS `mx_table_search_results`; CREATE TABLE `mx_table_search_results` ( `search_id` int(11) unsigned NOT NULL default '0', `session_id` varchar(32) NOT NULL default '', `search_array` text NOT NULL, PRIMARY KEY (`search_id`), KEY `session_id` (`session_id`) ) CHARACTER SET `utf8` COLLATE `utf8mb3_bin`; # # Table structure for table 'mx_table_wordlist' # DROP TABLE IF EXISTS `mx_table_wordlist`; CREATE TABLE `mx_table_wordlist` ( `word_text` varchar(50) binary NOT NULL default '', `word_id` mediumint(8) unsigned NOT NULL auto_increment, `word_common` tinyint(1) unsigned NOT NULL default '0', PRIMARY KEY (`word_text`), KEY `word_id` (`word_id`) ) CHARACTER SET `utf8` COLLATE `utf8mb3_bin`; # # Table structure for table 'mx_table_wordmatch' # DROP TABLE IF EXISTS `mx_table_wordmatch`; CREATE TABLE `mx_table_wordmatch` ( `block_id` mediumint(8) unsigned NOT NULL default '0', `word_id` mediumint(8) unsigned NOT NULL default '0', `title_match` tinyint(1) NOT NULL default '0', KEY `block_id` (`block_id`), KEY `word_id` (`word_id`) ) CHARACTER SET `utf8` COLLATE `utf8mb3_bin`; # # Table structure for table 'mx_table_user_group' # DROP TABLE IF EXISTS `mx_table_user_group`; CREATE TABLE `mx_table_user_group` ( group_id mediumint(8) DEFAULT '0' NOT NULL, user_id mediumint(8) DEFAULT '0' NOT NULL, user_pending tinyint(1), KEY group_id (group_id), KEY user_id (user_id) ) CHARACTER SET `utf8` COLLATE `utf8mb3_bin`; # # Table structure for table 'mx_table_groups' # DROP TABLE IF EXISTS `mx_table_groups`; CREATE TABLE `mx_table_groups` ( group_id mediumint(8) NOT NULL auto_increment, group_type tinyint(4) DEFAULT '1' NOT NULL, group_name varchar(40) NOT NULL, group_description varchar(255) NOT NULL, group_moderator mediumint(8) DEFAULT '0' NOT NULL, group_single_user tinyint(1) DEFAULT '1' NOT NULL, PRIMARY KEY (group_id), KEY group_single_user (group_single_user) ) CHARACTER SET `utf8` COLLATE `utf8mb3_bin`; # -------------------------------------------------------- # # Table structure for table 'mx_table_sessions' # # Note that if you\'re running 3.23.x you may want to make # this table a type HEAP. This type of table is stored # within system memory and therefore for big busy boards # is likely to be noticeably faster than continually # writing to disk ... # DROP TABLE IF EXISTS `mx_table_sessions`; CREATE TABLE `mx_table_sessions` ( session_id char(32) DEFAULT '' NOT NULL, session_user_id mediumint(8) DEFAULT '0' NOT NULL, session_start int(11) DEFAULT '0' NOT NULL, session_time int(11) DEFAULT '0' NOT NULL, session_ip char(8) DEFAULT '0' NOT NULL, session_page int(11) DEFAULT '0' NOT NULL, session_logged_in tinyint(1) DEFAULT '0' NOT NULL, session_admin tinyint(2) DEFAULT '0' NOT NULL, PRIMARY KEY (session_id), KEY session_user_id (session_user_id), KEY session_id_ip_user_id (session_id, session_ip, session_user_id) ) CHARACTER SET `utf8` COLLATE `utf8mb3_bin`; # -------------------------------------------------------- # # Table structure for table `mx_table_sessions_keys` # DROP TABLE IF EXISTS `mx_table_sessions_keys`; CREATE TABLE `mx_table_sessions_keys` ( key_id varchar(32) DEFAULT '0' NOT NULL, user_id mediumint(8) DEFAULT '0' NOT NULL, last_ip varchar(8) DEFAULT '0' NOT NULL, last_login int(11) DEFAULT '0' NOT NULL, PRIMARY KEY (key_id, user_id), KEY last_login (last_login) ) CHARACTER SET `utf8` COLLATE `utf8mb3_bin`; # -------------------------------------------------------- # # Table structure for table 'mx_table_users' # DROP TABLE IF EXISTS `mx_table_users`; CREATE TABLE `mx_table_users` ( user_id mediumint(8) NOT NULL, user_active tinyint(1) DEFAULT '1', username varchar(25) NOT NULL, user_password varchar(32) NOT NULL, user_session_time int(11) DEFAULT '0' NOT NULL, user_session_page smallint(5) DEFAULT '0' NOT NULL, user_lastvisit int(11) DEFAULT '0' NOT NULL, user_regdate int(11) DEFAULT '0' NOT NULL, user_level tinyint(4) DEFAULT '0', user_login_tries smallint(5) UNSIGNED DEFAULT '0' NOT NULL, user_last_login_try int(11) DEFAULT '0' NOT NULL, user_email varchar(255), PRIMARY KEY (user_id), KEY user_session_time (user_session_time) ) CHARACTER SET `utf8` COLLATE `utf8mb3_bin`; # -- Users INSERT INTO `mx_table_users` (user_id, username, user_level, user_regdate, user_password, user_email, user_active) VALUES ( -1, 'Anonymous', 0, 0, '', '', 0); # -- username: admin password: admin (change this or remove it once everything is working!) INSERT INTO `mx_table_users` (user_id, username, user_level, user_regdate, user_password, user_email, user_active) VALUES ( 2, 'Admin', 1, 0, '21232f297a57a5a743894a0e4a801fc3', 'ad...@yo...', 1); # -- Groups INSERT INTO `mx_table_groups` (group_id, group_name, group_description, group_single_user) VALUES (1, 'Anonymous', 'Personal User', 1); INSERT INTO `mx_table_groups` (group_id, group_name, group_description, group_single_user) VALUES (2, 'Admin', 'Personal User', 1); # -- User -> Group INSERT INTO `mx_table_user_group` (group_id, user_id, user_pending) VALUES (1, -1, 0); INSERT INTO `mx_table_user_group` (group_id, user_id, user_pending) VALUES (2, 2, 0); # -------------------------------------------------------- # # Table structure for table 'mx_table_themes' # DROP TABLE IF EXISTS `mx_table_themes`; CREATE TABLE `mx_table_themes` ( themes_id mediumint(8) UNSIGNED NOT NULL auto_increment, template_name varchar(30) NOT NULL default '', style_name varchar(30) NOT NULL default '', head_stylesheet varchar(100) default NULL, portal_backend varchar(30) NOT NULL default '', PRIMARY KEY (themes_id) ) CHARACTER SET `utf8` COLLATE `utf8mb3_bin`; INSERT INTO `mx_table_themes` (themes_id, template_name, style_name, head_stylesheet, portal_backend) VALUES (1, 'mx_prosilver', 'mx_prosilver', 'mx_prosilver.css', 'internal'); INSERT INTO `mx_table_themes` (themes_id, template_name, style_name, head_stylesheet, portal_backend) VALUES (2, 'mxBase1', 'mxBase1', 'mxBase1.css', 'internal'); INSERT INTO `mx_table_themes` (themes_id, template_name, style_name, head_stylesheet, portal_backend) VALUES (3, 'mxBase2', 'mxBase2', 'mxBase2.css', 'internal'); INSERT INTO `mx_table_themes` (themes_id, template_name, style_name, head_stylesheet, portal_backend) VALUES (4, 'mxSilver', 'mxSilver', 'mxSilver.css', 'internal'); INSERT INTO `mx_table_themes` (themes_id, template_name, style_name, head_stylesheet, portal_backend) VALUES (5, 'subSilver', 'subSilver', 'subSilver.css', 'phpbb2'); INSERT INTO `mx_table_themes` (themes_id, template_name, style_name, head_stylesheet, portal_backend) VALUES (6, 'subsilver2', 'subsilver2', 'subsilver2.css', 'phpbb3'); INSERT INTO `mx_table_themes` (themes_id, template_name, style_name, head_stylesheet, portal_backend) VALUES (7, 'prosilver', 'prosilver', 'prosilver.css', 'phpbb3'); # -------------------------------------------------------- # # Table structure for table 'mx_table_smilies' # DROP TABLE IF EXISTS `mx_table_smilies`; CREATE TABLE `mx_table_smilies` ( smilies_id smallint(5) UNSIGNED NOT NULL auto_increment, code varchar(50), smile_url varchar(100), emoticon varchar(75), PRIMARY KEY (smilies_id) ) CHARACTER SET `utf8` COLLATE `utf8mb3_bin`; # -- Smilies INSERT INTO `mx_table_smilies` (smilies_id, code, smile_url, emoticon) VALUES ( 1, ':D', 'icon_biggrin.gif', 'Very Happy'); INSERT INTO `mx_table_smilies` (smilies_id, code, smile_url, emoticon) VALUES ( 2, ':-D', 'icon_biggrin.gif', 'Very Happy'); INSERT INTO `mx_table_smilies` (smilies_id, code, smile_url, emoticon) VALUES ( 3, ':grin:', 'icon_biggrin.gif', 'Very Happy'); INSERT INTO `mx_table_smilies` (smilies_id, code, smile_url, emoticon) VALUES ( 4, ':)', 'icon_smile.gif', 'Smile'); INSERT INTO `mx_table_smilies` (smilies_id, code, smile_url, emoticon) VALUES ( 5, ':-)', 'icon_smile.gif', 'Smile'); INSERT INTO `mx_table_smilies` (smilies_id, code, smile_url, emoticon) VALUES ( 6, ':smile:', 'icon_smile.gif', 'Smile'); INSERT INTO `mx_table_smilies` (smilies_id, code, smile_url, emoticon) VALUES ( 7, ':(', 'icon_sad.gif', 'Sad'); INSERT INTO `mx_table_smilies` (smilies_id, code, smile_url, emoticon) VALUES ( 8, ':-(', 'icon_sad.gif', 'Sad'); INSERT INTO `mx_table_smilies` (smilies_id, code, smile_url, emoticon) VALUES ( 9, ':sad:', 'icon_sad.gif', 'Sad'); INSERT INTO `mx_table_smilies` (smilies_id, code, smile_url, emoticon) VALUES ( 10, ':o', 'icon_surprised.gif', 'Surprised'); INSERT INTO `mx_table_smilies` (smilies_id, code, smile_url, emoticon) VALUES ( 11, ':-o', 'icon_surprised.gif', 'Surprised'); INSERT INTO `mx_table_smilies` (smilies_id, code, smile_url, emoticon) VALUES ( 12, ':eek:', 'icon_surprised.gif', 'Surprised'); INSERT INTO `mx_table_smilies` (smilies_id, code, smile_url, emoticon) VALUES ( 13, ':shock:', 'icon_eek.gif', 'Shocked'); INSERT INTO `mx_table_smilies` (smilies_id, code, smile_url, emoticon) VALUES ( 14, ':?', 'icon_confused.gif', 'Confused'); INSERT INTO `mx_table_smilies` (smilies_id, code, smile_url, emoticon) VALUES ( 15, ':-?', 'icon_confused.gif', 'Confused'); INSERT INTO `mx_table_smilies` (smilies_id, code, smile_url, emoticon) VALUES ( 16, ':???:', 'icon_confused.gif', 'Confused'); INSERT INTO `mx_table_smilies` (smilies_id, code, smile_url, emoticon) VALUES ( 17, '8)', 'icon_cool.gif', 'Cool'); INSERT INTO `mx_table_smilies` (smilies_id, code, smile_url, emoticon) VALUES ( 18, '8-)', 'icon_cool.gif', 'Cool'); INSERT INTO `mx_table_smilies` (smilies_id, code, smile_url, emoticon) VALUES ( 19, ':cool:', 'icon_cool.gif', 'Cool'); INSERT INTO `mx_table_smilies` (smilies_id, code, smile_url, emoticon) VALUES ( 20, ':lol:', 'icon_lol.gif', 'Laughing'); INSERT INTO `mx_table_smilies` (smilies_id, code, smile_url, emoticon) VALUES ( 21, ':x', 'icon_mad.gif', 'Mad'); INSERT INTO `mx_table_smilies` (smilies_id, code, smile_url, emoticon) VALUES ( 22, ':-x', 'icon_mad.gif', 'Mad'); INSERT INTO `mx_table_smilies` (smilies_id, code, smile_url, emoticon) VALUES ( 23, ':mad:', 'icon_mad.gif', 'Mad'); INSERT INTO `mx_table_smilies` (smilies_id, code, smile_url, emoticon) VALUES ( 24, ':P', 'icon_razz.gif', 'Razz'); INSERT INTO `mx_table_smilies` (smilies_id, code, smile_url, emoticon) VALUES ( 25, ':-P', 'icon_razz.gif', 'Razz'); INSERT INTO `mx_table_smilies` (smilies_id, code, smile_url, emoticon) VALUES ( 26, ':razz:', 'icon_razz.gif', 'Razz'); INSERT INTO `mx_table_smilies` (smilies_id, code, smile_url, emoticon) VALUES ( 27, ':oops:', 'icon_redface.gif', 'Embarassed'); INSERT INTO `mx_table_smilies` (smilies_id, code, smile_url, emoticon) VALUES ( 28, ':cry:', 'icon_cry.gif', 'Crying or Very sad'); INSERT INTO `mx_table_smilies` (smilies_id, code, smile_url, emoticon) VALUES ( 29, ':evil:', 'icon_evil.gif', 'Evil or Very Mad'); INSERT INTO `mx_table_smilies` (smilies_id, code, smile_url, emoticon) VALUES ( 30, ':twisted:', 'icon_twisted.gif', 'Twisted Evil'); INSERT INTO `mx_table_smilies` (smilies_id, code, smile_url, emoticon) VALUES ( 31, ':roll:', 'icon_rolleyes.gif', 'Rolling Eyes'); INSERT INTO `mx_table_smilies` (smilies_id, code, smile_url, emoticon) VALUES ( 32, ':wink:', 'icon_wink.gif', 'Wink'); INSERT INTO `mx_table_smilies` (smilies_id, code, smile_url, emoticon) VALUES ( 33, ';)', 'icon_wink.gif', 'Wink'); INSERT INTO `mx_table_smilies` (smilies_id, code, smile_url, emoticon) VALUES ( 34, ';-)', 'icon_wink.gif', 'Wink'); INSERT INTO `mx_table_smilies` (smilies_id, code, smile_url, emoticon) VALUES ( 35, ':!:', 'icon_exclaim.gif', 'Exclamation'); INSERT INTO `mx_table_smilies` (smilies_id, code, smile_url, emoticon) VALUES ( 36, ':?:', 'icon_question.gif', 'Question'); INSERT INTO `mx_table_smilies` (smilies_id, code, smile_url, emoticon) VALUES ( 37, ':idea:', 'icon_idea.gif', 'Idea'); INSERT INTO `mx_table_smilies` (smilies_id, code, smile_url, emoticon) VALUES ( 38, ':arrow:', 'icon_arrow.gif', 'Arrow'); INSERT INTO `mx_table_smilies` (smilies_id, code, smile_url, emoticon) VALUES ( 39, ':|', 'icon_neutral.gif', 'Neutral'); INSERT INTO `mx_table_smilies` (smilies_id, code, smile_url, emoticon) VALUES ( 40, ':-|', 'icon_neutral.gif', 'Neutral'); INSERT INTO `mx_table_smilies` (smilies_id, code, smile_url, emoticon) VALUES ( 41, ':neutral:', 'icon_neutral.gif', 'Neutral'); INSERT INTO `mx_table_smilies` (smilies_id, code, smile_url, emoticon) VALUES ( 42, ':mrgreen:', 'icon_mrgreen.gif', 'Mr. Green'); # -------------------------------------------------------- # # Table structure for table 'mx_table_words' # DROP TABLE IF EXISTS `mx_table_words`; CREATE TABLE `mx_table_words` ( word_id mediumint(8) UNSIGNED NOT NULL auto_increment, word char(100) NOT NULL, replacement char(100) NOT NULL, PRIMARY KEY (word_id) ) CHARACTER SET `utf8` COLLATE `utf8mb3_bin`; |
|
From: FlorinCB <ory...@us...> - 2008-09-17 01:24:32
|
Update of /cvsroot/mxbb/core/install In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv14943 Modified Files: mx_install.php Log Message: mysql 6.x schema added Index: mx_install.php =================================================================== RCS file: /cvsroot/mxbb/core/install/mx_install.php,v retrieving revision 1.110 retrieving revision 1.111 diff -C2 -d -r1.110 -r1.111 *** mx_install.php 17 Sep 2008 07:56:45 -0000 1.110 --- mx_install.php 17 Sep 2008 08:24:24 -0000 1.111 *************** *** 351,354 **** --- 351,362 ---- 'COMMENTS' => 'mx_remove_remarks' ), + //This is when the user installed phpBB3 with mysql 6.x if not he can use mysqli + 'mysql6' => array( + 'LABEL' => 'MySQL 6.x', + 'SCHEMA' => 'mysql_61', + 'DELIM' => ';', + 'DELIM_BASIC' => ';', + 'COMMENTS' => 'mx_remove_remarks' + ), 'postgres' => array( 'LABEL' => 'PostgreSQL 7.x', *************** *** 594,603 **** case 'phpbb2': ! //$tplEx = 'tpl'; break; case 'phpbb3': ! //$tplEx = 'html'; break; } --- 602,611 ---- case 'phpbb2': ! $tplEx = $tplEx ? $tplEx : 'tpl'; break; case 'phpbb3': ! $tplEx = $tplEx ? $tplEx : 'html'; break; } |
|
From: FlorinCB <ory...@us...> - 2008-09-17 00:56:49
|
Update of /cvsroot/mxbb/core/install In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv5088 Modified Files: mx_install.php Log Message: Tjis fix will allow installing with php6 and mysql 5.51 if right schema is used Index: mx_install.php =================================================================== RCS file: /cvsroot/mxbb/core/install/mx_install.php,v retrieving revision 1.109 retrieving revision 1.110 diff -C2 -d -r1.109 -r1.110 *** mx_install.php 16 Sep 2008 02:31:00 -0000 1.109 --- mx_install.php 17 Sep 2008 07:56:45 -0000 1.110 *************** *** 40,44 **** // This is shown in the top right corner of the installation panels. // ! define('INSTALLER_VERSION', '3.0.3'); define('INSTALLER_NAME', 'MX-Publisher-IWizard'); --- 40,44 ---- // This is shown in the top right corner of the installation panels. // ! define('INSTALLER_VERSION', '3.0.4'); define('INSTALLER_NAME', 'MX-Publisher-IWizard'); *************** *** 67,70 **** --- 67,71 ---- $mx_root_path = '../'; $phpEx = substr(strrchr(__FILE__, '.'), 1); + $tplEx = 'tpl'; // // FYI: *************** *** 152,157 **** unset($input); } // If we are on PHP >= 6.0.0 we do not need some code ! if (phpversion() >= '6.0.0-dev') { /** --- 153,160 ---- unset($input); } + + // If we are on PHP >= 6.0.0 we do not need some code ! if (version_compare(phpversion(), "5.9.9", ">=")) { /** *************** *** 247,314 **** // trying to break out of a SQL statement. // ! if( !get_magic_quotes_gpc() ) { ! if( is_array($_GET) ) { ! while( list($k, $v) = each($_GET) ) { ! if( is_array($_GET[$k]) ) { ! while( list($k2, $v2) = each($_GET[$k]) ) { ! $_GET[$k][$k2] = addslashes($v2); } - @reset($_GET[$k]); - } - else - { - $_GET[$k] = addslashes($v); } } - @reset($_GET); - } ! if( is_array($_POST) ) ! { ! while( list($k, $v) = each($_POST) ) { ! if( is_array($_POST[$k]) ) { ! while( list($k2, $v2) = each($_POST[$k]) ) { ! $_POST[$k][$k2] = addslashes($v2); } - @reset($_POST[$k]); - } - else - { - $_POST[$k] = addslashes($v); } } - @reset($_POST); - } ! if( is_array($HTTP_COOKIE_VARS) ) ! { ! while( list($k, $v) = each($HTTP_COOKIE_VARS) ) { ! if( is_array($HTTP_COOKIE_VARS[$k]) ) { ! while( list($k2, $v2) = each($HTTP_COOKIE_VARS[$k]) ) { ! $HTTP_COOKIE_VARS[$k][$k2] = addslashes($v2); } - @reset($HTTP_COOKIE_VARS[$k]); - } - else - { - $HTTP_COOKIE_VARS[$k] = addslashes($v); } } - @reset($HTTP_COOKIE_VARS); } } - // // End Of Global Vars Initialization --- 250,319 ---- // trying to break out of a SQL statement. // ! if (version_compare(phpversion(), "5.9.9", "<=")) { ! if( !get_magic_quotes_gpc() ) { ! if( is_array($_GET) ) { ! while( list($k, $v) = each($_GET) ) { ! if( is_array($_GET[$k]) ) { ! while( list($k2, $v2) = each($_GET[$k]) ) ! { ! $_GET[$k][$k2] = addslashes($v2); ! } ! @reset($_GET[$k]); ! } ! else ! { ! $_GET[$k] = addslashes($v); } } + @reset($_GET); } ! if( is_array($_POST) ) { ! while( list($k, $v) = each($_POST) ) { ! if( is_array($_POST[$k]) ) { ! while( list($k2, $v2) = each($_POST[$k]) ) ! { ! $_POST[$k][$k2] = addslashes($v2); ! } ! @reset($_POST[$k]); ! } ! else ! { ! $_POST[$k] = addslashes($v); } } + @reset($_POST); } ! if( is_array($HTTP_COOKIE_VARS) ) { ! while( list($k, $v) = each($HTTP_COOKIE_VARS) ) { ! if( is_array($HTTP_COOKIE_VARS[$k]) ) { ! while( list($k2, $v2) = each($HTTP_COOKIE_VARS[$k]) ) ! { ! $HTTP_COOKIE_VARS[$k][$k2] = addslashes($v2); ! } ! @reset($HTTP_COOKIE_VARS[$k]); ! } ! else ! { ! $HTTP_COOKIE_VARS[$k] = addslashes($v); } } + @reset($HTTP_COOKIE_VARS); } } } // // End Of Global Vars Initialization *************** *** 456,460 **** $template = new Template($mx_root_path . 'install/templates'); page_header_install($lang['Welcome_install'], $lang['Choose_lang_explain']); ! $template->set_filenames(array('language' => 'mx_install_language.tpl')); $template->assign_vars(array( 'L_INITIAL_CONFIGURATION' => $lang['Install_settings'], --- 461,465 ---- $template = new Template($mx_root_path . 'install/templates'); page_header_install($lang['Welcome_install'], $lang['Choose_lang_explain']); ! $template->set_filenames(array('language' => 'mx_install_language.'.$tplEx)); $template->assign_vars(array( 'L_INITIAL_CONFIGURATION' => $lang['Install_settings'], *************** *** 589,598 **** case 'phpbb2': ! $tplEx = 'tpl'; break; case 'phpbb3': ! $tplEx = 'html'; break; } --- 594,603 ---- case 'phpbb2': ! //$tplEx = 'tpl'; break; case 'phpbb3': ! //$tplEx = 'html'; break; } *************** *** 675,679 **** $template = new Template($mx_root_path . 'install/templates'); page_header_install($lang['Welcome_install'], $instruction_text); ! $template->set_filenames(array('button' => 'mx_install_button.tpl')); $template->assign_vars(array( 'S_FORM_ACTION' => "mx_install.$phpEx", --- 680,684 ---- $template = new Template($mx_root_path . 'install/templates'); page_header_install($lang['Welcome_install'], $instruction_text); ! $template->set_filenames(array('button' => 'mx_install_button.'.$tplEx)); $template->assign_vars(array( 'S_FORM_ACTION' => "mx_install.$phpEx", *************** *** 737,741 **** $template = new Template($mx_root_path . 'install/templates'); page_header_install($lang['Welcome_install'], $instruction_text); ! $template->set_filenames(array('button' => 'mx_install_button.tpl')); $template->assign_vars(array( 'S_FORM_ACTION' => "mx_install.$phpEx", --- 742,746 ---- $template = new Template($mx_root_path . 'install/templates'); page_header_install($lang['Welcome_install'], $instruction_text); ! $template->set_filenames(array('button' => 'mx_install_button.'.$tplEx)); $template->assign_vars(array( 'S_FORM_ACTION' => "mx_install.$phpEx", *************** *** 988,992 **** $template = new Template($mx_root_path . 'install/templates'); page_header_install($install_title, $message); ! $template->set_filenames(array('button' => 'mx_install_button.tpl')); $action_label = $install_mode == 'upgrade' ? $lang['Go_to_admincp'] : $mx_portal_name; --- 993,997 ---- $template = new Template($mx_root_path . 'install/templates'); page_header_install($install_title, $message); ! $template->set_filenames(array('button' => 'mx_install_button.'.$tplEx)); $action_label = $install_mode == 'upgrade' ? $lang['Go_to_admincp'] : $mx_portal_name; *************** *** 1030,1034 **** $upgrade_mode = defined('PHPBB_INSTALLED') ? 'from28x' : ''; page_header_install($lang['Welcome_install'], $lang['Upgrade_Instruction']); ! $template->set_filenames(array('button' => 'mx_install_button.tpl')); $s_hidden_fields = '<input type="hidden" name="install_mode" value="' . $install_mode . '" />'. --- 1035,1039 ---- $upgrade_mode = defined('PHPBB_INSTALLED') ? 'from28x' : ''; page_header_install($lang['Welcome_install'], $lang['Upgrade_Instruction']); ! $template->set_filenames(array('button' => 'mx_install_button.'.$tplEx)); $s_hidden_fields = '<input type="hidden" name="install_mode" value="' . $install_mode . '" />'. *************** *** 1054,1058 **** $install_mode = 'install'; page_header_install($lang['Welcome_install'], $lang['Install_Instruction']); ! $template->set_filenames(array('body' => 'mx_install_body.tpl')); // --- 1059,1063 ---- $install_mode = 'install'; page_header_install($lang['Welcome_install'], $lang['Install_Instruction']); ! $template->set_filenames(array('body' => 'mx_install_body.'.$tplEx)); // |
|
From: FlorinCB <ory...@us...> - 2008-09-17 00:56:49
|
Update of /cvsroot/mxbb/core/install/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv5088/includes Modified Files: functions_install.php Log Message: Tjis fix will allow installing with php6 and mysql 5.51 if right schema is used Index: functions_install.php =================================================================== RCS file: /cvsroot/mxbb/core/install/includes/functions_install.php,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** functions_install.php 12 Sep 2008 06:27:34 -0000 1.17 --- functions_install.php 17 Sep 2008 07:56:44 -0000 1.18 *************** *** 17,23 **** function page_header_install($title, $instruction_text = '') { ! global $template, $lang, $mx_root_path, $mx_portal_name, $mx_portal_version; ! $template->set_filenames(array('header' => 'mx_install_header.tpl')); $template->assign_vars(array( 'L_PORTAL_NAME' => $mx_portal_name, --- 17,23 ---- function page_header_install($title, $instruction_text = '') { ! global $template, $lang, $mx_root_path, $mx_portal_name, $mx_portal_version, $tplEx; ! $template->set_filenames(array('header' => 'mx_install_header.'.$tplEx)); $template->assign_vars(array( 'L_PORTAL_NAME' => $mx_portal_name, *************** *** 32,36 **** function page_footer_install($show_phpinfo = true) { ! global $db, $template, $lang; $install_moreinfo = sprintf($lang['Install_moreinfo'], --- 32,36 ---- function page_footer_install($show_phpinfo = true) { ! global $db, $template, $lang, $tplEx; $install_moreinfo = sprintf($lang['Install_moreinfo'], *************** *** 42,46 **** ); ! $template->set_filenames(array('footer' => 'mx_install_footer.tpl')); $template->assign_vars(array( 'L_INSTALLER_NAME' => INSTALLER_NAME, --- 42,46 ---- ); ! $template->set_filenames(array('footer' => 'mx_install_footer.'.$tplEx)); $template->assign_vars(array( 'L_INSTALLER_NAME' => INSTALLER_NAME, *************** *** 927,943 **** $dbms = $phpbb_info['dbms']; ! ! require_once($mx_root_path . 'includes/db/' . $dbms . '.' . $phpEx); // Load dbal and initiate class ! ! if(!$db->db_connect_id) { // Connect to DB @define('SQL_LAYER', $dbms); ! $sql_db = 'dbal_' . $dbms; $db = new $sql_db(); if(!$db->sql_connect($dbhost, $dbuser, $dbpasswd, $dbname, false)) { ! print_r("Could not connect to all databases"); } } --- 927,957 ---- $dbms = $phpbb_info['dbms']; ! ! // If we are on PHP < 5.0.0 we need to force include or we get a blank page ! if (phpversion() < '5.0.0-dev') ! { ! print("This version of php is not supported, returned: " . phpversion() . '<br />Please upgrade at least to 5.1.2.'); ! require_once($mx_root_path . 'includes/db/' . $dbms . '.' . $phpEx); // Load dbal and initiate class ! } ! else ! { ! require_once($mx_root_path . 'includes/db/' . $dbms . '.' . $phpEx); // Load dbal and initiate class ! } if(!$db->db_connect_id) { // Connect to DB @define('SQL_LAYER', $dbms); ! $sql_db = 'dbal_' . $dbms; ! $db = new $sql_db(); + + if(!is_object($db)) + { + print("Could not load class " . $db . '<br />'); + } + if(!$db->sql_connect($dbhost, $dbuser, $dbpasswd, $dbname, false)) { ! print("Could not connect to all databases"); } } *************** *** 977,981 **** function show_phpinfo() { ! global $template, $mx_root_path, $phpEx; // --- 991,995 ---- function show_phpinfo() { ! global $template, $mx_root_path, $phpEx, $tplEx; // *************** *** 1020,1024 **** $template = new Template($mx_root_path . 'install/templates'); page_header_install('phpInfo()'); ! $template->set_filenames(array('phpinfo' => 'mx_install_phpinfo.tpl')); $template->assign_vars(array('PHPINFO' => $body_part)); $template->pparse('phpinfo'); --- 1034,1038 ---- $template = new Template($mx_root_path . 'install/templates'); page_header_install('phpInfo()'); ! $template->set_filenames(array('phpinfo' => 'mx_install_phpinfo.'.$tplEx)); $template->assign_vars(array('PHPINFO' => $body_part)); $template->pparse('phpinfo'); |
|
From: FlorinCB <ory...@us...> - 2008-09-16 22:43:05
|
Update of /cvsroot/mxbb/core In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv18136 Modified Files: common.php Log Message: we do not need this Index: common.php =================================================================== RCS file: /cvsroot/mxbb/core/common.php,v retrieving revision 1.102 retrieving revision 1.103 diff -C2 -d -r1.102 -r1.103 *** common.php 12 Sep 2008 06:28:01 -0000 1.102 --- common.php 17 Sep 2008 05:42:59 -0000 1.103 *************** *** 34,38 **** //error_reporting(E_ALL & ~E_NOTICE); @ini_set( 'display_errors', '1' ); ! error_reporting (E_ERROR | E_WARNING | E_PARSE); // This will NOT report uninitialized variables include($mx_root_path . 'modules/mx_shared/ErrorHandler/prepend.' . $phpEx); // For nice error output --- 34,38 ---- //error_reporting(E_ALL & ~E_NOTICE); @ini_set( 'display_errors', '1' ); ! //error_reporting (E_ERROR | E_WARNING | E_PARSE); // This will NOT report uninitialized variables include($mx_root_path . 'modules/mx_shared/ErrorHandler/prepend.' . $phpEx); // For nice error output |
|
From: FlorinCB <ory...@us...> - 2008-09-16 22:17:17
|
Update of /cvsroot/mxbb/core/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv11554 Modified Files: mx_functions_core.php Log Message: fix Index: mx_functions_core.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions_core.php,v retrieving revision 1.103 retrieving revision 1.104 diff -C2 -d -r1.103 -r1.104 *** mx_functions_core.php 2 Sep 2008 21:24:15 -0000 1.103 --- mx_functions_core.php 17 Sep 2008 05:17:11 -0000 1.104 *************** *** 3301,3305 **** $page_nav = array(); ! $this->core_nav( $this->page_rowset[$cat_id]['page_parent'], &$page_nav ); $sql = 'UPDATE ' . PAGE_TABLE . " --- 3301,3305 ---- $page_nav = array(); ! $this->core_nav($this->page_rowset[$cat_id]['page_parent'], $page_nav); $sql = 'UPDATE ' . PAGE_TABLE . " *************** *** 3330,3334 **** if ( !empty( $this->page_rowset[$parent_id] ) ) { ! $this->core_nav( $this->page_rowset[$parent_id]['page_parent'], &$page_nav ); $page_nav[$parent_id] = $this->page_rowset[$parent_id]['page_name']; } --- 3330,3334 ---- if ( !empty( $this->page_rowset[$parent_id] ) ) { ! $this->core_nav($this->page_rowset[$parent_id]['page_parent'], $page_nav); $page_nav[$parent_id] = $this->page_rowset[$parent_id]['page_name']; } *************** *** 3523,3527 **** { $page_nav = array(); ! $this->core_nav( $this->page_rowset[$page_id]['page_parent'], &$page_nav ); $sql = 'UPDATE ' . PAGE_TABLE . " --- 3523,3527 ---- { $page_nav = array(); ! $this->core_nav($this->page_rowset[$page_id]['page_parent'], $page_nav); $sql = 'UPDATE ' . PAGE_TABLE . " |
|
From: FlorinCB <ory...@us...> - 2008-09-16 22:09:05
|
Update of /cvsroot/mxbb/mx_pafiledb/pafiledb/modules In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv1815 Modified Files: pa_lists.php Log Message: fix for php6 Index: pa_lists.php =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/pafiledb/modules/pa_lists.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** pa_lists.php 3 Jun 2008 20:17:09 -0000 1.6 --- pa_lists.php 17 Sep 2008 05:09:00 -0000 1.7 *************** *** 25,29 **** * @param unknown_type $action */ ! function main( $action ) { global $template, $lang, $phpEx, $pafiledb_config, $userdata; --- 25,29 ---- * @param unknown_type $action */ ! function main( $action = false ) { global $template, $lang, $phpEx, $pafiledb_config, $userdata; |
|
From: FlorinCB <ory...@us...> - 2008-09-16 20:40:38
|
Update of /cvsroot/mxbb/core/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv2307 Modified Files: mx_functions_tools.php Log Message: fix for phpBB3 backend Index: mx_functions_tools.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions_tools.php,v retrieving revision 1.41 retrieving revision 1.42 diff -C2 -d -r1.41 -r1.42 *** mx_functions_tools.php 15 Sep 2008 23:49:47 -0000 1.41 --- mx_functions_tools.php 17 Sep 2008 03:40:30 -0000 1.42 *************** *** 4284,4303 **** $this->total_comments = ( $row = $db->sql_fetchrow($result) ) ? intval($row['number']) : 0; // // Go ahead and pull all data for this topic ! // ! $sql = "SELECT u.username, u.user_id, u.user_posts, u.user_from, u.user_website, u.user_email, u.user_icq, u.user_aim, u.user_yim, u.user_regdate, u.user_msnm, u.user_viewemail, u.user_rank, u.user_sig, u.user_sig_bbcode_uid, u.user_avatar, u.user_avatar_type, u.user_allowavatar, u.user_allowsmile, p.*, pt.post_text, pt.post_subject, pt.bbcode_uid ! FROM " . POSTS_TABLE . " p, " . USERS_TABLE . " u, " . POSTS_TEXT_TABLE . " pt ! WHERE p.topic_id = '" . $this->topic_id . "' ! AND pt.post_id = p.post_id ! AND u.user_id = p.poster_id ! ORDER BY p.post_id DESC"; ! if ( $this->start > -1 && $this->pagination_num > 0 ) { ! $sql .= " LIMIT $this->start, $this->pagination_num "; } ! if ( !( $result = $db->sql_query( $sql ) ) ) { mx_message_die( GENERAL_ERROR, "Could not obtain post/user information.", '', __LINE__, __FILE__, $sql ); --- 4284,4327 ---- $this->total_comments = ( $row = $db->sql_fetchrow($result) ) ? intval($row['number']) : 0; + // // Go ahead and pull all data for this topic ! // ! switch (PORTAL_BACKEND) ! { ! case 'internal': ! case 'phpbb2': ! ! $sql = "SELECT u.username, u.user_id, u.user_posts, u.user_from, u.user_website, u.user_email, u.user_icq, u.user_aim, u.user_yim, u.user_regdate, u.user_msnm, u.user_viewemail, u.user_rank, u.user_sig, u.user_sig_bbcode_uid, u.user_avatar, u.user_avatar_type, u.user_allowavatar, u.user_allowsmile, p.*, pt.post_text, pt.post_subject, pt.bbcode_uid ! FROM " . POSTS_TABLE . " p, " . USERS_TABLE . " u, " . POSTS_TEXT_TABLE . " pt ! WHERE p.topic_id = '" . $this->topic_id . "' ! AND pt.post_id = p.post_id ! AND u.user_id = p.poster_id ! ORDER BY p.post_id DESC"; ! break; ! ! case 'phpbb3': ! ! $sql = "SELECT u.*, p.*, pt.post_text, pt.post_subject, pt.bbcode_uid ! FROM " . POSTS_TABLE . " p, " . USERS_TABLE . " u, " . POSTS_TABLE . " pt ! WHERE p.topic_id = '" . $this->topic_id . "' ! AND pt.post_id = p.post_id ! AND u.user_id = p.poster_id ! ORDER BY p.post_id DESC"; ! break; ! } ! ! ! if ($this->start > -1 && $this->pagination_num > 0) { ! $result = $db->sql_query_limit($sql, $this->start, $this->pagination_num); } + else + { + $result = $db->sql_query_limit($sql, $this->start, $this->pagination_num); + } ! if (!$result) { mx_message_die( GENERAL_ERROR, "Could not obtain post/user information.", '', __LINE__, __FILE__, $sql ); |
|
From: FlorinCB <ory...@us...> - 2008-09-16 16:49:47
|
Update of /cvsroot/mxbb/mx_music/music_box/language/lang_greek In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv18166/mx_music/music_box/language/lang_greek Modified Files: lang_admin.php Added Files: lang_main.php Log Message: some stuff , greek language etc for modules --- NEW FILE: lang_main.php --- <?php /** * * @package mxBB Portal Module - mx_music * @version $Id: lang_main.php,v 1.1 2008/09/16 23:49:41 orynider Exp $ * @copyright (c) 2003 [ory...@rd..., OryNider] mxBB Development Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * */ /* Translation: Îλληνικά(Greek) Translator: "georges georgiou" <gio...@ho...> */ // // Music Online // $lang['Music'] = 'Media Center'; // // Music Index // $lang['Music_Online'] = 'ÎÎ¿Ï Ïική Online'; $lang['Songs'] = 'ΤÏαγοÏδια'; $lang['Cat_Views'] = 'Board Views'; $lang['Last_Song'] = 'Î ÏÏÏÏαÏο ΤÏαγοÏδι'; $lang['Public_Categories'] = 'ÎημÏÏÎ¹ÎµÏ ÎαÏηγοÏίεÏ'; $lang['Music_sub_categories'] = 'Î¥ÏÏ-καÏηγοÏίεÏ'; $lang['No_Songs'] = 'ÎανÎνα ΤÏαγοÏδι'; $lang['Top_Songs'] = 'Top ΤÏαγοÏδια'; $lang['Recent_Songs'] = 'Î ÏÏÏÏαÏα ΤÏαγοÏδια'; $lang['Song_Limit'] = 'ÎÏιο ΤÏÎ±Î³Î¿Ï Î´Î¹Î¿Ï'; $lang['Nav_Separator'] = ' » '; $lang['View'] = 'ÎκοÏÏÏε'; $lang['Singer'] = 'ΤÏÎ±Î³Î¿Ï Î´Î¹ÏÏήÏ'; // // Category View // $lang['Category_not_exist'] = 'ÎÏ Ïή η καÏηγοÏία δεν Ï ÏάÏÏει'; $lang['Upload_Song'] = 'ΦοÏÏÏÏÏε Ïο ΤÏαγοÏδι'; $lang['Song_Title'] = 'ΤίÏÎ»Î¿Ï Î¤ÏÎ±Î³Î¿Ï Î´Î¹Î¿Ï'; $lang['Pic_Title'] = 'ÎικÏνα ΤÏÎ±Î³Î¿Ï Î´Î¹Î¿Ï'; $lang['Category_pics'] = 'ÎικÏÎ½ÎµÏ ÎαÏηγοÏίαÏ'; $lang['Images'] = 'ÎικÏνεÏ'; $lang['Category_songs'] = 'ÎαÏηγοÏία Media'; $lang['Media'] = 'Media'; $lang['Edit_song'] = 'ÎÏεξεÏγαÏία'; $lang['Delete_song'] = 'ÎιαγÏαÏή'; $lang['Rating'] = 'ÎξιολÏγηÏη'; $lang['Comments'] = 'ΣÏÏλια'; $lang['Download'] = 'ΦÏÏÏÏÏη'; $lang['Listen'] = 'URL για Î¬ÎºÎ¿Ï Ïμα'; $lang['New_Comment'] = 'ÎÎο ΣÏÏλιο'; $lang['Not_rated'] = '<i>μη αξιολογημÎνο</i>'; // // Upload // $lang['Song_url'] = 'ΤÏÎ±Î³Î¿Ï Î´Î¹Î¿Ï URL'; $lang['Song_Desc'] = 'ΤÏÎ±Î³Î¿Ï Î´Î¹Î¿Ï Î£ÏίÏοι'; $lang['Plain_text_only'] = 'ÎÏνο Îείμενο'; $lang['Max_length'] = 'ÎνÏÏαÏο Î¼Î®ÎºÎ¿Ï (bytes)'; $lang['Upload_song_from_machine'] = 'ΦοÏÏÏÏÏε Ïο ÏÏαγοÏδι αÏÏ Ïο PC ÏαÏ'; $lang['Upload_to_Category'] = 'ÎεÏαÏÏÏÏÏÏη ÏÎ·Ï ÎαÏηγοÏίαÏ'; $lang['Upload_no_title'] = 'ÎεÏάÏαÏε Ïον ÏίÏλο ÏÏÎ±Î³Î¿Ï Î´Î¹Î¿Ï'; $lang['Upload_no_file'] = 'Î ÏÎÏει να ειÏαγάγεÏε Ïην διαδÏομή ÏÎ¿Ï ÏÏÎ±Î³Î¿Ï Î´Î¹Î¿Ï'; $lang['Upload_both_file'] = 'ÎÏοÏείÏε να εÏιλÎξεÏε Ïον 1 ή Ïον 2 ÏÏÏÏο ÏοÏÏÏνονÏÎ±Ï Î® με ÏÏνδεÏμο URL'; $lang['Desc_too_long'] = 'Îι ΣÏίÏοι ÏÎ¿Ï Î¤ÏÎ±Î³Î¿Ï Î´Î¹Î¿Ï ÎµÎ¯Î½Î±Î¹ ÏÎ¿Î»Ï Î¼ÎµÎ³Î¬Î»Î·'; $lang['Max_file_size'] = 'ÎÎγιÏÏο μÎÎ³ÎµÎ¸Î¿Ï Î±ÏÏÎµÎ¯Î¿Ï (bytes)'; $lang['Allowed_file'] = 'ÎÏ Ïά Ïα αÏÏεία εÏιÏÏÎÏονÏαι'; $lang['Music_reached_quota'] = 'ÎÏ Ïή η καÏηγοÏία ÎÏει ÏθάÏει ÏÏο ανÏÏαÏο ÏÏιο αÏÎ¹Î¸Î¼Î¿Ï ÏÏÎ±Î³Î¿Ï Î´Î¹Ïν. Îεν μÏοÏείÏε να ÏοÏÏÏÏεÏε άλλα. ΠαÏÎ±ÎºÎ±Î»Ï ÎµÎ»Î¬Ïε Ïε εÏαÏή με Ïον διαÏειÏηÏÏή για ÏεÏιÏÏÏÏεÏÎµÏ ÏληÏοÏοÏίεÏ'; $lang['User_reached_songs_quota'] = 'ÎÏεÏε ÏθάÏει ÏÏο ανÏÏαÏο ÏÏιο αÏÎ¹Î¸Î¼Î¿Ï ÏÏÎ±Î³Î¿Ï Î´Î¹Ïν. Îεν μÏοÏείÏε να ÏοÏÏÏÏεÏε άλλα. ΠαÏÎ±ÎºÎ±Î»Ï ÎµÎ»Î¬Ïε Ïε εÏαÏή με Ïον διαÏειÏηÏÏή για ÏεÏιÏÏÏÏεÏÎµÏ ÏληÏοÏοÏίεÏ'; $lang['Bad_upload_file_size'] = 'Το ÏοÏÏÏμÎνο αÏÏείο ÏÎ±Ï ÎµÎ¯Î½Î±Î¹ ÏάÏα ÏÎ¿Î»Ï Î¼ÎµÎ³Î¬Î»Î¿ ή αλλοιÏμÎνο'; $lang['Not_allowed_file_type'] = 'Î ÏÏÏÎ¿Ï Î±ÏÏÎµÎ¯Î¿Ï ÏÎ±Ï Î´ÎµÎ½ εÏιÏÏÎÏεÏαι'; $lang['Missed_song_title'] = 'ÎεÏάÏαÏε Ïον ÏίÏλο ÏÏÎ±Î³Î¿Ï Î´Î¹Î¿Ï'; $lang['Missed_song_url'] = 'ÎεÏάÏαÏε Ïην url ÏÎ¿Ï ÏÏÎ±Î³Î¿Ï Î´Î¹Î¿Ï'; $lang['Music_upload_successful'] = 'Το ÏÏαγοÏδι ÏÎ±Ï ÎÏει ÏοÏÏÏθεί εÏιÏÏ ÏÏÏ'; $lang['Music_upload_need_approval'] = 'Το ÏÏαγοÏδι ÏÎ±Ï ÎÏει ÏοÏÏÏθεί εÏιÏÏ ÏÏÏ.<br /><br />Îλλά η ÎγκÏιÏη ÏÏÎ±Î³Î¿Ï Î´Î¹Î¿Ï ÎµÎ¯Î½Î±Î¹ ενεÏγοÏοιημÎνη, ÎÏÏι Ïο ÏÏαγοÏδι ÏÎ±Ï ÏÏÎÏει να εγκÏιθεί αÏÏ Ïον διαÏειÏιÏÏή ή ÏÎ¿Ï Ï ÏÏ Î½ÏονιÏÏÎÏ ÏÏιν δημοÏÎ¹ÎµÏ Î¸ÎµÎ¯'; $lang['Click_return_category'] = 'ΠαÏήÏÏε %sÎδÏ%s να εÏιÏÏÏÎÏεÏε ÏÏην καÏηγοÏία'; $lang['Click_return_music_index'] = 'ΠαÏήÏÏε %sÎδÏ%s να εÏιÏÏÏÎÏεÏε ÏÏην ÎÏÏική ÎÎ¿Ï ÏικήÏ'; // View song $lang['Song_not_exist'] = 'ÎÏ ÏÏ Ïο ÏÏαγοÏδι δεν Ï ÏάÏÏει'; // Edit song $lang['Edit_Song_Info'] = 'ÎÏεξεÏγαÏία ÏληÏοÏοÏιÏν ÏÏÎ±Î³Î¿Ï Î´Î¹Î¿Ï'; $lang['Songs_updated_successfully'] = 'Îι ÏληÏοÏοÏÎ¯ÎµÏ ÏÏÎ±Î³Î¿Ï Î´Î¹Î¿Ï ÏÎ±Ï ÎÏÎ¿Ï Î½ ενημεÏÏθεί εÏιÏÏ ÏÏÏ'; // Delete song $lang['Music_delete_confirm'] = 'ÎίÏÏε βÎÎ²Î±Î¹Î¿Ï ÏÏι θÎλεÏε να διαγÏάÏεÏε Î±Ï ÏÏ Ïο ÏÏαγοÏδι(ια)?'; $lang['Songs_deleted_successfully'] = 'ÎÏ ÏÏ Ïο ÏÏαγοÏδι(α) ÎÏει διαγÏαÏεί εÏιÏÏ ÏÏÏ'; // // ModCP // $lang['Approval'] = 'ÎγκÏιÏη'; $lang['Approve'] = 'ÎγκÏίνεÏε'; $lang['Unapprove'] = 'Îεν ÎγκÏίνεÏε'; $lang['Status'] = 'ÎαÏάÏÏαÏη'; $lang['Locked'] = 'ÎλειδÏμÎνο'; $lang['Not_approved'] = 'Îη ÎγκεκÏιμÎνο'; $lang['Approved'] = 'ÎγκεκÏιμÎνο'; $lang['Move_to_Category'] = 'Move to Category'; $lang['Songs_moved_successfully'] = 'Το ÏÏαγοÏδι(α) ÏÎ±Ï ÎÏει μεÏακινειθεί εÏιÏÏ ÏÏÏ'; $lang['Songs_locked_successfully'] = 'Το ÏÏαγοÏδι(α) ÏÎ±Ï ÎÏει κλειθÏθεί εÏιÏÏ ÏÏÏ'; $lang['Songs_unlocked_successfully'] = 'Το ÏÏαγοÏδι(α) ÏÎ±Ï ÎÏει ξεκλειδÏθεί εÏιÏÏ ÏÏÏ'; $lang['Songs_approved_successfully'] = 'Το ÏÏαγοÏδι(α) ÏÎ±Ï ÎÏει εγκÏιθεί εÏιÏÏ ÏÏÏ'; $lang['Songs_unapproved_successfully'] = 'Το ÏÏαγοÏδι(α) ÏÎ±Ï Î´ÎµÎ½ εγκÏίθηκε'; // // Rate // $lang['Current_Rating'] = 'ΤÏÎÏÎ¿Ï Ïα ÎξιολÏγηÏη'; $lang['Please_Rate_It'] = 'ΠαÏÎ±ÎºÎ±Î»Ï ÎξιολογίÏÏε Ïο'; $lang['Already_rated'] = 'ÎÏεÏε ήδη αξιολογήδη Î±Ï ÏÏ Ïο ÏÏαγοÏδι'; $lang['Music_rate_successfully'] = 'Το ÏÏαγοÏδι ÏÎ±Ï Î±Î¾Î¹Î¿Î»Î¿Î³Î®Î¸Î·ÎºÎµ εÏιÏÏ ÏÏÏ'; // // Comment // $lang['Comment_no_text'] = 'ΠαÏÎ±ÎºÎ±Î»Ï ÎµÎ¹ÏάγεÏε Ïα ÏÏολιά ÏαÏ'; $lang['Comment_too_long'] = 'Το ÏÏÎ¿Î»Î¹Ï ÏÎ±Ï ÎµÎ¯Î½Î±Î¹ ÏÎ¿Î»Ï Î¼ÎµÎ³Î¬Î»Î¿'; $lang['Comment_delete_confirm'] = 'ÎίÏÏε βÎÎ²Î±Î¹Î¿Ï ÏÏι θÎλεÏε να διαγÏάÏεÏε Î±Ï ÏÏ Ïο ÏÏÏλιο?'; $lang['Song_Locked'] = 'Î£Ï Î³Î³Î½Ïμη, Î±Ï ÏÏ Ïο ÏÏαγοÏδι ÎÏει κλειδÏθεί. ÎÏομÎνÏÏ Î´ÎµÎ½ μÏοÏείÏε ÏλÎον να ÏÏολιάÏεÏε ÏÏ ÏÏ Ïο ÏÏαγοÏδι'; // // Song Image // $lang['Song_image'] = 'ÎικÏνα ΤÏÎ±Î³Î¿Ï Î´Î¹Î¿Ï'; $lang['Song_image_desc'] = 'ΠεικÏνα Î±Ï ÏÎ¿Ï ÏÎ¿Ï ÏÏÎ±Î³Î¿Ï Î´Î¹Î¿Ï<br />(ÏÏÏÏ ÎξÏÏÏ Î»Î»Î¿ CD, ΦÏÏÏ Î¤ÏÎ±Î³Î¿Ï Î´Î¹ÏÏή/Î¹Î±Ï ...)'; $lang['No_image'] = 'Îαμία ÎικÏνα'; $lang['Upload_image'] = 'ΦοÏÏÏÏÏε Ïην ÎικÏνα αÏÏ Ïο PC ÏαÏ'; $lang['Not_allowed_image_type'] = 'Î ÏοÏÏÏμÎÎ½Î¿Ï ÏÏÏÎ¿Ï ÎµÎ¹ÎºÏÎ½Î±Ï ÏÎ±Ï Î´ÎµÎ½ εÏιÏÏÎÏεÏαι'; $lang['Bad_upload_image_size'] = 'ÎÎ±ÎºÏ ÏοÏÏÏμα μεγÎÎ¸Î¿Ï Ï ÎµÎ¹ÎºÏναÏ'; $lang['Upload_image_size_toobig'] = 'Το ÏοÏÏÏμÎνο μÎÎ³ÎµÎ¸Î¿Ï ÎµÎ¹ÎºÏÎ½Î±Ï ÏÎ±Ï ÎµÎ¯Î½Î±Î¹ ÏάÏα ÏÎ¿Î»Ï Î¼ÎµÎ³Î¬Î»Î¿'; // // Search Song // $lang['Search_song'] = 'ÎναζήÏηÏη ÏÏÎ±Î³Î¿Ï Î´Î¹Î¿Ï'; // auth_key $lang['Music_view_can'] = '<b>ÎÏοÏείÏε</b> να δείÏε Ïα ÏÏαγοÏδια Ïε Î±Ï Ïήν Ïην καÏηγοÏία'; $lang['Music_view_cannot'] = '<b>Îεν ÎÏοÏείÏε</b> να δείÏε Ïα ÏÏαγοÏδια Ïε Î±Ï Ïήν Ïην καÏηγοÏία'; $lang['Music_download_can'] = '<b>ÎÏοÏείÏε</b> να μεÏαÏοÏÏÏÏÏε Ïα ÏÏαγοÏδια Ïε Î±Ï Ïήν Ïην καÏηγοÏία'; $lang['Music_download_cannot'] = '<b>Îεν ÎÏοÏείÏε</b> να μεÏαÏοÏÏÏÏÏε Ïα ÏÏαγοÏδια Ïε Î±Ï Ïήν Ïην καÏηγοÏία'; $lang['Music_upload_can'] = '<b>ÎÏοÏείÏε</b> να ÏοÏÏÏÏÏε νÎα ÏÏαγοÏδια Ïε Î±Ï Ïήν Ïην καÏηγοÏία'; $lang['Music_upload_cannot'] = '<b>Îεν ÎÏοÏείÏε</b> να ÏοÏÏÏÏÏε νÎα ÏÏαγοÏδια Ïε Î±Ï Ïήν Ïην καÏηγοÏία'; $lang['Music_rate_can'] = '<b>ÎÏοÏείÏε</b> να αξιολογήÏεÏε Ïα ÏÏαγοÏδια Ïε Î±Ï Ïήν Ïην καÏηγοÏία'; $lang['Music_rate_cannot'] = '<b>Îεν ÎÏοÏείÏε</b> α αξιολογήÏεÏε Ïα ÏÏαγοÏδια Ïε Î±Ï Ïήν Ïην καÏηγοÏία'; $lang['Music_comment_can'] = '<b>ÎÏοÏείÏε</b> να δημοÏιεÏÏεÏε ÏÏÏλια ÏÏÎ±Î³Î¿Ï Î´Î¹Ïν Ïε Î±Ï Ïήν Ïην καÏηγοÏία'; $lang['Music_comment_cannot'] = '<b>Îεν ÎÏοÏείÏε</b> να δημοÏιεÏÏεÏε ÏÏÏλια ÏÏÎ±Î³Î¿Ï Î´Î¹Ïν Ïε Î±Ï Ïήν Ïην καÏηγοÏία'; $lang['Music_edit_can'] = '<b>ÎÏοÏείÏε</b> να εÏεξεÏγαÏÏείÏε Ïα ÏÏαγοÏδια και Ïα ÏÏÏλιά ÏÎ±Ï Ïε Î±Ï Ïήν Ïην καÏηγοÏία'; $lang['Music_edit_cannot'] = '<b>Îεν ÎÏοÏείÏε</b> να εÏεξεÏγαÏÏείÏε Ïα ÏÏαγοÏδια και Ïα ÏÏÏλιά ÏÎ±Ï Ïε Î±Ï Ïήν Ïην καÏηγοÏία'; $lang['Music_delete_can'] = '<b>ÎÏοÏείÏε</b> να διαγÏάÏεÏε Ïα ÏÏαγοÏδια και Ïα ÏÏÏλιά ÏÎ±Ï Ïε Î±Ï Ïήν Ïην καÏηγοÏία'; $lang['Music_delete_cannot'] = '<b>Îεν ÎÏοÏείÏε</b> να διαγÏάÏεÏε Ïα ÏÏαγοÏδια και Ïα ÏÏÏλιά ÏÎ±Ï Ïε Î±Ï Ïήν Ïην καÏηγοÏία'; $lang['Music_moderate_can'] = '<b>ÎÏοÏείÏε</b> %sÏÏ Î½ÏονίÏεÏε%s Î±Ï Ïήν Ïην καÏηγοÏία'; ?> Index: lang_admin.php =================================================================== RCS file: /cvsroot/mxbb/mx_music/music_box/language/lang_greek/lang_admin.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** lang_admin.php 13 Sep 2008 06:25:18 -0000 1.1 --- lang_admin.php 16 Sep 2008 23:49:41 -0000 1.2 *************** *** 16,20 **** // Specify your language character encoding... [optional] // ! // setlocale(LC_ALL, "gr"); /* --- 16,20 ---- // Specify your language character encoding... [optional] // ! // setlocale(LC_ALL, "en"); /* |
|
From: FlorinCB <ory...@us...> - 2008-09-16 16:49:46
|
Update of /cvsroot/mxbb/mx_smartor/language/lang_greek In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv18166/mx_smartor/language/lang_greek Added Files: index.htm lang_admin.php Log Message: some stuff , greek language etc for modules --- NEW FILE: lang_admin.php --- <?php /** * * @package mxBB Portal Module - mx_smartor * @version $Id: lang_admin.php,v 1.1 2008/09/16 23:49:42 orynider Exp $ * @copyright (c) 2003 [sma...@ho..., Smartor] mxBB Project Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * */ // // The format of this file is: // // ---> $lang["message"] = "text"; // // Specify your language character encoding... [optional] // // setlocale(LC_ALL, "en"); /* Translation: Îλληνικά(Greek) Translator: "georges georgiou" <gio...@ho...> */ // // Configuration // $lang['Album_config'] = 'Î¡Ï Î¸Î¼Î¯ÏÎµÎ¹Ï Ê¼Î»Î¼ÏÎ¿Ï Î¼'; $lang['Album_config_explain'] = 'ÎÏοÏείÏε να αλλάξεÏε ÏÎ¹Ï Î³ÎµÎ½Î¹ÎºÎÏ Î¡Ï Î¸Î¼Î¯ÏÎµÎ¹Ï ÏÎ¿Ï Ê¼Î»Î¼ÏÎ¿Ï Î¼ ÏÎ±Ï ÎµÎ´Ï'; $lang['Album_config_updated'] = 'Îι ÏÏ Î¸Î¼Î¯ÏÎµÎ¹Ï ÏÎ¿Ï Ê¼Î»Î¼ÏÎ¿Ï Î¼ ενημεÏÏθηκαν εÏιÏÏ ÏÏÏ'; $lang['Click_return_album_config'] = 'ΠαÏήÏÏε %sÎδÏ%s να εÏιÏÏÏÎÏεÏε ÏÏÎ¹Ï Î¡Ï Î¸Î¼Î¯ÏÎµÎ¹Ï ÏÎ¿Ï Ê¼Î»Î¼ÏÎ¿Ï Î¼'; $lang['Max_pics'] = 'ÎÎγιÏÏÎ¿Ï Î±ÏιθμÏÏ ÎµÎ¹ÎºÏνÏν για κάθε καÏηγοÏία (-1 = αÏεÏιÏÏιÏÏοÏ)'; $lang['User_pics_limit'] = 'ÎÏιο εικÏνÏν ανά καÏηγοÏία για κάθε ÏÏήÏÏη (-1 = αÏεÏιÏÏιÏÏοÏ)'; $lang['Moderator_pics_limit'] = 'ÎÏιο εικÏνÏν ανά καÏηγοÏία για κάθε ÏÏ Î½ÏονηÏÏή (-1 = αÏεÏιÏÏιÏÏοÏ)'; $lang['Pics_Approval'] = 'ÎγκÏιÏη ÎικÏνÏν'; $lang['Rows_per_page'] = 'ÎÏιθμÏÏ ÏειÏÏν ÏÎµÎ»Î¯Î´Î±Ï ÎκαλεÏί (ÏÏÎ¹Ï ÎºÎ±ÏηγοÏίεÏ)'; $lang['Cols_per_page'] = 'ÎÏιθμÏÏ ÏÏηλÏν ÏÎµÎ»Î¯Î´Î±Ï ÎκαλεÏί (ÏÏÎ¹Ï ÎºÎ±ÏηγοÏίεÏ)'; $lang['Thumbnail_quality'] = 'ΠοιÏÏηÏα ÎκαλεÏί (1-100)'; $lang['Thumbnail_cache'] = 'ÎÎ±Î½Î¸Î¬Î½Î¿Ï Ïα μνήμη ÎκαλεÏί'; $lang['Manual_thumbnail'] = 'Îη Î±Ï ÏÏμαÏη ÎκαλεÏί'; $lang['GD_version'] = 'ÎελÏιοÏοίηÏη ÏÎ·Ï ÎκδοÏÎ·Ï GD'; $lang['Pic_Desc_Max_Length'] = 'ΠεÏιγÏαÏή ÎικÏναÏ/ÎνÏÏαÏο Î¼Î®ÎºÎ¿Ï ÏÏÎ¿Î»Î¯Î¿Ï (bytes)'; $lang['Hotlink_prevent'] = 'Î ÏÏληÏη ενεÏγÏν ÏÏ Î½Î´ÎÏμÏν'; $lang['Hotlink_allowed'] = 'ÎÏιÏÏÎÏονÏαι ιÏÏοÏÎµÎ»Î¯Î´ÎµÏ Î³Î¹Î± ενεÏγοÏÏ ÏÏνδεÏÎ¼Î¿Ï Ï (διαÏÏÏίÏÏε με κÏμμα)'; $lang['Personal_gallery'] = 'ÎÏιÏÏÎÏεÏε η Î´Î·Î¼Î¹Î¿Ï Ïγία ÏÏοÏÏÏικÏν γκαλεÏί για Ïα μÎλη'; $lang['Personal_gallery_limit'] = 'ÎÎγιÏÏÎ¿Ï Î±ÏιθμÏÏ ÎµÎ¹ÎºÏνÏν για κάθε ÏÏοÏÏÏική γκαλεÏί (-1 = αÏεÏιÏÏιÏÏοÏ)'; $lang['Personal_gallery_view'] = 'Î Î¿Î¹Î¿Ï Î¼ÏοÏεί να κάνει ÏÏοβολή ÏÏν ÏÏοÏÏÏικÏν γκαλεÏί'; $lang['Rate_system'] = 'ÎνεÏγοÏοιήÏη ÏÏ ÏÏήμαÏÎ¿Ï ÏαξινÏμηÏηÏ'; $lang['Rate_Scale'] =' Îλίμακα ÏαξινÏμηÏηÏ'; $lang['Comment_system'] = 'ÎνεÏγοÏοιήÏη ÏÏ ÏÏήμαÏÎ¿Ï ÏÏολίÏν'; $lang['Thumbnail_Settings'] = 'Î¡Ï Î¸Î¼Î¯ÏÎµÎ¹Ï ÎκαλεÏί'; $lang['Extra_Settings'] = 'ÎÏιÏλÎον Î¡Ï Î¸Î¼Î¯ÏειÏ'; $lang['Default_Sort_Method'] = 'Î ÏοεÏιλογή μεθÏÎ´Î¿Ï ÏαξινÏμηÏηÏ'; $lang['Default_Sort_Order'] = 'Î ÏοεÏιλογή ÏειÏά ÏαξινÏμηÏηÏ'; $lang['Fullpic_Popup'] = 'ΠλήÏÎ·Ï Ï ÏεÏεμÏανιζÏμενη ÏÏοβολή ÏÎ·Ï ÎµÎ¹ÎºÏναÏ'; $lang['Show_Download'] = 'ΠαÏÎ¿Ï ÏιάÏÏε Ïο ÎºÎ¿Ï Î¼Ïί ÎÎΤÎΦÎΡΤΩΣΠ(Ïο ÏÏοιο θα εÏιÏÏÎÏει Ïη μεÏαÏÏÏÏÏÏη ÏÏν εικÏνÏν Ïε μοÏÏή ZIP) μÏνο Î±Ï Ïοί ÏÎ¿Ï ÎµÏÎ¿Ï Î½ δικαιÏμαÏα ΦÎΡΤΩΣÎΣ ÏÏο ʼλμÏÎ¿Ï Î¼ (εάν εÏιλÎγεÏε Ïο ÎºÎ¿Ï Î¼Ïί Î ÎÎΤΠθα είναι ÏάνÏα διαθÎÏιμο ακÏμα κι αν οι ÏÏήÏÏÎµÏ Î´ÎµÎ½ ÎÏÎ¿Ï Î½ κανÎνα δικαίÏμα ΦÎΡΤΩΣÎΣ)'; $lang['Show_Slideshow'] = 'ÎÏιÏÏÎÏÏε Ïην ιδιÏÏηÏα Slideshow'; $lang['Show_Slideshow_Script'] = 'ÎÏιÏÏÎÏÏε Ïα αÏοÏελÎÏμαÏα μεÏάβαÏÎ·Ï Î³Î¹Î± Slideshow'; $lang['Show_Pic_Size'] = 'ΠαÏÎ¿Ï ÏιάÏÏε μÎÎ³ÎµÎ¸Î¿Ï ÏÎ·Ï ÎµÎ¹ÎºÏÎ½Î±Ï ÏÏην ÎκαλεÏί'; $lang['Show_IMG_No_GD'] = 'ΠαÏÎ¿Ï ÏιάÏÏε Ïα GIF εικονίδια ÏÏÏÎ¯Ï ÏÏηÏιμοÏοίηÏη ÏÎ·Ï Î²Î¹Î²Î»Î¹Î¿Î¸Î·ÎºÎ·Ï GD (οι ÏλήÏÎµÎ¹Ï ÎµÎ¹ÎºÏÎ½ÎµÏ ÏοÏÏÏνονÏαι και ÎÏειÏα ÏαÏÎ¿Ï ÏιάζονÏαι Ïε νÎο μÎγεθοÏ).'; $lang['Show_GIF_MidThumb'] = 'ΠαÏÎ¿Ï ÏιάÏÏε ÏλήÏÎµÎ¹Ï ÏÎ¹Ï ÎµÎ¹ÎºÏÎ½ÎµÏ GIF εάν Mid εικονίδια είναι ενεÏγοÏοιημÎνα.'; $lang['Show_Pics_Nav'] = 'ΠαÏÎ¿Ï ÏιάÏÏε Ïο κάδÏο ÏÎ·Ï ÎµÎ¹ÎºÏÎ½Î±Ï ÏλοήγηÏÎ·Ï ÏÏην Σελίδα ΠαÏÎ¿Ï ÏίαÏηÏ'; $lang['Invert_Nav_Arrows'] = 'ÎναÏÏÏÎÏÏε Ïον ÎείκÏη ÏÏνδεÏÎ·Ï ÏÏην Σελίδα ΠαÏÎ¿Ï ÏίαÏÎ·Ï (ÏÏÏÏÏÏ Î´ÎµÎ¯ÎºÏÎ·Ï = ÏÎ¹Ï ÏÏÏÏÏαÏοÏ)'; $lang['Show_Inline_Copyright'] = 'ΠαÏÎ¿Ï ÏιάÏÏε ÏÎ¹Ï ÏληÏοÏοÏÎ¯ÎµÏ ÏÎ½ÎµÏ Î¼Î±ÏικÏν δικαιÏμάÏÏν Ïε μια ενιαία γÏαμμή'; $lang['Enable_Nuffimage'] = 'ÎνεÏγοÏοιήÏÏε Ïη Ïελίδα ειδικÏν εÏΠεικÏνÏν βαÏιÏμÎνη ÏÏην καÏηγοÏία εικÏνÏν Nuffmon'; $lang['Enable_Sepia_BW'] = 'ÎνεÏγοÏοιήÏÏε Sepia λαι B&W ÏÏη Ïελίδα ειδικÏν εÏÎ (θÎÏÏε εκÏÏÏ Î»ÎµÎ¹ÏÎ¿Ï ÏÎ³Î¯Î±Ï Î±Ï Ïή ÏÎ·Ï Î»ÎµÎ¹ÏÎ¿Ï Ïγία εάν θÎλεÏε να μη ÏοÏÏÏÏη αÏο Ïο κενÏÏÎ¹ÎºÏ Ï ÏολογιÏÏή CPU)'; $lang['Show_EXIF_Info'] = 'ΠαÏÎ¿Ï ÏιάÏÏε ÏÎ¹Ï ÏληÏοÏοÏÎ¯ÎµÏ ÎµÎ¹ÎºÏÎ½Î±Ï EXIF'; $lang['Enable_BBCode'] = 'ÎνεÏγοÏοιήÏη BBCode'; $lang['Set_Memory'] = 'ÎÎÏÏε Îνα ÏÏιο Î¼Î½Î®Î¼Î·Ï Î¼ÎÏÏ PHP (MB)'; $lang['Set_Memory_Explain'] = 'ΠεÏιλογή Î±Ï Ïή μÏοÏεί να ÏÏηÏιμοÏοιηθεί για να Î±Ï Î¾Î®Ïει Ïο ÏÏιο Î¼Î½Î®Î¼Î·Ï ÏÎ¿Ï PHP (Î±Ï Ïή η ÏÏθμιÏη ÏÏÎÏει αÏÏ Ïον κενÏÏÎ¹ÎºÏ Ï ÏολογιÏÏή): μÏοÏείÏε να ÏÏοÏÏαθήÏεÏε να Î±Ï Î¾Î®ÏεÏε Ïη μνήμη ÏÏαν δεν ÏοÏÏÏνονÏαι ÏÏÏÏά οι εικÏÎ½ÎµÏ ÏαÏ. Îια να αÏοÏÏγεÏε Ïα Ï ÏηλÏÏεÏα ÏÏια μνήμηÏ, η ανÏÏαÏη αξία είναι 16MB.'; $lang['LB_Preview'] = 'ÎνεÏγοÏοιήÏη Î ÏοεÏιÏκÏÏηÏÎ·Ï LightBox'; $lang['LB_Preview_Explain'] = 'Το ÏαÏακÏηÏιÏÏÎ¹ÎºÏ Î³Î½ÏÏιÏμα Î±Ï ÏÎ®Ï ÏÎ·Ï ÎµÏÎ¹Î»Î¿Î³Î®Ï ÎµÎ¯Î½Î±Î¹ να ÏαÏÎ¿Ï ÏιάÏει Îνα LightBox με ÏÏοβολή εικÏνÏν οÏαν Ïο ÏονÏίκι κινείÏε ÏÏα εικονίδια.'; $lang['Album_config_notice'] = 'Îαν αλλάξεÏε ÏÎ¹Ï ÏÏÎÏÎ¿Ï ÏÎµÏ ÏÏ Î¸Î¼Î¯ÏÎµÎ¹Ï ÏÎ¿Ï Ê¼Î»Î¼ÏÎ¿Ï Î¼ και εÏιλÎξεÏε άλλο εικονίδιο, Îα ÏÏÎÏει να αÏοθηκεÏÏεÏε ÏÎ¹Ï Î±Î»Î»Î±Î³ÎÏ.<br />Το ÏÏÏÏημα <b>δεν θα αÏοθηκεÏÏη</b> ÏÎ¹Ï Î±Î»Î»Î±Î³ÎÏ Î³Î¹Î± ÏÎ±Ï Î±Ï ÏÏμαÏα.'; $lang['Save_sucessfully_confimation'] = '%s ÎÏοθηκεÏÏηκε εÏιÏÏ ÏÏÏ'; $lang['Show_Recent_In_Subcats'] = 'ΠαÏÎ¿Ï ÏιάÏÏε ÏÎ¹Ï ÏÏÏÏÏαÏÎµÏ ÎµÎ¹ÎºÏÎ½ÎµÏ ÏÏÎ¹Ï Ï Ïο-καÏηγοÏίεÏ'; $lang['Show_Recent_Instead_of_NoPics'] = 'ΠαÏÎ¿Ï ÏιάÏÏε ÏÏÏÏÏαÏÎµÏ ÎµÎ¹ÎºÏÎ½ÎµÏ Î¿Î¹ οÏÎ¿Î¯ÎµÏ Î´ÎµÎ½ ÎÏÎ¿Ï Î½ κανÎνα Î¼Î®Î½Ï Î¼Î±'; $lang['Show_Last_Comments'] = 'ΠαÏÎ¿Ï ÏίαÏη ÏÎ¿Ï block ÏÎµÎ»ÎµÏ ÏαίÏν ÏÏολίÏν ÏÏην αÏÏική Ïελίδα ÏÎ¿Ï Î¬Î»Î¼ÏÎ¿Ï Î¼ και ÏÏν καÏηγοÏιÏν'; $lang['Album_Index_Settings'] = 'ÎÏÏική ʼλμÏÎ¿Ï Î¼'; $lang['Show_Index_Subcats'] = 'ΠαÏÎ¿Ï ÏίαÏη Ï ÏÏ-καÏηγοÏιÏν ÏÏον αÏÏÎ¹ÎºÏ Ïίνακα'; $lang['Show_Index_Thumb'] = 'ΠαÏÎ¿Ï ÏίαÏη εικονοδίÏν καÏηγοÏÎ¯Î±Ï ÏÏον αÏÏÎ¹ÎºÏ Ïίνακα'; $lang['Show_Index_Pics'] = 'ΠαÏÎ¿Ï ÏίαÏη ÏÎ¿Ï Î±ÏÎ¹Î¸Î¼Î¿Ï ÏÏν εικÏνÏν ÏÏην ÏÏÎÏÎ¿Ï Ïα καÏηγοÏία ÏÏον αÏÏÎ¹ÎºÏ Ïίνακα'; $lang['Show_Index_Comments'] = 'ΠαÏÎ¿Ï ÏίαÏη ÏÎ¿Ï Î±ÏÎ¹Î¸Î¼Î¿Ï ÏÏν ÏÏολίÏν ÏÏην ÏÏÎÏÎ¿Ï Ïα καÏηγοÏία ÏÏον αÏÏÎ¹ÎºÏ Ïίνακα'; $lang['Show_Index_Total_Pics'] = 'ΠαÏÎ¿Ï ÏίαÏη ÏÎ¿Ï ÏÏ Î½Î¿Î»Î¹ÎºÎ¿Ï Î±ÏÎ¹Î¸Î¼Î¿Ï ÎµÎ¹ÎºÏνÏν για ÏÎ¹Ï ÏÏÎÏÎ¿Ï ÏÎµÏ ÎºÎ±ÏηγοÏÎ¯ÎµÏ ÎºÎ±Î¹ για ÏÎ»ÎµÏ ÏÎ¹Ï Ï ÏÏ-καÏηγοÏÎÏ ÏÏον αÏÏÎ¹ÎºÏ Ïίνακα'; $lang['Show_Index_Total_Comments'] = 'ΠαÏÎ¿Ï ÏίαÏη ÏÎ¿Ï ÏÏ Î½Î¿Î»Î¹ÎºÎ¿Ï Î±ÏÎ¹Î¸Î¼Î¿Ï ÏÏολίÏν για ÏÎ¹Ï ÏÏÎÏÎ¿Ï ÏÎµÏ ÎºÎ±ÏηγοÏÎ¯ÎµÏ ÎºÎ±Î¹ για ÏÎ»ÎµÏ ÏÎ¹Ï Ï ÏÏ-καÏηγοÏÎÏ ÏÏον αÏÏÎ¹ÎºÏ Ïίνακα'; $lang['Show_Index_Last_Comment'] = 'ΠαÏÎ¿Ï ÏίαÏη ÏÎµÎ»ÎµÏ ÏÎ±Î¯Î¿Ï ÏÏολίÏν για ÏÎ¹Ï ÏÏÎÏÎ¿Ï ÏÎµÏ ÎºÎ±ÏηγοÏÎ¯ÎµÏ ÎºÎ±Î¹ για ÏÎ»ÎµÏ ÏÎ¹Ï Ï ÏÏ-καÏηγοÏÎÏ ÏÏον αÏÏÎ¹ÎºÏ Ïίνακα'; $lang['Show_Index_Last_Pic'] = 'ΠαÏÎ¿Ï ÏίαÏη ÏÎ·Ï ÏÎµÎ»ÎµÏ ÏÎ±Î¯Î±Ï ÏληÏοÏοÏÎ¯Î±Ï ÎµÎ¹ÎºÏÎ½Î±Ï Î³Î¹Î± ÏÎ¹Ï ÏÏÎÏÎ¿Ï ÏÎµÏ ÎºÎ±ÏηγοÏÎ¯ÎµÏ ÎºÎ±Î¹ για ÏÎ»ÎµÏ ÏÎ¹Ï Ï ÏÏ-καÏηγοÏÎÏ ÏÏον αÏÏÎ¹ÎºÏ Ïίνακα'; $lang['Line_Break_Subcats'] = 'ΠαÏÎ¿Ï ÏίαÏη κάθε Ï ÏÏ-καÏ. Ïε καινοÏÏγια γÏαμμή'; $lang['Show_Personal_Gallery_Link'] = 'ΠαÏÎ¿Ï ÏίαÏη ÏÏ Î½Î´ÎÏμÏν Î ÏοÏÏÏÎ¹ÎºÎ®Ï ÎκαλεÏί και Î ÏοÏÏÏικÎÏ ÎκαλεÏί ΧÏηÏÏÏν ÏÏÎ¹Ï Ï ÏÏ-καÏηγοÏίεÏ'; $lang['Album_Personal_Auth_Explain'] = 'ÎÎ´Ï Î¼ÏοÏείÏε να εÏιλÎξεÏε Ïοιά (ÎÏ) ομάδα (εÏ) ÏÏηÏÏÏν μÏοÏεί να είναι Îενικοί Î£Ï Î½ÏονιÏÏÎÏ Î³Î¹Î± <b>Ïλα</b> Ïα ÏÏοÏÏÏικά άλμÏÎ¿Ï Î¼, καÏηγοÏÎ¯ÎµÏ Î® μÏνο να εÏÎ¿Ï Î½ δική ÏÎ¿Ï Ï Î¹Î´Î¹ÏÏική ÏÏÏÏβαÏηÏη'; $lang['Album_debug_mode'] = 'ÎÏιÏÏÎÏÏε Ïον ÏÏÏÏο διÏÏθÏÏÎ·Ï Î¹ÎµÏαÏÏίαÏ.<br /><span class="gensmall">ÎÏ ÏÏ Î¸Î± ÏαÏαγάγει ÏολλÎÏ ÏÏÏÏθεÏÎµÏ ÏαÏαγÏγÎÏ ÏÏη Ïελίδα και εÏίÏÎ·Ï Î¼ÎµÏικÎÏ ÏÏοειδοÏοιήÏÎµÎ¹Ï ÎµÏιγÏαÏÏν, οι οÏÎ¿Î¯ÎµÏ ÎµÎ¯Î½Î±Î¹ ÏÎ»ÎµÏ ÎµÎ½Ïάξει.<br />ÎÏ Ïή η εÏιλογή ÏÏÎÏει <b>only</b> να ÏÏηÏιμοÏοιείÏαι ÏÏαν ÎÏÎ¿Ï Î¼Îµ ÏÏοβλήμαÏα.</span>'; $lang['New_Pic_Check_Interval'] = 'Î ÏÏÏÎ½Î¿Ï ÏÎ¿Ï ÎµÏÎ¹Î¸Ï Î¼ÎµÎ¯Ïε για να δει εάν μια εικÏνα είναι νÎα ή ÏÏι<br /><span class="gensmall"><b>Format</b> : <number><type> ÎÏÎ¿Ï ÎºÎ¬Î¸Îµ ÏÏÏÎ¿Ï ÎµÎ¯Î½Î±Î¹ h, d, w or m (ÏÏα, ημÎÏα, εβδομάδα ή μήναÏ)<br /> Ï.Ï. 12H = 12 ÏÏÎµÏ ÎºÎ±Î¹ 12D = 12 ημÎÏÎµÏ ÎºÎ±Î¹ 12W = 12 ÎµÎ²Î´Î¿Î¼Î¬Î´ÎµÏ ÎºÎ±Î¹ 12M = 12 μήνεÏ<br />Îάν κανÎÎ½Î±Ï ÏÏÏÎ¿Ï Î´ÎµÎ½ Î´Î¹ÎµÏ ÎºÏινίζεÏαι Ïο ÏÏÏÏημα θα ÏÏηÏιμοÏοιήÏει <b>ημÎÏεÏ</b></span>'; $lang['New_Pic_Check_Interval_Desc'] = '<span class="gensmall">H = ΩΡÎΣ, D = ÎÎÎΡÎΣ, W = ÎÎÎÎÎÎÎÎΣ, M = ÎÎÎÎΣ</span>'; $lang['New_Pic_Check_Interval_LV'] = 'ÎνεÏγοÏοιÏνÏÎ±Ï Î±Ï Ïή Ïην εÏιλογή οι νÎÎµÏ ÎµÎ¹ÎºÏÎ½ÎµÏ Î¸Î± μεÏÏοÏνÏαι με βάÏη Ïην ÏÎµÎ»ÎµÏ Ïαία εÏίÏκεÏη ÏÏν ÏÏηÏÏÏν.'; $lang['Enable_Show_All_Pics'] = 'ÎνεÏγοÏοιήÏÏε Ïην εÏιλογή ÏÎ¿Ï ÏÏÏÏÎ¿Ï ÏÏÎ¿Î²Î¿Î»Î®Ï ÏÏν Î ÏοÏÏÏικÏν ÎκαλεÏί (ÏÎ»ÎµÏ Î¿Î¹ εικÏÎ½ÎµÏ Î® μÏνο η εÏιλεγμÎνη καÏηγοÏία).<br /> ÎÏαν εÏιλÎξεÏε <b>ÏÏι</b>, μÏνο η εÏιλεγμÎνη καÏηγοÏία ÏαÏÎ¿Ï ÏιάζεÏαι.'; $lang['Enable_Index_Supercells'] = 'ÎνεÏγοÏοιήÏÏε Ïα super cells ÏÏον αÏÏÎ¹ÎºÏ Ïίνακα. <br /><span class="gensmall">Îαν Î±Ï ÏÏ ÎµÎ½ÎµÏγοÏοιηθεί θα ÎÏει ÏÏ Î±ÏοÏÎλεÏμα Ïα εÏÎ ÏÏÎ¹Ï ÏÏÎ®Î»ÎµÏ ÏÏην κίνηÏη ÏÎ¿Ï ÏονÏικιοÏ, γνÏÏÏά ÏÏ supercell εÏÎ.</span>'; $lang['Show_OTF_Link'] = 'ΠαÏÎ¿Ï ÏίαÏη ÏÏν ÏÏ Î½Î´ÎÏμÏν "Album OTF" ÏÏην ÎÏÏική Ïελίδα ÏÎ¿Ï Ê¼Î»Î¼ÏÎ¿Ï Î¼'; $lang['Show_AllPics_Link'] = 'ΠαÏÎ¿Ï ÏίαÏη ÏÏν ÏÏ Î½Î´ÎÏμÏν "ÎλÏν ÏÏν ÎικÏνÏν" ÏÏην ÎÏÏική Ïελίδα ÏÎ¿Ï Ê¼Î»Î¼ÏÎ¿Ï Î¼'; $lang['Show_PG_Link'] = 'ΠαÏÎ¿Ï ÏίαÏη ÏÏν ÏÏ Î½Î´ÎÏμÏν "Î ÏοÏÏÏÎ¹ÎºÎ®Ï ÎκαλεÏί" ÏÏην ÎÏÏική Ïελίδα ÏÎ¿Ï Ê¼Î»Î¼ÏÎ¿Ï Î¼'; // Personal Gallery Page $lang['Personal_Galleries'] = 'Î ÏοÏÏÏικÎÏ ÎκαλεÏί'; $lang['Album_personal_gallery_title'] = 'Î ÏοÏÏÏική ÎκαλεÏί'; $lang['Album_personal_gallery_explain'] = 'Σε Î±Ï Ïήν Ïην Ïελίδα, εÏÎµÎ¯Ï Î¼ÏοÏείÏε να εÏιλÎξεÏε ÏÎ¿Î¹ÎµÏ Î¿Î¼Î¬Î´ÎµÏ Î¼ÎµÎ»Ïν ÎÏÎ¿Ï Î½ δικαίÏμα να Î´Î·Î¼Î¹Î¿Ï ÏγήÏÎ¿Ï Î½ και να ÏÏÎ¿Î²Î¬Î»Î¿Ï Î½ ÏÏοÏÏÏικÎÏ Î³ÎºÎ±Î»ÎµÏί. ÎÏ ÏÎÏ Î¿Î¹ ÏÏ Î¸Î¼Î¯ÏÎµÎ¹Ï ÎÏÎ¿Ï Î½ εÏιÏÏÏÏÎµÎ¹Ï Î¼Ïνο ÏÏαν θÎÏεÏε "ΠΡÎΣΩΠÎÎÎΣ" για "ÎÏιÏÏÎÏεÏε η Î´Î·Î¼Î¹Î¿Ï Ïγία ÏÏοÏÏÏικÏν γκαλεÏί για μÎλη" ή "Î Î¿Î¹Î¿Ï Î¼ÏοÏεί να κάνει ÏÏοβολή ÏÏοÏÏÏÎ¹ÎºÎ®Ï Î³ÎºÎ±Î»ÎµÏί" ÏÏην οθÏνη ÏÏ Î¸Î¼Î¯ÏεÏν ÏÎ¿Ï Ê¼Î»Î¼ÏÎ¿Ï Î¼'; $lang['Album_personal_successfully'] = 'Îι ÏÏ Î¸Î¼Î¯ÏÎµÎ¹Ï ÎÏÎ¿Ï Î½ ενημεÏÏθεί εÏιÏÏ ÏÏÏ'; $lang['Click_return_album_personal'] = 'ΠαÏήÏÏε %sÎδÏ%s να εÏιÏÏÏÎÏεÏε ÏÏÎ¹Ï ÏÏ Î¸Î¼Î¯ÏÎµÎ¹Ï ÏÎ·Ï Î ÏοÏÏÏÎ¹ÎºÎ®Ï ÎκαλεÏί'; $lang['Allow_Album_Avatars'] = 'ÎÏιÏÏÏÎÏαÏε ÏÏα μÎλη να ÏÏηÏιμοÏοιοÏν ÏÎ¹Ï ÎµÎ¹ÎºÏÎ½ÎµÏ ÏÎ¿Ï Ê¼Î»Î¼ÏÎ¿Ï Î¼ ÏÏ Ê¼Î²Î±ÏαÏ'; // Personal Gallery FAP $lang['Album_Personal_Settings'] = 'Î ÏοÏÏÏικÎÏ ÎκαλεÏί'; $lang['Album_Personal_Settings_Explain'] = 'ÎÏοÏείÏε ÎµÎ´Ï Î½Î± αλλάξεÏε ÏÎ¹Ï ÏÏ Î¸Î¼Î¯ÏÎµÎ¹Ï ÏÏν Î ÏοÏÏÏικÏν ÎκαλεÏί'; $lang['Show_Personal_Sub_Cats'] = 'ΠαÏÎ¿Ï ÏιάÏÏε ÏÏοÏÏÏικÎÏ Ï Ïο-καÏηγοÏÎ¯ÎµÏ ÏÏον αÏÏÎ¹ÎºÏ Ïίνακα'; $lang['Personal_Gallery_Approval'] = 'Îι εικÏÎ½ÎµÏ ÏÎ·Ï Î ÏοÏÏÏÎ¹ÎºÎ®Ï ÎκαλεÏί εÏÎ¹ÎºÏ ÏÏθήκαν'; $lang['Personal_Gallery_MOD'] = 'Î Î ÏοÏÏÏική ÎκαλεÏί δεν μÏοÏεί να αλλαÏÏεί αÏÏ Ïον κάÏοÏο'; $lang['Personal_Sub_Cat_Limit'] = 'ÎÎγιÏÏÎ¿Ï Î±ÏιθμÏÏ Ï Ïο-καÏηγοÏιÏν (-1 = αÏεÏιÏÏιÏÏοÏ)'; $lang['User_Can_Create_Personal_SubCats'] = 'Îι ÏÏήÏÏÎµÏ Î¼ÏοÏοÏν να Î´Î·Î¼Î¹Î¿Ï ÏγήÏÎ¿Ï Î½ ÏÎ¹Ï Ï Ïο-καÏηγοÏÎ¯ÎµÏ ÏÏην Î ÏοÏÏÏική ÎκαλεÏί'; $lang['Click_return_personal_gallery_index'] = 'ΠαÏήÏÏε %sÎδÏ%s να εÏιÏÏÏÎÏεÏεÏÏην αÏÏική Ïελίδα ÏÎ·Ï Î ÏοÏÏÏικÏν ÎκαλεÏί'; $lang['Show_Recent_In_Personal_Subcats'] = 'ΠαÏÎ¿Ï ÏιάÏÏε ÏÎ¹Ï ÏÏÏÏÏαÏÎµÏ ÎµÎ¹ÎºÏÎ½ÎµÏ ÏÏÎ¹Ï ÏÏοÏÏÏικÎÏ Ï Ïο-καÏηγοÏίεÏ'; $lang['Show_Recent_Instead_of_Personal_NoPics'] = 'ΠαÏÎ¿Ï ÏιάÏÏε ÏÎ¹Ï ÏÏÏÏÏαÏÎµÏ ÎµÎ¹ÎºÏÎ½ÎµÏ ÏÎ¿Ï Î´ÎµÎ½ εÏÎ¿Ï Î½ ÏÏÏλια ÏÏην Î ÏοÏÏÏική ÎκαλεÏί'; // // Categories // $lang['Album_Categories_Title'] = 'ÎλεγÏÎ¿Ï ÎαÏηγοÏιÏν ʼλμÏÎ¿Ï Î¼'; $lang['Album_Categories_Explain'] = 'Σε Î±Ï Ïήν Ïην οθÏνη μÏοÏείÏε να διαÏειÏιÏÏείÏε ÏÎ¹Ï ÎºÎ±ÏηγοÏÎ¯ÎµÏ ÏαÏ: Î´Î·Î¼Î¹Î¿Ï ÏγήÏεÏε, αλλάξεÏε, διαγÏάÏεÏε, ÏαξινομήÏεÏε, κ.λÏ..'; $lang['Category_Permissions'] = 'ÎικαιÏμαÏα ÎαÏηγοÏίαÏ'; $lang['Category_Title'] = 'ΤίÏÎ»Î¿Ï ÎαÏηγοÏίαÏ'; $lang['Category_Desc'] = 'ΠεÏιγÏαÏή ÎαÏηγοÏίαÏ'; $lang['View_level'] = 'Î Ïοβολή ÎÏιÏÎÎ´Î¿Ï '; $lang['Upload_level'] = 'ÎνεβάÏÏε ÎÏίÏεδο'; $lang['Rate_level'] = 'ΤαξινÏμηÏη ÎÏίÏÎµÎ´Î¿Ï '; $lang['Comment_level'] = 'ΣÏÏλια ÎÏίÏÎµÎ´Î¿Ï '; $lang['Edit_level'] = ' ÎÏεξεÏγαÏία ÎÏίÏÎµÎ´Î¿Ï '; $lang['Delete_level'] = 'ÎιαγÏαÏή ÎÏίÏÎµÎ´Î¿Ï '; $lang['New_category_created'] = 'ΠνÎα καÏηγοÏία ÎÏει Î´Î·Î¼Î¹Î¿Ï Ïγηθεί εÏιÏÏ ÏÏÏ'; $lang['Click_return_album_category'] = 'ΠαÏήÏÏε %sÎδÏ%s να εÏιÏÏÏÎÏεÏε ÏÏην ÎιαÏείÏηÏη ÎαÏηγοÏιÏν ʼλμÏÎ¿Ï Î¼'; $lang['Category_updated'] = 'Îι ÏÏ Î¸Î¼Î¯ÏÎµÎ¹Ï ÏÎ·Ï ÎºÎ±ÏηγοÏÎ¯Î±Ï ÎÏÎ¿Ï Î½ ενημεÏÏθεί εÏιÏÏ ÏÏÏ'; $lang['Delete_Category'] = 'ÎιαγÏάÏÏε ÎαÏηγοÏία'; $lang['Delete_Category_Explain'] = 'ΠκαÏÏÏÎÏÏ Î¼Î¿ÏÏή ÏÎ±Ï ÎµÏιÏÏÎÏει να διαγÏάÏεÏε μια καÏηγοÏία και να αÏοÏαÏίÏεÏε ÏÎ¿Ï Î¸ÎλεÏε να ÏοÏοθεÏήÏεÏε ÏÎ¹Ï ÎµÎ¹ÎºÏÎ½ÎµÏ ÏÎ¿Ï ÎµÎ¼ÏεÏιÎÏονÏαι'; $lang['Delete_all_pics'] = 'ÎιαγÏάÏÏε ÏÎ»ÎµÏ ÏÎ¹Ï ÎµÎ¹ÎºÏνεÏ'; $lang['Category_deleted'] = 'ÎÏ Ïή η καÏηγοÏία ÎÏει διαγÏαÏεί εÏιÏÏ ÏÏÏ'; $lang['Category_changed_order'] = 'ÎÏ Ïή η καÏηγοÏία ÎÏει αλλάξει ÏειÏά εÏιÏÏ ÏÏÏ'; $lang['Watermark'] = 'WaterMark'; $lang['Watermark_explain'] = 'ÎÏοÏείÏε να οÏίÏεÏε Ïο αÏÏείο watermark ÏÎ¿Ï ÏÏηÏιμοÏοιείÏαι Ïε Î±Ï Ïήν Ïην καÏηγοÏία. ÎιÏάγεÏε Ïο αÏÏείο watermark ÏÏην διαδÏομή ÏÎ¿Ï Î²ÏιÏκεÏε Ïο phpBB (Ï.Ï.: <b>modules/mx_smartor/album_mod/mark_fap.png</b>). Το watermark θα εÏαÏμοÏÏεί μÏνο εάν ÎÏει Î±Ï ÏÏ Ïο ÏαÏακÏηÏιÏÏÎ¹ÎºÏ Î³Î½ÏÏιÏμα.'; $lang['Personal_Root_Gallery'] = 'Î ÏοÏÏÏική ÎκαλεÏί ÎÎ¿Î½Î¹ÎºÎ®Ï ÎαÏηγοÏίαÏ'; $lang['Parent_Category'] = 'Îονική ÎαÏηγοÏία (για Î±Ï Ïήν Ïην καÏηγοÏία)'; $lang['Child_Category_Moved'] = 'ΠεÏιλεγμÎνη καÏηγοÏία ÎÏει ήδη Ï ÏÏ-καÏηγοÏίεÏ. Îι Ï ÏÏ-καÏηγοÏÎ¯ÎµÏ Î¼ÎµÏακινήθηκαν ÏÏÎ¿Ï <B>%s</B> καÏηγοÏία.'; $lang['No_Self_Refering_Cat'] = 'Îεν μÏοÏείÏε να θÎÏεÏε μια καÏηγοÏία γονική ο ίδιοÏ'; $lang['Can_Not_Change_Main_Parent'] = 'Îεν μÏοÏείÏε να αλλάξεÏε Ïην γονική κÏÏια καÏηγοÏÎ¯Î±Ï ÏÎ·Ï Î ÏοÏÏÏÎ¹ÎºÎ®Ï ÎκαλεÏί'; // // Permissions // $lang['Album_Auth_Title'] = 'ÎιακαιÏμαÏα ʼλμÏÎ¿Ï Î¼'; $lang['Album_Auth_Explain'] = 'ÎÎ´Ï Î¼ÏοÏείÏε να εÏιλÎξεÏε Ïοια ομάδα(εÏ) μελÏν μÏοÏοÏν να ÏÏ Î½ÏονιÏÏοÏν Ïα ʼλμÏÎ¿Ï Î¼ ή μÏνο ÏÏοÏÏÏική ÏÏÏÏβαÏη'; $lang['Select_a_Category'] = 'ÎÏιλÎξÏε μια καÏηγοÏία'; $lang['Look_up_Category'] = 'ΠαÏαÏηÏήÏÏε Ïην ÎαÏηγοÏία'; $lang['Album_Auth_successfully'] = 'Îι ÏÏ Î¸Î¼Î¯ÏÎµÎ¹Ï ÎγκÏιÏÎ·Ï ÎÏÎ¿Ï Î½ ενημεÏÏθεί εÏιÏÏ ÏÏÏ'; $lang['Click_return_album_auth'] = 'ΠαÏήÏÏε %sÎδÏ%s να εÏιÏÏÏÎÏεÏε ÏÏα ÎιακαιÏμαÏα ʼλμÏÎ¿Ï Î¼'; $lang['Upload'] = 'Îα ανεβάÏει'; $lang['Rate'] = 'Îα βαθμολογήÏει'; $lang['Comment'] = 'Îα ÏÏολιάÏει'; // // Clear Cache // $lang['Clear_Cache'] = 'ÎδειάÏÏε Ïην Î»Î±Î½Î¸Î¬Î½Î¿Ï Ïα μνήμη'; $lang['Album_clear_cache_confirm'] = 'Îαν ÏÏηÏιμοÏοιείÏε Ïην Î»Î±Î½Î¸Î¬Î½Î¿Ï Ïα μνήμη ÏÏν ÎκαλεÏί θα ÏÏÎÏει να καθαÏίÏεÏε Î±Ï Ïή αÏÎ¿Ï ÎÏεÏε ÏÏÏÏα αλλάξει ÏÎ·Ï ÏÏ Î¸Î¼Î¯ÏÎµÎ¹Ï ÏÏν ÎκαλεÏί ÏÏÎ¹Ï Î¡Ï Î¸Î¼Î¯ÏÎµÎ¹Ï ÏÎ¿Ï Ê¼Î»Î¼ÏÎ¿Ï Î¼ και να ÏÎ¹Ï ÎÏεÏε αναÏαÏάγει.<br /><br /> ÎÎλεÏε να Ïην καθαÏίÏεÏε ÏÏÏα?'; $lang['Thumbnail_cache_cleared_successfully'] = '<br />Î Î»Î±Î½Î¸Î¬Î½Î¿Ï Ïα μνήμη αÏÏ ÏÎ¹Ï ÎµÎ¹ÎºÎ¿Î½Î¯ÏÏÎµÏ ÏÏν ÎκαλεÏί ÎÏει αδειάÏει εÏιÏÏ ÏÏÏ<br /> '; // CLowN $lang['SP_Album_config'] = 'ADV CLowN SP ÎιαμÏÏÏÏÏη'; $lang['SP_Album_config_explain'] = 'ÎÎ´Ï Î¼ÏοÏείÏε να ÏÏ Î¸Î¼Î¯ÏεÏε μεÏικÎÏ ÎµÏιλογÎÏ Î³Î¹Î± Album Service Pack'; $lang['SP_Album_sp_general'] = 'Îενική ÎιαμÏÏÏÏÏη'; $lang['SP_Album_sp_watermark'] = 'WaterMark Î¡Ï Î¸Î¼Î¯ÏειÏ'; $lang['SP_Album_sp_hotornot'] = 'Hot ή Not Î¡Ï Î¸Î¼Î¯ÏειÏ'; $lang['SP_Rate_type'] = 'ÎÏιλÎξÏε ÏÏÏ Î¸ÎλεÏε να ÏαξινομοÏνÏαι οι εικÏÎ½ÎµÏ ÏÏÎ¿Ï ÏÏοβολή'; $lang['SP_Rate_type_0'] = 'ÎÏνο ÎικÏνεÏ'; $lang['SP_Rate_type_1'] = 'ÎÏνο ÎÏιθμοί'; $lang['SP_Rate_type_2'] = 'ÎÏιθμοί και ÎικÏνεÏ'; $lang['SP_Display_latest'] = 'Î Ïοβολή ÏÎ·Ï ÏÎµÎ»ÎµÏ ÏÎ±Î¯Î±Ï Ï ÏοβοηθήÏÎ±Ï ÎµÎ¹ÎºÏÎ½Î±Ï ÏÏο block'; $lang['SP_Display_highest'] = 'Î Ïοβολή ÏÎ·Ï Î¼ÎµÎ³Î±Î»ÏÏεÏÎ·Ï Ïε βαθμολογία εικÏÎ½Î±Ï ÏÏο block'; $lang['SP_Display_most_viewed'] = 'Î Ïοβολή ÏÎ·Ï ÏεÏιÏÏÏÏεÏο ÏÏοβεβλημÎÎ½Î·Ï ÎµÎ¹ÎºÏÎ½Î±Ï ÏÏο block'; $lang['SP_Display_random'] = 'Î Ïοβολή ÏÏ ÏÎ±Î¯Î±Ï ÎµÎ¹ÎºÏÎ½Î±Ï ÏÎ¿Ï block'; $lang['SP_Pic_row'] = 'ÎÏιθμÏÏ Î³ÏαμμÏν ÏÏην Ïελίδα εικονιδίÏν (ÏÏην Ïελίδα αναÏοÏάÏ)'; $lang['SP_Pic_col'] = 'ÎÏιθμÏÏ ÏÏηλÏν ÏÏην Ïελίδα εικονιδίÏν (ÏÏην Ïελίδα αναÏοÏάÏ)'; $lang['SP_Midthumb_use'] = 'ΧÏήÏη mid-thumbnail'; $lang['SP_Midthumb_cache'] = 'Enable caching of mid-thumbnail'; $lang['SP_Midthumb_high'] = 'ÎÏÎ¿Ï Î³Î¹Î± mid-thumbnail (pixel)'; $lang['SP_Midthumb_width'] = 'ΠλάÏÎ¿Ï Î³Î¹Î± mid-thumbnail (pixel)'; $lang['SP_Watermark'] = 'ΧÏήÏη WaterMark'; $lang['SP_Watermark_users'] = 'ΠαÏÎ¿Ï ÏίαÏη ÏÎ¿Ï WaterMark για ÏÎ»Î¿Ï Ï ÏÎ¿Ï Ï ÏÏήÏÏεÏ, εάν \'ÎÏι\' θα εμÏανίζεÏε μÏνο ÏÏÎ¿Ï Ï Î¼Î· εγγεγÏαμμÎÎ½Î¿Ï Ï ÏÏήÏÏεÏ'; $lang['SP_Watermark_placent'] = 'WaterMark θÎÏη ÏÏην εικÏνα'; $lang['SP_Hon_already_rated'] = 'ÎÏεÏιÏÏιÏÏη βαθμολογία Ïε Hot ή Not Ïελίδα'; $lang['SP_Hon_sep_rating'] = 'ÎαÏάÏÏημα Hot ή Not Î²Î±Î¸Î¼Î¿Î»Î¿Î³Î¯Î±Ï Ïε ÏÏÏιÏÏÏ Ïίνακα'; $lang['SP_Hon_where'] = 'Î Ïοβολή εικÏνÏν Ïε hot ή not αÏÏ ÏÎ¿Î¹ÎµÏ ÎºÎ±ÏηγοÏίεÏ? (ÎÏήÏÏε Ïο ÎºÎµÎ½Ï Î³Î¹Î± να ÏÏηÏιμοÏοιήÏεÏε ÏÎ¹Ï ÎµÎ¹ÎºÏÎ½ÎµÏ Î±ÏÏ ÏÎ»ÎµÏ ÏÎ¹Ï ÎºÎ±ÏηγοÏίεÏ, εαν θÎλεÏε ÏεÏιÏÏÏÏεÏÎµÏ Î±ÏÏ Î¼Î¹Î± καÏηγοÏία, διαÏÏÏίÏÏε ÏÎ·Ï Î¼Îµ κÏμμα)'; $lang['SP_Hon_users'] = 'ÎÏοÏεί μη εγγεγÏαμμÎνοι ÏÏήÏÏÎµÏ Î½Î± βαθμολογοÏν'; $lang['SP_jaime_lettering'] = 'ΠαÏÎ¿Ï ÏιάÏÏε αλÏαβηÏικά Ïην Ïελίδα ÏλοήγηÏÎ·Ï Î¼ÎÏα Ïε μια καÏηγοÏία (ÎÏαμμαÏοÏειÏά Jaime)'; $lang['SP_Always'] = 'ΠάνÏα'; // Multiple Uploads Admin configuration $lang['Upload_Settings'] = 'ΦÏÏÏÏÏη'; $lang['Max_Files_To_Upload'] = 'ÎÎγιÏÏÎ¿Ï Î±ÏιθμÏÏ Î±ÏÏείÏν ÏÎ¿Ï Î¿ ÏÏήÏÏÎ·Ï Î¼ÏοÏεί να ÏοÏÏÏνει κάθε ÏοÏά'; $lang['Album_upload_settings'] = 'Î¡Ï Î¸Î¼Î¯ÏÎµÎ¹Ï Î¦ÏÏÏÏÏÎ·Ï Ê¼Î»Î¼ÏÎ¿Ï Î¼'; $lang['Max_pregenerated_fields'] = 'ÎÎγιÏÏÎ¿Ï Î±ÏιθμÏÏ ÏομÎÏν για ÏÏο-ÏαÏαγÏγή'; $lang['Dynamic_field_generation'] = 'ÎÏιÏÏÎÏÏε Ïην ÏÏοÏθήκη Î´Ï Î½Î±Î¼Î¹ÎºÎ¿Ï ÏοÏÏÏμαÏÎ¿Ï ÏÏν ÏομÎÏν'; $lang['Pre_generate_fields'] = 'Î Ïο-ÏαÏαγÏγή ÏÏν ÏοÏÏÏμÎνÏν ÏομÎÏν'; $lang['Propercase_pic_title'] = 'ÎνδεδειγμÎÎ½Î¿Ï ÏίÏÎ»Î¿Ï ÎµÎ¹ÎºÏÎ½Î±Ï Ï.Ï. <i>\'ÎÏ ÏÏÏ ÎµÎ¯Î½Î±Î¹ ÎÎ½Î±Ï ÏίÏÎ»Î¿Ï ÎµÎ¹ÎºÏναÏ\'</i><br />ΠΡÏθμιÏη ÏÎ¿Ï \'ÎΧÎ\' θα ÎÏει ÏÏ Î±ÏοÏÎλεÏμα <i>\'ÎÏ ÏÏÏ ÎµÎ¯Î½Î±Î¹ ÎÎ½Î±Ï ÏίÏÎ»Î¿Ï ÎµÎ¹ÎºÏναÏ\'</i>'; $lang['Pic_Resampling'] = 'ÎÏιÏÏÎÏονÏÎ±Ï Î±Ï Ïήν Ïην εÏιλογή, κάθε εικÏνα θα εÏανα-μεγεθοÏοιήÏε εάν είναι αÏαÏαίÏηÏο (για να διαÏηÏήÏεÏε ÏÎ¹Ï Î¹Î´Î¹ÏÏηÏÎµÏ ÎµÎ¹ÎºÏÎ½Î±Ï Î±Î½Î±ÏεÏθείÏε ÏÏÎ¹Ï ÏÏ Î¸Î¼Î¯ÏÎµÎ¹Ï ÏÎ¿Ï Î¬Î»Î¼ÏÎ¿Ï Î¼ ÏÏο ACP).'; $lang['Max_file_size_resampling'] = 'ÎÎγιÏÏο μÎÎ³ÎµÎ¸Î¿Ï Î±ÏÏÎµÎ¯Î¿Ï ÏÏίν αÏÏ Ïην εÏανα-μεγεθοÏοιήÏη (bytes)'; $lang['display_most_posts'] = "Î Ïοβολή ÏÏν ÏεÏιÏÏÏÏεÏÏν δημοÏιεÏÏεÏν"; $lang['display_random_posts'] = "Î Ïοβολή ÏÏ ÏαίÏν δημοÏιεÏÏεÏν"; $lang['display_top_ranked'] = "Î Ïοβολή Ï ÏηλοÏÎÏÏν βαθμολογοÏμενÏν"; $lang['display_latest_posts'] = "Î Ïοβολή ÏÎµÎ»ÎµÏ ÏαίÏν δημοÏιεÏÏεÏν"; $lang['num_of_cols'] = "ÎÏιθ. ÏÏηλÏν"; $lang['num_of_rows'] = "ÎÏιθ. γÏαμμÏν"; $lang['album_config_updated'] = 'Î ÎιαμÏÏÏÏÏη ÏÎ¿Ï Mx Smartor ενημεÏÏθηκε εÏιÏÏ ÏÏÏ.'; $lang['Click_return_album_config'] = 'ΠαÏήÏÏε %sÎδÏ%s να εÏιÏÏÏÎÏεÏε ÏÏην ÎιαμÏÏÏÏÏη ÏÎ¿Ï mx_smartor'; $lang['index'] = 'ÎÏÏική Σελίδα ʼλμÏÎ¿Ï Î¼ Mx Smartor'; $lang['mx_album_admin'] = 'ÎνÏÏμάÏÏÏη mxBB Smartor'; $lang['mx_album_admin_explain'] = 'ÎδÏ, μÏοÏείÏε να κάνεÏε Ïην αÏÏική Ïελίδα ÏÎ¿Ï Î¬Î»Î¼ÏÎ¿Ï Î¼ και ÏÎ¹Ï ÏÏοδιαγÏαÏÎÏ ÏÎ·Ï ÏÎµÎ»Î¹Î´Î±Ï mxBB.'; $lang['default_pages_title'] = 'mxBB and Smartor ÎνÏÏμάÏÏÏη'; $lang['default_pages_title_explain'] = ''; $lang['default_pages_more_title'] = 'ΠεÏιÏÏÏÏεÏÎµÏ ÏÏοδιαγÏαÏÎÏ...'; $lang['default_pages_more_title_explain'] = ''; $lang['integration_enabled'] = 'ÎνεÏγοÏοίηÏη ÏÎ·Ï ÎνÏÏμάÏÏÏηÏ?'; $lang['integration_enabled_explain'] = 'ÎÏαν η ενÏÏμαÏÏμÎνη Smartor module είναι ενεÏγοÏοιημÎνη, Ïλοι οι ÏÏνδεÏμοι ÏÎ¿Ï mx_smartor URLs θα καÏÎµÏ Î¸ÏνονÏαι ÏÏÎ¹Ï ÏÎµÎ»Î¯Î´ÎµÏ mxBB. Îάν αÏενεÏγοÏοιείÏαι, album.php θα λειÏÎ¿Ï ÏγήÏει "Ïαν ÏÏ Î½Î·Î¸Î¹ÏμÎνη ÏÏήÏη"'; $lang['integration_enabled_yes'] = 'ÎνεÏγοÏοίηÏη'; $lang['integration_enabled_no'] = 'ÎÏι ÏÏην ÎνÏÏμάÏÏÏη ÏÎ¿Ï album.php'; $lang['override'] = 'Î£Ï Î½ÎµÏγαÏία album.php και ÏελίδÏν mxBB'; $lang['override_explain'] = 'ÎÎ»ÎµÏ Î¿Î¹ ÏÏνδεÏμοι ÏÎ¿Ï mx_smartor ÏÏÎλνονÏαι ÏÏÎ¹Ï ÏÎµÎ»Î¯Î´ÎµÏ mxBB μεÏά αÏÏ Î±Ï ÏÎÏ ÏÎ¹Ï ÏÏ Î¸Î¼Î¯ÏειÏ.'; $lang['override_yes'] = 'ΧÏήÏη Î¡Ï Î¸Î¼Î¯ÏεÏν Block'; $lang['override_no'] = 'ΧÏήÏη ÏÏαθεÏÏν ÏÏοδιαγÏαÏÏν (δείÏε καÏÏÏÎÏÏ)'; // Welcome block $lang['Welcome_Msg'] = "<b>ÎÎ®Î½Ï Î¼Î± Î¥ÏοδοÏήÏ:</b>"; $lang['Welcome_Msginfo'] = "ÎÏ ÏÏ Ïο Î¼Î®Î½Ï Î¼Î± θα είναι οÏαÏÏ Î³Î¹Î± ÏÎ»Î¿Ï Ï ÏÎ¿Ï Ï ÏÏήÏÏεÏ."; $lang['Register_Msg'] = "<b>ÎÎ®Î½Ï Î¼Î± ÎγγεγÏαμμÎνÏν ÏÏηÏÏÏν:</b>"; $lang['Register_Msginfo'] = "ÎÏ ÏÏ Ïο Î¼Î®Î½Ï Î¼Î± θα είναι μÏνο οÏαÏÏ Î³Î¹Î± ÏÎ¿Ï Ï Î±Î½ÏÎ½Ï Î¼Î¿Ï Ï ÏÏήÏÏÎµÏ Î³Î¹Î± να ÏÎ¿Ï Ï ÎµÎ½Î¸Î±ÏÏÏνει να εγγÏαÏοÏν ÏÏ Î¼Îλη.<br />ΠληÏοÏοÏία: Î ÏÏήÏη <b>%s</b> εÏÏκλείÏει δÏο ÏοÏÎÏ Ïη ÏειÏά ÏÎ¿Ï Î¸ÎλεÏε you want ÏÏ ÏÏνδεÏη εγγÏαÏήÏ."; $lang['Vertical_Layout'] = "<b>ÎάθεÏη ÏÏοβολή:</b>"; $lang['Vertical_Layoutinfo'] = "ÎÏιλÎξÏε εάν εÏÎ¹Î¸Ï Î¼ÎµÎ¯Ïε να ÏÏοβάλεÏε Î±Ï ÏÏ Ïο block <b>ÎάθεÏα</b> ή <b>ÎÏιζÏνÏια</b>."; $lang['View_JumpTo'] = "<b>View JumpTo:</b>"; $lang['View_JumpToinfo'] = "ÎÏιλÎξÏε εάν εÏÎ¹Î¸Ï Î¼ÎµÎ¯Ïε να ÏÏοβάλεÏε Ïον Ïίνακα <b>JumpToForum</b>.<br /><u>ΣημείÏÏη:</u> ÎÎÏÏε Ïο εκÏÏÏ Î»ÎµÎ¹ÏÎ¿Ï ÏÎ³Î¯Î±Ï ÎµÎ¬Î½ ÏÏηÏιμοÏοιείÏε <b>ÎάθεÏη ÏÏοβολή</b>. ΠιθανÏÏ, θα καÏαÏÏήÏει Ïο block ÎµÏ ÏÏÏεÏο αÏÏ Ïη ÏÏήλη ÏελίδÏν ÏÏÎ¿Ï ÏοÏοθεÏείÏε Î±Ï ÏÏν Ïο block. Îλλά, θα μÏοÏοÏÏε να είναι ÏÏήÏιμο, εάν εÏιλÎξεÏε <b>ÎÏιζÏνÏια ÏÏοβολή</b>."; $lang['Default_Avatar'] = "<b>Î ÏοεÏιλεγμÎνο ʼβαÏαÏ:</b>"; $lang['Default_Avatarinfo'] = "ÎικÏνα ÏÎ¿Ï ÏÏηÏιμοÏοιείÏαι ÏÏ ÏÏοεÏιλογή καλÏÏ Î®Î»Î¸Î±Ïε άβαÏαÏ. Îα ÏαÏÎ¿Ï ÏιαÏÏεί ÏÏαν δεν ÎÏει ο ÏÏ Î½Î´ÎµÎ¼ÎÎ½Î¿Ï ÏÏήÏÏÎ·Ï ÎºÎ±Î½Îνα άβαÏαÏ.<br /><u>ΣημείÏÏη:</u> Î ÏÏεÏική διαδÏομή για Î±Ï Ïήν Ïην εικÏνα είναι \"modules/mx_tinies/avatars\"."; $lang['View_PostCount'] = "<b>Î Ïοβολή μεÏÏήÏεÏν αÏοÏÏολÏν:</b>"; $lang['View_PostCountinfo'] = "ÎÎ¹ÎµÏ ÎºÏινίÏÏε εάν εÏÎ¹Î¸Ï Î¼ÎµÎ¯Ïε να ÏÏοβάλεÏε η αÏίθμηÏη δίÏλα ÏÏÎ¹Ï Î¸ÎÏÎµÎ¹Ï Î¬ÏοÏÎ·Ï Î±ÏÏ Ïην ÏÎµÎ»ÎµÏ Ïαία εÏίÏκεÏη</u> και ÏÎ¿Ï Ï ÏÏ Î½Î´ÎÏÎ¼Î¿Ï Ï <u>Î Ïοβολή ÎδιάβαÏÏÏν ÎημοÏιεÏÏεÏν</u>, ÏÎ¿Ï ÏαÏÎ¿Ï ÏιάζονÏαι ÏÏαν ÎÎ½Î±Ï ÏÏήÏÏÎ·Ï ÏÏ Î½Î´ÎεÏαι."; // // That's all Folks! // ------------------------------------------------- ?> --- NEW FILE: index.htm --- <html> <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body bgcolor="#FFFFFF" text="#000000"> </body> </html> |
|
From: FlorinCB <ory...@us...> - 2008-09-16 16:49:46
|
Update of /cvsroot/mxbb/mx_music/language/lang_greek In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv18166/mx_music/language/lang_greek Added Files: index.htm lang_admin.php Log Message: some stuff , greek language etc for modules --- NEW FILE: lang_admin.php --- <?php /** * * @package mxBB Portal Module - mx_music * @version $Id: lang_admin.php,v 1.1 2008/09/16 23:49:42 orynider Exp $ * @copyright (c) 2007 [ory...@rd..., OryNider] mxBB Development Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * */ // // The format of this file is: // // ---> $lang["message"] = "text"; // // Specify your language character encoding... [optional] // // setlocale(LC_ALL, "gr"); /* Translation: Îλληνικά(Greek) Translator: "georges georgiou" <gio...@ho...> */ //BlockCP Parameters $lang['num_of_cols'] = "ÎÏ. ÏÏηλÏν"; $lang['num_of_rows'] = "ÎÏ. ÎÏαμμÏν"; $lang['flv_file'] = "Flash video αÏÏείο ή ID"; $lang['flv_img'] = "ÎικÏνα (ÏÏοαιÏεÏική)"; $lang['display_most_posts'] = "ΠαÏÎ¿Ï ÏίαÏη most posts"; $lang['display_random_posts'] = "ΠαÏÎ¿Ï ÏίαÏη ÏÏ ÏαίÏν δημοÏιεÏÏεÏν"; $lang['display_top_ranked'] = "ΠαÏÎ¿Ï ÏίαÏη κοÏÏ ÏαίÏν ÏαξινομημÎνÏν"; $lang['display_latest_posts'] = "ΠαÏÎ¿Ï ÏίαÏη ÏÏÏÏÏαÏÏν δημοÏιεÏÏεÏν"; $lang['music_config_updated'] = 'Mx MOM ÎιαμÏÏÏÏÏη ÎÏει ενημεÏÏθεί εÏιÏÏ ÏÏÏ.'; $lang['Click_return_music_config'] = 'ΠαÏήÏÏε %sÎδÏ%s να εÏιÏÏÏÎÏεÏε ÏÏην mx_music ÎιαμÏÏÏÏÏη'; $lang['index'] = 'ÎÏÏική Σελίδα Mx MOM ʼλμÏÎ¿Ï Î¼'; $lang['mx_music_admin'] = 'ÎνÏÏμάÏÏÏη mxBB MOM'; $lang['mx_music_admin_explain'] = 'ÎδÏ, μÏοÏείÏε διαμοÏÏÏÏεÏε Ïην αÏÏική Ïελίδα Î¼Î¿Ï ÏÎ¹ÎºÎ®Ï ÎºÎ±Î¹ Ïην ÏαÏÏογÏάÏηÏη ÏÎ·Ï ÏÎµÎ»Î¯Î´Î±Ï mxBB.'; $lang['default_pages_title'] = 'mxBB και MOM ÎνÏÏμάÏÏÏη'; $lang['default_pages_title_explain'] = ''; $lang['default_pages_more_title'] = 'ΠεÏιÏÏÏÏεÏÎµÏ ÏαÏÏογÏαÏήÏειÏ...'; $lang['default_pages_more_title_explain'] = ''; $lang['integration_enabled'] = 'ÎνεÏγοÏοιήÏÏε Ïην ÎνÏÏμάÏÏÏη?'; $lang['integration_enabled_explain'] = 'ÎÏαν η module MOM είναι ενÏÏμαÏÏμÎνη, Ïλοι οι ÏÏνδεÏμοι ÏÎ·Ï mx_music θα ÏÏÎλνονÏαι ÏÏÎ¹Ï ÏÎµÎ»Î¯Î´ÎµÏ ÏÎ¿Ï mxBB. Îαν είναι αÏενεÏγοÏοιημÎνη, music.php θα λειÏÎ¿Ï ÏγήÏει "ÏÏ ÏÏ Î½Î®Î¸ÏÏ"'; $lang['integration_enabled_yes'] = 'ÎνεÏγοÏοιήÏÏε'; $lang['integration_enabled_no'] = 'Îην ενÏÏμαÏÏÏεÏε music.php'; $lang['override'] = 'Î£Ï Î½ÎµÏγαÏία music.php και ÏελίδÏν mxBB'; $lang['override_explain'] = 'Îλοι οι ÏÏνδεÏμοι ÏÎ¿Ï mx_music ÏÏÎλνονÏαι ÏÏÎ¹Ï ÏÎµÎ»Î¯Î´ÎµÏ mxBB μεÏά αÏÏ Î±Ï ÏÎÏ ÏÎ¹Ï ÎµÏιλογÎÏ ÏÏ Î¸Î¼Î¯ÏεÏν.'; $lang['override_yes'] = 'ΤοÏοθεÏήÏÎµÎ¹Ï Î§ÏήÏÎ·Ï Block'; $lang['override_no'] = 'ΣÏαθεÏÎÏ ÏÏήÏÎµÎ¹Ï ÏαÏÏογÏάÏηÏÎµÎ¹Ï (δείÏε καÏÏÏÎÏÏ)'; // // Configuration // $lang['Music_config'] = 'ÎιαμÏÏÏÏÏη ÎÎ¿Ï ÏικήÏ'; $lang['Music_config_explain'] = 'ÎÏοÏείÏε να αλλάξεÏε ÏÎ¹Ï Î³ÎµÎ½Î¹ÎºÎÏ ÏοÏοθεÏήÏÎµÎ¹Ï ÏÎ·Ï Î¼Î¿Ï ÏÎ¹ÎºÎ®Ï ÏÎ±Ï on-line εδÏ'; $lang['Music_config_updated'] = 'Î ÎιαμÏÏÏÏÏη ÎÎ¿Ï ÏÎ¹ÎºÎ®Ï ÎÏει ενημεÏÏθεί εÏιÏÏ ÏÏÏ'; $lang['Click_return_music_config'] = 'ΠαÏήÏÏε %sÎδÏ%s να εÏιÏÏÏεÏεÏε ÏÏην ÎιαμÏÏÏÏÏη ÎÎ¿Ï ÏικήÏ'; $lang['Max_songs'] = 'ÎÎγιÏÏÎ¿Ï Î±ÏιθμÏÏ ÏÏÎ±Î³Î¿Ï Î´Î¹Ïν για κάθε καÏηγοÏία (-1 = αÏεÏιÏÏιÏÏο)'; $lang['User_songs_limit'] = 'ÎÏιο ÏÏÎ±Î³Î¿Ï Î´Î¹Ïν ανά καÏηγοÏία για κάθε ÏÏήÏÏη (-1 = αÏεÏιÏÏιÏÏο)'; $lang['Moderator_songs_limit'] = 'ÎÏιο ÏÏÎ±Î³Î¿Ï Î´Î¹Ïν ανά καÏηγοÏία για κάθε ÏÏ Î½ÏονηÏÏή (-1 = αÏεÏιÏÏιÏÏο)'; $lang['Songs_Approval'] = 'ÎγκÏιÏη ΤÏÎ±Î³Î¿Ï Î´Î¹Ïν'; $lang['Rows_per_page'] = 'ÎÏιθμÏÏ ÏειÏÏν'; $lang['Cols_per_page'] = 'ÎÏιθμÏÏ ÏÏηλÏν'; $lang['Rows_per_page_music_pic_cat'] = 'ÎÏιθμÏÏ ÏειÏÏν ÏÏÎ¹Ï ÎµÎ¹ÎºÎ¿Î½Î¹ÎºÎÏ Ï ÏοκαÏηγοÏÎ¯ÎµÏ ÎµÎ¹ÎºÏνÏν'; $lang['Cols_per_page_music_pic_cat'] = 'ÎÏιθμÏÏ ÏÏηλÏν ÏÏÎ¹Ï ÎµÎ¹ÎºÎ¿Î½Î¹ÎºÎÏ Ï ÏοκαÏηγοÏÎ¯ÎµÏ ÎµÎ¹ÎºÏνÏν'; $lang['Rows_per_page_music_media_cat'] = 'ÎÏιθμÏÏ ÏειÏÏν ÏÏÎ¹Ï ÎµÎ¹ÎºÎ¿Î½Î¹ÎºÎÏ Ï ÏοκαÏηγοÏÎ¯ÎµÏ media'; $lang['Cols_per_page_music_media_cat'] = 'ÎÏιθμÏÏ ÏÏηλÏν ÏÏÎ¹Ï ÎµÎ¹ÎºÎ¿Î½Î¹ÎºÎÏ Ï ÏοκαÏηγοÏÎ¯ÎµÏ media'; $lang['Top'] = 'ÎÏιθμÏÏ ÏÏÎ±Î³Î¿Ï Î´Î¹Ïν ÏÏο Top Hit ÎαÏάλογο'; $lang['Song_Desc_Max_Length'] = 'ΣÏίÏοι ΤÏÎ±Î³Î¿Ï Î´Î¹Î¿Ï/ÎνÏÏαÏο ÎÎ®ÎºÎ¿Ï Î£ÏÎ¿Î»Î¯Î¿Ï (bytes)'; $lang['Hotlink_prevent'] = 'ÎÏοÏÏοÏή Hotlink'; $lang['Hotlink_allowed'] = 'ÎÏιÏÏÎÏÏε domain για Ïο hotlink (ÏÏÏιÏμÎνα με κÏμμα)'; $lang['Rate_system'] = 'ÎÏιÏÏÎÏÏε Ïην αξιολÏγηÏη ÏÏ ÏÏήμαÏοÏ'; $lang['Rate_Scale'] =' Îλίμακα ÎξιολÏγηÏηÏ'; $lang['Comment_system'] = 'ÎÏιÏÏÎÏÏε ÏÏÏλιο ÏÏ ÏÏήμαÏοÏ'; $lang['Download_system'] = 'ÎÏιÏÏÎÏÏε μεÏαÏÏÏÏÏÏÎ·Ï ÏÏ ÏÏήμαÏοÏ'; $lang['Extra_Settings'] = 'Î ÏÏÏθεÏÎµÏ Î¤Î¿ÏοθεÏήÏειÏ'; $lang['Default_Sort_Method'] = 'Î ÏοεÏιλεγμÎνη ÎÎÎ¸Î¿Î´Î¿Ï Î¤Î±ÎºÏοÏοίηÏηÏ'; $lang['Default_Sort_Order'] = 'Î ÏοεÏιλεγμÎνη ÎÎÎ¸Î¿Î´Î¿Ï Î¤Î±Î¾Î¹Î½ÏμηÏηÏ'; //Index $lang['Music_Index_Settings'] = 'ÎÏÏική ÎÎ¿Ï ÏικήÏ'; $lang['Show_Index_Subcats'] = 'ΠαÏÎ¿Ï ÏιάÏÏε ÏÎ¹Ï Ï Ïο-καÏηγοÏÎ¯ÎµÏ ÏÏον αÏÏÎ¹ÎºÏ Ïίνακα'; // // Categories // $lang['Music_Categories_Title'] = 'ÎλεγÏÎ¿Ï ÎαÏηγοÏιÏν Î¼Î¿Ï ÏικήÏ'; $lang['Music_Categories_Explain'] = 'Σε Î±Ï Ïήν Ïην οθÏνη μÏοÏείÏε να διαÏειÏιÏÏείÏε ÏÎ¹Ï ÎºÎ±ÏηγοÏÎ¯ÎµÏ ÏαÏ: Î´Î·Î¼Î¹Î¿Ï Ïγία, αλλαγή, διαγÏαÏή, ÏαξινÏμηÏη, κλÏ.'; $lang['Category_Permissions'] = 'ÎικαιÏμαÏα ÎαÏηγοÏίαÏ'; $lang['Category_Title'] = 'ΤίÏÎ»Î¿Ï ÎαÏηγοÏίαÏ'; $lang['Category_Desc'] = 'ΠεÏιγÏαÏή ÎαÏηγοÏίαÏ'; $lang['View_level'] = 'Î Ïοβολή ÎÏιÏÎÎ´Î¿Ï '; $lang['Upload_level'] = 'ΦÏÏÏÏÏη ÎÏιÏÎÎ´Î¿Ï '; $lang['Rate_level'] = 'ÎξιολÏγηÏη ÎÏιÏÎÎ´Î¿Ï '; $lang['Comment_level'] = 'ΣÏÏλιο ÎÏιÏÎÎ´Î¿Ï '; $lang['Edit_level'] = ' ÎÏεξεÏγαÏία ÎÏιÏÎÎ´Î¿Ï '; $lang['Delete_level'] = 'ÎιαγÏαÏή ÎÏιÏÎÎ´Î¿Ï '; $lang['New_category_created'] = 'ΠνÎα καÏηγοÏία ÎÏει Î´Î·Î¼Î¹Î¿Ï Ïγηθεί εÏιÏÏ ÏÏÏ'; $lang['Click_return_music_category'] = 'ΠαÏήÏÏε %sÎδÏ%s να εÏιÏÏÏÎÏεÏε ÏÏον ÎλεγÏÎ¿Ï ÎαÏηγοÏιÏν Î¼Î¿Ï ÏικήÏ'; $lang['Category_updated'] = 'ÎÏ Ïή η καÏηγοÏία ÎÏει ενημεÏÏθεί εÏιÏÏ ÏÏÏ'; $lang['Delete_Category'] = 'ÎιαγÏάÏÏε Ïην καÏηγοÏία'; $lang['Delete_Category_Explain'] = 'ΠκαÏÏÏÎÏÏ Î¼Î¿ÏÏή ÏÎ±Ï ÎµÏιÏÏÎÏει να διαγÏάÏει μια καÏηγοÏία και να αÏοÏαÏίÏεÏε ÏÎ¿Ï Î¸ÎλεÏε να βάλεÏε Ïα ÏÏαγοÏδια ÏÎ¿Ï ÏεÏιείÏε'; $lang['Delete_all_songs'] = 'ÎιαγÏάÏÏε Ïλα Ïα ÏÏαγοÏδια'; $lang['Category_deleted'] = 'ÎÏ Ïή η καÏηγοÏία ÎÏει διαγÏαÏεί εÏιÏÏ ÏÏÏ'; $lang['Category_changed_order'] = 'ÎÏ Ïή η καÏηγοÏία ÎÏει αλλάξει ÏαξινÏμηÏη εÏιÏÏ ÏÏÏ'; $lang['Create_music'] = 'ÎÎ·Î¼Î¹Î¿Ï ÏγήÏÏε νÎα Î¼Î¿Ï Ïική'; $lang['Create_sub_music'] = 'ÎÎ·Î¼Î¹Î¿Ï ÏγήÏÏε Ï Ïο-Î¼Î¿Ï Ïική'; // // Permissions // $lang['Music_Auth_Title'] = 'ÎικαιÏμαÏα ÎÎ¿Ï ÏικήÏ'; $lang['Music_Auth_Explain'] = 'ÎÎ´Ï Î¼ÏοÏείÏε να εÏιλÎξεÏε Ïοιά ομάδα ÏÏηÏÏÏν μÏοÏεί να είναι οι ÏÏ Î½ÏονιÏÏÎÏ Î³Î¹Î± κάθε καÏηγοÏία Î¼Î¿Ï ÏÎ¹ÎºÎ®Ï Î® ÎÏει μÏνο ιδιÏÏική ÏÏÏÏβαÏη'; $lang['Select_a_Category'] = 'ÎÏιλογή ÎαÏηγοÏίαÏ'; $lang['Look_up_Category'] = 'ÎεÏακινήÏÏε εÏÎ¬Î½Ï Ïην ÎαÏηγοÏία'; $lang['Music_Auth_successfully'] = 'Î ÎµÎ¾Î¿Ï ÏιοδÏÏηÏη ÎÏει ενημεÏÏθεί εÏιÏÏ ÏÏÏ'; $lang['Click_return_music_auth'] = 'ΠαÏήÏÏε %sÎδÏ%s να εÏιÏÏÏÎÏεÏε ÏÏÎ¹Ï ÎικαιÏμαÏα ÎÎ¿Ï ÏικήÏ'; $lang['Upload'] = 'ΦÏÏÏÏÏη'; $lang['Rate'] = 'ÎξιολÏγηÏη'; $lang['Comment'] = 'ΣÏÏλιο'; //Allowed File Types $lang['MP3_allowed'] = 'MP3 ÎÏιÏÏÎÏονÏαι'; $lang['WAV_allowed'] = 'WAV ÎÏιÏÏÎÏονÏαι'; $lang['WMA_allowed'] = 'WMA ÎÏιÏÏÎÏονÏαι'; $lang['WMV_allowed'] = 'WMV ÎÏιÏÏÎÏονÏαι'; $lang['MIDI_allowed'] = 'MIDI ÎÏιÏÏÎÏονÏαι'; $lang['RAM_allowed'] = 'RAM ÎÏιÏÏÎÏονÏαι'; $lang['AU_allowed'] = 'AU ÎÏιÏÏÎÏονÏαι'; $lang['MPEG_allowed'] = 'MPEG ÎÏιÏÏÎÏονÏαι'; $lang['AVI_allowed'] = 'AVI ÎÏιÏÏÎÏονÏαι'; $lang['SWF_allowed'] = 'SWF ÎÏιÏÏÎÏονÏαι'; $lang['QT_allowed'] = 'QT ÎÏιÏÏÎÏονÏαι'; $lang['FLV_allowed'] = 'FLV ÎÏιÏÏÎÏονÏαι'; $lang['RM_allowed'] = 'RM ÎÏιÏÏÎÏονÏαι'; $lang['IMG_allowed'] = 'JPG, GIF και PNG ÎÏιÏÏÎÏονÏαι'; // // Song Image // $lang['Max_image_size'] = 'ÎνÏÏαÏο μÎÎ³ÎµÎ¸Î¿Ï ÎµÎ¹ÎºÏÎ½Î±Ï ÏÏÎ±Î³Î¿Ï Î´Î¹Î¿Ï (bytes)'; $lang['Max_image_width'] = 'ÎνÏÏαÏο ÏλάÏÎ¿Ï ÎµÎ¹ÎºÏÎ½Î±Ï ÏÏÎ±Î³Î¿Ï Î´Î¹Î¿Ï (pixel)'; $lang['Max_image_height'] = 'ÎνÏÏαÏο ÏÏÎ¿Ï ÎµÎ¹ÎºÏÎ½Î±Ï ÏÏÎ±Î³Î¿Ï Î´Î¹Î¿Ï (pixel)'; // // That's all Folks! // ------------------------------------------------- ?> --- NEW FILE: index.htm --- <html> <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body bgcolor="#FFFFFF" text="#000000"> </body> </html> |
|
From: FlorinCB <ory...@us...> - 2008-09-16 16:49:46
|
Update of /cvsroot/mxbb/mx_counter/templates/_core/admin In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv18166/mx_counter/templates/_core/admin Added Files: counter_config_body.tpl Log Message: some stuff , greek language etc for modules --- NEW FILE: counter_config_body.tpl --- <center><h1>{L_COUNTER_SETTINGS}</h1> <p>{L_COUNTER_SETTINGS_EXPLAIN}<br /></p></center> <form enctype="multipart/form-data" action="{S_ACTION}" method=post> <table width="640" cellpadding="4" cellspacing="1" border="0" align="center" class="forumline"> <tr> <th class="thHead" colspan="2">{L_COUNTER_SETTINGS}</th> </tr> <tr> <td class="row1"><p><b>{L_DIGITS}:</b><br></p></td> <td class="row2"><input type="text" maxlength="2" size="4" name="digits" value="{DIGITS}" /></td> </tr> <tr> <td class="row1"><p><b>{L_DIGITPATH}:</b><br></p></td> <!-- <td class="row2"><input type="text" maxlength="255" size="8" name="digitpath" value="{DIGITPATH}" /></td> --> <td class="row2" width="50%"> <select name="digitpath" multiple size="8"> <!-- BEGIN digitpagelist --> {digitpagelist.DIGITPATH} <!-- END digitpagelist --> </select> </td> </tr> <tr> <td class="catBottom" colspan="2" align="center">{S_HIDDEN_FIELDS} <input type="submit" name="submit" value="{L_SUBMIT}" class="mainoption" /> <input type="reset" value="{L_RESET}" class="liteoption" /> </td> </tr> </table> <br> </form> <br> <table width="40%" cellpadding="4" cellspacing="1" border="0" class="forumline" align="center"> <tr><th class="thHead" colspan="7">{L_DIGITPREVIEW}</th></tr> <tr><td class="row1" align="center"> <!-- BEGIN digitpreview --> {digitpreview.DIGIT_IMAGE} <!-- END digitpreview --> </tr></table> <br clear="all" /> |
|
From: FlorinCB <ory...@us...> - 2008-09-16 16:49:45
|
Update of /cvsroot/mxbb/mx_smartor/language/lang_english In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv18166/mx_smartor/language/lang_english Added Files: index.htm lang_admin.php Log Message: some stuff , greek language etc for modules --- NEW FILE: lang_admin.php --- <?php /** * * @package mxBB Portal Module - mx_smartor * @version $Id: lang_admin.php,v 1.12 2008/09/16 23:49:42 orynider Exp $ * @copyright (c) 2003 [sma...@ho..., Smartor] mxBB Project Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * */ // // The format of this file is: // // ---> $lang["message"] = "text"; // // Specify your language character encoding... [optional] // // setlocale(LC_ALL, "en"); // // Configuration // $lang['Album_config'] = 'Album Configuration'; $lang['Album_config_explain'] = 'You can change the general settings of your Photo Album here'; $lang['Album_config_updated'] = 'Album Configuration has been updated successfully'; $lang['Click_return_album_config'] = 'Click %sHere%s to return to the Album Configuration'; $lang['Max_pics'] = 'Maximum pics for each Category (-1 = unlimited)'; $lang['User_pics_limit'] = 'Pics limit per category for each user (-1 = unlimited)'; $lang['Moderator_pics_limit'] = 'Pics limit per category for each moderator (-1 = unlimited)'; $lang['Pics_Approval'] = 'Pics Approval'; $lang['Rows_per_page'] = 'Number of rows on thumbnail page (in categories)'; $lang['Cols_per_page'] = 'Number of columns on thumbnail page (in categories)'; $lang['Thumbnail_quality'] = 'Thumbnail quality (1-100)'; $lang['Thumbnail_cache'] = 'Thumbnail cache'; $lang['Manual_thumbnail'] = 'Manual thumbnail'; $lang['GD_version'] = 'Optimize for the version of GD'; $lang['Pic_Desc_Max_Length'] = 'Pic Description/Comment Max Length (bytes)'; $lang['Hotlink_prevent'] = 'Hotlink Prevention'; $lang['Hotlink_allowed'] = 'Allowed domains for hotlink (separated by a comma)'; $lang['Personal_gallery'] = 'Allowed to create personal gallery for users'; $lang['Personal_gallery_limit'] = 'Pics limit for each personal gallery (-1 = unlimited)'; $lang['Personal_gallery_view'] = 'Who can view personal galleries'; $lang['Rate_system'] = 'Enable rate system'; $lang['Rate_Scale'] =' Rating Scale'; $lang['Comment_system'] = 'Enable comment system'; $lang['Thumbnail_Settings'] = 'Thumbnail Settings'; $lang['Extra_Settings'] = 'Extra Settings'; $lang['Default_Sort_Method'] = 'Default Sort Method'; $lang['Default_Sort_Order'] = 'Default Sort Order'; $lang['Fullpic_Popup'] = 'View full pic as a popup'; $lang['Show_Download'] = 'Show DOWNLOAD button (which enables the downloading of pictures in ZIP format) only to those who have UPLOAD permissions in the Album (if you choose ALWAYS the button will be always available even if the users has no UPLOAD permissions)'; $lang['Show_Slideshow'] = 'Enable Slideshow feature'; $lang['Show_Slideshow_Script'] = 'Enable transition effects for Slideshow'; $lang['Show_Pic_Size'] = 'Show the pic size on thumbnail'; $lang['Show_IMG_No_GD'] = 'Show GIF thumbnails without using GD libraries (full images are loaded and then just shown resized).'; $lang['Show_GIF_MidThumb'] = 'Show full GIF images if Mid Thumb is enabled.'; $lang['Show_Pics_Nav'] = 'Show Picture Navigation Box in Show Page'; $lang['Invert_Nav_Arrows'] = 'Invert the Arrows link in Showpage (right arrow = more recent)'; $lang['Show_Inline_Copyright'] = 'Show Copyrights Info on a single line'; $lang['Enable_Nuffimage'] = 'Enable Pictures Special Effects page based on Nuffmon Images Class'; $lang['Enable_Sepia_BW'] = 'Enable Sepia and B&W in Special Effects page (disable this function if you want no to load server\'s CPU)'; $lang['Show_EXIF_Info'] = 'Show picture EXIF informations'; $lang['Enable_BBCode'] = 'Enable BBCode'; $lang['Set_Memory'] = 'Set a memory limit via PHP (MB)'; $lang['Set_Memory_Explain'] = 'This feature may be used to increase memory limit in PHP (this setting must be allowed by your hosting): you can try to increase memory when your images are not loaded correctly. To avoid higher memory limits the max value is forced to be 16MB.'; $lang['LB_Preview'] = 'Enable LightBox Preview'; $lang['LB_Preview_Explain'] = 'This feature will show a LightBox with picture preview when moving the mouse over a thumbnail.'; $lang['Album_config_notice'] = 'If you change the current Photo Album settings and then select another tab, you will be prompted to save your changes.<br />The system will <b>not save</b> the changes for you automatically.'; $lang['Save_sucessfully_confimation'] = '%s was saved successfully'; $lang['Show_Recent_In_Subcats'] = 'Show recent pictures in sub categories'; $lang['Show_Recent_Instead_of_NoPics'] = 'Show recent pictures instead of no picture message'; $lang['Show_Last_Comments'] = 'Display last comments block on album index and categories'; $lang['Album_Index_Settings'] = 'Album Index'; $lang['Show_Index_Subcats'] = 'Show sub categories in index table'; $lang['Show_Index_Thumb'] = 'Show category thumbnails in index table'; $lang['Show_Index_Pics'] = 'Show the number of pictures in current category in index table'; $lang['Show_Index_Comments'] = 'Show the number of comments in current category in index table'; $lang['Show_Index_Total_Pics'] = 'Show the number of total pictures for current categories and all it\'s sub categories in index table'; $lang['Show_Index_Total_Comments'] = 'Show the number of total comments for current categories and all it\'s sub categories in index table'; $lang['Show_Index_Last_Comment'] = 'Show last comments for current categories and all it\'s sub categories in index table'; $lang['Show_Index_Last_Pic'] = 'Show last picture info for current categories and all it\'s sub categories in index table'; $lang['Line_Break_Subcats'] = 'Show each sub cat on a new line'; $lang['Show_Personal_Gallery_Link'] = 'Show Personal Gallery and Users Personal Gallery link in Sub Categories'; $lang['Album_Personal_Auth_Explain'] = 'Here you can choose which usergroup(s) can be the moderators for <b>all</b> personal album categories or just has the private access to them'; $lang['Album_debug_mode'] = 'Enable the hierarchy debug mode.<br /><span class="gensmall">This will generate a lot of extra output on the page and also some header warnings, which are all ok.<br />This option should <b>only</b> be used when having problems.</span>'; $lang['New_Pic_Check_Interval'] = 'The time to use to see if a picture is new or not.<br /><span class="gensmall"><b>Format</b> : <number><type> Where type is either h, d, w or m (hour, day, week or month)<br /> e.g. 12H = 12 hours and 12D = 12 days and 12W = 12 weeks and 12M = 12 months<br />If no type is specified the system will use <b>days</b></span>'; $lang['New_Pic_Check_Interval_Desc'] = '<span class="gensmall">H = HOURS, D = DAYS, W = WEEKS, M = MONTHS</span>'; $lang['New_Pic_Check_Interval_LV'] = 'Enabling this option the new pics counter is based on users last visit time.'; $lang['Enable_Show_All_Pics'] = 'Enable toggling of personal gallery view mode (all pictures or only selected category).<br /> When set to <b>no</b>, only selected category is shown.'; $lang['Enable_Index_Supercells'] = 'Enable super cells in the index table. <br /><span class="gensmall">This will enable the mouseover effects on the columns, also knows as the supercell effect.</span>'; $lang['Show_OTF_Link'] = 'Show "Album OTF" link on Album Index'; $lang['Show_AllPics_Link'] = 'Show "All Pics" link on Album Index'; $lang['Show_PG_Link'] = 'Show "Personal Galleries" link on Album Index'; // Personal Gallery Page $lang['Personal_Galleries'] = 'Personal Galleries'; $lang['Album_personal_gallery_title'] = 'Personal Gallery'; $lang['Album_personal_gallery_explain'] = 'On this page, you can choose which usergroups have right to create and view personal galleries. These settings only affect when you set "PRIVATE" for "Allowed to create personal gallery for users" or "Who can view personal galleries" in Album Configuration screen'; $lang['Album_personal_successfully'] = 'The setting has been updated successfully'; $lang['Click_return_album_personal'] = 'Click %sHere%s to return to the Personal Gallery Settings'; $lang['Allow_Album_Avatars'] = 'Allow users to use own posted images in Album as Avatar'; // Personal Gallery FAP $lang['Album_Personal_Settings'] = 'Personal Galleries'; $lang['Album_Personal_Settings_Explain'] = 'You can change the settings of your Personal Galleries here'; $lang['Show_Personal_Sub_Cats'] = 'Show personal sub categories in index table'; $lang['Personal_Gallery_Approval'] = 'Personal gallery pics approval'; $lang['Personal_Gallery_MOD'] = 'Personal gallery can be moderated by owner'; $lang['Personal_Sub_Cat_Limit'] = 'Maximum number of sub categories (-1 = unlimited)'; $lang['User_Can_Create_Personal_SubCats'] = 'Users can create sub categories in own personal gallery'; $lang['Click_return_personal_gallery_index'] = 'Click %shere%s to return to the personal gallery index'; $lang['Show_Recent_In_Personal_Subcats'] = 'Show recent pictures in personal sub categories'; $lang['Show_Recent_Instead_of_Personal_NoPics'] = 'Show recent pictures instead of no picture message in personal gallery'; // // Categories // $lang['Album_Categories_Title'] = 'Album Categories Control'; $lang['Album_Categories_Explain'] = 'On this screen you can manage your categories: create, alter, delete, sort, etc.'; $lang['Category_Permissions'] = 'Category Permissions'; $lang['Category_Title'] = 'Category Title'; $lang['Category_Desc'] = 'Category Description'; $lang['View_level'] = 'View Level'; $lang['Upload_level'] = 'Upload Level'; $lang['Rate_level'] = 'Rate Level'; $lang['Comment_level'] = 'Comment Level'; $lang['Edit_level'] = ' Edit Level'; $lang['Delete_level'] = 'Delete Level'; $lang['New_category_created'] = 'New category has been created successfully'; $lang['Click_return_album_category'] = 'Click %sHere%s to return to the Album Categories Manager'; $lang['Category_updated'] = 'This category has been updated successfully'; $lang['Delete_Category'] = 'Delete Category'; $lang['Delete_Category_Explain'] = 'The form below will allow you to delete a category and decide where you want to put pics it contained'; $lang['Delete_all_pics'] = 'Delete all pics'; $lang['Category_deleted'] = 'This category has been deleted successfully'; $lang['Category_changed_order'] = 'This category has been changed order successfully'; $lang['Watermark'] = 'WaterMark'; $lang['Watermark_explain'] = 'You can specify the watermark file to be used in this category. Insert the watermark file path respect to your phpBB root (i.e.: <b>modules/mx_smartor/album_mod/mark_fap.png</b>). The watermark will be applied only if Watermark feature is on.'; $lang['Personal_Root_Gallery'] = 'Personal Gallery Root Category'; $lang['Parent_Category'] = 'Parent Category (for this category)'; $lang['Child_Category_Moved'] = 'Selected category had child categories. The child categories got moved to the <B>%s</B> category.'; $lang['No_Self_Refering_Cat'] = 'You cannot set a category\'s parent to itself'; $lang['Can_Not_Change_Main_Parent'] = 'You cannot change to parent of the main category of your personal gallery'; // // Permissions // $lang['Album_Auth_Title'] = 'Album Permissions'; $lang['Album_Auth_Explain'] = 'Here you can choose which usergroup(s) can be the moderators for each album category or just has the private access'; $lang['Select_a_Category'] = 'Select a Category'; $lang['Look_up_Category'] = 'Look up Category'; $lang['Album_Auth_successfully'] = 'Auth has been updated successfully'; $lang['Click_return_album_auth'] = 'Click %sHere%s to return to the Album Permissions'; $lang['Upload'] = 'Upload'; $lang['Rate'] = 'Rate'; $lang['Comment'] = 'Comment'; // // Clear Cache // $lang['Clear_Cache'] = 'Clear Cache'; $lang['Album_clear_cache_confirm'] = 'If you use the Thumbnail Cache feature you must clear your thumbnail cache after changing your thumbnail settings in Album Configuration to make them re-generated.<br /><br /> Do you want to clear them now?'; $lang['Thumbnail_cache_cleared_successfully'] = '<br />Your thumbnail cache has been cleared successfully<br /> '; // CLowN $lang['SP_Album_config'] = 'ADV CLowN SP Configuration'; $lang['SP_Album_config_explain'] = 'Here you can configure some options for the Album Service Pack'; $lang['SP_Album_sp_general'] = 'General Config'; $lang['SP_Album_sp_watermark'] = 'WaterMark Config'; $lang['SP_Album_sp_hotornot'] = 'Hot or Not Config'; $lang['SP_Rate_type'] = 'Select how do you want picture rating to be displayed'; $lang['SP_Rate_type_0'] = 'Images only'; $lang['SP_Rate_type_1'] = 'Numbers only'; $lang['SP_Rate_type_2'] = 'Numbers and Images'; $lang['SP_Display_latest'] = 'Display latest submited pictures block'; $lang['SP_Display_highest'] = 'Display highest rated pictures block'; $lang['SP_Display_most_viewed'] = 'Display most viewed pictures block'; $lang['SP_Display_random'] = 'Display random pictures block'; $lang['SP_Pic_row'] = 'Number of rows on thumbnail page (in index)'; $lang['SP_Pic_col'] = 'Number of columns on thumbnail page (in index)'; $lang['SP_Midthumb_use'] = 'Use mid-thumbnail'; $lang['SP_Midthumb_cache'] = 'Enable caching of mid-thumbnail'; $lang['SP_Midthumb_high'] = 'Height of mid-thumbnail (pixel)'; $lang['SP_Midthumb_width'] = 'Width of mid-thumbnail (pixel)'; $lang['SP_Watermark'] = 'Use WaterMark'; $lang['SP_Watermark_users'] = 'Show WaterMark for all users, if \'No\' only display to unregistered users'; $lang['SP_Watermark_placent'] = 'WaterMark position on the picture'; $lang['SP_Hon_already_rated'] = 'Unlimited rating on Hot or Not page'; $lang['SP_Hon_sep_rating'] = 'Store Hot or Not rating in a separate table'; $lang['SP_Hon_where'] = 'Display pictures on hot or not from what categories? (leave blank to use pictures from all of the categories, if more then one category, separate by commas)'; $lang['SP_Hon_users'] = 'Can unregistered users rate'; $lang['SP_jaime_lettering'] = 'Show alphabetic navigation index within a category (Jaime Lettering)'; $lang['SP_Always'] = 'Always'; // Multiple Uploads Admin configuration $lang['Upload_Settings'] = 'Upload'; $lang['Max_Files_To_Upload'] = 'Maximum number of files user can upload at a time'; $lang['Album_upload_settings'] = 'Album Upload Settings'; $lang['Max_pregenerated_fields'] = 'Maximum number of fields to pre-generate'; $lang['Dynamic_field_generation'] = 'Enable dynamic adding of upload fields'; $lang['Pre_generate_fields'] = 'Pre generate the upload fields'; $lang['Propercase_pic_title'] = 'Propercase picture title e.g. <i>\'This Is A Picture Title\'</i><br />Setting it to \'NO\' will result in this <i>\'This is a picture title\'</i>'; $lang['Pic_Resampling'] = 'Enabling this option, each image will be resized on the fly if needed (to keep image properties respecting the album settings in ACP).'; $lang['Max_file_size_resampling'] = 'Maximum file size before resampling (bytes)'; $lang['display_most_posts'] = "Display most posts"; $lang['display_random_posts'] = "Display random posts"; $lang['display_top_ranked'] = "Display top ranked"; $lang['display_latest_posts'] = "Display latest posts"; $lang['num_of_cols'] = "Num of cols"; $lang['num_of_rows'] = "Num of rows"; $lang['album_config_updated'] = 'Mx Smartor Configuration Updated Successfully.'; $lang['Click_return_album_config'] = 'Click %sHere%s to return to mx_smartor Configuration'; //MXP $lang['index'] = 'Mx Smartor Album Index'; $lang['mx_album_admin'] = 'mxBB Smartor Integration'; $lang['mx_album_admin_explain'] = 'Here, you can do album index and mxBB page mappings.'; $lang['default_pages_title'] = 'mxBB and Smartor integration'; $lang['default_pages_title_explain'] = ''; $lang['default_pages_more_title'] = 'More mappings...'; $lang['default_pages_more_title_explain'] = ''; $lang['integration_enabled'] = 'Activate the Integration?'; $lang['integration_enabled_explain'] = 'When the Smartor module integration is activated, all mx_smartor URLs will be directed to mxBB pages. If deactivated, album.php will operate "as usual"'; $lang['integration_enabled_yes'] = 'Activate'; $lang['integration_enabled_no'] = 'Do not integrate album.php'; $lang['override'] = 'Associate album.php and mxBB pages'; $lang['override_explain'] = 'All mx_smartor urls are redirected to mxBB pages following these settings.'; $lang['override_yes'] = 'Use Block Settings'; $lang['override_no'] = 'Use fixed mappings (see below)'; // Welcome block $lang['Welcome_Msg'] = "<b>Welcome Message:</b>"; $lang['Welcome_Msginfo'] = "This message will be visible for all users."; $lang['Register_Msg'] = "<b>Register Message:</b>"; $lang['Register_Msginfo'] = "This message will only be visible for anonymous users to encourage them to register.<br />Tip: Use <b>%s</b> twice to enclose the string you want as a link to register."; $lang['Vertical_Layout'] = "<b>Vertical Layout:</b>"; $lang['Vertical_Layoutinfo'] = "Select if you wish to display this block with a <b>Vertical</b> or <b>Horizontal</b> layout."; $lang['View_JumpTo'] = "<b>View JumpTo:</b>"; $lang['View_JumpToinfo'] = "Select if you wish to display a <b>JumpToForum</b> box.<br /><u>Note:</u> Disable this feature if you use <b>Vertical layout</b>. Probably, it will make your block wider than the page column where you place this block. But, it could be useful, if you select <b>Horizontal layout</b>."; $lang['Default_Avatar'] = "<b>Default Avatar:</b>"; $lang['Default_Avatarinfo'] = "Image to be used as default welcome avatar. Will be shown when logged in user has no avatar.<br /><u>Note:</u> Relative path for this image is \"modules/mx_tinies/avatars\"."; $lang['View_PostCount'] = "<b>View Post Count:</b>"; $lang['View_PostCountinfo'] = "Specify if you wish to display the post count next to <u>View posts since last visit</u> and <u>View unread posts</u> links, shown when a user is logged in."; // // That's all Folks! // ------------------------------------------------- ?> --- NEW FILE: index.htm --- <html> <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body bgcolor="#FFFFFF" text="#000000"> </body> </html> |
|
From: FlorinCB <ory...@us...> - 2008-09-16 16:49:45
|
Update of /cvsroot/mxbb/mx_counter/templates/_core In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv18166/mx_counter/templates/_core Added Files: index.htm mx_counter.tpl Log Message: some stuff , greek language etc for modules --- NEW FILE: index.htm --- <html> <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body bgcolor="#FFFFFF" text="#000000"> </body> </html> --- NEW FILE: mx_counter.tpl --- <table width="100%" cellpadding="0" cellspacing="1" border="0" class="forumline" style="border-top:none;"> <tr> <td class="row1" align="center" colspan="2"> {COUNTER_DATA} </td> </tr> </table> |
|
From: FlorinCB <ory...@us...> - 2008-09-16 16:48:27
|
Update of /cvsroot/mxbb/mx_smartor/language/lang_greek In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv17662/lang_greek Log Message: Directory /cvsroot/mxbb/mx_smartor/language/lang_greek added to the repository |
|
From: FlorinCB <ory...@us...> - 2008-09-16 16:47:47
|
Update of /cvsroot/mxbb/mx_music/language/lang_greek In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv17206/lang_greek Log Message: Directory /cvsroot/mxbb/mx_music/language/lang_greek added to the repository |
|
From: FlorinCB <ory...@us...> - 2008-09-15 19:31:05
|
Update of /cvsroot/mxbb/core/install In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv15226 Modified Files: mx_install.php Log Message: fogot to upgrade this one, will tell users a warning when php version id not supported and if it is a good server they can continue, most of users with php 4.4.4 get a balank install here and ask on forums why... Index: mx_install.php =================================================================== RCS file: /cvsroot/mxbb/core/install/mx_install.php,v retrieving revision 1.108 retrieving revision 1.109 diff -C2 -d -r1.108 -r1.109 *** mx_install.php 15 Sep 2008 23:49:48 -0000 1.108 --- mx_install.php 16 Sep 2008 02:31:00 -0000 1.109 *************** *** 75,79 **** error_reporting(E_ALL ^ E_NOTICE); error_reporting (E_ERROR | E_WARNING | E_PARSE); // This will NOT report uninitialized variables ! include($mx_root_path . "modules/mx_shared/ErrorHandler/prepend.$phpEx"); // For nice error output // ================================================================================ --- 75,79 ---- error_reporting(E_ALL ^ E_NOTICE); error_reporting (E_ERROR | E_WARNING | E_PARSE); // This will NOT report uninitialized variables ! //include($mx_root_path . "modules/mx_shared/ErrorHandler/prepend.$phpEx"); // For nice error output // ================================================================================ *************** *** 1133,1137 **** } - // // Get the MX-Publisher base dir (computed from the phpbb search path), for example /mx/, /portal/ or / --- 1133,1136 ---- *************** *** 1188,1192 **** { $mx_info = get_mxbb_info($mx_root_path . "config.$phpEx"); ! if ($mx_info['mx_table_prefix']) { --- 1187,1191 ---- { $mx_info = get_mxbb_info($mx_root_path . "config.$phpEx"); ! if ($mx_info['mx_table_prefix']) { *************** *** 1205,1209 **** 'PORTAL_BACKEND' => 'internal', 'PHPBB_URL' => '', ! 'DBMS' => $mx_info['dbms'] ? $mx_info['dbms'] : , 'DB_HOST' => $mx_info['dbhost'] ? $mx_info['dbhost'] : 'localhost', 'DB_NAME' => $mx_info['dbname'] ? $mx_info['dbname'] : '', --- 1204,1208 ---- 'PORTAL_BACKEND' => 'internal', 'PHPBB_URL' => '', ! 'DBMS' => $mx_info['dbms'] ? $mx_info['dbms'] : '', 'DB_HOST' => $mx_info['dbhost'] ? $mx_info['dbhost'] : 'localhost', 'DB_NAME' => $mx_info['dbname'] ? $mx_info['dbname'] : '', *************** *** 1225,1229 **** // $phpbb_base_path = '/' . (!$files_ary[$i] ? '' : $files_ary[$i] . '/'); ! // // Get the relative path from MX-Publisher to this phpBB installation --- 1224,1228 ---- // $phpbb_base_path = '/' . (!$files_ary[$i] ? '' : $files_ary[$i] . '/'); ! // // Get the relative path from MX-Publisher to this phpBB installation *************** *** 1275,1283 **** continue; } ! // // Try to Connect to this phpBB Database // ! if( !open_phpbb_db($db, $phpbb_info) ) { $phpbb_failed = true; --- 1274,1282 ---- continue; } ! // // Try to Connect to this phpBB Database // ! if(!open_phpbb_db($db, $phpbb_info)) { $phpbb_failed = true; *************** *** 1289,1293 **** // $phpbb_url = get_phpbb_url($phpbb_info['table_prefix'], $portal_backend); ! // // Close our DB connection. --- 1288,1292 ---- // $phpbb_url = get_phpbb_url($phpbb_info['table_prefix'], $portal_backend); ! // // Close our DB connection. |
|
From: FlorinCB <ory...@us...> - 2008-09-15 16:49:53
|
Update of /cvsroot/mxbb/core/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv3372/includes Modified Files: mx_functions_tools.php Log Message: ??? Index: mx_functions_tools.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions_tools.php,v retrieving revision 1.40 retrieving revision 1.41 diff -C2 -d -r1.40 -r1.41 *** mx_functions_tools.php 15 Jul 2008 22:02:45 -0000 1.40 --- mx_functions_tools.php 15 Sep 2008 23:49:47 -0000 1.41 *************** *** 2268,2272 **** global $phpEx; ! $file = '<?php $this->vars=' . $this->format_array( $this->vars ) . ";\n\$this->vars_ts=" . $this->format_array( $this->vars_ts ) . ' ?>'; if ( $fp = @fopen( $this->cache_dir . 'data_global.' . $phpEx, 'wb' ) ) --- 2268,2272 ---- global $phpEx; ! $file = '<?php $this->vars=' . @$this->format_array( $this->vars ) . ";\n\$this->vars_ts=" . @$this->format_array( $this->vars_ts ) . ' ?>'; if ( $fp = @fopen( $this->cache_dir . 'data_global.' . $phpEx, 'wb' ) ) |
|
From: FlorinCB <ory...@us...> - 2008-09-15 16:49:51
|
Update of /cvsroot/mxbb/core/install In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv3372/install Modified Files: mx_install.php Log Message: ??? Index: mx_install.php =================================================================== RCS file: /cvsroot/mxbb/core/install/mx_install.php,v retrieving revision 1.107 retrieving revision 1.108 diff -C2 -d -r1.107 -r1.108 *** mx_install.php 12 Sep 2008 06:27:36 -0000 1.107 --- mx_install.php 15 Sep 2008 23:49:48 -0000 1.108 *************** *** 1205,1209 **** 'PORTAL_BACKEND' => 'internal', 'PHPBB_URL' => '', ! 'DBMS' => $mx_info['dbms'] ? $mx_info['dbms'] : '', 'DB_HOST' => $mx_info['dbhost'] ? $mx_info['dbhost'] : 'localhost', 'DB_NAME' => $mx_info['dbname'] ? $mx_info['dbname'] : '', --- 1205,1209 ---- 'PORTAL_BACKEND' => 'internal', 'PHPBB_URL' => '', ! 'DBMS' => $mx_info['dbms'] ? $mx_info['dbms'] : , 'DB_HOST' => $mx_info['dbhost'] ? $mx_info['dbhost'] : 'localhost', 'DB_NAME' => $mx_info['dbname'] ? $mx_info['dbname'] : '', *************** *** 1289,1293 **** // $phpbb_url = get_phpbb_url($phpbb_info['table_prefix'], $portal_backend); ! // // Close our DB connection. --- 1289,1293 ---- // $phpbb_url = get_phpbb_url($phpbb_info['table_prefix'], $portal_backend); ! // // Close our DB connection. |
|
From: FlorinCB <ory...@us...> - 2008-09-15 14:37:28
|
Update of /cvsroot/mxbb/mx_counter/templates/_core/admin In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv11457/admin Log Message: Directory /cvsroot/mxbb/mx_counter/templates/_core/admin added to the repository |
|
From: FlorinCB <ory...@us...> - 2008-09-15 14:37:20
|
Update of /cvsroot/mxbb/mx_counter/templates/_core In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv11439/_core Log Message: Directory /cvsroot/mxbb/mx_counter/templates/_core added to the repository |
|
From: FlorinCB <ory...@us...> - 2008-09-14 00:29:51
|
Update of /cvsroot/mxbb/mx_kb/kb/modules In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv16272/modules Modified Files: kb_post.php kb_post_comment.php Log Message: fix Index: kb_post.php =================================================================== RCS file: /cvsroot/mxbb/mx_kb/kb/modules/kb_post.php,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** kb_post.php 15 Jul 2008 22:05:43 -0000 1.20 --- kb_post.php 14 Sep 2008 00:29:46 -0000 1.21 *************** *** 175,179 **** // wysiwyg // ! if ( $kb_config['allow_wysiwyg'] && file_exists( $mx_root_path . $kb_config['wysiwyg_path'] . 'tinymce/jscripts/tiny_mce/blank.htm' )) { $allow_wysiwyg = true; --- 175,179 ---- // wysiwyg // ! if ( $kb_config['allow_wysiwyg'] && file_exists( $mx_root_path . $kb_config['wysiwyg_path'] . 'tinymce/jscripts/tiny_mce/tiny_mce.js' )) { $allow_wysiwyg = true; Index: kb_post_comment.php =================================================================== RCS file: /cvsroot/mxbb/mx_kb/kb/modules/kb_post_comment.php,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** kb_post_comment.php 15 Jul 2008 22:05:43 -0000 1.17 --- kb_post_comment.php 14 Sep 2008 00:29:47 -0000 1.18 *************** *** 132,136 **** // wysiwyg // ! if ( $kb_config['allow_comment_wysiwyg'] && file_exists( $mx_root_path . $kb_config['wysiwyg_path'] . 'tinymce/jscripts/tiny_mce/blank.htm' )) { // --- 132,136 ---- // wysiwyg // ! if ( $kb_config['allow_comment_wysiwyg'] && file_exists( $mx_root_path . $kb_config['wysiwyg_path'] . 'tinymce/jscripts/tiny_mce/tiny_mce.js' )) { // |
|
From: FlorinCB <ory...@us...> - 2008-09-14 00:29:50
|
Update of /cvsroot/mxbb/mx_kb/kb In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv16272 Modified Files: kb_common.php Log Message: fix Index: kb_common.php =================================================================== RCS file: /cvsroot/mxbb/mx_kb/kb/kb_common.php,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** kb_common.php 3 Jun 2008 20:08:24 -0000 1.13 --- kb_common.php 14 Sep 2008 00:29:46 -0000 1.14 *************** *** 134,138 **** if ( $kb_config['wysiwyg'] ) // Html Textblock { ! if ( file_exists( $mx_root_path . 'modules/mx_shared/tinymce/jscripts/tiny_mce/blank.htm' ) ) { $bbcode_on = false; --- 134,138 ---- if ( $kb_config['wysiwyg'] ) // Html Textblock { ! if ( file_exists( $mx_root_path . 'modules/mx_shared/tinymce/jscripts/tiny_mce/tiny_mce.js' ) ) { $bbcode_on = false; |