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