Project

General

Profile

« Previous | Next » 

Revision 1323

Added by Dietmar over 14 years ago

Ticket #985 With #1318 no login in backend possible
Ticket #986 Typo inside the german language file
Ticket #982 Unnessesary heredoc causes on errors while installation!
Ticket #926/Ticket #928 Mail Notification on new user registration

View differences:

branches/2.8.x/CHANGELOG
12 12

  
13 13
------------------------------------- 2.8.1 -------------------------------------
14 14
14-Apr-2010 Dietmar Woellbrink (Luisehahne)
15
#	Ticket #985 With #1318 no login in backend possible
16
#	Ticket #986 Typo inside the german language file 
17
#	Ticket #982 Unnessesary heredoc causes on errors while installation!
18
#	Ticket #926/Ticket #928 Mail Notification on new user registration
19
14-Apr-2010 Dietmar Woellbrink (Luisehahne)
15 20
#	Ticket #984 Removing outdated comment-block in class.login.php
16 21
#	Ticket #983 Sorting order of modules and templates inside groups.php
17 22
14-Apr-2010 Dietrich Roland Pehlke (Aldus)
branches/2.8.x/wb/admin/groups/groups.php
21 21
require_once(WB_PATH.'/framework/class.admin.php');
22 22

  
23 23
// Create new database object
24
$database = new database();
24
// $database = new database();
25 25

  
26 26
if(!isset($_POST['action']) OR ($_POST['action'] != "modify" AND $_POST['action'] != "delete")) {
27 27
	header("Location: index.php");
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.x');
55
if(!defined('REVISION')) define('REVISION', '1322');
55
if(!defined('REVISION')) define('REVISION', '1323');
56 56

  
57 57
?>
branches/2.8.x/wb/account/forgot_form.php
22 22
}
23 23

  
24 24
// Create new database object
25
$database = new database();
25
// $database = new database();
26 26

  
27 27
// Check if the user has already submitted the form, otherwise show it
28 28
if(isset($_POST['email']) && $_POST['email'] != "" &&
......
74 74
				// Replace placeholders from language variable with values
75 75
				$search = array('{LOGIN_DISPLAY_NAME}', '{LOGIN_WEBSITE_TITLE}', '{LOGIN_NAME}', '{LOGIN_PASSWORD}');
76 76
				$replace = array($results_array['display_name'], WEBSITE_TITLE, $results_array['username'], $new_pass); 
77
				$mail_message = str_replace($search, $replace, $MESSAGE['SIGNUP2']['BODY_LOGIN_INFO']);
77
				$mail_message = str_replace($search, $replace, $MESSAGE['SIGNUP2']['BODY_LOGIN_FORGOT']);
78 78

  
79 79
				// Try sending the email
80 80
				if($wb->mail(SERVER_EMAIL,$mail_to,$mail_subject,$mail_message)) { 
branches/2.8.x/wb/framework/class.login.php
32 32
class login extends admin {
33 33
	function login($config_array) {
34 34
		// Get language vars
35
		global $MESSAGE;
35
		global $MESSAGE, $database;
36 36
		$this->wb();
37 37
		// Get configuration values
38 38
		$this->USERS_TABLE = $config_array['USERS_TABLE'];
......
61 61
			$username_fieldname = 'username';
62 62
			$password_fieldname = 'password';
63 63
		}
64
		$this->username = htmlspecialchars (strtolower($this->get_post($username_fieldname)), ENT_QUOTES);
64 65

  
65
		$this->username = htmlspecialchars (strtolower($this->get_post($username_fieldname)), ENT_QUOTES);
66 66
		$this->password = $this->get_post($password_fieldname);
67 67
		// Figure out if the "remember me" option has been checked
68 68
		if($this->get_post('remember') == 'true') {
......
90 90
		} elseif($this->is_remembered() == true) {
91 91
			// User has been "remembered"
92 92
			// Get the users password
93
			$database = new database();
93
			// $database = new database();
94 94
			$query_details = $database->query("SELECT * FROM ".$this->USERS_TABLE." WHERE user_id = '".$this->get_safe_remember_key()."' LIMIT 1");
95 95
			$fetch_details = $query_details->fetchRow();
96 96
			$this->username = $fetch_details['username'];
......
142 142
	
143 143
	// Authenticate the user (check if they exist in the database)
144 144
	function authenticate() {
145
		global $database;
145 146
		// Get user information
146
		$database = new database();
147
		$query = 'SELECT * FROM `'.$this->USERS_TABLE.'` WHERE MD5(`username`) = "'.md5($this->username).'" AND `password` = "'.$this->password.'" AND `active` = 1';
147
		// $database = new database();
148
		// $query = 'SELECT * FROM `'.$this->USERS_TABLE.'` WHERE MD5(`username`) = "'.md5($this->username).'" AND `password` = "'.$this->password.'" AND `active` = 1';
149
 		$loginname = ( preg_match('/[\;\=\&\|\<\> ]/',$this->username) ? '' : $this->username );
150
		$query = 'SELECT * FROM `'.$this->USERS_TABLE.'` WHERE `username` = "'.$loginname.'" AND `password` = "'.$this->password.'" AND `active` = 1';
148 151
		$results = $database->query($query);
149 152
		$results_array = $results->fetchRow();
150 153
		$num_rows = $results->numRows();
......
246 249
	
247 250
	// Function to set a "remembering" cookie for the user
248 251
	function remember($user_id) {
252
		global $database;
249 253
		$remember_key = '';
250 254
		// Generate user id to append to the remember key
251 255
		$length = 11-strlen($user_id);
......
267 271
		}
268 272
		$remember_key = $remember_key;
269 273
		// Update the remember key in the db
270
		$database = new database();
274
		// $database = new database();
271 275
		$database->query("UPDATE ".$this->USERS_TABLE." SET remember_key = '$remember_key' WHERE user_id = '$user_id' LIMIT 1");
272 276
		if($database->is_error()) {
273 277
			return false;
......
287 291
	
288 292
	// Function to check if a user has been remembered
289 293
	function is_remembered() {
294
		global $database;
290 295
		if(isset($_COOKIE['REMEMBER_KEY']) AND $_COOKIE['REMEMBER_KEY'] != '') {
291 296
			// Check if the remember key is correct
292
			$database = new database();
297
			// $database = new database();
293 298
			$sql = "SELECT `user_id` FROM `" . $this->USERS_TABLE . "` WHERE `remember_key` = '";
294 299
			$sql .= $this->get_safe_remember_key() . "' LIMIT 1";
295 300
			$check_query = $database->query($sql);
branches/2.8.x/wb/languages/FI.php
450 450

  
451 451
$MESSAGE['SIGNUP_NO_EMAIL'] = 'Anna s&auml;hk&ouml;postiosoite';
452 452
$MESSAGE['SIGNUP2_SUBJECT_LOGIN_INFO'] = 'Your login details...';
453
$MESSAGE['SIGNUP2_BODY_LOGIN_INFO'] = <<< EOT
454
 Hello {LOGIN_DISPLAY_NAME},
453
$MESSAGE['SIGNUP2_BODY_LOGIN_INFO'] = "
454
Hello {LOGIN_DISPLAY_NAME},
455 455

  
456
 You are welcome to our {LOGIN_WEBSITE_TITLE}.
456
Welcome to our '{LOGIN_WEBSITE_TITLE}'.
457 457

  
458
 Your '{LOGIN_WEBSITE_TITLE}' login details are:
459
 Username: {LOGIN_NAME}
460
 Password: {LOGIN_PASSWORD}
458
Your '{LOGIN_WEBSITE_TITLE}' login details are:
459
Username: {LOGIN_NAME}
460
Password: {LOGIN_PASSWORD}
461 461

  
462
 If you have received this message in error, please delete it immediately.
463
EOT;
462
Regards
464 463

  
465
$MESSAGE['SIGNUP2_BODY_LOGIN_FORGOT'] = <<< EOT
464
Please:
465
if you have received this message by an error, please delete it immediately!
466
-------------------------------------
467
This message was automatic generated!
468
";
469

  
470
$MESSAGE['SIGNUP2_BODY_LOGIN_FORGOT'] = "
466 471
Hello {LOGIN_DISPLAY_NAME},
467 472

  
468
Your '{LOGIN_WEBSITE_TITLE}' login details are:
473
This mail was sent because the 'forgot password' function has been applied to your account.
474

  
475
Your new '{LOGIN_WEBSITE_TITLE}' login details are:
476

  
469 477
Username: {LOGIN_NAME}
470 478
Password: {LOGIN_PASSWORD}
471 479

  
472
Your password has been set to the one above.
473
This means that your old password will no longer work.
480
Your password has been reset to the one above.
481
This means that your old password will no longer work anymore!
482
If you've got any questions or problems within the new login-data
483
you should contact the website-team or the admin of '{LOGIN_WEBSITE_TITLE}'.
484
Please remember to clean you browser-cache before using the new one to avoid unexpected fails.
474 485

  
475
If you have received this message in error, please delete it immediately.
476
EOT;
486
Regards
487
------------------------------------
488
This message was automatic generated
477 489

  
490
";
491

  
478 492
$MESSAGE['FORGOT_PASS_NO_DATA'] = 'Anna s&auml;hk&ouml;postiosoite';
479 493
$MESSAGE['FORGOT_PASS_EMAIL_NOT_FOUND'] = 'Virheellinen s&auml;hk&ouml;postiosoite';
480 494
$MESSAGE['FORGOT_PASS_CANNOT_EMAIL'] = 'Salasanan postitus ei onnistu, ota yhteytt&auml; p&auml;&auml;k&auml;ytt&auml;j&auml;&auml;n';
branches/2.8.x/wb/languages/EN.php
450 450

  
451 451
$MESSAGE['SIGNUP_NO_EMAIL'] = 'You must enter an email address';
452 452
$MESSAGE['SIGNUP2_SUBJECT_LOGIN_INFO'] = 'Your login details...';
453
$MESSAGE['SIGNUP2_BODY_LOGIN_INFO'] = <<< EOT
454
 Hello {LOGIN_DISPLAY_NAME},
453
$MESSAGE['SIGNUP2_BODY_LOGIN_INFO'] = "
454
Hello {LOGIN_DISPLAY_NAME},
455 455

  
456
 You are welcome to our {LOGIN_WEBSITE_TITLE}.
456
Welcome to our '{LOGIN_WEBSITE_TITLE}'.
457 457

  
458
 Your '{LOGIN_WEBSITE_TITLE}' login details are:
459
 Username: {LOGIN_NAME}
460
 Password: {LOGIN_PASSWORD}
458
Your '{LOGIN_WEBSITE_TITLE}' login details are:
459
Username: {LOGIN_NAME}
460
Password: {LOGIN_PASSWORD}
461 461

  
462
 If you have received this message in error, please delete it immediately.
463
EOT;
462
Regards
464 463

  
465
 $MESSAGE['SIGNUP2_BODY_LOGIN_FORGOT'] = <<< EOT
464
Please:
465
if you have received this message by an error, please delete it immediately!
466
-------------------------------------
467
This message was automatic generated!
468
";
469

  
470
$MESSAGE['SIGNUP2_BODY_LOGIN_FORGOT'] = "
466 471
Hello {LOGIN_DISPLAY_NAME},
467 472

  
468
Your '{LOGIN_WEBSITE_TITLE}' login details are:
473
This mail was sent because the 'forgot password' function has been applied to your account.
474

  
475
Your new '{LOGIN_WEBSITE_TITLE}' login details are:
476

  
469 477
Username: {LOGIN_NAME}
470 478
Password: {LOGIN_PASSWORD}
471 479

  
472
Your password has been set to the one above.
473
This means that your old password will no longer work.
480
Your password has been reset to the one above.
481
This means that your old password will no longer work anymore!
482
If you've got any questions or problems within the new login-data
483
you should contact the website-team or the admin of '{LOGIN_WEBSITE_TITLE}'.
484
Please remember to clean you browser-cache before using the new one to avoid unexpected fails.
474 485

  
475
If you have received this message in error, please delete it immediately.
476
EOT;
486
Regards
487
------------------------------------
488
This message was automatic generated
477 489

  
490
";
491

  
478 492
$MESSAGE['FORGOT_PASS_NO_DATA'] = 'Please enter your email address below';
479 493
$MESSAGE['FORGOT_PASS_EMAIL_NOT_FOUND'] = 'The email that you entered cannot be found in the database';
480 494
$MESSAGE['FORGOT_PASS_CANNOT_EMAIL'] = 'Unable to email password, please contact system administrator';
......
623 637
$MESSAGE['SIGNUP']['NO_EMAIL']  = $MESSAGE['SIGNUP_NO_EMAIL'] ;
624 638
$MESSAGE['SIGNUP2']['SUBJECT_LOGIN_INFO']  = $MESSAGE['SIGNUP2_SUBJECT_LOGIN_INFO'] ;
625 639
$MESSAGE['SIGNUP2']['BODY_LOGIN_INFO']  = $MESSAGE['SIGNUP2_BODY_LOGIN_INFO'] ;
626
 $MESSAGE['SIGNUP2']['BODY_LOGIN_FORGOT']  =  $MESSAGE['SIGNUP2_BODY_LOGIN_FORGOT'] ;
640
$MESSAGE['SIGNUP2']['BODY_LOGIN_FORGOT']  = $MESSAGE['SIGNUP2_BODY_LOGIN_FORGOT'] ;
627 641
$MESSAGE['FORGOT_PASS']['NO_DATA']  = $MESSAGE['FORGOT_PASS_NO_DATA'] ;
628 642
$MESSAGE['FORGOT_PASS']['EMAIL_NOT_FOUND']  = $MESSAGE['FORGOT_PASS_EMAIL_NOT_FOUND'] ;
629 643
$MESSAGE['FORGOT_PASS']['CANNOT_EMAIL']  = $MESSAGE['FORGOT_PASS_CANNOT_EMAIL'] ;
branches/2.8.x/wb/languages/CS.php
451 451
$MESSAGE['SIGNUP_NO_EMAIL'] = 'Mus&iacute;te zadat e-mailovou adresu';
452 452
$MESSAGE['SIGNUP2_SUBJECT_LOGIN_INFO'] = 'Your login details...';
453 453
$MESSAGE['SIGNUP2_BODY_LOGIN_INFO'] = "
454
 Hello {LOGIN_DISPLAY_NAME},
454
Hello {LOGIN_DISPLAY_NAME},
455 455

  
456
 You are welcome to our {LOGIN_WEBSITE_TITLE}.
456
Welcome to our '{LOGIN_WEBSITE_TITLE}'.
457 457

  
458
 Your '{LOGIN_WEBSITE_TITLE}' login details are:
459
 Username: {LOGIN_NAME}
460
 Password: {LOGIN_PASSWORD}
458
Your '{LOGIN_WEBSITE_TITLE}' login details are:
459
Username: {LOGIN_NAME}
460
Password: {LOGIN_PASSWORD}
461 461

  
462
 If you have received this message in error, please delete it immediately.
462
Regards
463

  
464
Please:
465
if you have received this message by an error, please delete it immediately!
466
-------------------------------------
467
This message was automatic generated!
463 468
";
464 469

  
465 470
$MESSAGE['SIGNUP2_BODY_LOGIN_FORGOT'] = "
466 471
Hello {LOGIN_DISPLAY_NAME},
467 472

  
468
Your '{LOGIN_WEBSITE_TITLE}' login details are:
473
This mail was sent because the 'forgot password' function has been applied to your account.
474

  
475
Your new '{LOGIN_WEBSITE_TITLE}' login details are:
476

  
469 477
Username: {LOGIN_NAME}
470 478
Password: {LOGIN_PASSWORD}
471 479

  
472
Your password has been set to the one above.
473
This means that your old password will no longer work.
480
Your password has been reset to the one above.
481
This means that your old password will no longer work anymore!
482
If you've got any questions or problems within the new login-data
483
you should contact the website-team or the admin of '{LOGIN_WEBSITE_TITLE}'.
484
Please remember to clean you browser-cache before using the new one to avoid unexpected fails.
474 485

  
475
If you have received this message in error, please delete it immediately.
486
Regards
487
------------------------------------
488
This message was automatic generated
489

  
476 490
";
477 491

  
478 492
$MESSAGE['FORGOT_PASS_NO_DATA'] = 'Zadejte svoji e-mailovou adresu:';
branches/2.8.x/wb/languages/SE.php
450 450

  
451 451
$MESSAGE['SIGNUP_NO_EMAIL'] = 'Du m&aring;ste skriva en e-postadress';
452 452
$MESSAGE['SIGNUP2_SUBJECT_LOGIN_INFO'] = 'Your login details...';
453
$MESSAGE['SIGNUP2_BODY_LOGIN_INFO'] = <<< EOT
454
 Hello {LOGIN_DISPLAY_NAME},
453
$MESSAGE['SIGNUP2_BODY_LOGIN_INFO'] = "
454
Hello {LOGIN_DISPLAY_NAME},
455 455

  
456
 You are welcome to our {LOGIN_WEBSITE_TITLE}.
456
Welcome to our '{LOGIN_WEBSITE_TITLE}'.
457 457

  
458
 Your '{LOGIN_WEBSITE_TITLE}' login details are:
459
 Username: {LOGIN_NAME}
460
 Password: {LOGIN_PASSWORD}
458
Your '{LOGIN_WEBSITE_TITLE}' login details are:
459
Username: {LOGIN_NAME}
460
Password: {LOGIN_PASSWORD}
461 461

  
462
 If you have received this message in error, please delete it immediately.
463
EOT;
462
Regards
464 463

  
465
$MESSAGE['SIGNUP2_BODY_LOGIN_FORGOT'] = <<< EOT
464
Please:
465
if you have received this message by an error, please delete it immediately!
466
-------------------------------------
467
This message was automatic generated!
468
";
469

  
470
$MESSAGE['SIGNUP2_BODY_LOGIN_FORGOT'] = "
466 471
Hello {LOGIN_DISPLAY_NAME},
467 472

  
468
Your '{LOGIN_WEBSITE_TITLE}' login details are:
473
This mail was sent because the 'forgot password' function has been applied to your account.
474

  
475
Your new '{LOGIN_WEBSITE_TITLE}' login details are:
476

  
469 477
Username: {LOGIN_NAME}
470 478
Password: {LOGIN_PASSWORD}
471 479

  
472
Your password has been set to the one above.
473
This means that your old password will no longer work.
480
Your password has been reset to the one above.
481
This means that your old password will no longer work anymore!
482
If you've got any questions or problems within the new login-data
483
you should contact the website-team or the admin of '{LOGIN_WEBSITE_TITLE}'.
484
Please remember to clean you browser-cache before using the new one to avoid unexpected fails.
474 485

  
475
If you have received this message in error, please delete it immediately.
476
EOT;
486
Regards
487
------------------------------------
488
This message was automatic generated
477 489

  
490
";
491

  
478 492
$MESSAGE['FORGOT_PASS_NO_DATA'] = 'Skriv din e-postadress';
479 493
$MESSAGE['FORGOT_PASS_EMAIL_NOT_FOUND'] = 'E-postadressen som du skrev in kan inte hittas i v&aring;r databas';
480 494
$MESSAGE['FORGOT_PASS_CANNOT_EMAIL'] = 'Kunde inte skicka l&ouml;senordet, v&auml;nligen kontakta administratat&ouml;ren';
branches/2.8.x/wb/languages/ES.php
450 450

  
451 451
$MESSAGE['SIGNUP_NO_EMAIL'] = 'Debe ingresar una direccion de email';
452 452
$MESSAGE['SIGNUP2_SUBJECT_LOGIN_INFO'] = 'Your login details...';
453
$MESSAGE['SIGNUP2_BODY_LOGIN_INFO'] = <<< EOT
454
 Hello {LOGIN_DISPLAY_NAME},
453
$MESSAGE['SIGNUP2_BODY_LOGIN_INFO'] = "
454
Hello {LOGIN_DISPLAY_NAME},
455 455

  
456
 You are welcome to our {LOGIN_WEBSITE_TITLE}.
456
Welcome to our '{LOGIN_WEBSITE_TITLE}'.
457 457

  
458
 Your '{LOGIN_WEBSITE_TITLE}' login details are:
459
 Username: {LOGIN_NAME}
460
 Password: {LOGIN_PASSWORD}
458
Your '{LOGIN_WEBSITE_TITLE}' login details are:
459
Username: {LOGIN_NAME}
460
Password: {LOGIN_PASSWORD}
461 461

  
462
 If you have received this message in error, please delete it immediately.
463
EOT;
462
Regards
464 463

  
465
$MESSAGE['SIGNUP2_BODY_LOGIN_FORGOT'] = <<< EOT
464
Please:
465
if you have received this message by an error, please delete it immediately!
466
-------------------------------------
467
This message was automatic generated!
468
";
469

  
470
$MESSAGE['SIGNUP2_BODY_LOGIN_FORGOT'] = "
466 471
Hello {LOGIN_DISPLAY_NAME},
467 472

  
468
Your '{LOGIN_WEBSITE_TITLE}' login details are:
473
This mail was sent because the 'forgot password' function has been applied to your account.
474

  
475
Your new '{LOGIN_WEBSITE_TITLE}' login details are:
476

  
469 477
Username: {LOGIN_NAME}
470 478
Password: {LOGIN_PASSWORD}
471 479

  
472
Your password has been set to the one above.
473
This means that your old password will no longer work.
480
Your password has been reset to the one above.
481
This means that your old password will no longer work anymore!
482
If you've got any questions or problems within the new login-data
483
you should contact the website-team or the admin of '{LOGIN_WEBSITE_TITLE}'.
484
Please remember to clean you browser-cache before using the new one to avoid unexpected fails.
474 485

  
475
If you have received this message in error, please delete it immediately.
476
EOT;
486
Regards
487
------------------------------------
488
This message was automatic generated
477 489

  
490
";
491

  
478 492
$MESSAGE['FORGOT_PASS_NO_DATA'] = 'Por favor ingrese su direccion de email';
479 493
$MESSAGE['FORGOT_PASS_EMAIL_NOT_FOUND'] = 'Email no encontrado en base de datos';
480 494
$MESSAGE['FORGOT_PASS_CANNOT_EMAIL'] = 'No puedo enviarle la contrase&ntilde;a, contacte a su Administrador';
branches/2.8.x/wb/languages/FR.php
450 450

  
451 451
$MESSAGE['SIGNUP_NO_EMAIL'] = 'L&apos;adresse email est obligatoire';
452 452
$MESSAGE['SIGNUP2_SUBJECT_LOGIN_INFO'] = 'Param&egrave;tres de votre connexion ...';
453
$MESSAGE['SIGNUP2_BODY_LOGIN_INFO'] = <<< EOT
454
 Hello {LOGIN_DISPLAY_NAME},
453
$MESSAGE['SIGNUP2_BODY_LOGIN_INFO'] = "
454
Hello {LOGIN_DISPLAY_NAME},
455 455

  
456
 You are welcome to our {LOGIN_WEBSITE_TITLE}.
456
Welcome to our '{LOGIN_WEBSITE_TITLE}'.
457 457

  
458
 Your '{LOGIN_WEBSITE_TITLE}' login details are:
459
 Username: {LOGIN_NAME}
460
 Password: {LOGIN_PASSWORD}
458
Your '{LOGIN_WEBSITE_TITLE}' login details are:
459
Username: {LOGIN_NAME}
460
Password: {LOGIN_PASSWORD}
461 461

  
462
 If you have received this message in error, please delete it immediately.
463
EOT;
462
Regards
464 463

  
465
$MESSAGE['SIGNUP2_BODY_LOGIN_FORGOT'] = <<< EOT
466
Bonjour, {LOGIN_DISPLAY_NAME},
464
Please:
465
if you have received this message by an error, please delete it immediately!
466
-------------------------------------
467
This message was automatic generated!
468
";
467 469

  
468
Les param&egrave;tres de connexion au site web '{LOGIN_WEBSITE_TITLE}' sont :
469
identifiant : {LOGIN_NAME}
470
mot de passe : {LOGIN_PASSWORD}
470
$MESSAGE['SIGNUP2_BODY_LOGIN_FORGOT'] = "
471
Hello {LOGIN_DISPLAY_NAME},
471 472

  
472
Votre mot de passe a &eacute;t&eacute; modifi&eacute; avec la valeur ci-dessus.
473
Par cons&eacute;quent, votre ancien mot de passe n&apos;est plus valide.
473
This mail was sent because the 'forgot password' function has been applied to your account.
474 474

  
475
Si vous avez re&ccdil;u ce message par erreur, merci de le supprimer imm&eacute;diatement.
476
EOT;
475
Your new '{LOGIN_WEBSITE_TITLE}' login details are:
477 476

  
477
Username: {LOGIN_NAME}
478
Password: {LOGIN_PASSWORD}
479

  
480
Your password has been reset to the one above.
481
This means that your old password will no longer work anymore!
482
If you've got any questions or problems within the new login-data
483
you should contact the website-team or the admin of '{LOGIN_WEBSITE_TITLE}'.
484
Please remember to clean you browser-cache before using the new one to avoid unexpected fails.
485

  
486
Regards
487
------------------------------------
488
This message was automatic generated
489

  
490
";
491

  
478 492
$MESSAGE['FORGOT_PASS_NO_DATA'] = 'Merci de saisir votre adresse email';
479 493
$MESSAGE['FORGOT_PASS_EMAIL_NOT_FOUND'] = 'L&apos;adresse email que vous avez saisi est introuvable dans la base de donn&eacute;es';
480 494
$MESSAGE['FORGOT_PASS_CANNOT_EMAIL'] = 'Impossible de vous renvoyer vos identifiants, merci de contacter l&apos;administrateur du site';
branches/2.8.x/wb/languages/ET.php
450 450

  
451 451
$MESSAGE['SIGNUP_NO_EMAIL'] = 'Sa pead sisestama emaili aadressi';
452 452
$MESSAGE['SIGNUP2_SUBJECT_LOGIN_INFO'] = 'Your login details...';
453
$MESSAGE['SIGNUP2_BODY_LOGIN_INFO'] = <<< EOT
454
 Hello {LOGIN_DISPLAY_NAME},
453
$MESSAGE['SIGNUP2_BODY_LOGIN_INFO'] = "
454
Hello {LOGIN_DISPLAY_NAME},
455 455

  
456
 You are welcome to our {LOGIN_WEBSITE_TITLE}.
456
Welcome to our '{LOGIN_WEBSITE_TITLE}'.
457 457

  
458
 Your '{LOGIN_WEBSITE_TITLE}' login details are:
459
 Username: {LOGIN_NAME}
460
 Password: {LOGIN_PASSWORD}
458
Your '{LOGIN_WEBSITE_TITLE}' login details are:
459
Username: {LOGIN_NAME}
460
Password: {LOGIN_PASSWORD}
461 461

  
462
 If you have received this message in error, please delete it immediately.
463
EOT;
462
Regards
464 463

  
465
$MESSAGE['SIGNUP2_BODY_LOGIN_FORGOT'] = <<< EOT
464
Please:
465
if you have received this message by an error, please delete it immediately!
466
-------------------------------------
467
This message was automatic generated!
468
";
469

  
470
$MESSAGE['SIGNUP2_BODY_LOGIN_FORGOT'] = "
466 471
Hello {LOGIN_DISPLAY_NAME},
467 472

  
468
Your '{LOGIN_WEBSITE_TITLE}' login details are:
473
This mail was sent because the 'forgot password' function has been applied to your account.
474

  
475
Your new '{LOGIN_WEBSITE_TITLE}' login details are:
476

  
469 477
Username: {LOGIN_NAME}
470 478
Password: {LOGIN_PASSWORD}
471 479

  
472
Your password has been set to the one above.
473
This means that your old password will no longer work.
480
Your password has been reset to the one above.
481
This means that your old password will no longer work anymore!
482
If you've got any questions or problems within the new login-data
483
you should contact the website-team or the admin of '{LOGIN_WEBSITE_TITLE}'.
484
Please remember to clean you browser-cache before using the new one to avoid unexpected fails.
474 485

  
475
If you have received this message in error, please delete it immediately.
476
EOT;
486
Regards
487
------------------------------------
488
This message was automatic generated
477 489

  
490
";
491

  
478 492
$MESSAGE['FORGOT_PASS_NO_DATA'] = 'Palun sisesta oma emaili aadress allapoole';
479 493
$MESSAGE['FORGOT_PASS_EMAIL_NOT_FOUND'] = 'Sisestatud emaili eileitud andmebaasist';
480 494
$MESSAGE['FORGOT_PASS_CANNOT_EMAIL'] = 'V&otilde;imetu emailima parooli, palun kontakteeru s&uuml;steemi administraatoriga';
branches/2.8.x/wb/languages/HR.php
451 451
$MESSAGE['SIGNUP_NO_EMAIL'] = 'Unesite email adresu';
452 452
$MESSAGE['SIGNUP2_SUBJECT_LOGIN_INFO'] = 'Your login details...';
453 453
$MESSAGE['SIGNUP2_BODY_LOGIN_INFO'] = "
454
 Hello {LOGIN_DISPLAY_NAME},
454
Hello {LOGIN_DISPLAY_NAME},
455 455

  
456
 You are welcome to our {LOGIN_WEBSITE_TITLE}.
456
Welcome to our '{LOGIN_WEBSITE_TITLE}'.
457 457

  
458
 Your '{LOGIN_WEBSITE_TITLE}' login details are:
459
 Username: {LOGIN_NAME}
460
 Password: {LOGIN_PASSWORD}
458
Your '{LOGIN_WEBSITE_TITLE}' login details are:
459
Username: {LOGIN_NAME}
460
Password: {LOGIN_PASSWORD}
461 461

  
462
 If you have received this message in error, please delete it immediately.
463
 ";
462
Regards
464 463

  
464
Please:
465
if you have received this message by an error, please delete it immediately!
466
-------------------------------------
467
This message was automatic generated!
468
";
469

  
465 470
$MESSAGE['SIGNUP2_BODY_LOGIN_FORGOT'] = "
466 471
Hello {LOGIN_DISPLAY_NAME},
467 472

  
468
Your '{LOGIN_WEBSITE_TITLE}' login details are:
473
This mail was sent because the 'forgot password' function has been applied to your account.
474

  
475
Your new '{LOGIN_WEBSITE_TITLE}' login details are:
476

  
469 477
Username: {LOGIN_NAME}
470 478
Password: {LOGIN_PASSWORD}
471 479

  
472
Your password has been set to the one above.
473
This means that your old password will no longer work.
480
Your password has been reset to the one above.
481
This means that your old password will no longer work anymore!
482
If you've got any questions or problems within the new login-data
483
you should contact the website-team or the admin of '{LOGIN_WEBSITE_TITLE}'.
484
Please remember to clean you browser-cache before using the new one to avoid unexpected fails.
474 485

  
475
If you have received this message in error, please delete it immediately.
486
Regards
487
------------------------------------
488
This message was automatic generated
489

  
476 490
";
477 491

  
478 492
$MESSAGE['FORGOT_PASS_NO_DATA'] = 'Unesite svoju email adresu ispod';
branches/2.8.x/wb/languages/NL.php
449 449

  
450 450
$MESSAGE['SIGNUP_NO_EMAIL'] = 'U moet een e-mailadres invullen';
451 451
$MESSAGE['SIGNUP2_SUBJECT_LOGIN_INFO'] = 'Uw login-gegevens...';
452
$MESSAGE['SIGNUP2_BODY_LOGIN_INFO'] = <<< EOT
453
 Hello {LOGIN_DISPLAY_NAME},
452
$MESSAGE['SIGNUP2_BODY_LOGIN_INFO'] = "
453
Hello {LOGIN_DISPLAY_NAME},
454 454

  
455
 You are welcome to our {LOGIN_WEBSITE_TITLE}.
455
Welcome to our '{LOGIN_WEBSITE_TITLE}'.
456 456

  
457
 Your '{LOGIN_WEBSITE_TITLE}' login details are:
458
 Username: {LOGIN_NAME}
459
 Password: {LOGIN_PASSWORD}
457
Your '{LOGIN_WEBSITE_TITLE}' login details are:
458
Username: {LOGIN_NAME}
459
Password: {LOGIN_PASSWORD}
460 460

  
461
 If you have received this message in error, please delete it immediately.
462
EOT;
461
Regards
463 462

  
464
$MESSAGE['SIGNUP2_BODY_LOGIN_FORGOT'] = <<< EOT
465
Hallo {LOGIN_DISPLAY_NAME},
463
Please:
464
if you have received this message by an error, please delete it immediately!
465
-------------------------------------
466
This message was automatic generated!
467
";
466 468

  
467
Uw '{LOGIN_WEBSITE_TITLE}' inloggegevens zijn:
468
Gebruikersnaam: {LOGIN_NAME}
469
Wachtwoord: {LOGIN_PASSWORD}
469
$MESSAGE['SIGNUP2_BODY_LOGIN_FORGOT'] = "
470
Hello {LOGIN_DISPLAY_NAME},
470 471

  
471
Uw wachtwoord is ingesteld en zichtbaar hierboven. 
472
Dit betekent dat uw oude wachtwoord niet meer werkt. 
472
This mail was sent because the 'forgot password' function has been applied to your account.
473 473

  
474
Indien deze melding niet voor u bestemd is, verwijder deze dan onmiddellijk.
475
EOT;
474
Your new '{LOGIN_WEBSITE_TITLE}' login details are:
476 475

  
476
Username: {LOGIN_NAME}
477
Password: {LOGIN_PASSWORD}
478

  
479
Your password has been reset to the one above.
480
This means that your old password will no longer work anymore!
481
If you've got any questions or problems within the new login-data
482
you should contact the website-team or the admin of '{LOGIN_WEBSITE_TITLE}'.
483
Please remember to clean you browser-cache before using the new one to avoid unexpected fails.
484

  
485
Regards
486
------------------------------------
487
This message was automatic generated
488

  
489
";
490

  
477 491
$MESSAGE['FORGOT_PASS_NO_DATA'] = 'Vult u alstublieft uw e-mailadres hieronder in';
478 492
$MESSAGE['FORGOT_PASS_EMAIL_NOT_FOUND'] = 'Het door u opgegeven e-mailadres is niet gevonden in onze database';
479 493
$MESSAGE['FORGOT_PASS_CANNOT_EMAIL'] = 'Het is niet mogelijk uw wachtwoord per e-mail te versturen. Neem contact op met de beheerder';
branches/2.8.x/wb/languages/PL.php
450 450

  
451 451
$MESSAGE['SIGNUP_NO_EMAIL'] = 'Nale&#380;y wprowadzi&#263; adres e-mail';
452 452
$MESSAGE['SIGNUP2_SUBJECT_LOGIN_INFO'] = 'Your login details...';
453
$MESSAGE['SIGNUP2_BODY_LOGIN_INFO'] = <<< EOT
454
 Hello {LOGIN_DISPLAY_NAME},
453
$MESSAGE['SIGNUP2_BODY_LOGIN_INFO'] = "
454
Hello {LOGIN_DISPLAY_NAME},
455 455

  
456
 You are welcome to our {LOGIN_WEBSITE_TITLE}.
456
Welcome to our '{LOGIN_WEBSITE_TITLE}'.
457 457

  
458
 Your '{LOGIN_WEBSITE_TITLE}' login details are:
459
 Username: {LOGIN_NAME}
460
 Password: {LOGIN_PASSWORD}
458
Your '{LOGIN_WEBSITE_TITLE}' login details are:
459
Username: {LOGIN_NAME}
460
Password: {LOGIN_PASSWORD}
461 461

  
462
 If you have received this message in error, please delete it immediately.
463
EOT;
462
Regards
464 463

  
465
$MESSAGE['SIGNUP2_BODY_LOGIN_FORGOT'] = <<< EOT
464
Please:
465
if you have received this message by an error, please delete it immediately!
466
-------------------------------------
467
This message was automatic generated!
468
";
469

  
470
$MESSAGE['SIGNUP2_BODY_LOGIN_FORGOT'] = "
466 471
Hello {LOGIN_DISPLAY_NAME},
467 472

  
468
Your '{LOGIN_WEBSITE_TITLE}' login details are:
473
This mail was sent because the 'forgot password' function has been applied to your account.
474

  
475
Your new '{LOGIN_WEBSITE_TITLE}' login details are:
476

  
469 477
Username: {LOGIN_NAME}
470 478
Password: {LOGIN_PASSWORD}
471 479

  
472
Your password has been set to the one above.
473
This means that your old password will no longer work.
480
Your password has been reset to the one above.
481
This means that your old password will no longer work anymore!
482
If you've got any questions or problems within the new login-data
483
you should contact the website-team or the admin of '{LOGIN_WEBSITE_TITLE}'.
484
Please remember to clean you browser-cache before using the new one to avoid unexpected fails.
474 485

  
475
If you have received this message in error, please delete it immediately.
476
EOT;
486
Regards
487
------------------------------------
488
This message was automatic generated
477 489

  
490
";
491

  
478 492
$MESSAGE['FORGOT_PASS_NO_DATA'] = 'Prosz&#281; wprowadzi&#263; poni&#380;ej sw&oacute;j adres e-mail';
479 493
$MESSAGE['FORGOT_PASS_EMAIL_NOT_FOUND'] = 'Wprowadzonego adresu e-mail nie ma w bazie danych';
480 494
$MESSAGE['FORGOT_PASS_CANNOT_EMAIL'] = 'Nie uda&#322;o si&#281; wys&#322;a&#263; has&#322;a, prosz&#281; si&#281; skontaktowa&#263; z administratorem';
branches/2.8.x/wb/languages/HU.php
452 452

  
453 453
$MESSAGE['SIGNUP_NO_EMAIL'] = 'E-mail címet meg kell adnia';
454 454
$MESSAGE['SIGNUP2_SUBJECT_LOGIN_INFO'] = 'Bejelentkezési részletek...';
455
$MESSAGE['SIGNUP2_BODY_LOGIN_INFO'] = <<< EOT
456
 Hello {LOGIN_DISPLAY_NAME},
455
$MESSAGE['SIGNUP2_BODY_LOGIN_INFO'] = "
456
Hello {LOGIN_DISPLAY_NAME},
457 457

  
458
 You are welcome to our {LOGIN_WEBSITE_TITLE}.
458
Welcome to our '{LOGIN_WEBSITE_TITLE}'.
459 459

  
460
 Your '{LOGIN_WEBSITE_TITLE}' login details are:
461
 Username: {LOGIN_NAME}
462
 Password: {LOGIN_PASSWORD}
460
Your '{LOGIN_WEBSITE_TITLE}' login details are:
461
Username: {LOGIN_NAME}
462
Password: {LOGIN_PASSWORD}
463 463

  
464
 If you have received this message in error, please delete it immediately.
465
EOT;
464
Regards
466 465

  
467
$MESSAGE['SIGNUP2_BODY_LOGIN_FORGOT'] = <<< EOT
468
¤vözöllek {LOGIN_DISPLAY_NAME},
466
Please:
467
if you have received this message by an error, please delete it immediately!
468
-------------------------------------
469
This message was automatic generated!
470
";
469 471

  
470
A te belépésed a(z) '{LOGIN_WEBSITE_TITLE}' oldalra az alábbiak:
471
Felhasználónév: {LOGIN_NAME}
472
Jelszó: {LOGIN_PASSWORD}
472
$MESSAGE['SIGNUP2_BODY_LOGIN_FORGOT'] = "
473
Hello {LOGIN_DISPLAY_NAME},
473 474

  
474
A jelszavadat elküldük az email címedre.
475
Ez azt jelenti, hogy a régi jelszavad már nem használható.
475
This mail was sent because the 'forgot password' function has been applied to your account.
476 476

  
477
Ha nem te kérted a jelszó változtatást, akkor kérlek töröld ezt az emailt.
478
EOT;
477
Your new '{LOGIN_WEBSITE_TITLE}' login details are:
479 478

  
479
Username: {LOGIN_NAME}
480
Password: {LOGIN_PASSWORD}
481

  
482
Your password has been reset to the one above.
483
This means that your old password will no longer work anymore!
484
If you've got any questions or problems within the new login-data
485
you should contact the website-team or the admin of '{LOGIN_WEBSITE_TITLE}'.
486
Please remember to clean you browser-cache before using the new one to avoid unexpected fails.
487

  
488
Regards
489
------------------------------------
490
This message was automatic generated
491

  
492
";
493

  
480 494
$MESSAGE['FORGOT_PASS_NO_DATA'] = 'Kérem írja be az E-mail címét';
481 495
$MESSAGE['FORGOT_PASS_EMAIL_NOT_FOUND'] = 'Az ® által megadott E-mail cím nem talalható adatbázisunkban';
482 496
$MESSAGE['FORGOT_PASS_CANNOT_EMAIL'] = 'Az E-mail küldés problémába ütközött, kérem vegye fel a kapcsolatot az adminisztrátorral';
branches/2.8.x/wb/languages/IT.php
449 449
$MESSAGE['LOGIN_AUTHENTICATION_FAILED'] = 'Username o password errati';
450 450

  
451 451
$MESSAGE['SIGNUP_NO_EMAIL'] = 'Deve inserire un indirizzo di email';
452
$MESSAGE['SIGNUP2_SUBJECT_LOGIN_INFO'] = 'Your login details...';
453
 $MESSAGE['SIGNUP2_BODY_LOGIN_INFO'] = <<< EOT
454
 Hello {LOGIN_DISPLAY_NAME},
452
$MESSAGE['SIGNUP2_BODY_LOGIN_INFO'] = "
453
Hello {LOGIN_DISPLAY_NAME},
455 454

  
456
 You are welcome to our {LOGIN_WEBSITE_TITLE}.
455
Welcome to our '{LOGIN_WEBSITE_TITLE}'.
457 456

  
458
 Your '{LOGIN_WEBSITE_TITLE}' login details are:
459
 Username: {LOGIN_NAME}
460
 Password: {LOGIN_PASSWORD}
457
Your '{LOGIN_WEBSITE_TITLE}' login details are:
458
Username: {LOGIN_NAME}
459
Password: {LOGIN_PASSWORD}
461 460

  
462
 If you have received this message in error, please delete it immediately.
463
EOT;
461
Regards
464 462

  
465
 $MESSAGE['SIGNUP2_BODY_LOGIN_FORGOT'] = <<< EOT
463
Please:
464
if you have received this message by an error, please delete it immediately!
465
-------------------------------------
466
This message was automatic generated!
467
";
468

  
469
$MESSAGE['SIGNUP2_BODY_LOGIN_FORGOT'] = "
466 470
Hello {LOGIN_DISPLAY_NAME},
467 471

  
468
Your '{LOGIN_WEBSITE_TITLE}' login details are:
472
This mail was sent because the 'forgot password' function has been applied to your account.
473

  
474
Your new '{LOGIN_WEBSITE_TITLE}' login details are:
475

  
469 476
Username: {LOGIN_NAME}
470 477
Password: {LOGIN_PASSWORD}
471 478

  
472
Your password has been set to the one above.
473
This means that your old password will no longer work.
479
Your password has been reset to the one above.
480
This means that your old password will no longer work anymore!
481
If you've got any questions or problems within the new login-data
482
you should contact the website-team or the admin of '{LOGIN_WEBSITE_TITLE}'.
483
Please remember to clean you browser-cache before using the new one to avoid unexpected fails.
474 484

  
475
If you have received this message in error, please delete it immediately.
476
EOT;
485
Regards
486
------------------------------------
487
This message was automatic generated
477 488

  
489
";
490

  
478 491
$MESSAGE['FORGOT_PASS_NO_DATA'] = 'Prego inserire email';
479 492
$MESSAGE['FORGOT_PASS_EMAIL_NOT_FOUND'] = 'L\'Email inserita non &egrave; stata trovata nel database';
480 493
$MESSAGE['FORGOT_PASS_CANNOT_EMAIL'] = 'Impossibile inviare l\'email. Contattare l\'ammnistratore';
......
621 634
$MESSAGE['LOGIN']['PASSWORD_TOO_LONG']  = $MESSAGE['LOGIN_PASSWORD_TOO_LONG'] ;
622 635
$MESSAGE['LOGIN']['AUTHENTICATION_FAILED']  = $MESSAGE['LOGIN_AUTHENTICATION_FAILED'] ;
623 636
$MESSAGE['SIGNUP']['NO_EMAIL']  = $MESSAGE['SIGNUP_NO_EMAIL'] ;
624
$MESSAGE['SIGNUP2']['SUBJECT_LOGIN_INFO']  = $MESSAGE['SIGNUP2_SUBJECT_LOGIN_INFO'] ;
625
 $MESSAGE['SIGNUP2']['BODY_LOGIN_INFO']  =  $MESSAGE['SIGNUP2_BODY_LOGIN_INFO'] ;
626
 $MESSAGE['SIGNUP2']['BODY_LOGIN_FORGOT']  =  $MESSAGE['SIGNUP2_BODY_LOGIN_FORGOT'] ;
637
$MESSAGE['SIGNUP2']['BODY_LOGIN_INFO']  = $MESSAGE['SIGNUP2_BODY_LOGIN_INFO'] ;
638
$MESSAGE['SIGNUP2']['BODY_LOGIN_FORGOT']  = $MESSAGE['SIGNUP2_BODY_LOGIN_FORGOT'] ;
627 639
$MESSAGE['FORGOT_PASS']['NO_DATA']  = $MESSAGE['FORGOT_PASS_NO_DATA'] ;
628 640
$MESSAGE['FORGOT_PASS']['EMAIL_NOT_FOUND']  = $MESSAGE['FORGOT_PASS_EMAIL_NOT_FOUND'] ;
629 641
$MESSAGE['FORGOT_PASS']['CANNOT_EMAIL']  = $MESSAGE['FORGOT_PASS_CANNOT_EMAIL'] ;
branches/2.8.x/wb/languages/NO.php
450 450

  
451 451
$MESSAGE['SIGNUP_NO_EMAIL'] = 'Du m&aring; skrive inn en e-post adresse';
452 452
$MESSAGE['SIGNUP2_SUBJECT_LOGIN_INFO'] = 'Dine p&aring;-loggings detaljer...';
453
$MESSAGE['SIGNUP2_BODY_LOGIN_INFO'] = <<< EOT
454
 Hello {LOGIN_DISPLAY_NAME},
453
$MESSAGE['SIGNUP2_BODY_LOGIN_INFO'] = "
454
Hello {LOGIN_DISPLAY_NAME},
455 455

  
456
 You are welcome to our {LOGIN_WEBSITE_TITLE}.
456
Welcome to our '{LOGIN_WEBSITE_TITLE}'.
457 457

  
458
 Your '{LOGIN_WEBSITE_TITLE}' login details are:
459
 Username: {LOGIN_NAME}
460
 Password: {LOGIN_PASSWORD}
458
Your '{LOGIN_WEBSITE_TITLE}' login details are:
459
Username: {LOGIN_NAME}
460
Password: {LOGIN_PASSWORD}
461 461

  
462
 If you have received this message in error, please delete it immediately.
463
EOT;
462
Regards
464 463

  
465
$MESSAGE['SIGNUP2_BODY_LOGIN_FORGOT'] = <<< EOT
466
Hei {LOGIN_DISPLAY_NAME},
464
Please:
465
if you have received this message by an error, please delete it immediately!
466
-------------------------------------
467
This message was automatic generated!
468
";
467 469

  
468
Dine p&aring;-loggings detaljer for '{LOGIN_WEBSITE_TITLE}' er:
469
Brukernavn: {LOGIN_NAME}
470
Passord: {LOGIN_PASSWORD}
470
$MESSAGE['SIGNUP2_BODY_LOGIN_FORGOT'] = "
471
Hello {LOGIN_DISPLAY_NAME},
471 472

  
472
Dit passord er sendt til e-postadressen over.
473
Dette betyr at ditt tidligere passord ikke er gyldig lenger.
473
This mail was sent because the 'forgot password' function has been applied to your account.
474 474

  
475
Hvis du har mottatt denne e-posten ved en feil, v&aelig;r vennlig &aring; slette den med en gang.
476
EOT;
475
Your new '{LOGIN_WEBSITE_TITLE}' login details are:
477 476

  
477
Username: {LOGIN_NAME}
478
Password: {LOGIN_PASSWORD}
479

  
480
Your password has been reset to the one above.
481
This means that your old password will no longer work anymore!
482
If you've got any questions or problems within the new login-data
483
you should contact the website-team or the admin of '{LOGIN_WEBSITE_TITLE}'.
484
Please remember to clean you browser-cache before using the new one to avoid unexpected fails.
485

  
486
Regards
487
------------------------------------
488
This message was automatic generated
489

  
490
";
491

  
478 492
$MESSAGE['FORGOT_PASS_NO_DATA'] = 'Vennligst skriv e-post adressen nedenfor';
479 493
$MESSAGE['FORGOT_PASS_EMAIL_NOT_FOUND'] = 'E-post adressen ble ikke funnet i databasen';
480 494
$MESSAGE['FORGOT_PASS_CANNOT_EMAIL'] = 'Kunne ikke sende passord. Kontakt system administrator';
branches/2.8.x/wb/languages/SK.php
450 450

  
451 451
$MESSAGE['SIGNUP_NO_EMAIL'] = 'Mus&iacute;te zada&#357; e-mailovou adresu';
452 452
$MESSAGE['SIGNUP2_SUBJECT_LOGIN_INFO'] = 'Vase prihlasovacie udaje...';
453
$MESSAGE['SIGNUP2_BODY_LOGIN_INFO'] = <<< EOT
454
 Hello {LOGIN_DISPLAY_NAME},
453
$MESSAGE['SIGNUP2_BODY_LOGIN_INFO'] = "
454
Hello {LOGIN_DISPLAY_NAME},
455 455

  
456
 You are welcome to our {LOGIN_WEBSITE_TITLE}.
456
Welcome to our '{LOGIN_WEBSITE_TITLE}'.
457 457

  
458
 Your '{LOGIN_WEBSITE_TITLE}' login details are:
459
 Username: {LOGIN_NAME}
460
 Password: {LOGIN_PASSWORD}
458
Your '{LOGIN_WEBSITE_TITLE}' login details are:
459
Username: {LOGIN_NAME}
460
Password: {LOGIN_PASSWORD}
461 461

  
462
 If you have received this message in error, please delete it immediately.
463
EOT;
462
Regards
464 463

  
465
$MESSAGE['SIGNUP2_BODY_LOGIN_FORGOT'] = <<< EOT
466
V&aacute;&#382;en&yacute;  {LOGIN_DISPLAY_NAME},
464
Please:
465
if you have received this message by an error, please delete it immediately!
466
-------------------------------------
467
This message was automatic generated!
468
";
467 469

  
468
Pre Va&#353;e prihl&aacute;senie do '{LOGIN_WEBSITE_TITLE}' pou&#382;ite:
469
Meno: {LOGIN_NAME}
470
Heslo: {LOGIN_PASSWORD}
470
$MESSAGE['SIGNUP2_BODY_LOGIN_FORGOT'] = "
471
Hello {LOGIN_DISPLAY_NAME},
471 472

  
472
Va&#353;e heslo bolo nastaven&eacute; na nov&eacute;, uveden&eacute; vy&#353;&#353;ie.
473
To znamen&aacute;, &#382;e va&#353;e star&eacute; heslo u&#382; nebude fungova&#357;.
473
This mail was sent because the 'forgot password' function has been applied to your account.
474 474

  
475
Ak ste t&uacute;to spr&aacute;vu dostali omylom, pros&iacute;m, ihne&#271; ju zma&#382;te.
476
EOT;
475
Your new '{LOGIN_WEBSITE_TITLE}' login details are:
477 476

  
477
Username: {LOGIN_NAME}
478
Password: {LOGIN_PASSWORD}
479

  
480
Your password has been reset to the one above.
481
This means that your old password will no longer work anymore!
482
If you've got any questions or problems within the new login-data
483
you should contact the website-team or the admin of '{LOGIN_WEBSITE_TITLE}'.
484
Please remember to clean you browser-cache before using the new one to avoid unexpected fails.
485

  
486
Regards
487
------------------------------------
488
This message was automatic generated
489

  
490
";
491

  
478 492
$MESSAGE['FORGOT_PASS_NO_DATA'] = 'Zadajte svoju e-mailovou adresu:';
479 493
$MESSAGE['FORGOT_PASS_EMAIL_NOT_FOUND'] = 'Zadan&aacute; e-mailov&aacute; adresa alebola n&aacute;jden&aacute;';
480 494
$MESSAGE['FORGOT_PASS_CANNOT_EMAIL'] = 'Nejde odosla&#357;  heslo e-mailom, kontaktujte pros&iacute;m spr&aacute;vcu syst&eacute;mu';
branches/2.8.x/wb/languages/LV.php
450 450

  
451 451
$MESSAGE['SIGNUP_NO_EMAIL'] = 'Jaievada e-pasta adrese';
452 452
$MESSAGE['SIGNUP2_SUBJECT_LOGIN_INFO'] = 'Your login details...';
453
$MESSAGE['SIGNUP2_BODY_LOGIN_INFO'] = <<< EOT
454
 Hello {LOGIN_DISPLAY_NAME},
453
$MESSAGE['SIGNUP2_BODY_LOGIN_INFO'] = "
454
Hello {LOGIN_DISPLAY_NAME},
455 455

  
456
 You are welcome to our {LOGIN_WEBSITE_TITLE}.
456
Welcome to our '{LOGIN_WEBSITE_TITLE}'.
457 457

  
458
 Your '{LOGIN_WEBSITE_TITLE}' login details are:
459
 Username: {LOGIN_NAME}
460
 Password: {LOGIN_PASSWORD}
458
Your '{LOGIN_WEBSITE_TITLE}' login details are:
459
Username: {LOGIN_NAME}
460
Password: {LOGIN_PASSWORD}
461 461

  
462
 If you have received this message in error, please delete it immediately.
463
EOT;
462
Regards
464 463

  
465
$MESSAGE['SIGNUP2_BODY_LOGIN_FORGOT'] = <<< EOT
464
Please:
465
if you have received this message by an error, please delete it immediately!
466
-------------------------------------
467
This message was automatic generated!
468
";
469

  
470
$MESSAGE['SIGNUP2_BODY_LOGIN_FORGOT'] = "
466 471
Hello {LOGIN_DISPLAY_NAME},
467 472

  
468
Your '{LOGIN_WEBSITE_TITLE}' login details are:
473
This mail was sent because the 'forgot password' function has been applied to your account.
474

  
475
Your new '{LOGIN_WEBSITE_TITLE}' login details are:
476

  
469 477
Username: {LOGIN_NAME}
470 478
Password: {LOGIN_PASSWORD}
471 479

  
472
Your password has been set to the one above.
473
This means that your old password will no longer work.
480
Your password has been reset to the one above.
481
This means that your old password will no longer work anymore!
482
If you've got any questions or problems within the new login-data
483
you should contact the website-team or the admin of '{LOGIN_WEBSITE_TITLE}'.
484
Please remember to clean you browser-cache before using the new one to avoid unexpected fails.
474 485

  
475
If you have received this message in error, please delete it immediately.
476
EOT;
486
Regards
487
------------------------------------
488
This message was automatic generated
477 489

  
490
";
491

  
478 492
$MESSAGE['FORGOT_PASS_NO_DATA'] = 'Ludzu ievadi savu e-pasta adresi zemak redzamaja lauka';
479 493
$MESSAGE['FORGOT_PASS_EMAIL_NOT_FOUND'] = 'Ievadito e-pasta adresi nebija iespejams atrast datu baze';
480 494
$MESSAGE['FORGOT_PASS_CANNOT_EMAIL'] = 'Lietotajvardu un paroli pa e-pastu nebija iespejams nosutit, ludzu sakontakte sistemas administratoru';
branches/2.8.x/wb/languages/CA.php
450 450

  
451 451
$MESSAGE['SIGNUP_NO_EMAIL'] = 'Heu d\'Introduir una adre&ccedil;a de correu';
452 452
$MESSAGE['SIGNUP2_SUBJECT_LOGIN_INFO'] = 'Your login details...';
453
$MESSAGE['SIGNUP2_BODY_LOGIN_INFO'] = <<< EOT
454
 Hello {LOGIN_DISPLAY_NAME},
453
$MESSAGE['SIGNUP2_BODY_LOGIN_INFO'] = "
454
Hello {LOGIN_DISPLAY_NAME},
455 455

  
456
 You are welcome to our {LOGIN_WEBSITE_TITLE}.
456
Welcome to our '{LOGIN_WEBSITE_TITLE}'.
457 457

  
458
 Your '{LOGIN_WEBSITE_TITLE}' login details are:
459
 Username: {LOGIN_NAME}
460
 Password: {LOGIN_PASSWORD}
458
Your '{LOGIN_WEBSITE_TITLE}' login details are:
459
Username: {LOGIN_NAME}
460
Password: {LOGIN_PASSWORD}
461 461

  
462
 If you have received this message in error, please delete it immediately.
463
EOT;
462
Regards
464 463

  
465
$MESSAGE['SIGNUP2_BODY_LOGIN_FORGOT'] = <<< EOT
464
Please:
465
if you have received this message by an error, please delete it immediately!
466
-------------------------------------
467
This message was automatic generated!
468
";
469

  
470
$MESSAGE['SIGNUP2_BODY_LOGIN_FORGOT'] = "
466 471
Hello {LOGIN_DISPLAY_NAME},
467 472

  
468
Your '{LOGIN_WEBSITE_TITLE}' login details are:
473
This mail was sent because the 'forgot password' function has been applied to your account.
474

  
475
Your new '{LOGIN_WEBSITE_TITLE}' login details are:
476

  
469 477
Username: {LOGIN_NAME}
470 478
Password: {LOGIN_PASSWORD}
471 479

  
472
Your password has been set to the one above.
473
This means that your old password will no longer work.
480
Your password has been reset to the one above.
481
This means that your old password will no longer work anymore!
482
If you've got any questions or problems within the new login-data
483
you should contact the website-team or the admin of '{LOGIN_WEBSITE_TITLE}'.
484
Please remember to clean you browser-cache before using the new one to avoid unexpected fails.
474 485

  
475
If you have received this message in error, please delete it immediately.
476
EOT;
486
Regards
487
------------------------------------
488
This message was automatic generated
477 489

  
490
";
478 491
$MESSAGE['FORGOT_PASS_NO_DATA'] = 'Per favor introdu&iuml;u la vostra adre&ccedil;a de correu a baix';
479 492
$MESSAGE['FORGOT_PASS_EMAIL_NOT_FOUND'] = 'El correu que heu introdu&iuml;t no s\'ha trobat a la base de dades';
480 493
$MESSAGE['FORGOT_PASS_CANNOT_EMAIL'] = 'No ha estat possible enviar la contrasenya, per favor contacteu amb l\'administrador del sistema';
......
622 635
$MESSAGE['LOGIN']['AUTHENTICATION_FAILED']  = $MESSAGE['LOGIN_AUTHENTICATION_FAILED'] ;
623 636
$MESSAGE['SIGNUP']['NO_EMAIL']  = $MESSAGE['SIGNUP_NO_EMAIL'] ;
624 637
$MESSAGE['SIGNUP2']['SUBJECT_LOGIN_INFO']  = $MESSAGE['SIGNUP2_SUBJECT_LOGIN_INFO'] ;
638
$MESSAGE['SIGNUP2']['BODY_LOGIN_INFO']  = $MESSAGE['SIGNUP2_BODY_LOGIN_INFO'] ;
625 639
$MESSAGE['SIGNUP2']['BODY_LOGIN_FORGOT']  = $MESSAGE['SIGNUP2_BODY_LOGIN_FORGOT'] ;
626 640
$MESSAGE['FORGOT_PASS']['NO_DATA']  = $MESSAGE['FORGOT_PASS_NO_DATA'] ;
627 641
$MESSAGE['FORGOT_PASS']['EMAIL_NOT_FOUND']  = $MESSAGE['FORGOT_PASS_EMAIL_NOT_FOUND'] ;
branches/2.8.x/wb/languages/PT.php
450 450

  
451 451
$MESSAGE['SIGNUP_NO_EMAIL'] = 'Voc&ecirc; precisa informar um endere&ccdil;o de email';
452 452
$MESSAGE['SIGNUP2_SUBJECT_LOGIN_INFO'] = 'Your login details...';
453
$MESSAGE['SIGNUP2_BODY_LOGIN_INFO'] = <<< EOT
454
 Hello {LOGIN_DISPLAY_NAME},
453
$MESSAGE['SIGNUP2_BODY_LOGIN_INFO'] = "
454
Hello {LOGIN_DISPLAY_NAME},
455 455

  
456
 You are welcome to our {LOGIN_WEBSITE_TITLE}.
456
Welcome to our '{LOGIN_WEBSITE_TITLE}'.
457 457

  
458
 Your '{LOGIN_WEBSITE_TITLE}' login details are:
459
 Username: {LOGIN_NAME}
460
 Password: {LOGIN_PASSWORD}
458
Your '{LOGIN_WEBSITE_TITLE}' login details are:
459
Username: {LOGIN_NAME}
460
Password: {LOGIN_PASSWORD}
461 461

  
462
 If you have received this message in error, please delete it immediately.
463
EOT;
462
Regards
464 463

  
465
$MESSAGE['SIGNUP2_BODY_LOGIN_FORGOT'] = <<< EOT
464
Please:
465
if you have received this message by an error, please delete it immediately!
466
-------------------------------------
467
This message was automatic generated!
468
";
469

  
470
$MESSAGE['SIGNUP2_BODY_LOGIN_FORGOT'] = "
466 471
Hello {LOGIN_DISPLAY_NAME},
467 472

  
468
Your '{LOGIN_WEBSITE_TITLE}' login details are:
473
This mail was sent because the 'forgot password' function has been applied to your account.
474

  
475
Your new '{LOGIN_WEBSITE_TITLE}' login details are:
476

  
469 477
Username: {LOGIN_NAME}
470 478
Password: {LOGIN_PASSWORD}
471 479

  
472
Your password has been set to the one above.
473
This means that your old password will no longer work.
480
Your password has been reset to the one above.
481
This means that your old password will no longer work anymore!
482
If you've got any questions or problems within the new login-data
483
you should contact the website-team or the admin of '{LOGIN_WEBSITE_TITLE}'.
484
Please remember to clean you browser-cache before using the new one to avoid unexpected fails.
474 485

  
475
If you have received this message in error, please delete it immediately.
476
EOT;
486
Regards
487
------------------------------------
488
This message was automatic generated
477 489

  
490
";
491

  
478 492
$MESSAGE['FORGOT_PASS_NO_DATA'] = 'Favor inserir seu email abaixo';
479 493
$MESSAGE['FORGOT_PASS_EMAIL_NOT_FOUND'] = 'O email informado n&atilde;o pode ser encontrado no banco de dados';
480 494
$MESSAGE['FORGOT_PASS_CANNOT_EMAIL'] = 'N&atilde;o foi poss&iacute;vel enviar a senha, favor contatar o administrador do sistema';
branches/2.8.x/wb/languages/DA.php
450 450

  
451 451
$MESSAGE['SIGNUP_NO_EMAIL'] = 'Du skal indtaste en gyldig email-adresse';
452 452
$MESSAGE['SIGNUP2_SUBJECT_LOGIN_INFO'] = 'Dine login-oplysninger...';
453
$MESSAGE['SIGNUP2_BODY_LOGIN_INFO'] = <<< EOT
454
 Hello {LOGIN_DISPLAY_NAME},
453
$MESSAGE['SIGNUP2_BODY_LOGIN_INFO'] = "
454
Hello {LOGIN_DISPLAY_NAME},
455 455

  
456
 You are welcome to our {LOGIN_WEBSITE_TITLE}.
456
Welcome to our '{LOGIN_WEBSITE_TITLE}'.
457 457

  
458
 Your '{LOGIN_WEBSITE_TITLE}' login details are:
459
 Username: {LOGIN_NAME}
460
 Password: {LOGIN_PASSWORD}
458
Your '{LOGIN_WEBSITE_TITLE}' login details are:
459
Username: {LOGIN_NAME}
460
Password: {LOGIN_PASSWORD}
461 461

  
462
 If you have received this message in error, please delete it immediately.
463
EOT;
462
Regards
464 463

  
465
$MESSAGE['SIGNUP2_BODY_LOGIN_FORGOT'] = <<< EOT
466
Hej {LOGIN_DISPLAY_NAME},
464
Please:
465
if you have received this message by an error, please delete it immediately!
466
-------------------------------------
467
This message was automatic generated!
468
";
467 469

  
468
Dine '{LOGIN_WEBSITE_TITLE}' loginoplysninger er:
469
Brugernavn: {LOGIN_NAME}
470
Adgangskode: {LOGIN_PASSWORD}
470
$MESSAGE['SIGNUP2_BODY_LOGIN_FORGOT'] = "
471
Hello {LOGIN_DISPLAY_NAME},
471 472

  
472
Din adgangskode er sat til ovenst&aring;ende.
473
Det betyder, at din gamle adgangskode ikke virker mere.
473
This mail was sent because the 'forgot password' function has been applied to your account.
474 474

  
475
Hvis du har modtaget denne besked ved en fejl, bedes du straks slette den.
476
EOT;
475
Your new '{LOGIN_WEBSITE_TITLE}' login details are:
477 476

  
477
Username: {LOGIN_NAME}
478
Password: {LOGIN_PASSWORD}
479

  
480
Your password has been reset to the one above.
481
This means that your old password will no longer work anymore!
482
If you've got any questions or problems within the new login-data
483
you should contact the website-team or the admin of '{LOGIN_WEBSITE_TITLE}'.
484
Please remember to clean you browser-cache before using the new one to avoid unexpected fails.
485

  
486
Regards
487
------------------------------------
488
This message was automatic generated
489

  
490
";
491

  
478 492
$MESSAGE['FORGOT_PASS_NO_DATA'] = 'Indtast din email-adresse nedenfor';
479 493
$MESSAGE['FORGOT_PASS_EMAIL_NOT_FOUND'] = 'Den email-adresse du indtastede findes ikke i vores database';
480 494
$MESSAGE['FORGOT_PASS_CANNOT_EMAIL'] = 'Kunne ikke sende din adgangskode til din email-adresse - Kontakt en systemadministrator';
branches/2.8.x/wb/languages/TR.php
450 450

  
451 451
$MESSAGE['SIGNUP_NO_EMAIL'] = 'Bir email adresi girmelisiniz.';
452 452
$MESSAGE['SIGNUP2_SUBJECT_LOGIN_INFO'] = 'Your login details...';
453
$MESSAGE['SIGNUP2_BODY_LOGIN_INFO'] = <<< EOT
454
 Hello {LOGIN_DISPLAY_NAME},
453
$MESSAGE['SIGNUP2_BODY_LOGIN_INFO'] = "
454
Hello {LOGIN_DISPLAY_NAME},
455 455

  
456
 You are welcome to our {LOGIN_WEBSITE_TITLE}.
456
Welcome to our '{LOGIN_WEBSITE_TITLE}'.
457 457

  
458
 Your '{LOGIN_WEBSITE_TITLE}' login details are:
459
 Username: {LOGIN_NAME}
460
 Password: {LOGIN_PASSWORD}
458
Your '{LOGIN_WEBSITE_TITLE}' login details are:
459
Username: {LOGIN_NAME}
460
Password: {LOGIN_PASSWORD}
461 461

  
462
 If you have received this message in error, please delete it immediately.
463
EOT;
462
Regards
464 463

  
465
$MESSAGE['SIGNUP2_BODY_LOGIN_FORGOT'] = <<< EOT
464
Please:
465
if you have received this message by an error, please delete it immediately!
466
-------------------------------------
467
This message was automatic generated!
468
";
469

  
470
$MESSAGE['SIGNUP2_BODY_LOGIN_FORGOT'] = "
466 471
Hello {LOGIN_DISPLAY_NAME},
467 472

  
468
Your '{LOGIN_WEBSITE_TITLE}' login details are:
473
This mail was sent because the 'forgot password' function has been applied to your account.
474

  
475
Your new '{LOGIN_WEBSITE_TITLE}' login details are:
476

  
469 477
Username: {LOGIN_NAME}
470 478
Password: {LOGIN_PASSWORD}
471 479

  
472
Your password has been set to the one above.
473
This means that your old password will no longer work.
480
Your password has been reset to the one above.
481
This means that your old password will no longer work anymore!
482
If you've got any questions or problems within the new login-data
483
you should contact the website-team or the admin of '{LOGIN_WEBSITE_TITLE}'.
484
Please remember to clean you browser-cache before using the new one to avoid unexpected fails.
474 485

  
475
If you have received this message in error, please delete it immediately.
476
EOT;
486
Regards
487
------------------------------------
488
This message was automatic generated
477 489

  
490
";
491

  
478 492
$MESSAGE['FORGOT_PASS_NO_DATA'] = 'L&uuml;tfen email adresini girin';
479 493
$MESSAGE['FORGOT_PASS_EMAIL_NOT_FOUND'] = 'Bu email adresi veritaban&yacute;nda bulunamad&yacute;';
480 494
$MESSAGE['FORGOT_PASS_CANNOT_EMAIL'] = 'Uygunsuz email &thorn;ifresi, L&uuml;tfen Y&ouml;netici ile Kontak kurun';
branches/2.8.x/wb/languages/RU.php
450 450

  
451 451
$MESSAGE['SIGNUP_NO_EMAIL'] = '&#1042;&#1099; &#1076;&#1086;&#1083;&#1078;&#1085;&#1099; &#1074;&#1074;&#1077;&#1089;&#1090;&#1080; email &#1072;&#1076;&#1088;&#1077;&#1089;';
452 452
$MESSAGE['SIGNUP2_SUBJECT_LOGIN_INFO'] = 'Your login details...';
453
$MESSAGE['SIGNUP2_BODY_LOGIN_INFO'] = <<< EOT
454
 Hello {LOGIN_DISPLAY_NAME},
453
$MESSAGE['SIGNUP2_BODY_LOGIN_INFO'] = "
454
Hello {LOGIN_DISPLAY_NAME},
455 455

  
456
 You are welcome to our {LOGIN_WEBSITE_TITLE}.
456
Welcome to our '{LOGIN_WEBSITE_TITLE}'.
457 457

  
458
 Your '{LOGIN_WEBSITE_TITLE}' login details are:
459
 Username: {LOGIN_NAME}
460
 Password: {LOGIN_PASSWORD}
458
Your '{LOGIN_WEBSITE_TITLE}' login details are:
459
Username: {LOGIN_NAME}
460
Password: {LOGIN_PASSWORD}
461 461

  
462
 If you have received this message in error, please delete it immediately.
463
EOT;
462
Regards
464 463

  
465
$MESSAGE['SIGNUP2_BODY_LOGIN_FORGOT'] = <<< EOT
464
Please:
465
if you have received this message by an error, please delete it immediately!
466
-------------------------------------
467
This message was automatic generated!
468
";
469

  
470
$MESSAGE['SIGNUP2_BODY_LOGIN_FORGOT'] = "
466 471
Hello {LOGIN_DISPLAY_NAME},
467 472

  
468
Your '{LOGIN_WEBSITE_TITLE}' login details are:
473
This mail was sent because the 'forgot password' function has been applied to your account.
474

  
475
Your new '{LOGIN_WEBSITE_TITLE}' login details are:
476

  
469 477
Username: {LOGIN_NAME}
470 478
Password: {LOGIN_PASSWORD}
471 479

  
472
Your password has been set to the one above.
473
This means that your old password will no longer work.
480
Your password has been reset to the one above.
481
This means that your old password will no longer work anymore!
482
If you've got any questions or problems within the new login-data
483
you should contact the website-team or the admin of '{LOGIN_WEBSITE_TITLE}'.
484
Please remember to clean you browser-cache before using the new one to avoid unexpected fails.
474 485

  
475
If you have received this message in error, please delete it immediately.
476
EOT;
486
Regards
487
------------------------------------
488
This message was automatic generated
477 489

  
490
";
491

  
478 492
$MESSAGE['FORGOT_PASS_NO_DATA'] = '&#1055;&#1086;&#1078;&#1072;&#1083;&#1091;&#1081;&#1089;&#1090;&#1072; &#1074;&#1074;&#1077;&#1076;&#1080;&#1090;&#1077; &#1074;&#1072;&#1096; email';
479 493
$MESSAGE['FORGOT_PASS_EMAIL_NOT_FOUND'] = 'Email, &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1081; &#1074;&#1099; &#1074;&#1074;&#1077;&#1083;&#1080;, &#1085;&#1077; &#1085;&#1072;&#1081;&#1076;&#1077;&#1085; &#1074; &#1073;&#1072;&#1079;&#1077;';
480 494
$MESSAGE['FORGOT_PASS_CANNOT_EMAIL'] = '&#1053;&#1077;&#1074;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1086; &#1074;&#1099;&#1089;&#1083;&#1072;&#1090;&#1100; &#1087;&#1072;&#1088;&#1086;&#1083;&#1100;, &#1086;&#1073;&#1088;&#1072;&#1090;&#1080;&#1090;&#1077;&#1089;&#1100; &#1082; &#1074;&#1072;&#1096;&#1077;&#1084;&#1091; &#1072;&#1076;&#1084;&#1080;&#1085;&#1080;&#1089;&#1090;&#1088;&#1072;&#1090;&#1086;&#1088;&#1091;';
branches/2.8.x/wb/languages/DE.php
451 451

  
452 452
$MESSAGE['SIGNUP_NO_EMAIL'] = 'Bitte geben Sie Ihre E-Mail Adresse an';
453 453
$MESSAGE['SIGNUP2_SUBJECT_LOGIN_INFO'] = 'Deine WB Logindaten ...';
454
$MESSAGE['SIGNUP2_BODY_LOGIN_INFO'] = <<< EOT
455
 Hallo {LOGIN_DISPLAY_NAME},
454
$MESSAGE['SIGNUP2_BODY_LOGIN_INFO'] = "
455
Hallo {LOGIN_DISPLAY_NAME},
456 456

  
457
 Vielen Dank f&uuml;r deine Registrieung.
457
Herlich willkommen bei '{LOGIN_WEBSITE_TITLE}'
458 458

  
459
 Deine Logindaten f&uuml;r {LOGIN_WEBSITE_TITLE} lauten:
460
 Benutzername: {LOGIN_NAME}
461
 Passwort: {LOGIN_PASSWORD}
459
Ihre Logindaten f&uuml;r '{LOGIN_WEBSITE_TITLE}' lauten:
460
Benutzername: {LOGIN_NAME}
461
Passwort: Registrierungspasswort
462 462

  
463
 Wenn Du dieses E-Mail versehentlich erhalten hast, bitte einfach l&ouml;schen.
464
EOT;
463
Vielen Dank für Ihre Registrierung
465 464

  
466
$MESSAGE['SIGNUP2_BODY_LOGIN_FORGOT'] = <<< EOT
465
Wenn Sie dieses E-Mail versehentlich erhalten haben, l&ouml;schen Sie bitte diese E-Mail.
466
----------------------------------------
467
Diese E-Mail wurde automatisch erstellt!
468
";
469

  
470
$MESSAGE['SIGNUP2_BODY_LOGIN_FORGOT'] = "
467 471
Hallo {LOGIN_DISPLAY_NAME},
468 472

  
469
Deine neuen Logindaten f&uuml;r {LOGIN_WEBSITE_TITLE} lauten:
473
Sie erhalten diese E-Mail, weil sie ein neues Passwort angefordert haben.
474

  
475
Ihre neuen Logindaten f&uuml;r {LOGIN_WEBSITE_TITLE} lauten:
476

  
470 477
Benutzername: {LOGIN_NAME}
471 478
Passwort: {LOGIN_PASSWORD}
472 479

  
473 480
Dein bisheriges Passwort wurde durch das neue Passwort oben ersetzt.
474 481
Das bisherige Passwort ist nicht mehr g&uuml;ltig.
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff