[TEP-COMMIT] [CVS admin] language updates

anonymous-OfajU3CKLf1/[email protected] 22 Jul 2004 23:17:26 -0000
Newsgroups gmane.comp.web.oscommerce.cvs
Message-ID <[email protected]>
Commit in admin/admin/includes/languages on MAIN

english.php +41 -48 1.113 -> 1.114

english/statistics.php +18 added 1.1

/countries.php +6 -1 1.4 -> 1.5

/credit_cards.php +1 -4 1.1 -> 1.2

/currencies.php +15 -10 1.13 -> 1.14

/customers.php +12 -1 1.12 -> 1.13

/geo_zones.php +6 -2 1.7 -> 1.8

/index.php +4 -4 1.2 -> 1.3

/languages.php +6 -6 1.5 -> 1.6

/manufacturers.php +3 -3 1.12 -> 1.13

/modules.php +4 -1 1.6 -> 1.7

/orders.php +6 -3 1.25 -> 1.26

/orders_status.php +9 -9 1.5 -> 1.6

/products_expected.php +3 -1 1.7 -> 1.8

/reviews.php +2 -1 1.6 -> 1.7

/services.php +3 -1 1.1 -> 1.2

/specials.php +2 -1 1.10 -> 1.11

/tax_classes.php +23 -7 1.4 -> 1.5

/weight_classes.php +6 -9 1.1 -> 1.2

/zones.php +5 -2 1.4 -> 1.5

/stats_customers.php 1.6 removed

/stats_products_purchased.php 1.5 removed

/stats_products_viewed.php 1.5 removed

english/modules/statistics/orders.php +18 added 1.1

/products_purchased.php +18 added 1.1

/products_viewed.php +19 added 1.1

+230 -114

4 added + 3 removed + 19 modified, total 26 files

language updates

----------

admin /admin /includes /languages

english.php 1.113 -> 1.114

diff -u -r1.113 -r1.114
--- english.php 2004/05/12 19:31:34 1.113
+++ english.php 2004/07/22 23:17:19 1.114
@@ -5,16 +5,19 @@

osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com

- Copyright (c) 2003 osCommerce

+ Copyright (c) 2004 osCommerce

Released under the GNU General Public License
*/

-// look in your $PATH_LOCALE/locale directory for available locales..
-// on RedHat6.0 I used 'en_US'
-// on FreeBSD 4.0 I use 'en_US.ISO_8859-1'
-// this may not work under win32 environments..
-setlocale(LC_TIME, 'en_US.ISO_8859-1');

+// look in your $PATH_LOCALE/locale directory for available locales
+// or execute 'locale -a' on the server.
+// Examples:
+// on Linux try 'en_US'
+// on FreeBSD try 'en_US.ISO_8859-1'
+// on Windows try 'en', or 'English'
+define('LANGUAGE_LOCALE', 'en_US');
+

define('DATE_FORMAT_SHORT', '%m/%d/%Y'); // this is used for strftime()
define('DATE_FORMAT_LONG', '%A %d %B, %Y'); // this is used for strftime()
define('DATE_FORMAT', 'm/d/Y'); // this is used for date()

@@ -96,9 +99,7 @@

// reports box text in includes/boxes/reports.php
define('BOX_HEADING_REPORTS', 'Reports');

-define('BOX_REPORTS_PRODUCTS_VIEWED', 'Products Viewed');
-define('BOX_REPORTS_PRODUCTS_PURCHASED', 'Products Purchased');
-define('BOX_REPORTS_ORDERS_TOTAL', 'Customer Orders-Total');

+define('BOX_REPORTS_STATISTICS', 'Statistics');

// tools text in includes/boxes/tools.php
define('BOX_HEADING_TOOLS', 'Tools');

@@ -121,10 +122,8 @@

// javascript messages
define('JS_ERROR', 'Errors have occured during the process of your form!\nPlease make the following corrections:\n\n');

-

define('JS_OPTIONS_VALUE_PRICE', '* The new product atribute needs a price value\n');
define('JS_OPTIONS_VALUE_PRICE_PREFIX', '* The new product atribute needs a price prefix\n');

-

define('JS_PRODUCTS_NAME', '* The new product needs a name\n');
define('JS_PRODUCTS_DESCRIPTION', '* The new product needs a description\n');
define('JS_PRODUCTS_PRICE', '* The new product needs a price value\n');

@@ -132,24 +131,7 @@

define('JS_PRODUCTS_QUANTITY', '* The new product needs a quantity value\n');
define('JS_PRODUCTS_MODEL', '* The new product needs a model value\n');
define('JS_PRODUCTS_IMAGE', '* The new product needs an image value\n');

-

define('JS_SPECIALS_PRODUCTS_PRICE', '* A new price for this product needs to be set\n');

-
-define('JS_GENDER', '* The \'Gender\' value must be chosen.\n');
-define('JS_FIRST_NAME', '* The \'First Name\' entry must have at least ' . ENTRY_FIRST_NAME_MIN_LENGTH . ' characters.\n');
-define('JS_LAST_NAME', '* The \'Last Name\' entry must have at least ' . ENTRY_LAST_NAME_MIN_LENGTH . ' characters.\n');
-define('JS_DOB', '* The \'Date of Birth\' entry must be in the format: xx/xx/xxxx (month/date/year).\n');
-define('JS_EMAIL_ADDRESS', '* The \'E-Mail Address\' entry must have at least ' . ENTRY_EMAIL_ADDRESS_MIN_LENGTH . ' characters.\n');
-define('JS_ADDRESS', '* The \'Street Address\' entry must have at least ' . ENTRY_STREET_ADDRESS_MIN_LENGTH . ' characters.\n');
-define('JS_POST_CODE', '* The \'Post Code\' entry must have at least ' . ENTRY_POSTCODE_MIN_LENGTH . ' characters.\n');
-define('JS_CITY', '* The \'City\' entry must have at least ' . ENTRY_CITY_MIN_LENGTH . ' characters.\n');
-define('JS_STATE', '* The \'State\' entry is must be selected.\n');
-define('JS_STATE_SELECT', '-- Select Above --');
-define('JS_ZONE', '* The \'State\' entry must be selected from the list for this country.');
-define('JS_COUNTRY', '* The \'Country\' value must be chosen.\n');
-define('JS_TELEPHONE', '* The \'Telephone Number\' entry must have at least ' . ENTRY_TELEPHONE_MIN_LENGTH . ' characters.\n');
-define('JS_PASSWORD', '* The \'Password\' amd \'Confirmation\' entries must match amd have at least ' . ENTRY_PASSWORD_MIN_LENGTH . ' characters.\n');
-

define('JS_ORDER_DOES_NOT_EXIST', 'Order Number %s does not exist!');

define('CATEGORY_PERSONAL', 'Personal');

@@ -159,39 +141,43 @@

define('CATEGORY_OPTIONS', 'Options');

define('ENTRY_GENDER', 'Gender:');

-define('ENTRY_GENDER_ERROR', '&nbsp;<span class="errorText">required</span>');

+define('ENTRY_GENDER_ERROR', 'Please select your Gender.');

define('ENTRY_FIRST_NAME', 'First Name:');

-define('ENTRY_FIRST_NAME_ERROR', '&nbsp;<span class="errorText">min ' . ENTRY_FIRST_NAME_MIN_LENGTH . ' chars</span>');

+define('ENTRY_FIRST_NAME_ERROR', 'Your First Name must contain a minimum of ' . ACCOUNT_FIRST_NAME . ' characters.');

define('ENTRY_LAST_NAME', 'Last Name:');

-define('ENTRY_LAST_NAME_ERROR', '&nbsp;<span class="errorText">min ' . ENTRY_LAST_NAME_MIN_LENGTH . ' chars</span>');

+define('ENTRY_LAST_NAME_ERROR', 'Your Last Name must contain a minimum of ' . ACCOUNT_LAST_NAME . ' characters.');

define('ENTRY_DATE_OF_BIRTH', 'Date of Birth:');

-define('ENTRY_DATE_OF_BIRTH_ERROR', '&nbsp;<span class="errorText">(eg. 05/21/1970)</span>');

+define('ENTRY_DATE_OF_BIRTH_ERROR', 'Your Date of Birth must be set correctly.');

define('ENTRY_EMAIL_ADDRESS', 'E-Mail Address:');

-define('ENTRY_EMAIL_ADDRESS_ERROR', '&nbsp;<span class="errorText">min ' . ENTRY_EMAIL_ADDRESS_MIN_LENGTH . ' chars</span>');
-define('ENTRY_EMAIL_ADDRESS_CHECK_ERROR', '&nbsp;<span class="errorText">The email address doesn\'t appear to be valid!</span>');
-define('ENTRY_EMAIL_ADDRESS_ERROR_EXISTS', '&nbsp;<span class="errorText">This email address already exists!</span>');
-define('ENTRY_COMPANY', 'Company name:');
-define('ENTRY_COMPANY_ERROR', '');

+define('ENTRY_EMAIL_ADDRESS_ERROR', 'Your E-Mail Address must contain a minimum of ' . ACCOUNT_EMAIL_ADDRESS . ' characters.');
+define('ENTRY_EMAIL_ADDRESS_CHECK_ERROR', 'Your E-Mail Address does not appear to be valid - please make any necessary corrections.');
+define('ENTRY_EMAIL_ADDRESS_ERROR_EXISTS', 'Your E-Mail Address already exists in our records - please log in with the e-mail address or create an account with a different address.');
+define('ENTRY_COMPANY', 'Company Name:');
+define('ENTRY_COMPANY_ERROR', 'Your Company Name must contain a minimum of ' . ACCOUNT_COMPANY . ' characters.');

define('ENTRY_STREET_ADDRESS', 'Street Address:');

-define('ENTRY_STREET_ADDRESS_ERROR', '&nbsp;<span class="errorText">min ' . ENTRY_STREET_ADDRESS_MIN_LENGTH . ' chars</span>');

+define('ENTRY_STREET_ADDRESS_ERROR', 'Your Street Address must contain a minimum of ' . ACCOUNT_STREET_ADDRESS . ' characters.');

define('ENTRY_SUBURB', 'Suburb:');

-define('ENTRY_SUBURB_ERROR', '');

+define('ENTRY_SUBURB_ERROR', 'Your Suburb must contain a minimum of ' . ACCOUNT_SUBURB . ' characters.');

define('ENTRY_POST_CODE', 'Post Code:');

-define('ENTRY_POST_CODE_ERROR', '&nbsp;<span class="errorText">min ' . ENTRY_POSTCODE_MIN_LENGTH . ' chars</span>');

+define('ENTRY_POST_CODE_ERROR', 'Your Post Code must contain a minimum of ' . ACCOUNT_POST_CODE . ' characters.');

define('ENTRY_CITY', 'City:');

-define('ENTRY_CITY_ERROR', '&nbsp;<span class="errorText">min ' . ENTRY_CITY_MIN_LENGTH . ' chars</span>');
-define('ENTRY_STATE', 'State:');
-define('ENTRY_STATE_ERROR', '&nbsp;<span class="errorText">required</span>');

+define('ENTRY_CITY_ERROR', 'Your City must contain a minimum of ' . ACCOUNT_CITY . ' characters.');
+define('ENTRY_STATE', 'State/Province:');
+define('ENTRY_STATE_ERROR', 'Your State must contain a minimum of ' . ACCOUNT_STATE . ' characters.');
+define('ENTRY_STATE_ERROR_SELECT', 'Please select a state from the States pull down menu.');

define('ENTRY_COUNTRY', 'Country:');

-define('ENTRY_COUNTRY_ERROR', '');

+define('ENTRY_COUNTRY_ERROR', 'You must select a country from the Countries pull down menu.');

define('ENTRY_TELEPHONE_NUMBER', 'Telephone Number:');

-define('ENTRY_TELEPHONE_NUMBER_ERROR', '&nbsp;<span class="errorText">min ' . ENTRY_TELEPHONE_MIN_LENGTH . ' chars</span>');

+define('ENTRY_TELEPHONE_NUMBER_ERROR', 'Your Telephone Number must contain a minimum of ' . ACCOUNT_TELEPHONE . ' characters.');

define('ENTRY_FAX_NUMBER', 'Fax Number:');

-define('ENTRY_FAX_NUMBER_ERROR', '');

+define('ENTRY_FAX_NUMBER_ERROR', 'Your Fax Number must contain a minium of ' . ACCOUNT_FAX . ' characters.');

define('ENTRY_NEWSLETTER', 'Newsletter:');
define('ENTRY_NEWSLETTER_YES', 'Subscribed');
define('ENTRY_NEWSLETTER_NO', 'Unsubscribed');

-define('ENTRY_NEWSLETTER_ERROR', '');

+define('ENTRY_PASSWORD', 'Password:');
+define('ENTRY_PASSWORD_ERROR', 'Your Password must contain a minimum of ' . ACCOUNT_PASSWORD . ' characters.');
+define('ENTRY_PASSWORD_ERROR_NOT_MATCHING', 'The Password Confirmation must match your Password.');
+define('ENTRY_PASSWORD_CONFIRMATION', 'Password Confirmation:');

// images
define('IMAGE_ANI_SEND_EMAIL', 'Sending E-Mail');

@@ -261,8 +247,11 @@

define('ICON_UNLOCKED', 'Unlocked');
define('ICON_WARNING', 'Warning');

+define('ICON_ORDERS', 'Orders');
+define('ICON_PRODUCTS', 'Products');
+

// constants for use in tep_prev_next_display function

-define('TEXT_RESULT_PAGE', 'Page %s of %d');

+define('TEXT_RESULT_PAGE', 'Page&nbsp;%s&nbsp;of %d');

define('TEXT_DISPLAY_NUMBER_OF_BANNERS', 'Displaying <b>%d</b> to <b>%d</b> (of <b>%d</b> banners)');
define('TEXT_DISPLAY_NUMBER_OF_COUNTRIES', 'Displaying <b>%d</b> to <b>%d</b> (of <b>%d</b> countries)');
define('TEXT_DISPLAY_NUMBER_OF_CREDIT_CARDS', 'Displaying <b>%d</b> to <b>%d</b> (of <b>%d</b> credit cards)');

@@ -309,4 +298,8 @@

define('SUCCESS_FILE_SAVED_SUCCESSFULLY', 'Success: File upload saved successfully.');
define('WARNING_NO_FILE_UPLOADED', 'Warning: No file uploaded.');
define('WARNING_FILE_UPLOADS_DISABLED', 'Warning: File uploads are disabled in the php.ini configuration file.');

+
+define('SUCCESS_DB_ROWS_UPDATED', 'Success: Entry successfully updated!');
+define('WARNING_DB_ROWS_NOT_UPDATED', 'Warning: Entry not updated due to the data content being the same.');
+define('ERROR_DB_ROWS_NOT_UPDATED', 'Error: Entry not updated due to an error.');

?>

----------

admin /admin /includes /languages /english

statistics.php added at 1.1

diff -N statistics.php
--- /dev/null Fri Jul 23 01:17:19 2004
+++ /tmp/cvsAAAU0aWsa Fri Jul 23 01:17:21 2004
@@ -0,0 +1,18 @@

+<?php
+/*
+ $Id$
+
+ osCommerce, Open Source E-Commerce Solutions
+ http://www.oscommerce.com
+
+ Copyright (c) 2004 osCommerce
+
+ Released under the GNU General Public License
+*/
+
+define('HEADING_TITLE', 'Statistics');
+
+define('TABLE_HEADING_MODULES', 'Modules');
+
+define('TEXT_MODULE_DIRECTORY', 'Module Directory:');
+?>

\ No newline at end of file

----------

admin /admin /includes /languages /english

countries.php 1.4 -> 1.5

diff -u -r1.4 -r1.5
--- countries.php 2002/01/12 17:02:18 1.4
+++ countries.php 2004/07/22 23:17:20 1.5
@@ -5,7 +5,7 @@

osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com

- Copyright (c) 2002 osCommerce

+ Copyright (c) 2004 osCommerce

Released under the GNU General Public License
*/

@@ -14,6 +14,7 @@

define('TABLE_HEADING_COUNTRY_NAME', 'Country');
define('TABLE_HEADING_COUNTRY_CODES', 'ISO Codes');

+define('TABLE_HEADING_ZONES_TOTAL', 'Defined Zones');

define('TABLE_HEADING_ACTION', 'Action');

define('TEXT_INFO_EDIT_INTRO', 'Please make any necessary changes');

@@ -26,4 +27,8 @@

define('TEXT_INFO_HEADING_NEW_COUNTRY', 'New Country');
define('TEXT_INFO_HEADING_EDIT_COUNTRY', 'Edit Country');
define('TEXT_INFO_HEADING_DELETE_COUNTRY', 'Delete Country');

+
+define('TEXT_INFO_DELETE_PROHIBITED_ADDRESS_BOOK', 'Warning: This Country cannot be deleted as it is currently assigned to %s address book entries.');
+define('TEXT_INFO_DELETE_PROHIBITED_TAX_ZONES', 'Warning: This Country cannot be deleted as it is currently assigned to %s tax zone(s).');
+define('TEXT_INFO_DELETE_COUNTRIES_WARNING', 'Warning: This Country has %s zone(s) assigned which would also be deleted.');

?>

----------

admin /admin /includes /languages /english

credit_cards.php 1.1 -> 1.2

diff -u -r1.1 -r1.2
--- credit_cards.php 2004/05/12 19:31:38 1.1
+++ credit_cards.php 2004/07/22 23:17:20 1.2
@@ -14,22 +14,19 @@

define('TABLE_HEADING_CREDIT_CARD_CODE', 'Card Code');
define('TABLE_HEADING_CREDIT_CARD_NAME', 'Card Name');

-define('TABLE_HEADING_CREDIT_CARD_STATUS', 'Status');

define('TABLE_HEADING_SORT_ORDER', 'Sort Order');
define('TABLE_HEADING_STATUS', 'Status');
define('TABLE_HEADING_ACTION', 'Action');

define('TEXT_HEADING_NEW_CREDIT_CARD', 'New Credit Card');

-define('TEXT_HEADING_EDIT_CREDIT_CARD', 'Edit Credit Card');
-define('TEXT_HEADING_DELETE_CREDIT_CARD', 'Delete Credit Card');

define('TEXT_CREDIT_CARD_NAME', 'Card Name:');
define('TEXT_CREDIT_CARD_CODE', 'Card Code:');
define('TEXT_SORT_ORDER', 'Sort Order:');

+define('TEXT_STATUS', 'Status:');

define('TEXT_NEW_INTRO', 'Please fill out the following information for the new credit card');
define('TEXT_EDIT_INTRO', 'Please make any necessary changes');

-

define('TEXT_DELETE_INTRO', 'Are you sure you want to delete this credit card?');

define('ERROR_CREDIT_CARD_NAME', 'Error: Credit Card name cannot be blank');

----------

admin /admin /includes /languages /english

currencies.php 1.13 -> 1.14

diff -u -r1.13 -r1.14
--- currencies.php 2004/04/16 05:37:24 1.13
+++ currencies.php 2004/07/22 23:17:20 1.14
@@ -5,7 +5,7 @@

osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com

- Copyright (c) 2003 osCommerce

+ Copyright (c) 2004 osCommerce

Released under the GNU General Public License
*/

@@ -15,26 +15,31 @@

define('TABLE_HEADING_CURRENCY_NAME', 'Currency');
define('TABLE_HEADING_CURRENCY_CODES', 'Code');
define('TABLE_HEADING_CURRENCY_VALUE', 'Value');

+define('TABLE_HEADING_CURRENCY_EXAMPLE', 'Example');

define('TABLE_HEADING_ACTION', 'Action');

+define('TEXT_INFO_INSERT_INTRO', 'Please enter the new currency with its related data');

define('TEXT_INFO_EDIT_INTRO', 'Please make any necessary changes');

+define('TEXT_INFO_DELETE_INTRO', 'Are you sure you want to delete this currency?');
+define('TEXT_INFO_UPDATE_SERVICE_INTRO', 'Please select the currency update service to use.');
+
+define('TEXT_INFO_HEADING_NEW_CURRENCY', 'New Currency');
+

define('TEXT_INFO_CURRENCY_TITLE', 'Title:');
define('TEXT_INFO_CURRENCY_CODE', 'Code:');
define('TEXT_INFO_CURRENCY_SYMBOL_LEFT', 'Symbol Left:');
define('TEXT_INFO_CURRENCY_SYMBOL_RIGHT', 'Symbol Right:');
define('TEXT_INFO_CURRENCY_DECIMAL_PLACES', 'Decimal Places:');

-define('TEXT_INFO_CURRENCY_LAST_UPDATED', 'Last Updated:');

define('TEXT_INFO_CURRENCY_VALUE', 'Value:');

-define('TEXT_INFO_CURRENCY_EXAMPLE', 'Example Output:');
-define('TEXT_INFO_INSERT_INTRO', 'Please enter the new currency with its related data');
-define('TEXT_INFO_DELETE_INTRO', 'Are you sure you want to delete this currency?');
-define('TEXT_INFO_HEADING_NEW_CURRENCY', 'New Currency');
-define('TEXT_INFO_HEADING_EDIT_CURRENCY', 'Edit Currency');
-define('TEXT_INFO_HEADING_DELETE_CURRENCY', 'Delete Currency');
-define('TEXT_INFO_SET_AS_DEFAULT', TEXT_SET_DEFAULT . ' (requires a manual update of currency values)');

+
+define('TEXT_INFO_SET_AS_DEFAULT', TEXT_SET_DEFAULT . '<br><small>(requires a manual update of currency values)</small>');
+define('TEXT_INFO_SERVICE_TERMS', 'By using the selected currency update service you are agreeing to the terms and conditions of the service involved.');
+

define('TEXT_INFO_CURRENCY_UPDATED', 'The exchange rate for %s (%s) was updated successfully via %s.');

-define('ERROR_REMOVE_DEFAULT_CURRENCY', 'Error: The default currency can not be removed. Please set another currency as default, and try again.');

+define('ERROR_REMOVE_DEFAULT_CURRENCY', 'Warning: The default currency can not be removed. Please set another currency as the default and try again.');

define('ERROR_CURRENCY_INVALID', 'Error: The exchange rate for %s (%s) was not updated via %s. Is it a valid currency code?');
define('WARNING_PRIMARY_SERVER_FAILED', 'Warning: The primary exchange rate server (%s) failed for %s (%s) - trying the secondary exchange rate server.');

+
+define('TEXT_INFO_DELETE_PROHIBITED', 'Warning: The default currency can not be removed. Please set another currency as the default and try again.');

?>

----------

admin /admin /includes /languages /english

customers.php 1.12 -> 1.13

diff -u -r1.12 -r1.13
--- customers.php 2002/01/12 18:46:27 1.12
+++ customers.php 2004/07/22 23:17:20 1.13
@@ -5,7 +5,7 @@

osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com

- Copyright (c) 2002 osCommerce

+ Copyright (c) 2004 osCommerce

Released under the GNU General Public License
*/

@@ -17,6 +17,7 @@

define('TABLE_HEADING_LASTNAME', 'Last Name');
define('TABLE_HEADING_ACCOUNT_CREATED', 'Account Created');
define('TABLE_HEADING_ACTION', 'Action');

+define('TABLE_HEADING_STATUS', 'Status');

define('TEXT_DATE_ACCOUNT_CREATED', 'Account Created:');
define('TEXT_DATE_ACCOUNT_LAST_MODIFIED', 'Last Modified:');

@@ -29,4 +30,14 @@

define('TEXT_INFO_HEADING_DELETE_CUSTOMER', 'Delete Customer');
define('TYPE_BELOW', 'Type below');
define('PLEASE_SELECT', 'Select One');

+define('EMAIL_SUBJECT', 'Welcome to ' . STORE_NAME);
+define('EMAIL_GREET_MR', 'Dear Mr. %s,' . "\n\n");
+define('EMAIL_GREET_MS', 'Dear Ms. %s,' . "\n\n");
+define('EMAIL_GREET_NONE', 'Dear %s' . "\n\n");
+define('EMAIL_WELCOME', 'We welcome you to <b>' . STORE_NAME . '</b>.' . "\n\n");
+define('EMAIL_TEXT', 'You can now take part in the <b>various services</b> we have to offer you. Some of these services include:' . "\n\n" . '<li><b>Permanent Cart</b> - Any products added to your online cart remain there until you remove them, or check them out.' . "\n" . '<li><b>Address Book</b> - We can now deliver your products to another address other than yours! This is perfect to send birthday gifts direct to the birthday-person themselves.' . "\n" . '<li><b>Order History</b> - View your history of purchases that you have made with us.' . "\n" . '<li><b>Products Reviews</b> - Share your opinions on products with our other customers.' . "\n\n");
+define('EMAIL_CONTACT', 'For help with any of our online services, please email the store-owner: ' . STORE_OWNER_EMAIL_ADDRESS . '.' . "\n\n");
+define('EMAIL_PASSWORD', '<b>Note:</b> This account has been created for you by the store owner. The password to access this account is %s.' . "\n");
+
+define('ENTRY_STATUS', 'Status:');

?>

----------

admin /admin /includes /languages /english

geo_zones.php 1.7 -> 1.8

diff -u -r1.7 -r1.8
--- geo_zones.php 2003/05/05 20:45:15 1.7
+++ geo_zones.php 2004/07/22 23:17:20 1.8
@@ -5,16 +5,17 @@

osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com

- Copyright (c) 2002 osCommerce

+ Copyright (c) 2004 osCommerce

Released under the GNU General Public License
*/

define('HEADING_TITLE', 'Tax Zones');

+define('TABLE_HEADING_TAX_ZONES', 'Tax Zones');
+define('TABLE_HEADING_TOTAL_ENTRIES', 'Entries');

define('TABLE_HEADING_COUNTRY', 'Country');
define('TABLE_HEADING_COUNTRY_ZONE', 'Zone');

-define('TABLE_HEADING_TAX_ZONES', 'Tax Zones');

define('TABLE_HEADING_ACTION', 'Action');

define('TEXT_INFO_HEADING_NEW_ZONE', 'New Zone');

@@ -45,4 +46,7 @@

define('TYPE_BELOW', 'All Zones');
define('PLEASE_SELECT', 'All Zones');
define('TEXT_ALL_COUNTRIES', 'All Countries');

+
+define('TEXT_INFO_DELETE_PROHIBITED', 'Warning: This Tax Zone cannot be deleted as it is currently assigned to one or more tax rates.');
+define('TEXT_INFO_DELETE_ZONE_WARNING', 'Warning: This Tax Zone has %s zone(s) assigned which would also be deleted.');

?>

----------

admin /admin /includes /languages /english

index.php 1.2 -> 1.3

diff -u -r1.2 -r1.3
--- index.php 2002/03/30 11:10:39 1.2
+++ index.php 2004/07/22 23:17:20 1.3
@@ -5,7 +5,7 @@

osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com

- Copyright (c) 2002 osCommerce

+ Copyright (c) 2004 osCommerce

Released under the GNU General Public License
*/

@@ -24,9 +24,9 @@

define('BOX_ENTRY_CVS_REPOSITORY', 'CVS Repository');
define('BOX_ENTRY_INFORMATION_PORTAL', 'Information Portal');

-define('BOX_ENTRY_CUSTOMERS', 'Customers:');
-define('BOX_ENTRY_PRODUCTS', 'Products:');
-define('BOX_ENTRY_REVIEWS', 'Reviews:');

+define('BOX_ENTRY_CUSTOMERS', 'Customers');
+define('BOX_ENTRY_PRODUCTS', 'Products');
+define('BOX_ENTRY_REVIEWS', 'Reviews');

define('BOX_CONNECTION_PROTECTED', 'You are protected by a %s secure SSL connection.');
define('BOX_CONNECTION_UNPROTECTED', 'You are <font color="#ff0000">not</font> protected by a secure SSL connection.');

----------

admin /admin /includes /languages /english

languages.php 1.5 -> 1.6

diff -u -r1.5 -r1.6
--- languages.php 2002/01/18 00:46:42 1.5
+++ languages.php 2004/07/22 23:17:20 1.6
@@ -5,7 +5,7 @@

osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com

- Copyright (c) 2002 osCommerce

+ Copyright (c) 2004 osCommerce

Released under the GNU General Public License
*/

@@ -16,17 +16,17 @@

define('TABLE_HEADING_LANGUAGE_CODE', 'Code');
define('TABLE_HEADING_ACTION', 'Action');

+define('TEXT_INFO_INSERT_INTRO', 'Please enter the new language with its related data');

define('TEXT_INFO_EDIT_INTRO', 'Please make any necessary changes');

+define('TEXT_INFO_DELETE_INTRO', 'Are you sure you want to delete this language?');
+

define('TEXT_INFO_LANGUAGE_NAME', 'Name:');
define('TEXT_INFO_LANGUAGE_CODE', 'Code:');
define('TEXT_INFO_LANGUAGE_IMAGE', 'Image:');
define('TEXT_INFO_LANGUAGE_DIRECTORY', 'Directory:');
define('TEXT_INFO_LANGUAGE_SORT_ORDER', 'Sort Order:');

-define('TEXT_INFO_INSERT_INTRO', 'Please enter the new language with its related data');
-define('TEXT_INFO_DELETE_INTRO', 'Are you sure you want to delete this language?');

+

define('TEXT_INFO_HEADING_NEW_LANGUAGE', 'New Language');

-define('TEXT_INFO_HEADING_EDIT_LANGUAGE', 'Edit Language');
-define('TEXT_INFO_HEADING_DELETE_LANGUAGE', 'Delete Language');

-define('ERROR_REMOVE_DEFAULT_LANGUAGE', 'Error: The default language can not be removed. Please set another language as default, and try again.');

+define('TEXT_INFO_DELETE_PROHIBITED', 'Warning: The default language can not be removed. Please set another language as the default, and try again.');

?>

----------

admin /admin /includes /languages /english

manufacturers.php 1.12 -> 1.13

diff -u -r1.12 -r1.13
--- manufacturers.php 2004/02/15 15:15:20 1.12
+++ manufacturers.php 2004/07/22 23:17:20 1.13
@@ -5,7 +5,7 @@

osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com

- Copyright (c) 2002 osCommerce

+ Copyright (c) 2004 osCommerce

Released under the GNU General Public License
*/

@@ -13,6 +13,7 @@

define('HEADING_TITLE', 'Manufacturers');

define('TABLE_HEADING_MANUFACTURERS', 'Manufacturers');

+define('TABLE_HEADING_URL_CLICKS', 'URL CLicks');

define('TABLE_HEADING_ACTION', 'Action');

define('TEXT_HEADING_NEW_MANUFACTURER', 'New Manufacturer');

@@ -23,7 +24,6 @@

define('TEXT_DATE_ADDED', 'Date Added:');
define('TEXT_LAST_MODIFIED', 'Last Modified:');
define('TEXT_PRODUCTS', 'Products:');

-define('TEXT_IMAGE_NONEXISTENT', 'IMAGE DOES NOT EXIST');

define('TEXT_NEW_INTRO', 'Please fill out the following information for the new manufacturer');
define('TEXT_EDIT_INTRO', 'Please make any necessary changes');

@@ -40,4 +40,4 @@

define('ERROR_DIRECTORY_NOT_WRITEABLE', 'Error: I can not write to this directory. Please set the right user permissions on: %s');
define('ERROR_DIRECTORY_DOES_NOT_EXIST', 'Error: Directory does not exist: %s');
define('ERROR_MANUFACTURER_NAME', 'Error: Manufacturers name cannot be blank');

-?>

+?>

\ No newline at end of file

----------

admin /admin /includes /languages /english

modules.php 1.6 -> 1.7

diff -u -r1.6 -r1.7
--- modules.php 2003/05/28 14:07:36 1.6
+++ modules.php 2004/07/22 23:17:20 1.7
@@ -5,7 +5,7 @@

osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com

- Copyright (c) 2003 osCommerce

+ Copyright (c) 2004 osCommerce

Released under the GNU General Public License
*/

@@ -16,7 +16,10 @@

define('TABLE_HEADING_MODULES', 'Modules');
define('TABLE_HEADING_SORT_ORDER', 'Sort Order');

+define('TABLE_HEADING_STATUS', 'Status');

define('TABLE_HEADING_ACTION', 'Action');

define('TEXT_MODULE_DIRECTORY', 'Module Directory:');

+
+define('INFO_MODULE_UNINSTALL_INTRO', 'Are you sure you want to uninstall this module?<br><br>(All module parameters would then be removed)');

?>

----------

admin /admin /includes /languages /english

orders.php 1.25 -> 1.26

diff -u -r1.25 -r1.26
--- orders.php 2003/06/20 00:28:44 1.25
+++ orders.php 2004/07/22 23:17:20 1.26
@@ -5,15 +5,17 @@

osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com

- Copyright (c) 2002 osCommerce

+ Copyright (c) 2004 osCommerce

Released under the GNU General Public License
*/

define('HEADING_TITLE', 'Orders');

-define('HEADING_TITLE_SEARCH', 'Order ID:');
-define('HEADING_TITLE_STATUS', 'Status:');

+define('SEARCH_ORDER_ID', 'Order ID:');
+define('SEARCH_CUSTOMER_ID', 'Customer ID:');
+define('SEARCH_STATUS', 'Status:');
+

define('TABLE_HEADING_COMMENTS', 'Comments');
define('TABLE_HEADING_CUSTOMERS', 'Customers');
define('TABLE_HEADING_ORDER_TOTAL', 'Order Total');

@@ -53,6 +55,7 @@

define('ENTRY_DATE_LAST_UPDATED', 'Date Last Updated:');
define('ENTRY_NOTIFY_CUSTOMER', 'Notify Customer:');
define('ENTRY_NOTIFY_COMMENTS', 'Append Comments:');

+define('ENTRY_NEW_COMMENT', 'New Comment:');

define('ENTRY_PRINTABLE', 'Print Invoice');

define('TEXT_INFO_HEADING_DELETE_ORDER', 'Delete Order');

----------

admin /admin /includes /languages /english

orders_status.php 1.5 -> 1.6

diff -u -r1.5 -r1.6
--- orders_status.php 2002/01/29 14:43:00 1.5
+++ orders_status.php 2004/07/22 23:17:20 1.6
@@ -5,7 +5,7 @@

osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com

- Copyright (c) 2002 osCommerce

+ Copyright (c) 2004 osCommerce

Released under the GNU General Public License
*/

@@ -15,15 +15,15 @@

define('TABLE_HEADING_ORDERS_STATUS', 'Orders Status');
define('TABLE_HEADING_ACTION', 'Action');

-define('TEXT_INFO_EDIT_INTRO', 'Please make any necessary changes');
-define('TEXT_INFO_ORDERS_STATUS_NAME', 'Orders Status:');

define('TEXT_INFO_INSERT_INTRO', 'Please enter the new orders status with its related data');

+define('TEXT_INFO_EDIT_INTRO', 'Please make any necessary changes');

define('TEXT_INFO_DELETE_INTRO', 'Are you sure you want to delete this order status?');

+
+define('TEXT_INFO_ORDERS_STATUS_NAME', 'Orders Status:');
+

define('TEXT_INFO_HEADING_NEW_ORDERS_STATUS', 'New Orders Status');

-define('TEXT_INFO_HEADING_EDIT_ORDERS_STATUS', 'Edit Orders Status');
-define('TEXT_INFO_HEADING_DELETE_ORDERS_STATUS', 'Delete Orders Status');

-define('ERROR_REMOVE_DEFAULT_ORDER_STATUS', 'Error: The default order status can not be removed. Please set another order status as default, and try again.');
-define('ERROR_STATUS_USED_IN_ORDERS', 'Error: This order status is currently used in orders.');
-define('ERROR_STATUS_USED_IN_HISTORY', 'Error: This order status is currently used in the order status history.');
-?>

\ No newline at end of file

+define('TEXT_INFO_DELETE_PROHIBITED', 'Warning: The default order status can not be removed. Please set another order status as the default, and try again.');
+define('TEXT_INFO_DELETE_PROHIBITED_ORDERS', 'Warning: This order status is currently used in %s orders and cannot be removed.');
+define('TEXT_INFO_DELETE_PROHIBITED_HISTORY', 'Warning: This order status is currently used in the order status history of %s orders and cannot be removed.');
+?>

----------

admin /admin /includes /languages /english

products_expected.php 1.7 -> 1.8

diff -u -r1.7 -r1.8
--- products_expected.php 2002/01/30 01:23:42 1.7
+++ products_expected.php 2004/07/22 23:17:20 1.8
@@ -5,7 +5,7 @@

osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com

- Copyright (c) 2002 osCommerce

+ Copyright (c) 2004 osCommerce

Released under the GNU General Public License
*/

@@ -15,6 +15,8 @@

define('TABLE_HEADING_PRODUCTS', 'Products');
define('TABLE_HEADING_DATE_EXPECTED', 'Date Expected');
define('TABLE_HEADING_ACTION', 'Action');

+
+define('TEXT_EDIT_INTRO', 'Please make any necessary changes');

define('TEXT_INFO_DATE_EXPECTED', 'Date Expected:');
?>

----------

admin /admin /includes /languages /english

reviews.php 1.6 -> 1.7

diff -u -r1.6 -r1.7
--- reviews.php 2002/01/30 16:24:23 1.6
+++ reviews.php 2004/07/22 23:17:20 1.7
@@ -5,7 +5,7 @@

osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com

- Copyright (c) 2002 osCommerce

+ Copyright (c) 2004 osCommerce

Released under the GNU General Public License
*/

@@ -13,6 +13,7 @@

define('HEADING_TITLE', 'Reviews');

define('TABLE_HEADING_PRODUCTS', 'Products');

+define('TABLE_HEADING_LANGUAGE', 'Language');

define('TABLE_HEADING_RATING', 'Rating');
define('TABLE_HEADING_DATE_ADDED', 'Date Added');
define('TABLE_HEADING_ACTION', 'Action');

----------

admin /admin /includes /languages /english

services.php 1.1 -> 1.2

diff -u -r1.1 -r1.2
--- services.php 2004/04/13 08:19:25 1.1
+++ services.php 2004/07/22 23:17:20 1.2
@@ -17,4 +17,6 @@

define('TABLE_HEADING_ACTION', 'Action');

define('TEXT_MODULE_DIRECTORY', 'Module Directory:');

-?>

\ No newline at end of file

+
+define('TEXT_UNINSTALL_INTRO', 'Are you sure you want to uninstall this module?<br><br>(All module parameters would then be removed)');
+?>

----------

admin /admin /includes /languages /english

specials.php 1.10 -> 1.11

diff -u -r1.10 -r1.11
--- specials.php 2002/03/16 15:07:21 1.10
+++ specials.php 2004/07/22 23:17:20 1.11
@@ -5,7 +5,7 @@

osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com

- Copyright (c) 2002 osCommerce

+ Copyright (c) 2004 osCommerce

Released under the GNU General Public License
*/

@@ -19,6 +19,7 @@

define('TEXT_SPECIALS_PRODUCT', 'Product:');
define('TEXT_SPECIALS_SPECIAL_PRICE', 'Special Price:');

+define('TEXT_SPECIALS_STATUS', 'Status:');

define('TEXT_SPECIALS_EXPIRES_DATE', 'Expiry Date:');
define('TEXT_SPECIALS_PRICE_TIP', '<b>Specials Notes:</b><ul><li>You can enter a percentage to deduct in the Specials Price field, for example: <b>20%</b></li><li>If you enter a new price, the decimal separator must be a \'.\' (decimal-point), example: <b>49.99</b></li><li>Leave the expiry date empty for no expiration</li></ul>');

----------

admin /admin /includes /languages /english

tax_classes.php 1.4 -> 1.5

diff -u -r1.4 -r1.5
--- tax_classes.php 2002/01/28 00:48:43 1.4
+++ tax_classes.php 2004/07/22 23:17:20 1.5
@@ -5,7 +5,7 @@

osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com

- Copyright (c) 2002 osCommerce

+ Copyright (c) 2004 osCommerce

Released under the GNU General Public License
*/

@@ -13,16 +13,32 @@

define('HEADING_TITLE', 'Tax Classes');

define('TABLE_HEADING_TAX_CLASSES', 'Tax Classes');

+define('TABLE_HEADING_TAX_RATES_TOTAL', 'Defined Tax Rates');
+
+define('TABLE_HEADING_TAX_RATE_PRIORITY', 'Priority');
+define('TABLE_HEADING_ZONE', 'Zone');
+define('TABLE_HEADING_TAX_RATE', 'Tax Rate');
+

define('TABLE_HEADING_ACTION', 'Action');

+define('TEXT_INFO_HEADING_NEW_TAX_CLASS', 'New Tax Class');
+define('TEXT_INFO_HEADING_NEW_TAX_RATE', 'New Tax Rate');
+
+define('TEXT_INFO_INSERT_INTRO', 'Please enter the new tax class with its related data');

define('TEXT_INFO_EDIT_INTRO', 'Please make any necessary changes');

+define('TEXT_INFO_DELETE_INTRO', 'Are you sure you want to delete this tax class?');
+

define('TEXT_INFO_CLASS_TITLE', 'Tax Class Title:');
define('TEXT_INFO_CLASS_DESCRIPTION', 'Description:');

+
+define('TEXT_INFO_ZONE_NAME', 'Zone:');
+define('TEXT_INFO_TAX_RATE', 'Tax Rate (%):');
+define('TEXT_INFO_TAX_RATE_PRIORITY', 'Priority:');
+define('TEXT_INFO_TAX_RATE_DESCRIPTION', 'Description:');
+

define('TEXT_INFO_DATE_ADDED', 'Date Added:');
define('TEXT_INFO_LAST_MODIFIED', 'Last Modified:');

-define('TEXT_INFO_INSERT_INTRO', 'Please enter the new tax class with its related data');
-define('TEXT_INFO_DELETE_INTRO', 'Are you sure you want to delete this tax class?');
-define('TEXT_INFO_HEADING_NEW_TAX_CLASS', 'New Tax Class');
-define('TEXT_INFO_HEADING_EDIT_TAX_CLASS', 'Edit Tax Class');
-define('TEXT_INFO_HEADING_DELETE_TAX_CLASS', 'Delete Tax Class');
-?>

\ No newline at end of file

+
+define('TEXT_INFO_DELETE_PROHIBITED', 'Warning: This Tax Class cannot be deleted as it is currently assigned to one or more products.');
+define('TEXT_INFO_DELETE_TAX_RATES_WARNING', 'Warning: This Tax Class has %s tax rate(s) assigned which would also be deleted.');
+?>

----------

admin /admin /includes /languages /english

weight_classes.php 1.1 -> 1.2

diff -u -r1.1 -r1.2
--- weight_classes.php 2004/04/15 16:06:44 1.1
+++ weight_classes.php 2004/07/22 23:17:20 1.2
@@ -13,22 +13,19 @@

define('HEADING_TITLE', 'Weight Classes');

define('TABLE_HEADING_WEIGHT_CLASSES_TITLE', 'Description');

-define('TABLE_HEADING_WEIGHT_CLASSES_LANGUAGE', 'Language');

define('TABLE_HEADING_WEIGHT_CLASSES_UNIT', 'Unit');
define('TABLE_HEADING_ACTION', 'Action');

-define('CATEGORY_WEIGHT_RULES', 'Weight Class Rules For');
-

+define('TEXT_INFO_INSERT_INTRO', 'Please enter the new weight class with its related data');

define('TEXT_INFO_EDIT_INTRO', 'Please make any necessary changes');

+define('TEXT_INFO_DELETE_INTRO', 'Are you sure you want to delete this weight class?');
+

define('TEXT_INFO_WEIGHT_CLASS_TITLE', 'Weight Class Title / Unit:');
define('TEXT_INFO_CLASS_DESCRIPTION', 'Title:');

-define('TEXT_INFO_INSERT_INTRO', 'Please enter the new weight class with its related data');
-define('TEXT_INFO_DELETE_INTRO', 'Are you sure you want to delete this weight class?');

+

define('TEXT_INFO_HEADING_NEW_WEIGHT_CLASS', 'New Weight Class');

-define('TEXT_INFO_HEADING_EDIT_WEIGHT_CLASS', 'Edit Weight Class');
-define('TEXT_INFO_HEADING_DELETE_WEIGHT_CLASS', 'Delete Weight Class');

define('TEXT_INFO_HEADING_EDIT_WEIGHT_RULES', 'Conversion Rules');

-
-define('ERROR_REMOVE_DEFAULT_WEIGHT_CLASS', 'Error: The default weight class can not be removed. Please set another weight_class as default, and try again.');

+define('TEXT_INFO_DELETE_PROHIBITED', 'Warning: The default weight class can not be removed. Please set another weight class as the default, and try again.');
+define('TEXT_INFO_DELETE_PROHIBITED_PRODUCTS', 'Warning: This weight class is currently used in %s products and cannot be removed.');

?>

----------

admin /admin /includes /languages /english

zones.php 1.4 -> 1.5

diff -u -r1.4 -r1.5
--- zones.php 2002/01/28 00:23:17 1.4
+++ zones.php 2004/07/22 23:17:21 1.5
@@ -5,7 +5,7 @@

osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com

- Copyright (c) 2002 osCommerce

+ Copyright (c) 2004 osCommerce

Released under the GNU General Public License
*/

@@ -26,4 +26,7 @@

define('TEXT_INFO_HEADING_NEW_ZONE', 'New Zone');
define('TEXT_INFO_HEADING_EDIT_ZONE', 'Edit Zone');
define('TEXT_INFO_HEADING_DELETE_ZONE', 'Delete Zone');

-?>

\ No newline at end of file

+
+define('TEXT_INFO_DELETE_PROHIBITED_ADDRESS_BOOK', 'Warning: This Zone cannot be deleted as it is currently assigned to %s address book entries.');
+define('TEXT_INFO_DELETE_PROHIBITED_TAX_ZONES', 'Warning: This Zone cannot be deleted as it is currently assigned to %s tax zone(s).');
+?>

----------

admin /admin /includes /languages /english

stats_customers.php removed after 1.6

diff -N stats_customers.php
--- /tmp/cvsAAACvaGxa Fri Jul 23 01:17:23 2004
+++ /dev/null Fri Jul 23 01:17:19 2004
@@ -1,18 +0,0 @@

-<?php
-/*
- $Id$
-
- osCommerce, Open Source E-Commerce Solutions
- http://www.oscommerce.com
-
- Copyright (c) 2002 osCommerce
-
- Released under the GNU General Public License
-*/
-
-define('HEADING_TITLE', 'Best Customer Orders-Total');
-
-define('TABLE_HEADING_NUMBER', 'No.');
-define('TABLE_HEADING_CUSTOMERS', 'Customers');
-define('TABLE_HEADING_TOTAL_PURCHASED', 'Total Purchased');
-?>

\ No newline at end of file

----------

admin /admin /includes /languages /english

stats_products_purchased.php removed after 1.5

diff -N stats_products_purchased.php
--- /tmp/cvsAAA8vaOxa Fri Jul 23 01:17:23 2004
+++ /dev/null Fri Jul 23 01:17:19 2004
@@ -1,18 +0,0 @@

-<?php
-/*
- $Id$
-
- osCommerce, Open Source E-Commerce Solutions
- http://www.oscommerce.com
-
- Copyright (c) 2002 osCommerce
-
- Released under the GNU General Public License
-*/
-
-define('HEADING_TITLE', 'Best Products Purchased');
-
-define('TABLE_HEADING_NUMBER', 'No.');
-define('TABLE_HEADING_PRODUCTS', 'Products');
-define('TABLE_HEADING_PURCHASED', 'Purchased');
-?>

\ No newline at end of file

----------

admin /admin /includes /languages /english

stats_products_viewed.php removed after 1.5

diff -N stats_products_viewed.php
--- /tmp/cvsAAABwaWxa Fri Jul 23 01:17:23 2004
+++ /dev/null Fri Jul 23 01:17:19 2004
@@ -1,18 +0,0 @@

-<?php
-/*
- $Id$
-
- osCommerce, Open Source E-Commerce Solutions
- http://www.oscommerce.com
-
- Copyright (c) 2002 osCommerce
-
- Released under the GNU General Public License
-*/
-
-define('HEADING_TITLE', 'Best Viewed Products');
-
-define('TABLE_HEADING_NUMBER', 'No.');
-define('TABLE_HEADING_PRODUCTS', 'Products');
-define('TABLE_HEADING_VIEWED', 'Viewed');
-?>

\ No newline at end of file

----------

admin /admin /includes /languages /english /modules /statistics

orders.php added at 1.1

diff -N orders.php
--- /dev/null Fri Jul 23 01:17:19 2004
+++ /tmp/cvsAAAsAaqya Fri Jul 23 01:17:23 2004
@@ -0,0 +1,18 @@

+<?php
+/*
+ $Id$
+
+ osCommerce, Open Source E-Commerce Solutions
+ http://www.oscommerce.com
+
+ Copyright (c) 2004 osCommerce
+
+ Released under the GNU General Public License
+*/
+
+define('MODULE_STATISTICS_ORDERS_TITLE', 'Best Orders');
+
+define('MODULE_STATISTICS_ORDERS_TABLE_HEADING_NUMBER', 'No.');
+define('MODULE_STATISTICS_ORDERS_TABLE_HEADING_CUSTOMER', 'Customer');
+define('MODULE_STATISTICS_ORDERS_TABLE_HEADING_TOTAL', 'Total');
+?>

----------

admin /admin /includes /languages /english /modules /statistics

products_purchased.php added at 1.1

diff -N products_purchased.php
--- /dev/null Fri Jul 23 01:17:19 2004
+++ /tmp/cvsAAAhBaGya Fri Jul 23 01:17:23 2004
@@ -0,0 +1,18 @@

+<?php
+/*
+ $Id$
+
+ osCommerce, Open Source E-Commerce Solutions
+ http://www.oscommerce.com
+
+ Copyright (c) 2004 osCommerce
+
+ Released under the GNU General Public License
+*/
+
+define('MODULE_STATISTICS_PRODUCTS_PURCHASED_TITLE', 'Best Products Purchased');
+
+define('MODULE_STATISTICS_PRODUCTS_PURCHASED_TABLE_HEADING_NUMBER', 'No.');
+define('MODULE_STATISTICS_PRODUCTS_PURCHASED_TABLE_HEADING_PRODUCTS', 'Products');
+define('MODULE_STATISTICS_PRODUCTS_PURCHASED_TABLE_HEADING_PURCHASED', 'Purchased');
+?>

----------

admin /admin /includes /languages /english /modules /statistics

products_viewed.php added at 1.1

diff -N products_viewed.php
--- /dev/null Fri Jul 23 01:17:19 2004
+++ /tmp/cvsAAAcCaWya Fri Jul 23 01:17:23 2004
@@ -0,0 +1,19 @@

+<?php
+/*
+ $Id$
+
+ osCommerce, Open Source E-Commerce Solutions
+ http://www.oscommerce.com
+
+ Copyright (c) 2004 osCommerce
+
+ Released under the GNU General Public License
+*/
+
+define('MODULE_STATISTICS_PRODUCTS_VIEWED_TITLE', 'Best Viewed Products');
+
+define('MODULE_STATISTICS_PRODUCTS_VIEWED_TABLE_HEADING_NUMBER', 'No.');
+define('MODULE_STATISTICS_PRODUCTS_VIEWED_TABLE_HEADING_PRODUCTS', 'Products');
+define('MODULE_STATISTICS_PRODUCTS_VIEWED_TABLE_HEADING_LANGUAGE', 'Language');
+define('MODULE_STATISTICS_PRODUCTS_VIEWED_TABLE_HEADING_VIEWED', 'Viewed');
+?>

CVSspam 0.2.8

-------------------------------------------------------
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=4721&alloc_id=10040&op=click