Revision 1551
Added by Dietmar almost 13 years ago
branches/2.8.x/CHANGELOG | ||
---|---|---|
11 | 11 |
! = Update/Change |
12 | 12 |
|
13 | 13 |
=========================== add small Features 2.8.2 ========================== |
14 |
27 Dez-2011 Build 1551 Dietmar Woellbrink (Luisehahne) |
|
15 |
+ add languages vars in languages files |
|
16 |
+ add upload error mesages moduleinstall |
|
17 |
+ add index.php if not exists in function createFolderProtectFile |
|
18 |
! corrected changed coding between login_form and forgot_form |
|
14 | 19 |
21 Dez-2011 Build 1550 Dietmar Woellbrink (Luisehahne) |
15 | 20 |
! update php mailer to version 5.2 |
16 | 21 |
19 Dez-2011 Build 1549 Dietmar Woellbrink (Luisehahne) |
branches/2.8.x/wb/admin/interface/version.php | ||
---|---|---|
52 | 52 |
|
53 | 53 |
// check if defined to avoid errors during installation (redirect to admin panel fails if PHP error/warnings are enabled) |
54 | 54 |
if(!defined('VERSION')) define('VERSION', '2.8.2'); |
55 |
if(!defined('REVISION')) define('REVISION', '1550');
|
|
55 |
if(!defined('REVISION')) define('REVISION', '1551');
|
|
56 | 56 |
if(!defined('SP')) define('SP', 'SP2'); |
branches/2.8.x/wb/admin/modules/install.php | ||
---|---|---|
45 | 45 |
$temp_file = $temp_dir . $_FILES['userfile']['name']; |
46 | 46 |
$temp_unzip = WB_PATH.'/temp/unzip/'; |
47 | 47 |
|
48 |
// Try to upload the file to the temp dir |
|
49 |
if(!move_uploaded_file($_FILES['userfile']['tmp_name'], $temp_file)) |
|
50 |
{ |
|
51 |
$admin->print_error($MESSAGE['GENERIC']['CANNOT_UPLOAD']); |
|
48 |
if(!$_FILES['userfile']['error']) { |
|
49 |
// Try to upload the file to the temp dir |
|
50 |
if(!move_uploaded_file($_FILES['userfile']['tmp_name'], $temp_file)) |
|
51 |
{ |
|
52 |
$admin->print_error($MESSAGE['GENERIC_BAD_PERMISSIONS']); |
|
53 |
} |
|
54 |
} else { |
|
55 |
// index for language files |
|
56 |
$key = 'UNKNOW_UPLOAD_ERROR'; |
|
57 |
switch ($error_code) { |
|
58 |
case UPLOAD_ERR_INI_SIZE: |
|
59 |
$key = 'UPLOAD_ERR_INI_SIZE'; |
|
60 |
case UPLOAD_ERR_FORM_SIZE: |
|
61 |
$key = 'UPLOAD_ERR_FORM_SIZE'; |
|
62 |
case UPLOAD_ERR_PARTIAL: |
|
63 |
$key = 'UPLOAD_ERR_PARTIAL'; |
|
64 |
case UPLOAD_ERR_NO_FILE: |
|
65 |
$key = 'UPLOAD_ERR_NO_FILE'; |
|
66 |
case UPLOAD_ERR_NO_TMP_DIR: |
|
67 |
$key = 'UPLOAD_ERR_NO_TMP_DIR'; |
|
68 |
case UPLOAD_ERR_CANT_WRITE: |
|
69 |
$key = 'UPLOAD_ERR_CANT_WRITE'; |
|
70 |
case UPLOAD_ERR_EXTENSION: |
|
71 |
$key = 'UPLOAD_ERR_EXTENSION'; |
|
72 |
default: |
|
73 |
$key = 'UNKNOW_UPLOAD_ERROR'; |
|
74 |
} |
|
75 |
$admin->print_error($MESSAGE[$key].'<br />'.$MESSAGE['GENERIC_CANNOT_UPLOAD']); |
|
52 | 76 |
} |
53 | 77 |
|
54 | 78 |
// Include the PclZip class file (thanks to |
... | ... | |
65 | 89 |
// Check if uploaded file is a valid Add-On zip file |
66 | 90 |
if (!($list && file_exists($temp_unzip . 'index.php'))) |
67 | 91 |
{ |
68 |
$admin->print_error($MESSAGE['GENERIC']['INVALID_ADDON_FILE']);
|
|
92 |
$admin->print_error($MESSAGE['GENERIC_INVALID_ADDON_FILE']);
|
|
69 | 93 |
} |
70 | 94 |
|
71 | 95 |
// Include the modules info file |
branches/2.8.x/wb/account/login_form.php | ||
---|---|---|
4 | 4 |
* @category frontend |
5 | 5 |
* @package account |
6 | 6 |
* @author WebsiteBaker Project |
7 |
* @copyright 2004-2009, Ryan Djurovich |
|
7 | 8 |
* @copyright 2009-2011, Website Baker Org. e.V. |
8 | 9 |
* @link http://www.websitebaker2.org/ |
9 | 10 |
* @license http://www.gnu.org/licenses/gpl.html |
... | ... | |
17 | 18 |
|
18 | 19 |
// Must include code to stop this file being access directly |
19 | 20 |
if(defined('WB_PATH') == false) { die("Cannot access this file directly"); } |
20 |
// Check if the user has already submitted the form, otherwise show it |
|
21 |
if(isset($_POST['email']) && $_POST['email'] != "" && |
|
22 |
preg_match("/([0-9a-zA-Z]+[-._+&])*[0-9a-zA-Z]+@([-0-9a-zA-Z]+[.])+[a-zA-Z]{2,6}/i", $_POST['email'])) |
|
23 |
{ |
|
24 |
$email = strip_tags($_POST['email']); |
|
25 |
// Check if the email exists in the database |
|
26 |
$sql = 'SELECT `user_id`,`username`,`display_name`,`email`,`last_reset`,`password` '. |
|
27 |
'FROM `'.TABLE_PREFIX.'users` '. |
|
28 |
'WHERE `email`=\''.$wb->add_slashes($_POST['email']).'\''; |
|
29 |
if(($results = $database->query($sql))) |
|
30 |
{ |
|
31 |
if(($results_array = $results->fetchRow())) |
|
32 |
{ // Get the id, username, email, and last_reset from the above db query |
|
33 |
// Check if the password has been reset in the last 2 hours |
|
34 |
if( (time() - (int)$results_array['last_reset']) < (2 * 3600) ) { |
|
35 |
// Tell the user that their password cannot be reset more than once per hour |
|
36 |
$message = $MESSAGE['FORGOT_PASS']['ALREADY_RESET']; |
|
37 |
} else { |
|
38 |
require_once(WB_PATH.'/framework/PasswordHash.php'); |
|
39 |
$pwh = new PasswordHash(0, true); |
|
40 |
$old_pass = $results_array['password']; |
|
41 |
// Generate a random password then update the database with it |
|
42 |
$new_pass = $pwh->NewPassword(); |
|
43 |
$sql = 'UPDATE `'.TABLE_PREFIX.'users` '. |
|
44 |
'SET `password`=\''.$pwh->HashPassword($new_pass, true).'\', '. |
|
45 |
'`last_reset`='.time().' '. |
|
46 |
'WHERE `user_id`='.(int)$results_array['user_id']; |
|
47 |
unset($pwh); // destroy $pwh-Object |
|
48 |
if($database->query($sql)) |
|
49 |
{ // Setup email to send |
|
50 |
$mail_to = $email; |
|
51 |
$mail_subject = $MESSAGE['SIGNUP2_SUBJECT_LOGIN_INFO']; |
|
52 |
// Replace placeholders from language variable with values |
|
53 |
$search = array('{LOGIN_DISPLAY_NAME}', '{LOGIN_WEBSITE_TITLE}', '{LOGIN_NAME}', '{LOGIN_PASSWORD}'); |
|
54 |
$replace = array($results_array['display_name'], WEBSITE_TITLE, $results_array['username'], $new_pass); |
|
55 |
$mail_message = str_replace($search, $replace, $MESSAGE['SIGNUP2_BODY_LOGIN_FORGOT']); |
|
56 |
// Try sending the email |
|
57 |
if($wb->mail(SERVER_EMAIL,$mail_to,$mail_subject,$mail_message)) { |
|
58 |
$message = $MESSAGE['FORGOT_PASS_PASSWORD_RESET']; |
|
59 |
$display_form = false; |
|
60 |
}else { // snd mail failed, rollback |
|
61 |
$sql = 'UPDATE `'.TABLE_PREFIX.'users` '. |
|
62 |
'SET `password`=\''.$old_pass.'\' '. |
|
63 |
'WHERE `user_id`='.(int)$results_array['user_id']; |
|
64 |
$database->query($sql); |
|
65 |
$message = $MESSAGE['FORGOT_PASS_CANNOT_EMAIL']; |
|
66 |
} |
|
67 |
}else { // Error updating database |
|
68 |
$message = $MESSAGE['RECORD_MODIFIED_FAILED']; |
|
69 |
if(DEBUG) { |
|
70 |
$message .= '<br />'.$database->get_error(); |
|
71 |
$message .= '<br />'.$sql; |
|
72 |
} |
|
73 |
} |
|
74 |
} |
|
75 |
}else { // no record found - Email doesn't exist, so tell the user |
|
76 |
$message = $MESSAGE['FORGOT_PASS_EMAIL_NOT_FOUND']; |
|
77 |
} |
|
78 |
} else { // Query failed |
|
79 |
$message = 'SystemError:: Database query failed!'; |
|
80 |
if(DEBUG) { |
|
81 |
$message .= '<br />'.$database->get_error(); |
|
82 |
$message .= '<br />'.$sql; |
|
83 |
} |
|
21 |
|
|
22 |
$username_fieldname = 'username'; |
|
23 |
$password_fieldname = 'password'; |
|
24 |
|
|
25 |
if(defined('SMART_LOGIN') AND SMART_LOGIN == 'enabled') { |
|
26 |
// Generate username field name |
|
27 |
$username_fieldname = 'username_'; |
|
28 |
$password_fieldname = 'password_'; |
|
29 |
|
|
30 |
$temp = array_merge(range('a','z'), range(0,9)); |
|
31 |
shuffle($temp); |
|
32 |
for($i=0;$i<=7;$i++) { |
|
33 |
$username_fieldname .= $temp[$i]; |
|
34 |
$password_fieldname .= $temp[$i]; |
|
84 | 35 |
} |
85 |
} else { |
|
86 |
$email = ''; |
|
87 | 36 |
} |
88 | 37 |
|
89 |
if(isset($message) && $message != '') { |
|
90 |
$message_color = 'FF0000'; |
|
91 |
} else { |
|
92 |
$message = $MESSAGE['FORGOT_PASS_NO_DATA']; |
|
93 |
$message_color = '000000'; |
|
94 |
} |
|
95 |
|
|
96 |
$_SESSION['PAGE_LINK'] = get_page_link( $_SESSION['PAGE_ID'] ); |
|
97 |
$_SESSION['HTTP_REFERER'] = page_link($_SESSION['PAGE_LINK']); |
|
98 |
|
|
38 |
$page_id = !empty($_SESSION['PAGE_ID']) ? $_SESSION['PAGE_ID'] : 0; |
|
39 |
$_SESSION['PAGE_LINK'] = get_page_link( $page_id ); |
|
40 |
if(!file_exists($_SESSION['PAGE_LINK'])) {$_SESSION['PAGE_LINK'] = WB_URL.'/'; } |
|
41 |
$_SESSION['HTTP_REFERER'] = $_SESSION['PAGE_LINK']; |
|
42 |
$thisApp->redirect_url = (isset($thisApp->redirect_url) ? $thisApp->redirect_url : $_SESSION['PAGE_LINK']) |
|
99 | 43 |
?> |
100 | 44 |
<div style="margin: 1em auto;"> |
101 | 45 |
<button type="button" value="cancel" onClick="javascript: window.location = '<?php print $_SESSION['HTTP_REFERER'] ?>';"><?php print $TEXT['CANCEL'] ?></button> |
102 | 46 |
</div> |
103 |
<h1 style="text-align: center;"><?php echo $MENU['FORGOT']; ?></h1> |
|
104 |
<form name="forgot_pass" action="<?php echo WB_URL.'/account/forgot.php'; ?>" method="post"> |
|
105 |
<input type="hidden" name="url" value="{URL}" /> |
|
106 |
<table cellpadding="5" cellspacing="0" border="0" align="center" width="500"> |
|
107 |
<tr> |
|
108 |
<td height="40" align="center" style="color: #<?php echo $message_color; ?>;" colspan="2"> |
|
109 |
<?php echo $message; ?> |
|
110 |
</td> |
|
111 |
</tr> |
|
112 |
<?php if(!isset($display_form) OR $display_form != false) { ?> |
|
113 |
<tr> |
|
114 |
<td height="10" colspan="2"></td> |
|
115 |
</tr> |
|
116 |
<tr> |
|
117 |
<td width="165" height="30" align="right"><?php echo $TEXT['EMAIL']; ?>:</td> |
|
118 |
<td><input type="text" maxlength="255" name="email" value="<?php echo $email; ?>" style="width: 180px;" /></td> |
|
119 |
<td><input type="submit" name="submit" value="<?php echo $TEXT['SEND_DETAILS']; ?>" style="width: 180px; font-size: 10px; color: #003366; border: 1px solid #336699; background-color: #DDDDDD; padding: 3px; text-transform: uppercase;" /></td> |
|
120 |
</tr> |
|
47 |
<h1> Login</h1> |
|
48 |
<?php echo $thisApp->message; ?> |
|
49 |
<br /> |
|
50 |
<br /> |
|
51 |
|
|
52 |
<form class="login-box" action="<?php echo WB_URL.'/account/login.php'; ?>" method="post"> |
|
53 |
<input type="hidden" name="username_fieldname" value="<?php echo $username_fieldname; ?>" /> |
|
54 |
<input type="hidden" name="password_fieldname" value="<?php echo $password_fieldname; ?>" /> |
|
55 |
<input type="hidden" name="redirect" value="<?php echo $thisApp->redirect_url;?>" /> |
|
56 |
|
|
57 |
<table cellpadding="5" cellspacing="0" border="0" width="90%"> |
|
58 |
<tr> |
|
59 |
<td style="width:100px"><?php echo $TEXT['USERNAME']; ?>:</td> |
|
60 |
<td class="value_input"> |
|
61 |
<input type="text" name="<?php echo $username_fieldname; ?>" maxlength="30" style="width:220px;"/> |
|
62 |
<script type="text/javascript"> |
|
63 |
// document.login.<?php echo $username_fieldname; ?>.focus(); |
|
64 |
var ref= document.getElementById("<?php echo $username_fieldname; ?>"); |
|
65 |
if (ref) ref.focus(); |
|
66 |
</script> |
|
67 |
</td> |
|
68 |
</tr> |
|
69 |
<tr> |
|
70 |
<td style="width:100px"><?php echo $TEXT['PASSWORD']; ?>:</td> |
|
71 |
<td class="value_input"> |
|
72 |
<input type="password" name="<?php echo $password_fieldname; ?>" maxlength="30" style="width:220px;"/> |
|
73 |
</td> |
|
74 |
</tr> |
|
75 |
<?php if($username_fieldname != 'username') { ?> |
|
76 |
<tr> |
|
77 |
<td> </td> |
|
78 |
<td> |
|
79 |
<input type="checkbox" name="remember" id="remember" value="true"/> |
|
80 |
<label for="remember"><?php echo $TEXT['REMEMBER_ME']; ?></label> |
|
81 |
</td> |
|
82 |
</tr> |
|
121 | 83 |
<?php } ?> |
122 |
</table> |
|
123 |
</form> |
|
84 |
<tr> |
|
85 |
<td> </td> |
|
86 |
<td> |
|
87 |
<input type="submit" name="submit" value="<?php echo $TEXT['LOGIN']; ?>" /> |
|
88 |
<input type="reset" name="reset" value="<?php echo $TEXT['RESET']; ?>" /> |
|
89 |
</td> |
|
90 |
</tr> |
|
91 |
</table> |
|
92 |
|
|
93 |
</form> |
|
94 |
|
|
95 |
<br /> |
|
96 |
|
|
97 |
<a href="<?php echo WB_URL; ?>/account/forgot.php"><?php echo $TEXT['FORGOTTEN_DETAILS']; ?></a> |
branches/2.8.x/wb/account/forgot_form.php | ||
---|---|---|
4 | 4 |
* @category frontend |
5 | 5 |
* @package account |
6 | 6 |
* @author WebsiteBaker Project |
7 |
* @copyright 2004-2009, Ryan Djurovich |
|
8 | 7 |
* @copyright 2009-2011, Website Baker Org. e.V. |
9 | 8 |
* @link http://www.websitebaker2.org/ |
10 | 9 |
* @license http://www.gnu.org/licenses/gpl.html |
... | ... | |
18 | 17 |
|
19 | 18 |
// Must include code to stop this file being access directly |
20 | 19 |
if(defined('WB_PATH') == false) { die("Cannot access this file directly"); } |
21 |
|
|
22 |
// Create new database object |
|
23 |
// $database = new database(); |
|
24 |
|
|
25 | 20 |
// Check if the user has already submitted the form, otherwise show it |
26 | 21 |
if(isset($_POST['email']) && $_POST['email'] != "" && |
27 |
preg_match("/([0-9a-zA-Z]+[-._+&])*[0-9a-zA-Z]+@([-0-9a-zA-Z]+[.])+[a-zA-Z]{2,6}/i", $_POST['email'])) { |
|
22 |
preg_match("/([0-9a-zA-Z]+[-._+&])*[0-9a-zA-Z]+@([-0-9a-zA-Z]+[.])+[a-zA-Z]{2,6}/i", $_POST['email'])) |
|
23 |
{ |
|
28 | 24 |
$email = strip_tags($_POST['email']); |
29 |
|
|
30 |
// Check if the email exists in the database |
|
31 |
$query = "SELECT user_id,username,display_name,email,last_reset,password FROM ".TABLE_PREFIX."users WHERE email = '".$wb->add_slashes($_POST['email'])."'"; |
|
32 |
$results = $database->query($query); |
|
25 |
// Check if the email exists in the database |
|
26 |
$sql = 'SELECT `user_id`,`username`,`display_name`,`email`,`last_reset`,`password` '. |
|
27 |
'FROM `'.TABLE_PREFIX.'users` '. |
|
28 |
'WHERE `email`=\''.$wb->add_slashes($_POST['email']).'\''; |
|
29 |
if(($results = $database->query($sql))) |
|
30 |
{ |
|
31 |
if(($results_array = $results->fetchRow())) |
|
33 | 32 |
if($results->numRows() > 0) { |
34 | 33 |
|
35 |
// Get the id, username, email, and last_reset from the above db query |
|
36 |
$results_array = $results->fetchRow(); |
|
37 |
|
|
34 |
{ // Get the id, username, email, and last_reset from the above db query |
|
38 | 35 |
// Check if the password has been reset in the last 2 hours |
39 |
$last_reset = $results_array['last_reset']; |
|
40 |
$time_diff = time()-$last_reset; // Time since last reset in seconds |
|
41 |
$time_diff = $time_diff/60/60; // Time since last reset in hours |
|
42 |
if($time_diff < 2) { |
|
43 |
|
|
36 |
if( (time() - (int)$results_array['last_reset']) < (2 * 3600) ) { |
|
44 | 37 |
// Tell the user that their password cannot be reset more than once per hour |
45 |
$message = $MESSAGE['FORGOT_PASS']['ALREADY_RESET']; |
|
46 |
|
|
47 |
} else { |
|
48 |
|
|
49 |
$old_pass = $results_array['password']; |
|
50 |
|
|
38 |
$message = $MESSAGE['FORGOT_PASS']['ALREADY_RESET']; |
|
39 |
} else { |
|
40 |
require_once(WB_PATH.'/framework/PasswordHash.php'); |
|
41 |
$pwh = new PasswordHash(0, true); |
|
42 |
$old_pass = $results_array['password']; |
|
51 | 43 |
// Generate a random password then update the database with it |
52 |
$new_pass = ''; |
|
53 |
$salt = "abchefghjkmnpqrstuvwxyz0123456789"; |
|
54 |
srand((double)microtime()*1000000); |
|
55 |
$i = 0; |
|
56 |
while ($i <= 7) { |
|
57 |
$num = rand() % 33; |
|
58 |
$tmp = substr($salt, $num, 1); |
|
59 |
$new_pass = $new_pass . $tmp; |
|
60 |
$i++; |
|
61 |
} |
|
62 |
$database->query("UPDATE ".TABLE_PREFIX."users SET password = '".md5($new_pass)."', last_reset = '".time()."' WHERE user_id = '".$results_array['user_id']."'"); |
|
63 |
|
|
64 |
if($database->is_error()) { |
|
65 |
// Error updating database |
|
66 |
$message = $database->get_error(); |
|
67 |
} else { |
|
68 |
// Setup email to send |
|
69 |
$mail_to = $email; |
|
70 |
$mail_subject = $MESSAGE['SIGNUP2']['SUBJECT_LOGIN_INFO']; |
|
71 |
|
|
44 |
$new_pass = $pwh->NewPassword(); |
|
45 |
$sql = 'UPDATE `'.TABLE_PREFIX.'users` '. |
|
46 |
'SET `password`=\''.$pwh->HashPassword($new_pass, true).'\', '. |
|
47 |
'`last_reset`='.time().' '. |
|
48 |
'WHERE `user_id`='.(int)$results_array['user_id']; |
|
49 |
unset($pwh); // destroy $pwh-Object |
|
50 |
if($database->query($sql)) |
|
51 |
{ // Setup email to send |
|
52 |
$mail_to = $email; |
|
53 |
$mail_subject = $MESSAGE['SIGNUP2_SUBJECT_LOGIN_INFO']; |
|
72 | 54 |
// Replace placeholders from language variable with values |
73 |
$search = array('{LOGIN_DISPLAY_NAME}', '{LOGIN_WEBSITE_TITLE}', '{LOGIN_NAME}', '{LOGIN_PASSWORD}'); |
|
74 |
$replace = array($results_array['display_name'], WEBSITE_TITLE, $results_array['username'], $new_pass); |
|
75 |
$mail_message = str_replace($search, $replace, $MESSAGE['SIGNUP2']['BODY_LOGIN_FORGOT']); |
|
76 |
|
|
55 |
$search = array('{LOGIN_DISPLAY_NAME}', '{LOGIN_WEBSITE_TITLE}', '{LOGIN_NAME}', '{LOGIN_PASSWORD}'); |
|
56 |
$replace = array($results_array['display_name'], WEBSITE_TITLE, $results_array['username'], $new_pass); |
|
57 |
$mail_message = str_replace($search, $replace, $MESSAGE['SIGNUP2_BODY_LOGIN_FORGOT']); |
|
77 | 58 |
// Try sending the email |
78 |
if($wb->mail(SERVER_EMAIL,$mail_to,$mail_subject,$mail_message)) { |
|
79 |
$message = $MESSAGE['FORGOT_PASS']['PASSWORD_RESET']; |
|
80 |
$display_form = false; |
|
81 |
} else { |
|
82 |
$database->query("UPDATE ".TABLE_PREFIX."users SET password = '".$old_pass."' WHERE user_id = '".$results_array['user_id']."'"); |
|
83 |
$message = $MESSAGE['FORGOT_PASS']['CANNOT_EMAIL']; |
|
59 |
if($wb->mail(SERVER_EMAIL,$mail_to,$mail_subject,$mail_message)) { |
|
60 |
$message = $MESSAGE['FORGOT_PASS_PASSWORD_RESET']; |
|
61 |
$display_form = false; |
|
62 |
}else { // snd mail failed, rollback |
|
63 |
$sql = 'UPDATE `'.TABLE_PREFIX.'users` '. |
|
64 |
'SET `password`=\''.$old_pass.'\' '. |
|
65 |
'WHERE `user_id`='.(int)$results_array['user_id']; |
|
66 |
$database->query($sql); |
|
67 |
$message = $MESSAGE['FORGOT_PASS_CANNOT_EMAIL']; |
|
68 |
} |
|
69 |
}else { // Error updating database |
|
70 |
$message = $MESSAGE['RECORD_MODIFIED_FAILED']; |
|
71 |
if(DEBUG) { |
|
72 |
$message .= '<br />'.$database->get_error(); |
|
73 |
$message .= '<br />'.$sql; |
|
74 |
} |
|
84 | 75 |
} |
85 | 76 |
} |
86 |
|
|
77 |
}else { // no record found - Email doesn't exist, so tell the user |
|
78 |
$message = $MESSAGE['FORGOT_PASS_EMAIL_NOT_FOUND']; |
|
87 | 79 |
} |
88 |
|
|
89 |
} else { |
|
90 |
// Email doesn't exist, so tell the user |
|
91 |
$message = $MESSAGE['FORGOT_PASS']['EMAIL_NOT_FOUND']; |
|
80 |
} else { // Query failed |
|
81 |
$message = 'SystemError:: Database query failed!'; |
|
82 |
if(DEBUG) { |
|
83 |
$message .= '<br />'.$database->get_error(); |
|
84 |
$message .= '<br />'.$sql; |
|
85 |
} |
|
92 | 86 |
} |
93 |
|
|
94 | 87 |
} else { |
95 | 88 |
$email = ''; |
96 | 89 |
} |
97 | 90 |
|
98 |
if(!isset($message)) {
|
|
91 |
if(isset($message) && $message != '') {
|
|
99 | 92 |
$message = $MESSAGE['FORGOT_PASS']['NO_DATA']; |
93 |
$message_color = 'FF0000'; |
|
94 |
} else { |
|
95 |
$message = $MESSAGE['FORGOT_PASS_NO_DATA']; |
|
100 | 96 |
$message_color = '000000'; |
101 |
} else { |
|
102 |
$message_color = 'FF0000'; |
|
103 | 97 |
} |
104 | 98 |
|
105 | 99 |
$_SESSION['PAGE_LINK'] = get_page_link( $_SESSION['PAGE_ID'] ); |
... | ... | |
110 | 104 |
<button type="button" value="cancel" onClick="javascript: window.location = '<?php print $_SESSION['HTTP_REFERER'] ?>';"><?php print $TEXT['CANCEL'] ?></button> |
111 | 105 |
</div> |
112 | 106 |
<h1 style="text-align: center;"><?php echo $MENU['FORGOT']; ?></h1> |
113 |
|
|
114 | 107 |
<form name="forgot_pass" action="<?php echo WB_URL.'/account/forgot.php'; ?>" method="post"> |
115 | 108 |
<input type="hidden" name="url" value="{URL}" /> |
116 | 109 |
<table cellpadding="5" cellspacing="0" border="0" align="center" width="500"> |
... | ... | |
119 | 112 |
<?php echo $message; ?> |
120 | 113 |
</td> |
121 | 114 |
</tr> |
122 |
<?php if(!isset($display_form) OR $display_form != false) { ?>
|
|
115 |
<?php if(!isset($display_form) OR $display_form != false) { ?> |
|
123 | 116 |
<tr> |
124 | 117 |
<td height="10" colspan="2"></td> |
125 | 118 |
</tr> |
... | ... | |
128 | 121 |
<td><input type="text" maxlength="255" name="email" value="<?php echo $email; ?>" style="width: 180px;" /></td> |
129 | 122 |
<td><input type="submit" name="submit" value="<?php echo $TEXT['SEND_DETAILS']; ?>" style="width: 180px; font-size: 10px; color: #003366; border: 1px solid #336699; background-color: #DDDDDD; padding: 3px; text-transform: uppercase;" /></td> |
130 | 123 |
</tr> |
131 |
<!-- |
|
132 |
<tr> |
|
133 |
<td> </td> |
|
134 |
</tr> |
|
135 |
<tr style="display: {DISPLAY_FORM}"> |
|
136 |
<td height="10" colspan="2"></td> |
|
137 |
</tr> |
|
138 |
--> |
|
139 |
<?php } ?> |
|
124 |
<?php } ?> |
|
140 | 125 |
</table> |
141 | 126 |
</form> |
branches/2.8.x/wb/framework/functions.php | ||
---|---|---|
680 | 680 |
$filename = $sAbsDir.'/index.php'; |
681 | 681 |
|
682 | 682 |
// write content into file |
683 |
if(is_writable($filename)) { |
|
684 |
if(file_put_contents($filename, $content)) { |
|
685 |
print 'create => '.str_replace( $wb_path,'',$filename).'<br />'; |
|
686 |
change_mode($filename, 'file'); |
|
687 |
} |
|
688 |
} |
|
689 |
} else { |
|
690 |
$retVal[] = $MESSAGE['GENERIC_BAD_PERMISSIONS']; |
|
691 |
} |
|
692 |
return $retVal; |
|
683 |
if(is_writable($filename) || !file_exists($filename)) { |
|
684 |
if(file_put_contents($filename, $content)) { |
|
685 |
// print 'create => '.str_replace( $wb_path,'',$filename).'<br />'; |
|
686 |
change_mode($filename, 'file'); |
|
687 |
}else { |
|
688 |
$retVal[] = $MESSAGE['GENERIC_BAD_PERMISSIONS'].' :: '.$filename; |
|
689 |
} |
|
690 |
} |
|
691 |
} else { |
|
692 |
$retVal[] = $MESSAGE['GENERIC_BAD_PERMISSIONS']; |
|
693 |
} |
|
694 |
return $retVal; |
|
693 | 695 |
} |
694 | 696 |
|
695 | 697 |
function rebuildFolderProtectFile($dir='') |
branches/2.8.x/wb/languages/FI.php | ||
---|---|---|
635 | 635 |
$MESSAGE['START_UPGRADE_SCRIPT_EXISTS'] = 'Please delete the file "upgrade-script.php" from your webspace.'; |
636 | 636 |
$MESSAGE['START_WELCOME_MESSAGE'] = 'Tervetuloa sivuston hallintaan'; |
637 | 637 |
$MESSAGE['TEMPLATES_CHANGE_TEMPLATE_NOTICE'] = 'Sivupohjan voi vaihtaa asetukset-kohdasta'; |
638 |
$MESSAGE['UNKNOW_UPLOAD_ERROR'] = 'Unknown upload error'; |
|
639 |
$MESSAGE['UPLOAD_ERR_CANT_WRITE'] = 'Failed to write file to disk'; |
|
640 |
$MESSAGE['UPLOAD_ERR_EXTENSION'] = 'File upload stopped by extension'; |
|
641 |
$MESSAGE['UPLOAD_ERR_FORM_SIZE'] = 'The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form'; |
|
642 |
$MESSAGE['UPLOAD_ERR_INI_SIZE'] = 'The uploaded file exceeds the upload_max_filesize directive in php.ini'; |
|
643 |
$MESSAGE['UPLOAD_ERR_NO_FILE'] = 'No file was uploaded'; |
|
644 |
$MESSAGE['UPLOAD_ERR_NO_TMP_DIR'] = 'Missing a temporary folder'; |
|
645 |
$MESSAGE['UPLOAD_ERR_OK'] = 'File were successful uploaded'; |
|
646 |
$MESSAGE['UPLOAD_ERR_PARTIAL'] = 'The uploaded file was only partially uploaded'; |
|
638 | 647 |
$MESSAGE['USERS_ADDED'] = 'Lisätty'; |
639 | 648 |
$MESSAGE['USERS_CANT_SELFDELETE'] = 'Function rejected, You can not delete yourself!'; |
640 | 649 |
$MESSAGE['USERS_CHANGING_PASSWORD'] = 'Jos haluat vaihtaa salasanan, täytä vain ko kentät'; |
... | ... | |
670 | 679 |
{ |
671 | 680 |
include(WB_PATH.'/languages/old.format.inc.php'); |
672 | 681 |
} |
673 |
|
branches/2.8.x/wb/languages/EN.php | ||
---|---|---|
540 | 540 |
$MESSAGE['MEDIA_TARGET_DOT_DOT_SLASH'] = 'Cannot have ../ in the folder target'; |
541 | 541 |
$MESSAGE['MEDIA_UPLOADED'] = ' files were successfully uploaded'; |
542 | 542 |
$MESSAGE['MOD_FORM_EXCESS_SUBMISSIONS'] = 'Sorry, this form has been submitted too many times so far this hour. Please retry in the next hour.'; |
543 |
$MESSAGE['MOD_FORM_INCORRECT_CAPTCHA'] = 'The verification number (also known as Captcha) that you entered is incorrect. If you are having problems reading the Captcha, please email: <a href="mailto:'.SERVER_EMAIL.'">'.SERVER_EMAIL.'</a>';
|
|
543 |
$MESSAGE['MOD_FORM_INCORRECT_CAPTCHA'] = 'The verification number (also known as Captcha) that you entered is incorrect. If you are having problems reading the Captcha, please email: <a href="mailto:'.'.SERVER_EMAIL.'.'">'.'.SERVER_EMAIL.'.'</a>';
|
|
544 | 544 |
$MESSAGE['MOD_FORM_REQUIRED_FIELDS'] = 'You must enter details for the following fields'; |
545 | 545 |
$MESSAGE['PAGES_ADDED'] = 'Page added successfully'; |
546 | 546 |
$MESSAGE['PAGES_ADDED_HEADING'] = 'Page heading added successfully'; |
... | ... | |
635 | 635 |
$MESSAGE['START_UPGRADE_SCRIPT_EXISTS'] = 'Please delete the file "upgrade-script.php" from your webspace.'; |
636 | 636 |
$MESSAGE['START_WELCOME_MESSAGE'] = 'Welcome to WebsiteBaker Administration'; |
637 | 637 |
$MESSAGE['TEMPLATES_CHANGE_TEMPLATE_NOTICE'] = 'Please note: to change the template you must go to the Settings section'; |
638 |
|
|
639 |
$MESSAGE['UPLOAD_ERR_OK'] = 'File were successful uploaded'; |
|
640 |
$MESSAGE['UPLOAD_ERR_INI_SIZE'] = 'The uploaded file exceeds the upload_max_filesize directive in php.ini'; |
|
641 |
$MESSAGE['UPLOAD_ERR_FORM_SIZE'] = 'The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form'; |
|
642 |
$MESSAGE['UPLOAD_ERR_PARTIAL'] = 'The uploaded file was only partially uploaded'; |
|
643 |
$MESSAGE['UPLOAD_ERR_NO_FILE'] = 'No file was uploaded'; |
|
644 |
$MESSAGE['UPLOAD_ERR_NO_TMP_DIR'] = 'Missing a temporary folder'; |
|
645 |
$MESSAGE['UPLOAD_ERR_CANT_WRITE'] = 'Failed to write file to disk'; |
|
646 |
$MESSAGE['UPLOAD_ERR_EXTENSION'] = 'File upload stopped by extension'; |
|
647 |
$MESSAGE['UNKNOW_UPLOAD_ERROR'] = 'Unknown upload error'; |
|
648 |
|
|
638 | 649 |
$MESSAGE['USERS_ADDED'] = 'User added successfully'; |
639 | 650 |
$MESSAGE['USERS_CANT_SELFDELETE'] = 'Function rejected, You can not delete yourself!'; |
640 | 651 |
$MESSAGE['USERS_CHANGING_PASSWORD'] = 'Please note: You should only enter values in the above fields if you wish to change this users password'; |
... | ... | |
669 | 680 |
if(file_exists(WB_PATH.'/languages/old.format.inc.php')) |
670 | 681 |
{ |
671 | 682 |
include(WB_PATH.'/languages/old.format.inc.php'); |
672 |
} |
|
683 |
} |
branches/2.8.x/wb/languages/CS.php | ||
---|---|---|
635 | 635 |
$MESSAGE['START_UPGRADE_SCRIPT_EXISTS'] = 'Please delete the file "upgrade-script.php" from your webspace.'; |
636 | 636 |
$MESSAGE['START_WELCOME_MESSAGE'] = 'Vítejte v Administrační části'; |
637 | 637 |
$MESSAGE['TEMPLATES_CHANGE_TEMPLATE_NOTICE'] = 'Pozn.: změna šablony se provádí v sekci Nastavení'; |
638 |
$MESSAGE['UNKNOW_UPLOAD_ERROR'] = 'Unknown upload error'; |
|
639 |
$MESSAGE['UPLOAD_ERR_CANT_WRITE'] = 'Failed to write file to disk'; |
|
640 |
$MESSAGE['UPLOAD_ERR_EXTENSION'] = 'File upload stopped by extension'; |
|
641 |
$MESSAGE['UPLOAD_ERR_FORM_SIZE'] = 'The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form'; |
|
642 |
$MESSAGE['UPLOAD_ERR_INI_SIZE'] = 'The uploaded file exceeds the upload_max_filesize directive in php.ini'; |
|
643 |
$MESSAGE['UPLOAD_ERR_NO_FILE'] = 'No file was uploaded'; |
|
644 |
$MESSAGE['UPLOAD_ERR_NO_TMP_DIR'] = 'Missing a temporary folder'; |
|
645 |
$MESSAGE['UPLOAD_ERR_OK'] = 'File were successful uploaded'; |
|
646 |
$MESSAGE['UPLOAD_ERR_PARTIAL'] = 'The uploaded file was only partially uploaded'; |
|
638 | 647 |
$MESSAGE['USERS_ADDED'] = 'Uživatel byl úspěšně přidán'; |
639 | 648 |
$MESSAGE['USERS_CANT_SELFDELETE'] = 'Function rejected, You can not delete yourself!'; |
640 | 649 |
$MESSAGE['USERS_CHANGING_PASSWORD'] = 'Pozn.: vyplňte pouze hodnoty výše pokud si přejete změnit heslo'; |
... | ... | |
670 | 679 |
{ |
671 | 680 |
include(WB_PATH.'/languages/old.format.inc.php'); |
672 | 681 |
} |
673 |
|
branches/2.8.x/wb/languages/SE.php | ||
---|---|---|
635 | 635 |
$MESSAGE['START_UPGRADE_SCRIPT_EXISTS'] = 'Please delete the file "upgrade-script.php" from your webspace.'; |
636 | 636 |
$MESSAGE['START_WELCOME_MESSAGE'] = 'Välkommen till administrationen av WebsiteBaker'; |
637 | 637 |
$MESSAGE['TEMPLATES_CHANGE_TEMPLATE_NOTICE'] = 'Observera: för att ändra Mall, måste du gå till Sektionen Inställningar'; |
638 |
$MESSAGE['UNKNOW_UPLOAD_ERROR'] = 'Unknown upload error'; |
|
639 |
$MESSAGE['UPLOAD_ERR_CANT_WRITE'] = 'Failed to write file to disk'; |
|
640 |
$MESSAGE['UPLOAD_ERR_EXTENSION'] = 'File upload stopped by extension'; |
|
641 |
$MESSAGE['UPLOAD_ERR_FORM_SIZE'] = 'The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form'; |
|
642 |
$MESSAGE['UPLOAD_ERR_INI_SIZE'] = 'The uploaded file exceeds the upload_max_filesize directive in php.ini'; |
|
643 |
$MESSAGE['UPLOAD_ERR_NO_FILE'] = 'No file was uploaded'; |
|
644 |
$MESSAGE['UPLOAD_ERR_NO_TMP_DIR'] = 'Missing a temporary folder'; |
|
645 |
$MESSAGE['UPLOAD_ERR_OK'] = 'File were successful uploaded'; |
|
646 |
$MESSAGE['UPLOAD_ERR_PARTIAL'] = 'The uploaded file was only partially uploaded'; |
|
638 | 647 |
$MESSAGE['USERS_ADDED'] = 'Användaren lades till'; |
639 | 648 |
$MESSAGE['USERS_CANT_SELFDELETE'] = 'Function rejected, You can not delete yourself!'; |
640 | 649 |
$MESSAGE['USERS_CHANGING_PASSWORD'] = 'Observera: Dessa fält ska du bara skriva i om du vill ÄNDRA Lösenordet'; |
... | ... | |
670 | 679 |
{ |
671 | 680 |
include(WB_PATH.'/languages/old.format.inc.php'); |
672 | 681 |
} |
673 |
|
branches/2.8.x/wb/languages/ES.php | ||
---|---|---|
635 | 635 |
$MESSAGE['START_UPGRADE_SCRIPT_EXISTS'] = 'Please delete the file "upgrade-script.php" from your webspace.'; |
636 | 636 |
$MESSAGE['START_WELCOME_MESSAGE'] = 'Bienvenido a la consola de Administración'; |
637 | 637 |
$MESSAGE['TEMPLATES_CHANGE_TEMPLATE_NOTICE'] = 'Atención: para cambiar la plantilla ir a la sección de Configuración'; |
638 |
$MESSAGE['UNKNOW_UPLOAD_ERROR'] = 'Unknown upload error'; |
|
639 |
$MESSAGE['UPLOAD_ERR_CANT_WRITE'] = 'Failed to write file to disk'; |
|
640 |
$MESSAGE['UPLOAD_ERR_EXTENSION'] = 'File upload stopped by extension'; |
|
641 |
$MESSAGE['UPLOAD_ERR_FORM_SIZE'] = 'The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form'; |
|
642 |
$MESSAGE['UPLOAD_ERR_INI_SIZE'] = 'The uploaded file exceeds the upload_max_filesize directive in php.ini'; |
|
643 |
$MESSAGE['UPLOAD_ERR_NO_FILE'] = 'No file was uploaded'; |
|
644 |
$MESSAGE['UPLOAD_ERR_NO_TMP_DIR'] = 'Missing a temporary folder'; |
|
645 |
$MESSAGE['UPLOAD_ERR_OK'] = 'File were successful uploaded'; |
|
646 |
$MESSAGE['UPLOAD_ERR_PARTIAL'] = 'The uploaded file was only partially uploaded'; |
|
638 | 647 |
$MESSAGE['USERS_ADDED'] = 'Nuevo usuario agregado'; |
639 | 648 |
$MESSAGE['USERS_CANT_SELFDELETE'] = 'Function rejected, You can not delete yourself!'; |
640 | 649 |
$MESSAGE['USERS_CHANGING_PASSWORD'] = 'Atención: Solo debe escribir en estos campos si desea cambiar la contraseña de este usuario.'; |
... | ... | |
670 | 679 |
{ |
671 | 680 |
include(WB_PATH.'/languages/old.format.inc.php'); |
672 | 681 |
} |
673 |
|
branches/2.8.x/wb/languages/FR.php | ||
---|---|---|
635 | 635 |
$MESSAGE['START_UPGRADE_SCRIPT_EXISTS'] = 'Please delete the file "upgrade-script.php" from your webspace.'; |
636 | 636 |
$MESSAGE['START_WELCOME_MESSAGE'] = 'Bienvenue dans la zone d'administration'; |
637 | 637 |
$MESSAGE['TEMPLATES_CHANGE_TEMPLATE_NOTICE'] = 'Pour modifier le thème du site, vous devez vous rendre dans la rubrique Réglages'; |
638 |
$MESSAGE['UNKNOW_UPLOAD_ERROR'] = 'Unknown upload error'; |
|
639 |
$MESSAGE['UPLOAD_ERR_CANT_WRITE'] = 'Failed to write file to disk'; |
|
640 |
$MESSAGE['UPLOAD_ERR_EXTENSION'] = 'File upload stopped by extension'; |
|
641 |
$MESSAGE['UPLOAD_ERR_FORM_SIZE'] = 'The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form'; |
|
642 |
$MESSAGE['UPLOAD_ERR_INI_SIZE'] = 'The uploaded file exceeds the upload_max_filesize directive in php.ini'; |
|
643 |
$MESSAGE['UPLOAD_ERR_NO_FILE'] = 'No file was uploaded'; |
|
644 |
$MESSAGE['UPLOAD_ERR_NO_TMP_DIR'] = 'Missing a temporary folder'; |
|
645 |
$MESSAGE['UPLOAD_ERR_OK'] = 'File were successful uploaded'; |
|
646 |
$MESSAGE['UPLOAD_ERR_PARTIAL'] = 'The uploaded file was only partially uploaded'; |
|
638 | 647 |
$MESSAGE['USERS_ADDED'] = 'Utilisateur ajouté avec succès'; |
639 | 648 |
$MESSAGE['USERS_CANT_SELFDELETE'] = 'Action refusée, Vous ne pouvez pas vous supprimer vous-même!'; |
640 | 649 |
$MESSAGE['USERS_CHANGING_PASSWORD'] = 'Vous ne devez modifier les valeurs ci-dessus uniquement lors d'une modification de mot de passe'; |
... | ... | |
670 | 679 |
{ |
671 | 680 |
include(WB_PATH.'/languages/old.format.inc.php'); |
672 | 681 |
} |
673 |
|
branches/2.8.x/wb/languages/ET.php | ||
---|---|---|
635 | 635 |
$MESSAGE['START_UPGRADE_SCRIPT_EXISTS'] = 'Please delete the file "upgrade-script.php" from your webspace.'; |
636 | 636 |
$MESSAGE['START_WELCOME_MESSAGE'] = 'Teretulemast WebsiteBaker Administratsiooni'; |
637 | 637 |
$MESSAGE['TEMPLATES_CHANGE_TEMPLATE_NOTICE'] = 'Märge: kujunduse muutmiseks sa pead minema Seadete sektsiooni'; |
638 |
$MESSAGE['UNKNOW_UPLOAD_ERROR'] = 'Unknown upload error'; |
|
639 |
$MESSAGE['UPLOAD_ERR_CANT_WRITE'] = 'Failed to write file to disk'; |
|
640 |
$MESSAGE['UPLOAD_ERR_EXTENSION'] = 'File upload stopped by extension'; |
|
641 |
$MESSAGE['UPLOAD_ERR_FORM_SIZE'] = 'The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form'; |
|
642 |
$MESSAGE['UPLOAD_ERR_INI_SIZE'] = 'The uploaded file exceeds the upload_max_filesize directive in php.ini'; |
|
643 |
$MESSAGE['UPLOAD_ERR_NO_FILE'] = 'No file was uploaded'; |
|
644 |
$MESSAGE['UPLOAD_ERR_NO_TMP_DIR'] = 'Missing a temporary folder'; |
|
645 |
$MESSAGE['UPLOAD_ERR_OK'] = 'File were successful uploaded'; |
|
646 |
$MESSAGE['UPLOAD_ERR_PARTIAL'] = 'The uploaded file was only partially uploaded'; |
|
638 | 647 |
$MESSAGE['USERS_ADDED'] = 'Kasutaja edukalt lisatud'; |
639 | 648 |
$MESSAGE['USERS_CANT_SELFDELETE'] = 'Function rejected, You can not delete yourself!'; |
640 | 649 |
$MESSAGE['USERS_CHANGING_PASSWORD'] = 'Märge: Sa pead ainult sisestama põhimõtted alumistesse lahtritesse kui sa tahad muuta selle kasutaja parooli'; |
... | ... | |
670 | 679 |
{ |
671 | 680 |
include(WB_PATH.'/languages/old.format.inc.php'); |
672 | 681 |
} |
673 |
|
branches/2.8.x/wb/languages/HR.php | ||
---|---|---|
635 | 635 |
$MESSAGE['START_UPGRADE_SCRIPT_EXISTS'] = 'Please delete the file "upgrade-script.php" from your webspace.'; |
636 | 636 |
$MESSAGE['START_WELCOME_MESSAGE'] = 'Dobro došli u WebsiteBaker administraciju'; |
637 | 637 |
$MESSAGE['TEMPLATES_CHANGE_TEMPLATE_NOTICE'] = 'Obavijest: Za promjenu predloška idite na dio s Postavkama'; |
638 |
$MESSAGE['UNKNOW_UPLOAD_ERROR'] = 'Unknown upload error'; |
|
639 |
$MESSAGE['UPLOAD_ERR_CANT_WRITE'] = 'Failed to write file to disk'; |
|
640 |
$MESSAGE['UPLOAD_ERR_EXTENSION'] = 'File upload stopped by extension'; |
|
641 |
$MESSAGE['UPLOAD_ERR_FORM_SIZE'] = 'The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form'; |
|
642 |
$MESSAGE['UPLOAD_ERR_INI_SIZE'] = 'The uploaded file exceeds the upload_max_filesize directive in php.ini'; |
|
643 |
$MESSAGE['UPLOAD_ERR_NO_FILE'] = 'No file was uploaded'; |
|
644 |
$MESSAGE['UPLOAD_ERR_NO_TMP_DIR'] = 'Missing a temporary folder'; |
|
645 |
$MESSAGE['UPLOAD_ERR_OK'] = 'File were successful uploaded'; |
|
646 |
$MESSAGE['UPLOAD_ERR_PARTIAL'] = 'The uploaded file was only partially uploaded'; |
|
638 | 647 |
$MESSAGE['USERS_ADDED'] = 'Korisnik je dodan supješno'; |
639 | 648 |
$MESSAGE['USERS_CANT_SELFDELETE'] = 'Function rejected, You can not delete yourself!'; |
640 | 649 |
$MESSAGE['USERS_CHANGING_PASSWORD'] = 'Obavijest: Trebate samo unjeti vrijednosti u polja ispod ako želite izmjeniti korisnièku lozinku'; |
... | ... | |
670 | 679 |
{ |
671 | 680 |
include(WB_PATH.'/languages/old.format.inc.php'); |
672 | 681 |
} |
673 |
|
branches/2.8.x/wb/languages/NL.php | ||
---|---|---|
633 | 633 |
$MESSAGE['START_UPGRADE_SCRIPT_EXISTS'] = 'Please delete the file "upgrade-script.php" from your webspace.'; |
634 | 634 |
$MESSAGE['START_WELCOME_MESSAGE'] = 'Welkom bij het websitebeheer'; |
635 | 635 |
$MESSAGE['TEMPLATES_CHANGE_TEMPLATE_NOTICE'] = 'Attentie: om de template aan te passen moet u naar de instellingensectie'; |
636 |
$MESSAGE['UNKNOW_UPLOAD_ERROR'] = 'Unknown upload error'; |
|
637 |
$MESSAGE['UPLOAD_ERR_CANT_WRITE'] = 'Failed to write file to disk'; |
|
638 |
$MESSAGE['UPLOAD_ERR_EXTENSION'] = 'File upload stopped by extension'; |
|
639 |
$MESSAGE['UPLOAD_ERR_FORM_SIZE'] = 'The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form'; |
|
640 |
$MESSAGE['UPLOAD_ERR_INI_SIZE'] = 'The uploaded file exceeds the upload_max_filesize directive in php.ini'; |
|
641 |
$MESSAGE['UPLOAD_ERR_NO_FILE'] = 'No file was uploaded'; |
|
642 |
$MESSAGE['UPLOAD_ERR_NO_TMP_DIR'] = 'Missing a temporary folder'; |
|
643 |
$MESSAGE['UPLOAD_ERR_OK'] = 'File were successful uploaded'; |
|
644 |
$MESSAGE['UPLOAD_ERR_PARTIAL'] = 'The uploaded file was only partially uploaded'; |
|
636 | 645 |
$MESSAGE['USERS_ADDED'] = 'Gebruiker toegevoegd'; |
637 | 646 |
$MESSAGE['USERS_CANT_SELFDELETE'] = 'Functie geweigerd. U kunt zichzelf niet verwijderen!'; |
638 | 647 |
$MESSAGE['USERS_CHANGING_PASSWORD'] = 'Attentie: vul alleen de bovenstaande velden in wanneer u het wachtwoord van de gebruiker wilt veranderen'; |
... | ... | |
668 | 677 |
{ |
669 | 678 |
include(WB_PATH.'/languages/old.format.inc.php'); |
670 | 679 |
} |
671 |
|
branches/2.8.x/wb/languages/PL.php | ||
---|---|---|
634 | 634 |
$MESSAGE['START_UPGRADE_SCRIPT_EXISTS'] = 'Please delete the file "upgrade-script.php" from your webspace.'; |
635 | 635 |
$MESSAGE['START_WELCOME_MESSAGE'] = 'Witamy w panelu administracyjnym WebsiteBakera'; |
636 | 636 |
$MESSAGE['TEMPLATES_CHANGE_TEMPLATE_NOTICE'] = 'Uwaga: aby zmienic szablon, nalezy przejsc do sekcji Ustawienia'; |
637 |
$MESSAGE['UNKNOW_UPLOAD_ERROR'] = 'Unknown upload error'; |
|
638 |
$MESSAGE['UPLOAD_ERR_CANT_WRITE'] = 'Failed to write file to disk'; |
|
639 |
$MESSAGE['UPLOAD_ERR_EXTENSION'] = 'File upload stopped by extension'; |
|
640 |
$MESSAGE['UPLOAD_ERR_FORM_SIZE'] = 'The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form'; |
|
641 |
$MESSAGE['UPLOAD_ERR_INI_SIZE'] = 'The uploaded file exceeds the upload_max_filesize directive in php.ini'; |
|
642 |
$MESSAGE['UPLOAD_ERR_NO_FILE'] = 'No file was uploaded'; |
|
643 |
$MESSAGE['UPLOAD_ERR_NO_TMP_DIR'] = 'Missing a temporary folder'; |
|
644 |
$MESSAGE['UPLOAD_ERR_OK'] = 'File were successful uploaded'; |
|
645 |
$MESSAGE['UPLOAD_ERR_PARTIAL'] = 'The uploaded file was only partially uploaded'; |
|
637 | 646 |
$MESSAGE['USERS_ADDED'] = 'Uzytkownik zostal dodany'; |
638 | 647 |
$MESSAGE['USERS_CANT_SELFDELETE'] = 'Zadanie odrzucone, Nie mozesz usunac sam siebie!'; |
639 | 648 |
$MESSAGE['USERS_CHANGING_PASSWORD'] = 'Uwaga: Powyzsze pola nalezy wypelnic tylko, jesli chce sie zmienic haslo tego uzytkownika'; |
... | ... | |
669 | 678 |
{ |
670 | 679 |
include(WB_PATH.'/languages/old.format.inc.php'); |
671 | 680 |
} |
672 |
|
branches/2.8.x/wb/languages/HU.php | ||
---|---|---|
35 | 35 |
/* MENU */ |
36 | 36 |
$MENU['ACCESS'] = 'Jogosultságok'; |
37 | 37 |
$MENU['ADDON'] = 'Add-on'; |
38 |
$MENU['ADDONS'] = 'Kiegészít╨Ф┬л';
|
|
38 |
$MENU['ADDONS'] = 'Kiegészít-?-?';
|
|
39 | 39 |
$MENU['ADMINTOOLS'] = 'Admin-Eszközök'; |
40 | 40 |
$MENU['BREADCRUMB'] = 'You are here: '; |
41 | 41 |
$MENU['FORGOT'] = 'Elfelejtett jelszó'; |
... | ... | |
50 | 50 |
$MENU['PAGES'] = 'Weblapok'; |
51 | 51 |
$MENU['PREFERENCES'] = 'Saját adatok'; |
52 | 52 |
$MENU['SETTINGS'] = 'Paraméterek'; |
53 |
$MENU['START'] = 'Kezd╨Ф┬мap';
|
|
53 |
$MENU['START'] = 'Kezd-?-?ap';
|
|
54 | 54 |
$MENU['TEMPLATES'] = 'Sablonok'; |
55 | 55 |
$MENU['USERS'] = 'Felhasználók'; |
56 | 56 |
$MENU['VIEW'] = 'Portál nézet'; |
... | ... | |
67 | 67 |
$TEXT['ADMINISTRATION_TOOL'] = 'Adminisztrációs Eszköz'; |
68 | 68 |
$TEXT['ADMINISTRATOR'] = 'Administrator'; |
69 | 69 |
$TEXT['ADMINISTRATORS'] = 'Adminisztrátorok'; |
70 |
$TEXT['ADVANCED'] = 'B╨Ф┬╢ített';
|
|
70 |
$TEXT['ADVANCED'] = 'B-?-¦ített';
|
|
71 | 71 |
$TEXT['ALLOWED_FILETYPES_ON_UPLOAD'] = 'Allowed filetypes on upload'; |
72 | 72 |
$TEXT['ALLOWED_VIEWERS'] = 'Engedélyezett látogatók'; |
73 | 73 |
$TEXT['ALLOW_MULTIPLE_SELECTIONS'] = 'Többet is kiválaszthat'; |
... | ... | |
134 | 134 |
$TEXT['EXACT_MATCH'] = 'Pontos egyezés'; |
135 | 135 |
$TEXT['EXECUTE'] = 'Végrehajtás'; |
136 | 136 |
$TEXT['EXPAND'] = 'Kibont'; |
137 |
$TEXT['EXTENSION'] = 'B╨Ф┬╢ítmény';
|
|
137 |
$TEXT['EXTENSION'] = 'B-?-¦ítmény';
|
|
138 | 138 |
$TEXT['FIELD'] = 'Mezç'; |
139 | 139 |
$TEXT['FILE'] = 'Fájl'; |
140 | 140 |
$TEXT['FILES'] = 'Fájlok'; |
... | ... | |
158 | 158 |
$TEXT['HIDDEN'] = 'Rejtett'; |
159 | 159 |
$TEXT['HIDE'] = 'Elrejt'; |
160 | 160 |
$TEXT['HIDE_ADVANCED'] = 'Speciális beállítások elrejtése'; |
161 |
$TEXT['HOME'] = 'Kezd╨Ф┬мap';
|
|
161 |
$TEXT['HOME'] = 'Kezd-?-?ap';
|
|
162 | 162 |
$TEXT['HOMEPAGE_REDIRECTION'] = 'Honlap átirányítás'; |
163 | 163 |
$TEXT['HOME_FOLDER'] = 'Personal Folder'; |
164 | 164 |
$TEXT['HOME_FOLDERS'] = 'Personal Folders'; |
... | ... | |
184 | 184 |
$TEXT['LIST_OPTIONS'] = 'Lista opciók'; |
185 | 185 |
$TEXT['LOGGED_IN'] = 'Bejelentkezve'; |
186 | 186 |
$TEXT['LOGIN'] = 'Belépés'; |
187 |
$TEXT['LONG'] = 'Hossz╨Х┬▒';
|
|
187 |
$TEXT['LONG'] = 'Hossz-?-¦';
|
|
188 | 188 |
$TEXT['LONG_TEXT'] = 'Hosszú szöveg'; |
189 |
$TEXT['LOOP'] = 'ismétl╨Ф┬дü/br> törzs szakasz';
|
|
189 |
$TEXT['LOOP'] = 'ismétl-?-?ü/br> törzs szakasz';
|
|
190 | 190 |
$TEXT['MAIN'] = 'Fç'; |
191 | 191 |
$TEXT['MAINTENANCE_OFF'] = 'Maintenance off'; |
192 | 192 |
$TEXT['MAINTENANCE_ON'] = 'Maintenance on'; |
... | ... | |
208 | 208 |
$TEXT['MODIFY_SETTINGS'] = 'Beállítások módosítása'; |
209 | 209 |
$TEXT['MODULE_ORDER'] = 'Modul sorrend keresésnél'; |
210 | 210 |
$TEXT['MODULE_PERMISSIONS'] = 'Modul engedélyek'; |
211 |
$TEXT['MORE'] = 'B╨Ф┬╢ebben';
|
|
211 |
$TEXT['MORE'] = 'B-?-¦ebben';
|
|
212 | 212 |
$TEXT['MOVE_DOWN'] = 'Mozgat Le'; |
213 | 213 |
$TEXT['MOVE_UP'] = 'Mozgat Fel'; |
214 |
$TEXT['MULTIPLE_MENUS'] = 'Többszint╨Х┬▒ menü';
|
|
214 |
$TEXT['MULTIPLE_MENUS'] = 'Többszint-?-¦ menü';
|
|
215 | 215 |
$TEXT['MULTISELECT'] = 'Több választásos'; |
216 | 216 |
$TEXT['NAME'] = 'Név'; |
217 | 217 |
$TEXT['NEED_CURRENT_PASSWORD'] = 'confirm with current password'; |
... | ... | |
256 | 256 |
$TEXT['POSTS_PER_PAGE'] = 'ºenetek laponként'; |
257 | 257 |
$TEXT['POST_FOOTER'] = 'ºenet lábléc'; |
258 | 258 |
$TEXT['POST_HEADER'] = 'ºenet fejbléc'; |
259 |
$TEXT['PREVIOUS'] = 'El╨Ф╤Фç';
|
|
260 |
$TEXT['PREVIOUS_PAGE'] = 'El╨Ф╤Фàoldal';
|
|
259 |
$TEXT['PREVIOUS'] = 'El-?-?ç';
|
|
260 |
$TEXT['PREVIOUS_PAGE'] = 'El-?-?àoldal';
|
|
261 | 261 |
$TEXT['PRIVATE'] = 'Privát'; |
262 | 262 |
$TEXT['PRIVATE_VIEWERS'] = 'Privát jogosultak'; |
263 | 263 |
$TEXT['PROFILES_EDIT'] = 'Change the profile'; |
... | ... | |
321 | 321 |
$TEXT['SUCCESS'] = 'Sikeres'; |
322 | 322 |
$TEXT['SYSTEM_DEFAULT'] = 'Rendszer alapértelmezett'; |
323 | 323 |
$TEXT['SYSTEM_PERMISSIONS'] = 'Rendszer engedélyek'; |
324 |
$TEXT['TABLE_PREFIX'] = 'Tábla el╨Ф╥Сag';
|
|
324 |
$TEXT['TABLE_PREFIX'] = 'Tábla el-?-?ag';
|
|
325 | 325 |
$TEXT['TARGET'] = 'Cél'; |
326 | 326 |
$TEXT['TARGET_FOLDER'] = 'Cél könyvtár'; |
327 | 327 |
$TEXT['TEMPLATE'] = 'Weboldal Sablon'; |
... | ... | |
331 | 331 |
$TEXT['TEXTFIELD'] = 'Szövegmezç'; |
332 | 332 |
$TEXT['THEME'] = 'Admin Téma'; |
333 | 333 |
$TEXT['TIME'] = 'Idç'; |
334 |
$TEXT['TIMEZONE'] = 'Id╨Ф╤Фóna';
|
|
334 |
$TEXT['TIMEZONE'] = 'Id-?-?óna';
|
|
335 | 335 |
$TEXT['TIME_FORMAT'] = 'Idàformátum'; |
336 | 336 |
$TEXT['TIME_LIMIT'] = 'Maximális idàa modulonkénti találatra'; |
337 | 337 |
$TEXT['TITLE'] = 'Cím'; |
... | ... | |
365 | 365 |
$TEXT['VISIBILITY'] = 'Megjelenés'; |
366 | 366 |
$TEXT['WBMAILER_DEFAULT_SENDER_MAIL'] = 'Küldàemail'; |
367 | 367 |
$TEXT['WBMAILER_DEFAULT_SENDER_NAME'] = 'Küldàszemély'; |
368 |
$TEXT['WBMAILER_DEFAULT_SETTINGS_NOTICE'] = 'Kérlek add meg az alapértelmezett "Küldàemail" címet és a "Küldàszemély" mez╨Ф╥С. Ajánlott az alábbi fosználata: <strong>admin@tedomained.hu</strong>. Némely szolgáltató (e.g. <em>mail.com</em>) Visszautasíthatja a leveleket az olyan küldàcímt╨Ф┬м mint <@mail.com</em> ez azért van hogy megakadályozzák a SPAM küldést.<br /><br />Az alapértelmezett értékek csak akkor érvényesek,ha nincs más megadva aker-ben. Ha a szervered támogatja <acronym title="Simple mail transfer protocol">SMTP</acronym>protokolt, akkor használhatod ezt az opciót levél küldé;hez.';
|
|
368 |
$TEXT['WBMAILER_DEFAULT_SETTINGS_NOTICE'] = 'Kérlek add meg az alapértelmezett "Küldàemail" címet és a "Küldàszemély" mez-?-?. Ajánlott az alábbi fosználata: <strong>admin@tedomained.hu</strong>. Némely szolgáltató (e.g. <em>mail.com</em>) Visszautasíthatja a leveleket az olyan küldàcímt-?-? mint <@mail.com</em> ez azért van hogy megakadályozzák a SPAM küldést.<br /><br />Az alapértelmezett értékek csak akkor érvényesek,ha nincs más megadva aker-ben. Ha a szervered támogatja <acronym title="Simple mail transfer protocol">SMTP</acronym>protokolt, akkor használhatod ezt az opciót levél küldé;hez.';
|
|
369 | 369 |
$TEXT['WBMAILER_FUNCTION'] = 'Mail Rutin'; |
370 |
$TEXT['WBMAILER_NOTICE'] = '<strong>SMTP Mailer Beállítások:</strong><br />Ezek a beállítások csak akkor szükségesek, ha emailt akarsz küldeni <acro="Simple mail transfer protocol">SMTP</acronym> protokollon keresztül. Ha nem tudod az SMTP kiszolgálódat, vagy nem vagy biztos a követleményekben, akkoszer╨Х┬▒en maradj az alap beállításnál: PHP MAIL.';
|
|
370 |
$TEXT['WBMAILER_NOTICE'] = '<strong>SMTP Mailer Beállítások:</strong><br />Ezek a beállítások csak akkor szükségesek, ha emailt akarsz küldeni <acro="Simple mail transfer protocol">SMTP</acronym> protokollon keresztül. Ha nem tudod az SMTP kiszolgálódat, vagy nem vagy biztos a követleményekben, akkoszer-?-¦en maradj az alap beállításnál: PHP MAIL.';
|
|
371 | 371 |
$TEXT['WBMAILER_PHP'] = 'PHP MAIL'; |
372 | 372 |
$TEXT['WBMAILER_SMTP'] = 'SMTP'; |
373 | 373 |
$TEXT['WBMAILER_SMTP_AUTH'] = 'SMTP Azonosítás'; |
... | ... | |
392 | 392 |
$TEXT['YES'] = 'Igen'; |
393 | 393 |
|
394 | 394 |
/* HEADING */ |
395 |
$HEADING['ADDON_PRECHECK_FAILED'] = 'Kiegészítàkövetelmények nem megfelel╨Ф╥Рk';
|
|
395 |
$HEADING['ADDON_PRECHECK_FAILED'] = 'Kiegészítàkövetelmények nem megfelel-?-?k';
|
|
396 | 396 |
$HEADING['ADD_CHILD_PAGE'] = 'Add child page'; |
397 | 397 |
$HEADING['ADD_GROUP'] = 'Csoport módosítása'; |
398 | 398 |
$HEADING['ADD_GROUPS'] = 'Add Groups'; |
... | ... | |
475 | 475 |
$MESSAGE['GENERIC_FAILED_COMPARE'] = ' failed'; |
476 | 476 |
$MESSAGE['GENERIC_FILE_TYPE'] = 'A feltöltött file csak ilyen formátumú lehet:'; |
477 | 477 |
$MESSAGE['GENERIC_FILE_TYPES'] = 'A feltöltött file-ok csak a következàformátumuak lehetnek:'; |
478 |
$MESSAGE['GENERIC_FILL_IN_ALL'] = 'Kérem térjen vissza és töltsön ki minden mez╨Ф╥С';
|
|
478 |
$MESSAGE['GENERIC_FILL_IN_ALL'] = 'Kérem térjen vissza és töltsön ki minden mez-?-?';
|
|
479 | 479 |
$MESSAGE['GENERIC_FORGOT_OPTIONS'] = 'You have selected no choice!'; |
480 | 480 |
$MESSAGE['GENERIC_INSTALLED'] = 'Telepítés sikeres'; |
481 | 481 |
$MESSAGE['GENERIC_INVALID'] = 'A feltöltött file nem megfelelç'; |
482 |
$MESSAGE['GENERIC_INVALID_ADDON_FILE'] = '²vénytelen WebsiteBaker telepítàfájl. Kérlek ellen╨Ф╨Жizd a *.zip formátumot.';
|
|
483 |
$MESSAGE['GENERIC_INVALID_LANGUAGE_FILE'] = '²vénytelen WebsiteBaker nyelvi fájl. Kérlek ellen╨Ф╨Жizd a szöveges fájlt.';
|
|
482 |
$MESSAGE['GENERIC_INVALID_ADDON_FILE'] = '²vénytelen WebsiteBaker telepítàfájl. Kérlek ellen-?-?izd a *.zip formátumot.';
|
|
483 |
$MESSAGE['GENERIC_INVALID_LANGUAGE_FILE'] = '²vénytelen WebsiteBaker nyelvi fájl. Kérlek ellen-?-?izd a szöveges fájlt.';
|
|
484 | 484 |
$MESSAGE['GENERIC_INVALID_MODULE_FILE'] = 'Invalid WebsiteBaker module file. Please check the text file.'; |
485 | 485 |
$MESSAGE['GENERIC_INVALID_TEMPLATE_FILE'] = 'Invalid WebsiteBaker template file. Please check the text file.'; |
486 | 486 |
$MESSAGE['GENERIC_IN_USE'] = ' but used in '; |
... | ... | |
490 | 490 |
$MESSAGE['GENERIC_NOT_INSTALLED'] = 'Nincs telpítve'; |
491 | 491 |
$MESSAGE['GENERIC_NOT_UPGRADED'] = 'Actualization not possibly'; |
492 | 492 |
$MESSAGE['GENERIC_PLEASE_BE_PATIENT'] = 'Kérem várjon, ez eltarthat egy ideig.'; |
493 |
$MESSAGE['GENERIC_PLEASE_CHECK_BACK_SOON'] = 'Kérem térjen vissza kés╨Ф╤Юb!';
|
|
493 |
$MESSAGE['GENERIC_PLEASE_CHECK_BACK_SOON'] = 'Kérem térjen vissza kés-?-?b!';
|
|
494 | 494 |
$MESSAGE['GENERIC_SECURITY_ACCESS'] = 'Security offense!! Access denied!'; |
495 | 495 |
$MESSAGE['GENERIC_SECURITY_OFFENSE'] = 'Security offense!! data storing was refused!!'; |
496 | 496 |
$MESSAGE['GENERIC_UNINSTALLED'] = 'Eltávolítás sikeres'; |
... | ... | |
501 | 501 |
$MESSAGE['GENERIC_WEBSITE_LOCKED'] = 'this site is temporarily down for maintenance'; |
502 | 502 |
$MESSAGE['GENERIC_WEBSITE_UNDER_CONSTRUCTION'] = 'A Weboldal Karbantartás Alatt'; |
503 | 503 |
$MESSAGE['GROUPS_ADDED'] = 'Csoport sikeresen hozzáadva'; |
504 |
$MESSAGE['GROUPS_CONFIRM_DELETE'] = 'Biztos, hogy törölni akarja a kijelölt csoportot? (Minden felhasználója törl╨Ф┬дik)';
|
|
504 |
$MESSAGE['GROUPS_CONFIRM_DELETE'] = 'Biztos, hogy törölni akarja a kijelölt csoportot? (Minden felhasználója törl-?-?ik)';
|
|
505 | 505 |
$MESSAGE['GROUPS_DELETED'] = 'Csoport törölve'; |
506 | 506 |
$MESSAGE['GROUPS_GROUP_NAME_BLANK'] = '²es a csoportnév'; |
507 | 507 |
$MESSAGE['GROUPS_GROUP_NAME_EXISTS'] = 'Csoport név már létezik'; |
... | ... | |
524 | 524 |
$MESSAGE['MEDIA_DELETED_DIR'] = 'Könyvtár törölve'; |
525 | 525 |
$MESSAGE['MEDIA_DELETED_FILE'] = 'File törölve'; |
526 | 526 |
$MESSAGE['MEDIA_DIR_ACCESS_DENIED'] = 'Specified directory does not exist or is not allowed.'; |
527 |
$MESSAGE['MEDIA_DIR_DOES_NOT_EXIST'] = 'Nem lehet ../ a cél mez╨Ф╤Юen';
|
|
527 |
$MESSAGE['MEDIA_DIR_DOES_NOT_EXIST'] = 'Nem lehet ../ a cél mez-?-?en';
|
|
528 | 528 |
$MESSAGE['MEDIA_DIR_DOT_DOT_SLASH'] = 'Nem tartalmazhat ../ -t a könyvtár név'; |
529 |
$MESSAGE['MEDIA_DIR_EXISTS'] = 'Ilyen nev╨Х┬▒ könyvtár már létezik';
|
|
529 |
$MESSAGE['MEDIA_DIR_EXISTS'] = 'Ilyen nev-?-¦ könyvtár már létezik';
|
|
530 | 530 |
$MESSAGE['MEDIA_DIR_MADE'] = 'A könyvtár sikeresen létrehozva'; |
531 | 531 |
$MESSAGE['MEDIA_DIR_NOT_MADE'] = 'nem sikerült létrehozni a könyvtárat'; |
532 |
$MESSAGE['MEDIA_FILE_EXISTS'] = 'Ilyen nev╨Х┬▒ file már létezik';
|
|
532 |
$MESSAGE['MEDIA_FILE_EXISTS'] = 'Ilyen nev-?-¦ file már létezik';
|
|
533 | 533 |
$MESSAGE['MEDIA_FILE_NOT_FOUND'] = 'File nem található'; |
534 | 534 |
$MESSAGE['MEDIA_NAME_DOT_DOT_SLASH'] = 'Nem lehet ../ a névben'; |
535 | 535 |
$MESSAGE['MEDIA_NAME_INDEX_PHP'] = 'Nem lehet index.php a név'; |
... | ... | |
539 | 539 |
$MESSAGE['MEDIA_SINGLE_UPLOADED'] = ' file sikeresen feltöltve'; |
540 | 540 |
$MESSAGE['MEDIA_TARGET_DOT_DOT_SLASH'] = 'Nem lehet ../ in könyvtár névben'; |
541 | 541 |
$MESSAGE['MEDIA_UPLOADED'] = ' file sikeresen feltöltve'; |
542 |
$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';
|
|
542 |
$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';
|
|
543 | 543 |
$MESSAGE['MOD_FORM_INCORRECT_CAPTCHA'] = 'A megadott ellenörzàkód (vagy más néven Captcha) hibás. Ha problémád van elolvasni a Captcha kódot, kümailt ide: <a href="mailto:'.SERVER_EMAIL.'">'.SERVER_EMAIL.'</a>'; |
544 |
$MESSAGE['MOD_FORM_REQUIRED_FIELDS'] = 'A következàmez╨Ф┬лet kötelezàkitöltenie';
|
|
544 |
$MESSAGE['MOD_FORM_REQUIRED_FIELDS'] = 'A következàmez-?-?et kötelezàkitöltenie';
|
|
545 | 545 |
$MESSAGE['PAGES_ADDED'] = 'Lap sikeresen hozzáadva'; |
546 | 546 |
$MESSAGE['PAGES_ADDED_HEADING'] = 'Lap címsor sikeresen hozzáadva'; |
547 | 547 |
$MESSAGE['PAGES_BLANK_MENU_TITLE'] = 'Kérem adjon meg menü nevet'; |
... | ... | |
635 | 635 |
$MESSAGE['START_UPGRADE_SCRIPT_EXISTS'] = 'Please delete the file "upgrade-script.php" from your webspace.'; |
636 | 636 |
$MESSAGE['START_WELCOME_MESSAGE'] = '¤v a WebsiteBaker Admin felületén'; |
637 | 637 |
$MESSAGE['TEMPLATES_CHANGE_TEMPLATE_NOTICE'] = 'Figyelem: A sablon megváltoztatását a beállításokban teheti meg'; |
638 |
$MESSAGE['UNKNOW_UPLOAD_ERROR'] = 'Unknown upload error'; |
|
639 |
$MESSAGE['UPLOAD_ERR_CANT_WRITE'] = 'Failed to write file to disk'; |
|
640 |
$MESSAGE['UPLOAD_ERR_EXTENSION'] = 'File upload stopped by extension'; |
|
641 |
$MESSAGE['UPLOAD_ERR_FORM_SIZE'] = 'The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form'; |
|
642 |
$MESSAGE['UPLOAD_ERR_INI_SIZE'] = 'The uploaded file exceeds the upload_max_filesize directive in php.ini'; |
|
643 |
$MESSAGE['UPLOAD_ERR_NO_FILE'] = 'No file was uploaded'; |
|
644 |
$MESSAGE['UPLOAD_ERR_NO_TMP_DIR'] = 'Missing a temporary folder'; |
|
645 |
$MESSAGE['UPLOAD_ERR_OK'] = 'File were successful uploaded'; |
|
646 |
$MESSAGE['UPLOAD_ERR_PARTIAL'] = 'The uploaded file was only partially uploaded'; |
|
638 | 647 |
$MESSAGE['USERS_ADDED'] = 'Felhasználó sikeresen hozzáadva'; |
639 | 648 |
$MESSAGE['USERS_CANT_SELFDELETE'] = 'Function rejected, You can not delete yourself!'; |
640 | 649 |
$MESSAGE['USERS_CHANGING_PASSWORD'] = 'Figyelem: A jelszót itt csak annak megváltoztatásakor kell megadni'; |
... | ... | |
670 | 679 |
{ |
671 | 680 |
include(WB_PATH.'/languages/old.format.inc.php'); |
672 | 681 |
} |
673 |
|
branches/2.8.x/wb/languages/IT.php | ||
---|---|---|
635 | 635 |
$MESSAGE['START_UPGRADE_SCRIPT_EXISTS'] = 'Please delete the file "upgrade-script.php" from your webspace.'; |
636 | 636 |
$MESSAGE['START_WELCOME_MESSAGE'] = 'Benvenuto alla pagina di Amministrazione di WebsiteBaker'; |
637 | 637 |
$MESSAGE['TEMPLATES_CHANGE_TEMPLATE_NOTICE'] = 'Per cambiare il Template andare alla sezione Impostazioni'; |
638 |
$MESSAGE['UNKNOW_UPLOAD_ERROR'] = 'Unknown upload error'; |
|
639 |
$MESSAGE['UPLOAD_ERR_CANT_WRITE'] = 'Failed to write file to disk'; |
|
640 |
$MESSAGE['UPLOAD_ERR_EXTENSION'] = 'File upload stopped by extension'; |
|
641 |
$MESSAGE['UPLOAD_ERR_FORM_SIZE'] = 'The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form'; |
|
642 |
$MESSAGE['UPLOAD_ERR_INI_SIZE'] = 'The uploaded file exceeds the upload_max_filesize directive in php.ini'; |
|
643 |
$MESSAGE['UPLOAD_ERR_NO_FILE'] = 'No file was uploaded'; |
|
644 |
$MESSAGE['UPLOAD_ERR_NO_TMP_DIR'] = 'Missing a temporary folder'; |
|
645 |
$MESSAGE['UPLOAD_ERR_OK'] = 'File were successful uploaded'; |
|
646 |
$MESSAGE['UPLOAD_ERR_PARTIAL'] = 'The uploaded file was only partially uploaded'; |
|
638 | 647 |
$MESSAGE['USERS_ADDED'] = 'Utente aggiunto'; |
639 | 648 |
$MESSAGE['USERS_CANT_SELFDELETE'] = 'Function rejected, You can not delete yourself!'; |
640 | 649 |
$MESSAGE['USERS_CHANGING_PASSWORD'] = 'Attenzione: devi inserire solo valori validi se vuoi cambiare la password utente'; |
... | ... | |
670 | 679 |
{ |
671 | 680 |
include(WB_PATH.'/languages/old.format.inc.php'); |
672 | 681 |
} |
673 |
|
branches/2.8.x/wb/languages/NO.php | ||
---|---|---|
631 | 631 |
$MESSAGE['START_UPGRADE_SCRIPT_EXISTS'] = 'Please delete the file "upgrade-script.php" from your webspace.'; |
632 | 632 |
$MESSAGE['START_WELCOME_MESSAGE'] = 'Velkommen til WebsiteBaker Administrasjon'; |
633 | 633 |
$MESSAGE['TEMPLATES_CHANGE_TEMPLATE_NOTICE'] = 'Merk: For å endre malen må man gjøre dette i Instillinger seksjonen'; |
634 |
$MESSAGE['UNKNOW_UPLOAD_ERROR'] = 'Unknown upload error'; |
|
635 |
$MESSAGE['UPLOAD_ERR_CANT_WRITE'] = 'Failed to write file to disk'; |
|
636 |
$MESSAGE['UPLOAD_ERR_EXTENSION'] = 'File upload stopped by extension'; |
|
637 |
$MESSAGE['UPLOAD_ERR_FORM_SIZE'] = 'The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form'; |
|
638 |
$MESSAGE['UPLOAD_ERR_INI_SIZE'] = 'The uploaded file exceeds the upload_max_filesize directive in php.ini'; |
|
639 |
$MESSAGE['UPLOAD_ERR_NO_FILE'] = 'No file was uploaded'; |
|
640 |
$MESSAGE['UPLOAD_ERR_NO_TMP_DIR'] = 'Missing a temporary folder'; |
|
641 |
$MESSAGE['UPLOAD_ERR_OK'] = 'File were successful uploaded'; |
|
642 |
$MESSAGE['UPLOAD_ERR_PARTIAL'] = 'The uploaded file was only partially uploaded'; |
|
634 | 643 |
$MESSAGE['USERS_ADDED'] = 'Lykkes å opprette ny bruker'; |
635 | 644 |
$MESSAGE['USERS_CANT_SELFDELETE'] = 'Handlingen ble forkastet. Du kan ikke slette deg selv!'; |
636 | 645 |
$MESSAGE['USERS_CHANGING_PASSWORD'] = 'Merk: Skriv kun inn verdier i feltene ovenfor hvis du vil endre passordet til denne brukeren'; |
... | ... | |
666 | 675 |
{ |
667 | 676 |
include(WB_PATH.'/languages/old.format.inc.php'); |
668 | 677 |
} |
669 |
|
branches/2.8.x/wb/languages/SK.php | ||
---|---|---|
635 | 635 |
$MESSAGE['START_UPGRADE_SCRIPT_EXISTS'] = 'Please delete the file "upgrade-script.php" from your webspace.'; |
636 | 636 |
$MESSAGE['START_WELCOME_MESSAGE'] = 'Vitajte v administratívnej časti'; |
637 | 637 |
$MESSAGE['TEMPLATES_CHANGE_TEMPLATE_NOTICE'] = 'Pozn.: zmena šablony sa provádza v sekcii Nastavenia'; |
638 |
$MESSAGE['UNKNOW_UPLOAD_ERROR'] = 'Unknown upload error'; |
|
639 |
$MESSAGE['UPLOAD_ERR_CANT_WRITE'] = 'Failed to write file to disk'; |
|
640 |
$MESSAGE['UPLOAD_ERR_EXTENSION'] = 'File upload stopped by extension'; |
|
641 |
$MESSAGE['UPLOAD_ERR_FORM_SIZE'] = 'The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form'; |
|
642 |
$MESSAGE['UPLOAD_ERR_INI_SIZE'] = 'The uploaded file exceeds the upload_max_filesize directive in php.ini'; |
|
643 |
$MESSAGE['UPLOAD_ERR_NO_FILE'] = 'No file was uploaded'; |
|
644 |
$MESSAGE['UPLOAD_ERR_NO_TMP_DIR'] = 'Missing a temporary folder'; |
|
645 |
$MESSAGE['UPLOAD_ERR_OK'] = 'File were successful uploaded'; |
|
646 |
$MESSAGE['UPLOAD_ERR_PARTIAL'] = 'The uploaded file was only partially uploaded'; |
|
638 | 647 |
$MESSAGE['USERS_ADDED'] = 'Užívateľ bol úspešne pridaný'; |
639 | 648 |
$MESSAGE['USERS_CANT_SELFDELETE'] = 'Function rejected, You can not delete yourself!'; |
640 | 649 |
$MESSAGE['USERS_CHANGING_PASSWORD'] = 'Pozn.: vyplňte iba hodnoty hore pokiaľ si prajete zmeniť heslo'; |
... | ... | |
670 | 679 |
{ |
671 | 680 |
include(WB_PATH.'/languages/old.format.inc.php'); |
672 | 681 |
} |
673 |
|
branches/2.8.x/wb/languages/LV.php | ||
---|---|---|
635 | 635 |
$MESSAGE['START_UPGRADE_SCRIPT_EXISTS'] = 'Please delete the file "upgrade-script.php" from your webspace.'; |
636 | 636 |
$MESSAGE['START_WELCOME_MESSAGE'] = 'Esi sveicinats WebsiteBaker administracija'; |
637 | 637 |
$MESSAGE['TEMPLATES_CHANGE_TEMPLATE_NOTICE'] = 'Ludzu iegaume: lai mainitu šablonu, jadotas uz iestatijumu sadalu'; |
638 |
$MESSAGE['UNKNOW_UPLOAD_ERROR'] = 'Unknown upload error'; |
|
639 |
$MESSAGE['UPLOAD_ERR_CANT_WRITE'] = 'Failed to write file to disk'; |
|
640 |
$MESSAGE['UPLOAD_ERR_EXTENSION'] = 'File upload stopped by extension'; |
|
641 |
$MESSAGE['UPLOAD_ERR_FORM_SIZE'] = 'The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form'; |
|
642 |
$MESSAGE['UPLOAD_ERR_INI_SIZE'] = 'The uploaded file exceeds the upload_max_filesize directive in php.ini'; |
|
643 |
$MESSAGE['UPLOAD_ERR_NO_FILE'] = 'No file was uploaded'; |
|
644 |
$MESSAGE['UPLOAD_ERR_NO_TMP_DIR'] = 'Missing a temporary folder'; |
|
645 |
$MESSAGE['UPLOAD_ERR_OK'] = 'File were successful uploaded'; |
|
646 |
$MESSAGE['UPLOAD_ERR_PARTIAL'] = 'The uploaded file was only partially uploaded'; |
|
638 | 647 |
$MESSAGE['USERS_ADDED'] = 'Lietotajs veiksmigi pievienots'; |
639 | 648 |
$MESSAGE['USERS_CANT_SELFDELETE'] = 'Function rejected, You can not delete yourself!'; |
640 | 649 |
$MESSAGE['USERS_CHANGING_PASSWORD'] = 'Ludzu iegaume: Vertibas jaievada augstak redzamajos laukos, ja gribas nomainit ši lietotaja paroli'; |
... | ... | |
670 | 679 |
{ |
671 | 680 |
include(WB_PATH.'/languages/old.format.inc.php'); |
672 | 681 |
} |
673 |
|
branches/2.8.x/wb/languages/CA.php | ||
---|---|---|
635 | 635 |
$MESSAGE['START_UPGRADE_SCRIPT_EXISTS'] = 'Please delete the file "upgrade-script.php" from your webspace.'; |
636 | 636 |
$MESSAGE['START_WELCOME_MESSAGE'] = 'Benvingut/da al Panell de Control de WebsiteBaker'; |
637 | 637 |
$MESSAGE['TEMPLATES_CHANGE_TEMPLATE_NOTICE'] = 'Avís: per a canviar la plantilla heu d\'anar a la secció Paràmetres'; |
638 |
$MESSAGE['UNKNOW_UPLOAD_ERROR'] = 'Unknown upload error'; |
|
639 |
$MESSAGE['UPLOAD_ERR_CANT_WRITE'] = 'Failed to write file to disk'; |
|
640 |
$MESSAGE['UPLOAD_ERR_EXTENSION'] = 'File upload stopped by extension'; |
|
641 |
$MESSAGE['UPLOAD_ERR_FORM_SIZE'] = 'The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form'; |
|
642 |
$MESSAGE['UPLOAD_ERR_INI_SIZE'] = 'The uploaded file exceeds the upload_max_filesize directive in php.ini'; |
|
643 |
$MESSAGE['UPLOAD_ERR_NO_FILE'] = 'No file was uploaded'; |
|
644 |
$MESSAGE['UPLOAD_ERR_NO_TMP_DIR'] = 'Missing a temporary folder'; |
|
645 |
$MESSAGE['UPLOAD_ERR_OK'] = 'File were successful uploaded'; |
|
646 |
$MESSAGE['UPLOAD_ERR_PARTIAL'] = 'The uploaded file was only partially uploaded'; |
|
638 | 647 |
$MESSAGE['USERS_ADDED'] = 'Usuari afegit amb èxit'; |
639 | 648 |
$MESSAGE['USERS_CANT_SELFDELETE'] = 'Function rejected, You can not delete yourself!'; |
640 | 649 |
$MESSAGE['USERS_CHANGING_PASSWORD'] = 'Avís: Només hauríeu d\'introduir valors als camps superiors si voleu canviar aquestes contrasenyes d\'usuari'; |
... | ... | |
670 | 679 |
{ |
671 | 680 |
include(WB_PATH.'/languages/old.format.inc.php'); |
672 | 681 |
} |
673 |
|
branches/2.8.x/wb/languages/PT.php | ||
---|---|---|
635 | 635 |
$MESSAGE['START_UPGRADE_SCRIPT_EXISTS'] = 'Please delete the file "upgrade-script.php" from your webspace.'; |
636 | 636 |
$MESSAGE['START_WELCOME_MESSAGE'] = 'Bem-Vindo à Administra&ccdil;ão do WebsiteBaker'; |
637 | 637 |
$MESSAGE['TEMPLATES_CHANGE_TEMPLATE_NOTICE'] = 'Aten&ccdil;ão: para alterar o tema (template) você precisa ir até a sessão Configura&ccdil;ões'; |
638 |
$MESSAGE['UNKNOW_UPLOAD_ERROR'] = 'Unknown upload error'; |
|
639 |
$MESSAGE['UPLOAD_ERR_CANT_WRITE'] = 'Failed to write file to disk'; |
|
640 |
$MESSAGE['UPLOAD_ERR_EXTENSION'] = 'File upload stopped by extension'; |
|
641 |
$MESSAGE['UPLOAD_ERR_FORM_SIZE'] = 'The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form'; |
|
642 |
$MESSAGE['UPLOAD_ERR_INI_SIZE'] = 'The uploaded file exceeds the upload_max_filesize directive in php.ini'; |
|
643 |
$MESSAGE['UPLOAD_ERR_NO_FILE'] = 'No file was uploaded'; |
|
644 |
$MESSAGE['UPLOAD_ERR_NO_TMP_DIR'] = 'Missing a temporary folder'; |
|
645 |
$MESSAGE['UPLOAD_ERR_OK'] = 'File were successful uploaded'; |
|
646 |
$MESSAGE['UPLOAD_ERR_PARTIAL'] = 'The uploaded file was only partially uploaded'; |
|
638 | 647 |
$MESSAGE['USERS_ADDED'] = 'Usuário adicionado com sucesso'; |
639 | 648 |
$MESSAGE['USERS_CANT_SELFDELETE'] = 'Function rejected, You can not delete yourself!'; |
640 | 649 |
$MESSAGE['USERS_CHANGING_PASSWORD'] = 'Aten&ccdil;ão: Você deve preencher os campos abaixo se deseja alterar a senha'; |
... | ... | |
670 | 679 |
{ |
671 | 680 |
include(WB_PATH.'/languages/old.format.inc.php'); |
672 | 681 |
} |
673 |
|
branches/2.8.x/wb/languages/DA.php | ||
---|---|---|
635 | 635 |
$MESSAGE['START_UPGRADE_SCRIPT_EXISTS'] = 'Please delete the file "upgrade-script.php" from your webspace.'; |
636 | 636 |
$MESSAGE['START_WELCOME_MESSAGE'] = 'Velkommen til administration af din WebsiteBaker'; |
637 | 637 |
$MESSAGE['TEMPLATES_CHANGE_TEMPLATE_NOTICE'] = 'OBS: For at ændre skabelonen skal du gå til punktet indstillinger'; |
638 |
$MESSAGE['UNKNOW_UPLOAD_ERROR'] = 'Unknown upload error'; |
|
639 |
$MESSAGE['UPLOAD_ERR_CANT_WRITE'] = 'Failed to write file to disk'; |
|
640 |
$MESSAGE['UPLOAD_ERR_EXTENSION'] = 'File upload stopped by extension'; |
|
641 |
$MESSAGE['UPLOAD_ERR_FORM_SIZE'] = 'The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form'; |
|
642 |
$MESSAGE['UPLOAD_ERR_INI_SIZE'] = 'The uploaded file exceeds the upload_max_filesize directive in php.ini'; |
|
643 |
$MESSAGE['UPLOAD_ERR_NO_FILE'] = 'No file was uploaded'; |
|
644 |
$MESSAGE['UPLOAD_ERR_NO_TMP_DIR'] = 'Missing a temporary folder'; |
|
645 |
$MESSAGE['UPLOAD_ERR_OK'] = 'File were successful uploaded'; |
|
646 |
$MESSAGE['UPLOAD_ERR_PARTIAL'] = 'The uploaded file was only partially uploaded'; |
|
638 | 647 |
$MESSAGE['USERS_ADDED'] = 'Brugeren er oprettet'; |
639 | 648 |
$MESSAGE['USERS_CANT_SELFDELETE'] = 'Funktionen udføres ikke - du kan ikke slette dig selv'; |
640 | 649 |
$MESSAGE['USERS_CHANGING_PASSWORD'] = 'OBS! Du skal kun indtaste værdier i felterne ovenfor, såfremt du ønsker at ændre denne brugers adgangskode'; |
... | ... | |
670 | 679 |
{ |
671 | 680 |
include(WB_PATH.'/languages/old.format.inc.php'); |
672 | 681 |
} |
673 |
|
branches/2.8.x/wb/languages/TR.php | ||
---|---|---|
635 | 635 |
$MESSAGE['START_UPGRADE_SCRIPT_EXISTS'] = 'Please delete the file "upgrade-script.php" from your webspace.'; |
636 | 636 |
$MESSAGE['START_WELCOME_MESSAGE'] = 'Hoþgeldiniz WebsiteBaker Yönetimine'; |
637 | 637 |
$MESSAGE['TEMPLATES_CHANGE_TEMPLATE_NOTICE'] = 'Please note: to change the template you must go to the Settings section'; |
638 |
$MESSAGE['UNKNOW_UPLOAD_ERROR'] = 'Unknown upload error'; |
|
639 |
$MESSAGE['UPLOAD_ERR_CANT_WRITE'] = 'Failed to write file to disk'; |
|
640 |
$MESSAGE['UPLOAD_ERR_EXTENSION'] = 'File upload stopped by extension'; |
|
641 |
$MESSAGE['UPLOAD_ERR_FORM_SIZE'] = 'The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form'; |
|
642 |
$MESSAGE['UPLOAD_ERR_INI_SIZE'] = 'The uploaded file exceeds the upload_max_filesize directive in php.ini'; |
|
643 |
$MESSAGE['UPLOAD_ERR_NO_FILE'] = 'No file was uploaded'; |
|
644 |
$MESSAGE['UPLOAD_ERR_NO_TMP_DIR'] = 'Missing a temporary folder'; |
|
645 |
$MESSAGE['UPLOAD_ERR_OK'] = 'File were successful uploaded'; |
|
646 |
$MESSAGE['UPLOAD_ERR_PARTIAL'] = 'The uploaded file was only partially uploaded'; |
|
638 | 647 |
$MESSAGE['USERS_ADDED'] = 'Kullanýcý, baþarýlý bir þekilde ekledi'; |
639 | 648 |
$MESSAGE['USERS_CANT_SELFDELETE'] = 'Function rejected, You can not delete yourself!'; |
640 | 649 |
$MESSAGE['USERS_CHANGING_PASSWORD'] = 'Not Edin: Sen sadece yukarýdaki alanlara deðerleri gir. Eðer bu kullanýcýlarý dile deðiþtirseydin.'; |
... | ... | |
670 | 679 |
{ |
671 | 680 |
include(WB_PATH.'/languages/old.format.inc.php'); |
672 | 681 |
} |
673 |
|
branches/2.8.x/wb/languages/RU.php | ||
---|---|---|
635 | 635 |
$MESSAGE['START_UPGRADE_SCRIPT_EXISTS'] = 'Please delete the file "upgrade-script.php" from your webspace.'; |
636 | 636 |
$MESSAGE['START_WELCOME_MESSAGE'] = 'Добро пожаловать в Меню Администрирования Сайта'; |
637 | 637 |
$MESSAGE['TEMPLATES_CHANGE_TEMPLATE_NOTICE'] = 'Внимание! Чтобы чтобы сменить шаблон перейдите в раздел "Установки"'; |
638 |
$MESSAGE['UNKNOW_UPLOAD_ERROR'] = 'Unknown upload error'; |
|
639 |
$MESSAGE['UPLOAD_ERR_CANT_WRITE'] = 'Failed to write file to disk'; |
|
640 |
$MESSAGE['UPLOAD_ERR_EXTENSION'] = 'File upload stopped by extension'; |
|
641 |
$MESSAGE['UPLOAD_ERR_FORM_SIZE'] = 'The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form'; |
|
642 |
$MESSAGE['UPLOAD_ERR_INI_SIZE'] = 'The uploaded file exceeds the upload_max_filesize directive in php.ini'; |
|
643 |
$MESSAGE['UPLOAD_ERR_NO_FILE'] = 'No file was uploaded'; |
|
644 |
$MESSAGE['UPLOAD_ERR_NO_TMP_DIR'] = 'Missing a temporary folder'; |
|
645 |
$MESSAGE['UPLOAD_ERR_OK'] = 'File were successful uploaded'; |
|
646 |
$MESSAGE['UPLOAD_ERR_PARTIAL'] = 'The uploaded file was only partially uploaded'; |
|
638 | 647 |
$MESSAGE['USERS_ADDED'] = 'Пользователь добавлен успешно'; |
639 | 648 |
$MESSAGE['USERS_CANT_SELFDELETE'] = 'Function rejected, You can not delete yourself!'; |
640 | 649 |
$MESSAGE['USERS_CHANGING_PASSWORD'] = 'Имейте ввиду, что вам следует ввести значения только в верхних полях если вы хотите изменить пароль'; |
... | ... | |
670 | 679 |
{ |
671 | 680 |
include(WB_PATH.'/languages/old.format.inc.php'); |
672 | 681 |
} |
673 |
|
branches/2.8.x/wb/languages/DE.php | ||
---|---|---|
499 | 499 |
$MESSAGE['GENERIC_VERSION_COMPARE'] = 'Versionsabgleich'; |
500 | 500 |
$MESSAGE['GENERIC_VERSION_GT'] = 'Upgrade erforderlich!'; |
501 | 501 |
$MESSAGE['GENERIC_VERSION_LT'] = 'Downgrade'; |
502 |
$MESSAGE['GENERIC_WEBSITE_LOCKED'] = 'Diese Seite ist für Wartungsarbeiten vorübergehend geschlossen';
|
|
502 |
$MESSAGE['GENERIC_WEBSITE_LOCKED'] = 'Diese Seite ist für Wartungsarbeiten vorübergehend geschlossen';
|
|
503 | 503 |
$MESSAGE['GENERIC_WEBSITE_UNDER_CONSTRUCTION'] = 'Momentan in Bearbeitung'; |
504 | 504 |
$MESSAGE['GROUPS_ADDED'] = 'Die Gruppe wurde erfolgreich hinzugefügt'; |
505 | 505 |
$MESSAGE['GROUPS_CONFIRM_DELETE'] = 'Sind Sie sicher, dass Sie die ausgewählte Gruppe löschen möchten (und alle Benutzer, die dazugehören)?'; |
... | ... | |
632 | 632 |
$MESSAGE['START_UPGRADE_SCRIPT_EXISTS'] = 'Bitte die Datei "upgrade-script.php" vom Webserver löschen.'; |
633 | 633 |
$MESSAGE['START_WELCOME_MESSAGE'] = 'Willkommen in der WebsiteBaker Verwaltung'; |
634 | 634 |
$MESSAGE['TEMPLATES_CHANGE_TEMPLATE_NOTICE'] = 'Bitte beachten Sie: Um eine andere Designvorlage auszuwählen, benutzen Sie den Bereich "Optionen"'; |
635 |
$MESSAGE['UNKNOW_UPLOAD_ERROR'] = 'Unbekannter Upload Fehler'; |
|
636 |
$MESSAGE['UPLOAD_ERR_CANT_WRITE'] = 'Konnte Datei nicht schreiben. Fehlende Schreibrechte.'; |
|
637 |
$MESSAGE['UPLOAD_ERR_EXTENSION'] = 'Erweiterungsfehler'; |
|
638 |
$MESSAGE['UPLOAD_ERR_FORM_SIZE'] = 'Die hochgeladene Datei &uum;berschreitet die in dem HTML Formular mittels der Anweisung MAX_FILE_SIZE angegebene maximale Dateigr&oum;sse. '; |
|
639 |
$MESSAGE['UPLOAD_ERR_INI_SIZE'] = 'Die hochgeladene Datei &uum;berschreitet die in der Anweisung upload_max_filesize in php.ini festgelegte Gr&oum;sse'; |
|
640 |
$MESSAGE['UPLOAD_ERR_NO_FILE'] = 'Es wurde keine Datei hochgeladen'; |
|
641 |
$MESSAGE['UPLOAD_ERR_NO_TMP_DIR'] = 'Fehlender Temporäre Ordner'; |
|
642 |
$MESSAGE['UPLOAD_ERR_OK'] = 'Die Datei wurde erfolgreich hochgeladen'; |
|
643 |
$MESSAGE['UPLOAD_ERR_PARTIAL'] = 'Die Datei wurde nur teilweise hochgeladen'; |
|
635 | 644 |
$MESSAGE['USERS_ADDED'] = 'Der Benutzer wurde erfolgreich hinzugefügt'; |
636 | 645 |
$MESSAGE['USERS_CANT_SELFDELETE'] = 'Funktion abgelehnt, Sie können sich nicht selbst löschen!'; |
637 | 646 |
$MESSAGE['USERS_CHANGING_PASSWORD'] = 'Bitte beachten Sie: Sie sollten in die obigen Felder nur Werte eingeben, wenn Sie das Passwort dieses Benutzers ändern möchten'; |
branches/2.8.x/wb/languages/BG.php | ||
---|---|---|
635 | 635 |
$MESSAGE['START_UPGRADE_SCRIPT_EXISTS'] = 'Please delete the file "upgrade-script.php" from your webspace.'; |
636 | 636 |
$MESSAGE['START_WELCOME_MESSAGE'] = 'Добре дошли в Аминистративната страница на WebsiteBaker'; |
637 | 637 |
$MESSAGE['TEMPLATES_CHANGE_TEMPLATE_NOTICE'] = 'Внимание: за да смените шаблона отидете в настройки'; |
638 |
$MESSAGE['UNKNOW_UPLOAD_ERROR'] = 'Unknown upload error'; |
|
639 |
$MESSAGE['UPLOAD_ERR_CANT_WRITE'] = 'Failed to write file to disk'; |
|
640 |
$MESSAGE['UPLOAD_ERR_EXTENSION'] = 'File upload stopped by extension'; |
|
641 |
$MESSAGE['UPLOAD_ERR_FORM_SIZE'] = 'The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form'; |
|
642 |
$MESSAGE['UPLOAD_ERR_INI_SIZE'] = 'The uploaded file exceeds the upload_max_filesize directive in php.ini'; |
|
643 |
$MESSAGE['UPLOAD_ERR_NO_FILE'] = 'No file was uploaded'; |
|
644 |
$MESSAGE['UPLOAD_ERR_NO_TMP_DIR'] = 'Missing a temporary folder'; |
|
645 |
$MESSAGE['UPLOAD_ERR_OK'] = 'File were successful uploaded'; |
|
646 |
$MESSAGE['UPLOAD_ERR_PARTIAL'] = 'The uploaded file was only partially uploaded'; |
|
638 | 647 |
$MESSAGE['USERS_ADDED'] = 'Потребителя е добавен успешно'; |
639 | 648 |
$MESSAGE['USERS_CANT_SELFDELETE'] = 'Function rejected, You can not delete yourself!'; |
640 | 649 |
$MESSAGE['USERS_CHANGING_PASSWORD'] = 'Внимание: Въведете данни в полетата ако искате да смените паролите на тези потребители'; |
... | ... | |
670 | 679 |
{ |
671 | 680 |
include(WB_PATH.'/languages/old.format.inc.php'); |
672 | 681 |
} |
673 |
|
Also available in: Unified diff
+ add languages vars in languages files
+ add upload error mesages moduleinstall
+ add index.php if not exists in function createFolderProtectFile
! corrected changed coding between login_form and forgot_form