Project

General

Profile

« Previous | Next » 

Revision 1551

Added by Dietmar over 12 years ago

+ 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

View differences:

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>&nbsp;Login</h1>
48
&nbsp;<?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>&nbsp;</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>&nbsp;</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>&nbsp;</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&auml;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&auml;yt&auml; vain ko kent&auml;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&iacute;tejte v Administra&#269;n&iacute; &#269;&aacute;sti';
637 637
$MESSAGE['TEMPLATES_CHANGE_TEMPLATE_NOTICE'] = 'Pozn.: zm&#283;na &scaron;ablony se prov&aacute;d&iacute; v sekci Nastaven&iacute;';
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&#382;ivatel byl &uacute;sp&#283;&scaron;n&#283; p&#345;id&aacute;n';
639 648
$MESSAGE['USERS_CANT_SELFDELETE'] = 'Function rejected, You can not delete yourself!';
640 649
$MESSAGE['USERS_CHANGING_PASSWORD'] = 'Pozn.: vypl&#328;te pouze hodnoty v&yacute;&scaron;e pokud si p&#345;ejete zm&#283;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&auml;lkommen till administrationen av WebsiteBaker';
637 637
$MESSAGE['TEMPLATES_CHANGE_TEMPLATE_NOTICE'] = 'Observera: f&ouml;r att &auml;ndra Mall, m&aring;ste du g&aring; till Sektionen Inst&auml;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&auml;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&auml;lt ska du bara skriva i om du vill &Auml;NDRA L&ouml;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&oacute;n';
637 637
$MESSAGE['TEMPLATES_CHANGE_TEMPLATE_NOTICE'] = 'Atenci&oacute;n: para cambiar la plantilla ir a la secci&oacute;n de Configuraci&oacute;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&oacute;n: Solo debe escribir en estos campos si desea cambiar la contrase&ntilde;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&apos;administration';
637 637
$MESSAGE['TEMPLATES_CHANGE_TEMPLATE_NOTICE'] = 'Pour modifier le th&egrave;me du site, vous devez vous rendre dans la rubrique R&eacute;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&eacute; avec succ&egrave;s';
639 648
$MESSAGE['USERS_CANT_SELFDELETE'] = 'Action refus&eacute;e, Vous ne pouvez pas vous supprimer vous-m&ecirc;me!';
640 649
$MESSAGE['USERS_CHANGING_PASSWORD'] = 'Vous ne devez modifier les valeurs ci-dessus uniquement lors d&apos;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&auml;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&auml;rge: Sa pead ainult sisestama p&otilde;him&otilde;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&scaron;li u WebsiteBaker administraciju';
637 637
$MESSAGE['TEMPLATES_CHANGE_TEMPLATE_NOTICE'] = 'Obavijest: Za promjenu predlo&scaron;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&scaron;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 &#382;elite izmjeniti korisni&egrave;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&aacute;gok';
37 37
$MENU['ADDON'] = 'Add-on';
38
$MENU['ADDONS'] = 'Kieg&eacute;sz&iacute;t╨Ф┬л';
38
$MENU['ADDONS'] = 'Kieg&eacute;sz&iacute;t-?-?';
39 39
$MENU['ADMINTOOLS'] = 'Admin-Eszk&ouml;z&ouml;k';
40 40
$MENU['BREADCRUMB'] = 'You are here: ';
41 41
$MENU['FORGOT'] = 'Elfelejtett jelsz&oacute;';
......
50 50
$MENU['PAGES'] = 'Weblapok';
51 51
$MENU['PREFERENCES'] = 'Saj&aacute;t adatok';
52 52
$MENU['SETTINGS'] = 'Param&eacute;terek';
53
$MENU['START'] = 'Kezd╨Ф┬мap';
53
$MENU['START'] = 'Kezd-?-?ap';
54 54
$MENU['TEMPLATES'] = 'Sablonok';
55 55
$MENU['USERS'] = 'Felhaszn&aacute;l&oacute;k';
56 56
$MENU['VIEW'] = 'Port&aacute;l n&eacute;zet';
......
67 67
$TEXT['ADMINISTRATION_TOOL'] = 'Adminisztr&aacute;ci&oacute;s Eszk&ouml;z';
68 68
$TEXT['ADMINISTRATOR'] = 'Administrator';
69 69
$TEXT['ADMINISTRATORS'] = 'Adminisztr&aacute;torok';
70
$TEXT['ADVANCED'] = 'B╨Ф┬╢&iacute;tett';
70
$TEXT['ADVANCED'] = 'B-?-¦&iacute;tett';
71 71
$TEXT['ALLOWED_FILETYPES_ON_UPLOAD'] = 'Allowed filetypes on upload';
72 72
$TEXT['ALLOWED_VIEWERS'] = 'Enged&eacute;lyezett l&aacute;togat&oacute;k';
73 73
$TEXT['ALLOW_MULTIPLE_SELECTIONS'] = 'T&ouml;bbet is kiv&aacute;laszthat';
......
134 134
$TEXT['EXACT_MATCH'] = 'Pontos egyez&eacute;s';
135 135
$TEXT['EXECUTE'] = 'V&eacute;grehajt&aacute;s';
136 136
$TEXT['EXPAND'] = 'Kibont';
137
$TEXT['EXTENSION'] = 'B╨Ф┬╢&iacute;tm&eacute;ny';
137
$TEXT['EXTENSION'] = 'B-?-¦&iacute;tm&eacute;ny';
138 138
$TEXT['FIELD'] = 'Mez&ccedil;';
139 139
$TEXT['FILE'] = 'F&aacute;jl';
140 140
$TEXT['FILES'] = 'F&aacute;jlok';
......
158 158
$TEXT['HIDDEN'] = 'Rejtett';
159 159
$TEXT['HIDE'] = 'Elrejt';
160 160
$TEXT['HIDE_ADVANCED'] = 'Speci&aacute;lis be&aacute;ll&iacute;t&aacute;sok elrejt&eacute;se';
161
$TEXT['HOME'] = 'Kezd╨Ф┬мap';
161
$TEXT['HOME'] = 'Kezd-?-?ap';
162 162
$TEXT['HOMEPAGE_REDIRECTION'] = 'Honlap &aacute;tir&aacute;ny&iacute;t&aacute;s';
163 163
$TEXT['HOME_FOLDER'] = 'Personal Folder';
164 164
$TEXT['HOME_FOLDERS'] = 'Personal Folders';
......
184 184
$TEXT['LIST_OPTIONS'] = 'Lista opci&oacute;k';
185 185
$TEXT['LOGGED_IN'] = 'Bejelentkezve';
186 186
$TEXT['LOGIN'] = 'Bel&eacute;p&eacute;s';
187
$TEXT['LONG'] = 'Hossz╨Х┬▒';
187
$TEXT['LONG'] = 'Hossz-?-¦';
188 188
$TEXT['LONG_TEXT'] = 'Hossz&uacute; sz&ouml;veg';
189
$TEXT['LOOP'] = 'ism&eacute;tl╨Ф┬д&uuml;/br&gt; t&ouml;rzs szakasz';
189
$TEXT['LOOP'] = 'ism&eacute;tl-?-?&uuml;/br&gt; t&ouml;rzs szakasz';
190 190
$TEXT['MAIN'] = 'F&ccedil;';
191 191
$TEXT['MAINTENANCE_OFF'] = 'Maintenance off';
192 192
$TEXT['MAINTENANCE_ON'] = 'Maintenance on';
......
208 208
$TEXT['MODIFY_SETTINGS'] = 'Be&aacute;ll&iacute;t&aacute;sok m&oacute;dos&iacute;t&aacute;sa';
209 209
$TEXT['MODULE_ORDER'] = 'Modul sorrend keres&eacute;sn&eacute;l';
210 210
$TEXT['MODULE_PERMISSIONS'] = 'Modul enged&eacute;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&ouml;bbszint╨Х┬▒ men&uuml;';
214
$TEXT['MULTIPLE_MENUS'] = 'T&ouml;bbszint-?-¦ men&uuml;';
215 215
$TEXT['MULTISELECT'] = 'T&ouml;bb v&aacute;laszt&aacute;sos';
216 216
$TEXT['NAME'] = 'N&eacute;v';
217 217
$TEXT['NEED_CURRENT_PASSWORD'] = 'confirm with current password';
......
256 256
$TEXT['POSTS_PER_PAGE'] = '&ordm;enetek laponk&eacute;nt';
257 257
$TEXT['POST_FOOTER'] = '&ordm;enet l&aacute;bl&eacute;c';
258 258
$TEXT['POST_HEADER'] = '&ordm;enet fejbl&eacute;c';
259
$TEXT['PREVIOUS'] = 'El╨Ф╤Ф&ccedil;';
260
$TEXT['PREVIOUS_PAGE'] = 'El╨Ф╤Ф&agrave;oldal';
259
$TEXT['PREVIOUS'] = 'El-?-?&ccedil;';
260
$TEXT['PREVIOUS_PAGE'] = 'El-?-?&agrave;oldal';
261 261
$TEXT['PRIVATE'] = 'Priv&aacute;t';
262 262
$TEXT['PRIVATE_VIEWERS'] = 'Priv&aacute;t jogosultak';
263 263
$TEXT['PROFILES_EDIT'] = 'Change the profile';
......
321 321
$TEXT['SUCCESS'] = 'Sikeres';
322 322
$TEXT['SYSTEM_DEFAULT'] = 'Rendszer alap&eacute;rtelmezett';
323 323
$TEXT['SYSTEM_PERMISSIONS'] = 'Rendszer enged&eacute;lyek';
324
$TEXT['TABLE_PREFIX'] = 'T&aacute;bla el╨Ф╥Сag';
324
$TEXT['TABLE_PREFIX'] = 'T&aacute;bla el-?-?ag';
325 325
$TEXT['TARGET'] = 'C&eacute;l';
326 326
$TEXT['TARGET_FOLDER'] = 'C&eacute;l k&ouml;nyvt&aacute;r';
327 327
$TEXT['TEMPLATE'] = 'Weboldal Sablon';
......
331 331
$TEXT['TEXTFIELD'] = 'Sz&ouml;vegmez&ccedil;';
332 332
$TEXT['THEME'] = 'Admin T&eacute;ma';
333 333
$TEXT['TIME'] = 'Id&ccedil;';
334
$TEXT['TIMEZONE'] = 'Id╨Ф╤Ф&oacute;na';
334
$TEXT['TIMEZONE'] = 'Id-?-?&oacute;na';
335 335
$TEXT['TIME_FORMAT'] = 'Id&agrave;form&aacute;tum';
336 336
$TEXT['TIME_LIMIT'] = 'Maxim&aacute;lis id&agrave;a modulonk&eacute;nti tal&aacute;latra';
337 337
$TEXT['TITLE'] = 'C&iacute;m';
......
365 365
$TEXT['VISIBILITY'] = 'Megjelen&eacute;s';
366 366
$TEXT['WBMAILER_DEFAULT_SENDER_MAIL'] = 'K&uuml;ld&agrave;email';
367 367
$TEXT['WBMAILER_DEFAULT_SENDER_NAME'] = 'K&uuml;ld&agrave;szem&eacute;ly';
368
$TEXT['WBMAILER_DEFAULT_SETTINGS_NOTICE'] = 'K&eacute;rlek add meg az alap&eacute;rtelmezett "K&uuml;ld&agrave;email" c&iacute;met &eacute;s a "K&uuml;ld&agrave;szem&eacute;ly" mez╨Ф╥С. Aj&aacute;nlott az al&aacute;bbi foszn&aacute;lata: &lt;strong&gt;admin@tedomained.hu&lt;/strong&gt;. N&eacute;mely szolg&aacute;ltat&oacute; (e.g. &lt;em&gt;mail.com&lt;/em&gt;) Visszautas&iacute;thatja a leveleket az olyan k&uuml;ld&agrave;c&iacute;mt╨Ф┬м mint &lt;@mail.com&lt;/em&gt; ez az&eacute;rt van hogy megakad&aacute;lyozz&aacute;k a SPAM k&uuml;ld&eacute;st.&lt;br /&gt;&lt;br /&gt;Az alap&eacute;rtelmezett &eacute;rt&eacute;kek csak akkor &eacute;rv&eacute;nyesek,ha nincs m&aacute;s megadva aker-ben. Ha a szervered t&aacute;mogatja &lt;acronym title="Simple mail transfer protocol"&gt;SMTP&lt;/acronym&gt;protokolt, akkor haszn&aacute;lhatod ezt az opci&oacute;t lev&eacute;l k&uuml;ld&eacute;;hez.';
368
$TEXT['WBMAILER_DEFAULT_SETTINGS_NOTICE'] = 'K&eacute;rlek add meg az alap&eacute;rtelmezett "K&uuml;ld&agrave;email" c&iacute;met &eacute;s a "K&uuml;ld&agrave;szem&eacute;ly" mez-?-?. Aj&aacute;nlott az al&aacute;bbi foszn&aacute;lata: &lt;strong&gt;admin@tedomained.hu&lt;/strong&gt;. N&eacute;mely szolg&aacute;ltat&oacute; (e.g. &lt;em&gt;mail.com&lt;/em&gt;) Visszautas&iacute;thatja a leveleket az olyan k&uuml;ld&agrave;c&iacute;mt-?-? mint &lt;@mail.com&lt;/em&gt; ez az&eacute;rt van hogy megakad&aacute;lyozz&aacute;k a SPAM k&uuml;ld&eacute;st.&lt;br /&gt;&lt;br /&gt;Az alap&eacute;rtelmezett &eacute;rt&eacute;kek csak akkor &eacute;rv&eacute;nyesek,ha nincs m&aacute;s megadva aker-ben. Ha a szervered t&aacute;mogatja &lt;acronym title="Simple mail transfer protocol"&gt;SMTP&lt;/acronym&gt;protokolt, akkor haszn&aacute;lhatod ezt az opci&oacute;t lev&eacute;l k&uuml;ld&eacute;;hez.';
369 369
$TEXT['WBMAILER_FUNCTION'] = 'Mail Rutin';
370
$TEXT['WBMAILER_NOTICE'] = '&lt;strong&gt;SMTP Mailer Be&aacute;ll&iacute;t&aacute;sok:&lt;/strong&gt;&lt;br /&gt;Ezek a be&aacute;ll&iacute;t&aacute;sok csak akkor sz&uuml;ks&eacute;gesek, ha emailt akarsz k&uuml;ldeni &lt;acro="Simple mail transfer protocol"&gt;SMTP&lt;/acronym&gt; protokollon kereszt&uuml;l. Ha nem tudod az SMTP kiszolg&aacute;l&oacute;dat, vagy nem vagy biztos a k&ouml;vetlem&eacute;nyekben, akkoszer╨Х┬▒en maradj az alap be&aacute;ll&iacute;t&aacute;sn&aacute;l: PHP MAIL.';
370
$TEXT['WBMAILER_NOTICE'] = '&lt;strong&gt;SMTP Mailer Be&aacute;ll&iacute;t&aacute;sok:&lt;/strong&gt;&lt;br /&gt;Ezek a be&aacute;ll&iacute;t&aacute;sok csak akkor sz&uuml;ks&eacute;gesek, ha emailt akarsz k&uuml;ldeni &lt;acro="Simple mail transfer protocol"&gt;SMTP&lt;/acronym&gt; protokollon kereszt&uuml;l. Ha nem tudod az SMTP kiszolg&aacute;l&oacute;dat, vagy nem vagy biztos a k&ouml;vetlem&eacute;nyekben, akkoszer-?-¦en maradj az alap be&aacute;ll&iacute;t&aacute;sn&aacute;l: PHP MAIL.';
371 371
$TEXT['WBMAILER_PHP'] = 'PHP MAIL';
372 372
$TEXT['WBMAILER_SMTP'] = 'SMTP';
373 373
$TEXT['WBMAILER_SMTP_AUTH'] = 'SMTP Azonos&iacute;t&aacute;s';
......
392 392
$TEXT['YES'] = 'Igen';
393 393

  
394 394
/* HEADING */
395
$HEADING['ADDON_PRECHECK_FAILED'] = 'Kieg&eacute;sz&iacute;t&agrave;k&ouml;vetelm&eacute;nyek nem megfelel╨Ф╥Рk';
395
$HEADING['ADDON_PRECHECK_FAILED'] = 'Kieg&eacute;sz&iacute;t&agrave;k&ouml;vetelm&eacute;nyek nem megfelel-?-?k';
396 396
$HEADING['ADD_CHILD_PAGE'] = 'Add child page';
397 397
$HEADING['ADD_GROUP'] = 'Csoport m&oacute;dos&iacute;t&aacute;sa';
398 398
$HEADING['ADD_GROUPS'] = 'Add Groups';
......
475 475
$MESSAGE['GENERIC_FAILED_COMPARE'] = ' failed';
476 476
$MESSAGE['GENERIC_FILE_TYPE'] = 'A felt&ouml;lt&ouml;tt file csak ilyen form&aacute;tum&uacute; lehet:';
477 477
$MESSAGE['GENERIC_FILE_TYPES'] = 'A felt&ouml;lt&ouml;tt file-ok csak a k&ouml;vetkez&agrave;form&aacute;tumuak lehetnek:';
478
$MESSAGE['GENERIC_FILL_IN_ALL'] = 'K&eacute;rem t&eacute;rjen vissza &eacute;s t&ouml;lts&ouml;n ki minden mez╨Ф╥С';
478
$MESSAGE['GENERIC_FILL_IN_ALL'] = 'K&eacute;rem t&eacute;rjen vissza &eacute;s t&ouml;lts&ouml;n ki minden mez-?-?';
479 479
$MESSAGE['GENERIC_FORGOT_OPTIONS'] = 'You have selected no choice!';
480 480
$MESSAGE['GENERIC_INSTALLED'] = 'Telep&iacute;t&eacute;s sikeres';
481 481
$MESSAGE['GENERIC_INVALID'] = 'A felt&ouml;lt&ouml;tt file nem megfelel&ccedil;';
482
$MESSAGE['GENERIC_INVALID_ADDON_FILE'] = '&sup2;v&eacute;nytelen WebsiteBaker telep&iacute;t&agrave;f&aacute;jl. K&eacute;rlek ellen╨Ф╨Жizd a *.zip form&aacute;tumot.';
483
$MESSAGE['GENERIC_INVALID_LANGUAGE_FILE'] = '&sup2;v&eacute;nytelen WebsiteBaker nyelvi f&aacute;jl. K&eacute;rlek ellen╨Ф╨Жizd a sz&ouml;veges f&aacute;jlt.';
482
$MESSAGE['GENERIC_INVALID_ADDON_FILE'] = '&sup2;v&eacute;nytelen WebsiteBaker telep&iacute;t&agrave;f&aacute;jl. K&eacute;rlek ellen-?-?izd a *.zip form&aacute;tumot.';
483
$MESSAGE['GENERIC_INVALID_LANGUAGE_FILE'] = '&sup2;v&eacute;nytelen WebsiteBaker nyelvi f&aacute;jl. K&eacute;rlek ellen-?-?izd a sz&ouml;veges f&aacute;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&iacute;tve';
491 491
$MESSAGE['GENERIC_NOT_UPGRADED'] = 'Actualization not possibly';
492 492
$MESSAGE['GENERIC_PLEASE_BE_PATIENT'] = 'K&eacute;rem v&aacute;rjon, ez eltarthat egy ideig.';
493
$MESSAGE['GENERIC_PLEASE_CHECK_BACK_SOON'] = 'K&eacute;rem t&eacute;rjen vissza k&eacute;s╨Ф╤Юb!';
493
$MESSAGE['GENERIC_PLEASE_CHECK_BACK_SOON'] = 'K&eacute;rem t&eacute;rjen vissza k&eacute;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&aacute;vol&iacute;t&aacute;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&aacute;s Alatt';
503 503
$MESSAGE['GROUPS_ADDED'] = 'Csoport sikeresen hozz&aacute;adva';
504
$MESSAGE['GROUPS_CONFIRM_DELETE'] = 'Biztos, hogy t&ouml;r&ouml;lni akarja a kijel&ouml;lt csoportot? (Minden felhaszn&aacute;l&oacute;ja t&ouml;rl╨Ф┬дik)';
504
$MESSAGE['GROUPS_CONFIRM_DELETE'] = 'Biztos, hogy t&ouml;r&ouml;lni akarja a kijel&ouml;lt csoportot? (Minden felhaszn&aacute;l&oacute;ja t&ouml;rl-?-?ik)';
505 505
$MESSAGE['GROUPS_DELETED'] = 'Csoport t&ouml;r&ouml;lve';
506 506
$MESSAGE['GROUPS_GROUP_NAME_BLANK'] = '&sup2;es a csoportn&eacute;v';
507 507
$MESSAGE['GROUPS_GROUP_NAME_EXISTS'] = 'Csoport n&eacute;v m&aacute;r l&eacute;tezik';
......
524 524
$MESSAGE['MEDIA_DELETED_DIR'] = 'K&ouml;nyvt&aacute;r t&ouml;r&ouml;lve';
525 525
$MESSAGE['MEDIA_DELETED_FILE'] = 'File t&ouml;r&ouml;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&eacute;l mez╨Ф╤Юen';
527
$MESSAGE['MEDIA_DIR_DOES_NOT_EXIST'] = 'Nem lehet ../ a c&eacute;l mez-?-?en';
528 528
$MESSAGE['MEDIA_DIR_DOT_DOT_SLASH'] = 'Nem tartalmazhat ../ -t a k&ouml;nyvt&aacute;r n&eacute;v';
529
$MESSAGE['MEDIA_DIR_EXISTS'] = 'Ilyen nev╨Х┬▒ k&ouml;nyvt&aacute;r m&aacute;r l&eacute;tezik';
529
$MESSAGE['MEDIA_DIR_EXISTS'] = 'Ilyen nev-?-¦ k&ouml;nyvt&aacute;r m&aacute;r l&eacute;tezik';
530 530
$MESSAGE['MEDIA_DIR_MADE'] = 'A k&ouml;nyvt&aacute;r sikeresen l&eacute;trehozva';
531 531
$MESSAGE['MEDIA_DIR_NOT_MADE'] = 'nem siker&uuml;lt l&eacute;trehozni a k&ouml;nyvt&aacute;rat';
532
$MESSAGE['MEDIA_FILE_EXISTS'] = 'Ilyen nev╨Х┬▒ file m&aacute;r l&eacute;tezik';
532
$MESSAGE['MEDIA_FILE_EXISTS'] = 'Ilyen nev-?-¦ file m&aacute;r l&eacute;tezik';
533 533
$MESSAGE['MEDIA_FILE_NOT_FOUND'] = 'File nem tal&aacute;lhat&oacute;';
534 534
$MESSAGE['MEDIA_NAME_DOT_DOT_SLASH'] = 'Nem lehet ../ a n&eacute;vben';
535 535
$MESSAGE['MEDIA_NAME_INDEX_PHP'] = 'Nem lehet index.php a n&eacute;v';
......
539 539
$MESSAGE['MEDIA_SINGLE_UPLOADED'] = ' file sikeresen felt&ouml;ltve';
540 540
$MESSAGE['MEDIA_TARGET_DOT_DOT_SLASH'] = 'Nem lehet ../ in k&ouml;nyvt&aacute;r n&eacute;vben';
541 541
$MESSAGE['MEDIA_UPLOADED'] = ' file sikeresen felt&ouml;ltve';
542
$MESSAGE['MOD_FORM_EXCESS_SUBMISSIONS'] = 'Sajn&aacute;ljuk, de ez az ╨Х┬▒rlap t&uacute;l sokszor lett kit&ouml;ltve egy &oacute;ran bel&uuml;l! K&eacute;rem pr&oacute;b&aacute;lja meg egy &oacute;ra m&uacute;lva';
542
$MESSAGE['MOD_FORM_EXCESS_SUBMISSIONS'] = 'Sajn&aacute;ljuk, de ez az -?-¦rlap t&uacute;l sokszor lett kit&ouml;ltve egy &oacute;ran bel&uuml;l! K&eacute;rem pr&oacute;b&aacute;lja meg egy &oacute;ra m&uacute;lva';
543 543
$MESSAGE['MOD_FORM_INCORRECT_CAPTCHA'] = 'A megadott ellen&ouml;rz&agrave;k&oacute;d (vagy m&aacute;s n&eacute;ven Captcha) hib&aacute;s. Ha probl&eacute;m&aacute;d van elolvasni a Captcha k&oacute;dot, k&uuml;mailt ide: <a href="mailto:'.SERVER_EMAIL.'">'.SERVER_EMAIL.'</a>';
544
$MESSAGE['MOD_FORM_REQUIRED_FIELDS'] = 'A k&ouml;vetkez&agrave;mez╨Ф┬лet k&ouml;telez&agrave;kit&ouml;ltenie';
544
$MESSAGE['MOD_FORM_REQUIRED_FIELDS'] = 'A k&ouml;vetkez&agrave;mez-?-?et k&ouml;telez&agrave;kit&ouml;ltenie';
545 545
$MESSAGE['PAGES_ADDED'] = 'Lap sikeresen hozz&aacute;adva';
546 546
$MESSAGE['PAGES_ADDED_HEADING'] = 'Lap c&iacute;msor sikeresen hozz&aacute;adva';
547 547
$MESSAGE['PAGES_BLANK_MENU_TITLE'] = 'K&eacute;rem adjon meg men&uuml; nevet';
......
635 635
$MESSAGE['START_UPGRADE_SCRIPT_EXISTS'] = 'Please delete the file "upgrade-script.php" from your webspace.';
636 636
$MESSAGE['START_WELCOME_MESSAGE'] = '&curren;v a WebsiteBaker Admin fel&uuml;let&eacute;n';
637 637
$MESSAGE['TEMPLATES_CHANGE_TEMPLATE_NOTICE'] = 'Figyelem: A sablon megv&aacute;ltoztat&aacute;s&aacute;t a be&aacute;ll&iacute;t&aacute;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&aacute;l&oacute; sikeresen hozz&aacute;adva';
639 648
$MESSAGE['USERS_CANT_SELFDELETE'] = 'Function rejected, You can not delete yourself!';
640 649
$MESSAGE['USERS_CHANGING_PASSWORD'] = 'Figyelem: A jelsz&oacute;t itt csak annak megv&aacute;ltoztat&aacute;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 &aring; endre malen m&aring; man gj&oslash;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 &aring; 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&iacute;vnej &#269;asti';
637 637
$MESSAGE['TEMPLATES_CHANGE_TEMPLATE_NOTICE'] = 'Pozn.: zmena &#353;ablony sa prov&aacute;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&#382;&iacute;vate&#318; bol &uacute;spe&#353;ne pridan&yacute;';
639 648
$MESSAGE['USERS_CANT_SELFDELETE'] = 'Function rejected, You can not delete yourself!';
640 649
$MESSAGE['USERS_CHANGING_PASSWORD'] = 'Pozn.: vypl&#328;te iba hodnoty hore pokia&#318; si prajete zmeni&#357; 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 &scaron;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 &scaron;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&iacute;s: per a canviar la plantilla heu d\'anar a la secci&oacute; Par&agrave;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 &egrave;xit';
639 648
$MESSAGE['USERS_CANT_SELFDELETE'] = 'Function rejected, You can not delete yourself!';
640 649
$MESSAGE['USERS_CHANGING_PASSWORD'] = 'Av&iacute;s: Nom&eacute;s haur&iacute;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 &agrave; Administra&ccdil;&atilde;o do WebsiteBaker';
637 637
$MESSAGE['TEMPLATES_CHANGE_TEMPLATE_NOTICE'] = 'Aten&ccdil;&atilde;o: para alterar o tema (template) voc&ecirc; precisa ir at&eacute; a sess&atilde;o Configura&ccdil;&otilde;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&aacute;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;&atilde;o: Voc&ecirc; 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 &aelig;ndre skabelonen skal du g&aring; 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&oslash;res ikke - du kan ikke slette dig selv';
640 649
$MESSAGE['USERS_CHANGING_PASSWORD'] = 'OBS! Du skal kun indtaste v&aelig;rdier i felterne ovenfor, s&aring;fremt du &oslash;nsker at &aelig;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&thorn;geldiniz WebsiteBaker Y&ouml;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&yacute;c&yacute;, ba&thorn;ar&yacute;l&yacute; bir &thorn;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&yacute;daki alanlara de&eth;erleri gir. E&eth;er bu kullan&yacute;c&yacute;lar&yacute; dile de&eth;i&thorn;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'] = '&#1044;&#1086;&#1073;&#1088;&#1086; &#1087;&#1086;&#1078;&#1072;&#1083;&#1086;&#1074;&#1072;&#1090;&#1100; &#1074; &#1052;&#1077;&#1085;&#1102; &#1040;&#1076;&#1084;&#1080;&#1085;&#1080;&#1089;&#1090;&#1088;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103; &#1057;&#1072;&#1081;&#1090;&#1072;';
637 637
$MESSAGE['TEMPLATES_CHANGE_TEMPLATE_NOTICE'] = '&#1042;&#1085;&#1080;&#1084;&#1072;&#1085;&#1080;&#1077;! &#1063;&#1090;&#1086;&#1073;&#1099; &#1095;&#1090;&#1086;&#1073;&#1099; &#1089;&#1084;&#1077;&#1085;&#1080;&#1090;&#1100; &#1096;&#1072;&#1073;&#1083;&#1086;&#1085; &#1087;&#1077;&#1088;&#1077;&#1081;&#1076;&#1080;&#1090;&#1077; &#1074; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083; "&#1059;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080;"';
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'] = '&#1055;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1100; &#1076;&#1086;&#1073;&#1072;&#1074;&#1083;&#1077;&#1085; &#1091;&#1089;&#1087;&#1077;&#1096;&#1085;&#1086;';
639 648
$MESSAGE['USERS_CANT_SELFDELETE'] = 'Function rejected, You can not delete yourself!';
640 649
$MESSAGE['USERS_CHANGING_PASSWORD'] = '&#1048;&#1084;&#1077;&#1081;&#1090;&#1077; &#1074;&#1074;&#1080;&#1076;&#1091;, &#1095;&#1090;&#1086; &#1074;&#1072;&#1084; &#1089;&#1083;&#1077;&#1076;&#1091;&#1077;&#1090; &#1074;&#1074;&#1077;&#1089;&#1090;&#1080; &#1079;&#1085;&#1072;&#1095;&#1077;&#1085;&#1080;&#1103; &#1090;&#1086;&#1083;&#1100;&#1082;&#1086; &#1074; &#1074;&#1077;&#1088;&#1093;&#1085;&#1080;&#1093; &#1087;&#1086;&#1083;&#1103;&#1093; &#1077;&#1089;&#1083;&#1080; &#1074;&#1099; &#1093;&#1086;&#1090;&#1080;&#1090;&#1077; &#1080;&#1079;&#1084;&#1077;&#1085;&#1080;&#1090;&#1100; &#1087;&#1072;&#1088;&#1086;&#1083;&#1100;';
......
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&uuml;bergehend geschlossen';
502
$MESSAGE['GENERIC_WEBSITE_LOCKED'] = 'Diese Seite ist f&uuml;r Wartungsarbeiten vor&uuml;bergehend geschlossen';
503 503
$MESSAGE['GENERIC_WEBSITE_UNDER_CONSTRUCTION'] = 'Momentan in Bearbeitung';
504 504
$MESSAGE['GROUPS_ADDED'] = 'Die Gruppe wurde erfolgreich hinzugef&uuml;gt';
505 505
$MESSAGE['GROUPS_CONFIRM_DELETE'] = 'Sind Sie sicher, dass Sie die ausgew&auml;hlte Gruppe l&ouml;schen m&ouml;chten (und alle Benutzer, die dazugeh&ouml;ren)?';
......
632 632
$MESSAGE['START_UPGRADE_SCRIPT_EXISTS'] = 'Bitte die Datei "upgrade-script.php" vom Webserver l&ouml;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&auml;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&uuml;gt';
636 645
$MESSAGE['USERS_CANT_SELFDELETE'] = 'Funktion abgelehnt, Sie k&ouml;nnen sich nicht selbst l&ouml;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 &auml;ndern m&ouml;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'] = '&#1044;&#1086;&#1073;&#1088;&#1077; &#1076;&#1086;&#1096;&#1083;&#1080; &#1074; &#1040;&#1084;&#1080;&#1085;&#1080;&#1089;&#1090;&#1088;&#1072;&#1090;&#1080;&#1074;&#1085;&#1072;&#1090;&#1072; &#1089;&#1090;&#1088;&#1072;&#1085;&#1080;&#1094;&#1072; &#1085;&#1072; WebsiteBaker';
637 637
$MESSAGE['TEMPLATES_CHANGE_TEMPLATE_NOTICE'] = '&#1042;&#1085;&#1080;&#1084;&#1072;&#1085;&#1080;&#1077;: &#1079;&#1072; &#1076;&#1072; &#1089;&#1084;&#1077;&#1085;&#1080;&#1090;&#1077; &#1096;&#1072;&#1073;&#1083;&#1086;&#1085;&#1072; &#1086;&#1090;&#1080;&#1076;&#1077;&#1090;&#1077; &#1074; &#1085;&#1072;&#1089;&#1090;&#1088;&#1086;&#1081;&#1082;&#1080;';
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'] = '&#1055;&#1086;&#1090;&#1088;&#1077;&#1073;&#1080;&#1090;&#1077;&#1083;&#1103; &#1077; &#1076;&#1086;&#1073;&#1072;&#1074;&#1077;&#1085; &#1091;&#1089;&#1087;&#1077;&#1096;&#1085;&#1086;';
639 648
$MESSAGE['USERS_CANT_SELFDELETE'] = 'Function rejected, You can not delete yourself!';
640 649
$MESSAGE['USERS_CHANGING_PASSWORD'] = '&#1042;&#1085;&#1080;&#1084;&#1072;&#1085;&#1080;&#1077;: &#1042;&#1098;&#1074;&#1077;&#1076;&#1077;&#1090;&#1077; &#1076;&#1072;&#1085;&#1085;&#1080; &#1074; &#1087;&#1086;&#1083;&#1077;&#1090;&#1072;&#1090;&#1072; &#1072;&#1082;&#1086; &#1080;&#1089;&#1082;&#1072;&#1090;&#1077; &#1076;&#1072; &#1089;&#1084;&#1077;&#1085;&#1080;&#1090;&#1077; &#1087;&#1072;&#1088;&#1086;&#1083;&#1080;&#1090;&#1077; &#1085;&#1072; &#1090;&#1077;&#1079;&#1080; &#1087;&#1086;&#1090;&#1088;&#1077;&#1073;&#1080;&#1090;&#1077;&#1083;&#1080;';
......
670 679
{
671 680
	include(WB_PATH.'/languages/old.format.inc.php');
672 681
}
673

  

Also available in: Unified diff