44 lines
1.7 KiB
PHP
44 lines
1.7 KiB
PHP
<?php
|
|
/* ----------------------------------------------------------------------
|
|
$Id: checkout_process.php,v 1.3 2007/06/12 16:51:19 r23 Exp $
|
|
|
|
MyOOS [Shopsystem]
|
|
https://www.oos-shop.de
|
|
|
|
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
|
----------------------------------------------------------------------
|
|
Based on:
|
|
|
|
File: checkout_process.php,v 1.26 2002/11/01 04:22:05 hpdl
|
|
----------------------------------------------------------------------
|
|
osCommerce, Open Source E-Commerce Solutions
|
|
http://www.oscommerce.com
|
|
|
|
Copyright (c) 2003 osCommerce
|
|
----------------------------------------------------------------------
|
|
Released under the GNU General Public License
|
|
---------------------------------------------------------------------- */
|
|
|
|
/* ----------------------------------------------------------------------
|
|
If you made a translation, please send to
|
|
lang@oos-shop.de
|
|
the translated file.
|
|
---------------------------------------------------------------------- */
|
|
|
|
$aLang['email_text_subject'] = 'Order Process';
|
|
$aLang['email_text_order_number'] = 'Order Number:';
|
|
$aLang['email_text_invoice_url'] = 'Detailed Invoice:';
|
|
$aLang['email_text_date_ordered'] = 'Date Ordered:';
|
|
$aLang['email_text_products'] = 'Products';
|
|
$aLang['email_text_subtotal'] = 'Sub-Total:';
|
|
$aLang['email_text_tax'] = 'Tax: ';
|
|
$aLang['email_text_shipping'] = 'Shipping: ';
|
|
$aLang['email_text_total'] = 'Total: ';
|
|
$aLang['email_text_delivery_address'] = 'Delivery Address';
|
|
$aLang['email_text_billing_address'] = 'Billing Address';
|
|
$aLang['email_text_payment_method'] = 'Payment Method';
|
|
|
|
$aLang['email_separator'] = '------------------------------------------------------';
|
|
$aLang['text_email_via'] = 'via';
|
|
|