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-12-18 03:41:50
|
Update of /cvsroot/mxbb/mx_contact/includes In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv5333/includes Modified Files: functions_contact.php functions_newsletter.php Log Message: some fixes Index: functions_newsletter.php =================================================================== RCS file: /cvsroot/mxbb/mx_contact/includes/functions_newsletter.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** functions_newsletter.php 4 Oct 2008 08:03:19 -0000 1.1 --- functions_newsletter.php 18 Dec 2008 03:41:45 -0000 1.2 *************** *** 87,90 **** --- 87,143 ---- } + /** + * Generate board url (example: http://www.example.com/mxp3/) + * @param bool $without_script_path if set to true the script path gets not appended (example: http://www.example.com) + */ + function generate_contact_url($without_script_path = false) + { + global $board_config, $mx_user, $_SERVER; + + $server_name = $mx_user->host; + $server_port = (!empty($_SERVER['SERVER_PORT'])) ? (int) $_SERVER['SERVER_PORT'] : (int) getenv('SERVER_PORT'); + + // Forcing server vars is the only way to specify/override the protocol + if ($board_config['force_server_vars'] || !$server_name) + { + $server_protocol = ($board_config['server_protocol']) ? $board_config['server_protocol'] : (($board_config['cookie_secure']) ? 'https://' : 'http://'); + $server_name = $board_config['server_name']; + $server_port = (int) $board_config['server_port']; + $script_path = $board_config['script_path']; + + $url = $server_protocol . $server_name; + } + else + { + // Do not rely on cookie_secure, users seem to think that it means a secured cookie instead of an encrypted connection + $cookie_secure = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') ? 1 : 0; + $url = (($cookie_secure) ? 'https://' : 'http://') . $server_name; + + $script_path = $mx_user->page['root_script_path']; + } + + if ($server_port && (($board_config['cookie_secure'] && $server_port <> 443) || (!$board_config['cookie_secure'] && $server_port <> 80))) + { + // HTTP HOST can carry a port number (we fetch $mx_user->host, but for old versions this may be true) + if (strpos($server_name, ':') === false) + { + $url .= ':' . $server_port; + } + } + + if (!$without_script_path) + { + $url .= $script_path; + } + + // Strip / from the end + if (substr($url, -1, 1) == '/') + { + $url = substr($url, 0, -1); + } + + return $url; + } + if (!function_exists('htmlspecialchars_decode')) { Index: functions_contact.php =================================================================== RCS file: /cvsroot/mxbb/mx_contact/includes/functions_contact.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** functions_contact.php 18 Dec 2008 03:37:53 -0000 1.3 --- functions_contact.php 18 Dec 2008 03:41:45 -0000 1.4 *************** *** 96,151 **** } - /** - * Generate board url (example: http://www.example.com/phpBB) - * @param bool $without_script_path if set to true the script path gets not appended (example: http://www.example.com) - */ - function generate_contact_url($without_script_path = false) - { - global $board_config, $mx_user, $_SERVER; - - $server_name = $mx_user->host; - $server_port = (!empty($_SERVER['SERVER_PORT'])) ? (int) $_SERVER['SERVER_PORT'] : (int) getenv('SERVER_PORT'); - - // Forcing server vars is the only way to specify/override the protocol - if ($board_config['force_server_vars'] || !$server_name) - { - $server_protocol = ($board_config['server_protocol']) ? $board_config['server_protocol'] : (($board_config['cookie_secure']) ? 'https://' : 'http://'); - $server_name = $board_config['server_name']; - $server_port = (int) $board_config['server_port']; - $script_path = $board_config['script_path']; - - $url = $server_protocol . $server_name; - } - else - { - // Do not rely on cookie_secure, users seem to think that it means a secured cookie instead of an encrypted connection - $cookie_secure = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') ? 1 : 0; - $url = (($cookie_secure) ? 'https://' : 'http://') . $server_name; - - $script_path = $mx_user->page['root_script_path']; - } - - if ($server_port && (($board_config['cookie_secure'] && $server_port <> 443) || (!$board_config['cookie_secure'] && $server_port <> 80))) - { - // HTTP HOST can carry a port number (we fetch $mx_user->host, but for old versions this may be true) - if (strpos($server_name, ':') === false) - { - $url .= ':' . $server_port; - } - } - - if (!$without_script_path) - { - $url .= $script_path; - } - - // Strip / from the end - if (substr($url, -1, 1) == '/') - { - $url = substr($url, 0, -1); - } - - return $url; - } - ?> \ No newline at end of file --- 96,98 ---- |
|
From: FlorinCB <ory...@us...> - 2008-12-18 03:38:01
|
Update of /cvsroot/mxbb/mx_contact/includes In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv4971 Modified Files: functions_contact.php Log Message: fix Index: functions_contact.php =================================================================== RCS file: /cvsroot/mxbb/mx_contact/includes/functions_contact.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** functions_contact.php 18 Dec 2008 03:23:06 -0000 1.2 --- functions_contact.php 18 Dec 2008 03:37:53 -0000 1.3 *************** *** 25,36 **** } ! if(!$mx_userdata['session_logged_in']) { ! $remove = $HTTP_GET_VARS['delete']; ! redirect($module_root_path . "login.$phpEx?redirect=index.$phpEx&delete=$remove", true); } ! elseif($mx_userdata['user_level'] != ADMIN) { ! mx_message_die(GENERAL_ERROR, $lang['Not_Authorised']); // lang_main.php } else --- 25,36 ---- } ! if ( !$userdata['session_logged_in'] ) { ! mx_redirect(mx_append_sid("login.php?redirect=admin/index.$phpEx", true)); } ! ! if ( !($userdata['user_level'] == ADMIN) ) { ! mx_message_die(GENERAL_MESSAGE, $lang['Not_admin']); } else |
|
From: FlorinCB <ory...@us...> - 2008-12-18 03:32:52
|
Update of /cvsroot/mxbb/mx_contact/admin In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv4570 Modified Files: admin_mass_mail.php admin_mass_newsletter.php Log Message: phpBB3::unique_id() Index: admin_mass_mail.php =================================================================== RCS file: /cvsroot/mxbb/mx_contact/admin/admin_mass_mail.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** admin_mass_mail.php 18 Dec 2008 03:22:37 -0000 1.2 --- admin_mass_mail.php 18 Dec 2008 03:32:41 -0000 1.3 *************** *** 235,239 **** $email_headers .= 'Sender: <' . $userdata['board_email'] . '>'; $email_headers .= 'MIME-Version: 1.0'; ! $email_headers .= 'Message-ID: <' . md5(unique_id(time())) . '@' . $board_config['server_name'] . '>'; $email_headers .= 'Date: ' . date('r', time()); $email_headers .= 'Content-Type: text/html; charset=UTF-8'; // format=flowed --- 235,239 ---- $email_headers .= 'Sender: <' . $userdata['board_email'] . '>'; $email_headers .= 'MIME-Version: 1.0'; ! $email_headers .= 'Message-ID: <' . md5(phpBB3::unique_id(time())) . '@' . $board_config['server_name'] . '>'; $email_headers .= 'Date: ' . date('r', time()); $email_headers .= 'Content-Type: text/html; charset=UTF-8'; // format=flowed Index: admin_mass_newsletter.php =================================================================== RCS file: /cvsroot/mxbb/mx_contact/admin/admin_mass_newsletter.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** admin_mass_newsletter.php 18 Dec 2008 03:29:01 -0000 1.3 --- admin_mass_newsletter.php 18 Dec 2008 03:32:41 -0000 1.4 *************** *** 237,241 **** $email_headers .= 'Sender: <' . $userdata['board_email'] . '>'; $email_headers .= 'MIME-Version: 1.0'; ! $email_headers .= 'Message-ID: <' . md5(unique_id(time())) . '@' . $board_config['server_name'] . '>'; $email_headers .= 'Date: ' . date('r', time()); $email_headers .= 'Content-Type: text/html; charset=UTF-8'; // format=flowed --- 237,241 ---- $email_headers .= 'Sender: <' . $userdata['board_email'] . '>'; $email_headers .= 'MIME-Version: 1.0'; ! $email_headers .= 'Message-ID: <' . md5(phpBB3::unique_id(time())) . '@' . $board_config['server_name'] . '>'; $email_headers .= 'Date: ' . date('r', time()); $email_headers .= 'Content-Type: text/html; charset=UTF-8'; // format=flowed |
|
From: FlorinCB <ory...@us...> - 2008-12-18 03:29:06
|
Update of /cvsroot/mxbb/mx_contact/admin In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv4316 Modified Files: admin_mass_newsletter.php Log Message: fix Index: admin_mass_newsletter.php =================================================================== RCS file: /cvsroot/mxbb/mx_contact/admin/admin_mass_newsletter.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** admin_mass_newsletter.php 23 Oct 2008 02:36:53 -0000 1.2 --- admin_mass_newsletter.php 18 Dec 2008 03:29:01 -0000 1.3 *************** *** 231,235 **** ! $email_headers = 'Return-Path: ' . $userdata['board_email'] . "\nFrom: " . $board_config['board_email'] . "\n"; $email_headers .= 'X-AntiAbuse: Board servername - ' . $board_config['server_name'] . "\n"; $email_headers .= 'X-AntiAbuse: User_id - ' . $userdata['user_id'] . "\n"; --- 231,251 ---- ! $email_headers = "From: " . $board_config['board_email'] . "\n"; ! ! $email_headers .= 'Reply-To: ' . $userdata['board_email']; ! $email_headers .= 'Return-Path: <' . $board_config['board_email'] . '>'; ! $email_headers .= 'Sender: <' . $userdata['board_email'] . '>'; ! $email_headers .= 'MIME-Version: 1.0'; ! $email_headers .= 'Message-ID: <' . md5(unique_id(time())) . '@' . $board_config['server_name'] . '>'; ! $email_headers .= 'Date: ' . date('r', time()); ! $email_headers .= 'Content-Type: text/html; charset=UTF-8'; // format=flowed ! $email_headers .= 'Content-Transfer-Encoding: 8bit'; // 7bit ! ! $email_headers .= 'X-Priority: 3'; ! $email_headers .= 'X-MSMail-Priority: Normal'; ! $email_headers .= 'X-Mailer: MXP3'; ! $email_headers .= 'X-MimeOLE: Produced By Mx-Publisher ' . PORTAL_VERSION; ! $email_headers .= 'X-phpBB-Origin: phpbb://' . str_replace(array('http://', 'https://'), array('', ''), generate_contact_url()); ! $email_headers .= 'X-AntiAbuse: Board servername - ' . $board_config['server_name'] . "\n"; $email_headers .= 'X-AntiAbuse: User_id - ' . $userdata['user_id'] . "\n"; |
|
From: FlorinCB <ory...@us...> - 2008-12-18 03:23:42
|
Update of /cvsroot/mxbb/mx_contact/includes In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv3914 Modified Files: functions_contact.php Log Message: new function Index: functions_contact.php =================================================================== RCS file: /cvsroot/mxbb/mx_contact/includes/functions_contact.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** functions_contact.php 12 Dec 2007 18:41:44 -0000 1.1 --- functions_contact.php 18 Dec 2008 03:23:06 -0000 1.2 *************** *** 25,34 **** } ! if(!$userdata['session_logged_in']) { $remove = $HTTP_GET_VARS['delete']; redirect($module_root_path . "login.$phpEx?redirect=index.$phpEx&delete=$remove", true); } ! elseif($userdata['user_level'] != ADMIN) { mx_message_die(GENERAL_ERROR, $lang['Not_Authorised']); // lang_main.php --- 25,34 ---- } ! if(!$mx_userdata['session_logged_in']) { $remove = $HTTP_GET_VARS['delete']; redirect($module_root_path . "login.$phpEx?redirect=index.$phpEx&delete=$remove", true); } ! elseif($mx_userdata['user_level'] != ADMIN) { mx_message_die(GENERAL_ERROR, $lang['Not_Authorised']); // lang_main.php *************** *** 96,98 **** --- 96,151 ---- } + /** + * Generate board url (example: http://www.example.com/phpBB) + * @param bool $without_script_path if set to true the script path gets not appended (example: http://www.example.com) + */ + function generate_contact_url($without_script_path = false) + { + global $board_config, $mx_user, $_SERVER; + + $server_name = $mx_user->host; + $server_port = (!empty($_SERVER['SERVER_PORT'])) ? (int) $_SERVER['SERVER_PORT'] : (int) getenv('SERVER_PORT'); + + // Forcing server vars is the only way to specify/override the protocol + if ($board_config['force_server_vars'] || !$server_name) + { + $server_protocol = ($board_config['server_protocol']) ? $board_config['server_protocol'] : (($board_config['cookie_secure']) ? 'https://' : 'http://'); + $server_name = $board_config['server_name']; + $server_port = (int) $board_config['server_port']; + $script_path = $board_config['script_path']; + + $url = $server_protocol . $server_name; + } + else + { + // Do not rely on cookie_secure, users seem to think that it means a secured cookie instead of an encrypted connection + $cookie_secure = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') ? 1 : 0; + $url = (($cookie_secure) ? 'https://' : 'http://') . $server_name; + + $script_path = $mx_user->page['root_script_path']; + } + + if ($server_port && (($board_config['cookie_secure'] && $server_port <> 443) || (!$board_config['cookie_secure'] && $server_port <> 80))) + { + // HTTP HOST can carry a port number (we fetch $mx_user->host, but for old versions this may be true) + if (strpos($server_name, ':') === false) + { + $url .= ':' . $server_port; + } + } + + if (!$without_script_path) + { + $url .= $script_path; + } + + // Strip / from the end + if (substr($url, -1, 1) == '/') + { + $url = substr($url, 0, -1); + } + + return $url; + } + ?> \ No newline at end of file |
|
From: FlorinCB <ory...@us...> - 2008-12-18 03:23:14
|
Update of /cvsroot/mxbb/mx_contact/admin In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv3880 Modified Files: admin_mass_mail.php Log Message: fix Index: admin_mass_mail.php =================================================================== RCS file: /cvsroot/mxbb/mx_contact/admin/admin_mass_mail.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** admin_mass_mail.php 4 Oct 2008 08:03:18 -0000 1.1 --- admin_mass_mail.php 18 Dec 2008 03:22:37 -0000 1.2 *************** *** 229,233 **** $emailer = new emailer($board_config['smtp_delivery']); ! $email_headers = 'Return-Path: ' . $userdata['board_email'] . "\nFrom: " . $board_config['board_email'] . "\n"; $email_headers .= 'X-AntiAbuse: Board servername - ' . $board_config['server_name'] . "\n"; $email_headers .= 'X-AntiAbuse: User_id - ' . $userdata['user_id'] . "\n"; --- 229,249 ---- $emailer = new emailer($board_config['smtp_delivery']); ! $email_headers = "From: " . $board_config['board_email'] . "\n"; ! ! $email_headers .= 'Reply-To: ' . $userdata['board_email']; ! $email_headers .= 'Return-Path: <' . $board_config['board_email'] . '>'; ! $email_headers .= 'Sender: <' . $userdata['board_email'] . '>'; ! $email_headers .= 'MIME-Version: 1.0'; ! $email_headers .= 'Message-ID: <' . md5(unique_id(time())) . '@' . $board_config['server_name'] . '>'; ! $email_headers .= 'Date: ' . date('r', time()); ! $email_headers .= 'Content-Type: text/html; charset=UTF-8'; // format=flowed ! $email_headers .= 'Content-Transfer-Encoding: 8bit'; // 7bit ! ! $email_headers .= 'X-Priority: 3'; ! $email_headers .= 'X-MSMail-Priority: Normal'; ! $email_headers .= 'X-Mailer: MXP3'; ! $email_headers .= 'X-MimeOLE: Produced By Mx-Publisher ' . PORTAL_VERSION; ! $email_headers .= 'X-phpBB-Origin: phpbb://' . str_replace(array('http://', 'https://'), array('', ''), generate_contact_url()); ! $email_headers .= 'X-AntiAbuse: Board servername - ' . $board_config['server_name'] . "\n"; $email_headers .= 'X-AntiAbuse: User_id - ' . $userdata['user_id'] . "\n"; |
Update of /cvsroot/mxbb/core/templates/prosilver In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv30697 Modified Files: overall_header.html overall_header_navigation.html overall_header_navigation_nopageicon.html overall_header_navigation_phpbb.html overall_noheader.html Log Message: fix Index: overall_header_navigation_phpbb.html =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/overall_header_navigation_phpbb.html,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** overall_header_navigation_phpbb.html 29 Aug 2008 10:47:09 -0000 1.14 --- overall_header_navigation_phpbb.html 18 Dec 2008 01:03:15 -0000 1.15 *************** *** 11,17 **** <!-- This should not be included direct from phpBB but later from MXP template folder wich means can be ported to internal backend with no change in this file --> ! <!-- BEGIN switch_phpbb_stylesheet--> ! <link rel="stylesheet" href="{U_PHPBB_ROOT_PATH}styles/prosilver/theme/stylesheet.css" type="text/css" > ! <!-- END switch_phpbb_stylesheet--> <!-- This force template reloading in ie7 like CTRL+F5 does and is not very nice --- 11,17 ---- <!-- This should not be included direct from phpBB but later from MXP template folder wich means can be ported to internal backend with no change in this file --> ! <!-- IF PHPBB --> ! <!-- link rel="stylesheet" href="{U_PHPBB_ROOT_PATH}styles/prosilver/theme/stylesheet.css" type="text/css" / --> ! <!-- ENDIF --> <!-- This force template reloading in ie7 like CTRL+F5 does and is not very nice Index: overall_header_navigation_nopageicon.html =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/overall_header_navigation_nopageicon.html,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** overall_header_navigation_nopageicon.html 29 Aug 2008 10:47:08 -0000 1.4 --- overall_header_navigation_nopageicon.html 18 Dec 2008 01:03:15 -0000 1.5 *************** *** 11,17 **** <!-- This should not be included direct from phpBB but later from MXP template folder wich means can be ported to internal backend with no change in this file --> ! <!-- BEGIN switch_phpbb_stylesheet--> ! <link rel="stylesheet" href="{U_PHPBB_ROOT_PATH}styles/prosilver/theme/stylesheet.css" type="text/css" > ! <!-- END switch_phpbb_stylesheet--> <!-- This force template reloading in ie7 like CTRL+F5 does and is not very nice --- 11,18 ---- <!-- This should not be included direct from phpBB but later from MXP template folder wich means can be ported to internal backend with no change in this file --> ! <!-- IF PHPBB --> ! <!-- link rel="stylesheet" href="{U_PHPBB_ROOT_PATH}styles/prosilver/theme/stylesheet.css" type="text/css" / --> ! <!-- ENDIF --> ! <!-- This force template reloading in ie7 like CTRL+F5 does and is not very nice Index: overall_noheader.html =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/overall_noheader.html,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** overall_noheader.html 29 Aug 2008 10:47:13 -0000 1.7 --- overall_noheader.html 18 Dec 2008 01:03:15 -0000 1.8 *************** *** 11,17 **** <!-- This should not be included direct from phpBB but later from MXP template folder wich means can be ported to internal backend with no change in this file --> ! <!-- BEGIN switch_phpbb_stylesheet--> ! <link rel="stylesheet" href="{U_PHPBB_ROOT_PATH}styles/prosilver/theme/stylesheet.css" type="text/css" > ! <!-- END switch_phpbb_stylesheet--> <!-- This force template reloading in ie7 like CTRL+F5 does and is not very nice --- 11,18 ---- <!-- This should not be included direct from phpBB but later from MXP template folder wich means can be ported to internal backend with no change in this file --> ! <!-- IF PHPBB --> ! <link rel="stylesheet" href="{U_PHPBB_ROOT_PATH}styles/prosilver/theme/stylesheet.css" type="text/css" /> ! <!-- ENDIF --> ! <!-- This force template reloading in ie7 like CTRL+F5 does and is not very nice Index: overall_header.html =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/overall_header.html,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** overall_header.html 29 Aug 2008 10:47:06 -0000 1.12 --- overall_header.html 18 Dec 2008 01:03:15 -0000 1.13 *************** *** 11,17 **** <!-- This should not be included direct from phpBB but later from MXP template folder wich means can be ported to internal backend with no change in this file --> ! <!-- BEGIN switch_phpbb_stylesheet--> ! <link rel="stylesheet" href="{U_PHPBB_ROOT_PATH}styles/prosilver/theme/stylesheet.css" type="text/css" > ! <!-- END switch_phpbb_stylesheet--> <!-- This force template reloading in ie7 like CTRL+F5 does and is not very nice --- 11,17 ---- <!-- This should not be included direct from phpBB but later from MXP template folder wich means can be ported to internal backend with no change in this file --> ! <!-- IF PHPBB --> ! <!-- link rel="stylesheet" href="{U_PHPBB_ROOT_PATH}styles/prosilver/theme/stylesheet.css" type="text/css" / --> ! <!-- ENDIF --> <!-- This force template reloading in ie7 like CTRL+F5 does and is not very nice Index: overall_header_navigation.html =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/overall_header_navigation.html,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** overall_header_navigation.html 29 Aug 2008 10:47:07 -0000 1.16 --- overall_header_navigation.html 18 Dec 2008 01:03:15 -0000 1.17 *************** *** 11,17 **** <!-- This should not be included direct from phpBB but later from MXP template folder wich means can be ported to internal backend with no change in this file --> ! <!-- BEGIN switch_phpbb_stylesheet--> ! <link rel="stylesheet" href="{U_PHPBB_ROOT_PATH}styles/prosilver/theme/stylesheet.css" type="text/css" > ! <!-- END switch_phpbb_stylesheet--> <!-- This force template reloading in ie7 like CTRL+F5 does and is not very nice --- 11,17 ---- <!-- This should not be included direct from phpBB but later from MXP template folder wich means can be ported to internal backend with no change in this file --> ! <!-- IF PHPBB --> ! <!-- link rel="stylesheet" href="{U_PHPBB_ROOT_PATH}styles/prosilver/theme/stylesheet.css" type="text/css" / --> ! <!-- ENDIF --> <!-- This force template reloading in ie7 like CTRL+F5 does and is not very nice |
|
From: FlorinCB <ory...@us...> - 2008-12-17 00:48:11
|
Update of /cvsroot/mxbb/mx_calsnails/language/lang_romanian In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv22511 Modified Files: lang_main.php Log Message: fix Index: lang_main.php =================================================================== RCS file: /cvsroot/mxbb/mx_calsnails/language/lang_romanian/lang_main.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** lang_main.php 17 Dec 2008 00:26:36 -0000 1.1 --- lang_main.php 17 Dec 2008 00:48:06 -0000 1.2 *************** *** 33,46 **** $lang['Cal_must_member'] = "Trebuie sã fie autorizate pentru a conecta ºi de a folosi acest serviciu "; $lang['Cal_alt_event'] = "curent:"; ! $lang['Validate'] = "Validate Evenimente "; $lang['Cal_event_validated'] = "Eveniment (e) au fost validate / ºterse dupã cum se specificã "; ! $lang['nr evenimente'] = "Momentan nu existã evenimente pentru aceastã datã "; ! $lang['nr de înregistrãri'] = "Nu necesita validare evenimente "; ! $lang['Nu modificaþi înregistrãrile'] = "Nu evenimente disponibile pentru a modifica "; ! $lang['nr informaþii'] = "suficiente informaþii. Vã rugãm sã completaþi toate relevante info "; ! $lang['înainte de Data de azi'] = "Ne pare rãu, nu aveþi posibilitatea sã trimiteþi datele de evenimente pentru care au trecut deja "; ! $lang['înainte de a începe Data'] = "Ne pare rãu, nu puteþi sã prezinte evenimente care se termina înainte de a începe "; ! $lang['data nr'] = "Trebuie sã selectaþi un început ºi data de sfârºit "; ! $lang['Nu e timp'] = "Trebuie sã selectaþi o datã de start ºi de sfârºit "; // --- 33,46 ---- $lang['Cal_must_member'] = "Trebuie sã fie autorizate pentru a conecta ºi de a folosi acest serviciu "; $lang['Cal_alt_event'] = "curent:"; ! $lang['Validate'] = "Validare Evenimente "; $lang['Cal_event_validated'] = "Eveniment (e) au fost validate / ºterse dupã cum se specificã "; ! $lang['No events'] = "Momentan nu existã evenimente pentru aceastã datã "; ! $lang['No records'] = "Nu necesita validare evenimente "; ! $lang['No records modify'] = "Nu evenimente disponibile pentru a modifica "; ! $lang['No information'] = "suficiente informaþii. Vã rugãm sã completaþi toate relevante info "; ! $lang['Date before today'] = "Ne pare rãu, nu aveþi posibilitatea sã trimiteþi datele de evenimente pentru care au trecut deja "; ! $lang['Date before start'] = "Ne pare rãu, nu puteþi sã prezinte evenimente care se termina înainte de a începe "; ! $lang['No date'] = "Trebuie sã selectaþi un început ºi data de sfârºit "; ! $lang['No time'] = "Trebuie sã selectaþi o datã de start ºi de sfârºit "; // *************** *** 50,54 **** $lang['Cal_add4valid'] = "Eveniment prezentat pentru validare de cãtre un administrator "; ! $lang['categorie'] = "Categorie"; $lang['allow_categories'] = "Folosiþi categorii cu evenimente "; --- 50,54 ---- $lang['Cal_add4valid'] = "Eveniment prezentat pentru validare de cãtre un administrator "; ! $lang['category'] = "Categorie"; $lang['allow_categories'] = "Folosiþi categorii cu evenimente "; *************** *** 77,111 **** $lang['pânã la'] = "pânã la"; $lang['Primele reapar înainte de astãzi'] = "Ne pare rãu, mai devreme la data la acest set nu poate fi mutat de azi înainte. \ n <br> <b> Problema eveniment la data de:"; ! $lang['zi'] = "zi (e) "; ! $lang['luna'] = "luna (i) "; ! $lang['ani'] = "ani (e) "; $lang['Event_length'] = "Fiecare eveniment dureazã: "; $lang['Recur_title'] = "Optional Info recurent. "; $lang['Event_title'] = "Eveniment Info. "; ! $lang['de evenimente se suprapun'] = "recurent evenimente nu poate repeta iniþialã înainte de eveniment a luat sfârºit "; ! $lang['R_period prea mici'] = "Perioada disponibile pentru evenimente recurente este insuficientã pentru orice se repeta de"; ! $lang['Adãugaþi note'] = "Adauga suplimentare, aceastã intrare pentru a notele "; ! $lang['Adãugaþi remarcat titlu'] = "Adauga Notes "; $lang['Split solo'] = "împãrþitã în \'de sine stãtãtoare\' <i> intrare (nu va mai actualizare cu evenimente legate) </ i>"; ! $lang['Split solo titlu'] = "Split de a separa eveniment"; ! $lang['Split viitor'] = "Modificare toate caz, inregistrarile de la acest punct înainte "; ! $lang['Split viitor titlu'] = "Modificare toate evenimentele viitoare "; ! $lang['Editaþi toate'] = "Modificare toate intrãrile legate de eveniment "; ! $ teren [ 'Editaþi toate titlu'] = "Modificare toate legate de evenimente "; $lang['early_iteration'] = "(Primele repetare dupã data de astãzi) "; ! $lang['global subiect'] = "Global subiect "; $lang['global desc'] = "Global eveniment info "; ! $lang['Del viitor'] = "ªtergere toate evenimentele de la acest punct înainte "; ! $lang['Del toate'] = "ªterge toate intrãrile <i> legate de eveniment (nu este împãrþitã inclusiv intrãrile) </ i> "; ! $lang['Del acest'] = "ªterge acest eveniment unic "; $lang['Event_num'] = "Eveniment numarul: "; ! $lang['a'] = "<i> de </ i> "; ! $lang['Informatii suplimentare'] = "Alte informaþii: "; ! $lang['de evenimente specifice'] = "(specifice pentru a \'acest\' caz):"; $lang['allow_user_post_default'] = "Implicit nivel de acces pentru toþi utilizatorii înregistraþi "; --- 77,111 ---- $lang['pânã la'] = "pânã la"; $lang['Primele reapar înainte de astãzi'] = "Ne pare rãu, mai devreme la data la acest set nu poate fi mutat de azi înainte. \ n <br> <b> Problema eveniment la data de:"; ! $lang['day'] = "zi (le)"; ! $lang['month'] = "lunã (e)"; ! $lang['year'] = "an(i) "; $lang['Event_length'] = "Fiecare eveniment dureazã: "; $lang['Recur_title'] = "Optional Info recurent. "; $lang['Event_title'] = "Eveniment Info. "; ! $lang['Event overlap'] = "recurent evenimente nu poate repeta iniþialã înainte de eveniment a luat sfârºit "; ! $lang['R_period too small'] = "Perioada disponibile pentru evenimente recurente este insuficientã pentru orice se repeta de"; ! $lang['Add notes'] = "Adauga suplimentare, aceastã intrare pentru a notele "; ! $lang['Add noted title'] = "Adauga Notes "; $lang['Split solo'] = "împãrþitã în \'de sine stãtãtoare\' <i> intrare (nu va mai actualizare cu evenimente legate) </ i>"; ! $lang['Split solo title'] = "Split de a separa eveniment"; ! $lang['Split future'] = "Modificare toate caz, inregistrarile de la acest punct înainte "; ! $lang['Split future title'] = "Modificare toate evenimentele viitoare "; ! $lang['Edit all'] = "Modificare toate intrãrile legate de eveniment "; ! $land['Edit all title'] = "Modificare toate legate de evenimente "; $lang['early_iteration'] = "(Primele repetare dupã data de astãzi) "; ! $lang['global subject'] = "Global subiect "; $lang['global desc'] = "Global eveniment info "; ! $lang['Del future'] = "ªtergere toate evenimentele de la acest punct înainte "; ! $lang['Del all'] = "ªterge toate intrãrile <i> legate de eveniment (nu este împãrþitã inclusiv intrãrile) </ i> "; ! $lang['Del this'] = "ªterge acest eveniment unic "; $lang['Event_num'] = "Eveniment numarul: "; ! $lang['of'] = "<i>de</ i> "; ! $lang['Additional info'] = "Alte informaþii: "; ! $lang['Event specific'] = "(specifice pentru a \'acest\' caz):"; $lang['allow_user_post_default'] = "Implicit nivel de acces pentru toþi utilizatorii înregistraþi "; *************** *** 118,136 **** $lang['cal_admin'] = "Admin Calendar"; ! $lang['Invalid data'] = "Unul sau ambele de la datele pe care le-aþi prezentat este invalid "; ! $lang['Empty subiect'] = "Trebuie sã introduceþi un subiect pentru dumneavoastrã eveniment"; ! $lang['Empty descriere'] = "Trebuie sã introduceþi o descriere a evenimentului "; $lang['max'] = "Maximum: "; ! $lang['Inapoi'] = "Du-te inapoi la:"; ! $lang['Vezi Toate'] = "Vezi Toate"; $lang['Calendar_Level'] = "Nivel Calendar"; $lang['Calendar_Categories'] = "Categorii Calendar "; ! $lang['Calendar config'] = "Calendar config"; ! $lang['zi'] = "zi (e) "; ! $lang['sãptãmâni'] = "sãptãmâni (e) "; ! $lang['luna'] = "luna (i) "; ! $lang['ani'] = "ani (e) "; $lang['view_year'] = "Anul Vizualizare "; --- 118,136 ---- $lang['cal_admin'] = "Admin Calendar"; ! $lang['Invalid date']= "Unul sau ambele de la datele pe care le-aþi prezentat este invalid "; ! $lang['Empty subject'] = "Trebuie sã introduceþi un subiect pentru dumneavoastrã eveniment"; ! $lang['Empty description'] = "Trebuie sã introduceþi o descriere a evenimentului "; $lang['max'] = "Maximum: "; ! $lang['Return'] = "Du-te inapoi la:"; ! $lang['View All'] = "Vezi Toate"; $lang['Calendar_Level'] = "Nivel Calendar"; $lang['Calendar_Categories'] = "Categorii Calendar "; ! $lang['Calendar Config'] = "Calendar config"; ! $lang['days'] = "zi(le) "; ! $lang['weeks'] = "sãptãmâni"; ! $lang['months'] = "luna(i) "; ! $lang['years'] = "an(i) "; $lang['view_year'] = "Anul Vizualizare "; *************** *** 139,143 **** $lang['view_day'] = "Ziua / Eveniment Vizualizare "; $lang['view_list'] = "Vizualizare Listã "; ! $lang['vedere'] = "Vizualizare"; $lang['Submitted_by'] = "Publicat de"; --- 139,143 ---- $lang['view_day'] = "Ziua / Eveniment Vizualizare "; $lang['view_list'] = "Vizualizare Listã "; ! $lang['view'] = "Vizualizare"; $lang['Submitted_by'] = "Publicat de"; *************** *** 177,181 **** // Adaugat pentru MX-Publisher Portalul modul mx_calsnails // ! $lang['Evenimente'] = "Evenimente"; $lang['allow_anon_post_default'] = "Implicit nivel de acces pentru toþi utilizatorii anonimi "; --- 177,181 ---- // Adaugat pentru MX-Publisher Portalul modul mx_calsnails // ! $lang['Events'] = "Evenimente"; $lang['allow_anon_post_default'] = "Implicit nivel de acces pentru toþi utilizatorii anonimi "; |
|
From: FlorinCB <ory...@us...> - 2008-12-17 00:26:43
|
Update of /cvsroot/mxbb/mx_calsnails/templates/_core/images/lang_french In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv21731/templates/_core/images/lang_french Added Files: icon_post_delete.gif icon_post_edit.gif Log Message: development version 2.9.0 --- NEW FILE: icon_post_edit.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_post_delete.gif --- (This appears to be a binary file; contents omitted.) |
|
From: FlorinCB <ory...@us...> - 2008-12-17 00:26:43
|
Update of /cvsroot/mxbb/mx_calsnails/templates/_core/images/lang_romanian In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv21731/templates/_core/images/lang_romanian Added Files: icon_post_delete.gif icon_post_edit.gif Log Message: development version 2.9.0 --- NEW FILE: icon_post_edit.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_post_delete.gif --- (This appears to be a binary file; contents omitted.) |
|
From: FlorinCB <ory...@us...> - 2008-12-17 00:26:43
|
Update of /cvsroot/mxbb/mx_calsnails/language/lang_romanian In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv21731/language/lang_romanian Added Files: index.htm lang_admin.php lang_main.php Log Message: development version 2.9.0 --- NEW FILE: lang_main.php --- <?php /** * * @package MX-Publisher Module - mx_calsnails * @version $Id: lang_main.php,v 1.1 2008/12/17 00:26:36 orynider Exp $ * @copyright (c) 2002-2006 [Martin, Markus, Jon Ohlsson] MX-Publisher Project Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * @link http://www.MX-Publisher.com * */ $lang['Calendar'] = "Calendar"; $lang['Cal_description'] = "Descriere"; $lang['Cal_day'] = "Data de început "; $lang['Cal_hour'] = "Ora"; $lang['End_day'] = "Data de sfârºit "; $lang['End_time'] = "Sfarsit de timp "; $lang['Cal_subject'] = "Subiect"; $lang['Cal_add_event'] = "Adãugare eveniment"; $lang['Cal_submit_event'] = "Trimiteti un eveniment "; $lang['Cal_event_not_add'] = "Eveniment ne-adãugat ..."; $lang['Cal_event_delete'] = "Eveniment ºters "; $lang['Cal_Del_mod'] = "ªtergere / Modificare "; $lang['Cal_mod_only'] = "Modifica"; $lang['Cal_back2cal'] = "Index Calendar"; $lang['Cal_mod_marked'] = "Modificare eveniment"; $lang['Cal_del_marked'] = "ªtergere eveniment"; $lang['Cal_must_sel_event'] = "Trebuie sã selectaþi un eveniment. "; $lang['Cal_edit_own_event'] = "Ne pare rãu, puteþi modifica numai propriile evenimente. "; $lang['Cal_delete_event'] = "Ne pare rãu, nu \ n-au permisiunea de a ºterge acest eveniment. "; $lang['Cal_not_enough_access'] = "Ne pare rãu, Access Denied "; $lang['Cal_must_member'] = "Trebuie sã fie autorizate pentru a conecta ºi de a folosi acest serviciu "; $lang['Cal_alt_event'] = "curent:"; $lang['Validate'] = "Validate Evenimente "; $lang['Cal_event_validated'] = "Eveniment (e) au fost validate / ºterse dupã cum se specificã "; $lang['nr evenimente'] = "Momentan nu existã evenimente pentru aceastã datã "; $lang['nr de înregistrãri'] = "Nu necesita validare evenimente "; $lang['Nu modificaþi înregistrãrile'] = "Nu evenimente disponibile pentru a modifica "; $lang['nr informaþii'] = "suficiente informaþii. Vã rugãm sã completaþi toate relevante info "; $lang['înainte de Data de azi'] = "Ne pare rãu, nu aveþi posibilitatea sã trimiteþi datele de evenimente pentru care au trecut deja "; $lang['înainte de a începe Data'] = "Ne pare rãu, nu puteþi sã prezinte evenimente care se termina înainte de a începe "; $lang['data nr'] = "Trebuie sã selectaþi un început ºi data de sfârºit "; $lang['Nu e timp'] = "Trebuie sã selectaþi o datã de start ºi de sfârºit "; // // New Version 2.0.0 Adiþii. // $lang['Cal_event_add'] = "Eveniment adãugat / modificate ..."; $lang['Cal_add4valid'] = "Eveniment prezentat pentru validare de cãtre un administrator "; $lang['categorie'] = "Categorie"; $lang['allow_categories'] = "Folosiþi categorii cu evenimente "; $lang['require_categories'] = "necesitã o categorie cu evenimente: "; $lang['No_cat_selected'] = "Nu categorie selectate "; $lang['Edit_cat'] = "Editare categorie "; $lang['Cats_explain'] = "Folosiþi aceastã secþiune pentru a adãugaþi, editaþi sau ºtergeþi categoriile de a utiliza pe baza dumneavoastrã de date. <br> <br> <b> NB: </ b> Vã rugãm sã reþineþi cã, dacã vã ºterge o categorie care a fost selectat pentru un eveniment nu va ºterge aceste înregistrãri, dar se va opri utilizatorii de la a fi capabil de a filtra ºi a vizualiza o eliminã categorie. "; $lang['Cats_title'] = "Categorie Admin"; $lang['Must_enter_cat'] = "Trebuie sã introduceþi o categorie "; $lang['Cat_updated'] = "Categorie Actualizat "; $lang['Cat_added'] = "Categorie adãugatã "; $lang['cat_removed'] = "Categorie eliminat "; $lang['Add_new_cat'] = "Adãugare nouã categorie "; $lang['Click_return_catadmin'] = "% sHere Faceþi clic pe% s pentru a reveni la Categorie Administraþie "; $lang['Must_enter_valid_cat'] = "Trebuie sã utilizaþi valabile alfa / numeric de caractere"; $lang['Filter_cats_alt'] = "Aratã numai categoria selectata"; $lang['Filter_cats'] = "Vezi numai ..."; $lang['Month_jump'] = "Salt la ..."; $lang['Recur_apply_to'] = "Modificãrile se aplicã la:"; $lang['Recur_future'] = "viitorul evenimente "; $lang['Recur_solo'] = "Acest eveniment numai "; $lang['Recur_all'] = "Toate recurrences "; $lang['Cal_repeats'] = "Se repetã la fiecare: "; $lang['pânã la'] = "pânã la"; $lang['Primele reapar înainte de astãzi'] = "Ne pare rãu, mai devreme la data la acest set nu poate fi mutat de azi înainte. \ n <br> <b> Problema eveniment la data de:"; $lang['zi'] = "zi (e) "; $lang['luna'] = "luna (i) "; $lang['ani'] = "ani (e) "; $lang['Event_length'] = "Fiecare eveniment dureazã: "; $lang['Recur_title'] = "Optional Info recurent. "; $lang['Event_title'] = "Eveniment Info. "; $lang['de evenimente se suprapun'] = "recurent evenimente nu poate repeta iniþialã înainte de eveniment a luat sfârºit "; $lang['R_period prea mici'] = "Perioada disponibile pentru evenimente recurente este insuficientã pentru orice se repeta de"; $lang['Adãugaþi note'] = "Adauga suplimentare, aceastã intrare pentru a notele "; $lang['Adãugaþi remarcat titlu'] = "Adauga Notes "; $lang['Split solo'] = "împãrþitã în \'de sine stãtãtoare\' <i> intrare (nu va mai actualizare cu evenimente legate) </ i>"; $lang['Split solo titlu'] = "Split de a separa eveniment"; $lang['Split viitor'] = "Modificare toate caz, inregistrarile de la acest punct înainte "; $lang['Split viitor titlu'] = "Modificare toate evenimentele viitoare "; $lang['Editaþi toate'] = "Modificare toate intrãrile legate de eveniment "; $ teren [ 'Editaþi toate titlu'] = "Modificare toate legate de evenimente "; $lang['early_iteration'] = "(Primele repetare dupã data de astãzi) "; $lang['global subiect'] = "Global subiect "; $lang['global desc'] = "Global eveniment info "; $lang['Del viitor'] = "ªtergere toate evenimentele de la acest punct înainte "; $lang['Del toate'] = "ªterge toate intrãrile <i> legate de eveniment (nu este împãrþitã inclusiv intrãrile) </ i> "; $lang['Del acest'] = "ªterge acest eveniment unic "; $lang['Event_num'] = "Eveniment numarul: "; $lang['a'] = "<i> de </ i> "; $lang['Informatii suplimentare'] = "Alte informaþii: "; $lang['de evenimente specifice'] = "(specifice pentru a \'acest\' caz):"; $lang['allow_user_post_default'] = "Implicit nivel de acces pentru toþi utilizatorii înregistraþi "; $lang['no_public'] = "Nu accesul public "; $lang['view_only'] = "Numai vizualizare"; $lang['view_suggest'] = "Vezi, Propuneþi Evenimente "; $lang['view_add'] = "Vizualizaþi, adãugaþi Evenimente "; $lang['view_edit_own'] = "Vizualizaþi, adãugaþi (Editaþi / ªtergeþi proprii) "; $lang['cal_admin'] = "Admin Calendar"; $lang['Invalid data'] = "Unul sau ambele de la datele pe care le-aþi prezentat este invalid "; $lang['Empty subiect'] = "Trebuie sã introduceþi un subiect pentru dumneavoastrã eveniment"; $lang['Empty descriere'] = "Trebuie sã introduceþi o descriere a evenimentului "; $lang['max'] = "Maximum: "; $lang['Inapoi'] = "Du-te inapoi la:"; $lang['Vezi Toate'] = "Vezi Toate"; $lang['Calendar_Level'] = "Nivel Calendar"; $lang['Calendar_Categories'] = "Categorii Calendar "; $lang['Calendar config'] = "Calendar config"; $lang['zi'] = "zi (e) "; $lang['sãptãmâni'] = "sãptãmâni (e) "; $lang['luna'] = "luna (i) "; $lang['ani'] = "ani (e) "; $lang['view_year'] = "Anul Vizualizare "; $lang['view_month'] = "Vezi Luna "; $lang['view_week'] = "Sãptãmâna Vizualizare "; $lang['view_day'] = "Ziua / Eveniment Vizualizare "; $lang['view_list'] = "Vizualizare Listã "; $lang['vedere'] = "Vizualizare"; $lang['Submitted_by'] = "Publicat de"; $lang['No_modify_old'] = "Ne pare rãu, puteþi \' t vechi edita un eveniment "; $lang['Cat_in_use'] = "Aceasta categorie este deja existente legate de evenimente ºi nu poate fi sters "; // // Dev lang 2.0.25 // $lang['require_time'] = "Prevederea de start / final de ori pentru a fi intrat cu noi evenimente "; $lang['allow_private_event'] = "Se permite de utilizatorii înregistraþi pentru a adãuga private de evenimente "; $lang['allow_group_event'] = "Se permite de utilizatorii înregistraþi pentru a limita evenimente la propriile lor grupuri "; $lang['event_access'] = "Eveniment de acces: "; $lang['private_event'] = "private / personale "; $lang['public_event'] = "public"; $lang['ug_event'] = "Rezervat grup de utilizatori (e) "; $lang['group_select'] = "Permis de utilizatori: <br /> <i> (dacã este cazul) </ i> "; $lang['group_event_explain'] = "<span class=\"genmed\"> <i> (tasta Ctrl pentru Tine ºi selectaþi grupurile cu mouse-ul pentru a selecta mai mult de un grup) </ i> </ span> "; $lang['No_private_events'] = "Ai nu sunt permise pentru a adãuga private de evenimente "; $lang['time_format'] = "Timpul Format"; // // Dev lang 2.0.31 // $lang['c_first'] = "1 decembrie"; $lang['c_second'] = "2-lea"; $lang['c_third'] = "3-lea"; $lang['c_fourth'] = "4-lea"; $lang['OR_every'] = "fiecare sau: "; // $lang['datetime'] [ 'poate "] =" Mai "; // // Adaugat pentru MX-Publisher Portalul modul mx_calsnails // $lang['Evenimente'] = "Evenimente"; $lang['allow_anon_post_default'] = "Implicit nivel de acces pentru toþi utilizatorii anonimi "; $lang['Calendar_Events'] = "Calendar de evenimente "; $lang['More_Info'] = "Mai multe informaþii ..."; $lang['To_End_Date'] = "Datã de Sfârºit:"; // // Pentru început eticheta Cal Evenimente // $lang['Ev_this_day'] = "Astãzi"; $lang['Ev_this_week'] = "Acestã Sãptãmânã"; $lang['Ev_next_week'] = "Sãptãmâna viitoare, "; $lang['Ev_this_month'] = "Aceastã lunã "; $lang['Ev_next_month'] = "Luna urmãtoare"; ?> --- NEW FILE: lang_admin.php --- <?php /** * * @package MX-Publisher Module - mx_calsnails * @version $Id: lang_admin.php,v 1.1 2008/12/17 00:26:36 orynider Exp $ * @copyright (c) 2002-2006 [Martin, Markus, Jon Ohlsson] MX-Publisher Project Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * @link http://www.MX-Publisher.com * */ // // The format of this file is: // // ---> $lang['message'] = 'text'; // // Specify your language character encoding... [optional] // // setlocale(LC_ALL, 'en'); // // adminCP index // $lang['Calsnails_title'] = 'Calsnails'; $lang['1_Settings'] = 'General Settings'; // // Configuration // $lang['Config_Calendar'] = 'Calendar Configuration'; $lang['Config_Calendar_explain'] = 'Set all the necessary variables for your calendar below'; $lang['week_start'] = 'Week start'; $lang['subject_length'] = 'Subject length'; $lang['subject_length_explain'] = 'Set the length of characters in an event subject(title) for the main month view<br><i>NB: For double-byte languages always select an even number of characters</i>'; $lang['cal_script_path_explain'] = 'NOT CURRENTLY IN USE'; $lang['allow_anon'] = 'Allow anonymous viewing'; $lang['allow_old'] = 'Allow old events'; $lang['allow_old_explain'] = 'Allow events to be posted for dates in the past'; $lang['show_headers'] = 'Show the phpBB2 header info'; $lang['cal_date_explain'] = "Only use if you wish to use a different format from the forum date format <a href='http://www.php.net/date' target='_other'>gmdate()</a>"; $lang['Cal_config_updated'] = 'Calendar Configuration Updated Sucessfully'; $lang['Cal_return_config'] = 'Click %sHere%s to return to Calendar Configuration'; $lang['no_public'] = 'No public access'; $lang['view_only'] = 'View only'; $lang['view_suggest'] = 'View,Suggest Events'; $lang['view_add'] = 'View,Add Events'; $lang['view_edit_own'] = 'View,Add (Edit/Delete own)'; $lang['cal_admin'] = 'Calendar Admin'; $lang['allow_user_post_default'] = 'Default access level for ALL registered users'; $lang['allow_anon_post_default'] = 'Default access level for ALL anonymous users'; // // Block // $lang['Calendar_Where'] = 'SQL Where'; $lang['Calendar_Where_explain'] = 'Specify conditions to filter calendar events.<br />For instance: username = "xxxx" AND eventspan >= "yyyy-mm-dd hh:mm:ss"<br />Column Information: id (int), username (string), stamp (datetime in the form "yyyy-mm-dd hh:mm:ss"), subject (string), description (string), user_id (int), eventspan (date)'; $lang['Calendar_Order'] = 'SQL Order By'; $lang['Calendar_Order_explain'] = 'Specify the list of columns (comma separated) to use in ORDER BY clausule.<br />Note: Parameters WHERE and ORDER BY are used to dynamically build the SQL statement for this block. Please, verify the SQL syntax is correct.'; // ----------------------------------- // Block Parameter Specific // ----------------------------------- $lang['Calendar_Block_Title'] = 'Block title'; $lang['Calendar_Block_Title_explain'] = 'This parameter allows you to override the default block title (you may use something meaningfull depending on the Range used).'; $lang['Calendar_Events_dateformat'] = 'Date Format'; $lang['Calendar_Events_dateformat_explain'] = "Only use if you wish to use a different format from the Calendar Lite date format (see <a href='http://www.php.net/date' target='_other'>gmdate()</a>)"; $lang['Calendar_Vertical_Size'] = 'Vertical Size (pixels)'; $lang['Calendar_Vertical_Size_explain'] = 'If you choose 0, the block height depends on the number of events, otherwise the size will be fixed and the block will be scrollable.'; $lang['Calendar_Text_Length'] = 'Text Length'; $lang['Calendar_Text_Length_explain'] = 'Specify the max. number of visible characters for the events text.'; $lang['Calendar_Events_Range'] = 'Range for Events'; $lang['Calendar_Events_Range_explain'] = 'Specify the range (or filter) to be applied to the displayed events.'; $lang['Calendar_Events_Prev'] = 'Days before range'; $lang['Calendar_Events_Prev_explain'] = 'Use this parameter to apply a negative offset to the range specified.'; $lang['Calendar_Events_Next'] = 'Days after range'; $lang['Calendar_Events_Next_explain'] = 'Use this parameter to apply a positive offset to the range specified.'; $lang['Mod_group'] = 'Calsnails Moderator Group'; $lang['Mod_group_explain'] = '- with Calsnails Admin permissions!'; $lang['auth_all'] = 'Default access level for ALL anonymous users'; $lang['auth_reg'] = 'Default access level for ALL registered users'; $lang['auth_reg_explain'] = 'NOTE: Block EDIT permissions also affect the CalSnails Block. EDIT users become CalSnails moderators...'; $lang['cal_filter'] = 'Event Filter: Show events added for this Block only'; $lang['cal_filter_explain'] = 'NOTE: FALSE, means show ALL calendar events...'; $lang['cal_mod_group'] = 'CalSnails Moderator Group'; // // 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-12-17 00:26:43
|
Update of /cvsroot/mxbb/mx_calsnails In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv21731 Modified Files: db_install.php db_upgrade.php Log Message: development version 2.9.0 Index: db_install.php =================================================================== RCS file: /cvsroot/mxbb/mx_calsnails/db_install.php,v retrieving revision 1.31 retrieving revision 1.32 diff -C2 -d -r1.31 -r1.32 *** db_install.php 3 Jun 2008 20:07:09 -0000 1.31 --- db_install.php 17 Dec 2008 00:26:36 -0000 1.32 *************** *** 31,35 **** } ! $mx_module_version = '2.2.4'; $mx_module_copy = 'Original phpBB <i>Calendar LITE</i> MOD by <a href="http://www.snailsource.com/" target="_blank">Martin</a> :: Adapted for MX-Publisher by [Jon Ohlsson] <a href="http://www.mx-publisher.com" target="_blank">The MX-Publisher Development Team</a>'; --- 31,35 ---- } ! $mx_module_version = '2.9.0'; $mx_module_copy = 'Original phpBB <i>Calendar LITE</i> MOD by <a href="http://www.snailsource.com/" target="_blank">Martin</a> :: Adapted for MX-Publisher by [Jon Ohlsson] <a href="http://www.mx-publisher.com" target="_blank">The MX-Publisher Development Team</a>'; *************** *** 56,60 **** stamp datetime, subject varchar(255), ! description blob, user_id mediumint(1) DEFAULT '-1' NOT NULL, valid char(3) DEFAULT 'no' NOT NULL, --- 56,60 ---- stamp datetime, subject varchar(255), ! description mediumtext, user_id mediumint(1) DEFAULT '-1' NOT NULL, valid char(3) DEFAULT 'no' NOT NULL, *************** *** 63,67 **** block_id mediumint(8) unsigned NOT NULL default '0', PRIMARY KEY (event_id) ! )", // Table: Calendar Lite Configuration "CREATE TABLE " . CALLITE_CONFIG_TABLE . " ( --- 63,67 ---- block_id mediumint(8) unsigned NOT NULL default '0', PRIMARY KEY (event_id) ! ) CHARACTER SET utf8 COLLATE utf8_bin", // Table: Calendar Lite Configuration "CREATE TABLE " . CALLITE_CONFIG_TABLE . " ( *************** *** 69,73 **** config_value varchar(255) NOT NULL default '', PRIMARY KEY (config_name) ! )", // Inserts: Default Calendar Configuration "INSERT INTO " . CALLITE_CONFIG_TABLE . " VALUES ('week_start', '0')", --- 69,73 ---- config_value varchar(255) NOT NULL default '', PRIMARY KEY (config_name) ! ) CHARACTER SET utf8 COLLATE utf8_bin", // Inserts: Default Calendar Configuration "INSERT INTO " . CALLITE_CONFIG_TABLE . " VALUES ('week_start', '0')", Index: db_upgrade.php =================================================================== RCS file: /cvsroot/mxbb/mx_calsnails/db_upgrade.php,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** db_upgrade.php 3 Jun 2008 20:07:09 -0000 1.24 --- db_upgrade.php 17 Dec 2008 00:26:36 -0000 1.25 *************** *** 31,35 **** } ! $mx_module_version = '2.2.4'; $mx_module_copy = 'Original phpBB <i>Calendar LITE</i> MOD by <a href="http://www.snailsource.com/" target="_blank">Martin</a> :: Adapted for MX-Publisher by [Jon Ohlsson] <a href="http://www.mx-publisher.com" target="_blank">The MX-Publisher Development Team</a>'; --- 31,35 ---- } ! $mx_module_version = '2.9.0'; $mx_module_copy = 'Original phpBB <i>Calendar LITE</i> MOD by <a href="http://www.snailsource.com/" target="_blank">Martin</a> :: Adapted for MX-Publisher by [Jon Ohlsson] <a href="http://www.mx-publisher.com" target="_blank">The MX-Publisher Development Team</a>'; |
|
From: FlorinCB <ory...@us...> - 2008-12-17 00:26:43
|
Update of /cvsroot/mxbb/mx_calsnails/includes In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv21731/includes Modified Files: cal_functions.php Log Message: development version 2.9.0 Index: cal_functions.php =================================================================== RCS file: /cvsroot/mxbb/mx_calsnails/includes/cal_functions.php,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** cal_functions.php 16 Dec 2008 23:26:57 -0000 1.18 --- cal_functions.php 17 Dec 2008 00:26:36 -0000 1.19 *************** *** 578,582 **** } ! if ( ( $currentdate > $submitdate ) && !$cal_config['allow_old'] ) { // Nothing in the subject line: Reject it. --- 578,582 ---- } ! if ( ( $currentdate > $submitdate ) && !$cal_config['allow_old'] && ($userdata['user_level'] != ADMIN) ) { // Nothing in the subject line: Reject it. |
|
From: FlorinCB <ory...@us...> - 2008-12-17 00:26:43
|
Update of /cvsroot/mxbb/mx_calsnails/templates/_core/images/lang_english In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv21731/templates/_core/images/lang_english Added Files: icon_post_delete.gif icon_post_edit.gif Log Message: development version 2.9.0 --- NEW FILE: icon_post_edit.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_post_delete.gif --- (This appears to be a binary file; contents omitted.) |
|
From: FlorinCB <ory...@us...> - 2008-12-17 00:26:43
|
Update of /cvsroot/mxbb/mx_calsnails/templates/_core In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv21731/templates/_core Modified Files: _core.cfg Log Message: development version 2.9.0 Index: _core.cfg =================================================================== RCS file: /cvsroot/mxbb/mx_calsnails/templates/_core/_core.cfg,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** _core.cfg 3 Jun 2008 20:08:50 -0000 1.3 --- _core.cfg 17 Dec 2008 00:26:36 -0000 1.4 *************** *** 21,25 **** // Do not alter this line! // ! define(MX_TEMPLATE_CONFIG, TRUE); $mx_template_config = true; --- 21,28 ---- // Do not alter this line! // ! //define(MX_TEMPLATE_CONFIG, TRUE); ! // ! // Do not alter this line! ! // $mx_template_config = true; *************** *** 27,31 **** // Do some checks // ------------------------------------------------------------------------- ! $current_template_path = file_exists( $mx_root_path . $current_template_path . "/images" ) ? $current_template_path : ( file_exists( $mx_root_path . $cloned_template_path . "/images" ) ? $cloned_template_path : $default_template_path ); // ------------------------------------------------------------------------- --- 30,35 ---- // Do some checks // ------------------------------------------------------------------------- ! $current_template_path = file_exists($mx_root_path . $current_template_path . "/images" ) ? $current_template_path : ( file_exists( $mx_root_path . $cloned_template_path . "/images" ) ? $cloned_template_path : $default_template_path); ! $current_template_root_path = str_replace($module_root_path, "", $current_template_path); // ------------------------------------------------------------------------- *************** *** 33,36 **** --- 37,42 ---- // ------------------------------------------------------------------------- $current_template_images = PORTAL_URL . $current_template_path . "/images"; + $current_template_theme_images = !empty($current_template_root_path) && file_exists($mx_root_path . $current_template_root_path . "/images") ? PORTAL_URL . $current_template_root_path . "/images" : ( !empty($cloned_template_path) && file_exists( $mx_root_path . $cloned_template_path . "/images" ) ? PORTAL_URL . cloned_template_path . "/images" : PORTAL_URL . "templates/_core/images"); + $current_module_images = !empty($current_template_root_path) && file_exists($module_root_path . $current_template_root_path ."/images") ? PORTAL_URL . $module_root_path . $current_template_root_path ."/images" : $current_template_theme_images . "/phpbb2"; // ------------------------------------------------------------------------- *************** *** 41,46 **** // Redefine phpBB images // ------------------------------------------------------------------------- ! $mx_images['calsnails_icon_edit'] = $images['icon_edit']; ! $mx_images['calsnails_icon_delpost'] = $images['icon_delpost']; ?> \ No newline at end of file --- 47,52 ---- // Redefine phpBB images // ------------------------------------------------------------------------- ! $mx_images['calsnails_icon_edit'] = "$current_module_images/{LANG}/icon_post_edit.gif"; ! $mx_images['calsnails_icon_delpost'] = "$current_module_images/{LANG}/icon_post_delete.gif"; ?> \ No newline at end of file |
|
From: FlorinCB <ory...@us...> - 2008-12-17 00:24:41
|
Update of /cvsroot/mxbb/mx_calsnails/templates/_core/images/lang_french In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv21620/lang_french Log Message: Directory /cvsroot/mxbb/mx_calsnails/templates/_core/images/lang_french added to the repository |
|
From: FlorinCB <ory...@us...> - 2008-12-17 00:24:34
|
Update of /cvsroot/mxbb/mx_calsnails/templates/_core/images/lang_romanian In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv21620/lang_romanian Log Message: Directory /cvsroot/mxbb/mx_calsnails/templates/_core/images/lang_romanian added to the repository |
|
From: FlorinCB <ory...@us...> - 2008-12-17 00:24:33
|
Update of /cvsroot/mxbb/mx_calsnails/templates/_core/images/lang_english In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv21620/lang_english Log Message: Directory /cvsroot/mxbb/mx_calsnails/templates/_core/images/lang_english added to the repository |
|
From: FlorinCB <ory...@us...> - 2008-12-17 00:24:26
|
Update of /cvsroot/mxbb/mx_calsnails/templates/_core/images In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv21601/images Log Message: Directory /cvsroot/mxbb/mx_calsnails/templates/_core/images added to the repository |
|
From: FlorinCB <ory...@us...> - 2008-12-17 00:24:05
|
Update of /cvsroot/mxbb/mx_calsnails/language/lang_romanian In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv21546/lang_romanian Log Message: Directory /cvsroot/mxbb/mx_calsnails/language/lang_romanian added to the repository |
|
From: FlorinCB <ory...@us...> - 2008-12-16 23:27:03
|
Update of /cvsroot/mxbb/mx_calsnails/includes In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv18510 Modified Files: cal_functions.php Log Message: fix Index: cal_functions.php =================================================================== RCS file: /cvsroot/mxbb/mx_calsnails/includes/cal_functions.php,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** cal_functions.php 16 Dec 2008 23:21:57 -0000 1.17 --- cal_functions.php 16 Dec 2008 23:26:57 -0000 1.18 *************** *** 644,653 **** function display() { ! global $thisscript, $phpbb_root_path, $phpEx, $action, $homeurl, $images, $phpbbheaders, ! $id, $day, $month, $year, $userdata, $lang, $config_footer, $footer, $caluser, ! $block_size, ! $cal_config, ! $cal_dateformat, ! $endday, $endmonth, $endyear, $board_config, $bbcode_uid, $template, $db, $cal_version, $cal_filter, $block_id; // TIMEZONE FIX --- 644,651 ---- function display() { ! global $thisscript, $phpbb_root_path, $phpEx, $action, $homeurl, $images, $phpbbheaders; ! global $id, $day, $month, $year, $userdata, $lang, $config_footer, $footer, $caluser; ! global $block_size, $cal_config, $cal_dateformat, $mx_bbcode; ! global $endday, $endmonth, $endyear, $board_config, $bbcode_uid, $template, $db, $cal_version, $cal_filter, $block_id; // TIMEZONE FIX *************** *** 709,713 **** } ! $zdesc = make_clickable( $zdesc ); $start_date = my_dateformat( $row['stamp'], $cal_dateformat ); $end_date = my_dateformat( $row['eventspan'], $cal_dateformat, 1 ); --- 707,711 ---- } ! $zdesc = $mx_bbcode->make_clickable($zdesc); $start_date = my_dateformat( $row['stamp'], $cal_dateformat ); $end_date = my_dateformat( $row['eventspan'], $cal_dateformat, 1 ); *************** *** 788,792 **** ); ! $template->pparse( 'body' ); return; } --- 786,790 ---- ); ! $template->pparse('body'); return; } |
|
From: FlorinCB <ory...@us...> - 2008-12-16 23:22:03
|
Update of /cvsroot/mxbb/mx_calsnails/includes In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv18292 Modified Files: cal_functions.php Log Message: fix Index: cal_functions.php =================================================================== RCS file: /cvsroot/mxbb/mx_calsnails/includes/cal_functions.php,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** cal_functions.php 28 Aug 2008 19:19:03 -0000 1.16 --- cal_functions.php 16 Dec 2008 23:21:57 -0000 1.17 *************** *** 230,237 **** { global $html_entities_match, $html_entities_replace; ! global $thisscript, $board_config, $phpbb_root_path, $phpEx, $action, $lastday, $phpbbheaders, ! $id, $day, $month, $year, $userdata, $lang, $config_footer, $footer, $caluser, $cal_version, ! $block_size, // MX001 ! $endday, $endmonth, $endyear, $bbcode_uid, $homeurl, $db, $template, $mx_page, $mx_bbcode; if ( $caluser >= 4 ) --- 230,234 ---- { global $html_entities_match, $html_entities_replace; ! global $thisscript, $board_config, $phpbb_root_path, $phpEx, $action, $lastday, $phpbbheaders, $id, $day, $month, $year, $userdata, $lang, $config_footer, $footer, $caluser, $cal_version, $block_size, $endday, $endmonth, $endyear, $bbcode_uid, $homeurl, $db, $template, $mx_page, $mx_bbcode; if ( $caluser >= 4 ) *************** *** 528,534 **** { global $html_entities_match, $html_entities_replace; ! global $thisscript, $phpbb_root_path, $mx_root_path, $phpEx, $db, $template, $action, $phpbbheaders, ! $board_config, $cal_config, $id, $day, $month, $year, $time, $userdata, $modify, $lang, $event_desc, $subject, $caluser, ! $endday, $endmonth, $endyear, $bbcode_uid, $homeurl, $block_id, $mx_page; if ( ( $subject == '' ) || ( $event_desc == '' ) ) --- 525,531 ---- { global $html_entities_match, $html_entities_replace; ! global $thisscript, $phpbb_root_path, $mx_root_path, $phpEx, $db, $template, $action, $phpbbheaders; ! global $board_config, $cal_config, $id, $day, $month, $year, $time, $userdata, $modify, $lang, $event_desc, $subject, $caluser; ! global $endday, $endmonth, $endyear, $bbcode_uid, $homeurl, $block_id, $mx_page,$mx_bbcode; if ( ( $subject == '' ) || ( $event_desc == '' ) ) |
|
From: FlorinCB <ory...@us...> - 2008-12-16 23:16:55
|
Update of /cvsroot/mxbb/core/language/lang_french In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv13655/lang_french Log Message: Directory /cvsroot/mxbb/core/language/lang_french added to the repository |
|
From: FlorinCB <ory...@us...> - 2008-12-16 23:16:51
|
Update of /cvsroot/mxbb/core/language/lang_french In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv13679 Added Files: index.htm lang_admin.php lang_main.php lang_meta.php Log Message: some fresh tounghe files by sturmy --- NEW FILE: lang_meta.php --- <?php /** * * @package mxBB Portal Core * @version $Id: lang_meta.php,v 1.1 2008/12/16 21:53:02 orynider Exp $ * @copyright (c) 2002-2006 mxBB Project Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * */ // // This file contains lang entries related to META tags. // // // First level of all language codes are based on the ISO-639 standard // as pointed by the RFC3066 "Tags for the Identification of Languages", // which is referenced by the HTML 4.01 Specification. // // More information can be found here: // http://www.w3.org/TR/html401/struct/dirlang.html#h-8.1.1 // ftp://ftp.rfc-editor.org/in-notes/rfc3066.txt // http://www.loc.gov/standards/iso639-2/langhome.html // // Note: There might be some mistakes in second level codes. // Apologies in advance for any mistake here. Feel free to contact // us if you believe anything must be changed here. Thanks // $lang['mx_meta']['langcode']['ab'] = "Abkhazian"; $lang['mx_meta']['langcode']['aa'] = "Afar"; $lang['mx_meta']['langcode']['af'] = "Afrikaans"; $lang['mx_meta']['langcode']['ak'] = "Akan"; $lang['mx_meta']['langcode']['sq'] = "Albanian"; $lang['mx_meta']['langcode']['am'] = "Amharic"; $lang['mx_meta']['langcode']['ar'] = "Arabic"; $lang['mx_meta']['langcode']['ar-ae'] = "Arabic (Arab Emirates)"; $lang['mx_meta']['langcode']['ar-bh'] = "Arabic (Bahrein)"; $lang['mx_meta']['langcode']['ar-eg'] = "Arabic (Egypt)"; $lang['mx_meta']['langcode']['ar-iq'] = "Arabic (Iraq)"; $lang['mx_meta']['langcode']['ar-jo'] = "Arabic (Jordania)"; $lang['mx_meta']['langcode']['ar-kw'] = "Arabic (Kuwait)"; $lang['mx_meta']['langcode']['ar-lb'] = "Arabic (Libanon)"; $lang['mx_meta']['langcode']['ar-ly'] = "Arabic (Lybia)"; $lang['mx_meta']['langcode']['ar-ma'] = "Arabic (Morocco)"; $lang['mx_meta']['langcode']['ar-om'] = "Arabic (Oman)"; $lang['mx_meta']['langcode']['ar-qa'] = "Arabic (Qtar)"; $lang['mx_meta']['langcode']['ar-sa'] = "Arabic (Saudi Arabia)"; $lang['mx_meta']['langcode']['ar-sy'] = "Arabic (Syria)"; $lang['mx_meta']['langcode']['ar-tn'] = "Arabic (Tunisia)"; $lang['mx_meta']['langcode']['ar-ye'] = "Arabic (Yemen)"; $lang['mx_meta']['langcode']['an'] = "Aragonese"; $lang['mx_meta']['langcode']['hy'] = "Armenian"; $lang['mx_meta']['langcode']['as'] = "Assamese"; $lang['mx_meta']['langcode']['av'] = "Avaric"; $lang['mx_meta']['langcode']['ae'] = "Avestan"; $lang['mx_meta']['langcode']['ay'] = "Aymara"; $lang['mx_meta']['langcode']['az'] = "Azerbaijani"; $lang['mx_meta']['langcode']['bm'] = "Bambara"; $lang['mx_meta']['langcode']['ba'] = "Bashkir"; $lang['mx_meta']['langcode']['eu'] = "Basque"; $lang['mx_meta']['langcode']['be'] = "Belarusian"; $lang['mx_meta']['langcode']['bn'] = "Bengali"; $lang['mx_meta']['langcode']['bh'] = "Bihari"; $lang['mx_meta']['langcode']['bi'] = "Bislama"; $lang['mx_meta']['langcode']['bs'] = "Bosnian"; $lang['mx_meta']['langcode']['br'] = "Breton"; $lang['mx_meta']['langcode']['bg'] = "Bulgarian"; $lang['mx_meta']['langcode']['my'] = "Burmese"; $lang['mx_meta']['langcode']['ca'] = "Catalan"; $lang['mx_meta']['langcode']['ch'] = "Chamorro"; $lang['mx_meta']['langcode']['ce'] = "Chechen"; $lang['mx_meta']['langcode']['zh'] = "Chinese"; $lang['mx_meta']['langcode']['zh-hk'] = "Chinese (Hong-Kong)"; $lang['mx_meta']['langcode']['zh-cn'] = "Chinese (PRC)"; $lang['mx_meta']['langcode']['zh-sg'] = "Chinese (Singapour)"; $lang['mx_meta']['langcode']['zh-tw'] = "Chinese (Taiwan)"; $lang['mx_meta']['langcode']['cu'] = "Church Slavonic"; $lang['mx_meta']['langcode']['cv'] = "Chuvash"; $lang['mx_meta']['langcode']['kw'] = "Cornish"; $lang['mx_meta']['langcode']['co'] = "Corsican"; $lang['mx_meta']['langcode']['cr'] = "Cree"; $lang['mx_meta']['langcode']['hr'] = "Croatian"; $lang['mx_meta']['langcode']['cs'] = "Czech"; $lang['mx_meta']['langcode']['da'] = "Danish"; $lang['mx_meta']['langcode']['dv'] = "Divehi"; $lang['mx_meta']['langcode']['nl'] = "Dutch"; $lang['mx_meta']['langcode']['nl-be'] = "Dutch (Belgian)"; $lang['mx_meta']['langcode']['dz'] = "Dzongkha"; $lang['mx_meta']['langcode']['en'] = "English"; $lang['mx_meta']['langcode']['en-au'] = "English (Australia)"; $lang['mx_meta']['langcode']['en-bz'] = "English (Belize)"; $lang['mx_meta']['langcode']['en-ca'] = "English (Canada)"; $lang['mx_meta']['langcode']['en-ie'] = "English (Ireland)"; $lang['mx_meta']['langcode']['en-jm'] = "English (Jamaican)"; $lang['mx_meta']['langcode']['en-gb'] = "English (Great Britain)"; $lang['mx_meta']['langcode']['en-nz'] = "English (New Zeland)"; $lang['mx_meta']['langcode']['en-za'] = "English (South Africa)"; $lang['mx_meta']['langcode']['eo'] = "Esperanto"; $lang['mx_meta']['langcode']['et'] = "Estonian"; $lang['mx_meta']['langcode']['ee'] = "Ewe"; $lang['mx_meta']['langcode']['fo'] = "Faroese"; $lang['mx_meta']['langcode']['fj'] = "Fijian"; $lang['mx_meta']['langcode']['fi'] = "Finnish"; $lang['mx_meta']['langcode']['fr'] = "French"; $lang['mx_meta']['langcode']['fr-be'] = "French (Belgian)"; $lang['mx_meta']['langcode']['fr-ca'] = "French (Canada)"; $lang['mx_meta']['langcode']['fr-lu'] = "French (Luxembourg)"; $lang['mx_meta']['langcode']['fr-ch'] = "French (Switzerland)"; $lang['mx_meta']['langcode']['fy'] = "Frisian"; $lang['mx_meta']['langcode']['ff'] = "Fulah"; $lang['mx_meta']['langcode']['gl'] = "Gallegan"; $lang['mx_meta']['langcode']['lg'] = "Ganda"; $lang['mx_meta']['langcode']['ka'] = "Georgian"; $lang['mx_meta']['langcode']['de'] = "German"; $lang['mx_meta']['langcode']['de-li'] = "German (Liechtenstein)"; $lang['mx_meta']['langcode']['de-lu'] = "German (Luxembourg)"; $lang['mx_meta']['langcode']['de-ch'] = "German (Switzerland)"; $lang['mx_meta']['langcode']['gn'] = "Guarani"; $lang['mx_meta']['langcode']['gu'] = "Gujarati"; $lang['mx_meta']['langcode']['ht'] = "Haitian"; $lang['mx_meta']['langcode']['ha'] = "Hausa"; $lang['mx_meta']['langcode']['he'] = "Hebrew"; $lang['mx_meta']['langcode']['hz'] = "Herero"; $lang['mx_meta']['langcode']['hi'] = "Hindi"; $lang['mx_meta']['langcode']['ho'] = "Hiri Motu"; $lang['mx_meta']['langcode']['hu'] = "Hungarian"; $lang['mx_meta']['langcode']['is'] = "Icelandic"; $lang['mx_meta']['langcode']['io'] = "Ido"; $lang['mx_meta']['langcode']['ig'] = "Igbo"; $lang['mx_meta']['langcode']['id'] = "Indonesian"; $lang['mx_meta']['langcode']['ie'] = "Interlingue"; $lang['mx_meta']['langcode']['iu'] = "Inuktitut"; $lang['mx_meta']['langcode']['ik'] = "Inupiaq"; $lang['mx_meta']['langcode']['ga'] = "Irish"; $lang['mx_meta']['langcode']['it'] = "Italian"; $lang['mx_meta']['langcode']['it-ch'] = "Italian (Switzerland)"; $lang['mx_meta']['langcode']['ja'] = "Japanese"; $lang['mx_meta']['langcode']['jv'] = "Javanese"; $lang['mx_meta']['langcode']['kl'] = "Kalaallisut"; $lang['mx_meta']['langcode']['kn'] = "Kannada"; $lang['mx_meta']['langcode']['kr'] = "Kanuri"; $lang['mx_meta']['langcode']['ks'] = "Kashmiri"; $lang['mx_meta']['langcode']['kk'] = "Kazakh"; $lang['mx_meta']['langcode']['km'] = "Khmer"; $lang['mx_meta']['langcode']['ki'] = "Kikuyu"; $lang['mx_meta']['langcode']['rw'] = "Kinyarwanda"; $lang['mx_meta']['langcode']['ky'] = "Kirghiz"; $lang['mx_meta']['langcode']['kv'] = "Komi"; $lang['mx_meta']['langcode']['kg'] = "Kongo"; $lang['mx_meta']['langcode']['ko'] = "Korean"; $lang['mx_meta']['langcode']['ku'] = "Kurdish"; $lang['mx_meta']['langcode']['kj'] = "Kwanyama"; $lang['mx_meta']['langcode']['lo'] = "Lao"; $lang['mx_meta']['langcode']['la'] = "Latin"; $lang['mx_meta']['langcode']['lv'] = "Latvian"; $lang['mx_meta']['langcode']['li'] = "Limburgish"; $lang['mx_meta']['langcode']['ln'] = "Lingala"; $lang['mx_meta']['langcode']['lt'] = "Lithuanian"; $lang['mx_meta']['langcode']['lu'] = "Luba-Katanga"; $lang['mx_meta']['langcode']['lb'] = "Luxembourgish"; $lang['mx_meta']['langcode']['mk'] = "Macedonian"; $lang['mx_meta']['langcode']['mg'] = "Malagasy"; $lang['mx_meta']['langcode']['ms'] = "Malay"; $lang['mx_meta']['langcode']['ml'] = "Malayalam"; $lang['mx_meta']['langcode']['mt'] = "Maltese"; $lang['mx_meta']['langcode']['gv'] = "Manx"; $lang['mx_meta']['langcode']['mi'] = "Maori"; $lang['mx_meta']['langcode']['mr'] = "Marathi"; $lang['mx_meta']['langcode']['mh'] = "Marshallese"; $lang['mx_meta']['langcode']['el'] = "Modern Greek"; $lang['mx_meta']['langcode']['mo'] = "Moldavian"; $lang['mx_meta']['langcode']['mn'] = "Mongolian"; $lang['mx_meta']['langcode']['na'] = "Nauru"; $lang['mx_meta']['langcode']['nv'] = "Navajo"; $lang['mx_meta']['langcode']['nd'] = "Ndebele, North"; $lang['mx_meta']['langcode']['ng'] = "Ndonga"; $lang['mx_meta']['langcode']['ne'] = "Nepali"; $lang['mx_meta']['langcode']['nb'] = "Norwegian"; $lang['mx_meta']['langcode']['nn'] = "Norwegian Nynorsk"; $lang['mx_meta']['langcode']['ny'] = "Nyanja"; $lang['mx_meta']['langcode']['oc'] = "Occitan"; $lang['mx_meta']['langcode']['oj'] = "Ojibwa"; $lang['mx_meta']['langcode']['or'] = "Oriya"; $lang['mx_meta']['langcode']['om'] = "Oromo"; $lang['mx_meta']['langcode']['os'] = "Ossetian"; $lang['mx_meta']['langcode']['pi'] = "Pali"; $lang['mx_meta']['langcode']['pa'] = "Panjabi"; $lang['mx_meta']['langcode']['fa'] = "Persian"; $lang['mx_meta']['langcode']['pl'] = "Polish"; $lang['mx_meta']['langcode']['pt'] = "Portuguese"; $lang['mx_meta']['langcode']['pt-br'] = "Portuguese (Brazil)"; $lang['mx_meta']['langcode']['ps'] = "Pushto"; $lang['mx_meta']['langcode']['qu'] = "Quechua"; $lang['mx_meta']['langcode']['rm'] = "Raeto-Romance"; $lang['mx_meta']['langcode']['ro'] = "Românã"; $lang['mx_meta']['langcode']['ro-mo'] = "Românã (Moldova)"; $lang['mx_meta']['langcode']['rn'] = "Rundi"; $lang['mx_meta']['langcode']['ru'] = "Russian"; $lang['mx_meta']['langcode']['ru-mo'] = "Russian (Moldavia)"; $lang['mx_meta']['langcode']['sm'] = "Samoan"; $lang['mx_meta']['langcode']['sg'] = "Sango"; $lang['mx_meta']['langcode']['sa'] = "Sanskrit"; $lang['mx_meta']['langcode']['sc'] = "Sardinian"; $lang['mx_meta']['langcode']['gd'] = "Scottish Gaelic"; $lang['mx_meta']['langcode']['sr'] = "Serbian"; $lang['mx_meta']['langcode']['sn'] = "Shona"; $lang['mx_meta']['langcode']['ii'] = "Sichuan Yi"; $lang['mx_meta']['langcode']['sd'] = "Sindhi"; $lang['mx_meta']['langcode']['si'] = "Sinhalese"; $lang['mx_meta']['langcode']['sk'] = "Slovak"; $lang['mx_meta']['langcode']['sl'] = "Slovenian"; $lang['mx_meta']['langcode']['so'] = "Somali"; $lang['mx_meta']['langcode']['st'] = "Sotho"; $lang['mx_meta']['langcode']['nr'] = "South Ndebele"; $lang['mx_meta']['langcode']['es'] = "Spanish"; $lang['mx_meta']['langcode']['es-ar'] = "Spanish (Argentina)"; $lang['mx_meta']['langcode']['es-bo'] = "Spanish (Bolivia)"; $lang['mx_meta']['langcode']['es-cl'] = "Spanish (Chile)"; $lang['mx_meta']['langcode']['es-co'] = "Spanish (Colombia)"; $lang['mx_meta']['langcode']['es-cr'] = "Spanish (Costa Rica)"; $lang['mx_meta']['langcode']['es-sv'] = "Spanish (El Salvador)"; $lang['mx_meta']['langcode']['es-ec'] = "Spanish (Ecuador)"; $lang['mx_meta']['langcode']['es-gt'] = "Spanish (Guatemala)"; $lang['mx_meta']['langcode']['es-hn'] = "Spanish (Honduras)"; $lang['mx_meta']['langcode']['es-mx'] = "Spanish (Mexico)"; $lang['mx_meta']['langcode']['es-ni'] = "Spanish (Nicaragua)"; $lang['mx_meta']['langcode']['es-pa'] = "Spanish (Panama)"; $lang['mx_meta']['langcode']['es-py'] = "Spanish (Paraguay)"; $lang['mx_meta']['langcode']['es-pr'] = "Spanish (Puerto Rico)"; $lang['mx_meta']['langcode']['es-pe'] = "Spanish (Peru)"; $lang['mx_meta']['langcode']['es-tt'] = "Spanish (Trinidad)"; $lang['mx_meta']['langcode']['es-uy'] = "Spanish (Uruguay)"; $lang['mx_meta']['langcode']['es-ve'] = "Spanish (Venezuela)"; $lang['mx_meta']['langcode']['su'] = "Sundanese"; $lang['mx_meta']['langcode']['sw'] = "Swahili"; $lang['mx_meta']['langcode']['ss'] = "Swati"; $lang['mx_meta']['langcode']['sv'] = "Swedish"; $lang['mx_meta']['langcode']['sv-fi'] = "Swedish (Finland)"; $lang['mx_meta']['langcode']['tl'] = "Tagalog"; $lang['mx_meta']['langcode']['ty'] = "Tahitian"; $lang['mx_meta']['langcode']['tg'] = "Tajik"; $lang['mx_meta']['langcode']['ta'] = "Tamil"; $lang['mx_meta']['langcode']['tt'] = "Tatar"; $lang['mx_meta']['langcode']['te'] = "Telugu"; $lang['mx_meta']['langcode']['th'] = "Thai"; $lang['mx_meta']['langcode']['bo'] = "Tibetan"; $lang['mx_meta']['langcode']['ti'] = "Tigrinya"; $lang['mx_meta']['langcode']['to'] = "Tonga"; $lang['mx_meta']['langcode']['ts'] = "Tsonga"; $lang['mx_meta']['langcode']['tn'] = "Tswana"; $lang['mx_meta']['langcode']['tr'] = "Turkish"; $lang['mx_meta']['langcode']['tk'] = "Turkmen"; $lang['mx_meta']['langcode']['tw'] = "Twi"; $lang['mx_meta']['langcode']['uk'] = "Ukrainian"; $lang['mx_meta']['langcode']['ur'] = "Urdu"; $lang['mx_meta']['langcode']['ug'] = "Uyghur"; $lang['mx_meta']['langcode']['uz'] = "Uzbek"; $lang['mx_meta']['langcode']['ve'] = "Venda"; $lang['mx_meta']['langcode']['vi'] = "Vietnamese"; $lang['mx_meta']['langcode']['vo'] = "Volapük"; $lang['mx_meta']['langcode']['wa'] = "Walloon"; $lang['mx_meta']['langcode']['cy'] = "Welsh"; $lang['mx_meta']['langcode']['wo'] = "Wolof"; $lang['mx_meta']['langcode']['xh'] = "Xhosa"; $lang['mx_meta']['langcode']['yi'] = "Yiddish"; $lang['mx_meta']['langcode']['yo'] = "Yoruba"; $lang['mx_meta']['langcode']['za'] = "Zhuang"; $lang['mx_meta']['langcode']['zu'] = "Zulu"; // // Other related META tag entries follow... // $lang['mx_meta']['rating']['general'] = "General"; $lang['mx_meta']['rating']['14 years'] = "14 ani"; $lang['mx_meta']['rating']['restricted']= "Restricþionat"; $lang['mx_meta']['rating']['mature'] = "Matur"; $lang['mx_meta']['index']['index'] = "Index"; $lang['mx_meta']['index']['noindex'] = "Fãrã index"; $lang['mx_meta']['follow']['follow'] = "Follow"; $lang['mx_meta']['follow']['nofollow'] = "No follow"; // // That's all Folks! // ------------------------------------------------- ?> --- NEW FILE: lang_admin.php --- <?php /** * * @package MXP Portal Core * @version $Id: lang_admin.php,v 1.1 2008/12/16 21:53:02 orynider Exp $ * @copyright (c) 2002-2006 MXP Project Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * */ // // Editor Settings: Please set Tabsize to 4 ;-) // // // The format of this file is: // // ---> $lang["message"] = 'text'; // // Specify your language character encoding... [optional] // setlocale(LC_ALL, "fr"); $lang['ENCODING'] = 'UTF-8'; $lang['DIRECTION'] = 'ltr'; $lang['LEFT'] = 'gauche'; $lang['RIGHT'] = 'droit'; $lang['DATE_FORMAT'] = 'd/M/Y'; // This should be changed to the default date format for your language, php date() format $lang['mxBB_adminCP'] = 'Administration de MX-Publisher'; // // Left AdminCP Panel // $lang['1_General_admin'] = 'Général'; $lang['1_1_Management'] = 'Configuration'; $lang['1_2_WordCensors'] = 'Mots Censurés'; $lang['2_CP'] = 'Management'; $lang['2_1_Modules'] = 'Configuration des Modules<br><hr>'; $lang['2_2_ModuleCP'] = 'Panneau de contrôle de Module'; $lang['2_3_BlockCP'] = 'Panneau de contrôle de Bloc'; $lang['2_4_PageCP'] = 'Panneau de contrôle de Page'; $lang['3_CP'] = 'Styles'; $lang['2_1_new'] = 'Ajouter un nouveau'; $lang['2_2_manage'] = 'Gérer'; $lang['2_3_smilies'] = 'Smilies'; $lang['4_Panel_system'] = 'Outils Système'; $lang['4_1_Cache'] = 'Régénérer le Cache'; $lang['4_1_Integrity'] = 'Vérification d\'Integrité'; $lang['4_1_Meta'] = 'Tags META'; $lang['4_1_PHPinfo'] = 'phpInfo()'; // // Index // $lang['Welcome_mxBB'] = 'Bienvenue dans MX-Publisher'; $lang['Admin_intro_mxBB'] = 'Merci d\'avoir choisi MX-Publisher comme solution de portail/cms et phpBB comme solution de forum. Cet écran vous donnera un aperçu rapide de diverses statistiques de votre site. Vous pouvez revenir à cette page en cliquant sur le lien <span>Index d\'Administration</span> dans le panneau de gauche. Pour revenir à l\'index de votre portail, cliquez sur le logo qui est aussi dans le panneau de gauche. Les autres liens de la partie gauche de cet écran vous permettent de contrôler tous les aspects de votre utilisation du portail et du forum. Chaque écran comporte des instructions quant à comment utiliser les outils fournis.'; // // General // $lang['Yes'] = 'Oui'; $lang['No'] = 'Non'; $lang['No_modules'] = 'Aucun module n\'est installé.'; $lang['No_functions'] = 'Ce module n\'a aucune fonction de bloc.'; $lang['No_parameters'] = 'Cette fonction n\'a pas de paramètre.'; $lang['No_blocks'] = 'Aucun bloc n\'existe pour cette fonction.'; $lang['No_pages'] = 'Aucune page n\'existe ici.'; $lang['No_settings'] = 'Aucun autre paramètre pour ce bloc.'; $lang['Quick_nav'] = 'Navigation rapide'; $lang['Include_all_modules'] = 'Afficher tous les modules'; $lang['Include_block_quickedit'] = 'Inclure le panneau EditionRapide de Bloc'; $lang['Include_block_private'] = 'Inclure le panneau Autorisations Privées de Bloc'; $lang['Include_all_pages'] = 'Afficher toutes les pages'; $lang['View'] = 'Voir'; $lang['Edit'] = 'Editer'; $lang['Delete'] = 'Supprimer'; $lang['Settings'] = 'Paramètres'; $lang['Move_up'] = 'Monter'; $lang['Move_down'] = 'Descendre'; $lang['Resync'] = 'Resynchroniser'; $lang['Update'] = 'Mettre à Jour'; $lang['Permissions'] = 'Permissions'; $lang['Permissions_std'] = 'Permissions Standard'; $lang['Permissions_adv'] = 'Permissions Avancées'; $lang['return_to_page'] = 'Retour à la Page du Portail'; $lang['Use_default'] = 'Utiliser la configuration par défaut'; $lang['AdminCP_status'] = '<b>Rapport d\'état</b>'; $lang['AdminCP_action'] = '<b>Actions sur Base de Données</b>'; $lang['Invalid_action'] = 'Erreur'; $lang['was_installed'] = 'a été installé.'; $lang['was_uninstalled'] = 'a été désinstallé.'; $lang['was_upgraded'] = 'a été upgradé'; $lang['was_exported'] = 'a été exporté'; $lang['was_deleted'] = 'a été effacé'; $lang['was_removed'] = 'a été retiré'; $lang['was_inserted'] = 'a été inséré'; $lang['was_updated'] = 'a été mis à jour'; $lang['was_added'] = 'a été ajouté'; $lang['was_moved'] = 'a été déplacé'; $lang['was_synced'] = 'a été synchronisé'; $lang['error_no_field'] = 'Il manque un champ. Veuillez remplir tous les champs requis.'; // // Configuration // $lang['Portal_admin'] = 'Administration du portail'; $lang['Portal_admin_explain'] = 'Utilisez ce formulaire pour personnaliser votre portail'; $lang['Portal_General_Config'] = 'Configuration du portail'; $lang['Portal_General_Config_explain'] = 'Utilisez ce formulaire pour gérer les principaux réglages de votre site MX-Publisher.'; $lang['Portal_General_settings'] = 'Réglages Généraux'; $lang['Portal_Style_settings'] = 'Réglages de Style'; $lang['Portal_General_config_info'] = 'Infos Générales de Configuration du Portail '; $lang['Portal_General_config_info_explain'] = 'Informations d\'installation actuelles issues de config.php (aucune modification requise)'; $lang['Portal_Name'] = 'Nom du Portail:'; $lang['Portal_PHPBB_Url'] = 'URL de votre installation phpBB:'; $lang['Portal_Url'] = 'URL de MX-Publisher:'; $lang['Portal_Config_updated'] = 'Configuration du Portail Configuration Mise à Jour'; $lang['Click_return_portal_config'] = 'Cliquer %sIci%s pour revenir à la Configuration du Portail'; $lang['PHPBB_info'] = 'Info phpBB'; $lang['PHPBB_version'] = 'Version phpBB:'; $lang['PHPBB_script_path'] = 'Chemin de Script phpBB:'; $lang['PHPBB_server_name'] = 'Domaine phpBB (server_name):'; $lang['MX_Portal'] = 'MX-Publisher'; $lang['MX_Modules'] = 'Modules MXP'; $lang['Phpbb'] = 'phpBB'; $lang['Top_phpbb_links'] = 'Statistiques phpBB dans l\'en-tête (valeur par défaut)'; $lang['Top_phpbb_links_explain'] = '- Liens vers les nouveaux messages non lus'; $lang['Portal_version'] = 'Version MX-Publisher:'; $lang['Mx_use_cache'] = 'Utiliser le Cache de Bloc MX-Publisher'; $lang['Mx_use_cache_explain'] = 'Les données de Blocs sont mise en cache dans des fichiers individuels cache/block_*.xml. Les fichiers de cache de Bloc sont créés/mis à jour quand les blocs sont edités.'; $lang['Mx_mod_rewrite'] = 'Utiliser mod_rewrite'; $lang['Mx_mod_rewrite_explain'] = 'Si vous utilisez un serveur Apache et avez mod_rewrite activé, vous pouvez réécrire les URLs; par exemple, vous pouvez réécrire des pages comme \'page=x\' avec des alternatives plus intuitives. Merci de lire la documentation complémentaire du module mx_mod_rewrite.'; $lang['Portal_Overall_header'] = 'Fichier d\'en-tête global (valeur par défaut)'; $lang['Portal_Overall_header_explain'] = '- Ceci est le fichier de modèle par défaut overall_header, i.e. overall_header.tpl.'; $lang['Portal_Overall_footer'] = 'Fichier de bas de page global (value par défaut)'; $lang['Portal_Overall_footer_explain'] = '- Ceci est le fichier de modèle par défaut overall_footer, i.e. overall_footer.tpl.'; $lang['Portal_Main_layout'] = 'Fichier de Disposition Générale (valeur par défaut)'; $lang['Portal_Main_layout_explain'] = '- Ceci est le fichier de modèle par défaut main_layout, i.e. mx_main_layout.tpl.'; $lang['Portal_Navigation_block'] = 'Bloc de Navigation général Overall Navigation Block (valeur par défaut)'; $lang['Portal_Navigation_block_explain'] = '- Ceci est le bloc de navigation d\'en-tête de page, a supposer que vous avez choisi un fichier d\'en-tête général qui accepte la navigation de page.'; $lang['Default_style'] = 'Style des Pages de Portail (par défaut)'; $lang['Default_admin_style'] = 'Style du Panneau Admin'; $lang['Select_page_style'] = "Sélectionner (ou utiliser le choix par défaut)"; $lang['Override_style'] = 'Ignorer le style utilisateur'; $lang['Override_style_explain'] = 'Remplace le style choisi par les utilisateurs par celui par défaut (pour les pages)'; $lang['Portal_status'] = 'Activer le portail'; $lang['Portal_status_explain'] = 'Choix pratique, durant une reconstruction du site. Seul les adminstrateurs peuvent voir les pages et naviguer normalement. Quand désactivé, le message ci-dessous est affiché.'; $lang['Disabled_message'] = 'Message de Portail désactivé'; $lang['Portal_Backend'] = 'Backend Utilisateur/Session pour MX-Publisher'; $lang['Portal_Backend_explain'] = 'Selectionner les sessions utilisateurs issus du backend interne, phpBB2 ou phpBB3'; $lang['Portal_Backend_path'] = 'Chemin relatif vers phpBB [non-interne]'; $lang['Portal_Backend_path_explain'] = 'Si vous utilisez des sessuions et utilisateurs non-internes, entrez le chemin relatif vers phpbb, eg \'phpBB2/\' ou \'../phpBB2/\'. Note: les slashs sont importants.'; $lang['Portal_Backend_submit'] = 'Changer et valider le Backend'; $lang['Portal_config_valid'] = 'Statut de Backend actuel: '; $lang['Portal_config_valid_true'] = '<b><font>Valide</font></b>'; $lang['Portal_config_valid_false'] = '<b><font>Mauvaise Installation. Soit le chemin relatif phpBB est faux soit phpBB n\'est pas installé (votre base de données phpBB est indisponible). Ainsi, le backend \'interne\' est utilisé.</font></b>'; // // Module Management // $lang['Module_admin'] = 'Administration des Modules'; $lang['Module_admin_explain'] = 'Utiliser ce formulaire pour gérer les modules: installation, mise à jour et développement.<br><b>Pour utiliser ce panneau, JavaScript et les cookies doivent être activés dans votre navigateur!</b>'; $lang['Modulecp_admin'] = 'Panneau de Contrôle de Modules'; $lang['Modulecp_admin_explain'] = 'Utiliser ce formulaire pour gérer les modules: fonctions de bloc (paramètres) et blocs de portail.<br><b>Pour utiliser ce panneau, JavaScript et les cookies doivent être activés dans votre navigateur!</b>'; $lang['Modules'] = 'Modules'; $lang['Module'] = 'Module'; $lang['Module_delete'] = 'Supprimer un Module'; $lang['Module_delete_explain'] = 'Utiliser ce formulaire pour supprimer un module (ou une fonction de bloc)'; $lang['Edit_module'] = 'Editer un Module'; $lang['Create_module'] = 'Créer un Nouveau Module'; $lang['Module_name'] = 'Nom du Module'; $lang['Module_desc'] = 'Description'; $lang['Module_path'] = 'Chemin, ex. \'modules/mx_textblocks/\''; $lang['Module_include_admin'] = 'Inclure ce module dans la navigation du Panneau Administrateur'; // // Module Installation // $lang['Module_delete_db'] = 'Etes-vous sur de vouloir désinstaller ce mondule? Attention: Vous perdrez toutes les données du module. Songez plutôt à mettre à jour.'; $lang['Click_module_delete_yes'] = 'Cliquer %sIci%s pour désinstaller ce module'; $lang['Click_module_upgrade_yes'] = 'Cliquer %sIci%s pour mettre à jour ce module'; $lang['Click_module_export_yes'] = 'Cliquer %sIci%s pour exporter ce module'; $lang['Error_no_db_install'] = 'Erreur: Le fichier db_install.php n\'existe pas. Merci de vérifier cela et réessayer.'; $lang['Error_no_db_uninstall'] = 'Erreur: Le fichier db_uninstall.php n\'existe pas, ou la fonctionnalité de désinstallation n\'est pas prise en charge par ce module. Merci de vérifier cela et réessayer.'; $lang['Error_no_db_upgrade'] = 'Erreur: Le fichier db_upgrade.php n\'existe pas, ou la fonctionnalité de mise à jour n\'est pas prise en charge par ce module. Merci de vérifier cela et réessayer.'; $lang['Error_module_installed'] = 'Erreur: Ce module est déjà installé! Merci de supprimer d\'abord ce module, ou de le mettre à jour.'; $lang['Uninstall_module'] = 'Désinstaller le Module'; $lang['import_module_pack'] = 'Installer le Module'; $lang['import_module_pack_explain'] = 'Ceci va installer un module dans le portail. Assurez vous que le package du module est uploadé dans le répertoire /modules/ . Souvenez-vous d\'utiliser la version la plus récente du module!'; $lang['upgrade_module_pack'] = 'Mettre à jour le Module'; $lang['upgrade_module_pack_explain']= 'Ceci va mettre à jour votre module. Assurez vous de lire la documentation du module avant de continuer, ou vous risquez de perdre les données du module.'; $lang['export_module_pack'] = 'Exporter le Module'; $lang['Export_Module'] = 'Selectionner un Module:'; $lang['export_module_pack_explain'] = 'Ceci va exporter un fichier *.pak du module. Ceci est conçu pour les auteurs de modules; les utilisateurs standard n\'ont pas à se soucier de cela.'; $lang['Module_Config_updated'] = 'Configuration de Module Mise à jour correctement'; $lang['Click_return_module_admin'] = 'Cliquer %sIci%s pour revenir à l\'administration des Modules'; $lang['Module_updated'] = 'Information de Module Mise à jour correctement'; $lang['list_of_queries'] = 'Ceci est la liste des résultats des requêtes SQL requises pour l\'installation/mise à jour'; $lang['already_added'] = 'Erreur ou Déjà Ajouté'; $lang['added_upgraded'] = 'Ajouté/Mis à jour'; $lang['upgrading_modules'] = 'Si vous avez des Messages Erreur, Déjà Ajouté ou Mis à jour, détendez-vous, ceci est normal lors de la mise à jour de mods'; $lang['consider_upgrading'] = 'Le Module est déjà installé...Envisagez de mettre à jour;)'; $lang['upgrading'] = 'Mise à jour'; $lang['module_upgrade'] = 'C\'est une mise à jour'; $lang['nothing_upgrade'] = 'Rien à mettre à jour...'; $lang['upgraded_to_ver'] = '...Mise à jour faite en v. '; $lang['module_not_installed'] = 'Module non installé...et donc ne peut être mis à jour'; $lang['fresh_install'] = 'C\'est une nouvelles installation'; $lang['module_install_info'] = 'Information Installation/Mise à Jour/Désinstallation de Mod - tables de BdD spécifiques'; // // Functions & Parameters Administration // $lang['Function_admin'] = 'Aministration de Fonctions de Bloc'; $lang['Function_admin_explain'] = 'Les modules ont une ou plus fonction de bloc. Utilisez ce formulaire pour éditer, ajouter ou supprimer une fonction de bloc'; $lang['Function'] = 'Fonction de Bloc'; $lang['Function_name'] = 'Nom de Fonction de Bloc'; $lang['Function_desc'] = 'Description'; $lang['Function_file'] = 'Fichier '; $lang['Function_admin_file'] = 'Fichier (Editer le script de bloc) <br> Paramètres supplémentaires pour ce panneau d\'édition de bloc. Laisser vide pour utiliser le panneau d\'édition par défaut.'; $lang['Create_function'] = 'Ajouter une Nouvelle Fonction de Bloc'; $lang['Delete_function'] = 'Supprimer une Fonction de Bloc'; $lang['Delete_function_explain'] = 'Ceci supprimera la fonction et tous ses blocs de portail associés. Attention: cette opération ne peut être annulée!'; $lang['Click_function_delete_yes'] = 'Cliquer %sIci%s pour supprimer la Fonction'; $lang['Parameter_admin'] = 'Administration des Paramètres de Fonction'; $lang['Parameter_admin_explain'] = 'Lister tous les paramètres de cette fonction'; $lang['Parameter'] = 'Paramètre'; $lang['Parameter_name'] = '<b>Nom du Paramètre</b><br>- à utiliser pour accéder au paramètre'; $lang['Parameter_type'] = '<b>Type du Paramètre</b>'; $lang['Parameter_default'] = '<b>Valeur par Défaut</b>'; $lang['Parameter_function'] = '<b>Fonction/Options</b>'; $lang['Parameter_function_explain'] = '<b>Fonction</b> (quand le type \'Fonction\' est utilisé)<br>- Vous pouvez passer les données du paramètre data à une fonction externe <br> pour générer le champ de formulaire du paramètre.<br>- Par exemple: <br>get_list_formatted("block_list","{parameter_value}","{parameter_id}[]")'; $lang['Parameter_function_explain'] .= '<br><br><b>Option(s)</b> (quand le type \'Selection\' est utilisé)<br>- Pour tous les paramètres de selection (boutons radios, case à cocher et menus) toutes les options sont listées ici, une option par ligne.'; $lang['Parameter_auth'] = '<b>Admin/Modérateur de Bloc seulement</b>'; $lang['Parameters'] = 'Paramètres'; $lang['Parameter_id'] = 'ID'; $lang['Create_parameter'] = 'Ajouter un Nouveau Paramètre'; $lang['Delete_parameter'] = 'Supprimer un Paramètre de Fonction'; $lang['Delete_parameter_explain'] = 'Ceci va supprimer le paramètre et mettre à jout tous les blocs associés du portail. Attention cette opération ne peut être annulée!'; $lang['Click_parameter_delete_yes'] = 'Cliquer %sIci%s pour supprimer le Paramètre'; // // Parameter Types // $lang['ParType_BBText'] = 'Bloc Texte BBCode Simple'; $lang['ParType_BBText_info'] = 'Ceci est un Bloc Texte simple qui interprète le BBCode'; $lang['ParType_Html'] = 'Bloc Texte HTML Simple'; $lang['ParType_Html_info'] = 'Ceci est un Bloc Texte simple qui interprète le HTML'; $lang['ParType_Text'] = 'Texte Seul (une seule ligne)'; $lang['ParType_Text_info'] = 'Ceci est un champ de texte simple'; $lang['ParType_TextArea'] = 'Zone de Texte Seul (multi-lignes)'; $lang['ParType_TextArea_info'] = 'Ceci est une zone de texte seul'; $lang['ParType_Boolean'] = 'Booléen'; $lang['ParType_Boolean_info'] = 'Cecu est un bouton radio \'oui\' ou \'non\'.'; $lang['ParType_Number'] = 'Chiffre'; $lang['ParType_Number_info'] = 'Ceci est un champ de valeur numérique'; $lang['ParType_Function'] = 'fonction Paramètre'; $lang['ParType_Values'] = 'Valeurs'; $lang['ParType_Radio_single_select'] = 'Boutons Radio à sélection unique'; $lang['ParType_Radio_single_select_info'] = ''; $lang['ParType_Menu_single_select'] = 'Menu à choix unique'; $lang['ParType_Menu_single_select_info'] = ''; $lang['ParType_Menu_multiple_select'] = 'Menu à choix Multiple'; $lang['ParType_Menu_multiple_select_info'] = ''; $lang['ParType_Checkbox_multiple_select'] = 'Cases à cocher Multiples'; $lang['ParType_Checkbox_multiple_select_info'] = ''; // // Blocks Administration // $lang['Block_admin'] = 'Panneau de Contrôle de Bloc'; $lang['Block_admin_explain'] = 'Utiliser ce formulaire pour gérer les blocs de portail.<br><b>Pour utiliser ce panneau, JavaScript et les cookies doivent être activés dans votre navigateur!</b>'; $lang['Block'] = 'Bloc'; $lang['Show_title'] = 'Afficher le Titre du Bloc?'; $lang['Show_title_explain'] = 'Afficher ou non le titre du bloc'; $lang['Show_block'] = 'Afficher le Bloc?'; $lang['Show_block_explain'] = '- Si \'non\', le Bloc est masqué de tous les utilisateurs, sauf les administrateurs'; $lang['Show_stats'] = 'Afficher Statistiques?'; $lang['Show_stats_explain'] = '- Si \'oui\', \'modifié par...\' sera affiché sous le bloc'; //***** TBC $lang['Show_blocks'] = 'Voir les Blocs Fonction'; //***** TBC $lang['Block_delete'] = 'Supprimer un Bloc'; $lang['Block_delete_explain'] = 'Utiliser ce formulaire pour suppromer un bloc (ou une colonne)'; $lang['Block_title'] = 'Titre'; $lang['Block_desc'] = 'Description'; $lang['Add_Block'] = 'Ajouter un Nouveau Bloc'; $lang['Auth_Block'] = 'Permissions'; $lang['Auth_Block_explain'] = 'ALL: Tous utilisateurs<br>REG: Utilisateurs Enregistrés<br>PRIVE: Membres du groupe (voir permissions avancées)<br>MOD: modérateurs du bloc (voir permissions avancées)<br>ADMIN: Admin<br>ANONYMOUS: SEULEMENT les invités'; $lang['Block_quick_stats'] = 'Stats Rapides'; $lang['Block_quick_edit'] = 'Edition Rapide'; $lang['Create_block'] = 'Créer un Nouveau Bloc'; $lang['Delete_block'] = 'Supprimer un Bloc Portail'; $lang['Delete_block_explain'] = 'Ceci va supprimer le bloc et mettre a jour toutes les Pages Portail associées. Attention: cette opération ne peut être annulée!'; $lang['Click_block_delete_yes'] = 'Cliquer %sIci%s pour supprimer le Bloc'; // // BlockCP Administration // $lang['Block_cp'] = 'Panneau de Contrôle de Bloc'; $lang['Click_return_blockCP_admin'] = 'Cliquer %sIci%s pour revenir au Panneau de Contrôle de Bloc'; $lang['Click_return_portalpage_admin'] = 'Cliquer %sIci%s pour revenir a la Page Portail'; $lang['BlockCP_Config_updated'] = 'Ce bloc a été mis à jour.'; // // Pages Administration // $lang['Page_admin'] = 'Administration de Page'; $lang['Page_admin_explain'] = 'Utiliser ce formulaire pour ajouter, supprimer et changer les paramètres des Pages Portail et Modèles de Pages.<br><b>Pour utiliser ce panneau, JavaScript et les cookies doivent être activés dans votre navigateur!</b>'; $lang['Page_admin_edit'] = 'Editer la Page'; $lang['Page_admin_private'] = 'Permissions Avancées de Page (PRIVE)'; $lang['Page_admin_settings'] = 'Paramètres de Page'; $lang['Page_admin_new_page'] = 'Administration Nouvelle Page'; $lang['Page'] = 'Page'; $lang['Page_Id'] = 'ID de Page'; $lang['Page_icon'] = 'Icône de Page <br> - a utiliser dans adminCP seulement, eg. icon_home.gif (par défaut)'; $lang['Page_alt_icon'] = 'Icône de page Alternative <br> - Url complète (http://...) vers l\'icône de page personnalisée.'; $lang['Default_page_style'] = 'Style de Portail (par défaut)<br>Pour utiliser les paramètres par défaut, laissez ceci décoché.'; $lang['Override_page_style'] = 'Ignorer le style utilisateur'; $lang['Override_page_style_explain'] = ' '; $lang['Page_header'] = 'Fichier d\'en-tête de Page <br> - i.e. overall_header.tpl (par défaut), overall_noheader.tpl (pas d\'en-tête) ou fichier d\'en-tête utilisateur personnalisé.<br>Pour utiliser le paramètre par défaut, laisser vierge.'; $lang['Page_footer'] = 'Fichier de bas de Page par défaut <br> - i.e. overall_footer.tpl (par défaut) ou fichier de bas de page utilisateur personnalisé.<br>Pour utiliser le paramètre par défaut, laisser vierge.'; $lang['Page_main_layout'] = 'Fichier de disposition générale de Page <br> - i.e. mx_main_layout.tpl (par défaut) ou fichier de mise en forme utilisateur personnalisé.<br>Pour utiliser le paramètre par défaut, laisser vierge.'; $lang['Page_Navigation_block'] = 'Bloc d\'en-tête de navigation de la Page'; $lang['Page_Navigation_block_explain'] = '- Ceci est le bloc de navifation de la page, acompter que vous ayez choisi un fichier d\'en-tête général qui supporte la navigation de page.<br>Pour utiliser le paramètre par défaut, laisser vierge.'; $lang['Auth_Page'] = 'Permissions'; $lang['Select_sort_method'] = 'Sélectionner la Méthode de Tri'; $lang['Order'] = 'Ordre'; $lang['Sort'] = 'Tri'; $lang['Width'] = 'Largeur'; $lang['Height'] = 'Hauteur'; $lang['Page_sort_title'] = 'Titre de la Page'; $lang['Page_sort_desc'] = 'Description de la Page'; $lang['Page_sort_created'] = 'Page créée le '; $lang['Sort_Ascending'] = 'ASC'; $lang['Sort_Descending'] = 'DESC'; $lang['Return_to_page'] = 'Retour à la Page Portail'; $lang['Auth_Page_group'] = '-> Groupe PRIVE'; $lang['Page_desc'] = 'Description'; $lang['Page_parent'] = 'Page Parente'; $lang['Add_Page'] = 'Ajouter une Nouvelle Page'; $lang['Page_Config_updated'] = 'Configuration de Page Mise à Jour'; $lang['Click_return_page_admin'] = 'Cliquer %sIci%s pour revenir à l\'Administration de Page'; $lang['Remove_block'] = 'Retirer ce Bloc de Portail'; $lang['Remove_block_explain'] = 'Ceci va retirer ce bloc de la Page. Attention: cette opération ne peut être annulée!'; $lang['Click_block_remove_yes'] = 'Cliquer %sIci%s pour retirer ce Bloc'; $lang['Delete_page'] = 'Supprimer cette Page'; $lang['Delete_page_explain'] = 'Ceci va supprimer cette Page. Attention: cette opération ne peut être annulée!'; $lang['Click_page_delete_yes'] = 'Cliquer %sIci%s pour supprimer cette Page'; $lang['Mx_IP_filter'] = 'Filtre IP'; $lang['Mx_IP_filter_explain'] = 'Pour restreindre l\'accès à cette page par IP, entrer les addresses IP valides, une addresse par ligne.<br>Example: 127.0.0.1 or 127.1.*.*'; $lang['Mx_phpBB_stats'] = 'Statistiques phpBB dans l\'en-tête'; $lang['Mx_phpBB_stats_explain'] = '- Liens vers les nouveaux sujets, non lus, etc.'; $lang['Column_admin'] = 'Administration des Colonnes de Page'; $lang['Column_admin_explain'] = 'Administrer les Colonnes de Page'; $lang['Column'] = 'Colonne de Page'; $lang['Columns'] = 'Colonnes de Page'; $lang['Column_block'] = 'Bloc de Colonne de Page'; $lang['Column_blocks'] = 'Blocs de Colonne de Page'; $lang['Edit_Column'] = 'Editer une Colonne'; $lang['Edit_Column_explain'] = 'Utiliser ce formulaire pour modifier une Colonne'; $lang['Column_Size'] = 'Taille de la Colonne'; $lang['Column_name'] = 'Nom de la Colonne'; $lang['Column_delete'] = 'Supprimer une Colonne'; $lang['Page_updated'] = 'Informations de Page et Colonne mises à jour'; $lang['Create_column'] = 'Ajouter une Nouvelle Colonne'; $lang['Delete_page_column'] = 'Supprimer une Colonne de Page'; $lang['Delete_page_column_explain'] = 'Ceci supprime cette Colonne de Page. Attention: cette opération ne peut être annulée!'; $lang['Click_page_column_delete_yes'] = 'Cliquer %sIci%s pour supprimmer cette Colonne'; $lang['Add_Split_Block'] = 'Ajouter un Bloc de séparation de Colonne'; $lang['Add_Split_Block_explain'] = 'Ce bloc scinde la Colonne'; $lang['Add_Dynamic_Block'] = 'Ajouter un (Sous) Bloc Dynamique'; $lang['Add_Dynamic_Block_explain'] = 'Ce Bloc Dynamique définit des sous pages, accédées depuis le menu de navigation'; $lang['Add_Virtual_Block'] = 'Ajouter un Bloc Virtuel (Page de Blog)'; $lang['Add_Virtual_Block_explain'] = 'Ce bloc transforme cette Page en une page virtuelle (blog)'; // // Page templates // $lang['Page_templates_admin'] = 'Administration des Modèles de Page'; $lang['Page_templates_admin_explain'] = 'Utiliser cette page pour créer, éditer ou supprimer des Modèles de Page'; $lang['Page_template'] = 'Modèle de Page'; $lang['Page_templates'] = 'Modèles de Page'; $lang['Page_template_column'] = 'Colonne de Modèle de Page'; $lang['Page_template_columns'] = 'Colonnes de Modèle de Page'; $lang['Choose_page_template'] = 'Choisir le Modèle de Page'; $lang['Template_Config_updated'] = 'Configuration de Modèle Mise à Jour'; $lang['Add_Template'] = 'Ajouter un Nouveau Modèle'; $lang['Template'] = 'Modèle'; $lang['Template_name'] = 'Nom du Modèle'; $lang['Page_template_delete'] = 'Supprimer le Modèle'; $lang['Delete_page_template'] = 'Supprimer le Modèle de Page'; $lang['Delete_page_template_explain'] = 'Ceci va supprimer le Modèle de Page. Attention: cette opération ne peut être annulée!'; $lang['Click_page_template_delete_yes'] = 'Cliquer %sIci%s pour supprimer le Modèle de Page'; $lang['Delete_page_template_column'] = 'Supprimer le Modèle de Page'; $lang['Delete_page_template_column_explain'] = 'Ceci va supprimer le Modèle de Page. Attention: cette opération ne peut être annulée!'; $lang['Click_page_template_column_delete_yes'] = 'Cliquer %sIci%s pour supprimer le Modèle de Page'; // // Cache // $lang['Cache_dir_write_protect'] = 'Votre répertoire de cache est protégé en écriture. MX-Publisher ne peut générer le fichier cache. Veuillez rendre votre répertoire cache autorisé en écriture pour poursuivre.'; $lang['Cache_generate'] = 'Vos fichiers cache ont été générés.'; $lang['Cache_submit'] = 'Générer le fichier cache?'; $lang['Cache_explain'] = 'Avec cette option, vous pouvez générer tous les fichiers cache (fichiers XML) d\'un seul coup pour tous les blocs de portail. Ces fichiers permettent de réduire le nombre de requètes de base de donnée nécessaires et améliorent la performance générale du portail. <br>Note: le cache de MX-Publisher cache doit être activé (dans le Panneau Administration Générale du Portail) pour que ces fichiers soient utilisés par le système.<br>Note complémentaire: les fichiers cache sont également créés à la volée lors de l\'édition de blocs.'; $lang['Generate_mx_cache'] = 'Générer le Cache de Blocs'; // // These are displayed in the drop down boxes for advanced // mode Module auth, try and keep them short! // $lang['Menu_Navigation'] = 'Menu de Navigation'; $lang['Portal_index'] = 'Index du Portail'; $lang['Save_Settings'] = 'Sauver Paramètres'; $lang['Translation_Tools'] = 'Outils de Traduction'; $lang['Preview_portal'] = 'Aperçu du Portail'; // // META // $lang['Meta_admin'] = 'Administration des Tags META'; $lang['Mega_admin_explain'] = 'Utiliser ce formulaire pour personnaliser vos tags META'; $lang['Meta_Title'] = 'Titre'; $lang['Meta_Author'] = 'Auteur'; $lang['Meta_Copyright'] = 'Copyright'; $lang['Meta_Keywords'] = 'Mots-clés'; $lang['Meta_Keywords_explain'] = '(liste séparée par des virgules)'; $lang['Meta_Description'] = 'Description'; $lang['Meta_Language'] = 'Code de Langue'; $lang['Meta_Rating'] = 'Rating'; $lang['Meta_Robots'] = 'Robots'; $lang['Meta_Pragma'] = 'Pragma no-cache'; $lang['Meta_Bookmark_icon'] = 'Icône de Favori'; $lang['Meta_Bookmark_explain'] = '(chemin relatif)'; $lang['Meta_HTITLE'] = 'Paramètre Additionel d\'en-tête'; $lang['Meta_data_updated'] = 'Le fichier de Méta données (mx_meta.inc) a été mis à jour!<br>Cliquer %sIci%s pour revenir à l\'Administration des Tags META.'; $lang['Meta_data_ioerror'] = 'Impossible d\'ouvrir mx_meta.inc. Vérifier que le fichier est autorisé en écriture (chmod 777).'; // // Portal permissons // $lang['Mx_Block_Auth_Title'] = 'Permissions Privées de Bloc' ; $lang['Mx_Block_Auth_Explain'] = 'Ici, vous pouvez configurer des Permissions Privées de Bloc'; $lang['Mx_Page_Auth_Title'] = 'Permissions Privées de Page' ; $lang['Mx_Page_Auth_Explain'] = 'Ici, vous pouvez configurer des Permissions Privées de Page'; $lang['Block_Auth_successfully'] = 'Permissions de Bloc mises à jour'; $lang['Click_return_block_auth'] = 'Cliquer %sIci%s pour revenir aux Permissions Privées de Bloc'; $lang['Page_Auth_successfully'] = 'Permissions de Page mises à jour'; $lang['Click_return_page_auth'] = 'Cliquer %sIci%s pour revenir aux Permissions Privées de Page'; $lang['AUTH_ALL'] = 'TOUS'; $lang['AUTH_REG'] = 'REG'; $lang['AUTH_PRIVATE'] = 'PRIVE'; $lang['AUTH_MOD'] = 'MOD'; $lang['AUTH_ADMIN'] = 'ADMIN'; $lang['AUTH_ANONYMOUS'] = 'ANONYME'; // ----------------------------------- // BlockCP - Block Parameter Specific // ----------------------------------- // // General // $lang['target_block'] = 'Bloc Cible'; $lang['target_block_explain'] = '- liens, données etc... referant à ce bloc'; // // Split column // $lang['block_ids'] = 'Blocs Source'; $lang['block_ids_explain'] = '- à placer de gauche à droite'; $lang['block_sizes'] = 'Tailles de Blocs (séparées par des virgules)'; $lang['block_sizes_explain'] = '- Vous pouvez spécifier des tailles en chiffres (pixels), pourcentages (tailles relatives, ie. \'40%\') ou \'*\' pour le reste.'; $lang['space_between'] = 'Espace entre les Blocs'; // // Sitelog // $lang['log_filter_date'] = 'Filtrer par Date'; $lang['log_filter_date_explain'] = '- Montre les logs de la semaine, du mois, de l\'année précédents...'; $lang['numOfEvents'] = 'Nombre'; $lang['numOfEvents_explain'] = '- Nombre d\'évènements à afficher'; // // IncludeX // $lang['x_listen'] = 'Listen (GET)'; $lang['x_iframe'] = 'IFrame'; $lang['x_textfile'] = 'Textfile'; $lang['x_multimedia'] = 'WMP Multimedia'; $lang['x_pic'] = 'Pic'; $lang['x_format'] = 'Formatted Textfile'; $lang['x_mode'] = 'Mode IncludeX:'; $lang['x_mode_explain'] = '- Le bloc IncludeX opère dans l\'un des modes sivants. Si le mode \'Listen (GET)\' est sélectionné, le mode peut être réglé dans l\'url \'x_mode=mode\' et les paramètres associés par \'x_1=, x_2=, etc\'.<br>Exemple: Pour passer une url a une iframe, utiliser \'domain/index.php?page=x&x_mode=iframe&x_1=http://domain\' '; $lang['x_1'] = 'Variable 1:'; $lang['x_1_explain'] = '- <i>IFrame:</i> url<br><i>Textfile:</i> chemin relatif depuis la racine (eg dans \'/include_file/my_file.xxx\')<br><i>Multimedia:</i> chemin relatif depuis la racine (eg dans \'/include_file/my_file.xxx\')<br><i>Pic:</i> chemin relatif depuis la racine (eg dans \'/include_file/my_file.xxx\')<br><i>Formatted textfile:</i> non disponible'; $lang['x_2'] = 'Variable 2:'; $lang['x_2_explain'] = '- <i>IFrame:</i> hauteur du cadre (pixels)<br><i>Multimedia:</i> largeur (pixels)'; $lang['x_3'] = 'Variable 3:'; $lang['x_3_explain'] = '- <i>Multimedia:</i> hauteur (pixels)'; // // Dynamic Block // $lang['default_block_id'] = 'Bloc par Défaut'; $lang['default_block_id_explain'] = '- Ceci est le bloc par défaut ou le premier bloc à afficher, a moins qu\'un bloc dynamique soit défini'; // // Menu Navigation // $lang['menu_display_mode'] = 'Mode de Disposition'; $lang['menu_display_mode_explain '] = 'Mode de disposition Horizonale ou Verticale'; $lang['menu_custom_tpl'] = "Fichier Modèle Personnalisé"; $lang['menu_custom_tpl_explain '] = "Eg mx_menu_custom.tpl"; $lang['menu_page_parent'] = "Page Parente"; $lang['menu_page_parent_explain '] = "Navigation depuis cette Page Parente"; // // Version Checker // $lang['mxBB_Version_up_to_date'] = 'Votre installation de MX-Publisher est à jour. Aucune mise à jour n\'est disponible pour votre version de MX-Publisher.'; $lang['mxBB_Version_outdated'] = 'Votre installation de MX-Publisher ne semble <b>pas</b> être à jour. Des mises à jour sont disponibles pour votre version de MX-Publisher. Merci de visiter <a href="http://www.mx-publisher.com/download" target="_new">the MX-Publisher Core package download</a> pour obtenir la dernière version.'; $lang['mxBB_Latest_version_info'] = 'The latest available version is <b>MX-Publisher %s</b>. '; $lang['mxBB_Current_version_info'] = 'Vous utilisez <b>MX-Publisher %s</b>.'; $lang['mxBB_Mailing_list_subscribe_reminder'] = 'Pour toutes les dernières informations sur la vie et les mises à jour de MX-Publisher, pourquoi ne pas <a href="http://lists.sourceforge.net/lists/listinfo/mxbb-news" target="_new">vous abonner à notre mailing list</a>?'; // // That's all Folks! // ------------------------------------------------- ?> --- NEW FILE: lang_main.php --- <?php /** * * @package mxBB Portal Core * @version $Id: lang_main.php,v 1.1 2008/12/16 21:53:02 orynider Exp $ * @copyright (c) 2002-2006 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'; // // You should also try to set a locale and a character encoding (plus direction). The encoding and direction // will be sent to the template. The locale may or may not work, it's dependent on OS support and the syntax // varies ... give it your best guess! // setlocale(LC_ALL, 'fr'); $lang['USER_LANG'] = 'fr'; $lang['ENCODING'] = 'UTF-8'; $lang['DIRECTION'] = 'ltr'; $lang['LEFT'] = 'left'; $lang['RIGHT'] = 'right'; $lang['DATE_FORMAT'] = 'd/M/Y'; // This should be changed to the default date format for your language, php date() format <php> $lang['message'] = 'text'; // // Specify your language character encoding... [optional] // // setlocale(LC_ALL, 'en'); // // General // $lang['Page_Not_Authorised'] = 'Désolé, Vous n\'êtes pas autorisé à acceder à cette page.'; $lang['Execution_Stats'] = 'Page générée en %s requêtes - %s secondes'; $lang['Redirect_login'] = 'Cliquez %sIci%s pour vous identifier.'; $lang['Show_admin_options'] = 'Afficher/Masquer les options d\'administrateur'; $lang['Block_updated_date'] = 'Mis à jour '; $lang['Block_updated_by'] = 'par '; $lang['Page_updated_date'] = 'Cette page a été mise à jour le '; $lang['Page_updated_by'] = 'par '; $lang['Powered_by'] = 'Powered by '; $lang['mx_spacer'] = 'Séparateur'; $lang['Yes'] = 'Oui'; $lang['No'] = 'Non'; $lang['Link'] = 'Lien'; $lang['Hidden_block'] = 'Bloc Masqué'; $lang['Hidden_block_explain'] = 'Ce bloc est \'masqué\', mais visible tant que vous êtes admin/modérateur.'; // // Overall Navigation Navigation // $lang['MX_home'] = 'Accueil'; $lang['MX_forum'] = 'Forum'; // // Core Blocks - Language // $lang['Change_default_lang'] = 'Définir la Langue par Défaut du Portail'; $lang['Change_user_lang'] = 'Définir votre Langue'; $lang['Portal_lang'] = 'LangageCP'; $lang['Select_lang'] = 'Selectionner la Langue:'; // // Core Blocks - Theme // $lang['Change'] = 'Modifier Maintenant'; $lang['Change_default_style'] = 'Définir le Style par défaut du portail'; $lang['Change_user_style'] = 'Définir votre Style'; $lang['Theme'] = 'ThemeCP/StyleCP'; $lang['Select_theme'] = 'Selectionner Theme/Style:'; // // Core Blocks - Search // $lang['Mx_Page'] = 'Page'; $lang['Mx_Block'] = 'Section'; // // Core Blocks - Virtual // $lang['Virtual_Create_new'] = 'Créer une nouvelle '; $lang['Virtual_Create_new_user'] = 'Page Utilisateur'; $lang['Virtual_Create_new_group'] = 'Page Groupe'; $lang['Virtual_Create_new_project'] = 'Page Projet'; $lang['Virtual_Create'] = 'Créer maintenant'; $lang['Virtual_Edit'] = 'Mettre à jour le nom de la page'; $lang['Virtual_Delete'] = 'Supprimer cette page'; $lang['Virtual_Welcome'] = 'Bienvenue '; $lang['Virtual_Info'] = 'Ici vous pouvez controler votre page web personnelle.'; $lang['Virtual_CP'] = 'Panneau de Contrôle de la Page'; $lang['Virtual_Go'] = 'Go'; $lang['Virtual_Select'] = 'Selectionner:'; // // Core Blocks - Site Log (and many last 'item' blocks) // $lang['No_items_found'] = 'Rien de neuf à signaler. '; // // BlockCP // $lang['Block_Title'] = 'Titre'; $lang['Block_Info'] = 'Information'; $lang['Block_Config_updated'] = 'Configuration de Bloc mise à jour.'; $lang['Block_Edit'] = 'Editer le Bloc'; $lang['Block_Edit_dyn'] = 'Editer le bloc dynamique parent'; $lang['Block_Edit_sub'] = 'Editer le bloc subdivisé parent'; $lang['General_updated_return_settings'] = 'Configuration mise à jour.<br><br>Cliquer %sici%s pour continuer.'; // %s's for URI params - DO NOT REMOVE $lang['General_update_error'] = 'Impossible de mettre la Configuration à jour.'; // // Header // $lang['Mx_search_site'] = 'Site'; $lang['Mx_search_forum'] = 'Forum'; $lang['Mx_search_kb'] = 'Articles'; $lang['Mx_search_pafiledb'] = 'Téléchargements'; $lang['Mx_search_google'] = 'Google'; $lang['Mx_new_search'] = 'Nouvelle recherche'; // // Copyrights page // $lang['mx_about_title'] = 'A propos de MX-Publisher'; $lang['mx_copy_title'] = 'Informations sur MX-Publisher'; $lang['mx_copy_modules_title'] = 'Modules MX-Publisher Installés'; $lang['mx_copy_template_title'] = 'A propos du style'; $lang['mx_copy_translation_title'] = 'A propos de la traduction'; // This is optional, if you would like a _SHORT_ message output // along with our copyright message indicating you are the translator // please add it here. $lang['TRANSLATION_INFO_MXBB'] = 'Traduction vers le français par <a href="http://www.mx-publisher.com/phpBB2/profile.php?mode=viewprofile&u=7879" target="_blank">sturmy</a>'; // // Installation // $lang['Please_remove_install_contrib'] = 'Assurez vous que les deux répertoires install/ et contrib/ sont supprimés.'; // // Multilangual page titles // - To have multilangual page titles, add lang keys 'pagetitle_PAGE_TITLE' below // - This lang key replaces the page title (PAGE_TITLE) for the page given in the adminCP // //$lang['pagetitle_NameOfFirstPage'] = 'Whatever one'; //$lang['pagetitle_NameOfSecondPage'] = 'Whatever two'; // // Multilangual block titles // - To have multilangual block titles, add lang keys 'blocktitle_BLOCK_TITLE' below // - This lang key replaces the block title (BLOCK_TITLE) for the block given in the adminCP/blockCP // //$lang['blocktitle_NameOfFirstPage'] = 'Whatever one'; //$lang['blocktitle_NameOfSecondPage'] = 'Whatever two'; //// C'est tout le monde. // ------------------------------------------------- ?> --- 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-12-16 22:55:00
|
Update of /cvsroot/mxbb/mx_calsnails/includes In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv15759 Modified Files: cal_settings.php Log Message: fix Index: cal_settings.php =================================================================== RCS file: /cvsroot/mxbb/mx_calsnails/includes/cal_settings.php,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** cal_settings.php 28 Aug 2008 18:31:00 -0000 1.18 --- cal_settings.php 16 Dec 2008 22:34:15 -0000 1.19 *************** *** 28,31 **** --- 28,33 ---- define( 'SECONDS_PER_DAY', 86400 ); // 24h * 60m * 60s + global $mx_user; + $mx_user->set_module_default_style('_core'); // For compatibility with core 2.8.x |