Project

General

Profile

« Previous | Next » 

Revision 938

Added by doc over 15 years ago

added option to invoke module upgrade.php/uninstall.php files from backend (for modules uploaded via FTP)

View differences:

trunk/CHANGELOG
11 11
! = Update/Change
12 12

  
13 13
------------------------------------- 2.8.0 -------------------------------------
14
19-Feb-2009 Christian Sommer
15
+	added option to invoke module upgrade.php/uninstall.php files from backend (for modules uploaded via FTP)
16
18-Feb-2009 Dietrich Roland Pehlke (aldus)
17
#	fixed: typos in the section_id inside the action-link 
18
!	Remove test_trash and unused variables in query, added suggetions from #588
19
#	Bugfix for form bug (ticket #688)
14 20
17-Feb-2009 Christian Sommer
15 21
+	added option to invoke module install.php from backend (for modules uploaded via FTP)
16 22
!	admin Add-on settings no hidden by default (can be set visible via advanced link)
trunk/wb/admin/modules/manual_install.php
1 1
<?php
2 2
/**
3
 * $Id:$
3
 * $Id$
4 4
 * Website Baker Manual module installation
5 5
 *
6 6
 * This file contains the function to invoke the module install or upgrade
......
12 12
 * @author		Christian Sommer
13 13
 * @copyright	(c) 2009
14 14
 * @license		http://www.gnu.org/copyleft/lesser.html
15
 * @version		0.1.0
15
 * @version		0.2.0
16 16
 * @platform	Website Baker 2.7
17 17
 *
18 18
 * Website Baker Project <http://www.websitebaker.org/>
......
36 36
/**
37 37
 * check if there is anything to do
38 38
 */
39
if (!(isset($_POST['file']) && (strpos($_POST['file'], '..') === false))) die(header('Location: index.php'));
39
if (!(isset($_POST['action']) && in_array($_POST['action'], array('install', 'upgrade', 'uninstall')))) die(header('Location: index.php?advanced'));
40
if (!(isset($_POST['file']) && $_POST['file'] != '' && (strpos($_POST['file'], '..') === false))) die(header('Location: index.php?advanced'));
40 41

  
41 42
/**
42 43
 * check if user has permissions to access this file
......
66 67

  
67 68
// create Admin object with admin header
68 69
$admin = new admin('Addons', '', true, false);
69
$js_back = ADMIN_URL . '/modules/index.php';
70
$js_back = ADMIN_URL . '/modules/index.php?advanced';
70 71

  
71 72
/**
72
 * Reload all specified Addons
73
 * Manually execute the specified module file (install.php, upgrade.php or uninstall.php)
73 74
 */
74 75
// check if specified module folder exists
75 76
$mod_path = WB_PATH . '/modules/' . basename(WB_PATH . '/' . $_POST['file']);
76
if (!file_exists($mod_path . '/install.php')) $admin->print_error($MESSAGE['GENERIC']['NOT_INSTALLED'], $js_back);
77
if (!file_exists($mod_path . '/' . $_POST['action'] . '.php')) $admin->print_error($TEXT['NOT_FOUND'] . ': <tt>"' . htmlentities(basename($mod_path)) . '/' . $_POST['action'] . '.php"</tt> ', $js_back);
77 78

  
78 79
// include modules install.php script
79
require($mod_path . '/install.php');
80
require($mod_path . '/' . $_POST['action'] . '.php');
80 81

  
81 82
// load module info into database and output status message
82 83
load_module($mod_path, false);
83
$admin->print_success($MESSAGE['GENERIC']['INSTALLED'], $js_back);
84
$msg = $TEXT['EXECUTE'] . ': <tt>"' . htmlentities(basename($mod_path)) . '/' . $_POST['action'] . '.php"</tt>';
84 85

  
86
switch ($_POST['action']) {
87
	case 'install':
88
		$admin->print_success($msg, $js_back);
89
		break;
90

  
91
	case 'upgrade':
92
		$admin->print_success($msg, $js_back);
93
		break;
94
	
95
	case 'uninstall':
96
		$admin->print_success($msg, $js_back);
97
		break;
98
}
99

  
85 100
?>
trunk/wb/admin/modules/index.php
45 45
}
46 46

  
47 47
// Insert modules which includes a install.php file to install list
48
$module_files = glob(WB_PATH . '/modules/*');
48 49
$template->set_block('main_block', 'install_list_block', 'install_list');
49
$module_files = glob(WB_PATH . '/modules/*');
50
$template->set_block('main_block', 'upgrade_list_block', 'upgrade_list');
51
$template->set_block('main_block', 'uninstall_list_block', 'uninstall_list');
52
$template->set_var(array('INSTALL_VISIBLE' => 'hide', 'UPGRADE_VISIBLE' => 'hide', 'UNINSTALL_VISIBLE' => 'hide'));
53

  
54
$show_block = false;
50 55
foreach ($module_files as $index => $path) {
51
	if (is_dir($path) && file_exists($path . '/install.php')) {
52
		$template->set_var('VALUE', basename($path));
53
		$template->set_var('NAME', basename($path));
54
		$template->parse('install_list', 'install_list_block', true);
56
	if (is_dir($path)) {
57
		if (file_exists($path . '/install.php')) {
58
			$show_block = true;
59
			$template->set_var('INSTALL_VISIBLE', '');
60
			$template->set_var('VALUE', basename($path));
61
			$template->set_var('NAME', basename($path));
62
			$template->parse('install_list', 'install_list_block', true);
63
		}
64

  
65
		if (file_exists($path . '/upgrade.php')) {
66
			$show_block = true;
67
			$template->set_var('UPGRADE_VISIBLE', '');
68
			$template->set_var('VALUE', basename($path));
69
			$template->set_var('NAME', basename($path));
70
			$template->parse('upgrade_list', 'upgrade_list_block', true);
71
		} 
72
		
73
		if (file_exists($path . '/uninstall.php')) {
74
			$show_block = true;
75
			$template->set_var('UNINSTALL_VISIBLE', '');
76
			$template->set_var('VALUE', basename($path));
77
			$template->set_var('NAME', basename($path));
78
			$template->parse('uninstall_list', 'uninstall_list_block', true);
79
		}
80

  
55 81
	} else {
56 82
		unset($module_files[$index]);
57 83
	}
......
67 93
if($admin->get_permission('modules_view') != true) {
68 94
	$template->set_var('DISPLAY_LIST', 'hide');
69 95
}
70
// only show if at least one module folder contains a install.php file and permissions to admin section exists
71
if(count($module_files) == 0 || !isset($_GET['advanced']) || $admin->get_permission('admintools') != true) {
96
// only show block if there is something to show
97
if(!$show_block || count($module_files) == 0 || !isset($_GET['advanced']) || $admin->get_permission('admintools') != true) {
72 98
	$template->set_var('DISPLAY_MANUAL_INSTALL', 'hide');
73 99
}
74 100

  
......
77 103
								'HEADING_INSTALL_MODULE' => $HEADING['INSTALL_MODULE'],
78 104
								'HEADING_UNINSTALL_MODULE' => $HEADING['UNINSTALL_MODULE'],
79 105
								'HEADING_MODULE_DETAILS' => $HEADING['MODULE_DETAILS'],
80
								'HEADING_MANUAL_MODULE_INSTALLATION' => $HEADING['MANUAL_MODULE_INSTALLATION']
106
								'HEADING_INVOKE_MODULE_FILES' => $HEADING['INVOKE_MODULE_FILES']
81 107
								)
82 108
						);
83 109
// Insert language text and messages
......
94 120
	'TEXT_PLEASE_SELECT' => $TEXT['PLEASE_SELECT'],
95 121
	'TEXT_MANUAL_INSTALLATION' => $MESSAGE['ADDON']['MANUAL_INSTALLATION'],
96 122
	'TEXT_MANUAL_INSTALLATION_WARNING' => $MESSAGE['ADDON']['MANUAL_INSTALLATION_WARNING'],
97
	'TEXT_RELOAD' => $TEXT['RELOAD']
123
	'TEXT_EXECUTE' => $TEXT['EXECUTE'],
124
	'TEXT_FILE' => $TEXT['FILE']
98 125
	)
99 126
);
100 127

  
trunk/wb/admin/modules/template.html
73 73
<br />
74 74
</form>
75 75

  
76
<form name="details" action="manual_install.php" method="post" class="{DISPLAY_MANUAL_INSTALL}">
76
<div class="{DISPLAY_MANUAL_INSTALL}">
77
<h2>{HEADING_INVOKE_MODULE_FILES}</h2>
78
<p>{TEXT_MANUAL_INSTALLATION}</p>
77 79

  
78
<h2>{HEADING_MANUAL_MODULE_INSTALLATION}</h2>
79
{TEXT_MANUAL_INSTALLATION}
80
<p>{TEXT_MANUAL_INSTALLATION_2}</p>
81

  
82
<table cellpadding="2" cellspacing="0" border="0" width="100%">
83
<tr>
84
	<td>
85
		<select name="file" style="width: 97%;">
86
		<option value="" selected>{TEXT_PLEASE_SELECT}...</option>
80
<form name="details" action="manual_install.php" method="post" class="{INSTALL_VISIBLE}">
81
	{TEXT_FILE}:</strong> "install.php"&nbsp;&nbsp;&nbsp;
82
	<input type="hidden" name="action" value="install" />
83
	<select name="file" style="width: 250px;">
84
	<option value="" selected>{TEXT_PLEASE_SELECT}...</option>
87 85
		<!-- BEGIN install_list_block -->
88
			<option value="{VALUE}">{NAME}</option>
86
		<option value="{VALUE}">{NAME}</option>
89 87
		<!-- END install_list_block -->
90
		</select>
91
	</td>
92
	<td width="110">
93
		<input type="submit" name="submit" value="{TEXT_RELOAD}" style="width: 100px;" />
94
	</td>
95
</tr>
96
</table>
97
<p style="color: red;">{TEXT_MANUAL_INSTALLATION_WARNING}</p>
88
	</select>
89
	<input type="submit" name="submit" value="{TEXT_EXECUTE}" style="width: 100px; margin-left: 1em;" />
90
</form>
98 91

  
99
<br />
92
<form name="details" action="manual_install.php" method="post" class="{UPGRADE_VISIBLE}">
93
	<br />{TEXT_FILE}: "upgrade.php"
94
	<input type="hidden" name="action" value="upgrade" />
95
	<select name="file" style="width: 250px;">
96
	<option value="" selected>{TEXT_PLEASE_SELECT}...</option>
97
		<!-- BEGIN upgrade_list_block -->
98
		<option value="{VALUE}">{NAME}</option>
99
		<!-- END upgrade_list_block -->
100
	</select>
101
	<input type="submit" name="submit" value="{TEXT_EXECUTE}" style="width: 100px; margin-left: 1em;" />
100 102
</form>
101 103

  
104
<form name="details" action="manual_install.php" method="post" class="{UNINSTALL_VISIBLE}">
105
	<br />{TEXT_FILE}: "uninstall.php"
106
	<input type="hidden" name="action" value="uninstall" />
107
	<select name="file" style="width: 250px;">
108
	<option value="" selected>{TEXT_PLEASE_SELECT}...</option>
109
		<!-- BEGIN uninstall_list_block -->
110
		<option value="{VALUE}">{NAME}</option>
111
		<!-- END uninstall_list_block -->
112
	</select>
113
	<input type="submit" name="submit" value="{TEXT_EXECUTE}" style="width: 100px; margin-left: 1em;" />
114
</form>
115

  
116
<p style="color: red;">{TEXT_MANUAL_INSTALLATION_WARNING}</p>
117
</div>
118

  
102 119
<!-- END main_block -->
trunk/wb/languages/FI.php
121 121
$HEADING['MODIFY_GROUP'] = 'Muokkaa ryhm&auml;&auml;';
122 122

  
123 123
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
124
$HEADING['MANUAL_MODULE_INSTALLATION'] = 'Execute module "install.php" manually';
124
$HEADING['INVOKE_MODULE_FILES'] = 'Execute module files manually';
125 125

  
126 126
// Other text
127 127
$TEXT['OPEN'] = 'Open';
......
593 593
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'Sivupohjan lataus onnistui';
594 594
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Kielen lataus onnistui';
595 595
$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.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'The module installation file "install.php" is not executed when modules are uploaded via FTP (not recommended). For those modules, you have to execute the "install.php" manually.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'When modules are uploaded via FTP (not recommended), the module installation files <tt>install.php</tt>, <tt>upgrade.php</tt> or <tt>uninstall.php</tt> will not be executed automatically. Those modules may not work correct or do not uninstall properly.<br /><br />You can execute the module files manually for modules uploaded via FTP below.';
597 597
$MESSAGE['ADDON']['MANUAL_INSTALLATION_WARNING'] = 'Warning: Existing module database entries will get lost. Only use this option if you experience problems with modules uploaded via FTP.';
598 598

  
599 599
?>
trunk/wb/languages/EN.php
121 121
$HEADING['MODIFY_GROUP'] = 'Modify Group';
122 122

  
123 123
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
124
$HEADING['MANUAL_MODULE_INSTALLATION'] = 'Execute module "install.php" manually';
124
$HEADING['INVOKE_MODULE_FILES'] = 'Execute module files manually';
125 125

  
126 126
// Other text
127 127
$TEXT['OPEN'] = 'Open';
......
593 593
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'Templates reloaded successfully';
594 594
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Languages reloaded successfully';
595 595
$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.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'The module installation file "install.php" is not executed when modules are uploaded via FTP (not recommended). For those modules, you have to execute the "install.php" manually.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'When modules are uploaded via FTP (not recommended), the module installation files <tt>install.php</tt>, <tt>upgrade.php</tt> or <tt>uninstall.php</tt> will not be executed automatically. Those modules may not work correct or do not uninstall properly.<br /><br />You can execute the module files manually for modules uploaded via FTP below.';
597 597
$MESSAGE['ADDON']['MANUAL_INSTALLATION_WARNING'] = 'Warning: Existing module database entries will get lost. Only use this option if you experience problems with modules uploaded via FTP.';
598 598

  
599 599
?>
trunk/wb/languages/CS.php
121 121
$HEADING['MODIFY_GROUP'] = 'Zm&#283;nit skupinu';
122 122

  
123 123
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
124
$HEADING['MANUAL_MODULE_INSTALLATION'] = 'Execute module "install.php" manually';
124
$HEADING['INVOKE_MODULE_FILES'] = 'Execute module files manually';
125 125

  
126 126
// Other text
127 127
$TEXT['OPEN'] = 'Open';
......
593 593
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = '&Scaron;ablony byly &uacute;sp&#283;&scaron;n&#283; p&#345;ehr&aacute;ny';
594 594
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Jazyky byly &uacute;sp&#283;&scaron;n&#283; p&#345;ehr&aacute;ny';
595 595
$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.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'The module installation file "install.php" is not executed when modules are uploaded via FTP (not recommended). For those modules, you have to execute the "install.php" manually.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'When modules are uploaded via FTP (not recommended), the module installation files <tt>install.php</tt>, <tt>upgrade.php</tt> or <tt>uninstall.php</tt> will not be executed automatically. Those modules may not work correct or do not uninstall properly.<br /><br />You can execute the module files manually for modules uploaded via FTP below.';
597 597
$MESSAGE['ADDON']['MANUAL_INSTALLATION_WARNING'] = 'Warning: Existing module database entries will get lost. Only use this option if you experience problems with modules uploaded via FTP.';
598 598

  
599 599
?>
trunk/wb/languages/SE.php
121 121
$HEADING['MODIFY_GROUP'] = '&Auml;ndra grupp';
122 122

  
123 123
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
124
$HEADING['MANUAL_MODULE_INSTALLATION'] = 'Execute module "install.php" manually';
124
$HEADING['INVOKE_MODULE_FILES'] = 'Execute module files manually';
125 125

  
126 126
// Other text
127 127
$TEXT['OPEN'] = 'Open';
......
593 593
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'Mallar laddades om';
594 594
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Spr&aring;k laddades om';
595 595
$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.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'The module installation file "install.php" is not executed when modules are uploaded via FTP (not recommended). For those modules, you have to execute the "install.php" manually.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'When modules are uploaded via FTP (not recommended), the module installation files <tt>install.php</tt>, <tt>upgrade.php</tt> or <tt>uninstall.php</tt> will not be executed automatically. Those modules may not work correct or do not uninstall properly.<br /><br />You can execute the module files manually for modules uploaded via FTP below.';
597 597
$MESSAGE['ADDON']['MANUAL_INSTALLATION_WARNING'] = 'Warning: Existing module database entries will get lost. Only use this option if you experience problems with modules uploaded via FTP.';
598 598

  
599 599
?>
trunk/wb/languages/ES.php
121 121
$HEADING['MODIFY_GROUP'] = 'Modificar Grupo';
122 122

  
123 123
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
124
$HEADING['MANUAL_MODULE_INSTALLATION'] = 'Execute module "install.php" manually';
124
$HEADING['INVOKE_MODULE_FILES'] = 'Execute module files manually';
125 125

  
126 126
// Other text
127 127
$TEXT['OPEN'] = 'Open';
......
593 593
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'Plantillas recargadas correctamente';
594 594
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Lenguajes recargados correctamente';
595 595
$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.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'The module installation file "install.php" is not executed when modules are uploaded via FTP (not recommended). For those modules, you have to execute the "install.php" manually.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'When modules are uploaded via FTP (not recommended), the module installation files <tt>install.php</tt>, <tt>upgrade.php</tt> or <tt>uninstall.php</tt> will not be executed automatically. Those modules may not work correct or do not uninstall properly.<br /><br />You can execute the module files manually for modules uploaded via FTP below.';
597 597
$MESSAGE['ADDON']['MANUAL_INSTALLATION_WARNING'] = 'Warning: Existing module database entries will get lost. Only use this option if you experience problems with modules uploaded via FTP.';
598 598

  
599 599
?>
trunk/wb/languages/FR.php
121 121
$HEADING['MODIFY_GROUP'] = 'Modifier un groupe';
122 122

  
123 123
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
124
$HEADING['MANUAL_MODULE_INSTALLATION'] = 'Execute module "install.php" manually';
124
$HEADING['INVOKE_MODULE_FILES'] = 'Execute module files manually';
125 125

  
126 126
// Other text
127 127
$TEXT['OPEN'] = 'Open';
......
593 593
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'Mod&egrave;les r&eacute;install&eacute;s avec succ&egrave;s';
594 594
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Langages r&eacute;install&eacute;s avec succ&egrave;s';
595 595
$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.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'The module installation file "install.php" is not executed when modules are uploaded via FTP (not recommended). For those modules, you have to execute the "install.php" manually.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'When modules are uploaded via FTP (not recommended), the module installation files <tt>install.php</tt>, <tt>upgrade.php</tt> or <tt>uninstall.php</tt> will not be executed automatically. Those modules may not work correct or do not uninstall properly.<br /><br />You can execute the module files manually for modules uploaded via FTP below.';
597 597
$MESSAGE['ADDON']['MANUAL_INSTALLATION_WARNING'] = 'Warning: Existing module database entries will get lost. Only use this option if you experience problems with modules uploaded via FTP.';
598 598

  
599 599
?>
trunk/wb/languages/ET.php
121 121
$HEADING['MODIFY_GROUP'] = 'Muuda Gruppi';
122 122

  
123 123
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
124
$HEADING['MANUAL_MODULE_INSTALLATION'] = 'Execute module "install.php" manually';
124
$HEADING['INVOKE_MODULE_FILES'] = 'Execute module files manually';
125 125

  
126 126
// Other text
127 127
$TEXT['OPEN'] = 'Open';
......
593 593
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'Templates reloaded successfully';
594 594
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Languages reloaded successfully';
595 595
$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.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'The module installation file "install.php" is not executed when modules are uploaded via FTP (not recommended). For those modules, you have to execute the "install.php" manually.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'When modules are uploaded via FTP (not recommended), the module installation files <tt>install.php</tt>, <tt>upgrade.php</tt> or <tt>uninstall.php</tt> will not be executed automatically. Those modules may not work correct or do not uninstall properly.<br /><br />You can execute the module files manually for modules uploaded via FTP below.';
597 597
$MESSAGE['ADDON']['MANUAL_INSTALLATION_WARNING'] = 'Warning: Existing module database entries will get lost. Only use this option if you experience problems with modules uploaded via FTP.';
598 598

  
599 599
?>
trunk/wb/languages/HR.php
121 121
$HEADING['MODIFY_GROUP'] = 'Izmjeni grupu';
122 122

  
123 123
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
124
$HEADING['MANUAL_MODULE_INSTALLATION'] = 'Execute module "install.php" manually';
124
$HEADING['INVOKE_MODULE_FILES'] = 'Execute module files manually';
125 125

  
126 126
// Other text
127 127
$TEXT['OPEN'] = 'Open';
......
593 593
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'Uspje&scaron;no nasnimljeni predlo&scaron;ci';
594 594
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Uspje&scaron;no nasnimljeni jezici';
595 595
$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.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'The module installation file "install.php" is not executed when modules are uploaded via FTP (not recommended). For those modules, you have to execute the "install.php" manually.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'When modules are uploaded via FTP (not recommended), the module installation files <tt>install.php</tt>, <tt>upgrade.php</tt> or <tt>uninstall.php</tt> will not be executed automatically. Those modules may not work correct or do not uninstall properly.<br /><br />You can execute the module files manually for modules uploaded via FTP below.';
597 597
$MESSAGE['ADDON']['MANUAL_INSTALLATION_WARNING'] = 'Warning: Existing module database entries will get lost. Only use this option if you experience problems with modules uploaded via FTP.';
598 598

  
599 599
?>
trunk/wb/languages/NL.php
121 121
$HEADING['MODIFY_GROUP'] = 'Groepsgegevens';
122 122

  
123 123
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
124
$HEADING['MANUAL_MODULE_INSTALLATION'] = 'Execute module "install.php" manually';
124
$HEADING['INVOKE_MODULE_FILES'] = 'Execute module files manually';
125 125

  
126 126
// Other text
127 127
$TEXT['OPEN'] = 'Open';
......
593 593
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'Templates succesvol herladen';
594 594
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Taalbestanden succesvol herladen';
595 595
$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.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'The module installation file "install.php" is not executed when modules are uploaded via FTP (not recommended). For those modules, you have to execute the "install.php" manually.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'When modules are uploaded via FTP (not recommended), the module installation files <tt>install.php</tt>, <tt>upgrade.php</tt> or <tt>uninstall.php</tt> will not be executed automatically. Those modules may not work correct or do not uninstall properly.<br /><br />You can execute the module files manually for modules uploaded via FTP below.';
597 597
$MESSAGE['ADDON']['MANUAL_INSTALLATION_WARNING'] = 'Warning: Existing module database entries will get lost. Only use this option if you experience problems with modules uploaded via FTP.';
598 598

  
599 599
?>
trunk/wb/languages/PL.php
121 121
$HEADING['MODIFY_GROUP'] = 'Zmie&#324; grup&#281;';
122 122

  
123 123
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
124
$HEADING['MANUAL_MODULE_INSTALLATION'] = 'Execute module "install.php" manually';
124
$HEADING['INVOKE_MODULE_FILES'] = 'Execute module files manually';
125 125

  
126 126
// Other text
127 127
$TEXT['OPEN'] = 'Open';
......
593 593
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'Szablony zosta&#322;y za&#322;adowane ponownie';
594 594
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'J&#281;zyki zosta&#322;y za&#322;adowane ponownie';
595 595
$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.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'The module installation file "install.php" is not executed when modules are uploaded via FTP (not recommended). For those modules, you have to execute the "install.php" manually.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'When modules are uploaded via FTP (not recommended), the module installation files <tt>install.php</tt>, <tt>upgrade.php</tt> or <tt>uninstall.php</tt> will not be executed automatically. Those modules may not work correct or do not uninstall properly.<br /><br />You can execute the module files manually for modules uploaded via FTP below.';
597 597
$MESSAGE['ADDON']['MANUAL_INSTALLATION_WARNING'] = 'Warning: Existing module database entries will get lost. Only use this option if you experience problems with modules uploaded via FTP.';
598 598

  
599 599
?>
trunk/wb/languages/HU.php
121 121
$HEADING['MODIFY_GROUP'] = 'csoport m&oacute;dos&iacute;t&aacute;sa';
122 122

  
123 123
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
124
$HEADING['MANUAL_MODULE_INSTALLATION'] = 'Execute module "install.php" manually';
124
$HEADING['INVOKE_MODULE_FILES'] = 'Execute module files manually';
125 125

  
126 126
// Other text
127 127
$TEXT['OPEN'] = 'Open';
......
593 593
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'Templates reloaded successfully';
594 594
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Languages reloaded successfully';
595 595
$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.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'The module installation file "install.php" is not executed when modules are uploaded via FTP (not recommended). For those modules, you have to execute the "install.php" manually.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'When modules are uploaded via FTP (not recommended), the module installation files <tt>install.php</tt>, <tt>upgrade.php</tt> or <tt>uninstall.php</tt> will not be executed automatically. Those modules may not work correct or do not uninstall properly.<br /><br />You can execute the module files manually for modules uploaded via FTP below.';
597 597
$MESSAGE['ADDON']['MANUAL_INSTALLATION_WARNING'] = 'Warning: Existing module database entries will get lost. Only use this option if you experience problems with modules uploaded via FTP.';
598 598

  
599 599
?>
trunk/wb/languages/IT.php
121 121
$HEADING['MODIFY_GROUP'] = 'Modifica Gruppo';
122 122

  
123 123
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
124
$HEADING['MANUAL_MODULE_INSTALLATION'] = 'Execute module "install.php" manually';
124
$HEADING['INVOKE_MODULE_FILES'] = 'Execute module files manually';
125 125

  
126 126
// Other text
127 127
$TEXT['OPEN'] = 'Open';
......
593 593
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'Templates ricaricati con successo';
594 594
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Lingue ricaricate con successo';
595 595
$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.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'The module installation file "install.php" is not executed when modules are uploaded via FTP (not recommended). For those modules, you have to execute the "install.php" manually.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'When modules are uploaded via FTP (not recommended), the module installation files <tt>install.php</tt>, <tt>upgrade.php</tt> or <tt>uninstall.php</tt> will not be executed automatically. Those modules may not work correct or do not uninstall properly.<br /><br />You can execute the module files manually for modules uploaded via FTP below.';
597 597
$MESSAGE['ADDON']['MANUAL_INSTALLATION_WARNING'] = 'Warning: Existing module database entries will get lost. Only use this option if you experience problems with modules uploaded via FTP.';
598 598

  
599 599
?>
trunk/wb/languages/NO.php
121 121
$HEADING['MODIFY_GROUP'] = 'Endre Gruppe';
122 122

  
123 123
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
124
$HEADING['MANUAL_MODULE_INSTALLATION'] = 'Execute module "install.php" manually';
124
$HEADING['INVOKE_MODULE_FILES'] = 'Execute module files manually';
125 125

  
126 126
// Other text
127 127
$TEXT['OPEN'] = '&Aring;pne';
......
593 593
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'Lykkes i &aring; oppdatere maler';
594 594
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Lykkes i &aring; oppdatere spr&aring;k';
595 595
$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.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'The module installation file "install.php" is not executed when modules are uploaded via FTP (not recommended). For those modules, you have to execute the "install.php" manually.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'When modules are uploaded via FTP (not recommended), the module installation files <tt>install.php</tt>, <tt>upgrade.php</tt> or <tt>uninstall.php</tt> will not be executed automatically. Those modules may not work correct or do not uninstall properly.<br /><br />You can execute the module files manually for modules uploaded via FTP below.';
597 597
$MESSAGE['ADDON']['MANUAL_INSTALLATION_WARNING'] = 'Warning: Existing module database entries will get lost. Only use this option if you experience problems with modules uploaded via FTP.';
598 598

  
599 599
?>
trunk/wb/languages/LV.php
121 121
$HEADING['MODIFY_GROUP'] = 'Mainit grupu';
122 122

  
123 123
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
124
$HEADING['MANUAL_MODULE_INSTALLATION'] = 'Execute module "install.php" manually';
124
$HEADING['INVOKE_MODULE_FILES'] = 'Execute module files manually';
125 125

  
126 126
// Other text
127 127
$TEXT['OPEN'] = 'Open';
......
593 593
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = '&scaron;abloni veiksmigi parladeti';
594 594
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Valodas veiksmigi parladetas';
595 595
$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.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'The module installation file "install.php" is not executed when modules are uploaded via FTP (not recommended). For those modules, you have to execute the "install.php" manually.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'When modules are uploaded via FTP (not recommended), the module installation files <tt>install.php</tt>, <tt>upgrade.php</tt> or <tt>uninstall.php</tt> will not be executed automatically. Those modules may not work correct or do not uninstall properly.<br /><br />You can execute the module files manually for modules uploaded via FTP below.';
597 597
$MESSAGE['ADDON']['MANUAL_INSTALLATION_WARNING'] = 'Warning: Existing module database entries will get lost. Only use this option if you experience problems with modules uploaded via FTP.';
598 598

  
599 599
?>
trunk/wb/languages/CA.php
121 121
$HEADING['MODIFY_GROUP'] = 'Modifica Grup';
122 122

  
123 123
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
124
$HEADING['MANUAL_MODULE_INSTALLATION'] = 'Execute module "install.php" manually';
124
$HEADING['INVOKE_MODULE_FILES'] = 'Execute module files manually';
125 125

  
126 126
// Other text
127 127
$TEXT['OPEN'] = 'Open';
......
593 593
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'Templates reloaded successfully';
594 594
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Languages reloaded successfully';
595 595
$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.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'The module installation file "install.php" is not executed when modules are uploaded via FTP (not recommended). For those modules, you have to execute the "install.php" manually.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'When modules are uploaded via FTP (not recommended), the module installation files <tt>install.php</tt>, <tt>upgrade.php</tt> or <tt>uninstall.php</tt> will not be executed automatically. Those modules may not work correct or do not uninstall properly.<br /><br />You can execute the module files manually for modules uploaded via FTP below.';
597 597
$MESSAGE['ADDON']['MANUAL_INSTALLATION_WARNING'] = 'Warning: Existing module database entries will get lost. Only use this option if you experience problems with modules uploaded via FTP.';
598 598

  
599 599
?>
trunk/wb/languages/PT.php
121 121
$HEADING['MODIFY_GROUP'] = 'Modificar Grupo';
122 122

  
123 123
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
124
$HEADING['MANUAL_MODULE_INSTALLATION'] = 'Execute module "install.php" manually';
124
$HEADING['INVOKE_MODULE_FILES'] = 'Execute module files manually';
125 125

  
126 126
// Other text
127 127
$TEXT['OPEN'] = 'Open';
......
593 593
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'Temas (Templates) recarregados com sucesso';
594 594
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Idiomas recarregados com sucesso';
595 595
$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.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'The module installation file "install.php" is not executed when modules are uploaded via FTP (not recommended). For those modules, you have to execute the "install.php" manually.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'When modules are uploaded via FTP (not recommended), the module installation files <tt>install.php</tt>, <tt>upgrade.php</tt> or <tt>uninstall.php</tt> will not be executed automatically. Those modules may not work correct or do not uninstall properly.<br /><br />You can execute the module files manually for modules uploaded via FTP below.';
597 597
$MESSAGE['ADDON']['MANUAL_INSTALLATION_WARNING'] = 'Warning: Existing module database entries will get lost. Only use this option if you experience problems with modules uploaded via FTP.';
598 598

  
599 599
?>
trunk/wb/languages/DA.php
121 121
$HEADING['MODIFY_GROUP'] = 'Ret gruppe';
122 122

  
123 123
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
124
$HEADING['MANUAL_MODULE_INSTALLATION'] = 'Execute module "install.php" manually';
124
$HEADING['INVOKE_MODULE_FILES'] = 'Execute module files manually';
125 125

  
126 126
// Other text
127 127
$TEXT['OPEN'] = '&Aring;ben';
......
593 593
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'Templates opdateret med succes';
594 594
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Sprog opdateret med succes';
595 595
$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.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'The module installation file "install.php" is not executed when modules are uploaded via FTP (not recommended). For those modules, you have to execute the "install.php" manually.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'When modules are uploaded via FTP (not recommended), the module installation files <tt>install.php</tt>, <tt>upgrade.php</tt> or <tt>uninstall.php</tt> will not be executed automatically. Those modules may not work correct or do not uninstall properly.<br /><br />You can execute the module files manually for modules uploaded via FTP below.';
597 597
$MESSAGE['ADDON']['MANUAL_INSTALLATION_WARNING'] = 'Warning: Existing module database entries will get lost. Only use this option if you experience problems with modules uploaded via FTP.';
598 598

  
599 599
?>
trunk/wb/languages/TR.php
121 121
$HEADING['MODIFY_GROUP'] = 'Grup D&uuml;zenle';
122 122

  
123 123
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
124
$HEADING['MANUAL_MODULE_INSTALLATION'] = 'Execute module "install.php" manually';
124
$HEADING['INVOKE_MODULE_FILES'] = 'Execute module files manually';
125 125

  
126 126
// Other text
127 127
$TEXT['OPEN'] = 'Open';
......
593 593
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'Kal&yacute;plar, ba&thorn;ar&yacute;l&yacute; bir &thorn;ekildeninkini tekrar y&uuml;klendi';
594 594
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Diller, ba&thorn;ar&yacute;l&yacute; bir &thorn;ekildeninkini tekrar y&uuml;klendi';
595 595
$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.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'The module installation file "install.php" is not executed when modules are uploaded via FTP (not recommended). For those modules, you have to execute the "install.php" manually.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'When modules are uploaded via FTP (not recommended), the module installation files <tt>install.php</tt>, <tt>upgrade.php</tt> or <tt>uninstall.php</tt> will not be executed automatically. Those modules may not work correct or do not uninstall properly.<br /><br />You can execute the module files manually for modules uploaded via FTP below.';
597 597
$MESSAGE['ADDON']['MANUAL_INSTALLATION_WARNING'] = 'Warning: Existing module database entries will get lost. Only use this option if you experience problems with modules uploaded via FTP.';
598 598

  
599 599
?>
trunk/wb/languages/RU.php
121 121
$HEADING['MODIFY_GROUP'] = '&#1048;&#1079;&#1084;&#1077;&#1085;&#1080;&#1090;&#1100; &#1075;&#1088;&#1091;&#1087;&#1087;&#1091;';
122 122

  
123 123
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
124
$HEADING['MANUAL_MODULE_INSTALLATION'] = 'Execute module "install.php" manually';
124
$HEADING['INVOKE_MODULE_FILES'] = 'Execute module files manually';
125 125

  
126 126
// Other text
127 127
$TEXT['OPEN'] = '&#1054;&#1090;&#1082;&#1088;&#1099;&#1090;&#1100;';
......
593 593
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = '&#1064;&#1072;&#1073;&#1083;&#1086;&#1085;&#1099; &#1087;&#1077;&#1088;&#1077;&#1079;&#1072;&#1075;&#1088;&#1091;&#1078;&#1077;&#1085;&#1099; &#1091;&#1089;&#1087;&#1077;&#1096;&#1085;&#1086;';
594 594
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = '&#1071;&#1079;&#1099;&#1082;&#1080; &#1087;&#1077;&#1088;&#1077;&#1079;&#1072;&#1075;&#1088;&#1091;&#1078;&#1077;&#1085;&#1099; &#1091;&#1089;&#1087;&#1077;&#1096;&#1085;&#1086;';
595 595
$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.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'The module installation file "install.php" is not executed when modules are uploaded via FTP (not recommended). For those modules, you have to execute the "install.php" manually.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'When modules are uploaded via FTP (not recommended), the module installation files <tt>install.php</tt>, <tt>upgrade.php</tt> or <tt>uninstall.php</tt> will not be executed automatically. Those modules may not work correct or do not uninstall properly.<br /><br />You can execute the module files manually for modules uploaded via FTP below.';
597 597
$MESSAGE['ADDON']['MANUAL_INSTALLATION_WARNING'] = 'Warning: Existing module database entries will get lost. Only use this option if you experience problems with modules uploaded via FTP.';
598 598

  
599 599
?>
trunk/wb/languages/DE.php
121 121
$HEADING['MODIFY_GROUP'] = 'Gruppen &auml;ndern';
122 122

  
123 123
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On Voraussetzungen nicht erf&uuml;llt';
124
$HEADING['MANUAL_MODULE_INSTALLATION'] = 'Modul "install.php" manuell aufrufen';
124
$HEADING['INVOKE_MODULE_FILES'] = 'Moduldateien manuell aufrufen';
125 125

  
126 126
// Other text
127 127
$TEXT['OPEN'] = '&Ouml;ffnen';
......
593 593
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'Designvorlagen erfolgreich geladen';
594 594
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Sprachen erfolgreich geladen';
595 595
$MESSAGE['ADDON']['PRECHECK_FAILED'] = 'Installation fehlgeschlagen. Dein System erf&uuml;llt nicht alle Voraussetzungen die f&uuml;r diese Erweiterung ben&ouml;tigt werden. Um diese Erweiterung nutzen zu k&ouml;nnen, m&uuml;ssen nachfolgende Updates durchgef&uuml;hrt werden.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'Beim Hochladen eines Moduls per FTP (nicht empfohlen), wird die Modulinstallationsdatei "install.php" nicht aufgerufen. Diese Module funktionieren dann meist nicht richtig. In diesem Fall kann die Installationsdatei "install.php" eines bereits installierten Moduls nachtr&auml;glich manuell gestartet werden.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'Beim Hochladen oder L&ouml;schen von Modulen per FTP (nicht empfohlen), werden eventuell vorhandene Moduldateien <tt>install.php</tt>, <tt>upgrade.php</tt> oder <tt>uninstall.php</tt> nicht automatisch ausgef&uuml;hrt. Solche Module funktionieren daher meist nicht richtig, oder hinterlassen Datenbankeintr&auml;ge beim L&ouml;schen per FTP.<br /><br /> Nachfolgend k&ouml;nnen die Moduldateien von per FTP hochgeladenen Modulen manuell ausgef&uuml;hrt werden.';
597 597
$MESSAGE['ADDON']['MANUAL_INSTALLATION_WARNING'] = 'Warnung: Eventuell vorhandene Datenbankeintr&auml;ge eines Moduls gehen verloren. Bitte nur bei bei Problemen mit per FTP hochgeladenen Modulen verwenden. ';
598 598

  
599 599
?>
trunk/wb/languages/BG.php
121 121
$HEADING['MODIFY_GROUP'] = '&#1055;&#1088;&#1086;&#1084;&#1077;&#1085;&#1080; &#1075;&#1088;&#1091;&#1087;&#1072;';
122 122

  
123 123
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
124
$HEADING['MANUAL_MODULE_INSTALLATION'] = 'Execute module "install.php" manually';
124
$HEADING['INVOKE_MODULE_FILES'] = 'Execute module files manually';
125 125

  
126 126
// Other text
127 127
$TEXT['OPEN'] = 'Open';
......
593 593
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'Templates reloaded successfully';
594 594
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Languages reloaded successfully';
595 595
$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.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'The module installation file "install.php" is not executed when modules are uploaded via FTP (not recommended). For those modules, you have to execute the "install.php" manually.';
596
$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'When modules are uploaded via FTP (not recommended), the module installation files <tt>install.php</tt>, <tt>upgrade.php</tt> or <tt>uninstall.php</tt> will not be executed automatically. Those modules may not work correct or do not uninstall properly.<br /><br />You can execute the module files manually for modules uploaded via FTP below.';
597 597
$MESSAGE['ADDON']['MANUAL_INSTALLATION_WARNING'] = 'Warning: Existing module database entries will get lost. Only use this option if you experience problems with modules uploaded via FTP.';
598 598

  
599 599
?>

Also available in: Unified diff