|
ZenCart_Documentation
1.5.0
http://www.collinsharper.com
|
00001 <?php 00009 if (!defined('IS_ADMIN_FLAG')) 00010 { 00011 die('Illegal Access'); 00012 } 00013 00014 // added defines for header alt and text 00015 define('HEADER_ALT_TEXT', 'Admin Powered by Zen Cart :: The Art of E-Commerce'); 00016 define('HEADER_LOGO_WIDTH', '200px'); 00017 define('HEADER_LOGO_HEIGHT', '70px'); 00018 define('HEADER_LOGO_IMAGE', 'logo.gif'); 00019 00020 // look in your $PATH_LOCALE/locale directory for available locales.. 00021 setlocale(LC_TIME, 'en_US'); 00022 define('DATE_FORMAT_SHORT', '%m/%d/%Y'); // this is used for strftime() 00023 define('DATE_FORMAT_LONG', '%A %d %B, %Y'); // this is used for strftime() 00024 define('DATE_FORMAT', 'm/d/Y'); // this is used for date() 00025 define('PHP_DATE_TIME_FORMAT', 'm/d/Y H:i:s'); // this is used for date() 00026 define('DATE_TIME_FORMAT', DATE_FORMAT_SHORT . ' %H:%M:%S'); 00027 define('DATE_FORMAT_SPIFFYCAL', 'MM/dd/yyyy'); //Use only 'dd', 'MM' and 'yyyy' here in any order 00028 00030 // Return date in raw format 00031 // $date should be in format mm/dd/yyyy 00032 // raw date is in format YYYYMMDD, or DDMMYYYY 00033 function zen_date_raw($date, $reverse = false) { 00034 if ($reverse) { 00035 return substr($date, 3, 2) . substr($date, 0, 2) . substr($date, 6, 4); 00036 } else { 00037 return substr($date, 6, 4) . substr($date, 0, 2) . substr($date, 3, 2); 00038 } 00039 } 00040 00041 // removed for meta tags 00042 // page title 00043 //define('TITLE', 'Zen Cart'); 00044 00045 // include template specific meta tags defines 00046 if (file_exists(DIR_FS_CATALOG_LANGUAGES . $_SESSION['language'] . '/' . $template_dir . '/meta_tags.php')) { 00047 $template_dir_select = $template_dir . '/'; 00048 } else { 00049 $template_dir_select = ''; 00050 } 00051 require(DIR_FS_CATALOG_LANGUAGES . $_SESSION['language'] . '/' . $template_dir_select . 'meta_tags.php'); 00052 00053 // meta tags 00054 define('ICON_METATAGS_ON', 'Meta Tags Defined'); 00055 define('ICON_METATAGS_OFF', 'Meta Tags Undefined'); 00056 define('TEXT_LEGEND_META_TAGS', 'Meta Tags Defined:'); 00057 define('TEXT_INFO_META_TAGS_USAGE', '<strong>NOTE:</strong> The Site/Tagline is your defined definition for your site in the meta_tags.php file.'); 00058 00059 // Global entries for the <html> tag 00060 define('HTML_PARAMS','dir="ltr" lang="en"'); 00061 00062 // charset for web pages and emails 00063 define('CHARSET', 'utf-8'); 00064 00065 // header text in includes/header.php 00066 define('HEADER_TITLE_TOP', 'Admin Home'); 00067 define('HEADER_TITLE_SUPPORT_SITE', 'Support Site'); 00068 define('HEADER_TITLE_ONLINE_CATALOG', 'Online Catalog'); 00069 define('HEADER_TITLE_VERSION', 'Version'); 00070 define('HEADER_TITLE_ACCOUNT', 'Account'); 00071 define('HEADER_TITLE_LOGOFF', 'Logoff'); 00072 //define('HEADER_TITLE_ADMINISTRATION', 'Administration'); 00073 00074 // Define the name of your Gift Certificate as Gift Voucher, Gift Certificate, Zen Cart Dollars, etc. here for use through out the shop 00075 define('TEXT_GV_NAME','Gift Certificate'); 00076 define('TEXT_GV_NAMES','Gift Certificates'); 00077 define('TEXT_DISCOUNT_COUPON', 'Discount Coupon'); 00078 00079 // used for redeem code, redemption code, or redemption id 00080 define('TEXT_GV_REDEEM','Redemption Code'); 00081 00082 // text for gender 00083 define('MALE', 'Male'); 00084 define('FEMALE', 'Female'); 00085 00086 // text for date of birth example 00087 define('DOB_FORMAT_STRING', 'mm/dd/yyyy'); 00088 00089 // configuration box text 00090 define('BOX_HEADING_CONFIGURATION', 'Configuration'); 00091 define('BOX_CONFIGURATION_MY_STORE', 'My Store'); 00092 define('BOX_CONFIGURATION_MINIMUM_VALUES', 'Minimum Values'); 00093 define('BOX_CONFIGURATION_MAXIMUM_VALUES', 'Maximum Values'); 00094 define('BOX_CONFIGURATION_IMAGES', 'Images'); 00095 define('BOX_CONFIGURATION_CUSTOMER_DETAILS', 'Customer Details'); 00096 define('BOX_CONFIGURATION_SHIPPING_PACKAGING', 'Shipping/Packaging'); 00097 define('BOX_CONFIGURATION_PRODUCT_LISTING', 'Product Listing'); 00098 define('BOX_CONFIGURATION_STOCK', 'Stock'); 00099 define('BOX_CONFIGURATION_LOGGING', 'Logging'); 00100 define('BOX_CONFIGURATION_EMAIL_OPTIONS', 'E-Mail Options'); 00101 define('BOX_CONFIGURATION_ATTRIBUTE_OPTIONS', 'Attribute Settings'); 00102 define('BOX_CONFIGURATION_GZIP_COMPRESSION', 'GZip Compression'); 00103 define('BOX_CONFIGURATION_SESSIONS', 'Sessions'); 00104 define('BOX_CONFIGURATION_REGULATIONS', 'Regulations'); 00105 define('BOX_CONFIGURATION_GV_COUPONS', 'GV Coupons'); 00106 define('BOX_CONFIGURATION_CREDIT_CARDS', 'Credit Cards'); 00107 define('BOX_CONFIGURATION_PRODUCT_INFO', 'Product Info'); 00108 define('BOX_CONFIGURATION_LAYOUT_SETTINGS', 'Layout Settings'); 00109 define('BOX_CONFIGURATION_WEBSITE_MAINTENANCE', 'Website Maintenance'); 00110 define('BOX_CONFIGURATION_NEW_LISTING', 'New Listing'); 00111 define('BOX_CONFIGURATION_FEATURED_LISTING', 'Featured Listing'); 00112 define('BOX_CONFIGURATION_ALL_LISTING', 'All Listing'); 00113 define('BOX_CONFIGURATION_INDEX_LISTING', 'Index Listing'); 00114 define('BOX_CONFIGURATION_DEFINE_PAGE_STATUS', 'Define Page Status'); 00115 define('BOX_CONFIGURATION_EZPAGES_SETTINGS', 'EZ-Pages Settings'); 00116 00117 // modules box text 00118 define('BOX_HEADING_MODULES', 'Modules'); 00119 define('BOX_MODULES_PAYMENT', 'Payment'); 00120 define('BOX_MODULES_SHIPPING', 'Shipping'); 00121 define('BOX_MODULES_ORDER_TOTAL', 'Order Total'); 00122 define('BOX_MODULES_PRODUCT_TYPES', 'Product Types'); 00123 00124 // categories box text 00125 define('BOX_HEADING_CATALOG', 'Catalog'); 00126 define('BOX_CATALOG_CATEGORIES_PRODUCTS', 'Categories/Products'); 00127 define('BOX_CATALOG_PRODUCT_TYPES', 'Product Types'); 00128 define('BOX_CATALOG_CATEGORIES_OPTIONS_NAME_MANAGER', 'Option Name Manager'); 00129 define('BOX_CATALOG_CATEGORIES_OPTIONS_VALUES_MANAGER', 'Option Value Manager'); 00130 define('BOX_CATALOG_MANUFACTURERS', 'Manufacturers'); 00131 define('BOX_CATALOG_REVIEWS', 'Reviews'); 00132 define('BOX_CATALOG_SPECIALS', 'Specials'); 00133 define('BOX_CATALOG_PRODUCTS_EXPECTED', 'Products Expected'); 00134 define('BOX_CATALOG_SALEMAKER', 'SaleMaker'); 00135 define('BOX_CATALOG_PRODUCTS_PRICE_MANAGER', 'Products Price Manager'); 00136 define('BOX_CATALOG_PRODUCT', 'Product'); 00137 define('BOX_CATALOG_PRODUCTS_TO_CATEGORIES', 'Products to Categories'); 00138 00139 // customers box text 00140 define('BOX_HEADING_CUSTOMERS', 'Customers'); 00141 define('BOX_CUSTOMERS_CUSTOMERS', 'Customers'); 00142 define('BOX_CUSTOMERS_ORDERS', 'Orders'); 00143 define('BOX_CUSTOMERS_GROUP_PRICING', 'Group Pricing'); 00144 define('BOX_CUSTOMERS_PAYPAL', 'PayPal IPN'); 00145 define('BOX_CUSTOMERS_INVOICE', 'Invoice'); 00146 define('BOX_CUSTOMERS_PACKING_SLIP', 'Packing Slip'); 00147 00148 // taxes box text 00149 define('BOX_HEADING_LOCATION_AND_TAXES', 'Locations / Taxes'); 00150 define('BOX_TAXES_COUNTRIES', 'Countries'); 00151 define('BOX_TAXES_ZONES', 'Zones'); 00152 define('BOX_TAXES_GEO_ZONES', 'Zones Definitions'); 00153 define('BOX_TAXES_TAX_CLASSES', 'Tax Classes'); 00154 define('BOX_TAXES_TAX_RATES', 'Tax Rates'); 00155 00156 // reports box text 00157 define('BOX_HEADING_REPORTS', 'Reports'); 00158 define('BOX_REPORTS_PRODUCTS_VIEWED', 'Products Viewed'); 00159 define('BOX_REPORTS_PRODUCTS_PURCHASED', 'Products Purchased'); 00160 define('BOX_REPORTS_ORDERS_TOTAL', 'Customer Orders-Total'); 00161 define('BOX_REPORTS_PRODUCTS_LOWSTOCK', 'Products Low Stock'); 00162 define('BOX_REPORTS_CUSTOMERS_REFERRALS', 'Customers Referral'); 00163 00164 // tools text 00165 define('BOX_HEADING_TOOLS', 'Tools'); 00166 define('BOX_TOOLS_TEMPLATE_SELECT', 'Template Selection'); 00167 define('BOX_TOOLS_BACKUP', 'Database Backup'); 00168 define('BOX_TOOLS_BANNER_MANAGER', 'Banner Manager'); 00169 define('BOX_TOOLS_CACHE', 'Cache Control'); 00170 define('BOX_TOOLS_DEFINE_LANGUAGE', 'Define Languages'); 00171 define('BOX_TOOLS_FILE_MANAGER', 'File Manager'); 00172 define('BOX_TOOLS_MAIL', 'Send Email'); 00173 define('BOX_TOOLS_NEWSLETTER_MANAGER', 'Newsletter and Product Notifications Manager'); 00174 define('BOX_TOOLS_SERVER_INFO', 'Server/Version Info'); 00175 define('BOX_TOOLS_WHOS_ONLINE', 'Who\'s Online'); 00176 define('BOX_TOOLS_STORE_MANAGER', 'Store Manager'); 00177 define('BOX_TOOLS_DEVELOPERS_TOOL_KIT', 'Developers Tool Kit'); 00178 define('BOX_TOOLS_SQLPATCH','Install SQL Patches'); 00179 define('BOX_TOOLS_EZPAGES','EZ-Pages'); 00180 00181 define('BOX_HEADING_EXTRAS', 'Extras'); 00182 00183 // define pages editor files 00184 define('BOX_TOOLS_DEFINE_PAGES_EDITOR','Define Pages Editor'); 00185 define('BOX_TOOLS_DEFINE_MAIN_PAGE', 'Main Page'); 00186 define('BOX_TOOLS_DEFINE_CONTACT_US','Contact Us'); 00187 define('BOX_TOOLS_DEFINE_PRIVACY','Privacy'); 00188 define('BOX_TOOLS_DEFINE_SHIPPINGINFO','Shipping & Returns'); 00189 define('BOX_TOOLS_DEFINE_CONDITIONS','Conditions of Use'); 00190 define('BOX_TOOLS_DEFINE_CHECKOUT_SUCCESS','Checkout Success'); 00191 define('BOX_TOOLS_DEFINE_PAGE_2','Page 2'); 00192 define('BOX_TOOLS_DEFINE_PAGE_3','Page 3'); 00193 define('BOX_TOOLS_DEFINE_PAGE_4','Page 4'); 00194 00195 // localization box text 00196 define('BOX_HEADING_LOCALIZATION', 'Localization'); 00197 define('BOX_LOCALIZATION_CURRENCIES', 'Currencies'); 00198 define('BOX_LOCALIZATION_LANGUAGES', 'Languages'); 00199 define('BOX_LOCALIZATION_ORDERS_STATUS', 'Orders Status'); 00200 00201 // gift vouchers box text 00202 define('BOX_HEADING_GV_ADMIN', TEXT_GV_NAME . '/Coupons'); 00203 define('BOX_GV_ADMIN_QUEUE', TEXT_GV_NAMES . ' Queue'); 00204 define('BOX_GV_ADMIN_MAIL', 'Mail ' . TEXT_GV_NAME); 00205 define('BOX_GV_ADMIN_SENT', TEXT_GV_NAMES . ' sent'); 00206 define('BOX_COUPON_ADMIN','Coupon Admin'); 00207 define('BOX_COUPON_RESTRICT','Coupon Restrictions'); 00208 00209 // admin access box text 00210 define('BOX_HEADING_ADMIN_ACCESS', 'Admin Access Management'); 00211 define('BOX_ADMIN_ACCESS_USERS', 'Admin Users'); 00212 define('BOX_ADMIN_ACCESS_PROFILES', 'Admin Profiles'); 00213 define('BOX_ADMIN_ACCESS_PAGE_REGISTRATION', 'Admin Page Registration'); 00214 define('BOX_ADMIN_ACCESS_LOGS', 'Admin Activity Logs'); 00215 00216 define('IMAGE_RELEASE', 'Redeem ' . TEXT_GV_NAME); 00217 00218 // javascript messages 00219 define('JS_ERROR', 'Errors have occurred during the processing of your form!\nPlease make the following corrections:\n\n'); 00220 00221 define('JS_OPTIONS_VALUE_PRICE', '* The new product attribute needs a price value\n'); 00222 define('JS_OPTIONS_VALUE_PRICE_PREFIX', '* The new product attribute needs a price prefix\n'); 00223 00224 define('JS_PRODUCTS_NAME', '* The new product needs a name\n'); 00225 define('JS_PRODUCTS_DESCRIPTION', '* The new product needs a description\n'); 00226 define('JS_PRODUCTS_PRICE', '* The new product needs a price value\n'); 00227 define('JS_PRODUCTS_WEIGHT', '* The new product needs a weight value\n'); 00228 define('JS_PRODUCTS_QUANTITY', '* The new product needs a quantity value\n'); 00229 define('JS_PRODUCTS_MODEL', '* The new product needs a model value\n'); 00230 define('JS_PRODUCTS_IMAGE', '* The new product needs an image value\n'); 00231 00232 define('JS_SPECIALS_PRODUCTS_PRICE', '* A new price for this product needs to be set\n'); 00233 00234 define('JS_GENDER', '* The \'Gender\' value must be chosen.\n'); 00235 define('JS_FIRST_NAME', '* The \'First Name\' entry must have at least ' . ENTRY_FIRST_NAME_MIN_LENGTH . ' characters.\n'); 00236 define('JS_LAST_NAME', '* The \'Last Name\' entry must have at least ' . ENTRY_LAST_NAME_MIN_LENGTH . ' characters.\n'); 00237 define('JS_DOB', '* The \'Date of Birth\' entry must be in the format: xx/xx/xxxx (month/date/year).\n'); 00238 define('JS_EMAIL_ADDRESS', '* The \'E-Mail Address\' entry must have at least ' . ENTRY_EMAIL_ADDRESS_MIN_LENGTH . ' characters.\n'); 00239 define('JS_ADDRESS', '* The \'Street Address\' entry must have at least ' . ENTRY_STREET_ADDRESS_MIN_LENGTH . ' characters.\n'); 00240 define('JS_POST_CODE', '* The \'Post Code\' entry must have at least ' . ENTRY_POSTCODE_MIN_LENGTH . ' characters.\n'); 00241 define('JS_CITY', '* The \'City\' entry must have at least ' . ENTRY_CITY_MIN_LENGTH . ' characters.\n'); 00242 define('JS_STATE', '* The \'State\' entry is must be selected.\n'); 00243 define('JS_STATE_SELECT', '-- Select Above --'); 00244 define('JS_ZONE', '* The \'State\' entry must be selected from the list for this country.'); 00245 define('JS_COUNTRY', '* The \'Country\' value must be chosen.\n'); 00246 define('JS_TELEPHONE', '* The \'Telephone Number\' entry must have at least ' . ENTRY_TELEPHONE_MIN_LENGTH . ' characters.\n'); 00247 00248 define('JS_ORDER_DOES_NOT_EXIST', 'Order Number %s does not exist!'); 00249 00250 define('CATEGORY_PERSONAL', 'Personal'); 00251 define('CATEGORY_ADDRESS', 'Address'); 00252 define('CATEGORY_CONTACT', 'Contact'); 00253 define('CATEGORY_COMPANY', 'Company'); 00254 define('CATEGORY_OPTIONS', 'Options'); 00255 00256 define('ENTRY_GENDER', 'Gender:'); 00257 define('ENTRY_GENDER_ERROR', ' <span class="errorText">required</span>'); 00258 define('ENTRY_FIRST_NAME', 'First Name:'); 00259 define('ENTRY_FIRST_NAME_ERROR', ' <span class="errorText">min ' . ENTRY_FIRST_NAME_MIN_LENGTH . ' chars</span>'); 00260 define('ENTRY_LAST_NAME', 'Last Name:'); 00261 define('ENTRY_LAST_NAME_ERROR', ' <span class="errorText">min ' . ENTRY_LAST_NAME_MIN_LENGTH . ' chars</span>'); 00262 define('ENTRY_DATE_OF_BIRTH', 'Date of Birth:'); 00263 define('ENTRY_DATE_OF_BIRTH_ERROR', ' <span class="errorText">(eg. 05/21/1970)</span>'); 00264 define('ENTRY_EMAIL_ADDRESS', 'E-Mail Address:'); 00265 define('ENTRY_EMAIL_ADDRESS_ERROR', ' <span class="errorText">min ' . ENTRY_EMAIL_ADDRESS_MIN_LENGTH . ' chars</span>'); 00266 define('ENTRY_EMAIL_ADDRESS_CHECK_ERROR', ' <span class="errorText">The email address doesn\'t appear to be valid!</span>'); 00267 define('ENTRY_EMAIL_ADDRESS_ERROR_EXISTS', ' <span class="errorText">This email address already exists!</span>'); 00268 define('ENTRY_COMPANY', 'Company name:'); 00269 define('ENTRY_COMPANY_ERROR', ''); 00270 define('ENTRY_PRICING_GROUP', 'Discount Pricing Group'); 00271 define('ENTRY_STREET_ADDRESS', 'Street Address:'); 00272 define('ENTRY_STREET_ADDRESS_ERROR', ' <span class="errorText">min ' . ENTRY_STREET_ADDRESS_MIN_LENGTH . ' chars</span>'); 00273 define('ENTRY_SUBURB', 'Suburb:'); 00274 define('ENTRY_SUBURB_ERROR', ''); 00275 define('ENTRY_POST_CODE', 'Post Code:'); 00276 define('ENTRY_POST_CODE_ERROR', ' <span class="errorText">min ' . ENTRY_POSTCODE_MIN_LENGTH . ' chars</span>'); 00277 define('ENTRY_CITY', 'City:'); 00278 define('ENTRY_CITY_ERROR', ' <span class="errorText">min ' . ENTRY_CITY_MIN_LENGTH . ' chars</span>'); 00279 define('ENTRY_STATE', 'State:'); 00280 define('ENTRY_STATE_ERROR', ' <span class="errorText">required</span>'); 00281 define('ENTRY_COUNTRY', 'Country:'); 00282 define('ENTRY_COUNTRY_ERROR', ''); 00283 define('ENTRY_TELEPHONE_NUMBER', 'Telephone Number:'); 00284 define('ENTRY_TELEPHONE_NUMBER_ERROR', ' <span class="errorText">min ' . ENTRY_TELEPHONE_MIN_LENGTH . ' chars</span>'); 00285 define('ENTRY_FAX_NUMBER', 'Fax Number:'); 00286 define('ENTRY_FAX_NUMBER_ERROR', ''); 00287 define('ENTRY_NEWSLETTER', 'Newsletter:'); 00288 define('ENTRY_NEWSLETTER_YES', 'Subscribed'); 00289 define('ENTRY_NEWSLETTER_NO', 'Unsubscribed'); 00290 define('ENTRY_NEWSLETTER_ERROR', ''); 00291 00292 define('ERROR_PASSWORDS_NOT_MATCHING', 'Password and confirmation must match'); 00293 define('ENTRY_PASSWORD_CHANGE_ERROR', '<strong>Sorry, your new password was rejected.</strong><br />'); 00294 define('ERROR_PASSWORD_RULES', 'Passwords must contain both letters and numbers, must be at least %s characters long, and must not be the same as the last 4 passwords used. Passwords expire every 90 days.'); 00295 define('ERROR_TOKEN_EXPIRED_PLEASE_RESUBMIT', 'ERROR: Sorry, there was an error processing your data. Please re-submit the information again.'); 00296 00297 // images 00298 //define('IMAGE_ANI_SEND_EMAIL', 'Sending E-Mail'); 00299 define('IMAGE_BACK', 'Back'); 00300 define('IMAGE_BACKUP', 'Backup'); 00301 define('IMAGE_CANCEL', 'Cancel'); 00302 define('IMAGE_CONFIRM', 'Confirm'); 00303 define('IMAGE_COPY', 'Copy'); 00304 define('IMAGE_COPY_TO', 'Copy To'); 00305 define('IMAGE_DETAILS', 'Details'); 00306 define('IMAGE_DELETE', 'Delete'); 00307 define('IMAGE_EDIT', 'Edit'); 00308 define('IMAGE_EMAIL', 'Email'); 00309 define('IMAGE_GO', 'Go'); 00310 define('IMAGE_FILE_MANAGER', 'File Manager'); 00311 define('IMAGE_ICON_STATUS_GREEN', 'Active'); 00312 define('IMAGE_ICON_STATUS_GREEN_LIGHT', 'Set Active'); 00313 define('IMAGE_ICON_STATUS_RED', 'Inactive'); 00314 define('IMAGE_ICON_STATUS_RED_LIGHT', 'Set Inactive'); 00315 define('IMAGE_ICON_STATUS_RED_EZPAGES', 'Error -- too many URL/content types entered'); 00316 define('IMAGE_ICON_STATUS_RED_ERROR', 'Error'); 00317 define('IMAGE_ICON_INFO', 'Info'); 00318 define('IMAGE_INSERT', 'Insert'); 00319 define('IMAGE_LOCK', 'Lock'); 00320 define('IMAGE_MODULE_INSTALL', 'Install Module'); 00321 define('IMAGE_MODULE_REMOVE', 'Remove Module'); 00322 define('IMAGE_MOVE', 'Move'); 00323 define('IMAGE_NEW_BANNER', 'New Banner'); 00324 define('IMAGE_NEW_CATEGORY', 'New Category'); 00325 define('IMAGE_NEW_COUNTRY', 'New Country'); 00326 define('IMAGE_NEW_CURRENCY', 'New Currency'); 00327 define('IMAGE_NEW_FILE', 'New File'); 00328 define('IMAGE_NEW_FOLDER', 'New Folder'); 00329 define('IMAGE_NEW_LANGUAGE', 'New Language'); 00330 define('IMAGE_NEW_NEWSLETTER', 'New Newsletter'); 00331 define('IMAGE_NEW_PRODUCT', 'New Product'); 00332 define('IMAGE_NEW_SALE', 'New Sale'); 00333 define('IMAGE_NEW_TAX_CLASS', 'New Tax Class'); 00334 define('IMAGE_NEW_TAX_RATE', 'New Tax Rate'); 00335 define('IMAGE_NEW_TAX_ZONE', 'New Tax Zone'); 00336 define('IMAGE_NEW_ZONE', 'New Zone'); 00337 define('IMAGE_OPTION_NAMES', 'Option Names Manager'); 00338 define('IMAGE_OPTION_VALUES', 'Option Values Manager'); 00339 define('IMAGE_ORDERS', 'Orders'); 00340 define('IMAGE_ORDERS_INVOICE', 'Invoice'); 00341 define('IMAGE_ORDERS_PACKINGSLIP', 'Packing Slip'); 00342 define('IMAGE_PERMISSIONS', 'Edit Permissions'); 00343 define('IMAGE_PREVIEW', 'Preview'); 00344 define('IMAGE_RESTORE', 'Restore'); 00345 define('IMAGE_RESET', 'Reset'); 00346 define('IMAGE_SAVE', 'Save'); 00347 define('IMAGE_SEARCH', 'Search'); 00348 define('IMAGE_SELECT', 'Select'); 00349 define('IMAGE_SEND', 'Send'); 00350 define('IMAGE_SEND_EMAIL', 'Send Email'); 00351 define('IMAGE_SUBMIT', 'Submit'); 00352 define('IMAGE_UNLOCK', 'Unlock'); 00353 define('IMAGE_UPDATE', 'Update'); 00354 define('IMAGE_UPDATE_CURRENCIES', 'Update Exchange Rate'); 00355 define('IMAGE_UPLOAD', 'Upload'); 00356 define('IMAGE_TAX_RATES','Tax Rate'); 00357 define('IMAGE_DEFINE_ZONES','Define Zones'); 00358 define('IMAGE_PRODUCTS_PRICE_MANAGER', 'Products Price Manager'); 00359 define('IMAGE_UPDATE_PRICE_CHANGES', 'Update Price Changes'); 00360 define('IMAGE_ADD_BLANK_DISCOUNTS','Add ' . DISCOUNT_QTY_ADD . ' Blank Discount Qty'); 00361 define('IMAGE_CHECK_VERSION', 'Check for Updates to Zen Cart'); 00362 define('IMAGE_PRODUCTS_TO_CATEGORIES', 'Multiple Categories Link Manager'); 00363 00364 define('IMAGE_ICON_STATUS_ON', 'Status - Enabled'); 00365 define('IMAGE_ICON_STATUS_OFF', 'Status - Disabled'); 00366 define('IMAGE_ICON_LINKED', 'Product is Linked'); 00367 00368 define('IMAGE_REMOVE_SPECIAL','Remove Special Price Info'); 00369 define('IMAGE_REMOVE_FEATURED','Remove Featured Product Info'); 00370 define('IMAGE_INSTALL_SPECIAL', 'Add Special Price Info'); 00371 define('IMAGE_INSTALL_FEATURED', 'Add Featured Product Info'); 00372 00373 define('ICON_PRODUCTS_PRICE_MANAGER','Products Price Manager'); 00374 define('ICON_COPY_TO', 'Copy to'); 00375 define('ICON_CROSS', 'False'); 00376 define('ICON_CURRENT_FOLDER', 'Current Folder'); 00377 define('ICON_DELETE', 'Delete'); 00378 define('ICON_EDIT', 'Edit'); 00379 define('ICON_ERROR', 'Error'); 00380 define('ICON_FILE', 'File'); 00381 define('ICON_FILE_DOWNLOAD', 'Download'); 00382 define('ICON_FOLDER', 'Folder'); 00383 //define('ICON_LOCKED', 'Locked'); 00384 define('ICON_MOVE', 'Move'); 00385 define('ICON_PERMISSIONS', 'Permissions'); 00386 define('ICON_PREVIOUS_LEVEL', 'Previous Level'); 00387 define('ICON_PREVIEW', 'Preview'); 00388 define('ICON_RESET', 'Reset'); 00389 define('ICON_STATISTICS', 'Statistics'); 00390 define('ICON_SUCCESS', 'Success'); 00391 define('ICON_TICK', 'True'); 00392 //define('ICON_UNLOCKED', 'Unlocked'); 00393 define('ICON_WARNING', 'Warning'); 00394 00395 // constants for use in zen_prev_next_display function 00396 define('TEXT_RESULT_PAGE', 'Page %s of %d'); 00397 define('TEXT_DISPLAY_NUMBER_OF_ADMINS', 'Displaying <b>%d</b> to <b>%d</b> (of <b>%d</b> admins)'); 00398 define('TEXT_DISPLAY_NUMBER_OF_BANNERS', 'Displaying <b>%d</b> to <b>%d</b> (of <b>%d</b> banners)'); 00399 define('TEXT_DISPLAY_NUMBER_OF_CATEGORIES', 'Displaying <b>%d</b> to <b>%d</b> (of <b>%d</b> categories)'); 00400 define('TEXT_DISPLAY_NUMBER_OF_COUNTRIES', 'Displaying <b>%d</b> to <b>%d</b> (of <b>%d</b> countries)'); 00401 define('TEXT_DISPLAY_NUMBER_OF_CUSTOMERS', 'Displaying <b>%d</b> to <b>%d</b> (of <b>%d</b> customers)'); 00402 define('TEXT_DISPLAY_NUMBER_OF_CURRENCIES', 'Displaying <b>%d</b> to <b>%d</b> (of <b>%d</b> currencies)'); 00403 define('TEXT_DISPLAY_NUMBER_OF_FEATURED', 'Displaying <b>%d</b> to <b>%d</b> (of <b>%d</b> products on featured)'); 00404 define('TEXT_DISPLAY_NUMBER_OF_LANGUAGES', 'Displaying <b>%d</b> to <b>%d</b> (of <b>%d</b> languages)'); 00405 define('TEXT_DISPLAY_NUMBER_OF_MANUFACTURERS', 'Displaying <b>%d</b> to <b>%d</b> (of <b>%d</b> manufacturers)'); 00406 define('TEXT_DISPLAY_NUMBER_OF_NEWSLETTERS', 'Displaying <b>%d</b> to <b>%d</b> (of <b>%d</b> newsletters)'); 00407 define('TEXT_DISPLAY_NUMBER_OF_ORDERS', 'Displaying <b>%d</b> to <b>%d</b> (of <b>%d</b> orders)'); 00408 define('TEXT_DISPLAY_NUMBER_OF_ORDERS_STATUS', 'Displaying <b>%d</b> to <b>%d</b> (of <b>%d</b> orders status)'); 00409 define('TEXT_DISPLAY_NUMBER_OF_PRICING_GROUPS', 'Displaying <b>%d</b> to <b>%d</b> (of <b>%d</b> pricing groups)'); 00410 define('TEXT_DISPLAY_NUMBER_OF_PRODUCTS', 'Displaying <b>%d</b> to <b>%d</b> (of <b>%d</b> products)'); 00411 define('TEXT_DISPLAY_NUMBER_OF_PRODUCT_TYPES', 'Displaying <b>%d</b> to <b>%d</b> (of <b>%d</b> product types)'); 00412 define('TEXT_DISPLAY_NUMBER_OF_PRODUCTS_EXPECTED', 'Displaying <b>%d</b> to <b>%d</b> (of <b>%d</b> products expected)'); 00413 define('TEXT_DISPLAY_NUMBER_OF_REVIEWS', 'Displaying <b>%d</b> to <b>%d</b> (of <b>%d</b> product reviews)'); 00414 define('TEXT_DISPLAY_NUMBER_OF_SALES', 'Displaying <b>%d</b> to <b>%d</b> (of <b>%d</b> sales)'); 00415 define('TEXT_DISPLAY_NUMBER_OF_SPECIALS', 'Displaying <b>%d</b> to <b>%d</b> (of <b>%d</b> products on special)'); 00416 define('TEXT_DISPLAY_NUMBER_OF_TAX_CLASSES', 'Displaying <b>%d</b> to <b>%d</b> (of <b>%d</b> tax classes)'); 00417 define('TEXT_DISPLAY_NUMBER_OF_TEMPLATES', 'Displaying <b>%d</b> to <b>%d</b> (of <b>%d</b> template associations)'); 00418 define('TEXT_DISPLAY_NUMBER_OF_TAX_ZONES', 'Displaying <b>%d</b> to <b>%d</b> (of <b>%d</b> tax zones)'); 00419 define('TEXT_DISPLAY_NUMBER_OF_TAX_RATES', 'Displaying <b>%d</b> to <b>%d</b> (of <b>%d</b> tax rates)'); 00420 define('TEXT_DISPLAY_NUMBER_OF_ZONES', 'Displaying <b>%d</b> to <b>%d</b> (of <b>%d</b> zones)'); 00421 00422 define('PREVNEXT_BUTTON_PREV', '<<'); 00423 define('PREVNEXT_BUTTON_NEXT', '>>'); 00424 00425 00426 define('TEXT_DEFAULT', 'default'); 00427 define('TEXT_SET_DEFAULT', 'Set as default'); 00428 define('TEXT_FIELD_REQUIRED', ' <span class="fieldRequired">* Required</span>'); 00429 00430 define('ERROR_NO_DEFAULT_CURRENCY_DEFINED', 'Error: There is currently no default currency set. Please set one at: Administration Tools->Localization->Currencies'); 00431 00432 define('TEXT_CACHE_CATEGORIES', 'Categories Box'); 00433 define('TEXT_CACHE_MANUFACTURERS', 'Manufacturers Box'); 00434 define('TEXT_CACHE_ALSO_PURCHASED', 'Also Purchased Module'); 00435 00436 define('TEXT_NONE', '--none--'); 00437 define('TEXT_TOP', 'Top'); 00438 00439 define('ERROR_DESTINATION_DOES_NOT_EXIST', 'Error: Destination does not exist %s'); 00440 define('ERROR_DESTINATION_NOT_WRITEABLE', 'Error: Destination not writeable %s'); 00441 define('ERROR_FILE_NOT_SAVED', 'Error: File upload not saved.'); 00442 define('ERROR_FILETYPE_NOT_ALLOWED', 'Error: File upload type not allowed %s'); 00443 define('SUCCESS_FILE_SAVED_SUCCESSFULLY', 'Success: File upload saved successfully %s'); 00444 define('WARNING_NO_FILE_UPLOADED', 'Warning: No file uploaded.'); 00445 define('WARNING_FILE_UPLOADS_DISABLED', 'Warning: File uploads are disabled in the php.ini configuration file.'); 00446 define('ERROR_ADMIN_SECURITY_WARNING', 'Warning: Your Admin login is not secure ... either you still have default login settings for: Admin admin or have not removed or changed: demo demoonly<br />The login(s) should be changed as soon as possible for the Security of your Shop<br />Go to Tools->Admin Settings to change login IDs and passwords.<br />For additional Security for the Admin please see the /docs'); 00447 define('WARNING_DATABASE_VERSION_OUT_OF_DATE','Your database appears to need patching to a higher level. See Tools->Server Information to review patch levels.'); 00448 define('WARN_DATABASE_VERSION_PROBLEM','true'); //set to false to turn off warnings about database version mismatches 00449 define('WARNING_ADMIN_DOWN_FOR_MAINTENANCE', '<strong>WARNING:</strong> Site is currently set to Down for Maintenance ...<br />NOTE: You cannot test most Payment and Shipping Modules in Maintenance mode'); 00450 define('WARNING_BACKUP_CFG_FILES_TO_DELETE', 'WARNING: These files should be deleted to prevent security vulnerability: '); 00451 define('WARNING_INSTALL_DIRECTORY_EXISTS', 'SECURITY WARNING: Installation directory exists at: ' . DIR_FS_CATALOG . 'zc_install. Please remove this directory for security reasons.'); 00452 define('WARNING_CONFIG_FILE_WRITEABLE', 'Warning: Your configuration file: %sincludes/configure.php. This is a potential security risk - please set the right user permissions on this file (read-only, CHMOD 644 or 444 are typical). <a href="http://tutorials.zen-cart.com/index.php?article=90" target="_blank">See this FAQ</a>'); 00453 define('WARNING_COULD_NOT_LOCATE_LANG_FILE', 'WARNING: Could not locate language file: '); 00454 define('ERROR_MODULE_REMOVAL_PROHIBITED', 'ERROR: Module removal prohibited: '); 00455 define('WARNING_REVIEW_ROGUE_ACTIVITY', 'ALERT: Please review for possible XSS activity:'); 00456 00457 define('_JANUARY', 'January'); 00458 define('_FEBRUARY', 'February'); 00459 define('_MARCH', 'March'); 00460 define('_APRIL', 'April'); 00461 define('_MAY', 'May'); 00462 define('_JUNE', 'June'); 00463 define('_JULY', 'July'); 00464 define('_AUGUST', 'August'); 00465 define('_SEPTEMBER', 'September'); 00466 define('_OCTOBER', 'October'); 00467 define('_NOVEMBER', 'November'); 00468 define('_DECEMBER', 'December'); 00469 00470 define('TEXT_DISPLAY_NUMBER_OF_GIFT_VOUCHERS', 'Displaying <b>%d</b> to <b>%d</b> (of <b>%d</b> gift vouchers)'); 00471 define('TEXT_DISPLAY_NUMBER_OF_COUPONS', 'Displaying <b>%d</b> to <b>%d</b> (of <b>%d</b> coupons)'); 00472 00473 define('TEXT_VALID_PRODUCTS_LIST', 'Products List'); 00474 define('TEXT_VALID_PRODUCTS_ID', 'Products ID'); 00475 define('TEXT_VALID_PRODUCTS_NAME', 'Products Name'); 00476 define('TEXT_VALID_PRODUCTS_MODEL', 'Products Model'); 00477 00478 define('TEXT_VALID_CATEGORIES_LIST', 'Categories List'); 00479 define('TEXT_VALID_CATEGORIES_ID', 'Category ID'); 00480 define('TEXT_VALID_CATEGORIES_NAME', 'Category Name'); 00481 00482 define('DEFINE_LANGUAGE','Define Language:'); 00483 00484 define('BOX_ENTRY_COUNTER_DATE','Hit Counter Started:'); 00485 define('BOX_ENTRY_COUNTER','Hit Counter:'); 00486 00487 // not installed 00488 define('NOT_INSTALLED_TEXT','Not Installed'); 00489 00490 // Product Options Values Sort Order - option_values.php 00491 define('BOX_CATALOG_PRODUCT_OPTIONS_VALUES','Option Value Sorter '); 00492 00493 define('TEXT_UPDATE_SORT_ORDERS_OPTIONS','<strong>Update Attribute Sort Order from Option Value Defaults</strong> '); 00494 define('TEXT_INFO_ATTRIBUTES_FEATURES_UPDATES','<strong>Update All Products\' Attribute Sort Orders</strong><br />to match Option Value Default Sort Orders:<br />'); 00495 00496 // Product Options Name Sort Order - option_values.php 00497 define('BOX_CATALOG_PRODUCT_OPTIONS_NAME','Option Name Sorter'); 00498 00499 // Attributes only 00500 define('BOX_CATALOG_CATEGORIES_ATTRIBUTES_CONTROLLER','Attributes Controller'); 00501 00502 // generic model 00503 define('TEXT_MODEL','Model:'); 00504 00505 // column controller 00506 define('BOX_TOOLS_LAYOUT_CONTROLLER','Layout Boxes Controller'); 00507 00508 // check GV release queue and alert store owner 00509 define('SHOW_GV_QUEUE',true); 00510 define('TEXT_SHOW_GV_QUEUE','%s waiting approval '); 00511 define('IMAGE_GIFT_QUEUE', TEXT_GV_NAME . ' Queue'); 00512 define('IMAGE_ORDER','Order'); 00513 00514 define('IMAGE_DISPLAY','Display'); 00515 define('IMAGE_UPDATE_SORT','Update Sort Order'); 00516 define('IMAGE_EDIT_PRODUCT','Edit Product'); 00517 define('IMAGE_EDIT_ATTRIBUTES','Edit Attributes'); 00518 define('TEXT_NEW_PRODUCT', 'Product in Category: "%s"'); 00519 define('IMAGE_OPTIONS_VALUES','Option Names and Option Values'); 00520 define('TEXT_PRODUCTS_PRICE_MANAGER','PRODUCTS PRICE MANAGER'); 00521 define('TEXT_PRODUCT_EDIT','EDIT PRODUCT'); 00522 define('TEXT_ATTRIBUTE_EDIT','EDIT ATTRIBUTES'); 00523 define('TEXT_PRODUCT_DETAILS','VIEW DETAILS'); 00524 00525 // sale maker 00526 define('DEDUCTION_TYPE_DROPDOWN_0', 'Deduct amount'); 00527 define('DEDUCTION_TYPE_DROPDOWN_1', 'Percent'); 00528 define('DEDUCTION_TYPE_DROPDOWN_2', 'New Price'); 00529 00530 // Min and Units 00531 define('PRODUCTS_QUANTITY_MIN_TEXT_LISTING','Min:'); 00532 define('PRODUCTS_QUANTITY_UNIT_TEXT_LISTING','Units:'); 00533 define('PRODUCTS_QUANTITY_IN_CART_LISTING','In cart:'); 00534 define('PRODUCTS_QUANTITY_ADD_ADDITIONAL_LISTING','Add Additional:'); 00535 00536 define('TEXT_PRODUCTS_MIX_OFF','*No Mixed Options'); 00537 define('TEXT_PRODUCTS_MIX_ON','*Yes Mixed Options'); 00538 00539 // search filters 00540 define('TEXT_INFO_SEARCH_DETAIL_FILTER','Search Filter: '); 00541 define('HEADING_TITLE_SEARCH_DETAIL','Search: '); 00542 define('HEADING_TITLE_SEARCH_DETAIL_REPORTS', 'Search for Product(s) - Delimited by commas'); 00543 define('HEADING_TITLE_SEARCH_DETAIL_REPORTS_NAME_MODEL', 'Search for Products Name/Model'); 00544 00545 define('PREV_NEXT_PRODUCT', 'Products: '); 00546 define('TEXT_CATEGORIES_STATUS_INFO_OFF', '<span class="alert">*Category is Disabled</span>'); 00547 define('TEXT_PRODUCTS_STATUS_INFO_OFF', '<span class="alert">*Product is Disabled</span>'); 00548 00549 // admin demo 00550 define('ADMIN_DEMO_ACTIVE','Admin Demo is currently Active. Some settings are will be disabled'); 00551 define('ADMIN_DEMO_ACTIVE_EXCLUSION','Admin Demo is currently Active. Some settings are will be disabled - <strong>NOTE: Admin Override Enabled</strong>'); 00552 define('ERROR_ADMIN_DEMO','Admin Demo is Active ... the feature(s) you are trying to perform have been disabled'); 00553 00554 // Version Check notices 00555 define('TEXT_VERSION_CHECK_NEW_VER','New Version Available v'); 00556 define('TEXT_VERSION_CHECK_NEW_PATCH','New PATCH Available: v'); 00557 define('TEXT_VERSION_CHECK_PATCH','patch'); 00558 define('TEXT_VERSION_CHECK_DOWNLOAD','Download Here'); 00559 define('TEXT_VERSION_CHECK_CURRENT','Your version of Zen Cart® appears to be current.'); 00560 00561 // downloads manager 00562 define('TEXT_DISPLAY_NUMBER_OF_PRODUCTS_DOWNLOADS_MANAGER', 'Displaying <b>%d</b> to <b>%d</b> (of <b>%d</b> downloads)'); 00563 define('BOX_CATALOG_CATEGORIES_ATTRIBUTES_DOWNLOADS_MANAGER', 'Downloads Manager'); 00564 00565 define('BOX_CATALOG_FEATURED','Featured Products'); 00566 00567 define('ERROR_NOTHING_SELECTED', 'Nothing was selected ... No changes have been made'); 00568 define('TEXT_STATUS_WARNING','<strong>NOTE:</strong> status is auto enabled/disabled when dates are set'); 00569 00570 define('TEXT_LEGEND_LINKED', 'Linked Product'); 00571 define('TEXT_MASTER_CATEGORIES_ID','Product Master Category:'); 00572 define('TEXT_LEGEND', 'LEGEND: '); 00573 define('TEXT_LEGEND_STATUS_OFF', 'Status OFF '); 00574 define('TEXT_LEGEND_STATUS_ON', 'Status ON '); 00575 00576 define('TEXT_INFO_MASTER_CATEGORIES_ID', '<strong>NOTE: Master Category is used for pricing purposes where the<br />product category affects the pricing on linked products, example: Sales</strong>'); 00577 define('TEXT_YES', 'Yes'); 00578 define('TEXT_NO', 'No'); 00579 00580 // shipping error messages 00581 define('ERROR_SHIPPING_CONFIGURATION', '<strong>Shipping Configuration errors!</strong>'); 00582 define('ERROR_SHIPPING_ORIGIN_ZIP', '<strong>Warning:</strong> Store Zip Code is not defined. See Configuration | Shipping/Packaging to set it.'); 00583 define('ERROR_ORDER_WEIGHT_ZERO_STATUS', '<strong>Warning:</strong> 0 weight is configured for Free Shipping and Free Shipping Module is not enabled'); 00584 define('ERROR_USPS_STATUS', '<strong>Warning:</strong> USPS shipping module is either missing the username, or it is set to TEST rather than PRODUCTION and will not work.<br />If you cannot retrieve USPS Shipping Quotes, contact USPS to activate your Web Tools account on their production server. 1-800-344-7779 or [email protected]'); 00585 00586 define('ERROR_SHIPPING_MODULES_NOT_DEFINED', 'NOTE: You have no shipping modules activated. Please go to Modules->Shipping to configure.'); 00587 define('ERROR_PAYMENT_MODULES_NOT_DEFINED', 'NOTE: You have no payment modules activated. Please go to Modules->Payment to configure.'); 00588 00589 // text pricing 00590 define('TEXT_CHARGES_WORD','Calculated Charge:'); 00591 define('TEXT_PER_WORD','<br />Price per word: '); 00592 define('TEXT_WORDS_FREE',' Word(s) free '); 00593 define('TEXT_CHARGES_LETTERS','Calculated Charge:'); 00594 define('TEXT_PER_LETTER','<br />Price per letter: '); 00595 define('TEXT_LETTERS_FREE',' Letter(s) free '); 00596 define('TEXT_ONETIME_CHARGES','*onetime charges = '); 00597 define('TEXT_ONETIME_CHARGES_EMAIL',"\t" . '*onetime charges = '); 00598 define('TEXT_ATTRIBUTES_QTY_PRICES_HELP', 'Option Quantity Discounts'); 00599 define('TABLE_ATTRIBUTES_QTY_PRICE_QTY','QTY'); 00600 define('TABLE_ATTRIBUTES_QTY_PRICE_PRICE','PRICE'); 00601 define('TEXT_ATTRIBUTES_QTY_PRICES_ONETIME_HELP', 'Option Quantity Discounts Onetime Charges'); 00602 define('TEXT_CATEGORIES_PRODUCTS', 'Select a Category with Products ... Or move between the Products'); 00603 define('TEXT_PRODUCT_TO_VIEW', 'Select a Product to View and Press Display ...'); 00604 00605 define('TEXT_INFO_SET_MASTER_CATEGORIES_ID', 'Invalid Master Category ID'); 00606 define('TEXT_INFO_ID', ' ID# '); 00607 define('TEXT_INFO_SET_MASTER_CATEGORIES_ID_WARNING', '<strong>WARNING:</strong> This product is linked to multiple categories but no master category has been set!'); 00608 00609 define('PRODUCTS_PRICE_IS_CALL_FOR_PRICE_TEXT', 'Product is Call for Price'); 00610 define('PRODUCTS_PRICE_IS_FREE_TEXT','Product is Free'); 00611 00612 define('TEXT_PRODUCT_WEIGHT_UNIT','lbs'); 00613 00614 // min, max, units 00615 define('PRODUCTS_QUANTITY_MAX_TEXT_LISTING', 'Max:'); 00616 00617 // Discount Savings 00618 define('PRODUCT_PRICE_DISCOUNT_PREFIX','Save: '); 00619 define('PRODUCT_PRICE_DISCOUNT_PERCENTAGE','% off'); 00620 define('PRODUCT_PRICE_DISCOUNT_AMOUNT',' off'); 00621 // Sale Maker Sale Price 00622 define('PRODUCT_PRICE_SALE','Sale: '); 00623 00624 // Rich Text / HTML resources 00625 define('TEXT_HTML_EDITOR_NOT_DEFINED','If you have no HTML editor defined or JavaScript disabled, you may enter raw HTML text here manually.'); 00626 define('TEXT_WARNING_HTML_DISABLED','<span class = "main">Note: You are using TEXT only email. If you would like to send HTML you need to enable "use MIME HTML" under Email Options</span>'); 00627 define('TEXT_WARNING_CANT_DISPLAY_HTML','<span class = "main">Note: You are using TEXT only email. If you would like to send HTML you need to enable "use MIME HTML" under Email Options</span>'); 00628 define('TEXT_EMAIL_CLIENT_CANT_DISPLAY_HTML',"You're seeing this text because we sent you an email in HTML format but your email client cannot display HTML messages."); 00629 define('ENTRY_EMAIL_PREFERENCE','Email Format Pref:'); 00630 define('ENTRY_EMAIL_FORMAT_COMMENTS','Choosing "none" or "optout" disables ALL mail, including order details'); 00631 define('ENTRY_EMAIL_HTML_DISPLAY','HTML'); 00632 define('ENTRY_EMAIL_TEXT_DISPLAY','TEXT-Only'); 00633 define('ENTRY_EMAIL_NONE_DISPLAY','Never'); 00634 define('ENTRY_EMAIL_OPTOUT_DISPLAY','Opted Out of Newsletters'); 00635 define('ENTRY_NOTHING_TO_SEND','You haven\'t entered any content for your message'); 00636 define('EMAIL_SEND_FAILED','ERROR: Failed sending email to: "%s" <%s> with subject: "%s"'); 00637 00638 define('EDITOR_NONE', 'Plain Text'); 00639 define('TEXT_EDITOR_INFO', 'Text Editor'); 00640 define('ERROR_EDITORS_FOLDER_NOT_FOUND', 'You have an HTML editor selected in \'My Store\' but the \'/editors/\' folder cannot be located. Please disable your selection or move your editor files into the \''.DIR_WS_CATALOG.'editors/\' folder'); 00641 define('TEXT_CATEGORIES_PRODUCTS_SORT_ORDER_INFO', 'Categories/Product Display Order: '); 00642 define('TEXT_SORT_PRODUCTS_SORT_ORDER_PRODUCTS_NAME', 'Products Sort Order, Products Name'); 00643 define('TEXT_SORT_PRODUCTS_NAME', 'Products Name'); 00644 define('TEXT_SORT_PRODUCTS_MODEL', 'Products Model'); 00645 define('TEXT_SORT_PRODUCTS_QUANTITY', 'Products Qty+, Products Name'); 00646 define('TEXT_SORT_PRODUCTS_QUANTITY_DESC', 'Products Qty-, Products Name'); 00647 define('TEXT_SORT_PRODUCTS_PRICE', 'Products Price+, Products Name'); 00648 define('TEXT_SORT_PRODUCTS_PRICE_DESC', 'Products Price-, Products Name'); 00649 define('TEXT_SORT_CATEGORIES_SORT_ORDER_PRODUCTS_NAME', 'Categories Sort Order, Categories Name'); 00650 define('TEXT_SORT_CATEGORIES_NAME', 'Categories Name'); 00651 00652 00653 00654 define('TABLE_HEADING_YES','Yes'); 00655 define('TABLE_HEADING_NO','No'); 00656 define('TEXT_PRODUCTS_IMAGE_MANUAL', '<br /><strong>Or, select an existing image file from server, filename:</strong>'); 00657 define('TEXT_IMAGES_OVERWRITE', '<br /><strong>Overwrite Existing Image on Server?</strong>'); 00658 define('TEXT_IMAGE_OVERWRITE_WARNING','WARNING: FILENAME was updated but not overwritten '); 00659 define('TEXT_IMAGES_DELETE', '<strong>Delete Image?</strong> NOTE: Removes Image from Product, Image is NOT removed from server:'); 00660 define('TEXT_IMAGE_CURRENT', 'Image Name: '); 00661 00662 define('ERROR_DEFINE_OPTION_NAMES', 'Warning: No Option Names have been defined'); 00663 define('ERROR_DEFINE_OPTION_VALUES', 'Warning: No Option Values have been defined'); 00664 define('ERROR_DEFINE_PRODUCTS', 'Warning: No Products have been defined'); 00665 define('ERROR_DEFINE_PRODUCTS_MASTER_CATEGORIES_ID', 'Warning: No Master Categories ID has been set for this Product'); 00666 00667 define('BUTTON_ADD_PRODUCT_TYPES_SUBCATEGORIES_ON','Add include SubCategories'); 00668 define('BUTTON_ADD_PRODUCT_TYPES_SUBCATEGORIES_OFF','Add without SubCategories'); 00669 00670 define('BUTTON_PREVIOUS_ALT','Previous Product'); 00671 define('BUTTON_NEXT_ALT','Next Product'); 00672 00673 define('BUTTON_PRODUCTS_TO_CATEGORIES', 'Multiple Categories Link Manager'); 00674 define('BUTTON_PRODUCTS_TO_CATEGORIES_ALT', 'Copy Product to Multiple Categories'); 00675 00676 define('TEXT_INFO_OPTION_NAMES_VALUES_COPIER_STATUS', 'All Global Copy, Add and Delete Features Status is currently OFF'); 00677 define('TEXT_SHOW_OPTION_NAMES_VALUES_COPIER_ON', 'Display Global Features - ON'); 00678 define('TEXT_SHOW_OPTION_NAMES_VALUES_COPIER_OFF', 'Display Global Features - OFF'); 00679 00680 // moved from categories and all product type language files 00681 define('ERROR_CANNOT_LINK_TO_SAME_CATEGORY', 'Error: Can not link products in the same category.'); 00682 define('ERROR_CATALOG_IMAGE_DIRECTORY_NOT_WRITEABLE', 'Error: Catalog images directory is not writeable: ' . DIR_FS_CATALOG_IMAGES); 00683 define('ERROR_CATALOG_IMAGE_DIRECTORY_DOES_NOT_EXIST', 'Error: Catalog images directory does not exist: ' . DIR_FS_CATALOG_IMAGES); 00684 define('ERROR_CANNOT_MOVE_CATEGORY_TO_PARENT', 'Error: Category cannot be moved into child category.'); 00685 define('ERROR_CANNOT_MOVE_PRODUCT_TO_CATEGORY_SELF', 'Error: Cannot move product to the same category or into a category where it already exists.'); 00686 define('ERROR_CATEGORY_HAS_PRODUCTS', 'Error: Category has Products!<br /><br />While this can be done temporarily to build your Categories ... Categories hold either Products or Categories but never both!'); 00687 define('SUCCESS_CATEGORY_MOVED', 'Success! Category has successfully been moved ...'); 00688 define('ERROR_CANNOT_MOVE_CATEGORY_TO_CATEGORY_SELF', 'Error: Cannot move Category to the same Category! ID#'); 00689 00690 // EZ-PAGES Alerts 00691 define('TEXT_EZPAGES_STATUS_HEADER_ADMIN', 'WARNING: EZ-PAGES HEADER - On for Admin IP Only'); 00692 define('TEXT_EZPAGES_STATUS_FOOTER_ADMIN', 'WARNING: EZ-PAGES FOOTER - On for Admin IP Only'); 00693 define('TEXT_EZPAGES_STATUS_SIDEBOX_ADMIN', 'WARNING: EZ-PAGES SIDEBOX - On for Admin IP Only'); 00694 00695 // moved from product types 00696 // warnings on Virtual and Always Free Shipping 00697 define('TEXT_VIRTUAL_PREVIEW','Warning: This product is marked - Free Shipping and Skips Shipping Address<br />No shipping will be requested when all products in the order are Virtual Products'); 00698 define('TEXT_VIRTUAL_EDIT','Warning: This product is marked - Free Shipping and Skips Shipping Address<br />No shipping will be requested when all products in the order are Virtual Products'); 00699 define('TEXT_FREE_SHIPPING_PREVIEW','Warning: This product is marked - Free Shipping, Shipping Address Required<br />Free Shipping Module is required when all products in the order are Always Free Shipping Products'); 00700 define('TEXT_FREE_SHIPPING_EDIT','Warning: Yes makes the product - Free Shipping, Shipping Address Required<br />Free Shipping Module is required when all products in the order are Always Free Shipping Products'); 00701 00702 // admin activity log warnings 00703 define('WARNING_ADMIN_ACTIVITY_LOG_DATE', 'WARNING: The Admin Activity Log table has records over 2 months old and should be archived to conserve space ... '); 00704 define('WARNING_ADMIN_ACTIVITY_LOG_RECORDS', 'WARNING: The Admin Activity Log table has over 50,000 records and should be archived to conserve space ... '); 00705 define('RESET_ADMIN_ACTIVITY_LOG', 'You can view and archive Admin Activity details via the Admin Access Management menu, if you have appropriate permissions.'); 00706 00707 define('CATEGORY_HAS_SUBCATEGORIES', 'NOTE: Category has SubCategories<br />Products cannot be added'); 00708 00709 define('WARNING_WELCOME_DISCOUNT_COUPON_EXPIRES_IN', 'WARNING! Welcome Email Discount Coupon expires in %s days'); 00710 00711 define('WARNING_ADMIN_FOLDERNAME_VULNERABLE', 'CAUTION: <a href="http://tutorials.zen-cart.com/index.php?article=33" target="_blank">Your /admin/ foldername should be renamed to something less common</a>, to prevent unauthorized access.'); 00712 define('WARNING_EMAIL_SYSTEM_DISABLED', 'WARNING: The email subsystem is turned off. No emails will be sent until it is re-enabled in Admin->Configuration->Email Options.'); 00713 define('TEXT_CURRENT_VER_IS', 'You are presently using: '); 00714 define('ERROR_NO_DATA_TO_SAVE', 'ERROR: The data you submitted was found to be empty. YOUR CHANGES HAVE *NOT* BEEN SAVED. You may have a problem with your browser or your internet connection.'); 00715 define('TEXT_HIDDEN', 'Hidden'); 00716 define('TEXT_VISIBLE', 'Visible'); 00717 define('TEXT_HIDE', 'Hide'); 00718 define('TEXT_EMAIL', 'Email'); 00719 define('TEXT_NOEMAIL', 'No Email'); 00720 00721 00723 // include additional files: 00724 require(DIR_WS_LANGUAGES . $_SESSION['language'] . '/' . FILENAME_EMAIL_EXTRAS); 00725 include(zen_get_file_directory(DIR_FS_CATALOG_LANGUAGES . $_SESSION['language'] . '/', FILENAME_OTHER_IMAGES_NAMES, 'false')); 00726 00727