Project

General

Profile

1 1508 Luisehahne
<?php
2
/**
3
  Module developed for the Open Source Content Management System Website Baker (http://websitebaker.org)
4
  Copyright (C) 2008, ISTeam, Werner von der Decken
5
  Contact me: wkl(at)isteam.de, http://isteam.de
6
7
  This module is free software. You can redistribute it and/or modify it
8
  under the terms of the GNU General Public License  - version 2 or later,
9
  as published by the Free Software Foundation: http://www.gnu.org/licenses/gpl.html.
10
11
  This module is distributed in the hope that it will be useful,
12
  but WITHOUT ANY WARRANTY; without even the implied warranty of
13
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
  GNU General Public License for more details.
15
16
 -----------------------------------------------------------------------------------------
17
  ENGLISH LANGUAGE FILE FOR THE PREFERENCES MODULE
18
 -----------------------------------------------------------------------------------------
19
	UPDATE HISTORY:
20
	Werner von der Decken; 17.05.2008
21
	 + initial release of the English language file
22
 -----------------------------------------------------------------------------------------
23
**/
24
// array for all language dependen text outputs in the front- and backend
25
// Note: stick to the naming convention: $MOD_MODULE_DIRECTORY
26
$MOD_PREFERENCE = array(
27
	'PLEASE_SELECT' => 'please select',
28
	'DETAILS_SAVED'	=> 'details successfully saved',
29
	'SAVE_SETTINGS' => 'save details',
30
	'SAVE_EMAIL'    => 'save email',
31
	'SAVE_PASSWORD' => 'save password',
32 1800 Luisehahne
	'SAVE_LANGUAGE' => 'Switch language first',
33 1508 Luisehahne
);
34 1777 Luisehahne
$TEXT['USERNAME'] = 'Loginname';
35 1792 Luisehahne
$HEADING['SIGNUP2_CONFIMED_REGISTRATION'] = 'Unlock account';
36
$HEADING['MESSAGE_WELCOME'] = 'Welcome to unlock of your account';
37 1508 Luisehahne
38 1792 Luisehahne
$HELP['SIGNUP_REMEMBER_PASSWORD'] = '<i>Remember your Loginname and Passwoprd please! You will need it later to complete the activation!</i>';
39
$HELP['CONFIRM_PASSWORD'] = '<i>Enter your Loginname and Password please to finish the the activation!</i>';
40 1777 Luisehahne
41 1792 Luisehahne
$MESSAGE['ACTIVATED_NEW_USER'] = '<b>Your account is activated. You can logon now.</b>';
42
$MESSAGE['FAILED_NEW_USER'] = '<b>Invalid access data or activation code is expired!</b>';
43 1777 Luisehahne
$MESSAGE['SIGNUP2_ADMIN_INFO'] = '
44 1792 Luisehahne
A new user was registered.
45 1777 Luisehahne
46
Loginname: {LOGIN_NAME}
47
UserId: {LOGIN_ID}
48
E-Mail: {LOGIN_EMAIL}
49 1792 Luisehahne
IP-Address: {LOGIN_IP}
50
Signup date: {SIGNUP_DATE}
51 1777 Luisehahne
----------------------------------------
52 1792 Luisehahne
Do NOT answer! This e-mail is autogenerated by WebsiteBaker!
53 1777 Luisehahne
54
';
55
$MESSAGE['SIGNUP2_BODY_LOGIN_FORGOT'] = '
56 1792 Luisehahne
Hello {LOGIN_DISPLAY_NAME},
57 1777 Luisehahne
58 1792 Luisehahne
You got this email, because you\'ve requested a new password.
59 1777 Luisehahne
60 1792 Luisehahne
Your new password for {LOGIN_WEBSITE_TITLE} is:
61 1777 Luisehahne
62 1792 Luisehahne
Password: {LOGIN_PASSWORD}
63 1777 Luisehahne
64 1792 Luisehahne
For security reasons change the password as soon as possible please.
65 1777 Luisehahne
66 1792 Luisehahne
with kind regards
67 1777 Luisehahne
----------------------------------------
68 1792 Luisehahne
Do NOT answer! This e-mail is autogenerated by WebsiteBaker!
69 1777 Luisehahne
';
70
$MESSAGE['SIGNUP2_BODY_LOGIN_INFO'] = '
71 1792 Luisehahne
Hello {LOGIN_DISPLAY_NAME},
72 1777 Luisehahne
73 1792 Luisehahne
Welcome on \'{LOGIN_WEBSITE_TITLE}\'
74 1777 Luisehahne
75 1792 Luisehahne
Your account for  \'{LOGIN_WEBSITE_TITLE}\' is:
76
Login name: {LOGIN_NAME}
77
Password: {LOGIN_PASSWORD}
78 1777 Luisehahne
79 1792 Luisehahne
Thank you for registration.
80
For security reasons change the password as soon as possible please.
81 1777 Luisehahne
82
';
83
84
$MESSAGE['SUCCESS_EMAIL_TEXT_GENERATED'] = "\n"
85 1792 Luisehahne
."***************************************************************************\n"
86
."This e-mail is autogenerated by WebsiteBaker! Do NOT answer to this e-mail!\n"
87
."If you got this email by a mistake, please excuse and delete this e-mail.\n"
88
."***************************************************************************\n";
89 1777 Luisehahne
90 1792 Luisehahne
$MESSAGE['INCORRECT_CAPTCHA'] = 'The given code does not match. If you have problems reading the code, please write an e-mail to the <a href="mailto:{{webmaster_email}}">Webmaster</a>';
91 1777 Luisehahne
92 1792 Luisehahne
$MESSAGE['CONFIRMED']  = 'You can find your password below. Use it to maintain your settings and functions. For security reasons change the password as soon as possible please.';
93
$MESSAGE['CONFIRMED'] .= 'Password: ';
94
$MESSAGE['CONFIRMED'] .= 'Thank you!';
95
$MESSAGE['CHANGE_PASSWORD'] = 'For security reasons change the password as soon as possible please. For that visit following website:';
96 1777 Luisehahne
97 1792 Luisehahne
$MESSAGE['LOGIN_BOTH_BLANK'] = 'Give your login name and password please';
98
$MESSAGE['LOGIN_PASSWORD_BLANK'] = 'Give your password please';
99
$MESSAGE['LOGIN_PASSWORD_TOO_LONG'] = 'given password is too long';
100
$MESSAGE['LOGIN_PASSWORD_TOO_SHORT'] = 'given password is too short';
101
$MESSAGE['LOGIN_USERNAME_BLANK'] = 'Give your login name please';
102
$MESSAGE['LOGIN_USERNAME_TOO_LONG'] = 'given login name is too long';
103
$MESSAGE['LOGIN_USERNAME_TOO_SHORT'] = 'given login name is too short';
104
$MESSAGE['MAIL_GENERATED'] = 'This email is autogenerated by WebsiteBaker! Do NOT answer to this e-mail! If you need some help or you have any questions, please contact <a href="mailto:{{webmaster_email}}">Webmaster</a>';
105 1777 Luisehahne
106
$MESSAGE['SEND_CONFIRMED_REGISTRATION'] = "
107
108 1792 Luisehahne
Hello {LOGIN_DISPLAY_NAME},
109 1777 Luisehahne
110 1792 Luisehahne
welcome on {LOGIN_WEBSITE_TITLE}!
111 1777 Luisehahne
112 1792 Luisehahne
Click the link below to activate your account and finalize your signup:
113 1777 Luisehahne
114
{LINK}
115
116 1792 Luisehahne
If the link is not clickable, please copy it into your browser!
117 1777 Luisehahne
118 1792 Luisehahne
This activation link will exceed on {CONFIRMED_REGISTRATION_ENDTIME}
119 1777 Luisehahne
120 1792 Luisehahne
with kind regards,
121
your Support Team
122
123 1777 Luisehahne
";
124
$MESSAGE['SEND_CONFIRMED_ACTIVATION'] = "
125
126 1792 Luisehahne
Hello {LOGIN_DISPLAY_NAME},
127 1777 Luisehahne
128 1792 Luisehahne
welcome on {LOGIN_WEBSITE_TITLE}!
129 1777 Luisehahne
130 1792 Luisehahne
Your account now is successful activated. You can login now.
131 1777 Luisehahne
132 1792 Luisehahne
If you need some help or you have any questions, please contact the <a href=\"mailto:{{webmaster_email}}\">Webmaster</a>
133 1777 Luisehahne
134 1792 Luisehahne
with kind regards,
135
your Support Team
136 1777 Luisehahne
137
";
138
139 1792 Luisehahne
$MESSAGE['SIGNUP2_SUBJECT_NEW_USER'] = 'Thank you for signing up.';
140
$MESSAGE['SIGNUP2_NEW_USER'] = 'A new user has signed up';
141
$MESSAGE['SIGNUP2_SUBJECT_LOGIN_INFO'] = 'Your WB account data ...';
142
$MESSAGE['SIGNUP_NO_EMAIL'] = 'Please key in your valid email address';
143 1777 Luisehahne
144 1792 Luisehahne
$MESSAGE['SIGNUP_CONFIRMED_REGISTRATION'] = "To be able to use your account, receive during the next minutes e-mail with a link to activate your account.
145
<br /><b>The activation must be done during 24 hours. Otherwise the account will be deleted.</b>
146 1777 Luisehahne
";
147 1792 Luisehahne
$MESSAGE['SIGNUP_REGISTRATION'] = 'You get your data by e-mail!!';
148
$MESSAGE['SIGNUP_NEW_USER'] = '<b>Your account is created.</b>';
149
$MESSAGE['SIGNUP_ACTIVATION'] = 'Account Activation';
150 1777 Luisehahne
151 1792 Luisehahne
$TEXT['NEED_CURRENT_PASSWORD'] = 'confirm with your password please';
152
$TEXT['NEED_TO_LOGIN'] = 'You need to logon';
153
$TEXT['NEW_PASSWORD'] = 'New password';
154
$TEXT['PASSWORD'] = 'Password';
155
$TEXT['ACTIVATION'] = 'Activate';
156
$TEXT['SEND'] = 'Request';
157
$TEXT['USERNAME'] = 'Login name';