Revision 925
Added by doc over 16 years ago
| 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' => ' ' . $TEXT['ADDON'] . ': ' . htmlentities($addon), |
|
| 183 |
'required' => ($version != '') ? $operator . ' ' . $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) . ' ' . $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' => ' ' . $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' => ' '. ($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ää ryhmä'; |
| 121 | 121 |
$HEADING['MODIFY_GROUP'] = 'Muokkaa ryhmää'; |
| 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ää'; |
| ... | ... | |
| 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ät riitä...'; |
| ... | ... | |
| 571 | 578 |
$MESSAGE['GENERIC']['PLEASE_CHECK_BACK_SOON'] = 'Tervetuluoa myö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äytä kentät'; |
| 576 | 585 |
$MESSAGE['MOD_FORM']['EXCESS_SUBMISSIONS'] = 'Rajoitus voimassa, yritä 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 = 'Češ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řidat skupinu'; |
| 121 | 121 |
$HEADING['MODIFY_GROUP'] = 'Změ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ř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áte oprávnění prohlížet tuto stránku'; |
| ... | ... | |
| 571 | 578 |
$MESSAGE['GENERIC']['PLEASE_CHECK_BACK_SOON'] = 'Zkuste to příště...'; |
| 572 | 579 |
$MESSAGE['GENERIC']['PLEASE_BE_PATIENT'] = 'Čekejte prosím, operace může chvíli trvat.'; |
| 573 | 580 |
$MESSAGE['GENERIC']['ERROR_OPENING_FILE'] = 'Došlo k chybě při otevírání 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íte vyplnit následující pole'; |
| 576 | 585 |
$MESSAGE['MOD_FORM']['EXCESS_SUBMISSIONS'] = 'Omlouváme se, ale tento formulář dosáhl limitu povolených odeslání pro tuto hodinu. Prosím zkuste to znovu v další hodině..'; |
| ... | ... | |
| 581 | 590 |
$MESSAGE['MOD_RELOAD']['TEMPLATES_RELOADED'] = 'Šablony byly úspěšně přehrány'; |
| 582 | 591 |
$MESSAGE['MOD_RELOAD']['LANGUAGES_RELOADED'] = 'Jazyky byly úspěšně přehrá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'] = 'Ä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ä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ärr, du har inte tillåtelse att titta på denna sida'; |
| ... | ... | |
| 571 | 578 |
$MESSAGE['GENERIC']['PLEASE_CHECK_BACK_SOON'] = 'Vänligen kom tillbaka snart...'; |
| 572 | 579 |
$MESSAGE['GENERIC']['PLEASE_BE_PATIENT'] = 'Vänligen ha tålamod, det här kan ta en stund.'; |
| 573 | 580 |
$MESSAGE['GENERIC']['ERROR_OPENING_FILE'] = 'Fel vid ö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åste fylla i följande fält'; |
| 576 | 585 |
$MESSAGE['MOD_FORM']['EXCESS_SUBMISSIONS'] = 'Tyvärr, detta formulär har skickats för många gånger inom denna timme. Försök igen om ett tag.'; |
| ... | ... | |
| 581 | 590 |
$MESSAGE['MOD_RELOAD']['TEMPLATES_RELOADED'] = 'Mallar laddades om'; |
| 582 | 591 |
$MESSAGE['MOD_RELOAD']['LANGUAGES_RELOADED'] = 'Språ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ón, no tiene permiso para ver esta pá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ç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ésolé, 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ésolé mais vous avez utilisé ce formulaire trop de fois durant cette heure. Merci de réessayer à l\'heure suivante'; |
| ... | ... | |
| 581 | 590 |
$MESSAGE['MOD_RELOAD']['TEMPLATES_RELOADED'] = 'Modèles réinstallés avec succès'; |
| 582 | 591 |
$MESSAGE['MOD_RELOAD']['LANGUAGES_RELOADED'] = 'Langages réinstallés avec succè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ä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 õigusi selle lehe vaatamiseks'; |
| ... | ... | |
| 571 | 578 |
$MESSAGE['GENERIC']['PLEASE_CHECK_BACK_SOON'] = 'Kü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ärgnevatesse lahtritesse'; |
| 576 | 585 |
$MESSAGE['MOD_FORM']['EXCESS_SUBMISSIONS'] = 'Vabandame, see vorm on juba liiga palju kordi selle tunni jooksul saadetud. Palun proovi jä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štenje za gledanje ove stranice'; |
| ... | ... | |
| 571 | 578 |
$MESSAGE['GENERIC']['PLEASE_CHECK_BACK_SOON'] = 'Molimo pokušajte ponovo zaèas...'; |
| 572 | 579 |
$MESSAGE['GENERIC']['PLEASE_BE_PATIENT'] = 'Budite strpljivo, ovo može potrajati.'; |
| 573 | 580 |
$MESSAGE['GENERIC']['ERROR_OPENING_FILE'] = 'Greš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æa polja'; |
| 576 | 585 |
$MESSAGE['MOD_FORM']['EXCESS_SUBMISSIONS'] = 'Ova forma je pregledavana previše puta u jednom satu. Molimo pokušajte slijedeæi sat.'; |
| ... | ... | |
| 581 | 590 |
$MESSAGE['MOD_RELOAD']['TEMPLATES_RELOADED'] = 'Uspješno nasnimljeni predlošci'; |
| 582 | 591 |
$MESSAGE['MOD_RELOAD']['LANGUAGES_RELOADED'] = 'Uspješ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ępień'; |
| 39 | 39 |
$language_license = 'GNU General Public License'; |
| 40 | 40 |
|
| ... | ... | |
| 120 | 120 |
$HEADING['ADD_GROUP'] = 'Dodaj grupę'; |
| 121 | 121 |
$HEADING['MODIFY_GROUP'] = 'Zmień 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'] = '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ń do oglądania tej strony.'; |
| ... | ... | |
| 571 | 578 |
$MESSAGE['GENERIC']['PLEASE_CHECK_BACK_SOON'] = 'Zapraszamy wkrótce...'; |
| 572 | 579 |
$MESSAGE['GENERIC']['PLEASE_BE_PATIENT'] = 'Prosimy o cierpliwość, to może trochę potrwać.'; |
| 573 | 580 |
$MESSAGE['GENERIC']['ERROR_OPENING_FILE'] = 'Błą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ży wprowadzić szczegóły dla następujących pól'; |
| 576 | 585 |
$MESSAGE['MOD_FORM']['EXCESS_SUBMISSIONS'] = 'Niestety, ten formularz został wysłany zbyt wiele razy w ciągu tej godziny. Prosimy spróbować ponownie za godzinę.'; |
| ... | ... | |
| 581 | 590 |
$MESSAGE['MOD_RELOAD']['TEMPLATES_RELOADED'] = 'Szablony zostały załadowane ponownie'; |
| 582 | 591 |
$MESSAGE['MOD_RELOAD']['LANGUAGES_RELOADED'] = 'Języki zostały zał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ódosítása'; |
| 121 | 121 |
$HEADING['MODIFY_GROUP'] = 'csoport módosítá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á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áljuk, de a megjelenítéshez nincs jogosultsága!'; |
| ... | ... | |
| 571 | 578 |
$MESSAGE['GENERIC']['PLEASE_CHECK_BACK_SOON'] = 'Kérem térjen vissza késõ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övetkezõ mezõket kötelezõ kitöltenie'; |
| 576 | 585 |
$MESSAGE['MOD_FORM']['EXCESS_SUBMISSIONS'] = 'Sajnáljuk, de ez az ûrlap túl sokszor lett kitöltve egy óran belül! Kérem próbálja meg egy óra múlva.'; |
| ... | ... | |
| 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'] = 'Åpne'; |
| 125 | 127 |
$TEXT['ADD'] = 'Tilfø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 å se denne siden'; |
| ... | ... | |
| 571 | 578 |
$MESSAGE['GENERIC']['PLEASE_CHECK_BACK_SOON'] = 'Vennligst kom tilbake på et annet tidspunkt...'; |
| 572 | 579 |
$MESSAGE['GENERIC']['PLEASE_BE_PATIENT'] = 'Vennligst vær tålmodig, dette kan ta en stund.'; |
| 573 | 580 |
$MESSAGE['GENERIC']['ERROR_OPENING_FILE'] = 'Feil ved å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å skrive inn detaljer for følgende felt'; |
| 576 | 585 |
$MESSAGE['MOD_FORM']['EXCESS_SUBMISSIONS'] = 'Beklager, denne form har blitt sendt for mange ganger denne timen. Vennligst prøv igjen neste time.'; |
| ... | ... | |
| 581 | 590 |
$MESSAGE['MOD_RELOAD']['TEMPLATES_RELOADED'] = 'Lykkes i å oppdatere maler'; |
| 582 | 591 |
$MESSAGE['MOD_RELOAD']['LANGUAGES_RELOADED'] = 'Lykkes i å oppdatere språ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š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š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 š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šajos laukos'; |
| 576 | 585 |
$MESSAGE['MOD_FORM']['EXCESS_SUBMISSIONS'] = 'Atvaino, ši forma ir tikusi aizpildita parak daudz reižu šis stundas laika. Ludzu pamegini velreiz pec stundas.'; |
| ... | ... | |
| 581 | 590 |
$MESSAGE['MOD_RELOAD']['TEMPLATES_RELOADED'] = 'š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à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üents camps'; |
| 576 | 585 |
$MESSAGE['MOD_FORM']['EXCESS_SUBMISSIONS'] = 'Ho sentim, aquest formulari ha estat enviat massa vegades durant l\'última hora. Per favor torneu-ho a intentar d\'ací una hora.'; |
| ... | ... | |
| 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ê não tem permissão para ver essa pá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ê precisa preencher os seguintes campos'; |
| 576 | 585 |
$MESSAGE['MOD_FORM']['EXCESS_SUBMISSIONS'] = 'Desculpe, este formulário foi submetido vá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ø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'] = 'Åben'; |
| 125 | 127 |
$TEXT['ADD'] = 'Tilfø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ær venligst tålmodig, dette kan godt vare et stykke tid.'; |
| 573 | 580 |
$MESSAGE['GENERIC']['ERROR_OPENING_FILE'] = 'Fejl ved å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ø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ø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Ç'; |
| 39 | 39 |
$language_license = 'GNU General Public License'; |
| 40 | 40 |
|
| ... | ... | |
| 120 | 120 |
$HEADING['ADD_GROUP'] = 'Grup Ekle'; |
| 121 | 121 |
$HEADING['MODIFY_GROUP'] = 'Grup Dü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'] = 'Üzgünüm, bu sayfayý görüntülemeye yetkiniz yok'; |
| ... | ... | |
| 571 | 578 |
$MESSAGE['GENERIC']['PLEASE_CHECK_BACK_SOON'] = 'Lü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ç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ýplar, baþarýlý bir þekildeninkini tekrar yüklendi'; |
| 582 | 591 |
$MESSAGE['MOD_RELOAD']['LANGUAGES_RELOADED'] = 'Diller, baþarýlý bir þekildeninkini tekrar yü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'] = 'Добавить группу'; |
| 121 | 121 |
$HEADING['MODIFY_GROUP'] = 'Изменить группу'; |
| 122 | 122 |
|
| 123 |
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met'; |
|
| 124 |
|
|
| 123 | 125 |
// Other text |
| 124 | 126 |
$TEXT['OPEN'] = 'Открыть'; |
| 125 | 127 |
$TEXT['ADD'] = 'Добавить'; |
| ... | ... | |
| 426 | 428 |
$TEXT['HEADING_CSS_FILE'] = 'Имя файла: '; |
| 427 | 429 |
$TEXT['TXT_EDIT_CSS_FILE'] = 'Измените CSS файл, если необходимо:'; |
| 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'] = 'Извините, у вас нет прав для просмотра этой страницы'; |
| ... | ... | |
| 571 | 578 |
$MESSAGE['GENERIC']['PLEASE_CHECK_BACK_SOON'] = 'Зайдите попозже...'; |
| 572 | 579 |
$MESSAGE['GENERIC']['PLEASE_BE_PATIENT'] = 'Пожалуйста подождите, это может занять некоторое время.'; |
| 573 | 580 |
$MESSAGE['GENERIC']['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'] = 'ВНИМАНИЕ! Вы должны заполнить поле'; |
| 576 | 585 |
$MESSAGE['MOD_FORM']['EXCESS_SUBMISSIONS'] = 'Извините, слишком много сообщений за последний час. Пожалуйста попробуйте повторить отправку через некоторое время.'; |
| ... | ... | |
| 581 | 590 |
$MESSAGE['MOD_RELOAD']['TEMPLATES_RELOADED'] = 'Шаблоны перезагружены успешно'; |
| 582 | 591 |
$MESSAGE['MOD_RELOAD']['LANGUAGES_RELOADED'] = 'Языки перезагружены успешно'; |
| 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 |
|
Also available in: Unified diff
Added option to perform pre-installation checks to test requirements of Add-Ons