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: Culprit <cul...@us...> - 2009-11-04 09:04:00
|
Update of /cvsroot/mxbb/core/includes In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv12805/core/includes Modified Files: template.php Log Message: template::assign_block_vars add S_FIRST_ROW & S_LAST_ROW Index: template.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/template.php,v retrieving revision 1.37 retrieving revision 1.38 diff -C2 -d -r1.37 -r1.38 *** template.php 18 Jun 2009 21:38:58 -0000 1.37 --- template.php 4 Nov 2009 09:03:47 -0000 1.38 *************** *** 1190,1194 **** function assign_block_vars($blockname, $vararray) { ! if (strstr($blockname, '.')) { // Nested block. --- 1190,1194 ---- function assign_block_vars($blockname, $vararray) { ! if (strstr($blockname, '.') == true) { // Nested block. *************** *** 1202,1205 **** --- 1202,1223 ---- $str = &$str[sizeof($str)-1]; } + + $s_row_count = isset($str[$blocks[$blockcount] . '.']) ? sizeof($str[$blocks[$blockcount] . '.']) : 0; + $vararray['S_ROW_COUNT'] = $s_row_count; + + // Assign S_FIRST_ROW + if( !$s_row_count) + { + $vararray['S_FIRST_ROW'] = true; + } + + // Now the tricky part, we always assign S_LAST_ROW and remove the entry before + // This is much more clever than going through the complete template data on display (phew) + $vararray['S_LAST_ROW'] = true; + if( $s_row_count > 0) + { + unset($str[$blocks[$blockcount] . '.'][($s_row_count - 1)]['S_LAST_ROW']); + } + // Now we add the block that we're actually assigning to. // We're adding a new iteration to this block with the given *************** *** 1209,1212 **** --- 1227,1245 ---- else { + $s_row_count = (isset($this->_tpldata[$blockname . '.'])) ? sizeof($this->_tpldata[$blockname .'.']) : 0; + $vararray['S_ROW_COUNT'] = $s_row_count; + + // Assign S_FIRST_ROW + if (!$s_row_count) + { + $vararray['S_FIRST_ROW'] = true; + } + + // We always assign S_LAST_ROW and remove the entry before + $vararray['S_LAST_ROW'] = true; + if ($s_row_count > 0) + { + unset($this->_tpldata[$blockname . '.'][($s_row_count - 1)]['S_LAST_ROW']); + } // Top-level block. // Add a new iteration to this block with the variable assignments |
|
From: FlorinCB <ory...@us...> - 2009-10-23 07:47:22
|
Update of /cvsroot/mxbb/core/language/lang_romanian_no_diacritics In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv23497/core/language/lang_romanian_no_diacritics Modified Files: lang_admin.php lang_meta.php Log Message: some fixed here and there not comitted Index: lang_meta.php =================================================================== RCS file: /cvsroot/mxbb/core/language/lang_romanian_no_diacritics/lang_meta.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** lang_meta.php 16 Jun 2008 14:40:09 -0000 1.1 --- lang_meta.php 23 Oct 2009 07:46:41 -0000 1.2 *************** *** 2,8 **** /** * ! * @package mxBB Portal Core * @version $Id$ ! * @copyright (c) 2002-2006 mxBB Project Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * --- 2,8 ---- /** * ! * @package MX-Publisher CMS Core * @version $Id$ ! * @copyright (c) 2002-2006 Mx-Publisher Project Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * Index: lang_admin.php =================================================================== RCS file: /cvsroot/mxbb/core/language/lang_romanian_no_diacritics/lang_admin.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** lang_admin.php 17 Jan 2009 04:51:40 -0000 1.4 --- lang_admin.php 23 Oct 2009 07:46:41 -0000 1.5 *************** *** 2,8 **** /** * ! * @package mxBB Portal Core * @version $Id$ ! * @copyright (c) 2002-2006 mxBB Project Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * --- 2,8 ---- /** * ! * @package MX-Publisher CMS Core * @version $Id$ ! * @copyright (c) 2002-2006 Mx-Publisher Project Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * *************** *** 29,33 **** $lang['DATE_FORMAT'] = 'd/M/Y'; // This should be changed to the default date format for your language, php date() format ! $lang['mxBB_adminCP'] = 'mxBB-Portal Administratie'; // --- 29,33 ---- $lang['DATE_FORMAT'] = 'd/M/Y'; // This should be changed to the default date format for your language, php date() format ! $lang['Mx-Publisher_adminCP'] = 'Mx-Publisher-Portal Administratie'; // *************** *** 59,64 **** // Index // ! $lang['Welcome_mxBB'] = 'Bine ati venit la panoul de control al portalului mxBB'; ! $lang['Admin_intro_mxBB'] = 'Va multumim pentru ati ales mxBB-Portal ca solutie pentru portalul/cms-ul dumneavoastra si phpBB ca solutie pentru forumul dumneavoastra. Acest ecran va ofera o privire de ansamblu a diverselor statistici ale site-ului dumneavoastra. Puteti reveni la aceasta pagina folosind legatura <span style="text-decoration: underline;">Pagina de start a administratorului</span> din panel-ul stang. Pentru a reveni la pagina de start a forumului dumneavoastra, apasati pe logo-ul phpBB-ului aflat, de asemenea, in panel-ul stang. Celelalte legaturi din partea stanga va permit sa controlati orice aspect al forumului, fiecare ecran va avea instructiuni care dau explicatii despre cum se folosesc uneltele.'; // --- 59,64 ---- // Index // ! $lang['Welcome_Mx-Publisher'] = 'Bine ati venit la panoul de control al portalului Mx-Publisher'; ! $lang['Admin_intro_Mx-Publisher'] = 'Va multumim pentru ati ales Mx-Publisher-Portal ca solutie pentru portalul/cms-ul dumneavoastra si phpBB ca solutie pentru forumul dumneavoastra. Acest ecran va ofera o privire de ansamblu a diverselor statistici ale site-ului dumneavoastra. Puteti reveni la aceasta pagina folosind legatura <span style="text-decoration: underline;">Pagina de start a administratorului</span> din panel-ul stang. Pentru a reveni la pagina de start a forumului dumneavoastra, apasati pe logo-ul phpBB-ului aflat, de asemenea, in panel-ul stang. Celelalte legaturi din partea stanga va permit sa controlati orice aspect al forumului, fiecare ecran va avea instructiuni care dau explicatii despre cum se folosesc uneltele.'; // *************** *** 121,125 **** $lang['Portal_Name'] = 'Nume Portal:'; $lang['Portal_PHPBB_Url'] = 'URL pt. instarea ta de forum phpBB:'; ! $lang['Portal_Url'] = 'URL pentru mxBB-Portal:'; $lang['Portal_Config_updated'] = 'Configuratia Portalului Actualizata cu Succes'; $lang['Click_return_portal_config'] = 'Click %sAici%s pentru a te intoarce la Configurarea Portalului'; --- 121,125 ---- $lang['Portal_Name'] = 'Nume Portal:'; $lang['Portal_PHPBB_Url'] = 'URL pt. instarea ta de forum phpBB:'; ! $lang['Portal_Url'] = 'URL pentru Mx-Publisher-Portal:'; $lang['Portal_Config_updated'] = 'Configuratia Portalului Actualizata cu Succes'; $lang['Click_return_portal_config'] = 'Click %sAici%s pentru a te intoarce la Configurarea Portalului'; *************** *** 128,137 **** $lang['PHPBB_script_path'] = 'phpBB Cale Script:'; $lang['PHPBB_server_name'] = 'phpBB Domeniu (nume_server):'; ! $lang['MX_Portal'] = 'mxBB-Portal'; ! $lang['MX_Modules'] = 'mxBB-Module'; $lang['Phpbb'] = 'phpBB'; $lang['Top_phpbb_links'] = 'phpBB Stats in Header (valoare impicita)<br /> - linkuri la postari noi/necitite etc'; ! $lang['Portal_version'] = 'Versiune mxBB-Portal:'; ! $lang['Mx_use_cache'] = 'Foloseste mxBB Bloc Cache'; $lang['Mx_use_cache_explain'] = 'Datele din Bloc este in fisiere individuale cache/bloc_*.xml. Fisierele Bloc cache sunt create cand Blocurile sunt editate.'; $lang['Mx_mod_rewrite'] = 'Foloseste mod_rewrite'; --- 128,137 ---- $lang['PHPBB_script_path'] = 'phpBB Cale Script:'; $lang['PHPBB_server_name'] = 'phpBB Domeniu (nume_server):'; ! $lang['MX_Portal'] = 'Mx-Publisher-Portal'; ! $lang['MX_Modules'] = 'Mx-Publisher-Module'; $lang['Phpbb'] = 'phpBB'; $lang['Top_phpbb_links'] = 'phpBB Stats in Header (valoare impicita)<br /> - linkuri la postari noi/necitite etc'; ! $lang['Portal_version'] = 'Versiune Mx-Publisher-Portal:'; ! $lang['Mx_use_cache'] = 'Foloseste Mx-Publisher Bloc Cache'; $lang['Mx_use_cache_explain'] = 'Datele din Bloc este in fisiere individuale cache/bloc_*.xml. Fisierele Bloc cache sunt create cand Blocurile sunt editate.'; $lang['Mx_mod_rewrite'] = 'Foloseste mod_rewrite'; *************** *** 400,404 **** $lang['Cache_generate'] = 'Fisierele cache au fost generate.'; $lang['Cache_submit'] = 'Sa generez fisierul cache?'; ! $lang['Cache_explain'] = 'Cu acesta optiune poti sa generezi toate fisierele XML (fisiere cache) odata pentru toate blocurile portalului. Aceste fisiere permit reducerea numarului de cereri ale bazei de date necesare si imbunatatesc performanta portalului. <br />Noteaza: mxBB cache trebuie activat (in Portal General Admin CP) petru ca aceste fisiere sa fie folosite de sistem.<br>Mai Noteaza: fisierele cache sunt create on the fly cand sunt si blocurile de editare la fel.'; $lang['Generate_mx_cache'] = 'Genereaza Bloc Cache'; --- 400,404 ---- $lang['Cache_generate'] = 'Fisierele cache au fost generate.'; $lang['Cache_submit'] = 'Sa generez fisierul cache?'; ! $lang['Cache_explain'] = 'Cu acesta optiune poti sa generezi toate fisierele XML (fisiere cache) odata pentru toate blocurile portalului. Aceste fisiere permit reducerea numarului de cereri ale bazei de date necesare si imbunatatesc performanta portalului. <br />Noteaza: Mx-Publisher cache trebuie activat (in Portal General Admin CP) petru ca aceste fisiere sa fie folosite de sistem.<br>Mai Noteaza: fisierele cache sunt create on the fly cand sunt si blocurile de editare la fel.'; $lang['Generate_mx_cache'] = 'Genereaza Bloc Cache'; *************** *** 421,424 **** --- 421,426 ---- $lang['Meta_Author'] = 'Autor'; $lang['Meta_Copyright'] = 'Copyright'; + $lang['Meta_ImageToolBar'] = 'Image ToolBar'; + $lang['Meta_Distribution'] = 'Distribution'; $lang['Meta_Keywords'] = 'Cuvinte Cheie'; $lang['Meta_Keywords_explain'] = '(lista separata de virgula)'; *************** *** 538,546 **** // Version Checker // ! $lang['mxBB_Version_up_to_date'] = 'Instalarea mxBB este la zi. Nu exista actualizari pentru versiunea ta de mxBB.'; ! $lang['mxBB_Version_outdated'] = 'Se pare ca instalarea ta mxBB <b>nu</b> este la zi. Actualizari exista pentru versiunea ta de mxBB. Te rog viziteza <a href="http://www.mx-publisher.com/index.php?page=4&action=file&file_id=2" target="_new">downloadare pachetul mxBB Core</a> pt. a obtine ultima versiune.'; ! $lang['mxBB_Latest_version_info'] = 'Ultima veriune disponibila este <b>mxBB %s</b>. '; ! $lang['mxBB_Current_version_info'] = 'Tu ai <b>mxBB %s</b>.'; ! $lang['mxBB_Mailing_list_subscribe_reminder'] = 'Pentru ultimile informatii de stiri si actualizari pentru mxBB, de ce nu <a href="http://lists.sourceforge.net/lists/listinfo/mxbb-news" target="_new">inscriete la lista de mailuri</a>.'; $lang['Trans_title'] = 'Translate to your Language'; --- 540,548 ---- // Version Checker // ! $lang['Mx-Publisher_Version_up_to_date'] = 'Instalarea Mx-Publisher este la zi. Nu exista actualizari pentru versiunea ta de Mx-Publisher.'; ! $lang['Mx-Publisher_Version_outdated'] = 'Se pare ca instalarea ta Mx-Publisher <b>nu</b> este la zi. Actualizari exista pentru versiunea ta de Mx-Publisher. Te rog viziteza <a href="http://www.mx-publisher.com/index.php?page=4&action=file&file_id=2" target="_new">downloadare pachetul Mx-Publisher Core</a> pt. a obtine ultima versiune.'; ! $lang['Mx-Publisher_Latest_version_info'] = 'Ultima veriune disponibila este <b>Mx-Publisher %s</b>. '; ! $lang['Mx-Publisher_Current_version_info'] = 'Tu ai <b>Mx-Publisher %s</b>.'; ! $lang['Mx-Publisher_Mailing_list_subscribe_reminder'] = 'Pentru ultimile informatii de stiri si actualizari pentru Mx-Publisher, de ce nu <a href="http://lists.sourceforge.net/lists/listinfo/mxbb-news" target="_new">inscriete la lista de mailuri</a>.'; $lang['Trans_title'] = 'Translate to your Language'; |
|
From: FlorinCB <ory...@us...> - 2009-10-23 07:47:22
|
Update of /cvsroot/mxbb/core/language/lang_romanian_ansi In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv23497/core/language/lang_romanian_ansi Modified Files: lang_admin.php lang_main.php lang_meta.php Log Message: some fixed here and there not comitted Index: lang_meta.php =================================================================== RCS file: /cvsroot/mxbb/core/language/lang_romanian_ansi/lang_meta.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** lang_meta.php 18 Oct 2009 04:16:14 -0000 1.1 --- lang_meta.php 23 Oct 2009 07:46:41 -0000 1.2 *************** *** 2,8 **** /** * ! * @package mxBB Portal Core * @version $Id$ ! * @copyright (c) 2002-2006 mxBB Project Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * --- 2,8 ---- /** * ! * @package MX-Publisher CMS Core * @version $Id$ ! * @copyright (c) 2002-2006 Mx-Publisher Project Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * Index: lang_admin.php =================================================================== RCS file: /cvsroot/mxbb/core/language/lang_romanian_ansi/lang_admin.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** lang_admin.php 18 Oct 2009 04:16:14 -0000 1.1 --- lang_admin.php 23 Oct 2009 07:46:40 -0000 1.2 *************** *** 61,66 **** // Index // ! $lang['Welcome_mxBB'] = 'Bine aþi venit la panoul de control al MXP CMS'; ! $lang['Admin_intro_mxBB'] = 'Vã mulþumim pentru aþi ales Mx-Publisher ca soluþie pentru portalul/cms-ul dumneavoastrã ºi phpBB ca soluþie pentru forumul dumneavoastrã. Acest ecran vã oferã o privire de ansamblu a diverselor statistici ale site-ului dumneavoastrã. Puteþi reveni la aceastã paginã folosind legãtura <span style="text-decoration: underline;">Pagina de start a administratorului</span> din panel-ul stâng. Pentru a reveni la pagina de start a forumului dumneavoastrã, apãsaþi pe logo-ul phpBB-ului aflat, de asemenea, în panel-ul stâng. Celelalte legãturi din partea stângã vã permit sã controlaþi orice aspect al forumului, fiecare ecran va avea instrucþiuni care dau explicaþii despre cum se folosesc uneltele.'; // --- 61,66 ---- // Index // ! $lang['Welcome_Mx-Publisher'] = 'Bine aþi venit la panoul de control al MXP CMS'; ! $lang['Admin_intro_Mx-Publisher'] = 'Vã mulþumim pentru aþi ales Mx-Publisher ca soluþie pentru portalul/cms-ul dumneavoastrã ºi phpBB ca soluþie pentru forumul dumneavoastrã. Acest ecran vã oferã o privire de ansamblu a diverselor statistici ale site-ului dumneavoastrã. Puteþi reveni la aceastã paginã folosind legãtura <span style="text-decoration: underline;">Pagina de start a administratorului</span> din panel-ul stâng. Pentru a reveni la pagina de start a forumului dumneavoastrã, apãsaþi pe logo-ul phpBB-ului aflat, de asemenea, în panel-ul stâng. Celelalte legãturi din partea stângã vã permit sã controlaþi orice aspect al forumului, fiecare ecran va avea instrucþiuni care dau explicaþii despre cum se folosesc uneltele.'; // *************** *** 531,534 **** --- 531,536 ---- $lang['Meta_Author'] = 'Autor'; $lang['Meta_Copyright'] = 'Copyright'; + $lang['Meta_ImageToolBar'] = 'Image ToolBar'; + $lang['Meta_Distribution'] = 'Distribution'; $lang['Meta_Keywords'] = 'Cuvinte Cheie'; $lang['Meta_Keywords_explain'] = '(lista separatã de virgulã)'; Index: lang_main.php =================================================================== RCS file: /cvsroot/mxbb/core/language/lang_romanian_ansi/lang_main.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** lang_main.php 18 Oct 2009 04:16:14 -0000 1.1 --- lang_main.php 23 Oct 2009 07:46:41 -0000 1.2 *************** *** 2,8 **** /** * ! * @package mxBB Portal Core * @version $Id$ ! * @copyright (c) 2002-2006 mxBB Project Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * --- 2,8 ---- /** * ! * @package MX-Publisher CMS Core * @version $Id$ ! * @copyright (c) 2002-2006 Mx-Publisher Project Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * *************** *** 110,116 **** // Copyrights page // ! $lang['mx_about_title'] = 'Despre mxBB Portal'; ! $lang['mx_copy_title'] = 'mxBB Portal Informaþii'; ! $lang['mx_copy_modules_title'] = 'Module mxBB Portal Instalate'; $lang['mx_copy_template_title'] = 'Despre stil'; $lang['mx_copy_translation_title'] = 'Despre traducere'; --- 110,116 ---- // Copyrights page // ! $lang['mx_about_title'] = 'Despre Mx-Publisher Portal'; ! $lang['mx_copy_title'] = 'Mx-Publisher Portal Informaþii'; ! $lang['mx_copy_modules_title'] = 'Module Mx-Publisher Portal Instalate'; $lang['mx_copy_template_title'] = 'Despre stil'; $lang['mx_copy_translation_title'] = 'Despre traducere'; |
|
From: FlorinCB <ory...@us...> - 2009-10-23 07:47:20
|
Update of /cvsroot/mxbb/core/language/lang_romanian In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv23497/core/language/lang_romanian Modified Files: lang_admin.php lang_main.php lang_meta.php Log Message: some fixed here and there not comitted Index: lang_meta.php =================================================================== RCS file: /cvsroot/mxbb/core/language/lang_romanian/lang_meta.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** lang_meta.php 16 Jun 2008 14:40:00 -0000 1.1 --- lang_meta.php 23 Oct 2009 07:46:40 -0000 1.2 *************** *** 2,8 **** /** * ! * @package mxBB Portal Core * @version $Id$ ! * @copyright (c) 2002-2006 mxBB Project Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * --- 2,8 ---- /** * ! * @package MX-Publisher CMS Core * @version $Id$ ! * @copyright (c) 2002-2006 Mx-Publisher Project Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * Index: lang_admin.php =================================================================== RCS file: /cvsroot/mxbb/core/language/lang_romanian/lang_admin.php,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** lang_admin.php 23 Jan 2009 10:26:08 -0000 1.9 --- lang_admin.php 23 Oct 2009 07:46:39 -0000 1.10 *************** *** 61,66 **** // Index // ! $lang['Welcome_mxBB'] = 'Bine aÅ£i venit la panoul de control al MXP CMS'; ! $lang['Admin_intro_mxBB'] = 'VÄ mulÅ£umim pentru aÅ£i ales Mx-Publisher ca soluÅ£ie pentru portalul/cms-ul dumneavoastrÄ Åi phpBB ca soluÅ£ie pentru forumul dumneavoastrÄ. Acest ecran vÄ oferÄ o privire de ansamblu a diverselor statistici ale site-ului dumneavoastrÄ. PuteÅ£i reveni la aceastÄ paginÄ folosind legÄtura <span style="text-decoration: underline;">Pagina de start a administratorului</span> din panel-ul stâng. Pentru a reveni la pagina de start a forumului dumneavoastrÄ, apÄsaÅ£i pe logo-ul phpBB-ului aflat, de asemenea, în panel-ul stâng. Celelalte legÄturi din partea stângÄ vÄ permit sÄ controlaÅ£i orice aspect al forumului, fiecare ecran va avea instrucÅ£iuni care dau explicaÅ£ii despre cum se folosesc uneltele.'; // --- 61,66 ---- // Index // ! $lang['Welcome_Mx-Publisher'] = 'Bine aÅ£i venit la panoul de control al MXP CMS'; ! $lang['Admin_intro_Mx-Publisher'] = 'VÄ mulÅ£umim pentru aÅ£i ales Mx-Publisher ca soluÅ£ie pentru portalul/cms-ul dumneavoastrÄ Åi phpBB ca soluÅ£ie pentru forumul dumneavoastrÄ. Acest ecran vÄ oferÄ o privire de ansamblu a diverselor statistici ale site-ului dumneavoastrÄ. PuteÅ£i reveni la aceastÄ paginÄ folosind legÄtura <span style="text-decoration: underline;">Pagina de start a administratorului</span> din panel-ul stâng. Pentru a reveni la pagina de start a forumului dumneavoastrÄ, apÄsaÅ£i pe logo-ul phpBB-ului aflat, de asemenea, în panel-ul stâng. Celelalte legÄturi din partea stângÄ vÄ permit sÄ controlaÅ£i orice aspect al forumului, fiecare ecran va avea instrucÅ£iuni care dau explicaÅ£ii despre cum se folosesc uneltele.'; // *************** *** 531,534 **** --- 531,536 ---- $lang['Meta_Author'] = 'Autor'; $lang['Meta_Copyright'] = 'Copyright'; + $lang['Meta_ImageToolBar'] = 'Image ToolBar'; + $lang['Meta_Distribution'] = 'Distribution'; $lang['Meta_Keywords'] = 'Cuvinte Cheie'; $lang['Meta_Keywords_explain'] = '(lista separatÄ de virgulÄ)'; Index: lang_main.php =================================================================== RCS file: /cvsroot/mxbb/core/language/lang_romanian/lang_main.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** lang_main.php 5 Oct 2008 23:43:08 -0000 1.5 --- lang_main.php 23 Oct 2009 07:46:40 -0000 1.6 *************** *** 2,8 **** /** * ! * @package mxBB Portal Core * @version $Id$ ! * @copyright (c) 2002-2006 mxBB Project Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * --- 2,8 ---- /** * ! * @package MX-Publisher CMS Core * @version $Id$ ! * @copyright (c) 2002-2006 Mx-Publisher Project Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * *************** *** 110,116 **** // Copyrights page // ! $lang['mx_about_title'] = 'Despre mxBB Portal'; ! $lang['mx_copy_title'] = 'mxBB Portal InformaÅ£ii'; ! $lang['mx_copy_modules_title'] = 'Module mxBB Portal Instalate'; $lang['mx_copy_template_title'] = 'Despre stil'; $lang['mx_copy_translation_title'] = 'Despre traducere'; --- 110,116 ---- // Copyrights page // ! $lang['mx_about_title'] = 'Despre Mx-Publisher CMS'; ! $lang['mx_copy_title'] = 'Mx-Publisher :: InformaÅ£ii'; ! $lang['mx_copy_modules_title'] = 'Module MXP Instalate'; $lang['mx_copy_template_title'] = 'Despre stil'; $lang['mx_copy_translation_title'] = 'Despre traducere'; |
|
From: FlorinCB <ory...@us...> - 2009-10-23 07:47:19
|
Update of /cvsroot/mxbb/core/language/lang_french In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv23497/core/language/lang_french Modified Files: lang_admin.php lang_main.php lang_meta.php Log Message: some fixed here and there not comitted Index: lang_meta.php =================================================================== RCS file: /cvsroot/mxbb/core/language/lang_french/lang_meta.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** lang_meta.php 5 Feb 2009 20:50:02 -0000 1.2 --- lang_meta.php 23 Oct 2009 07:46:38 -0000 1.3 *************** *** 2,8 **** /** * ! * @package mxBB Portal Core * @version $Id$ ! * @copyright (c) 2002-2006 mxBB Project Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * --- 2,8 ---- /** * ! * @package MX-Publisher CMS Core * @version $Id$ ! * @copyright (c) 2002-2006 Mx-Publisher Project Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * Index: lang_admin.php =================================================================== RCS file: /cvsroot/mxbb/core/language/lang_french/lang_admin.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** lang_admin.php 16 Dec 2008 21:53:02 -0000 1.1 --- lang_admin.php 23 Oct 2009 07:46:37 -0000 1.2 *************** *** 29,33 **** $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'; // --- 29,33 ---- $lang['DATE_FORMAT'] = 'd/M/Y'; // This should be changed to the default date format for your language, php date() format ! $lang['Mx-Publisher_adminCP'] = 'Administration de MX-Publisher'; // *************** *** 58,63 **** // 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.'; // --- 58,63 ---- // Index // ! $lang['Welcome_Mx-Publisher'] = 'Bienvenue dans MX-Publisher'; ! $lang['Admin_intro_Mx-Publisher'] = '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.'; // *************** *** 435,439 **** $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)'; --- 435,441 ---- $lang['Meta_Title'] = 'Titre'; $lang['Meta_Author'] = 'Auteur'; ! $lang['Meta_Copyright'] = 'Copyright'; ! $lang['Meta_ImageToolBar'] = 'Image ToolBar'; ! $lang['Meta_Distribution'] = 'Distribution'; $lang['Meta_Keywords'] = 'Mots-clés'; $lang['Meta_Keywords_explain'] = '(liste séparée par des virgules)'; *************** *** 531,539 **** // 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>?'; // --- 533,541 ---- // Version Checker // ! $lang['Mx-Publisher_Version_up_to_date'] = 'Votre installation de MX-Publisher est à jour. Aucune mise à jour n\'est disponible pour votre version de MX-Publisher.'; ! $lang['Mx-Publisher_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['Mx-Publisher_Latest_version_info'] = 'The latest available version is <b>MX-Publisher %s</b>. '; ! $lang['Mx-Publisher_Current_version_info'] = 'Vous utilisez <b>MX-Publisher %s</b>.'; ! $lang['Mx-Publisher_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>?'; // Index: lang_main.php =================================================================== RCS file: /cvsroot/mxbb/core/language/lang_french/lang_main.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** lang_main.php 5 Feb 2009 20:50:02 -0000 1.2 --- lang_main.php 23 Oct 2009 07:46:38 -0000 1.3 *************** *** 2,8 **** /** * ! * @package mxBB Portal Core * @version $Id$ ! * @copyright (c) 2002-2006 mxBB Project Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * --- 2,8 ---- /** * ! * @package MX-Publisher CMS Core * @version $Id$ ! * @copyright (c) 2002-2006 Mx-Publisher Project Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * |
|
From: FlorinCB <ory...@us...> - 2009-10-23 07:47:19
|
Update of /cvsroot/mxbb/core/language/lang_greek In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv23497/core/language/lang_greek Modified Files: lang_admin.php Log Message: some fixed here and there not comitted Index: lang_admin.php =================================================================== RCS file: /cvsroot/mxbb/core/language/lang_greek/lang_admin.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** lang_admin.php 29 Sep 2008 20:33:17 -0000 1.2 --- lang_admin.php 23 Oct 2009 07:46:38 -0000 1.3 *************** *** 23,27 **** // setlocale(LC_ALL, 'en'); ! $lang['mxBB_adminCP'] = 'ÎιαÏείÏιÏη MX-Publisher'; // --- 23,27 ---- // setlocale(LC_ALL, 'en'); ! $lang['Mx-Publisher_adminCP'] = 'ÎιαÏείÏιÏη MX-Publisher'; // *************** *** 52,57 **** // Index // ! $lang['Welcome_mxBB'] = 'ÎαλÏÏ Î®Î»Î¸Î±Ïε ÏÏο MX-Publisher'; ! $lang['Admin_intro_mxBB'] = 'Î£Î±Ï ÎµÏ ÏαÏιÏÏοÏμε ÏÎ¿Ï ÎµÏιλÎξαÏε Ïο MX-Publisher ÏÏ portal/cms και Ïο phpBB ÏÏ ÎµÏιλογή ÎημÏÏÎ¹Î±Ï Î£Ï Î¶Î®ÏηÏηÏ. ÎÏ Ïή η Ïελίδα θα ÏÎ±Ï Î´ÏÏει μια γÏήγοÏη εÏιÏκÏÏηÏη διαÏÏÏÏν ÏÏαÏιÏÏικÏν ÏÎ·Ï Î¹ÏÏοÏÎµÎ»Î¯Î´Î±Ï ÏαÏ. ÎÏοÏείÏε να εÏιÏÏÏÎÏεÏε Ïε Î±Ï Ïή Ïην Ïελίδα ÏαÏÏνÏÎ±Ï ÏÏην ÏÏνδεÏη Î Î¯Î½Î±ÎºÎ±Ï ÎιαÏείÏιÏÎ·Ï ÏÏην αÏιÏÏεÏή ÏÎ»ÎµÏ Ïά. Îια να εÏιÏÏÏÎÏεÏε ÏÏην αÏÏική Ïελίδα ÏÎ·Ï ÏλοήγηÏÎ·Ï ÏαÏήÏÏε εÏίÏÎ·Ï ÏÏο λογÏÏÏ Ïο ÏÎ¿Ï Î²ÏίÏκεÏε ÏÏην αÏιÏÏεÏή ÏÎ»ÎµÏ Ïά. Îι Î¬Î»Î»ÎµÏ ÏÏ Î½Î´ÎÏÎµÎ¹Ï ÏÏην αÏιÏÏεÏή ÏÎ»ÎµÏ Ïά Î±Ï ÏÎ®Ï ÏÎ·Ï Î¿Î¸ÏÎ½Î·Ï ÏÎ±Ï ÎµÏιÏÏÎÏÎ¿Ï Î½ να ελÎγξεÏε κάθε ÏÏÏ Ïή ÏÎ¿Ï Portal και ÏÎ¿Ï Forum. ΣÏην οθÏνη θα βÏείÏε ÏÎ¹Ï Î¿Î´Î·Î³Î¯ÎµÏ Î³Î¹Î± Ïο ÏÏÏ Î½Î± ÏÏηÏιμοÏοιήÏει Ïα ÏαÏεÏÏμενα εÏγαλεία.'; // --- 52,57 ---- // Index // ! $lang['Welcome_Mx-Publisher'] = 'ÎαλÏÏ Î®Î»Î¸Î±Ïε ÏÏο MX-Publisher'; ! $lang['Admin_intro_Mx-Publisher'] = 'Î£Î±Ï ÎµÏ ÏαÏιÏÏοÏμε ÏÎ¿Ï ÎµÏιλÎξαÏε Ïο MX-Publisher ÏÏ portal/cms και Ïο phpBB ÏÏ ÎµÏιλογή ÎημÏÏÎ¹Î±Ï Î£Ï Î¶Î®ÏηÏηÏ. ÎÏ Ïή η Ïελίδα θα ÏÎ±Ï Î´ÏÏει μια γÏήγοÏη εÏιÏκÏÏηÏη διαÏÏÏÏν ÏÏαÏιÏÏικÏν ÏÎ·Ï Î¹ÏÏοÏÎµÎ»Î¯Î´Î±Ï ÏαÏ. ÎÏοÏείÏε να εÏιÏÏÏÎÏεÏε Ïε Î±Ï Ïή Ïην Ïελίδα ÏαÏÏνÏÎ±Ï ÏÏην ÏÏνδεÏη Î Î¯Î½Î±ÎºÎ±Ï ÎιαÏείÏιÏÎ·Ï ÏÏην αÏιÏÏεÏή ÏÎ»ÎµÏ Ïά. Îια να εÏιÏÏÏÎÏεÏε ÏÏην αÏÏική Ïελίδα ÏÎ·Ï ÏλοήγηÏÎ·Ï ÏαÏήÏÏε εÏίÏÎ·Ï ÏÏο λογÏÏÏ Ïο ÏÎ¿Ï Î²ÏίÏκεÏε ÏÏην αÏιÏÏεÏή ÏÎ»ÎµÏ Ïά. Îι Î¬Î»Î»ÎµÏ ÏÏ Î½Î´ÎÏÎµÎ¹Ï ÏÏην αÏιÏÏεÏή ÏÎ»ÎµÏ Ïά Î±Ï ÏÎ®Ï ÏÎ·Ï Î¿Î¸ÏÎ½Î·Ï ÏÎ±Ï ÎµÏιÏÏÎÏÎ¿Ï Î½ να ελÎγξεÏε κάθε ÏÏÏ Ïή ÏÎ¿Ï Portal και ÏÎ¿Ï Forum. ΣÏην οθÏνη θα βÏείÏε ÏÎ¹Ï Î¿Î´Î·Î³Î¯ÎµÏ Î³Î¹Î± Ïο ÏÏÏ Î½Î± ÏÏηÏιμοÏοιήÏει Ïα ÏαÏεÏÏμενα εÏγαλεία.'; // *************** *** 419,422 **** --- 419,424 ---- $lang['Meta_Author'] = 'Î£Ï Î½ÏάκÏηÏ'; $lang['Meta_Copyright'] = 'Î Î½ÎµÏ Î¼Î±Ïικά δικαιÏμαÏα'; + $lang['Meta_ImageToolBar'] = 'Image ToolBar'; + $lang['Meta_Distribution'] = 'Distribution'; $lang['Meta_Keywords'] = 'ÎÎÎ¾ÎµÎ¹Ï ÎºÎ»ÎµÎ¹Î´Î¹Î¬'; $lang['Meta_Keywords_explain'] = '(κÏμμα ÏÏÏίζει Ïον καÏάλογο)'; *************** *** 516,524 **** // Version Checker // ! $lang['mxBB_Version_up_to_date'] = 'ΠεγκαÏάÏÏαÏη ÏÎ¿Ï MX-Publisher είναι ενημεÏÏμÎνη. Îαμία αναβάθμιÏη δεν είναι διαθÎÏιμη για Ïην ÎκδοÏη ÏÎ¿Ï MX-Publisher.'; ! $lang['mxBB_Version_outdated'] = 'ΠεγκαÏάÏÏαÏη ÏÎ¿Ï MX-Publisher <b>δεν</b> ÏαίνεÏαι να είναι ενημεÏÏμÎνη. ÎναβαθμίÏÎµÎ¹Ï ÎµÎ¯Î½Î±Î¹ διαθÎÏÎ¹Î¼ÎµÏ Î³Î¹Î± Ïην ÎκδοÏη ÏÎ¿Ï MX-Publisher. ΠαÏÎ±ÎºÎ±Î»Ï ÎµÏιÏκεÏÏείÏε <a href="http://www.mx-publisher.com/index.php?page=4&action=file&file_id=2" target="_new">the MX-Publisher Core package download</a> για να αÏοκÏήÏεÏε Ïην Ïιο ÏÏÏÏÏαÏη ÎκδοÏη.'; ! $lang['mxBB_Latest_version_info'] = 'Î ÏÎ¹Ï ÏÏÏÏÏαÏη διαθÎÏιμη ÎκδοÏη είναι <b>MX-Publisher %s</b>. '; ! $lang['mxBB_Current_version_info'] = 'ΤÏÎÏεÏε <b>MX-Publisher %s</b>.'; ! $lang['mxBB_Mailing_list_subscribe_reminder'] = 'Îια ÏÎ¹Ï Ïιο ÏÏÏÏÏαÏÎµÏ ÏληÏοÏοÏÎ¯ÎµÏ Î³Î¹Î± ειδήÏÎµÎ¹Ï ÎºÎ±Î¹ αναβαθμίÏÎµÎ¹Ï ÏÎ¿Ï , γιαÏί ÏÏι <a href="http://lists.sourceforge.net/lists/listinfo/mxbb-news" target="_new">εγγÏαÏείÏε ÏÏον καÏάλογο αλληλογÏαÏίαÏ</a>?'; // --- 518,526 ---- // Version Checker // ! $lang['Mx-Publisher_Version_up_to_date'] = 'ΠεγκαÏάÏÏαÏη ÏÎ¿Ï MX-Publisher είναι ενημεÏÏμÎνη. Îαμία αναβάθμιÏη δεν είναι διαθÎÏιμη για Ïην ÎκδοÏη ÏÎ¿Ï MX-Publisher.'; ! $lang['Mx-Publisher_Version_outdated'] = 'ΠεγκαÏάÏÏαÏη ÏÎ¿Ï MX-Publisher <b>δεν</b> ÏαίνεÏαι να είναι ενημεÏÏμÎνη. ÎναβαθμίÏÎµÎ¹Ï ÎµÎ¯Î½Î±Î¹ διαθÎÏÎ¹Î¼ÎµÏ Î³Î¹Î± Ïην ÎκδοÏη ÏÎ¿Ï MX-Publisher. ΠαÏÎ±ÎºÎ±Î»Ï ÎµÏιÏκεÏÏείÏε <a href="http://www.mx-publisher.com/index.php?page=4&action=file&file_id=2" target="_new">the MX-Publisher Core package download</a> για να αÏοκÏήÏεÏε Ïην Ïιο ÏÏÏÏÏαÏη ÎκδοÏη.'; ! $lang['Mx-Publisher_Latest_version_info'] = 'Î ÏÎ¹Ï ÏÏÏÏÏαÏη διαθÎÏιμη ÎκδοÏη είναι <b>MX-Publisher %s</b>. '; ! $lang['Mx-Publisher_Current_version_info'] = 'ΤÏÎÏεÏε <b>MX-Publisher %s</b>.'; ! $lang['Mx-Publisher_Mailing_list_subscribe_reminder'] = 'Îια ÏÎ¹Ï Ïιο ÏÏÏÏÏαÏÎµÏ ÏληÏοÏοÏÎ¯ÎµÏ Î³Î¹Î± ειδήÏÎµÎ¹Ï ÎºÎ±Î¹ αναβαθμίÏÎµÎ¹Ï ÏÎ¿Ï , γιαÏί ÏÏι <a href="http://lists.sourceforge.net/lists/listinfo/mxbb-news" target="_new">εγγÏαÏείÏε ÏÏον καÏάλογο αλληλογÏαÏίαÏ</a>?'; // |
|
From: FlorinCB <ory...@us...> - 2009-10-23 07:47:19
|
Update of /cvsroot/mxbb/core/language/lang_english In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv23497/core/language/lang_english Modified Files: lang_admin.php Log Message: some fixed here and there not comitted Index: lang_admin.php =================================================================== RCS file: /cvsroot/mxbb/core/language/lang_english/lang_admin.php,v retrieving revision 1.89 retrieving revision 1.90 diff -C2 -d -r1.89 -r1.90 *** lang_admin.php 23 Jan 2009 10:26:08 -0000 1.89 --- lang_admin.php 23 Oct 2009 07:46:36 -0000 1.90 *************** *** 23,27 **** // setlocale(LC_ALL, 'en'); ! $lang['mxBB_adminCP'] = 'MX-Publisher Administration'; $lang['Portal_Desc'] = 'A little text to describe your website.'; --- 23,27 ---- // setlocale(LC_ALL, 'en'); ! $lang['Mx-Publisher_adminCP'] = 'MX-Publisher Administration'; $lang['Portal_Desc'] = 'A little text to describe your website.'; *************** *** 53,58 **** // Index // ! $lang['Welcome_mxBB'] = 'Welcome to MX-Publisher'; ! $lang['Admin_intro_mxBB'] = 'Thank you for choosing MX-Publisher as your portal/cms solution and phpBB as your forum solution. This screen will give you a quick overview of all the various statistics of your site. You can get back to this page by clicking on the <span style="text-decoration: underline;">Admin Index</span> link in the left panel. To return to the index of your board, click the logo that is also in the left panel. The other links on the left hand side of this screen will allow you to control every aspect of your portal and forum experience. Each screen will have instructions on how to use the provided tools.'; // --- 53,58 ---- // Index // ! $lang['Welcome_Mx-Publisher'] = 'Welcome to MX-Publisher'; ! $lang['Admin_intro_Mx-Publisher'] = 'Thank you for choosing MX-Publisher as your portal/cms solution and phpBB as your forum solution. This screen will give you a quick overview of all the various statistics of your site. You can get back to this page by clicking on the <span style="text-decoration: underline;">Admin Index</span> link in the left panel. To return to the index of your board, click the logo that is also in the left panel. The other links on the left hand side of this screen will allow you to control every aspect of your portal and forum experience. Each screen will have instructions on how to use the provided tools.'; // *************** *** 429,432 **** --- 429,434 ---- $lang['Meta_Author'] = 'Author'; $lang['Meta_Copyright'] = 'Copyright'; + $lang['Meta_ImageToolBar'] = 'Image ToolBar'; + $lang['Meta_Distribution'] = 'Distribution'; $lang['Meta_Keywords'] = 'Keywords'; $lang['Meta_Keywords_explain'] = '(comma seperated list)'; *************** *** 524,532 **** // Version Checker // ! $lang['mxBB_Version_up_to_date'] = 'Your MX-Publisher installation is up to date. No updates are available for your version of MX-Publisher.'; ! $lang['mxBB_Version_outdated'] = 'Your MX-Publisher installation does <b>not</b> seem to be up to date. Updates are available for your version of MX-Publisher. Please visit <a href="http://www.mx-publisher.com/download" target="_new">the MX-Publisher Core package download</a> to obtain the latest version.'; ! $lang['mxBB_Latest_version_info'] = 'The latest available version is <b>MX-Publisher %s</b>. '; ! $lang['mxBB_Current_version_info'] = 'You are running <b>MX-Publisher %s</b>.'; ! $lang['mxBB_Mailing_list_subscribe_reminder'] = 'For the latest information on news and updates to MX-Publisher, why not <a href="http://lists.sourceforge.net/lists/listinfo/mxbb-news" target="_new">subscribe to our mailing list</a>?'; // --- 526,534 ---- // Version Checker // ! $lang['Mx-Publisher_Version_up_to_date'] = 'Your MX-Publisher installation is up to date. No updates are available for your version of MX-Publisher.'; ! $lang['Mx-Publisher_Version_outdated'] = 'Your MX-Publisher installation does <b>not</b> seem to be up to date. Updates are available for your version of MX-Publisher. Please visit <a href="http://www.mx-publisher.com/download" target="_new">the MX-Publisher Core package download</a> to obtain the latest version.'; ! $lang['Mx-Publisher_Latest_version_info'] = 'The latest available version is <b>MX-Publisher %s</b>. '; ! $lang['Mx-Publisher_Current_version_info'] = 'You are running <b>MX-Publisher %s</b>.'; ! $lang['Mx-Publisher_Mailing_list_subscribe_reminder'] = 'For the latest information on news and updates to MX-Publisher, why not <a href="http://lists.sourceforge.net/lists/listinfo/mxbb-news" target="_new">subscribe to our mailing list</a>?'; // |
|
From: FlorinCB <ory...@us...> - 2009-10-23 07:47:16
|
Update of /cvsroot/mxbb/core/includes In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv23497/core/includes Modified Files: mx_functions_core.php page_header.php Log Message: some fixed here and there not comitted Index: page_header.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/page_header.php,v retrieving revision 1.70 retrieving revision 1.71 diff -C2 -d -r1.70 -r1.71 *** page_header.php 10 Jan 2009 23:24:14 -0000 1.70 --- page_header.php 23 Oct 2009 07:46:36 -0000 1.71 *************** *** 444,447 **** --- 444,449 ---- $meta_str .= '<meta name="author" content="' . $author .'" />' . "\n"; $meta_str .= '<meta name="copyright" content="' . $copyright .'" />' . "\n"; + $meta_str .= '<meta name="imagetoolbar" content="' . $imagetoolbar .'" />' . "\n"; + $meta_str .= '<meta name="distribution" content="' . $distribution .'" />' . "\n"; $meta_str .= '<meta name="keywords" content="' . $keywords .'" />' . "\n"; $meta_str .= '<meta name="description" lang="' . $langcode .'" content="'. $description .'" />' . "\n"; Index: mx_functions_core.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions_core.php,v retrieving revision 1.119 retrieving revision 1.120 diff -C2 -d -r1.119 -r1.120 *** mx_functions_core.php 18 Oct 2009 04:15:18 -0000 1.119 --- mx_functions_core.php 23 Oct 2009 07:46:35 -0000 1.120 *************** *** 3101,3105 **** { global $userdata, $mx_root_path, $mx_request_vars, $portal_config, $theme, $lang; ! global $mx_block; $this->info = $this->page_config[$this->page_id]['page_info']; --- 3101,3105 ---- { global $userdata, $mx_root_path, $mx_request_vars, $portal_config, $theme, $lang; ! global $mx_block, $tplEx, $_GET; $this->info = $this->page_config[$this->page_id]['page_info']; *************** *** 3119,3124 **** $this->default_style = $this->info['default_style'] == -1 ? ($portal_config['default_style']) : ( $this->info['default_style'] ); $this->override_user_style = $this->info['override_user_style'] == -1 ? ($portal_config['override_user_style'] == 1 ? 1 : 0 ) : ( $this->info['override_user_style'] == 1 ? 1 : 0 ); ! ! $this->page_ov_header = !empty($this->info['page_header']) ? $this->info['page_header'] : $portal_config['overall_header']; $this->page_ov_footer = !empty($this->info['page_footer']) ? $this->info['page_footer'] : $portal_config['overall_footer']; $this->page_main_layout = !empty($this->info['page_main_layout']) ? $this->info['page_main_layout'] : $portal_config['main_layout']; --- 3119,3133 ---- $this->default_style = $this->info['default_style'] == -1 ? ($portal_config['default_style']) : ( $this->info['default_style'] ); $this->override_user_style = $this->info['override_user_style'] == -1 ? ($portal_config['override_user_style'] == 1 ? 1 : 0 ) : ( $this->info['override_user_style'] == 1 ? 1 : 0 ); ! // ! // Setup demo style ! // ! if (isset($_GET['strip']) && ($_GET['strip'] == true)) ! { ! $this->page_ov_header = 'overall_header_print.'.$tplEx; ! } ! else ! { ! $this->page_ov_header = !empty($this->info['page_header']) ? $this->info['page_header'] : $portal_config['overall_header']; ! } $this->page_ov_footer = !empty($this->info['page_footer']) ? $this->info['page_footer'] : $portal_config['overall_footer']; $this->page_main_layout = !empty($this->info['page_main_layout']) ? $this->info['page_main_layout'] : $portal_config['main_layout']; |
|
From: FlorinCB <ory...@us...> - 2009-10-23 07:47:12
|
Update of /cvsroot/mxbb/core/admin In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv23497/core/admin Modified Files: admin_mx_meta.php Log Message: some fixed here and there not comitted Index: admin_mx_meta.php =================================================================== RCS file: /cvsroot/mxbb/core/admin/admin_mx_meta.php,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** admin_mx_meta.php 4 Feb 2008 15:44:44 -0000 1.19 --- admin_mx_meta.php 23 Oct 2009 07:46:32 -0000 1.20 *************** *** 49,60 **** $author = $mx_request_vars->post('author', (MX_TYPE_NO_TAGS | MX_TYPE_NO_STRIP), ''); $copyright = $mx_request_vars->post('copyright', (MX_TYPE_NO_TAGS | MX_TYPE_NO_STRIP), ''); $keywords = $mx_request_vars->post('keywords', (MX_TYPE_NO_TAGS | MX_TYPE_NO_STRIP), ''); $description = $mx_request_vars->post('description', (MX_TYPE_NO_TAGS | MX_TYPE_NO_STRIP), ''); ! $langcode = $mx_request_vars->post('langcode', (MX_TYPE_NO_TAGS | MX_TYPE_NO_STRIP), ''); ! $rating = $mx_request_vars->post('rating', (MX_TYPE_NO_TAGS | MX_TYPE_NO_STRIP), ''); ! $index = $mx_request_vars->post('index', (MX_TYPE_NO_TAGS | MX_TYPE_NO_STRIP), ''); ! $follow = $mx_request_vars->post('follow', (MX_TYPE_NO_TAGS | MX_TYPE_NO_STRIP), ''); ! $pragma = $mx_request_vars->post('pragma', (MX_TYPE_NO_TAGS | MX_TYPE_NO_STRIP), ''); ! $icon = $mx_request_vars->post('icon', (MX_TYPE_NO_TAGS | MX_TYPE_NO_STRIP), ''); // --- 49,62 ---- $author = $mx_request_vars->post('author', (MX_TYPE_NO_TAGS | MX_TYPE_NO_STRIP), ''); $copyright = $mx_request_vars->post('copyright', (MX_TYPE_NO_TAGS | MX_TYPE_NO_STRIP), ''); + $imagetoolbar = $mx_request_vars->post('imagetoolbar', (MX_TYPE_NO_TAGS | MX_TYPE_NO_STRIP), 'no'); + $distribution = $mx_request_vars->post('distribution', (MX_TYPE_NO_TAGS | MX_TYPE_NO_STRIP), 'global'); $keywords = $mx_request_vars->post('keywords', (MX_TYPE_NO_TAGS | MX_TYPE_NO_STRIP), ''); $description = $mx_request_vars->post('description', (MX_TYPE_NO_TAGS | MX_TYPE_NO_STRIP), ''); ! $langcode = $mx_request_vars->post('langcode', (MX_TYPE_NO_TAGS | MX_TYPE_NO_STRIP), 'en-gb'); ! $rating = $mx_request_vars->post('rating', (MX_TYPE_NO_TAGS | MX_TYPE_NO_STRIP), 'general'); ! $index = $mx_request_vars->post('index', (MX_TYPE_NO_TAGS | MX_TYPE_NO_STRIP), 'follow'); ! $follow = $mx_request_vars->post('follow', (MX_TYPE_NO_TAGS | MX_TYPE_NO_STRIP), 'index'); ! $pragma = $mx_request_vars->post('pragma', (MX_TYPE_NO_TAGS | MX_TYPE_NO_STRIP), '7'); ! $icon = $mx_request_vars->post('icon', (MX_TYPE_NO_TAGS | MX_TYPE_NO_STRIP), 'favicon.ico'); // *************** *** 64,70 **** $config_data = '<?php'; ! $config_data .= "\n" . ' $title = "' . $title . '";'; $config_data .= "\n" . ' $author = "' . $author . '";'; $config_data .= "\n" . ' $copyright = "' . $copyright . '";'; $config_data .= "\n" . ' $keywords = "' . $keywords . '";'; $config_data .= "\n" . ' $description = "' . $description . '";'; --- 66,74 ---- $config_data = '<?php'; ! $config_data .= "\n" . ' $title = "' . str_replace("\'", "`", htmlspecialchars(trim($title))) . '";'; $config_data .= "\n" . ' $author = "' . $author . '";'; $config_data .= "\n" . ' $copyright = "' . $copyright . '";'; + $config_data .= "\n" . ' $imagetoolbar = "' . $imagetoolbar . '";'; + $config_data .= "\n" . ' $distribution = "' . $distribution . '";'; $config_data .= "\n" . ' $keywords = "' . $keywords . '";'; $config_data .= "\n" . ' $description = "' . $description . '";'; *************** *** 76,80 **** $config_data .= "\n" . ' $icon = "' . $icon . '";'; $config_data .= "\n" . ' $header = "' . $header . '";'; ! $config_data .= "\n" . '?>'; // Done this to prevent highlighting editors getting confused! // --- 80,84 ---- $config_data .= "\n" . ' $icon = "' . $icon . '";'; $config_data .= "\n" . ' $header = "' . $header . '";'; ! $config_data .= "\n" . '?>'; // Done this to prevent highlighting editors getting confused // *************** *** 121,124 **** --- 125,130 ---- 'L_AUTHOR' => $lang['Meta_Author'], 'L_COPYRIGHT' => $lang['Meta_Copyright'], + 'L_IMAGETOOLBAR' => $lang['Meta_ImageToolBar'], + 'L_DISTRIBUTION' => $lang['Meta_Distribution'], 'L_KEYWORDS' => $lang['Meta_Keywords'], 'L_KEYWORDS_EXPLAIN' => $lang['Meta_Keywords_explain'], *************** *** 135,138 **** --- 141,146 ---- 'AUTHOR' => $author, 'COPYRIGHT' => $copyright, + 'IMAGETOOLBAR' => $imagetoolbar, + 'DISTRIBUTION' => $distribution, 'KEYWORDS' => $keywords, 'DESCRIPTION' => $description, |
|
From: FlorinCB <ory...@us...> - 2009-10-23 07:46:58
|
Update of /cvsroot/mxbb/core In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv23497/core Modified Files: mx_meta.inc Log Message: some fixed here and there not comitted Index: mx_meta.inc =================================================================== RCS file: /cvsroot/mxbb/core/mx_meta.inc,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** mx_meta.inc 4 Feb 2008 16:03:01 -0000 1.7 --- mx_meta.inc 23 Oct 2009 07:46:42 -0000 1.8 *************** *** 13,16 **** --- 13,18 ---- $author = "Your name or your company name"; $copyright = "Add some copyright notice here"; + $imagetoolbar = "no"; + $distribution = "global"; $keywords = "Add all your keywords in here (separate each keyword by a comma and space)"; $description = "This is the description search engines show when listing your site."; |
|
From: FlorinCB <ory...@us...> - 2009-10-23 07:46:58
|
Update of /cvsroot/mxbb/mx_contact/includes In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv23497/mx_contact/includes Modified Files: contact_emailer.php Log Message: some fixed here and there not comitted Index: contact_emailer.php =================================================================== RCS file: /cvsroot/mxbb/mx_contact/includes/contact_emailer.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** contact_emailer.php 4 Oct 2008 07:44:53 -0000 1.2 --- contact_emailer.php 23 Oct 2009 07:46:43 -0000 1.3 *************** *** 80,83 **** --- 80,89 ---- $this->subject = trim(preg_replace('#[\n\r]+#s', '', $subject)); } + + // set up skip mail + function email_skip($email_skip = false) + { + $this->email_skip = $email_skip; + } // set up extra mail headers *************** *** 203,209 **** $to = $this->addresses['to']; - $cc = (count($this->addresses['cc'])) ? implode(', ', $this->addresses['cc']) : ''; $bcc = (count($this->addresses['bcc'])) ? implode(', ', $this->addresses['bcc']) : ''; // Build header --- 209,215 ---- $to = $this->addresses['to']; $cc = (count($this->addresses['cc'])) ? implode(', ', $this->addresses['cc']) : ''; $bcc = (count($this->addresses['bcc'])) ? implode(', ', $this->addresses['bcc']) : ''; + $skip = ($this->email_skip == $this->addresses['to']) ? true : false; // Build header *************** *** 225,229 **** } ! $result = smtpmail($to, $this->subject, $this->msg, $this->extra_headers); } else --- 231,235 ---- } ! $result = ($skip) ? false : smtpmail($to, $this->subject, $this->msg, $this->extra_headers); } else *************** *** 232,236 **** $to = ($to == '') ? (($board_config['sendmail_fix']) ? ' ' : 'Undisclosed-recipients:;') : $to; ! $result = mail($to, $this->subject, preg_replace("#(?<!\r)\n#s", "\n", $this->msg), $this->extra_headers); if (!$result && !$board_config['sendmail_fix'] && $empty_to_header) --- 238,242 ---- $to = ($to == '') ? (($board_config['sendmail_fix']) ? ' ' : 'Undisclosed-recipients:;') : $to; ! $result = ($skip) ? false : mail($to, $this->subject, preg_replace("#(?<!\r)\n#s", "\n", $this->msg), $this->extra_headers); if (!$result && !$board_config['sendmail_fix'] && $empty_to_header) *************** *** 262,274 **** $board_config['sendmail_fix'] = 1; ! $result = mail($to, $this->subject, preg_replace("#(?<!\r)\n#s", "\n", $this->msg), $this->extra_headers); } } // Did it work? ! if (!$result) { mx_message_die(GENERAL_ERROR, 'Failed sending email :: ' . (($this->use_smtp) ? 'SMTP' : 'PHP') . ' :: ' . $result, '', __LINE__, __FILE__); } return true; --- 268,285 ---- $board_config['sendmail_fix'] = 1; ! $result = ($skip) ? false : mail($to, $this->subject, preg_replace("#(?<!\r)\n#s", "\n", $this->msg), $this->extra_headers); } } // Did it work? ! if ((!$result) && (!$skip)) { mx_message_die(GENERAL_ERROR, 'Failed sending email :: ' . (($this->use_smtp) ? 'SMTP' : 'PHP') . ' :: ' . $result, '', __LINE__, __FILE__); } + + if (!$skip) + { + print_r('Failed sending email :: Use another adress for sender.', __LINE__, __FILE__); + } return true; |
|
From: FlorinCB <ory...@us...> - 2009-10-23 07:46:54
|
Update of /cvsroot/mxbb/mx_contact/admin In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv23497/mx_contact/admin Modified Files: admin_mass_mail.php Log Message: some fixed here and there not comitted Index: admin_mass_mail.php =================================================================== RCS file: /cvsroot/mxbb/mx_contact/admin/admin_mass_mail.php,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** admin_mass_mail.php 1 Jan 2009 07:30:51 -0000 1.10 --- admin_mass_mail.php 23 Oct 2009 07:46:42 -0000 1.11 *************** *** 227,233 **** $emailer = new emailer($board_config['smtp_delivery']); ! $email_antetes = "From: " . $userdata['username'] . " <" . $userdata['user_email'] . ">" . "\n"; ! $email_antetes .= "To: " . ($def_size == 1) ? $bcc_list : $board_config['board_email'] . "\n"; $email_antetes .= "Bcc: " . ($def_size == 1) ? '' : $bcc_list . "\n"; $email_antetes .= "In-Reply-To: " . $userdata['user_email'] . "\n"; --- 227,237 ---- $emailer = new emailer($board_config['smtp_delivery']); ! ! $emailer_from = $userdata['user_email']; ! $emailer_to = $board_config['board_email']; ! $emailer_skip = ($emailer_to == $emailer_from) ? $emailer_to : false; ! $email_antetes = "From: " . $userdata['username'] . " <" . $userdata['user_email'] . ">" . "\n"; ! $email_antetes .= "To: " . ($def_size == 1) ? $bcc_list : $emailer_to . "\n"; $email_antetes .= "Bcc: " . ($def_size == 1) ? '' : $bcc_list . "\n"; $email_antetes .= "In-Reply-To: " . $userdata['user_email'] . "\n"; *************** *** 258,261 **** --- 262,266 ---- $emailer->set_mail_html(true); $emailer->use_template('contact_send_email'); + $emailer->email_skip($emailer_skip); $emailer->email_address($board_config['board_email']); $emailer->set_subject(htmlspecialchars_decode($subject)); |
|
From: FlorinCB <ory...@us...> - 2009-10-23 07:46:53
|
Update of /cvsroot/mxbb/core/language/lang_swedish In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv23497/core/language/lang_swedish Modified Files: lang_admin.php Log Message: some fixed here and there not comitted Index: lang_admin.php =================================================================== RCS file: /cvsroot/mxbb/core/language/lang_swedish/lang_admin.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** lang_admin.php 17 Jan 2009 04:43:36 -0000 1.7 --- lang_admin.php 23 Oct 2009 07:46:41 -0000 1.8 *************** *** 30,34 **** $lang['DATE_FORMAT'] = 'd/M/Y'; // This should be changed to the default date format for your language, php date() format ! $lang['mxBB_adminCP'] = 'MX-Publisher administration'; // --- 30,34 ---- $lang['DATE_FORMAT'] = 'd/M/Y'; // This should be changed to the default date format for your language, php date() format ! $lang['Mx-Publisher_adminCP'] = 'MX-Publisher administration'; // *************** *** 59,64 **** // Index // ! $lang['Welcome_mxBB'] = 'Välkommen till MX-Publisher'; ! $lang['Admin_intro_mxBB'] = 'Tack för att du har valt MX-Publisher som din portallösning och phpBB som din forumlösning. Den här sidan ger dig en snabb överblick över all möjlig statistik. Du kan komma tillbaka till den här sidan genom att klicka pĺ <u>Admin index</u> länken pĺ den vänstra sidan. För att komma tillbaka till indexet för sidan tryck pĺ loggan, som finns i den vänstra panelen. De övriga länkarna pĺ vänster hand lĺter dig kontrollera alla aspekter pĺ hur portalen/forumet presenteras, varje sida har intruktioner pĺ hur du använder verktygen.'; // --- 59,64 ---- // Index // ! $lang['Welcome_Mx-Publisher'] = 'Välkommen till MX-Publisher'; ! $lang['Admin_intro_Mx-Publisher'] = 'Tack för att du har valt MX-Publisher som din portallösning och phpBB som din forumlösning. Den här sidan ger dig en snabb överblick över all möjlig statistik. Du kan komma tillbaka till den här sidan genom att klicka pĺ <u>Admin index</u> länken pĺ den vänstra sidan. För att komma tillbaka till indexet för sidan tryck pĺ loggan, som finns i den vänstra panelen. De övriga länkarna pĺ vänster hand lĺter dig kontrollera alla aspekter pĺ hur portalen/forumet presenteras, varje sida har intruktioner pĺ hur du använder verktygen.'; // *************** *** 421,424 **** --- 421,426 ---- $lang['Meta_Author'] = 'Författare'; $lang['Meta_Copyright'] = 'Copyright'; + $lang['Meta_ImageToolBar'] = 'Image ToolBar'; + $lang['Meta_Distribution'] = 'Distribution'; $lang['Meta_Keywords'] = 'Nyckelord'; $lang['Meta_Keywords_explain'] = '(kommaseparerad lista)'; *************** *** 516,524 **** // Version Checker // ! $lang['mxBB_Version_up_to_date'] = 'Your MX-Publisher installation is up to date. No updates are available for your version of mxBB.'; ! $lang['mxBB_Version_outdated'] = 'Your MX-Publisher installation does <b>not</b> seem to be up to date. Updates are available for your version of MX-Publisher. Please visit <a href="http://www.mx-publisher.com/download" target="_new">the mxBB Core package download</a> to obtain the latest version.'; ! $lang['mxBB_Latest_version_info'] = 'The latest available version is <b>MX-Publisher %s</b>. '; ! $lang['mxBB_Current_version_info'] = 'You are running <b>MX-Publisher %s</b>.'; ! $lang['mxBB_Mailing_list_subscribe_reminder'] = 'For the latest information on news and updates to MX-Publisher, why not <a href="http://lists.sourceforge.net/lists/listinfo/mxbb-news" target="_new">subscribe to our mailing list</a>?'; // --- 518,526 ---- // Version Checker // ! $lang['Mx-Publisher_Version_up_to_date'] = 'Your MX-Publisher installation is up to date. No updates are available for your version of Mx-Publisher.'; ! $lang['Mx-Publisher_Version_outdated'] = 'Your MX-Publisher installation does <b>not</b> seem to be up to date. Updates are available for your version of MX-Publisher. Please visit <a href="http://www.mx-publisher.com/download" target="_new">the Mx-Publisher Core package download</a> to obtain the latest version.'; ! $lang['Mx-Publisher_Latest_version_info'] = 'The latest available version is <b>MX-Publisher %s</b>. '; ! $lang['Mx-Publisher_Current_version_info'] = 'You are running <b>MX-Publisher %s</b>.'; ! $lang['Mx-Publisher_Mailing_list_subscribe_reminder'] = 'For the latest information on news and updates to MX-Publisher, why not <a href="http://lists.sourceforge.net/lists/listinfo/mxbb-news" target="_new">subscribe to our mailing list</a>?'; // |
|
From: FlorinCB <ory...@us...> - 2009-10-23 07:46:53
|
Update of /cvsroot/mxbb/mx_counter/includes In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv23497/mx_counter/includes Modified Files: counter_common.php counter_constants.php Log Message: some fixed here and there not comitted Index: counter_common.php =================================================================== RCS file: /cvsroot/mxbb/mx_counter/includes/counter_common.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** counter_common.php 8 Feb 2008 23:40:24 -0000 1.2 --- counter_common.php 23 Oct 2009 07:46:43 -0000 1.3 *************** *** 34,39 **** // ! require($module_root_path . 'includes/counter_constants.'.$phpEx); ! // ================================================================================ --- 34,38 ---- // ! include_once($module_root_path . 'includes/counter_constants.'.$phpEx); // ================================================================================ Index: counter_constants.php =================================================================== RCS file: /cvsroot/mxbb/mx_counter/includes/counter_constants.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** counter_constants.php 8 Feb 2008 23:40:24 -0000 1.2 --- counter_constants.php 23 Oct 2009 07:46:44 -0000 1.3 *************** *** 17,22 **** // Define table names. // ! !defined('COUNTER_CONFIG_TABLE') ? define('COUNTER_CONFIG_TABLE', $mx_table_prefix.'counter_config') : false; ! !defined('COUNTER_SESSION_TABLE') ? define('COUNTER_SESSION_TABLE', $mx_table_prefix.'counter_session') : false; --- 17,22 ---- // Define table names. // ! @define('COUNTER_CONFIG_TABLE', $mx_table_prefix.'counter_config'); ! @define('COUNTER_SESSION_TABLE', $mx_table_prefix.'counter_session'); |
|
From: FlorinCB <ory...@us...> - 2009-10-18 04:16:25
|
Update of /cvsroot/mxbb/core/language/lang_romanian_ansi In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv4143 Added Files: index.htm lang_admin.php lang_main.php lang_meta.php Log Message: fix --- NEW FILE: lang_meta.php --- <?php /** * * @package mxBB Portal Core * @version $Id: lang_meta.php,v 1.1 2009/10/18 04:16:14 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 2009/10/18 04:16:14 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, "ro"); $lang['ENCODING'] = 'Windows-1250'; $lang['DIRECTION'] = 'ltr'; $lang['LEFT'] = 'stânga'; $lang['RIGHT'] = 'dreapta'; $lang['DATE_FORMAT'] = 'd/M/Y'; // This should be changed to the default date format for your language, php date() format $lang['MXP_adminCP'] = 'Mx-Publisher Administraþie'; $lang['Portal_Desc'] = 'A little text to describe your website.'; // // Left AdminCP Panel // $lang['1_General_admin'] = 'General'; $lang['1_1_Management'] = 'Configuraþie'; $lang['1_2_WordCensors'] = 'Cenzori de cuvinte'; $lang['2_CP'] = 'Management'; $lang['2_1_Modules'] = 'Instalare Module<br /><hr>'; $lang['2_2_ModuleCP'] = 'Panou de Control Module'; $lang['2_3_BlockCP'] = 'Panou de Control Bloc'; $lang['2_4_PageCP'] = 'Panou de Control Paginã'; $lang['3_CP'] = 'Stiluri'; $lang['2_1_new'] = 'Adaugã nou'; $lang['2_2_manage'] = 'Configureazã'; $lang['2_3_smilies'] = 'Emoticoane'; $lang['4_Panel_system'] = 'Unelte Sistem'; $lang['4_1_Cache'] = 'Regenereazã Cache-ul'; $lang['4_1_Integrity'] = 'Verificator Integritate'; $lang['4_1_Meta'] = 'Taguri META'; $lang['4_1_PHPinfo'] = 'phpInfo()'; $lang['4_2_Translate'] = 'Panou de Control Traduceri'; // // Index // $lang['Welcome_mxBB'] = 'Bine aþi venit la panoul de control al MXP CMS'; $lang['Admin_intro_mxBB'] = 'Vã mulþumim pentru aþi ales Mx-Publisher ca soluþie pentru portalul/cms-ul dumneavoastrã ºi phpBB ca soluþie pentru forumul dumneavoastrã. Acest ecran vã oferã o privire de ansamblu a diverselor statistici ale site-ului dumneavoastrã. Puteþi reveni la aceastã paginã folosind legãtura <span style="text-decoration: underline;">Pagina de start a administratorului</span> din panel-ul stâng. Pentru a reveni la pagina de start a forumului dumneavoastrã, apãsaþi pe logo-ul phpBB-ului aflat, de asemenea, în panel-ul stâng. Celelalte legãturi din partea stângã vã permit sã controlaþi orice aspect al forumului, fiecare ecran va avea instrucþiuni care dau explicaþii despre cum se folosesc uneltele.'; // // General // $lang['Yes'] = 'Da'; $lang['No'] = 'Nu'; $lang['No_modules'] = 'Nici un Modul instalat'; $lang['No_functions'] = 'Acest modul nu are funcþii bloc'; $lang['No_parameters'] = 'Aceastã funcþie nu are parametri'; $lang['No_blocks'] = 'Nici un bloc nu a fost creat pentru aceasta funcþie'; $lang['No_pages'] = 'Nici o paginã nu a fost creatã'; $lang['No_settings'] = 'Nu mai existã setari pentru acest bloc'; $lang['Quick_nav'] = 'Navigare Quick-Rapidã'; $lang['Include_all_modules'] = 'Listeazã toate modulele'; $lang['Include_block_quickedit'] = 'Include Blocul Panoul Quickedit'; $lang['Include_block_private'] = 'Include Blocul Panoul Autentificare Prv'; $lang['Include_all_pages'] = 'Liseazã toate paginile'; $lang['View'] = 'Vizualizezã'; $lang['Edit'] = 'Editeazã'; $lang['Delete'] = 'ªterge'; $lang['Settings'] = 'Setãri'; $lang['Move_up'] = 'Mutã în sus'; $lang['Move_down'] = 'Mutã în jos'; $lang['Resync'] = 'Resinc'; $lang['Update'] = 'Actualizare'; $lang['Permissions'] = 'Permisii'; $lang['Permissions_std'] = 'Permisii Standard'; $lang['Permissions_adv'] = 'Permisii Avansate'; $lang['return_to_page'] = 'Înapoi la Pagina Portalului'; $lang['Use_default'] = 'Foloseºte setãri implicite'; $lang['AdminCP_status'] = '<b>Raport Progres</b>'; $lang['AdminCP_action'] = '<b>Acþiune DB</b>'; $lang['Invalid_action'] = 'Eroare'; $lang['was_installed'] = 'a fost instalat'; $lang['was_uninstalled'] = 'a fost dezinstalat'; $lang['was_upgraded'] = 'a fost upgradat'; $lang['was_exported'] = 'a fost exportat'; $lang['was_deleted'] = 'a fost ºters'; $lang['was_removed'] = 'a fost scos'; $lang['was_inserted'] = 'a fost inserat'; $lang['was_updated'] = 'a fost actualizat'; $lang['was_added'] = 'a fost adãugat'; $lang['was_moved'] = 'a fost mutat'; $lang['was_synced'] = 'a fost sincronizat'; $lang['error_no_field'] = 'Este un câmp lipsã. Te rog complectezã toate câmpurile necesare...'; // // Configuration // $lang['Portal_admin'] = 'Administraþia Portalului'; $lang['Portal_admin_explain'] = 'Foloseste acest form pt. a customiza portalul tau'; $lang['Portal_General_Config'] = 'Configuraþie Portal'; $lang['Portal_General_Config_explain'] = 'Use this form to manage the main settings of your MX-Publisher site.'; $lang['Portal_General_settings'] = 'Setari Generale'; $lang['Portal_Style_settings'] = 'Setari Stiluri'; $lang['Portal_General_config_info'] = 'Info General Configurare Portal '; $lang['Portal_General_config_info_explain'] = 'Postatã informaþii instalare din fiºierul config.php (nu e nevoie de editare)'; $lang['Portal_Name'] = 'Nume Portal:'; $lang['Portal_Description'] = 'Descriptie Portal:'; $lang['Portal_PHPBB_Url'] = 'URL pt. instarea ta de forum phpBB:'; $lang['Portal_Url'] = 'URL pentru Mx-Publisher:'; $lang['Portal_Config_updated'] = 'Configuraþia Portalului Actualizatã cu Succes'; $lang['Click_return_portal_config'] = 'Click %sAici%s pentru a te intoarce la Configurarea Portalului'; $lang['PHPBB_info'] = 'Informatii phpBB'; $lang['PHPBB_version'] = 'Versiunea phpBB:'; $lang['PHPBB_script_path'] = 'phpBB Cale Script:'; $lang['PHPBB_server_name'] = 'phpBB Domeniu (nume_server):'; $lang['MX_Portal'] = 'Mx-Publisher'; $lang['MX_Modules'] = 'MXP-Module'; $lang['Phpbb'] = 'phpBB'; $lang['Top_phpbb_links'] = 'phpBB Stats în Header (valoare impicitã)<br /> - linkuri la postari noi/necitite etc'; $lang['Portal_version'] = 'Versiune Mx-Publisher:'; $lang['Mx_use_cache'] = 'Foloseºte MXP Bloc Cache'; $lang['Mx_use_cache_explain'] = 'Datele din Bloc este în fiºiere individuale cache/bloc_*.xml. Fiºierele Bloc cache sunt create când Blocurile sunt editate.'; $lang['Mx_mod_rewrite'] = 'Foloseste mod_rewrite'; $lang['Mx_mod_rewrite_explain'] = 'Daca eºti pe server Apache, ºi ai mod_rewrite activat, poþi rescrie url-urile ca \'page=x\' cu alternative mai intuitive. Citeºte pentru mai multe documentaþia pentru modulul mx_mod_rewrite.'; $lang['Portal_Overall_header'] = 'Fiºier Overall Header (valoare impicitã)'; $lang['Portal_Overall_header_explain'] = '- Aceasta este valoarea implicitã a fiºierului overall_header, e.g. overall_header.tpl.'; $lang['Portal_Overall_footer'] = 'Fiºier Overall Footer (valoare impicitã)'; $lang['Portal_Overall_footer_explain'] = '- Aceasta este valoarea implicitã a fiºierului overall_footer, e.g. overall_footer.tpl.'; $lang['Portal_Main_layout'] = 'Fiºier Main Layout (valoare impicitã)'; $lang['Portal_Main_layout_explain'] = '- This is the default template main_layout file, e.g. mx_main_layout.tpl.'; $lang['Portal_Navigation_block'] = 'Overall Header Navigation Block (valoare impicitã)'; $lang['Portal_Navigation_block_explain'] = '- This is the default template overall_header navigation block.'; $lang['Default_style'] = 'Style Pagini Portal (implicit)'; $lang['Default_admin_style'] = 'Style AdminCP'; $lang['Select_page_style'] = 'Selecteazã (ori foloseºte implicit)'; $lang['Override_style'] = 'Supracrie stilul utilizatorului'; $lang['Override_style_explain'] = 'Înlocuieºte stilul utilizatorului cu cel implicit (pentru pagini)'; $lang['Portal_status'] = 'Stare Portal'; $lang['Portal_status_explain'] = 'Un switch, când reconstruiþi website-ul. Doar administratorul poate sã vadã paginile ºi sã navigheze normal. Când e dezactivat mesajul de mai jos va fi afiºat.'; $lang['Disabled_message'] = 'Mesaj când portalul e dezactivat'; $lang['Portal_Backend'] = 'Utilizator Intern/Sesiune Backend'; $lang['Portal_Backend_explain'] = 'Selecteazã intern, phpBB2 sau phpBB3 sessiuni ºi utilizatori'; $lang['Portal_Backend_path'] = 'Cale relativã pentru phpBB [non-intern]'; $lang['Portal_Backend_path_explain'] = 'Dacã folosiþi sessiuni ºi utilizatori non-interne, introduceþi calea relativã cãtre phpbb, ex \'phpBB2/\' sau \'../phpBB2/\'. Notã: slaºurile sunt importante.'; $lang['Portal_Backend_submit'] = 'Modificã ºi valideazã Backendul'; $lang['Portal_config_valid'] = 'Statut Backend Curent: '; $lang['Portal_config_valid_true'] = '<b><font color=\"green\">Valid</font></b>'; $lang['Portal_config_valid_false'] = '<b><font color=\"red\">Instalare Invalidã. Sau calea cãtre phpBB este greºitã ori phpBB nu este instalat (baza de date phpBB nu este disponibilã). Deci, este folosit backend \'intern\'.</font></b>'; // // Module Management // $lang['Module_admin'] = 'Administraþie Module'; $lang['Module_admin_explain'] = 'Foloseºte acest form pentru a administra modulele: instalare, upgradare ºi dezvoltare module.<br /><b>Pentru a folosi acest panou, trebuie sã ai JavaScript ºi cooki-urile activate în browser!</b>'; $lang['Modulecp_admin'] = 'Panou de Control Module'; $lang['Modulecp_admin_explain'] = 'Foloseºte acest form pentru a administra modulele: funcþii bloc (parametrii) ºi blocuri portal.<br /><b>Pentru a folosi acest panou, trebuie sã ai JavaScript ºi cooki-urile activate în browser!</b>'; $lang['Modules'] = 'Module'; $lang['Module'] = 'Modul'; $lang['Module_delete'] = 'ªterge un Modul'; $lang['Module_delete_explain'] = 'Foloseºte acest form pentru a ºterge un Modul (sau funcþie bloc)'; $lang['Edit_module'] = 'Editeazã un Modul'; $lang['Create_module'] = 'Creazã Modul Nou'; $lang['Module_name'] = 'Nume Modul'; $lang['Module_desc'] = 'Descripþie'; $lang['Module_path'] = 'Cale, ex: \'modules/mx_textblocks/\''; $lang['Module_include_admin'] = 'Include acest modul în panoul din stânga Navigare Admin Meniu'; // // Module Installation // $lang['Module_delete_db'] = 'Chiar vrei sã dezinstalezi acest Modul? Atenþie: O sã pierzi tote datele modulului. Considerã upgradare în loc...'; $lang['Click_module_delete_yes'] = 'Click %sAici%s pt. a dezinstala modulul'; $lang['Click_module_upgrade_yes'] = 'Click %sAici%s pt. a upgrada modulul'; $lang['Click_module_export_yes'] = 'Click %sAici%s pt. a exporta modulul'; $lang['Error_no_db_install'] = 'Eroare: Fiºierul db_install.php nu existã. Te rog verificã ºi încearcã din nou...'; $lang['Error_no_db_uninstall'] = 'Eroare: Fiºierul db_uninstall.php nu existã, sau funcþia de dezinstalare nu este suportatã în acest modul. Te rog verificã aceasta ºi încearcã din nou...'; $lang['Error_no_db_upgrade'] = 'Eroare: Fiºierul db_upgrade.php nu existã, sau funþia de upgradare nu este suportatã în acest modul. Te rog verificã aceasta ºi încearcã din nou...'; $lang['Error_module_installed'] = 'Eroare: Acest modul este deja instalat! Te rog înainte ori ºterge modulul, ori upgradeazã modul.'; $lang['Uninstall_module'] = 'Dezinstaleazã Modul'; $lang['import_module_pack'] = 'Instaleazã Modul'; $lang['import_module_pack_explain'] = 'Aceasta va adauga un modul la portal. Asigurate cã Pachetul Modulului este uploadat în folderul /modules. Þine minte sã foloseºti unltima versiune de Modul!'; $lang['upgrade_module_pack'] = 'Upgradare Modul'; $lang['upgrade_module_pack_explain'] = 'Aceasta va upgrada modulul tãu. Asigurãte cã ai citit Documentaþia Modulului înainte de a proceda, sau poþi risca pierderi de date la modul.'; $lang['export_module_pack'] = 'Exportare Modul'; $lang['Export_Module'] = 'Selecteazã un Modul:'; $lang['export_module_pack_explain'] = 'Aceasta va exporta fiºierul *.pak al modulului. Aceasta este intentat pentru scriitori de module numai...'; $lang['Module_Config_updated'] = 'Configuraþia Modulului Actualizatã cu Succes'; $lang['Click_return_module_admin'] = 'Click %sAici%s pt. a te întoarce la Administraþie Module'; $lang['Module_updated'] = 'Informaþiile Modulului Actualizate cu Succes'; $lang['list_of_queries'] = 'This is the result list of the SQL queries needed for the install/upgrade'; $lang['already_added'] = 'Error or Already added'; $lang['added_upgraded'] = 'Added/Updated'; $lang['upgrading_mods'] = 'If you get some Errors, Already Added or Updated messages, relax, this is normal when updating mods'; $lang['module_upgrade'] = 'This is a upgrade'; $lang['fresh_install'] = 'This is a fresh install'; $lang['module_install_info'] = 'Mod Installation/Upgrading/Uninstalling Information - mod specific db tables'; // // Functions & Parameters Administration // $lang['Function_admin'] = 'Administraþie Funcþiune Bloc'; $lang['Function_admin_explain'] = 'Modulele au una sau mai multe Funcþiuni Bloc. Foloseºte acest form pt. a edita, ºi, sau ºterge Funcþiunea unui Bloc'; $lang['Function'] = 'Funcþiune Bloc'; $lang['Function_name'] = 'Nume Funcþiune Bloc'; $lang['Function_desc'] = 'Descripþie'; $lang['Function_file'] = 'Fiºier '; $lang['Function_admin_file'] = 'Fiºier (Script Editare Bloc) <br /> Parametrii extra pentru acest panou editare bloc. Lasã blank (gol) pentru a folosi panoul de editare implicit.'; $lang['Create_function'] = 'Funcþiune Editare Bloc Nou'; $lang['Delete_function'] = 'Funcþiune ªtergere Block'; $lang['Delete_function_explain'] = 'Acesta va ºterge funcþiunea ºi toate blocurile portalului asociate. Atenþie, aceastã operaþie nu este reversibilã!'; $lang['Click_function_delete_yes'] = 'Click %sAici%s pt. a ºterge Funcþiunea'; $lang['Parameter_admin'] = 'Administrare Parametru Funcþiune'; $lang['Parameter_admin_explain'] = 'Listeazã toþi Parametrii pt. aceastã Funcþiune'; $lang['Parameter'] = 'Parametru'; $lang['Parameter_name'] = '<b>Nume Parametru</b><br />- pt. a fi folosit pt. a accesa parametru'; $lang['Parameter_type'] = '<b>Tip Parametru</b>'; $lang['Parameter_default'] = '<b>Valoare Implicitã</b>'; $lang['Parameter_function'] = '<b>Funcþiune/Opþiuni</b>'; $lang['Parameter_function_explain'] = '<b>Funcþiune</b> (când foloseºti tipul \'Funcþiune\')<br />- Poþi pasa data parametrului la o funcþiune externã <br /> pt. a genera câmpul form al parametrului.<br />- De exemplu: <br />get_list_formatted(\"block_list\",\"{parameter_value}\",\"{parameter_id}[]\")'; $lang['Parameter_function_explain'] .= '<br /><br /><b>Opþiune(s)</b> (când foloseºti \'Selecþie\' tipuri parametri)<br />- Pentru toþi parametri selecþiei (butoane radio, boxe verificare ºi meniuri) toate opþiunile sunt listate aici, o opþiune per linie.'; $lang['Parameter_auth'] = '<b>Admin/Bloc ºi Moderatori numai</b>'; $lang['Parameters'] = 'Parametrii'; $lang['Parameter_id'] = 'ID'; $lang['Create_parameter'] = 'Adaugã Parametru Nou'; $lang['Delete_parameter'] = 'ªterge Funcþiune Parametru'; $lang['Delete_parameter_explain'] = 'Acesta va ºterge parametru ºi va actualiza toate blocurile portalului asociate. Atenþie, aceastã operaþie nu este reversibilã!'; $lang['Click_parameter_delete_yes'] = 'Click %sAici%s pentru a ºterge Parametru'; // // Parameter Types // $lang['ParType_BBText'] = 'Simplu BBText BlocText'; $lang['ParType_BBText_info'] = 'Acesta este un simplu bloctext, permite bbcod-uri'; $lang['ParType_Html'] = 'Simplu Html BlocText'; $lang['ParType_Html_info'] = 'Acesta este un simplu bloctext, permite html'; $lang['ParType_Text'] = 'Text Obiºnuit (singur-rând)'; $lang['ParType_Text_info'] = 'Acesta este un simplu câmp de text'; $lang['ParType_TextArea'] = 'Zona Text Obiºnuit (multiple-rânduri)'; $lang['ParType_TextArea_info'] = 'Acesta este o simplã zonã câmp de text'; $lang['ParType_Boolean'] = 'Boolean'; $lang['ParType_Boolean_info'] = 'Acesta este un \'da\' sau \'nu\' comutator radio.'; $lang['ParType_Number'] = 'Numãr Obiºnuit'; $lang['ParType_Number_info'] = 'Acesta este un simplu câmp de numar'; $lang['ParType_Function'] = 'Funcþie Parametru'; $lang['ParType_Values'] = 'Valori'; $lang['ParType_Radio_single_select'] = 'Singur-Selecþie Buton Radio'; $lang['ParType_Radio_single_select_info'] = ''; $lang['ParType_Menu_single_select'] = 'Singur-Selecþie Meniu'; $lang['ParType_Menu_single_select_info'] = ''; $lang['ParType_Menu_multiple_select'] = 'Multiplu-Selecþie Meniu'; $lang['ParType_Menu_multiple_select_info'] = ''; $lang['ParType_Checkbox_multiple_select'] = 'Multiplu-Selecþie Boxã Verificare'; $lang['ParType_Checkbox_multiple_select_info'] = ''; // // Blocks Administration // $lang['Block_admin'] = 'Panou de Contol Bloc'; $lang['Block_admin_explain'] = 'Foloseºte acest form pentru a administra Blocurile Portalului.<br /><b>Pentru a folosi acest panou, trebuie sã ai JavaScript ºi cooki-urile activate în browser!</b>'; $lang['Block'] = 'Bloc'; $lang['Show_title'] = 'Arata Titlu Bloc?'; $lang['Show_title_explain'] = 'Dacã ori nu se aratã titlul blocului'; $lang['Show_block'] = 'Aratã Bloc?'; $lang['Show_block_explain'] = '- Daca \'nu\', Blocul este ascuns pt. toþi utilizatorii, exceptând administratorii'; $lang['Show_stats'] = 'Aratã Statistice?'; $lang['Show_stats_explain'] = '- Daca \'da\', \'editat de...\' va fi afiºat langã bloc'; $lang['Show_blocks'] = 'Vizualizezã Funcþia Blocurilor'; $lang['Block_delete'] = 'ªterge un Bloc'; $lang['Block_delete_explain'] = 'Foloseºte acest form pt. a ºterge un Bloc (ori coloanã)'; $lang['Block_title'] = 'Titlu'; $lang['Block_desc'] = 'Descripþie'; $lang['Add_Block'] = 'Adaugã Bloc Nou'; $lang['Auth_Block'] = 'Permisii'; $lang['Auth_Block_explain'] = 'TOÞI: Toþi utilizatorii<br />REG: utilizatori Înregistraþi<br />PRIVAT: Memberi Grup (vezi permisiile avansate)<br />MOD: bloc moderatori (vezi permisiile avansate)<br />ADMIN: Admin<br />ANONYMOUS: NUMAI utilizatori vizitatori'; $lang['Block_quick_stats'] = 'Statistice Rapid'; $lang['Block_quick_edit'] = 'Editare Rapidã'; $lang['Create_block'] = 'Creare Bloc Nou'; $lang['Delete_block'] = 'ªterge Bloc din Portal'; $lang['Delete_block_explain'] = 'Acesta va ºterge blocul ºi va actualiza toate paginile portalului asociate. Atenþie, aceastã operaþie nu este reversibilã!'; $lang['Click_block_delete_yes'] = 'Click %sAici%s pt. a ºterge Blocul'; // // BlockCP Administration // $lang['Block_cp'] = 'BlockCP'; $lang['Click_return_blockCP_admin'] = 'Click %sAici%s pt. întoarcere la Panoul de Control Bloc'; $lang['Click_return_portalpage_admin'] = 'Click %sAici%s pt. întoarcere la Pagina Portalului'; $lang['BlockCP_Config_updated'] = 'Blocul a fost Actualizat...'; // // Pages Administration // $lang['Page_admin'] = 'Page Administration'; $lang['Page_admin_explain'] = 'Use this form to add, delete and change the settings for Portal Pages and Page Templates.<br /><b>To use this panel, you need to have JavaScript and cookies enabled in your browser!</b>'; $lang['Page_admin_edit'] = 'Page Edit'; $lang['Page_admin_private'] = 'Advanced Page (PRIVATE) Permissions'; $lang['Page_admin_settings'] = 'Page Settings'; $lang['Page_admin_new_page'] = 'New Page Administration'; $lang['Page'] = 'Page'; $lang['Page_Id'] = 'Page ID'; $lang['Page_icon'] = 'Page Icon <br /> - to be used in the adminCP only, eg. icon_home.gif (default)'; $lang['Page_alt_icon'] = 'Alternative Page Icon <br /> - Full url (http://...) to custom page icon.'; $lang['Default_page_style'] = 'Portal Style (default)<br />To use the default setting, leave this unset.'; $lang['Override_page_style'] = 'Override user style'; $lang['Override_page_style_explain'] = ' '; $lang['Page_header'] = 'Page header file <br /> - i.e. overall_header.tpl (default), overall_noheader.tpl (no header) or user custom header file.<br />To use the default setting, leave this blank.'; $lang['Page_footer'] = 'Page footer file <br /> - i.e. overall_footer.tpl (default) or user custom footer file.<br />To use the default setting, leave this blank.'; $lang['Page_main_layout'] = 'Page main layout file <br /> - i.e. mx_main_layout.tpl (default) or user custom header file.<br />To use the default setting, leave this blank.'; $lang['Page_Navigation_block'] = 'Page header navigation block'; $lang['Page_Navigation_block_explain'] = '- This is the page header navigation block, provided you\'ve chosen a overall header file which supports page navigation.<br />To use the default setting, leave this unset.'; $lang['Auth_Page'] = 'Permissions'; $lang['Select_sort_method'] = 'Select Sort Method'; $lang['Order'] = 'Order'; $lang['Sort'] = 'Sort'; $lang['Width'] = 'Width'; $lang['Height'] = 'Height'; $lang['Page_sort_title'] = 'Page title'; $lang['Page_sort_desc'] = 'Page description'; $lang['Page_sort_created'] = 'Page created'; $lang['Sort_Ascending'] = 'ASC'; $lang['Sort_Descending'] = 'DESC'; $lang['Return_to_page'] = 'Return to Portal Page'; $lang['Auth_Page_group'] = '-> PRIVATE Group'; $lang['Page_desc'] = 'Description'; $lang['Page_parent'] = 'Parent Page'; $lang['Add_Page'] = 'Add New Page'; $lang['Page_Config_updated'] = 'Page Configuration Updated Successfully'; $lang['Click_return_page_admin'] = 'Click %sHere%s to return to Page Administration'; $lang['Remove_block'] = 'Remove Portal Block'; $lang['Remove_block_explain'] = 'This will remove the block from this page. Beware: this operation cannot be undone!'; $lang['Click_block_remove_yes'] = 'Click %sHere%s to remove the Block'; $lang['Delete_page'] = 'Delete Page'; $lang['Delete_page_explain'] = 'This will delete the Page. Beware: this operation cannot be undone!'; $lang['Click_page_delete_yes'] = 'Click %sHere%s to delete the Page'; $lang['Mx_IP_filter'] = 'IP Filter'; $lang['Mx_IP_filter_explain'] = 'To restrict access to this page by IP, enter the valid IP adresses, with one IP address per line.<br>Example: 127.0.0.1 or 127.1.*.*'; $lang['Mx_phpBB_stats'] = 'phpBB Statistics in Header'; $lang['Mx_phpBB_stats_explain'] = '- Links to new, unread posts, etc.'; $lang['Column_admin'] = 'Page Column Administration'; $lang['Column_admin_explain'] = 'Administrate Page Columns'; $lang['Column'] = 'Page Column'; $lang['Columns'] = 'Page Columns'; $lang['Column_block'] = 'Page Column Block'; $lang['Column_blocks'] = 'Page Column Blocks'; $lang['Edit_Column'] = 'Edit a Column'; $lang['Edit_Column_explain'] = 'Use this form to modify a column'; $lang['Column_Size'] = 'Size of the column'; $lang['Column_name'] = 'Column Name'; $lang['Column_delete'] = 'Delete a Column'; $lang['Page_updated'] = 'Page and Column information updated successfully'; $lang['Create_column'] = 'Add New Column'; $lang['Delete_page_column'] = 'Delete Page Column'; $lang['Delete_page_column_explain'] = 'This will delete the Page Column. Beware: this operation cannot be undone!'; $lang['Click_page_column_delete_yes'] = 'Click %sHere%s to delete the Page Column'; $lang['Add_Split_Block'] = 'Add Split Column Block'; $lang['Add_Split_Block_explain'] = 'This block splits the column'; $lang['Add_Dynamic_Block'] = 'Add Dynamic (Sub) Block'; $lang['Add_Dynamic_Block_explain'] = 'This dynamic block defines subpages, set from the navigation menu'; $lang['Add_Virtual_Block'] = 'Add Virtual (Page Blog) Block'; $lang['Add_Virtual_Block_explain'] = 'This block turns the page into a virtual (blog) page'; // // Page templates // $lang['Page_templates_admin'] = 'Page Templates Administration'; $lang['Page_templates_admin_explain'] = 'Use this page to create, edit or delete Page Templates'; $lang['Page_template'] = 'Page Template'; $lang['Page_templates'] = 'Page Templates'; $lang['Page_template_column'] = 'Page Template Column'; $lang['Page_template_columns'] = 'Page Template Columns'; $lang['Choose_page_template'] = 'Choose Page Template'; $lang['Template_Config_updated'] = 'Template Configuration Updated'; $lang['Add_Template'] = 'Add New Template'; $lang['Template'] = 'Template'; $lang['Template_name'] = 'Template Name'; $lang['Page_template_delete'] = 'Delete Template'; $lang['Delete_page_template'] = 'Delete Page Template'; $lang['Delete_page_template_explain'] = 'This will delete the Page Template. Beware: this operation cannot be undone!'; $lang['Click_page_template_delete_yes'] = 'Click %sHere%s to delete the Page Template'; $lang['Delete_page_template_column'] = 'Delete Page Template'; $lang['Delete_page_template_column_explain'] = 'This will delete the Page Template. Beware: this operation cannot be undone!'; $lang['Click_page_template_column_delete_yes'] = 'Click %sHere%s to delete the Page Template'; // // Pages Administration // $lang['Page_admin'] = 'Administraþia Paginii'; $lang['Page_admin_explain'] = 'Foloseºte acest form pt. a adãuga, ºterge ºi schimba setarile pentru Paginile Portalului ºi Paginile Templaturi.<br /><b>Pentru a folosi acest panou, trebuie sã ai JavaScript ºi cooki-urile activate în browser!</b>'; $lang['Page_admin_edit'] = 'Editare Pagina'; $lang['Page_admin_private'] = 'Pagina Avansatã (PRIVAT) Permisii'; $lang['Page_admin_settings'] = 'Setari Paginã'; $lang['Page_admin_new_page'] = 'Administraþie Pagina Noua'; $lang['Page'] = 'Paginã'; $lang['Page_Id'] = 'ID Paginã'; $lang['Page_icon'] = 'Iconiþa Paginii <br /> - pt. a fi folositã numai în AdminCP, ex. icon_home.gif (implicit)'; $lang['Page_header'] = 'Fiºier Header Pagina <br /> - de ex. overall_header.tpl (implicit), overall_noheader.tpl (farã header) ori fiºier header custom a utilizatorului.'; $lang['Auth_Page'] = 'Permisii'; $lang['Select_sort_method'] = 'Selecteazã Metoda de Sortare'; $lang['Order'] = 'Ordine'; $lang['Sort'] = 'Sortare'; $lang['Width'] = 'Lãþime'; $lang['Height'] = 'Înãlþime'; $lang['Page_sort_title'] = 'Titlu paginã'; $lang['Page_sort_desc'] = 'Descripþie paginã'; $lang['Page_sort_created'] = 'Pagina creatã'; $lang['Sort_Ascending'] = 'ASC'; $lang['Sort_Descending'] = 'DESC'; $lang['Return_to_page'] = 'Întoarcere la Pagina Portalului'; $lang['Auth_Page_group'] = '-> Grup PRIVAT'; $lang['Page_desc'] = 'Descripþie'; $lang['Page_graph_border'] = 'Graficã bordura paginii - fiºier prefix'; $lang['Page_graph_border_explain'] = 'Pentru a folosi grafica bordurii în jurul Blocurilor, specificã prefixul pentru fiºierele grafice aici. De exemplu, introdu \'border_\' pt. a folosi fiºierele: border_1-1.gif, border_1-2.gif,..., border_3-3.gif pentru matricea de 3x3 cu imagini-gif. Lasã blank (gol) pt. a dezactiva grafica bordurii (implicit).'; $lang['Add_Page'] = 'Adaugã Pagina Noua'; $lang['Page_Config_updated'] = 'Configuraþia Paginii Actualizatã cu Succes'; $lang['Click_return_page_admin'] = 'Click %sAici%s pt. întoarcere la Administratia Paginii'; $lang['Remove_block'] = 'Scoate Bloc al Portalului'; $lang['Remove_block_explain'] = 'Acesta va scoate blocul din acestã pagina. Atenþie, acestã operaþie nu este reversibilã!'; $lang['Click_block_remove_yes'] = 'Click %sAici%s pt. a scoate Blocul'; $lang['Delete_page'] = 'ªterge Pagina'; $lang['Delete_page_explain'] = 'Acesta va ºterge Pagina. Atenþie, acestã operaþie nu este reversibilã!'; $lang['Click_page_delete_yes'] = 'Click %sAici%s pt. a ºterge Pagina'; $lang['Mx_IP_filter'] = 'Filtru IP'; $lang['Mx_IP_filter_explain'] = 'Pentru a restrictiona accesul la acestã pagina dupã IP, introdu adresele IP valide - o adresã IP per linie.<br>Ex. 127.0.0.1 ori 127.1.*.*'; $lang['Mx_phpBB_stats'] = 'phpBB Statistice în Header'; $lang['Mx_phpBB_stats_explain'] = '- linkuri la postari noi/necitite etc'; $lang['Column_admin'] = 'Administraþie Coloane Paginã'; $lang['Column_admin_explain'] = 'Administreazã Coloanele Paginii'; $lang['Column'] = 'Coloana Paginii'; $lang['Columns'] = 'Coloanele Paginii'; $lang['Column_block'] = 'Bloc Coloanã Paginã'; $lang['Column_blocks'] = 'Blocuri Coloana Paginii'; $lang['Edit_Column'] = 'Editeazã o Coloanã'; $lang['Edit_Column_explain'] = 'Foloseºte acest form pt. a modifica o coloanã'; $lang['Column_Size'] = 'Mãrimea coloanei'; $lang['Column_name'] = 'Nume Coloanã'; $lang['Column_delete'] = 'ªterge o Coloanã'; $lang['Page_updated'] = 'Informaþia Paginii ºi Coloanei Actualizatã cu Succes'; $lang['Create_column'] = 'Adaugã Coloanã Nouã'; $lang['Delete_page_column'] = 'ªterge Coloana Paginii'; $lang['Delete_page_column_explain'] = 'Acesta va ºterge Coloana Paginii. Atenþie, acestã operaþie nu este reversibilã!'; $lang['Click_page_column_delete_yes'] = 'Click %sAici%s pt. a ºterge Colana Paginii'; $lang['Add_Split_Block'] = 'Add Split Column Block'; $lang['Add_Split_Block_explain'] = 'This block splits the column'; $lang['Add_Dynamic_Block'] = 'Add Dynamic (Sub) Block'; $lang['Add_Dynamic_Block_explain'] = 'This dynamic block defines subpages, set from the navigation menu'; $lang['Add_Virtual_Block'] = 'Add Virtual (Page Blog) Block'; $lang['Add_Virtual_Block_explain'] = 'This block turns the page into a virtual (blog) page'; // // Page templates // $lang['Page_templates_admin'] = 'Administartie Templaturi Paginã'; $lang['Page_templates_admin_explain'] = 'Foloseºte acesta pt. a crea, edita ori ºterge Templaturi'; $lang['Page_template'] = 'Template Paginã'; $lang['Page_templates'] = 'Templaturi Paginã'; $lang['Page_template_column'] = 'Coloanã Template Paginã'; $lang['Page_template_columns'] = 'Coloane Template Paginã'; $lang['Choose_page_template'] = 'Alege Templatul Paginii'; $lang['Template_Config_updated'] = 'Configuraþia Templetului a fost Actualizatã'; $lang['Add_Template'] = 'Adaugã Template Nou'; $lang['Template'] = 'Template'; $lang['Template_name'] = 'Nume Template'; $lang['Page_template_delete'] = 'ªterge Template'; $lang['Delete_page_template'] = 'ªterge Paginã Template'; $lang['Delete_page_template_explain'] = 'Acesta va ºterge Templatul Paginii. Atenþie, acestã operaþie nu este reversibilã!'; $lang['Click_page_template_delete_yes'] = 'Click %sAici%s pt. a ºterge Templatul Paginii'; $lang['Delete_page_template_column'] = 'ªterge Pagina Template'; $lang['Delete_page_template_column_explain'] = 'Acesta va ºterge Templatul Paginii. Atenþie, acestã operaþie nu este reversibilã!'; $lang['Click_page_template_column_delete_yes'] = 'Click %sAici%s pt. a ºterge Templatul Paginii'; // // Cache // $lang['Cache_dir_write_protect'] = 'Directorul tau cache este protejat la scriere. Nu s-a putut genera fiºierul cache'; $lang['Cache_generate'] = 'Fiºierele cache au fost generate.'; $lang['Cache_submit'] = 'Sã generez fiºierul cache?'; $lang['Cache_explain'] = 'Cu acestã opþiune poþi sã generezi toate fiºierele XML (fiºiere cache) odatã pentru toate blocurile portalului. Aceste fiºiere permit reducerea numãrului de cereri ale bazei de date necesare ºi îmbunãtãþesc performanþa portalului. <br />Noteazã: MXP cache trebuie activat (în Portal General Admin CP) petru ca aceste fiºiere sã fie folosite de sistem.<br>Mai Noteazã: fiºierele cache sunt create on the fly când sunt ºi blocurile de editare la fel.'; $lang['Generate_mx_cache'] = 'Genereazã Bloc Cache'; // // These are displayed in the drop down boxes for advanced // mode Module auth, try and keep them short! // $lang['Menu_Navigation'] = 'Meniu Navigare'; $lang['Portal_index'] = 'Index Portal'; $lang['Save_Settings'] = 'Salvare Setãri'; $lang['Translation_Tools'] = 'Unelte de Traducere'; $lang['Preview_portal'] = 'Previzualizare Portal'; // // META // $lang['Meta_admin'] = 'Administratie Meta Taguri'; $lang['Mega_admin_explain'] = 'Foloseste acest form sã customizezi meta tagurile tale'; $lang['Meta_Title'] = 'Titlu'; $lang['Meta_Author'] = 'Autor'; $lang['Meta_Copyright'] = 'Copyright'; $lang['Meta_Keywords'] = 'Cuvinte Cheie'; $lang['Meta_Keywords_explain'] = '(lista separatã de virgulã)'; $lang['Meta_Description'] = 'Descripþie'; $lang['Meta_Language'] = 'Cod Limbã'; $lang['Meta_Rating'] = 'Clasare'; $lang['Meta_Robots'] = 'Robots'; $lang['Meta_Pragma'] = 'Pragma no-cache'; $lang['Meta_Bookmark_icon'] = 'Bookmark Iconiþã'; $lang['Meta_Bookmark_explain'] = '(locaþie relativã)'; $lang['Meta_HTITLE'] = 'Setãri Extra Header'; $lang['Meta_data_updated'] = 'Fiºierul de date meta (mx_meta.inc) a fost actualizat!<br />Click %sAICI%s pt. intoarcere la Administraþie Meta Taguri.'; $lang['Meta_data_ioerror'] = 'Nu se poate deschide mx_meta.inc. Asigurãte cã fiºierul e writabil (chmod 777).'; // // Portal permissons // $lang['Mx_Block_Auth_Title'] = 'Permisii Bloc Privat'; $lang['Mx_Block_Auth_Explain'] = 'Aici poti sã configurezi Permisiile Blocului Privat'; $lang['Mx_Page_Auth_Title'] = 'Permisii Pagina Privatã'; $lang['Mx_Page_Auth_Explain'] = 'Aici poþi sã configurezi Permisiile Paginii Private'; $lang['Block_Auth_successfully'] = 'Permisiunile Blocului Actualizate cu Succes'; $lang['Click_return_block_auth'] = 'Click %sAici%s pt. întoarcere la Permisii Bloc Privat'; $lang['Page_Auth_successfully'] = 'Permisiunile Paginii Actualizate cu Succes'; $lang['Click_return_page_auth'] = 'Click %sAici%s pt. întoarcere la Permisii Pagina Privata'; $lang['AUTH_ALL'] = 'TOÞI'; $lang['AUTH_REG'] = 'REG'; $lang['AUTH_PRIVATE'] = 'PRIVAT'; $lang['AUTH_MOD'] = 'MOD'; $lang['AUTH_ADMIN'] = 'ADMIN'; $lang['AUTH_ANONYMOUS'] = 'ANONYMOUS'; // ----------------------------------- // BlockCP - Block Parameter Specific // ----------------------------------- // // General // $lang['target_block'] = 'Bloc Þinta'; $lang['target_block_explain'] = '- linkuri, date etc sunt referite cu acest bloc'; // // Split column // $lang['block_ids'] = 'Blocuri Sursã'; $lang['block_ids_explain'] = '- sã fie poziþionate stânga spre dreapta'; $lang['block_sizes'] = 'Marimi Bloc (separate de virgulã)'; $lang['block_sizes_explain'] = '- Poþi specifica mãrimile folosind numere (pixeli), procente (mãrimi relative, de ex. "40%") ori "*" pentru remainder.'; $lang['space_between'] = 'Spaþiu între blocuri'; // // Sitelog // $lang['log_filter_date'] = 'Filtru dupã timp'; $lang['log_filter_date_explain'] = '- Aratã loguri din sãptãmâna trecutã, luna, anul...'; $lang['numOfEvents'] = 'Numãr'; $lang['numOfEvents_explain'] = '- Numãr evenimente de arãtat'; // // IncludeX // $lang['x_listen'] = 'Ascultã (GET)'; $lang['x_iframe'] = 'IFrame'; $lang['x_textfile'] = 'Fiºier Text'; $lang['x_multimedia'] = 'WMP Multimedia'; $lang['x_pic'] = 'Picturã'; $lang['x_format'] = 'Fiºier text formatat'; $lang['x_mode'] = 'IncludeX mode:'; $lang['x_mode_explain'] = '- Blocul IncludeX opereazã în unul din urmatoarele moduri. Dacã modul \'Ascultã (GET)\' este selectat, modul pote fi setat de un url \'x_mode=mode\' ºi parametrul asociat cu \'x_1=, x_2=, etc\'.<br />Exemplu: Pentru a trimite un url la iframe foloseºte \'domain/index.php?page=x&x_mode=iframe&x_1=http://domain\' '; $lang['x_1'] = 'Variabila 1:'; $lang['x_1_explain'] = '- <i>IFrame:</i> url<br /><i>FiºierText:</i> cale relativã din radacinã (ex în \'/include_file/my_file.xxx\')<br /><i>Multimedia:</i> cale relativã din radacinã (ex în \'/include_file/my_file.xxx\')<br /><i>Pic:</i> cale relativã din radacinã (ex în \'/include_file/my_file.xxx\')<br /><i>Fiºier Text Formatat:</i> indisponibil'; $lang['x_2'] = 'Variabila 2:'; $lang['x_2_explain'] = '- <i>IFrame:</i> înaltime frame (pixeli)<br /><i>Multimedia:</i> lãþime (pixeli)'; $lang['x_3'] = 'Variabila 3:'; $lang['x_3_explain'] = '- <i>Multimedia:</i> înaltime (pixeli)'; // // Announcement // $lang['announce_nbr_display'] = 'Numãr Maxim de Mesaje care sã fie Afiºate'; $lang['announce_nbr_days'] = 'Numãr de Zile în care se Afiºeaza Mesaje'; $lang['announce_img'] = 'Imagine Anunþuri'; $lang['announce_img_sticky'] = 'Imagine Lipicioasã'; $lang['announce_img_normal'] = 'Imagine Mesaj Normal'; $lang['announce_img_global'] = 'Imagine Anunþuri Globale'; $lang['announce_display'] = 'Afiºeazã Mesaje Anunþ(uri) în acest Bloc'; $lang['announce_display_sticky'] = 'Afiseazã Lipicios(asã) în acest Bloc'; $lang['announce_display_normal'] = 'Afiseazã Mesaj(e) Normale în acest Bloc'; $lang['announce_display_global'] = 'Afiseazã Anunþurile Globale în acest Bloc'; $lang['announce_forum'] = 'Forumuri Sursã'; $lang['announce_forum_explain'] = '- Poþi face selecþii multiple<br />* Dacã nu este selectat nimic, toate forumurile autorizate vor fi vizibile'; // // Polls // $lang['Poll_Display'] = 'Care urnã vrei sã o afiºezi?'; $lang['poll_forum'] = 'Forumuri Sursã'; $lang['poll_forum_explain'] = '- Poþi face selecþii mutiple<br />* Dacã nimic nu este selectat, toate forumurile autorizate vor fi vizibile'; $lang['Not_Specified'] = 'Ne Specificat'; // // Dynamic Block // $lang['default_block_id'] = 'Bloc Implicit'; $lang['default_block_id_explain'] = '- Acesta este blocul implicit de afiºat, exceptând dacã un bloc dinamic este selectat'; // // Menu Navigation // $lang['menu_display_mode'] = 'Mod Plan'; $lang['menu_display_mode_explain '] = 'Mod plan Orizonal ori Vertical'; $lang['menu_page_sync'] = 'Luminezã cel curent?'; $lang['menu_page_sync_explain'] = 'Luminezã intrare la Meniul de Nav. curent...'; // // Version Checker // $lang['MXP_Version_up_to_date'] = 'Instalarea MXP este la zi. Nu existã actualizãri pentru versiunea ta de MXP.'; $lang['MXP_Version_outdated'] = 'Se pare ca instalarea ta MXP <b>nu</b> este la zi. Actualizãri existã pentru versiunea ta de MXP. Te rog vizitezã <a href="http://www.mx-publisher.com/index.php?page=4&action=file&file_id=2" target="_new">downloadare pachetul MXP Core</a> pt. a obþine ultima versiune.'; $lang['MXP_Latest_version_info'] = 'Ultima veriune disponibilã este <b>MXP %s</b>. '; $lang['MXP_Current_version_info'] = 'Tu ai <b>MXP %s</b>.'; $lang['MXP_Mailing_list_subscribe_reminder'] = 'Pentru ultimile informaþii de ºtiri ºi actualizãri pentru MXP, de ce nu <a href="http://lists.sourceforge.net/lists/listinfo/MXP-news" target="_new">înscriete la lista de mailuri</a>.'; $lang['Trans_title'] = 'Translate to your Language'; $lang['Trans_description'] = 'Use Translate Control Panel to translate portal to your language'; $lang['Trans_which_core'] = 'Which Part'; $lang['Trans_select_file'] = 'Select file to translate'; $lang['Trans_from_desc'] = 'Default language to translate from'; $lang['Trans_leave_orig'] = 'If not translated <b>leave original</b> text'; $lang['Trans_selected_file'] = 'Selected File'; $lang['Trans_lang_source'] = 'Source Language'; $lang['Trans_lang_dest'] = 'Destination Language'; $lang['Trans_lang_block'] = 'Language block'; $lang['Trans_save_file'] = 'Save language file'; // // Asta e tot lume! // // Translated from english to romanian by OryNider // ory...@rd... // http://pubory.uv.ro/ // // ------------------------------------------------- ?> --- NEW FILE: lang_main.php --- <?php /** * * @package mxBB Portal Core * @version $Id: lang_main.php,v 1.1 2009/10/18 04:16:14 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, 'ro'); $lang['USER_LANG'] = 'ro'; $lang['ENCODING'] = 'Widows-1250'; $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 // // General // $lang['Page_Not_Authorised'] = 'Ne pare rãu, dar nu eºti autorizat sã accesezi aceastã paginã.'; $lang['Execution_Stats'] = 'Pagina a generat %s querie - Timpul generãrii: %s secunde'; $lang['Redirect_login'] = 'Click %sAici%s sã te logezi.'; $lang['Show_admin_options'] = 'Aratã/Ascunde Opþiunile Admin pe Paginã: '; $lang['Block_updated_date'] = 'Updatat '; $lang['Block_updated_by'] = 'de '; $lang['Powered_by'] = 'Powered by '; $lang['mx_spacer'] = 'Spacer'; $lang['Yes'] = 'Da'; $lang['No'] = 'Nu'; $lang['Link'] = 'Legãturã'; $lang['Hidden_block'] = 'Block ascuns...'; $lang['Hidden_block_explain'] = 'Acest bloc este \'ascuns\', dar visibil deoarece eºti un admin/moderator.'; // // Overall Navigation Navigation // $lang['MX_home'] = 'Acasã'; $lang['MX_forum'] = 'Forum'; // // Core Blocks - Language // $lang['Change_default_lang'] = 'Seteazã Limba Implicitã'; $lang['Change_user_lang'] = 'Seteazã Limba Ta'; $lang['Portal_lang'] = 'LimbaCP'; $lang['Select_lang'] = 'Selecteazã Limba:'; // // Core Blocks - Theme // $lang['Change'] = 'Schimbã Acum'; $lang['Change_default_style'] = 'Seteazã Silul Implicit'; $lang['Change_user_style'] = 'Seteazã Stilul Tãu'; $lang['Theme'] = 'CP Temã/Stil'; // Blocktitle $lang['SelectTheme'] = 'Selecteazã Tema/Stilul:'; // // Core Blocks - Search // $lang['Mx_Page'] = 'Paginã'; $lang['Mx_Block'] = 'Secþiune'; // // Core Blocks - Site Log (and many last 'item' blocks) // $lang['No_items_found'] = 'Nimic nou de raportat. '; // // BlockCP // $lang['Block_Title'] = 'Titlu'; $lang['Block_Info'] = 'Informaþii'; $lang['Block_Config_updated'] = 'Configuraþia blocului actualizatã cu succes'; $lang['Block_Edit'] = 'Editeazã Bloc'; $lang['Block_Edit_dyn'] = 'Editeazã Blocul pãrinte dinamic'; $lang['Block_Edit_sub'] = 'Editeazã Blocul pãrinte împãrþit'; $lang['General_updated_return_settings'] = 'Configuraþia upgradatã cu succes...<br /><br />Click %saici%s pentru a continua.'; // %s petru parametrii URI - NU IL SCOATE $lang['General_update_error'] = 'Configuraþia nu se poate upgrada...'; // // Header // $lang['Mx_search_site'] = 'Site'; $lang['Mx_search_forum'] = 'Forum'; $lang['Mx_search_kb'] = 'Articole'; $lang['Mx_search_pafiledb'] = 'Download-uri'; $lang['Mx_search_google'] = 'Google'; $lang['Mx_new_search'] = 'Nouã Cãutare'; // // Copyrights page // $lang['mx_about_title'] = 'Despre mxBB Portal'; $lang['mx_copy_title'] = 'mxBB Portal Informaþii'; $lang['mx_copy_modules_title'] = 'Module mxBB Portal Instalate'; $lang['mx_copy_template_title'] = 'Despre stil'; $lang['mx_copy_translation_title'] = 'Despre traducere'; // 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'] = 'Traducerea în Limba Românã de <a href="http://www.mx-publisher.com/phpBB2/profile.php?mode=viewprofile&u=6605" target="_blank">FlorinCB</a>'; // // Installation // $lang['Please_remove_install_contrib'] = 'Te rog asigurã-te cã amândouã directoarele install/ ºi contrib/ sunt ºterse'; // // 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'; // // Asta e tot lume! // // Translated from english to romanian by OryNider // ory...@rd... // http://mx-publisher.com/ // (diacritics) // ------------------------------------------------- ?> --- 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...> - 2009-10-18 04:16:08
|
Update of /cvsroot/mxbb/core/includes/shared/phpbb2/language/lang_romanian_ansi In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv4100 Added Files: index.htm lang_admin.php lang_bbcode.php lang_faq.php lang_google_sitemap.php lang_main.php lang_main_glance.php search_stopwords.txt Log Message: fix --- NEW FILE: lang_google_sitemap.php --- <?php /*************************************************************************** * lang_google_sitemap.php [English] * ------------------- * begin : Feb 22, 2006 * copyright : (C) 2006 dcz * email : su...@mx... * * $Id: lang_google_sitemap.php,v 1.1 2009/10/18 04:16:00 orynider Exp $ * * ****************************************************************************/ /* Translation info : Feb 28, 2006 Ver. 1.0.1 copyright : (C) 2006 dcz This is the first version, please repport any errors. */ // // The format of this file is: // // ---> $lang["message"] = "text"; // // Specify your language character encoding... [optional] // // setlocale(LC_ALL, "en"); // ACP $lang['Sitemap_conf_title'] = 'Google Sitemaps'; $lang['Sitemap_conf_explain'] = "The Google sitemap system allows GoogleBot to find pages far away from the Home page easyer. This system generates a sitemapp index pointing to the different sitemaps available.<br /> You must register your sitemapIndex @ %sGoogle%s if you want to access some interesting stats."; $lang['Sitemap_conf_explain2'] = "You can proceed %sanonymous%s though"; $lang['Sitemap_settings'] = 'Google Sitemaps Settings'; $lang['Sql_limit'] = 'SQL cycle'; $lang['Sql_limit_explain'] = 'Major queries are sparated into several cycles in order not to overload the SQL server. This is the maximum number of topics to fetch within a single query'; $lang['Default_limit'] = 'Url Limit'; $lang['Default_limit_explain'] = 'Maximum number of url outputed in each sitemap.<br /> This limit being checked in every SQL cycle, the actual outputed number of url is this limit +- 1 SQL cycle +- number of paginated topics (limited or not) in the last cycle.<br />Limited by default to 40 000, knowing Google will go up to 50 000 per sitemap file. '; $lang['Sort_order'] = 'Sort Order'; $lang['New_first'] = 'DESC'; $lang['Old_first'] = 'ASC'; $lang['Sort_order_explain'] = 'All outputed links are sorted in the same way topics are sorted by default in phpbb (last activity DESC). <br /> You can set this to DESC for example if you whish to make it easyer for Google to find again links to archeological or locked threads (eg inactive for a looong time).'; $lang['Mod_rewrite_S'] = "Mod Rewrite Sitemaps"; $lang['Mod_rewrite_S_explain'] = "If activated, the sitemap's url will be rewrited.<br />CAUTION : you MUST run Apache server with mod rewrite activated and set up the .htaccess located in this release's contrib/ folder properly. <br /> NOTE : This will only affect the sitemaps url provided in the sitemap index. There is no problem for google to visit non url rewrited sitemaps."; $lang['Sitemap_Forum_set'] = 'Forums Sitemaps Settings'; $lang['Announce_priority'] = 'Announcement Priority'; $lang['Announce_priority_explain'] = 'Announcement Priority (must be a number between 0.0 & 1.0 inclusive)'; $lang['Sticky_priority'] = 'Sticky Priority'; $lang['Sticky_priority_explain'] = 'Sticky Priority (must be a number between 0.0 & 1.0 inclusive)'; $lang['Default_priority'] = 'Default Priority'; $lang['Default_priority_explain'] = 'Priority for regular topics (must be a number between 0.0 & 1.0 inclusive)'; $lang['Pagination_limit1'] = "Topic Pagination: Low Limit"; $lang['Pagination_limit_explain1'] = "Paginated topic link output is handeled. Enter here how many paginated topic pages, from the begining, are to be outputed.<br /> If set to 0, it won't output paginated links after the first topic page."; $lang['Pagination_limit2'] = "Topic Pagination: Upper Limit"; $lang['Pagination_limit_explain2'] = "Enter here how many paginated topic pages, starting from the last one, are to be outputed.<br /> If set to 0, it won't output paginated links before the last topic page."; $lang['KB_mx_page'] = "Kb mx page Id"; $lang['KB_mx_page_explain'] = "This only get used if kb is installed in a %smxBB PORTAL%s . If running phpbb stand alone, just not bother about this, it's just ment to know on which mx pages kb is installed.<br />CAUTION : If you don't set this to the right ID while using KB and mxBB you could end up pointing to 404!!"; $lang['Google_Config_updated'] = "Google sitemaps Configuration Updated Successfully"; $lang['Click_return_ggsitemap_config'] = "Click %sHere%s to return to the Google sitemaps Configuration"; // INSTALL $lang['Google_install'] = "<b>Installation mx Google Sitemaps : Default Param.</b><br/><br/>"; $lang['Google_install_ok'] = "Building required dB tables"; $lang['Google_error'] = "[Error or Already added]</font></b> line: "; $lang['Google_sql_ok'] = "[Added/Updated]</font></b> line: "; $lang['Google_general'] = "If you get some Errors, Already Added or Updated messages, relax, this is normal when updating modules"; $lang['Google_uninstall'] = "<b>This list is a result of the SQL queries needed for mx Google Sitemap module</b><br /><br />"; $lang['Google_uninstall_ok'] = "Sql : Ok."; $lang['Google_unerror'] = "[Error, Already deleted or updated]</font></b> line: "; $lang['Google_unsql_ok'] = "[Deleted/Updated]</font></b> line: "; $lang['Google_uninstal_info'] = "Module Uninstallation Information"; $lang['Google_instal_info'] = "Module Installation Information"; // // That's all Folks! // ------------------------------------------------- ?> --- NEW FILE: search_stopwords.txt --- (This appears to be a binary file; contents omitted.) --- NEW FILE: lang_faq.php --- (This appears to be a binary file; contents omitted.) --- NEW FILE: lang_main.php --- (This appears to be a binary file; contents omitted.) --- NEW FILE: lang_admin.php --- (This appears to be a binary file; contents omitted.) --- NEW FILE: lang_main_glance.php --- <?php // // The format of this file is: // // ---> $lang["message"] = "text"; // // Specify your language character encoding... [optional] // // setlocale(LC_ALL, "en"); setlocale(LC_ALL, "ro"); // Module $lang['block_title'] = "Latest News and Topics"; $lang['glance_news_heading'] = "Ultimile Noutãþi"; $lang['glance_recent_heading'] = "Discuþii Recente"; $lang['comments'] = 'comentarii'; $lang['writen_by'] = 'scris de'; $lang['last_by'] = 'ultimul mesaj'; $lang['last_reply'] = 'utimul mesaj la'; // // That's all Folks! // ------------------------------------------------- ?> --- NEW FILE: lang_bbcode.php --- (This appears to be a binary file; contents omitted.) --- 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> |
Update of /cvsroot/mxbb/core/includes/shared/phpbb2/language/lang_romanian_ansi/email In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv4100/email Added Files: admin_activate.tpl admin_send_email.tpl admin_welcome_activated.tpl admin_welcome_inactive.tpl coppa_welcome_inactive.tpl group_added.tpl group_approved.tpl group_request.tpl index.htm privmsg_notify.tpl profile_send_email.tpl topic_notify.tpl user_activate.tpl user_activate_passwd.tpl user_welcome.tpl user_welcome_inactive.tpl Log Message: fix --- NEW FILE: user_activate.tpl --- (This appears to be a binary file; contents omitted.) --- NEW FILE: profile_send_email.tpl --- (This appears to be a binary file; contents omitted.) --- NEW FILE: privmsg_notify.tpl --- (This appears to be a binary file; contents omitted.) --- NEW FILE: admin_send_email.tpl --- (This appears to be a binary file; contents omitted.) --- NEW FILE: group_request.tpl --- (This appears to be a binary file; contents omitted.) --- NEW FILE: admin_welcome_activated.tpl --- (This appears to be a binary file; contents omitted.) --- NEW FILE: user_welcome_inactive.tpl --- (This appears to be a binary file; contents omitted.) --- NEW FILE: index.htm --- <html> <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body bgcolor="#FFFFFF" text="#000000"> </body> </html> --- NEW FILE: user_welcome.tpl --- (This appears to be a binary file; contents omitted.) --- NEW FILE: admin_welcome_inactive.tpl --- (This appears to be a binary file; contents omitted.) --- NEW FILE: topic_notify.tpl --- (This appears to be a binary file; contents omitted.) --- NEW FILE: coppa_welcome_inactive.tpl --- (This appears to be a binary file; contents omitted.) --- NEW FILE: group_added.tpl --- (This appears to be a binary file; contents omitted.) --- NEW FILE: admin_activate.tpl --- (This appears to be a binary file; contents omitted.) --- NEW FILE: user_activate_passwd.tpl --- (This appears to be a binary file; contents omitted.) --- NEW FILE: group_approved.tpl --- (This appears to be a binary file; contents omitted.) |
|
From: FlorinCB <ory...@us...> - 2009-10-18 04:15:55
|
Update of /cvsroot/mxbb/mx_calsnails In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv4073 Modified Files: CalSnails_Lite.pak Log Message: fix Index: CalSnails_Lite.pak =================================================================== RCS file: /cvsroot/mxbb/mx_calsnails/CalSnails_Lite.pak,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** CalSnails_Lite.pak 9 Jul 2007 22:37:25 -0000 1.14 --- CalSnails_Lite.pak 18 Oct 2009 04:15:45 -0000 1.15 *************** *** 33,35 **** --- 33,43 ---- parameter=+:0=+:0=+:0=+:endoflist=+:0=+:0 block=+:=+:Demo - Calendar Querys1=+:Demo block=+:56=+:0=+:5=+:0=+:0=+:0=+:0=+:1=+:1 + New_function=+:---------------------------=+:0=+:0=+:0=+:0=+:0 + function=+:54=+:53=+:CalSnails Lite=+:Main Calendar Lite script=+:mx_today_calendar.php=+: + parameter=+:53=+:97=+:cal_mod_group=+:Function=+:0=+:mx_get_groups("{parameter_value}","{parameter_id}[]")=+:0=+:0 + parameter=+:53=+:98=+:auth_reg=+:Function=+:2=+:get_list_static("{parameter_id}[]",array("No access","View only","View,Suggest","View,Add","View,Add(Edit/Delete own)"),"{parameter_value}")=+:0=+:0 + parameter=+:53=+:99=+:cal_filter=+:Boolean=+:0=+:=+:0=+:0 + parameter=+:53=+:100=+:auth_all=+:Function=+:2=+:get_list_static("{parameter_id}[]",array("No access","View only","View,Suggest","View,Add","View,Add(Edit/Delete own)"),"{parameter_value}")=+:0=+:0 + parameter=+:0=+:0=+:0=+:endoflist=+:0=+:0 + block=+:=+:Today - CalSnails Lite=+:Demo block=+:53=+:0=+:5=+:0=+:0=+:0=+:0=+:1=+:1 function=+:0=+:0=+:0=+:endoflist=+:0=+:0 |
|
From: FlorinCB <ory...@us...> - 2009-10-18 04:15:42
|
Update of /cvsroot/mxbb/core/includes/db In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv4056 Modified Files: mssql.php mysql.php mysql4.php mysqli.php Log Message: fix Index: mysql4.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/db/mysql4.php,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** mysql4.php 1 Nov 2008 11:34:54 -0000 1.22 --- mysql4.php 18 Oct 2009 04:15:32 -0000 1.23 *************** *** 65,69 **** if (version_compare($this->mysql_version, '4.1.3', '>=')) { ! if (UTF_STATUS === 'phpbb3') { @mysql_query("SET NAMES 'utf8'", $this->db_connect_id); --- 65,69 ---- if (version_compare($this->mysql_version, '4.1.3', '>=')) { ! if (defined('UTF_STATUS') && (UTF_STATUS === 'phpbb3')) { @mysql_query("SET NAMES 'utf8'", $this->db_connect_id); Index: mysqli.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/db/mysqli.php,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** mysqli.php 1 Nov 2008 11:34:54 -0000 1.22 --- mysqli.php 18 Oct 2009 04:15:32 -0000 1.23 *************** *** 40,43 **** --- 40,44 ---- /** * Connect to server + * downgraded for phpBB2 backend */ function sql_connect($sqlserver, $sqluser, $sqlpassword, $database, $port = false, $persistency = false , $new_link = false) *************** *** 55,63 **** { // mysqli only supported by phpBB3 ! //if (UTF_STATUS === 'phpbb3') ! //{ ! @mysqli_query($this->db_connect_id, "SET NAMES 'utf8'"); ! // enforce strict mode on databases that support it ! //} if (mysqli_get_server_version($this->db_connect_id) >= 50002) { --- 56,63 ---- { // mysqli only supported by phpBB3 ! if (defined('UTF_STATUS') && (UTF_STATUS === 'phpbb3')) ! { ! @mysqli_query($this->db_connect_id, "SET NAMES 'utf8'"); // enforce strict mode on databases that support it ! } if (mysqli_get_server_version($this->db_connect_id) >= 50002) { *************** *** 88,92 **** return $this->sql_error(''); ! } /** --- 88,92 ---- return $this->sql_error(''); ! } /** Index: mssql.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/db/mssql.php,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** mssql.php 1 Nov 2008 11:34:54 -0000 1.19 --- mssql.php 18 Oct 2009 04:15:32 -0000 1.20 *************** *** 37,40 **** --- 37,41 ---- /** * Connect to server + * downgraded for phpBB2 backend */ function sql_connect($sqlserver, $sqluser, $sqlpassword, $database, $port = false, $persistency = false, $new_link = false) *************** *** 45,53 **** $this->dbname = $database; - if (UTF_STATUS === 'phpbb3') - { - @ini_set('mssql.charset', 'UTF-8'); - // enforce strict mode on databases that support it - } @ini_set('mssql.textlimit', 2147483647); @ini_set('mssql.textsize', 2147483647); --- 46,49 ---- |
|
From: FlorinCB <ory...@us...> - 2009-10-18 04:15:28
|
Update of /cvsroot/mxbb/core/admin In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv4010/admin Modified Files: admin_mx_portal.php Log Message: fix Index: admin_mx_portal.php =================================================================== RCS file: /cvsroot/mxbb/core/admin/admin_mx_portal.php,v retrieving revision 1.49 retrieving revision 1.50 diff -C2 -d -r1.49 -r1.50 *** admin_mx_portal.php 1 Nov 2008 11:55:58 -0000 1.49 --- admin_mx_portal.php 18 Oct 2009 04:15:18 -0000 1.50 *************** *** 41,46 **** } ! $new['portal_name'] = $mx_request_vars->post('portal_name', MX_TYPE_NO_TAGS, 'MX-Publisher'); ! $new['portal_desc'] = $mx_request_vars->post('portal_desc', MX_TYPE_NO_TAGS, 'Modular system'); $new['portal_status'] = $mx_request_vars->post('portal_status', MX_TYPE_INT, '0'); $new['disabled_message'] = $mx_request_vars->post('disabled_message', MX_TYPE_NO_TAGS, 'Site disabled.'); --- 41,46 ---- } ! $new['portal_name'] = utf8_normalize_nfc($mx_request_vars->post('portal_name', MX_TYPE_NO_TAGS, 'MX-Publisher')); ! $new['portal_desc'] = utf8_normalize_nfc($mx_request_vars->post('portal_desc', MX_TYPE_NO_TAGS, 'Modular system')); $new['portal_status'] = $mx_request_vars->post('portal_status', MX_TYPE_INT, '0'); $new['disabled_message'] = $mx_request_vars->post('disabled_message', MX_TYPE_NO_TAGS, 'Site disabled.'); *************** *** 60,64 **** $new['cookie_domain'] = $mx_request_vars->post('cookie_domain', MX_TYPE_NO_TAGS, ''); $new['cookie_name'] = $mx_request_vars->post('cookie_name', MX_TYPE_NO_TAGS, ''); ! $new['cookie_name'] = str_replace('.', '_', $new['cookie_name']); $new['cookie_path'] = $mx_request_vars->post('cookie_path', MX_TYPE_NO_TAGS, ''); $new['cookie_secure'] = $mx_request_vars->post('cookie_secure', MX_TYPE_INT, ''); --- 60,64 ---- $new['cookie_domain'] = $mx_request_vars->post('cookie_domain', MX_TYPE_NO_TAGS, ''); $new['cookie_name'] = $mx_request_vars->post('cookie_name', MX_TYPE_NO_TAGS, ''); ! $new['cookie_name'] = str_replace('.', '_', $new['cookie_name']); $new['cookie_path'] = $mx_request_vars->post('cookie_path', MX_TYPE_NO_TAGS, ''); $new['cookie_secure'] = $mx_request_vars->post('cookie_secure', MX_TYPE_INT, ''); *************** *** 95,99 **** ! $sql = "UPDATE " . PORTAL_TABLE . " SET " . $db->sql_build_array('UPDATE', utf8_normalize_nfc($new)); if( !($db->sql_query($sql)) ) --- 95,99 ---- ! $sql = "UPDATE " . PORTAL_TABLE . " SET " . $db->sql_build_array('UPDATE', $new); if( !($db->sql_query($sql)) ) |
|
From: FlorinCB <ory...@us...> - 2009-10-18 04:15:27
|
Update of /cvsroot/mxbb/core/includes In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv4010/includes Modified Files: mx_functions_core.php Log Message: fix Index: mx_functions_core.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions_core.php,v retrieving revision 1.118 retrieving revision 1.119 diff -C2 -d -r1.118 -r1.119 *** mx_functions_core.php 8 Oct 2009 17:01:05 -0000 1.118 --- mx_functions_core.php 18 Oct 2009 04:15:18 -0000 1.119 *************** *** 61,65 **** * */ ! function load_backend() { global $db, $portal_config, $phpbb_root_path, $mx_root_path; --- 61,65 ---- * */ ! function load_backend($portal_backend = false) { global $db, $portal_config, $phpbb_root_path, $mx_root_path; *************** *** 76,80 **** $portal_config = $this->obtain_mxbb_config(false); } ! // // Load backend --- 76,88 ---- $portal_config = $this->obtain_mxbb_config(false); } ! ! // ! // Overwrite Backend ! // ! if ($portal_backend) ! { ! $portal_config['portal_backend'] = $portal_backend; ! } ! // // Load backend |
|
From: Culprit <cul...@us...> - 2009-10-15 15:58:48
|
Update of /cvsroot/mxbb/core/templates/prosilver/admin/images In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv22062/core/templates/prosilver/admin/images Modified Files: mxbb_logo.gif Log Message: prosilver - admin huge update Index: mxbb_logo.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/admin/images/mxbb_logo.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsAcpFhY and /tmp/cvsLVPabU differ |
|
From: Culprit <cul...@us...> - 2009-10-15 15:58:48
|
Update of /cvsroot/mxbb/core/templates/prosilver/theme In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv22062/core/templates/prosilver/theme Modified Files: content.css Added Files: mxPublisher.css Log Message: prosilver - admin huge update --- NEW FILE: mxPublisher.css --- .block { background-position: 0px -20px; } .blockbody { padding: 3px; margin-bottom: 4px; background-repeat: no-repeat; background-position: 100% 0; } .textbody { padding: 0; line-height: 1.48em; color: #333333; clear: both; } .textbody .ignore { font-size: 1.1em; } .textbody .content { font-size: 1.2em; } .textbody h3.first { /* The first post on the page uses this */ font-size: 1.5em; } .textbody h3 { /* Postbody requires a different h3 format - so change it here */ font-size: 1.4em; padding: 2px 0 0 0; margin: 0 0 0.3em 0 !important; text-transform: none; border: none; font-family: "Trebuchet MS", Verdana, Helvetica, Arial, sans-serif; line-height: 125%; } .textbody h3 img { /* Also see tweaks.css */ vertical-align: bottom; } .blockcp { width: 100%; border: 1px solid #CCCFD3; background-color: #FFFFFF; padding: 1px; } .blockcp th { padding: 3px 4px; color: #FFFFFF; background: #70AED3 url("./images/gradient2b.gif") bottom left repeat-x; border-top: 1px solid #6DACD2; border-bottom: 1px solid #327AA5; text-align: left; text-transform: uppercase; } .blockcp .row1 { background-color: #F9F9F9; } .blockcp .row2 { background-color: #DCEBFE; } .blockcp .explain { font-style:italic;font-weight:normal;} .blockcp fieldset { margin: 10px 10px 15px 10px; padding: 10px; border-top: 1px solid #D7D7D7; border-right: 1px solid #CCCCCC; border-bottom: 1px solid #CCCCCC; border-left: 1px solid #D7D7D7; background-color: #FFFFFF; position: relative; } .blockcp .delete { color: Red; } .blockcp fieldset.menurows { padding:1px; } .blockcp .row { padding: 3px 5px 3px 5px; } .blockcp .row:hover { background-color: #F6F4D0; } .blockcp legend { padding: 1px 0; font-family: Tahoma,arial,Verdana,Sans-serif; font-size: 1.0em; font-weight: bold; color: #115098; margin-top: -.3em; position: relative; text-transform: none; line-height: 1.2em; top: 0; vertical-align: middle; } /* Hide from macIE \*/ .blockcp legend { top: -1.2em; } /* end */ .blockcp fieldset dl:hover dt label { color: #000000; } .blockcp fieldset.fields2 dl:hover dt label { color: inherit; } /* Quick-login on index page */ .blockcp fieldset.quick-login input { background-color: #F2F3F3; } .blockcp fieldset dl { margin-bottom: 10px; font-size: 0.85em; } .blockcp fieldset dt { width: 45%; text-align: left; border: none; border-right: 1px solid #CCCCCC; padding-top: 3px; padding-right: 5px; margin-right:5px; font-weight: normal; text-transform: none; text-align: right; } .blockcp dt .explain { font-style: italic;} .blockcp dd { color: #666666; margin-left:5px; padding-left:5px;} .blockcp dd + dd { padding-top: 5px;} .blockcp dt span { padding: 0 5px 0 0;} .blockcp dd input { font-size: 1.00em; max-width: 100%; } .blockcp dd select { font-size: 100%; width: auto; max-width: 100%; } .blockcp dd textarea { font-size: 0.90em; width: 90%; } .blockcp dd select { width: auto; font-size: 1.00em; } .blockcp .dividers { border-top:solid 1px #CCCCCC; } .blockcp .dividers span{ top: -1.2em; } H1.blockcp { font-weight: normal; color: #28313F; border-bottom: 1px solid #CCCCCC; font-size: 1.6em; margin-top: 0.5em; margin-bottom: 0.5em; padding-bottom: 0.5em; } /***********\ |* SiteBar *| \***********/ .sitebar { clear: both; margin-top: 2px; background: #12A3EB url("./images/sitebar_bg.gif") repeat-x; } .sitebar .corners-bottom { top: -5px; margin-top:0px; position:relative; } .sitebar UL { margin-left: 0px; padding-bottom: 1px; font-weight: bold; } .sitebar UL LI { float:left; display:block; } .sitebar .button A.nav, .sitebar .button-current A.nav { text-decoration:none; background: #cadceb url("./images/sitebar_bg.gif") repeat-x; } .sitebar .button A.nav , .sitebar .button-current A.nav { font-size: 1.3em; padding: 3px 5px 3px 5px; color: #FFFFFF; display:block; text-decoration: none; } .sitebar .button-current A.nav { background-position: 0 -44px; color: #0a90d3; } .sitebar UL LI.button A.nav:active, .sitebar UL LI.button-current A.nav:active { background-color: #CCCCCC; background-image: url("./images/bg_active.gif"); background-position: -1px 0px; color: Red; } .sitebar UL LI.button A.nav:hover, .sitebar UL LI.button-current A.nav:hover { background-color: #CCCCCC; background-position: 0 -22px; color: #000000; } .linklist .icon { background-position: 0 50%; background-repeat: no-repeat; background-image: none; padding: 1px 0 0 17px; } UL.rightside { float: right; } .rtl ul.linklist li.rightside, .rtl p.rightside { float: right; margin-right: 0; margin-left: 5px; text-align: right; } /* Search box --------------------------------------------- */ #nav-search { color: #FFFFFF; position: relative; margin-top: 1px; margin-right: 5px; margin-bottom: 1px; display: block; float: right; text-align: right; white-space: nowrap; /* For Opera */ } .rtl #nav-search { float: left; text-align: left; margin-right: 0; margin-left: 5px; } #nav-search #keywords { width: 95px; background-color: #FFF; } #nav-search input { border: 1px solid #b0b0b0; } /* .button1 style defined later, just a few tweaks for the search button version */ #nav-search input.button1 { padding: 1px 5px; } #nav-search li { text-align: right; margin-top: 4px; } #nav-search img { vertical-align: middle; margin-right: 3px; } #tabs a span{ float: left; display: block; background: url("./images/bg_tabs2.gif") no-repeat 100% -35px; padding: 7px 10px 4px 4px; color: #767676; white-space: nowrap; font-family: Arial, Helvetica, sans-serif; text-transform: uppercase; font-weight: bold; } #tabs .activetab a span { background-position: 100% 0; padding-bottom: 5px; color: #23649F; } #tabs a:hover { background-position: 0 -69px; } #tabs a:hover span { background-position: 100% -69px; } #tabs .activetab a:hover span { color: #115098; } .fieldset1, .fieldset1 FIELDSET { border: solid 1px #CCCCCC; background-color: #FFFFFF; padding:10px; } .fieldset1 FORM * { font-size: 1.0em; } .row1 { background-color: #ECF3F7; } /* .bg1 */ .row2 { background-color: #e1ebf2; } /* .bg2 */ .row2 { background-color: #cadceb; } /* .bg3 */ .row4 { background-color: #EFEFEF; } .row5 { background-color: #DEE3E7; } .row6 { background-color: #D1D7DC; } /**********************\ |* HIDDEN TITLE BLOCK *| \**********************/ .forabg.no-title { background-image: none; background-color: #E3E3E3; /*border-bottom: 1px solid #536482; */ /*opacity: 0.5;*/ } .forabg.no-title li.header dt { color: #536482; } /*******************\ |* Navigation menu *| \*******************/ .topiclist.nav-menu.nav-menu { text-align:left; font-size: 1.0em; padding:6px 5px 3px 2px; width: auto; } .topiclist.nav-menu a.nav { } .topiclist.nav-menu .mnu-nm, .topiclist.nav-menu .mnu-nm:hover, .topiclist.nav-menu .mnu-nm-current, .topiclist.nav-menu .mnu-nm-current:hover { background-repeat: no-repeat; background-position: 0px 0px; padding-left: 10px; display:block; clear:both; margin-top:3px; margin-bottom:3px; } .topiclist.nav-menu .mnu-nm-current { background-position: 0px -30px; font-weight: bold; } .topiclist.nav-menu .mnu-nm:hover, .topiclist.nav-menu .mnu-nm-current:hover { background-position: 0px -15px; } /*******************\ |* Language select *| \*******************/ .navbar .post .postbody form select { width: 100%; } Index: content.css =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/theme/content.css,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** content.css 16 Dec 2007 21:04:58 -0000 1.3 --- content.css 15 Oct 2009 15:58:31 -0000 1.4 *************** *** 20,24 **** ul.topiclist dl { ! position: relative; } --- 20,24 ---- ul.topiclist dl { ! /*position: relative;*/ } |
|
From: Culprit <cul...@us...> - 2009-10-15 15:58:42
|
Update of /cvsroot/mxbb/core/templates/prosilver/admin In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv22062/core/templates/prosilver/admin Modified Files: admin_mx_portal.html mx_blockcp_admin_body.html mx_pagecp_admin_body.html mx_module_admin_body.html mx_modulecp_admin_body.html admin.css index_navigate.html Added Files: index_frameset.html styles_list_body.html Log Message: prosilver - admin huge update Index: mx_module_admin_body.html =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/admin/mx_module_admin_body.html,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** mx_module_admin_body.html 20 Feb 2008 12:55:18 -0000 1.4 --- mx_module_admin_body.html 15 Oct 2009 15:58:30 -0000 1.5 *************** *** 220,318 **** </div> <p style="clear:both"></p> <div class="panel"> <span class="corners-top"><span></span></span> ! <div class="acp"> ! <div class="inner bg3" style="margin:1.0em;"> <div>{RESULT_MESSAGE}</div> <!-- BEGIN module --> ! <div style="display:block;border-top:solid 1px #CCCCCC;clear:both;margin-top:0.1em;"> ! <div style="display:block;clear:both;margin-top:2px;"> ! <div style="float:left;width:40%;margin-top:0.3em;"> ! <div style="float:left"> ! <img name="adminModule_image_{module.MODULE_ID}" id="adminModule_image_{module.MODULE_ID}" src="{module.IMG_URL}" border="0" align="middle"> ! <span style="cursor:pointer" onclick="onMenuCatClick('{module.MODULE_ID}','adminModule_');"><img src="{IMG_ICON_MODULE}" border="0" align="middle" alt="" /></span> ! </div> ! <div style="float:left;margin-left:6px;"> ! <a href="javascript:onMenuCatClick('{module.MODULE_ID}','adminModule_');">{module.MODULE_TITLE}</a><br/> ! <span class="explain">{module.MODULE_DESCRIPTION}</span> ! <i>{module.MODULE_VERSION}</i> ! </div> ! </div> ! <div style="float:right;width:50%;margin-top:0.3em;text-align:right;"> ! <!-- BEGIN settings --> ! <span style="display:none"> ! <img src="{IMG_URL_EXPAND}" border="0" align="middle"> ! <a href="{module.U_MODULE}">{L_SETTING}</a> ! </span> <a href="{module.U_MODULE}" title="{L_SETTINGS}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_edit.gif" align="absmiddle"></a> - <!-- END settings --> - <!-- BEGIN settings --> - <span style="display:none"> - <span style="cursor:pointer;" onclick="onMenuCatClick('{module.MODULE_ID}','adminModuleUpgrade_');"> - <img name="adminModuleUpgrade_image_{module.MODULE_ID}" src="{module.IMG_URL_UPGRADE}" border="0" align="middle"> - </span> - <a href="javascript:onMenuCatClick('{module.MODULE_ID}','adminModuleUpgrade_');">{L_UPGRADE_PACK}</a> - </span> <a href="javascript:onMenuCatClick('{module.MODULE_ID}','adminModuleUpgrade_');" title="{L_UPGRADE_PACK}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_upgrade.gif" align="absmiddle"></a> - <!-- END settings --> - <!-- BEGIN settings --> - <span style="display:none"> - <span style="cursor:pointer;" onclick="onMenuCatClick('{module.MODULE_ID}','adminModuleExport_');"> - <img name="adminModuleExport_image_{module.MODULE_ID}" src="{module.IMG_URL_EXPORT}" border="0" align="middle"> - </span> - <a href="javascript:onMenuCatClick('{module.MODULE_ID}','adminModuleExport_');">{L_EXPORT_PACK}</a> - </span> <a href="javascript:onMenuCatClick('{module.MODULE_ID}','adminModuleExport_');" title="{L_EXPORT_PACK}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_export.gif" align="absmiddle"></a> - <!-- END settings --> - <!-- BEGIN settings --> - <span style="display:none"> - <span style="cursor:pointer" onclick="onMenuCatClick('{module.MODULE_ID}','adminModuleDelete_');"> - <img name="adminModuleDelete_image_{module.MODULE_ID}" src="{module.IMG_URL_DELETE}" border="0" align="middle"> - </span> - <a href="javascript:onMenuCatClick('{module.MODULE_ID}','adminModuleDelete_');">{L_UNINSTALL}</a> - </span> <a href="javascript:onMenuCatClick('{module.MODULE_ID}','adminModuleDelete_');" title="{L_UNINSTALL}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_delete.gif" align="absmiddle"></a> ! <!-- END settings --> </div> </div> <!-- MODUL Delete --> ! <div id="adminModuleDelete_{module.MODULE_ID}" style="clear:both;padding-top:1.0em;display:{module.VISIBLE_DELETE};"> <fieldset> ! <legend style="cursor:pointer;" onclick="onMenuCatClick('{module.MODULE_ID}','adminModuleDelete_');"> ! <img src="{IMG_URL_CONTRACT}" border="0" align="left"> {L_UNINSTALL} ! </legend> ! <p> ! {module.MESSAGE_DELETE} ! </p> </fieldset> </div> <!-- MODUL Export --> ! <div id="adminModuleExport_{module.MODULE_ID}" style="clear:both;padding-top:1.0em;display:{module.VISIBLE_EXPORT};"> <fieldset> ! <legend style="cursor:pointer" onclick="onMenuCatClick('{module.MODULE_ID}','adminModuleExport_');"> ! <img src="{IMG_URL_CONTRACT}" border="0" align="middle"> {L_EXPORT_PACK} ! </legend> ! <p> ! {module.MESSAGE_EXPORT} ! </p> </fieldset> </div> <!-- MODUL Update --> ! <div id="adminModuleUpgrade_{module.MODULE_ID}" style="clear:both;padding:1.0em;display:{module.VISIBLE_UPGRADE};"> <fieldset> ! <legend style="cursor:pointer;" onclick="onMenuCatClick('{module.MODULE_ID}','adminModuleUpgrade_');"> ! <img src="{IMG_URL_CONTRACT}" border="0" align="middle"> {L_UPGRADE_PACK} ! </legend> ! <p> ! {module.MESSAGE_UPGRADE} ! </p> </fieldset> </div> <!-- MODUL Settings --> ! <div id="adminModule_{module.MODULE_ID}" style="clear:both;padding:1.0em;padding-top:0.2em;display:{module.VISIBLE};"> <form action="{S_ACTION}" onsubmit="return checkForm(this)" name="post" method="post"> <fieldset> ! <legend style="cursor:pointer;" onclick="onMenuCatClick('{module.MODULE_ID}','adminModule_');"> ! <img src="{IMG_URL_CONTRACT}" border="0" align="middle"> {module.L_TITLE} </legend> <dl> --- 220,276 ---- </div> <p style="clear:both"></p> + <div class="acp"> <div class="panel"> <span class="corners-top"><span></span></span> ! <div class="content"> <div>{RESULT_MESSAGE}</div> <!-- BEGIN module --> ! <div class="clear blockColapse"> ! <div class="header"> ! <!-- BEGIN settings --> ! <div class="buttons"> <a href="{module.U_MODULE}" title="{L_SETTINGS}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_edit.gif" align="absmiddle"></a> <a href="javascript:onMenuCatClick('{module.MODULE_ID}','adminModuleUpgrade_');" title="{L_UPGRADE_PACK}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_upgrade.gif" align="absmiddle"></a> <a href="javascript:onMenuCatClick('{module.MODULE_ID}','adminModuleExport_');" title="{L_EXPORT_PACK}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_export.gif" align="absmiddle"></a> <a href="javascript:onMenuCatClick('{module.MODULE_ID}','adminModuleDelete_');" title="{L_UNINSTALL}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_delete.gif" align="absmiddle"></a> ! </div> ! <!-- END settings --> ! <div> ! <img name="adminModule_image_{module.MODULE_ID}" id="adminModule_image_{module.MODULE_ID}" src="{module.IMG_URL}"/> ! <span style="cursor:pointer" onclick="onMenuCatClick('{module.MODULE_ID}','adminModule_');"><img src="{IMG_ICON_MODULE}" alt="" /></span> ! <span class="title"><a href="javascript:onMenuCatClick('{module.MODULE_ID}','adminModule_');">{module.MODULE_TITLE}</a></span> ! <!-- IF module.MODULE_DESCRIPTION neq '' --><br/> ! <span class="explain" style="padding-left:30px;">{module.MODULE_DESCRIPTION}</span> ! <i>{module.MODULE_VERSION}</i><!-- ENDIF --> </div> </div> + <!-- MODUL Delete --> ! <div id="adminModuleDelete_{module.MODULE_ID}" class="settings" style="display:{module.VISIBLE_DELETE};"> <fieldset> ! <legend onclick="onMenuCatClick('{module.MODULE_ID}','adminModuleDelete_');">{L_UNINSTALL}</legend> ! <p>{module.MESSAGE_DELETE}</p> </fieldset> </div> <!-- MODUL Export --> ! <div id="adminModuleExport_{module.MODULE_ID}" class="settings" style="display:{module.VISIBLE_EXPORT};"> <fieldset> ! <legend onclick="onMenuCatClick('{module.MODULE_ID}','adminModuleExport_');">{L_EXPORT_PACK}</legend> ! <p>{module.MESSAGE_EXPORT}</p> </fieldset> </div> <!-- MODUL Update --> ! <div id="adminModuleUpgrade_{module.MODULE_ID}" class="settings" style="display:{module.VISIBLE_UPGRADE};"> <fieldset> ! <legend onclick="onMenuCatClick('{module.MODULE_ID}','adminModuleUpgrade_');">{L_UPGRADE_PACK}</legend> ! <p>{module.MESSAGE_UPGRADE}</p> </fieldset> </div> <!-- MODUL Settings --> ! <div id="adminModule_{module.MODULE_ID}" class="settings" style="display:{module.VISIBLE};"> <form action="{S_ACTION}" onsubmit="return checkForm(this)" name="post" method="post"> <fieldset> ! <legend onclick="onMenuCatClick('{module.MODULE_ID}','adminModule_');"> ! {module.L_TITLE} </legend> <dl> *************** *** 343,345 **** --- 301,304 ---- <span class="corners-bottom"><span></span></span> </div> + </div> <p></p> Index: index_navigate.html =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/admin/index_navigate.html,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** index_navigate.html 6 Feb 2008 15:14:15 -0000 1.5 --- index_navigate.html 15 Oct 2009 15:58:30 -0000 1.6 *************** *** 1,3 **** ! <script language="javascript" type="text/javascript"> <!-- --- 1,3 ---- ! <script type="text/javascript"> <!-- *************** *** 258,262 **** <!-- END module_phpbb --> obj.style.fontWeight = 'bold'; ! obj.style.background = "url('{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}theme/images/arrow_right.gif') no-repeat 0px 7px;"; return true; } --- 258,262 ---- <!-- END module_phpbb --> obj.style.fontWeight = 'bold'; ! obj.style.background = "url('{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}theme/images/arrow_right.gif') no-repeat 0px 7px"; return true; } *************** *** 273,281 **** margin-top:15px; padding-top:0px; border-bottom-style: solid; border-bottom-width: 1px; - border-bottom-color: ; display: block; } .activeItem { font-weight: bold; --- 273,289 ---- margin-top:15px; padding-top:0px; + padding-left: 3px; border-bottom-style: solid; border-bottom-width: 1px; display: block; } + #content { + padding-top: 0px; + } + #menu ul li.header { + margin-top: 3px; + margin-left: 4px; + padding-left: 2px; + } .activeItem { font-weight: bold; *************** *** 284,288 **** } </style> ! <img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}admin/images/mxbb_logo.gif" alt="" /> <div id="menu" style=""> <ul> --- 292,296 ---- } </style> ! <div style="margin: 0px auto;text-align:center"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}admin/images/mxbb_logo.gif" alt="" /></div> <div id="menu" style=""> <ul> Index: admin.css =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/admin/admin.css,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** admin.css 21 Jan 2008 01:03:22 -0000 1.3 --- admin.css 15 Oct 2009 15:58:30 -0000 1.4 *************** *** 18,22 **** font-size: x-small; voice-family: "\"}\""; - voice-family: inherit; font-size: small } --- 18,21 ---- *************** *** 164,175 **** #content { ! padding: 30px 10px 10px; position: relative; } #content h1 { ! color: #115098; line-height: 1.2em; ! margin-bottom: 0; } --- 163,176 ---- #content { ! padding: 10px 10px; position: relative; } #content h1 { ! /*color: #115098;*/ ! color: #536482; line-height: 1.2em; ! border-bottom: 1px solid #536482; ! margin-bottom: 5px; } *************** *** 286,290 **** /* Main Panel ---------------------------------------- */ ! #acp { margin: 4px 0; padding: 3px 1px; --- 287,291 ---- /* Main Panel ---------------------------------------- */ ! #acp, .acp { margin: 4px 0; padding: 3px 1px; *************** *** 292,295 **** --- 293,299 ---- border: 1px #999999 solid; } + #acp .acp .content { + padding: 0px 5px; + } .panel { *************** *** 405,409 **** } ! #menu li a:hover, #menu li a:hover span { text-decoration: none; background-color: #FFFFFF; --- 409,413 ---- } ! #menu li a:hover, #menu li a:hover span, #menu li a:active, #menu li a:active span { text-decoration: none; background-color: #FFFFFF; *************** *** 630,634 **** fieldset p { ! font-size: 0.85em; } --- 634,638 ---- fieldset p { ! /*font-size: 0.85em;*/ } *************** *** 699,703 **** optgroup, select { font-family: Verdana, Helvetica, Arial, sans-serif; ! font-size: 0.85em; font-weight: normal; font-style: normal; --- 703,707 ---- optgroup, select { font-family: Verdana, Helvetica, Arial, sans-serif; ! font-size: 0.95em; font-weight: normal; font-style: normal; *************** *** 1590,1591 **** --- 1594,1646 ---- padding: 0; } + + .buttons { + float:right; + } + + .buttons img { + cursor: pointer; + } + + #acp .acp .content { + padding: 0px 5px; + } + .blockColapse { + padding: 0px 10px 5px 0px; + margin-top: 5px; + border-bottom: 1px solid #999999; + } + + .blockColapse .colapse { + width: 16px; + float:left; + cursor:pointer; + } + + .blockColapse:last-child { + border-bottom-width: 0px; + } + + .blockColapse .parName { + display: inline-block; + width: 30%; + float:left; + } + .blockColapse .parType { + font-style: italic; + } + + .blockColapse .header { + } + + .blockColapse .header .title { + cursor: pointer; + } + + .settings legend { + padding-left: 20px; + background: transparent url("/templates/prosilver/images/admin_icons/contract.gif") no-repeat 0 0; + cursor: pointer; + } + + \ No newline at end of file Index: mx_modulecp_admin_body.html =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/admin/mx_modulecp_admin_body.html,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** mx_modulecp_admin_body.html 20 Feb 2008 12:55:18 -0000 1.4 --- mx_modulecp_admin_body.html 15 Oct 2009 15:58:30 -0000 1.5 *************** *** 292,304 **** <!-- END nomodule --> <p style="clear:both"></p> <div class="panel"> <span class="corners-top"><span></span></span> ! <div class="acp"> ! <div class="inner bg3" style="margin:1.0em;"> <div > {RESULT_MESSAGE} </div> <!-- BEGIN module --> - <div style="display:block;"> <!-- BEGIN reload --> <div style="display:block;height:2.0em;"> --- 292,303 ---- <!-- END nomodule --> <p style="clear:both"></p> + <div class="acp"> <div class="panel"> <span class="corners-top"><span></span></span> ! <div class="content"> <div > {RESULT_MESSAGE} </div> <!-- BEGIN module --> <!-- BEGIN reload --> <div style="display:block;height:2.0em;"> *************** *** 307,330 **** </div> <!-- END reload --> ! <div style="clear:both;"><!-- Block Functions --> ! <!-- BEGIN nofunction --> ! <div class="rules"> ! {module.nofunction.NONE} ! </div> ! <!-- END nofunction --> <!-- BEGIN function --> ! <div class="inner" style="display:block;clear:both;"> ! <div style="display:block;margin-top:5px;padding-bottom:6px;"> ! <div style="float:right;width:40%;text-align:right;"> <!-- BEGIN is_function --> ! <a href="javascript:onMenuCatClick('{module.function.FUNCTION_ID}','adminFunction_');" title="{L_EDIT}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_edit.gif" align="absmiddle"></a> ! <a href="javascript:onMenuCatClick('{module.function.FUNCTION_ID}','adminParameter_');" title="{module.function.L_EDIT_PAR}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_parameter_edit.gif" align="absmiddle"></a> ! <a href="javascript:onMenuCatClick('{module.function.FUNCTION_ID}','adminFunctionDelete_');" title="{module.function.L_DELETE}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_delete.gif" align="absmiddle"></a> <!-- END is_function --> </div> ! <div style="float:left;"> <span style="cursor:pointer;" onclick="onMenuCatClick('{module.function.FUNCTION_ID}','{module.function.COOKIE_TAG}');"> ! <img name="{module.function.COOKIE_TAG}image_{module.function.FUNCTION_ID}" id="{module.function.COOKIE_TAG}image_{module.function.FUNCTION_ID}" src="{module.function.IMG_URL_FUNC}" border="0" align="middle"> ! <img src="{IMG_ICON_FUNCTION}" border="0" align="middle"> </span> <a href="javascript:onMenuCatClick('{module.function.FUNCTION_ID}','{module.function.COOKIE_TAG}');">{module.function.FUNCTION_TITLE}</a> --- 306,329 ---- </div> <!-- END reload --> ! <!-- Block Functions --> ! <!-- BEGIN nofunction --> ! <div class="rules"> ! {module.nofunction.NONE} ! </div> ! <!-- END nofunction --> <!-- BEGIN function --> ! <div class="clear blockColapse"> ! <div class="header"> ! <div class="buttons"> <!-- BEGIN is_function --> ! <a href="javascript:onMenuCatClick('{module.function.FUNCTION_ID}','adminFunction_');" title="{L_EDIT}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_edit.gif" /></a> ! <a href="javascript:onMenuCatClick('{module.function.FUNCTION_ID}','adminParameter_');" title="{module.function.L_EDIT_PAR}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_parameter_edit.gif" /></a> ! <a href="javascript:onMenuCatClick('{module.function.FUNCTION_ID}','adminFunctionDelete_');" title="{module.function.L_DELETE}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_delete.gif" /></a> <!-- END is_function --> </div> ! <div> <span style="cursor:pointer;" onclick="onMenuCatClick('{module.function.FUNCTION_ID}','{module.function.COOKIE_TAG}');"> ! <img name="{module.function.COOKIE_TAG}image_{module.function.FUNCTION_ID}" id="{module.function.COOKIE_TAG}image_{module.function.FUNCTION_ID}" src="{module.function.IMG_URL_FUNC}" /> ! <img src="{IMG_ICON_FUNCTION}" /> </span> <a href="javascript:onMenuCatClick('{module.function.FUNCTION_ID}','{module.function.COOKIE_TAG}');">{module.function.FUNCTION_TITLE}</a> *************** *** 333,353 **** </div> <!-- FUNCTION Delete --> ! <div id="adminFunctionDelete_{module.function.FUNCTION_ID}" style="clear:both;padding-top:0.1em;display:{module.function.VISIBLE_DELETE};"> <fieldset> ! <legend style="cursor:pointer;cursor:hand;" onclick="onMenuCatClick('{module.function.FUNCTION_ID}','adminFunctionDelete_');"> ! <img src="{IMG_URL_CONTRACT}" border="0" align="absmiddle"> ! {L_DELETE} ! </legend> ! <p> ! {module.function.MESSAGE_DELETE} ! </p> </fieldset> </div> <!-- FUNCTION Settings --> ! <div id="adminFunction_{module.function.FUNCTION_ID}" style="clear:both;padding-top:0.1em;display:{module.function.VISIBLE_FUNC};"> <form id="form_adminFunction_{module.function.FUNCTION_ID}" action="{S_ACTION}" method="post"> <fieldset> ! <legend style="cursor:pointer;cursor:hand;" onclick="onMenuCatClick('{module.function.FUNCTION_ID}','adminFunction_');"> ! <img src="{IMG_URL_CONTRACT}" border="0" align="absmiddle"> {module.function.L_TITLE} </legend> --- 332,346 ---- </div> <!-- FUNCTION Delete --> ! <div id="adminFunctionDelete_{module.function.FUNCTION_ID}" class="settings" style="display:{module.function.VISIBLE_DELETE};"> <fieldset> ! <legend onclick="onMenuCatClick('{module.function.FUNCTION_ID}','adminFunctionDelete_');">{L_DELETE}</legend> ! <p>{module.function.MESSAGE_DELETE}</p> </fieldset> </div> <!-- FUNCTION Settings --> ! <div id="adminFunction_{module.function.FUNCTION_ID}" class="settings" style="display:{module.function.VISIBLE_FUNC};"> <form id="form_adminFunction_{module.function.FUNCTION_ID}" action="{S_ACTION}" method="post"> <fieldset> ! <legend onclick="onMenuCatClick('{module.function.FUNCTION_ID}','adminFunction_');"> {module.function.L_TITLE} </legend> *************** *** 378,630 **** </div> <!-- FUNCTION PARAMETERS BEGIN --> ! <div id="adminParameter_{module.function.FUNCTION_ID}" style="clear:both;margin-left:16px;padding-top:0.1em;padding-bottom:6px;display:{module.function.VISIBLE_PAR};"> ! <h3 style="margin-top:3px;">{module.function.L_TITLE_PAR}</h3> ! <div style="display:block;clear:both;"> ! <div style="float:left;width:30%"> ! {module.function.parameter.L_PARAMETER_TITLE} ! </div> ! <div style="float:left:width:15%;"> ! {module.function.parameter.L_PARAMETER_TYPE} ! </div> ! <div> </div> ! </div> ! <!-- BEGIN noparameter --> ! <div style="clear:both;display:block;border-bottom:solid 1px #CCCCCC;">{module.function.noparameter.NONE}</div> ! <!-- END noparameter --> ! <!-- BEGIN parameter --> ! <div style="clear:both;display:block;padding-top:4px;padding-bottom:4px; ! <!-- BEGIN is_parameter --> ! border-bottom:solid 1px #CCCCCC; ! <!-- END is_parameter --> ! "> ! <div style="clear:both;display:block;"> ! <div style="float:right;margin-right:16px;"> ! <!-- BEGIN is_parameter --> ! <a href="javascript:onMenuCatClick('{module.function.parameter.PARAMETER_ID}','adminParEdit_');" title="{module.function.parameter.L_EDIT}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_edit.gif" align="absmiddle"></a> ! <a href="{module.function.parameter.U_MOVE_UP}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_up.gif" alt="{L_MOVE_UP}" title="{L_MOVE_UP}" align="absmiddle" /></a> ! <a href="{module.function.parameter.U_MOVE_DOWN}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_down.gif" alt="{L_MOVE_DOWN}" title="{L_MOVE_DOWN}" align="absmiddle" /></a> ! <a href="javascript:onMenuCatClick('{module.function.parameter.PARAMETER_ID}','adminParDelete_');"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_delete.gif" alt="{L_DELETE}" title="{L_DELETE}" align="absmiddle" /></a> ! <!-- END is_parameter --> ! </div> ! <div style="display:block;float:left;width:30%;"> ! <img src="{IMG_ICON_PARAMETER}" border="0" align="absmiddle"> ! {module.function.parameter.PARAMETER_TITLE} ! </div> ! <div style="display:block;float:left:width:15%;"> ! {module.function.parameter.PARAMETER_TYPE} </div> </div> ! <!-- FUNCTION PARAMETER Delete --> ! <div id="adminParDelete_{module.function.parameter.PARAMETER_ID}" style="clear:both;display:{module.function.parameter.VISIBLE_DELETE};"> ! <fieldset> ! <legend style="cursor:pointer;" onclick="onMenuCatClick('{module.function.parameter.PARAMETER_ID}','adminParDelete_');"> ! <img src="{IMG_URL_CONTRACT}" border="0" align="middle"> ! {L_DELETE} ! </legend> ! <p> ! {module.function.parameter.MESSAGE_DELETE} ! </p> ! </fieldset> ! </div> ! <!-- FUNCTION PARAMETER Edit --> ! <div id="adminParEdit_{module.function.parameter.PARAMETER_ID}" style="clear:both;display:{module.function.parameter.VISIBLE};"> ! <form action="{S_ACTION}" method="post"> ! <fieldset> ! <legend style="cursor:pointer;" onclick="onMenuCatClick('{module.function.parameter.PARAMETER_ID}','adminParEdit_');"> ! <img src="{IMG_URL_CONTRACT}" border="0" align="middle"> ! {module.function.parameter.L_EDIT} ! </legend> ! <dl> ! <dt><label for="parameter_name_{module.function.parameter.PARAMETER_ID}">{module.function.parameter.L_PARAMETER_TITLE}</label></dt> ! <dd><input type="text" size="45" name="parameter_name" id="parameter_name_{module.function.parameter.PARAMETER_ID}" value="{module.function.parameter.E_PARAMETER_TITLE}" /></dd> ! </dl> ! <dl> ! <dt><label>{module.function.parameter.L_PARAMETER_TYPE}</label></dt> ! <dd>{module.function.parameter.E_PARAMETER_TYPE}</dd> ! </dl> ! <dl> ! <dt><label for="parameter_auth_{module.function.parameter.PARAMETER_ID}_0">{module.function.parameter.L_PARAMETER_AUTH}</label></dt> ! <dd><input type="radio" name="parameter_auth" id="parameter_auth_{module.function.parameter.PARAMETER_ID}_1" value="1" class="radio" {module.function.parameter.E_PARAMETER_AUTH_YES} /> <label for="parameter_auth_{module.function.parameter.PARAMETER_ID}_1">{L_YES}</label> ! <input type="radio" name="parameter_auth" id="parameter_auth_{module.function.parameter.PARAMETER_ID}_0" value="0" class="radio" {module.function.parameter.E_PARAMETER_AUTH_NO} /> <label for="parameter_auth_{module.function.parameter.PARAMETER_ID}_0">{L_NO}</label></dd> ! </dl> ! <dl> ! <dt><label for="parameter_default_{module.function.parameter.PARAMETER_ID}">{module.function.parameter.L_PARAMETER_DEFAULT}</label></dt> ! <dd><input type="text" size="45" name="parameter_default" id="parameter_default_{module.function.parameter.PARAMETER_ID}" value="{module.function.parameter.E_PARAMETER_DEFAULT}"/></dd> ! </dl> ! <dl> ! <dt><label for="parameter_function_{module.function.parameter.PARAMETER_ID}">{module.function.parameter.L_PARAMETER_FUNCTION}</label><br /><span class="explain">{module.function.parameter.L_PARAMETER_FUNCTION_EXPLAIN}</span></dt> ! <dd><textarea rows="20" cols="100" wrap="virtual" name="parameter_function" id="parameter_function_{module.function.parameter.PARAMETER_ID}">{module.function.parameter.E_PARAMETER_FUNCTION}</textarea></dd> ! </dl> ! <p align="center"> ! {module.function.parameter.S_HIDDEN_FIELDS} ! <input type="submit" name="submit" value="{module.function.parameter.S_SUBMIT}" class="button1" /> ! </p> ! </fieldset> ! </form> ! </div> </div> - <span style="clear:both"></span> - <!-- END parameter --> </div> <!-- FUNCTION PARAMETERS END --> <!-- FUNCTION BLOCK BEGIN --> ! <div id="adminBlock_{module.function.FUNCTION_ID}" style="clear:both;margin-left:16px;display:{module.function.VISIBLE_BLOCK};"> ! <!-- BEGIN noblock --> ! <div style="display:block;border-bottom:solid 1px #CCCCCC;margin-bottom:3px;">{module.function.noblock.NONE}</div> ! <!-- END noblock --> ! <!-- BEGIN block --> ! <div style="display:block;clear:both;padding-top:2px;"> ! <div style="display:block;clear:both;"> ! <div style="float:right;margin-right:16px;"> ! <!-- BEGIN is_block --> ! [ <a href="{module.function.block.U_BLOCK_SETTINGS}">{module.function.block.L_SETTINGS}</a> ] ! <!-- BEGIN include_block_edit --> ! <a href="javascript:onMenuCatClick('{module.function.block.BLOCK_ID}','adminEdit_');" title="{module.function.block.L_EDIT}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_edit.gif" align="absmiddle" /></a> ! <!-- END include_block_edit --> ! <!-- BEGIN include_block_private --> ! <a href="javascript:onMenuCatClick('{module.function.block.BLOCK_ID}','adminPrivate_');" title="{module.function.block.L_PERMISSIONS_ADV}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_permissions.gif" align="absmiddle"></a> ! <!-- END include_block_private --> ! <a href="javascript:onMenuCatClick('{module.function.block.BLOCK_ID}','adminBlockDelete_');" title="{module.function.block.L_DELETE}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_delete.gif" align="absmiddle"></a> ! <!-- END is_block --> ! </div> ! <div style="float:left;"> ! <span style="cursor:pointer;" onclick="onMenuCatClick('{module.function.block.BLOCK_ID}','adminEdit_');"> ! <img src="{IMG_ICON_BLOCK}" border="0" align="absmiddle"> ! </span> ! <a href="javascript:onMenuCatClick('{module.function.block.BLOCK_ID}','adminEdit_');">{module.function.block.BLOCK_TITLE}</a> ! <span class="explain"><i>{module.function.block.BLOCK_LAST_EDITED}</i></span> ! <span class="explain">{module.function.block.BLOCK_DESC}</span> ! </div> ! </div> ! <!-- FUNCTION BLOCK Delete --> ! <div id="adminBlockDelete_{module.function.block.BLOCK_ID}" style="clear:both;display:{module.function.block.VISIBLE_DELETE};"> ! <fieldset> ! <legend style="cursor:pointer;cursor:hand;" onclick="onMenuCatClick('{module.function.block.BLOCK_ID}','adminBlockDelete_');"> ! <img src="{IMG_URL_CONTRACT}" border="0" align="middle"> ! {L_DELETE} ! </legend> ! <p> ! {module.function.block.MESSAGE_DELETE} ! </p> ! </fieldset> ! </div> ! <!-- FUNCTION BLOCK QUICK Edit --> ! <div id="adminEdit_{module.function.block.BLOCK_ID}" style="clear:both;display:{module.function.block.VISIBLE_EDIT};"> ! <form action="{S_ACTION}" method="post"> ! <fieldset> ! <legend style="cursor:pointer;" onclick="onMenuCatClick('{module.function.block.BLOCK_ID}','adminEdit_');"> ! <img src="{IMG_URL_CONTRACT}" border="0" align="middle"> ! {module.function.block.L_TITLE} ! </legend> ! <dl> ! <dt><label for="block_title_{module.function.block.BLOCK_ID}">{module.function.block.L_BLOCK_TITLE}</label></dt> ! <dd><input type="text" size="65" name="block_title" id="block_title_{module.function.block.BLOCK_ID}" value="{module.function.block.E_BLOCK_TITLE}" /></dd> ! </dl> ! <dl> ! <dt><label for="block_desc_{module.function.block.BLOCK_ID}">{module.function.block.L_BLOCK_DESC}</label></dt> ! <dd><input type="text" size="65" name="block_desc" value="{module.function.block.E_BLOCK_DESC}" /></dd> ! </dl> ! <dl> ! <dt><label for="show_title_{module.function.block.BLOCK_ID}_1">{module.function.block.L_SHOW_TITLE}</label><br /> ! <span class="explain">{module.function.block.L_SHOW_TITLE_EXPLAIN}</span></dt> ! <dd><input type="radio" name="show_title" id="show_title_{module.function.block.BLOCK_ID}_1" value="1" class="radio" {module.function.block.S_SHOW_TITLE_YES} /> <label for="show_title_{module.function.block.BLOCK_ID}_1">{L_YES}</label> ! <input type="radio" name="show_title" id="show_title_{module.function.block.BLOCK_ID}_0" value="0" class="radio" {module.function.block.S_SHOW_TITLE_NO} /> <label for="show_title_{module.function.block.BLOCK_ID}_0">{L_NO}</label></dd> ! </dl> ! <dl> ! <dt><label for="show_stats_{module.function.block.BLOCK_ID}_1">{module.function.block.L_SHOW_STATS}</label><br /> ! <span class="explain">{module.function.block.L_SHOW_STATS_EXPLAIN}</span></dt> ! <dd><input type="radio" name="show_stats" id="show_stats_{module.function.block.BLOCK_ID}_1" value="1" class="radio" {module.function.block.S_SHOW_STATS_YES} /> <label for="show_stats_{module.function.block.BLOCK_ID}_1">{L_YES}</label> ! <input type="radio" name="show_stats" id="show_stats_{module.function.block.BLOCK_ID}_0" value="0" class="radio" {module.function.block.S_SHOW_STATS_NO} /> <label for="show_stats_{module.function.block.BLOCK_ID}_0">{L_NO}</label></dd> ! </dl> ! <dl> ! <dt><label for="show_block_{module.function.block.BLOCK_ID}_1">{module.function.block.L_SHOW_BLOCK}</label><br /><span class="explain">{module.function.block.L_SHOW_BLOCK_EXPLAIN}</span></dt> ! <dd><input type="radio" name="show_block" id="show_block_{module.function.block.BLOCK_ID}_1" value="1" class="radio" {module.function.block.S_SHOW_BLOCK_YES} /> <label for="show_block_{module.function.block.BLOCK_ID}_1">{L_YES}</label> ! <input type="radio" name="show_block" id="show_block_{module.function.block.BLOCK_ID}_0" value="0" class="radio" {module.function.block.S_SHOW_BLOCK_NO} /> <label for="show_block_{module.function.block.BLOCK_ID}_0">{L_NO}</label></dd> ! </dl> ! <dl> ! <dt><label>{module.function.block.L_AUTH_TITLE}</label><br /><span class="explain">{module.function.block.L_AUTH_TITLE_EXPLAIN}</span></dt> ! <dd> ! <table border="0"> ! <thead> <tr> ! <!-- BEGIN block_auth_titles --> ! <th>{module.function.block.block_auth_titles.CELL_TITLE}</th> ! <!-- END block_auth_titles --> </tr> - </thead> - <tbody> <tr> ! <!-- BEGIN block_auth_data --> ! <td> ! {module.function.block.block_auth_data.S_AUTH_LEVELS_SELECT} </td> ! <!-- END block_auth_data --> ! </tr> ! </tbody> ! </table> ! </dd> ! </dl> ! <dl> ! <dt><label>{module.function.block.L_COLUMN}</label></dt> ! <dd>{module.function.block.S_COLUMN_LIST}</dd> ! </dl> ! <p align="center"> ! {module.function.block.S_HIDDEN_FIELDS} ! <input type="submit" name="submit" value="{module.function.block.S_SUBMIT}" class="button1" /> ! </p> ! </fieldset> ! </form> ! </div> ! <!-- FUNCTION BLOCK Private Auth --> ! <div id="adminPrivate_{module.function.block.BLOCK_ID}" style="clear:both;display:{module.function.block.VISIBLE_PRIVATE};"> ! <form action="{S_ACTION}" method="post"> ! <fieldset> ! <legend style="cursor:pointer;" onclick="onMenuCatClick('{module.function.block.BLOCK_ID}','adminPrivate_');"> ! <img src="{IMG_URL_CONTRACT}" border="0" align="middle"> ! {module.function.block.L_TITLE} ! </legend> ! <table width="100%" cellpadding="0" cellspacing="0" border="0" align="center"> ! <tr> ! <td width="40%" class="row3" align="center" height="25" nowrap="nowrap"><b>{L_GROUPS}</b></td> ! <td width="20%" class="row3" align="center" nowrap="nowrap"><b>{L_VIEW}</b></td> ! <td width="20%" class="row3" align="center" nowrap="nowrap"><b>{L_EDIT}</b></td> ! <td width="20%" class="row3" align="center" nowrap="nowrap"><b>{L_IS_MODERATOR}</b></td> ! </tr> ! <tr> ! <td class="row1" align="center" colspan="4"> ! <div style="overflow:auto; overflow-y:scroll; height:150px;"> ! <table width="100%" cellpadding="0" cellspacing="0" border="0" align="center"> ! <!-- BEGIN grouprows --> ! {module.function.block.grouprows.GROUP_ROWS} ! <!-- END grouprows --> </table> ! </div> ! </td> ! </tr> ! </table> ! <p align="center"> ! {module.function.block.S_HIDDEN_PRIVATE_FIELDS} ! <input type="submit" name="submit" value="{module.function.block.S_SUBMIT}" class="button1" /> ! </p> ! </fieldset> ! </form> </div> ! </div> - <!-- BEGIN is_block --> - <div style="clear:both;border-bottom:solid 1px #CCCCCC;padding:2px 0px 2px 0px"></div> - <!-- END is_block --> - <!-- END block --> </div> <!-- FUNCTION BLOCK END --> </div> - <!-- BEGIN is_function --> - <div style="clear:both;border-bottom:solid 1px #CCCCCC;padding:2px 0px 2px 0px"></div> - <!-- END is_function --> <!-- END function --> - </div> - </div> <!-- END module --> </div> </div> </div> --- 371,590 ---- </div> <!-- FUNCTION PARAMETERS BEGIN --> ! <div id="adminParameter_{module.function.FUNCTION_ID}" class="settings acp" style="display:{module.function.VISIBLE_PAR};"> ! <div class="panel"> ! <span class="corners-top"><span></span></span> ! <div class="content bg2"> ! <h3 style="margin-top:3px;">{module.function.L_TITLE_PAR}</h3> ! ! <!-- BEGIN noparameter --> ! <div>{module.function.noparameter.NONE}</div> ! <!-- END noparameter --> ! <!-- BEGIN parameter --> ! <div class="clear blockColapse"> ! <div class="header"> ! <!-- BEGIN is_parameter --> ! <div class="buttons"> ! <a href="javascript:onMenuCatClick('{module.function.parameter.PARAMETER_ID}','adminParEdit_');" title="{module.function.parameter.L_EDIT}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_edit.gif" /></a> ! <a href="{module.function.parameter.U_MOVE_UP}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_up.gif" alt="{L_MOVE_UP}" title="{L_MOVE_UP}" /></a> ! <a href="{module.function.parameter.U_MOVE_DOWN}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_down.gif" alt="{L_MOVE_DOWN}" title="{L_MOVE_DOWN}" /></a> ! <a href="javascript:onMenuCatClick('{module.function.parameter.PARAMETER_ID}','adminParDelete_');"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_delete.gif" alt="{L_DELETE}" title="{L_DELETE}" /></a> ! </div> ! <!-- END is_parameter --> ! <div class="title parName"><img src="{IMG_ICON_PARAMETER}" /> {module.function.parameter.PARAMETER_TITLE}</div> ! <div class="parType">{module.function.parameter.PARAMETER_TYPE}</div> ! </div> ! ! <!-- FUNCTION PARAMETER Delete --> ! <div id="adminParDelete_{module.function.parameter.PARAMETER_ID}" class="settings" style="display:{module.function.parameter.VISIBLE_DELETE};"> ! <fieldset> ! <legend onclick="onMenuCatClick('{module.function.parameter.PARAMETER_ID}','adminParDelete_');">{L_DELETE}</legend> ! <p>{module.function.parameter.MESSAGE_DELETE}</p> ! </fieldset> ! </div> ! <!-- FUNCTION PARAMETER Edit --> ! <div id="adminParEdit_{module.function.parameter.PARAMETER_ID}" class="settings" style="display:{module.function.parameter.VISIBLE};"> ! <form action="{S_ACTION}" method="post"> ! <fieldset> ! <legend onclick="onMenuCatClick('{module.function.parameter.PARAMETER_ID}','adminParEdit_');">{module.function.parameter.L_EDIT}</legend> ! <dl> ! <dt><label for="parameter_name_{module.function.parameter.PARAMETER_ID}">{module.function.parameter.L_PARAMETER_TITLE}</label></dt> ! <dd><input type="text" size="45" name="parameter_name" id="parameter_name_{module.function.parameter.PARAMETER_ID}" value="{module.function.parameter.E_PARAMETER_TITLE}" /></dd> ! </dl> ! <dl> ! <dt><label>{module.function.parameter.L_PARAMETER_TYPE}</label></dt> ! <dd>{module.function.parameter.E_PARAMETER_TYPE}</dd> ! </dl> ! <dl> ! <dt><label for="parameter_auth_{module.function.parameter.PARAMETER_ID}_0">{module.function.parameter.L_PARAMETER_AUTH}</label></dt> ! <dd><input type="radio" name="parameter_auth" id="parameter_auth_{module.function.parameter.PARAMETER_ID}_1" value="1" class="radio" {module.function.parameter.E_PARAMETER_AUTH_YES} /> <label for="parameter_auth_{module.function.parameter.PARAMETER_ID}_1">{L_YES}</label> ! <input type="radio" name="parameter_auth" id="parameter_auth_{module.function.parameter.PARAMETER_ID}_0" value="0" class="radio" {module.function.parameter.E_PARAMETER_AUTH_NO} /> <label for="parameter_auth_{module.function.parameter.PARAMETER_ID}_0">{L_NO}</label></dd> ! </dl> ! <dl> ! <dt><label for="parameter_default_{module.function.parameter.PARAMETER_ID}">{module.function.parameter.L_PARAMETER_DEFAULT}</label></dt> ! <dd><input type="text" size="45" name="parameter_default" id="parameter_default_{module.function.parameter.PARAMETER_ID}" value="{module.function.parameter.E_PARAMETER_DEFAULT}"/></dd> ! </dl> ! <dl> ! <dt><label for="parameter_function_{module.function.parameter.PARAMETER_ID}">{module.function.parameter.L_PARAMETER_FUNCTION}</label><br /><span class="explain">{module.function.parameter.L_PARAMETER_FUNCTION_EXPLAIN}</span></dt> ! <dd><textarea rows="20" cols="100" wrap="virtual" name="parameter_function" id="parameter_function_{module.function.parameter.PARAMETER_ID}">{module.function.parameter.E_PARAMETER_FUNCTION}</textarea></dd> ! </dl> ! <p align="center"> ! {module.function.parameter.S_HIDDEN_FIELDS} ! <input type="submit" name="submit" value="{module.function.parameter.S_SUBMIT}" class="button1" /> ! </p> ! </fieldset> ! </form> ! </div> </div> + <!-- END parameter --> </div> ! <span class="corners-bottom"><span></span></span> </div> </div> <!-- FUNCTION PARAMETERS END --> <!-- FUNCTION BLOCK BEGIN --> ! <div id="adminBlock_{module.function.FUNCTION_ID}" class="settings acp" style="display:{module.function.VISIBLE_BLOCK};"> ! <div class="panel"> ! <span class="corners-top"><span></span></span> ! <div class="content bg1"> ! <!-- BEGIN noblock --> ! {module.function.noblock.NONE} ! <!-- END noblock --> ! <!-- BEGIN block --> ! <div class="clear blockColapse"> ! <div class="header"> ! <!-- BEGIN is_block --> ! <div class="buttons"> ! [ <a href="{module.function.block.U_BLOCK_SETTINGS}">{module.function.block.L_SETTINGS}</a> ] ! <!-- BEGIN include_block_edit --> ! <a href="javascript:onMenuCatClick('{module.function.block.BLOCK_ID}','adminEdit_');" title="{module.function.block.L_EDIT}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_edit.gif" align="absmiddle" /></a> ! <!-- END include_block_edit --> ! <!-- BEGIN include_block_private --> ! <a href="javascript:onMenuCatClick('{module.function.block.BLOCK_ID}','adminPrivate_');" title="{module.function.block.L_PERMISSIONS_ADV}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_permissions.gif" align="absmiddle"></a> ! <!-- END include_block_private --> ! <a href="javascript:onMenuCatClick('{module.function.block.BLOCK_ID}','adminBlockDelete_');" title="{module.function.block.L_DELETE}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_delete.gif" align="absmiddle"></a> ! </div> ! <!-- END is_block --> ! <span class="title" onclick=" ! <a href="javascript:onMenuCatClick('{module.function.block.BLOCK_ID}','adminEdit_');"><img src="{IMG_ICON_BLOCK}" /></a> ! <a href="javascript:onMenuCatClick('{module.function.block.BLOCK_ID}','adminEdit_');">{module.function.block.BLOCK_TITLE}</a> ! </span> ! <span class="explain"><i>{module.function.block.BLOCK_LAST_EDITED}</i></span> ! <span class="explain">{module.function.block.BLOCK_DESC}</span> ! </div> ! ! <!-- FUNCTION BLOCK Delete --> ! <div id="adminBlockDelete_{module.function.block.BLOCK_ID}" class="settings" style="display:{module.function.block.VISIBLE_DELETE};"> ! <fieldset> ! <legend onclick="onMenuCatClick('{module.function.block.BLOCK_ID}','adminBlockDelete_');">{L_DELETE}</legend> ! <p>{module.function.block.MESSAGE_DELETE}</p> ! </fieldset> ! </div> ! <!-- FUNCTION BLOCK QUICK Edit --> ! <div id="adminEdit_{module.function.block.BLOCK_ID}" class="settings" style="display:{module.function.block.VISIBLE_EDIT};"> ! <form action="{S_ACTION}" method="post"> ! <fieldset> ! <legend style="cursor:pointer;" onclick="onMenuCatClick('{module.function.block.BLOCK_ID}','adminEdit_');">{module.function.block.L_TITLE}</legend> ! <dl> ! <dt><label for="block_title_{module.function.block.BLOCK_ID}">{module.function.block.L_BLOCK_TITLE}</label></dt> ! <dd><input type="text" size="65" name="block_title" id="block_title_{module.function.block.BLOCK_ID}" value="{module.function.block.E_BLOCK_TITLE}" /></dd> ! </dl> ! <dl> ! <dt><label for="block_desc_{module.function.block.BLOCK_ID}">{module.function.block.L_BLOCK_DESC}</label></dt> ! <dd><input type="text" size="65" name="block_desc" value="{module.function.block.E_BLOCK_DESC}" /></dd> ! </dl> ! <dl> ! <dt><label for="show_title_{module.function.block.BLOCK_ID}_1">{module.function.block.L_SHOW_TITLE}</label><br /> ! <span class="explain">{module.function.block.L_SHOW_TITLE_EXPLAIN}</span></dt> ! <dd><input type="radio" name="show_title" id="show_title_{module.function.block.BLOCK_ID}_1" value="1" class="radio" {module.function.block.S_SHOW_TITLE_YES} /> <label for="show_title_{module.function.block.BLOCK_ID}_1">{L_YES}</label> ! <input type="radio" name="show_title" id="show_title_{module.function.block.BLOCK_ID}_0" value="0" class="radio" {module.function.block.S_SHOW_TITLE_NO} /> <label for="show_title_{module.function.block.BLOCK_ID}_0">{L_NO}</label></dd> ! </dl> ! <dl> ! <dt><label for="show_stats_{module.function.block.BLOCK_ID}_1">{module.function.block.L_SHOW_STATS}</label><br /> ! <span class="explain">{module.function.block.L_SHOW_STATS_EXPLAIN}</span></dt> ! <dd><input type="radio" name="show_stats" id="show_stats_{module.function.block.BLOCK_ID}_1" value="1" class="radio" {module.function.block.S_SHOW_STATS_YES} /> <label for="show_stats_{module.function.block.BLOCK_ID}_1">{L_YES}</label> ! <input type="radio" name="show_stats" id="show_stats_{module.function.block.BLOCK_ID}_0" value="0" class="radio" {module.function.block.S_SHOW_STATS_NO} /> <label for="show_stats_{module.function.block.BLOCK_ID}_0">{L_NO}</label></dd> ! </dl> ! <dl> ! <dt><label for="show_block_{module.function.block.BLOCK_ID}_1">{module.function.block.L_SHOW_BLOCK}</label><br /><span class="explain">{module.function.block.L_SHOW_BLOCK_EXPLAIN}</span></dt> ! <dd><input type="radio" name="show_block" id="show_block_{module.function.block.BLOCK_ID}_1" value="1" class="radio" {module.function.block.S_SHOW_BLOCK_YES} /> <label for="show_block_{module.function.block.BLOCK_ID}_1">{L_YES}</label> ! <input type="radio" name="show_block" id="show_block_{module.function.block.BLOCK_ID}_0" value="0" class="radio" {module.function.block.S_SHOW_BLOCK_NO} /> <label for="show_block_{module.function.block.BLOCK_ID}_0">{L_NO}</label></dd> ! </dl> ! <dl> ! <dt><label>{module.function.block.L_AUTH_TITLE}</label><br /><span class="explain">{module.function.block.L_AUTH_TITLE_EXPLAIN}</span></dt> ! <dd> ! <table border="0"> ! <thead> ! <tr> ! <!-- BEGIN block_auth_titles --> ! <th>{module.function.block.block_auth_titles.CELL_TITLE}</th> ! <!-- END block_auth_titles --> ! </tr> ! </thead> ! <tbody> ! <tr> ! <!-- BEGIN block_auth_data --> ! <td> ! {module.function.block.block_auth_data.S_AUTH_LEVELS_SELECT} ! </td> ! <!-- END block_auth_data --> ! </tr> ! </tbody> ! </table> ! </dd> ! </dl> ! <dl> ! <dt><label>{module.function.block.L_COLUMN}</label></dt> ! <dd>{module.function.block.S_COLUMN_LIST}</dd> ! </dl> ! <p align="center"> ! {module.function.block.S_HIDDEN_FIELDS} ! <input type="submit" name="submit" value="{module.function.block.S_SUBMIT}" class="button1" /> ! </p> ! </fieldset> ! </form> ! </div> ! <!-- FUNCTION BLOCK Private Auth --> ! <div id="adminPrivate_{module.function.block.BLOCK_ID}" class="settings" style="display:{module.function.block.VISIBLE_PRIVATE};"> ! <form action="{S_ACTION}" method="post"> ! <fieldset> ! <legend style="cursor:pointer;" onclick="onMenuCatClick('{module.function.block.BLOCK_ID}','adminPrivate_');">{module.function.block.L_TITLE}</legend> ! <table width="100%" cellpadding="0" cellspacing="0" border="0" align="center"> <tr> ! <td width="40%" class="row3" align="center" height="25" nowrap="nowrap"><b>{L_GROUPS}</b></td> ! <td width="20%" class="row3" align="center" nowrap="nowrap"><b>{L_VIEW}</b></td> ! <td width="20%" class="row3" align="center" nowrap="nowrap"><b>{L_EDIT}</b></td> ! <td width="20%" class="row3" align="center" nowrap="nowrap"><b>{L_IS_MODERATOR}</b></td> </tr> <tr> ! <td class="row1" align="center" colspan="4"> ! <div style="overflow:auto; overflow-y:scroll; height:150px;"> ! <table width="100%" cellpadding="0" cellspacing="0" border="0" align="center"> ! <!-- BEGIN grouprows --> ! {module.function.block.grouprows.GROUP_ROWS} ! <!-- END grouprows --> ! </table> ! </div> </td> ! </tr> </table> ! <p align="center"> ! {module.function.block.S_HIDDEN_PRIVATE_FIELDS} ! <input type="submit" name="submit" value="{module.function.block.S_SUBMIT}" class="button1" /> ! </p> ! </fieldset> ! </form> ! </div> ! </div> ! <!-- END block --> </div> ! <span class="corners-bottom"><span></span></span> </div> </div> <!-- FUNCTION BLOCK END --> </div> <!-- END function --> <!-- END module --> </div> + <span class="corners-bottom"><span></span></span> </div> </div> --- NEW FILE: index_frameset.html --- <html dir="{S_CONTENT_DIRECTION}"> <head> <title>{L_ADMIN_TITLE}</title> <meta http-equiv="Content-Type" content="text/html;" /> <script type="text/javascript"> //this will disable proxi's in AdminCP if (top.location != self.location) top.location = self.location.href; </script> </head> <frameset cols="20%,*" rows="*" border="1" framespacing="0" frameborder="yes"> <frame src="{S_FRAME_NAV}" name="nav" marginwidth="0" marginheight="0" scrolling="auto" /> <frame src="{S_FRAME_MAIN}" name="main" marginwidth="0" marginheight="0" scrolling="auto" /> </frameset> <noframes> <body bgcolor="#FFFFFF" text="#000000"> <p>Sorry, your browser doesn't seem to support frames</p> </body> </noframes> </html> Index: mx_pagecp_admin_body.html =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/admin/mx_pagecp_admin_body.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** mx_pagecp_admin_body.html 20 Feb 2008 12:55:18 -0000 1.2 --- mx_pagecp_admin_body.html 15 Oct 2009 15:58:30 -0000 1.3 *************** *** 306,310 **** </form> </div> - <div style="clear:both"> {RESULT_MESSAGE} --- 306,309 ---- *************** *** 346,412 **** --> </script> ! <div class="panel bg3"> <span class="corners-top"><span></span></span> ! <div style="clear:both"></div> ! <div class="inner" style="padding:0.4em"> ! <!-- BEGIN no_pages --> ! <div class="inner">{nopages.NONE}</div> ! <!-- END no_pages --> ! <!-- BEGIN pages --> ! <div id="adminPage_{pages.PAGE_ID}" class="inner" style="display:{pages.VISIBLE};clear:both;"> ! <div style="float:right;height:40px;horizontal-align:center"> ! <!-- BEGIN is_page --> ! <a href="{pages.U_PREVIEW}" target="_blank" title="{L_PREVIEW}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_preview.gif" align="absmiddle" /></a> ! <a href="javascript:onMenuCatClick('{pages.PAGE_ID}','adminPageEdit_');" title="{L_EDIT}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_edit.gif" align="absmiddle" /></a> ! <a href="javascript:onMenuCatClick('{pages.PAGE_ID}','adminPageSettings_');" title="{L_SETTING}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_edit_page.gif" align="absmiddle" /></a> ! <a href="javascript:onMenuCatClick('{pages.PAGE_ID}','adminPagePrivate_');" title="{L_PERMISSIONS}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_permissions.gif" align="absmiddle" /></a> ! <a href="javascript:onMenuCatClick('{pages.PAGE_ID}','adminPageDelete_');" title="{L_DELETE}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_delete.gif" align="absmiddle" /></a> ! <!-- END is_page --> ! </div> ! <div style="float:left;height:40px;horizontal-align:center"> ! {pages.PAGE_ICON} ! <strong>{pages.PAGE_TITLE}</strong> ! <span class="explain">{pages.PAGE_DESC}</span> ! </div> ! <!-- BEGIN reload --> ! <div style="clear:both;"> ! <a href="{pages.reload.U_PAGE_EDIT}">Reload nedded</a> ! </div> ! <!-- END reload --> ! <div style="clear:both;"></div> ! <!-- PAGE Delete --> ! <div id="adminPageDelete_{pages.PAGE_ID}" style="clear:both;padding-top:0.1em;display:{pages.VISIBLE_DELETE};"> ! <fieldset> ! <legend style="cursor:pointer;" onclick="onMenuCatClick('{pages.PAGE_ID}','adminPageDelete_');"> ! <img src="{IMG_URL_CONTRACT}" border="0" align="absmiddle" /> ! <img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_delete.gif" align="absmiddle" /> ! {L_DELETE} ! </legend> ! <p> ! {pages.MESSAGE_DELETE} ! </p> ! </fieldset> ! </div> ! <!-- PAGE Delete --> ! <!-- PAGE Private --> ! <div id="adminPagePrivate_{pages.PAGE_ID}" style="clear:both;padding-top:0.1em;display:{pages.VISIBLE_PRIVATE};"> ! <form action="{S_ACTION}" method="post"> <fieldset> ! <legend style="cursor:pointer;" onclick="onMenuCatClick('{pages.PAGE_ID}','adminPagePrivate_');"> ! <img src="{IMG_URL_CONTRACT}" border="0" align="absmiddle" /> ! {L_PERMISSIONS} ! </legend> ! <p> <table border="0"> <thead> <tr> ! <th width="50%" align="center" height="20" nowrap="nowrap"><b>{L_GROUPS}</b></th> ! <th width="25%" align="center" nowrap="nowrap"><b>{L_VIEW}</b></th> ! <th width="24%" align="center" nowrap="nowrap"><b>{L_IS_MODERATOR}</b></th> </tr> </thead> <tbody> <tr> ! <td align="center" colspan="3"> <div style="overflow:auto; overflow-y:scroll; height:200px;"> <table width="100%" cellpadding="0" cellspacing="0" border="0" align="center"> --- 345,400 ---- --> </script> ! <div class="acp"> ! <div class="panel bg3"> <span class="corners-top"><span></span></span> ! <div class="content"> ! <!-- BEGIN no_pages --> ! <div>{nopages.NONE}</div> ! <!-- END no_pages --> ! <!-- BEGIN pages --> ! <div id="adminPage_{pages.PAGE_ID}" class="clear" style="display:{pages.VISIBLE};"> ! <div class="header"> ! <!-- BEGIN is_page --> ! <div class="buttons"> ! <a href="{pages.U_PREVIEW}" target="_blank" title="{L_PREVIEW}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_preview.gif" align="absmiddle" /></a> ! <a href="javascript:onMenuCatClick('{pages.PAGE_ID}','adminPageEdit_');" title="{L_EDIT}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_edit.gif" align="absmiddle" /></a> ! <a href="javascript:onMenuCatClick('{pages.PAGE_ID}','adminPageSettings_');" title="{L_SETTING}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_edit_page.gif" align="absmiddle" /></a> ! <a href="javascript:onMenuCatClick('{pages.PAGE_ID}','adminPagePrivate_');" title="{L_PERMISSIONS}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_permissions.gif" align="absmiddle" /></a> ! <a href="javascript:onMenuCatClick('{pages.PAGE_ID}','adminPageDelete_');" title="{L_DELETE}"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/admin_icons/icon_delete.gif" align="absmiddle" /></a> ! </div> ! <!-- END is_page --> ! {pages.PAGE_ICON} ! <span class="title"><strong>{pages.PAGE_TITLE}</strong></span> ! <span class="explain">{pages.PAGE_DESC}</span> ! </div> ! <!-- BEGIN reload --> ! <div class="settings"> ! <a href="{pages.reload.U_PAGE_EDIT}">{L_RELOAD}</a> ! </div> ! <!-- END reload --> ! <!-- PAGE Delete --> ! <div id="adminPageDelete_{pages.PAGE_ID}" class="settings" style="display:{pages.VISIBLE_DELETE};"> <fieldset> ! <legend onclick="onMenuCatClick('{pages.PAGE_ID}','adminPageDelete_');">{L_DELETE}</legend> ! <p>{pages.MESSAGE_DELETE}</p> ! </fieldset> ! </div> ! <!-- PAGE Private --> ! <div id="adminPagePrivate_{pages.PAGE_ID}" class="settings" style="display:{pages.VISIBLE_PRIVATE};"> ! <form action="{S_ACTION}" method="post"> ! <fieldset> ! <legend onclick="onMenuCatClick('{pages.PAGE_ID}','adminPagePrivate_');">{L_PERMISSIONS}</legend> <table border="0"> <thead> <tr> ! <th width="48%" align="center" height="20" nowrap="nowrap">{L_GROUPS}</th> ! <th width="25%" align="center" nowrap="nowrap">{L_VIEW}</th> ! <th width="24%" align="center" nowrap="nowrap">{L_IS_MODERATOR}</th> ! <th width="40px" align="center" nowrap="nowrap"> </th> </tr> </thead> <tbody> <tr> ! <td align="center" colspan="4"> <div style="overflow:auto; overflow-y:scroll; height:200px;"> <table width="100%" cellpadding="0" cellspacing="0" border="0" align="center"> *************** *** 430,795 **** </tbody> </table> ! <p align="center"> ! {pages.S_HIDDEN_PRIVATE_FIELDS} ! <input type="submit" name="submit" value="{pages.S_SUBMIT}" class="button2" /> ! </p> ! </fieldset> ! </form> ! </div> ! <!-- PAGE Private --> ! <!-- PAGE Edit --> ! <!-- BEGIN is_page --> ! <div id="adminPageEdit_{pages.PAGE_ID}" style="display:{pages.VISIBLE_EDIT};clear:both;padding-top:0.1em"> ! <!-- END is_page --> ! <form action="{S_ACTION}" method="post"> ! <fieldset> ! <legend style="cursor:pointer" onclick="onMenuCatClick('{pages.PAGE_ID}','adminPageEdit_');"> ! <img src="{IMG_URL_CONTRACT}" border="0" align="absmiddle" /> ! <img src="... [truncated message content] |
|
From: Culprit <cul...@us...> - 2009-10-15 15:58:40
|
Update of /cvsroot/mxbb/core/templates/prosilver In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv22062/core/templates/prosilver Modified Files: overall_header_navigation_phpbb.html overall_header_navigation_nopageicon.html overall_header_navigation.html prosilver.css overall_header.html mx_main_layout.html overall_noheader.html Log Message: prosilver - admin huge update Index: overall_header_navigation.html =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/overall_header_navigation.html,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** overall_header_navigation.html 18 Dec 2008 01:03:15 -0000 1.17 --- overall_header_navigation.html 15 Oct 2009 15:58:30 -0000 1.18 *************** *** 1,9 **** ! <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> ! <html xmlns="http://www.w3.org/1999/xhtml" dir="{S_CONTENT_DIRECTION}" lang="{S_USER_LANG}" xml:lang="{S_USER_LANG}"> ! <html> <head> <meta http-equiv="Content-Type" content="text/html; charset={S_CONTENT_ENCODING}" /> <meta http-equiv="Content-Style-Type" content="text/css" /> ! <!-- IF SET_BASE --><base href="{U_PORTAL_ROOT_PATH}" ><!-- ENDIF --> {META} {NAV_LINKS} --- 1,8 ---- ! <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> ! <html xmlns="http://www.w3.org/1999/xhtml" dir="{S_CONTENT_DIRECTION}" xml:lang="{S_USER_LANG}"> <head> <meta http-equiv="Content-Type" content="text/html; charset={S_CONTENT_ENCODING}" /> <meta http-equiv="Content-Style-Type" content="text/css" /> ! <!-- IF SET_BASE --><base href="{U_PORTAL_ROOT_PATH}" /><!-- ENDIF --> {META} {NAV_LINKS} *************** *** 33,37 **** <!-- IF GECKO --> <!-- Optionally, redefine some defintions for gecko browsers --> ! <link rel="stylesheet" href="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}{T_GECKO_STYLESHEET}" type="text/css" > <!-- ENDIF --> --- 32,36 ---- <!-- IF GECKO --> <!-- Optionally, redefine some defintions for gecko browsers --> ! <link rel="stylesheet" href="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}{T_GECKO_STYLESHEET}" type="text/css" /> <!-- ENDIF --> *************** *** 41,45 **** <!-- IF ENABLE_PM_POPUP --> ! <script language="javascript" type="text/javascript"><!-- if( {PRIVATE_MESSAGE_NEW_FLAG} ) { --- 40,44 ---- <!-- IF ENABLE_PM_POPUP --> ! <script type="text/javascript"><!-- if( {PRIVATE_MESSAGE_NEW_FLAG} ) { *************** *** 49,53 **** <!-- ENDIF --> ! <script language="javascript" type="text/javascript"><!-- function checkSearch() --- 48,52 ---- <!-- ENDIF --> ! <script type="text/javascript"><!-- function checkSearch() *************** *** 81,86 **** // --></script> ! <script language="javascript" type="text/javascript" src="{U_PORTAL_ROOT_PATH}modules/mx_shared/lib/Common.js"></script> ! <script language="javascript" type="text/javascript" src="{U_PORTAL_ROOT_PATH}modules/mx_shared/lib/Toggle.js"></script> {MX_ADDITIONAL_JS_FILES} --- 80,85 ---- // --></script> ! <script type="text/javascript" src="{U_PORTAL_ROOT_PATH}modules/mx_shared/lib/Common.js"></script> ! <script type="text/javascript" src="{U_PORTAL_ROOT_PATH}modules/mx_shared/lib/Toggle.js"></script> {MX_ADDITIONAL_JS_FILES} *************** *** 90,94 **** <body id="mxbb" class="section-index {S_CONTENT_DIRECTION}"> <div id="wrap"> ! <a name="top" id="top"></a> <div id="page-header" style="margin-bottom:0px;padding-bottom:0px;"> <div class="headerbar" style="margin-bottom:0px;padding-bottom:0px;"> --- 89,93 ---- <body id="mxbb" class="section-index {S_CONTENT_DIRECTION}"> <div id="wrap"> ! <a id="top"></a> <div id="page-header" style="margin-bottom:0px;padding-bottom:0px;"> <div class="headerbar" style="margin-bottom:0px;padding-bottom:0px;"> *************** *** 98,109 **** {PAGE_ICON} </div> ! <div align="right" style="float:right;text-align:right;"> ! <span align="right" style="width:100%;text-align:right;"> ! <h1 style="margin-right:0px">{PAGE_TITLE}</h1> <p>{PAGE_DESCRIPTION}</p> - </span> </div> ! <div align="left" id="site-description" style="float:left"> ! <a href="{U_INDEX}" title="{L_INDEX}" id="logo"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/logo.gif" border="0" alt="{L_INDEX}" vspace="1"/></a> <h1>{SITENAME}</h1> <p>{SITE_DESCRIPTION}</p> --- 97,106 ---- {PAGE_ICON} </div> ! <div style="float:right;text-align:right;"> ! <h1 style="margin-right:0px;width:100%;text-align:right;">{PAGE_TITLE}</h1> <p>{PAGE_DESCRIPTION}</p> </div> ! <div id="site-description" style="float:left"> ! <a href="{U_INDEX}" title="{L_INDEX}" id="logo"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/logo.gif" alt="{L_INDEX}" /></a> <h1>{SITENAME}</h1> <p>{SITE_DESCRIPTION}</p> *************** *** 133,137 **** <ul class="linklist navlinks" style="font-weight:normal;margin-top:0px;padding-top:0px;"> <li class="icon-home"><a href="{U_INDEX}" title="{L_INDEX}"><strong>{L_INDEX}</strong></a></li> ! <li class="icon-help">Pages navigation, eg. forum navigation, like pafiledb navigation</li> <li class="rightside"><a href="#" onclick="fontsizeup(); return false;" class="fontsize" title="{L_FONTSIZE_CHANGE}">{L_FONSIZE_CHANGE}</a></li> </ul> --- 130,134 ---- <ul class="linklist navlinks" style="font-weight:normal;margin-top:0px;padding-top:0px;"> <li class="icon-home"><a href="{U_INDEX}" title="{L_INDEX}"><strong>{L_INDEX}</strong></a></li> ! <li class="icon-help">» {PAGE_TITLE}</li> <li class="rightside"><a href="#" onclick="fontsizeup(); return false;" class="fontsize" title="{L_FONTSIZE_CHANGE}">{L_FONSIZE_CHANGE}</a></li> </ul> *************** *** 164,167 **** <!-- ENDIF --> </div> - <a name="start_here"></a> <div id="page-body"> \ No newline at end of file --- 161,163 ---- Index: mx_main_layout.html =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/mx_main_layout.html,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** mx_main_layout.html 16 Jun 2008 18:29:57 -0000 1.3 --- mx_main_layout.html 15 Oct 2009 15:58:30 -0000 1.4 *************** *** 1,9 **** ! <table border="0" cellspacing="5" cellpadding="0" width="100%" id="main_table" onload="go_trough( this)"> <tr> <!-- BEGIN layout_column --> ! <td width="{layout_column.BLOCK_SIZE}" valign="top"> <!-- BEGIN blocks --> <!-- BEGIN sub_start --> ! <table border="0" cellspacing="0" cellpadding="0" width="{layout_column.BLOCK_SIZE}" onload="go_trough( this)"> <tr> <!-- END sub_start --> --- 1,9 ---- ! <table border="0" cellspacing="5" cellpadding="0" width="100%" id="main_table"> <tr> <!-- BEGIN layout_column --> ! <td style="width: <!-- IF layout_column.BLOCK_SIZE neq '100%' -->{layout_column.BLOCK_SIZE}px<!-- ENDIF -->; " valign="top"> <!-- BEGIN blocks --> <!-- BEGIN sub_start --> ! <table border="0" cellspacing="0" cellpadding="0" width="<!-- IF layout_column.BLOCK_SIZE neq '100%' -->{layout_column.BLOCK_SIZE}px<!-- ENDIF -->"> <tr> <!-- END sub_start --> *************** *** 11,18 **** <!-- BEGIN sub_col --> {layout_column.blocks.sub_col.INNER_SPACE} ! <td class="{layout_column.blocks.sub_col.COL_CLASS}" width="{layout_column.blocks.sub_col.BLOCK_SIZE}"> <!-- END sub_col --> <!-- BEGIN show_title --> ! <div class="forabg" style="margin-bottom:0px;padding-bottom:0px;"> <div class="inner"> <span class="corners-top"><span></span></span> --- 11,18 ---- <!-- BEGIN sub_col --> {layout_column.blocks.sub_col.INNER_SPACE} ! <td class="{layout_column.blocks.sub_col.COL_CLASS}" width="<!-- IF layout_column.blocks.sub_col.BLOCK_SIZE neq '100%' -->{layout_column.blocks.sub_col.BLOCK_SIZE}<!-- ELSE -->100%<!-- ENDIF -->"> <!-- END sub_col --> <!-- BEGIN show_title --> ! <div class="forabg<!-- IF not layout_column.blocks.show_title.SHOW_TITLE --> no-title<!-- ENDIF -->" style="margin-bottom:0px;padding-bottom:0px;"> <div class="inner"> <span class="corners-top"><span></span></span> *************** *** 36,40 **** <!-- BEGIN show_title --> <li class="header"> ! <dl class="icon"><dt class="header">{layout_column.blocks.show_title.L_TITLE}</dt></dl> </li> <!-- END show_title --> --- 36,40 ---- <!-- BEGIN show_title --> <li class="header"> ! <dl class="icon"><dt class="header">{layout_column.blocks.show_title.L_TITLE}{layout_column.blocks.show_title.SHOW_TITLE}</dt></dl> </li> <!-- END show_title --> *************** *** 66,89 **** <!-- END layout_column --> </tr> ! </table> ! <script type="text/javascript"> ! <!-- ! function getObj(obj) ! { ! return ( document.getElementById ? document.getElementById(obj) : ( document.all ? document.all[obj] : null ) ); ! } ! function go_trough( obj) ! { ! obj1 = obj.rows[0].childNodes; ! for( i = 0; i < obj1.length; i++) ! { ! if ( obj1[i].nodeName == 'TD' && obj1[i].width == '100%') ! { ! obj1[i].width=''; ! } ! } ! } ! ! go_trough( getObj('main_table')); ! --> ! </script> \ No newline at end of file --- 66,68 ---- <!-- END layout_column --> </tr> ! </table> \ No newline at end of file Index: overall_noheader.html =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/overall_noheader.html,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** overall_noheader.html 18 Dec 2008 01:03:15 -0000 1.8 --- overall_noheader.html 15 Oct 2009 15:58:30 -0000 1.9 *************** *** 1,5 **** <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" dir="{S_CONTENT_DIRECTION}" lang="{S_USER_LANG}" xml:lang="{S_USER_LANG}"> - <html> <head> <meta http-equiv="Content-Type" content="text/html; charset={S_CONTENT_ENCODING}" /> --- 1,4 ---- Index: prosilver.css =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/prosilver.css,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** prosilver.css 27 Aug 2008 06:00:00 -0000 1.16 --- prosilver.css 15 Oct 2009 15:58:30 -0000 1.17 *************** *** 18,368 **** @import url("./theme/tweaks.css"); @import url("./theme/colours.css"); ! ! .block { ! background-position: 0px -20px; ! } ! ! .blockbody { ! padding: 3px; ! margin-bottom: 4px; ! background-repeat: no-repeat; ! background-position: 100% 0; ! } ! .textbody { ! padding: 0; ! line-height: 1.48em; ! color: #333333; ! clear: both; ! } ! ! .textbody .ignore { ! font-size: 1.1em; ! } ! ! .textbody .content { ! font-size: 1.2em; ! } ! .textbody h3.first { ! /* The first post on the page uses this */ ! font-size: 1.5em; ! } ! ! .textbody h3 { ! /* Postbody requires a different h3 format - so change it here */ ! font-size: 1.4em; ! padding: 2px 0 0 0; ! margin: 0 0 0.3em 0 !important; ! text-transform: none; ! border: none; ! font-family: "Trebuchet MS", Verdana, Helvetica, Arial, sans-serif; ! line-height: 125%; ! } ! ! .textbody h3 img { ! /* Also see tweaks.css */ ! vertical-align: bottom; ! } ! ! .blockcp { ! width: 100%; ! border: 1px solid #CCCFD3; ! background-color: #FFFFFF; ! padding: 1px; ! } ! ! .blockcp th { ! padding: 3px 4px; ! color: #FFFFFF; ! background: #70AED3 url("./theme/images/gradient2b.gif") bottom left repeat-x; ! border-top: 1px solid #6DACD2; ! border-bottom: 1px solid #327AA5; ! text-align: left; ! text-transform: uppercase; ! } ! .blockcp .row1 { background-color: #F9F9F9; } ! .blockcp .row2 { background-color: #DCEBFE; } ! ! .blockcp .explain { font-style:italic;font-weight:normal;} ! ! .blockcp fieldset { ! margin: 10px 10px 15px 10px; ! padding: 10px; ! border-top: 1px solid #D7D7D7; ! border-right: 1px solid #CCCCCC; ! border-bottom: 1px solid #CCCCCC; ! border-left: 1px solid #D7D7D7; ! background-color: #FFFFFF; ! position: relative; ! } ! .blockcp .delete { ! color: Red; ! } ! .blockcp fieldset.menurows { ! padding:1px; ! } ! ! .blockcp .row { ! padding: 3px 5px 3px 5px; ! } ! .blockcp .row:hover { ! background-color: #F6F4D0; ! } ! ! .blockcp legend { ! padding: 1px 0; ! font-family: Tahoma,arial,Verdana,Sans-serif; ! font-size: 1.0em; ! font-weight: bold; ! color: #115098; ! margin-top: -.3em; ! position: relative; ! text-transform: none; ! line-height: 1.2em; ! top: 0; ! vertical-align: middle; ! } ! ! /* Hide from macIE \*/ ! .blockcp legend { top: -1.2em; } ! /* end */ ! ! .blockcp fieldset dl:hover dt label { ! color: #000000; ! } ! ! .blockcp fieldset.fields2 dl:hover dt label { ! color: inherit; ! } ! ! /* Quick-login on index page */ ! .blockcp fieldset.quick-login input { ! background-color: #F2F3F3; ! } ! ! .blockcp fieldset dl { ! margin-bottom: 10px; ! ! font-size: 0.85em; ! ! } ! ! .blockcp fieldset dt { ! width: 45%; ! text-align: left; ! border: none; ! border-right: 1px solid #CCCCCC; ! padding-top: 3px; ! padding-right: 5px; ! margin-right:5px; ! font-weight: normal; ! text-transform: none; ! text-align: right; ! } ! .blockcp dt .explain { font-style: italic;} ! ! .blockcp dd { color: #666666; margin-left:5px; padding-left:5px;} ! .blockcp dd + dd { padding-top: 5px;} ! .blockcp dt span { padding: 0 5px 0 0;} ! ! .blockcp dd input { ! font-size: 1.00em; ! max-width: 100%; ! } ! ! .blockcp dd select { ! font-size: 100%; ! width: auto; ! max-width: 100%; ! } ! ! .blockcp dd textarea { ! font-size: 0.90em; ! width: 90%; ! } ! ! .blockcp dd select { ! width: auto; ! font-size: 1.00em; ! } ! ! .blockcp .dividers { ! border-top:solid 1px #CCCCCC; ! ! } ! .blockcp .dividers span{ ! top: -1.2em; ! } ! ! H1.blockcp { ! font-weight: normal; ! color: #28313F; ! border-bottom: 1px solid #CCCCCC; ! font-size: 1.6em; ! margin-top: 0.5em; ! margin-bottom: 0.5em; ! padding-bottom: 0.5em; ! ! } ! ! /***********\ ! |* SiteBar *| ! \***********/ ! .sitebar { ! clear: both; ! margin-top: 2px; ! background: #12A3EB url("./theme/images/sitebar_bg.gif") repeat-x; ! } ! .sitebar .corners-bottom { ! top: -5px; ! margin-top:0px; ! position:relative; ! ! } ! ! .sitebar UL { ! margin-left: 0px; ! padding-bottom: 1px; ! font-weight: bold; ! } ! ! .sitebar UL LI { ! float:left; ! display:block; ! } ! .sitebar .button A.nav, .sitebar .button-current A.nav { ! text-decoration:none; ! background: #cadceb url("./theme/images/sitebar_bg.gif") repeat-x; ! } ! ! .sitebar .button A.nav , .sitebar .button-current A.nav { ! font-size: 1.3em; ! padding: 3px 5px 3px 5px; ! color: #FFFFFF; ! display:block; ! text-decoration: none; ! } ! .sitebar .button-current A.nav { ! background-position: 0 -44px; ! color: #0a90d3; ! } ! ! .sitebar UL LI.button A.nav:active, .sitebar UL LI.button-current A.nav:active { ! background-color: #CCCCCC; ! background-image: url("./theme/images/bg_active.gif"); ! background-position: -1px 0px; ! color: Red; ! } ! ! .sitebar UL LI.button A.nav:hover, .sitebar UL LI.button-current A.nav:hover { ! background-color: #CCCCCC; ! background-position: 0 -22px; ! color: #000000; ! } ! ! .linklist .icon { ! background-position: 0 50%; ! background-repeat: no-repeat; ! background-image: none; ! padding: 1px 0 0 17px; ! } ! ! UL.rightside { ! float: right; ! } ! .rtl ul.linklist li.rightside, .rtl p.rightside { ! float: right; ! margin-right: 0; ! margin-left: 5px; ! text-align: right; ! } ! ! /* Search box ! --------------------------------------------- */ ! #nav-search { ! color: #FFFFFF; ! position: relative; ! margin-top: 1px; ! margin-right: 5px; ! margin-bottom: 1px; ! display: block; ! float: right; ! text-align: right; ! white-space: nowrap; /* For Opera */ ! } ! ! .rtl #nav-search { ! float: left; ! text-align: left; ! margin-right: 0; ! margin-left: 5px; ! } ! ! #nav-search #keywords { ! width: 95px; ! background-color: #FFF; ! } ! ! #nav-search input { ! border: 1px solid #b0b0b0; ! } ! ! /* .button1 style defined later, just a few tweaks for the search button version */ ! #nav-search input.button1 { ! padding: 1px 5px; ! } ! ! #nav-search li { ! text-align: right; ! margin-top: 4px; ! } ! ! #nav-search img { ! vertical-align: middle; ! margin-right: 3px; ! } ! ! #tabs a span{ ! float: left; ! display: block; ! background: url("./theme/images/bg_tabs2.gif") no-repeat 100% -35px; ! padding: 7px 10px 4px 4px; ! color: #767676; ! white-space: nowrap; ! font-family: Arial, Helvetica, sans-serif; ! text-transform: uppercase; ! font-weight: bold; ! } ! #tabs .activetab a span { ! background-position: 100% 0; ! padding-bottom: 5px; ! color: #23649F; ! } ! ! #tabs a:hover { ! background-position: 0 -69px; ! } ! ! #tabs a:hover span { ! background-position: 100% -69px; ! } ! ! #tabs .activetab a:hover span { ! color: #115098; ! } ! ! .fieldset1, .fieldset1 FIELDSET { ! border: solid 1px #CCCCCC; ! background-color: #FFFFFF; ! padding:10px; ! } ! ! .fieldset1 FORM * { ! font-size: 1.0em; ! } ! ! .row1 { background-color: #ECF3F7; } /* .bg1 */ ! .row2 { background-color: #e1ebf2; } /* .bg2 */ ! .row2 { background-color: #cadceb; } /* .bg3 */ ! .row4 { background-color: #EFEFEF; } ! .row5 { background-color: #DEE3E7; } ! .row6 { background-color: #D1D7DC; } \ No newline at end of file --- 18,20 ---- @import url("./theme/tweaks.css"); @import url("./theme/colours.css"); ! @import url("./theme/mxPublisher.css"); Index: overall_header_navigation_nopageicon.html =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/overall_header_navigation_nopageicon.html,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** overall_header_navigation_nopageicon.html 18 Dec 2008 01:03:15 -0000 1.5 --- overall_header_navigation_nopageicon.html 15 Oct 2009 15:58:30 -0000 1.6 *************** *** 1,9 **** <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" dir="{S_CONTENT_DIRECTION}" lang="{S_USER_LANG}" xml:lang="{S_USER_LANG}"> - <html> <head> <meta http-equiv="Content-Type" content="text/html; charset={S_CONTENT_ENCODING}" /> <meta http-equiv="Content-Style-Type" content="text/css" /> ! <!-- IF SET_BASE --><base href="{U_PORTAL_ROOT_PATH}" ><!-- ENDIF --> {META} {NAV_LINKS} --- 1,8 ---- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" dir="{S_CONTENT_DIRECTION}" lang="{S_USER_LANG}" xml:lang="{S_USER_LANG}"> <head> <meta http-equiv="Content-Type" content="text/html; charset={S_CONTENT_ENCODING}" /> <meta http-equiv="Content-Style-Type" content="text/css" /> ! <!-- IF SET_BASE --><base href="{U_PORTAL_ROOT_PATH}" /><!-- ENDIF --> {META} {NAV_LINKS} *************** *** 34,38 **** <!-- IF GECKO --> <!-- Optionally, redefine some defintions for gecko browsers --> ! <link rel="stylesheet" href="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}{T_GECKO_STYLESHEET}" type="text/css" > <!-- ENDIF --> --- 33,37 ---- <!-- IF GECKO --> <!-- Optionally, redefine some defintions for gecko browsers --> ! <link rel="stylesheet" href="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}{T_GECKO_STYLESHEET}" type="text/css" /> <!-- ENDIF --> Index: overall_header_navigation_phpbb.html =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/overall_header_navigation_phpbb.html,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** overall_header_navigation_phpbb.html 18 Dec 2008 01:03:15 -0000 1.15 --- overall_header_navigation_phpbb.html 15 Oct 2009 15:58:29 -0000 1.16 *************** *** 1,9 **** ! <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> ! <html xmlns="http://www.w3.org/1999/xhtml" dir="{S_CONTENT_DIRECTION}" lang="{S_USER_LANG}" xml:lang="{S_USER_LANG}"> ! <html> <head> <meta http-equiv="Content-Type" content="text/html; charset={S_CONTENT_ENCODING}" /> <meta http-equiv="Content-Style-Type" content="text/css" /> ! <!-- IF SET_BASE --><base href="{U_PORTAL_ROOT_PATH}" ><!-- ENDIF --> {META} {NAV_LINKS} --- 1,8 ---- ! <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> ! <html xmlns="http://www.w3.org/1999/xhtml" dir="{S_CONTENT_DIRECTION}" xml:lang="{S_USER_LANG}"> <head> <meta http-equiv="Content-Type" content="text/html; charset={S_CONTENT_ENCODING}" /> <meta http-equiv="Content-Style-Type" content="text/css" /> ! <!-- IF SET_BASE --><base href="{U_PORTAL_ROOT_PATH}" /><!-- ENDIF --> {META} {NAV_LINKS} *************** *** 33,37 **** <!-- IF GECKO --> <!-- Optionally, redefine some defintions for gecko browsers --> ! <link rel="stylesheet" href="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}{T_GECKO_STYLESHEET}" type="text/css" > <!-- ENDIF --> --- 32,36 ---- <!-- IF GECKO --> <!-- Optionally, redefine some defintions for gecko browsers --> ! <link rel="stylesheet" href="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}{T_GECKO_STYLESHEET}" type="text/css" /> <!-- ENDIF --> *************** *** 41,45 **** <!-- IF ENABLE_PM_POPUP --> ! <script language="javascript" type="text/javascript"><!-- if( {PRIVATE_MESSAGE_NEW_FLAG} ) { --- 40,44 ---- <!-- IF ENABLE_PM_POPUP --> ! <script type="text/javascript"><!-- if( {PRIVATE_MESSAGE_NEW_FLAG} ) { *************** *** 49,53 **** <!-- ENDIF --> ! <script language="javascript" type="text/javascript"><!-- function checkSearch() --- 48,52 ---- <!-- ENDIF --> ! <script type="text/javascript"><!-- function checkSearch() *************** *** 81,86 **** // --></script> ! <script language="javascript" type="text/javascript" src="{U_PORTAL_ROOT_PATH}modules/mx_shared/lib/Common.js"></script> ! <script language="javascript" type="text/javascript" src="{U_PORTAL_ROOT_PATH}modules/mx_shared/lib/Toggle.js"></script> {MX_ADDITIONAL_JS_FILES} --- 80,85 ---- // --></script> ! <script type="text/javascript" src="{U_PORTAL_ROOT_PATH}modules/mx_shared/lib/Common.js"></script> ! <script type="text/javascript" src="{U_PORTAL_ROOT_PATH}modules/mx_shared/lib/Toggle.js"></script> {MX_ADDITIONAL_JS_FILES} *************** *** 90,94 **** <body id="mxbb" class="section-index {S_CONTENT_DIRECTION}"> <div id="wrap"> ! <a name="top" id="top"></a> <div id="page-header" style="margin-bottom:0px;padding-bottom:0px;"> <div class="headerbar" style="margin-bottom:0px;padding-bottom:0px;"> --- 89,93 ---- <body id="mxbb" class="section-index {S_CONTENT_DIRECTION}"> <div id="wrap"> ! <a id="top"></a> <div id="page-header" style="margin-bottom:0px;padding-bottom:0px;"> <div class="headerbar" style="margin-bottom:0px;padding-bottom:0px;"> *************** *** 98,109 **** {PAGE_ICON} </div> ! <div align="right" style="float:right;text-align:right;"> ! <span align="right" style="width:100%;text-align:right;"> ! <h1 style="margin-right:0px">{PAGE_TITLE}</h1> <p>{PAGE_DESCRIPTION}</p> - </span> </div> ! <div align="left" id="site-description" style="float:left"> ! <a href="{U_INDEX}" title="{L_INDEX}" id="logo"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/logo.gif" border="0" alt="{L_INDEX}" vspace="1"/></a> <h1>{SITENAME}</h1> <p>{SITE_DESCRIPTION}</p> --- 97,106 ---- {PAGE_ICON} </div> ! <div style="float:right;text-align:right;"> ! <h1>{PAGE_TITLE}</h1> <p>{PAGE_DESCRIPTION}</p> </div> ! <div id="site-description" style="float:left"> ! <a href="{U_INDEX}" title="{L_INDEX}" id="logo"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/logo.gif" alt="{L_INDEX}" /></a> <h1>{SITENAME}</h1> <p>{SITE_DESCRIPTION}</p> *************** *** 172,175 **** <!-- ENDIF --> </div> - <a name="start_here"></a> <div id="page-body"> \ No newline at end of file --- 169,171 ---- Index: overall_header.html =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/overall_header.html,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** overall_header.html 18 Dec 2008 01:03:15 -0000 1.13 --- overall_header.html 15 Oct 2009 15:58:30 -0000 1.14 *************** *** 1,9 **** ! <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> ! <html xmlns="http://www.w3.org/1999/xhtml" dir="{S_CONTENT_DIRECTION}" lang="{S_USER_LANG}" xml:lang="{S_USER_LANG}"> ! <html> <head> <meta http-equiv="Content-Type" content="text/html; charset={S_CONTENT_ENCODING}" /> <meta http-equiv="Content-Style-Type" content="text/css" /> ! <!-- IF SET_BASE --><base href="{U_PORTAL_ROOT_PATH}" ><!-- ENDIF --> {META} {NAV_LINKS} --- 1,8 ---- ! <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> ! <html xmlns="http://www.w3.org/1999/xhtml" dir="{S_CONTENT_DIRECTION}" xml:lang="{S_USER_LANG}"> <head> <meta http-equiv="Content-Type" content="text/html; charset={S_CONTENT_ENCODING}" /> <meta http-equiv="Content-Style-Type" content="text/css" /> ! <!-- IF SET_BASE --><base href="{U_PORTAL_ROOT_PATH}" /><!-- ENDIF --> {META} {NAV_LINKS} *************** *** 33,37 **** <!-- IF GECKO --> <!-- Optionally, redefine some defintions for gecko browsers --> ! <link rel="stylesheet" href="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}{T_GECKO_STYLESHEET}" type="text/css" > <!-- ENDIF --> --- 32,36 ---- <!-- IF GECKO --> <!-- Optionally, redefine some defintions for gecko browsers --> ! <link rel="stylesheet" href="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}{T_GECKO_STYLESHEET}" type="text/css" /> <!-- ENDIF --> *************** *** 97,101 **** <div class="inner"><span class="corners-top"><span></span></span> <div id="site-description"> ! <a href="{U_INDEX}" title="{L_INDEX}" id="logo"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/logo.gif" border="0" alt="{L_INDEX}" vspace="1"/></a> <h1>{SITENAME}</h1> <p>{SITE_DESCRIPTION}</p> --- 96,100 ---- <div class="inner"><span class="corners-top"><span></span></span> <div id="site-description"> ! <a href="{U_INDEX}" title="{L_INDEX}" id="logo"><img src="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}images/logo.gif" alt="{L_INDEX}" vspace="1"/></a> <h1>{SITENAME}</h1> <p>{SITE_DESCRIPTION}</p> *************** *** 119,123 **** <!-- IF USER_LOGGED_OUT --> <li class="linklist"> ! <a href="{U_REGISTER}" class="mainmenu"><img src="{NAV_IMAGES_REGISTER}" class="mx_icon" border="0" alt="" hspace="1" align="middle" /></a><span class="mainmenu"><a href="{U_REGISTER}" class="mainmenu">{L_REGISTER}</a> </li> <!-- ENDIF --> --- 118,122 ---- <!-- IF USER_LOGGED_OUT --> <li class="linklist"> ! <a href="{U_REGISTER}" class="mainmenu"><img src="{NAV_IMAGES_REGISTER}" class="mx_icon" alt="" hspace="1" /></a><span class="mainmenu"><a href="{U_REGISTER}" class="mainmenu">{L_REGISTER}</a> </li> <!-- ENDIF --> |