Project

General

Profile

« Previous | Next » 

Revision 925

Added by doc over 15 years ago

Added option to perform pre-installation checks to test requirements of Add-Ons

View differences:

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

  
13 13
------------------------------------- 2.8.0 -------------------------------------
14
13-Feb-2009 Christian Sommer
15
+	added option to perform pre-installation checks to test requirements of Add-Ons
16
#	added error messages to installation process for Add-Ons with wrong file type
14 17
08-Feb-2009 Christian Sommer
15 18
#	fixed warning if database connection failed during installation process
16 19
06-Feb-2009 Christian Sommer
trunk/wb/admin/templates/install.php
29 29
	exit(0);
30 30
}
31 31

  
32
// do not display notices and warnings during installation
33
error_reporting(E_ALL ^ E_NOTICE ^ E_WARNING);
34

  
32 35
// Setup admin object
33 36
require('../../config.php');
34 37
require_once(WB_PATH.'/framework/class.admin.php');
......
57 60
$archive = new PclZip($temp_file);
58 61
// Unzip the files to the temp unzip folder
59 62
$list = $archive->extract(PCLZIP_OPT_PATH, $temp_unzip);
63

  
64
// Check if uploaded file is a valid Add-On zip file
65
if (!($list && file_exists($temp_unzip . 'index.php'))) $admin->print_error($MESSAGE['GENERIC']['INVALID_ADDON_FILE']);
66

  
60 67
// Include the templates info file
61 68
require($temp_unzip.'info.php');
69

  
70
// Perform Add-on requirement checks before proceeding
71
require(WB_PATH . '/framework/addon.precheck.inc.php');
72
preCheckAddon($temp_file);
73

  
62 74
// Delete the temp unzip directory
63 75
rm_full_dir($temp_unzip);
64 76

  
......
75 87
	if(file_exists(WB_PATH.'/templates/'.$template_directory.'/info.php')) {
76 88
		require(WB_PATH.'/templates/'.$template_directory.'/info.php');
77 89
		// Version to be installed is older than currently installed version
78
		if ($template_version>$new_template_version) {
90
		if (versionCompare($template_version, $new_template_version, '>=')) {
79 91
			if(file_exists($temp_file)) { unlink($temp_file); } // Remove temp file
80 92
			$admin->print_error($MESSAGE['GENERIC']['ALREADY_INSTALLED']);
81 93
		}
trunk/wb/admin/languages/install.php
29 29
	exit(0);
30 30
}
31 31

  
32
// do not display notices and warnings during installation
33
error_reporting(E_ALL ^ E_NOTICE ^ E_WARNING);
34

  
32 35
// Setup admin object
33 36
require('../../config.php');
34 37
require_once(WB_PATH.'/framework/class.admin.php');
......
65 68
	$admin->print_error($MESSAGE['GENERIC']['CANNOT_UPLOAD']);
66 69
}
67 70

  
71
// Check if uploaded file is a valid language file (no binary file etc.)
72
$content = file_get_contents($temp_file);
73
if (strpos($content, '<?php') === false) $admin->print_error($MESSAGE['GENERIC']['INVALID_LANGUAGE_FILE']);
74

  
68 75
// Remove any vars with name "language_code"
69 76
unset($language_code);
70 77

  
78
// Include precheck files for versionCompare routine
79
require(WB_PATH . '/framework/addon.precheck.inc.php');
80

  
71 81
// Read the temp file and look for a language code
72 82
require($temp_file);
73 83
$new_language_version=$language_version;
......
77 87
	if(file_exists($temp_file)) { unlink($temp_file); } // Remove temp file
78 88
	// Restore to correct language
79 89
	require(WB_PATH.'/languages/'.LANGUAGE.'.php');
80
	$admin->print_error($MESSAGE['GENERIC']['INVALID']);
90
	$admin->print_error($MESSAGE['GENERIC']['INVALID_LANGUAGE_FILE']);
81 91
}
82 92

  
83 93
// Set destination for language file
84 94
$language_file = WB_PATH.'/languages/'.$language_code.'.php';
95
$action="install";
85 96

  
86 97
// Move to new location
87 98
if (file_exists($language_file)) {
88 99
	require($language_file);
89
	if ($language_version>$new_language_version) {
100
	if (versionCompare($language_version, $new_language_version, '>=')) {
101
		// Restore to correct language
102
		require(WB_PATH . '/languages/' . LANGUAGE . '.php');
90 103
		$admin->print_error($MESSAGE['GENERIC']['ALREADY_INSTALLED']);
91 104
	}
105
	$action="upgrade";
92 106
	unlink($language_file);
93 107
}
94 108

  
......
104 118
require(WB_PATH.'/languages/'.LANGUAGE.'.php');
105 119

  
106 120
// Print success message
107
$admin->print_success($MESSAGE['GENERIC']['INSTALLED']);
121
if ($action=="install") {
122
	$admin->print_success($MESSAGE['GENERIC']['INSTALLED']);
123
} else {
124
	$admin->print_success($MESSAGE['GENERIC']['UPGRADED']);
125
}
108 126

  
109 127
// Print admin footer
110 128
$admin->print_footer();
trunk/wb/admin/modules/install.php
29 29
	exit(0);
30 30
}
31 31

  
32
// do not display notices and warnings during installation
33
error_reporting(E_ALL ^ E_NOTICE ^ E_WARNING);
34

  
32 35
// Setup admin object
33 36
require('../../config.php');
34 37
require_once(WB_PATH.'/framework/class.admin.php');
......
57 60
$archive = new PclZip($temp_file);
58 61
// Unzip the files to the temp unzip folder
59 62
$list = $archive->extract(PCLZIP_OPT_PATH, $temp_unzip);
63

  
64
// Check if uploaded file is a valid Add-On zip file
65
if (!($list && file_exists($temp_unzip . 'index.php'))) $admin->print_error($MESSAGE['GENERIC']['INVALID_ADDON_FILE']);
66

  
60 67
// Include the modules info file
61 68
require($temp_unzip.'info.php');
69

  
70
// Perform Add-on requirement checks before proceeding
71
require(WB_PATH . '/framework/addon.precheck.inc.php');
72
preCheckAddon($temp_file);
73

  
62 74
// Delete the temp unzip directory
63 75
rm_full_dir($temp_unzip);
64 76

  
......
76 88
	if(file_exists(WB_PATH.'/modules/'.$module_directory.'/info.php')) {
77 89
		require(WB_PATH.'/modules/'.$module_directory.'/info.php');
78 90
		// Version to be installed is older than currently installed version
79
		if ($module_version>=$new_module_version) {
91
		if (versionCompare($module_version, $new_module_version, '>=')) {
80 92
			if(file_exists($temp_file)) { unlink($temp_file); } // Remove temp file
81 93
			$admin->print_error($MESSAGE['GENERIC']['ALREADY_INSTALLED']);
82 94
		}
trunk/wb/framework/addon.precheck.inc.php
1
<?php
2
/**
3
 * $Id:$
4
 * Website Baker Add-On precheck functions
5
 *
6
 * This file contains the functions of the pretest performed upfront
7
 * of the Add-On installation process. The functions allows developers
8
 * to specify requirements for their Add-On.
9
 *
10
 * LICENSE: GNU Lesser General Public License 3.0
11
 * 
12
 * @author		Christian Sommer
13
 * @copyright	(c) 2009
14
 * @license		http://www.gnu.org/copyleft/lesser.html
15
 * @version		0.2.1
16
 * @platform	Website Baker 2.7
17
 *
18
 * Website Baker Project <http://www.websitebaker.org/>
19
 * Copyright (C) 2004-2009, Ryan Djurovich
20
 *
21
 * Website Baker is free software; you can redistribute it and/or modify
22
 * it under the terms of the GNU General Public License as published by
23
 * the Free Software Foundation; either version 2 of the License, or
24
 * (at your option) any later version.
25
 *
26
 * Website Baker is distributed in the hope that it will be useful,
27
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
28
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
29
 * GNU General Public License for more details.
30
 *
31
 * You should have received a copy of the GNU General Public License
32
 * along with Website Baker; if not, write to the Free Software
33
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
34
*/
35

  
36
// prevent this file from being accessed directly
37
if (!defined('WB_PATH')) die(header('Location: ../../index.php'));
38

  
39
function getVersion($version, $strip_suffix = true)
40
{
41
	/**
42
	 * This funtion creates a version string following the major.minor.revision convention
43
	 * The minor and revision part of the version may not exceed 999 (three digits)
44
	 * An optional suffix part can be added after revision (requires $strip_suffix = false)
45
	 *
46
	 * EXAMPLES: input --> output
47
	 *	5 --> 5.000000; 5.0 --> 5.000000; 5.0.0 --> 5.000000
48
	 * 	5.2 --> 5.002000; 5.20 --> 5.002000; 5.2.0 --> 5.002000
49
	 * 	5.21 --> 5.002001; 5.2.1 --> 5.002001;
50
	 * 	5.27.1 --> 5.027001; 5.2.71 --> 5.002071;
51
	 * 	5.27.1 rc1 --> 5.027001_RC1 ($strip_suffix:= false)
52
	 */
53
	// replace comma by decimal point
54
	$version = str_replace(',', '.', $version);
55

  
56
	// convert version into major.minor.revision numbering system
57
	@list($major, $minor, $revision) = explode('.', $version, 3);
58

  
59
	// convert versioning style 5.21 into 5.2.1
60
	if ($revision == '' && strlen(intval($minor)) == 2) {
61
		$revision = substr($minor, -1);
62
		$minor = substr($minor, 0, 1);
63
	}
64
	
65
	// extract possible non numerical suffix from revision part (e.g. Alpha, Beta, RC1)
66
	$suffix = strtoupper(trim(substr($revision, strlen(intval($revision)))));
67

  
68
	// return standard version number (minor and revision numbers may not exceed 999)
69
	return (int) $major . '.' . sprintf('%03d', (int) $minor) . sprintf('%03d', (int) $revision) . 
70
		(($strip_suffix == false && $suffix != '') ? '_' . $suffix : '');
71
}
72

  
73
function versionCompare($version1, $version2, $operator = '>=')
74
{
75
	/**
76
	 * This funtion performs a comparison of two provided version strings
77
	 * The versions are first converted into a string following the major.minor.revision 
78
	 * convention and performs a version_compare afterwards.
79
	 */
80
	return version_compare(getVersion($version1), getVersion($version2), $operator);
81
}
82

  
83
function sortPreCheckArray($precheck_array)
84
{
85
	/**
86
	 * This funtion sorts the precheck array to a common format
87
	 */
88
	// define desired precheck order
89
	$key_order = array('WB_VERSION', 'WB_ADDONS', 'PHP_VERSION', 'PHP_EXTENSIONS', 'PHP_SETTINGS', 'CUSTOM_CHECKS');
90

  
91
	$temp_array = array();
92
	foreach($key_order as $key) {
93
		if (!isset($precheck_array[$key])) continue;
94
		$temp_array[$key] = $precheck_array[$key];
95
	}
96
	return $temp_array;
97
}
98

  
99
function preCheckAddon($temp_addon_file)
100
{
101
	/**
102
	 * This funtion performs pretest upfront of the Add-On installation process.
103
	 * The requirements can be specified via the array $PRECHECK which needs to
104
	 * be defined in the optional Add-on file precheck.php.
105
	 */
106
	global $database, $admin, $TEXT, $HEADING, $MESSAGE;
107
	
108
	// path to the temporary Add-on folder
109
	$temp_path = WB_PATH . '/temp/unzip';
110
	
111
	// check if file precheck.php exists for the Add-On uploaded via WB installation routine
112
	if (!file_exists($temp_path . '/precheck.php')) return;
113
	
114
	// unset any previous declared PRECHECK array
115
	unset($PRECHECK);
116

  
117
	// include Add-On precheck.php file
118
	include($temp_path . '/precheck.php');
119
	
120
	// check if there are any Add-On requirements to check for
121
	if (!(isset($PRECHECK) && count($PRECHECK) > 0)) return;
122
	
123
	// sort precheck array
124
	$PRECHECK = sortPreCheckArray($PRECHECK);
125
	
126
	$failed_checks = 0;
127
	$msg = array();
128
	// check if specified addon requirements are fullfilled
129
	foreach ($PRECHECK as $key => $value) {
130
		switch ($key) {
131
			case 'WB_VERSION':
132
				if (isset($value['VERSION'])) {
133
					// obtain operator for string comparison if exist
134
					$operator = (isset($value['OPERATOR']) &&  trim($value['OPERATOR']) != '') ? $value['OPERATOR'] : '>=';
135
				
136
					// compare versions and extract actual status
137
					$status = versionCompare(WB_VERSION, $value['VERSION'], $operator);
138
					$msg[] = array(
139
						'check'		=> 'WB-' . $TEXT['VERSION'] .': ',
140
						'required'	=> htmlentities($operator) . $value['VERSION'],
141
						'actual'	=> WB_VERSION,
142
						'status'	=> $status
143
					);
144

  
145
					// increase counter if required
146
					if (!$status) $failed_checks++;
147
				}
148
				break;
149

  
150
			case 'WB_ADDONS':
151
				if (is_array($PRECHECK['WB_ADDONS'])) {
152
					foreach($PRECHECK['WB_ADDONS'] as $addon => $values) {
153
						if (is_array($values)) {
154
							// extract module version and operator
155
							$version = (isset($values['VERSION']) &&  trim($values['VERSION']) != '') ? $values['VERSION'] : '';
156
							$operator = (isset($values['OPERATOR']) &&  trim($values['OPERATOR']) != '') ? $values['OPERATOR'] : '>=';
157
						} else {
158
							// no version and operator specified (only check if addon exists)
159
							$addon = strip_tags($values);
160
							$version = ''; $operator = '';
161
						}
162
					
163
						// check if addon is listed in WB database
164
						$table = TABLE_PREFIX . 'addons';
165
						$sql = "SELECT * FROM `$table` WHERE `directory` = '" . addslashes($addon) . "'";
166
						$results = $database->query($sql);
167
					
168
						$status = false; $addon_status = $TEXT['NOT_INSTALLED'];
169
						if ($results && $row = $results->fetchRow()) {
170
							$status = true; 
171
							$addon_status = $TEXT['INSTALLED'];
172
						
173
							// compare version if required
174
							if ($version != '') {
175
								$status = versionCompare($row['version'], $version, $operator);
176
								$addon_status = $row['version'];
177
							}
178
						}
179
					
180
						// provide addon status
181
						$msg[] = array(
182
							'check'		=> '&nbsp; ' . $TEXT['ADDON'] . ': ' . htmlentities($addon),
183
							'required'	=> ($version != '') ? $operator . '&nbsp;' . $version : $TEXT['INSTALLED'],
184
							'actual'	=> $addon_status,
185
							'status'	=> $status
186
						);
187
						
188
						// increase counter if required
189
						if (!$status) $failed_checks++;
190
					}
191
				}
192
				break;
193

  
194
			case 'PHP_VERSION':
195
				if (isset($value['VERSION'])) {
196
					// obtain operator for string comparison if exist
197
					$operator = (isset($value['OPERATOR']) &&  trim($value['OPERATOR']) != '') ? $value['OPERATOR'] : '>=';
198
				
199
					// compare versions and extract actual status
200
					$status = versionCompare(PHP_VERSION, $value['VERSION'], $operator);
201
					$msg[] = array(
202
						'check'		=> 'PHP-' . $TEXT['VERSION'] .': ',
203
						'required'	=> htmlentities($operator) . '&nbsp;' . $value['VERSION'],
204
						'actual'	=> PHP_VERSION,
205
						'status'	=> $status
206
					);
207

  
208
					// increase counter if required
209
					if (!$status) $failed_checks++;
210

  
211
				}
212
				break;
213

  
214
			case 'PHP_EXTENSIONS':
215
				if (is_array($PRECHECK['PHP_EXTENSIONS'])) {
216
					foreach($PRECHECK['PHP_EXTENSIONS'] as $extension) {
217
						$status = extension_loaded(strtolower($extension));
218
						$msg[] = array(
219
							'check'		=> '&nbsp; ' . $TEXT['EXTENSION'] . ': ' . htmlentities($extension),
220
							'required'	=> $TEXT['INSTALLED'],
221
							'actual'	=> ($status) ? $TEXT['INSTALLED'] : $TEXT['NOT_INSTALLED'],
222
							'status'	=> $status
223
						);
224

  
225
						// increase counter if required
226
						if (!$status) $failed_checks++;
227
					}
228
				}
229
				break;
230

  
231
			case 'PHP_SETTINGS':
232
				if (is_array($PRECHECK['PHP_SETTINGS'])) {
233
					foreach($PRECHECK['PHP_SETTINGS'] as $setting => $value) {
234
						$actual_setting = ($temp = ini_get($setting)) ? $temp : 0;
235
						$status = ($actual_setting == $value);
236
					
237
						$msg[] = array(
238
							'check'		=> '&nbsp; '. ($setting),
239
							'required'	=> $value,
240
							'actual'	=> $actual_setting,
241
							'status'	=> $status
242
						);
243

  
244
						// increase counter if required
245
						if (!$status) $failed_checks++;
246
					}
247
				}
248
				break;
249

  
250
			case 'CUSTOM_CHECKS':
251
				if (is_array($PRECHECK['CUSTOM_CHECKS'])) {
252
					foreach($PRECHECK['CUSTOM_CHECKS'] as $key => $values) {
253
						$msg[] = array(
254
							'check'		=> $key,
255
							'required'	=> $values['REQUIRED'],
256
							'actual'	=> $values['ACTUAL'],
257
							'status'	=> $values['STATUS']
258
						);
259
					}
260

  
261
					// increase counter if required
262
					if (!$status) $failed_checks++;
263
				}
264
				break;
265
		}
266
	}
267

  
268
	// leave if all requirements are fullfilled
269
	if ($failed_checks == 0) return;
270
	
271
	// output summary table with requirements not fullfilled
272
	echo <<< EOT
273
	<h2>{$HEADING['ADDON_PRECHECK_FAILED']}</h2>
274
	<p>{$MESSAGE['ADDON_PRECHECK']['FAILED']}</p> 
275

  
276
	<table width="700px" cellpadding="4" border="0" style="margin: 0.5em; border-collapse: collapse; border: 1px solid silver;">
277
	<tr>
278
		<th>{$TEXT['REQUIREMENT']}:</th>
279
		<th>{$TEXT['REQUIRED']}:</th>
280
		<th>{$TEXT['CURRENT']}:</th>
281
	</tr>
282
EOT;
283

  
284
	foreach($msg as $check) {
285
		echo '<tr>';
286
		$style = $check['status'] ? 'color: #46882B;' : 'color: #C00;';
287
		foreach($check as $key => $value) {
288
			if ($key == 'status') continue;
289
			
290
			echo '<td style="' . $style . '">' . $value . '</td>';
291
		}
292
		echo '</tr>';
293
	}
294
	echo '</table>';
295

  
296
	// delete the temp unzip directory
297
	rm_full_dir($temp_path);	
298

  
299
	// delete the temporary zip file of the Add-on
300
	if(file_exists($temp_addon_file)) { unlink($temp_addon_file); }	
301
	
302
	// output status message and die
303
	$admin->print_error('');
304
}
305

  
306
?>
trunk/wb/languages/FI.php
33 33
// Set the language information
34 34
$language_code = 'FI';
35 35
$language_name = 'Suomi';
36
$language_version = '2.7';
37
$language_platform = '2.7.x';
36
$language_version = '2.8';
37
$language_platform = '2.8.x';
38 38
$language_author = 'Pekka Koskela';
39 39
$language_license = 'GNU General Public License';
40 40

  
......
120 120
$HEADING['ADD_GROUP'] = 'Lis&auml;&auml; ryhm&auml;';
121 121
$HEADING['MODIFY_GROUP'] = 'Muokkaa ryhm&auml;&auml;';
122 122

  
123
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
124

  
123 125
// Other text
124 126
$TEXT['OPEN'] = 'Open';
125 127
$TEXT['ADD'] = 'Lis&auml;&auml;';
......
426 428
$TEXT['HEADING_CSS_FILE'] = 'Actual module file: ';
427 429
$TEXT['TXT_EDIT_CSS_FILE'] = 'Edit the CSS definitions in the textarea below.';
428 430
$TEXT['CODE_SNIPPET'] = "Code-snippet";
431
$TEXT['REQUIREMENT'] = "Requirement";
432
$TEXT['INSTALLED'] = "installed";
433
$TEXT['NOT_INSTALLED'] = "not installed";
434
$TEXT['ADDON'] = "Add-On";
435
$TEXT['EXTENSION'] = "Extension";
429 436

  
430 437
// Success/error messages
431 438
$MESSAGE['FRONTEND']['SORRY_NO_VIEWING_PERMISSIONS'] = 'Oikeutesi eiv&auml;t riit&auml;...';
......
571 578
$MESSAGE['GENERIC']['PLEASE_CHECK_BACK_SOON'] = 'Tervetuluoa my&ouml;hemmin...';
572 579
$MESSAGE['GENERIC']['PLEASE_BE_PATIENT'] = 'Hetkinen...';
573 580
$MESSAGE['GENERIC']['ERROR_OPENING_FILE'] = 'Virhe tiedostoa avattaessa.';
581
$MESSAGE['GENERIC']['INVALID_ADDON_FILE'] = 'Invalid Website Baker installation file. Please check the *.zip format.';
582
$MESSAGE['GENERIC']['INVALID_LANGUAGE_FILE'] = 'Invalid Website Baker language file. Please check the text file.';
574 583

  
575 584
$MESSAGE['MOD_FORM']['REQUIRED_FIELDS'] = 'T&auml;yt&auml; kent&auml;t';
576 585
$MESSAGE['MOD_FORM']['EXCESS_SUBMISSIONS'] = 'Rajoitus voimassa, yrit&auml; tunnin kuluttua uudelleen';
......
581 590
$MESSAGE['MOD_RELOAD']['TEMPLATES_RELOADED'] = 'Sivupohjan lataus onnistui';
582 591
$MESSAGE['MOD_RELOAD']['LANGUAGES_RELOADED'] = 'Kielen lataus onnistui';
583 592

  
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

  
584 595
?>
trunk/wb/languages/EN.php
33 33
// Set the language information
34 34
$language_code = 'EN';
35 35
$language_name = 'English';
36
$language_version = '2.7';
37
$language_platform = '2.7.x';
36
$language_version = '2.8';
37
$language_platform = '2.8.x';
38 38
$language_author = 'Ryan Djurovich, Christian Sommer';
39 39
$language_license = 'GNU General Public License';
40 40

  
......
120 120
$HEADING['ADD_GROUP'] = 'Add Group';
121 121
$HEADING['MODIFY_GROUP'] = 'Modify Group';
122 122

  
123
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
124

  
123 125
// Other text
124 126
$TEXT['OPEN'] = 'Open';
125 127
$TEXT['ADD'] = 'Add';
......
426 428
$TEXT['HEADING_CSS_FILE'] = 'Actual module file: ';
427 429
$TEXT['TXT_EDIT_CSS_FILE'] = 'Edit the CSS definitions in the textarea below.';
428 430
$TEXT['CODE_SNIPPET'] = "Code-snippet";
431
$TEXT['REQUIREMENT'] = "Requirement";
432
$TEXT['INSTALLED'] = "installed";
433
$TEXT['NOT_INSTALLED'] = "not installed";
434
$TEXT['ADDON'] = "Add-On";
435
$TEXT['EXTENSION'] = "Extension";
429 436

  
430 437
// Success/error messages
431 438
$MESSAGE['FRONTEND']['SORRY_NO_VIEWING_PERMISSIONS'] = 'Sorry, you do not have permissions to view this page';
......
571 578
$MESSAGE['GENERIC']['PLEASE_CHECK_BACK_SOON'] = 'Please check back soon...';
572 579
$MESSAGE['GENERIC']['PLEASE_BE_PATIENT'] = 'Please be patient, this might take a while.';
573 580
$MESSAGE['GENERIC']['ERROR_OPENING_FILE'] = 'Error opening file.';
581
$MESSAGE['GENERIC']['INVALID_ADDON_FILE'] = 'Invalid Website Baker installation file. Please check the *.zip format.';
582
$MESSAGE['GENERIC']['INVALID_LANGUAGE_FILE'] = 'Invalid Website Baker language file. Please check the text file.';
574 583

  
575 584
$MESSAGE['MOD_FORM']['REQUIRED_FIELDS'] = 'You must enter details for the following fields';
576 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.';
......
581 590
$MESSAGE['MOD_RELOAD']['TEMPLATES_RELOADED'] = 'Templates reloaded successfully';
582 591
$MESSAGE['MOD_RELOAD']['LANGUAGES_RELOADED'] = 'Languages reloaded successfully';
583 592

  
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

  
584 595
?>
trunk/wb/languages/CS.php
33 33
// Set the language information
34 34
$language_code = 'CS';
35 35
$language_name = '&#268;e&scaron;tina';
36
$language_version = '2.7';
37
$language_platform = '2.7.x';
36
$language_version = '2.8';
37
$language_platform = '2.8.x';
38 38
$language_author = 'WebStep, s.r.o.';
39 39
$language_license = 'GNU General Public License';
40 40

  
......
120 120
$HEADING['ADD_GROUP'] = 'P&#345;idat skupinu';
121 121
$HEADING['MODIFY_GROUP'] = 'Zm&#283;nit skupinu';
122 122

  
123
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
124

  
123 125
// Other text
124 126
$TEXT['OPEN'] = 'Open';
125 127
$TEXT['ADD'] = 'P&#345;idat';
......
426 428
$TEXT['HEADING_CSS_FILE'] = 'Actual module file: ';
427 429
$TEXT['TXT_EDIT_CSS_FILE'] = 'Edit the CSS definitions in the textarea below.';
428 430
$TEXT['CODE_SNIPPET'] = "Code-snippet";
431
$TEXT['REQUIREMENT'] = "Requirement";
432
$TEXT['INSTALLED'] = "installed";
433
$TEXT['NOT_INSTALLED'] = "not installed";
434
$TEXT['ADDON'] = "Add-On";
435
$TEXT['EXTENSION'] = "Extension";
429 436

  
430 437
// Success/error messages
431 438
$MESSAGE['FRONTEND']['SORRY_NO_VIEWING_PERMISSIONS'] = 'Nem&aacute;te opr&aacute;vn&#283;n&iacute; prohl&iacute;&#382;et tuto str&aacute;nku';
......
571 578
$MESSAGE['GENERIC']['PLEASE_CHECK_BACK_SOON'] = 'Zkuste to p&#345;&iacute;&scaron;t&#283;...';
572 579
$MESSAGE['GENERIC']['PLEASE_BE_PATIENT'] = '&#268;ekejte pros&iacute;m, operace m&#367;&#382;e chv&iacute;li trvat.';
573 580
$MESSAGE['GENERIC']['ERROR_OPENING_FILE'] = 'Do&scaron;lo k chyb&#283; p&#345;i otev&iacute;r&aacute;n&iacute; souboru.';
581
$MESSAGE['GENERIC']['INVALID_ADDON_FILE'] = 'Invalid Website Baker installation file. Please check the *.zip format.';
582
$MESSAGE['GENERIC']['INVALID_LANGUAGE_FILE'] = 'Invalid Website Baker language file. Please check the text file.';
574 583

  
575 584
$MESSAGE['MOD_FORM']['REQUIRED_FIELDS'] = 'Mus&iacute;te vyplnit n&aacute;sleduj&iacute;c&iacute; pole';
576 585
$MESSAGE['MOD_FORM']['EXCESS_SUBMISSIONS'] = 'Omlouv&aacute;me se, ale tento formul&aacute;&#345; dos&aacute;hl limitu povolen&yacute;ch odesl&aacute;n&iacute; pro tuto hodinu. Pros&iacute;m zkuste to znovu v dal&scaron;&iacute; hodin&#283;..';
......
581 590
$MESSAGE['MOD_RELOAD']['TEMPLATES_RELOADED'] = '&Scaron;ablony byly &uacute;sp&#283;&scaron;n&#283; p&#345;ehr&aacute;ny';
582 591
$MESSAGE['MOD_RELOAD']['LANGUAGES_RELOADED'] = 'Jazyky byly &uacute;sp&#283;&scaron;n&#283; p&#345;ehr&aacute;ny';
583 592

  
584
?>
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
?>
trunk/wb/languages/SE.php
33 33
// Set the language information
34 34
$language_code = 'SE';
35 35
$language_name = 'Svenska';
36
$language_version = '2.7';
37
$language_platform = '2.7.x';
36
$language_version = '2.8';
37
$language_platform = '2.8.x';
38 38
$language_author = 'Markus Eriksson, Peppe Bergqvist';
39 39
$language_license = 'GNU General Public License';
40 40

  
......
120 120
$HEADING['ADD_GROUP'] = 'Skapa ny grupp';
121 121
$HEADING['MODIFY_GROUP'] = '&Auml;ndra grupp';
122 122

  
123
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
124

  
123 125
// Other text
124 126
$TEXT['OPEN'] = 'Open';
125 127
$TEXT['ADD'] = 'L&auml;gg till';
......
426 428
$TEXT['HEADING_CSS_FILE'] = 'Actual module file: ';
427 429
$TEXT['TXT_EDIT_CSS_FILE'] = 'Edit the CSS definitions in the textarea below.';
428 430
$TEXT['CODE_SNIPPET'] = "Code-snippet";
431
$TEXT['REQUIREMENT'] = "Requirement";
432
$TEXT['INSTALLED'] = "installed";
433
$TEXT['NOT_INSTALLED'] = "not installed";
434
$TEXT['ADDON'] = "Add-On";
435
$TEXT['EXTENSION'] = "Extension";
429 436

  
430 437
// Success/error messages
431 438
$MESSAGE['FRONTEND']['SORRY_NO_VIEWING_PERMISSIONS'] = 'Tyv&auml;rr, du har inte till&aring;telse att titta p&aring; denna sida';
......
571 578
$MESSAGE['GENERIC']['PLEASE_CHECK_BACK_SOON'] = 'V&auml;nligen kom tillbaka snart...';
572 579
$MESSAGE['GENERIC']['PLEASE_BE_PATIENT'] = 'V&auml;nligen ha t&aring;lamod, det h&auml;r kan ta en stund.';
573 580
$MESSAGE['GENERIC']['ERROR_OPENING_FILE'] = 'Fel vid &ouml;ppnande av fil.';
581
$MESSAGE['GENERIC']['INVALID_ADDON_FILE'] = 'Invalid Website Baker installation file. Please check the *.zip format.';
582
$MESSAGE['GENERIC']['INVALID_LANGUAGE_FILE'] = 'Invalid Website Baker language file. Please check the text file.';
574 583

  
575 584
$MESSAGE['MOD_FORM']['REQUIRED_FIELDS'] = 'Du m&aring;ste fylla i f&ouml;ljande f&auml;lt';
576 585
$MESSAGE['MOD_FORM']['EXCESS_SUBMISSIONS'] = 'Tyv&auml;rr, detta formul&auml;r har skickats f&ouml;r m&aring;nga g&aring;nger inom denna timme. F&ouml;rs&ouml;k igen om ett tag.';
......
581 590
$MESSAGE['MOD_RELOAD']['TEMPLATES_RELOADED'] = 'Mallar laddades om';
582 591
$MESSAGE['MOD_RELOAD']['LANGUAGES_RELOADED'] = 'Spr&aring;k laddades om';
583 592

  
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

  
584 595
?>
trunk/wb/languages/ES.php
33 33
// Set the language information
34 34
$language_code = 'ES';
35 35
$language_name = 'Spanish';
36
$language_version = '2.7';
37
$language_platform = '2.7.x';
36
$language_version = '2.8';
37
$language_platform = '2.8.x';
38 38
$language_author = 'Samuel Mateo, Jr. | samuelmateo.com';
39 39
$language_license = 'GNU General Public License';
40 40

  
......
120 120
$HEADING['ADD_GROUP'] = 'Agregar Grupo';
121 121
$HEADING['MODIFY_GROUP'] = 'Modificar Grupo';
122 122

  
123
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
124

  
123 125
// Other text
124 126
$TEXT['OPEN'] = 'Open';
125 127
$TEXT['ADD'] = 'Agregar';
......
426 428
$TEXT['HEADING_CSS_FILE'] = 'Actual module file: ';
427 429
$TEXT['TXT_EDIT_CSS_FILE'] = 'Edit the CSS definitions in the textarea below.';
428 430
$TEXT['CODE_SNIPPET'] = "Code-snippet";
431
$TEXT['REQUIREMENT'] = "Requirement";
432
$TEXT['INSTALLED'] = "installed";
433
$TEXT['NOT_INSTALLED'] = "not installed";
434
$TEXT['ADDON'] = "Add-On";
435
$TEXT['EXTENSION'] = "Extension";
429 436

  
430 437
// Success/error messages
431 438
$MESSAGE['FRONTEND']['SORRY_NO_VIEWING_PERMISSIONS'] = 'Perd&oacute;n, no tiene permiso para ver esta p&aacute;gina';
......
571 578
$MESSAGE['GENERIC']['PLEASE_CHECK_BACK_SOON'] = 'Vuelva pronto...';
572 579
$MESSAGE['GENERIC']['PLEASE_BE_PATIENT'] = 'Por favor, sea paciente. Esto puede tardar un rato.';
573 580
$MESSAGE['GENERIC']['ERROR_OPENING_FILE'] = 'Error abriendo fichero.';
581
$MESSAGE['GENERIC']['INVALID_ADDON_FILE'] = 'Invalid Website Baker installation file. Please check the *.zip format.';
582
$MESSAGE['GENERIC']['INVALID_LANGUAGE_FILE'] = 'Invalid Website Baker language file. Please check the text file.';
574 583

  
575 584
$MESSAGE['MOD_FORM']['REQUIRED_FIELDS'] = 'Debe completar los siguiente campos';
576 585
$MESSAGE['MOD_FORM']['EXCESS_SUBMISSIONS'] = 'Disculpe este formulario ha sido enviado demasiadas veces seguidas. Vuelva a intentarlo en una hora.';
......
581 590
$MESSAGE['MOD_RELOAD']['TEMPLATES_RELOADED'] = 'Plantillas recargadas correctamente';
582 591
$MESSAGE['MOD_RELOAD']['LANGUAGES_RELOADED'] = 'Lenguajes recargados correctamente';
583 592

  
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

  
584 595
?>
trunk/wb/languages/FR.php
33 33
// Set the language information
34 34
$language_code = 'FR';
35 35
$language_name = 'Fran&ccedil;ais';
36
$language_version = '2.7';
37
$language_platform = '2.7.x';
36
$language_version = '2.8';
37
$language_platform = '2.8.x';
38 38
$language_author = 'Marin Susac';
39 39
$language_license = 'GNU General Public License';
40 40

  
......
120 120
$HEADING['ADD_GROUP'] = 'Ajouter un groupe';
121 121
$HEADING['MODIFY_GROUP'] = 'Modifier un groupe';
122 122

  
123
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
124

  
123 125
// Other text
124 126
$TEXT['OPEN'] = 'Open';
125 127
$TEXT['ADD'] = 'Ajouter';
......
426 428
$TEXT['HEADING_CSS_FILE'] = 'Actual module file: ';
427 429
$TEXT['TXT_EDIT_CSS_FILE'] = 'Edit the CSS definitions in the textarea below.';
428 430
$TEXT['CODE_SNIPPET'] = "Code-snippet";
431
$TEXT['REQUIREMENT'] = "Requirement";
432
$TEXT['INSTALLED'] = "installed";
433
$TEXT['NOT_INSTALLED'] = "not installed";
434
$TEXT['ADDON'] = "Add-On";
435
$TEXT['EXTENSION'] = "Extension";
429 436

  
430 437
// Success/error messages
431 438
$MESSAGE['FRONTEND']['SORRY_NO_VIEWING_PERMISSIONS'] = 'D&eacute;sol&eacute;, vous n\'avez pas les droits pour visualiser cette page';
......
571 578
$MESSAGE['GENERIC']['PLEASE_CHECK_BACK_SOON'] = 'Merci de revenir plus tard';
572 579
$MESSAGE['GENERIC']['PLEASE_BE_PATIENT'] = 'Merci de patienter';
573 580
$MESSAGE['GENERIC']['ERROR_OPENING_FILE'] = 'Erreur lors de l\'ouverture du fichier';
581
$MESSAGE['GENERIC']['INVALID_ADDON_FILE'] = 'Invalid Website Baker installation file. Please check the *.zip format.';
582
$MESSAGE['GENERIC']['INVALID_LANGUAGE_FILE'] = 'Invalid Website Baker language file. Please check the text file.';
574 583

  
575 584
$MESSAGE['MOD_FORM']['REQUIRED_FIELDS'] = 'Vous devez renseigner les champs suivants';
576 585
$MESSAGE['MOD_FORM']['EXCESS_SUBMISSIONS'] = 'D&eacute;sol&eacute; mais vous avez utilis&eacute; ce formulaire trop de fois durant cette heure. Merci de r&eacute;essayer &agrave; l\'heure suivante';
......
581 590
$MESSAGE['MOD_RELOAD']['TEMPLATES_RELOADED'] = 'Mod&egrave;les r&eacute;install&eacute;s avec succ&egrave;s';
582 591
$MESSAGE['MOD_RELOAD']['LANGUAGES_RELOADED'] = 'Langages r&eacute;install&eacute;s avec succ&egrave;s';
583 592

  
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

  
584 595
?>
trunk/wb/languages/ET.php
33 33
// Set the language information
34 34
$language_code = 'ET';
35 35
$language_name = 'Eesti';
36
$language_version = '2.7';
37
$language_platform = '2.7.x';
36
$language_version = '2.8';
37
$language_platform = '2.8.x';
38 38
$language_author = 'Heiko H&auml;ng';
39 39
$language_license = 'GNU General Public License';
40 40

  
......
120 120
$HEADING['ADD_GROUP'] = 'Lisa Grupp';
121 121
$HEADING['MODIFY_GROUP'] = 'Muuda Gruppi';
122 122

  
123
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
124

  
123 125
// Other text
124 126
$TEXT['OPEN'] = 'Open';
125 127
$TEXT['ADD'] = 'Lisa';
......
426 428
$TEXT['HEADING_CSS_FILE'] = 'Actual module file: ';
427 429
$TEXT['TXT_EDIT_CSS_FILE'] = 'Edit the CSS definitions in the textarea below.';
428 430
$TEXT['CODE_SNIPPET'] = "Code-snippet";
431
$TEXT['REQUIREMENT'] = "Requirement";
432
$TEXT['INSTALLED'] = "installed";
433
$TEXT['NOT_INSTALLED'] = "not installed";
434
$TEXT['ADDON'] = "Add-On";
435
$TEXT['EXTENSION'] = "Extension";
429 436

  
430 437
// Success/error messages
431 438
$MESSAGE['FRONTEND']['SORRY_NO_VIEWING_PERMISSIONS'] = 'Vabandame, sul ei ole &otilde;igusi selle lehe vaatamiseks';
......
571 578
$MESSAGE['GENERIC']['PLEASE_CHECK_BACK_SOON'] = 'K&uuml;lasta hiljem uuesti...';
572 579
$MESSAGE['GENERIC']['PLEASE_BE_PATIENT'] = 'Please be patient, this might take a while.';
573 580
$MESSAGE['GENERIC']['ERROR_OPENING_FILE'] = 'Error opening file.';
581
$MESSAGE['GENERIC']['INVALID_ADDON_FILE'] = 'Invalid Website Baker installation file. Please check the *.zip format.';
582
$MESSAGE['GENERIC']['INVALID_LANGUAGE_FILE'] = 'Invalid Website Baker language file. Please check the text file.';
574 583

  
575 584
$MESSAGE['MOD_FORM']['REQUIRED_FIELDS'] = 'Sa pead detailid sisestama j&auml;rgnevatesse lahtritesse';
576 585
$MESSAGE['MOD_FORM']['EXCESS_SUBMISSIONS'] = 'Vabandame, see vorm on juba liiga palju kordi selle tunni jooksul saadetud. Palun proovi j&auml;rgmine tund uuesti.';
......
581 590
$MESSAGE['MOD_RELOAD']['TEMPLATES_RELOADED'] = 'Templates reloaded successfully';
582 591
$MESSAGE['MOD_RELOAD']['LANGUAGES_RELOADED'] = 'Languages reloaded successfully';
583 592

  
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

  
584 595
?>
trunk/wb/languages/HR.php
33 33
// Set the language information
34 34
$language_code = 'HR';
35 35
$language_name = 'Hrvatski';
36
$language_version = '2.7';
37
$language_platform = '2.7.x';
36
$language_version = '2.8';
37
$language_platform = '2.8.x';
38 38
$language_author = 'Vedran Presecki';
39 39
$language_license = 'GNU General Public License';
40 40

  
......
120 120
$HEADING['ADD_GROUP'] = 'Dodaj grupu';
121 121
$HEADING['MODIFY_GROUP'] = 'Izmjeni grupu';
122 122

  
123
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
124

  
123 125
// Other text
124 126
$TEXT['OPEN'] = 'Open';
125 127
$TEXT['ADD'] = 'Dodaj';
......
426 428
$TEXT['HEADING_CSS_FILE'] = 'Actual module file: ';
427 429
$TEXT['TXT_EDIT_CSS_FILE'] = 'Edit the CSS definitions in the textarea below.';
428 430
$TEXT['CODE_SNIPPET'] = "Code-snippet";
431
$TEXT['REQUIREMENT'] = "Requirement";
432
$TEXT['INSTALLED'] = "installed";
433
$TEXT['NOT_INSTALLED'] = "not installed";
434
$TEXT['ADDON'] = "Add-On";
435
$TEXT['EXTENSION'] = "Extension";
429 436

  
430 437
// Success/error messages
431 438
$MESSAGE['FRONTEND']['SORRY_NO_VIEWING_PERMISSIONS'] = 'Nemate dopu&scaron;tenje za gledanje ove stranice';
......
571 578
$MESSAGE['GENERIC']['PLEASE_CHECK_BACK_SOON'] = 'Molimo poku&scaron;ajte ponovo za&egrave;as...';
572 579
$MESSAGE['GENERIC']['PLEASE_BE_PATIENT'] = 'Budite strpljivo, ovo mo&#382;e potrajati.';
573 580
$MESSAGE['GENERIC']['ERROR_OPENING_FILE'] = 'Gre&scaron;ka pri otvaranju filea.';
581
$MESSAGE['GENERIC']['INVALID_ADDON_FILE'] = 'Invalid Website Baker installation file. Please check the *.zip format.';
582
$MESSAGE['GENERIC']['INVALID_LANGUAGE_FILE'] = 'Invalid Website Baker language file. Please check the text file.';
574 583

  
575 584
$MESSAGE['MOD_FORM']['REQUIRED_FIELDS'] = 'Morate unjeti detaljen podatke u nadoilaze&aelig;a polja';
576 585
$MESSAGE['MOD_FORM']['EXCESS_SUBMISSIONS'] = 'Ova forma je pregledavana previ&scaron;e puta u jednom satu. Molimo poku&scaron;ajte slijede&aelig;i sat.';
......
581 590
$MESSAGE['MOD_RELOAD']['TEMPLATES_RELOADED'] = 'Uspje&scaron;no nasnimljeni predlo&scaron;ci';
582 591
$MESSAGE['MOD_RELOAD']['LANGUAGES_RELOADED'] = 'Uspje&scaron;no nasnimljeni jezici';
583 592

  
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

  
584 595
?>
trunk/wb/languages/NL.php
33 33
// Set the language information
34 34
$language_code = 'NL';
35 35
$language_name = 'Nederlands';
36
$language_version = '2.7';
37
$language_platform = '2.7.x';
36
$language_version = '2.8';
37
$language_platform = '2.8.x';
38 38
$language_author = 'Bramus, CodeALot';
39 39
$language_license = 'GNU General Public License';
40 40

  
......
120 120
$HEADING['ADD_GROUP'] = 'Toevoegen groep';
121 121
$HEADING['MODIFY_GROUP'] = 'Groepsgegevens';
122 122

  
123
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
124

  
123 125
// Other text
124 126
$TEXT['OPEN'] = 'Open';
125 127
$TEXT['ADD'] = 'Toevoegen';
......
426 428
$TEXT['HEADING_CSS_FILE'] = 'Actuele module bestand: ';
427 429
$TEXT['TXT_EDIT_CSS_FILE'] = 'Wijzig de CSS definities in het textveld hieronder.';
428 430
$TEXT['CODE_SNIPPET'] = "Code-snippet";
431
$TEXT['REQUIREMENT'] = "Requirement";
432
$TEXT['INSTALLED'] = "installed";
433
$TEXT['NOT_INSTALLED'] = "not installed";
434
$TEXT['ADDON'] = "Add-On";
435
$TEXT['EXTENSION'] = "Extension";
429 436

  
430 437
// Success/error messages
431 438
$MESSAGE['FRONTEND']['SORRY_NO_VIEWING_PERMISSIONS'] = 'Sorry, u heeft geen bevoegdheden om deze pagina te bekijken';
......
571 578
$MESSAGE['GENERIC']['PLEASE_CHECK_BACK_SOON'] = 'Probeert u aub het binnenkort nog eens.';
572 579
$MESSAGE['GENERIC']['PLEASE_BE_PATIENT'] = 'Even geduld aub, dit kan even duren.';
573 580
$MESSAGE['GENERIC']['ERROR_OPENING_FILE'] = 'Kan bestand niet openen.';
581
$MESSAGE['GENERIC']['INVALID_ADDON_FILE'] = 'Invalid Website Baker installation file. Please check the *.zip format.';
582
$MESSAGE['GENERIC']['INVALID_LANGUAGE_FILE'] = 'Invalid Website Baker language file. Please check the text file.';
574 583

  
575 584
$MESSAGE['MOD_FORM']['REQUIRED_FIELDS'] = 'De volgende velden zijn verplicht';
576 585
$MESSAGE['MOD_FORM']['EXCESS_SUBMISSIONS'] = 'Sorry, dit formulier is te vaak verstuurd binnen dit uur. Probeert u het over een uur nog eens.';
......
581 590
$MESSAGE['MOD_RELOAD']['TEMPLATES_RELOADED'] = 'Templates succesvol herladen';
582 591
$MESSAGE['MOD_RELOAD']['LANGUAGES_RELOADED'] = 'Taalbestanden succesvol herladen';
583 592

  
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

  
584 595
?>
trunk/wb/languages/PL.php
33 33
// Set the language information
34 34
$language_code = 'PL';
35 35
$language_name = 'Polski';
36
$language_version = '2.7';
37
$language_platform = '2.7.x';
36
$language_version = '2.8';
37
$language_platform = '2.8.x';
38 38
$language_author = 'Marek St&#281;pie&#324;';
39 39
$language_license = 'GNU General Public License';
40 40

  
......
120 120
$HEADING['ADD_GROUP'] = 'Dodaj grup&#281;';
121 121
$HEADING['MODIFY_GROUP'] = 'Zmie&#324; grup&#281;';
122 122

  
123
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
124

  
123 125
// Other text
124 126
$TEXT['OPEN'] = 'Open';
125 127
$TEXT['ADD'] = 'Dodaj';
......
426 428
$TEXT['HEADING_CSS_FILE'] = 'Actual module file: ';
427 429
$TEXT['TXT_EDIT_CSS_FILE'] = 'Edit the CSS definitions in the textarea below.';
428 430
$TEXT['CODE_SNIPPET'] = "Code-snippet";
431
$TEXT['REQUIREMENT'] = "Requirement";
432
$TEXT['INSTALLED'] = "installed";
433
$TEXT['NOT_INSTALLED'] = "not installed";
434
$TEXT['ADDON'] = "Add-On";
435
$TEXT['EXTENSION'] = "Extension";
429 436

  
430 437
// Success/error messages
431 438
$MESSAGE['FRONTEND']['SORRY_NO_VIEWING_PERMISSIONS'] = 'Niestety, nie masz uprawnie&#324; do ogl&#261;dania tej strony.';
......
571 578
$MESSAGE['GENERIC']['PLEASE_CHECK_BACK_SOON'] = 'Zapraszamy wkr&oacute;tce...';
572 579
$MESSAGE['GENERIC']['PLEASE_BE_PATIENT'] = 'Prosimy o cierpliwo&#347;&#263;, to mo&#380;e troch&#281; potrwa&#263;.';
573 580
$MESSAGE['GENERIC']['ERROR_OPENING_FILE'] = 'B&#322;&#261;d podczas otwierania pliku.';
581
$MESSAGE['GENERIC']['INVALID_ADDON_FILE'] = 'Invalid Website Baker installation file. Please check the *.zip format.';
582
$MESSAGE['GENERIC']['INVALID_LANGUAGE_FILE'] = 'Invalid Website Baker language file. Please check the text file.';
574 583

  
575 584
$MESSAGE['MOD_FORM']['REQUIRED_FIELDS'] = 'Nale&#380;y wprowadzi&#263; szczeg&oacute;&#322;y dla nast&#281;puj&#261;cych p&oacute;l';
576 585
$MESSAGE['MOD_FORM']['EXCESS_SUBMISSIONS'] = 'Niestety, ten formularz zosta&#322; wys&#322;any zbyt wiele razy w ci&#261;gu tej godziny. Prosimy spr&oacute;bowa&#263; ponownie za godzin&#281;.';
......
581 590
$MESSAGE['MOD_RELOAD']['TEMPLATES_RELOADED'] = 'Szablony zosta&#322;y za&#322;adowane ponownie';
582 591
$MESSAGE['MOD_RELOAD']['LANGUAGES_RELOADED'] = 'J&#281;zyki zosta&#322;y za&#322;adowane ponownie';
583 592

  
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

  
584 595
?>
trunk/wb/languages/HU.php
33 33
// Set the language information
34 34
$language_code = 'HU';
35 35
$language_name = 'Magyar';
36
$language_version = '2.7';
37
$language_platform = '2.7.x';
36
$language_version = '2.8';
37
$language_platform = '2.8.x';
38 38
$language_author = 'Zsolt';
39 39
$language_license = 'GNU General Public License';
40 40

  
......
120 120
$HEADING['ADD_GROUP'] = 'Csoport m&oacute;dos&iacute;t&aacute;sa';
121 121
$HEADING['MODIFY_GROUP'] = 'csoport m&oacute;dos&iacute;t&aacute;sa';
122 122

  
123
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
124

  
123 125
// Other text
124 126
$TEXT['OPEN'] = 'Open';
125 127
$TEXT['ADD'] = 'Hozz&aacute;ad';
......
426 428
$TEXT['HEADING_CSS_FILE'] = 'Actual module file: ';
427 429
$TEXT['TXT_EDIT_CSS_FILE'] = 'Edit the CSS definitions in the textarea below.';
428 430
$TEXT['CODE_SNIPPET'] = "Code-snippet";
431
$TEXT['REQUIREMENT'] = "Requirement";
432
$TEXT['INSTALLED'] = "installed";
433
$TEXT['NOT_INSTALLED'] = "not installed";
434
$TEXT['ADDON'] = "Add-On";
435
$TEXT['EXTENSION'] = "Extension";
429 436

  
430 437
// Success/error messages
431 438
$MESSAGE['FRONTEND']['SORRY_NO_VIEWING_PERMISSIONS'] = 'Sajn&aacute;ljuk, de a megjelen&iacute;t&eacute;shez nincs jogosults&aacute;ga!';
......
571 578
$MESSAGE['GENERIC']['PLEASE_CHECK_BACK_SOON'] = 'K&eacute;rem t&eacute;rjen vissza k&eacute;s&otilde;bb!';
572 579
$MESSAGE['GENERIC']['PLEASE_BE_PATIENT'] = 'Please be patient, this might take a while.';
573 580
$MESSAGE['GENERIC']['ERROR_OPENING_FILE'] = 'Error opening file.';
581
$MESSAGE['GENERIC']['INVALID_ADDON_FILE'] = 'Invalid Website Baker installation file. Please check the *.zip format.';
582
$MESSAGE['GENERIC']['INVALID_LANGUAGE_FILE'] = 'Invalid Website Baker language file. Please check the text file.';
574 583

  
575 584
$MESSAGE['MOD_FORM']['REQUIRED_FIELDS'] = 'A k&ouml;vetkez&otilde; mez&otilde;ket k&ouml;telez&otilde; kit&ouml;ltenie';
576 585
$MESSAGE['MOD_FORM']['EXCESS_SUBMISSIONS'] = 'Sajn&aacute;ljuk, de ez az &ucirc;rlap t&uacute;l sokszor lett kit&ouml;ltve egy &oacute;ran bel&uuml;l! K&eacute;rem pr&oacute;b&aacute;lja meg egy &oacute;ra m&uacute;lva.';
......
581 590
$MESSAGE['MOD_RELOAD']['TEMPLATES_RELOADED'] = 'Templates reloaded successfully';
582 591
$MESSAGE['MOD_RELOAD']['LANGUAGES_RELOADED'] = 'Languages reloaded successfully';
583 592

  
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

  
584 595
?>
trunk/wb/languages/IT.php
33 33
// Set the language information
34 34
$language_code = 'IT';
35 35
$language_name = 'Italiano';
36
$language_version = '2.7';
37
$language_platform = '2.7.x';
36
$language_version = '2.8';
37
$language_platform = '2.8.x';
38 38
$language_author = 'Roberto Rossi';
39 39
$language_license = 'GNU General Public License';
40 40

  
......
120 120
$HEADING['ADD_GROUP'] = 'Aggiungi Gruppo';
121 121
$HEADING['MODIFY_GROUP'] = 'Modifica Gruppo';
122 122

  
123
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
124

  
123 125
// Other text
124 126
$TEXT['OPEN'] = 'Open';
125 127
$TEXT['ADD'] = 'Aggiungi';
......
426 428
$TEXT['HEADING_CSS_FILE'] = 'Actual module file: ';
427 429
$TEXT['TXT_EDIT_CSS_FILE'] = 'Edit the CSS definitions in the textarea below.';
428 430
$TEXT['CODE_SNIPPET'] = "Code-snippet";
431
$TEXT['REQUIREMENT'] = "Requirement";
432
$TEXT['INSTALLED'] = "installed";
433
$TEXT['NOT_INSTALLED'] = "not installed";
434
$TEXT['ADDON'] = "Add-On";
435
$TEXT['EXTENSION'] = "Extension";
429 436

  
430 437
// Success/error messages
431 438
$MESSAGE['FRONTEND']['SORRY_NO_VIEWING_PERMISSIONS'] = 'Spaicente, non ha i permessi per vedere la pagina';
......
571 578
$MESSAGE['GENERIC']['PLEASE_CHECK_BACK_SOON'] = 'Torna presto...';
572 579
$MESSAGE['GENERIC']['PLEASE_BE_PATIENT'] = 'Attendi pazientemente...';
573 580
$MESSAGE['GENERIC']['ERROR_OPENING_FILE'] = 'Errore nella apertura del file.';
581
$MESSAGE['GENERIC']['INVALID_ADDON_FILE'] = 'Invalid Website Baker installation file. Please check the *.zip format.';
582
$MESSAGE['GENERIC']['INVALID_LANGUAGE_FILE'] = 'Invalid Website Baker language file. Please check the text file.';
574 583

  
575 584
$MESSAGE['MOD_FORM']['REQUIRED_FIELDS'] = 'Devi inserire tutti i dati nei seguenti campi';
576 585
$MESSAGE['MOD_FORM']['EXCESS_SUBMISSIONS'] = 'Spiacente: hai compilato questa form troppe volte nell\'ultima ora.';
......
581 590
$MESSAGE['MOD_RELOAD']['TEMPLATES_RELOADED'] = 'Templates ricaricati con successo';
582 591
$MESSAGE['MOD_RELOAD']['LANGUAGES_RELOADED'] = 'Lingue ricaricate con successo';
583 592

  
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

  
584 595
?>
trunk/wb/languages/NO.php
33 33
// Set the language information
34 34
$language_code = 'NO';
35 35
$language_name = 'Norsk';
36
$language_version = '2.7';
37
$language_platform = '2.7.x';
36
$language_version = '2.8';
37
$language_platform = '2.8.x';
38 38
$language_author = 'Odd Egil Hansen';
39 39
$language_license = 'GNU General Public License';
40 40

  
......
120 120
$HEADING['ADD_GROUP'] = 'Legg til Gruppe';
121 121
$HEADING['MODIFY_GROUP'] = 'Endre Gruppe';
122 122

  
123
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
124

  
123 125
// Other text
124 126
$TEXT['OPEN'] = '&Aring;pne';
125 127
$TEXT['ADD'] = 'Tilf&oslash;y';
......
426 428
$TEXT['HEADING_CSS_FILE'] = 'Faktisk modul fil: ';
427 429
$TEXT['TXT_EDIT_CSS_FILE'] = 'Rediger  CSS koden i tekst viduet nedenfor.';
428 430
$TEXT['CODE_SNIPPET'] = "Code-snippet";
431
$TEXT['REQUIREMENT'] = "Requirement";
432
$TEXT['INSTALLED'] = "installed";
433
$TEXT['NOT_INSTALLED'] = "not installed";
434
$TEXT['ADDON'] = "Add-On";
435
$TEXT['EXTENSION'] = "Extension";
429 436

  
430 437
// Success/error messages
431 438
$MESSAGE['FRONTEND']['SORRY_NO_VIEWING_PERMISSIONS'] = 'Beklager, du har ikke adgang til &aring; se denne siden';
......
571 578
$MESSAGE['GENERIC']['PLEASE_CHECK_BACK_SOON'] = 'Vennligst kom tilbake p&aring; et annet tidspunkt...';
572 579
$MESSAGE['GENERIC']['PLEASE_BE_PATIENT'] = 'Vennligst v&aelig;r t&aring;lmodig, dette kan ta en stund.';
573 580
$MESSAGE['GENERIC']['ERROR_OPENING_FILE'] = 'Feil ved &aring;pningen av filen.';
581
$MESSAGE['GENERIC']['INVALID_ADDON_FILE'] = 'Invalid Website Baker installation file. Please check the *.zip format.';
582
$MESSAGE['GENERIC']['INVALID_LANGUAGE_FILE'] = 'Invalid Website Baker language file. Please check the text file.';
574 583

  
575 584
$MESSAGE['MOD_FORM']['REQUIRED_FIELDS'] = 'Du m&aring; skrive inn detaljer for f&oslash;lgende felt';
576 585
$MESSAGE['MOD_FORM']['EXCESS_SUBMISSIONS'] = 'Beklager, denne form har blitt sendt for mange ganger denne timen. Vennligst pr&oslash;v igjen neste time.';
......
581 590
$MESSAGE['MOD_RELOAD']['TEMPLATES_RELOADED'] = 'Lykkes i &aring; oppdatere maler';
582 591
$MESSAGE['MOD_RELOAD']['LANGUAGES_RELOADED'] = 'Lykkes i &aring; oppdatere spr&aring;k';
583 592

  
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

  
584 595
?>
trunk/wb/languages/LV.php
33 33
// Set the language information
34 34
$language_code = 'LV';
35 35
$language_name = 'Latvie&scaron;u';
36
$language_version = '2.7';
37
$language_platform = '2.7.x';
36
$language_version = '2.8';
37
$language_platform = '2.8.x';
38 38
$language_author = 'Kri&scaron;janis Rijnieks';
39 39
$language_license = 'GNU General Public License';
40 40

  
......
120 120
$HEADING['ADD_GROUP'] = 'Pievienot grupu';
121 121
$HEADING['MODIFY_GROUP'] = 'Mainit grupu';
122 122

  
123
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
124

  
123 125
// Other text
124 126
$TEXT['OPEN'] = 'Open';
125 127
$TEXT['ADD'] = 'Pievienot';
......
426 428
$TEXT['HEADING_CSS_FILE'] = 'Actual module file: ';
427 429
$TEXT['TXT_EDIT_CSS_FILE'] = 'Edit the CSS definitions in the textarea below.';
428 430
$TEXT['CODE_SNIPPET'] = "Code-snippet";
431
$TEXT['REQUIREMENT'] = "Requirement";
432
$TEXT['INSTALLED'] = "installed";
433
$TEXT['NOT_INSTALLED'] = "not installed";
434
$TEXT['ADDON'] = "Add-On";
435
$TEXT['EXTENSION'] = "Extension";
429 436

  
430 437
// Success/error messages
431 438
$MESSAGE['FRONTEND']['SORRY_NO_VIEWING_PERMISSIONS'] = 'Piedod, bet Tev nav tiesibu aplukot &scaron;o lapu';
......
571 578
$MESSAGE['GENERIC']['PLEASE_CHECK_BACK_SOON'] = 'Nac driz atkal!';
572 579
$MESSAGE['GENERIC']['PLEASE_BE_PATIENT'] = 'Esi paceitigs, tas var kadu bridi ievilkties.';
573 580
$MESSAGE['GENERIC']['ERROR_OPENING_FILE'] = 'Keza atverot datni';
581
$MESSAGE['GENERIC']['INVALID_ADDON_FILE'] = 'Invalid Website Baker installation file. Please check the *.zip format.';
582
$MESSAGE['GENERIC']['INVALID_LANGUAGE_FILE'] = 'Invalid Website Baker language file. Please check the text file.';
574 583

  
575 584
$MESSAGE['MOD_FORM']['REQUIRED_FIELDS'] = 'Ievadi detalas sekojo&scaron;ajos laukos';
576 585
$MESSAGE['MOD_FORM']['EXCESS_SUBMISSIONS'] = 'Atvaino, &scaron;i forma ir tikusi aizpildita parak daudz rei&#382;u &scaron;is stundas laika. Ludzu pamegini velreiz pec stundas.';
......
581 590
$MESSAGE['MOD_RELOAD']['TEMPLATES_RELOADED'] = '&scaron;abloni veiksmigi parladeti';
582 591
$MESSAGE['MOD_RELOAD']['LANGUAGES_RELOADED'] = 'Valodas veiksmigi parladetas';
583 592

  
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

  
584 595
?>
trunk/wb/languages/CA.php
33 33
// Set the language information
34 34
$language_code = 'CA';
35 35
$language_name = 'Catalan';
36
$language_version = '2.7';
37
$language_platform = '2.7.x';
36
$language_version = '2.8';
37
$language_platform = '2.8.x';
38 38
$language_author = 'Carles Escrig (simkin)';
39 39
$language_license = 'GNU General Public License';
40 40

  
......
120 120
$HEADING['ADD_GROUP'] = 'Afegeix Grup';
121 121
$HEADING['MODIFY_GROUP'] = 'Modifica Grup';
122 122

  
123
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
124

  
123 125
// Other text
124 126
$TEXT['OPEN'] = 'Open';
125 127
$TEXT['ADD'] = 'Afegeix';
......
426 428
$TEXT['HEADING_CSS_FILE'] = 'Actual module file: ';
427 429
$TEXT['TXT_EDIT_CSS_FILE'] = 'Edit the CSS definitions in the textarea below.';
428 430
$TEXT['CODE_SNIPPET'] = "Code-snippet";
431
$TEXT['REQUIREMENT'] = "Requirement";
432
$TEXT['INSTALLED'] = "installed";
433
$TEXT['NOT_INSTALLED'] = "not installed";
434
$TEXT['ADDON'] = "Add-On";
435
$TEXT['EXTENSION'] = "Extension";
429 436

  
430 437
// Success/error messages
431 438
$MESSAGE['FRONTEND']['SORRY_NO_VIEWING_PERMISSIONS'] = 'Ho sentim, no teniu permisos per a veure aquesta p&agrave;gina';
......
571 578
$MESSAGE['GENERIC']['PLEASE_CHECK_BACK_SOON'] = 'Per favor torneu-ho a intentar prompte...';
572 579
$MESSAGE['GENERIC']['PLEASE_BE_PATIENT'] = 'Please be patient, this might take a while.';
573 580
$MESSAGE['GENERIC']['ERROR_OPENING_FILE'] = 'Error opening file.';
581
$MESSAGE['GENERIC']['INVALID_ADDON_FILE'] = 'Invalid Website Baker installation file. Please check the *.zip format.';
582
$MESSAGE['GENERIC']['INVALID_LANGUAGE_FILE'] = 'Invalid Website Baker language file. Please check the text file.';
574 583

  
575 584
$MESSAGE['MOD_FORM']['REQUIRED_FIELDS'] = 'Heu d\'introduir les dades per als seg&uuml;ents camps';
576 585
$MESSAGE['MOD_FORM']['EXCESS_SUBMISSIONS'] = 'Ho sentim, aquest formulari ha estat enviat massa vegades durant l\'&uacute;ltima hora. Per favor torneu-ho a intentar d\'ac&iacute; una hora.';
......
581 590
$MESSAGE['MOD_RELOAD']['TEMPLATES_RELOADED'] = 'Templates reloaded successfully';
582 591
$MESSAGE['MOD_RELOAD']['LANGUAGES_RELOADED'] = 'Languages reloaded successfully';
583 592

  
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

  
584 595
?>
trunk/wb/languages/PT.php
33 33
// Set the language information
34 34
$language_code = 'PT';
35 35
$language_name = 'Portuguese (Brazil)';
36
$language_version = '2.7';
37
$language_platform = '2.7.x';
36
$language_version = '2.8';
37
$language_platform = '2.8.x';
38 38
$language_author = 'Daniel Neto';
39 39
$language_license = 'GNU General Public License';
40 40

  
......
120 120
$HEADING['ADD_GROUP'] = 'Adicionar Grupo';
121 121
$HEADING['MODIFY_GROUP'] = 'Modificar Grupo';
122 122

  
123
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
124

  
123 125
// Other text
124 126
$TEXT['OPEN'] = 'Open';
125 127
$TEXT['ADD'] = 'Adicionar';
......
426 428
$TEXT['HEADING_CSS_FILE'] = 'Actual module file: ';
427 429
$TEXT['TXT_EDIT_CSS_FILE'] = 'Edit the CSS definitions in the textarea below.';
428 430
$TEXT['CODE_SNIPPET'] = "Code-snippet";
431
$TEXT['REQUIREMENT'] = "Requirement";
432
$TEXT['INSTALLED'] = "installed";
433
$TEXT['NOT_INSTALLED'] = "not installed";
434
$TEXT['ADDON'] = "Add-On";
435
$TEXT['EXTENSION'] = "Extension";
429 436

  
430 437
// Success/error messages
431 438
$MESSAGE['FRONTEND']['SORRY_NO_VIEWING_PERMISSIONS'] = 'Desculpe, voc&ecirc; n&atilde;o tem permiss&atilde;o para ver essa p&aacute;gina';
......
571 578
$MESSAGE['GENERIC']['PLEASE_CHECK_BACK_SOON'] = 'Favor retornar em breve...';
572 579
$MESSAGE['GENERIC']['PLEASE_BE_PATIENT'] = 'Aguarde, isso pode levar algum tempo.';
573 580
$MESSAGE['GENERIC']['ERROR_OPENING_FILE'] = 'Erro ao abrir o arquivo.';
581
$MESSAGE['GENERIC']['INVALID_ADDON_FILE'] = 'Invalid Website Baker installation file. Please check the *.zip format.';
582
$MESSAGE['GENERIC']['INVALID_LANGUAGE_FILE'] = 'Invalid Website Baker language file. Please check the text file.';
574 583

  
575 584
$MESSAGE['MOD_FORM']['REQUIRED_FIELDS'] = 'Voc&ecirc; precisa preencher os seguintes campos';
576 585
$MESSAGE['MOD_FORM']['EXCESS_SUBMISSIONS'] = 'Desculpe, este formul&aacute;rio foi submetido v&aacute;rias vezes nessa hora. Favor tentar novamente dentro de uma hora.';
......
581 590
$MESSAGE['MOD_RELOAD']['TEMPLATES_RELOADED'] = 'Temas (Templates) recarregados com sucesso';
582 591
$MESSAGE['MOD_RELOAD']['LANGUAGES_RELOADED'] = 'Idiomas recarregados com sucesso';
583 592

  
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

  
584 595
?>
trunk/wb/languages/DA.php
33 33
// Set the language information
34 34
$language_code = 'DA';
35 35
$language_name = 'Danish';
36
$language_version = '2.7';
37
$language_platform = '2.7.x';
36
$language_version = '2.8';
37
$language_platform = '2.8.x';
38 38
$language_author = 'Webstedbaker.dk + Achrist';
39 39
$language_license = 'GNU General Public License';
40 40

  
......
120 120
$HEADING['ADD_GROUP'] = 'Tilf&oslash;j gruppe';
121 121
$HEADING['MODIFY_GROUP'] = 'Ret gruppe';
122 122

  
123
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
124

  
123 125
// Other text
124 126
$TEXT['OPEN'] = '&Aring;ben';
125 127
$TEXT['ADD'] = 'Tilf&oslash;j';
......
426 428
$TEXT['HEADING_CSS_FILE'] = 'Actual module file: ';
427 429
$TEXT['TXT_EDIT_CSS_FILE'] = 'Edit the CSS definitions in the textarea below.';
428 430
$TEXT['CODE_SNIPPET'] = "Code-snippet";
431
$TEXT['REQUIREMENT'] = "Requirement";
432
$TEXT['INSTALLED'] = "installed";
433
$TEXT['NOT_INSTALLED'] = "not installed";
434
$TEXT['ADDON'] = "Add-On";
435
$TEXT['EXTENSION'] = "Extension";
429 436

  
430 437
// Success/error messages
431 438
$MESSAGE['FRONTEND']['SORRY_NO_VIEWING_PERMISSIONS'] = 'Beklager - du har ikke adgang til at se denne side';
......
571 578
$MESSAGE['GENERIC']['PLEASE_CHECK_BACK_SOON'] = 'Kom venligst igen senere...';
572 579
$MESSAGE['GENERIC']['PLEASE_BE_PATIENT'] = 'V&aelig;r venligst t&aring;lmodig, dette kan godt vare et stykke tid.';
573 580
$MESSAGE['GENERIC']['ERROR_OPENING_FILE'] = 'Fejl ved &aring;bning af filen.';
581
$MESSAGE['GENERIC']['INVALID_ADDON_FILE'] = 'Invalid Website Baker installation file. Please check the *.zip format.';
582
$MESSAGE['GENERIC']['INVALID_LANGUAGE_FILE'] = 'Invalid Website Baker language file. Please check the text file.';
574 583

  
575 584
$MESSAGE['MOD_FORM']['REQUIRED_FIELDS'] = 'Du SKAL udfylde f&oslash;lgende felter:';
576 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&oslash;v igen om en times tid!';
......
581 590
$MESSAGE['MOD_RELOAD']['TEMPLATES_RELOADED'] = 'Templates opdateret med succes';
582 591
$MESSAGE['MOD_RELOAD']['LANGUAGES_RELOADED'] = 'Sprog opdateret med succes';
583 592

  
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

  
584 595
?>
trunk/wb/languages/TR.php
33 33
// Set the language information
34 34
$language_code = 'TR';
35 35
$language_name = 'Turkish';
36
$language_version = '2.7';
37
$language_platform = '2.7.x';
36
$language_version = '2.8';
37
$language_platform = '2.8.x';
38 38
$language_author = 'Atakan KO&Ccedil;';
39 39
$language_license = 'GNU General Public License';
40 40

  
......
120 120
$HEADING['ADD_GROUP'] = 'Grup Ekle';
121 121
$HEADING['MODIFY_GROUP'] = 'Grup D&uuml;zenle';
122 122

  
123
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
124

  
123 125
// Other text
124 126
$TEXT['OPEN'] = 'Open';
125 127
$TEXT['ADD'] = 'Ekle';
......
426 428
$TEXT['HEADING_CSS_FILE'] = 'Actual module file: ';
427 429
$TEXT['TXT_EDIT_CSS_FILE'] = 'Edit the CSS definitions in the textarea below.';
428 430
$TEXT['CODE_SNIPPET'] = "Code-snippet";
431
$TEXT['REQUIREMENT'] = "Requirement";
432
$TEXT['INSTALLED'] = "installed";
433
$TEXT['NOT_INSTALLED'] = "not installed";
434
$TEXT['ADDON'] = "Add-On";
435
$TEXT['EXTENSION'] = "Extension";
429 436

  
430 437
// Success/error messages
431 438
$MESSAGE['FRONTEND']['SORRY_NO_VIEWING_PERMISSIONS'] = '&Uuml;zg&uuml;n&uuml;m, bu sayfay&yacute; g&ouml;r&uuml;nt&uuml;lemeye yetkiniz yok';
......
571 578
$MESSAGE['GENERIC']['PLEASE_CHECK_BACK_SOON'] = 'L&uuml;tfen daha sonra kontrol edin...';
572 579
$MESSAGE['GENERIC']['PLEASE_BE_PATIENT'] = 'Ol hasta memnun et, bu, bir anda alabilirdi.';
573 580
$MESSAGE['GENERIC']['ERROR_OPENING_FILE'] = 'Dosya a&ccedil;arken hata.';
581
$MESSAGE['GENERIC']['INVALID_ADDON_FILE'] = 'Invalid Website Baker installation file. Please check the *.zip format.';
582
$MESSAGE['GENERIC']['INVALID_LANGUAGE_FILE'] = 'Invalid Website Baker language file. Please check the text file.';
574 583

  
575 584
$MESSAGE['MOD_FORM']['REQUIRED_FIELDS'] = 'You must enter details for the following fields';
576 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.';
......
581 590
$MESSAGE['MOD_RELOAD']['TEMPLATES_RELOADED'] = 'Kal&yacute;plar, ba&thorn;ar&yacute;l&yacute; bir &thorn;ekildeninkini tekrar y&uuml;klendi';
582 591
$MESSAGE['MOD_RELOAD']['LANGUAGES_RELOADED'] = 'Diller, ba&thorn;ar&yacute;l&yacute; bir &thorn;ekildeninkini tekrar y&uuml;klendi';
583 592

  
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

  
584 595
?>
trunk/wb/languages/RU.php
33 33
// Set the language information
34 34
$language_code = 'RU';
35 35
$language_name = 'Russian';
36
$language_version = '2.7';
37
$language_platform = '2.7.x';
36
$language_version = '2.8';
37
$language_platform = '2.8.x';
38 38
$language_author = 'Kirill Karakulko (kirill@nadosoft.com)';
39 39
$language_license = 'GNU General Public License';
40 40

  
......
120 120
$HEADING['ADD_GROUP'] = '&#1044;&#1086;&#1073;&#1072;&#1074;&#1080;&#1090;&#1100; &#1075;&#1088;&#1091;&#1087;&#1087;&#1091;';
121 121
$HEADING['MODIFY_GROUP'] = '&#1048;&#1079;&#1084;&#1077;&#1085;&#1080;&#1090;&#1100; &#1075;&#1088;&#1091;&#1087;&#1087;&#1091;';
122 122

  
123
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
124

  
123 125
// Other text
124 126
$TEXT['OPEN'] = '&#1054;&#1090;&#1082;&#1088;&#1099;&#1090;&#1100;';
125 127
$TEXT['ADD'] = '&#1044;&#1086;&#1073;&#1072;&#1074;&#1080;&#1090;&#1100;';
......
426 428
$TEXT['HEADING_CSS_FILE'] = '&#1048;&#1084;&#1103; &#1092;&#1072;&#1081;&#1083;&#1072;: ';
427 429
$TEXT['TXT_EDIT_CSS_FILE'] = '&#1048;&#1079;&#1084;&#1077;&#1085;&#1080;&#1090;&#1077; CSS &#1092;&#1072;&#1081;&#1083;, &#1077;&#1089;&#1083;&#1080; &#1085;&#1077;&#1086;&#1073;&#1093;&#1086;&#1076;&#1080;&#1084;&#1086;:';
428 430
$TEXT['CODE_SNIPPET'] = "Code-snippet";
431
$TEXT['REQUIREMENT'] = "Requirement";
432
$TEXT['INSTALLED'] = "installed";
433
$TEXT['NOT_INSTALLED'] = "not installed";
434
$TEXT['ADDON'] = "Add-On";
435
$TEXT['EXTENSION'] = "Extension";
429 436

  
430 437
// Success/error messages
431 438
$MESSAGE['FRONTEND']['SORRY_NO_VIEWING_PERMISSIONS'] = '&#1048;&#1079;&#1074;&#1080;&#1085;&#1080;&#1090;&#1077;, &#1091; &#1074;&#1072;&#1089; &#1085;&#1077;&#1090; &#1087;&#1088;&#1072;&#1074; &#1076;&#1083;&#1103; &#1087;&#1088;&#1086;&#1089;&#1084;&#1086;&#1090;&#1088;&#1072; &#1101;&#1090;&#1086;&#1081; &#1089;&#1090;&#1088;&#1072;&#1085;&#1080;&#1094;&#1099;';
......
571 578
$MESSAGE['GENERIC']['PLEASE_CHECK_BACK_SOON'] = '&#1047;&#1072;&#1081;&#1076;&#1080;&#1090;&#1077; &#1087;&#1086;&#1087;&#1086;&#1079;&#1078;&#1077;...';
572 579
$MESSAGE['GENERIC']['PLEASE_BE_PATIENT'] = '&#1055;&#1086;&#1078;&#1072;&#1083;&#1091;&#1081;&#1089;&#1090;&#1072; &#1087;&#1086;&#1076;&#1086;&#1078;&#1076;&#1080;&#1090;&#1077;, &#1101;&#1090;&#1086; &#1084;&#1086;&#1078;&#1077;&#1090; &#1079;&#1072;&#1085;&#1103;&#1090;&#1100; &#1085;&#1077;&#1082;&#1086;&#1090;&#1086;&#1088;&#1086;&#1077; &#1074;&#1088;&#1077;&#1084;&#1103;.';
573 580
$MESSAGE['GENERIC']['ERROR_OPENING_FILE'] = '&#1054;&#1096;&#1080;&#1073;&#1082;&#1072; &#1086;&#1090;&#1082;&#1088;&#1099;&#1090;&#1080;&#1103; &#1092;&#1072;&#1081;&#1083;&#1072;.';
581
$MESSAGE['GENERIC']['INVALID_ADDON_FILE'] = 'Invalid Website Baker installation file. Please check the *.zip format.';
582
$MESSAGE['GENERIC']['INVALID_LANGUAGE_FILE'] = 'Invalid Website Baker language file. Please check the text file.';
574 583

  
575 584
$MESSAGE['MOD_FORM']['REQUIRED_FIELDS'] = '&#1042;&#1053;&#1048;&#1052;&#1040;&#1053;&#1048;&#1045;! &#1042;&#1099; &#1076;&#1086;&#1083;&#1078;&#1085;&#1099; &#1079;&#1072;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1100; &#1087;&#1086;&#1083;&#1077;';
576 585
$MESSAGE['MOD_FORM']['EXCESS_SUBMISSIONS'] = '&#1048;&#1079;&#1074;&#1080;&#1085;&#1080;&#1090;&#1077;, &#1089;&#1083;&#1080;&#1096;&#1082;&#1086;&#1084; &#1084;&#1085;&#1086;&#1075;&#1086; &#1089;&#1086;&#1086;&#1073;&#1097;&#1077;&#1085;&#1080;&#1081; &#1079;&#1072; &#1087;&#1086;&#1089;&#1083;&#1077;&#1076;&#1085;&#1080;&#1081; &#1095;&#1072;&#1089;. &#1055;&#1086;&#1078;&#1072;&#1083;&#1091;&#1081;&#1089;&#1090;&#1072; &#1087;&#1086;&#1087;&#1088;&#1086;&#1073;&#1091;&#1081;&#1090;&#1077; &#1087;&#1086;&#1074;&#1090;&#1086;&#1088;&#1080;&#1090;&#1100; &#1086;&#1090;&#1087;&#1088;&#1072;&#1074;&#1082;&#1091; &#1095;&#1077;&#1088;&#1077;&#1079; &#1085;&#1077;&#1082;&#1086;&#1090;&#1086;&#1088;&#1086;&#1077; &#1074;&#1088;&#1077;&#1084;&#1103;.';
......
581 590
$MESSAGE['MOD_RELOAD']['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;';
582 591
$MESSAGE['MOD_RELOAD']['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;';
583 592

  
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

  
584 595
?>
trunk/wb/languages/DE.php
33 33
// Set the language information
34 34
$language_code = 'DE';
35 35
$language_name = 'Deutsch';
36
$language_version = '2.7';
37
$language_platform = '2.7.x';
38
$language_author = 'Stefan Braunewell, Matthias Gallas, Dave Camenisch, Klaus Weitzel, Michael Tenschert';
36
$language_version = '2.8';
37
$language_platform = '2.8.x';
38
$language_author = 'Stefan Braunewell, Matthias Gallas';
39 39
$language_license = 'GNU General Public License';
40 40

  
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff