Project

General

Profile

1 552 thorn
<?php
2
3
// $Id$
4
5
/*
6
7 821 thorn
Website Baker Project <http://www.websitebaker.org/>
8 915 Ruebenwurz
Copyright (C) 2004-2009, Ryan Djurovich
9 552 thorn
10 821 thorn
Website Baker is free software; you can redistribute it and/or modify
11
it under the terms of the GNU General Public License as published by
12
the Free Software Foundation; either version 2 of the License, or
13
(at your option) any later version.
14 552 thorn
15 821 thorn
Website Baker is distributed in the hope that it will be useful,
16
but WITHOUT ANY WARRANTY; without even the implied warranty of
17
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18
GNU General Public License for more details.
19 552 thorn
20 821 thorn
You should have received a copy of the GNU General Public License
21
along with Website Baker; if not, write to the Free Software
22
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
23 552 thorn
24
*/
25
26 821 thorn
// use languageedit-module to modify this file
27
28 552 thorn
// Define that this file is loaded
29
if(!defined('LANGUAGE_LOADED')) {
30 821 thorn
define('LANGUAGE_LOADED', true);
31 552 thorn
}
32
33
// Set the language information
34
$language_code = 'EN';
35
$language_name = 'English';
36 925 doc
$language_version = '2.8';
37
$language_platform = '2.8.x';
38 552 thorn
$language_author = 'Ryan Djurovich, Christian Sommer';
39
$language_license = 'GNU General Public License';
40
41
// Menu titles
42
$MENU['START'] = 'Start';
43
$MENU['PAGES'] = 'Pages';
44
$MENU['MEDIA'] = 'Media';
45
$MENU['ADDONS'] = 'Add-ons';
46
$MENU['MODULES'] = 'Modules';
47
$MENU['TEMPLATES'] = 'Templates';
48
$MENU['LANGUAGES'] = 'Languages';
49
$MENU['PREFERENCES'] = 'Preferences';
50
$MENU['SETTINGS'] = 'Settings';
51
$MENU['ADMINTOOLS'] = 'Admin-Tools';
52
$MENU['ACCESS'] = 'Access';
53
$MENU['USERS'] = 'Users';
54
$MENU['GROUPS'] = 'Groups';
55
$MENU['HELP'] = 'Help';
56
$MENU['VIEW'] = 'View';
57
$MENU['LOGOUT'] = 'Log-out';
58
$MENU['LOGIN'] = 'Login';
59
$MENU['FORGOT'] = 'Retrieve Login Details';
60
61
// Section overviews
62
$OVERVIEW['START'] = 'Administration overview';
63
$OVERVIEW['PAGES'] = 'Manage your websites pages...';
64
$OVERVIEW['MEDIA'] = 'Manage files stored in the media folder...';
65
$OVERVIEW['MODULES'] = 'Manage Website Baker modules...';
66
$OVERVIEW['TEMPLATES'] = 'Change the look and feel of your website with templates...';
67
$OVERVIEW['LANGUAGES'] = 'Manage Website Baker languages...';
68
$OVERVIEW['PREFERENCES'] = 'Change preferences such as email address, password, etc... ';
69
$OVERVIEW['SETTINGS'] = 'Changes settings for Website Baker...';
70
$OVERVIEW['USERS'] = 'Manage users who can log-in to Website Baker...';
71
$OVERVIEW['GROUPS'] = 'Manage user groups and their system permissions...';
72
$OVERVIEW['HELP'] = 'Got a questions? Find your answer...';
73
$OVERVIEW['VIEW'] = 'Quickly view and browse your website in a new window...';
74 621 doc
$OVERVIEW['ADMINTOOLS'] = 'Access the Website Baker administration tools...';
75 552 thorn
76
// Headings
77
$HEADING['MODIFY_DELETE_PAGE'] = 'Modify/Delete Page';
78
$HEADING['DELETED_PAGES'] = 'Deleted Pages';
79
$HEADING['ADD_PAGE'] = 'Add Page';
80
$HEADING['ADD_HEADING'] = 'Add Heading';
81
$HEADING['MODIFY_PAGE'] = 'Modify Page';
82
$HEADING['MODIFY_PAGE_SETTINGS'] = 'Modify Page Settings';
83
$HEADING['MODIFY_ADVANCED_PAGE_SETTINGS'] = 'Modify Advanced Page Settings';
84
$HEADING['MANAGE_SECTIONS'] = 'Manage Sections';
85
$HEADING['MODIFY_INTRO_PAGE'] = 'Modify Intro Page';
86
87
$HEADING['BROWSE_MEDIA'] = 'Browse Media';
88
$HEADING['CREATE_FOLDER'] = 'Create Folder';
89
$HEADING['UPLOAD_FILES'] = 'Upload File(s)';
90
91
$HEADING['INSTALL_MODULE'] = 'Install Module';
92
$HEADING['UNINSTALL_MODULE'] = 'Uninstall Module';
93
$HEADING['MODULE_DETAILS'] = 'Module Details';
94
95
$HEADING['INSTALL_TEMPLATE'] = 'Install Template';
96
$HEADING['UNINSTALL_TEMPLATE'] = 'Uninstall Template';
97
$HEADING['TEMPLATE_DETAILS'] = 'Template Details';
98
99
$HEADING['INSTALL_LANGUAGE'] = 'Install Language';
100
$HEADING['UNINSTALL_LANGUAGE'] = 'Uninstall Language';
101
$HEADING['LANGUAGE_DETAILS'] = 'Language Details';
102
103
$HEADING['MY_SETTINGS'] = 'My Settings';
104
$HEADING['MY_EMAIL'] = 'My Email';
105
$HEADING['MY_PASSWORD'] = 'My Password';
106
107
$HEADING['GENERAL_SETTINGS'] = 'General Settings';
108
$HEADING['DEFAULT_SETTINGS'] = 'Default Settings';
109
$HEADING['SEARCH_SETTINGS'] = 'Search Settings';
110
$HEADING['FILESYSTEM_SETTINGS'] = 'Filesystem Settings';
111
$HEADING['SERVER_SETTINGS'] = 'Server Settings';
112
$HEADING['WBMAILER_SETTINGS'] = 'Mailer Settings';
113
$HEADING['ADMINISTRATION_TOOLS'] = 'Administration Tools';
114
115
$HEADING['MODIFY_DELETE_USER'] = 'Modify/Delete User';
116
$HEADING['ADD_USER'] = 'Add User';
117
$HEADING['MODIFY_USER'] = 'Modify User';
118
119
$HEADING['MODIFY_DELETE_GROUP'] = 'Modify/Delete Group';
120
$HEADING['ADD_GROUP'] = 'Add Group';
121
$HEADING['MODIFY_GROUP'] = 'Modify Group';
122
123 925 doc
$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
124
125 552 thorn
// Other text
126 736 thorn
$TEXT['OPEN'] = 'Open';
127 552 thorn
$TEXT['ADD'] = 'Add';
128
$TEXT['MODIFY'] = 'Modify';
129
$TEXT['SETTINGS'] = 'Settings';
130
$TEXT['DELETE'] = 'Delete';
131
$TEXT['SAVE'] = 'Save';
132
$TEXT['RESET'] = 'Reset';
133
$TEXT['LOGIN'] = 'Login';
134
$TEXT['RELOAD'] = 'Reload';
135
$TEXT['CANCEL'] = 'Cancel';
136
$TEXT['NAME'] = 'Name';
137
$TEXT['PLEASE_SELECT'] = 'Please select';
138
$TEXT['TITLE'] = 'Title';
139
$TEXT['PARENT'] = 'Parent';
140
$TEXT['TYPE'] = 'Type';
141
$TEXT['VISIBILITY'] = 'Visibility';
142
$TEXT['PRIVATE'] = 'Private';
143
$TEXT['PUBLIC'] = 'Public';
144
$TEXT['NONE'] = 'None';
145
$TEXT['NONE_FOUND'] = 'None Found';
146
$TEXT['CURRENT'] = 'Current';
147
$TEXT['CHANGE'] = 'Change';
148
$TEXT['WINDOW'] = 'Window';
149
$TEXT['DESCRIPTION'] = 'Description';
150
$TEXT['KEYWORDS'] = 'Keywords';
151
$TEXT['ADMINISTRATORS'] = 'Administrators';
152
$TEXT['PRIVATE_VIEWERS'] = 'Private Viewers';
153
$TEXT['EXPAND'] = 'Expand';
154
$TEXT['COLLAPSE'] = 'Collapse';
155
$TEXT['MOVE_UP'] = 'Move Up';
156
$TEXT['MOVE_DOWN'] = 'Move Down';
157
$TEXT['RENAME'] = 'Rename';
158
$TEXT['MODIFY_SETTINGS'] = 'Modify Settings';
159
$TEXT['MODIFY_CONTENT'] = 'Modify Content';
160
$TEXT['VIEW'] = 'View';
161
$TEXT['UP'] = 'Up';
162
$TEXT['FORGOTTEN_DETAILS'] = 'Forgotten your details?';
163
$TEXT['NEED_TO_LOGIN'] = 'Need to log-in?';
164
$TEXT['SEND_DETAILS'] = 'Send Details';
165
$TEXT['USERNAME'] = 'Username';
166
$TEXT['PASSWORD'] = 'Password';
167
$TEXT['HOME'] = 'Home';
168
$TEXT['TARGET_FOLDER'] = 'Target folder';
169
$TEXT['OVERWRITE_EXISTING'] = 'Overwrite existing';
170
$TEXT['FILE'] = 'File';
171
$TEXT['FILES'] = 'Files';
172
$TEXT['FOLDER'] = 'Folder';
173
$TEXT['FOLDERS'] = 'Folders';
174
$TEXT['CREATE_FOLDER'] = 'Create Folder';
175
$TEXT['UPLOAD_FILES'] = 'Upload File(s)';
176
$TEXT['CURRENT_FOLDER'] = 'Current Folder';
177
$TEXT['TO'] = 'To';
178
$TEXT['FROM'] = 'From';
179
$TEXT['INSTALL'] = 'Install';
180
$TEXT['UNINSTALL'] = 'Uninstall';
181
$TEXT['VIEW_DETAILS'] = 'View Details';
182
$TEXT['DISPLAY_NAME'] = 'Display Name';
183
$TEXT['AUTHOR'] = 'Author';
184
$TEXT['VERSION'] = 'Version';
185
$TEXT['DESIGNED_FOR'] = 'Designed For';
186
$TEXT['DESCRIPTION'] = 'Description';
187
$TEXT['EMAIL'] = 'Email';
188
$TEXT['LANGUAGE'] = 'Language';
189
$TEXT['TIMEZONE'] = 'Timezone';
190
$TEXT['CURRENT_PASSWORD'] = 'Current Password';
191
$TEXT['NEW_PASSWORD'] = 'New Password';
192
$TEXT['RETYPE_NEW_PASSWORD'] = 'Re-type New Password';
193
$TEXT['ACTIVE'] = 'Active';
194
$TEXT['DISABLED'] = 'Disabled';
195
$TEXT['ENABLED'] = 'Enabled';
196
$TEXT['RETYPE_PASSWORD'] = 'Re-type Password';
197
$TEXT['GROUP'] = 'Group';
198
$TEXT['SYSTEM_PERMISSIONS'] = 'System Permissions';
199
$TEXT['MODULE_PERMISSIONS'] = 'Module Permissions';
200
$TEXT['SHOW_ADVANCED'] = 'Show Advanced Options';
201
$TEXT['HIDE_ADVANCED'] = 'Hide Advanced Options';
202
$TEXT['BASIC'] = 'Basic';
203
$TEXT['ADVANCED'] = 'Advanced';
204
$TEXT['WEBSITE'] = 'Website';
205
$TEXT['DEFAULT'] = 'Default';
206
$TEXT['KEYWORDS'] = 'Keywords';
207
$TEXT['TEXT'] = 'Text';
208
$TEXT['HEADER'] = 'Header';
209
$TEXT['FOOTER'] = 'Footer';
210
$TEXT['TEMPLATE'] = 'Template';
211
$TEXT['INSTALLATION'] = 'Installation';
212
$TEXT['DATABASE'] = 'Database';
213
$TEXT['HOST'] = 'Host';
214
$TEXT['INTRO'] = 'Intro';
215
$TEXT['PAGE'] = 'Page';
216
$TEXT['SIGNUP'] = 'Sign-up';
217
$TEXT['PHP_ERROR_LEVEL'] = 'PHP Error Reporting Level';
218
$TEXT['ADMIN'] = 'Admin';
219
$TEXT['PATH'] = 'Path';
220
$TEXT['URL'] = 'URL';
221
$TEXT['FRONTEND'] = 'Front-end';
222
$TEXT['EXTENSION'] = 'Extension';
223
$TEXT['TABLE_PREFIX'] = 'Table Prefix';
224
$TEXT['CHANGES'] = 'Changes';
225
$TEXT['ADMINISTRATION'] = 'Administration';
226
$TEXT['FORGOT_DETAILS'] = 'Forgot Details?';
227
$TEXT['LOGGED_IN'] = 'Logged-In';
228
$TEXT['WELCOME_BACK'] = 'Welcome back';
229
$TEXT['FULL_NAME'] = 'Full Name';
230
$TEXT['ACCOUNT_SIGNUP'] = 'Account Sign-Up';
231
$TEXT['LINK'] = 'Link';
232 565 thorn
$TEXT['ANCHOR'] = 'Anchor';
233 552 thorn
$TEXT['TARGET'] = 'Target';
234
$TEXT['NEW_WINDOW'] = 'New Window';
235
$TEXT['SAME_WINDOW'] = 'Same Window';
236
$TEXT['TOP_FRAME'] = 'Top Frame';
237
$TEXT['PAGE_LEVEL_LIMIT'] = 'Page Level Limit';
238
$TEXT['SUCCESS'] = 'Success';
239
$TEXT['ERROR'] = 'Error';
240
$TEXT['ARE_YOU_SURE'] = 'Are you sure?';
241
$TEXT['YES'] = 'Yes';
242
$TEXT['NO'] = 'No';
243
$TEXT['SYSTEM_DEFAULT'] = 'System Default';
244
$TEXT['PAGE_TITLE'] = 'Page Title';
245
$TEXT['MENU_TITLE'] = 'Menu Title';
246
$TEXT['ACTIONS'] = 'Actions';
247
$TEXT['UNKNOWN'] = 'Unknown';
248
$TEXT['BLOCK'] = 'Block';
249
$TEXT['SEARCH'] = 'Search';
250
$TEXT['SEARCHING'] = 'Searching';
251
$TEXT['POST'] = 'Post';
252
$TEXT['COMMENT'] = 'Comment';
253
$TEXT['COMMENTS'] = 'Comments';
254
$TEXT['COMMENTING'] = 'Commenting';
255
$TEXT['SHORT'] = 'Short';
256
$TEXT['LONG'] = 'Long';
257
$TEXT['LOOP'] = 'Loop';
258
$TEXT['FIELD'] = 'Field';
259
$TEXT['REQUIRED'] = 'Required';
260
$TEXT['LENGTH'] = 'Length';
261
$TEXT['MESSAGE'] = 'Message';
262
$TEXT['SUBJECT'] = 'Subject';
263
$TEXT['MATCH'] = 'Match';
264
$TEXT['ALL_WORDS'] = 'All Words';
265
$TEXT['ANY_WORDS'] = 'Any Words';
266
$TEXT['EXACT_MATCH'] = 'Exact Match';
267
$TEXT['SHOW'] = 'Show';
268
$TEXT['HIDE'] = 'Hide';
269
$TEXT['START_PUBLISHING'] = 'Start Publishing';
270
$TEXT['FINISH_PUBLISHING'] = 'Finish Publishing';
271
$TEXT['DATE'] = 'Date';
272
$TEXT['START'] = 'Start';
273
$TEXT['END'] = 'End';
274
$TEXT['IMAGE'] = 'Image';
275
$TEXT['ICON'] = 'Icon';
276
$TEXT['SECTION'] = 'Section';
277
$TEXT['DATE_FORMAT'] = 'Date Format';
278
$TEXT['TIME_FORMAT'] = 'Time Format';
279
$TEXT['RESULTS'] = 'Results';
280
$TEXT['RESIZE'] = 'Re-size';
281
$TEXT['MANAGE'] = 'Manage';
282
$TEXT['CODE'] = 'Code';
283
$TEXT['WIDTH'] = 'Width';
284
$TEXT['HEIGHT'] = 'Height';
285
$TEXT['MORE'] = 'More';
286
$TEXT['READ_MORE'] = 'Read More';
287
$TEXT['CHANGE_SETTINGS'] = 'Change Settings';
288
$TEXT['CURRENT_PAGE'] = 'Current Page';
289
$TEXT['CLOSE'] = 'Close';
290
$TEXT['INTRO_PAGE'] = 'Intro Page';
291
$TEXT['INSTALLATION_URL'] = 'Installation URL';
292
$TEXT['INSTALLATION_PATH'] = 'Installation Path';
293
$TEXT['PAGE_EXTENSION'] = 'Page Extension';
294
$TEXT['NO_RESULTS'] = 'No Results';
295
$TEXT['WEBSITE_TITLE'] = 'Website Title';
296
$TEXT['WEBSITE_DESCRIPTION'] = 'Website Description';
297
$TEXT['WEBSITE_KEYWORDS'] = 'Website Keywords';
298
$TEXT['WEBSITE_HEADER'] = 'Website Header';
299
$TEXT['WEBSITE_FOOTER'] = 'Website Footer';
300
$TEXT['RESULTS_HEADER'] = 'Results Header';
301
$TEXT['RESULTS_LOOP'] = 'Results Loop';
302
$TEXT['RESULTS_FOOTER'] = 'Results Footer';
303
$TEXT['LEVEL'] = 'Level';
304
$TEXT['NOT_FOUND'] = 'Not Found';
305
$TEXT['PAGE_SPACER'] = 'Page Spacer';
306
$TEXT['MATCHING'] = 'Matching';
307
$TEXT['TEMPLATE_PERMISSIONS'] = 'Template Permissions';
308
$TEXT['PAGES_DIRECTORY'] = 'Pages Directory';
309
$TEXT['MEDIA_DIRECTORY'] = 'Media Directory';
310
$TEXT['FILE_MODE'] = 'File Mode';
311
$TEXT['USER'] = 'User';
312
$TEXT['OTHERS'] = 'Others';
313
$TEXT['READ'] = 'Read';
314
$TEXT['WRITE'] = 'Write';
315
$TEXT['EXECUTE'] = 'Execute';
316
$TEXT['SMART_LOGIN'] = 'Smart Login';
317
$TEXT['REMEMBER_ME'] = 'Remember Me';
318
$TEXT['FILESYSTEM_PERMISSIONS'] = 'Filesystem Permissions';
319
$TEXT['DIRECTORIES'] = 'Directories';
320
$TEXT['DIRECTORY_MODE'] = 'Directory Mode';
321
$TEXT['LIST_OPTIONS'] = 'List Options';
322
$TEXT['OPTION'] = 'Option';
323
$TEXT['ALLOW_MULTIPLE_SELECTIONS'] = 'Allow Multiple Selections';
324
$TEXT['TEXTFIELD'] = 'Textfield';
325
$TEXT['TEXTAREA'] = 'Textarea';
326
$TEXT['SELECT_BOX'] = 'Select Box';
327
$TEXT['CHECKBOX_GROUP'] = 'Checkbox Group';
328
$TEXT['RADIO_BUTTON_GROUP'] = 'Radio Button Group';
329
$TEXT['SIZE'] = 'Size';
330
$TEXT['DEFAULT_TEXT'] = 'Default Text';
331
$TEXT['SEPERATOR'] = 'Separator';
332
$TEXT['BACK'] = 'Back';
333
$TEXT['UNDER_CONSTRUCTION'] = 'Under Construction';
334
$TEXT['MULTISELECT'] = 'Multi-select';
335
$TEXT['SHORT_TEXT'] = 'Short Text';
336
$TEXT['LONG_TEXT'] = 'Long Text';
337
$TEXT['HOMEPAGE_REDIRECTION'] = 'Homepage Redirection';
338
$TEXT['HEADING'] = 'Heading';
339
$TEXT['MULTIPLE_MENUS'] = 'Multiple Menus';
340
$TEXT['REGISTERED'] = 'Registered';
341
$TEXT['SECTION_BLOCKS'] = 'Section Blocks';
342
$TEXT['REGISTERED_VIEWERS'] = 'Registered Viewers';
343
$TEXT['ALLOWED_VIEWERS'] = 'Allowed Viewers';
344
$TEXT['SUBMISSION_ID'] = 'Submission ID';
345
$TEXT['SUBMISSIONS'] = 'Submissions';
346
$TEXT['SUBMITTED'] = 'Submitted';
347
$TEXT['MAX_SUBMISSIONS_PER_HOUR'] = 'Max. Submissions Per Hour';
348
$TEXT['SUBMISSIONS_STORED_IN_DATABASE'] = 'Submissions Stored In Database';
349
$TEXT['EMAIL_ADDRESS'] = 'Email Address';
350
$TEXT['CUSTOM'] = 'Custom';
351
$TEXT['ANONYMOUS'] = 'Anonymous';
352
$TEXT['SERVER_OPERATING_SYSTEM'] = 'Server Operating System';
353
$TEXT['WORLD_WRITEABLE_FILE_PERMISSIONS'] = 'World-writeable file permissions';
354
$TEXT['LINUX_UNIX_BASED'] = 'Linux/Unix based';
355
$TEXT['WINDOWS'] = 'Windows';
356
$TEXT['HOME_FOLDER'] = 'Home Folder';
357
$TEXT['HOME_FOLDERS'] = 'Home Folders';
358
$TEXT['PAGE_TRASH'] = 'Page Trash';
359
$TEXT['INLINE'] = 'In-line';
360
$TEXT['SEPARATE'] = 'Separate';
361
$TEXT['DELETED'] = 'Deleted';
362
$TEXT['VIEW_DELETED_PAGES'] = 'View Deleted Pages';
363
$TEXT['EMPTY_TRASH'] = 'Empty Trash';
364
$TEXT['TRASH_EMPTIED'] = 'Trash Emptied';
365
$TEXT['ADD_SECTION'] = 'Add Section';
366
$TEXT['POST_HEADER'] = 'Post Header';
367
$TEXT['POST_FOOTER'] = 'Post Footer';
368
$TEXT['POSTS_PER_PAGE'] = 'Posts Per Page';
369
$TEXT['RESIZE_IMAGE_TO'] = 'Resize Image To';
370
$TEXT['UNLIMITED'] = 'Unlimited';
371
$TEXT['OF'] = 'Of';
372
$TEXT['OUT_OF'] = 'Out Of';
373
$TEXT['NEXT'] = 'Next';
374
$TEXT['PREVIOUS'] = 'Previous';
375
$TEXT['NEXT_PAGE'] = 'Next Page';
376
$TEXT['PREVIOUS_PAGE'] = 'Previous Page';
377
$TEXT['ON'] = 'On';
378
$TEXT['LAST_UPDATED_BY'] = 'Last Updated By';
379
$TEXT['RESULTS_FOR'] = 'Results For';
380
$TEXT['TIME'] = 'Time';
381 929 doc
$TEXT['REDIRECT_AFTER'] = 'Redirect after';
382 552 thorn
$TEXT['WYSIWYG_STYLE'] = 'WYSIWYG Style';
383 711 Ruebenwurz
$TEXT['WYSIWYG_EDITOR'] = 'WYSIWYG Editor';
384 607 Ruebenwurz
$TEXT['SERVER_EMAIL'] = 'Server Email';
385 552 thorn
$TEXT['MENU'] = 'Menu';
386
$TEXT['MANAGE_GROUPS'] = 'Manage Groups';
387
$TEXT['MANAGE_USERS'] = 'Manage Users';
388
$TEXT['PAGE_LANGUAGES'] = 'Page Languages';
389
$TEXT['HIDDEN'] = 'Hidden';
390
$TEXT['MAIN'] = 'Main';
391
$TEXT['RENAME_FILES_ON_UPLOAD'] = 'Rename Files On Upload';
392
$TEXT['APP_NAME'] = 'Application Name';
393
$TEXT['SESSION_IDENTIFIER'] = 'Session Identifier';
394 871 thorn
$TEXT['SEC_ANCHOR'] = 'Section-Anchor text';
395 552 thorn
$TEXT['BACKUP'] = 'Backup';
396
$TEXT['RESTORE'] = 'Restore';
397
$TEXT['BACKUP_DATABASE'] = 'Backup Database';
398
$TEXT['RESTORE_DATABASE'] = 'Restore Database';
399 607 Ruebenwurz
$TEXT['BACKUP_ALL_TABLES'] = 'Backup all tables in database';
400
$TEXT['BACKUP_WB_SPECIFIC'] = 'Backup only WB-specific tables';
401 552 thorn
$TEXT['BACKUP_MEDIA'] = 'Backup Media';
402
$TEXT['RESTORE_MEDIA'] = 'Restore Media';
403
$TEXT['ADMINISTRATION_TOOL'] = 'Administration tool';
404
$TEXT['CAPTCHA_VERIFICATION'] = 'Captcha Verification';
405
$TEXT['VERIFICATION'] = 'Verification';
406
$TEXT['DEFAULT_CHARSET'] = 'Default Charset';
407
$TEXT['CHARSET'] = 'Charset';
408
$TEXT['MODULE_ORDER'] = 'Module-order for searching';
409
$TEXT['MAX_EXCERPT'] = 'Max lines of excerpt';
410 769 thorn
$TEXT['TIME_LIMIT'] = 'Max time to gather excerpts per module';
411 552 thorn
$TEXT['PUBL_START_DATE'] = 'Start date';
412
$TEXT['PUBL_END_DATE'] = 'End date';
413 786 doc
$TEXT['CALENDAR'] = 'Calendar';
414 660 thorn
$TEXT['DELETE_DATE'] = 'Delete date';
415 568 doc
$TEXT['WBMAILER_DEFAULT_SETTINGS_NOTICE'] = 'Please specify a default "FROM" address and "SENDER" name below. It is recommended to use a FROM address like: <strong>admin@yourdomain.com</strong>. Some mail provider (e.g. <em>mail.com</em>) may reject mails with a FROM: address like <em>name@mail.com</em> sent via a foreign relay to avoid spam.<br /><br />The default values are only used if no other values are specified by Website Baker. If your server supports <acronym title="Simple mail transfer protocol">SMTP</acronym>, you may want use this option for outgoing mails.';
416
$TEXT['WBMAILER_DEFAULT_SENDER_MAIL'] = 'Default From Mail';
417
$TEXT['WBMAILER_DEFAULT_SENDER_NAME'] = 'Default Sender Name';
418
$TEXT['WBMAILER_NOTICE'] = '<strong>SMTP Mailer Settings:</strong><br />The settings below are only required if you want to send mails via <acronym title="Simple mail transfer protocol">SMTP</acronym>. If you do not know your SMTP host or you are not sure about the required settings, simply stay with the default mail routine: PHP MAIL.';
419
$TEXT['WBMAILER_FUNCTION'] = 'Mail Routine';
420
$TEXT['WBMAILER_SMTP_HOST'] = 'SMTP Host';
421 552 thorn
$TEXT['WBMAILER_PHP'] = 'PHP MAIL';
422
$TEXT['WBMAILER_SMTP'] = 'SMTP';
423 568 doc
$TEXT['WBMAILER_SMTP_AUTH'] = 'SMTP Authentification';
424 552 thorn
$TEXT['WBMAILER_SMTP_AUTH_NOTICE'] = 'only activate if your SMTP host requires authentification';
425 568 doc
$TEXT['WBMAILER_SMTP_USERNAME'] = 'SMTP Username';
426
$TEXT['WBMAILER_SMTP_PASSWORD'] = 'SMTP Password';
427 552 thorn
$TEXT['PLEASE_LOGIN'] = 'Please login';
428 808 Ruebenwurz
$TEXT['CAP_EDIT_CSS'] = 'Edit CSS';
429
$TEXT['HEADING_CSS_FILE'] = 'Actual module file: ';
430
$TEXT['TXT_EDIT_CSS_FILE'] = 'Edit the CSS definitions in the textarea below.';
431 903 aldus
$TEXT['CODE_SNIPPET'] = "Code-snippet";
432 925 doc
$TEXT['REQUIREMENT'] = "Requirement";
433
$TEXT['INSTALLED'] = "installed";
434
$TEXT['NOT_INSTALLED'] = "not installed";
435
$TEXT['ADDON'] = "Add-On";
436
$TEXT['EXTENSION'] = "Extension";
437 552 thorn
438
// Success/error messages
439
$MESSAGE['FRONTEND']['SORRY_NO_VIEWING_PERMISSIONS'] = 'Sorry, you do not have permissions to view this page';
440
$MESSAGE['FRONTEND']['SORRY_NO_ACTIVE_SECTIONS'] = 'Sorry, no active content to display';
441
442
$MESSAGE['ADMIN']['INSUFFICIENT_PRIVELLIGES'] = 'Insufficient privelliges to be here';
443
444
$MESSAGE['LOGIN']['BOTH_BLANK'] = 'Please enter your username and password below';
445
$MESSAGE['LOGIN']['USERNAME_BLANK'] = 'Please enter a username';
446
$MESSAGE['LOGIN']['PASSWORD_BLANK'] = 'Please enter a password';
447
$MESSAGE['LOGIN']['USERNAME_TOO_SHORT'] = 'Supplied username to short';
448
$MESSAGE['LOGIN']['PASSWORD_TOO_SHORT'] = 'Supplied password to short';
449
$MESSAGE['LOGIN']['USERNAME_TOO_LONG'] = 'Supplied username to long';
450
$MESSAGE['LOGIN']['PASSWORD_TOO_LONG'] = 'Supplied password to long';
451
$MESSAGE['LOGIN']['AUTHENTICATION_FAILED'] = 'Username or password incorrect';
452
453
$MESSAGE['SIGNUP']['NO_EMAIL'] = 'You must enter an email address';
454 921 doc
$MESSAGE['SIGNUP2']['SUBJECT_LOGIN_INFO'] = 'Your login details...';
455
$MESSAGE['SIGNUP2']['BODY_LOGIN_INFO'] = <<< EOT
456
Hello {LOGIN_DISPLAY_NAME},
457 552 thorn
458 921 doc
Your '{LOGIN_WEBSITE_TITLE}' login details are:
459
Username: {LOGIN_NAME}
460
Password: {LOGIN_PASSWORD}
461
462
Your password has been set to the one above.
463
This means that your old password will no longer work.
464
465
If you have received this message in error, please delete it immediately.
466
EOT;
467
468 552 thorn
$MESSAGE['FORGOT_PASS']['NO_DATA'] = 'Please enter your email address below';
469
$MESSAGE['FORGOT_PASS']['EMAIL_NOT_FOUND'] = 'The email that you entered cannot be found in the database';
470
$MESSAGE['FORGOT_PASS']['CANNOT_EMAIL'] = 'Unable to email password, please contact system administrator';
471
$MESSAGE['FORGOT_PASS']['PASSWORD_RESET'] = 'Your username and password have been sent to your email address';
472
$MESSAGE['FORGOT_PASS']['ALREADY_RESET'] = 'Password cannot be reset more than once per hour, sorry';
473
474
$MESSAGE['START']['WELCOME_MESSAGE'] = 'Welcome to Website Baker Administration';
475
$MESSAGE['START']['INSTALL_DIR_EXISTS'] = 'Warning, Installation Directory Still Exists!';
476
$MESSAGE['START']['CURRENT_USER'] = 'You are currently logged in as:';
477
478
$MESSAGE['SETTINGS']['UNABLE_OPEN_CONFIG'] = 'Unable to open the configuration file';
479
$MESSAGE['SETTINGS']['UNABLE_WRITE_CONFIG'] = 'Cannot write to configuration file';
480
$MESSAGE['SETTINGS']['SAVED'] = 'Settings saved successfully';
481
$MESSAGE['SETTINGS']['MODE_SWITCH_WARNING'] = 'Please Note: Pressing this button resets all unsaved changes';
482
$MESSAGE['SETTINGS']['WORLD_WRITEABLE_WARNING'] = 'Please note: this is only recommended for testing environments';
483
484
$MESSAGE['USERS']['ADDED'] = 'User added successfully';
485
$MESSAGE['USERS']['SAVED'] = 'User saved successfully';
486
$MESSAGE['USERS']['DELETED'] = 'User deleted successfully';
487
$MESSAGE['USERS']['NO_GROUP'] = 'No group was selected';
488
$MESSAGE['USERS']['USERNAME_TOO_SHORT'] = 'The username you entered was too short';
489
$MESSAGE['USERS']['PASSWORD_TOO_SHORT'] = 'The password you entered was too short';
490
$MESSAGE['USERS']['PASSWORD_MISMATCH'] = 'The passwords you entered do not match';
491
$MESSAGE['USERS']['INVALID_EMAIL'] = 'The email address you entered is invalid';
492
$MESSAGE['USERS']['EMAIL_TAKEN'] = 'The email you entered is already in use';
493
$MESSAGE['USERS']['USERNAME_TAKEN'] = 'The username you entered is already taken';
494
$MESSAGE['USERS']['CHANGING_PASSWORD'] = 'Please note: You should only enter values in the above fields if you wish to change this users password';
495
$MESSAGE['USERS']['CONFIRM_DELETE'] = 'Are you sure you want to delete the selected user?';
496
497
$MESSAGE['GROUPS']['ADDED'] = 'Group added successfully';
498
$MESSAGE['GROUPS']['SAVED'] = 'Group saved successfully';
499
$MESSAGE['GROUPS']['DELETED'] = 'Group deleted successfully';
500
$MESSAGE['GROUPS']['GROUP_NAME_BLANK'] = 'Group name is blank';
501
$MESSAGE['GROUPS']['CONFIRM_DELETE'] = 'Are you sure you want to delete the selected group (and any users that belong to it)?';
502
$MESSAGE['GROUPS']['NO_GROUPS_FOUND'] = 'No groups found';
503
$MESSAGE['GROUPS']['GROUP_NAME_EXISTS'] = 'Group name already exists';
504
505
$MESSAGE['PREFERENCES']['DETAILS_SAVED'] = 'Details saved successfully';
506
$MESSAGE['PREFERENCES']['EMAIL_UPDATED'] = 'Email updated successfully';
507
$MESSAGE['PREFERENCES']['CURRENT_PASSWORD_INCORRECT'] = 'The (current) password you entered is incorrect';
508
$MESSAGE['PREFERENCES']['PASSWORD_CHANGED'] = 'Password changed successfully';
509
510
$MESSAGE['TEMPLATES']['CHANGE_TEMPLATE_NOTICE'] = 'Please note: to change the template you must go to the Settings section';
511
512
$MESSAGE['MEDIA']['DIR_DOT_DOT_SLASH'] = 'Cannot include ../ in the folder name';
513
$MESSAGE['MEDIA']['DIR_DOES_NOT_EXIST'] = 'Directory does not exist';
514
$MESSAGE['MEDIA']['TARGET_DOT_DOT_SLASH'] = 'Cannot have ../ in the folder target';
515
$MESSAGE['MEDIA']['NAME_DOT_DOT_SLASH'] = 'Cannot include ../ in the name';
516
$MESSAGE['MEDIA']['NAME_INDEX_PHP'] = 'Cannot use index.php as the name';
517
$MESSAGE['MEDIA']['NONE_FOUND'] = 'No media found in the current folder';
518
$MESSAGE['MEDIA']['FILE_NOT_FOUND'] = 'File not found';
519
$MESSAGE['MEDIA']['DELETED_FILE'] = 'File deleted successfully';
520
$MESSAGE['MEDIA']['DELETED_DIR'] = 'Folder deleted successfully';
521
$MESSAGE['MEDIA']['CONFIRM_DELETE'] = 'Are you sure you want to delete the following file or folder?';
522
$MESSAGE['MEDIA']['CANNOT_DELETE_FILE'] = 'Cannot delete the selected file';
523
$MESSAGE['MEDIA']['CANNOT_DELETE_DIR'] = 'Cannot delete the selected folder';
524
$MESSAGE['MEDIA']['BLANK_NAME'] = 'You did not enter a new name';
525
$MESSAGE['MEDIA']['BLANK_EXTENSION'] = 'You did not enter a file extension';
526
$MESSAGE['MEDIA']['RENAMED'] = 'Rename successful';
527
$MESSAGE['MEDIA']['CANNOT_RENAME'] = 'Rename unsuccessful';
528
$MESSAGE['MEDIA']['FILE_EXISTS'] = 'A file matching the name you entered already exists';
529
$MESSAGE['MEDIA']['DIR_EXISTS'] = 'A folder matching the name you entered already exists';
530
$MESSAGE['MEDIA']['DIR_MADE'] = 'Folder created successfully';
531
$MESSAGE['MEDIA']['DIR_NOT_MADE'] = 'Unable to create folder';
532
$MESSAGE['MEDIA']['SINGLE_UPLOADED'] = ' file was successfully uploaded';
533
$MESSAGE['MEDIA']['UPLOADED'] = ' files were successfully uploaded';
534
535
$MESSAGE['PAGES']['ADDED'] = 'Page added successfully';
536
$MESSAGE['PAGES']['ADDED_HEADING'] = 'Page heading added successfully';
537
$MESSAGE['PAGES']['PAGE_EXISTS'] = 'A page with the same or similar title exists';
538
$MESSAGE['PAGES']['CANNOT_CREATE_ACCESS_FILE'] = 'Error creating access file in the /pages directory (insufficient privileges)';
539
$MESSAGE['PAGES']['CANNOT_DELETE_ACCESS_FILE'] = 'Error deleting access file in the /pages directory (insufficient privileges)';
540
$MESSAGE['PAGES']['NOT_FOUND'] = 'Page not found';
541
$MESSAGE['PAGES']['SAVED'] = 'Page saved successfully';
542
$MESSAGE['PAGES']['SAVED_SETTINGS'] = 'Page settings saved successfully';
543
$MESSAGE['PAGES']['NOT_SAVED'] = 'Error saving page';
544
$MESSAGE['PAGES']['DELETE_CONFIRM'] = 'Are you sure you want to delete the selected page (and all of its sub-pages)';
545
$MESSAGE['PAGES']['DELETED'] = 'Page deleted successfully';
546
$MESSAGE['PAGES']['RESTORED'] = 'Page restored successfully';
547
$MESSAGE['PAGES']['BLANK_PAGE_TITLE'] = 'Please enter a page title';
548
$MESSAGE['PAGES']['BLANK_MENU_TITLE'] = 'Please enter a menu title';
549
$MESSAGE['PAGES']['REORDERED'] = 'Page re-ordered successfully';
550
$MESSAGE['PAGES']['CANNOT_REORDER'] = 'Error re-ordering page';
551
$MESSAGE['PAGES']['INSUFFICIENT_PERMISSIONS'] = 'You do not have permissions to modify this page';
552
$MESSAGE['PAGES']['INTRO_NOT_WRITABLE'] = 'Cannot write to file /pages/intro.php (insufficient privileges)';
553
$MESSAGE['PAGES']['INTRO_SAVED'] = 'Intro page saved successfully';
554
$MESSAGE['PAGES']['LAST_MODIFIED'] = 'Last modification by';
555
$MESSAGE['PAGES']['INTRO_LINK'] = 'Click HERE to modify the intro page';
556
$MESSAGE['PAGES']['SECTIONS_PROPERTIES_SAVED'] = 'Section properties saved successfully';
557
$MESSAGE['PAGES']['RETURN_TO_PAGES'] = 'Return to pages';
558
559
$MESSAGE['GENERIC']['FILL_IN_ALL'] = 'Please go back and fill-in all fields';
560
$MESSAGE['GENERIC']['FILE_TYPE'] = 'Please note that the file you upload must be of the following format:';
561
$MESSAGE['GENERIC']['FILE_TYPES'] = 'Please note that the file you upload must be in one of the following formats:';
562
$MESSAGE['GENERIC']['CANNOT_UPLOAD'] = 'Cannot upload file';
563
$MESSAGE['GENERIC']['ALREADY_INSTALLED'] = 'Already installed';
564
$MESSAGE['GENERIC']['NOT_INSTALLED'] = 'Not installed';
565
$MESSAGE['GENERIC']['CANNOT_UNINSTALL'] = 'Cannot uninstall';
566
$MESSAGE['GENERIC']['CANNOT_UNZIP'] = 'Cannot unzip file';
567
$MESSAGE['GENERIC']['INSTALLED'] = 'Installed successfully';
568
$MESSAGE['GENERIC']['UPGRADED'] = 'Upgraded successfully';
569
$MESSAGE['GENERIC']['UNINSTALLED'] = 'Uninstalled successfully';
570
$MESSAGE['GENERIC']['BAD_PERMISSIONS'] = 'Unable to write to the target directory';
571
$MESSAGE['GENERIC']['INVALID'] = 'The file you uploaded is invalid';
572
$MESSAGE['GENERIC']['CANNOT_UNINSTALL_IN_USE'] = 'Cannot Uninstall: the selected file is in use';
573 897 Ruebenwurz
574
$MESSAGE['GENERIC']['CANNOT_UNINSTALL_IN_USE_TMPL'] = "<br /><br />{{type}} <b>{{type_name}}</b> could not be uninstalled, because it is still in use on {{pages}}.<br /><br />";
575
$MESSAGE['GENERIC']['CANNOT_UNINSTALL_IN_USE_TMPL_PAGES'] = "this page;these pages";
576
$MESSAGE['GENERIC']['CANNOT_UNINSTALL_IS_DEFAULT_TEMPLATE'] = "Can't uninstall the template <b>{{name}}</b>, because it is the default template!";
577
578 552 thorn
$MESSAGE['GENERIC']['WEBSITE_UNDER_CONSTRUCTION'] = 'Website Under Construction';
579
$MESSAGE['GENERIC']['PLEASE_CHECK_BACK_SOON'] = 'Please check back soon...';
580
$MESSAGE['GENERIC']['PLEASE_BE_PATIENT'] = 'Please be patient, this might take a while.';
581
$MESSAGE['GENERIC']['ERROR_OPENING_FILE'] = 'Error opening file.';
582 925 doc
$MESSAGE['GENERIC']['INVALID_ADDON_FILE'] = 'Invalid Website Baker installation file. Please check the *.zip format.';
583
$MESSAGE['GENERIC']['INVALID_LANGUAGE_FILE'] = 'Invalid Website Baker language file. Please check the text file.';
584 552 thorn
585
$MESSAGE['MOD_FORM']['REQUIRED_FIELDS'] = 'You must enter details for the following fields';
586
$MESSAGE['MOD_FORM']['EXCESS_SUBMISSIONS'] = 'Sorry, this form has been submitted too many times so far this hour. Please retry in the next hour.';
587 821 thorn
$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: '.SERVER_EMAIL.'';
588 552 thorn
589 928 doc
$MESSAGE['ADDON']['RELOAD'] = 'The button below updates the information in the database with the data stored in the Add-On "info.php" files. This may be required if you have uploaded Addons via FTP.';
590
$MESSAGE['ADDON']['ERROR_RELOAD'] = 'Error while updating the Add-On information.';
591
$MESSAGE['ADDON']['MODULES_RELOADED'] = 'Modules reloaded successfully';
592
$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'Templates reloaded successfully';
593
$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Languages reloaded successfully';
594
$MESSAGE['ADDON']['PRECHECK_FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.';
595 634 Ruebenwurz
596
?>