Revision 928
Added by doc almost 16 years ago
trunk/CHANGELOG | ||
---|---|---|
11 | 11 |
! = Update/Change |
12 | 12 |
|
13 | 13 |
------------------------------------- 2.8.0 ------------------------------------- |
14 |
15-Feb-2009 Christian Sommer |
|
15 |
- removed reload admin tool |
|
16 |
+ added possibility to reload Add-ons via the Add-on section |
|
14 | 17 |
14-Feb-2009 Christian Sommer |
15 | 18 |
! added option to display current user name in backend template |
16 | 19 |
# fixed wrong redirect path and added SVN Id |
trunk/wb/admin/templates/reload.php | ||
---|---|---|
1 |
<?php |
|
2 |
/** |
|
3 |
* $Id:$ |
|
4 |
* Website Baker Add-On reload |
|
5 |
* |
|
6 |
* This file contains the function to update the template information from the |
|
7 |
* database with the ones stored in the template info.php files. |
|
8 |
* |
|
9 |
* LICENSE: GNU Lesser General Public License 3.0 |
|
10 |
* |
|
11 |
* @author Christian Sommer |
|
12 |
* @copyright (c) 2009 |
|
13 |
* @license http://www.gnu.org/copyleft/lesser.html |
|
14 |
* @version 0.1.0 |
|
15 |
* @platform Website Baker 2.7 |
|
16 |
* |
|
17 |
* Website Baker Project <http://www.websitebaker.org/> |
|
18 |
* Copyright (C) 2004-2009, Ryan Djurovich |
|
19 |
* |
|
20 |
* Website Baker is free software; you can redistribute it and/or modify |
|
21 |
* it under the terms of the GNU General Public License as published by |
|
22 |
* the Free Software Foundation; either version 2 of the License, or |
|
23 |
* (at your option) any later version. |
|
24 |
* |
|
25 |
* Website Baker is distributed in the hope that it will be useful, |
|
26 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
27 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
28 |
* GNU General Public License for more details. |
|
29 |
* |
|
30 |
* You should have received a copy of the GNU General Public License |
|
31 |
* along with Website Baker; if not, write to the Free Software |
|
32 |
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
33 |
*/ |
|
34 |
|
|
35 |
// include WB configuration file and WB admin class |
|
36 |
require_once('../../config.php'); |
|
37 |
require_once('../../framework/class.admin.php'); |
|
38 |
|
|
39 |
// check user permissions for admintools (redirect users with wrong permissions) |
|
40 |
$admin = new admin('Admintools', 'admintools', false, false); |
|
41 |
if ($admin->get_permission('admintools') == false) die(header('Location: ../../index.php')); |
|
42 |
|
|
43 |
// check if the referer URL if available |
|
44 |
$referer = isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : |
|
45 |
(isset($HTTP_SERVER_VARS['HTTP_REFERER']) ? $HTTP_SERVER_VARS['HTTP_REFERER'] : ''); |
|
46 |
|
|
47 |
// if referer is set, check if script was invoked from "admin/modules/index.php" |
|
48 |
$required_url = '/admin/templates/index.php'; |
|
49 |
if ($referer != '' && (!(strpos($referer, $required_url) !== false || strpos($referer, $required_url) !== false))) |
|
50 |
die(header('Location: ../../index.php')); |
|
51 |
|
|
52 |
// include WB functions file |
|
53 |
require_once(WB_PATH . '/framework/functions.php'); |
|
54 |
|
|
55 |
// load WB language file |
|
56 |
require_once(WB_PATH . '/languages/' . LANGUAGE .'.php'); |
|
57 |
|
|
58 |
// create Admin object with admin header |
|
59 |
$admin = new admin('Addons', '', true, false); |
|
60 |
$js_back = ADMIN_URL . '/templates/index.php'; |
|
61 |
|
|
62 |
// reload template information from template "info.php" files |
|
63 |
if ($handle = opendir(WB_PATH . '/templates/')) { |
|
64 |
// remove all templates from database |
|
65 |
$table = TABLE_PREFIX . 'addons'; |
|
66 |
$sql = "DELETE FROM $table WHERE `type` = 'template'"; |
|
67 |
$database->query($sql); |
|
68 |
|
|
69 |
// loop over all templates |
|
70 |
while(false !== ($file = readdir($handle))) { |
|
71 |
if($file != '' AND substr($file, 0, 1) != '.' AND $file != 'index.php') { |
|
72 |
load_template(WB_PATH . '/templates/' . $file); |
|
73 |
} |
|
74 |
} |
|
75 |
closedir($handle); |
|
76 |
// output success message |
|
77 |
$admin->print_success($MESSAGE['ADDON']['TEMPLATES_RELOADED'], $js_back); |
|
78 |
|
|
79 |
} else { |
|
80 |
// output error message |
|
81 |
$admin->print_error($MESSAGE['ADDON']['ERROR_RELOAD'], $js_back); |
|
82 |
} |
|
83 |
|
|
84 |
?> |
|
0 | 85 |
trunk/wb/admin/templates/index.php | ||
---|---|---|
54 | 54 |
if($admin->get_permission('templates_view') != true) { |
55 | 55 |
$template->set_var('DISPLAY_LIST', 'hide'); |
56 | 56 |
} |
57 |
if($admin->get_permission('admintools') != true) { |
|
58 |
$template->set_var('DISPLAY_RELOAD', 'hide'); |
|
59 |
} |
|
57 | 60 |
|
58 | 61 |
// Insert language headings |
59 | 62 |
$template->set_var(array( |
... | ... | |
64 | 67 |
); |
65 | 68 |
// Insert language text and messages |
66 | 69 |
$template->set_var(array( |
67 |
'TEXT_INSTALL' => $TEXT['INSTALL'], |
|
68 |
'TEXT_UNINSTALL' => $TEXT['UNINSTALL'], |
|
69 |
'TEXT_VIEW_DETAILS' => $TEXT['VIEW_DETAILS'], |
|
70 |
'TEXT_PLEASE_SELECT' => $TEXT['PLEASE_SELECT'], |
|
71 |
'CHANGE_TEMPLATE_NOTICE' => $MESSAGE['TEMPLATES']['CHANGE_TEMPLATE_NOTICE'] |
|
72 |
) |
|
73 |
); |
|
70 |
'URL_MODULES' => $admin->get_permission('modules') ? |
|
71 |
'<a href="' . ADMIN_URL . '/modules/index.php">' . $MENU['MODULES'] . '</a>' : '', |
|
72 |
'URL_LANGUAGES' => $admin->get_permission('languages') ? |
|
73 |
'<a href="' . ADMIN_URL . '/languages/index.php">' . $MENU['LANGUAGES'] . '</a>' : '', |
|
74 |
'TEXT_INSTALL' => $TEXT['INSTALL'], |
|
75 |
'TEXT_UNINSTALL' => $TEXT['UNINSTALL'], |
|
76 |
'TEXT_VIEW_DETAILS' => $TEXT['VIEW_DETAILS'], |
|
77 |
'TEXT_PLEASE_SELECT' => $TEXT['PLEASE_SELECT'], |
|
78 |
'CHANGE_TEMPLATE_NOTICE' => $MESSAGE['TEMPLATES']['CHANGE_TEMPLATE_NOTICE'], |
|
79 |
'TXT_ADMIN_SETTINGS' => $TEXT['ADMIN'] . '-' . $TEXT['SETTINGS'], |
|
80 |
'TEXT_RELOAD_ADDON' => $MESSAGE['ADDON']['RELOAD'], |
|
81 |
'TEXT_RELOAD' => $TEXT['RELOAD'] |
|
82 |
) |
|
83 |
); |
|
74 | 84 |
|
75 | 85 |
// Parse template object |
76 | 86 |
$template->parse('main', 'main_block', false); |
trunk/wb/admin/templates/template.html | ||
---|---|---|
1 | 1 |
<!-- BEGIN main_block --> |
2 | 2 |
|
3 |
<div class="box"> |
|
4 |
{URL_MODULES} {URL_LANGUAGES} |
|
5 |
</div> |
|
6 |
|
|
7 |
<br /> |
|
3 | 8 |
{CHANGE_TEMPLATE_NOTICE}<br /><br /> |
4 | 9 |
|
5 | 10 |
<form name="install" enctype="multipart/form-data" action="install.php" method="post" class="{DISPLAY_INSTALL}"> |
... | ... | |
68 | 73 |
</tr> |
69 | 74 |
</table> |
70 | 75 |
|
76 |
<br /> |
|
71 | 77 |
</form> |
72 | 78 |
|
79 |
<form name="details" action="reload.php" method="post" class="{DISPLAY_RELOAD}"> |
|
80 |
<hr style="margin-bottom: 1em; margin-top: 1em; border: 0.5px solid #DDD;" /> |
|
81 |
|
|
82 |
<h2>{TXT_ADMIN_SETTINGS}</h2> |
|
83 |
<p>{TEXT_RELOAD_ADDON}</p> |
|
84 |
<input type="submit" name="submit" value="{TEXT_RELOAD}" style="width: 100px;" /> |
|
85 |
|
|
86 |
<br /> |
|
87 |
</form> |
|
88 |
|
|
73 | 89 |
<!-- END main_block --> |
trunk/wb/admin/interface/stylesheet.css | ||
---|---|---|
94 | 94 |
|
95 | 95 |
input:focus, select:focus, textarea:focus { |
96 | 96 |
background: #F1F8FD; |
97 |
} |
|
98 |
|
|
99 |
div.box { |
|
100 |
font-size: small; |
|
101 |
width: 100%; |
|
102 |
text-align: right; |
|
103 |
margin: -10px 0 0 0; |
|
97 | 104 |
} |
trunk/wb/admin/interface/success.html | ||
---|---|---|
4 | 4 |
{MESSAGE} |
5 | 5 |
|
6 | 6 |
<script language="javascript" type="text/javascript"> |
7 |
setTimeout("location.href='{REDIRECT}'", 500); |
|
7 |
setTimeout("location.href='{REDIRECT}'", 1500);
|
|
8 | 8 |
</script> |
9 | 9 |
|
10 | 10 |
<noscript> |
trunk/wb/admin/languages/reload.php | ||
---|---|---|
1 |
<?php |
|
2 |
/** |
|
3 |
* $Id:$ |
|
4 |
* Website Baker Add-On reload |
|
5 |
* |
|
6 |
* This file contains the function to update the language information from the |
|
7 |
* database with the ones stored in the language info.php files. |
|
8 |
* |
|
9 |
* LICENSE: GNU Lesser General Public License 3.0 |
|
10 |
* |
|
11 |
* @author Christian Sommer |
|
12 |
* @copyright (c) 2009 |
|
13 |
* @license http://www.gnu.org/copyleft/lesser.html |
|
14 |
* @version 0.1.0 |
|
15 |
* @platform Website Baker 2.7 |
|
16 |
* |
|
17 |
* Website Baker Project <http://www.websitebaker.org/> |
|
18 |
* Copyright (C) 2004-2009, Ryan Djurovich |
|
19 |
* |
|
20 |
* Website Baker is free software; you can redistribute it and/or modify |
|
21 |
* it under the terms of the GNU General Public License as published by |
|
22 |
* the Free Software Foundation; either version 2 of the License, or |
|
23 |
* (at your option) any later version. |
|
24 |
* |
|
25 |
* Website Baker is distributed in the hope that it will be useful, |
|
26 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
27 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
28 |
* GNU General Public License for more details. |
|
29 |
* |
|
30 |
* You should have received a copy of the GNU General Public License |
|
31 |
* along with Website Baker; if not, write to the Free Software |
|
32 |
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
33 |
*/ |
|
34 |
|
|
35 |
// include WB configuration file and WB admin class |
|
36 |
require_once('../../config.php'); |
|
37 |
require_once('../../framework/class.admin.php'); |
|
38 |
|
|
39 |
// check user permissions for admintools (redirect users with wrong permissions) |
|
40 |
$admin = new admin('Admintools', 'admintools', false, false); |
|
41 |
if ($admin->get_permission('admintools') == false) die(header('Location: ../../index.php')); |
|
42 |
|
|
43 |
// check if the referer URL if available |
|
44 |
$referer = isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : |
|
45 |
(isset($HTTP_SERVER_VARS['HTTP_REFERER']) ? $HTTP_SERVER_VARS['HTTP_REFERER'] : ''); |
|
46 |
|
|
47 |
// if referer is set, check if script was invoked from "admin/modules/index.php" |
|
48 |
$required_url = '/admin/languages/index.php'; |
|
49 |
if ($referer != '' && (!(strpos($referer, $required_url) !== false || strpos($referer, $required_url) !== false))) |
|
50 |
die(header('Location: ../../index.php')); |
|
51 |
|
|
52 |
// include WB functions file |
|
53 |
require_once(WB_PATH . '/framework/functions.php'); |
|
54 |
|
|
55 |
// load WB language file |
|
56 |
require_once(WB_PATH . '/languages/' . LANGUAGE .'.php'); |
|
57 |
|
|
58 |
// create Admin object with admin header |
|
59 |
$admin = new admin('Addons', '', true, false); |
|
60 |
$js_back = ADMIN_URL . '/languages/index.php'; |
|
61 |
|
|
62 |
// reload template information from language "info.php" files |
|
63 |
if ($handle = opendir(WB_PATH . '/languages/')) { |
|
64 |
// remove all languages from database |
|
65 |
$table = TABLE_PREFIX . 'addons'; |
|
66 |
$sql = "DELETE FROM $table WHERE `type` = 'language'"; |
|
67 |
$database->query($sql); |
|
68 |
|
|
69 |
// loop over all languages |
|
70 |
while(false !== ($file = readdir($handle))) { |
|
71 |
if($file != '' && substr($file, 0, 1) != '.' && $file != 'index.php') { |
|
72 |
load_language(WB_PATH . '/languages/' . $file); |
|
73 |
} |
|
74 |
} |
|
75 |
closedir($handle); |
|
76 |
// output success message |
|
77 |
$admin->print_success($MESSAGE['ADDON']['LANGUAGES_RELOADED'], $js_back); |
|
78 |
|
|
79 |
} else { |
|
80 |
// output error message |
|
81 |
$admin->print_error($MESSAGE['ADDON']['ERROR_RELOAD'], $js_back); |
|
82 |
} |
|
83 |
|
|
84 |
?> |
|
0 | 85 |
trunk/wb/admin/languages/index.php | ||
---|---|---|
54 | 54 |
if($admin->get_permission('languages_view') != true) { |
55 | 55 |
$template->set_var('DISPLAY_LIST', 'hide'); |
56 | 56 |
} |
57 |
if($admin->get_permission('admintools') != true) { |
|
58 |
$template->set_var('DISPLAY_RELOAD', 'hide'); |
|
59 |
} |
|
57 | 60 |
|
58 | 61 |
// Insert language headings |
59 | 62 |
$template->set_var(array( |
... | ... | |
64 | 67 |
); |
65 | 68 |
// Insert language text and messages |
66 | 69 |
$template->set_var(array( |
67 |
'TEXT_INSTALL' => $TEXT['INSTALL'], |
|
68 |
'TEXT_UNINSTALL' => $TEXT['UNINSTALL'], |
|
69 |
'TEXT_VIEW_DETAILS' => $TEXT['VIEW_DETAILS'], |
|
70 |
'TEXT_PLEASE_SELECT' => $TEXT['PLEASE_SELECT'] |
|
71 |
) |
|
72 |
); |
|
70 |
'URL_MODULES' => $admin->get_permission('modules') ? |
|
71 |
'<a href="' . ADMIN_URL . '/modules/index.php">' . $MENU['MODULES'] . '</a>' : '', |
|
72 |
'URL_TEMPLATES' => $admin->get_permission('templates') ? |
|
73 |
'<a href="' . ADMIN_URL . '/templates/index.php">' . $MENU['TEMPLATES'] . '</a>' : '', |
|
74 |
'TEXT_INSTALL' => $TEXT['INSTALL'], |
|
75 |
'TEXT_UNINSTALL' => $TEXT['UNINSTALL'], |
|
76 |
'TEXT_VIEW_DETAILS' => $TEXT['VIEW_DETAILS'], |
|
77 |
'TEXT_PLEASE_SELECT' => $TEXT['PLEASE_SELECT'], |
|
78 |
'TXT_ADMIN_SETTINGS' => $TEXT['ADMIN'] . '-' . $TEXT['SETTINGS'], |
|
79 |
'TEXT_RELOAD_ADDON' => $MESSAGE['ADDON']['RELOAD'], |
|
80 |
'TEXT_RELOAD' => $TEXT['RELOAD'] |
|
81 |
) |
|
82 |
); |
|
73 | 83 |
|
74 | 84 |
// Parse template object |
75 | 85 |
$template->parse('main', 'main_block', false); |
trunk/wb/admin/languages/template.html | ||
---|---|---|
1 | 1 |
<!-- BEGIN main_block --> |
2 | 2 |
|
3 |
<div class="box"> |
|
4 |
{URL_MODULES} {URL_TEMPLATES} |
|
5 |
</div> |
|
6 |
|
|
3 | 7 |
<form name="install" enctype="multipart/form-data" action="install.php" method="post" class="{DISPLAY_INSTALL}"> |
4 | 8 |
|
5 | 9 |
<h2>{HEADING_INSTALL_LANGUAGE}</h2> |
... | ... | |
66 | 70 |
</tr> |
67 | 71 |
</table> |
68 | 72 |
|
73 |
<br /> |
|
69 | 74 |
</form> |
70 | 75 |
|
76 |
<form name="details" action="reload.php" method="post" class="{DISPLAY_RELOAD}"> |
|
77 |
<hr style="margin-bottom: 1em; margin-top: 1em; border: 0.5px solid #DDD;" /> |
|
78 |
|
|
79 |
<h2>{TXT_ADMIN_SETTINGS}</h2> |
|
80 |
<p>{TEXT_RELOAD_ADDON}</p> |
|
81 |
<input type="submit" name="submit" value="{TEXT_RELOAD}" style="width: 100px;" /> |
|
82 |
|
|
83 |
<br /> |
|
84 |
</form> |
|
85 |
|
|
71 | 86 |
<!-- END main_block --> |
trunk/wb/admin/modules/reload.php | ||
---|---|---|
1 |
<?php |
|
2 |
/** |
|
3 |
* $Id:$ |
|
4 |
* Website Baker Add-On reload |
|
5 |
* |
|
6 |
* This file contains the function to update the module information from the |
|
7 |
* database with the ones stored in the module info.php files. |
|
8 |
* |
|
9 |
* LICENSE: GNU Lesser General Public License 3.0 |
|
10 |
* |
|
11 |
* @author Christian Sommer |
|
12 |
* @copyright (c) 2009 |
|
13 |
* @license http://www.gnu.org/copyleft/lesser.html |
|
14 |
* @version 0.1.0 |
|
15 |
* @platform Website Baker 2.7 |
|
16 |
* |
|
17 |
* Website Baker Project <http://www.websitebaker.org/> |
|
18 |
* Copyright (C) 2004-2009, Ryan Djurovich |
|
19 |
* |
|
20 |
* Website Baker is free software; you can redistribute it and/or modify |
|
21 |
* it under the terms of the GNU General Public License as published by |
|
22 |
* the Free Software Foundation; either version 2 of the License, or |
|
23 |
* (at your option) any later version. |
|
24 |
* |
|
25 |
* Website Baker is distributed in the hope that it will be useful, |
|
26 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
27 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
28 |
* GNU General Public License for more details. |
|
29 |
* |
|
30 |
* You should have received a copy of the GNU General Public License |
|
31 |
* along with Website Baker; if not, write to the Free Software |
|
32 |
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
33 |
*/ |
|
34 |
|
|
35 |
// include WB configuration file and WB admin class |
|
36 |
require_once('../../config.php'); |
|
37 |
require_once('../../framework/class.admin.php'); |
|
38 |
|
|
39 |
// check user permissions for admintools (redirect users with wrong permissions) |
|
40 |
$admin = new admin('Admintools', 'admintools', false, false); |
|
41 |
if ($admin->get_permission('admintools') == false) die(header('Location: ../../index.php')); |
|
42 |
|
|
43 |
// check if the referer URL if available |
|
44 |
$referer = isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : |
|
45 |
(isset($HTTP_SERVER_VARS['HTTP_REFERER']) ? $HTTP_SERVER_VARS['HTTP_REFERER'] : ''); |
|
46 |
|
|
47 |
// if referer is set, check if script was invoked from "admin/modules/index.php" |
|
48 |
$required_url = '/admin/modules/index.php'; |
|
49 |
if ($referer != '' && (!(strpos($referer, $required_url) !== false || strpos($referer, $required_url) !== false))) |
|
50 |
die(header('Location: ../../index.php')); |
|
51 |
|
|
52 |
// include WB functions file |
|
53 |
require_once(WB_PATH . '/framework/functions.php'); |
|
54 |
|
|
55 |
// load WB language file |
|
56 |
require_once(WB_PATH . '/languages/' . LANGUAGE .'.php'); |
|
57 |
|
|
58 |
// create Admin object with admin header |
|
59 |
$admin = new admin('Addons', '', true, false); |
|
60 |
$js_back = ADMIN_URL . '/modules/index.php'; |
|
61 |
|
|
62 |
// reload module information from module "info.php" files |
|
63 |
if ($handle = opendir(WB_PATH . '/modules/')) { |
|
64 |
// remove all modules from database |
|
65 |
$table = TABLE_PREFIX . 'addons'; |
|
66 |
$sql = "DELETE FROM $table WHERE `type` = 'module'"; |
|
67 |
$database->query($sql); |
|
68 |
|
|
69 |
// loop over all modules |
|
70 |
while(false !== ($file = readdir($handle))) { |
|
71 |
if ($file != '' && substr($file, 0, 1) != '.' && $file != 'admin.php' && $file != 'index.php') { |
|
72 |
load_module(WB_PATH.'/modules/'.$file); |
|
73 |
} |
|
74 |
} |
|
75 |
closedir($handle); |
|
76 |
// output success message |
|
77 |
$admin->print_success($MESSAGE['ADDON']['MODULES_RELOADED'], $js_back); |
|
78 |
|
|
79 |
} else { |
|
80 |
// output error message |
|
81 |
$admin->print_error($MESSAGE['ADDON']['ERROR_RELOAD'], $js_back); |
|
82 |
} |
|
83 |
|
|
84 |
?> |
|
0 | 85 |
trunk/wb/admin/modules/index.php | ||
---|---|---|
54 | 54 |
if($admin->get_permission('modules_view') != true) { |
55 | 55 |
$template->set_var('DISPLAY_LIST', 'hide'); |
56 | 56 |
} |
57 |
if($admin->get_permission('admintools') != true) { |
|
58 |
$template->set_var('DISPLAY_RELOAD', 'hide'); |
|
59 |
} |
|
57 | 60 |
|
58 | 61 |
// Insert language headings |
59 | 62 |
$template->set_var(array( |
... | ... | |
64 | 67 |
); |
65 | 68 |
// Insert language text and messages |
66 | 69 |
$template->set_var(array( |
67 |
'TEXT_INSTALL' => $TEXT['INSTALL'], |
|
68 |
'TEXT_UNINSTALL' => $TEXT['UNINSTALL'], |
|
69 |
'TEXT_VIEW_DETAILS' => $TEXT['VIEW_DETAILS'], |
|
70 |
'TEXT_PLEASE_SELECT' => $TEXT['PLEASE_SELECT'] |
|
71 |
) |
|
72 |
); |
|
70 |
'URL_TEMPLATES' => $admin->get_permission('templates') ? |
|
71 |
'<a href="' . ADMIN_URL . '/templates/index.php">' . $MENU['TEMPLATES'] . '</a>' : '', |
|
72 |
'URL_LANGUAGES' => $admin->get_permission('languages') ? |
|
73 |
'<a href="' . ADMIN_URL . '/languages/index.php">' . $MENU['LANGUAGES'] . '</a>' : '', |
|
74 |
'TEXT_INSTALL' => $TEXT['INSTALL'], |
|
75 |
'TEXT_UNINSTALL' => $TEXT['UNINSTALL'], |
|
76 |
'TEXT_VIEW_DETAILS' => $TEXT['VIEW_DETAILS'], |
|
77 |
'TEXT_PLEASE_SELECT' => $TEXT['PLEASE_SELECT'], |
|
78 |
'TXT_ADMIN_SETTINGS' => $TEXT['ADMIN'] . '-' . $TEXT['SETTINGS'], |
|
79 |
'TEXT_RELOAD_ADDON' => $MESSAGE['ADDON']['RELOAD'], |
|
80 |
'TEXT_RELOAD' => $TEXT['RELOAD'] |
|
81 |
) |
|
82 |
); |
|
73 | 83 |
|
74 | 84 |
// Parse template object |
75 | 85 |
$template->parse('main', 'main_block', false); |
trunk/wb/admin/modules/template.html | ||
---|---|---|
1 | 1 |
<!-- BEGIN main_block --> |
2 | 2 |
|
3 |
<div class="box"> |
|
4 |
{URL_TEMPLATES} {URL_LANGUAGES} |
|
5 |
</div> |
|
6 |
|
|
3 | 7 |
<form name="install" enctype="multipart/form-data" action="install.php" method="post" class="{DISPLAY_INSTALL}"> |
4 | 8 |
|
5 | 9 |
<h2>{HEADING_INSTALL_MODULE}</h2> |
... | ... | |
66 | 70 |
</tr> |
67 | 71 |
</table> |
68 | 72 |
|
73 |
<br /> |
|
69 | 74 |
</form> |
70 | 75 |
|
76 |
<form name="details" action="reload.php" method="post" class="{DISPLAY_RELOAD}"> |
|
77 |
<hr style="margin-bottom: 1em; margin-top: 1em; border: 0.5px solid #DDD;" /> |
|
78 |
|
|
79 |
<h2>{TXT_ADMIN_SETTINGS}</h2> |
|
80 |
<p>{TEXT_RELOAD_ADDON}</p> |
|
81 |
<input type="submit" name="submit" value="{TEXT_RELOAD}" style="width: 100px;" /> |
|
82 |
|
|
83 |
<br /> |
|
84 |
</form> |
|
85 |
|
|
71 | 86 |
<!-- END main_block --> |
trunk/wb/framework/addon.precheck.inc.php | ||
---|---|---|
12 | 12 |
* @author Christian Sommer |
13 | 13 |
* @copyright (c) 2009 |
14 | 14 |
* @license http://www.gnu.org/copyleft/lesser.html |
15 |
* @version 0.2.2
|
|
15 |
* @version 0.2.3
|
|
16 | 16 |
* @platform Website Baker 2.7 |
17 | 17 |
* |
18 | 18 |
* Website Baker Project <http://www.websitebaker.org/> |
... | ... | |
271 | 271 |
// output summary table with requirements not fullfilled |
272 | 272 |
echo <<< EOT |
273 | 273 |
<h2>{$HEADING['ADDON_PRECHECK_FAILED']}</h2> |
274 |
<p>{$MESSAGE['ADDON_PRECHECK']['FAILED']}</p>
|
|
274 |
<p>{$MESSAGE['ADDON']['PRECHECK_FAILED']}</p>
|
|
275 | 275 |
|
276 | 276 |
<table width="700px" cellpadding="4" border="0" style="margin: 0.5em; border-collapse: collapse; border: 1px solid silver;"> |
277 | 277 |
<tr> |
trunk/wb/languages/FI.php | ||
---|---|---|
585 | 585 |
$MESSAGE['MOD_FORM']['EXCESS_SUBMISSIONS'] = 'Rajoitus voimassa, yritä tunnin kuluttua uudelleen'; |
586 | 586 |
$MESSAGE['MOD_FORM']['INCORRECT_CAPTCHA'] = 'Tarkistusluku (Captcha) virheellinen '; |
587 | 587 |
|
588 |
$MESSAGE['MOD_RELOAD']['PLEASE_SELECT'] = 'Valitse uudelleen ladattavat...'; |
|
589 |
$MESSAGE['MOD_RELOAD']['MODULES_RELOADED'] = 'Moduulin lataus onnistui'; |
|
590 |
$MESSAGE['MOD_RELOAD']['TEMPLATES_RELOADED'] = 'Sivupohjan lataus onnistui'; |
|
591 |
$MESSAGE['MOD_RELOAD']['LANGUAGES_RELOADED'] = 'Kielen lataus onnistui'; |
|
588 |
$MESSAGE['ADDON']['RELOAD'] = 'The button below updates the information in the database with the data stored in the Add-On "info.php" files. This may be required if you have uploaded Addons via FTP.'; |
|
589 |
$MESSAGE['ADDON']['ERROR_RELOAD'] = 'Error while updating the Add-On information.'; |
|
590 |
$MESSAGE['ADDON']['MODULES_RELOADED'] = 'Moduulin lataus onnistui'; |
|
591 |
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'Sivupohjan lataus onnistui'; |
|
592 |
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Kielen lataus onnistui'; |
|
593 |
$MESSAGE['ADDON']['PRECHECK_FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.'; |
|
592 | 594 |
|
593 |
$MESSAGE['ADDON_PRECHECK']['FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.'; |
|
594 |
|
|
595 | 595 |
?> |
trunk/wb/languages/EN.php | ||
---|---|---|
585 | 585 |
$MESSAGE['MOD_FORM']['EXCESS_SUBMISSIONS'] = 'Sorry, this form has been submitted too many times so far this hour. Please retry in the next hour.'; |
586 | 586 |
$MESSAGE['MOD_FORM']['INCORRECT_CAPTCHA'] = 'The verification number (also known as Captcha) that you entered is incorrect. If you are having problems reading the Captcha, please email: '.SERVER_EMAIL.''; |
587 | 587 |
|
588 |
$MESSAGE['MOD_RELOAD']['PLEASE_SELECT'] = 'Please selected which add-ons you would like to have reloaded'; |
|
589 |
$MESSAGE['MOD_RELOAD']['MODULES_RELOADED'] = 'Modules reloaded successfully'; |
|
590 |
$MESSAGE['MOD_RELOAD']['TEMPLATES_RELOADED'] = 'Templates reloaded successfully'; |
|
591 |
$MESSAGE['MOD_RELOAD']['LANGUAGES_RELOADED'] = 'Languages reloaded successfully'; |
|
588 |
$MESSAGE['ADDON']['RELOAD'] = 'The button below updates the information in the database with the data stored in the Add-On "info.php" files. This may be required if you have uploaded Addons via FTP.'; |
|
589 |
$MESSAGE['ADDON']['ERROR_RELOAD'] = 'Error while updating the Add-On information.'; |
|
590 |
$MESSAGE['ADDON']['MODULES_RELOADED'] = 'Modules reloaded successfully'; |
|
591 |
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'Templates reloaded successfully'; |
|
592 |
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Languages reloaded successfully'; |
|
593 |
$MESSAGE['ADDON']['PRECHECK_FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.'; |
|
592 | 594 |
|
593 |
$MESSAGE['ADDON_PRECHECK']['FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.'; |
|
594 |
|
|
595 | 595 |
?> |
trunk/wb/languages/CS.php | ||
---|---|---|
585 | 585 |
$MESSAGE['MOD_FORM']['EXCESS_SUBMISSIONS'] = 'Omlouváme se, ale tento formulář dosáhl limitu povolených odeslání pro tuto hodinu. Prosím zkuste to znovu v další hodině..'; |
586 | 586 |
$MESSAGE['MOD_FORM']['INCORRECT_CAPTCHA'] = 'Kontrolní kód (známý jako Captcha) neodpovídá. Pokud máte problémy s přečtením tohoto kódu, kontaktujte '.SERVER_EMAIL.''; |
587 | 587 |
|
588 |
$MESSAGE['MOD_RELOAD']['PLEASE_SELECT'] = 'Vyberte která rozšíření si přejete přehrát'; |
|
589 |
$MESSAGE['MOD_RELOAD']['MODULES_RELOADED'] = 'Moduly byly úspěšně přehrány'; |
|
590 |
$MESSAGE['MOD_RELOAD']['TEMPLATES_RELOADED'] = 'Šablony byly úspěšně přehrány'; |
|
591 |
$MESSAGE['MOD_RELOAD']['LANGUAGES_RELOADED'] = 'Jazyky byly úspěšně přehrány'; |
|
588 |
$MESSAGE['ADDON']['RELOAD'] = 'The button below updates the information in the database with the data stored in the Add-On "info.php" files. This may be required if you have uploaded Addons via FTP.'; |
|
589 |
$MESSAGE['ADDON']['ERROR_RELOAD'] = 'Error while updating the Add-On information.'; |
|
590 |
$MESSAGE['ADDON']['MODULES_RELOADED'] = 'Moduly byly úspěšně přehrány'; |
|
591 |
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'Šablony byly úspěšně přehrány'; |
|
592 |
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Jazyky byly úspěšně přehrány'; |
|
593 |
$MESSAGE['ADDON']['PRECHECK_FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.'; |
|
592 | 594 |
|
593 |
$MESSAGE['ADDON_PRECHECK']['FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.'; |
|
594 |
|
|
595 | 595 |
?> |
trunk/wb/languages/SE.php | ||
---|---|---|
585 | 585 |
$MESSAGE['MOD_FORM']['EXCESS_SUBMISSIONS'] = 'Tyvärr, detta formulär har skickats för många gånger inom denna timme. Försök igen om ett tag.'; |
586 | 586 |
$MESSAGE['MOD_FORM']['INCORRECT_CAPTCHA'] = 'Verifieringsnumret (också känt som Captcha) som du angav är felaktigt. Om du har problem med att läsa ut Captcha, vänligen sänd email till: '.SERVER_EMAIL.''; |
587 | 587 |
|
588 |
$MESSAGE['MOD_RELOAD']['PLEASE_SELECT'] = 'Vänligen välj vilka tillägg du vill ladda om'; |
|
589 |
$MESSAGE['MOD_RELOAD']['MODULES_RELOADED'] = 'Moduler laddades om'; |
|
590 |
$MESSAGE['MOD_RELOAD']['TEMPLATES_RELOADED'] = 'Mallar laddades om'; |
|
591 |
$MESSAGE['MOD_RELOAD']['LANGUAGES_RELOADED'] = 'Språk laddades om'; |
|
588 |
$MESSAGE['ADDON']['RELOAD'] = 'The button below updates the information in the database with the data stored in the Add-On "info.php" files. This may be required if you have uploaded Addons via FTP.'; |
|
589 |
$MESSAGE['ADDON']['ERROR_RELOAD'] = 'Error while updating the Add-On information.'; |
|
590 |
$MESSAGE['ADDON']['MODULES_RELOADED'] = 'Moduler laddades om'; |
|
591 |
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'Mallar laddades om'; |
|
592 |
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Språk laddades om'; |
|
593 |
$MESSAGE['ADDON']['PRECHECK_FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.'; |
|
592 | 594 |
|
593 |
$MESSAGE['ADDON_PRECHECK']['FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.'; |
|
594 |
|
|
595 | 595 |
?> |
trunk/wb/languages/ES.php | ||
---|---|---|
585 | 585 |
$MESSAGE['MOD_FORM']['EXCESS_SUBMISSIONS'] = 'Disculpe este formulario ha sido enviado demasiadas veces seguidas. Vuelva a intentarlo en una hora.'; |
586 | 586 |
$MESSAGE['MOD_FORM']['INCORRECT_CAPTCHA'] = 'El número de verificación que ha introducido es incorrecto. Si estás teniendo problemas leyéndolo, por favor, envíe un e-mail a: '.SERVER_EMAIL.''; |
587 | 587 |
|
588 |
$MESSAGE['MOD_RELOAD']['PLEASE_SELECT'] = 'Por favor, seleccione qué add-on quiere que se recargue'; |
|
589 |
$MESSAGE['MOD_RELOAD']['MODULES_RELOADED'] = 'Módulos recargados correctamente'; |
|
590 |
$MESSAGE['MOD_RELOAD']['TEMPLATES_RELOADED'] = 'Plantillas recargadas correctamente'; |
|
591 |
$MESSAGE['MOD_RELOAD']['LANGUAGES_RELOADED'] = 'Lenguajes recargados correctamente'; |
|
588 |
$MESSAGE['ADDON']['RELOAD'] = 'The button below updates the information in the database with the data stored in the Add-On "info.php" files. This may be required if you have uploaded Addons via FTP.'; |
|
589 |
$MESSAGE['ADDON']['ERROR_RELOAD'] = 'Error while updating the Add-On information.'; |
|
590 |
$MESSAGE['ADDON']['MODULES_RELOADED'] = 'Módulos recargados correctamente'; |
|
591 |
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'Plantillas recargadas correctamente'; |
|
592 |
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Lenguajes recargados correctamente'; |
|
593 |
$MESSAGE['ADDON']['PRECHECK_FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.'; |
|
592 | 594 |
|
593 |
$MESSAGE['ADDON_PRECHECK']['FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.'; |
|
594 |
|
|
595 | 595 |
?> |
trunk/wb/languages/FR.php | ||
---|---|---|
585 | 585 |
$MESSAGE['MOD_FORM']['EXCESS_SUBMISSIONS'] = 'Désolé mais vous avez utilisé ce formulaire trop de fois durant cette heure. Merci de réessayer à l\'heure suivante'; |
586 | 586 |
$MESSAGE['MOD_FORM']['INCORRECT_CAPTCHA'] = 'Le numéro de vérification (Captcha) que vous avez entré est incorrect. Si vous rencontrez des problèmes quant à la lecture de ce numéro, merci d\'envoyer un email à : '.SERVER_EMAIL.''; |
587 | 587 |
|
588 |
$MESSAGE['MOD_RELOAD']['PLEASE_SELECT'] = 'Sélectionnez les ADD-ON que vous souhaitez réinstaller'; |
|
589 |
$MESSAGE['MOD_RELOAD']['MODULES_RELOADED'] = 'Modules réinstallés avec succès'; |
|
590 |
$MESSAGE['MOD_RELOAD']['TEMPLATES_RELOADED'] = 'Modèles réinstallés avec succès'; |
|
591 |
$MESSAGE['MOD_RELOAD']['LANGUAGES_RELOADED'] = 'Langages réinstallés avec succès'; |
|
588 |
$MESSAGE['ADDON']['RELOAD'] = 'The button below updates the information in the database with the data stored in the Add-On "info.php" files. This may be required if you have uploaded Addons via FTP.'; |
|
589 |
$MESSAGE['ADDON']['ERROR_RELOAD'] = 'Error while updating the Add-On information.'; |
|
590 |
$MESSAGE['ADDON']['MODULES_RELOADED'] = 'Modules réinstallés avec succès'; |
|
591 |
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'Modèles réinstallés avec succès'; |
|
592 |
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Langages réinstallés avec succès'; |
|
593 |
$MESSAGE['ADDON']['PRECHECK_FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.'; |
|
592 | 594 |
|
593 |
$MESSAGE['ADDON_PRECHECK']['FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.'; |
|
594 |
|
|
595 | 595 |
?> |
trunk/wb/languages/ET.php | ||
---|---|---|
585 | 585 |
$MESSAGE['MOD_FORM']['EXCESS_SUBMISSIONS'] = 'Vabandame, see vorm on juba liiga palju kordi selle tunni jooksul saadetud. Palun proovi järgmine tund uuesti.'; |
586 | 586 |
$MESSAGE['MOD_FORM']['INCORRECT_CAPTCHA'] = 'The verification number (also known as Captcha) that you entered is incorrect. If you are having problems reading the Captcha, please email: '.SERVER_EMAIL.''; |
587 | 587 |
|
588 |
$MESSAGE['MOD_RELOAD']['PLEASE_SELECT'] = 'Please selected which add-ons you would like to have reloaded'; |
|
589 |
$MESSAGE['MOD_RELOAD']['MODULES_RELOADED'] = 'Modules reloaded successfully'; |
|
590 |
$MESSAGE['MOD_RELOAD']['TEMPLATES_RELOADED'] = 'Templates reloaded successfully'; |
|
591 |
$MESSAGE['MOD_RELOAD']['LANGUAGES_RELOADED'] = 'Languages reloaded successfully'; |
|
588 |
$MESSAGE['ADDON']['RELOAD'] = 'The button below updates the information in the database with the data stored in the Add-On "info.php" files. This may be required if you have uploaded Addons via FTP.'; |
|
589 |
$MESSAGE['ADDON']['ERROR_RELOAD'] = 'Error while updating the Add-On information.'; |
|
590 |
$MESSAGE['ADDON']['MODULES_RELOADED'] = 'Modules reloaded successfully'; |
|
591 |
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'Templates reloaded successfully'; |
|
592 |
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Languages reloaded successfully'; |
|
593 |
$MESSAGE['ADDON']['PRECHECK_FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.'; |
|
592 | 594 |
|
593 |
$MESSAGE['ADDON_PRECHECK']['FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.'; |
|
594 |
|
|
595 | 595 |
?> |
trunk/wb/languages/HR.php | ||
---|---|---|
585 | 585 |
$MESSAGE['MOD_FORM']['EXCESS_SUBMISSIONS'] = 'Ova forma je pregledavana previše puta u jednom satu. Molimo pokušajte slijedeæi sat.'; |
586 | 586 |
$MESSAGE['MOD_FORM']['INCORRECT_CAPTCHA'] = 'Broj provjere (poznat kao Captcha) netoèno je unešen. Ako imate problema s èitanjem Captcha, molimo pošaljite email: '.SERVER_EMAIL.''; |
587 | 587 |
|
588 |
$MESSAGE['MOD_RELOAD']['PLEASE_SELECT'] = 'Molimo odaberite koje dodatke želite ponovo nasnimiti'; |
|
589 |
$MESSAGE['MOD_RELOAD']['MODULES_RELOADED'] = 'Uspješno nasnimljeni moduli'; |
|
590 |
$MESSAGE['MOD_RELOAD']['TEMPLATES_RELOADED'] = 'Uspješno nasnimljeni predlošci'; |
|
591 |
$MESSAGE['MOD_RELOAD']['LANGUAGES_RELOADED'] = 'Uspješno nasnimljeni jezici'; |
|
588 |
$MESSAGE['ADDON']['RELOAD'] = 'The button below updates the information in the database with the data stored in the Add-On "info.php" files. This may be required if you have uploaded Addons via FTP.'; |
|
589 |
$MESSAGE['ADDON']['ERROR_RELOAD'] = 'Error while updating the Add-On information.'; |
|
590 |
$MESSAGE['ADDON']['MODULES_RELOADED'] = 'Uspješno nasnimljeni moduli'; |
|
591 |
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'Uspješno nasnimljeni predlošci'; |
|
592 |
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Uspješno nasnimljeni jezici'; |
|
593 |
$MESSAGE['ADDON']['PRECHECK_FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.'; |
|
592 | 594 |
|
593 |
$MESSAGE['ADDON_PRECHECK']['FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.'; |
|
594 |
|
|
595 | 595 |
?> |
trunk/wb/languages/NL.php | ||
---|---|---|
585 | 585 |
$MESSAGE['MOD_FORM']['EXCESS_SUBMISSIONS'] = 'Sorry, dit formulier is te vaak verstuurd binnen dit uur. Probeert u het over een uur nog eens.'; |
586 | 586 |
$MESSAGE['MOD_FORM']['INCORRECT_CAPTCHA'] = 'Het verificatienummer (ook wel Captcha genoemd) dat u hebt ingevoerd is incorrect. Als u de Captcha niet goed kunt lezen, stuur dan een e-mail naar: '.SERVER_EMAIL.''; |
587 | 587 |
|
588 |
$MESSAGE['MOD_RELOAD']['PLEASE_SELECT'] = 'Selecteer de extra’s die u opnieuw wilt laden'; |
|
589 |
$MESSAGE['MOD_RELOAD']['MODULES_RELOADED'] = 'Modules succesvol herladen'; |
|
590 |
$MESSAGE['MOD_RELOAD']['TEMPLATES_RELOADED'] = 'Templates succesvol herladen'; |
|
591 |
$MESSAGE['MOD_RELOAD']['LANGUAGES_RELOADED'] = 'Taalbestanden succesvol herladen'; |
|
588 |
$MESSAGE['ADDON']['RELOAD'] = 'The button below updates the information in the database with the data stored in the Add-On "info.php" files. This may be required if you have uploaded Addons via FTP.'; |
|
589 |
$MESSAGE['ADDON']['ERROR_RELOAD'] = 'Error while updating the Add-On information.'; |
|
590 |
$MESSAGE['ADDON']['MODULES_RELOADED'] = 'Modules succesvol herladen'; |
|
591 |
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'Templates succesvol herladen'; |
|
592 |
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Taalbestanden succesvol herladen'; |
|
593 |
$MESSAGE['ADDON']['PRECHECK_FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.'; |
|
592 | 594 |
|
593 |
$MESSAGE['ADDON_PRECHECK']['FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.'; |
|
594 |
|
|
595 | 595 |
?> |
trunk/wb/languages/PL.php | ||
---|---|---|
585 | 585 |
$MESSAGE['MOD_FORM']['EXCESS_SUBMISSIONS'] = 'Niestety, ten formularz został wysłany zbyt wiele razy w ciągu tej godziny. Prosimy spróbować ponownie za godzinę.'; |
586 | 586 |
$MESSAGE['MOD_FORM']['INCORRECT_CAPTCHA'] = 'Wprowadzony numer weryfikacyjny (tzw. Captcha) jest nieprawidłowy. Jeśli masz problemy z odczytaniem Captcha, napisz do: '.SERVER_EMAIL.''; |
587 | 587 |
|
588 |
$MESSAGE['MOD_RELOAD']['PLEASE_SELECT'] = 'Proszę wskazać, które dodatki mają zostać załadowane ponownie'; |
|
589 |
$MESSAGE['MOD_RELOAD']['MODULES_RELOADED'] = 'Moduły zostały załadowane ponownie'; |
|
590 |
$MESSAGE['MOD_RELOAD']['TEMPLATES_RELOADED'] = 'Szablony zostały załadowane ponownie'; |
|
591 |
$MESSAGE['MOD_RELOAD']['LANGUAGES_RELOADED'] = 'Języki zostały załadowane ponownie'; |
|
588 |
$MESSAGE['ADDON']['RELOAD'] = 'The button below updates the information in the database with the data stored in the Add-On "info.php" files. This may be required if you have uploaded Addons via FTP.'; |
|
589 |
$MESSAGE['ADDON']['ERROR_RELOAD'] = 'Error while updating the Add-On information.'; |
|
590 |
$MESSAGE['ADDON']['MODULES_RELOADED'] = 'Moduły zostały załadowane ponownie'; |
|
591 |
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'Szablony zostały załadowane ponownie'; |
|
592 |
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Języki zostały załadowane ponownie'; |
|
593 |
$MESSAGE['ADDON']['PRECHECK_FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.'; |
|
592 | 594 |
|
593 |
$MESSAGE['ADDON_PRECHECK']['FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.'; |
|
594 |
|
|
595 | 595 |
?> |
trunk/wb/languages/HU.php | ||
---|---|---|
585 | 585 |
$MESSAGE['MOD_FORM']['EXCESS_SUBMISSIONS'] = 'Sajnáljuk, de ez az ûrlap túl sokszor lett kitöltve egy óran belül! Kérem próbálja meg egy óra múlva.'; |
586 | 586 |
$MESSAGE['MOD_FORM']['INCORRECT_CAPTCHA'] = 'The verification number (also known as Captcha) that you entered is incorrect. If you are having problems reading the Captcha, please email: '.SERVER_EMAIL.''; |
587 | 587 |
|
588 |
$MESSAGE['MOD_RELOAD']['PLEASE_SELECT'] = 'Please selected which add-ons you would like to have reloaded'; |
|
589 |
$MESSAGE['MOD_RELOAD']['MODULES_RELOADED'] = 'Modules reloaded successfully'; |
|
590 |
$MESSAGE['MOD_RELOAD']['TEMPLATES_RELOADED'] = 'Templates reloaded successfully'; |
|
591 |
$MESSAGE['MOD_RELOAD']['LANGUAGES_RELOADED'] = 'Languages reloaded successfully'; |
|
588 |
$MESSAGE['ADDON']['RELOAD'] = 'The button below updates the information in the database with the data stored in the Add-On "info.php" files. This may be required if you have uploaded Addons via FTP.'; |
|
589 |
$MESSAGE['ADDON']['ERROR_RELOAD'] = 'Error while updating the Add-On information.'; |
|
590 |
$MESSAGE['ADDON']['MODULES_RELOADED'] = 'Modules reloaded successfully'; |
|
591 |
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'Templates reloaded successfully'; |
|
592 |
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Languages reloaded successfully'; |
|
593 |
$MESSAGE['ADDON']['PRECHECK_FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.'; |
|
592 | 594 |
|
593 |
$MESSAGE['ADDON_PRECHECK']['FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.'; |
|
594 |
|
|
595 | 595 |
?> |
trunk/wb/languages/IT.php | ||
---|---|---|
585 | 585 |
$MESSAGE['MOD_FORM']['EXCESS_SUBMISSIONS'] = 'Spiacente: hai compilato questa form troppe volte nell\'ultima ora.'; |
586 | 586 |
$MESSAGE['MOD_FORM']['INCORRECT_CAPTCHA'] = 'Il numero di controllo (chiama Captcha) che hai inserito non è valido. Se hai problemi con la lettura del Captcha, invia un email email: '.SERVER_EMAIL.''; |
587 | 587 |
|
588 |
$MESSAGE['MOD_RELOAD']['PLEASE_SELECT'] = 'Seleziona gli add-ons che desideri ricaricare'; |
|
589 |
$MESSAGE['MOD_RELOAD']['MODULES_RELOADED'] = 'Moduli ricaricati con successo'; |
|
590 |
$MESSAGE['MOD_RELOAD']['TEMPLATES_RELOADED'] = 'Templates ricaricati con successo'; |
|
591 |
$MESSAGE['MOD_RELOAD']['LANGUAGES_RELOADED'] = 'Lingue ricaricate con successo'; |
|
588 |
$MESSAGE['ADDON']['RELOAD'] = 'The button below updates the information in the database with the data stored in the Add-On "info.php" files. This may be required if you have uploaded Addons via FTP.'; |
|
589 |
$MESSAGE['ADDON']['ERROR_RELOAD'] = 'Error while updating the Add-On information.'; |
|
590 |
$MESSAGE['ADDON']['MODULES_RELOADED'] = 'Moduli ricaricati con successo'; |
|
591 |
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'Templates ricaricati con successo'; |
|
592 |
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Lingue ricaricate con successo'; |
|
593 |
$MESSAGE['ADDON']['PRECHECK_FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.'; |
|
592 | 594 |
|
593 |
$MESSAGE['ADDON_PRECHECK']['FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.'; |
|
594 |
|
|
595 | 595 |
?> |
trunk/wb/languages/NO.php | ||
---|---|---|
585 | 585 |
$MESSAGE['MOD_FORM']['EXCESS_SUBMISSIONS'] = 'Beklager, denne form har blitt sendt for mange ganger denne timen. Vennligst prøv igjen neste time.'; |
586 | 586 |
$MESSAGE['MOD_FORM']['INCORRECT_CAPTCHA'] = 'Bekreftelsesnummeret (også kjent som Captcha) som du skrev inn er feil. Hvis du har problemer med å lese Captcha, vennligst kontakt: '.SERVER_EMAIL.''; |
587 | 587 |
|
588 |
$MESSAGE['MOD_RELOAD']['PLEASE_SELECT'] = 'Vennligst velg hvilket tillegg du vil oppdatere'; |
|
589 |
$MESSAGE['MOD_RELOAD']['MODULES_RELOADED'] = 'Lykkes i å oppdatere moduler'; |
|
590 |
$MESSAGE['MOD_RELOAD']['TEMPLATES_RELOADED'] = 'Lykkes i å oppdatere maler'; |
|
591 |
$MESSAGE['MOD_RELOAD']['LANGUAGES_RELOADED'] = 'Lykkes i å oppdatere språk'; |
|
588 |
$MESSAGE['ADDON']['RELOAD'] = 'The button below updates the information in the database with the data stored in the Add-On "info.php" files. This may be required if you have uploaded Addons via FTP.'; |
|
589 |
$MESSAGE['ADDON']['ERROR_RELOAD'] = 'Error while updating the Add-On information.'; |
|
590 |
$MESSAGE['ADDON']['MODULES_RELOADED'] = 'Lykkes i å oppdatere moduler'; |
|
591 |
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'Lykkes i å oppdatere maler'; |
|
592 |
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Lykkes i å oppdatere språk'; |
|
593 |
$MESSAGE['ADDON']['PRECHECK_FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.'; |
|
592 | 594 |
|
593 |
$MESSAGE['ADDON_PRECHECK']['FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.'; |
|
594 |
|
|
595 | 595 |
?> |
trunk/wb/languages/LV.php | ||
---|---|---|
585 | 585 |
$MESSAGE['MOD_FORM']['EXCESS_SUBMISSIONS'] = 'Atvaino, ši forma ir tikusi aizpildita parak daudz reižu šis stundas laika. Ludzu pamegini velreiz pec stundas.'; |
586 | 586 |
$MESSAGE['MOD_FORM']['INCORRECT_CAPTCHA'] = 'Ievaditais parbaudes numurs ir nepareizs. Ja radušas problemas ar parbaudes koda nolasišanu, suti zinu uz: '.SERVER_EMAIL.''; |
587 | 587 |
|
588 |
$MESSAGE['MOD_RELOAD']['PLEASE_SELECT'] = 'Ludzu atzime, kurus papildinajumus velies parladet'; |
|
589 |
$MESSAGE['MOD_RELOAD']['MODULES_RELOADED'] = 'Moduli veiksmigi parladeti'; |
|
590 |
$MESSAGE['MOD_RELOAD']['TEMPLATES_RELOADED'] = 'šabloni veiksmigi parladeti'; |
|
591 |
$MESSAGE['MOD_RELOAD']['LANGUAGES_RELOADED'] = 'Valodas veiksmigi parladetas'; |
|
588 |
$MESSAGE['ADDON']['RELOAD'] = 'The button below updates the information in the database with the data stored in the Add-On "info.php" files. This may be required if you have uploaded Addons via FTP.'; |
|
589 |
$MESSAGE['ADDON']['ERROR_RELOAD'] = 'Error while updating the Add-On information.'; |
|
590 |
$MESSAGE['ADDON']['MODULES_RELOADED'] = 'Moduli veiksmigi parladeti'; |
|
591 |
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'šabloni veiksmigi parladeti'; |
|
592 |
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Valodas veiksmigi parladetas'; |
|
593 |
$MESSAGE['ADDON']['PRECHECK_FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.'; |
|
592 | 594 |
|
593 |
$MESSAGE['ADDON_PRECHECK']['FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.'; |
|
594 |
|
|
595 | 595 |
?> |
trunk/wb/languages/CA.php | ||
---|---|---|
585 | 585 |
$MESSAGE['MOD_FORM']['EXCESS_SUBMISSIONS'] = 'Ho sentim, aquest formulari ha estat enviat massa vegades durant l\'última hora. Per favor torneu-ho a intentar d\'ací una hora.'; |
586 | 586 |
$MESSAGE['MOD_FORM']['INCORRECT_CAPTCHA'] = 'The verification number (also known as Captcha) that you entered is incorrect. If you are having problems reading the Captcha, please email: '.SERVER_EMAIL.''; |
587 | 587 |
|
588 |
$MESSAGE['MOD_RELOAD']['PLEASE_SELECT'] = 'Please selected which add-ons you would like to have reloaded'; |
|
589 |
$MESSAGE['MOD_RELOAD']['MODULES_RELOADED'] = 'Modules reloaded successfully'; |
|
590 |
$MESSAGE['MOD_RELOAD']['TEMPLATES_RELOADED'] = 'Templates reloaded successfully'; |
|
591 |
$MESSAGE['MOD_RELOAD']['LANGUAGES_RELOADED'] = 'Languages reloaded successfully'; |
|
588 |
$MESSAGE['ADDON']['RELOAD'] = 'The button below updates the information in the database with the data stored in the Add-On "info.php" files. This may be required if you have uploaded Addons via FTP.'; |
|
589 |
$MESSAGE['ADDON']['ERROR_RELOAD'] = 'Error while updating the Add-On information.'; |
|
590 |
$MESSAGE['ADDON']['MODULES_RELOADED'] = 'Modules reloaded successfully'; |
|
591 |
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'Templates reloaded successfully'; |
|
592 |
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Languages reloaded successfully'; |
|
593 |
$MESSAGE['ADDON']['PRECHECK_FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.'; |
|
592 | 594 |
|
593 |
$MESSAGE['ADDON_PRECHECK']['FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.'; |
|
594 |
|
|
595 | 595 |
?> |
trunk/wb/languages/PT.php | ||
---|---|---|
585 | 585 |
$MESSAGE['MOD_FORM']['EXCESS_SUBMISSIONS'] = 'Desculpe, este formulário foi submetido várias vezes nessa hora. Favor tentar novamente dentro de uma hora.'; |
586 | 586 |
$MESSAGE['MOD_FORM']['INCORRECT_CAPTCHA'] = 'O Número de Verifica&ccdil;ão (conhecido como Captcha) que você entrou, é inválido. Se estiver tendo problemas usando o Captcha, envie uma mensagem para: '.SERVER_EMAIL.''; |
587 | 587 |
|
588 |
$MESSAGE['MOD_RELOAD']['PLEASE_SELECT'] = 'Favor selecionar quais add-ons deseja recarregar'; |
|
589 |
$MESSAGE['MOD_RELOAD']['MODULES_RELOADED'] = 'Módulos recarregados com sucesso'; |
|
590 |
$MESSAGE['MOD_RELOAD']['TEMPLATES_RELOADED'] = 'Temas (Templates) recarregados com sucesso'; |
|
591 |
$MESSAGE['MOD_RELOAD']['LANGUAGES_RELOADED'] = 'Idiomas recarregados com sucesso'; |
|
588 |
$MESSAGE['ADDON']['RELOAD'] = 'The button below updates the information in the database with the data stored in the Add-On "info.php" files. This may be required if you have uploaded Addons via FTP.'; |
|
589 |
$MESSAGE['ADDON']['ERROR_RELOAD'] = 'Error while updating the Add-On information.'; |
|
590 |
$MESSAGE['ADDON']['MODULES_RELOADED'] = 'Módulos recarregados com sucesso'; |
|
591 |
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'Temas (Templates) recarregados com sucesso'; |
|
592 |
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Idiomas recarregados com sucesso'; |
|
593 |
$MESSAGE['ADDON']['PRECHECK_FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.'; |
|
592 | 594 |
|
593 |
$MESSAGE['ADDON_PRECHECK']['FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.'; |
|
594 |
|
|
595 | 595 |
?> |
trunk/wb/languages/DA.php | ||
---|---|---|
585 | 585 |
$MESSAGE['MOD_FORM']['EXCESS_SUBMISSIONS'] = 'Beklager! Denne formular er blevet afsendt for mange gange indenfor den sidste time, og du vil derfor blive afvist - Prøv igen om en times tid!'; |
586 | 586 |
$MESSAGE['MOD_FORM']['INCORRECT_CAPTCHA'] = 'Verifikations tallene (også kendt som Captcha) som du tastede er ikke korrekte. Hvis du har problemer med at læse Captha tallene, så kontakt venligst sidens Administrator på denne mailadresse: '.SERVER_EMAIL.''; |
587 | 587 |
|
588 |
$MESSAGE['MOD_RELOAD']['PLEASE_SELECT'] = 'Vælg venligst hvilke add-ons du vil have opdateret'; |
|
589 |
$MESSAGE['MOD_RELOAD']['MODULES_RELOADED'] = 'Moduler opdateret med succes'; |
|
590 |
$MESSAGE['MOD_RELOAD']['TEMPLATES_RELOADED'] = 'Templates opdateret med succes'; |
|
591 |
$MESSAGE['MOD_RELOAD']['LANGUAGES_RELOADED'] = 'Sprog opdateret med succes'; |
|
588 |
$MESSAGE['ADDON']['RELOAD'] = 'The button below updates the information in the database with the data stored in the Add-On "info.php" files. This may be required if you have uploaded Addons via FTP.'; |
|
589 |
$MESSAGE['ADDON']['ERROR_RELOAD'] = 'Error while updating the Add-On information.'; |
|
590 |
$MESSAGE['ADDON']['MODULES_RELOADED'] = 'Moduler opdateret med succes'; |
|
591 |
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'Templates opdateret med succes'; |
|
592 |
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Sprog opdateret med succes'; |
|
593 |
$MESSAGE['ADDON']['PRECHECK_FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.'; |
|
592 | 594 |
|
593 |
$MESSAGE['ADDON_PRECHECK']['FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.'; |
|
594 |
|
|
595 | 595 |
?> |
trunk/wb/languages/TR.php | ||
---|---|---|
585 | 585 |
$MESSAGE['MOD_FORM']['EXCESS_SUBMISSIONS'] = 'Sorry, this form has been submitted too many times so far this hour. Please retry in the next hour.'; |
586 | 586 |
$MESSAGE['MOD_FORM']['INCORRECT_CAPTCHA'] = 'The verification number (also known as Captcha) that you entered is incorrect. If you are having problems reading the Captcha, please email: '.SERVER_EMAIL.''; |
587 | 587 |
|
588 |
$MESSAGE['MOD_RELOAD']['PLEASE_SELECT'] = 'Please selected which add-ons you would like to have reloaded'; |
|
589 |
$MESSAGE['MOD_RELOAD']['MODULES_RELOADED'] = 'Modül, baþarýlý bir þekildeninkini tekrar yüklendi'; |
|
590 |
$MESSAGE['MOD_RELOAD']['TEMPLATES_RELOADED'] = 'Kalýplar, baþarýlý bir þekildeninkini tekrar yüklendi'; |
|
591 |
$MESSAGE['MOD_RELOAD']['LANGUAGES_RELOADED'] = 'Diller, baþarýlý bir þekildeninkini tekrar yüklendi'; |
|
588 |
$MESSAGE['ADDON']['RELOAD'] = 'The button below updates the information in the database with the data stored in the Add-On "info.php" files. This may be required if you have uploaded Addons via FTP.'; |
|
589 |
$MESSAGE['ADDON']['ERROR_RELOAD'] = 'Error while updating the Add-On information.'; |
|
590 |
$MESSAGE['ADDON']['MODULES_RELOADED'] = 'Modül, baþarýlý bir þekildeninkini tekrar yüklendi'; |
|
591 |
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'Kalýplar, baþarýlý bir þekildeninkini tekrar yüklendi'; |
|
592 |
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Diller, baþarýlý bir þekildeninkini tekrar yüklendi'; |
|
593 |
$MESSAGE['ADDON']['PRECHECK_FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.'; |
|
592 | 594 |
|
593 |
$MESSAGE['ADDON_PRECHECK']['FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.'; |
|
594 |
|
|
595 | 595 |
?> |
trunk/wb/languages/RU.php | ||
---|---|---|
585 | 585 |
$MESSAGE['MOD_FORM']['EXCESS_SUBMISSIONS'] = 'Извините, слишком много сообщений за последний час. Пожалуйста попробуйте повторить отправку через некоторое время.'; |
586 | 586 |
$MESSAGE['MOD_FORM']['INCORRECT_CAPTCHA'] = 'Код подтверждения введен неверно. Если вы не можете прочесть код, пожалуйста сообщите разработчикам: '.SERVER_EMAIL.''; |
587 | 587 |
|
588 |
$MESSAGE['MOD_RELOAD']['PLEASE_SELECT'] = 'Пожалуйста выберите что вы хотите перезагрузить'; |
|
589 |
$MESSAGE['MOD_RELOAD']['MODULES_RELOADED'] = 'Модули перезагружены успешно'; |
|
590 |
$MESSAGE['MOD_RELOAD']['TEMPLATES_RELOADED'] = 'Шаблоны перезагружены успешно'; |
|
591 |
$MESSAGE['MOD_RELOAD']['LANGUAGES_RELOADED'] = 'Языки перезагружены успешно'; |
|
588 |
$MESSAGE['ADDON']['RELOAD'] = 'The button below updates the information in the database with the data stored in the Add-On "info.php" files. This may be required if you have uploaded Addons via FTP.'; |
|
589 |
$MESSAGE['ADDON']['ERROR_RELOAD'] = 'Error while updating the Add-On information.'; |
|
590 |
$MESSAGE['ADDON']['MODULES_RELOADED'] = 'Модули перезагружены успешно'; |
|
591 |
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'Шаблоны перезагружены успешно'; |
|
592 |
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Языки перезагружены успешно'; |
|
593 |
$MESSAGE['ADDON']['PRECHECK_FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.'; |
|
592 | 594 |
|
593 |
$MESSAGE['ADDON_PRECHECK']['FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.'; |
|
594 |
|
|
595 | 595 |
?> |
trunk/wb/languages/DE.php | ||
---|---|---|
585 | 585 |
$MESSAGE['MOD_FORM']['EXCESS_SUBMISSIONS'] = 'Dieses Formular wurde zu oft aufgerufen. Bitte versuchen Sie es in einer Stunde noch einmal.'; |
586 | 586 |
$MESSAGE['MOD_FORM']['INCORRECT_CAPTCHA'] = 'Die eingegebene Prüfziffer stimmt nicht überein. Wenn Sie Probleme mit dem Lesen der Prüfziffer haben, bitte schreiben Sie eine E-Mail an uns: '.SERVER_EMAIL.''; |
587 | 587 |
|
588 |
$MESSAGE['MOD_RELOAD']['PLEASE_SELECT'] = 'Bitte wählen Sie aus, welche Erweiterungen neu geladen werden sollen'; |
|
589 |
$MESSAGE['MOD_RELOAD']['MODULES_RELOADED'] = 'Module erfolgreich geladen'; |
|
590 |
$MESSAGE['MOD_RELOAD']['TEMPLATES_RELOADED'] = 'Designvorlagen erfolgreich geladen'; |
|
591 |
$MESSAGE['MOD_RELOAD']['LANGUAGES_RELOADED'] = 'Sprachen erfolgreich geladen'; |
|
588 |
$MESSAGE['ADDON']['RELOAD'] = 'Nachfolgende Schaltfläche gleicht die Informationen der Datenbank mit den Daten der Addon Dateien "info.php" ab. Dies kann notwendig sein, wenn Addons über FTP hochgeladen wurden.'; |
|
589 |
$MESSAGE['ADDON']['ERROR_RELOAD'] = 'Fehler beim Abgleich der Addon Informationen.'; |
|
590 |
$MESSAGE['ADDON']['MODULES_RELOADED'] = 'Module erfolgreich geladen'; |
|
591 |
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'Designvorlagen erfolgreich geladen'; |
|
592 |
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Sprachen erfolgreich geladen'; |
|
593 |
$MESSAGE['ADDON']['PRECHECK_FAILED'] = 'Installation fehlgeschlagen. Dein System erfüllt nicht alle Voraussetzungen die für diese Erweiterung benötigt werden. Um diese Erweiterung nutzen zu können, müssen nachfolgende Updates durchgeführt werden.'; |
|
592 | 594 |
|
593 |
$MESSAGE['ADDON_PRECHECK']['FAILED'] = 'Installation fehlgeschlagen. Dein System erfüllt nicht alle Voraussetzungen die für diese Erweiterung benötigt werden. Um diese Erweiterung nutzen zu können, müssen nachfolgende Updates durchgeführt werden.'; |
|
594 |
|
|
595 | 595 |
?> |
trunk/wb/languages/BG.php | ||
---|---|---|
585 | 585 |
$MESSAGE['MOD_FORM']['EXCESS_SUBMISSIONS'] = 'Съжаляваме, този форуляр е подаден повече пъти от позволеното през този час. Опитайте отнове по време на следващи час.'; |
586 | 586 |
$MESSAGE['MOD_FORM']['INCORRECT_CAPTCHA'] = 'Контролния номер (позант като Captcha) е грешен. Ако имате проблем с четенето на Captcha, изпратете e-mail на: '.SERVER_EMAIL.''; |
587 | 587 |
|
588 |
$MESSAGE['MOD_RELOAD']['PLEASE_SELECT'] = 'Please selected which add-ons you would like to have reloaded'; |
|
589 |
$MESSAGE['MOD_RELOAD']['MODULES_RELOADED'] = 'Modules reloaded successfully'; |
|
590 |
$MESSAGE['MOD_RELOAD']['TEMPLATES_RELOADED'] = 'Templates reloaded successfully'; |
|
591 |
$MESSAGE['MOD_RELOAD']['LANGUAGES_RELOADED'] = 'Languages reloaded successfully'; |
|
588 |
$MESSAGE['ADDON']['RELOAD'] = 'The button below updates the information in the database with the data stored in the Add-On "info.php" files. This may be required if you have uploaded Addons via FTP.'; |
|
589 |
$MESSAGE['ADDON']['ERROR_RELOAD'] = 'Error while updating the Add-On information.'; |
|
590 |
$MESSAGE['ADDON']['MODULES_RELOADED'] = 'Modules reloaded successfully'; |
|
591 |
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'Templates reloaded successfully'; |
|
592 |
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Languages reloaded successfully'; |
|
593 |
$MESSAGE['ADDON']['PRECHECK_FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.'; |
|
592 | 594 |
|
593 |
$MESSAGE['ADDON_PRECHECK']['FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.'; |
|
594 |
|
|
595 | 595 |
?> |
trunk/wb/modules/reload/index.php | ||
---|---|---|
1 |
<?php |
|
2 |
|
|
3 |
// $Id$ |
|
4 |
|
|
5 |
/* |
|
6 |
|
|
7 |
Website Baker Project <http://www.websitebaker.org/> |
|
8 |
Copyright (C) 2004-2009, Ryan Djurovich |
|
9 |
|
|
10 |
Website Baker is free software; you can redistribute it and/or modify |
|
11 |
it under the terms of the GNU General Public License as published by |
|
12 |
the Free Software Foundation; either version 2 of the License, or |
|
13 |
(at your option) any later version. |
|
14 |
|
|
15 |
Website Baker is distributed in the hope that it will be useful, |
|
16 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
17 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
18 |
GNU General Public License for more details. |
|
19 |
|
|
20 |
You should have received a copy of the GNU General Public License |
|
21 |
along with Website Baker; if not, write to the Free Software |
|
22 |
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
23 |
|
|
24 |
*/ |
|
25 |
|
|
26 |
header('Location: ../index.php'); |
|
27 |
|
|
28 |
?> |
|
29 | 0 |
trunk/wb/modules/reload/tool.php | ||
---|---|---|
1 |
<?php |
|
2 |
|
|
3 |
// $Id$ |
|
4 |
|
|
5 |
/* |
|
6 |
|
|
7 |
Website Baker Project <http://www.websitebaker.org/> |
|
8 |
Copyright (C) 2004-2009, Ryan Djurovich |
|
9 |
|
|
10 |
Website Baker is free software; you can redistribute it and/or modify |
|
11 |
it under the terms of the GNU General Public License as published by |
|
12 |
the Free Software Foundation; either version 2 of the License, or |
|
13 |
(at your option) any later version. |
|
14 |
|
|
15 |
Website Baker is distributed in the hope that it will be useful, |
|
16 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
17 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
18 |
GNU General Public License for more details. |
|
19 |
|
|
20 |
You should have received a copy of the GNU General Public License |
|
21 |
along with Website Baker; if not, write to the Free Software |
|
22 |
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
23 |
|
|
24 |
*/ |
|
25 |
|
|
26 |
// Direct access prevention |
|
27 |
defined('WB_PATH') OR die(header('Location: ../index.php')); |
|
28 |
|
|
29 |
// check if module language file exists for the language set by the user (e.g. DE, EN) |
|
30 |
if(!file_exists(WB_PATH .'/modules/reload/languages/'.LANGUAGE .'.php')) { |
|
31 |
// no module language file exists for the language set by the user, include default module language file EN.php |
|
32 |
require_once(WB_PATH .'/modules/reload/languages/EN.php'); |
|
33 |
} else { |
|
34 |
// a module language file exists for the language defined by the user, load it |
|
35 |
require_once(WB_PATH .'/modules/reload/languages/'.LANGUAGE .'.php'); |
|
36 |
} |
|
37 |
|
|
38 |
// Check if user selected what add-ons to reload |
|
39 |
if(isset($_POST['submit']) AND $_POST['submit'] != '') { |
|
40 |
// Include functions file |
|
41 |
require_once(WB_PATH.'/framework/functions.php'); |
|
42 |
// Perform empty/reload |
|
43 |
if(isset($_POST['reload_modules'])) { |
|
44 |
// Remove all modules |
|
45 |
$database->query("DELETE FROM ".TABLE_PREFIX."addons WHERE type = 'module'"); |
|
46 |
// Load all modules |
|
47 |
if($handle = opendir(WB_PATH.'/modules/')) { |
|
48 |
while(false !== ($file = readdir($handle))) { |
|
49 |
if($file != '' AND substr($file, 0, 1) != '.' AND $file != 'admin.php' AND $file != 'index.php') { |
|
50 |
load_module(WB_PATH.'/modules/'.$file); |
|
51 |
} |
|
52 |
} |
|
53 |
closedir($handle); |
|
54 |
} |
|
55 |
echo '<br />'.$MOD_RELOAD['MODULES_RELOADED']; |
|
56 |
} |
|
57 |
if(isset($_POST['reload_templates'])) { |
|
58 |
// Remove all templates |
|
59 |
$database->query("DELETE FROM ".TABLE_PREFIX."addons WHERE type = 'template'"); |
|
60 |
// Load all templates |
|
61 |
if($handle = opendir(WB_PATH.'/templates/')) { |
|
62 |
while(false !== ($file = readdir($handle))) { |
|
63 |
if($file != '' AND substr($file, 0, 1) != '.' AND $file != 'index.php') { |
|
64 |
load_template(WB_PATH.'/templates/'.$file); |
|
65 |
} |
|
66 |
} |
|
67 |
closedir($handle); |
|
68 |
} |
|
69 |
echo '<br />'.$MOD_RELOAD['TEMPLATES_RELOADED']; |
|
70 |
} |
|
71 |
if(isset($_POST['reload_languages'])) { |
|
72 |
// Remove all languages |
|
73 |
$database->query("DELETE FROM ".TABLE_PREFIX."addons WHERE type = 'language'"); |
|
74 |
// Load all languages |
|
75 |
if($handle = opendir(WB_PATH.'/languages/')) { |
|
76 |
while(false !== ($file = readdir($handle))) { |
|
77 |
if($file != '' AND substr($file, 0, 1) != '.' AND $file != 'index.php') { |
|
78 |
load_language(WB_PATH.'/languages/'.$file); |
|
79 |
} |
|
80 |
} |
|
81 |
closedir($handle); |
|
82 |
} |
|
83 |
echo '<br />'.$MOD_RELOAD['LANGUAGES_RELOADED']; |
|
84 |
} |
|
85 |
?> |
|
86 |
<br /><br /> |
|
87 |
<a href="<?php echo $_SERVER['REQUEST_URI']; ?>"><?php echo $TEXT['BACK']; ?></a> |
|
88 |
<?php |
|
89 |
} else { |
|
90 |
// Display form |
|
91 |
?> |
|
92 |
<br /> |
|
93 |
<form action="<?php echo $_SERVER['REQUEST_URI']; ?>" method="post"> |
|
94 |
<table cellpadding="4" cellspacing="0" border="0"> |
|
95 |
<tr> |
|
96 |
<td colspan="2"><?php echo $MOD_RELOAD['PLEASE_SELECT']; ?>:</td> |
|
97 |
</tr> |
|
98 |
<tr> |
|
99 |
<td width="20"><input type="checkbox" name="reload_modules" id="reload_modules" value="true" /></td> |
|
100 |
<td><label for="reload_modules"><?php echo $MOD_RELOAD['MODULES']; ?></label></td> |
|
101 |
</tr> |
|
102 |
<tr> |
|
103 |
<td><input type="checkbox" name="reload_templates" id="reload_templates" value="true" /></td> |
|
104 |
<td><label for="reload_templates"><?php echo $MOD_RELOAD['TEMPLATES']; ?></label></td> |
|
105 |
</tr> |
|
106 |
<tr> |
|
107 |
<td><input type="checkbox" name="reload_languages" id="reload_languages" value="true" /></td> |
|
108 |
<td><label for="reload_languages"><?php echo $MOD_RELOAD['LANGUAGES']; ?></label></td> |
|
109 |
</tr> |
|
110 |
<tr> |
|
111 |
<td> </td> |
|
112 |
<td> |
|
113 |
<input type="submit" name="submit" value="<?php echo $TEXT['RELOAD']; ?>" onClick="javascript: if(!confirm('<?php echo $TEXT['ARE_YOU_SURE']; ?>')) { return false; }" /> |
|
114 |
</td> |
|
115 |
</tr> |
|
116 |
</table> |
|
117 |
</form> |
|
118 |
<?php |
|
119 |
} |
|
120 |
|
|
121 |
?> |
|
122 | 0 |
trunk/wb/modules/reload/info.php | ||
---|---|---|
1 |
<?php |
|
2 |
|
|
3 |
// $Id$ |
|
4 |
|
|
5 |
/* |
|
6 |
|
|
7 |
Website Baker Project <http://www.websitebaker.org/> |
|
8 |
Copyright (C) 2004-2009, Ryan Djurovich |
|
9 |
|
|
10 |
Website Baker is free software; you can redistribute it and/or modify |
|
11 |
it under the terms of the GNU General Public License as published by |
|
12 |
the Free Software Foundation; either version 2 of the License, or |
|
13 |
(at your option) any later version. |
|
14 |
|
|
15 |
Website Baker is distributed in the hope that it will be useful, |
|
16 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
17 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
18 |
GNU General Public License for more details. |
|
19 |
|
|
20 |
You should have received a copy of the GNU General Public License |
|
21 |
along with Website Baker; if not, write to the Free Software |
|
22 |
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
23 |
|
|
24 |
*/ |
|
25 |
|
|
26 |
$module_directory = 'reload'; |
|
27 |
$module_name = 'Reload Add-ons'; |
|
28 |
$module_function = 'tool'; |
|
29 |
$module_version = '2.7'; |
|
30 |
$module_platform = '2.7.x'; |
|
31 |
$module_author = 'Ryan Djurovich'; |
|
32 |
$module_license = 'GNU General Public License'; |
|
33 |
$module_description = 'This module allows you to reload add-on information stored in the addons table.'; |
|
34 |
|
|
35 |
?> |
|
36 | 0 |
trunk/wb/modules/reload/languages/RU.php | ||
---|---|---|
1 |
<?php |
|
2 |
|
|
3 |
// $Id$ |
|
4 |
|
|
5 |
/* |
|
6 |
|
|
7 |
Website Baker Project http://www.websitebaker.org/ |
|
8 |
Copyright (C) 2004-2009, Ryan Djurovich |
|
9 |
|
|
10 |
Website Baker is free software; you can redistribute it and/or modify |
|
11 |
it under the terms of the GNU General Public License as published by |
|
12 |
the Free Software Foundation; either version 2 of the License, or |
|
13 |
(at your option) any later version. |
|
14 |
|
|
15 |
Website Baker is distributed in the hope that it will be useful, |
|
16 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
17 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
18 |
GNU General Public License for more details. |
|
19 |
|
|
20 |
You should have received a copy of the GNU General Public License |
|
21 |
along with Website Baker; if not, write to the Free Software |
|
22 |
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
23 |
|
|
24 |
----------------------------------------------------------------------------------------- |
|
25 |
RUSSIAN LANGUAGE FILE FOR THE ADDON: RELOAD ADDINS |
|
26 |
----------------------------------------------------------------------------------------- |
|
27 |
*/ |
|
28 |
|
|
29 |
// Headings and text outputs |
|
30 |
$MOD_RELOAD['PLEASE_SELECT'] = 'Пожалуйста выберите что именно вы хотите перезагрузить'; |
|
31 |
$MOD_RELOAD['MODULES'] = 'Модули'; |
|
32 |
$MOD_RELOAD['TEMPLATES'] = 'Шаблоны'; |
|
33 |
$MOD_RELOAD['LANGUAGES'] = 'Языки'; |
|
34 |
$MOD_RELOAD['MODULES_RELOADED'] = 'Модули успешно перезагружены'; |
|
35 |
$MOD_RELOAD['TEMPLATES_RELOADED'] = 'Модули успешно перезагружены'; |
|
36 |
$MOD_RELOAD['LANGUAGES_RELOADED'] = 'Языки успешно перезагружены'; |
|
37 |
|
|
38 |
?> |
|
39 | 0 |
trunk/wb/modules/reload/languages/DE.php | ||
---|---|---|
1 |
<?php |
|
2 |
|
|
3 |
// $Id$ |
|
4 |
|
|
5 |
/* |
|
6 |
|
|
7 |
Website Baker Project <http://www.websitebaker.org/> |
|
8 |
Copyright (C) 2004-2009, Ryan Djurovich |
|
9 |
|
|
10 |
Website Baker is free software; you can redistribute it and/or modify |
|
11 |
it under the terms of the GNU General Public License as published by |
|
12 |
the Free Software Foundation; either version 2 of the License, or |
|
13 |
(at your option) any later version. |
|
14 |
|
|
15 |
Website Baker is distributed in the hope that it will be useful, |
|
16 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
17 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
18 |
GNU General Public License for more details. |
|
19 |
|
|
20 |
You should have received a copy of the GNU General Public License |
|
21 |
along with Website Baker; if not, write to the Free Software |
|
22 |
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
23 |
|
|
24 |
----------------------------------------------------------------------------------------- |
|
25 |
DEUTSCHE SPRACHDATEI FUER DAS MODUL: RELOAD ADDONS |
|
26 |
----------------------------------------------------------------------------------------- |
|
27 |
*/ |
|
28 |
|
|
29 |
// Deutsche Modulbeschreibung |
|
30 |
$module_description = 'Dieses Modul gleicht die Addon Informationen der Datenbank mit Ihrer WB Installation ab.'; |
|
31 |
|
|
32 |
// Textausgaben |
|
33 |
$MOD_RELOAD['PLEASE_SELECT'] = 'Wählen Sie die Addons aus, deren Informationen mit der Datenbank abgeglichen werden sollen'; |
|
34 |
$MOD_RELOAD['MODULES'] = 'Module'; |
|
35 |
$MOD_RELOAD['TEMPLATES'] = 'Designvorlagen'; |
|
36 |
$MOD_RELOAD['LANGUAGES'] = 'Sprachdateien'; |
|
37 |
$MOD_RELOAD['MODULES_RELOADED'] = 'Module erfolgreich abgeglichen'; |
|
38 |
$MOD_RELOAD['TEMPLATES_RELOADED'] = 'Designvorlagen erfolgreich abgeglichen'; |
|
39 |
$MOD_RELOAD['LANGUAGES_RELOADED'] = 'Sprachdateien erfolgreich abgeglichen'; |
|
40 |
|
|
41 |
?> |
|
42 | 0 |
trunk/wb/modules/reload/languages/EN.php | ||
---|---|---|
1 |
<?php |
|
2 |
|
|
3 |
// $Id$ |
|
4 |
|
|
5 |
/* |
|
6 |
|
|
7 |
Website Baker Project <http://www.websitebaker.org/> |
|
8 |
Copyright (C) 2004-2009, Ryan Djurovich |
|
9 |
|
|
10 |
Website Baker is free software; you can redistribute it and/or modify |
|
11 |
it under the terms of the GNU General Public License as published by |
|
12 |
the Free Software Foundation; either version 2 of the License, or |
|
13 |
(at your option) any later version. |
|
14 |
|
|
15 |
Website Baker is distributed in the hope that it will be useful, |
|
16 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
17 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
18 |
GNU General Public License for more details. |
|
19 |
|
|
20 |
You should have received a copy of the GNU General Public License |
|
21 |
along with Website Baker; if not, write to the Free Software |
|
22 |
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
23 |
|
|
24 |
----------------------------------------------------------------------------------------- |
|
25 |
ENGLISH LANGUAGE FILE FOR THE ADDON: RELOAD ADDINS |
|
26 |
----------------------------------------------------------------------------------------- |
|
27 |
*/ |
|
28 |
|
|
29 |
// Headings and text outputs |
|
30 |
$MOD_RELOAD['PLEASE_SELECT'] = 'Please selected which add-ons you would like to have reloaded'; |
|
31 |
$MOD_RELOAD['MODULES'] = 'Modules'; |
|
32 |
$MOD_RELOAD['TEMPLATES'] = 'Templates'; |
|
33 |
$MOD_RELOAD['LANGUAGES'] = 'Languages'; |
|
34 |
$MOD_RELOAD['MODULES_RELOADED'] = 'Modules reloaded successfully'; |
|
35 |
$MOD_RELOAD['TEMPLATES_RELOADED'] = 'Templates reloaded successfully'; |
|
36 |
$MOD_RELOAD['LANGUAGES_RELOADED'] = 'Languages reloaded successfully'; |
|
37 |
|
|
38 |
?> |
|
39 | 0 |
trunk/wb/modules/reload/languages/FR.php | ||
---|---|---|
1 |
<?php |
|
2 |
// $Id$ |
|
3 |
|
|
4 |
/* |
|
5 |
|
|
6 |
Website Baker Project <http://www.websitebaker.org/> |
|
7 |
Copyright (C) 2004-2009, Ryan Djurovich |
|
8 |
|
|
9 |
Website Baker is free software; you can redistribute it and/or modify |
|
10 |
it under the terms of the GNU General Public License as published by |
|
11 |
the Free Software Foundation; either version 2 of the License, or |
|
12 |
(at your option) any later version. |
|
13 |
|
|
14 |
Website Baker is distributed in the hope that it will be useful, |
|
15 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
16 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
17 |
GNU General Public License for more details. |
|
18 |
|
|
19 |
You should have received a copy of the GNU General Public License |
|
20 |
along with Website Baker; if not, write to the Free Software |
Also available in: Unified diff
Added reload option to Add-on section and removed Admin tool reload