38 lines
1.5 KiB
PHP
38 lines
1.5 KiB
PHP
<?php
|
|
/* ----------------------------------------------------------------------
|
|
$Id: checkout_process.php,v 1.3 2007/06/12 16:36:39 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.28 2003/02/16 00:42:03 harley_vb
|
|
----------------------------------------------------------------------
|
|
osCommerce, Open Source E-Commerce Solutions
|
|
http://www.oscommerce.com
|
|
|
|
Copyright (c) 2003 osCommerce
|
|
----------------------------------------------------------------------
|
|
Released under the GNU General Public License
|
|
---------------------------------------------------------------------- */
|
|
|
|
$aLang['email_text_subject'] = 'Bestellung';
|
|
$aLang['email_text_order_number'] = 'Bestellnummer:';
|
|
$aLang['email_text_invoice_url'] = 'Detailierte Bestellbersicht:';
|
|
$aLang['email_text_date_ordered'] = 'Bestelldatum:';
|
|
$aLang['email_text_products'] = 'Artikel';
|
|
$aLang['email_text_subtotal'] = 'Zwischensumme:';
|
|
$aLang['email_text_tax'] = 'MwSt.';
|
|
$aLang['email_text_shipping'] = 'Versandkosten:';
|
|
$aLang['email_text_total'] = 'Summe: ';
|
|
$aLang['email_text_delivery_address'] = 'Lieferanschrift';
|
|
$aLang['email_text_billing_address'] = 'Rechnungsanschrift';
|
|
$aLang['email_text_payment_method'] = 'Zahlungsweise';
|
|
|
|
$aLang['email_separator'] = '------------------------------------------------------';
|
|
$aLang['text_email_via'] = 'durch';
|
|
|