Revision 25
Added by Manuela about 8 years ago
| branches/main/admin/interface/version.php | ||
|---|---|---|
| 1 | 1 |
<?php |
| 2 |
/** |
|
| 3 |
* About WebsiteBaker |
|
| 2 |
|
|
| 3 |
/* |
|
| 4 |
* Copyright (C) 2017 Manuela v.d.Decken <manuela@isteam.de> |
|
| 4 | 5 |
* |
| 5 |
* Website Baker is a PHP-based Content Management System (CMS) |
|
| 6 |
* designed with one goal in mind: to enable its users to produce websites |
|
| 7 |
* with ease. |
|
| 6 |
* DO NOT ALTER OR REMOVE COPYRIGHT OR THIS HEADER |
|
| 8 | 7 |
* |
| 9 |
* LICENSE INFORMATION |
|
| 8 |
* This program is free software: you can redistribute it and/or modify |
|
| 9 |
* it under the terms of the GNU General Public License as published by |
|
| 10 |
* the Free Software Foundation, version 2 of the License. |
|
| 10 | 11 |
* |
| 11 |
* WebsiteBaker is free software; you can redistribute it and/or |
|
| 12 |
* modify it under the terms of the GNU General Public License |
|
| 13 |
* as published by the Free Software Foundation; either version 2 |
|
| 14 |
* of the License, or (at your option) any later version. |
|
| 15 |
* |
|
| 16 |
* WebsiteBaker is distributed in the hope that it will be useful, |
|
| 12 |
* This program is distributed in the hope that it will be useful, |
|
| 17 | 13 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 18 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
|
| 19 |
* See the GNU General Public License for more details.
|
|
| 14 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
| 15 |
* GNU General Public License 2 for more details.
|
|
| 20 | 16 |
* |
| 21 |
* You should have received a copy of the GNU General Public License |
|
| 22 |
* along with this program; if not, write to the Free Software |
|
| 23 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
|
| 17 |
* You should have received a copy of the GNU General Public License 2 |
|
| 18 |
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
| 19 |
*/ |
|
| 20 |
/** |
|
| 21 |
* Description of version.php |
|
| 24 | 22 |
* |
| 25 |
* WebsiteBaker Extra Information |
|
| 26 |
* |
|
| 27 |
* This file is where the WB release version is stored. |
|
| 28 |
* |
|
| 29 |
* |
|
| 30 |
* @category admin |
|
| 31 |
* @package interface |
|
| 32 |
* @author WebsiteBaker Project |
|
| 33 |
* @copyright WebsiteBaker Org. e.V. |
|
| 34 |
* @link http://websitebaker.org/ |
|
| 35 |
* @license http://www.gnu.org/licenses/gpl.html |
|
| 36 |
* @platform WebsiteBaker 2.8.3 |
|
| 37 |
* @requirements PHP 5.3.6 and higher |
|
| 38 |
* @revision $Revision$ |
|
| 39 |
* @version $Id$ |
|
| 40 |
* @lastmodified $Date$ |
|
| 41 |
* |
|
| 23 |
* @package Core |
|
| 24 |
* @copyright Manuela v.d.Decken <manuela@isteam.de> |
|
| 25 |
* @author Manuela v.d.Decken <manuela@isteam.de> |
|
| 26 |
* @license GNU General Public License 2.0 |
|
| 27 |
* @version 2.0.1 |
|
| 28 |
* @revision $Id$ |
|
| 29 |
* @since File available since 04.10.2017 |
|
| 30 |
* @deprecated no / since 0000/00/00 |
|
| 31 |
* @description simply stares the version number of installed files |
|
| 42 | 32 |
*/ |
| 33 |
//declare(strict_types = 1); |
|
| 34 |
//declare(encoding = 'UTF-8'); |
|
| 43 | 35 |
|
| 36 |
//namespace ; |
|
| 37 |
|
|
| 38 |
// use |
|
| 39 |
|
|
| 44 | 40 |
/* -------------------------------------------------------- */ |
| 45 | 41 |
// Must include code to stop this file being accessed directly |
| 46 | 42 |
if (!defined('WB_PATH')) { header("HTTP/1.0 404 Not Found"); flush(); }
|
| ... | ... | |
| 48 | 44 |
if (!defined('VERSION_LOADED')) {
|
| 49 | 45 |
$sInfo = ' |
| 50 | 46 |
VERSION = "2.10.1-dev" |
| 51 |
REVISION = "24"
|
|
| 47 |
REVISION = "25"
|
|
| 52 | 48 |
SP = "" |
| 53 | 49 |
'; |
| 54 | 50 |
foreach (parse_ini_string($sInfo) as $item=>$value) {
|
| branches/main/languages/BG.php | ||
|---|---|---|
| 31 | 31 |
//declare(strict_types = 1); |
| 32 | 32 |
//declare(encoding = 'UTF-8'); |
| 33 | 33 |
|
| 34 |
if (!defined('WB_PATH')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
|
|
| 34 |
if (!defined('SYSTEM_RUN')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
|
|
| 35 | 35 |
// Define that this file is loaded |
| 36 | 36 |
if (!defined('LANGUAGE_LOADED')) { define('LANGUAGE_LOADED', true); }
|
| 37 | 37 |
|
| ... | ... | |
| 651 | 651 |
$TEXT['YES'] = 'Да'; |
| 652 | 652 |
|
| 653 | 653 |
/* include old languages format */ |
| 654 |
if(file_exists(WB_PATH.'/languages/old.format.inc.php')) |
|
| 655 |
{
|
|
| 656 |
include(WB_PATH.'/languages/old.format.inc.php'); |
|
| 657 |
} |
|
| 654 |
if (is_readable(__DIR__.'/old.format.inc.php')) { include __DIR__.'/old.format.inc.php'; }
|
|
| branches/main/languages/CA.php | ||
|---|---|---|
| 31 | 31 |
//declare(strict_types = 1); |
| 32 | 32 |
//declare(encoding = 'UTF-8'); |
| 33 | 33 |
|
| 34 |
if (!defined('WB_PATH')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
|
|
| 34 |
if (!defined('SYSTEM_RUN')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
|
|
| 35 | 35 |
// Define that this file is loaded |
| 36 | 36 |
if (!defined('LANGUAGE_LOADED')) { define('LANGUAGE_LOADED', true); }
|
| 37 | 37 |
|
| ... | ... | |
| 651 | 651 |
$TEXT['YES'] = 'Sí'; |
| 652 | 652 |
|
| 653 | 653 |
/* include old languages format */ |
| 654 |
if(file_exists(WB_PATH.'/languages/old.format.inc.php')) |
|
| 655 |
{
|
|
| 656 |
include(WB_PATH.'/languages/old.format.inc.php'); |
|
| 657 |
} |
|
| 654 |
if (is_readable(__DIR__.'/old.format.inc.php')) { include __DIR__.'/old.format.inc.php'; }
|
|
| branches/main/languages/CS.php | ||
|---|---|---|
| 31 | 31 |
//declare(strict_types = 1); |
| 32 | 32 |
//declare(encoding = 'UTF-8'); |
| 33 | 33 |
|
| 34 |
if (!defined('WB_PATH')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
|
|
| 34 |
if (!defined('SYSTEM_RUN')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
|
|
| 35 | 35 |
// Define that this file is loaded |
| 36 | 36 |
if (!defined('LANGUAGE_LOADED')) { define('LANGUAGE_LOADED', true); }
|
| 37 | 37 |
|
| ... | ... | |
| 651 | 651 |
$TEXT['YES'] = 'Ano'; |
| 652 | 652 |
|
| 653 | 653 |
/* include old languages format */ |
| 654 |
if(file_exists(WB_PATH.'/languages/old.format.inc.php')) |
|
| 655 |
{
|
|
| 656 |
include(WB_PATH.'/languages/old.format.inc.php'); |
|
| 657 |
} |
|
| 654 |
if (is_readable(__DIR__.'/old.format.inc.php')) { include __DIR__.'/old.format.inc.php'; }
|
|
| branches/main/languages/DA.php | ||
|---|---|---|
| 31 | 31 |
//declare(strict_types = 1); |
| 32 | 32 |
//declare(encoding = 'UTF-8'); |
| 33 | 33 |
|
| 34 |
if (!defined('WB_PATH')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
|
|
| 34 |
if (!defined('SYSTEM_RUN')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
|
|
| 35 | 35 |
// Define that this file is loaded |
| 36 | 36 |
if (!defined('LANGUAGE_LOADED')) { define('LANGUAGE_LOADED', true); }
|
| 37 | 37 |
|
| ... | ... | |
| 651 | 651 |
$TEXT['YES'] = 'Ja'; |
| 652 | 652 |
|
| 653 | 653 |
/* include old languages format */ |
| 654 |
if(file_exists(WB_PATH.'/languages/old.format.inc.php')) |
|
| 655 |
{
|
|
| 656 |
include(WB_PATH.'/languages/old.format.inc.php'); |
|
| 657 |
} |
|
| 654 |
if (is_readable(__DIR__.'/old.format.inc.php')) { include __DIR__.'/old.format.inc.php'; }
|
|
| branches/main/languages/DE.php | ||
|---|---|---|
| 31 | 31 |
//declare(strict_types = 1); |
| 32 | 32 |
//declare(encoding = 'UTF-8'); |
| 33 | 33 |
|
| 34 |
if (!defined('WB_PATH')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
|
|
| 34 |
if (!defined('SYSTEM_RUN')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
|
|
| 35 | 35 |
// Define that this file is loaded |
| 36 | 36 |
if (!defined('LANGUAGE_LOADED')) { define('LANGUAGE_LOADED', true); }
|
| 37 | 37 |
|
| ... | ... | |
| 399 | 399 |
$TEXT['FULL_NAME'] = 'Voller Name'; |
| 400 | 400 |
$TEXT['FUNCTION'] = 'Funktion'; |
| 401 | 401 |
$TEXT['GROUP'] = 'Gruppe'; |
| 402 |
$TEXT['GUEST'] = 'Gast'; |
|
| 402 | 403 |
$TEXT['HEADER'] = 'Kopfzeile'; |
| 403 | 404 |
$TEXT['HEADING'] = 'Überschrift'; |
| 404 | 405 |
$TEXT['HEADING_CSS_FILE'] = 'Aktuelle Moduldatei: '; |
| ... | ... | |
| 651 | 652 |
$TEXT['YES'] = 'Ja'; |
| 652 | 653 |
|
| 653 | 654 |
/* include old languages format */ |
| 654 |
if(file_exists(WB_PATH.'/languages/old.format.inc.php')) |
|
| 655 |
{
|
|
| 656 |
include(WB_PATH.'/languages/old.format.inc.php'); |
|
| 657 |
} |
|
| 655 |
if (is_readable(__DIR__.'/old.format.inc.php')) { include __DIR__.'/old.format.inc.php'; }
|
|
| branches/main/languages/EN.php | ||
|---|---|---|
| 31 | 31 |
//declare(strict_types = 1); |
| 32 | 32 |
//declare(encoding = 'UTF-8'); |
| 33 | 33 |
|
| 34 |
if (!defined('WB_PATH')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
|
|
| 34 |
if (!defined('SYSTEM_RUN')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
|
|
| 35 | 35 |
// Define that this file is loaded |
| 36 | 36 |
if (!defined('LANGUAGE_LOADED')) { define('LANGUAGE_LOADED', true); }
|
| 37 | 37 |
|
| ... | ... | |
| 399 | 399 |
$TEXT['FULL_NAME'] = 'Full Name'; |
| 400 | 400 |
$TEXT['FUNCTION'] = 'Function'; |
| 401 | 401 |
$TEXT['GROUP'] = 'Group'; |
| 402 |
$TEXT['GUEST'] = 'Guest'; |
|
| 402 | 403 |
$TEXT['HEADER'] = 'Header'; |
| 403 | 404 |
$TEXT['HEADING'] = 'Heading'; |
| 404 | 405 |
$TEXT['HEADING_CSS_FILE'] = 'Actual module file: '; |
| ... | ... | |
| 651 | 652 |
$TEXT['YES'] = 'Yes'; |
| 652 | 653 |
|
| 653 | 654 |
/* include old languages format */ |
| 654 |
if(file_exists(WB_PATH.'/languages/old.format.inc.php')) |
|
| 655 |
{
|
|
| 656 |
include(WB_PATH.'/languages/old.format.inc.php'); |
|
| 657 |
} |
|
| 655 |
if (is_readable(__DIR__.'/old.format.inc.php')) { include __DIR__.'/old.format.inc.php'; }
|
|
| branches/main/languages/ES.php | ||
|---|---|---|
| 31 | 31 |
//declare(strict_types = 1); |
| 32 | 32 |
//declare(encoding = 'UTF-8'); |
| 33 | 33 |
|
| 34 |
if (!defined('WB_PATH')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
|
|
| 34 |
if (!defined('SYSTEM_RUN')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
|
|
| 35 | 35 |
// Define that this file is loaded |
| 36 | 36 |
if (!defined('LANGUAGE_LOADED')) { define('LANGUAGE_LOADED', true); }
|
| 37 | 37 |
|
| ... | ... | |
| 651 | 651 |
$TEXT['YES'] = 'Si'; |
| 652 | 652 |
|
| 653 | 653 |
/* include old languages format */ |
| 654 |
if(file_exists(WB_PATH.'/languages/old.format.inc.php')) |
|
| 655 |
{
|
|
| 656 |
include(WB_PATH.'/languages/old.format.inc.php'); |
|
| 657 |
} |
|
| 654 |
if (is_readable(__DIR__.'/old.format.inc.php')) { include __DIR__.'/old.format.inc.php'; }
|
|
| branches/main/languages/ET.php | ||
|---|---|---|
| 31 | 31 |
//declare(strict_types = 1); |
| 32 | 32 |
//declare(encoding = 'UTF-8'); |
| 33 | 33 |
|
| 34 |
if (!defined('WB_PATH')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
|
|
| 34 |
if (!defined('SYSTEM_RUN')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
|
|
| 35 | 35 |
// Define that this file is loaded |
| 36 | 36 |
if (!defined('LANGUAGE_LOADED')) { define('LANGUAGE_LOADED', true); }
|
| 37 | 37 |
|
| ... | ... | |
| 651 | 651 |
$TEXT['YES'] = 'Jah'; |
| 652 | 652 |
|
| 653 | 653 |
/* include old languages format */ |
| 654 |
if(file_exists(WB_PATH.'/languages/old.format.inc.php')) |
|
| 655 |
{
|
|
| 656 |
include(WB_PATH.'/languages/old.format.inc.php'); |
|
| 657 |
} |
|
| 654 |
if (is_readable(__DIR__.'/old.format.inc.php')) { include __DIR__.'/old.format.inc.php'; }
|
|
| branches/main/languages/FI.php | ||
|---|---|---|
| 31 | 31 |
//declare(strict_types = 1); |
| 32 | 32 |
//declare(encoding = 'UTF-8'); |
| 33 | 33 |
|
| 34 |
if (!defined('WB_PATH')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
|
|
| 34 |
if (!defined('SYSTEM_RUN')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
|
|
| 35 | 35 |
// Define that this file is loaded |
| 36 | 36 |
if (!defined('LANGUAGE_LOADED')) { define('LANGUAGE_LOADED', true); }
|
| 37 | 37 |
|
| ... | ... | |
| 651 | 651 |
$TEXT['YES'] = 'Kyllä'; |
| 652 | 652 |
|
| 653 | 653 |
/* include old languages format */ |
| 654 |
if(file_exists(WB_PATH.'/languages/old.format.inc.php')) |
|
| 655 |
{
|
|
| 656 |
include(WB_PATH.'/languages/old.format.inc.php'); |
|
| 657 |
} |
|
| 654 |
if (is_readable(__DIR__.'/old.format.inc.php')) { include __DIR__.'/old.format.inc.php'; }
|
|
| branches/main/languages/FR.php | ||
|---|---|---|
| 31 | 31 |
//declare(strict_types = 1); |
| 32 | 32 |
//declare(encoding = 'UTF-8'); |
| 33 | 33 |
|
| 34 |
if (!defined('WB_PATH')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
|
|
| 34 |
if (!defined('SYSTEM_RUN')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
|
|
| 35 | 35 |
// Define that this file is loaded |
| 36 | 36 |
if (!defined('LANGUAGE_LOADED')) { define('LANGUAGE_LOADED', true); }
|
| 37 | 37 |
|
| ... | ... | |
| 651 | 651 |
$TEXT['YES'] = 'Oui'; |
| 652 | 652 |
|
| 653 | 653 |
/* include old languages format */ |
| 654 |
if(file_exists(WB_PATH.'/languages/old.format.inc.php')) |
|
| 655 |
{
|
|
| 656 |
include(WB_PATH.'/languages/old.format.inc.php'); |
|
| 657 |
} |
|
| 654 |
if (is_readable(__DIR__.'/old.format.inc.php')) { include __DIR__.'/old.format.inc.php'; }
|
|
| branches/main/languages/HR.php | ||
|---|---|---|
| 31 | 31 |
//declare(strict_types = 1); |
| 32 | 32 |
//declare(encoding = 'UTF-8'); |
| 33 | 33 |
|
| 34 |
if (!defined('WB_PATH')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
|
|
| 34 |
if (!defined('SYSTEM_RUN')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
|
|
| 35 | 35 |
// Define that this file is loaded |
| 36 | 36 |
if (!defined('LANGUAGE_LOADED')) { define('LANGUAGE_LOADED', true); }
|
| 37 | 37 |
|
| ... | ... | |
| 651 | 651 |
$TEXT['YES'] = 'Da'; |
| 652 | 652 |
|
| 653 | 653 |
/* include old languages format */ |
| 654 |
if(file_exists(WB_PATH.'/languages/old.format.inc.php')) |
|
| 655 |
{
|
|
| 656 |
include(WB_PATH.'/languages/old.format.inc.php'); |
|
| 657 |
} |
|
| 654 |
if (is_readable(__DIR__.'/old.format.inc.php')) { include __DIR__.'/old.format.inc.php'; }
|
|
| branches/main/languages/HU.php | ||
|---|---|---|
| 31 | 31 |
//declare(strict_types = 1); |
| 32 | 32 |
//declare(encoding = 'UTF-8'); |
| 33 | 33 |
|
| 34 |
if (!defined('WB_PATH')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
|
|
| 34 |
if (!defined('SYSTEM_RUN')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
|
|
| 35 | 35 |
// Define that this file is loaded |
| 36 | 36 |
if (!defined('LANGUAGE_LOADED')) { define('LANGUAGE_LOADED', true); }
|
| 37 | 37 |
|
| ... | ... | |
| 651 | 651 |
$TEXT['YES'] = 'Igen'; |
| 652 | 652 |
|
| 653 | 653 |
/* include old languages format */ |
| 654 |
if(file_exists(WB_PATH.'/languages/old.format.inc.php')) |
|
| 655 |
{
|
|
| 656 |
include(WB_PATH.'/languages/old.format.inc.php'); |
|
| 657 |
} |
|
| 654 |
if (is_readable(__DIR__.'/old.format.inc.php')) { include __DIR__.'/old.format.inc.php'; }
|
|
| branches/main/languages/IT.php | ||
|---|---|---|
| 31 | 31 |
//declare(strict_types = 1); |
| 32 | 32 |
//declare(encoding = 'UTF-8'); |
| 33 | 33 |
|
| 34 |
if (!defined('WB_PATH')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
|
|
| 34 |
if (!defined('SYSTEM_RUN')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
|
|
| 35 | 35 |
// Define that this file is loaded |
| 36 | 36 |
if (!defined('LANGUAGE_LOADED')) { define('LANGUAGE_LOADED', true); }
|
| 37 | 37 |
|
| ... | ... | |
| 651 | 651 |
$TEXT['YES'] = 'Sì'; |
| 652 | 652 |
|
| 653 | 653 |
/* include old languages format */ |
| 654 |
if(file_exists(WB_PATH.'/languages/old.format.inc.php')) |
|
| 655 |
{
|
|
| 656 |
include(WB_PATH.'/languages/old.format.inc.php'); |
|
| 657 |
} |
|
| 654 |
if (is_readable(__DIR__.'/old.format.inc.php')) { include __DIR__.'/old.format.inc.php'; }
|
|
| branches/main/languages/LV.php | ||
|---|---|---|
| 31 | 31 |
//declare(strict_types = 1); |
| 32 | 32 |
//declare(encoding = 'UTF-8'); |
| 33 | 33 |
|
| 34 |
if (!defined('WB_PATH')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
|
|
| 34 |
if (!defined('SYSTEM_RUN')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
|
|
| 35 | 35 |
// Define that this file is loaded |
| 36 | 36 |
if (!defined('LANGUAGE_LOADED')) { define('LANGUAGE_LOADED', true); }
|
| 37 | 37 |
|
| ... | ... | |
| 651 | 651 |
$TEXT['YES'] = 'Ja'; |
| 652 | 652 |
|
| 653 | 653 |
/* include old languages format */ |
| 654 |
if(file_exists(WB_PATH.'/languages/old.format.inc.php')) |
|
| 655 |
{
|
|
| 656 |
include(WB_PATH.'/languages/old.format.inc.php'); |
|
| 657 |
} |
|
| 654 |
if (is_readable(__DIR__.'/old.format.inc.php')) { include __DIR__.'/old.format.inc.php'; }
|
|
| branches/main/languages/NL.php | ||
|---|---|---|
| 31 | 31 |
//declare(strict_types = 1); |
| 32 | 32 |
//declare(encoding = 'UTF-8'); |
| 33 | 33 |
|
| 34 |
if (!defined('WB_PATH')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
|
|
| 34 |
if (!defined('SYSTEM_RUN')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
|
|
| 35 | 35 |
// Define that this file is loaded |
| 36 | 36 |
if (!defined('LANGUAGE_LOADED')) { define('LANGUAGE_LOADED', true); }
|
| 37 | 37 |
|
| ... | ... | |
| 651 | 651 |
$TEXT['YES'] = 'Ja'; |
| 652 | 652 |
|
| 653 | 653 |
/* include old languages format */ |
| 654 |
if(file_exists(WB_PATH.'/languages/old.format.inc.php')) |
|
| 655 |
{
|
|
| 656 |
include(WB_PATH.'/languages/old.format.inc.php'); |
|
| 657 |
} |
|
| 654 |
if (is_readable(__DIR__.'/old.format.inc.php')) { include __DIR__.'/old.format.inc.php'; }
|
|
| branches/main/languages/NO.php | ||
|---|---|---|
| 31 | 31 |
//declare(strict_types = 1); |
| 32 | 32 |
//declare(encoding = 'UTF-8'); |
| 33 | 33 |
|
| 34 |
if (!defined('WB_PATH')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
|
|
| 34 |
if (!defined('SYSTEM_RUN')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
|
|
| 35 | 35 |
// Define that this file is loaded |
| 36 | 36 |
if (!defined('LANGUAGE_LOADED')) { define('LANGUAGE_LOADED', true); }
|
| 37 | 37 |
|
| ... | ... | |
| 651 | 651 |
$TEXT['YES'] = 'Ja'; |
| 652 | 652 |
|
| 653 | 653 |
/* include old languages format */ |
| 654 |
if(file_exists(WB_PATH.'/languages/old.format.inc.php')) |
|
| 655 |
{
|
|
| 656 |
include(WB_PATH.'/languages/old.format.inc.php'); |
|
| 657 |
} |
|
| 654 |
if (is_readable(__DIR__.'/old.format.inc.php')) { include __DIR__.'/old.format.inc.php'; }
|
|
| branches/main/languages/PL.php | ||
|---|---|---|
| 31 | 31 |
//declare(strict_types = 1); |
| 32 | 32 |
//declare(encoding = 'UTF-8'); |
| 33 | 33 |
|
| 34 |
if (!defined('WB_PATH')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
|
|
| 34 |
if (!defined('SYSTEM_RUN')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
|
|
| 35 | 35 |
// Define that this file is loaded |
| 36 | 36 |
if (!defined('LANGUAGE_LOADED')) { define('LANGUAGE_LOADED', true); }
|
| 37 | 37 |
|
| ... | ... | |
| 651 | 651 |
$TEXT['YES'] = 'Tak'; |
| 652 | 652 |
|
| 653 | 653 |
/* include old languages format */ |
| 654 |
if(file_exists(WB_PATH.'/languages/old.format.inc.php')) |
|
| 655 |
{
|
|
| 656 |
include(WB_PATH.'/languages/old.format.inc.php'); |
|
| 657 |
} |
|
| 654 |
if (is_readable(__DIR__.'/old.format.inc.php')) { include __DIR__.'/old.format.inc.php'; }
|
|
| branches/main/languages/PT.php | ||
|---|---|---|
| 31 | 31 |
//declare(strict_types = 1); |
| 32 | 32 |
//declare(encoding = 'UTF-8'); |
| 33 | 33 |
|
| 34 |
if (!defined('WB_PATH')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
|
|
| 34 |
if (!defined('SYSTEM_RUN')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
|
|
| 35 | 35 |
// Define that this file is loaded |
| 36 | 36 |
if (!defined('LANGUAGE_LOADED')) { define('LANGUAGE_LOADED', true); }
|
| 37 | 37 |
|
| ... | ... | |
| 651 | 651 |
$TEXT['YES'] = 'Sim'; |
| 652 | 652 |
|
| 653 | 653 |
/* include old languages format */ |
| 654 |
if(file_exists(WB_PATH.'/languages/old.format.inc.php')) |
|
| 655 |
{
|
|
| 656 |
include(WB_PATH.'/languages/old.format.inc.php'); |
|
| 657 |
} |
|
| 654 |
if (is_readable(__DIR__.'/old.format.inc.php')) { include __DIR__.'/old.format.inc.php'; }
|
|
| branches/main/languages/RU.php | ||
|---|---|---|
| 31 | 31 |
//declare(strict_types = 1); |
| 32 | 32 |
//declare(encoding = 'UTF-8'); |
| 33 | 33 |
|
| 34 |
if (!defined('WB_PATH')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
|
|
| 34 |
if (!defined('SYSTEM_RUN')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
|
|
| 35 | 35 |
// Define that this file is loaded |
| 36 | 36 |
if (!defined('LANGUAGE_LOADED')) { define('LANGUAGE_LOADED', true); }
|
| 37 | 37 |
|
| ... | ... | |
| 651 | 651 |
$TEXT['YES'] = 'Да'; |
| 652 | 652 |
|
| 653 | 653 |
/* include old languages format */ |
| 654 |
if(file_exists(WB_PATH.'/languages/old.format.inc.php')) |
|
| 655 |
{
|
|
| 656 |
include(WB_PATH.'/languages/old.format.inc.php'); |
|
| 657 |
} |
|
| 654 |
if (is_readable(__DIR__.'/old.format.inc.php')) { include __DIR__.'/old.format.inc.php'; }
|
|
| branches/main/languages/SE.php | ||
|---|---|---|
| 31 | 31 |
//declare(strict_types = 1); |
| 32 | 32 |
//declare(encoding = 'UTF-8'); |
| 33 | 33 |
|
| 34 |
if (!defined('WB_PATH')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
|
|
| 34 |
if (!defined('SYSTEM_RUN')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
|
|
| 35 | 35 |
// Define that this file is loaded |
| 36 | 36 |
if (!defined('LANGUAGE_LOADED')) { define('LANGUAGE_LOADED', true); }
|
| 37 | 37 |
|
| ... | ... | |
| 651 | 651 |
$TEXT['YES'] = 'Ja'; |
| 652 | 652 |
|
| 653 | 653 |
/* include old languages format */ |
| 654 |
if(file_exists(WB_PATH.'/languages/old.format.inc.php')) |
|
| 655 |
{
|
|
| 656 |
include(WB_PATH.'/languages/old.format.inc.php'); |
|
| 657 |
} |
|
| 654 |
if (is_readable(__DIR__.'/old.format.inc.php')) { include __DIR__.'/old.format.inc.php'; }
|
|
| branches/main/languages/SK.php | ||
|---|---|---|
| 31 | 31 |
//declare(strict_types = 1); |
| 32 | 32 |
//declare(encoding = 'UTF-8'); |
| 33 | 33 |
|
| 34 |
if (!defined('WB_PATH')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
|
|
| 34 |
if (!defined('SYSTEM_RUN')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
|
|
| 35 | 35 |
// Define that this file is loaded |
| 36 | 36 |
if (!defined('LANGUAGE_LOADED')) { define('LANGUAGE_LOADED', true); }
|
| 37 | 37 |
|
| ... | ... | |
| 651 | 651 |
$TEXT['YES'] = 'Ano'; |
| 652 | 652 |
|
| 653 | 653 |
/* include old languages format */ |
| 654 |
if(file_exists(WB_PATH.'/languages/old.format.inc.php')) |
|
| 655 |
{
|
|
| 656 |
include(WB_PATH.'/languages/old.format.inc.php'); |
|
| 657 |
} |
|
| 654 |
if (is_readable(__DIR__.'/old.format.inc.php')) { include __DIR__.'/old.format.inc.php'; }
|
|
| branches/main/languages/TR.php | ||
|---|---|---|
| 31 | 31 |
//declare(strict_types = 1); |
| 32 | 32 |
//declare(encoding = 'UTF-8'); |
| 33 | 33 |
|
| 34 |
if (!defined('WB_PATH')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
|
|
| 34 |
if (!defined('SYSTEM_RUN')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
|
|
| 35 | 35 |
// Define that this file is loaded |
| 36 | 36 |
if (!defined('LANGUAGE_LOADED')) { define('LANGUAGE_LOADED', true); }
|
| 37 | 37 |
|
| ... | ... | |
| 651 | 651 |
$TEXT['YES'] = 'Evet'; |
| 652 | 652 |
|
| 653 | 653 |
/* include old languages format */ |
| 654 |
if(file_exists(WB_PATH.'/languages/old.format.inc.php')) |
|
| 655 |
{
|
|
| 656 |
include(WB_PATH.'/languages/old.format.inc.php'); |
|
| 657 |
} |
|
| 654 |
if (is_readable(__DIR__.'/old.format.inc.php')) { include __DIR__.'/old.format.inc.php'; }
|
|
| branches/main/languages/old.format.inc.php | ||
|---|---|---|
| 1 | 1 |
<?php |
| 2 |
/** |
|
| 2 |
|
|
| 3 |
/* |
|
| 4 |
* Copyright (C) 2017 Manuela v.d.Decken <manuela@isteam.de> |
|
| 5 |
* |
|
| 6 |
* DO NOT ALTER OR REMOVE COPYRIGHT OR THIS HEADER |
|
| 7 |
* |
|
| 8 |
* This program is free software: you can redistribute it and/or modify |
|
| 9 |
* it under the terms of the GNU General Public License as published by |
|
| 10 |
* the Free Software Foundation, version 2 of the License. |
|
| 11 |
* |
|
| 12 |
* This program is distributed in the hope that it will be useful, |
|
| 13 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 14 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 15 |
* GNU General Public License 2 for more details. |
|
| 3 | 16 |
* Description of convert toold format |
| 4 | 17 |
* |
| 18 |
* You should have received a copy of the GNU General Public License 2 |
|
| 19 |
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
| 20 |
*/ |
|
| 21 |
/** |
|
| 22 |
* Description of old.format.inc.php |
|
| 23 |
* |
|
| 5 | 24 |
* @package CoreTranslation |
| 6 | 25 |
* @copyright Manuela v.d.Decken <manuela@isteam.de> |
| 7 | 26 |
* @author Manuela v.d.Decken <manuela@isteam.de> |
| ... | ... | |
| 9 | 28 |
* @version 4.0.0 |
| 10 | 29 |
* @revision $Id$ |
| 11 | 30 |
* @since File available since 18.10.2017 |
| 12 |
* @deprecated no
|
|
| 13 |
* @description xxx
|
|
| 31 |
* @deprecated yes, since 2017/10/20- will be removed in 2.12.0
|
|
| 32 |
* @description generates a couple of translations, needed by very old addons only
|
|
| 14 | 33 |
*/ |
| 34 |
|
|
| 15 | 35 |
//declare(strict_types = 1); |
| 16 | 36 |
//declare(encoding = 'UTF-8'); |
| 17 | 37 |
|
| 18 |
if (!defined('WB_PATH')) { header($_SERVER['SERVER_PROTOCOL']. ' 404 Not Found'); flush(); exit; }
|
|
| 38 |
if (!defined('SYSTEM_RUN')) { header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found'); flush(); exit; }
|
|
| 19 | 39 |
|
| 20 |
$MESSAGE['FRONTEND']['SORRY_NO_VIEWING_PERMISSIONS'] = 'MESSAGE[FRONTEND_SORRY_NO_VIEWING_PERMISSIONS]' ; |
|
| 21 |
$MESSAGE['FRONTEND']['SORRY_NO_ACTIVE_SECTIONS'] = 'MESSAGE[FRONTEND_SORRY_NO_ACTIVE_SECTIONS]' ; |
|
| 22 |
$MESSAGE['ADMIN']['INSUFFICIENT_PRIVELLIGES'] = 'MESSAGE[ADMIN_INSUFFICIENT_PRIVELLIGES]' ; |
|
| 23 |
$MESSAGE['LOGIN']['BOTH_BLANK'] = 'MESSAGE[LOGIN_BOTH_BLANK]' ; |
|
| 24 |
$MESSAGE['LOGIN']['USERNAME_BLANK'] = 'MESSAGE[LOGIN_USERNAME_BLANK]' ; |
|
| 25 |
$MESSAGE['LOGIN']['PASSWORD_BLANK'] = 'MESSAGE[LOGIN_PASSWORD_BLANK]' ; |
|
| 26 |
$MESSAGE['LOGIN']['USERNAME_TOO_SHORT'] = 'MESSAGE[LOGIN_USERNAME_TOO_SHORT]' ; |
|
| 27 |
$MESSAGE['LOGIN']['PASSWORD_TOO_SHORT'] = 'MESSAGE[LOGIN_PASSWORD_TOO_SHORT]' ; |
|
| 28 |
$MESSAGE['LOGIN']['USERNAME_TOO_LONG'] = 'MESSAGE[LOGIN_USERNAME_TOO_LONG]' ; |
|
| 29 |
$MESSAGE['LOGIN']['PASSWORD_TOO_LONG'] = 'MESSAGE[LOGIN_PASSWORD_TOO_LONG]' ; |
|
| 30 |
$MESSAGE['LOGIN']['AUTHENTICATION_FAILED'] = 'MESSAGE[LOGIN_AUTHENTICATION_FAILED]' ; |
|
| 31 |
$MESSAGE['SIGNUP']['NO_EMAIL'] = 'MESSAGE[SIGNUP_NO_EMAIL]' ; |
|
| 32 |
$MESSAGE['SIGNUP2']['SUBJECT_LOGIN_INFO'] = 'MESSAGE[SIGNUP2_SUBJECT_LOGIN_INFO]' ; |
|
| 33 |
$MESSAGE['SIGNUP2']['BODY_LOGIN_INFO'] = 'MESSAGE[SIGNUP2_BODY_LOGIN_INFO]' ; |
|
| 34 |
$MESSAGE['SIGNUP2']['BODY_LOGIN_FORGOT'] = 'MESSAGE[SIGNUP2_BODY_LOGIN_FORGOT]' ; |
|
| 35 |
$MESSAGE['FORGOT_PASS']['NO_DATA'] = 'MESSAGE[FORGOT_PASS_NO_DATA]' ; |
|
| 36 |
$MESSAGE['FORGOT_PASS']['EMAIL_NOT_FOUND'] = 'MESSAGE[FORGOT_PASS_EMAIL_NOT_FOUND]' ; |
|
| 37 |
$MESSAGE['FORGOT_PASS']['CANNOT_EMAIL'] = 'MESSAGE[FORGOT_PASS_CANNOT_EMAIL]' ; |
|
| 38 |
$MESSAGE['FORGOT_PASS']['PASSWORD_RESET'] = 'MESSAGE[FORGOT_PASS_PASSWORD_RESET]' ; |
|
| 39 |
$MESSAGE['FORGOT_PASS']['ALREADY_RESET'] = 'MESSAGE[FORGOT_PASS_ALREADY_RESET]' ; |
|
| 40 |
$MESSAGE['START']['WELCOME_MESSAGE'] = 'MESSAGE[START_WELCOME_MESSAGE]' ; |
|
| 41 |
$MESSAGE['START']['INSTALL_DIR_EXISTS'] = 'MESSAGE[START_INSTALL_DIR_EXISTS]' ; |
|
| 42 |
$MESSAGE['START']['CURRENT_USER'] = 'MESSAGE[START_CURRENT_USER]' ; |
|
| 43 |
$MESSAGE['SETTINGS']['UNABLE_OPEN_CONFIG'] = 'MESSAGE[SETTINGS_UNABLE_OPEN_CONFIG]' ; |
|
| 44 |
$MESSAGE['SETTINGS']['UNABLE_WRITE_CONFIG'] = 'MESSAGE[SETTINGS_UNABLE_WRITE_CONFIG]' ; |
|
| 45 |
$MESSAGE['SETTINGS']['SAVED'] = 'MESSAGE[SETTINGS_SAVED]' ; |
|
| 46 |
$MESSAGE['SETTINGS']['MODE_SWITCH_WARNING'] = 'MESSAGE[SETTINGS_MODE_SWITCH_WARNING]' ; |
|
| 47 |
$MESSAGE['SETTINGS']['WORLD_WRITEABLE_WARNING'] = 'MESSAGE[SETTINGS_WORLD_WRITEABLE_WARNING]' ; |
|
| 48 |
$MESSAGE['USERS']['ADDED'] = 'MESSAGE[USERS_ADDED]' ; |
|
| 49 |
$MESSAGE['USERS']['SAVED'] = 'MESSAGE[USERS_SAVED]' ; |
|
| 50 |
$MESSAGE['USERS']['DELETED'] = 'MESSAGE[USERS_DELETED]' ; |
|
| 51 |
$MESSAGE['USERS']['NO_GROUP'] = 'MESSAGE[USERS_NO_GROUP]' ; |
|
| 52 |
$MESSAGE['USERS']['USERNAME_TOO_SHORT'] = 'MESSAGE[USERS_USERNAME_TOO_SHORT]' ; |
|
| 53 |
$MESSAGE['USERS']['PASSWORD_TOO_SHORT'] = 'MESSAGE[USERS_PASSWORD_TOO_SHORT]' ; |
|
| 54 |
$MESSAGE['USERS']['PASSWORD_MISMATCH'] = 'MESSAGE[USERS_PASSWORD_MISMATCH]' ; |
|
| 55 |
$MESSAGE['USERS']['INVALID_EMAIL'] = 'MESSAGE[USERS_INVALID_EMAIL]' ; |
|
| 56 |
$MESSAGE['USERS']['EMAIL_TAKEN'] = 'MESSAGE[USERS_EMAIL_TAKEN]' ; |
|
| 57 |
$MESSAGE['USERS']['USERNAME_TAKEN'] = 'MESSAGE[USERS_USERNAME_TAKEN]' ; |
|
| 58 |
$MESSAGE['USERS']['CHANGING_PASSWORD'] = 'MESSAGE[USERS_CHANGING_PASSWORD]' ; |
|
| 59 |
$MESSAGE['USERS']['CONFIRM_DELETE'] = 'MESSAGE[USERS_CONFIRM_DELETE]' ; |
|
| 60 |
$MESSAGE['GROUPS']['ADDED'] = 'MESSAGE[GROUPS_ADDED]' ; |
|
| 61 |
$MESSAGE['GROUPS']['SAVED'] = 'MESSAGE[GROUPS_SAVED]' ; |
|
| 62 |
$MESSAGE['GROUPS']['DELETED'] = 'MESSAGE[GROUPS_DELETED]' ; |
|
| 63 |
$MESSAGE['GROUPS']['GROUP_NAME_BLANK'] = 'MESSAGE[GROUPS_GROUP_NAME_BLANK]' ; |
|
| 64 |
$MESSAGE['GROUPS']['CONFIRM_DELETE'] = 'MESSAGE[GROUPS_CONFIRM_DELETE]' ; |
|
| 65 |
$MESSAGE['GROUPS']['NO_GROUPS_FOUND'] = 'MESSAGE[GROUPS_NO_GROUPS_FOUND]' ; |
|
| 66 |
$MESSAGE['GROUPS']['GROUP_NAME_EXISTS'] = 'MESSAGE[GROUPS_GROUP_NAME_EXISTS]' ; |
|
| 67 |
$MESSAGE['PREFERENCES']['DETAILS_SAVED'] = 'MESSAGE[PREFERENCES_DETAILS_SAVED]' ; |
|
| 68 |
$MESSAGE['PREFERENCES']['EMAIL_UPDATED'] = 'MESSAGE[PREFERENCES_EMAIL_UPDATED]' ; |
|
| 69 |
$MESSAGE['PREFERENCES']['CURRENT_PASSWORD_INCORRECT'] = 'MESSAGE[PREFERENCES_CURRENT_PASSWORD_INCORRECT]' ; |
|
| 70 |
$MESSAGE['PREFERENCES']['PASSWORD_CHANGED'] = 'MESSAGE[PREFERENCES_PASSWORD_CHANGED]' ; |
|
| 71 |
$MESSAGE['PREFERENCES']['INVALID_CHARS'] = 'MESSAGE[PREFERENCES_INVALID_CHARS]' ; |
|
| 72 |
$MESSAGE['TEMPLATES']['CHANGE_TEMPLATE_NOTICE'] = 'MESSAGE[TEMPLATES_CHANGE_TEMPLATE_NOTICE]' ; |
|
| 73 |
$MESSAGE['MEDIA']['DIR_DOT_DOT_SLASH'] = 'MESSAGE[MEDIA_DIR_DOT_DOT_SLASH]' ; |
|
| 74 |
$MESSAGE['MEDIA']['DIR_DOES_NOT_EXIST'] = 'MESSAGE[MEDIA_DIR_DOES_NOT_EXIST]' ; |
|
| 75 |
$MESSAGE['MEDIA']['TARGET_DOT_DOT_SLASH'] = 'MESSAGE[EDIA_TARGET_DOT_DOT_SLASH]' ; |
|
| 76 |
$MESSAGE['MEDIA']['NAME_DOT_DOT_SLASH'] = 'MESSAGE[MEDIA_NAME_DOT_DOT_SLASH]' ; |
|
| 77 |
$MESSAGE['MEDIA']['NAME_INDEX_PHP'] = 'MESSAGE[MEDIA_NAME_INDEX_PHP]' ; |
|
| 78 |
$MESSAGE['MEDIA']['NONE_FOUND'] = 'MESSAGE[MEDIA_NONE_FOUND]' ; |
|
| 79 |
$MESSAGE['MEDIA']['FILE_NOT_FOUND'] = 'MESSAGE[MEDIA_FILE_NOT_FOUND]' ; |
|
| 80 |
$MESSAGE['MEDIA']['DELETED_FILE'] = 'MESSAGE[MEDIA_DELETED_FILE]' ; |
|
| 81 |
$MESSAGE['MEDIA']['DELETED_DIR'] = 'MESSAGE[MEDIA_DELETED_DIR]' ; |
|
| 82 |
$MESSAGE['MEDIA']['CONFIRM_DELETE'] = 'MESSAGE[MEDIA_CONFIRM_DELETE]' ; |
|
| 83 |
$MESSAGE['MEDIA']['CANNOT_DELETE_FILE'] = 'MESSAGE[MEDIA_CANNOT_DELETE_FILE]' ; |
|
| 84 |
$MESSAGE['MEDIA']['CANNOT_DELETE_DIR'] = 'MESSAGE[MEDIA_CANNOT_DELETE_DIR]' ; |
|
| 85 |
$MESSAGE['MEDIA']['BLANK_NAME'] = 'MESSAGE[MEDIA_BLANK_NAME]' ; |
|
| 86 |
$MESSAGE['MEDIA']['BLANK_EXTENSION'] = 'MESSAGE[MEDIA_BLANK_EXTENSION]' ; |
|
| 87 |
$MESSAGE['MEDIA']['RENAMED'] = 'MESSAGE[MEDIA_RENAMED]' ; |
|
| 88 |
$MESSAGE['MEDIA']['CANNOT_RENAME'] = 'MESSAGE[MEDIA_CANNOT_RENAME]' ; |
|
| 89 |
$MESSAGE['MEDIA']['FILE_EXISTS'] = 'MESSAGE[MEDIA_FILE_EXISTS]' ; |
|
| 90 |
$MESSAGE['MEDIA']['DIR_EXISTS'] = 'MESSAGE[MEDIA_DIR_EXISTS]' ; |
|
| 91 |
$MESSAGE['MEDIA']['DIR_MADE'] = 'MESSAGE[MEDIA_DIR_MADE]' ; |
|
| 92 |
$MESSAGE['MEDIA']['DIR_NOT_MADE'] = 'MESSAGE[MEDIA_DIR_NOT_MADE]' ; |
|
| 93 |
$MESSAGE['MEDIA']['SINGLE_UPLOADED'] = 'MESSAGE[MEDIA_SINGLE_UPLOADED]' ; |
|
| 94 |
$MESSAGE['MEDIA']['UPLOADED'] = 'MESSAGE[MEDIA_UPLOADED]' ; |
|
| 95 |
$MESSAGE['PAGES']['ADDED'] = 'MESSAGE[PAGES_ADDED]' ; |
|
| 96 |
$MESSAGE['PAGES']['ADDED_HEADING'] = 'MESSAGE[PAGES_ADDED_HEADING]' ; |
|
| 97 |
$MESSAGE['PAGES']['PAGE_EXISTS'] = 'MESSAGE[PAGES_PAGE_EXISTS]' ; |
|
| 98 |
$MESSAGE['PAGES']['CANNOT_CREATE_ACCESS_FILE'] = 'MESSAGE[PAGES_CANNOT_CREATE_ACCESS_FILE]' ; |
|
| 99 |
$MESSAGE['PAGES']['CANNOT_DELETE_ACCESS_FILE'] = 'MESSAGE[PAGES_CANNOT_DELETE_ACCESS_FILE]' ; |
|
| 100 |
$MESSAGE['PAGES']['NOT_FOUND'] = 'MESSAGE[PAGES_NOT_FOUND]' ; |
|
| 101 |
$MESSAGE['PAGES']['SAVED'] = 'MESSAGE[PAGES_SAVED]' ; |
|
| 102 |
$MESSAGE['PAGES']['SAVED_SETTINGS'] = 'MESSAGE[PAGES_SAVED_SETTINGS]' ; |
|
| 103 |
$MESSAGE['PAGES']['NOT_SAVED'] = 'MESSAGE[PAGES_NOT_SAVED]' ; |
|
| 104 |
$MESSAGE['PAGES']['DELETE_CONFIRM'] = 'MESSAGE[PAGES_DELETE_CONFIRM]' ; |
|
| 105 |
$MESSAGE['PAGES']['DELETED'] = 'MESSAGE[PAGES_DELETED]' ; |
|
| 106 |
$MESSAGE['PAGES']['RESTORED'] = 'MESSAGE[PAGES_RESTORED]' ; |
|
| 107 |
$MESSAGE['PAGES']['BLANK_PAGE_TITLE'] = 'MESSAGE[PAGES_BLANK_PAGE_TITLE]' ; |
|
| 108 |
$MESSAGE['PAGES']['BLANK_MENU_TITLE'] = 'MESSAGE[PAGES_BLANK_MENU_TITLE]' ; |
|
| 109 |
$MESSAGE['PAGES']['REORDERED'] = 'MESSAGE[PAGES_REORDERED]' ; |
|
| 110 |
$MESSAGE['PAGES']['CANNOT_REORDER'] = 'MESSAGE[PAGES_CANNOT_REORDER]' ; |
|
| 111 |
$MESSAGE['PAGES']['INSUFFICIENT_PERMISSIONS'] = 'MESSAGE[PAGES_INSUFFICIENT_PERMISSIONS]' ; |
|
| 112 |
$MESSAGE['PAGES']['INTRO_NOT_WRITABLE'] = 'MESSAGE[PAGES_INTRO_NOT_WRITABLE]' ; |
|
| 113 |
$MESSAGE['PAGES']['INTRO_SAVED'] = 'MESSAGE[PAGES_INTRO_SAVED]' ; |
|
| 114 |
$MESSAGE['PAGES']['LAST_MODIFIED'] = 'MESSAGE[PAGES_LAST_MODIFIED]' ; |
|
| 115 |
$MESSAGE['PAGES']['INTRO_LINK'] = 'MESSAGE[PAGES_INTRO_LINK]' ; |
|
| 116 |
$MESSAGE['PAGES']['SECTIONS_PROPERTIES_SAVED'] = 'MESSAGE[PAGES_SECTIONS_PROPERTIES_SAVED]' ; |
|
| 117 |
$MESSAGE['PAGES']['RETURN_TO_PAGES'] = 'MESSAGE[PAGES_RETURN_TO_PAGES]' ; |
|
| 118 |
$MESSAGE['GENERIC']['FILL_IN_ALL'] = 'MESSAGE[GENERIC_FILL_IN_ALL]' ; |
|
| 119 |
$MESSAGE['GENERIC']['FILE_TYPE'] = 'MESSAGE[GENERIC_FILE_TYPE]' ; |
|
| 120 |
$MESSAGE['GENERIC']['FILE_TYPES'] = 'MESSAGE[GENERIC_FILE_TYPES]' ; |
|
| 121 |
$MESSAGE['GENERIC']['CANNOT_UPLOAD'] = 'MESSAGE[GENERIC_CANNOT_UPLOAD]' ; |
|
| 122 |
$MESSAGE['GENERIC']['ALREADY_INSTALLED'] = 'MESSAGE[GENERIC_ALREADY_INSTALLED]' ; |
|
| 123 |
$MESSAGE['GENERIC']['NOT_INSTALLED'] = 'MESSAGE[GENERIC_NOT_INSTALLED]' ; |
|
| 124 |
$MESSAGE['GENERIC']['CANNOT_UNINSTALL'] = 'MESSAGE[GENERIC_CANNOT_UNINSTALL]' ; |
|
| 125 |
$MESSAGE['GENERIC']['CANNOT_UNZIP'] = 'MESSAGE[GENERIC_CANNOT_UNZIP]' ; |
|
| 126 |
$MESSAGE['GENERIC']['INSTALLED'] = 'MESSAGE[GENERIC_INSTALLED]' ; |
|
| 127 |
$MESSAGE['GENERIC']['UPGRADED'] = 'MESSAGE[GENERIC_UPGRADED]' ; |
|
| 128 |
$MESSAGE['GENERIC']['UNINSTALLED'] = 'MESSAGE[GENERIC_UNINSTALLED]' ; |
|
| 129 |
$MESSAGE['GENERIC']['BAD_PERMISSIONS'] = 'MESSAGE[GENERIC_BAD_PERMISSIONS]' ; |
|
| 130 |
$MESSAGE['GENERIC']['INVALID'] = 'MESSAGE[GENERIC_INVALID]' ; |
|
| 131 |
$MESSAGE['GENERIC']['CANNOT_UNINSTALL_IN_USE'] = 'MESSAGE[GENERIC_CANNOT_UNINSTALL_IN_USE]' ; |
|
| 132 |
$MESSAGE['GENERIC']['SECURITY_OFFENSE'] = 'MESSAGE[GENERIC_SECURITY_OFFENSE]' ; |
|
| 133 |
$MESSAGE['GENERIC']['CANNOT_UNINSTALL_IN_USE_TMPL'] = 'MESSAGE[GENERIC_CANNOT_UNINSTALL_IN_USE_TMPL]' ; |
|
| 134 |
$MESSAGE['GENERIC']['CANNOT_UNINSTALL_IN_USE_TMPL_PAGES'] = 'MESSAGE[GENERIC_CANNOT_UNINSTALL_IN_USE_TMPL_PAGES]' ; |
|
| 135 |
$MESSAGE['GENERIC']['CANNOT_UNINSTALL_IS_DEFAULT_TEMPLATE'] = 'MESSAGE[GENERIC_CANNOT_UNINSTALL_IS_DEFAULT_TEMPLATE]' ; |
|
| 136 |
$MESSAGE['GENERIC']['WEBSITE_UNDER_CONSTRUCTION'] = 'MESSAGE[GENERIC_WEBSITE_UNDER_CONSTRUCTION]' ; |
|
| 137 |
$MESSAGE['GENERIC']['PLEASE_CHECK_BACK_SOON'] = 'MESSAGE[GENERIC_PLEASE_CHECK_BACK_SOON]' ; |
|
| 138 |
$MESSAGE['GENERIC']['PLEASE_BE_PATIENT'] = 'MESSAGE[GENERIC_PLEASE_BE_PATIENT]' ; |
|
| 139 |
$MESSAGE['GENERIC']['ERROR_OPENING_FILE'] = 'MESSAGE[GENERIC_ERROR_OPENING_FILE]' ; |
|
| 140 |
$MESSAGE['GENERIC']['INVALID_ADDON_FILE'] = 'MESSAGE[GENERIC_INVALID_ADDON_FILE]' ; |
|
| 141 |
$MESSAGE['GENERIC']['INVALID_LANGUAGE_FILE'] = 'MESSAGE[GENERIC_INVALID_LANGUAGE_FILE]' ; |
|
| 142 |
$MESSAGE['MOD_FORM']['REQUIRED_FIELDS'] = 'MESSAGE[MOD_FORM_REQUIRED_FIELDS]' ; |
|
| 143 |
$MESSAGE['MOD_FORM']['EXCESS_SUBMISSIONS'] = 'MESSAGE[MOD_FORM_EXCESS_SUBMISSIONS]' ; |
|
| 144 |
$MESSAGE['MOD_FORM']['INCORRECT_CAPTCHA'] = 'MESSAGE[MOD_FORM_INCORRECT_CAPTCHA]' ; |
|
| 145 |
$MESSAGE['ADDON']['RELOAD'] = 'MESSAGE[ADDON_RELOAD]' ; |
|
| 146 |
$MESSAGE['ADDON']['ERROR_RELOAD'] = 'MESSAGE[ADDON_ERROR_RELOAD]' ; |
|
| 147 |
$MESSAGE['ADDON']['MODULES_RELOADED'] = 'MESSAGE[ADDON_MODULES_RELOADED]' ; |
|
| 148 |
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'MESSAGE[ADDON_TEMPLATES_RELOADED]' ; |
|
| 149 |
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'MESSAGE[ADDON_LANGUAGES_RELOADED]' ; |
|
| 150 |
$MESSAGE['ADDON']['PRECHECK_FAILED'] = 'MESSAGE[ADDON_PRECHECK_FAILED]' ; |
|
| 151 |
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'MESSAGE[ADDON_MANUAL_INSTALLATION]' ; |
|
| 152 |
$MESSAGE['ADDON']['MANUAL_INSTALLATION_WARNING'] = 'MESSAGE[ADDON_MANUAL_INSTALLATION_WARNING]' ; |
|
| 153 |
|
|
| 40 |
$MESSAGE['FRONTEND']['SORRY_NO_VIEWING_PERMISSIONS'] = '$MESSAGE[\'FRONTEND_SORRY_NO_VIEWING_PERMISSIONS\']'; |
|
| 41 |
$MESSAGE['FRONTEND']['SORRY_NO_ACTIVE_SECTIONS'] = '$MESSAGE[\'FRONTEND_SORRY_NO_ACTIVE_SECTIONS\']'; |
|
| 42 |
$MESSAGE['ADMIN']['INSUFFICIENT_PRIVELLIGES'] = '$MESSAGE[\'ADMIN_INSUFFICIENT_PRIVELLIGES\']'; |
|
| 43 |
$MESSAGE['LOGIN']['BOTH_BLANK'] = '$MESSAGE[\'LOGIN_BOTH_BLANK\']'; |
|
| 44 |
$MESSAGE['LOGIN']['USERNAME_BLANK'] = '$MESSAGE[\'LOGIN_USERNAME_BLANK\']'; |
|
| 45 |
$MESSAGE['LOGIN']['PASSWORD_BLANK'] = '$MESSAGE[\'LOGIN_PASSWORD_BLANK\']'; |
|
| 46 |
$MESSAGE['LOGIN']['USERNAME_TOO_SHORT'] = '$MESSAGE[\'LOGIN_USERNAME_TOO_SHORT\']'; |
|
| 47 |
$MESSAGE['LOGIN']['PASSWORD_TOO_SHORT'] = '$MESSAGE[\'LOGIN_PASSWORD_TOO_SHORT\']'; |
|
| 48 |
$MESSAGE['LOGIN']['USERNAME_TOO_LONG'] = '$MESSAGE[\'LOGIN_USERNAME_TOO_LONG\']'; |
|
| 49 |
$MESSAGE['LOGIN']['PASSWORD_TOO_LONG'] = '$MESSAGE[\'LOGIN_PASSWORD_TOO_LONG\']'; |
|
| 50 |
$MESSAGE['LOGIN']['AUTHENTICATION_FAILED'] = '$MESSAGE[\'LOGIN_AUTHENTICATION_FAILED\']'; |
|
| 51 |
$MESSAGE['SIGNUP']['NO_EMAIL'] = '$MESSAGE[\'SIGNUP_NO_EMAIL\']'; |
|
| 52 |
$MESSAGE['SIGNUP2']['SUBJECT_LOGIN_INFO'] = '$MESSAGE[\'SIGNUP2_SUBJECT_LOGIN_INFO\']'; |
|
| 53 |
$MESSAGE['SIGNUP2']['BODY_LOGIN_INFO'] = '$MESSAGE[\'SIGNUP2_BODY_LOGIN_INFO\']'; |
|
| 54 |
$MESSAGE['SIGNUP2']['BODY_LOGIN_FORGOT'] = '$MESSAGE[\'SIGNUP2_BODY_LOGIN_FORGOT\']'; |
|
| 55 |
$MESSAGE['FORGOT_PASS']['NO_DATA'] = '$MESSAGE[\'FORGOT_PASS_NO_DATA\']'; |
|
| 56 |
$MESSAGE['FORGOT_PASS']['EMAIL_NOT_FOUND'] = '$MESSAGE[\'FORGOT_PASS_EMAIL_NOT_FOUND\']'; |
|
| 57 |
$MESSAGE['FORGOT_PASS']['CANNOT_EMAIL'] = '$MESSAGE[\'FORGOT_PASS_CANNOT_EMAIL\']'; |
|
| 58 |
$MESSAGE['FORGOT_PASS']['PASSWORD_RESET'] = '$MESSAGE[\'FORGOT_PASS_PASSWORD_RESET\']'; |
|
| 59 |
$MESSAGE['FORGOT_PASS']['ALREADY_RESET'] = '$MESSAGE[\'FORGOT_PASS_ALREADY_RESET\']'; |
|
| 60 |
$MESSAGE['START']['WELCOME_MESSAGE'] = '$MESSAGE[\'START_WELCOME_MESSAGE\']'; |
|
| 61 |
$MESSAGE['START']['INSTALL_DIR_EXISTS'] = '$MESSAGE[\'START_INSTALL_DIR_EXISTS\']'; |
|
| 62 |
$MESSAGE['START']['CURRENT_USER'] = '$MESSAGE[\'START_CURRENT_USER\']'; |
|
| 63 |
$MESSAGE['SETTINGS']['UNABLE_OPEN_CONFIG'] = '$MESSAGE[\'SETTINGS_UNABLE_OPEN_CONFIG\']'; |
|
| 64 |
$MESSAGE['SETTINGS']['UNABLE_WRITE_CONFIG'] = '$MESSAGE[\'SETTINGS_UNABLE_WRITE_CONFIG\']'; |
|
| 65 |
$MESSAGE['SETTINGS']['SAVED'] = '$MESSAGE[\'SETTINGS_SAVED\']'; |
|
| 66 |
$MESSAGE['SETTINGS']['MODE_SWITCH_WARNING'] = '$MESSAGE[\'SETTINGS_MODE_SWITCH_WARNING\']'; |
|
| 67 |
$MESSAGE['SETTINGS']['WORLD_WRITEABLE_WARNING'] = '$MESSAGE[\'SETTINGS_WORLD_WRITEABLE_WARNING\']'; |
|
| 68 |
$MESSAGE['USERS']['ADDED'] = '$MESSAGE[\'USERS_ADDED\']'; |
|
| 69 |
$MESSAGE['USERS']['SAVED'] = '$MESSAGE[\'USERS_SAVED\']'; |
|
| 70 |
$MESSAGE['USERS']['DELETED'] = '$MESSAGE[\'USERS_DELETED\']'; |
|
| 71 |
$MESSAGE['USERS']['NO_GROUP'] = '$MESSAGE[\'USERS_NO_GROUP\']'; |
|
| 72 |
$MESSAGE['USERS']['USERNAME_TOO_SHORT'] = '$MESSAGE[\'USERS_USERNAME_TOO_SHORT\']'; |
|
| 73 |
$MESSAGE['USERS']['PASSWORD_TOO_SHORT'] = '$MESSAGE[\'USERS_PASSWORD_TOO_SHORT\']'; |
|
| 74 |
$MESSAGE['USERS']['PASSWORD_MISMATCH'] = '$MESSAGE[\'USERS_PASSWORD_MISMATCH\']'; |
|
| 75 |
$MESSAGE['USERS']['INVALID_EMAIL'] = '$MESSAGE[\'USERS_INVALID_EMAIL\']'; |
|
| 76 |
$MESSAGE['USERS']['EMAIL_TAKEN'] = '$MESSAGE[\'USERS_EMAIL_TAKEN\']'; |
|
| 77 |
$MESSAGE['USERS']['USERNAME_TAKEN'] = '$MESSAGE[\'USERS_USERNAME_TAKEN\']'; |
|
| 78 |
$MESSAGE['USERS']['CHANGING_PASSWORD'] = '$MESSAGE[\'USERS_CHANGING_PASSWORD\']'; |
|
| 79 |
$MESSAGE['USERS']['CONFIRM_DELETE'] = '$MESSAGE[\'USERS_CONFIRM_DELETE\']'; |
|
| 80 |
$MESSAGE['GROUPS']['ADDED'] = '$MESSAGE[\'GROUPS_ADDED\']'; |
|
| 81 |
$MESSAGE['GROUPS']['SAVED'] = '$MESSAGE[\'GROUPS_SAVED\']'; |
|
| 82 |
$MESSAGE['GROUPS']['DELETED'] = '$MESSAGE[\'GROUPS_DELETED\']'; |
|
| 83 |
$MESSAGE['GROUPS']['GROUP_NAME_BLANK'] = '$MESSAGE[\'GROUPS_GROUP_NAME_BLANK\']'; |
|
| 84 |
$MESSAGE['GROUPS']['CONFIRM_DELETE'] = '$MESSAGE[\'GROUPS_CONFIRM_DELETE\']'; |
|
| 85 |
$MESSAGE['GROUPS']['NO_GROUPS_FOUND'] = '$MESSAGE[\'GROUPS_NO_GROUPS_FOUND\']'; |
|
| 86 |
$MESSAGE['GROUPS']['GROUP_NAME_EXISTS'] = '$MESSAGE[\'GROUPS_GROUP_NAME_EXISTS\']'; |
|
| 87 |
$MESSAGE['PREFERENCES']['DETAILS_SAVED'] = '$MESSAGE[\'PREFERENCES_DETAILS_SAVED\']'; |
|
| 88 |
$MESSAGE['PREFERENCES']['EMAIL_UPDATED'] = '$MESSAGE[\'PREFERENCES_EMAIL_UPDATED\']'; |
|
| 89 |
$MESSAGE['PREFERENCES']['CURRENT_PASSWORD_INCORRECT'] = '$MESSAGE[\'PREFERENCES_CURRENT_PASSWORD_INCORRECT\']'; |
|
| 90 |
$MESSAGE['PREFERENCES']['PASSWORD_CHANGED'] = '$MESSAGE[\'PREFERENCES_PASSWORD_CHANGED\']'; |
|
| 91 |
$MESSAGE['PREFERENCES']['INVALID_CHARS'] = '$MESSAGE[\'PREFERENCES_INVALID_CHARS\']'; |
|
| 92 |
$MESSAGE['TEMPLATES']['CHANGE_TEMPLATE_NOTICE'] = '$MESSAGE[\'TEMPLATES_CHANGE_TEMPLATE_NOTICE\']'; |
|
| 93 |
$MESSAGE['MEDIA']['DIR_DOT_DOT_SLASH'] = '$MESSAGE[\'MEDIA_DIR_DOT_DOT_SLASH\']'; |
|
| 94 |
$MESSAGE['MEDIA']['DIR_DOES_NOT_EXIST'] = '$MESSAGE[\'MEDIA_DIR_DOES_NOT_EXIST\']'; |
|
| 95 |
$MESSAGE['MEDIA']['TARGET_DOT_DOT_SLASH'] = '$MESSAGE[\'EDIA_TARGET_DOT_DOT_SLASH\']'; |
|
| 96 |
$MESSAGE['MEDIA']['NAME_DOT_DOT_SLASH'] = '$MESSAGE[\'MEDIA_NAME_DOT_DOT_SLASH\']'; |
|
| 97 |
$MESSAGE['MEDIA']['NAME_INDEX_PHP'] = '$MESSAGE[\'MEDIA_NAME_INDEX_PHP\']'; |
|
| 98 |
$MESSAGE['MEDIA']['NONE_FOUND'] = '$MESSAGE[\'MEDIA_NONE_FOUND\']'; |
|
| 99 |
$MESSAGE['MEDIA']['FILE_NOT_FOUND'] = '$MESSAGE[\'MEDIA_FILE_NOT_FOUND\']'; |
|
| 100 |
$MESSAGE['MEDIA']['DELETED_FILE'] = '$MESSAGE[\'MEDIA_DELETED_FILE\']'; |
|
| 101 |
$MESSAGE['MEDIA']['DELETED_DIR'] = '$MESSAGE[\'MEDIA_DELETED_DIR\']'; |
|
| 102 |
$MESSAGE['MEDIA']['CONFIRM_DELETE'] = '$MESSAGE[\'MEDIA_CONFIRM_DELETE\']'; |
|
| 103 |
$MESSAGE['MEDIA']['CANNOT_DELETE_FILE'] = '$MESSAGE[\'MEDIA_CANNOT_DELETE_FILE\']'; |
|
| 104 |
$MESSAGE['MEDIA']['CANNOT_DELETE_DIR'] = '$MESSAGE[\'MEDIA_CANNOT_DELETE_DIR\']'; |
|
| 105 |
$MESSAGE['MEDIA']['BLANK_NAME'] = '$MESSAGE[\'MEDIA_BLANK_NAME\']'; |
|
| 106 |
$MESSAGE['MEDIA']['BLANK_EXTENSION'] = '$MESSAGE[\'MEDIA_BLANK_EXTENSION\']'; |
|
| 107 |
$MESSAGE['MEDIA']['RENAMED'] = '$MESSAGE[\'MEDIA_RENAMED\']'; |
|
| 108 |
$MESSAGE['MEDIA']['CANNOT_RENAME'] = '$MESSAGE[\'MEDIA_CANNOT_RENAME\']'; |
|
| 109 |
$MESSAGE['MEDIA']['FILE_EXISTS'] = '$MESSAGE[\'MEDIA_FILE_EXISTS\']'; |
|
| 110 |
$MESSAGE['MEDIA']['DIR_EXISTS'] = '$MESSAGE[\'MEDIA_DIR_EXISTS\']'; |
|
| 111 |
$MESSAGE['MEDIA']['DIR_MADE'] = '$MESSAGE[\'MEDIA_DIR_MADE\']'; |
|
| 112 |
$MESSAGE['MEDIA']['DIR_NOT_MADE'] = '$MESSAGE[\'MEDIA_DIR_NOT_MADE\']'; |
|
| 113 |
$MESSAGE['MEDIA']['SINGLE_UPLOADED'] = '$MESSAGE[\'MEDIA_SINGLE_UPLOADED\']'; |
|
| 114 |
$MESSAGE['MEDIA']['UPLOADED'] = '$MESSAGE[\'MEDIA_UPLOADED\']'; |
|
| 115 |
$MESSAGE['PAGES']['ADDED'] = '$MESSAGE[\'PAGES_ADDED\']'; |
|
| 116 |
$MESSAGE['PAGES']['ADDED_HEADING'] = '$MESSAGE[\'PAGES_ADDED_HEADING\']'; |
|
| 117 |
$MESSAGE['PAGES']['PAGE_EXISTS'] = '$MESSAGE[\'PAGES_PAGE_EXISTS\']'; |
|
| 118 |
$MESSAGE['PAGES']['CANNOT_CREATE_ACCESS_FILE'] = '$MESSAGE[\'PAGES_CANNOT_CREATE_ACCESS_FILE\']'; |
|
| 119 |
$MESSAGE['PAGES']['CANNOT_DELETE_ACCESS_FILE'] = '$MESSAGE[\'PAGES_CANNOT_DELETE_ACCESS_FILE\']'; |
|
| 120 |
$MESSAGE['PAGES']['NOT_FOUND'] = '$MESSAGE[\'PAGES_NOT_FOUND\']'; |
|
| 121 |
$MESSAGE['PAGES']['SAVED'] = '$MESSAGE[\'PAGES_SAVED\']'; |
|
| 122 |
$MESSAGE['PAGES']['SAVED_SETTINGS'] = '$MESSAGE[\'PAGES_SAVED_SETTINGS\']'; |
|
| 123 |
$MESSAGE['PAGES']['NOT_SAVED'] = '$MESSAGE[\'PAGES_NOT_SAVED\']'; |
|
| 124 |
$MESSAGE['PAGES']['DELETE_CONFIRM'] = '$MESSAGE[\'PAGES_DELETE_CONFIRM\']'; |
|
| 125 |
$MESSAGE['PAGES']['DELETED'] = '$MESSAGE[\'PAGES_DELETED\']'; |
|
| 126 |
$MESSAGE['PAGES']['RESTORED'] = '$MESSAGE[\'PAGES_RESTORED\']'; |
|
| 127 |
$MESSAGE['PAGES']['BLANK_PAGE_TITLE'] = '$MESSAGE[\'PAGES_BLANK_PAGE_TITLE\']'; |
|
| 128 |
$MESSAGE['PAGES']['BLANK_MENU_TITLE'] = '$MESSAGE[\'PAGES_BLANK_MENU_TITLE\']'; |
|
| 129 |
$MESSAGE['PAGES']['REORDERED'] = '$MESSAGE[\'PAGES_REORDERED\']'; |
|
| 130 |
$MESSAGE['PAGES']['CANNOT_REORDER'] = '$MESSAGE[\'PAGES_CANNOT_REORDER\']'; |
|
| 131 |
$MESSAGE['PAGES']['INSUFFICIENT_PERMISSIONS'] = '$MESSAGE[\'PAGES_INSUFFICIENT_PERMISSIONS\']'; |
|
| 132 |
$MESSAGE['PAGES']['INTRO_NOT_WRITABLE'] = '$MESSAGE[\'PAGES_INTRO_NOT_WRITABLE\']'; |
|
| 133 |
$MESSAGE['PAGES']['INTRO_SAVED'] = '$MESSAGE[\'PAGES_INTRO_SAVED\']'; |
|
| 134 |
$MESSAGE['PAGES']['LAST_MODIFIED'] = '$MESSAGE[\'PAGES_LAST_MODIFIED\']'; |
|
| 135 |
$MESSAGE['PAGES']['INTRO_LINK'] = '$MESSAGE[\'PAGES_INTRO_LINK\']'; |
|
| 136 |
$MESSAGE['PAGES']['SECTIONS_PROPERTIES_SAVED'] = '$MESSAGE[\'PAGES_SECTIONS_PROPERTIES_SAVED\']'; |
|
| 137 |
$MESSAGE['PAGES']['RETURN_TO_PAGES'] = '$MESSAGE[\'PAGES_RETURN_TO_PAGES\']'; |
|
| 138 |
$MESSAGE['GENERIC']['FILL_IN_ALL'] = '$MESSAGE[\'GENERIC_FILL_IN_ALL\']'; |
|
| 139 |
$MESSAGE['GENERIC']['FILE_TYPE'] = '$MESSAGE[\'GENERIC_FILE_TYPE\']'; |
|
| 140 |
$MESSAGE['GENERIC']['FILE_TYPES'] = '$MESSAGE[\'GENERIC_FILE_TYPES\']'; |
|
| 141 |
$MESSAGE['GENERIC']['CANNOT_UPLOAD'] = '$MESSAGE[\'GENERIC_CANNOT_UPLOAD\']'; |
|
| 142 |
$MESSAGE['GENERIC']['ALREADY_INSTALLED'] = '$MESSAGE[\'GENERIC_ALREADY_INSTALLED\']'; |
|
| 143 |
$MESSAGE['GENERIC']['NOT_INSTALLED'] = '$MESSAGE[\'GENERIC_NOT_INSTALLED\']'; |
|
| 144 |
$MESSAGE['GENERIC']['CANNOT_UNINSTALL'] = '$MESSAGE[\'GENERIC_CANNOT_UNINSTALL\']'; |
|
| 145 |
$MESSAGE['GENERIC']['CANNOT_UNZIP'] = '$MESSAGE[\'GENERIC_CANNOT_UNZIP\']'; |
|
| 146 |
$MESSAGE['GENERIC']['INSTALLED'] = '$MESSAGE[\'GENERIC_INSTALLED\']'; |
|
| 147 |
$MESSAGE['GENERIC']['UPGRADED'] = '$MESSAGE[\'GENERIC_UPGRADED\']'; |
|
| 148 |
$MESSAGE['GENERIC']['UNINSTALLED'] = '$MESSAGE[\'GENERIC_UNINSTALLED\']'; |
|
| 149 |
$MESSAGE['GENERIC']['BAD_PERMISSIONS'] = '$MESSAGE[\'GENERIC_BAD_PERMISSIONS\']'; |
|
| 150 |
$MESSAGE['GENERIC']['INVALID'] = '$MESSAGE[\'GENERIC_INVALID\']'; |
|
| 151 |
$MESSAGE['GENERIC']['CANNOT_UNINSTALL_IN_USE'] = '$MESSAGE[\'GENERIC_CANNOT_UNINSTALL_IN_USE\']'; |
|
| 152 |
$MESSAGE['GENERIC']['SECURITY_OFFENSE'] = '$MESSAGE[\'GENERIC_SECURITY_OFFENSE\']'; |
|
| 153 |
$MESSAGE['GENERIC']['CANNOT_UNINSTALL_IN_USE_TMPL'] = '$MESSAGE[\'GENERIC_CANNOT_UNINSTALL_IN_USE_TMPL\']'; |
|
| 154 |
$MESSAGE['GENERIC']['CANNOT_UNINSTALL_IN_USE_TMPL_PAGES'] = '$MESSAGE[\'GENERIC_CANNOT_UNINSTALL_IN_USE_TMPL_PAGES\']'; |
|
| 155 |
$MESSAGE['GENERIC']['CANNOT_UNINSTALL_IS_DEFAULT_TEMPLATE'] = '$MESSAGE[\'GENERIC_CANNOT_UNINSTALL_IS_DEFAULT_TEMPLATE\']'; |
|
| 156 |
$MESSAGE['GENERIC']['WEBSITE_UNDER_CONSTRUCTION'] = '$MESSAGE[\'GENERIC_WEBSITE_UNDER_CONSTRUCTION\']'; |
|
| 157 |
$MESSAGE['GENERIC']['PLEASE_CHECK_BACK_SOON'] = '$MESSAGE[\'GENERIC_PLEASE_CHECK_BACK_SOON\']'; |
|
| 158 |
$MESSAGE['GENERIC']['PLEASE_BE_PATIENT'] = '$MESSAGE[\'GENERIC_PLEASE_BE_PATIENT\']'; |
|
| 159 |
$MESSAGE['GENERIC']['ERROR_OPENING_FILE'] = '$MESSAGE[\'GENERIC_ERROR_OPENING_FILE\']'; |
|
| 160 |
$MESSAGE['GENERIC']['INVALID_ADDON_FILE'] = '$MESSAGE[\'GENERIC_INVALID_ADDON_FILE\']'; |
|
| 161 |
$MESSAGE['GENERIC']['INVALID_LANGUAGE_FILE'] = '$MESSAGE[\'GENERIC_INVALID_LANGUAGE_FILE\']'; |
|
| 162 |
$MESSAGE['MOD_FORM']['REQUIRED_FIELDS'] = '$MESSAGE[\'MOD_FORM_REQUIRED_FIELDS\']'; |
|
| 163 |
$MESSAGE['MOD_FORM']['EXCESS_SUBMISSIONS'] = '$MESSAGE[\'MOD_FORM_EXCESS_SUBMISSIONS\']'; |
|
| 164 |
$MESSAGE['MOD_FORM']['INCORRECT_CAPTCHA'] = '$MESSAGE[\'MOD_FORM_INCORRECT_CAPTCHA\']'; |
|
| 165 |
$MESSAGE['ADDON']['RELOAD'] = '$MESSAGE[\'ADDON_RELOAD\']'; |
|
| 166 |
$MESSAGE['ADDON']['ERROR_RELOAD'] = '$MESSAGE[\'ADDON_ERROR_RELOAD\']'; |
|
| 167 |
$MESSAGE['ADDON']['MODULES_RELOADED'] = '$MESSAGE[\'ADDON_MODULES_RELOADED\']'; |
|
| 168 |
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = '$MESSAGE[\'ADDON_TEMPLATES_RELOADED\']'; |
|
| 169 |
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = '$MESSAGE[\'ADDON_LANGUAGES_RELOADED\']'; |
|
| 170 |
$MESSAGE['ADDON']['PRECHECK_FAILED'] = '$MESSAGE[\'ADDON_PRECHECK_FAILED\']'; |
|
| 171 |
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = '$MESSAGE[\'ADDON_MANUAL_INSTALLATION\']'; |
|
| 172 |
$MESSAGE['ADDON']['MANUAL_INSTALLATION_WARNING'] = '$MESSAGE[\'ADDON_MANUAL_INSTALLATION_WARNING\']'; |
|
Also available in: Unified diff
some small corrections