Index: branches/main/admin/interface/version.php
===================================================================
--- branches/main/admin/interface/version.php	(revision 24)
+++ branches/main/admin/interface/version.php	(revision 25)
@@ -1,46 +1,42 @@
 <?php
-/**
- * About WebsiteBaker
+
+/*
+ * Copyright (C) 2017 Manuela v.d.Decken <manuela@isteam.de>
  *
- * Website Baker is a PHP-based Content Management System (CMS)
- * designed with one goal in mind: to enable its users to produce websites
- * with ease.
+ * DO NOT ALTER OR REMOVE COPYRIGHT OR THIS HEADER
  *
- * LICENSE INFORMATION
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, version 2 of the License.
  *
- * WebsiteBaker is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * WebsiteBaker is distributed in the hope that it will be useful,
+ * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- * See the GNU General Public License for more details.
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License 2 for more details.
  *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ * You should have received a copy of the GNU General Public License 2
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+/**
+ * Description of version.php
  *
- * WebsiteBaker Extra Information
- *
- * This file is where the WB release version is stored.
- *
- *
- * @category        admin
- * @package         interface
- * @author          WebsiteBaker Project
- * @copyright       WebsiteBaker Org. e.V.
- * @link            http://websitebaker.org/
- * @license         http://www.gnu.org/licenses/gpl.html
- * @platform        WebsiteBaker 2.8.3
- * @requirements    PHP 5.3.6 and higher
- * @revision        $Revision$
- * @version         $Id$
- * @lastmodified    $Date$
- *
+ * @package      Core
+ * @copyright    Manuela v.d.Decken <manuela@isteam.de>
+ * @author       Manuela v.d.Decken <manuela@isteam.de>
+ * @license      GNU General Public License 2.0
+ * @version      2.0.1
+ * @revision     $Id$
+ * @since        File available since 04.10.2017
+ * @deprecated   no / since 0000/00/00
+ * @description  simply stares the version number of installed files
  */
+//declare(strict_types = 1);
+//declare(encoding = 'UTF-8');
 
+//namespace ;
+
+// use
+
 /* -------------------------------------------------------- */
 // Must include code to stop this file being accessed directly
 if (!defined('WB_PATH')) { header("HTTP/1.0 404 Not Found"); flush(); }
@@ -48,7 +44,7 @@
 if (!defined('VERSION_LOADED')) {
     $sInfo = '
         VERSION  = "2.10.1-dev"
-        REVISION = "24"
+        REVISION = "25"
         SP       = ""
     ';
     foreach (parse_ini_string($sInfo) as $item=>$value) {
Index: branches/main/languages/BG.php
===================================================================
--- branches/main/languages/BG.php	(revision 24)
+++ branches/main/languages/BG.php	(revision 25)
@@ -31,7 +31,7 @@
 //declare(strict_types = 1);
 //declare(encoding = 'UTF-8');
 
-if (!defined('WB_PATH')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
+if (!defined('SYSTEM_RUN')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
 // Define that this file is loaded
 if (!defined('LANGUAGE_LOADED')) { define('LANGUAGE_LOADED', true); }
 
@@ -651,7 +651,4 @@
 $TEXT['YES'] = 'Да';
 
 /* include old languages format */
-if(file_exists(WB_PATH.'/languages/old.format.inc.php'))
-{
-    include(WB_PATH.'/languages/old.format.inc.php');
-}
+if (is_readable(__DIR__.'/old.format.inc.php')) { include __DIR__.'/old.format.inc.php'; }
Index: branches/main/languages/CA.php
===================================================================
--- branches/main/languages/CA.php	(revision 24)
+++ branches/main/languages/CA.php	(revision 25)
@@ -31,7 +31,7 @@
 //declare(strict_types = 1);
 //declare(encoding = 'UTF-8');
 
-if (!defined('WB_PATH')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
+if (!defined('SYSTEM_RUN')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
 // Define that this file is loaded
 if (!defined('LANGUAGE_LOADED')) { define('LANGUAGE_LOADED', true); }
 
@@ -651,7 +651,4 @@
 $TEXT['YES'] = 'Sí';
 
 /* include old languages format */
-if(file_exists(WB_PATH.'/languages/old.format.inc.php'))
-{
-    include(WB_PATH.'/languages/old.format.inc.php');
-}
+if (is_readable(__DIR__.'/old.format.inc.php')) { include __DIR__.'/old.format.inc.php'; }
Index: branches/main/languages/CS.php
===================================================================
--- branches/main/languages/CS.php	(revision 24)
+++ branches/main/languages/CS.php	(revision 25)
@@ -31,7 +31,7 @@
 //declare(strict_types = 1);
 //declare(encoding = 'UTF-8');
 
-if (!defined('WB_PATH')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
+if (!defined('SYSTEM_RUN')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
 // Define that this file is loaded
 if (!defined('LANGUAGE_LOADED')) { define('LANGUAGE_LOADED', true); }
 
@@ -651,7 +651,4 @@
 $TEXT['YES'] = 'Ano';
 
 /* include old languages format */
-if(file_exists(WB_PATH.'/languages/old.format.inc.php'))
-{
-    include(WB_PATH.'/languages/old.format.inc.php');
-}
+if (is_readable(__DIR__.'/old.format.inc.php')) { include __DIR__.'/old.format.inc.php'; }
Index: branches/main/languages/DA.php
===================================================================
--- branches/main/languages/DA.php	(revision 24)
+++ branches/main/languages/DA.php	(revision 25)
@@ -31,7 +31,7 @@
 //declare(strict_types = 1);
 //declare(encoding = 'UTF-8');
 
-if (!defined('WB_PATH')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
+if (!defined('SYSTEM_RUN')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
 // Define that this file is loaded
 if (!defined('LANGUAGE_LOADED')) { define('LANGUAGE_LOADED', true); }
 
@@ -651,7 +651,4 @@
 $TEXT['YES'] = 'Ja';
 
 /* include old languages format */
-if(file_exists(WB_PATH.'/languages/old.format.inc.php'))
-{
-    include(WB_PATH.'/languages/old.format.inc.php');
-}
+if (is_readable(__DIR__.'/old.format.inc.php')) { include __DIR__.'/old.format.inc.php'; }
Index: branches/main/languages/DE.php
===================================================================
--- branches/main/languages/DE.php	(revision 24)
+++ branches/main/languages/DE.php	(revision 25)
@@ -31,7 +31,7 @@
 //declare(strict_types = 1);
 //declare(encoding = 'UTF-8');
 
-if (!defined('WB_PATH')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
+if (!defined('SYSTEM_RUN')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
 // Define that this file is loaded
 if (!defined('LANGUAGE_LOADED')) { define('LANGUAGE_LOADED', true); }
 
@@ -399,6 +399,7 @@
 $TEXT['FULL_NAME'] = 'Voller Name';
 $TEXT['FUNCTION'] = 'Funktion';
 $TEXT['GROUP'] = 'Gruppe';
+$TEXT['GUEST'] = 'Gast';
 $TEXT['HEADER'] = 'Kopfzeile';
 $TEXT['HEADING'] = 'Überschrift';
 $TEXT['HEADING_CSS_FILE'] = 'Aktuelle Moduldatei: ';
@@ -651,7 +652,4 @@
 $TEXT['YES'] = 'Ja';
 
 /* include old languages format */
-if(file_exists(WB_PATH.'/languages/old.format.inc.php'))
-{
-    include(WB_PATH.'/languages/old.format.inc.php');
-}
+if (is_readable(__DIR__.'/old.format.inc.php')) { include __DIR__.'/old.format.inc.php'; }
Index: branches/main/languages/EN.php
===================================================================
--- branches/main/languages/EN.php	(revision 24)
+++ branches/main/languages/EN.php	(revision 25)
@@ -31,7 +31,7 @@
 //declare(strict_types = 1);
 //declare(encoding = 'UTF-8');
 
-if (!defined('WB_PATH')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
+if (!defined('SYSTEM_RUN')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
 // Define that this file is loaded
 if (!defined('LANGUAGE_LOADED')) { define('LANGUAGE_LOADED', true); }
 
@@ -399,6 +399,7 @@
 $TEXT['FULL_NAME'] = 'Full Name';
 $TEXT['FUNCTION'] = 'Function';
 $TEXT['GROUP'] = 'Group';
+$TEXT['GUEST'] = 'Guest';
 $TEXT['HEADER'] = 'Header';
 $TEXT['HEADING'] = 'Heading';
 $TEXT['HEADING_CSS_FILE'] = 'Actual module file: ';
@@ -651,7 +652,4 @@
 $TEXT['YES'] = 'Yes';
 
 /* include old languages format */
-if(file_exists(WB_PATH.'/languages/old.format.inc.php'))
-{
-    include(WB_PATH.'/languages/old.format.inc.php');
-}
+if (is_readable(__DIR__.'/old.format.inc.php')) { include __DIR__.'/old.format.inc.php'; }
Index: branches/main/languages/ES.php
===================================================================
--- branches/main/languages/ES.php	(revision 24)
+++ branches/main/languages/ES.php	(revision 25)
@@ -31,7 +31,7 @@
 //declare(strict_types = 1);
 //declare(encoding = 'UTF-8');
 
-if (!defined('WB_PATH')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
+if (!defined('SYSTEM_RUN')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
 // Define that this file is loaded
 if (!defined('LANGUAGE_LOADED')) { define('LANGUAGE_LOADED', true); }
 
@@ -651,7 +651,4 @@
 $TEXT['YES'] = 'Si';
 
 /* include old languages format */
-if(file_exists(WB_PATH.'/languages/old.format.inc.php'))
-{
-    include(WB_PATH.'/languages/old.format.inc.php');
-}
+if (is_readable(__DIR__.'/old.format.inc.php')) { include __DIR__.'/old.format.inc.php'; }
Index: branches/main/languages/ET.php
===================================================================
--- branches/main/languages/ET.php	(revision 24)
+++ branches/main/languages/ET.php	(revision 25)
@@ -31,7 +31,7 @@
 //declare(strict_types = 1);
 //declare(encoding = 'UTF-8');
 
-if (!defined('WB_PATH')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
+if (!defined('SYSTEM_RUN')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
 // Define that this file is loaded
 if (!defined('LANGUAGE_LOADED')) { define('LANGUAGE_LOADED', true); }
 
@@ -651,7 +651,4 @@
 $TEXT['YES'] = 'Jah';
 
 /* include old languages format */
-if(file_exists(WB_PATH.'/languages/old.format.inc.php'))
-{
-    include(WB_PATH.'/languages/old.format.inc.php');
-}
+if (is_readable(__DIR__.'/old.format.inc.php')) { include __DIR__.'/old.format.inc.php'; }
Index: branches/main/languages/FI.php
===================================================================
--- branches/main/languages/FI.php	(revision 24)
+++ branches/main/languages/FI.php	(revision 25)
@@ -31,7 +31,7 @@
 //declare(strict_types = 1);
 //declare(encoding = 'UTF-8');
 
-if (!defined('WB_PATH')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
+if (!defined('SYSTEM_RUN')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
 // Define that this file is loaded
 if (!defined('LANGUAGE_LOADED')) { define('LANGUAGE_LOADED', true); }
 
@@ -651,7 +651,4 @@
 $TEXT['YES'] = 'Kyllä';
 
 /* include old languages format */
-if(file_exists(WB_PATH.'/languages/old.format.inc.php'))
-{
-    include(WB_PATH.'/languages/old.format.inc.php');
-}
+if (is_readable(__DIR__.'/old.format.inc.php')) { include __DIR__.'/old.format.inc.php'; }
Index: branches/main/languages/FR.php
===================================================================
--- branches/main/languages/FR.php	(revision 24)
+++ branches/main/languages/FR.php	(revision 25)
@@ -31,7 +31,7 @@
 //declare(strict_types = 1);
 //declare(encoding = 'UTF-8');
 
-if (!defined('WB_PATH')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
+if (!defined('SYSTEM_RUN')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
 // Define that this file is loaded
 if (!defined('LANGUAGE_LOADED')) { define('LANGUAGE_LOADED', true); }
 
@@ -651,7 +651,4 @@
 $TEXT['YES'] = 'Oui';
 
 /* include old languages format */
-if(file_exists(WB_PATH.'/languages/old.format.inc.php'))
-{
-    include(WB_PATH.'/languages/old.format.inc.php');
-}
+if (is_readable(__DIR__.'/old.format.inc.php')) { include __DIR__.'/old.format.inc.php'; }
Index: branches/main/languages/HR.php
===================================================================
--- branches/main/languages/HR.php	(revision 24)
+++ branches/main/languages/HR.php	(revision 25)
@@ -31,7 +31,7 @@
 //declare(strict_types = 1);
 //declare(encoding = 'UTF-8');
 
-if (!defined('WB_PATH')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
+if (!defined('SYSTEM_RUN')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
 // Define that this file is loaded
 if (!defined('LANGUAGE_LOADED')) { define('LANGUAGE_LOADED', true); }
 
@@ -651,7 +651,4 @@
 $TEXT['YES'] = 'Da';
 
 /* include old languages format */
-if(file_exists(WB_PATH.'/languages/old.format.inc.php'))
-{
-    include(WB_PATH.'/languages/old.format.inc.php');
-}
+if (is_readable(__DIR__.'/old.format.inc.php')) { include __DIR__.'/old.format.inc.php'; }
Index: branches/main/languages/HU.php
===================================================================
--- branches/main/languages/HU.php	(revision 24)
+++ branches/main/languages/HU.php	(revision 25)
@@ -31,7 +31,7 @@
 //declare(strict_types = 1);
 //declare(encoding = 'UTF-8');
 
-if (!defined('WB_PATH')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
+if (!defined('SYSTEM_RUN')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
 // Define that this file is loaded
 if (!defined('LANGUAGE_LOADED')) { define('LANGUAGE_LOADED', true); }
 
@@ -651,7 +651,4 @@
 $TEXT['YES'] = 'Igen';
 
 /* include old languages format */
-if(file_exists(WB_PATH.'/languages/old.format.inc.php'))
-{
-    include(WB_PATH.'/languages/old.format.inc.php');
-}
+if (is_readable(__DIR__.'/old.format.inc.php')) { include __DIR__.'/old.format.inc.php'; }
Index: branches/main/languages/IT.php
===================================================================
--- branches/main/languages/IT.php	(revision 24)
+++ branches/main/languages/IT.php	(revision 25)
@@ -31,7 +31,7 @@
 //declare(strict_types = 1);
 //declare(encoding = 'UTF-8');
 
-if (!defined('WB_PATH')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
+if (!defined('SYSTEM_RUN')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
 // Define that this file is loaded
 if (!defined('LANGUAGE_LOADED')) { define('LANGUAGE_LOADED', true); }
 
@@ -651,7 +651,4 @@
 $TEXT['YES'] = 'Sì';
 
 /* include old languages format */
-if(file_exists(WB_PATH.'/languages/old.format.inc.php'))
-{
-    include(WB_PATH.'/languages/old.format.inc.php');
-}
+if (is_readable(__DIR__.'/old.format.inc.php')) { include __DIR__.'/old.format.inc.php'; }
Index: branches/main/languages/LV.php
===================================================================
--- branches/main/languages/LV.php	(revision 24)
+++ branches/main/languages/LV.php	(revision 25)
@@ -31,7 +31,7 @@
 //declare(strict_types = 1);
 //declare(encoding = 'UTF-8');
 
-if (!defined('WB_PATH')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
+if (!defined('SYSTEM_RUN')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
 // Define that this file is loaded
 if (!defined('LANGUAGE_LOADED')) { define('LANGUAGE_LOADED', true); }
 
@@ -651,7 +651,4 @@
 $TEXT['YES'] = 'Ja';
 
 /* include old languages format */
-if(file_exists(WB_PATH.'/languages/old.format.inc.php'))
-{
-    include(WB_PATH.'/languages/old.format.inc.php');
-}
+if (is_readable(__DIR__.'/old.format.inc.php')) { include __DIR__.'/old.format.inc.php'; }
Index: branches/main/languages/NL.php
===================================================================
--- branches/main/languages/NL.php	(revision 24)
+++ branches/main/languages/NL.php	(revision 25)
@@ -31,7 +31,7 @@
 //declare(strict_types = 1);
 //declare(encoding = 'UTF-8');
 
-if (!defined('WB_PATH')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
+if (!defined('SYSTEM_RUN')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
 // Define that this file is loaded
 if (!defined('LANGUAGE_LOADED')) { define('LANGUAGE_LOADED', true); }
 
@@ -651,7 +651,4 @@
 $TEXT['YES'] = 'Ja';
 
 /* include old languages format */
-if(file_exists(WB_PATH.'/languages/old.format.inc.php'))
-{
-    include(WB_PATH.'/languages/old.format.inc.php');
-}
+if (is_readable(__DIR__.'/old.format.inc.php')) { include __DIR__.'/old.format.inc.php'; }
Index: branches/main/languages/NO.php
===================================================================
--- branches/main/languages/NO.php	(revision 24)
+++ branches/main/languages/NO.php	(revision 25)
@@ -31,7 +31,7 @@
 //declare(strict_types = 1);
 //declare(encoding = 'UTF-8');
 
-if (!defined('WB_PATH')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
+if (!defined('SYSTEM_RUN')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
 // Define that this file is loaded
 if (!defined('LANGUAGE_LOADED')) { define('LANGUAGE_LOADED', true); }
 
@@ -651,7 +651,4 @@
 $TEXT['YES'] = 'Ja';
 
 /* include old languages format */
-if(file_exists(WB_PATH.'/languages/old.format.inc.php'))
-{
-    include(WB_PATH.'/languages/old.format.inc.php');
-}
+if (is_readable(__DIR__.'/old.format.inc.php')) { include __DIR__.'/old.format.inc.php'; }
Index: branches/main/languages/PL.php
===================================================================
--- branches/main/languages/PL.php	(revision 24)
+++ branches/main/languages/PL.php	(revision 25)
@@ -31,7 +31,7 @@
 //declare(strict_types = 1);
 //declare(encoding = 'UTF-8');
 
-if (!defined('WB_PATH')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
+if (!defined('SYSTEM_RUN')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
 // Define that this file is loaded
 if (!defined('LANGUAGE_LOADED')) { define('LANGUAGE_LOADED', true); }
 
@@ -651,7 +651,4 @@
 $TEXT['YES'] = 'Tak';
 
 /* include old languages format */
-if(file_exists(WB_PATH.'/languages/old.format.inc.php'))
-{
-    include(WB_PATH.'/languages/old.format.inc.php');
-}
+if (is_readable(__DIR__.'/old.format.inc.php')) { include __DIR__.'/old.format.inc.php'; }
Index: branches/main/languages/PT.php
===================================================================
--- branches/main/languages/PT.php	(revision 24)
+++ branches/main/languages/PT.php	(revision 25)
@@ -31,7 +31,7 @@
 //declare(strict_types = 1);
 //declare(encoding = 'UTF-8');
 
-if (!defined('WB_PATH')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
+if (!defined('SYSTEM_RUN')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
 // Define that this file is loaded
 if (!defined('LANGUAGE_LOADED')) { define('LANGUAGE_LOADED', true); }
 
@@ -651,7 +651,4 @@
 $TEXT['YES'] = 'Sim';
 
 /* include old languages format */
-if(file_exists(WB_PATH.'/languages/old.format.inc.php'))
-{
-    include(WB_PATH.'/languages/old.format.inc.php');
-}
+if (is_readable(__DIR__.'/old.format.inc.php')) { include __DIR__.'/old.format.inc.php'; }
Index: branches/main/languages/RU.php
===================================================================
--- branches/main/languages/RU.php	(revision 24)
+++ branches/main/languages/RU.php	(revision 25)
@@ -31,7 +31,7 @@
 //declare(strict_types = 1);
 //declare(encoding = 'UTF-8');
 
-if (!defined('WB_PATH')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
+if (!defined('SYSTEM_RUN')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
 // Define that this file is loaded
 if (!defined('LANGUAGE_LOADED')) { define('LANGUAGE_LOADED', true); }
 
@@ -651,7 +651,4 @@
 $TEXT['YES'] = 'Да';
 
 /* include old languages format */
-if(file_exists(WB_PATH.'/languages/old.format.inc.php'))
-{
-    include(WB_PATH.'/languages/old.format.inc.php');
-}
+if (is_readable(__DIR__.'/old.format.inc.php')) { include __DIR__.'/old.format.inc.php'; }
Index: branches/main/languages/SE.php
===================================================================
--- branches/main/languages/SE.php	(revision 24)
+++ branches/main/languages/SE.php	(revision 25)
@@ -31,7 +31,7 @@
 //declare(strict_types = 1);
 //declare(encoding = 'UTF-8');
 
-if (!defined('WB_PATH')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
+if (!defined('SYSTEM_RUN')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
 // Define that this file is loaded
 if (!defined('LANGUAGE_LOADED')) { define('LANGUAGE_LOADED', true); }
 
@@ -651,7 +651,4 @@
 $TEXT['YES'] = 'Ja';
 
 /* include old languages format */
-if(file_exists(WB_PATH.'/languages/old.format.inc.php'))
-{
-    include(WB_PATH.'/languages/old.format.inc.php');
-}
+if (is_readable(__DIR__.'/old.format.inc.php')) { include __DIR__.'/old.format.inc.php'; }
Index: branches/main/languages/SK.php
===================================================================
--- branches/main/languages/SK.php	(revision 24)
+++ branches/main/languages/SK.php	(revision 25)
@@ -31,7 +31,7 @@
 //declare(strict_types = 1);
 //declare(encoding = 'UTF-8');
 
-if (!defined('WB_PATH')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
+if (!defined('SYSTEM_RUN')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
 // Define that this file is loaded
 if (!defined('LANGUAGE_LOADED')) { define('LANGUAGE_LOADED', true); }
 
@@ -651,7 +651,4 @@
 $TEXT['YES'] = 'Ano';
 
 /* include old languages format */
-if(file_exists(WB_PATH.'/languages/old.format.inc.php'))
-{
-    include(WB_PATH.'/languages/old.format.inc.php');
-}
+if (is_readable(__DIR__.'/old.format.inc.php')) { include __DIR__.'/old.format.inc.php'; }
Index: branches/main/languages/TR.php
===================================================================
--- branches/main/languages/TR.php	(revision 24)
+++ branches/main/languages/TR.php	(revision 25)
@@ -31,7 +31,7 @@
 //declare(strict_types = 1);
 //declare(encoding = 'UTF-8');
 
-if (!defined('WB_PATH')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
+if (!defined('SYSTEM_RUN')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
 // Define that this file is loaded
 if (!defined('LANGUAGE_LOADED')) { define('LANGUAGE_LOADED', true); }
 
@@ -651,7 +651,4 @@
 $TEXT['YES'] = 'Evet';
 
 /* include old languages format */
-if(file_exists(WB_PATH.'/languages/old.format.inc.php'))
-{
-    include(WB_PATH.'/languages/old.format.inc.php');
-}
+if (is_readable(__DIR__.'/old.format.inc.php')) { include __DIR__.'/old.format.inc.php'; }
Index: branches/main/languages/old.format.inc.php
===================================================================
--- branches/main/languages/old.format.inc.php	(revision 24)
+++ branches/main/languages/old.format.inc.php	(revision 25)
@@ -1,7 +1,26 @@
 <?php
-/**
+
+/*
+ * Copyright (C) 2017 Manuela v.d.Decken <manuela@isteam.de>
+ *
+ * DO NOT ALTER OR REMOVE COPYRIGHT OR THIS HEADER
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, version 2 of the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License 2 for more details.
  * Description of convert toold format
  *
+ * You should have received a copy of the GNU General Public License 2
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+/**
+ * Description of old.format.inc.php
+ *
  * @package      CoreTranslation
  * @copyright    Manuela v.d.Decken <manuela@isteam.de>
  * @author       Manuela v.d.Decken <manuela@isteam.de>
@@ -9,145 +28,145 @@
  * @version      4.0.0
  * @revision     $Id$
  * @since        File available since 18.10.2017
- * @deprecated   no
- * @description  xxx
+ * @deprecated   yes, since 2017/10/20- will be removed in 2.12.0
+ * @description  generates a couple of translations, needed by very old addons only
  */
+
 //declare(strict_types = 1);
 //declare(encoding = 'UTF-8');
 
-if (!defined('WB_PATH')) { header($_SERVER['SERVER_PROTOCOL']. ' 404 Not Found'); flush(); exit; }
+if (!defined('SYSTEM_RUN')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
 
-$MESSAGE['FRONTEND']['SORRY_NO_VIEWING_PERMISSIONS']  = 'MESSAGE[FRONTEND_SORRY_NO_VIEWING_PERMISSIONS]' ;
-$MESSAGE['FRONTEND']['SORRY_NO_ACTIVE_SECTIONS']  = 'MESSAGE[FRONTEND_SORRY_NO_ACTIVE_SECTIONS]' ;
-$MESSAGE['ADMIN']['INSUFFICIENT_PRIVELLIGES']  = 'MESSAGE[ADMIN_INSUFFICIENT_PRIVELLIGES]' ;
-$MESSAGE['LOGIN']['BOTH_BLANK']  = 'MESSAGE[LOGIN_BOTH_BLANK]' ;
-$MESSAGE['LOGIN']['USERNAME_BLANK']  = 'MESSAGE[LOGIN_USERNAME_BLANK]' ;
-$MESSAGE['LOGIN']['PASSWORD_BLANK']  = 'MESSAGE[LOGIN_PASSWORD_BLANK]' ;
-$MESSAGE['LOGIN']['USERNAME_TOO_SHORT']  = 'MESSAGE[LOGIN_USERNAME_TOO_SHORT]' ;
-$MESSAGE['LOGIN']['PASSWORD_TOO_SHORT']  = 'MESSAGE[LOGIN_PASSWORD_TOO_SHORT]' ;
-$MESSAGE['LOGIN']['USERNAME_TOO_LONG']  = 'MESSAGE[LOGIN_USERNAME_TOO_LONG]' ;
-$MESSAGE['LOGIN']['PASSWORD_TOO_LONG']  = 'MESSAGE[LOGIN_PASSWORD_TOO_LONG]' ;
-$MESSAGE['LOGIN']['AUTHENTICATION_FAILED']  = 'MESSAGE[LOGIN_AUTHENTICATION_FAILED]' ;
-$MESSAGE['SIGNUP']['NO_EMAIL']  = 'MESSAGE[SIGNUP_NO_EMAIL]' ;
-$MESSAGE['SIGNUP2']['SUBJECT_LOGIN_INFO']  = 'MESSAGE[SIGNUP2_SUBJECT_LOGIN_INFO]' ;
-$MESSAGE['SIGNUP2']['BODY_LOGIN_INFO']  = 'MESSAGE[SIGNUP2_BODY_LOGIN_INFO]' ;
-$MESSAGE['SIGNUP2']['BODY_LOGIN_FORGOT']  = 'MESSAGE[SIGNUP2_BODY_LOGIN_FORGOT]' ;
-$MESSAGE['FORGOT_PASS']['NO_DATA']  = 'MESSAGE[FORGOT_PASS_NO_DATA]' ;
-$MESSAGE['FORGOT_PASS']['EMAIL_NOT_FOUND']  = 'MESSAGE[FORGOT_PASS_EMAIL_NOT_FOUND]' ;
-$MESSAGE['FORGOT_PASS']['CANNOT_EMAIL']  = 'MESSAGE[FORGOT_PASS_CANNOT_EMAIL]' ;
-$MESSAGE['FORGOT_PASS']['PASSWORD_RESET']  = 'MESSAGE[FORGOT_PASS_PASSWORD_RESET]' ;
-$MESSAGE['FORGOT_PASS']['ALREADY_RESET']  = 'MESSAGE[FORGOT_PASS_ALREADY_RESET]' ;
-$MESSAGE['START']['WELCOME_MESSAGE']  = 'MESSAGE[START_WELCOME_MESSAGE]' ;
-$MESSAGE['START']['INSTALL_DIR_EXISTS']  = 'MESSAGE[START_INSTALL_DIR_EXISTS]' ;
-$MESSAGE['START']['CURRENT_USER']  = 'MESSAGE[START_CURRENT_USER]' ;
-$MESSAGE['SETTINGS']['UNABLE_OPEN_CONFIG']  = 'MESSAGE[SETTINGS_UNABLE_OPEN_CONFIG]' ;
-$MESSAGE['SETTINGS']['UNABLE_WRITE_CONFIG']  = 'MESSAGE[SETTINGS_UNABLE_WRITE_CONFIG]' ;
-$MESSAGE['SETTINGS']['SAVED']  = 'MESSAGE[SETTINGS_SAVED]' ;
-$MESSAGE['SETTINGS']['MODE_SWITCH_WARNING']  = 'MESSAGE[SETTINGS_MODE_SWITCH_WARNING]' ;
-$MESSAGE['SETTINGS']['WORLD_WRITEABLE_WARNING']  = 'MESSAGE[SETTINGS_WORLD_WRITEABLE_WARNING]' ;
-$MESSAGE['USERS']['ADDED']  = 'MESSAGE[USERS_ADDED]' ;
-$MESSAGE['USERS']['SAVED']  = 'MESSAGE[USERS_SAVED]' ;
-$MESSAGE['USERS']['DELETED']  = 'MESSAGE[USERS_DELETED]' ;
-$MESSAGE['USERS']['NO_GROUP']  = 'MESSAGE[USERS_NO_GROUP]' ;
-$MESSAGE['USERS']['USERNAME_TOO_SHORT']  = 'MESSAGE[USERS_USERNAME_TOO_SHORT]' ;
-$MESSAGE['USERS']['PASSWORD_TOO_SHORT']  = 'MESSAGE[USERS_PASSWORD_TOO_SHORT]' ;
-$MESSAGE['USERS']['PASSWORD_MISMATCH']  = 'MESSAGE[USERS_PASSWORD_MISMATCH]' ;
-$MESSAGE['USERS']['INVALID_EMAIL']  = 'MESSAGE[USERS_INVALID_EMAIL]' ;
-$MESSAGE['USERS']['EMAIL_TAKEN']  = 'MESSAGE[USERS_EMAIL_TAKEN]' ;
-$MESSAGE['USERS']['USERNAME_TAKEN']  = 'MESSAGE[USERS_USERNAME_TAKEN]' ;
-$MESSAGE['USERS']['CHANGING_PASSWORD']  = 'MESSAGE[USERS_CHANGING_PASSWORD]' ;
-$MESSAGE['USERS']['CONFIRM_DELETE']  = 'MESSAGE[USERS_CONFIRM_DELETE]' ;
-$MESSAGE['GROUPS']['ADDED']  = 'MESSAGE[GROUPS_ADDED]' ;
-$MESSAGE['GROUPS']['SAVED']  = 'MESSAGE[GROUPS_SAVED]' ;
-$MESSAGE['GROUPS']['DELETED']  = 'MESSAGE[GROUPS_DELETED]' ;
-$MESSAGE['GROUPS']['GROUP_NAME_BLANK']  = 'MESSAGE[GROUPS_GROUP_NAME_BLANK]' ;
-$MESSAGE['GROUPS']['CONFIRM_DELETE']  = 'MESSAGE[GROUPS_CONFIRM_DELETE]' ;
-$MESSAGE['GROUPS']['NO_GROUPS_FOUND']  = 'MESSAGE[GROUPS_NO_GROUPS_FOUND]' ;
-$MESSAGE['GROUPS']['GROUP_NAME_EXISTS']  = 'MESSAGE[GROUPS_GROUP_NAME_EXISTS]' ;
-$MESSAGE['PREFERENCES']['DETAILS_SAVED']  = 'MESSAGE[PREFERENCES_DETAILS_SAVED]' ;
-$MESSAGE['PREFERENCES']['EMAIL_UPDATED']  = 'MESSAGE[PREFERENCES_EMAIL_UPDATED]' ;
-$MESSAGE['PREFERENCES']['CURRENT_PASSWORD_INCORRECT']  = 'MESSAGE[PREFERENCES_CURRENT_PASSWORD_INCORRECT]' ;
-$MESSAGE['PREFERENCES']['PASSWORD_CHANGED']  = 'MESSAGE[PREFERENCES_PASSWORD_CHANGED]' ;
-$MESSAGE['PREFERENCES']['INVALID_CHARS']  = 'MESSAGE[PREFERENCES_INVALID_CHARS]' ;
-$MESSAGE['TEMPLATES']['CHANGE_TEMPLATE_NOTICE']  = 'MESSAGE[TEMPLATES_CHANGE_TEMPLATE_NOTICE]' ;
-$MESSAGE['MEDIA']['DIR_DOT_DOT_SLASH']  = 'MESSAGE[MEDIA_DIR_DOT_DOT_SLASH]' ;
-$MESSAGE['MEDIA']['DIR_DOES_NOT_EXIST']  = 'MESSAGE[MEDIA_DIR_DOES_NOT_EXIST]' ;
-$MESSAGE['MEDIA']['TARGET_DOT_DOT_SLASH']  = 'MESSAGE[EDIA_TARGET_DOT_DOT_SLASH]' ;
-$MESSAGE['MEDIA']['NAME_DOT_DOT_SLASH']  = 'MESSAGE[MEDIA_NAME_DOT_DOT_SLASH]' ;
-$MESSAGE['MEDIA']['NAME_INDEX_PHP']  = 'MESSAGE[MEDIA_NAME_INDEX_PHP]' ;
-$MESSAGE['MEDIA']['NONE_FOUND']  = 'MESSAGE[MEDIA_NONE_FOUND]' ;
-$MESSAGE['MEDIA']['FILE_NOT_FOUND']  = 'MESSAGE[MEDIA_FILE_NOT_FOUND]' ;
-$MESSAGE['MEDIA']['DELETED_FILE']  = 'MESSAGE[MEDIA_DELETED_FILE]' ;
-$MESSAGE['MEDIA']['DELETED_DIR']  = 'MESSAGE[MEDIA_DELETED_DIR]' ;
-$MESSAGE['MEDIA']['CONFIRM_DELETE']  = 'MESSAGE[MEDIA_CONFIRM_DELETE]' ;
-$MESSAGE['MEDIA']['CANNOT_DELETE_FILE']  = 'MESSAGE[MEDIA_CANNOT_DELETE_FILE]' ;
-$MESSAGE['MEDIA']['CANNOT_DELETE_DIR']  = 'MESSAGE[MEDIA_CANNOT_DELETE_DIR]' ;
-$MESSAGE['MEDIA']['BLANK_NAME']  = 'MESSAGE[MEDIA_BLANK_NAME]' ;
-$MESSAGE['MEDIA']['BLANK_EXTENSION']  = 'MESSAGE[MEDIA_BLANK_EXTENSION]' ;
-$MESSAGE['MEDIA']['RENAMED']  = 'MESSAGE[MEDIA_RENAMED]' ;
-$MESSAGE['MEDIA']['CANNOT_RENAME']  = 'MESSAGE[MEDIA_CANNOT_RENAME]' ;
-$MESSAGE['MEDIA']['FILE_EXISTS']  = 'MESSAGE[MEDIA_FILE_EXISTS]' ;
-$MESSAGE['MEDIA']['DIR_EXISTS']  = 'MESSAGE[MEDIA_DIR_EXISTS]' ;
-$MESSAGE['MEDIA']['DIR_MADE']  = 'MESSAGE[MEDIA_DIR_MADE]' ;
-$MESSAGE['MEDIA']['DIR_NOT_MADE']  = 'MESSAGE[MEDIA_DIR_NOT_MADE]' ;
-$MESSAGE['MEDIA']['SINGLE_UPLOADED']  = 'MESSAGE[MEDIA_SINGLE_UPLOADED]' ;
-$MESSAGE['MEDIA']['UPLOADED']  = 'MESSAGE[MEDIA_UPLOADED]' ;
-$MESSAGE['PAGES']['ADDED']  = 'MESSAGE[PAGES_ADDED]' ;
-$MESSAGE['PAGES']['ADDED_HEADING']  = 'MESSAGE[PAGES_ADDED_HEADING]' ;
-$MESSAGE['PAGES']['PAGE_EXISTS']  = 'MESSAGE[PAGES_PAGE_EXISTS]' ;
-$MESSAGE['PAGES']['CANNOT_CREATE_ACCESS_FILE']  = 'MESSAGE[PAGES_CANNOT_CREATE_ACCESS_FILE]' ;
-$MESSAGE['PAGES']['CANNOT_DELETE_ACCESS_FILE']  = 'MESSAGE[PAGES_CANNOT_DELETE_ACCESS_FILE]' ;
-$MESSAGE['PAGES']['NOT_FOUND']  = 'MESSAGE[PAGES_NOT_FOUND]' ;
-$MESSAGE['PAGES']['SAVED']  = 'MESSAGE[PAGES_SAVED]' ;
-$MESSAGE['PAGES']['SAVED_SETTINGS']  = 'MESSAGE[PAGES_SAVED_SETTINGS]' ;
-$MESSAGE['PAGES']['NOT_SAVED']  = 'MESSAGE[PAGES_NOT_SAVED]' ;
-$MESSAGE['PAGES']['DELETE_CONFIRM']  = 'MESSAGE[PAGES_DELETE_CONFIRM]' ;
-$MESSAGE['PAGES']['DELETED']  = 'MESSAGE[PAGES_DELETED]' ;
-$MESSAGE['PAGES']['RESTORED']  = 'MESSAGE[PAGES_RESTORED]' ;
-$MESSAGE['PAGES']['BLANK_PAGE_TITLE']  = 'MESSAGE[PAGES_BLANK_PAGE_TITLE]' ;
-$MESSAGE['PAGES']['BLANK_MENU_TITLE']  = 'MESSAGE[PAGES_BLANK_MENU_TITLE]' ;
-$MESSAGE['PAGES']['REORDERED']  = 'MESSAGE[PAGES_REORDERED]' ;
-$MESSAGE['PAGES']['CANNOT_REORDER']  = 'MESSAGE[PAGES_CANNOT_REORDER]' ;
-$MESSAGE['PAGES']['INSUFFICIENT_PERMISSIONS']  = 'MESSAGE[PAGES_INSUFFICIENT_PERMISSIONS]' ;
-$MESSAGE['PAGES']['INTRO_NOT_WRITABLE']  = 'MESSAGE[PAGES_INTRO_NOT_WRITABLE]' ;
-$MESSAGE['PAGES']['INTRO_SAVED']  = 'MESSAGE[PAGES_INTRO_SAVED]' ;
-$MESSAGE['PAGES']['LAST_MODIFIED']  = 'MESSAGE[PAGES_LAST_MODIFIED]' ;
-$MESSAGE['PAGES']['INTRO_LINK']  = 'MESSAGE[PAGES_INTRO_LINK]' ;
-$MESSAGE['PAGES']['SECTIONS_PROPERTIES_SAVED']  = 'MESSAGE[PAGES_SECTIONS_PROPERTIES_SAVED]' ;
-$MESSAGE['PAGES']['RETURN_TO_PAGES']  = 'MESSAGE[PAGES_RETURN_TO_PAGES]' ;
-$MESSAGE['GENERIC']['FILL_IN_ALL']  = 'MESSAGE[GENERIC_FILL_IN_ALL]' ;
-$MESSAGE['GENERIC']['FILE_TYPE']  = 'MESSAGE[GENERIC_FILE_TYPE]' ;
-$MESSAGE['GENERIC']['FILE_TYPES']  = 'MESSAGE[GENERIC_FILE_TYPES]' ;
-$MESSAGE['GENERIC']['CANNOT_UPLOAD']  = 'MESSAGE[GENERIC_CANNOT_UPLOAD]' ;
-$MESSAGE['GENERIC']['ALREADY_INSTALLED']  = 'MESSAGE[GENERIC_ALREADY_INSTALLED]' ;
-$MESSAGE['GENERIC']['NOT_INSTALLED']  = 'MESSAGE[GENERIC_NOT_INSTALLED]' ;
-$MESSAGE['GENERIC']['CANNOT_UNINSTALL']  = 'MESSAGE[GENERIC_CANNOT_UNINSTALL]' ;
-$MESSAGE['GENERIC']['CANNOT_UNZIP']  = 'MESSAGE[GENERIC_CANNOT_UNZIP]' ;
-$MESSAGE['GENERIC']['INSTALLED']  = 'MESSAGE[GENERIC_INSTALLED]' ;
-$MESSAGE['GENERIC']['UPGRADED']  = 'MESSAGE[GENERIC_UPGRADED]' ;
-$MESSAGE['GENERIC']['UNINSTALLED']  = 'MESSAGE[GENERIC_UNINSTALLED]' ;
-$MESSAGE['GENERIC']['BAD_PERMISSIONS']  = 'MESSAGE[GENERIC_BAD_PERMISSIONS]' ;
-$MESSAGE['GENERIC']['INVALID']  = 'MESSAGE[GENERIC_INVALID]' ;
-$MESSAGE['GENERIC']['CANNOT_UNINSTALL_IN_USE']  = 'MESSAGE[GENERIC_CANNOT_UNINSTALL_IN_USE]' ;
-$MESSAGE['GENERIC']['SECURITY_OFFENSE']  = 'MESSAGE[GENERIC_SECURITY_OFFENSE]' ;
-$MESSAGE['GENERIC']['CANNOT_UNINSTALL_IN_USE_TMPL']  = 'MESSAGE[GENERIC_CANNOT_UNINSTALL_IN_USE_TMPL]' ;
-$MESSAGE['GENERIC']['CANNOT_UNINSTALL_IN_USE_TMPL_PAGES']  = 'MESSAGE[GENERIC_CANNOT_UNINSTALL_IN_USE_TMPL_PAGES]' ;
-$MESSAGE['GENERIC']['CANNOT_UNINSTALL_IS_DEFAULT_TEMPLATE']  = 'MESSAGE[GENERIC_CANNOT_UNINSTALL_IS_DEFAULT_TEMPLATE]' ;
-$MESSAGE['GENERIC']['WEBSITE_UNDER_CONSTRUCTION']  = 'MESSAGE[GENERIC_WEBSITE_UNDER_CONSTRUCTION]' ;
-$MESSAGE['GENERIC']['PLEASE_CHECK_BACK_SOON']  = 'MESSAGE[GENERIC_PLEASE_CHECK_BACK_SOON]' ;
-$MESSAGE['GENERIC']['PLEASE_BE_PATIENT']  = 'MESSAGE[GENERIC_PLEASE_BE_PATIENT]' ;
-$MESSAGE['GENERIC']['ERROR_OPENING_FILE']  = 'MESSAGE[GENERIC_ERROR_OPENING_FILE]' ;
-$MESSAGE['GENERIC']['INVALID_ADDON_FILE']  = 'MESSAGE[GENERIC_INVALID_ADDON_FILE]' ;
-$MESSAGE['GENERIC']['INVALID_LANGUAGE_FILE']  = 'MESSAGE[GENERIC_INVALID_LANGUAGE_FILE]' ;
-$MESSAGE['MOD_FORM']['REQUIRED_FIELDS']  = 'MESSAGE[MOD_FORM_REQUIRED_FIELDS]' ;
-$MESSAGE['MOD_FORM']['EXCESS_SUBMISSIONS']  = 'MESSAGE[MOD_FORM_EXCESS_SUBMISSIONS]' ;
-$MESSAGE['MOD_FORM']['INCORRECT_CAPTCHA']  = 'MESSAGE[MOD_FORM_INCORRECT_CAPTCHA]' ;
-$MESSAGE['ADDON']['RELOAD']  = 'MESSAGE[ADDON_RELOAD]' ;
-$MESSAGE['ADDON']['ERROR_RELOAD']  = 'MESSAGE[ADDON_ERROR_RELOAD]' ;
-$MESSAGE['ADDON']['MODULES_RELOADED']  = 'MESSAGE[ADDON_MODULES_RELOADED]' ;
-$MESSAGE['ADDON']['TEMPLATES_RELOADED']  = 'MESSAGE[ADDON_TEMPLATES_RELOADED]' ;
-$MESSAGE['ADDON']['LANGUAGES_RELOADED']  = 'MESSAGE[ADDON_LANGUAGES_RELOADED]' ;
-$MESSAGE['ADDON']['PRECHECK_FAILED']  = 'MESSAGE[ADDON_PRECHECK_FAILED]' ;
-$MESSAGE['ADDON']['MANUAL_INSTALLATION']  = 'MESSAGE[ADDON_MANUAL_INSTALLATION]' ;
-$MESSAGE['ADDON']['MANUAL_INSTALLATION_WARNING']  = 'MESSAGE[ADDON_MANUAL_INSTALLATION_WARNING]' ;
-
+$MESSAGE['FRONTEND']['SORRY_NO_VIEWING_PERMISSIONS'] = '$MESSAGE[\'FRONTEND_SORRY_NO_VIEWING_PERMISSIONS\']';
+$MESSAGE['FRONTEND']['SORRY_NO_ACTIVE_SECTIONS'] = '$MESSAGE[\'FRONTEND_SORRY_NO_ACTIVE_SECTIONS\']';
+$MESSAGE['ADMIN']['INSUFFICIENT_PRIVELLIGES'] = '$MESSAGE[\'ADMIN_INSUFFICIENT_PRIVELLIGES\']';
+$MESSAGE['LOGIN']['BOTH_BLANK'] = '$MESSAGE[\'LOGIN_BOTH_BLANK\']';
+$MESSAGE['LOGIN']['USERNAME_BLANK'] = '$MESSAGE[\'LOGIN_USERNAME_BLANK\']';
+$MESSAGE['LOGIN']['PASSWORD_BLANK'] = '$MESSAGE[\'LOGIN_PASSWORD_BLANK\']';
+$MESSAGE['LOGIN']['USERNAME_TOO_SHORT'] = '$MESSAGE[\'LOGIN_USERNAME_TOO_SHORT\']';
+$MESSAGE['LOGIN']['PASSWORD_TOO_SHORT'] = '$MESSAGE[\'LOGIN_PASSWORD_TOO_SHORT\']';
+$MESSAGE['LOGIN']['USERNAME_TOO_LONG'] = '$MESSAGE[\'LOGIN_USERNAME_TOO_LONG\']';
+$MESSAGE['LOGIN']['PASSWORD_TOO_LONG'] = '$MESSAGE[\'LOGIN_PASSWORD_TOO_LONG\']';
+$MESSAGE['LOGIN']['AUTHENTICATION_FAILED'] = '$MESSAGE[\'LOGIN_AUTHENTICATION_FAILED\']';
+$MESSAGE['SIGNUP']['NO_EMAIL'] = '$MESSAGE[\'SIGNUP_NO_EMAIL\']';
+$MESSAGE['SIGNUP2']['SUBJECT_LOGIN_INFO'] = '$MESSAGE[\'SIGNUP2_SUBJECT_LOGIN_INFO\']';
+$MESSAGE['SIGNUP2']['BODY_LOGIN_INFO'] = '$MESSAGE[\'SIGNUP2_BODY_LOGIN_INFO\']';
+$MESSAGE['SIGNUP2']['BODY_LOGIN_FORGOT'] = '$MESSAGE[\'SIGNUP2_BODY_LOGIN_FORGOT\']';
+$MESSAGE['FORGOT_PASS']['NO_DATA'] = '$MESSAGE[\'FORGOT_PASS_NO_DATA\']';
+$MESSAGE['FORGOT_PASS']['EMAIL_NOT_FOUND'] = '$MESSAGE[\'FORGOT_PASS_EMAIL_NOT_FOUND\']';
+$MESSAGE['FORGOT_PASS']['CANNOT_EMAIL'] = '$MESSAGE[\'FORGOT_PASS_CANNOT_EMAIL\']';
+$MESSAGE['FORGOT_PASS']['PASSWORD_RESET'] = '$MESSAGE[\'FORGOT_PASS_PASSWORD_RESET\']';
+$MESSAGE['FORGOT_PASS']['ALREADY_RESET'] = '$MESSAGE[\'FORGOT_PASS_ALREADY_RESET\']';
+$MESSAGE['START']['WELCOME_MESSAGE'] = '$MESSAGE[\'START_WELCOME_MESSAGE\']';
+$MESSAGE['START']['INSTALL_DIR_EXISTS'] = '$MESSAGE[\'START_INSTALL_DIR_EXISTS\']';
+$MESSAGE['START']['CURRENT_USER'] = '$MESSAGE[\'START_CURRENT_USER\']';
+$MESSAGE['SETTINGS']['UNABLE_OPEN_CONFIG'] = '$MESSAGE[\'SETTINGS_UNABLE_OPEN_CONFIG\']';
+$MESSAGE['SETTINGS']['UNABLE_WRITE_CONFIG'] = '$MESSAGE[\'SETTINGS_UNABLE_WRITE_CONFIG\']';
+$MESSAGE['SETTINGS']['SAVED'] = '$MESSAGE[\'SETTINGS_SAVED\']';
+$MESSAGE['SETTINGS']['MODE_SWITCH_WARNING'] = '$MESSAGE[\'SETTINGS_MODE_SWITCH_WARNING\']';
+$MESSAGE['SETTINGS']['WORLD_WRITEABLE_WARNING'] = '$MESSAGE[\'SETTINGS_WORLD_WRITEABLE_WARNING\']';
+$MESSAGE['USERS']['ADDED'] = '$MESSAGE[\'USERS_ADDED\']';
+$MESSAGE['USERS']['SAVED'] = '$MESSAGE[\'USERS_SAVED\']';
+$MESSAGE['USERS']['DELETED'] = '$MESSAGE[\'USERS_DELETED\']';
+$MESSAGE['USERS']['NO_GROUP'] = '$MESSAGE[\'USERS_NO_GROUP\']';
+$MESSAGE['USERS']['USERNAME_TOO_SHORT'] = '$MESSAGE[\'USERS_USERNAME_TOO_SHORT\']';
+$MESSAGE['USERS']['PASSWORD_TOO_SHORT'] = '$MESSAGE[\'USERS_PASSWORD_TOO_SHORT\']';
+$MESSAGE['USERS']['PASSWORD_MISMATCH'] = '$MESSAGE[\'USERS_PASSWORD_MISMATCH\']';
+$MESSAGE['USERS']['INVALID_EMAIL'] = '$MESSAGE[\'USERS_INVALID_EMAIL\']';
+$MESSAGE['USERS']['EMAIL_TAKEN'] = '$MESSAGE[\'USERS_EMAIL_TAKEN\']';
+$MESSAGE['USERS']['USERNAME_TAKEN'] = '$MESSAGE[\'USERS_USERNAME_TAKEN\']';
+$MESSAGE['USERS']['CHANGING_PASSWORD'] = '$MESSAGE[\'USERS_CHANGING_PASSWORD\']';
+$MESSAGE['USERS']['CONFIRM_DELETE'] = '$MESSAGE[\'USERS_CONFIRM_DELETE\']';
+$MESSAGE['GROUPS']['ADDED'] = '$MESSAGE[\'GROUPS_ADDED\']';
+$MESSAGE['GROUPS']['SAVED'] = '$MESSAGE[\'GROUPS_SAVED\']';
+$MESSAGE['GROUPS']['DELETED'] = '$MESSAGE[\'GROUPS_DELETED\']';
+$MESSAGE['GROUPS']['GROUP_NAME_BLANK'] = '$MESSAGE[\'GROUPS_GROUP_NAME_BLANK\']';
+$MESSAGE['GROUPS']['CONFIRM_DELETE'] = '$MESSAGE[\'GROUPS_CONFIRM_DELETE\']';
+$MESSAGE['GROUPS']['NO_GROUPS_FOUND'] = '$MESSAGE[\'GROUPS_NO_GROUPS_FOUND\']';
+$MESSAGE['GROUPS']['GROUP_NAME_EXISTS'] = '$MESSAGE[\'GROUPS_GROUP_NAME_EXISTS\']';
+$MESSAGE['PREFERENCES']['DETAILS_SAVED'] = '$MESSAGE[\'PREFERENCES_DETAILS_SAVED\']';
+$MESSAGE['PREFERENCES']['EMAIL_UPDATED'] = '$MESSAGE[\'PREFERENCES_EMAIL_UPDATED\']';
+$MESSAGE['PREFERENCES']['CURRENT_PASSWORD_INCORRECT'] = '$MESSAGE[\'PREFERENCES_CURRENT_PASSWORD_INCORRECT\']';
+$MESSAGE['PREFERENCES']['PASSWORD_CHANGED'] = '$MESSAGE[\'PREFERENCES_PASSWORD_CHANGED\']';
+$MESSAGE['PREFERENCES']['INVALID_CHARS'] = '$MESSAGE[\'PREFERENCES_INVALID_CHARS\']';
+$MESSAGE['TEMPLATES']['CHANGE_TEMPLATE_NOTICE'] = '$MESSAGE[\'TEMPLATES_CHANGE_TEMPLATE_NOTICE\']';
+$MESSAGE['MEDIA']['DIR_DOT_DOT_SLASH'] = '$MESSAGE[\'MEDIA_DIR_DOT_DOT_SLASH\']';
+$MESSAGE['MEDIA']['DIR_DOES_NOT_EXIST'] = '$MESSAGE[\'MEDIA_DIR_DOES_NOT_EXIST\']';
+$MESSAGE['MEDIA']['TARGET_DOT_DOT_SLASH'] = '$MESSAGE[\'EDIA_TARGET_DOT_DOT_SLASH\']';
+$MESSAGE['MEDIA']['NAME_DOT_DOT_SLASH'] = '$MESSAGE[\'MEDIA_NAME_DOT_DOT_SLASH\']';
+$MESSAGE['MEDIA']['NAME_INDEX_PHP'] = '$MESSAGE[\'MEDIA_NAME_INDEX_PHP\']';
+$MESSAGE['MEDIA']['NONE_FOUND'] = '$MESSAGE[\'MEDIA_NONE_FOUND\']';
+$MESSAGE['MEDIA']['FILE_NOT_FOUND'] = '$MESSAGE[\'MEDIA_FILE_NOT_FOUND\']';
+$MESSAGE['MEDIA']['DELETED_FILE'] = '$MESSAGE[\'MEDIA_DELETED_FILE\']';
+$MESSAGE['MEDIA']['DELETED_DIR'] = '$MESSAGE[\'MEDIA_DELETED_DIR\']';
+$MESSAGE['MEDIA']['CONFIRM_DELETE'] = '$MESSAGE[\'MEDIA_CONFIRM_DELETE\']';
+$MESSAGE['MEDIA']['CANNOT_DELETE_FILE'] = '$MESSAGE[\'MEDIA_CANNOT_DELETE_FILE\']';
+$MESSAGE['MEDIA']['CANNOT_DELETE_DIR'] = '$MESSAGE[\'MEDIA_CANNOT_DELETE_DIR\']';
+$MESSAGE['MEDIA']['BLANK_NAME'] = '$MESSAGE[\'MEDIA_BLANK_NAME\']';
+$MESSAGE['MEDIA']['BLANK_EXTENSION'] = '$MESSAGE[\'MEDIA_BLANK_EXTENSION\']';
+$MESSAGE['MEDIA']['RENAMED'] = '$MESSAGE[\'MEDIA_RENAMED\']';
+$MESSAGE['MEDIA']['CANNOT_RENAME'] = '$MESSAGE[\'MEDIA_CANNOT_RENAME\']';
+$MESSAGE['MEDIA']['FILE_EXISTS'] = '$MESSAGE[\'MEDIA_FILE_EXISTS\']';
+$MESSAGE['MEDIA']['DIR_EXISTS'] = '$MESSAGE[\'MEDIA_DIR_EXISTS\']';
+$MESSAGE['MEDIA']['DIR_MADE'] = '$MESSAGE[\'MEDIA_DIR_MADE\']';
+$MESSAGE['MEDIA']['DIR_NOT_MADE'] = '$MESSAGE[\'MEDIA_DIR_NOT_MADE\']';
+$MESSAGE['MEDIA']['SINGLE_UPLOADED'] = '$MESSAGE[\'MEDIA_SINGLE_UPLOADED\']';
+$MESSAGE['MEDIA']['UPLOADED'] = '$MESSAGE[\'MEDIA_UPLOADED\']';
+$MESSAGE['PAGES']['ADDED'] = '$MESSAGE[\'PAGES_ADDED\']';
+$MESSAGE['PAGES']['ADDED_HEADING'] = '$MESSAGE[\'PAGES_ADDED_HEADING\']';
+$MESSAGE['PAGES']['PAGE_EXISTS'] = '$MESSAGE[\'PAGES_PAGE_EXISTS\']';
+$MESSAGE['PAGES']['CANNOT_CREATE_ACCESS_FILE'] = '$MESSAGE[\'PAGES_CANNOT_CREATE_ACCESS_FILE\']';
+$MESSAGE['PAGES']['CANNOT_DELETE_ACCESS_FILE'] = '$MESSAGE[\'PAGES_CANNOT_DELETE_ACCESS_FILE\']';
+$MESSAGE['PAGES']['NOT_FOUND'] = '$MESSAGE[\'PAGES_NOT_FOUND\']';
+$MESSAGE['PAGES']['SAVED'] = '$MESSAGE[\'PAGES_SAVED\']';
+$MESSAGE['PAGES']['SAVED_SETTINGS'] = '$MESSAGE[\'PAGES_SAVED_SETTINGS\']';
+$MESSAGE['PAGES']['NOT_SAVED'] = '$MESSAGE[\'PAGES_NOT_SAVED\']';
+$MESSAGE['PAGES']['DELETE_CONFIRM'] = '$MESSAGE[\'PAGES_DELETE_CONFIRM\']';
+$MESSAGE['PAGES']['DELETED'] = '$MESSAGE[\'PAGES_DELETED\']';
+$MESSAGE['PAGES']['RESTORED'] = '$MESSAGE[\'PAGES_RESTORED\']';
+$MESSAGE['PAGES']['BLANK_PAGE_TITLE'] = '$MESSAGE[\'PAGES_BLANK_PAGE_TITLE\']';
+$MESSAGE['PAGES']['BLANK_MENU_TITLE'] = '$MESSAGE[\'PAGES_BLANK_MENU_TITLE\']';
+$MESSAGE['PAGES']['REORDERED'] = '$MESSAGE[\'PAGES_REORDERED\']';
+$MESSAGE['PAGES']['CANNOT_REORDER'] = '$MESSAGE[\'PAGES_CANNOT_REORDER\']';
+$MESSAGE['PAGES']['INSUFFICIENT_PERMISSIONS'] = '$MESSAGE[\'PAGES_INSUFFICIENT_PERMISSIONS\']';
+$MESSAGE['PAGES']['INTRO_NOT_WRITABLE'] = '$MESSAGE[\'PAGES_INTRO_NOT_WRITABLE\']';
+$MESSAGE['PAGES']['INTRO_SAVED'] = '$MESSAGE[\'PAGES_INTRO_SAVED\']';
+$MESSAGE['PAGES']['LAST_MODIFIED'] = '$MESSAGE[\'PAGES_LAST_MODIFIED\']';
+$MESSAGE['PAGES']['INTRO_LINK'] = '$MESSAGE[\'PAGES_INTRO_LINK\']';
+$MESSAGE['PAGES']['SECTIONS_PROPERTIES_SAVED'] = '$MESSAGE[\'PAGES_SECTIONS_PROPERTIES_SAVED\']';
+$MESSAGE['PAGES']['RETURN_TO_PAGES'] = '$MESSAGE[\'PAGES_RETURN_TO_PAGES\']';
+$MESSAGE['GENERIC']['FILL_IN_ALL'] = '$MESSAGE[\'GENERIC_FILL_IN_ALL\']';
+$MESSAGE['GENERIC']['FILE_TYPE'] = '$MESSAGE[\'GENERIC_FILE_TYPE\']';
+$MESSAGE['GENERIC']['FILE_TYPES'] = '$MESSAGE[\'GENERIC_FILE_TYPES\']';
+$MESSAGE['GENERIC']['CANNOT_UPLOAD'] = '$MESSAGE[\'GENERIC_CANNOT_UPLOAD\']';
+$MESSAGE['GENERIC']['ALREADY_INSTALLED'] = '$MESSAGE[\'GENERIC_ALREADY_INSTALLED\']';
+$MESSAGE['GENERIC']['NOT_INSTALLED'] = '$MESSAGE[\'GENERIC_NOT_INSTALLED\']';
+$MESSAGE['GENERIC']['CANNOT_UNINSTALL'] = '$MESSAGE[\'GENERIC_CANNOT_UNINSTALL\']';
+$MESSAGE['GENERIC']['CANNOT_UNZIP'] = '$MESSAGE[\'GENERIC_CANNOT_UNZIP\']';
+$MESSAGE['GENERIC']['INSTALLED'] = '$MESSAGE[\'GENERIC_INSTALLED\']';
+$MESSAGE['GENERIC']['UPGRADED'] = '$MESSAGE[\'GENERIC_UPGRADED\']';
+$MESSAGE['GENERIC']['UNINSTALLED'] = '$MESSAGE[\'GENERIC_UNINSTALLED\']';
+$MESSAGE['GENERIC']['BAD_PERMISSIONS'] = '$MESSAGE[\'GENERIC_BAD_PERMISSIONS\']';
+$MESSAGE['GENERIC']['INVALID'] = '$MESSAGE[\'GENERIC_INVALID\']';
+$MESSAGE['GENERIC']['CANNOT_UNINSTALL_IN_USE'] = '$MESSAGE[\'GENERIC_CANNOT_UNINSTALL_IN_USE\']';
+$MESSAGE['GENERIC']['SECURITY_OFFENSE'] = '$MESSAGE[\'GENERIC_SECURITY_OFFENSE\']';
+$MESSAGE['GENERIC']['CANNOT_UNINSTALL_IN_USE_TMPL'] = '$MESSAGE[\'GENERIC_CANNOT_UNINSTALL_IN_USE_TMPL\']';
+$MESSAGE['GENERIC']['CANNOT_UNINSTALL_IN_USE_TMPL_PAGES'] = '$MESSAGE[\'GENERIC_CANNOT_UNINSTALL_IN_USE_TMPL_PAGES\']';
+$MESSAGE['GENERIC']['CANNOT_UNINSTALL_IS_DEFAULT_TEMPLATE'] = '$MESSAGE[\'GENERIC_CANNOT_UNINSTALL_IS_DEFAULT_TEMPLATE\']';
+$MESSAGE['GENERIC']['WEBSITE_UNDER_CONSTRUCTION'] = '$MESSAGE[\'GENERIC_WEBSITE_UNDER_CONSTRUCTION\']';
+$MESSAGE['GENERIC']['PLEASE_CHECK_BACK_SOON'] = '$MESSAGE[\'GENERIC_PLEASE_CHECK_BACK_SOON\']';
+$MESSAGE['GENERIC']['PLEASE_BE_PATIENT'] = '$MESSAGE[\'GENERIC_PLEASE_BE_PATIENT\']';
+$MESSAGE['GENERIC']['ERROR_OPENING_FILE'] = '$MESSAGE[\'GENERIC_ERROR_OPENING_FILE\']';
+$MESSAGE['GENERIC']['INVALID_ADDON_FILE'] = '$MESSAGE[\'GENERIC_INVALID_ADDON_FILE\']';
+$MESSAGE['GENERIC']['INVALID_LANGUAGE_FILE'] = '$MESSAGE[\'GENERIC_INVALID_LANGUAGE_FILE\']';
+$MESSAGE['MOD_FORM']['REQUIRED_FIELDS'] = '$MESSAGE[\'MOD_FORM_REQUIRED_FIELDS\']';
+$MESSAGE['MOD_FORM']['EXCESS_SUBMISSIONS'] = '$MESSAGE[\'MOD_FORM_EXCESS_SUBMISSIONS\']';
+$MESSAGE['MOD_FORM']['INCORRECT_CAPTCHA'] = '$MESSAGE[\'MOD_FORM_INCORRECT_CAPTCHA\']';
+$MESSAGE['ADDON']['RELOAD'] = '$MESSAGE[\'ADDON_RELOAD\']';
+$MESSAGE['ADDON']['ERROR_RELOAD'] = '$MESSAGE[\'ADDON_ERROR_RELOAD\']';
+$MESSAGE['ADDON']['MODULES_RELOADED'] = '$MESSAGE[\'ADDON_MODULES_RELOADED\']';
+$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = '$MESSAGE[\'ADDON_TEMPLATES_RELOADED\']';
+$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = '$MESSAGE[\'ADDON_LANGUAGES_RELOADED\']';
+$MESSAGE['ADDON']['PRECHECK_FAILED'] = '$MESSAGE[\'ADDON_PRECHECK_FAILED\']';
+$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = '$MESSAGE[\'ADDON_MANUAL_INSTALLATION\']';
+$MESSAGE['ADDON']['MANUAL_INSTALLATION_WARNING'] = '$MESSAGE[\'ADDON_MANUAL_INSTALLATION_WARNING\']';
Index: branches/main/languages
===================================================================
--- branches/main/languages	(revision 24)
+++ branches/main/languages	(revision 25)

Property changes on: branches/main/languages
___________________________________________________________________
Added: svn:ignore
## -0,0 +1,2 ##
+XX.php
+_old.format.inc.php
