PDF rausgenommen
This commit is contained in:
11
msd2/myoos/admin/includes/.htaccess
Normal file
11
msd2/myoos/admin/includes/.htaccess
Normal file
@ -0,0 +1,11 @@
|
||||
<Files ~ "\.php$">
|
||||
# Deny all requests from Apache 2.4+.
|
||||
<IfModule mod_authz_core.c>
|
||||
Require all denied
|
||||
</IfModule>
|
||||
|
||||
# Deny all requests from Apache 2.0-2.2.
|
||||
<IfModule !mod_authz_core.c>
|
||||
Deny from all
|
||||
</IfModule>
|
||||
</Files>
|
146
msd2/myoos/admin/includes/account_check.js.php
Normal file
146
msd2/myoos/admin/includes/account_check.js.php
Normal file
@ -0,0 +1,146 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: account_check.js.php,v 1.1 2007/06/08 15:20:14 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: account_check.js.php,v 1.8 2003/02/10 22:30:55 hpdl
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
?>
|
||||
|
||||
<?php
|
||||
if (substr(basename($_SERVER['PHP_SELF']), 0, 12) == 'admin_member') {
|
||||
?>
|
||||
|
||||
<script language="JavaScript" type="text/JavaScript">
|
||||
<!--
|
||||
function validateForm() {
|
||||
var p,z,xEmail,errors='',dbEmail,result=0,i;
|
||||
|
||||
var adminName1 = document.newmember.admin_firstname.value;
|
||||
var adminName2 = document.newmember.admin_lastname.value;
|
||||
var adminEmail = document.newmember.admin_email_address.value;
|
||||
|
||||
if (adminName1 == '') {
|
||||
errors+='<?php echo JS_ALERT_FIRSTNAME; ?>';
|
||||
} else if (adminName1.length < <?php echo ENTRY_FIRST_NAME_MIN_LENGTH; ?>) {
|
||||
errors+='- Firstname length must over <?php echo (ENTRY_FIRST_NAME_MIN_LENGTH); ?>\n';
|
||||
}
|
||||
|
||||
if (adminName2 == '') {
|
||||
errors+='<?php echo JS_ALERT_LASTNAME; ?>';
|
||||
} else if (adminName2.length < <?php echo ENTRY_FIRST_NAME_MIN_LENGTH; ?>) {
|
||||
errors+='- Lastname length must over <?php echo (ENTRY_LAST_NAME_MIN_LENGTH); ?>\n';
|
||||
}
|
||||
|
||||
if (adminEmail == '') {
|
||||
errors+='<?php echo JS_ALERT_EMAIL; ?>';
|
||||
} else if (adminEmail.indexOf("@") <= 1 || adminEmail.indexOf("@") >= (adminEmail.length - 3) || adminEmail.indexOf("@.") >= 0 ) {
|
||||
errors+='<?php echo JS_ALERT_EMAIL_FORMAT; ?>';
|
||||
} else if (adminEmail.length < <?php echo ENTRY_EMAIL_ADDRESS_MIN_LENGTH; ?>) {
|
||||
errors+='<?php echo JS_ALERT_EMAIL_FORMAT; ?>';
|
||||
}
|
||||
|
||||
if (errors) alert('The following error(s) occurred:\n'+errors);
|
||||
document.returnValue = (errors == '');
|
||||
}
|
||||
|
||||
|
||||
function checkGroups(obj) {
|
||||
var subgroupID,i;
|
||||
subgroupID = eval("this.defineForm.subgroups_"+parseFloat((obj.id).substring(7)));
|
||||
|
||||
if (subgroupID.length > 0) {
|
||||
for (i=0; i<subgroupID.length; i++) {
|
||||
if (obj.checked == true) { subgroupID[i].checked = true; }
|
||||
else { subgroupID[i].checked = false; }
|
||||
}
|
||||
} else {
|
||||
if (obj.checked == true) { subgroupID.checked = true; }
|
||||
else { subgroupID.checked = false; }
|
||||
}
|
||||
}
|
||||
|
||||
function checkSub(obj) {
|
||||
var groupID,subgroupID,i,num=0;
|
||||
groupID = eval("this.defineForm.groups_"+parseFloat((obj.id).substring(10)));
|
||||
subgroupID = eval("this.defineForm."+(obj.id));
|
||||
|
||||
if (subgroupID.length > 0) {
|
||||
for (i=0; i < subgroupID.length; i++) {
|
||||
if (subgroupID[i].checked == true) num++;
|
||||
}
|
||||
} else {
|
||||
if (subgroupID.checked == true) num++;
|
||||
}
|
||||
if (num>0) { groupID.checked = true; }
|
||||
else { groupID.checked = false; }
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
|
||||
<?php
|
||||
} else {
|
||||
?>
|
||||
|
||||
<script language="JavaScript" type="text/JavaScript">
|
||||
<!--
|
||||
function validateForm() {
|
||||
var p,z,xEmail,errors='',dbEmail,result=0,i;
|
||||
|
||||
var adminName1 = document.account.admin_firstname.value;
|
||||
var adminName2 = document.account.admin_lastname.value;
|
||||
var adminEmail = document.account.admin_email_address.value;
|
||||
var adminPass1 = document.account.admin_password.value;
|
||||
var adminPass2 = document.account.admin_password_confirm.value;
|
||||
|
||||
if (adminName1 == '') {
|
||||
errors+='<?php echo JS_ALERT_FIRSTNAME; ?>';
|
||||
} else if (adminName1.length < <?php echo ENTRY_FIRST_NAME_MIN_LENGTH; ?>) {
|
||||
errors+='<?php echo JS_ALERT_FIRSTNAME_LENGTH . ENTRY_FIRST_NAME_MIN_LENGTH; ?>\n';
|
||||
}
|
||||
|
||||
if (adminName2 == '') {
|
||||
errors+='<?php echo JS_ALERT_LASTNAME; ?>';
|
||||
} else if (adminName2.length < <?php echo ENTRY_LAST_NAME_MIN_LENGTH; ?>) {
|
||||
errors+='<?php echo JS_ALERT_LASTNAME_LENGTH . ENTRY_LAST_NAME_MIN_LENGTH; ?>\n';
|
||||
}
|
||||
|
||||
if (adminEmail == '') {
|
||||
errors+='<?php echo JS_ALERT_EMAIL; ?>';
|
||||
} else if (adminEmail.indexOf("@") <= 1 || adminEmail.indexOf("@") >= (adminEmail.length - 3) || adminEmail.indexOf("@.") >= 0 ) {
|
||||
errors+='<?php echo JS_ALERT_EMAIL_FORMAT; ?>';
|
||||
} else if (adminEmail.length < <?php echo ENTRY_EMAIL_ADDRESS_MIN_LENGTH; ?>) {
|
||||
errors+='<?php echo JS_ALERT_EMAIL_FORMAT; ?>';
|
||||
}
|
||||
|
||||
if (adminPass1 == '') {
|
||||
errors+='<?php echo JS_ALERT_PASSWORD; ?>';
|
||||
} else if (adminPass1.length < <?php echo ENTRY_PASSWORD_MIN_LENGTH; ?>) {
|
||||
errors+='<?php echo JS_ALERT_PASSWORD_LENGTH . ENTRY_PASSWORD_MIN_LENGTH; ?>\n';
|
||||
} else if (adminPass1 != adminPass2) {
|
||||
errors+='<?php echo JS_ALERT_PASSWORD_CONFIRM; ?>';
|
||||
}
|
||||
|
||||
if (errors) alert('The following error(s) occurred:\n'+errors);
|
||||
document.returnValue = (errors == '');
|
||||
}
|
||||
|
||||
//-->
|
||||
</script>
|
||||
|
||||
<?php
|
||||
}
|
||||
?>
|
126
msd2/myoos/admin/includes/blocks.php
Normal file
126
msd2/myoos/admin/includes/blocks.php
Normal file
@ -0,0 +1,126 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: blocks.php,v 1.1 2007/06/08 15:20:14 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: column_left.php,v 1.15 2002/01/11 05:03:25 hpdl
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
/** ensure this file is being included by a parent file */
|
||||
defined( 'OOS_VALID_MOD' ) or die( 'Direct Access to this location is not allowed.' );
|
||||
|
||||
/*
|
||||
$aBlocks[] = array(
|
||||
'heading' => 'Dashboard',
|
||||
'link' => oos_href_link_admin($aContents['default']),
|
||||
'icon' => 'fa fa-th-large',
|
||||
'active' => FALSE
|
||||
);
|
||||
*/
|
||||
$aBlocks[] = array();
|
||||
|
||||
if (oos_admin_check_boxes('customers.php') == TRUE) {
|
||||
include 'includes/boxes/customers.php';
|
||||
}
|
||||
if (oos_admin_check_boxes('catalog.php') == TRUE) {
|
||||
include 'includes/boxes/catalog.php';
|
||||
}
|
||||
if (oos_admin_check_boxes('reports.php') == TRUE) {
|
||||
include 'includes/boxes/reports.php';
|
||||
}
|
||||
if (oos_admin_check_boxes('configuration.php') == TRUE) {
|
||||
include 'includes/boxes/configuration.php';
|
||||
}
|
||||
if (oos_admin_check_boxes('content.php') == TRUE) {
|
||||
include 'includes/boxes/content.php';
|
||||
}
|
||||
if (oos_admin_check_boxes('modules.php') == TRUE) {
|
||||
include 'includes/boxes/modules.php';
|
||||
}
|
||||
if (oos_admin_check_boxes('plugins.php') == TRUE) {
|
||||
include 'includes/boxes/plugins.php';
|
||||
}
|
||||
if (oos_admin_check_boxes('taxes.php') == TRUE) {
|
||||
include 'includes/boxes/taxes.php';
|
||||
}
|
||||
if (oos_admin_check_boxes('localization.php') == TRUE) {
|
||||
include 'includes/boxes/localization.php';
|
||||
}
|
||||
if (oos_admin_check_boxes('tools.php') == TRUE) {
|
||||
include 'includes/boxes/tools.php';
|
||||
}
|
||||
if (oos_admin_check_boxes('gv_admin.php') == TRUE) {
|
||||
include 'includes/boxes/gv_admin.php';
|
||||
}
|
||||
if (oos_admin_check_boxes('export.php') == TRUE) {
|
||||
include 'includes/boxes/export.php';
|
||||
}
|
||||
if (oos_admin_check_boxes('information.php') == TRUE) {
|
||||
include 'includes/boxes/information.php';
|
||||
}
|
||||
if (oos_admin_check_boxes('administrator.php') == TRUE) {
|
||||
include 'includes/boxes/administrator.php';
|
||||
}
|
||||
if (is_array($aBlocks)) {
|
||||
$php_self = basename($_SERVER['PHP_SELF']);
|
||||
|
||||
echo '<nav class="sidebar" data-sidebar-anyclick-close="">' . "\n" .
|
||||
' <!-- START sidebar nav //-->' . "\n" .
|
||||
' <ul class="sidebar-nav">' . "\n" .
|
||||
' <!-- Iterates over all sidebar items //-->' . "\n" .
|
||||
' <li class="nav-heading">' . "\n" .
|
||||
' <span data-localize="sidebar.heading.HEADER">Dashboard</span>' . "\n" .
|
||||
' </li>' . "\n";
|
||||
|
||||
foreach ($aBlocks as $panels ) {
|
||||
if ($panels['active'] == TRUE) {
|
||||
echo '<li class="active">' . "\n";
|
||||
} else {
|
||||
echo '<li class=" ">' . "\n";
|
||||
}
|
||||
|
||||
if (!empty($panels)) {
|
||||
echo '<a href="#' . oos_strtolower($panels['heading']) . '" title="' . $panels['heading'] . '" data-toggle="collapse">' . "\n" .
|
||||
' <em class="' . $panels['icon'] . '" aria-hidden="true"></em>' . "\n" .
|
||||
' <span data-localize="sidebar.nav.' . oos_strtolower($panels['heading']) . '.' . oos_strtoupper($panels['heading']) . '">' . $panels['heading'] . '</span>' . "\n" .
|
||||
'</a>' . "\n";
|
||||
}
|
||||
|
||||
if (is_array($panels['contents'])) {
|
||||
echo '<ul class="sidebar-nav sidebar-subnav collapse" id="' . oos_strtolower($panels['heading']) . '">' . "\n" .
|
||||
' <li class="sidebar-subnav-header">' . $panels['heading'] . '</li>' . "\n";
|
||||
foreach ($panels['contents'] as $contents) {
|
||||
if ( ( $php_self == $contents['code'] )
|
||||
|| ((isset($_GET['gID'])) && ($_GET['gID'] == $contents['code']))
|
||||
|| ((isset($_GET['set'])) && ($_GET['set'] == $contents['code'])) ) {
|
||||
echo '<li class="active">' . "\n";
|
||||
} else {
|
||||
echo '<li class=" ">' . "\n";
|
||||
}
|
||||
|
||||
echo ' <a href="' . $contents['link'] . '" title="' . $contents['title'] . '">' . "\n" .
|
||||
' <span data-localize="sidebar.nav.' . oos_strtolower($panels['heading']) . '.' . oos_strtoupper($contents['title']) . '">' . $contents['title'] . '</span>' . "\n" .
|
||||
' </a>' . "\n" .
|
||||
'</li>' . "\n";
|
||||
}
|
||||
echo '</ul>' . "\n";
|
||||
}
|
||||
echo '</li>' . "\n";
|
||||
}
|
||||
|
||||
echo ' </ul>' . "\n" .
|
||||
'</nav>' . "\n";
|
||||
}
|
44
msd2/myoos/admin/includes/bottom.php
Normal file
44
msd2/myoos/admin/includes/bottom.php
Normal file
@ -0,0 +1,44 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
/** ensure this file is being included by a parent file */
|
||||
defined( 'OOS_VALID_MOD' ) or die( 'Direct Access to this location is not allowed.' );
|
||||
|
||||
if ($bForm == TRUE) {
|
||||
?>
|
||||
<!-- PARSLEY-->
|
||||
<script src="js/plugins/parsley/parsley.min.js"></script>
|
||||
<script src="js/plugins/parsley/i18n/<?php echo $_SESSION['iso_639_1']; ?>.js"></script>
|
||||
<script >
|
||||
window.Parsley.setLocale('<?php echo $_SESSION['iso_639_1']; ?>');
|
||||
</script>
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
<!-- JS GLOBAL Compulsory -->
|
||||
<script src="js/jquery/jquery.min.js"></script>
|
||||
<script src="js/bootstrap/bootstrap.min.js"></script>
|
||||
<script src="js/plugins/slimscroll/jquery.slimscroll.min.js"></script>
|
||||
<script src="js/plugins/screenfull/dist/screenfull.min.js"></script>
|
||||
<script src="js/plugins/jquery-storage-api/jquery.storageapi.min.js"></script>
|
||||
<script src="js/plugins/moment/min/moment-with-locales.min.js"></script>
|
||||
<script src="js/plugins/bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.js"></script>
|
||||
<script src="js/plugins/jasny/jasny-bootstrap.min.js"></script>
|
||||
<script src="js/general.js"></script>
|
||||
|
||||
<!-- HTML5 shim and Respond.js IE support of HTML5 elements and media queries -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="js/plugin/respond.js"></script>
|
||||
<script src="js/plugin/html5shiv.js"></script>
|
||||
<![endif]-->
|
||||
|
||||
</body>
|
||||
</html>
|
42
msd2/myoos/admin/includes/boxes/administrator.php
Normal file
42
msd2/myoos/admin/includes/boxes/administrator.php
Normal file
@ -0,0 +1,42 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: administrator.php 437 2013-06-22 15:33:30Z r23 $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: administrator.php,v 1.20 2002/03/16 00:20:11 hpdl
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
$bActive = ($_SESSION['selected_box'] == 'administrator' ) ? TRUE : FALSE;
|
||||
|
||||
$aBlocks[] = array(
|
||||
'heading' => BOX_HEADING_ADMINISTRATOR,
|
||||
'link' => oos_href_link_admin(basename($_SERVER['PHP_SELF']), oos_get_all_get_params(array('selected_box')) . 'selected_box=administrator'),
|
||||
'icon' => 'fa fa-user',
|
||||
'active' => $bActive,
|
||||
'contents' => array(
|
||||
array(
|
||||
'code' => $aContents['admin_members'],
|
||||
'title' => BOX_ADMINISTRATOR_MEMBERS,
|
||||
'link' => oos_admin_files_boxes('admin_members', 'selected_box=administrator')
|
||||
),
|
||||
array(
|
||||
'code' => $aContents['admin_files'],
|
||||
'title' => BOX_ADMINISTRATOR_BOXES,
|
||||
'link' => oos_admin_files_boxes('admin_files', 'selected_box=administrator')
|
||||
),
|
||||
),
|
||||
);
|
||||
|
92
msd2/myoos/admin/includes/boxes/catalog.php
Normal file
92
msd2/myoos/admin/includes/boxes/catalog.php
Normal file
@ -0,0 +1,92 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: catalog.php 437 2013-06-22 15:33:30Z r23 $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: catalog.php,v 1.20 2002/03/16 00:20:11 hpdl
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
$bActive = ($_SESSION['selected_box'] == 'catalog' ) ? TRUE : FALSE;
|
||||
|
||||
$aBlocks[] = array(
|
||||
'heading' => BOX_HEADING_CATALOG,
|
||||
'link' => oos_href_link_admin(basename($_SERVER['PHP_SELF']), oos_get_all_get_params(array('selected_box')) . 'selected_box=catalog'),
|
||||
'icon' => 'fa fa-desktop',
|
||||
'active' => $bActive,
|
||||
'contents' => array(
|
||||
array(
|
||||
'code' => $aContents['categories'],
|
||||
'title' => BOX_CATALOG_CATEGORIES_PRODUCTS,
|
||||
'link' => oos_admin_files_boxes('categories', 'selected_box=catalog')
|
||||
),
|
||||
array(
|
||||
'code' => $aContents['specials'],
|
||||
'title' => BOX_CATALOG_SPECIALS,
|
||||
'link' => oos_admin_files_boxes('specials', 'selected_box=catalog')
|
||||
),
|
||||
array(
|
||||
'code' => $aContents['products_expected'],
|
||||
'title' => BOX_CATALOG_PRODUCTS_EXPECTED,
|
||||
'link' => oos_admin_files_boxes('products_expected', 'selected_box=catalog')
|
||||
),
|
||||
array(
|
||||
'code' => $aContents['featured'],
|
||||
'title' => BOX_CATALOG_PRODUCTS_FEATURED,
|
||||
'link' => oos_admin_files_boxes('featured', 'selected_box=catalog')
|
||||
),
|
||||
array(
|
||||
'code' => $aContents['products_attributes'],
|
||||
'title' => BOX_CATALOG_CATEGORIES_PRODUCTS_ATTRIBUTES,
|
||||
'link' => oos_admin_files_boxes('products_attributes', 'selected_box=catalog')
|
||||
),
|
||||
array(
|
||||
'code' => $aContents['products_status'],
|
||||
'title' => BOX_CATALOG_PRODUCTS_STATUS,
|
||||
'link' => oos_admin_files_boxes('products_status', 'selected_box=catalog')
|
||||
),
|
||||
array(
|
||||
'code' => $aContents['products_units'],
|
||||
'title' => BOX_CATALOG_PRODUCTS_UNITS,
|
||||
'link' => oos_admin_files_boxes('products_units', 'selected_box=catalog')
|
||||
),
|
||||
array(
|
||||
'code' => $aContents['export_excel'],
|
||||
'title' => BOX_CATALOG_EXPORT_EXCEL,
|
||||
'link' => oos_admin_files_boxes('export_excel', 'selected_box=catalog')
|
||||
),
|
||||
array(
|
||||
'code' => $aContents['import_excel'],
|
||||
'title' => BOX_CATALOG_IMPORT_EXCEL,
|
||||
'link' => oos_admin_files_boxes('import_excel', 'selected_box=catalog')
|
||||
),
|
||||
array(
|
||||
'code' => $aContents['manufacturers'],
|
||||
'title' => BOX_CATALOG_MANUFACTURERS,
|
||||
'link' => oos_admin_files_boxes('manufacturers', 'selected_box=catalog')
|
||||
),
|
||||
array(
|
||||
'code' => $aContents['reviews'],
|
||||
'title' => BOX_CATALOG_REVIEWS,
|
||||
'link' => oos_admin_files_boxes('reviews', 'selected_box=catalog')
|
||||
),
|
||||
array(
|
||||
'code' => $aContents['wastebasket'],
|
||||
'title' => BOX_CATALOG_WASTEBASKET,
|
||||
'link' => oos_admin_files_boxes('wastebasket', 'selected_box=catalog')
|
||||
),
|
||||
|
||||
),
|
||||
);
|
44
msd2/myoos/admin/includes/boxes/configuration.php
Normal file
44
msd2/myoos/admin/includes/boxes/configuration.php
Normal file
@ -0,0 +1,44 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: configuration.php 437 2013-06-22 15:33:30Z r23 $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: configuration.php,v 1.16 2002/03/16 00:20:11 hpdl
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
|
||||
$bActive = ($_SESSION['selected_box'] == 'configuration' ) ? TRUE : FALSE;
|
||||
|
||||
$aBlocks[] = array(
|
||||
'heading' => BOX_HEADING_CONFIGURATION,
|
||||
'link' => oos_href_link_admin(basename($_SERVER['PHP_SELF']), oos_get_all_get_params(array('selected_box')) . 'selected_box=configuration'),
|
||||
'icon' => 'fa fa-cogs',
|
||||
'active' => $bActive
|
||||
);
|
||||
|
||||
$configuration_groups_result = $dbconn->Execute("SELECT configuration_group_id AS cg_id FROM " . $oostable['configuration_group'] . " WHERE visible = '1' ORDER BY sort_order");
|
||||
|
||||
while ($configuration_groups = $configuration_groups_result->fields) {
|
||||
$aBlocks[sizeof($aBlocks)-1]['contents'][] = array(
|
||||
'code' => $configuration_groups['cg_id'],
|
||||
'title' => constant(strtoupper($configuration_groups['cg_id'] . '_TITLE')),
|
||||
'link' => oos_href_link_admin($aContents['configuration'], 'selected_box=configuration&gID=' . $configuration_groups['cg_id'])
|
||||
);
|
||||
|
||||
// Move that ADOdb pointer!
|
||||
$configuration_groups_result->MoveNext();
|
||||
}
|
||||
|
39
msd2/myoos/admin/includes/boxes/content.php
Normal file
39
msd2/myoos/admin/includes/boxes/content.php
Normal file
@ -0,0 +1,39 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: content.php 437 2013-06-22 15:33:30Z r23 $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
$bActive = ($_SESSION['selected_box'] == 'content' ) ? TRUE : FALSE;
|
||||
|
||||
$aBlocks[] = array(
|
||||
'heading' => BOX_HEADING_CONTENT,
|
||||
'link' => oos_href_link_admin(basename($_SERVER['PHP_SELF']), oos_get_all_get_params(array('selected_box')) . 'selected_box=content'),
|
||||
'icon' => 'fa fa-files-o',
|
||||
'active' => $bActive,
|
||||
'contents' => array(
|
||||
array(
|
||||
'code' => $aContents['content_block'],
|
||||
'title' => BOX_CONTENT_BLOCK,
|
||||
'link' => oos_admin_files_boxes('content_block', 'selected_box=content')
|
||||
),
|
||||
array(
|
||||
'code' => $aContents['content_page_type'],
|
||||
'title' => BOX_CONTENT_PAGE_TYPE,
|
||||
'link' => oos_admin_files_boxes('content_page_type', 'selected_box=content')
|
||||
),
|
||||
),
|
||||
);
|
57
msd2/myoos/admin/includes/boxes/customers.php
Normal file
57
msd2/myoos/admin/includes/boxes/customers.php
Normal file
@ -0,0 +1,57 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: customers.php 437 2013-06-22 15:33:30Z r23 $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: customers.php,v 1.15 2002/03/16 00:20:11 hpdl
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
$bActive = ($_SESSION['selected_box'] == 'customers' ) ? TRUE : FALSE;
|
||||
|
||||
|
||||
$aBlocks[] = array(
|
||||
'heading' => BOX_HEADING_CUSTOMERS,
|
||||
'link' => oos_href_link_admin(basename($_SERVER['PHP_SELF']), oos_get_all_get_params(array('selected_box')) . 'selected_box=customers'),
|
||||
'icon' => 'fa fa-users',
|
||||
'active' => $bActive,
|
||||
'contents' => array(
|
||||
array(
|
||||
'code' => $aContents['customers'],
|
||||
'title' => BOX_CUSTOMERS_CUSTOMERS,
|
||||
'link' => oos_admin_files_boxes('customers', 'selected_box=customers')
|
||||
),
|
||||
array(
|
||||
'code' => $aContents['orders'],
|
||||
'title' => BOX_CUSTOMERS_ORDERS,
|
||||
'link' => oos_admin_files_boxes('orders', 'selected_box=customers')
|
||||
),
|
||||
array(
|
||||
'code' => $aContents['customers_status'],
|
||||
'title' => BOX_LOCALIZATION_CUSTOMERS_STATUS,
|
||||
'link' => oos_admin_files_boxes('customers_status','selected_box=customers')
|
||||
),
|
||||
array(
|
||||
'code' => $aContents['orders_status'],
|
||||
'title' => BOX_ORDERS_STATUS,
|
||||
'link' => oos_admin_files_boxes('orders_status', 'selected_box=customers')
|
||||
),
|
||||
array(
|
||||
'code' => $aContents['manual_loging'],
|
||||
'title' => BOX_ADMIN_LOGIN,
|
||||
'link' => oos_admin_files_boxes('manual_loging', 'selected_box=customers')
|
||||
),
|
||||
),
|
||||
);
|
42
msd2/myoos/admin/includes/boxes/export.php
Normal file
42
msd2/myoos/admin/includes/boxes/export.php
Normal file
@ -0,0 +1,42 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: export.php 437 2013-06-22 15:33:30Z r23 $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
|
||||
$bActive = ($_SESSION['selected_box'] == 'export' ) ? TRUE : FALSE;
|
||||
|
||||
|
||||
$aBlocks[] = array(
|
||||
'heading' => BOX_HEADING_EXPORT,
|
||||
'link' => oos_href_link_admin(basename($_SERVER['PHP_SELF']), oos_get_all_get_params(array('selected_box')) . 'selected_box=tools'),
|
||||
'icon' => 'fa fa-database',
|
||||
'active' => $bActive,
|
||||
'contents' => array(
|
||||
array(
|
||||
'code' => $aContents['export_googlebase'],
|
||||
'title' => BOX_EXPORT_GOOGLEBASE,
|
||||
'link' => oos_admin_files_boxes('export_googlebase', 'selected_box=export')
|
||||
),
|
||||
array(
|
||||
'code' => $aContents['export_excel'],
|
||||
'title' => BOX_CATALOG_EXPORT_EXCEL,
|
||||
'link' => oos_admin_files_boxes('export_excel', 'selected_box=export')
|
||||
),
|
||||
),
|
||||
);
|
||||
|
56
msd2/myoos/admin/includes/boxes/gv_admin.php
Normal file
56
msd2/myoos/admin/includes/boxes/gv_admin.php
Normal file
@ -0,0 +1,56 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: gv_admin.php 437 2013-06-22 15:33:30Z r23 $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: gv_admin.php,v 1.2.2.1 2003/04/18 21:13:51 wilt
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2002 - 2003 osCommerce
|
||||
|
||||
Gift Voucher System v1.0
|
||||
Copyright (c) 2001,2002 Ian C Wilson
|
||||
http://www.phesis.org
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
$bActive = ($_SESSION['selected_box'] == 'gv_admin' ) ? TRUE : FALSE;
|
||||
|
||||
$aBlocks[] = array(
|
||||
'heading' => BOX_HEADING_GV_ADMIN,
|
||||
'link' => oos_href_link_admin(basename($_SERVER['PHP_SELF']), oos_get_all_get_params(array('selected_box')) . 'selected_box=gv_admin'),
|
||||
'icon' => 'fa fa-certificate',
|
||||
'active' => $bActive,
|
||||
'contents' => array(
|
||||
array(
|
||||
'code' => $aContents['coupon_admin'],
|
||||
'title' => BOX_COUPON_ADMIN,
|
||||
'link' => oos_admin_files_boxes('coupon_admin', 'selected_box=gv_admin')
|
||||
),
|
||||
array(
|
||||
'code' => $aContents['gv_queue'],
|
||||
'title' => BOX_GV_ADMIN_QUEUE,
|
||||
'link' => oos_admin_files_boxes('gv_queue', 'selected_box=gv_admin')
|
||||
),
|
||||
array(
|
||||
'code' => $aContents['gv_mail'],
|
||||
'title' => BOX_GV_ADMIN_MAIL,
|
||||
'link' => oos_admin_files_boxes('gv_mail', 'selected_box=gv_admin')
|
||||
),
|
||||
array(
|
||||
'code' => $aContents['gv_sent'],
|
||||
'title' => BOX_GV_ADMIN_SENT,
|
||||
'link' => oos_admin_files_boxes('gv_sent', 'selected_box=gv_admin')
|
||||
),
|
||||
),
|
||||
);
|
||||
|
36
msd2/myoos/admin/includes/boxes/information.php
Normal file
36
msd2/myoos/admin/includes/boxes/information.php
Normal file
@ -0,0 +1,36 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: information.php 437 2013-06-22 15:33:30Z r23 $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
|
||||
$bActive = ($_SESSION['selected_box'] == 'information' ) ? TRUE : FALSE;
|
||||
|
||||
$aBlocks[] = array(
|
||||
'heading' => BOX_HEADING_INFORMATION,
|
||||
'link' => oos_href_link_admin(basename($_SERVER['PHP_SELF']), oos_get_all_get_params(array('selected_box')) . 'selected_box=information'),
|
||||
'icon' => 'fa fa-tasks',
|
||||
'active' => $bActive,
|
||||
'contents' => array(
|
||||
array(
|
||||
'code' => $aContents['information'],
|
||||
'title' => BOX_INFORMATION,
|
||||
'link' => oos_admin_files_boxes('information', 'selected_box=information')
|
||||
),
|
||||
|
||||
),
|
||||
);
|
42
msd2/myoos/admin/includes/boxes/localization.php
Normal file
42
msd2/myoos/admin/includes/boxes/localization.php
Normal file
@ -0,0 +1,42 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: localization.php 437 2013-06-22 15:33:30Z r23 $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: localization.php,v 1.15 2002/03/16 00:20:11 hpdl
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
$bActive = ($_SESSION['selected_box'] == 'localization' ) ? TRUE : FALSE;
|
||||
|
||||
$aBlocks[] = array(
|
||||
'heading' => BOX_HEADING_LOCALIZATION,
|
||||
'link' => oos_href_link_admin(basename($_SERVER['PHP_SELF']), oos_get_all_get_params(array('selected_box')) . 'selected_box=localization'),
|
||||
'icon' => 'fa fa-language',
|
||||
'active' => $bActive,
|
||||
'contents' => array(
|
||||
array(
|
||||
'code' => $aContents['currencies'],
|
||||
'title' => BOX_LOCALIZATION_CURRENCIES,
|
||||
'link' => oos_admin_files_boxes('currencies', 'selected_box=localization')
|
||||
),
|
||||
array(
|
||||
'code' => $aContents['languages'],
|
||||
'title' => BOX_LOCALIZATION_LANGUAGES,
|
||||
'link' => oos_admin_files_boxes('languages', 'selected_box=localization')
|
||||
),
|
||||
),
|
||||
);
|
||||
|
47
msd2/myoos/admin/includes/boxes/modules.php
Normal file
47
msd2/myoos/admin/includes/boxes/modules.php
Normal file
@ -0,0 +1,47 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: modules.php 437 2013-06-22 15:33:30Z r23 $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: modules.php,v 1.15 2002/04/03 23:25:41 hpdl
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
$bActive = ($_SESSION['selected_box'] == 'modules' ) ? TRUE : FALSE;
|
||||
|
||||
$aBlocks[] = array(
|
||||
'heading' => BOX_HEADING_MODULES,
|
||||
'link' => oos_href_link_admin(basename($_SERVER['PHP_SELF']), oos_get_all_get_params(array('selected_box')) . 'selected_box=modules'),
|
||||
'icon' => 'fa fa-edit',
|
||||
'active' => $bActive,
|
||||
'contents' => array(
|
||||
array(
|
||||
'code' => 'payment',
|
||||
'title' => BOX_MODULES_PAYMENT,
|
||||
'link' => oos_href_link_admin($aContents['modules'], 'selected_box=modules&set=payment')
|
||||
),
|
||||
array(
|
||||
'code' => 'shipping',
|
||||
'title' => BOX_MODULES_SHIPPING,
|
||||
'link' => oos_href_link_admin($aContents['modules'], 'selected_box=modules&set=shipping')
|
||||
),
|
||||
array(
|
||||
'code' => 'ordertotal',
|
||||
'title' => BOX_MODULES_ORDER_TOTAL,
|
||||
'link' => oos_href_link_admin($aContents['modules'], 'selected_box=modules&set=ordertotal')
|
||||
),
|
||||
),
|
||||
);
|
||||
|
27
msd2/myoos/admin/includes/boxes/plugins.php
Normal file
27
msd2/myoos/admin/includes/boxes/plugins.php
Normal file
@ -0,0 +1,27 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: plugins.php 437 2013-06-22 15:33:30Z r23 $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
$bActive = ($_SESSION['selected_box'] == 'plugins' ) ? TRUE : FALSE;
|
||||
|
||||
$aBlocks[] = array(
|
||||
'heading' => BOX_HEADING_PLUGINS,
|
||||
'link' => oos_href_link_admin(basename($_SERVER['PHP_SELF']), oos_get_all_get_params(array('selected_box')) . 'selected_box=plugins'),
|
||||
'icon' => 'fa fa-plug',
|
||||
'active' => $bActive,
|
||||
'contents' => array(
|
||||
array(
|
||||
'code' => $aContents['plugins'],
|
||||
'title' => BOX_PLUGINS_EVENT,
|
||||
'link' => oos_href_link_admin($aContents['plugins'], 'selected_box=plugins')
|
||||
),
|
||||
),
|
||||
);
|
56
msd2/myoos/admin/includes/boxes/reports.php
Normal file
56
msd2/myoos/admin/includes/boxes/reports.php
Normal file
@ -0,0 +1,56 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: reports.php 437 2013-06-22 15:33:30Z r23 $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: reports.php,v 1.4 2002/03/16 00:20:11 hpdl
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
$bActive = ($_SESSION['selected_box'] == 'reports' ) ? TRUE : FALSE;
|
||||
|
||||
$aBlocks[] = array(
|
||||
'heading' => BOX_HEADING_REPORTS,
|
||||
'link' => oos_href_link_admin(basename($_SERVER['PHP_SELF']), oos_get_all_get_params(array('selected_box')) . 'selected_box=reports'),
|
||||
'icon' => 'fa fa-bar-chart-o',
|
||||
'active' => $bActive,
|
||||
'contents' => array(
|
||||
array(
|
||||
'code' => $aContents['stats_products_purchased'],
|
||||
'title' => BOX_REPORTS_PRODUCTS_PURCHASED,
|
||||
'link' => oos_admin_files_boxes('stats_products_purchased', 'selected_box=reports')
|
||||
),
|
||||
array(
|
||||
'code' => $aContents['stats_products_viewed'],
|
||||
'title' => BOX_REPORTS_PRODUCTS_VIEWED,
|
||||
'link' => oos_admin_files_boxes('stats_products_viewed', 'selected_box=reports')
|
||||
),
|
||||
array(
|
||||
'code' => $aContents['stats_low_stock'],
|
||||
'title' => BOX_REPORTS_STOCK_LEVEL,
|
||||
'link' => oos_admin_files_boxes('stats_low_stock', 'selected_box=reports')
|
||||
),
|
||||
array(
|
||||
'code' => $aContents['stats_customers'],
|
||||
'title' => BOX_REPORTS_ORDERS_TOTAL,
|
||||
'link' => oos_admin_files_boxes('stats_customers', 'selected_box=reports')
|
||||
),
|
||||
array(
|
||||
'code' => $aContents['stats_sales_report2'],
|
||||
'title' => BOX_REPORTS_SALES_REPORT2,
|
||||
'link' => oos_admin_files_boxes('stats_sales_report2', 'selected_box=reports')
|
||||
),
|
||||
),
|
||||
);
|
57
msd2/myoos/admin/includes/boxes/taxes.php
Normal file
57
msd2/myoos/admin/includes/boxes/taxes.php
Normal file
@ -0,0 +1,57 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: taxes.php 437 2013-06-22 15:33:30Z r23 $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: taxes.php,v 1.16 2002/03/16 00:20:11 hpdl
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
$bActive = ($_SESSION['selected_box'] == 'taxes' ) ? TRUE : FALSE;
|
||||
|
||||
$aBlocks[] = array(
|
||||
'heading' => BOX_HEADING_LOCATION_AND_TAXES,
|
||||
'link' => oos_href_link_admin(basename($_SERVER['PHP_SELF']), oos_get_all_get_params(array('selected_box')) . 'selected_box=taxes'),
|
||||
'icon' => 'fa fa-globe',
|
||||
'active' => $bActive,
|
||||
'contents' => array(
|
||||
array(
|
||||
'code' => $aContents['countries'],
|
||||
'title' => BOX_TAXES_COUNTRIES,
|
||||
'link' => oos_admin_files_boxes('countries', 'selected_box=taxes')
|
||||
),
|
||||
array(
|
||||
'code' => $aContents['zones'],
|
||||
'title' => BOX_TAXES_ZONES,
|
||||
'link' => oos_admin_files_boxes('zones', 'selected_box=taxes')
|
||||
),
|
||||
array(
|
||||
'code' => $aContents['geo_zones'],
|
||||
'title' => BOX_TAXES_GEO_ZONES,
|
||||
'link' => oos_admin_files_boxes('geo_zones', 'selected_box=taxes')
|
||||
),
|
||||
array(
|
||||
'code' => $aContents['tax_classes'],
|
||||
'title' => BOX_TAXES_TAX_CLASSES,
|
||||
'link' => oos_admin_files_boxes('tax_classes', 'selected_box=taxes')
|
||||
),
|
||||
array(
|
||||
'code' => $aContents['tax_rates'],
|
||||
'title' => BOX_TAXES_TAX_RATES,
|
||||
'link' => oos_admin_files_boxes('tax_rates', 'selected_box=taxes')
|
||||
),
|
||||
),
|
||||
);
|
||||
|
46
msd2/myoos/admin/includes/boxes/tools.php
Normal file
46
msd2/myoos/admin/includes/boxes/tools.php
Normal file
@ -0,0 +1,46 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: tools.php 437 2013-06-22 15:33:30Z r23 $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: tools.php,v 1.20 2002/03/16 00:20:11 hpdl
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
$bActive = ($_SESSION['selected_box'] == 'tools' ) ? TRUE : FALSE;
|
||||
|
||||
$aBlocks[] = array(
|
||||
'heading' => BOX_HEADING_TOOLS,
|
||||
'link' => oos_href_link_admin(basename($_SERVER['PHP_SELF']), oos_get_all_get_params(array('selected_box')) . 'selected_box=tools'),
|
||||
'icon' => 'fa fa-database',
|
||||
'active' => $bActive,
|
||||
'contents' => array(
|
||||
array(
|
||||
'code' => $aContents['mail'],
|
||||
'title' => BOX_TOOLS_MAIL,
|
||||
'link' => oos_admin_files_boxes('mail', 'selected_box=tools')
|
||||
),
|
||||
array(
|
||||
'code' => $aContents['newsletters'],
|
||||
'title' => BOX_TOOLS_NEWSLETTER_MANAGER,
|
||||
'link' => oos_admin_files_boxes('newsletters', 'selected_box=tools')
|
||||
),
|
||||
array(
|
||||
'code' => $aContents['whos_online'],
|
||||
'title' => BOX_TOOLS_WHOS_ONLINE,
|
||||
'link' => oos_admin_files_boxes('whos_online', 'selected_box=tools')
|
||||
),
|
||||
),
|
||||
);
|
70
msd2/myoos/admin/includes/classes/class_box.php
Normal file
70
msd2/myoos/admin/includes/classes/class_box.php
Normal file
@ -0,0 +1,70 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: class_box.php,v 1.1 2007/06/08 14:58:10 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: box.php,v 1.5 2002/03/16 00:20:11 hpdl
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
----------------------------------------------------------------------
|
||||
Example usage:
|
||||
|
||||
$heading = array();
|
||||
$heading[] = array('params' => 'class="menuBoxHeading"',
|
||||
'text' => BOX_HEADING_TOOLS,
|
||||
'link' => oos_href_link_admin(basename($_SERVER['PHP_SELF']), oos_get_all_get_params(array('selected_box')) . 'selected_box=tools'));
|
||||
|
||||
$contents = array();
|
||||
$contents[] = array('text' => SOME_TEXT);
|
||||
|
||||
$box = new box;
|
||||
echo $box->infoBox($heading, $contents);
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
/** ensure this file is being included by a parent file */
|
||||
defined( 'OOS_VALID_MOD' ) or die( 'Direct Access to this location is not allowed.' );
|
||||
|
||||
class box extends tableBlock {
|
||||
public function __construct() {
|
||||
$this->heading = array();
|
||||
$this->contents = array();
|
||||
}
|
||||
|
||||
public function infoBox($heading, $contents) {
|
||||
$this->heading = '<thead class="thead-dark">' . $this->tableThead($heading) . '</thead>';
|
||||
|
||||
$this->contents = '<tbody>' . $this->tableBlock($contents) . '</tbody>';
|
||||
|
||||
return $this->heading . $this->contents;
|
||||
}
|
||||
|
||||
public function menuBox($heading, $contents) {
|
||||
|
||||
$this->table_data_parameters = 'class="menuBoxHeading"';
|
||||
if ($heading[0]['link']) {
|
||||
$this->table_data_parameters .= ' onmouseover="this.style.cursor=\'hand\'" onclick="document.location.href=\'' . $heading[0]['link'] . '\'"';
|
||||
$heading[0]['text'] = ' <a href="' . $heading[0]['link'] . '" class="menuBoxHeadingLink">' . $heading[0]['text'] . '</a> ';
|
||||
} else {
|
||||
$heading[0]['text'] = ' ' . $heading[0]['text'] . ' ';
|
||||
}
|
||||
$this->heading = $this->tableBlock($heading);
|
||||
|
||||
$this->table_data_parameters = 'class="menuBoxContent"';
|
||||
$this->contents = $this->tableBlock($contents);
|
||||
|
||||
return $this->heading . $this->contents;
|
||||
|
||||
}
|
||||
}
|
||||
|
75
msd2/myoos/admin/includes/classes/class_currencies.php
Normal file
75
msd2/myoos/admin/includes/classes/class_currencies.php
Normal file
@ -0,0 +1,75 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: class_currencies.php,v 1.1 2007/06/08 14:58:10 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: currencies.php,v 1.2 2002/09/01 13:47:06 project3000
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
/** ensure this file is being included by a parent file */
|
||||
defined( 'OOS_VALID_MOD' ) or die( 'Direct Access to this location is not allowed.' );
|
||||
|
||||
class currencies {
|
||||
var $currencies;
|
||||
|
||||
// class constructor
|
||||
public function __construct() {
|
||||
|
||||
$this->currencies = array();
|
||||
|
||||
// Get database information
|
||||
$dbconn =& oosDBGetConn();
|
||||
$oostable =& oosDBGetTables();
|
||||
|
||||
$query = "SELECT code, title, symbol_left, symbol_right, decimal_point, thousands_point, decimal_places, value
|
||||
FROM " . $oostable['currencies'];
|
||||
$result = $dbconn->Execute($query);
|
||||
|
||||
while ($currencies = $result->fields) {
|
||||
$this->currencies[$currencies['code']] = array('title' => $currencies['title'],
|
||||
'symbol_left' => $currencies['symbol_left'],
|
||||
'symbol_right' => $currencies['symbol_right'],
|
||||
'decimal_point' => $currencies['decimal_point'],
|
||||
'thousands_point' => $currencies['thousands_point'],
|
||||
'decimal_places' => (int)$currencies['decimal_places'],
|
||||
'value' => $currencies['value']);
|
||||
// Move that ADOdb pointer!
|
||||
$result->MoveNext();
|
||||
}
|
||||
}
|
||||
|
||||
// class methods
|
||||
public function format($number, $calculate_currency_value = TRUE, $currency_type = DEFAULT_CURRENCY, $currency_value = null) {
|
||||
|
||||
$rate = 1;
|
||||
if ($calculate_currency_value === TRUE) {
|
||||
$rate = (!empty($currency_value)) ? $currency_value : $this->currencies[$currency_type]['value'];
|
||||
}
|
||||
|
||||
$format_string = $this->currencies[$currency_type]['symbol_left'] . ' ' . number_format(oos_round($number * $rate, $this->currencies[$currency_type]['decimal_places']), $this->currencies[$currency_type]['decimal_places'], $this->currencies[$currency_type]['decimal_point'], $this->currencies[$currency_type]['thousands_point']) . ' ' . $this->currencies[$currency_type]['symbol_right'];
|
||||
|
||||
return $format_string;
|
||||
}
|
||||
|
||||
public function get_value($code) {
|
||||
return $this->currencies[$code]['value'];
|
||||
}
|
||||
|
||||
public function display_price($products_price, $products_tax, $quantity = 1) {
|
||||
return $this->format(oos_add_tax($products_price, $products_tax) * $quantity);
|
||||
}
|
||||
|
||||
}
|
94
msd2/myoos/admin/includes/classes/class_message_stack.php
Normal file
94
msd2/myoos/admin/includes/classes/class_message_stack.php
Normal file
@ -0,0 +1,94 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: class_message_stack.php,v 1.1 2007/06/08 14:58:10 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: message_stack.php,v 1.5 2002/11/22 18:45:46 dgw_
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
----------------------------------------------------------------------
|
||||
Example usage:
|
||||
|
||||
$messageStack = new messageStack();
|
||||
$messageStack->add('Error: Error 1', 'error');
|
||||
$messageStack->add('Error: Error 2', 'warning');
|
||||
if ($messageStack->size > 0) echo $messageStack->output();
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
/** ensure this file is being included by a parent file */
|
||||
defined( 'OOS_VALID_MOD' ) or die( 'Direct Access to this location is not allowed.' );
|
||||
|
||||
class messageStack {
|
||||
var $size = 0;
|
||||
|
||||
public function __construct() {
|
||||
|
||||
$this->errors = array();
|
||||
|
||||
if (isset($_SESSION['messageToStack'])) {
|
||||
for ($i = 0, $n = sizeof($_SESSION['messageToStack']); $i < $n; $i++) {
|
||||
$this->add($_SESSION['messageToStack'][$i]['text'], $_SESSION['messageToStack'][$i]['type']);
|
||||
}
|
||||
unset($_SESSION['messageToStack']);
|
||||
}
|
||||
}
|
||||
|
||||
public function add($message, $type = 'error') {
|
||||
|
||||
if ($type == 'error') {
|
||||
$this->errors[] = array('params' => 'alert-danger', 'text' => $message);
|
||||
} elseif ($type == 'warning') {
|
||||
$this->errors[] = array('params' => 'alert-warning', 'text' => $message);
|
||||
} elseif ($type == 'success') {
|
||||
$this->errors[] = array('params' => 'alert-success', 'text' => $message);
|
||||
} else {
|
||||
$this->errors[] = array('params' => 'alert-info', 'text' => $message);
|
||||
}
|
||||
|
||||
$this->size++;
|
||||
}
|
||||
|
||||
public function add_session($message, $type = 'error') {
|
||||
if (!isset($_SESSION['messageToStack'])) {
|
||||
$_SESSION['messageToStack'] = array();
|
||||
}
|
||||
|
||||
$_SESSION['messageToStack'][] = array('text' => $message, 'type' => $type);
|
||||
}
|
||||
|
||||
public function reset() {
|
||||
$this->errors = array();
|
||||
$this->size = 0;
|
||||
}
|
||||
|
||||
public function output() {
|
||||
$sMessageBox = '';
|
||||
|
||||
$aContents = $this->errors;
|
||||
|
||||
for ($i = 0, $n = count($aContents); $i < $n; $i++) {
|
||||
$sMessageBox .= '<div class="alert';
|
||||
if (isset($aContents[$i]['params']) && oos_is_not_null($aContents[$i]['params'])) {
|
||||
$sMessageBox .= ' ' . $aContents[$i]['params'];
|
||||
}
|
||||
$sMessageBox .= '" role="alert">';
|
||||
if (isset($aContents[$i]['text']) && oos_is_not_null($aContents[$i]['text'])) {
|
||||
$sMessageBox .= ' ' . $aContents[$i]['text'];
|
||||
}
|
||||
$sMessageBox .= '</div>' . "\n";
|
||||
}
|
||||
|
||||
return $sMessageBox;
|
||||
}
|
||||
}
|
52
msd2/myoos/admin/includes/classes/class_object_info.php
Normal file
52
msd2/myoos/admin/includes/classes/class_object_info.php
Normal file
@ -0,0 +1,52 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: class_object_info.php,v 1.1 2007/06/08 14:58:10 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: object_info.php,v 1.5 2002/01/30 01:14:20 hpdl
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
/** ensure this file is being included by a parent file */
|
||||
defined( 'OOS_VALID_MOD' ) or die( 'Direct Access to this location is not allowed.' );
|
||||
|
||||
class objectInfo
|
||||
{
|
||||
/**
|
||||
* @var
|
||||
*/
|
||||
protected $key;
|
||||
|
||||
/**
|
||||
* @param $object_array
|
||||
*/
|
||||
function __construct($aObject)
|
||||
{
|
||||
$this->updateObjectInfo($aObject);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $aObject
|
||||
*/
|
||||
function updateObjectInfo($aObject)
|
||||
{
|
||||
if (!is_array($aObject)) return;
|
||||
reset($aObject);
|
||||
foreach ($aObject as $key => $value) {
|
||||
$this->$key = oos_db_prepare_input($value);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -0,0 +1,49 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: class_payment_module_info.php,v 1.1 2007/06/08 14:58:10 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
/** ensure this file is being included by a parent file */
|
||||
defined( 'OOS_VALID_MOD' ) or die( 'Direct Access to this location is not allowed.' );
|
||||
|
||||
class paymentModuleInfo {
|
||||
var $payment_code;
|
||||
var $keys;
|
||||
|
||||
// class constructor
|
||||
public function __construct($pmInfo_array) {
|
||||
|
||||
$this->payment_code = $pmInfo_array['payment_code'];
|
||||
|
||||
// Get database information
|
||||
$dbconn =& oosDBGetConn();
|
||||
$oostable =& oosDBGetTables();
|
||||
|
||||
for ($i = 0, $n = count($pmInfo_array) - 1; $i < $n; $i++) {
|
||||
|
||||
$query = "SELECT configuration_value
|
||||
FROM " . $oostable['configuration'] . "
|
||||
WHERE configuration_key = '" . oos_db_input($pmInfo_array[$i]) . "'";
|
||||
$result = $dbconn->Execute($query);
|
||||
$key_value = $result->fields;
|
||||
|
||||
$this->keys[$pmInfo_array[$i]]['title'] = constant(strtoupper($pmInfo_array[$i] . '_TITLE'));
|
||||
$this->keys[$pmInfo_array[$i]]['value'] = $key_value['configuration_value'];
|
||||
$this->keys[$pmInfo_array[$i]]['description'] = constant(strtoupper($pmInfo_array[$i] . '_DESC'));
|
||||
}
|
||||
}
|
||||
}
|
253
msd2/myoos/admin/includes/classes/class_sales_report2.php
Normal file
253
msd2/myoos/admin/includes/classes/class_sales_report2.php
Normal file
@ -0,0 +1,253 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: class_sales_report2.php,v 1.1 2007/06/08 14:58:10 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: sales_report2.php,v 1.00 2003/03/08 19:25:29
|
||||
----------------------------------------------------------------------
|
||||
Charly Wilhelm charly@yoshi.ch
|
||||
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
/** ensure this file is being included by a parent file */
|
||||
defined( 'OOS_VALID_MOD' ) or die( 'Direct Access to this location is not allowed.' );
|
||||
|
||||
class sales_report {
|
||||
var $mode, $GLOBALStartDate, $startDate, $endDate, $actDate, $showDate, $showDateEnd, $sortString, $status, $outlet;
|
||||
|
||||
public function __construct($mode, $startDate = 0, $endDate = 0, $sort = 0, $statusFilter = 0, $filter = 0) {
|
||||
|
||||
// startDate and endDate have to be a unix timestamp. Use mktime !
|
||||
// if set then both have to be valid startDate and endDate
|
||||
$this->mode = $mode;
|
||||
$this->tax_include = DISPLAY_PRICE_WITH_TAX;
|
||||
|
||||
$this->statusFilter = $statusFilter;
|
||||
|
||||
// Get database information
|
||||
$dbconn =& oosDBGetConn();
|
||||
$oostable =& oosDBGetTables();
|
||||
|
||||
$firstQuery = $dbconn->Execute("SELECT UNIX_TIMESTAMP(min(date_purchased)) as first FROM " . $oostable['orders']);
|
||||
$first = $firstQuery->fields;
|
||||
$this->GLOBALStartDate = mktime(0, 0, 0, date("m", $first['first']), date("d", $first['first']), date("Y", $first['first']));
|
||||
$statusQuery = $dbconn->Execute("SELECT * FROM " . $oostable['orders_status']);
|
||||
$i = 0;
|
||||
while ($outResp = $statusQuery->fields) {
|
||||
$status[$i] = $outResp;
|
||||
$i++;
|
||||
// Move that ADOdb pointer!
|
||||
$statusQuery->MoveNext();
|
||||
}
|
||||
$this->status = $status;
|
||||
|
||||
|
||||
if ($startDate == 0 or $startDate < $this->GLOBALStartDate) {
|
||||
// set startDate to GLOBALStartDate
|
||||
$this->startDate = $this->GLOBALStartDate;
|
||||
} else {
|
||||
$this->startDate = $startDate;
|
||||
}
|
||||
if ($this->startDate > mktime(0, 0, 0, date("m"), date("d"), date("Y"))) {
|
||||
$this->startDate = mktime(0, 0, 0, date("m"), date("d"), date("Y"));
|
||||
}
|
||||
|
||||
if ($endDate > mktime(0, 0, 0, date("m"), date("d") + 1, date("Y"))) {
|
||||
// set endDate to tomorrow
|
||||
$this->endDate = mktime(0, 0, 0, date("m"), date("d") + 1, date("Y"));
|
||||
} else {
|
||||
$this->endDate = $endDate;
|
||||
}
|
||||
if ($this->endDate < $this->startDate + 24 * 60 * 60) {
|
||||
$this->endDate = $this->startDate + 24 * 60 * 60;
|
||||
}
|
||||
|
||||
$this->actDate = $this->startDate;
|
||||
|
||||
// query for order count
|
||||
$this->queryOrderCnt = "SELECT count(o.orders_id) as order_cnt FROM " . $oostable['orders'] . " o";
|
||||
|
||||
// queries for item details count
|
||||
$this->queryItemCnt = "SELECT o.orders_id, op.products_id as pid, op.orders_products_id, op.products_name as pname, sum(op.products_quantity) as pquant, sum(op.final_price * op.products_quantity) as psum, op.products_tax as ptax FROM " . $oostable['orders'] . " o, " . $oostable['orders_products'] . " op WHERE o.orders_id = op.orders_id";
|
||||
|
||||
// query for attributes
|
||||
$this->queryAttr = "SELECT count(op.products_id) as attr_cnt, o.orders_id, opa.orders_products_id, opa.products_options, opa.products_options_values, opa.options_values_price, opa.price_prefix FROM " . $oostable['orders_products_attributes'] . " opa, " . $oostable['orders'] . " o, " . $oostable['orders_products'] . " op WHERE o.orders_id = opa.orders_id AND op.orders_products_id = opa.orders_products_id";
|
||||
|
||||
// query for shipping
|
||||
$this->queryShipping = "SELECT sum(ot.value) as shipping FROM " . $oostable['orders'] . " o, " . $oostable['orders_total'] . " ot WHERE ot.orders_id = o.orders_id AND ot.class = 'ot_shipping'";
|
||||
|
||||
switch ($sort) {
|
||||
case '0':
|
||||
$this->sortString = "";
|
||||
break;
|
||||
case '1':
|
||||
$this->sortString = " ORDER BY pname ASC ";
|
||||
break;
|
||||
case '2':
|
||||
$this->sortString = " ORDER BY pname DESC";
|
||||
break;
|
||||
case '3':
|
||||
$this->sortString = " ORDER BY pquant ASC, pname ASC";
|
||||
break;
|
||||
case '4':
|
||||
$this->sortString = " ORDER BY pquant DESC, pname ASC";
|
||||
break;
|
||||
case '5':
|
||||
$this->sortString = " ORDER BY psum ASC, pname ASC";
|
||||
break;
|
||||
case '6':
|
||||
$this->sortString = " ORDER BY psum DESC, pname ASC";
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
public function getNext() {
|
||||
|
||||
// Get database information
|
||||
$dbconn =& oosDBGetConn();
|
||||
$oostable =& oosDBGetTables();
|
||||
|
||||
switch ($this->mode) {
|
||||
// yearly
|
||||
case '1':
|
||||
$sd = $this->actDate;
|
||||
$ed = mktime(0, 0, 0, date("m", $sd), date("d", $sd), date("Y", $sd) + 1);
|
||||
break;
|
||||
// monthly
|
||||
case '2':
|
||||
$sd = $this->actDate;
|
||||
$ed = mktime(0, 0, 0, date("m", $sd) + 1, 1, date("Y", $sd));
|
||||
break;
|
||||
// weekly
|
||||
case '3':
|
||||
$sd = $this->actDate;
|
||||
$ed = mktime(0, 0, 0, date("m", $sd), date("d", $sd) + 7, date("Y", $sd));
|
||||
break;
|
||||
// daily
|
||||
case '4':
|
||||
$sd = $this->actDate;
|
||||
$ed = mktime(0, 0, 0, date("m", $sd), date("d", $sd) + 1, date("Y", $sd));
|
||||
break;
|
||||
}
|
||||
if ($ed > $this->endDate) {
|
||||
$ed = $this->endDate;
|
||||
}
|
||||
|
||||
$filterString = "";
|
||||
if ($this->statusFilter > 0) {
|
||||
$filterString .= " AND o.orders_status = " . $this->statusFilter . " ";
|
||||
}
|
||||
$rqOrders = $dbconn->Execute($this->queryOrderCnt . " WHERE o.date_purchased >= '" . oos_db_input(date("Y-m-d\TH:i:s", $sd)) . "' AND o.date_purchased < '" . oos_db_input(date("Y-m-d\TH:i:s", $ed)) . "'" . $filterString);
|
||||
$order = $rqOrders->fields;
|
||||
|
||||
$rqShipping = $dbconn->Execute($this->queryShipping . " AND o.date_purchased >= '" . oos_db_input(date("Y-m-d\TH:i:s", $sd)) . "' AND o.date_purchased < '" . oos_db_input(date("Y-m-d\TH:i:s", $ed)) . "'" . $filterString);
|
||||
$shipping = $rqShipping->fields;
|
||||
|
||||
$rqItems = $dbconn->Execute($this->queryItemCnt . " AND o.date_purchased >= '" . oos_db_input(date("Y-m-d\TH:i:s", $sd)) . "' AND o.date_purchased < '" . oos_db_input(date("Y-m-d\TH:i:s", $ed)) . "'" . $filterString . " group by pid " . $this->sortString);
|
||||
|
||||
// set the return values
|
||||
$this->actDate = $ed;
|
||||
$this->showDate = $sd;
|
||||
$this->showDateEnd = $ed - 60 * 60 * 24;
|
||||
|
||||
// execute the query
|
||||
$cnt = 0;
|
||||
$itemTot = 0;
|
||||
$sumTot = 0;
|
||||
while ($resp[$cnt] = $rqItems->fields) {
|
||||
// to avoid rounding differences round for every quantum
|
||||
// multiply with the number of items afterwords.
|
||||
$price = $resp[$cnt]['psum'] / $resp[$cnt]['pquant'];
|
||||
|
||||
// products_attributes
|
||||
// are there any attributes for this order_id ?
|
||||
$rqAttr = $dbconn->Execute($this->queryAttr . " AND o.date_purchased >= '" . oos_db_input(date("Y-m-d\TH:i:s", $sd)) . "' AND o.date_purchased < '" . oos_db_input(date("Y-m-d\TH:i:s", $ed)) . "' AND op.products_id = " . $resp[$cnt]['pid'] . $filterString . " group by products_options_values ORDER BY orders_products_id");
|
||||
$i = 0;
|
||||
while ($attr[$i] = $rqAttr->fields) {
|
||||
$i++;
|
||||
// Move that ADOdb pointer!
|
||||
$rqAttr->MoveNext();
|
||||
}
|
||||
|
||||
// values per date
|
||||
if ($i > 0) {
|
||||
$price2 = 0;
|
||||
$price3 = 0;
|
||||
$option = array();
|
||||
$k = -1;
|
||||
$ord_pro_id_old = 0;
|
||||
for ($j = 0; $j < $i; $j++) {
|
||||
if ($attr[$j]['price_prefix'] == "-") {
|
||||
$price2 += (-1) * $attr[$j]['options_values_price'];
|
||||
$price3 = (-1) * $attr[$j]['options_values_price'];
|
||||
$prefix = "-";
|
||||
} else {
|
||||
$price2 += $attr[$j]['options_values_price'];
|
||||
$price3 = $attr[$j]['options_values_price'];
|
||||
$prefix = "+";
|
||||
}
|
||||
$ord_pro_id = $attr[$j]['orders_products_id'];
|
||||
if ( $ord_pro_id != $ord_pro_id_old) {
|
||||
$k++;
|
||||
$l = 0;
|
||||
// set values
|
||||
$option[$k]['quant'] = $attr[$j]['attr_cnt'];
|
||||
$option[$k]['options'][0] = $attr[$j]['products_options'];
|
||||
$option[$k]['options_values'][0] = $attr[$j]['products_options_values'];
|
||||
if ($price3 != 0) {
|
||||
$option[$k]['price'][0] = oos_add_tax($price3, $resp[$cnt]['ptax']);
|
||||
} else {
|
||||
$option[$k]['price'][0] = 0;
|
||||
}
|
||||
} else {
|
||||
$l++;
|
||||
// update values
|
||||
$option[$k]['options'][$l] = $attr[$j]['products_options'];
|
||||
$option[$k]['options_values'][$l] = $attr[$j]['products_options_values'];
|
||||
if ($price3 != 0) {
|
||||
$option[$k]['price'][$l] = oos_add_tax($price3, $resp[$cnt]['ptax']);
|
||||
} else {
|
||||
$option[$k]['price'][$l] = 0;
|
||||
}
|
||||
}
|
||||
$ord_pro_id_old = $ord_pro_id;
|
||||
}
|
||||
// set attr value
|
||||
$resp[$cnt]['attr'] = $option;
|
||||
} else {
|
||||
$resp[$cnt]['attr'] = "";
|
||||
}
|
||||
$resp[$cnt]['price'] = oos_add_tax($price, $resp[$cnt]['ptax']);
|
||||
$resp[$cnt]['psum'] = $resp[$cnt]['pquant'] * oos_add_tax($price, $resp[$cnt]['ptax']);
|
||||
$resp[$cnt]['order'] = $order['order_cnt'];
|
||||
$resp[$cnt]['shipping'] = $shipping['shipping'];
|
||||
|
||||
// values per date and item
|
||||
$sumTot += $resp[$cnt]['psum'];
|
||||
$itemTot += $resp[$cnt]['pquant'];
|
||||
// add totsum and totitem until current row
|
||||
$resp[$cnt]['totsum'] = $sumTot;
|
||||
$resp[$cnt]['totitem'] = $itemTot;
|
||||
$cnt++;
|
||||
|
||||
// Move that ADOdb pointer!
|
||||
$rqItems->MoveNext();
|
||||
}
|
||||
|
||||
return $resp;
|
||||
|
||||
}
|
||||
}
|
||||
|
137
msd2/myoos/admin/includes/classes/class_split_page_results.php
Normal file
137
msd2/myoos/admin/includes/classes/class_split_page_results.php
Normal file
@ -0,0 +1,137 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: split_page_results.php,v 1.11 2002/11/11 21:12:19 hpdl
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
/** ensure this file is being included by a parent file */
|
||||
defined( 'OOS_VALID_MOD' ) or die( 'Direct Access to this location is not allowed.' );
|
||||
|
||||
|
||||
class splitPageResults {
|
||||
|
||||
public function __construct(&$current_page_number, $max_rows_per_page, &$sql_query, &$query_num_rows) {
|
||||
|
||||
|
||||
if ($max_rows_per_page == 0) $max_rows_per_page = 20;
|
||||
$sql_query = preg_replace("/\n\r|\r\n|\n|\r/", " ", $sql_query);
|
||||
|
||||
if (empty($current_page_number)) $current_page_number = 1;
|
||||
$current_page_number = (int)$current_page_number;
|
||||
|
||||
$pos_to = strlen($sql_query);
|
||||
$pos_from = strpos($sql_query, ' FROM', 0);
|
||||
|
||||
$pos_group_by = strpos($sql_query, ' GROUP BY', $pos_from);
|
||||
if (($pos_group_by < $pos_to) && ($pos_group_by != false)) $pos_to = $pos_group_by;
|
||||
|
||||
$pos_having = strpos($sql_query, ' HAVING', $pos_from);
|
||||
if (($pos_having < $pos_to) && ($pos_having != false)) $pos_to = $pos_having;
|
||||
|
||||
$pos_order_by = strpos($sql_query, ' ORDER BY', $pos_from);
|
||||
if (($pos_order_by < $pos_to) && ($pos_order_by != false)) $pos_to = $pos_order_by;
|
||||
|
||||
$sql = "SELECT count(*) AS total " . substr($sql_query, $pos_from, ($pos_to - $pos_from));
|
||||
|
||||
// Get database information
|
||||
$dbconn =& oosDBGetConn();
|
||||
$reviews_count = $dbconn->Execute($sql);
|
||||
$query_num_rows = $reviews_count->fields['total'];
|
||||
|
||||
$num_pages = ceil($query_num_rows / $max_rows_per_page);
|
||||
if ($current_page_number > $num_pages) {
|
||||
$current_page_number = $num_pages;
|
||||
}
|
||||
$offset = ($max_rows_per_page * ($current_page_number - 1));
|
||||
$sql_query .= " limit " . max($offset, 0) . ", " . $max_rows_per_page;
|
||||
}
|
||||
|
||||
|
||||
public function display_links($query_numrows, $max_rows_per_page, $max_page_links, $current_page_number, $parameters = '', $page_name = 'page') {
|
||||
GLOBAL $session;
|
||||
|
||||
if ( oos_is_not_null($parameters) && (substr($parameters, -1) != '&') ) $parameters .= '&';
|
||||
|
||||
// calculate number of pages needing links
|
||||
$num_pages = intval($query_numrows / $max_rows_per_page);
|
||||
|
||||
// $num_pages now contains int of pages needed unless there is a remainder from division
|
||||
if ($query_numrows % $max_rows_per_page) $num_pages++; // has remainder so add one page
|
||||
|
||||
$pages_array = array();
|
||||
for ($i=1; $i<=$num_pages; $i++) {
|
||||
$pages_array[] = array('id' => $i, 'text' => $i);
|
||||
}
|
||||
|
||||
if ($num_pages > 1) {
|
||||
$display_links = oos_draw_form('id', 'pages', basename($_SERVER['PHP_SELF']), '', 'get', FALSE);
|
||||
|
||||
if ($current_page_number > 1) {
|
||||
$display_links .= '<a href="' . oos_href_link_admin(basename($_SERVER['PHP_SELF']), $parameters . $page_name . '=' . ($current_page_number - 1)) . '" class="splitPageLink">' . PREVNEXT_BUTTON_PREV . '</a> ';
|
||||
} else {
|
||||
$display_links .= PREVNEXT_BUTTON_PREV . ' ';
|
||||
}
|
||||
|
||||
$display_links .= sprintf(TEXT_RESULT_PAGE, oos_draw_pull_down_menu($page_name, $pages_array, '', 'onChange="this.form.submit();"'), $num_pages);
|
||||
|
||||
if (($current_page_number < $num_pages) && ($num_pages != 1)) {
|
||||
$display_links .= ' <a href="' . oos_href_link_admin(basename($_SERVER['PHP_SELF']), $parameters . $page_name . '=' . ($current_page_number + 1)) . '" class="splitPageLink">' . PREVNEXT_BUTTON_NEXT . '</a>';
|
||||
} else {
|
||||
$display_links .= ' ' . PREVNEXT_BUTTON_NEXT;
|
||||
}
|
||||
|
||||
if ($parameters != '') {
|
||||
if (substr($parameters, -1) == '&') $parameters = substr($parameters, 0, -1);
|
||||
$pairs = explode('&', $parameters);
|
||||
foreach($pairs as $pair) {
|
||||
list($key,$value) = explode('=', $pair);
|
||||
$display_links .= oos_draw_hidden_field(rawurldecode($key), rawurldecode($value));
|
||||
}
|
||||
}
|
||||
|
||||
if (SID) $display_links .= oos_draw_hidden_field($session->getName(), $session->getId());
|
||||
|
||||
$display_links .= '</form>';
|
||||
} else {
|
||||
$display_links = sprintf(TEXT_RESULT_PAGE, $num_pages, $num_pages);
|
||||
}
|
||||
|
||||
return $display_links;
|
||||
}
|
||||
|
||||
|
||||
public function display_count($query_numrows, $max_rows_per_page, $current_page_number, $text_output) {
|
||||
|
||||
if (empty($current_page_number)) $current_page_number = 1;
|
||||
$current_page_number = (int)$current_page_number;
|
||||
|
||||
if ($max_rows_per_page == 0) $max_rows_per_page = 20;
|
||||
if ($max_rows_per_page == '') $max_rows_per_page = $query_numrows;
|
||||
|
||||
$to_num = ($max_rows_per_page * $current_page_number);
|
||||
if ($to_num > $query_numrows) $to_num = $query_numrows;
|
||||
$from_num = ($max_rows_per_page * ($current_page_number - 1));
|
||||
if ($to_num == 0) {
|
||||
$from_num = 0;
|
||||
} else {
|
||||
$from_num++;
|
||||
}
|
||||
|
||||
return sprintf($text_output, $from_num, $to_num, $query_numrows);
|
||||
}
|
||||
}
|
||||
|
119
msd2/myoos/admin/includes/classes/class_table_block.php
Normal file
119
msd2/myoos/admin/includes/classes/class_table_block.php
Normal file
@ -0,0 +1,119 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: class_table_block.php,v 1.1 2007/06/08 14:58:10 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: table_block.php,v 1.2 2002/11/22 18:45:46 dgw_
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
/** ensure this file is being included by a parent file */
|
||||
defined( 'OOS_VALID_MOD' ) or die( 'Direct Access to this location is not allowed.' );
|
||||
|
||||
class tableBlock {
|
||||
var $table_border = '0';
|
||||
var $table_width = '100%';
|
||||
var $table_cellspacing = '0';
|
||||
var $table_cellpadding = '2';
|
||||
var $table_parameters = '';
|
||||
var $table_row_parameters = '';
|
||||
var $table_data_parameters = '';
|
||||
|
||||
public function __construct() {
|
||||
}
|
||||
|
||||
function tableThead($contents) {
|
||||
$sTableBox = '';
|
||||
|
||||
$form_set = FALSE;
|
||||
|
||||
for ($i = 0, $n = count($contents); $i < $n; $i++) {
|
||||
$sTableBox .= ' <tr';
|
||||
if (oos_is_not_null($this->table_row_parameters)) $sTableBox .= ' ' . $this->table_row_parameters;
|
||||
if (isset($contents[$i]['params']) && oos_is_not_null($contents[$i]['params'])) $sTableBox .= ' ' . $contents[$i]['params'];
|
||||
$sTableBox .= '>' . "\n";
|
||||
|
||||
$sTableBox .= ' <th';
|
||||
if (isset($contents[$i]['align']) && oos_is_not_null($contents[$i]['align'])) $sTableBox .= ' align="' . $contents[$i]['align'] . '"';
|
||||
if (isset($contents[$i]['params']) && oos_is_not_null($contents[$i]['params'])) {
|
||||
$sTableBox .= ' ' . $contents[$i]['params'];
|
||||
} elseif (oos_is_not_null($this->table_data_parameters)) {
|
||||
$sTableBox .= ' ' . $this->table_data_parameters;
|
||||
}
|
||||
$sTableBox .= '>' . $contents[$i]['text'] . '</th>' . "\n";
|
||||
|
||||
|
||||
$sTableBox .= ' </tr>' . "\n";
|
||||
}
|
||||
|
||||
|
||||
return $sTableBox;
|
||||
}
|
||||
|
||||
|
||||
function tableBlock($contents) {
|
||||
$sTableBox = '';
|
||||
|
||||
$form_set = FALSE;
|
||||
if (isset($contents['form'])) {
|
||||
$sTableBox .= $contents['form'] . "\n";
|
||||
$form_set = TRUE;
|
||||
array_shift($contents);
|
||||
}
|
||||
|
||||
|
||||
for ($i = 0, $n = count($contents); $i < $n; $i++) {
|
||||
$sTableBox .= ' <tr';
|
||||
if (oos_is_not_null($this->table_row_parameters)) $sTableBox .= ' ' . $this->table_row_parameters;
|
||||
if (isset($contents[$i]['params']) && oos_is_not_null($contents[$i]['params'])) $sTableBox .= ' ' . $contents[$i]['params'];
|
||||
$sTableBox .= '>' . "\n";
|
||||
|
||||
if (isset($contents[$i][0]) && is_array($contents[$i][0])) {
|
||||
for ($x = 0, $y = count($contents[$i]); $x < $y; $x++) {
|
||||
if (isset($contents[$i][$x]['text']) && oos_is_not_null($contents[$i][$x]['text'])) {
|
||||
$sTableBox .= ' <td';
|
||||
if (isset($contents[$i][$x]['align']) && oos_is_not_null($contents[$i][$x]['align'])) $sTableBox .= ' align="' . $contents[$i][$x]['align'] . '"';
|
||||
if (isset($contents[$i][$x]['params']) && oos_is_not_null($contents[$i][$x]['params'])) {
|
||||
$sTableBox .= ' ' . $contents[$i][$x]['params'];
|
||||
} elseif (oos_is_not_null($this->table_data_parameters)) {
|
||||
$sTableBox .= ' ' . $this->table_data_parameters;
|
||||
}
|
||||
$sTableBox .= '>';
|
||||
if (isset($contents[$i][$x]['form']) && oos_is_not_null($contents[$i][$x]['form'])) $sTableBox .= $contents[$i][$x]['form'];
|
||||
$sTableBox .= $contents[$i][$x]['text'];
|
||||
if (isset($contents[$i][$x]['form']) && oos_is_not_null($contents[$i][$x]['form'])) $sTableBox .= '</form>';
|
||||
$sTableBox .= '</td>' . "\n";
|
||||
}
|
||||
}
|
||||
} else {
|
||||
$sTableBox .= ' <td';
|
||||
if (isset($contents[$i]['align']) && oos_is_not_null($contents[$i]['align'])) $sTableBox .= ' align="' . $contents[$i]['align'] . '"';
|
||||
if (isset($contents[$i]['params']) && oos_is_not_null($contents[$i]['params'])) {
|
||||
$sTableBox .= ' ' . $contents[$i]['params'];
|
||||
} elseif (oos_is_not_null($this->table_data_parameters)) {
|
||||
$sTableBox .= ' ' . $this->table_data_parameters;
|
||||
}
|
||||
$sTableBox .= '>' . $contents[$i]['text'] . '</td>' . "\n";
|
||||
}
|
||||
|
||||
$sTableBox .= ' </tr>' . "\n";
|
||||
}
|
||||
|
||||
if ($form_set == TRUE) $sTableBox .= '</form>' . "\n";
|
||||
|
||||
return $sTableBox;
|
||||
}
|
||||
}
|
||||
|
1370
msd2/myoos/admin/includes/classes/class_upload.php
Normal file
1370
msd2/myoos/admin/includes/classes/class_upload.php
Normal file
File diff suppressed because it is too large
Load Diff
40
msd2/myoos/admin/includes/define.php
Normal file
40
msd2/myoos/admin/includes/define.php
Normal file
@ -0,0 +1,40 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: oos_define.php,v 1.2 2007/10/29 18:21:06 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
BruttoAdmin V1.1 for OSC http://www.oscommerce.com
|
||||
|
||||
Images_resize Vs 1.3 for OSC http://www.oscommerce.com
|
||||
Copyright 2003 Henri Schmidhuber
|
||||
mailto: info@in-solution.de http://www.in-solution.de
|
||||
|
||||
osCommerce 2.2 Milestone 1
|
||||
Copyright (c) osCommerce 2003
|
||||
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
/** ensure this file is being included by a parent file */
|
||||
defined( 'OOS_VALID_MOD' ) or die( 'Direct Access to this location is not allowed.' );
|
||||
|
||||
if(!defined('MYOOS_INCLUDE_PATH')) {
|
||||
define('MYOOS_INCLUDE_PATH', OOS_ABSOLUTE_PATH);
|
||||
}
|
||||
|
||||
// Define how do we update currency exchange rates
|
||||
// Possible values are 'oanda' 'xe' or ''
|
||||
define('CURRENCY_SERVER_PRIMARY', 'oanda');
|
||||
define('CURRENCY_SERVER_BACKUP', 'xe');
|
||||
|
105
msd2/myoos/admin/includes/filename.php
Normal file
105
msd2/myoos/admin/includes/filename.php
Normal file
@ -0,0 +1,105 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: oos_filename.php,v 1.1 2007/06/08 15:20:14 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: application_top.php,v 1.155 2003/02/17 16:54:11 hpdl
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
/** ensure this file is being included by a parent file */
|
||||
defined( 'OOS_VALID_MOD' ) or die( 'Direct Access to this location is not allowed.' );
|
||||
|
||||
$aContents = array();
|
||||
|
||||
$prefix_filename = '';
|
||||
if (!$prefix_filename == '') $prefix_filename = $prefix_filename . '_';
|
||||
|
||||
$aContents['admin_account'] = $prefix_filename . 'admin_account.php';
|
||||
$aContents['admin_files'] = $prefix_filename . 'admin_files.php';
|
||||
$aContents['admin_members'] = $prefix_filename . 'admin_members.php';
|
||||
$aContents['catalog_product_info'] = $prefix_filename . 'product_info.php';
|
||||
$aContents['categories'] = $prefix_filename . 'categories.php';
|
||||
$aContents['configuration'] = $prefix_filename . 'configuration.php';
|
||||
$aContents['content_block'] = $prefix_filename . 'content_block.php';
|
||||
$aContents['content_page_type'] = $prefix_filename . 'content_page_type.php';
|
||||
$aContents['countries'] = $prefix_filename . 'countries.php';
|
||||
$aContents['currencies'] = $prefix_filename . 'currencies.php';
|
||||
$aContents['customers'] = $prefix_filename . 'customers.php';
|
||||
$aContents['customers_status'] = $prefix_filename . 'customers_status.php';
|
||||
$aContents['coupon_admin'] = $prefix_filename . 'coupon_admin.php';
|
||||
$aContents['default'] = $prefix_filename . 'index.php';
|
||||
$aContents['edit_orders'] = $prefix_filename . 'edit_orders.php';
|
||||
$aContents['export_excel'] = $prefix_filename . 'export_excel.php';
|
||||
$aContents['import_excel'] = $prefix_filename . 'import_excel.php';
|
||||
$aContents['featured'] = $prefix_filename . 'featured.php';
|
||||
$aContents['forbiden'] = $prefix_filename . 'forbiden.php';
|
||||
$aContents['geo_zones'] = $prefix_filename . 'geo_zones.php';
|
||||
$aContents['gv_queue'] = $prefix_filename . 'gv_queue.php';
|
||||
$aContents['gv_mail'] = $prefix_filename . 'gv_mail.php';
|
||||
$aContents['gv_sent'] = $prefix_filename . 'gv_sent.php';
|
||||
$aContents['invoice'] = $prefix_filename . 'invoice.php';
|
||||
$aContents['information'] = $prefix_filename . 'information.php';
|
||||
$aContents['login'] = $prefix_filename . 'login.php';
|
||||
$aContents['logoff'] = $prefix_filename . 'logoff.php';
|
||||
$aContents['languages'] = $prefix_filename . 'languages.php';
|
||||
$aContents['listcategories'] = $prefix_filename . 'listcategories.php';
|
||||
$aContents['listproducts'] = $prefix_filename . 'listproducts.php';
|
||||
$aContents['mail'] = $prefix_filename . 'mail.php';
|
||||
$aContents['manual_loging'] = $prefix_filename . 'manual_loging.php';
|
||||
$aContents['manufacturers'] = $prefix_filename . 'manufacturers.php';
|
||||
$aContents['modules'] = $prefix_filename . 'modules.php';
|
||||
$aContents['newsletters'] = $prefix_filename . 'newsletters.php';
|
||||
$aContents['orders'] = $prefix_filename . 'orders.php';
|
||||
$aContents['orders_status'] = $prefix_filename . 'orders_status.php';
|
||||
$aContents['packingslip'] = $prefix_filename . 'packingslip.php';
|
||||
$aContents['password_forgotten'] = $prefix_filename . 'password_forgotten.php';
|
||||
$aContents['plugins'] = $prefix_filename . 'plugins.php';
|
||||
$aContents['products'] = $prefix_filename . 'products.php';
|
||||
$aContents['products_attributes'] = $prefix_filename . 'products_attributes.php';
|
||||
$aContents['products_attributes_add'] = $prefix_filename . 'products_attributes_add.php';
|
||||
$aContents['products_expected'] = $prefix_filename . 'products_expected.php';
|
||||
$aContents['products_status'] = $prefix_filename . 'products_status.php';
|
||||
$aContents['products_units'] = $prefix_filename . 'products_units.php';
|
||||
$aContents['reviews'] = $prefix_filename . 'reviews.php';
|
||||
$aContents['shipping_modules'] = $prefix_filename . 'shipping_modules.php';
|
||||
$aContents['specials'] = $prefix_filename . 'specials.php';
|
||||
$aContents['stats_customers'] = $prefix_filename . 'stats_customers.php';
|
||||
$aContents['stats_low_stock'] = $prefix_filename . 'stats_low_stock.php';
|
||||
$aContents['stats_products_purchased'] = $prefix_filename . 'stats_products_purchased.php';
|
||||
$aContents['stats_products_viewed'] = $prefix_filename . 'stats_products_viewed.php';
|
||||
$aContents['stats_sales_report2'] = $prefix_filename . 'stats_sales_report2.php';
|
||||
$aContents['tax_classes'] = $prefix_filename . 'tax_classes.php';
|
||||
$aContents['tax_rates'] = $prefix_filename . 'tax_rates.php';
|
||||
$aContents['validcategories'] = $prefix_filename . 'validcategories.php';
|
||||
$aContents['validproducts'] = $prefix_filename . 'validproducts.php';
|
||||
$aContents['wastebasket'] = $prefix_filename . 'wastebasket.php';
|
||||
$aContents['whos_online'] = $prefix_filename . 'whos_online.php';
|
||||
$aContents['zones'] = $prefix_filename . 'zones.php';
|
||||
|
||||
//catalogLink
|
||||
|
||||
$prefix_catalog_filename = '';
|
||||
if (!$prefix_catalog_filename == '') $prefix_catalog_filename =$prefix_catalog_filename . '_';
|
||||
|
||||
$aCatalog = array();
|
||||
$aCatalog['account_history_info'] = $prefix_catalog_filename . 'account_history_info';
|
||||
$aCatalog['default'] = $prefix_catalog_filename . 'home';
|
||||
$aCatalog['gv_redeem'] = $prefix_catalog_filename . 'gv_redeem';
|
||||
$aCatalog['product_info'] = $prefix_catalog_filename . 'product_info';
|
||||
$aCatalog['login_admin'] = $prefix_catalog_filename . 'admin_login';
|
||||
$aCatalog['wishlist'] = $prefix_catalog_filename . 'wishlist';
|
||||
$aCatalog['login'] = $prefix_catalog_filename . 'login';
|
||||
|
199
msd2/myoos/admin/includes/functions/function_block.php
Normal file
199
msd2/myoos/admin/includes/functions/function_block.php
Normal file
@ -0,0 +1,199 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
/** ensure this file is being included by a parent file */
|
||||
defined( 'OOS_VALID_MOD' ) or die( 'Direct Access to this location is not allowed.' );
|
||||
|
||||
|
||||
/**
|
||||
* Return Block Side (left right)
|
||||
*
|
||||
* @param $block_id
|
||||
* @param $language
|
||||
* @return string
|
||||
*/
|
||||
function oos_block_select_option($select_array, $key_value) {
|
||||
for ($i = 0, $n = count($select_array); $i < $n; $i++) {
|
||||
$name = 'block_side';
|
||||
$string .= '<br /><input type="radio" name="' . $name . '" value="' . $select_array[$i] . '"';
|
||||
if ($key_value == $select_array[$i]) $string .= ' checked="checked"';
|
||||
$string .= '> ' . $select_array[$i];
|
||||
}
|
||||
return $string;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return Block Name
|
||||
*
|
||||
* @param $block_id
|
||||
* @param $language
|
||||
* @return string
|
||||
*/
|
||||
function oos_get_block_name($block_id, $language_id = '') {
|
||||
|
||||
if (empty($language_id) || !is_numeric($language_id)) $language_id = intval($_SESSION['language_id']);
|
||||
|
||||
// Get database information
|
||||
$dbconn =& oosDBGetConn();
|
||||
$oostable =& oosDBGetTables();
|
||||
|
||||
$block_infotable = $oostable['block_info'];
|
||||
$query = "SELECT block_name
|
||||
FROM " . $block_infotable . "
|
||||
WHERE block_id = '" . intval($block_id) . "'
|
||||
AND block_languages_id = '" . intval($language_id) . "'";
|
||||
$result = $dbconn->Execute($query);
|
||||
|
||||
$block_name = $result->fields['block_name'];
|
||||
|
||||
return $block_name;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return Block To Page
|
||||
*
|
||||
* @param $block_id
|
||||
* @param $language
|
||||
* @return string
|
||||
*/
|
||||
function oos_show_block_to_page($block_id = '', $language_id = '') {
|
||||
|
||||
$select_page_type = '';
|
||||
if (oos_is_not_null($block_id)) {
|
||||
if (empty($language_id) || !is_numeric($language_id)) $language_id = intval($_SESSION['language_id']);
|
||||
$type_array = array();
|
||||
|
||||
// Get database information
|
||||
$dbconn =& oosDBGetConn();
|
||||
$oostable =& oosDBGetTables();
|
||||
|
||||
$page_typetable = $oostable['page_type'];
|
||||
$query = "SELECT page_type_id, page_type_name
|
||||
FROM " . $page_typetable . "
|
||||
WHERE page_type_languages_id = '" . intval($language_id) . "'";
|
||||
$type_result = $dbconn->Execute($query);
|
||||
|
||||
while ($type = $type_result->fields) {
|
||||
$type_array[] = array('id' => $type['page_type_id'],
|
||||
'text' => $type['page_type_name']);
|
||||
|
||||
// Move that ADOdb pointer!
|
||||
$type_result->MoveNext();
|
||||
}
|
||||
|
||||
$block_to_page_array = array();
|
||||
|
||||
$block_to_page_typetable = $oostable['block_to_page_type'];
|
||||
$query = "SELECT block_id, page_type_id
|
||||
FROM " . $block_to_page_typetable . "
|
||||
WHERE block_id = '" . intval($block_id) . "'";
|
||||
$block_to_page_result = $dbconn->Execute($query);
|
||||
|
||||
while ($block_to_page = $block_to_page_result->fields) {
|
||||
$block_to_page_array[] = $block_to_page['page_type_id'];
|
||||
|
||||
// Move that ADOdb pointer!
|
||||
$block_to_page_result->MoveNext();
|
||||
}
|
||||
|
||||
for ($i = 0, $n = count($type_array); $i < $n; $i++) {
|
||||
$page = $type_array[$i]['id'];
|
||||
|
||||
if (in_array ($page, $block_to_page_array)) {
|
||||
$select_page_type .= oos_draw_checkbox_field('page_type[]', $page, TRUE) . $type_array[$i]['text'] . '<br />';
|
||||
} else {
|
||||
$select_page_type .= oos_draw_checkbox_field('page_type[]', $page) . $type_array[$i]['text'] . '<br />';
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
return $select_page_type;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return Select Block To Page
|
||||
*
|
||||
* @param $block_id
|
||||
* @param $language
|
||||
* @return string
|
||||
*/
|
||||
function oos_select_block_to_page($language_id = '') {
|
||||
|
||||
$select_page_type = '';
|
||||
if (empty($language_id) || !is_numeric($language_id)) $language_id = intval($_SESSION['language_id']);
|
||||
|
||||
// Get database information
|
||||
$dbconn =& oosDBGetConn();
|
||||
$oostable =& oosDBGetTables();
|
||||
|
||||
$page_typetable = $oostable['page_type'];
|
||||
$query = "SELECT page_type_id, page_type_name
|
||||
FROM " . $page_typetable . "
|
||||
WHERE page_type_languages_id = '" . intval($language_id) . "'";
|
||||
$result = $dbconn->Execute($query);
|
||||
|
||||
while ($type = $result->fields) {
|
||||
$select_page_type .= oos_draw_checkbox_field('page_type[]', $type['page_type_id']) . $type['page_type_name'] . '<br />';
|
||||
|
||||
// Move that ADOdb pointer!
|
||||
$result->MoveNext();
|
||||
}
|
||||
|
||||
return $select_page_type;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Return Info Block To Page
|
||||
*
|
||||
* @param $block_id
|
||||
* @param $language
|
||||
* @return string
|
||||
*/
|
||||
function oos_info_block_to_page($block_id = '', $language_id = '') {
|
||||
|
||||
$info = '';
|
||||
if (oos_is_not_null($block_id)) {
|
||||
if (empty($language_id) || !is_numeric($language_id)) $language_id = intval($_SESSION['language_id']);
|
||||
$type_array = array();
|
||||
|
||||
// Get database information
|
||||
$dbconn =& oosDBGetConn();
|
||||
$oostable =& oosDBGetTables();
|
||||
|
||||
$block_to_page_typetable = $oostable['block_to_page_type'];
|
||||
$page_typetable = $oostable['page_type'];
|
||||
$query = "SELECT b2p.block_id, b2p.page_type_id, p.page_type_name
|
||||
FROM " . $block_to_page_typetable . " b2p,
|
||||
" . $page_typetable . " p
|
||||
WHERE b2p.block_id = '" . intval($block_id) . "'
|
||||
AND p.page_type_id = b2p.page_type_id
|
||||
AND p.page_type_languages_id = '" . intval($language_id) . "'";
|
||||
$result = $dbconn->Execute($query);
|
||||
|
||||
while ($block_info = $result->fields) {
|
||||
$info .= $block_info['page_type_name']. '<br />';
|
||||
|
||||
// Move that ADOdb pointer!
|
||||
$result->MoveNext();
|
||||
}
|
||||
}
|
||||
|
||||
return $info;
|
||||
}
|
||||
|
777
msd2/myoos/admin/includes/functions/function_categories.php
Normal file
777
msd2/myoos/admin/includes/functions/function_categories.php
Normal file
@ -0,0 +1,777 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: general.php,v 1.151 2003/02/07 21:46:49 dgw_
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
/** ensure this file is being included by a parent file */
|
||||
defined( 'OOS_VALID_MOD' ) or die( 'Direct Access to this location is not allowed.' );
|
||||
|
||||
function oos_get_path($current_category_id = '') {
|
||||
GLOBAL $cPath_array;
|
||||
|
||||
if (!is_array($cPath_array)) $cPath_array = array();
|
||||
|
||||
if ($current_category_id == '') {
|
||||
$cPath_new = implode('_', $cPath_array);
|
||||
} else {
|
||||
if (count($cPath_array) == 0) {
|
||||
$cPath_new = $current_category_id;
|
||||
} else {
|
||||
$cPath_new = '';
|
||||
|
||||
// Get database information
|
||||
$dbconn =& oosDBGetConn();
|
||||
$oostable =& oosDBGetTables();
|
||||
|
||||
$categoriestable = $oostable['categories'];
|
||||
$query = "SELECT parent_id
|
||||
FROM $categoriestable
|
||||
WHERE categories_id = '" . intval($cPath_array[(count($cPath_array)-1)]) . "'";
|
||||
$last_category_result = $dbconn->Execute($query);
|
||||
$last_category = $last_category_result->fields;
|
||||
|
||||
$categoriestable = $oostable['categories'];
|
||||
$query = "SELECT parent_id
|
||||
FROM $categoriestable
|
||||
WHERE categories_id = '" . intval($current_category_id) . "'";
|
||||
$current_category_result = $dbconn->Execute($query);
|
||||
|
||||
$current_category = $current_category_result->fields;
|
||||
if ($last_category['parent_id'] == $current_category['parent_id']) {
|
||||
for ($i = 0, $n = count($cPath_array) - 1; $i < $n; $i++) {
|
||||
$cPath_new .= '_' . $cPath_array[$i];
|
||||
}
|
||||
} else {
|
||||
for ($i = 0, $n = count($cPath_array); $i < $n; $i++) {
|
||||
$cPath_new .= '_' . $cPath_array[$i];
|
||||
}
|
||||
}
|
||||
$cPath_new .= '_' . $current_category_id;
|
||||
if (substr($cPath_new, 0, 1) == '_') {
|
||||
$cPath_new = substr($cPath_new, 1);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return 'cPath=' . $cPath_new;
|
||||
}
|
||||
|
||||
|
||||
function oos_get_category_tree($parent_id = '0', $spacing = '', $exclude = '', $aCategoryTree = '', $include_itself = FALSE) {
|
||||
|
||||
if (empty($language_id) || !is_numeric($language_id)) $language_id = intval($_SESSION['language_id']);
|
||||
|
||||
if (!is_array($aCategoryTree)) $aCategoryTree = array();
|
||||
if ( (count($aCategoryTree) < 1) && ($exclude != '0') ) $aCategoryTree[] = array('id' => '0', 'text' => TEXT_TOP);
|
||||
|
||||
// Get database information
|
||||
$dbconn =& oosDBGetConn();
|
||||
$oostable =& oosDBGetTables();
|
||||
|
||||
if ($include_itself) {
|
||||
|
||||
$categories_descriptiontable = $oostable['categories_description'];
|
||||
$query = "SELECT cd.categories_name
|
||||
FROM $categories_descriptiontable cd
|
||||
WHERE cd.categories_languages_id = '" . intval($language_id) . "'
|
||||
AND cd.categories_id = '" . intval($parent_id) . "'";
|
||||
$category_result = $dbconn->Execute($query);
|
||||
|
||||
$category = $category_result->fields;
|
||||
$aCategoryTree[] = array('id' => $parent_id, 'text' => $category['categories_name']);
|
||||
}
|
||||
|
||||
$categoriestable = $oostable['categories'];
|
||||
$categories_descriptiontable = $oostable['categories_description'];
|
||||
$query = "SELECT c.categories_id, cd.categories_name, c.parent_id, c.sort_order
|
||||
FROM $categoriestable c,
|
||||
$categories_descriptiontable cd
|
||||
WHERE c.categories_status != 0
|
||||
AND c.parent_id = '" . intval($parent_id) . "'
|
||||
AND c.categories_id = cd.categories_id
|
||||
AND cd.categories_languages_id = '" . intval($language_id) . "'
|
||||
ORDER BY c.sort_order, cd.categories_name";
|
||||
$categories_result = $dbconn->Execute($query);
|
||||
|
||||
while ($categories = $categories_result->fields) {
|
||||
if ($exclude != $categories['categories_id']) $aCategoryTree[] = array('id' => $categories['categories_id'], 'text' => $spacing . $categories['categories_name']);
|
||||
|
||||
$aCategoryTree = oos_get_category_tree($categories['categories_id'], $spacing . ' ', $exclude, $aCategoryTree);
|
||||
|
||||
// Move that ADOdb pointer!
|
||||
$categories_result->MoveNext();
|
||||
}
|
||||
|
||||
return $aCategoryTree;
|
||||
}
|
||||
|
||||
|
||||
function oos_get_category_name($category_id, $language_id = '') {
|
||||
|
||||
// Get database information
|
||||
$dbconn =& oosDBGetConn();
|
||||
$oostable =& oosDBGetTables();
|
||||
|
||||
if (empty($language_id) || !is_numeric($language_id)) $language_id = intval($_SESSION['language_id']);
|
||||
|
||||
$categories_descriptiontable = $oostable['categories_description'];
|
||||
$query = "SELECT categories_name
|
||||
FROM $categories_descriptiontable
|
||||
WHERE categories_id = '" . intval($category_id) . "'
|
||||
AND categories_languages_id = '" . intval($language_id) . "'";
|
||||
$result = $dbconn->Execute($query);
|
||||
|
||||
$categories_name = $result->fields['categories_name'];
|
||||
|
||||
|
||||
return $categories_name;
|
||||
}
|
||||
|
||||
|
||||
|
||||
function oos_get_categories_page_title($category_id, $language_id = '') {
|
||||
|
||||
// Get database information
|
||||
$dbconn =& oosDBGetConn();
|
||||
$oostable =& oosDBGetTables();
|
||||
|
||||
if (empty($language_id) || !is_numeric($language_id)) $language_id = intval($_SESSION['language_id']);
|
||||
|
||||
$categories_descriptiontable = $oostable['categories_description'];
|
||||
$query = "SELECT categories_page_title
|
||||
FROM $categories_descriptiontable
|
||||
WHERE categories_id = '" . intval($category_id) . "'
|
||||
AND categories_languages_id = '" . intval($language_id) . "'";
|
||||
$result = $dbconn->Execute($query);
|
||||
|
||||
$categories_page_title = $result->fields['categories_page_title'];
|
||||
|
||||
|
||||
return $categories_page_title;
|
||||
}
|
||||
|
||||
|
||||
function oos_get_products_description($product_id, $language_id = '') {
|
||||
|
||||
// Get database information
|
||||
$dbconn =& oosDBGetConn();
|
||||
$oostable =& oosDBGetTables();
|
||||
|
||||
if (empty($language_id) || !is_numeric($language_id)) $language_id = intval($_SESSION['language_id']);
|
||||
|
||||
$products_descriptiontable = $oostable['products_description'];
|
||||
$query = "SELECT products_description
|
||||
FROM $products_descriptiontable
|
||||
WHERE products_id = '" . intval($product_id) . "'
|
||||
AND products_languages_id = '" . intval($language_id) . "'";
|
||||
$result = $dbconn->Execute($query);
|
||||
|
||||
$products_description = $result->fields['products_description'];
|
||||
|
||||
return $products_description;
|
||||
}
|
||||
|
||||
|
||||
function oos_get_products_short_description($product_id, $language_id = '') {
|
||||
|
||||
// Get database information
|
||||
$dbconn =& oosDBGetConn();
|
||||
$oostable =& oosDBGetTables();
|
||||
|
||||
if (empty($language_id) || !is_numeric($language_id)) $language_id = intval($_SESSION['language_id']);
|
||||
|
||||
$products_descriptiontable = $oostable['products_description'];
|
||||
$query = "SELECT products_short_description
|
||||
FROM $products_descriptiontable
|
||||
WHERE products_id = '" . intval($product_id) . "'
|
||||
AND products_languages_id = '" . intval($language_id) . "'";
|
||||
$result = $dbconn->Execute($query);
|
||||
|
||||
$products_short_description = $result->fields['products_short_description'];
|
||||
|
||||
return $products_short_description;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
function oos_get_products_essential_characteristicsn($product_id, $language_id = '') {
|
||||
|
||||
// Get database information
|
||||
$dbconn =& oosDBGetConn();
|
||||
$oostable =& oosDBGetTables();
|
||||
|
||||
if (empty($language_id) || !is_numeric($language_id)) $language_id = intval($_SESSION['language_id']);
|
||||
|
||||
$products_descriptiontable = $oostable['products_description'];
|
||||
$query = "SELECT products_essential_characteristics
|
||||
FROM $products_descriptiontable
|
||||
WHERE products_id = '" . intval($product_id) . "'
|
||||
AND products_languages_id = '" . intval($language_id) . "'";
|
||||
$result = $dbconn->Execute($query);
|
||||
|
||||
$products_essential_characteristics = $result->fields['products_essential_characteristics'];
|
||||
|
||||
return $products_essential_characteristics;
|
||||
}
|
||||
|
||||
|
||||
|
||||
function oos_get_products_description_meta($product_id, $language_id = '') {
|
||||
|
||||
// Get database information
|
||||
$dbconn =& oosDBGetConn();
|
||||
$oostable =& oosDBGetTables();
|
||||
|
||||
if (empty($language_id) || !is_numeric($language_id)) $language_id = intval($_SESSION['language_id']);
|
||||
|
||||
$products_descriptiontable = $oostable['products_description'];
|
||||
$query = "SELECT products_description_meta
|
||||
FROM $products_descriptiontable
|
||||
WHERE products_id = '" . intval($product_id) . "'
|
||||
AND products_languages_id = '" . intval($language_id) . "'";
|
||||
$result = $dbconn->Execute($query);
|
||||
|
||||
$products_description_meta = $result->fields['products_description_meta'];
|
||||
|
||||
return $products_description_meta;
|
||||
}
|
||||
|
||||
|
||||
function oos_get_products_url($product_id, $language_id) {
|
||||
|
||||
// Get database information
|
||||
$dbconn =& oosDBGetConn();
|
||||
$oostable =& oosDBGetTables();
|
||||
|
||||
if (empty($language_id) || !is_numeric($language_id)) $language_id = intval($_SESSION['language_id']);
|
||||
|
||||
$products_descriptiontable = $oostable['products_description'];
|
||||
$query = "SELECT products_url
|
||||
FROM $products_descriptiontable
|
||||
WHERE products_id = '" . intval($product_id) . "'
|
||||
AND products_languages_id = '" . intval($language_id) . "'";
|
||||
$result = $dbconn->Execute($query);
|
||||
|
||||
$products_url = $result->fields['products_url'];
|
||||
|
||||
return $products_url;
|
||||
}
|
||||
|
||||
|
||||
function oos_products_in_category_count($categories_id, $include_deactivated = FALSE) {
|
||||
|
||||
$products_count = 0;
|
||||
|
||||
// Get database information
|
||||
$dbconn =& oosDBGetConn();
|
||||
$oostable =& oosDBGetTables();
|
||||
|
||||
$productstable = $oostable['products'];
|
||||
$products_to_categoriestable = $oostable['products_to_categories'];
|
||||
if ($include_deactivated) {
|
||||
$products_query = "SELECT COUNT(*) AS total
|
||||
FROM $productstable p,
|
||||
$products_to_categoriestable p2c
|
||||
WHERE p.products_id = p2c.products_id
|
||||
AND p2c.categories_id = '" . intval($categories_id) . "'";
|
||||
$products_result = $dbconn->Execute($products_query);
|
||||
|
||||
} else {
|
||||
$products_query = "SELECT COUNT(*) AS total
|
||||
FROM $productstable p,
|
||||
$products_to_categoriestable p2c
|
||||
WHERE p.products_id = p2c.products_id
|
||||
AND p.products_status >= '1'
|
||||
AND p2c.categories_id = '" . intval($categories_id) . "'";
|
||||
$products_result = $dbconn->Execute($products_query);
|
||||
}
|
||||
|
||||
$products = $products_result->fields;
|
||||
|
||||
$products_count += $products['total'];
|
||||
|
||||
$categoriestable = $oostable['categories'];
|
||||
$childs_query = "SELECT categories_id
|
||||
FROM $categoriestable
|
||||
WHERE parent_id = '" . intval($categories_id) . "'";
|
||||
$childs_result = $dbconn->Execute($childs_query);
|
||||
|
||||
if ($childs_result->RecordCount()) {
|
||||
while ($childs = $childs_result->fields) {
|
||||
$products_count += oos_products_in_category_count($childs['categories_id'], $include_deactivated);
|
||||
|
||||
// Move that ADOdb pointer!
|
||||
$childs_result->MoveNext();
|
||||
}
|
||||
}
|
||||
|
||||
return $products_count;
|
||||
}
|
||||
|
||||
|
||||
function oos_childs_in_category_count($categories_id) {
|
||||
|
||||
$categories_count = 0;
|
||||
|
||||
// Get database information
|
||||
$dbconn =& oosDBGetConn();
|
||||
$oostable =& oosDBGetTables();
|
||||
|
||||
$categoriestable = $oostable['categories'];
|
||||
$query = "SELECT categories_id
|
||||
FROM $categoriestable
|
||||
WHERE parent_id = '" . intval($categories_id) . "'";
|
||||
$result = $dbconn->Execute($query);
|
||||
|
||||
while ($categories = $result->fields) {
|
||||
$categories_count++;
|
||||
$categories_count += oos_childs_in_category_count($categories['categories_id']);
|
||||
|
||||
// Move that ADOdb pointer!
|
||||
$result->MoveNext();
|
||||
}
|
||||
|
||||
return $categories_count;
|
||||
}
|
||||
|
||||
|
||||
function oos_set_categories_status($categories_id, $status) {
|
||||
|
||||
// Get database information
|
||||
$dbconn =& oosDBGetConn();
|
||||
$oostable =& oosDBGetTables();
|
||||
|
||||
$categoriestable = $oostable['categories'];
|
||||
if ($status == '1') {
|
||||
$query = "UPDATE $categoriestable
|
||||
SET categories_status = '1',
|
||||
last_modified = now()
|
||||
WHERE categories_id = '" . intval($categories_id) . "'";
|
||||
$result = $dbconn->Execute($query);
|
||||
|
||||
$categories_query = "SELECT categories_id
|
||||
FROM $categoriestable
|
||||
WHERE parent_id = '" . intval($categories_id) . "'";
|
||||
$categories_result = $dbconn->Execute($categories_query);
|
||||
|
||||
while ($categories = $categories_result->fields) {
|
||||
oos_set_categories_status($categories['categories_id'], 1);
|
||||
// Move that ADOdb pointer!
|
||||
$categories_result->MoveNext();
|
||||
}
|
||||
return;
|
||||
} elseif ($status == '2') {
|
||||
$query = "UPDATE $categoriestable
|
||||
SET categories_status = '2',
|
||||
last_modified = now()
|
||||
WHERE categories_id = '" . intval($categories_id) . "'";
|
||||
$result = $dbconn->Execute($query);
|
||||
|
||||
return;
|
||||
} else {
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
function oos_set_product_status($products_id, $status) {
|
||||
|
||||
// Get database information
|
||||
$dbconn =& oosDBGetConn();
|
||||
$oostable =& oosDBGetTables();
|
||||
|
||||
$productstable = $oostable['products'];
|
||||
$query = "UPDATE $productstable
|
||||
SET products_setting = '" . intval($status) . "',
|
||||
products_last_modified = now()
|
||||
WHERE products_id = '" . intval($products_id) . "'";
|
||||
$result = $dbconn->Execute($query);
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
function product_move_to_trash($products_id) {
|
||||
|
||||
// Get database information
|
||||
$dbconn =& oosDBGetConn();
|
||||
$oostable =& oosDBGetTables();
|
||||
|
||||
$productstable = $oostable['products'];
|
||||
$query = "UPDATE $productstable
|
||||
SET products_setting = '0',
|
||||
products_last_modified = now()
|
||||
WHERE products_id = '" . intval($products_id) . "'";
|
||||
$result = $dbconn->Execute($query);
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
function category_move_to_trash($categories_id) {
|
||||
|
||||
// Get database information
|
||||
$dbconn =& oosDBGetConn();
|
||||
$oostable =& oosDBGetTables();
|
||||
|
||||
$categoriestable = $oostable['categories'];
|
||||
$query = "UPDATE $categoriestable
|
||||
SET categories_status = '0',
|
||||
last_modified = now()
|
||||
WHERE categories_id = '" . intval($categories_id) . "'";
|
||||
$result = $dbconn->Execute($query);
|
||||
|
||||
return;
|
||||
|
||||
}
|
||||
|
||||
|
||||
function oos_generate_category_path($id, $from = 'category', $categories_array = '', $index = 0) {
|
||||
|
||||
if (!is_array($categories_array)) $categories_array = array();
|
||||
|
||||
// Get database information
|
||||
$dbconn =& oosDBGetConn();
|
||||
$oostable =& oosDBGetTables();
|
||||
|
||||
$products_to_categoriestable = $oostable['products_to_categories'];
|
||||
$categoriestable = $oostable['categories'];
|
||||
$categories_descriptiontable = $oostable['categories_description'];
|
||||
|
||||
if ($from == 'product') {
|
||||
$categories_query = "SELECT categories_id
|
||||
FROM $products_to_categoriestable
|
||||
WHERE products_id = '" . intval($id) . "'";
|
||||
$categories_result = $dbconn->Execute($categories_query);
|
||||
|
||||
while ($categories = $categories_result->fields) {
|
||||
if ($categories['categories_id'] == '0') {
|
||||
$categories_array[$index][] = array('id' => '0', 'text' => TEXT_TOP);
|
||||
} else {
|
||||
$category_query = "SELECT cd.categories_name, c.parent_id
|
||||
FROM $categoriestable c,
|
||||
$categories_descriptiontable cd
|
||||
WHERE c.categories_id = '" . intval($categories['categories_id']) . "'
|
||||
AND c.categories_id = cd.categories_id
|
||||
AND cd.categories_languages_id = '" . intval($_SESSION['language_id']) . "'";
|
||||
$category_result = $dbconn->Execute($category_query);
|
||||
|
||||
$category = $category_result->fields;
|
||||
|
||||
$categories_array[$index][] = array('id' => $categories['categories_id'], 'text' => $category['categories_name']);
|
||||
if ( (oos_is_not_null($category['parent_id'])) && ($category['parent_id'] != '0') ) $categories_array = oos_generate_category_path($category['parent_id'], 'category', $categories_array, $index);
|
||||
$categories_array[$index] = array_reverse($categories_array[$index]);
|
||||
}
|
||||
$index++;
|
||||
|
||||
// Move that ADOdb pointer!
|
||||
$categories_result->MoveNext();
|
||||
}
|
||||
|
||||
} elseif ($from == 'category') {
|
||||
|
||||
$category_query = "SELECT cd.categories_name, c.parent_id
|
||||
FROM $categoriestable c,
|
||||
$categories_descriptiontable cd
|
||||
WHERE c.categories_id = '" . intval($id) . "'
|
||||
AND c.categories_id = cd.categories_id
|
||||
AND cd.categories_languages_id = '" . intval($_SESSION['language_id']) . "'";
|
||||
$category_result = $dbconn->Execute($category_query);
|
||||
|
||||
$category = $category_result->fields;
|
||||
|
||||
$categories_array[$index][] = array('id' => $id, 'text' => $category['categories_name']);
|
||||
if ( (oos_is_not_null($category['parent_id'])) && ($category['parent_id'] != '0') ) $categories_array = oos_generate_category_path($category['parent_id'], 'category', $categories_array, $index);
|
||||
}
|
||||
|
||||
return $categories_array;
|
||||
}
|
||||
|
||||
|
||||
function oos_output_generated_category_path($id, $from = 'category') {
|
||||
$calculated_category_path_string = '';
|
||||
$calculated_category_path = oos_generate_category_path($id, $from);
|
||||
for ($i = 0, $n = count($calculated_category_path); $i < $n; $i++) {
|
||||
for ($j = 0, $k = count($calculated_category_path[$i]); $j < $k; $j++) {
|
||||
$calculated_category_path_string .= $calculated_category_path[$i][$j]['text'] . ' > ';
|
||||
}
|
||||
$calculated_category_path_string = substr($calculated_category_path_string, 0, -16) . '<br />';
|
||||
}
|
||||
$calculated_category_path_string = substr($calculated_category_path_string, 0, -6);
|
||||
|
||||
if (strlen($calculated_category_path_string) < 1) $calculated_category_path_string = TEXT_TOP;
|
||||
|
||||
return $calculated_category_path_string;
|
||||
}
|
||||
|
||||
function oos_remove_category_image($image) {
|
||||
$sImage = oos_var_prep_for_os($image);
|
||||
|
||||
if (file_exists(OOS_ABSOLUTE_PATH . OOS_IMAGES . 'category/originals/' .$sImage)) {
|
||||
@unlink(OOS_ABSOLUTE_PATH . OOS_IMAGES . 'category/large/' .$sImage);
|
||||
@unlink(OOS_ABSOLUTE_PATH . OOS_IMAGES . 'category/medium/' .$sImage);
|
||||
@unlink(OOS_ABSOLUTE_PATH . OOS_IMAGES . 'category/small/' .$sImage);
|
||||
@unlink(OOS_ABSOLUTE_PATH . OOS_IMAGES . 'category/originals/' .$sImage);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
function oos_remove_category_banner($image) {
|
||||
$sImage = oos_var_prep_for_os($image);
|
||||
|
||||
if (file_exists(OOS_ABSOLUTE_PATH . OOS_IMAGES . 'banners/originals/' .$sImage)) {
|
||||
@unlink(OOS_ABSOLUTE_PATH . OOS_IMAGES . 'banners/large/' .$sImage);
|
||||
@unlink(OOS_ABSOLUTE_PATH . OOS_IMAGES . 'banners/medium/' .$sImage);
|
||||
@unlink(OOS_ABSOLUTE_PATH . OOS_IMAGES . 'banners/originals/' .$sImage);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
function oos_remove_category($category_id) {
|
||||
|
||||
// Get database information
|
||||
$dbconn =& oosDBGetConn();
|
||||
$oostable =& oosDBGetTables();
|
||||
|
||||
$categoriestable = $oostable['categories'];
|
||||
$category_image_query = "SELECT categories_image
|
||||
FROM $categoriestable
|
||||
WHERE categories_id = '" . intval($category_id) . "'";
|
||||
$category_image_result = $dbconn->Execute($category_image_query);
|
||||
$category_image = $category_image_result->fields;
|
||||
|
||||
$duplicate_image_query = "SELECT COUNT(*) AS total
|
||||
FROM $categoriestable
|
||||
WHERE categories_image = '" . oos_db_input($category_image['categories_image']) . "'";
|
||||
$duplicate_image_result = $dbconn->Execute($duplicate_image_query);
|
||||
$duplicate_image = $duplicate_image_result->fields;
|
||||
|
||||
if ($duplicate_image['total'] < 2) {
|
||||
oos_remove_category_image($category_image['categories_image']);
|
||||
}
|
||||
|
||||
$categories_imagestable = $oostable['categories_images'];
|
||||
$category_image_query = "SELECT categories_image
|
||||
FROM $categories_imagestable
|
||||
WHERE categories_id = '" . intval($category_id) . "'";
|
||||
$category_image_result = $dbconn->Execute($category_image_query);
|
||||
while ($category_image = $category_image_result->fields) {
|
||||
|
||||
$duplicate_image = "SELECT COUNT(*) AS total
|
||||
FROM $categories_imagestable
|
||||
WHERE categories_image = '" . oos_db_input($category_image['categories_image']) . "'";
|
||||
$duplicate_image_result = $dbconn->Execute($duplicate_image);
|
||||
$duplicate_image = $duplicate_image_result->fields;
|
||||
|
||||
if ($duplicate_image['total'] < 2) {
|
||||
oos_remove_category_image($category_image['categories_image']);
|
||||
}
|
||||
// Move that ADOdb pointer!
|
||||
$category_image_result->MoveNext();
|
||||
}
|
||||
|
||||
$dbconn->Execute("DELETE FROM " . $oostable['categories'] . " WHERE categories_id = '" . intval($category_id) . "'");
|
||||
$dbconn->Execute("DELETE FROM " . $oostable['categories_description'] . " WHERE categories_id = '" . intval($category_id) . "'");
|
||||
$dbconn->Execute("DELETE FROM " . $oostable['categories_images'] . " WHERE categories_id = '" . intval($category_id) . "'");
|
||||
$dbconn->Execute("DELETE FROM " . $oostable['products_to_categories'] . " WHERE categories_id = '" . intval($category_id) . "'");
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Code: categories_description
|
||||
* Author: Brian Lowe <blowe@wpcusrgrp.org>
|
||||
* Date: June 2002
|
||||
*/
|
||||
function oos_get_category_heading_title($category_id, $language_id = '') {
|
||||
|
||||
// Get database information
|
||||
$dbconn =& oosDBGetConn();
|
||||
$oostable =& oosDBGetTables();
|
||||
|
||||
if (empty($language_id) || !is_numeric($language_id)) $language_id = intval($_SESSION['language_id']);
|
||||
|
||||
$categories_descriptiontable = $oostable['categories_description'];
|
||||
$query = "SELECT categories_heading_title
|
||||
FROM $categories_descriptiontable
|
||||
WHERE categories_id = '" . intval($category_id) . "'
|
||||
AND categories_languages_id = '" . intval($language_id) . "'";
|
||||
$result = $dbconn->Execute($query);
|
||||
|
||||
$categories_heading_title = $result->fields['categories_heading_title'];
|
||||
|
||||
return $categories_heading_title;
|
||||
}
|
||||
|
||||
function oos_get_category_description($category_id, $language_id = '') {
|
||||
|
||||
// Get database information
|
||||
$dbconn =& oosDBGetConn();
|
||||
$oostable =& oosDBGetTables();
|
||||
|
||||
if (empty($language_id) || !is_numeric($language_id)) $language_id = intval($_SESSION['language_id']);
|
||||
|
||||
$categories_descriptiontable = $oostable['categories_description'];
|
||||
$query = "SELECT categories_description
|
||||
FROM $categories_descriptiontable
|
||||
WHERE categories_id = '" . intval($category_id) . "'
|
||||
AND categories_languages_id = '" . intval($language_id) . "'";
|
||||
$result = $dbconn->Execute($query);
|
||||
|
||||
$categories_description = $result->fields['categories_description'];
|
||||
|
||||
return $categories_description;
|
||||
}
|
||||
|
||||
|
||||
function oos_get_category_description_meta($category_id, $language_id = '') {
|
||||
|
||||
// Get database information
|
||||
$dbconn =& oosDBGetConn();
|
||||
$oostable =& oosDBGetTables();
|
||||
|
||||
if (empty($language_id) || !is_numeric($language_id)) $language_id = intval($_SESSION['language_id']);
|
||||
|
||||
$categories_descriptiontable = $oostable['categories_description'];
|
||||
$query = "SELECT categories_description_meta
|
||||
FROM $categories_descriptiontable
|
||||
WHERE categories_id = '" . intval($category_id) . "'
|
||||
AND categories_languages_id = '" . intval($language_id). "'";
|
||||
$result = $dbconn->Execute($query);
|
||||
|
||||
$categories_description_meta = $result->fields['categories_description_meta'];
|
||||
|
||||
return $categories_description_meta;
|
||||
}
|
||||
|
||||
|
||||
function oos_duplicate_product_image_check($image) {
|
||||
|
||||
// Get database information
|
||||
$dbconn =& oosDBGetConn();
|
||||
$oostable =& oosDBGetTables();
|
||||
|
||||
$productstable = $oostable['products'];
|
||||
$query = "SELECT COUNT(*) AS total
|
||||
FROM $productstable
|
||||
WHERE products_image = '" . oos_db_input($image) . "'";
|
||||
$result = $dbconn->Execute($query);
|
||||
|
||||
if ($result->fields['total'] == 1) {
|
||||
return TRUE;
|
||||
} else {
|
||||
return FALSE;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
function oos_remove_product_image($image) {
|
||||
$sImage = oos_var_prep_for_os($image);
|
||||
|
||||
if (file_exists(OOS_ABSOLUTE_PATH . OOS_IMAGES . 'product/originals/' .$sImage)) {
|
||||
@unlink(OOS_ABSOLUTE_PATH . OOS_IMAGES . 'product/large/' .$sImage);
|
||||
@unlink(OOS_ABSOLUTE_PATH . OOS_IMAGES . 'product/medium_large/' .$sImage);
|
||||
@unlink(OOS_ABSOLUTE_PATH . OOS_IMAGES . 'product/medium/' .$sImage);
|
||||
@unlink(OOS_ABSOLUTE_PATH . OOS_IMAGES . 'product/small/' .$sImage);
|
||||
@unlink(OOS_ABSOLUTE_PATH . OOS_IMAGES . 'product/min/' .$sImage);
|
||||
@unlink(OOS_ABSOLUTE_PATH . OOS_IMAGES . 'product/originals/' .$sImage);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Return a product's manufacturer
|
||||
*
|
||||
* @param $products_id
|
||||
* @return string
|
||||
*/
|
||||
function oos_get_manufacturers_name($product_id) {
|
||||
|
||||
// Get database information
|
||||
$dbconn =& oosDBGetConn();
|
||||
$oostable =& oosDBGetTables();
|
||||
|
||||
$manufacturerstable = $oostable['manufacturers'];
|
||||
$manufacturers_infotable = $oostable['manufacturers_info'];
|
||||
$productstable = $oostable['products'];
|
||||
$query = "SELECT m.manufacturers_id, m.manufacturers_name, m.manufacturers_image, mi.manufacturers_url
|
||||
FROM $manufacturerstable m,
|
||||
$manufacturers_infotable mi,
|
||||
$productstable p
|
||||
WHERE p.products_id = '" . intval($product_id) . "'
|
||||
AND p.manufacturers_id = m.manufacturers_id
|
||||
AND mi.manufacturers_id = m.manufacturers_id";
|
||||
$result = $dbconn->Execute($query);
|
||||
|
||||
$manufacturers_name = $result->fields['manufacturers_name'];
|
||||
|
||||
|
||||
return $manufacturers_name;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Return Products Special Price
|
||||
*
|
||||
* @param $nProductID
|
||||
* @return string
|
||||
*/
|
||||
function oos_get_products_special_price($nProductID) {
|
||||
|
||||
// Get database information
|
||||
$dbconn =& oosDBGetConn();
|
||||
$oostable =& oosDBGetTables();
|
||||
|
||||
$specialstable = $oostable['specials'];
|
||||
$query = "SELECT specials_new_products_price
|
||||
FROM $specialstable
|
||||
WHERE products_id = '" . intval($nProductID) . "'
|
||||
AND status";
|
||||
$specials_new_products_price = $dbconn->GetOne($query);
|
||||
|
||||
return $specials_new_products_price;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Find a Categories Name
|
||||
*
|
||||
* @param $who_am_i
|
||||
* @return string
|
||||
*/
|
||||
function oos_get_categories_name($who_am_i) {
|
||||
|
||||
// Get database information
|
||||
$dbconn =& oosDBGetConn();
|
||||
$oostable =& oosDBGetTables();
|
||||
|
||||
$categories_descriptiontable = $oostable['categories_description'];
|
||||
$query = "SELECT categories_name
|
||||
FROM $categories_descriptiontable
|
||||
WHERE categories_id = '" . intval($who_am_i) . "'
|
||||
AND categories_languages_id = '" . intval($_SESSION['language_id']) . "'";
|
||||
$result = $dbconn->Execute($query);
|
||||
|
||||
$categories_name = $result->fields['categories_name'];
|
||||
|
||||
return $categories_name;
|
||||
}
|
||||
|
152
msd2/myoos/admin/includes/functions/function_coupon.php
Normal file
152
msd2/myoos/admin/includes/functions/function_coupon.php
Normal file
@ -0,0 +1,152 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: add_ccgvdc_application_top.php
|
||||
gv_sent.php,v 1.1 2003/02/18 00:18:50 wilt
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2002 - 2003 osCommerce
|
||||
|
||||
Credit Class GV/Discount Coupon v5.03
|
||||
Copyright (c) 2001 - 2003 Ian C Wilson
|
||||
http://www.phesis.org
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
/** ensure this file is being included by a parent file */
|
||||
defined( 'OOS_VALID_MOD' ) or die( 'Direct Access to this location is not allowed.' );
|
||||
|
||||
|
||||
/**
|
||||
* Create a Coupon Code. length may be between 1 and 16 Characters
|
||||
*
|
||||
* @param $salt
|
||||
* @param $length
|
||||
* @return string
|
||||
*/
|
||||
function oos_create_coupon_code($salt="secret", $length=SECURITY_CODE_LENGTH) {
|
||||
|
||||
$ccid = md5(uniqid("","salt"));
|
||||
$ccid .= md5(uniqid("","salt"));
|
||||
$ccid .= md5(uniqid("","salt"));
|
||||
$ccid .= md5(uniqid("","salt"));
|
||||
|
||||
srand((double)microtime()*1000000); // seed the random number generator
|
||||
$random_start = @rand(0, (128-$length));
|
||||
$good_result = 0;
|
||||
|
||||
// Get database information
|
||||
$dbconn =& oosDBGetConn();
|
||||
$oostable =& oosDBGetTables();
|
||||
|
||||
while ($good_result == 0) {
|
||||
$coupon_code = substr($ccid, $random_start,$length);
|
||||
$query = "SELECT coupon_code
|
||||
FROM " . $oostable['coupons'] . "
|
||||
WHERE coupon_code = '" . $coupon_code . "'";
|
||||
$result = $dbconn->Execute($query);
|
||||
if ($result->RecordCount() == 0) $good_result = 1;
|
||||
}
|
||||
|
||||
|
||||
return $coupon_code;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Update the Customers GV account
|
||||
*
|
||||
* @param $customer_id
|
||||
* @param $gv_id
|
||||
*/
|
||||
function oos_gv_account_update($customer_id, $gv_id) {
|
||||
|
||||
// Get database information
|
||||
$dbconn =& oosDBGetConn();
|
||||
$oostable =& oosDBGetTables();
|
||||
|
||||
$coupon_gv_query = "SELECT coupon_amount
|
||||
FROM " . $oostable['coupons'] . "
|
||||
WHERE coupon_id = '" . $gv_id . "'";
|
||||
$coupon_gv_result = $dbconn->Execute($coupon_gv_query);
|
||||
$coupon_gv = $coupon_gv_result->fields;
|
||||
|
||||
if ($customer_gv_result->RecordCount() > 0) {
|
||||
$customer_gv_query = "SELECT amount
|
||||
FROM " . $oostable['coupon_gv_customer'] . "
|
||||
WHERE customer_id = '" . $customer_id . "'";
|
||||
$customer_gv_result = $dbconn->Execute($customer_gv_query);
|
||||
|
||||
$customer_gv = $customer_gv_result->fields;
|
||||
$new_gv_amount = $customer_gv['amount'] + $coupon_gv['coupon_amount'];
|
||||
|
||||
$gv_query = "UPDATE " . $oostable['coupon_gv_customer'] . "
|
||||
SET amount = '" . $new_gv_amount . "'";
|
||||
$result = $dbconn->Execute($gv_query);
|
||||
} else {
|
||||
$gv_query = "INSERT INTO " . $oostable['coupon_gv_customer'] . "
|
||||
(customer_id, amount) VALUES ('" . $customer_id . "', '" . $coupon_gv['coupon_amount'] . "'";
|
||||
$result = $dbconn->Execute($gv_query);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Output a day/month/year dropdown selector
|
||||
*
|
||||
* @param $prefix
|
||||
* @param $date
|
||||
* @return string
|
||||
*/
|
||||
function oos_draw_date_selector($prefix, $date='') {
|
||||
$month_array = array();
|
||||
$month_array[1] =_JANUARY;
|
||||
$month_array[2] =_FEBRUARY;
|
||||
$month_array[3] =_MARCH;
|
||||
$month_array[4] =_APRIL;
|
||||
$month_array[5] =_MAY;
|
||||
$month_array[6] =_JUNE;
|
||||
$month_array[7] =_JULY;
|
||||
$month_array[8] =_AUGUST;
|
||||
$month_array[9] =_SEPTEMBER;
|
||||
$month_array[10] =_OCTOBER;
|
||||
$month_array[11] =_NOVEMBER;
|
||||
$month_array[12] =_DECEMBER;
|
||||
$usedate = getdate($date);
|
||||
$day = $usedate['mday'];
|
||||
$month = $usedate['mon'];
|
||||
$year = $usedate['year'];
|
||||
$date_selector = '<select name="'. $prefix .'_day">';
|
||||
for ($i=1;$i<32;$i++){
|
||||
$date_selector .= '<option value="' . $i . '"';
|
||||
if ($i==$day) $date_selector .= 'selected';
|
||||
$date_selector .= '>' . $i . '</option>';
|
||||
}
|
||||
$date_selector .= '</select>';
|
||||
$date_selector .= '<select name="'. $prefix .'_month">';
|
||||
for ($i=1;$i<13;$i++){
|
||||
$date_selector .= '<option value="' . $i . '"';
|
||||
if ($i==$month) $date_selector .= 'selected';
|
||||
$date_selector .= '>' . $month_array[$i] . '</option>';
|
||||
}
|
||||
$date_selector .= '</select>';
|
||||
$date_selector .= '<select name="'. $prefix .'_year">';
|
||||
for ($i=2018;$i<2029;$i++){
|
||||
$date_selector .= '<option value="' . $i . '"';
|
||||
if ($i==$year) $date_selector .= 'selected';
|
||||
$date_selector .= '>' . $i . '</option>';
|
||||
}
|
||||
$date_selector .= '</select>';
|
||||
|
||||
return $date_selector;
|
||||
}
|
220
msd2/myoos/admin/includes/functions/function_customer.php
Normal file
220
msd2/myoos/admin/includes/functions/function_customer.php
Normal file
@ -0,0 +1,220 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: general_elari_cs.php,v 1.1 2003/01/08 10:53:01 elarifr
|
||||
----------------------------------------------------------------------
|
||||
For customers_status_v3.x / Admin
|
||||
|
||||
Contribution based on:
|
||||
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2002 - 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
/** ensure this file is being included by a parent file */
|
||||
defined( 'OOS_VALID_MOD' ) or die( 'Direct Access to this location is not allowed.' );
|
||||
|
||||
/**
|
||||
* Customer Status Name
|
||||
*
|
||||
* @param $customers_status_id
|
||||
* @param $language
|
||||
* @return string
|
||||
*/
|
||||
function oos_get_customer_status_name($customers_status_id, $language_id = '') {
|
||||
|
||||
if (empty($language_id) || !is_numeric($language_id)) $language_id = intval($_SESSION['language_id']);
|
||||
|
||||
// Get database information
|
||||
$dbconn =& oosDBGetConn();
|
||||
$oostable =& oosDBGetTables();
|
||||
|
||||
$query = "SELECT customers_status_name
|
||||
FROM " . $oostable['customers_status'] . "
|
||||
WHERE customers_status_id = '" . intval($customers_status_id) . "'
|
||||
AND customers_status_languages_id = '" . intval($language_id) . "'";
|
||||
$result = $dbconn->Execute($query);
|
||||
|
||||
$customers_status_name = $result->fields['customers_status_name'];
|
||||
|
||||
return $customers_status_name;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return all customers statuses for a specified language_id and return an array(array())
|
||||
* Use it to make pull_down_menu, checkbox
|
||||
*
|
||||
* @author elari - Added in CS V1.1
|
||||
* @changed by $Author: r23 $
|
||||
* @param $customers_status_id
|
||||
* @param $language
|
||||
* @return array(array())
|
||||
*/
|
||||
function oos_get_customers_statuses() {
|
||||
|
||||
$customers_statuses_array = array();
|
||||
|
||||
// Get database information
|
||||
$dbconn =& oosDBGetConn();
|
||||
$oostable =& oosDBGetTables();
|
||||
|
||||
$query = "SELECT customers_status_id, customers_status_name, customers_status_ot_discount_flag,
|
||||
customers_status_ot_discount, customers_status_payment
|
||||
FROM " . $oostable['customers_status'] . "
|
||||
WHERE customers_status_languages_id = '" . intval($_SESSION['language_id']) . "'
|
||||
ORDER BY customers_status_id";
|
||||
$result = $dbconn->Execute($query);
|
||||
|
||||
while ($customers_statuses = $result->fields) {
|
||||
$i = $customers_statuses['customers_status_id'];
|
||||
$customers_statuses_array[$i] = array('id' => $customers_statuses['customers_status_id'],
|
||||
'text' => $customers_statuses['customers_status_name'],
|
||||
'cs_public' => $customers_statuses['customers_status_public'],
|
||||
'cs_ot_discount_flag' => $customers_statuses['customers_status_ot_discount_flag'],
|
||||
'cs_ot_discount' => $customers_statuses['customers_status_ot_discount'],
|
||||
'cs_staffelpreis' => $customers_statuses['customers_status_qty_discounts'],
|
||||
'cs_payment_unallowed' => $customers_statuses['customers_status_payment']);
|
||||
// Move that ADOdb pointer!
|
||||
$result->MoveNext();
|
||||
}
|
||||
|
||||
return $customers_statuses_array;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return all status info values for a customer_id in admin . no need to check session !
|
||||
* Use it to make pull_down_menu, checkbox
|
||||
*
|
||||
* @author elari - Added in CS V1.1
|
||||
* @changed by $Author: r23 $
|
||||
* @param $customers_id
|
||||
* @return array(array())
|
||||
*/
|
||||
function oos_get_customers_status($customer_id) {
|
||||
|
||||
$customer_status_array = array();
|
||||
|
||||
// Get database information
|
||||
$dbconn =& oosDBGetConn();
|
||||
$oostable =& oosDBGetTables();
|
||||
|
||||
$query = "SELECT customers_status, customers_status_name, customers_status_public,
|
||||
customers_status_ot_discount_flag, customers_status_ot_discount,
|
||||
customers_status_qty_discounts, customers_status_payment
|
||||
FROM " . $oostable['customers'] . " LEFT JOIN
|
||||
" . $oostable['customers_status'] . " ON
|
||||
customers_status = customers_status_id
|
||||
WHERE customers_id= '" . intval($customer_id) . "'
|
||||
AND customers_status_languages_id = '" . intval($_SESSION['language_id']) . "'";
|
||||
$result = $dbconn->Execute($query);
|
||||
$customer_status_array = $result->fields;
|
||||
|
||||
return $customer_status_array;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set Login Status
|
||||
*
|
||||
* @param $customer_id
|
||||
* @param $status
|
||||
*/
|
||||
function oos_set_customer_login($customer_id, $status) {
|
||||
|
||||
// Get database information
|
||||
$dbconn =& oosDBGetConn();
|
||||
$oostable =& oosDBGetTables();
|
||||
|
||||
if ($status == '1') {
|
||||
$query = "UPDATE " . $oostable['customers'] . "
|
||||
SET customers_login = '1'
|
||||
WHERE customers_id = '" . intval($customer_id) . "'";
|
||||
$result = $dbconn->Execute($query);
|
||||
|
||||
return;
|
||||
} elseif ($status == '0') {
|
||||
$query = "UPDATE " . $oostable['customers'] . "
|
||||
SET customers_login = '0'
|
||||
WHERE customers_id = '" . intval($customer_id) . "'";
|
||||
$result = $dbconn->Execute($query);
|
||||
|
||||
return;
|
||||
} else {
|
||||
return FALSE;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Installed Payment
|
||||
*
|
||||
* @author r23 <info@r23.de>
|
||||
* @copyright 2003 r23
|
||||
* @param $customers_payment
|
||||
* @return string
|
||||
*/
|
||||
function oos_installed_payment($customers_payment = '') {
|
||||
GLOBAL $aLang;
|
||||
|
||||
$install_payment = '';
|
||||
$installed_payment = explode(';', MODULE_PAYMENT_INSTALLED);
|
||||
$select_payment = explode(';', $customers_payment);
|
||||
for ($i = 0, $n = count($installed_payment); $i < $n; $i++) {
|
||||
$file = $installed_payment[$i];
|
||||
|
||||
include OOS_ABSOLUTE_PATH . 'includes/languages/' . $_SESSION['language'] . '/modules/payment/' . $file;
|
||||
include OOS_ABSOLUTE_PATH . 'includes/modules/payment/' . $file;
|
||||
|
||||
$class = substr($file, 0, strrpos($file, '.'));
|
||||
if (oos_class_exits($class)) {
|
||||
$module = new $class;
|
||||
|
||||
if (in_array ($file, $select_payment)) {
|
||||
$install_payment .= oos_draw_checkbox_field('payment[]', $file, true) . $module->title . '<br />';
|
||||
} else {
|
||||
$install_payment .= oos_draw_checkbox_field('payment[]', $file) . $module->title . '<br />';
|
||||
}
|
||||
}
|
||||
}
|
||||
return $install_payment;
|
||||
}
|
||||
|
||||
/**
|
||||
* Customers Payment
|
||||
*
|
||||
* @author r23 <info@r23.de>
|
||||
* @copyright 2003 r23
|
||||
* @param $customers_payment
|
||||
* @return string
|
||||
*/
|
||||
function oos_customers_payment($customers_payment = '') {
|
||||
GLOBAL $aLang;
|
||||
|
||||
$payment_title = '';
|
||||
if (oos_is_not_null($customers_payment)) {
|
||||
$select_payment = explode(';', $customers_payment);
|
||||
for ($i = 0, $n = count($select_payment); $i < $n; $i++) {
|
||||
$file = $select_payment[$i];
|
||||
|
||||
include OOS_ABSOLUTE_PATH . 'includes/languages/' . $_SESSION['language'] . '/modules/payment/' . $file;
|
||||
include OOS_ABSOLUTE_PATH . 'includes/modules/payment/' . $file;
|
||||
|
||||
$class = substr($file, 0, strrpos($file, '.'));
|
||||
if (oos_class_exits($class)) {
|
||||
$module = new $class;
|
||||
$payment_title .= $module->title . '<br />';
|
||||
}
|
||||
}
|
||||
}
|
||||
return $payment_title;
|
||||
}
|
||||
|
144
msd2/myoos/admin/includes/functions/function_edit_orders.php
Normal file
144
msd2/myoos/admin/includes/functions/function_edit_orders.php
Normal file
@ -0,0 +1,144 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: edit_orders.php,v 1.2 2003/08/08 13:50:00 jwh
|
||||
----------------------------------------------------------------------
|
||||
Order Editor
|
||||
|
||||
Written by Jonathan Hilgeman of SiteCreative.com (osc@sitecreative.com)
|
||||
Contribution based on:
|
||||
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
/** ensure this file is being included by a parent file */
|
||||
defined( 'OOS_VALID_MOD' ) or die( 'Direct Access to this location is not allowed.' );
|
||||
|
||||
/**
|
||||
* Return the country_id based on the country's name
|
||||
*
|
||||
* @param $country_name string
|
||||
* @return integer
|
||||
*/
|
||||
function oos_get_country_id($country_name) {
|
||||
|
||||
// Get database information
|
||||
$dbconn =& oosDBGetConn();
|
||||
$oostable =& oosDBGetTables();
|
||||
$query = "SELECT countries_id
|
||||
FROM " . $oostable['countries'] . "
|
||||
WHERE countries_name = '" . oos_db_input($country_name) . "'";
|
||||
$result = $dbconn->Execute($query);
|
||||
if (!$result->RecordCount()) {
|
||||
$country_id = 0;
|
||||
} else {
|
||||
$country_id = $result->fields['countries_id'];
|
||||
}
|
||||
|
||||
return $country_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return the country_iso_code_2 based on the country's id
|
||||
*
|
||||
* @param $country_id integer
|
||||
* @return string
|
||||
*/
|
||||
function oos_get_country_isocode2($country_id) {
|
||||
|
||||
// Get database information
|
||||
$dbconn =& oosDBGetConn();
|
||||
$oostable =& oosDBGetTables();
|
||||
$query = "SELECT countries_iso_code_2
|
||||
FROM " . $oostable['countries'] . "
|
||||
WHERE countries_id = '" . intval($country_id) . "'";
|
||||
$result = $dbconn->Execute($query);
|
||||
if (!$result->RecordCount()) {
|
||||
$country_iso = 0;
|
||||
} else {
|
||||
$country_iso = $result->fields['countries_iso_code_2'];
|
||||
}
|
||||
|
||||
return $country_iso;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return the zone_id based on the zone's name
|
||||
*
|
||||
* @param $country_id integer
|
||||
* @param $zone_name string
|
||||
* @return integer
|
||||
*/
|
||||
function oos_get_zone_id($country_id, $zone_name) {
|
||||
|
||||
// Get database information
|
||||
$dbconn =& oosDBGetConn();
|
||||
$oostable =& oosDBGetTables();
|
||||
$query = "SELECT zone_id
|
||||
FROM " . $oostable['zones'] . "
|
||||
WHERE zone_country_id = '" . intval($country_id) . "'
|
||||
AND zone_name = '" . oos_db_input($zone_name) . "'";
|
||||
$result = $dbconn->Execute($query);
|
||||
if (!$result->RecordCount()) {
|
||||
$zone_id = 0;
|
||||
} else {
|
||||
$zone_id = $result->fields['zone_id'];
|
||||
}
|
||||
|
||||
return $zone_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return result of check the existence of a database field
|
||||
*
|
||||
* @param $table string
|
||||
* @param $field string
|
||||
* @return boolean
|
||||
*/
|
||||
function oos_field_exists($table, $field) {
|
||||
|
||||
// Get database information
|
||||
$dbconn =& oosDBGetConn();
|
||||
$describe_result = $dbconn->Execute("describe $table");
|
||||
while($d_row = $describe_result->fields) {
|
||||
if ($d_row["Field"] == "$field") return TRUE;
|
||||
|
||||
// Move that ADOdb pointer!
|
||||
$describe_result->MoveNext();
|
||||
}
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return string with changed quotes to HTML equivalents for form inputs.
|
||||
*
|
||||
* @param $string string
|
||||
* @return string
|
||||
*/
|
||||
function oos_html_quotes($string) {
|
||||
return str_replace("'", "'", $string);
|
||||
}
|
||||
|
||||
/**
|
||||
* Return string with changed HTML equivalents back to quotes
|
||||
*
|
||||
* @param $string string
|
||||
* @return string
|
||||
*/
|
||||
function oos_html_unquote($string) {
|
||||
return str_replace("'", "'", $string);
|
||||
}
|
||||
|
@ -0,0 +1,79 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
/** ensure this file is being included by a parent file */
|
||||
defined( 'OOS_VALID_MOD' ) or die( 'Direct Access to this location is not allowed.' );
|
||||
|
||||
|
||||
function oos_get_informations_name($informations_id, $language_id = '') {
|
||||
|
||||
// Get database information
|
||||
$dbconn =& oosDBGetConn();
|
||||
$oostable =& oosDBGetTables();
|
||||
|
||||
if (empty($language_id) || !is_numeric($language_id)) $language_id = intval($_SESSION['language_id']);
|
||||
|
||||
$information_descriptiontable = $oostable['information_description'];
|
||||
$query = "SELECT information_name
|
||||
FROM " . $information_descriptiontable . "
|
||||
WHERE information_id = '" . intval($informations_id) . "'
|
||||
AND information_languages_id = '" . intval($language_id) . "'";
|
||||
$result = $dbconn->Execute($query);
|
||||
|
||||
$information_name = $result->fields['information_name'];
|
||||
|
||||
|
||||
return $information_name;
|
||||
}
|
||||
|
||||
|
||||
|
||||
function oos_get_informations_description($informations_id, $language_id = '') {
|
||||
|
||||
if (empty($language_id) || !is_numeric($language_id)) $language_id = intval($_SESSION['language_id']);
|
||||
|
||||
// Get database information
|
||||
$dbconn =& oosDBGetConn();
|
||||
$oostable =& oosDBGetTables();
|
||||
|
||||
$information_descriptiontable = $oostable['information_description'];
|
||||
$query = "SELECT information_description
|
||||
FROM " . $information_descriptiontable . "
|
||||
WHERE information_id = '" . intval($informations_id) . "'
|
||||
AND information_languages_id = '" . intval($language_id) . "'";
|
||||
$result = $dbconn->Execute($query);
|
||||
|
||||
$information_description = $result->fields['information_description'];
|
||||
|
||||
return $information_description;
|
||||
}
|
||||
|
||||
|
||||
function oos_get_informations_heading_title($informations_id, $language_id = '') {
|
||||
|
||||
if (empty($language_id) || !is_numeric($language_id)) $language_id = intval($_SESSION['language_id']);
|
||||
|
||||
// Get database information
|
||||
$dbconn =& oosDBGetConn();
|
||||
$oostable =& oosDBGetTables();
|
||||
|
||||
$information_descriptiontable = $oostable['information_description'];
|
||||
$query = "SELECT information_heading_title
|
||||
FROM " . $information_descriptiontable . "
|
||||
WHERE information_id = '" . intval($informations_id) . "'
|
||||
AND information_languages_id = '" . intval($language_id) . "'";
|
||||
$result = $dbconn->Execute($query);
|
||||
|
||||
$information_heading_title = $result->fields['information_heading_title'];
|
||||
|
||||
return $information_heading_title;
|
||||
}
|
||||
|
1098
msd2/myoos/admin/includes/functions/function_kernel.php
Normal file
1098
msd2/myoos/admin/includes/functions/function_kernel.php
Normal file
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,51 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: localization.php,v 1.12 2003/06/25 20:36:48 hpdl
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
/** ensure this file is being included by a parent file */
|
||||
defined( 'OOS_VALID_MOD' ) or die( 'Direct Access to this location is not allowed.' );
|
||||
|
||||
function quote_oanda_currency($code, $base = DEFAULT_CURRENCY) {
|
||||
$page = file('http://www.oanda.com/convert/fxdaily?value=1&redirected=1&exch=' . $code . '&format=CSV&dest=Get+Table&sel_list=' . $base);
|
||||
|
||||
$match = array();
|
||||
|
||||
preg_match('/(.+),(\w{3}),([0-9.]+),([0-9.]+)/i', implode('', $page), $match);
|
||||
|
||||
if (count($match) > 0) {
|
||||
return $match[3];
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
function quote_xe_currency($to, $from = DEFAULT_CURRENCY) {
|
||||
$page = file('http://www.xe.net/ucc/convert.cgi?Amount=1&From=' . $from . '&To=' . $to);
|
||||
|
||||
$match = array();
|
||||
|
||||
preg_match('/[0-9.]+\s*' . $from . '\s*=\s*([0-9.]+)\s*' . $to . '/', implode('', $page), $match);
|
||||
|
||||
if (count($match) > 0) {
|
||||
return $match[1];
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
300
msd2/myoos/admin/includes/functions/function_modules.php
Normal file
300
msd2/myoos/admin/includes/functions/function_modules.php
Normal file
@ -0,0 +1,300 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: general.php,v 1.151 2003/02/07 21:46:49 dgw_
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
/** ensure this file is being included by a parent file */
|
||||
defined( 'OOS_VALID_MOD' ) or die( 'Direct Access to this location is not allowed.' );
|
||||
|
||||
|
||||
/**
|
||||
* Returns Zone Class Name
|
||||
*
|
||||
* @param $zone_class_id
|
||||
* @return string
|
||||
*/
|
||||
function oos_cfg_get_zone_class_title($zone_class_id) {
|
||||
|
||||
if ($zone_class_id == '0') {
|
||||
return TEXT_NONE;
|
||||
} else {
|
||||
|
||||
// Get database information
|
||||
$dbconn =& oosDBGetConn();
|
||||
$oostable =& oosDBGetTables();
|
||||
|
||||
$query = "SELECT geo_zone_name
|
||||
FROM " . $oostable['geo_zones'] . "
|
||||
WHERE geo_zone_id = '" . intval($zone_class_id) . "'";
|
||||
$result = $dbconn->Execute($query);
|
||||
|
||||
return $result->fields['geo_zone_name'];
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Returns Order Status Name
|
||||
*
|
||||
* @param $order_status_id
|
||||
* @param $language
|
||||
* @return string
|
||||
*/
|
||||
function oos_cfg_get_order_status_name($order_status_id, $language_id = '') {
|
||||
|
||||
if ($order_status_id < 1) return TEXT_DEFAULT;
|
||||
|
||||
if (empty($language_id) || !is_numeric($language_id)) $language_id = intval($_SESSION['language_id']);
|
||||
|
||||
// Get database information
|
||||
$dbconn =& oosDBGetConn();
|
||||
$oostable =& oosDBGetTables();
|
||||
|
||||
$query = "SELECT orders_status_name
|
||||
FROM " . $oostable['orders_status'] . "
|
||||
WHERE orders_status_id = '" . intval($order_status_id) . "'
|
||||
AND orders_languages_id = '" . intval($language_id) . "'";
|
||||
$result = $dbconn->Execute($query);
|
||||
|
||||
return $result->fields['orders_status_name'];
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Returns Tax Class Name
|
||||
*
|
||||
* @param $tax_class_id
|
||||
* @return string
|
||||
*/
|
||||
function oos_cfg_get_tax_class_title($tax_class_id) {
|
||||
|
||||
if ($tax_class_id == '0') {
|
||||
return TEXT_NONE;
|
||||
} else {
|
||||
|
||||
// Get database information
|
||||
$dbconn =& oosDBGetConn();
|
||||
$oostable =& oosDBGetTables();
|
||||
|
||||
$query = "SELECT tax_class_title
|
||||
FROM " . $oostable['tax_class'] . "
|
||||
WHERE tax_class_id = '" . intval($tax_class_id) . "'";
|
||||
$result = $dbconn->Execute($query);
|
||||
|
||||
return $result->fields['tax_class_title'];
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Returns Zone Name
|
||||
*
|
||||
* @param $zone_id
|
||||
* @return string
|
||||
*/
|
||||
function oos_cfg_get_zone_name($zone_id) {
|
||||
|
||||
// Get database information
|
||||
$dbconn =& oosDBGetConn();
|
||||
$oostable =& oosDBGetTables();
|
||||
|
||||
$query = "SELECT zone_name
|
||||
FROM " . $oostable['zones'] . "
|
||||
WHERE zone_id = '" . intval($zone_id) . "'";
|
||||
$result = $dbconn->Execute($query);
|
||||
|
||||
if (!$result->RecordCount()) {
|
||||
return $zone_id;
|
||||
} else {
|
||||
return $result->fields['zone_name'];
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Function to read in text area in admin
|
||||
*
|
||||
* @param $text
|
||||
* @return string
|
||||
*/
|
||||
function oos_cfg_textarea($text) {
|
||||
return oos_draw_textarea_field('configuration_value', FALSE, 35, 5, $text);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Output a selection field
|
||||
*
|
||||
* @param $select_array
|
||||
* @key_value
|
||||
* @key
|
||||
* @return string
|
||||
*/
|
||||
function oos_cfg_select_option($select_array, $key_value, $key = '') {
|
||||
$string = '';
|
||||
|
||||
for ($i = 0, $n = count($select_array); $i < $n; $i++) {
|
||||
$name = ((oos_is_not_null($key)) ? 'configuration[' . $key . ']' : 'configuration_value');
|
||||
|
||||
$string .= '<br /><input type="radio" name="' . $name . '" value="' . $select_array[$i] . '"';
|
||||
|
||||
if ($key_value == $select_array[$i]) $string .= ' checked="checked"';
|
||||
|
||||
$string .= ' /> ' . $select_array[$i];
|
||||
}
|
||||
|
||||
return $string;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Alias function to oos_get_country_name, which also returns the country name
|
||||
*
|
||||
* @param $country_id
|
||||
* @return string
|
||||
*/
|
||||
function oos_cfg_get_country_name($country_id) {
|
||||
return oos_get_country_name($country_id);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Alias function for Store configuration values in the Administration Tool
|
||||
*
|
||||
* @param $country_id
|
||||
* @return string
|
||||
*/
|
||||
function oos_cfg_pull_down_country_list($country_id) {
|
||||
return oos_draw_pull_down_menu('configuration_value', oos_get_countries(), $country_id);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Alias function for Store configuration values in the Administration Tool
|
||||
*
|
||||
* @param $zone_id
|
||||
* @return string
|
||||
*/
|
||||
function oos_cfg_pull_down_zone_list($zone_id) {
|
||||
return oos_draw_pull_down_menu('configuration_value', oos_get_country_zones(STORE_COUNTRY), $zone_id);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Output a form pull down menu
|
||||
*
|
||||
* @param $zone_class_id
|
||||
* @param $key
|
||||
* @return string
|
||||
*/
|
||||
function oos_cfg_pull_down_zone_classes($zone_class_id, $key = '') {
|
||||
|
||||
$name = (($key) ? 'configuration[' . $key . ']' : 'configuration_value');
|
||||
|
||||
$zone_class_array = array(array('id' => '0', 'text' => TEXT_NONE));
|
||||
|
||||
// Get database information
|
||||
$dbconn =& oosDBGetConn();
|
||||
$oostable =& oosDBGetTables();
|
||||
|
||||
$query = "SELECT geo_zone_id, geo_zone_name
|
||||
FROM " . $oostable['geo_zones'] . "
|
||||
ORDER BY geo_zone_name";
|
||||
$result = $dbconn->Execute($query);
|
||||
|
||||
while ($zone_class = $result->fields) {
|
||||
$zone_class_array[] = array('id' => $zone_class['geo_zone_id'],
|
||||
'text' => $zone_class['geo_zone_name']);
|
||||
|
||||
// Move that ADOdb pointer!
|
||||
$result->MoveNext();
|
||||
}
|
||||
|
||||
return oos_draw_pull_down_menu($name, $zone_class_array, $zone_class_id);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Output a form pull down menu
|
||||
*
|
||||
* @param $order_status_id
|
||||
* @param $key
|
||||
* @return string
|
||||
*/
|
||||
function oos_cfg_pull_down_order_statuses($order_status_id, $key = '') {
|
||||
|
||||
$name = (($key) ? 'configuration[' . $key . ']' : 'configuration_value');
|
||||
|
||||
$statuses_array = array(array('id' => '0', 'text' => TEXT_DEFAULT));
|
||||
|
||||
// Get database information
|
||||
$dbconn =& oosDBGetConn();
|
||||
$oostable =& oosDBGetTables();
|
||||
|
||||
$query = "SELECT orders_status_id, orders_status_name
|
||||
FROM " . $oostable['orders_status'] . "
|
||||
WHERE orders_languages_id = '" . intval($_SESSION['language_id']) . "'
|
||||
ORDER BY orders_status_name";
|
||||
$result = $dbconn->Execute($query);
|
||||
|
||||
while ($statuses = $result->fields) {
|
||||
$statuses_array[] = array('id' => $statuses['orders_status_id'],
|
||||
'text' => $statuses['orders_status_name']);
|
||||
|
||||
// Move that ADOdb pointer!
|
||||
$result->MoveNext();
|
||||
}
|
||||
|
||||
return oos_draw_pull_down_menu($name, $statuses_array, $order_status_id);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Output a form pull down menu
|
||||
*
|
||||
* @param $tax_class_id
|
||||
* @param $key
|
||||
* @return string
|
||||
*/
|
||||
function oos_cfg_pull_down_tax_classes($tax_class_id, $key = '') {
|
||||
|
||||
$name = (($key) ? 'configuration[' . $key . ']' : 'configuration_value');
|
||||
|
||||
$tax_class_array = array(array('id' => '0', 'text' => TEXT_NONE));
|
||||
|
||||
// Get database information
|
||||
$dbconn =& oosDBGetConn();
|
||||
$oostable =& oosDBGetTables();
|
||||
|
||||
$query = "SELECT tax_class_id, tax_class_title
|
||||
FROM " . $oostable['tax_class'] . "
|
||||
ORDER BY tax_class_title";
|
||||
$result = $dbconn->Execute($query);
|
||||
|
||||
while ($tax_class = $result->fields) {
|
||||
$tax_class_array[] = array('id' => $tax_class['tax_class_id'],
|
||||
'text' => $tax_class['tax_class_title']);
|
||||
|
||||
// Move that ADOdb pointer!
|
||||
$result->MoveNext();
|
||||
}
|
||||
|
||||
return oos_draw_pull_down_menu($name, $tax_class_array, $tax_class_id);
|
||||
}
|
||||
|
597
msd2/myoos/admin/includes/functions/function_output.php
Normal file
597
msd2/myoos/admin/includes/functions/function_output.php
Normal file
@ -0,0 +1,597 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: html_output.php,v 1.26 2002/08/06 14:48:54 hpdl
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
/** ensure this file is being included by a parent file */
|
||||
defined( 'OOS_VALID_MOD' ) or die( 'Direct Access to this location is not allowed.' );
|
||||
|
||||
|
||||
/**
|
||||
* The HTML href link wrapper function
|
||||
*
|
||||
* @param $page
|
||||
* @param $parameters
|
||||
* @param $connection
|
||||
* @return string
|
||||
*/
|
||||
function oos_href_link_admin($page = '', $parameters = '', $connection = 'SSL', $add_session_id = true) {
|
||||
|
||||
$page = oos_output_string($page);
|
||||
|
||||
if ($page == '') {
|
||||
die('<div class="alert alert-danger" role="alert"><strong>Error!</strong> Unable to determine the page link!<br /><br />Function used:<br /><br />oos_href_link_admin(\'' . $page . '\', \'' . $parameters . '\', \'' . $connection . '\')</div>');
|
||||
}
|
||||
$link = OOS_HTTPS_SERVER . OOS_SHOP . OOS_ADMIN;
|
||||
|
||||
if (oos_is_not_null($parameters)) {
|
||||
$link = $link . $page . '?' . oos_output_string($parameters) . '&' . SID;
|
||||
} else {
|
||||
$link = $link . $page . '?' . SID;
|
||||
}
|
||||
|
||||
|
||||
while ( (substr($link, -1) == '&') || (substr($link, -1) == '?') ) $link = substr($link, 0, -1);
|
||||
|
||||
return $link;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* The HTML catalog href link wrapper function
|
||||
*
|
||||
* @param $modul
|
||||
* @param $page
|
||||
* @param $parameters
|
||||
* @param $connection
|
||||
* @return string
|
||||
*/
|
||||
function oos_catalog_link($page = '', $parameters = '') {
|
||||
|
||||
$page = oos_output_string($page);
|
||||
|
||||
if ($page == '') {
|
||||
die('<div class="alert alert-danger" role="alert"><strong>Error!</strong> Unable to determine the page link!<br /><br />Function used:<br /><br />oos_href_link_admin(\'' . $page . '\', \'' . $parameters . '\', \'' . $connection . '\')</div>');
|
||||
}
|
||||
|
||||
$link = OOS_HTTPS_SERVER . OOS_SHOP;
|
||||
|
||||
if ($parameters == '') {
|
||||
$link .= 'index.php?content=' . $page;
|
||||
} else {
|
||||
$link .= 'index.php?content=' . $page . '&' . oos_output_string($parameters);
|
||||
}
|
||||
|
||||
|
||||
while ( (substr($link, -1) == '&') || (substr($link, -1) == '?') ) $link = substr($link, 0, -1);
|
||||
|
||||
return $link;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* The HTML catalog href link wrapper function
|
||||
*
|
||||
* @param $src
|
||||
* @param $alt
|
||||
* @param $width
|
||||
* @param $height
|
||||
* @param $params
|
||||
* @return string
|
||||
*/
|
||||
function oos_image($src, $alt = '', $width = '', $height = '', $params = '') {
|
||||
$image = '<img src="' . oos_output_string($src) . '" border="0" alt="' . oos_output_string($alt) . '"';
|
||||
|
||||
if (oos_is_not_null($alt)) {
|
||||
$image .= ' title="' . oos_output_string($alt) . '"';
|
||||
}
|
||||
|
||||
if (oos_is_not_null($width) && oos_is_not_null($height)) {
|
||||
$image .= ' width="' . oos_output_string($width) . '" height="' . oos_output_string($height) . '"';
|
||||
}
|
||||
|
||||
if (oos_is_not_null($params)) $image .= ' ' . $params;
|
||||
|
||||
$image .= '>';
|
||||
|
||||
return $image;
|
||||
}
|
||||
|
||||
|
||||
|
||||
function product_info_image($image, $alt, $width = '', $height = '') {
|
||||
if ( ($image) && (file_exists(OOS_ABSOLUTE_PATH . OOS_IMAGES . 'product/medium/' . $image)) ) {
|
||||
$image = oos_image(OOS_SHOP_IMAGES . 'product/medium/' . $image, $alt, $width, $height);
|
||||
} else {
|
||||
$image = TEXT_IMAGE_NONEXISTENT;
|
||||
}
|
||||
|
||||
return $image;
|
||||
}
|
||||
|
||||
|
||||
function oos_info_image($image, $alt, $width = '', $height = '') {
|
||||
if ( ($image) && (file_exists(OOS_ABSOLUTE_PATH . OOS_IMAGES . $image)) ) {
|
||||
$image = oos_image(OOS_SHOP_IMAGES . $image, $alt, $width, $height);
|
||||
} else {
|
||||
$image = TEXT_IMAGE_NONEXISTENT;
|
||||
}
|
||||
|
||||
return $image;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Draw a 1 pixel black line
|
||||
*/
|
||||
function oos_black_line() {
|
||||
return oos_image(OOS_IMAGES . 'pixel_black.gif', '', '100%', '1');
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Output a function button in the selected language
|
||||
*
|
||||
* @param $title
|
||||
* @return string
|
||||
*/
|
||||
function oos_button($title = '') {
|
||||
return '<button class="btn btn-sm btn-primary mb-20"><strong>' . $title . '</strong></button>';
|
||||
}
|
||||
|
||||
/**
|
||||
* Outputs a submit button
|
||||
*
|
||||
* @param $title
|
||||
* @return string
|
||||
*/
|
||||
function oos_submit_button($title = '') {
|
||||
return '<button class="btn btn-sm btn-primary mb-20" type="submit"><strong><i class="fa fa-check-circle"></i> ' . $title . '</strong></button>';
|
||||
}
|
||||
|
||||
/**
|
||||
* Outputs a reset button
|
||||
*
|
||||
* @param $title
|
||||
* @return string
|
||||
*/
|
||||
function oos_reset_button($title = '') {
|
||||
return '<button class="btn btn-sm btn-primary mb-20" type="reset"><strong><i class="fa fa-plus-circle"></i> ' . $title . '</strong></button>';
|
||||
}
|
||||
|
||||
/**
|
||||
* Outputs a back button
|
||||
*
|
||||
* @param $title
|
||||
* @return string
|
||||
*/
|
||||
function oos_back_button($title = '') {
|
||||
return '<button class="btn btn-sm btn-primary mb-20"><strong><i class="fa fa-chevron-left"></i> ' . $title . '</strong></button>';
|
||||
}
|
||||
|
||||
/**
|
||||
* javascript to dynamically update the states/provinces list when the country is changed
|
||||
*
|
||||
* @param $country
|
||||
* @param $form
|
||||
* @param $field
|
||||
* @return string
|
||||
*/
|
||||
function oos_is_zone_list($country, $form, $field) {
|
||||
|
||||
// Get database information
|
||||
$dbconn =& oosDBGetConn();
|
||||
$oostable =& oosDBGetTables();
|
||||
|
||||
$countries_query = "SELECT distinct zone_country_id
|
||||
FROM " . $oostable['zones'] . "
|
||||
ORDER BY zone_country_id";
|
||||
$countries_result = $dbconn->Execute($countries_query);
|
||||
$num_country = 1;
|
||||
$output_string = '';
|
||||
while ($countries = $countries_result->fields) {
|
||||
if ($num_country == 1) {
|
||||
$output_string .= ' if (' . $country . ' == "' . $countries['zone_country_id'] . '") {' . "\n";
|
||||
} else {
|
||||
$output_string .= ' } else if (' . $country . ' == "' . $countries['zone_country_id'] . '") {' . "\n";
|
||||
}
|
||||
|
||||
$states_query = "SELECT zone_name, zone_id
|
||||
FROM " . $oostable['zones'] . "
|
||||
WHERE zone_country_id = '" . $countries['zone_country_id'] . "'
|
||||
ORDER BY zone_name";
|
||||
$states_result = $dbconn->Execute($states_query);
|
||||
|
||||
$num_state = 1;
|
||||
while ($states = $states_result->fields) {
|
||||
if ($num_state == '1') $output_string .= ' ' . $form . '.' . $field . '.options[0] = new Option("' . PLEASE_SELECT . '", "");' . "\n";
|
||||
$output_string .= ' ' . $form . '.' . $field . '.options[' . $num_state . '] = new Option("' . $states['zone_name'] . '", "' . $states['zone_id'] . '");' . "\n";
|
||||
$num_state++;
|
||||
|
||||
// Move that ADOdb pointer!
|
||||
$states_result->MoveNext();
|
||||
}
|
||||
$num_country++;
|
||||
|
||||
// Close result set
|
||||
$states_result->Close();
|
||||
|
||||
// Move that ADOdb pointer!
|
||||
$countries_result->MoveNext();
|
||||
}
|
||||
|
||||
// Close result set
|
||||
$countries_result->Close();
|
||||
|
||||
$output_string .= ' } else {' . "\n" .
|
||||
' ' . $form . '.' . $field . '.options[0] = new Option("' . TYPE_BELOW . '", "");' . "\n" .
|
||||
' }' . "\n";
|
||||
|
||||
return $output_string;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Output a form
|
||||
*
|
||||
* @param $name
|
||||
* @param $action
|
||||
* @param $parameters
|
||||
* @param $method
|
||||
* @param $params
|
||||
* @return string
|
||||
*/
|
||||
function oos_draw_form($id, $name, $action, $parameters = '', $method = 'post', $parsley_validate = TRUE, $params = '') {
|
||||
$form = '<form name="' . oos_output_string($name) . '" action="';
|
||||
if (oos_is_not_null($parameters)) {
|
||||
$form .= oos_href_link_admin($action, $parameters);
|
||||
} else {
|
||||
$form .= oos_href_link_admin($action);
|
||||
}
|
||||
$form .= '" method="' . oos_output_string($method) . '"';
|
||||
|
||||
if ($parsley_validate == TRUE) {
|
||||
$form .= ' data-parsley-validate ';
|
||||
}
|
||||
|
||||
if (oos_is_not_null($params)) {
|
||||
$form .= ' ' . $params;
|
||||
}
|
||||
$form .= '>';
|
||||
|
||||
return $form;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Output a form input field
|
||||
*
|
||||
* @param $name
|
||||
* @param $value
|
||||
* @param $parameters
|
||||
* @param $required
|
||||
* @param $type
|
||||
* @param $reinsert_value
|
||||
* @param $placeholder
|
||||
* @return string
|
||||
*/
|
||||
function oos_draw_input_field($name, $value = '', $parameters = '', $required = FALSE, $type = 'text', $reinsert_value = TRUE, $disabled = FALSE, $placeholder = '') {
|
||||
$field = '<input class="form-control" type="' . $type . '" name="' . $name . '"';
|
||||
|
||||
if ( ($reinsert_value == TRUE) && ( (isset($_GET[$name]) && is_string($_GET[$name])) || (isset($_POST[$name]) && is_string($_POST[$name])) ) ) {
|
||||
if (isset($_GET[$name]) && is_string($_GET[$name])) {
|
||||
$value = stripslashes($_GET[$name]);
|
||||
} elseif (isset($_POST[$name]) && is_string($_POST[$name])) {
|
||||
$value = stripslashes($_POST[$name]);
|
||||
}
|
||||
}
|
||||
$field .= ' value="' . oos_output_string($value) . '"';
|
||||
|
||||
if (oos_is_not_null($parameters)) $field .= ' ' . $parameters;
|
||||
|
||||
if ($disabled == TRUE) $field .= ' disabled="disabled"';
|
||||
|
||||
if (oos_is_not_null($placeholder)) $field .= ' placeholder="' . oos_output_string($placeholder) . '"';
|
||||
|
||||
if ($required) $field .= ' required';
|
||||
|
||||
$field .= ' />';
|
||||
|
||||
// if ($required) $field .= TEXT_FIELD_REQUIRED;
|
||||
|
||||
return $field;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Output a form password field
|
||||
*
|
||||
* @param $name
|
||||
* @param $value
|
||||
* @param $required
|
||||
* @return string
|
||||
*/
|
||||
function oos_draw_password_field($name, $value = '', $parameters = 'maxlength="40"', $required = FALSE) {
|
||||
$field = oos_draw_input_field($name, $value, $parameters, $required, 'password', FALSE);
|
||||
|
||||
return $field;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Output a form filefield
|
||||
*
|
||||
* @param $name
|
||||
* @param $required
|
||||
* @return string
|
||||
*/
|
||||
function oos_draw_file_field($name, $required = FALSE) {
|
||||
$field = '<div class="fileinput fileinput-new" data-provides="fileinput">' . "\n" .
|
||||
'<div class="fileinput-preview thumbnail" data-trigger="fileinput" style="width: 200px; height: 150px;"></div>' . "\n" .
|
||||
'<div>' . "\n" .
|
||||
|
||||
'<span class="btn btn-warning btn-file"><span class="fileinput-new"><em class="fa fa-plus-circle fa-fw"></em>' . BUTTON_SELECT_IMAGE . '</span><span class="fileinput-exists">' . BUTTON_CHANGE . '</span>' . "\n" .
|
||||
'<input type="file" size="40" name="' . $name . '"></span>' . "\n" .
|
||||
'<a href="#" class="btn btn-danger fileinput-exists" data-dismiss="fileinput"><em class="fa fa-times-circle fa-fw"></em>' . BUTTON_DELETE . '</a>' . "\n" .
|
||||
'</div>' . "\n" .
|
||||
'</div>';
|
||||
|
||||
return $field;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Output a selection field - alias function for oos_draw_checkbox_field() and oos_draw_radio_field()
|
||||
*
|
||||
* @param $name
|
||||
* @param $type
|
||||
* @param $value
|
||||
* @param $checked
|
||||
* @param $compare
|
||||
* @param $parameter
|
||||
* @return string
|
||||
*/
|
||||
function oos_draw_selection_field($name, $type, $value = '', $checked = FALSE, $compare = '', $parameter = '') {
|
||||
$selection = '<input type="' . $type . '" name="' . $name . '"';
|
||||
if ($value != '') {
|
||||
$selection .= ' value="' . $value . '"';
|
||||
}
|
||||
if ( ($checked == TRUE) || (isset($_GET[$name]) && is_string($_GET[$name]) && (($_GET[$name] == 'on') || (stripslashes($_GET[$name]) == $value))) || (isset($_POST[$name]) && is_string($_POST[$name]) && (($_POST[$name] == 'on') || (stripslashes($_POST[$name]) == $value))) || (oos_is_not_null($compare) && ($value == $compare)) ) {
|
||||
|
||||
$selection .= ' checked="checked"';
|
||||
}
|
||||
if ($parameter != '') {
|
||||
$selection .= ' ' . $parameter;
|
||||
}
|
||||
$selection .= '>';
|
||||
|
||||
return $selection;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Output a form checkbox field
|
||||
*
|
||||
* @param $name
|
||||
* @param $value
|
||||
* @param $checked
|
||||
* @param $compare
|
||||
* @param $parameter
|
||||
* @return string
|
||||
*/
|
||||
function oos_draw_checkbox_field($name, $value = '', $checked = FALSE, $compare = '', $parameter = '') {
|
||||
return oos_draw_selection_field($name, 'checkbox', $value, $checked, $compare, $parameter);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Output a form radio field
|
||||
*
|
||||
* @param $name
|
||||
* @param $value
|
||||
* @param $checked
|
||||
* @param $compare
|
||||
* @param $parameter
|
||||
* @return string
|
||||
*/
|
||||
function oos_draw_radio_field($name, $value = '', $checked = FALSE, $compare = '', $parameter = '') {
|
||||
return oos_draw_selection_field($name, 'radio', $value, $checked, $compare, $parameter);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Output a form textarea field
|
||||
*
|
||||
* @param $name
|
||||
* @param $wrap
|
||||
* @param $width
|
||||
* @param $height
|
||||
* @param $text
|
||||
* @param $params
|
||||
* @param $reinsert_value
|
||||
* @return string
|
||||
*/
|
||||
function oos_draw_textarea_field($name, $wrap, $width, $height, $text = '', $params = '', $reinsert_value = TRUE) {
|
||||
|
||||
$field = '<textarea class="form-control" name="' . $name . '" wrap="' . $wrap . '" cols="' . $width . '" rows="' . $height . '"';
|
||||
|
||||
if (oos_is_not_null($params)) $field .= ' ' . $params;
|
||||
|
||||
$field .= '>';
|
||||
|
||||
if ( ($reinsert_value == TRUE) && ( (isset($_GET[$name]) && is_string($_GET[$name])) || (isset($_POST[$name]) && is_string($_POST[$name])) ) ) {
|
||||
if (isset($_GET[$name]) && is_string($_GET[$name])) {
|
||||
$text = stripslashes($_GET[$name]);
|
||||
} elseif (isset($_POST[$name]) && is_string($_POST[$name])) {
|
||||
$text = stripslashes($_POST[$name]);
|
||||
}
|
||||
}
|
||||
|
||||
if (oos_is_not_null($text)) {
|
||||
$config = HTMLPurifier_Config::createDefault();
|
||||
$purifier = new HTMLPurifier($config);
|
||||
$clean_html = $purifier->purify($text);
|
||||
$field .= $clean_html;
|
||||
}
|
||||
|
||||
$field .= '</textarea>';
|
||||
|
||||
|
||||
return $field;
|
||||
}
|
||||
|
||||
/**
|
||||
* Output a form textarea field
|
||||
*
|
||||
* @param $name
|
||||
* @param $wrap
|
||||
* @param $width
|
||||
* @param $height
|
||||
* @param $text
|
||||
* @param $params
|
||||
* @param $reinsert_value
|
||||
* @return string
|
||||
*/
|
||||
function oos_draw_editor_field($name, $wrap, $width, $height, $text = '', $params = '', $reinsert_value = TRUE) {
|
||||
|
||||
$field = '<textarea name="' . $name . '" wrap="' . $wrap . '" cols="' . $width . '" rows="' . $height . '"';
|
||||
if (oos_is_not_null($params)) $field .= ' ' . $params;
|
||||
|
||||
$field .= '>';
|
||||
|
||||
if ( ($reinsert_value == TRUE) && ( (isset($_GET[$name]) && is_string($_GET[$name])) || (isset($_POST[$name]) && is_string($_POST[$name])) ) ) {
|
||||
|
||||
if (isset($_GET[$name]) && is_string($_GET[$name])) {
|
||||
$field .= htmlspecialchars(stripslashes($_GET[$name]));
|
||||
} elseif (isset($_POST[$name]) && is_string($_POST[$name])) {
|
||||
$field .= htmlspecialchars(stripslashes($_POST[$name]));
|
||||
}
|
||||
} elseif (oos_is_not_null($text)) {
|
||||
$field .= htmlspecialchars($text);
|
||||
}
|
||||
$field .= '</textarea>';
|
||||
|
||||
return $field;
|
||||
}
|
||||
|
||||
/**
|
||||
* Output a form hidden field
|
||||
*
|
||||
* @param $name
|
||||
* @param $value
|
||||
* @return string
|
||||
*/
|
||||
function oos_draw_hidden_field($name, $value = '') {
|
||||
$field = '<input type="hidden" name="' . $name . '"';
|
||||
|
||||
if (oos_is_not_null($value)) {
|
||||
$field .= ' value="' . oos_output_string($value) . '"';
|
||||
} elseif ( (isset($_GET[$name]) && is_string($_GET[$name])) || (isset($_POST[$name]) && is_string($_POST[$name])) ) {
|
||||
if ( (isset($_GET[$name]) && is_string($_GET[$name])) ) {
|
||||
$field .= ' value="' . oos_output_string(stripslashes($_GET[$name])) . '"';
|
||||
} elseif ( (isset($_POST[$name]) && is_string($_POST[$name])) ) {
|
||||
$field .= ' value="' . oos_output_string(stripslashes($_POST[$name])) . '"';
|
||||
}
|
||||
}
|
||||
|
||||
$field .= '>';
|
||||
|
||||
return $field;
|
||||
}
|
||||
|
||||
/**
|
||||
* Hide form elements
|
||||
*/
|
||||
function oos_hide_session_id() {
|
||||
if (defined('SID') && oos_is_not_null(SID)) return oos_draw_hidden_field(oos_session_name(), oos_session_id());
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Output a login form
|
||||
*
|
||||
* @param $name
|
||||
* @param $modul
|
||||
* @param $page
|
||||
* @param $parameters
|
||||
* @param $method
|
||||
* @param $params
|
||||
* @return string
|
||||
*/
|
||||
function oos_draw_login_form($name, $page, $parameters = '', $method = 'post', $params = '') {
|
||||
$loginform = '<form name="' . oos_output_string($name) . '" action="';
|
||||
if (oos_is_not_null($parameters)) {
|
||||
$loginform .= oos_catalog_link($page, $parameters);
|
||||
} else {
|
||||
$loginform .= oos_catalog_link($page);
|
||||
}
|
||||
$loginform .= '" method="' . oos_output_string($method) . '"';
|
||||
|
||||
if (oos_is_not_null($params)) {
|
||||
$loginform .= ' ' . $params;
|
||||
}
|
||||
$loginform .= '>';
|
||||
|
||||
return $loginform;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Output a form pull down menu
|
||||
*
|
||||
* @param $name
|
||||
* @param $values
|
||||
* @param $default
|
||||
* @param $params
|
||||
* @param $required
|
||||
* @return string
|
||||
*/
|
||||
function oos_draw_pull_down_menu($name, $values, $default = '', $params = '', $required = FALSE) {
|
||||
$field = '<select class="form-control" name="' . $name . '"';
|
||||
if ($params) $field .= ' ' . $params;
|
||||
$field .= '>';
|
||||
for ($i=0; $i < count($values); $i++) {
|
||||
$field .= '<option value="' . $values[$i]['id'] . '"';
|
||||
if ( ((strlen($values[$i]['id']) > 0) && ($_GET[$name] == $values[$i]['id'])) || ($default == $values[$i]['id']) ) {
|
||||
$field .= ' selected="selected"';
|
||||
}
|
||||
$field .= '>' . $values[$i]['text'] . '</option>';
|
||||
}
|
||||
$field .= '</select>';
|
||||
|
||||
if ($required) $field .= TEXT_FIELD_REQUIRED;
|
||||
|
||||
return $field;
|
||||
}
|
||||
|
||||
/**
|
||||
* Output a flag-icon
|
||||
*
|
||||
* @param $name
|
||||
* @param $iso_3166_1
|
||||
*/
|
||||
function oos_flag_icon($aLanguages) {
|
||||
if ( empty( $aLanguages['name'] ) ) {
|
||||
return;
|
||||
}
|
||||
if ( empty( $aLanguages['iso_3166_1'] ) ) {
|
||||
return oos_output_string($name);
|
||||
}
|
||||
return '<div title="' . oos_output_string($aLanguages['name']) . '" class="flag flag-icon flag-icon-' . oos_output_string($aLanguages['iso_3166_1']) . ' width-full"></div> ' . oos_output_string($aLanguages['name']) . ' ';
|
||||
}
|
||||
|
45
msd2/myoos/admin/includes/functions/function_products.php
Normal file
45
msd2/myoos/admin/includes/functions/function_products.php
Normal file
@ -0,0 +1,45 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
/** ensure this file is being included by a parent file */
|
||||
defined( 'OOS_VALID_MOD' ) or die( 'Direct Access to this location is not allowed.' );
|
||||
|
||||
/**
|
||||
* Return a product's catagory
|
||||
*
|
||||
* @param $products_id
|
||||
* @return string boolean
|
||||
*/
|
||||
function oos_get_product_path($products_id) {
|
||||
|
||||
// Get database information
|
||||
$dbconn =& oosDBGetConn();
|
||||
$oostable =& oosDBGetTables();
|
||||
|
||||
$products_to_categoriestable = $oostable['products_to_categories'];
|
||||
$sql = "SELECT categories_id
|
||||
FROM $products_to_categoriestable
|
||||
WHERE products_id = '" . intval($products_id) . "'";
|
||||
$cat_id_data = $dbconn->SelectLimit($sql, 1);
|
||||
if ($cat_id_data->RecordCount()) {
|
||||
return $cat_id_data->fields['categories_id'];
|
||||
}
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
|
@ -0,0 +1,100 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
/** ensure this file is being included by a parent file */
|
||||
defined( 'OOS_VALID_MOD' ) or die( 'Direct Access to this location is not allowed.' );
|
||||
|
||||
/**
|
||||
* Return options name
|
||||
*
|
||||
* @param $options_id
|
||||
* @return string
|
||||
*/
|
||||
function oos_options_name($options_id) {
|
||||
|
||||
// Get database information
|
||||
$dbconn =& oosDBGetConn();
|
||||
$oostable =& oosDBGetTables();
|
||||
|
||||
$products_optionstable = $oostable['products_options'];
|
||||
$query = "SELECT products_options_name
|
||||
FROM $products_optionstable
|
||||
WHERE products_options_id = '" . intval($options_id) . "'
|
||||
AND products_options_languages_id = '" . intval($_SESSION['language_id']) . "'";
|
||||
$result = $dbconn->Execute($query);
|
||||
|
||||
$products_options_name = $result->fields['products_options_name'];
|
||||
|
||||
return $products_options_name;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Return values name
|
||||
*
|
||||
* @param $values_id
|
||||
* @return string
|
||||
*/
|
||||
function oos_values_name($values_id) {
|
||||
|
||||
// Get database information
|
||||
$dbconn =& oosDBGetConn();
|
||||
$oostable =& oosDBGetTables();
|
||||
|
||||
$products_options_valuestable = $oostable['products_options_values'];
|
||||
$query = "SELECT products_options_values_name
|
||||
FROM $products_options_valuestable
|
||||
WHERE products_options_values_id = '" . intval($values_id) . "'
|
||||
AND products_options_values_languages_id = '" . intval($_SESSION['language_id']) . "'";
|
||||
$result = $dbconn->Execute($query);
|
||||
|
||||
$products_options_values_name = $result->fields['products_options_values_name'];
|
||||
|
||||
return $products_options_values_name;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Draw a pulldown for Option Types
|
||||
*
|
||||
* @param $name
|
||||
* @param $default
|
||||
*/
|
||||
function oos_draw_option_type_pull_down_menu($name, $default = '') {
|
||||
GLOBAL $products_options_types_list;
|
||||
|
||||
$values = array();
|
||||
foreach ($products_options_types_list as $id => $text) {
|
||||
$values[] = array('id' => $id, 'text' => $text);
|
||||
}
|
||||
return oos_draw_pull_down_menu($name, $values, $default);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Return options type name
|
||||
*
|
||||
* @param $opt_type
|
||||
*/
|
||||
function oos_options_type_name($opt_type) {
|
||||
GLOBAL $products_options_types_list;
|
||||
|
||||
return isset($products_options_types_list[$opt_type]) ? $products_options_types_list[$opt_type] : 'Error ' . $opt_type;
|
||||
}
|
||||
|
||||
|
64
msd2/myoos/admin/includes/functions/function_validations.php
Normal file
64
msd2/myoos/admin/includes/functions/function_validations.php
Normal file
@ -0,0 +1,64 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: validations.php,v 1.11 2003/02/11 01:31:02 hpdl
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
/** ensure this file is being included by a parent file */
|
||||
defined( 'OOS_VALID_MOD' ) OR die( 'Direct Access to this location is not allowed.' );
|
||||
|
||||
/**
|
||||
* Valid e-Mail - Addresses
|
||||
*
|
||||
* This function is converted from a JavaScript written by
|
||||
* Sandeep V. Tamhankar (stamhankar@hotmail.com). The original JavaScript
|
||||
* is available at http://javascript.internet.com
|
||||
*
|
||||
* @param $sEmail
|
||||
* @return boolean
|
||||
*/
|
||||
function oos_validate_is_email($value) {
|
||||
|
||||
if (!is_string($value)) return FALSE;
|
||||
|
||||
// in case value is several addresses separated by newlines
|
||||
$_addresses = preg_split('![\n\r]+!', $value);
|
||||
|
||||
foreach($_addresses as $_address) {
|
||||
$_is_valid = !(preg_match('!@.*@|\.\.|\,|\;!', $_address) ||
|
||||
!preg_match('!^.+\@(\[?)[a-zA-Z0-9\.\-]+\.([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$!', $_address));
|
||||
|
||||
if(!$_is_valid)
|
||||
return FALSE;
|
||||
}
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* test if a value is a valid URL
|
||||
*
|
||||
* @param string $sUrl the value being tested
|
||||
*/
|
||||
function oos_validate_is_url($sUrl) {
|
||||
if (strlen($sUrl) == 0) {
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
return preg_match('!^http(s)?://[\w-]+\.[\w-]+(\S+)?$!i', $sUrl);
|
||||
}
|
||||
|
20
msd2/myoos/admin/includes/general.js
Normal file
20
msd2/myoos/admin/includes/general.js
Normal file
@ -0,0 +1,20 @@
|
||||
function SetFocus() {
|
||||
if (document.forms.length > 0) {
|
||||
var field = document.forms[0];
|
||||
for (i=0; i<field.length; i++) {
|
||||
if ( (field.elements[i].type != "image") &&
|
||||
(field.elements[i].type != "hidden") &&
|
||||
(field.elements[i].type != "reset") &&
|
||||
(field.elements[i].type != "submit") ) {
|
||||
|
||||
document.forms[0].elements[i].focus();
|
||||
|
||||
if ( (field.elements[i].type == "text") ||
|
||||
(field.elements[i].type == "password") )
|
||||
document.forms[0].elements[i].select();
|
||||
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
55
msd2/myoos/admin/includes/header.php
Normal file
55
msd2/myoos/admin/includes/header.php
Normal file
@ -0,0 +1,55 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: header.php,v 1.1 2007/06/08 15:20:14 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: header.php,v 1.19 2002/04/13 16:11:52 hpdl
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
/** ensure this file is being included by a parent file */
|
||||
defined( 'OOS_VALID_MOD' ) or die( 'Direct Access to this location is not allowed.' );
|
||||
|
||||
|
||||
?><!DOCTYPE html>
|
||||
<html lang="<?php echo $_SESSION['iso_639_1']; ?>">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title><?php echo HEADING_TITLE . ' - ' . TITLE; ?></title>
|
||||
<meta http-equiv="expires" content="0" >
|
||||
|
||||
<!-- Bootstrap style -->
|
||||
<link href="css/bootstrap.min.css" rel="stylesheet">
|
||||
<link href="css/font-awesome.min.css" rel="stylesheet">
|
||||
<link href="css/jasny-bootstrap.min.css" rel="stylesheet">
|
||||
<link href="css/icons.min.css" rel="stylesheet">
|
||||
<link href="css/myoos.min.css" rel="stylesheet">
|
||||
|
||||
<!-- DATETIMEPICKER-->
|
||||
<link href="js/plugins/bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.css" rel="stylesheet">
|
||||
|
||||
<link href="css/plugins/flag-icon/css/flag-icon.min.css" rel="stylesheet" />
|
||||
<link rel="stylesheet" href="includes/stylesheet.css" type="text/css" >
|
||||
</head>
|
||||
<body>
|
||||
<?php
|
||||
if ($messageStack->size > 0) {
|
||||
echo $messageStack->output();
|
||||
}
|
||||
?>
|
||||
|
||||
|
460
msd2/myoos/admin/includes/languages/deu.php
Normal file
460
msd2/myoos/admin/includes/languages/deu.php
Normal file
@ -0,0 +1,460 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: deu.php,v 1.4 2009/08/17 14:22:11 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: german.php,v 1.95 2003/02/16 01:33:14 harley_vb
|
||||
----------------------------------------------------------------------
|
||||
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.
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
|
||||
/**
|
||||
* look in your $PATH_LOCALE/locale directory for available locales..
|
||||
* on RedHat try 'de_DE'
|
||||
* on FreeBSD try 'de_DE.ISO_8859-1'
|
||||
* on Windows try 'de' or 'German'
|
||||
*/
|
||||
@setlocale(LC_TIME, 'de_DE');
|
||||
define('DATE_FORMAT_SHORT', '%d.%m.%Y'); // this is used for strftime()
|
||||
define('DATE_FORMAT_LONG', '%A, %d. %B %Y'); // this is used for strftime()
|
||||
define('DATE_FORMAT', 'd.m.Y'); // this is used for strftime()
|
||||
define('PHP_DATE_TIME_FORMAT', 'd.m.Y H:i:s'); // this is used for date()
|
||||
define('DATE_TIME_FORMAT', DATE_FORMAT_SHORT . ' %H:%M:%S');
|
||||
|
||||
|
||||
/**
|
||||
* Return date in raw format
|
||||
* $date should be in format mm/dd/yyyy
|
||||
* raw date is in format YYYYMMDD, or DDMMYYYY
|
||||
*
|
||||
* @param $date
|
||||
* @param $reverse
|
||||
* @return string
|
||||
*/
|
||||
function oos_date_raw($date, $reverse = FALSE) {
|
||||
if ($reverse) {
|
||||
return substr($date, 0, 2) . substr($date, 3, 2) . substr($date, 6, 4);
|
||||
} else {
|
||||
return substr($date, 6, 4) . substr($date, 3, 2) . substr($date, 0, 2);
|
||||
}
|
||||
}
|
||||
|
||||
// GLOBAL entries for the <html> tag
|
||||
define('HTML_PARAMS',' lang="de"');
|
||||
|
||||
// charset for emails
|
||||
define('CHARSET', 'utf-8');
|
||||
|
||||
// page title
|
||||
define('TITLE', 'MyOOS [Shopsystem] ');
|
||||
|
||||
// header text in includes/header.php
|
||||
define('HEADER_TITLE_TOP', 'Home');
|
||||
define('HEADER_TITLE_SUPPORT_SITE', 'Supportseite');
|
||||
define('HEADER_TITLE_ONLINE_CATALOG', 'Online Katalog');
|
||||
define('HEADER_TITLE_ADMINISTRATION', 'Administration');
|
||||
define('HEADER_TITLE_LOGOFF', 'Logoff');
|
||||
|
||||
$aLang['header_title_top'] = 'Willkommen bei MyOOS [Shopsystem]';
|
||||
$aLang['header_title_support_site'] = 'Supportseite';
|
||||
$aLang['header_title_online_catalog'] = 'Online Katalog';
|
||||
$aLang['header_title_administration'] = 'Administration';
|
||||
$aLang['header_title_account'] = 'Mein Konto';
|
||||
$aLang['header_title_logoff'] = 'Abmelden';
|
||||
|
||||
// text for gender
|
||||
define('MALE', 'Herr');
|
||||
define('FEMALE', 'Frau');
|
||||
|
||||
// text for date of birth example
|
||||
define('DOB_FORMAT_STRING', 'tt.mm.jjjj');
|
||||
|
||||
// configuration box text in includes/boxes/configuration.php
|
||||
define('BOX_HEADING_CONFIGURATION', 'Konfiguration');
|
||||
define('BOX_CONFIGURATION_MYSTORE', 'Mein Shop');
|
||||
define('BOX_CONFIGURATION_LOGGING', 'Logging');
|
||||
define('BOX_CONFIGURATION_CACHE', 'Cache');
|
||||
|
||||
// modules box text in includes/boxes/modules.php
|
||||
define('BOX_HEADING_MODULES', 'Module');
|
||||
define('BOX_MODULES_PAYMENT', 'Zahlungsweise');
|
||||
define('BOX_MODULES_SHIPPING', 'Versandart');
|
||||
define('BOX_MODULES_ORDER_TOTAL', 'Zusammenfassung');
|
||||
|
||||
// plugins box text in includes/boxes/plugins.php
|
||||
define('BOX_HEADING_PLUGINS', 'Plugins');
|
||||
define('BOX_PLUGINS_EVENT', 'Event Plugins');
|
||||
|
||||
// categories box text in includes/boxes/catalog.php
|
||||
define('BOX_HEADING_CATALOG', 'Katalog');
|
||||
define('BOX_CATALOG_CATEGORIES_PRODUCTS', 'Kategorien / Artikel');
|
||||
define('BOX_CATALOG_CATEGORIES_PRODUCTS_ATTRIBUTES', 'Produktmerkmale');
|
||||
define('BOX_CATALOG_PRODUCTS_STATUS', 'Produktstatus');
|
||||
define('BOX_CATALOG_PRODUCTS_UNITS', 'Produkteinheiten');
|
||||
define('BOX_CATALOG_MANUFACTURERS', 'Hersteller');
|
||||
define('BOX_CATALOG_REVIEWS', 'Produktbewertungen');
|
||||
define('BOX_CATALOG_SPECIALS', 'Sonderangebote');
|
||||
define('BOX_CATALOG_PRODUCTS_EXPECTED', 'erwartete Artikel');
|
||||
define('BOX_CATALOG_QADD_PRODUCT', 'Artikel hinzufgen');
|
||||
define('BOX_CATALOG_PRODUCTS_FEATURED', 'Top-Angebote');
|
||||
define('BOX_CATALOG_EASYPOPULATE', 'EasyPopulate');
|
||||
define('BOX_CATALOG_EXPORT_EXCEL', 'Export Excel Product');
|
||||
define('BOX_CATALOG_IMPORT_EXCEL', 'Update Excel Preis');
|
||||
define('BOX_CATALOG_WASTEBASKET', 'Papierkorb');
|
||||
|
||||
|
||||
// categories box text in includes/boxes/content.php
|
||||
define('BOX_HEADING_CONTENT', 'Content Manager');
|
||||
define('BOX_CONTENT_BLOCK', 'Block Manager');
|
||||
define('BOX_CONTENT_NEWS', 'Nachrichten');
|
||||
define('BOX_CONTENT_INFORMATION', 'Informationen');
|
||||
define('BOX_CONTENT_PAGE_TYPE', 'Content Seiten Type');
|
||||
|
||||
// customers box text in includes/boxes/customers.php
|
||||
define('BOX_HEADING_CUSTOMERS', 'Kunden');
|
||||
define('BOX_CUSTOMERS_CUSTOMERS', 'Kunden');
|
||||
define('BOX_CUSTOMERS_ORDERS', 'Bestellungen');
|
||||
define('BOX_ORDERS_STATUS', 'Bestellstatus');
|
||||
define('BOX_ADMIN_LOGIN', 'Admin login');
|
||||
|
||||
// taxes box text in includes/boxes/taxes.php
|
||||
define('BOX_HEADING_LOCATION_AND_TAXES', 'Land / Steuer');
|
||||
define('BOX_TAXES_COUNTRIES', 'Länder');
|
||||
define('BOX_TAXES_ZONES', 'Bundesländer');
|
||||
define('BOX_TAXES_GEO_ZONES', 'Steuerzonen');
|
||||
define('BOX_TAXES_TAX_CLASSES', 'Steuerklassen');
|
||||
define('BOX_TAXES_TAX_RATES', 'Steuersätze');
|
||||
|
||||
// reports box text in includes/boxes/reports.php
|
||||
define('BOX_HEADING_REPORTS', 'Berichte');
|
||||
define('BOX_REPORTS_PRODUCTS_VIEWED', 'besuchte Artikel');
|
||||
define('BOX_REPORTS_PRODUCTS_PURCHASED', 'gekaufte Artikel');
|
||||
define('BOX_REPORTS_ORDERS_TOTAL', 'Kunden-Bestellstatistik');
|
||||
define('BOX_REPORTS_STOCK_LEVEL', 'Lagerbestand');
|
||||
define('BOX_REPORTS_SALES_REPORT2', 'Umsatzbericht');
|
||||
|
||||
|
||||
// tools text in includes/boxes/tools.php
|
||||
define('BOX_HEADING_TOOLS', 'Hilfsprogramme');
|
||||
define('BOX_TOOLS_BACKUP', 'Datenbanksicherung');
|
||||
|
||||
define('BOX_TOOLS_DEFINE_LANGUAGE', 'Sprachen definieren');
|
||||
|
||||
define('BOX_EXPORT_PREISSUCHMASCHINE', 'Export preissuchmaschine.de');
|
||||
define('BOX_TOOLS_MAIL', 'eMail versenden');
|
||||
define('BOX_TOOLS_NEWSLETTER_MANAGER', 'Rundschreiben Manager');
|
||||
define('BOX_TOOLS_WHOS_ONLINE', 'Wer ist Online');
|
||||
define('BOX_HEADING_ADMINISTRATORS', 'Administrators');
|
||||
define('BOX_ADMINISTRATORS_SETUP', 'Set Up');
|
||||
|
||||
// localizaion box text in includes/boxes/localization.php
|
||||
define('BOX_HEADING_LOCALIZATION', 'Sprachen/Währungen');
|
||||
define('BOX_LOCALIZATION_CURRENCIES', 'Währungen');
|
||||
define('BOX_LOCALIZATION_LANGUAGES', 'Sprachen');
|
||||
define('BOX_LOCALIZATION_CUSTOMERS_STATUS', 'Kundengruppen');
|
||||
|
||||
// export
|
||||
define('BOX_HEADING_EXPORT', 'Export');
|
||||
define('BOX_EXPORT_GOOGLEBASE', 'Googlebase');
|
||||
|
||||
//information
|
||||
define('BOX_HEADING_INFORMATION', 'Information');
|
||||
define('BOX_INFORMATION', 'Information');
|
||||
|
||||
// javascript messages
|
||||
define('JS_ERROR', 'Wähend der Eingabe sind Fehler aufgetreten!\nBitte korrigieren Sie folgendes:\n\n');
|
||||
|
||||
define('JS_OPTIONS_VALUE_PRICE', '* Sie müssen diesem Wert einen Preis zuordnen\n');
|
||||
define('JS_OPTIONS_VALUE_PRICE_PREFIX', '* Sie müssen ein Vorzeichen fr den Preis angeben (+/-)\n');
|
||||
|
||||
define('JS_PRODUCTS_NAME', '* Der neue Artikel muss einen Namen haben\n');
|
||||
define('JS_PRODUCTS_DESCRIPTION', '* Der neue Artikel muss eine Beschreibung haben\n');
|
||||
define('JS_PRODUCTS_PRICE', '* Der neue Artikel muss einen Preis haben\n');
|
||||
define('JS_PRODUCTS_WEIGHT', '* Der neue Artikel muss eine Gewichtsangabe haben\n');
|
||||
define('JS_PRODUCTS_QUANTITY', '* Sie müssen dem neuen Artikel eine verfgbare Anzahl zuordnen\n');
|
||||
define('JS_PRODUCTS_MODEL', '* Sie müssen dem neuen Artikel eine Artikel-Nr. zuordnen\n');
|
||||
define('JS_PRODUCTS_IMAGE', '* Sie müssen dem Artikel ein Bild zuordnen\n');
|
||||
|
||||
define('JS_SPECIALS_PRODUCTS_PRICE', '* Es muss ein neuer Preis für diesen Artikel festgelegt werden\n');
|
||||
|
||||
define('JS_GENDER', '* Die \'Anrede\' muss ausgewählt werden.\n');
|
||||
define('JS_FIRST_NAME', '* Der \'Vorname\' muss mindestens aus ' . ENTRY_FIRST_NAME_MIN_LENGTH . ' Zeichen bestehen.\n');
|
||||
define('JS_LAST_NAME', '* Der \'Nachname\' muss mindestens aus ' . ENTRY_LAST_NAME_MIN_LENGTH . ' Zeichen bestehen.\n');
|
||||
define('JS_DOB', '* Das \'Geburtsdatum\' muss folgendes Format haben: xx.xx.xxxx (Tag/Jahr/Monat).\n');
|
||||
define('JS_EMAIL_ADDRESS', '* Die \'eMail-Adresse\' muss mindestens aus ' . ENTRY_EMAIL_ADDRESS_MIN_LENGTH . ' Zeichen bestehen.\n');
|
||||
define('JS_ADDRESS', '* Die \'Strasse\' muss mindestens aus ' . ENTRY_STREET_ADDRESS_MIN_LENGTH . ' Zeichen bestehen.\n');
|
||||
define('JS_POST_CODE', '* Die \'Postleitzahl\' muss mindestens aus ' . ENTRY_POSTCODE_MIN_LENGTH . ' Zeichen bestehen.\n');
|
||||
define('JS_CITY', '* Die \'Stadt\' muss mindestens aus ' . ENTRY_CITY_MIN_LENGTH . ' Zeichen bestehen.\n');
|
||||
define('JS_STATE', '* Das \'Bundesland\' muss ausgewählt werden.\n');
|
||||
define('JS_STATE_SELECT', '-- Wählen Sie oberhalb --');
|
||||
define('JS_ZONE', '* Das \'Bundesland\' muss aus der Liste fr dieses Land ausgewählt werden.');
|
||||
define('JS_COUNTRY', '* Das \'Land\' muss ausgewählt werden.\n');
|
||||
define('JS_PASSWORD', '* Das \'Passwort\' sowie die \'Passwortbestätigung\' müssen übereinstimmen und aus mindestens ' . ENTRY_PASSWORD_MIN_LENGTH . ' Zeichen bestehen.\n');
|
||||
|
||||
define('JS_ORDER_DOES_NOT_EXIST', 'Auftragsnummer %s existiert nicht!');
|
||||
|
||||
define('CATEGORY_PERSONAL', 'Persönliche Daten');
|
||||
define('CATEGORY_ADDRESS', 'Adresse');
|
||||
define('CATEGORY_CONTACT', 'Kontakt');
|
||||
define('CATEGORY_PASSWORD', 'Passwort');
|
||||
define('CATEGORY_COMPANY', 'Firma');
|
||||
define('CATEGORY_OPTIONS', 'Optionen');
|
||||
define('ENTRY_GENDER', 'Anrede:');
|
||||
define('ENTRY_FIRST_NAME', 'Vorname:');
|
||||
define('ENTRY_LAST_NAME', 'Nachname:');
|
||||
define('ENTRY_NUMBER', 'Kundennummer:');
|
||||
define('ENTRY_DATE_OF_BIRTH', 'Geburtsdatum:');
|
||||
define('ENTRY_EMAIL_ADDRESS', 'eMail Adresse:');
|
||||
define('ENTRY_COMPANY', 'Firmenname:');
|
||||
define('ENTRY_OWNER', 'Inhaber:');
|
||||
define('ENTRY_VAT_ID', 'Umsatzsteuer ID:');
|
||||
define('ENTRY_STREET_ADDRESS', 'Strasse:');
|
||||
define('ENTRY_POST_CODE', 'Postleitzahl:');
|
||||
define('ENTRY_CITY', 'Stadt:');
|
||||
define('ENTRY_STATE', 'Bundesland:');
|
||||
define('ENTRY_COUNTRY', 'Land:');
|
||||
define('ENTRY_TELEPHONE_NUMBER', 'Telefonnummer:');
|
||||
define('ENTRY_NEWSLETTER', 'Rundschreiben:');
|
||||
define('ENTRY_NEWSLETTER_YES', 'abonniert');
|
||||
define('ENTRY_NEWSLETTER_NO', 'nicht abonniert');
|
||||
define('ENTRY_PASSWORD', 'Passwort:');
|
||||
define('ENTRY_PASSWORD_CONFIRMATION', 'Passwortbestätigung:');
|
||||
define('PASSWORD_HIDDEN', '--VERSTECKT--');
|
||||
|
||||
define('PLACEHOLDER_FIRST_NAME', 'Vorname');
|
||||
define('PLACEHOLDER_EMAIL_ADDRESS', 'eMail Adresse');
|
||||
define('PLACEHOLDER_PASSWORD', 'Passwort');
|
||||
|
||||
// images
|
||||
define('IMAGE_ANI_SEND_EMAIL', 'eMail versenden');
|
||||
define('IMAGE_BACK', 'Zurück');
|
||||
define('IMAGE_BACKUP', 'Datensicherung');
|
||||
define('BUTTON_CANCEL', 'Abbrechen');
|
||||
define('BUTTON_UPLOAD_IMAGES', 'Bilder hochladen');
|
||||
define('BUTTON_CANCEL_UPLOAD', 'Hochladen abbrechen');
|
||||
define('BUTTON_START_UPLOAD', 'Hochladen starten');
|
||||
define('BUTTON_ADD_FILES', 'Dateien hinzufügen');
|
||||
|
||||
define('BUTTON_CHANGE', 'Ändern');
|
||||
define('IMAGE_CONFIRM', 'Bestätigen');
|
||||
define('IMAGE_COPY', 'Kopieren');
|
||||
define('IMAGE_COPY_TO', 'Kopieren nach');
|
||||
define('IMAGE_DEFINE', 'Definieren');
|
||||
define('BUTTON_DELETE', 'Löschen');
|
||||
define('BUTTON_DELETE_PERMANENTLY', 'Endgültig löschen');
|
||||
|
||||
define('BUTTON_EDIT', 'Bearbeiten');
|
||||
define('IMAGE_EMAIL', 'eMail versenden');
|
||||
define('IMAGE_FEATURED', 'Top-Angebote');
|
||||
define('IMAGE_ICON_STATUS_GREEN', 'aktiv');
|
||||
define('IMAGE_ICON_STATUS_GREEN_LIGHT', 'aktivieren');
|
||||
define('IMAGE_ICON_STATUS_RED', 'inaktiv');
|
||||
define('IMAGE_ICON_STATUS_RED_LIGHT', 'deaktivieren');
|
||||
define('IMAGE_ICON_INFO', 'Information');
|
||||
define('BUTTON_INSERT', 'Einfügen');
|
||||
define('IMAGE_LOCK', 'Sperren');
|
||||
define('IMAGE_LOGIN', 'Shop Login');
|
||||
define('IMAGE_MOVE', 'Verschieben');
|
||||
define('BUTTON_MOVE_TRASH', 'In den Papierkorb verschieben');
|
||||
define('IMAGE_NEW_CATEGORY', 'Neue Kategorie erstellen');
|
||||
define('IMAGE_NEW_COUNTRY', 'Neues Land aufnehmen');
|
||||
define('IMAGE_NEW_CURRENCY', 'Neue Währung einfügen');
|
||||
define('IMAGE_NEW_FILE', 'Neue Datei');
|
||||
define('IMAGE_NEW_FOLDER', 'Neues Verzeichnis');
|
||||
define('IMAGE_NEW_LANGUAGE', 'Neue Sprache anlegen');
|
||||
define('IMAGE_NEW_NEWSLETTER', 'Neues Rundschreiben');
|
||||
define('IMAGE_NEW_PRODUCT', 'Neuen Artikel aufnehmen');
|
||||
define('IMAGE_NEW_TAX_CLASS', 'Neue Steuerklasse erstellen');
|
||||
define('IMAGE_NEW_TAX_RATE', 'Neuen Steuersatz anlegen');
|
||||
define('IMAGE_NEW_TAX_ZONE', 'Neue Steuerzone erstellen');
|
||||
define('IMAGE_NEW_ZONE', 'Neues Bundesland anlegen');
|
||||
define('IMAGE_ORDERS', 'Bestellungen');
|
||||
define('IMAGE_ORDERS_INVOICE', 'Rechnung');
|
||||
define('IMAGE_ORDERS_PACKINGSLIP', 'Lieferschein');
|
||||
define('IMAGE_ORDERS_WEBPRINTER', 'WebPrinter');
|
||||
define('IMAGE_PLUGINS_INSTALL', 'Plugins Installieren');
|
||||
define('IMAGE_PLUGINS_REMOVE', 'Plugins Entfernen');
|
||||
define('IMAGE_PREVIEW', 'Vorschau');
|
||||
define('BUTTON_RESET', 'Zurücksetzen');
|
||||
define('IMAGE_RESTORE', 'Zurücksichern');
|
||||
define('IMAGE_SAVE', 'Speichern');
|
||||
define('IMAGE_SEARCH', 'Suchen');
|
||||
define('IMAGE_SELECT', 'Auswählen');
|
||||
define('BUTTON_SELECT_IMAGE', 'Bild auswählen');
|
||||
define('IMAGE_SEND', 'Versenden');
|
||||
define('IMAGE_SEND_EMAIL', 'eMail versenden');
|
||||
define('BUTTON_SEND_PASSWORD', 'Passwort senden');
|
||||
define('IMAGE_SPECIALS', 'Sonderangebot');
|
||||
define('IMAGE_STATUS', 'Kundengruppe');
|
||||
define('IMAGE_UNLOCK', 'Entsperren');
|
||||
define('BUTTON_UNTRASH', 'Wiederherstellen');
|
||||
define('IMAGE_UPDATE', 'Aktualisieren');
|
||||
define('IMAGE_UPDATE_CURRENCIES', 'Wechselkurse aktualisieren');
|
||||
define('IMAGE_UPLOAD', 'Hochladen');
|
||||
define('IMAGE_WISHLIST', 'Wunschzettel');
|
||||
|
||||
|
||||
|
||||
$aLang['image_new_tax_rate'] = 'Neuen Steuersatz anlegen';
|
||||
$aLang['image_new_zone'] = 'Neues Bundesland einfügen';
|
||||
|
||||
define('TEXT_ERROR', 'Fehler');
|
||||
|
||||
define('ICON_CROSS', 'Falsch');
|
||||
define('ICON_CURRENT_FOLDER', 'aktueller Ordner');
|
||||
define('ICON_DELETE', 'Löschen');
|
||||
define('ICON_ERROR', 'Fehler');
|
||||
define('ICON_FILE', 'Datei');
|
||||
define('ICON_FILE_DOWNLOAD', 'Herunterladen');
|
||||
define('ICON_FOLDER', 'Ordner');
|
||||
define('ICON_LOCKED', 'Gesperrt');
|
||||
define('ICON_PREVIOUS_LEVEL', 'Vorherige Ebene');
|
||||
define('ICON_PREVIEW', 'Vorschau');
|
||||
define('ICON_STATISTICS', 'Statistik');
|
||||
define('ICON_SUCCESS', 'Erfolg');
|
||||
define('ICON_TICK', 'Wahr');
|
||||
define('ICON_UNLOCKED', 'Entsperrt');
|
||||
define('ICON_WARNING', 'Warnung');
|
||||
|
||||
// constants for use in oos_prev_next_display function
|
||||
define('TEXT_RESULT_PAGE', 'Seite %s von %d');
|
||||
define('TEXT_DISPLAY_NUMBER_OF_COUNTRIES', 'Angezeigt werden <b>%d</b> bis <b>%d</b> (von insgesamt <b>%d</b> Ländern)');
|
||||
define('TEXT_DISPLAY_NUMBER_OF_CUSTOMERS', 'Angezeigt werden <b>%d</b> bis <b>%d</b> (von insgesamt <b>%d</b> Kunden)');
|
||||
define('TEXT_DISPLAY_NUMBER_OF_CURRENCIES', 'Angezeigt werden <b>%d</b> bis <b>%d</b> (von insgesamt <b>%d</b> Währungen)');
|
||||
define('TEXT_DISPLAY_NUMBER_OF_FEATURED', 'Angezeigt werden <b>%d</b> bis <b>%d</b> (von insgesamt <b>%d</b> Top-Angeboten)');
|
||||
define('TEXT_DISPLAY_NUMBER_OF_HTTP_REFERERS', 'Angezeigt werden <b>%d</b> bis <b>%d</b> (von insgesamt <b>%d</b> HTTP Referers)');
|
||||
define('TEXT_DISPLAY_NUMBER_OF_LANGUAGES', 'Angezeigt werden <b>%d</b> bis <b>%d</b> (von insgesamt <b>%d</b> Sprachen)');
|
||||
define('TEXT_DISPLAY_NUMBER_OF_MANUFACTURERS', 'Angezeigt werden <b>%d</b> bis <b>%d</b> (von insgesamt <b>%d</b> Herstellern)');
|
||||
define('TEXT_DISPLAY_NUMBER_OF_NEWSLETTERS', 'Angezeigt werden <b>%d</b> bis <b>%d</b> (von insgesamt <b>%d</b> Rundschreiben)');
|
||||
define('TEXT_DISPLAY_NUMBER_OF_ORDERS', 'Angezeigt werden <b>%d</b> bis <b>%d</b> (von insgesamt <b>%d</b> Bestellungen)');
|
||||
define('TEXT_DISPLAY_NUMBER_OF_ORDERS_STATUS', 'Angezeigt werden <b>%d</b> bis <b>%d</b> (von insgesamt <b>%d</b> Bestellstatus)');
|
||||
define('TEXT_DISPLAY_NUMBER_OF_PRODUCTS', 'Angezeigt werden <b>%d</b> bis <b>%d</b> (von insgesamt <b>%d</b> Artikeln)');
|
||||
define('TEXT_DISPLAY_NUMBER_OF_PRODUCTS_EXPECTED', 'Angezeigt werden <b>%d</b> bis <b>%d</b> (von insgesamt <b>%d</b> erwarteten Artikeln)');
|
||||
define('TEXT_DISPLAY_NUMBER_OF_PRODUCTS_UNITS', 'Angezeigt werden <b>%d</b> bis <b>%d</b> (von insgesamt <b>%d</b> Einheiten)');
|
||||
define('TEXT_DISPLAY_NUMBER_OF_PRODUCTS_STATUS', 'Angezeigt werden <b>%d</b> bis <b>%d</b> (von insgesamt <b>%d</b> Produktstatus)');
|
||||
define('TEXT_DISPLAY_NUMBER_OF_REVIEWS', 'Angezeigt werden <b>%d</b> bis <b>%d</b> (von insgesamt <b>%d</b> Bewertungen)');
|
||||
define('TEXT_DISPLAY_NUMBER_OF_SPECIALS', 'Angezeigt werden <b>%d</b> bis <b>%d</b> (von insgesamt <b>%d</b> Sonderangeboten)');
|
||||
define('TEXT_DISPLAY_NUMBER_OF_TAX_CLASSES', 'Angezeigt werden <b>%d</b> bis <b>%d</b> (von insgesamt <b>%d</b> Steuerklassen)');
|
||||
define('TEXT_DISPLAY_NUMBER_OF_TAX_ZONES', 'Angezeigt werden <b>%d</b> bis <b>%d</b> (von insgesamt <b>%d</b> Steuerzonen)');
|
||||
define('TEXT_DISPLAY_NUMBER_OF_TAX_RATES', 'Angezeigt werden <b>%d</b> bis <b>%d</b> (von insgesamt <b>%d</b> Steuersätzen)');
|
||||
define('TEXT_DISPLAY_NUMBER_OF_ZONES', 'Angezeigt werden <b>%d</b> bis <b>%d</b> (von insgesamt <b>%d</b> Bundesländern)');
|
||||
define('TEXT_DISPLAY_NUMBER_OF_CUSTOMERS_STATUS', 'Angezeigt werden <b>%d</b> bis <b>%d</b> (von insgesamt <b>%d</b> Kundengruppen)');
|
||||
define('TEXT_DISPLAY_NUMBER_OF_BLOCKES', 'Angezeigt werden <b>%d</b> bis <b>%d</b> (von insgesamt <b>%d</b> Boxen)');
|
||||
|
||||
define('TEXT_DISPLAY_NUMBER_OF_PAGE_TYPES', 'Angezeigt werden <b>%d</b> bis <b>%d</b> (von insgesamt <b>%d</b> )');
|
||||
define('TEXT_DISPLAY_NUMBER_OF_INFORMATION', 'Angezeigt werden <b>%d</b> bis <b>%d</b> (von insgesamt <b>%d</b> Information)');
|
||||
|
||||
define('PREVNEXT_BUTTON_PREV', '<<');
|
||||
define('PREVNEXT_BUTTON_NEXT', '>>');
|
||||
|
||||
define('TEXT_DEFAULT', 'Standard');
|
||||
define('TEXT_SET_DEFAULT', 'als Standard definieren');
|
||||
define('TEXT_FIELD_REQUIRED', ' <span class="fieldRequired">* erforderlich</span>');
|
||||
|
||||
define('ERROR_NO_DEFAULT_CURRENCY_DEFINED', 'Fehler: Es wurde keine Standardwährung definiert. Bitte definieren Sie unter Adminstration -> Sprachen/Währungen -> Währungen eine Standardwährung.');
|
||||
define('ERROR_USER_FOR_THIS_PAGE', 'Fehler: Sie haben für diesen Bereich keine Zugangsrechte.');
|
||||
|
||||
define('TEXT_INFO_USER_NAME', 'UserName:');
|
||||
define('TEXT_INFO_PASSWORD', 'Password:');
|
||||
|
||||
define('TEXT_NONE', '--keine--');
|
||||
define('TEXT_TOP', 'Top');
|
||||
|
||||
define('ENTRY_YES','ja');
|
||||
define('ENTRY_NO','nein');
|
||||
|
||||
$aLang['error_destination_does_not_exist'] = 'Fehler: Speicherort existiert nicht.';
|
||||
$aLang['error_destination_not_writeable'] = 'Fehler: Speicherort ist nicht beschreibbar.';
|
||||
$aLang['error_file_not_saved'] = 'Fehler: Datei wurde nicht gespeichert.';
|
||||
$aLang['error_filetype_not_allowed'] = 'Fehler: Dateityp ist nicht erlaubt.';
|
||||
$aLang['success_file_saved_successfully'] = 'Erfolg: Datei erfolgreich hochgeladen.';
|
||||
$aLang['warning_no_file_uploaded'] = 'Warnung: Es wurde keine Datei hochgeladen.';
|
||||
$aLang['warning_file_uploads_disabled'] = 'Warning: File uploads are disabled in the php.ini configuration file.';
|
||||
|
||||
|
||||
|
||||
define('BOX_HEADING_GV_ADMIN', 'Gutscheine');
|
||||
define('BOX_GV_ADMIN_QUEUE', 'Gutschein Queue');
|
||||
define('BOX_GV_ADMIN_MAIL', 'Gutschein eMail');
|
||||
define('BOX_GV_ADMIN_SENT', 'Gutscheine versandt');
|
||||
define('BOX_HEADING_COUPON_ADMIN','Rabattkupons');
|
||||
define('BOX_COUPON_ADMIN','Kupon Administrator');
|
||||
|
||||
define('IMAGE_RELEASE', 'Gutschein einlösen');
|
||||
|
||||
define('_JANUARY', 'Januar');
|
||||
define('_FEBRUARY', 'Februar');
|
||||
define('_MARCH', 'März');
|
||||
define('_APRIL', 'April');
|
||||
define('_MAY', 'Mai');
|
||||
define('_JUNE', 'Juni');
|
||||
define('_JULY', 'Juli');
|
||||
define('_AUGUST', 'August');
|
||||
define('_SEPTEMBER', 'September');
|
||||
define('_OCTOBER', 'Oktober');
|
||||
define('_NOVEMBER', 'November');
|
||||
define('_DECEMBER', 'Dezember');
|
||||
|
||||
define('TEXT_DISPLAY_NUMBER_OF_GIFT_VOUCHERS', 'Angezeigt werden <b>%d</b> bis <b>%d</b> (von insgesamt <b>%d</b> Gutscheinen)');
|
||||
define('TEXT_DISPLAY_NUMBER_OF_COUPONS', 'Angezeigt werden <b>%d</b> bis <b>%d</b> (von <b>%d</b> Gutscheinen)');
|
||||
|
||||
define('TEXT_VALID_PRODUCTS_LIST', 'Produkt Liste');
|
||||
define('TEXT_VALID_PRODUCTS_ID', 'Produkt ID');
|
||||
define('TEXT_VALID_PRODUCTS_NAME', 'Produkt Name');
|
||||
define('TEXT_VALID_PRODUCTS_MODEL', 'Produkt Model');
|
||||
|
||||
define('TEXT_VALID_CATEGORIES_LIST', 'Kategorie Liste');
|
||||
define('TEXT_VALID_CATEGORIES_ID', 'Kategorie ID');
|
||||
define('TEXT_VALID_CATEGORIES_NAME', 'Kategorie Name');
|
||||
|
||||
define('HEADER_TITLE_TOP', 'Redaktion');
|
||||
define('HEADER_TITLE_ADMINISTRATION', 'Redaktion');
|
||||
|
||||
define('HEADER_TITLE_ACCOUNT', 'Mein Konto');
|
||||
define('HEADER_TITLE_LOGOFF', 'Abmelden');
|
||||
|
||||
// Admin Account
|
||||
define('BOX_HEADING_MY_ACCOUNT', 'Mein Konto');
|
||||
define('BOX_MY_ACCOUNT', 'Mein Konto');
|
||||
define('BOX_MY_ACCOUNT_LOGOFF', 'Abmelden');
|
||||
|
||||
// configuration box text in includes/boxes/administrator.php
|
||||
define('BOX_HEADING_ADMINISTRATOR', 'Redakteure');
|
||||
define('BOX_ADMINISTRATOR_MEMBERS', 'Gruppenmitglieder');
|
||||
define('BOX_ADMINISTRATOR_MEMBER', 'Mitglieder');
|
||||
define('BOX_ADMINISTRATOR_BOXES', 'Dateizugriff');
|
||||
|
||||
// images
|
||||
define('IMAGE_FILE_PERMISSION', 'Dateizugriffs-Erlaubnis');
|
||||
define('IMAGE_GROUPS', 'Gruppenliste');
|
||||
define('BUTTON_INSERT_FILE', 'Datei einfgen');
|
||||
define('IMAGE_MEMBERS', 'Gruppenliste');
|
||||
define('IMAGE_NEW_GROUP', 'Neue Gruppe');
|
||||
define('IMAGE_NEW_MEMBER', 'Neues Mitglied');
|
||||
define('IMAGE_NEXT', 'Nächster');
|
||||
|
||||
// constants for use in oosPrevNextDisplay function
|
||||
define('TEXT_DISPLAY_NUMBER_OF_FILENAMES', 'Zeige an <b>%d</b> bis <b>%d</b> (von <b>%d</b> Dateinamen)');
|
||||
define('TEXT_DISPLAY_NUMBER_OF_MEMBERS', 'Zeige an <b>%d</b> bis <b>%d</b> (von <b>%d</b> Mitglieder)');
|
||||
|
||||
|
||||
define('PULL_DOWN_DEFAULT', 'Bitte wählen');
|
||||
|
60
msd2/myoos/admin/includes/languages/deu/admin_account.php
Normal file
60
msd2/myoos/admin/includes/languages/deu/admin_account.php
Normal file
@ -0,0 +1,60 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: admin_account.php,v 1.3 2007/06/13 16:15:14 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: admin_members.php,v 1.13 2002/08/19 01:45:58 hpdl
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
define('HEADING_TITLE', 'Redaktionskonten');
|
||||
|
||||
define('TABLE_HEADING_ACCOUNT', 'Mein Konto');
|
||||
|
||||
define('TEXT_INFO_FULLNAME', '<b>Name: </b>');
|
||||
define('TEXT_INFO_FIRSTNAME', '<b>Vorname: </b>');
|
||||
define('TEXT_INFO_LASTNAME', '<b>Nachname: </b>');
|
||||
define('TEXT_INFO_EMAIL', '<b>Email Adresse: </b>');
|
||||
define('TEXT_INFO_PASSWORD', '<b>Passwort: </b>');
|
||||
define('TEXT_INFO_PASSWORD_HIDDEN', '-Versteckt-');
|
||||
define('TEXT_INFO_PASSWORD_CONFIRM', '<b>Bestätige Passwort: </b>');
|
||||
define('TEXT_INFO_CREATED', '<b>Konto angelegt: </b>');
|
||||
define('TEXT_INFO_LOGDATE', '<b>Letzter Zugriff: </b>');
|
||||
define('TEXT_INFO_LOGNUM', '<b>Zugriffs-Nummer: </b>');
|
||||
define('TEXT_INFO_GROUP', '<b>Gruppenstufe: </b>');
|
||||
define('TEXT_INFO_ERROR', '<font color="red">Email-Adresse wird schon verwendet! Versuchen Sie es erneut.</font>');
|
||||
define('TEXT_INFO_MODIFIED', 'Verändert: ');
|
||||
|
||||
define('TEXT_INFO_HEADING_DEFAULT', 'Bearbeite Konto ');
|
||||
define('TEXT_INFO_HEADING_CONFIRM_PASSWORD', 'Passwort Bestätigung ');
|
||||
define('TEXT_INFO_INTRO_CONFIRM_PASSWORD', 'Passwort:');
|
||||
define('TEXT_INFO_INTRO_CONFIRM_PASSWORD_ERROR', '<font color="red"><b>FEHLER:</b> falsches Passwort!</font>');
|
||||
define('TEXT_INFO_INTRO_DEFAULT', 'Klicken Sie den <b>Bearbeiten Button</b> unten um das Konto zu ändern.');
|
||||
define('TEXT_INFO_INTRO_DEFAULT_FIRST_TIME', '<br /><b>WARNUNG:</b><br />Hallo <b>%s</b>, sie haben sich hier zum ersten mal angemeldet. Wir empfehlen Ihnen Ihr Passwort zu ändern!');
|
||||
define('TEXT_INFO_INTRO_DEFAULT_FIRST', '<br /><b>WARNUNG:</b><br />Hallo <b>%s</b>, wir empfehlen Ihnen Ihre E-Mail Adresse zu <20>änderndern (<font color="red">admin@localhost</font>) und das Passwort!');
|
||||
define('TEXT_INFO_INTRO_EDIT_PROCESS', 'Sämtliche Felder werden benötigt. Klicken sie sichern zur Datenbertragung.');
|
||||
|
||||
define('JS_ALERT_FIRSTNAME', '- Benötigt: Vorname \n');
|
||||
define('JS_ALERT_LASTNAME', '- Benötigt: Nachname \n');
|
||||
define('JS_ALERT_EMAIL', '- Benötigt: Email-Adresse \n');
|
||||
define('JS_ALERT_PASSWORD', '- Benötigt: Passwort \n');
|
||||
define('JS_ALERT_FIRSTNAME_LENGTH', '- Die Länge des Vornamens muss über ');
|
||||
define('JS_ALERT_LASTNAME_LENGTH', '- Die Länge des Nachnamens muss über ');
|
||||
define('JS_ALERT_PASSWORD_LENGTH', '- Die Länge des Passwortes muss über ');
|
||||
define('JS_ALERT_EMAIL_FORMAT', '- Das Format der Email-Adresse ist ungültig! \n');
|
||||
define('JS_ALERT_EMAIL_USED', '- Diese Email-Adresse wird schon verwendet! \n');
|
||||
define('JS_ALERT_PASSWORD_CONFIRM', '- Im Passwort-Bestätigungsfeld ist keine Eintragung vorgenommen worden! \n');
|
||||
|
||||
|
57
msd2/myoos/admin/includes/languages/deu/admin_files.php
Normal file
57
msd2/myoos/admin/includes/languages/deu/admin_files.php
Normal file
@ -0,0 +1,57 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: admin_files.php,v 1.3 2007/06/13 16:15:14 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: admin_categories.php,v 1.13 2002/08/19 01:45:58 hpdl
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
define('HEADING_TITLE', 'Redaktions "Bereich" Men');
|
||||
|
||||
define('TABLE_HEADING_ACTION', 'Aktion');
|
||||
define('TABLE_HEADING_BOXES', 'Bereiche');
|
||||
define('TABLE_HEADING_FILENAME', 'Dateinamen');
|
||||
define('TABLE_HEADING_GROUPS', 'Gruppen');
|
||||
define('TABLE_HEADING_STATUS', 'Status');
|
||||
|
||||
define('TEXT_COUNT_BOXES', 'Bereiche: ');
|
||||
define('TEXT_COUNT_FILES', 'Datei(en): ');
|
||||
|
||||
//categories access
|
||||
define('TEXT_INFO_HEADING_DEFAULT_BOXES', 'Bereiche: ');
|
||||
|
||||
define('TEXT_INFO_DEFAULT_BOXES_INTRO', 'Einfach nur den grünen Button drücken um den Bereich zu aktivieren oder den roten Button um den Bereich zu deinstallieren.<br /><br /><b>WARNUNG:</b> Wenn Sie den Bereich deinstallieren, werden sämtliche darin befindliche Dateien mitgelöscht!');
|
||||
define('TEXT_INFO_DEFAULT_BOXES_INSTALLED', ' installiert');
|
||||
define('TEXT_INFO_DEFAULT_BOXES_NOT_INSTALLED', ' nicht installiert');
|
||||
|
||||
define('STATUS_BOX_INSTALLED', 'Installiert');
|
||||
define('STATUS_BOX_NOT_INSTALLED', 'Nicht installiert');
|
||||
define('STATUS_BOX_REMOVE', 'Entfernen');
|
||||
define('STATUS_BOX_INSTALL', 'Installieren');
|
||||
|
||||
//files access
|
||||
define('TEXT_INFO_HEADING_DEFAULT_FILE', 'Datei: ');
|
||||
define('TEXT_INFO_HEADING_DELETE_FILE', 'Entferne Erlaubnis');
|
||||
define('TEXT_INFO_HEADING_NEW_FILE', 'Store Files');
|
||||
|
||||
define('TEXT_INFO_DEFAULT_FILE_INTRO', 'Klicken Sie den <b>Dateien ablegen</b> Button um die neue Datei in dem Bereich abzulegen: ');
|
||||
define('TEXT_INFO_DELETE_FILE_INTRO', 'Entferne <font color="red"><b>%s</b></font> von <b>%s</b> Bereich? ');
|
||||
define('TEXT_INFO_NEW_FILE_INTRO', 'Überprüfen Sie das <font color="red"><b>linke Menü</b></font> um sicherzustellen das Sie die richtigen Dateien entfernt haben.');
|
||||
|
||||
define('TEXT_INFO_NEW_FILE_BOX', 'Momentaner Bereich: ');
|
||||
|
||||
|
107
msd2/myoos/admin/includes/languages/deu/admin_members.php
Normal file
107
msd2/myoos/admin/includes/languages/deu/admin_members.php
Normal file
@ -0,0 +1,107 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: admin_members.php,v 1.4 2008/08/11 22:22:47 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: admin_members.php,v 1.13 2002/08/19 01:45:58 hpdl
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
if ($_GET['gID']) {
|
||||
define('HEADING_TITLE', 'redaktionelle Gruppen');
|
||||
} elseif ($_GET['gPath']) {
|
||||
define('HEADING_TITLE', 'Gruppe anlegen');
|
||||
} else {
|
||||
define('HEADING_TITLE', 'Redaktionsmitglieder');
|
||||
}
|
||||
|
||||
define('TEXT_COUNT_GROUPS', 'Gruppen: ');
|
||||
|
||||
define('TABLE_HEADING_NAME', 'Name');
|
||||
define('TABLE_HEADING_EMAIL', 'Email-Adresse');
|
||||
define('TABLE_HEADING_PASSWORD', 'Passwort');
|
||||
define('TABLE_HEADING_CONFIRM', 'Passwort bestätigen');
|
||||
define('TABLE_HEADING_GROUPS', 'Gruppenstufe');
|
||||
define('TABLE_HEADING_CREATED', 'Konto angelegt');
|
||||
define('TABLE_HEADING_MODIFIED', 'Konto angelegt');
|
||||
define('TABLE_HEADING_LOGDATE', 'Letzter Zugriff');
|
||||
define('TABLE_HEADING_LOGNUM', 'Anmeldenr');
|
||||
define('TABLE_HEADING_LOG_NUM', 'Anmeldenummer');
|
||||
define('TABLE_HEADING_ACTION', 'Aktion');
|
||||
|
||||
define('TABLE_HEADING_GROUPS_NAME', 'Gruppenname');
|
||||
define('TABLE_HEADING_GROUPS_DEFINE', 'Bereichs- und Dateiauswahl');
|
||||
define('TABLE_HEADING_GROUPS_GROUP', 'Stufe');
|
||||
define('TABLE_HEADING_GROUPS_CATEGORIES', 'Kategorie Erlaubnis');
|
||||
|
||||
|
||||
define('TEXT_INFO_HEADING_DEFAULT', 'Redaktionsmitglieder ');
|
||||
define('TEXT_INFO_HEADING_DELETE', ' Genehmigung zum Löschen');
|
||||
define('TEXT_INFO_HEADING_EDIT', 'Editiere Kategorie / ');
|
||||
define('TEXT_INFO_HEADING_NEW', 'Neues Redaktionsmitglied ');
|
||||
|
||||
define('TEXT_INFO_DEFAULT_INTRO', 'Mitarbeitergruppe');
|
||||
define('TEXT_INFO_DELETE_INTRO', 'Soll <nobr><b>%s</b></nobr> jetzt als <nobr>Redaktionsmitglied<br /> gel<65>cht werden?</nobr>');
|
||||
define('TEXT_INFO_DELETE_INTRO_NOT', 'Sie können <nobr>%s Gruppe nicht Löschen !</nobr>');
|
||||
define('TEXT_INFO_EDIT_INTRO', 'Legen Sie hier die Erlaubnisstufe an: ');
|
||||
|
||||
define('TEXT_INFO_FULLNAME', 'Name: ');
|
||||
define('TEXT_INFO_FIRSTNAME', 'Vorname: ');
|
||||
define('TEXT_INFO_LASTNAME', 'Nachname: ');
|
||||
define('TEXT_INFO_EMAIL', 'Email Adresse: ');
|
||||
define('TEXT_INFO_PASSWORD', 'Passwort: ');
|
||||
define('TEXT_INFO_CONFIRM', 'Passwort bestätigen: ');
|
||||
define('TEXT_INFO_CREATED', 'Konto angelegt: ');
|
||||
define('TEXT_INFO_MODIFIED', 'Konto verändert: ');
|
||||
define('TEXT_INFO_LOGDATE', 'Letzter Zugriff: ');
|
||||
define('TEXT_INFO_LOGNUM', 'Zugriffs-Nummer: ');
|
||||
define('TEXT_INFO_GROUP', 'Gruppenstufe: ');
|
||||
define('TEXT_INFO_ERROR', '<font color="red">Email Adresse wird schon verwendet! Versuchen Sie es erneut.</font>');
|
||||
|
||||
define('JS_ALERT_FIRSTNAME', '- Benoetigt: Vorname \n');
|
||||
define('JS_ALERT_LASTNAME', '- Benoetigt: Lastname \n');
|
||||
define('JS_ALERT_EMAIL', '- Benoetigt: Email Adresse \n');
|
||||
define('JS_ALERT_EMAIL_FORMAT', '- Email Adressenformat ist ungueltig! \n');
|
||||
define('JS_ALERT_EMAIL_USED', '- Email Adresse wird schon verwendet! \n');
|
||||
define('JS_ALERT_LEVEL', '- Benoetigt: Gruppenmitglied \n');
|
||||
|
||||
define('ADMIN_EMAIL_SUBJECT', 'Neues Redaktionsmitglied');
|
||||
define('ADMIN_EMAIL_TEXT', 'Hallo %s,' . "\n\n" . 'Sie koennen auf den Redaktionsbereich mit dem folgenden Passwort ' . "\n" . 'zugreifen. Wenn Sie einmal auf den Redaktionsbereich zugegriffen haben,' . "\n" . ' aendern Sie bitte Ihr Passwort!' . "\n\n" . 'Website : %s' . "\n" . 'Benutzername: %s' . "\n" . 'Passwort: %s' . "\n\n" . 'Danke!' . "\n" . '%s' . "\n\n" . 'Bitte nicht auf diese Nachricht antworten, da sie automatisch generiert wurde und nur Ihrer Information dient.');
|
||||
|
||||
define('TEXT_INFO_HEADING_DEFAULT_GROUPS', 'Redaktionsgruppe ');
|
||||
define('TEXT_INFO_HEADING_DELETE_GROUPS', 'Lösche Gruppe ');
|
||||
|
||||
define('TEXT_INFO_DEFAULT_GROUPS_INTRO', '<b>HINWEIS:</b><li><b>bearbeiten:</b> bearbeite Gruppenname.</li><li><b>Löschen:</b> Gruppe Löschen.</li><li><b>Definieren:</b> Definieren Sie die Gruppenzugriffsrechte.</li>');
|
||||
define('TEXT_INFO_DELETE_GROUPS_INTRO', 'Es wird auch sämtliche Mitglieder dieser Gruppe Löschen. Sind Sie sicher das Sie diese <nobr><b>%s</b> Gruppe Löschen wollen?</nobr>');
|
||||
define('TEXT_INFO_DELETE_GROUPS_INTRO_NOT', 'Sie können diese Gruppe nicht Löschen!');
|
||||
define('TEXT_INFO_GROUPS_INTRO', 'Vergeben Sie einen einmaligen Gruppennamen. Klicken Sie weiter zur <20>ertragung.');
|
||||
|
||||
define('TEXT_INFO_HEADING_GROUPS', 'Neue Gruppe');
|
||||
define('TEXT_INFO_HEADING_EDIT_GROUP', 'Gruppenname ändern');
|
||||
define('TEXT_INFO_EDIT_GROUP_INTRO', 'Geben Sie den neuen Gruppennamen ein.');
|
||||
define('TEXT_INFO_GROUPS_NAME', ' <b>Gruppenname:</b><br />Vergeben Sie einen einmaligen Gruppennamen. Dann klicken Sie N<>hster zur <20>ermittlung.<br />');
|
||||
define('TEXT_INFO_GROUPS_NAME_FALSE', '<font color="red"><b>FEHLER:</b> Der Gruppenname mu<6D>aus mindestens 5 Buchstaben bestehen!</font>');
|
||||
define('TEXT_INFO_GROUPS_NAME_USED', '<font color="red"><b>FEHLER:</b> Gruppenname wird schon verwendet!</font>');
|
||||
define('TEXT_INFO_GROUPS_LEVEL', 'Gruppenstufe: ');
|
||||
define('TEXT_INFO_GROUPS_BOXES', '<b>Bereichserlaubnis:</b><br />Zugriff auf die ausgew<65>lten Bereiche vergeben.');
|
||||
define('TEXT_INFO_GROUPS_BOXES_INCLUDE', 'Beinhaltet gespeicherte Daten in: ');
|
||||
|
||||
define('TEXT_INFO_HEADING_DEFINE', 'Definiere Gruppe');
|
||||
if ($_GET['gPath'] == 1) {
|
||||
define('TEXT_INFO_DEFINE_INTRO', '<b>%s :</b><br />Sie können nicht die Zugriffsberechtigungen für diese Gruppe vergeben.<br /><br />');
|
||||
} else {
|
||||
define('TEXT_INFO_DEFINE_INTRO', '<b>%s :</b><br /><3E>ändern Sie die Zugriffsberechtigungen für diese Gruppe und die darin befindlichen Dateien, indem Sie die Bereiche auswählen/abwählen. Klicken Sie <b>speichern</b> um die Änderungen zu sichern.<br /><br />');
|
||||
}
|
||||
|
60
msd2/myoos/admin/includes/languages/deu/administrators.php
Normal file
60
msd2/myoos/admin/includes/languages/deu/administrators.php
Normal file
@ -0,0 +1,60 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: administrators.php,v 1.3 2007/06/13 16:15:14 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
Login and Logoff for osCommerce Administrators.
|
||||
|
||||
Original Version by Blake Schwendiman
|
||||
blake@intechra.net
|
||||
|
||||
Updated Version 1.1.0 (03/01/2002) by Christopher Conkie
|
||||
chris@conkiec.freeserve.co.uk
|
||||
|
||||
updated version 1.2.0 (06/27/2002) by Steve Myers
|
||||
info@megashare.net
|
||||
|
||||
updated version 1.3.0 (03/06/2003) by Steve Myers
|
||||
chinaz@cga.net.cn
|
||||
----------------------------------------------------------------------
|
||||
The Exchange Project - Community Made Shopping!
|
||||
http://www.theexchangeproject.org
|
||||
|
||||
Copyright (c) 2000,2001 The Exchange Project
|
||||
|
||||
Implemented by Blake Schwendiman (blake@intechra.net)
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
|
||||
define('TOP_BAR_TITLE', 'Administrators');
|
||||
define('HEADING_TITLE', 'Set up Administrators');
|
||||
define('SUB_BAR_TITLE', 'Add, edit or remove login information for Administrators.');
|
||||
|
||||
define('TEXT_ADMINISTRATOR_USERNAME', 'UserName:');
|
||||
define('TEXT_ADMINISTRATOR_PASSWORD', 'Password:');
|
||||
define('TEXT_ADMINISTRATOR_CONFPWD', 'Confirm Password:');
|
||||
define( 'TEXT_CURRENT_ADMINISTRATORS', 'Current Administrators' );
|
||||
define( 'TEXT_ADD_ADMINISTRATOR', 'Add New Administrator' );
|
||||
define( 'TEXT_NO_CURRENT_ADMINS', 'There are currently no defined administrators.' );
|
||||
define( 'TEXT_ADMIN_DELETE', 'Delete' );
|
||||
define( 'TEXT_ADMIN_SAVE', 'Add New' );
|
||||
define( 'TEXT_PWD_ERROR', '<br /><p class="main">The password did not match the confirmation password or the password was empty. New administrator <b>not added</b>.</p>' );
|
||||
define( 'TEXT_UNAME_ERROR', '<br /><p class="main">The username cannot be empty. New administrator <b>not added</b>.</p>' );
|
||||
define( 'TEXT_FULL_ACCESS', 'This administrator has <b>full</b> access.' );
|
||||
define( 'TEXT_PARTIAL_ACCESS', 'This administrator has access to the following areas. CTRL+Click to select multiple.' );
|
||||
define( 'TEXT_ADMIN_HAS_ACCESS_TO', 'Administrator Rights' );
|
||||
|
158
msd2/myoos/admin/includes/languages/deu/categories.php
Normal file
158
msd2/myoos/admin/includes/languages/deu/categories.php
Normal file
@ -0,0 +1,158 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: categories.php,v 1.3 2007/06/13 16:15:14 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: categories.php,v 1.22 2002/08/17 09:43:33 project3000
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
define('HEADING_TITLE', 'Kategorien / Artikel');
|
||||
define('HEADING_TITLE_SEARCH', 'Suche: ');
|
||||
define('HEADING_TITLE_GOTO', 'Gehe zu:');
|
||||
|
||||
define('TABLE_HEADING_ID', 'ID');
|
||||
define('TABLE_HEADING_CATEGORIES_PRODUCTS', 'Kategorien / Artikel');
|
||||
define('TABLE_HEADING_ACTION', 'Aktion');
|
||||
define('TABLE_HEADING_STATUS', 'Status');
|
||||
define('TABLE_HEADING_MANUFACTURERS', 'Hersteller');
|
||||
define('TABLE_HEADING_PRODUCT_SORT', 'Sort Order');
|
||||
|
||||
define('TEXT_NEW_PRODUCT', 'Neuer Artikel in "%s"');
|
||||
define('TEXT_CATEGORIES', 'Kategorien:');
|
||||
define('TEXT_CATEGORY', 'Kategorie');
|
||||
define('TEXT_SUBCATEGORIES', 'Unterkategorien:');
|
||||
define('TEXT_PRODUCTS', 'Artikel:');
|
||||
define('TEXT_PRODUCTS_PRICE_INFO', 'Preis:');
|
||||
define('TEXT_PRODUCTS_TAX_CLASS', 'Steuerklasse:');
|
||||
define('TEXT_PRODUCTS_AVERAGE_RATING', 'durchschnittl. Bewertung:');
|
||||
define('TEXT_PRODUCTS_QUANTITY_INFO', 'Anzahl:');
|
||||
define('TEXT_DATE_ADDED', 'hinzugefügt am:');
|
||||
define('TEXT_DATE_AVAILABLE', 'Erscheinungsdatum:');
|
||||
define('TEXT_LAST_MODIFIED', 'letzte Änderung:');
|
||||
define('TEXT_IMAGE_NONEXISTENT', 'BILD EXISTIERT NICHT');
|
||||
define('TEXT_NO_CHILD_CATEGORIES_OR_PRODUCTS', 'Bitte fügen Sie eine neue Kategorie oder einen Artikel in <b>%s</b> ein.');
|
||||
define('TEXT_PRODUCT_MORE_INFORMATION', 'Für weitere Informationen, besuchen Sie bitte die <a href="http://%s" target="blank"><u>Homepage</u></a> des Herstellers.');
|
||||
define('TEXT_PRODUCT_DATE_ADDED', 'Diesen Artikel haben wir am %s in unseren Katalog aufgenommen.');
|
||||
define('TEXT_PRODUCT_DATE_AVAILABLE', 'Dieser Artikel ist erhältlich ab %s.');
|
||||
|
||||
define('TEXT_INFO_PERCENTAGE', 'Prozent:');
|
||||
define('TEXT_INFO_EXPIRES_DATE', 'Gültig bis:');
|
||||
|
||||
define('TEXT_EDIT_INTRO', 'Bitte führen Sie alle notwendigen Änderungen durch.');
|
||||
define('TEXT_EDIT_CATEGORIES_ID', 'Kategorie ID:');
|
||||
define('TEXT_EDIT_CATEGORIES_NAME', 'Kategorie Name:');
|
||||
define('TEXT_EDIT_CATEGORIES_PAGE_TITLE', 'Kategorie-Titel für SEO:');
|
||||
define('TEXT_EDIT_CATEGORIES_IMAGE', 'Kategorie Bild');
|
||||
define('TEXT_EDIT_CATEGORIES_HEADING_TITLE', 'Kategorie Überschrift:');
|
||||
define('TEXT_EDIT_CATEGORIES_DESCRIPTION', 'Kategorie Beschreibung:');
|
||||
define('TEXT_EDIT_CATEGORIES_DESCRIPTION_META', 'Meta Tag Beschreibung:');
|
||||
define('TEXT_EDIT_COLOR', 'Farbe:');
|
||||
define('TEXT_EDIT_MENU_TYPE', 'Anstecker:');
|
||||
define('TEXT_EDIT_NEW', 'NEW');
|
||||
define('TEXT_EDIT_PROMO', 'PROMO');
|
||||
define('TEXT_EDIT_SORT_ORDER', 'Sortierreihenfolge:');
|
||||
define('TEXT_EDIT_STATUS', 'Status:');
|
||||
define('TEXT_TAX_INFO', 'Netto:');
|
||||
define('TEXT_PRODUCTS_LIST_PRICE', 'UVP:');
|
||||
|
||||
define('TEXT_INFO_BANNER', 'Banner');
|
||||
define('TEXT_INFO_DETAILS', 'Details');
|
||||
define('TEXT_INFO_PREVIEW', 'Preview');
|
||||
define('TEXT_INFO_PRIMARY', 'Primary');
|
||||
define('TEXT_INFO_SLIDER', 'Slider');
|
||||
|
||||
|
||||
define('TEXT_INFO_COPY_TO_INTRO', 'Bitte wählen Sie eine neue Kategorie aus, in die Sie den Artikel kopieren möchten:');
|
||||
define('TEXT_INFO_CURRENT_CATEGORIES', 'aktuelle Kategorien:');
|
||||
|
||||
define('TEXT_INFO_HEADING_NEW_CATEGORY', 'Neue Kategorie');
|
||||
define('TEXT_INFO_HEADING_EDIT_CATEGORY', 'Kategorie bearbeiten');
|
||||
define('TEXT_INFO_HEADING_DELETE_CATEGORY', 'Kategorie löschen');
|
||||
define('TEXT_INFO_HEADING_MOVE_CATEGORY', 'Kategorie verschieben');
|
||||
define('TEXT_INFO_HEADING_DELETE_PRODUCT', 'Artikel löschen');
|
||||
define('TEXT_INFO_HEADING_MOVE_PRODUCT', 'Artikel verschieben');
|
||||
define('TEXT_INFO_HEADING_COPY_TO', 'Kopieren nach');
|
||||
|
||||
define('TEXT_DELETE_CATEGORY_INTRO', 'Sind Sie sicher, dass Sie diese Kategorie löschen möchten?');
|
||||
define('TEXT_DELETE_PRODUCT_INTRO', 'Sind Sie sicher, dass Sie diesen Artikel löschen möchten?');
|
||||
|
||||
define('TEXT_DELETE_WARNING_CHILDS', '<b>WARNUNG:</b> Es existieren noch %s (Unter-)Kategorien, die mit dieser Kategorie verbunden sind!');
|
||||
define('TEXT_DELETE_WARNING_PRODUCTS', '<b>WARNING:</b> Es existieren noch %s Artikel, die mit dieser Kategorie verbunden sind!');
|
||||
|
||||
define('TEXT_MOVE_PRODUCTS_INTRO', 'Bitte wählen Sie die übergordnete Kategorie, in die Sie <b>%s</b> verschieben möchten');
|
||||
define('TEXT_MOVE_CATEGORIES_INTRO', 'Bitte wählen Sie die übergordnete Kategorie, in die Sie <b>%s</b> verschieben möchten');
|
||||
define('TEXT_MOVE', 'Verschiebe <b>%s</b> nach:');
|
||||
|
||||
define('TEXT_NEW_CATEGORY_INTRO', 'Bitte geben Sie die neue Kategorie mit allen relevanten Daten ein.');
|
||||
define('TEXT_CATEGORIES_NAME', 'Kategorie Name:');
|
||||
define('TEXT_CATEGORIES_IMAGE', 'Kategorie Bild:');
|
||||
define('TEXT_ADD_MORE_UPLOAD', 'Mehr Felder zum Hochladen hinzufügen');
|
||||
define('TEXT_NOT_RELOAD', 'Lädt nicht erneut!');
|
||||
define('TEXT_SORT_ORDER', 'Sortierreihenfolge:');
|
||||
|
||||
define('TEXT_PRODUCTS_STATUS', 'Produktstatus:');
|
||||
define('TEXT_PRODUCTS_DATE_AVAILABLE', 'Erscheinungsdatum:');
|
||||
define('TEXT_PRODUCT_NOT_AVAILABLE', 'nicht lieferbar');
|
||||
define('TEXT_PRODUCTS_MANUFACTURER', 'Artikel-Hersteller:');
|
||||
define('TEXT_PRODUCTS_NAME', 'Artikelname:');
|
||||
define('TEXT_PRODUCTS_DESCRIPTION', 'Artikelbeschreibung:');
|
||||
define('TEXT_PRODUCTS_DESCRIPTION_META', 'Artikelbeschreibung für Description Tag (max. 250 Zeichen)');
|
||||
define('TEXT_PRODUCTS_KEYWORDS_META', 'Artikel Suchworte für Keyword Tag (Stichworte durch Komma getrennt - max. 250 Zeichen)');
|
||||
define('TEXT_PRODUCTS_QUANTITY', 'Artikelanzahl:');
|
||||
define('TEXT_PRODUCTS_REORDER_LEVEL', 'Mindestlagerbestand:');
|
||||
define('TEXT_PRODUCTS_MODEL', 'Artikel-Nr.:');
|
||||
define('TEXT_PRODUCTS_IMAGE', 'Artikelbild:');
|
||||
define('TEXT_PRODUCTS_URL', 'Herstellerlink:');
|
||||
define('TEXT_PRODUCTS_URL_WITHOUT_HTTP', '<small>(ohne führendes http://)</small>');
|
||||
define('TEXT_PRODUCTS_PRICE', 'Artikelpreis:');
|
||||
define('TEXT_PRODUCTS_WEIGHT', 'Artikelgewicht:');
|
||||
|
||||
define('EMPTY_CATEGORY', 'Leere Kategorie');
|
||||
|
||||
define('TEXT_HOW_TO_COPY', 'Kopiermethode:');
|
||||
define('TEXT_COPY_AS_LINK', 'Produkt verlinken');
|
||||
define('TEXT_COPY_AS_DUPLICATE', 'Produkt duplizieren');
|
||||
|
||||
define('ERROR_CANNOT_LINK_TO_SAME_CATEGORY', 'Fehler: Produkte können nicht in der gleichen Kategorie verlinkt werden.');
|
||||
define('ERROR_CATALOG_IMAGE_DIRECTORY_NOT_WRITEABLE', 'Fehler: Das Verzeichnis \'images\' im Katalogverzeichnis ist schreibgeschützt: ' . OOS_ABSOLUTE_PATH . OOS_IMAGES);
|
||||
define('ERROR_CATALOG_IMAGE_DIRECTORY_DOES_NOT_EXIST', 'Fehler: Das Verzeichnis \'images\' im Katalogverzeichnis ist nicht vorhanden: ' . OOS_ABSOLUTE_PATH . OOS_IMAGES);
|
||||
|
||||
define('TEXT_ADD_SLAVE_PRODUCT', 'Geben Sie in die Produkt-ID, die Sie als Zubehör / Option hinzuzufügen möchten ein:');
|
||||
define('IMAGE_SLAVE', 'Produktoptionen');
|
||||
define('TEXT_CURRENT_SLAVE_PRODUCTS', 'Aktuelle Produktoptionen:</b>');
|
||||
define('BUTTON_DELETE_SLAVE', 'Lösche diese Produktoption');
|
||||
define('TEXT_SUCCESSFULLY_SLAVE', 'Dieses Produkt wurde erfolgreich als Slave hinzugefügt.');
|
||||
define('TEXT_ERROR_SLAVE', 'Dieses Produkt existiert nicht oder ist bereits als Slave hinzugefügt worden.');
|
||||
|
||||
define('CAT_CATEGORY_ID_TEXT', 'ID # ');
|
||||
define('CAT_PRODUCT_ID_TEXT', 'ID # ');
|
||||
define('CAT_ATTRIBUTES_BASE_PRICE_TEXT', 'Basispreis: ');
|
||||
define('CAT_LIST_PRICE_TEXT', 'UVP.: ');
|
||||
define('CAT_REBATE_PRICE_TEXT', 'Rabate: ');
|
||||
define('CAT_QUANTITY_MIN_TEXT', 'Mindestbestellmenge: ');
|
||||
define('CAT_QUANTITY_MAX_TEXT', 'maximale Bestellmenge: ');
|
||||
define('CAT_QUANTITY_UNITS_TEXT', 'Verpackungseinheit: ');
|
||||
|
||||
define('TEXT_COPY_ATTRIBUTES_ONLY', 'Nur Produktinformationen kopieren ...');
|
||||
define('TEXT_COPY_ATTRIBUTES', 'Artikeloptionen kopieren?');
|
||||
define('TEXT_COPY_ATTRIBUTES_YES', 'Ja');
|
||||
define('TEXT_COPY_ATTRIBUTES_NO', 'Nein');
|
||||
|
||||
define('TEXT_DATA', 'Daten');
|
||||
define('TEXT_IMAGES', 'Bilder');
|
||||
define('TEXT_UPLOAD', 'Bilder hochladen');
|
||||
define('TEXT_IMAGE_REMOVE', '<b>Entfernen</b> des Bildes von der Kategorie?');
|
||||
|
384
msd2/myoos/admin/includes/languages/deu/configuration.php
Normal file
384
msd2/myoos/admin/includes/languages/deu/configuration.php
Normal file
@ -0,0 +1,384 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: configuration.php,v 1.6 2009/01/23 06:23:43 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: configuration.php,v 1.8 2002/01/04 03:51:40 hpdl
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
define('TABLE_HEADING_CONFIGURATION_TITLE', 'Name');
|
||||
define('TABLE_HEADING_CONFIGURATION_VALUE', 'Wert');
|
||||
define('TABLE_HEADING_ACTION', 'Aktion');
|
||||
|
||||
define('TEXT_INFO_EDIT_INTRO', 'Bitte führen Sie alle notwendigen Änderungen durch');
|
||||
define('TEXT_INFO_DATE_ADDED', 'hinzugefügt am:');
|
||||
define('TEXT_INFO_LAST_MODIFIED', 'letzte Änderung:');
|
||||
define('TEXT_IMAGE_NONEXISTENT', 'BILD EXISTIERT NICHT');
|
||||
|
||||
define('STORE_NAME_TITLE', 'Shop Name');
|
||||
define('STORE_NAME_DESC', 'Der Name meines Shops');
|
||||
|
||||
define('STORE_LOGO_TITLE', 'Shop Logo');
|
||||
define('STORE_LOGO_DESC', 'Das Logo meines Shops');
|
||||
|
||||
define('STORE_OWNER_TITLE', 'Shop Inhaber');
|
||||
define('STORE_OWNER_DESC', 'Der Name des Shop-Betreibers');
|
||||
|
||||
define('STORE_OWNER_EMAIL_ADDRESS_TITLE', 'E-Mail Adresse');
|
||||
define('STORE_OWNER_EMAIL_ADDRESS_DESC', 'Die E-Mail Adresse des Shop-Betreibers');
|
||||
|
||||
define('STORE_OWNER_VAT_ID_TITLE' , 'Umsatzsteuer ID');
|
||||
define('STORE_OWNER_VAT_ID_DESC' , 'Die Umsatzsteuer ID Ihres Unternehmens');
|
||||
|
||||
define('STORE_ADDRESS_STREET_TITLE', 'Adressinformation: Straße des Shops');
|
||||
define('STORE_ADDRESS_STREET_DESC', 'Die Kontaktinformationen des Shops, welche sowohl in Dokumenten als auch Online ausgegeben werden');
|
||||
|
||||
define('STORE_ADDRESS_POSTCODE_TITLE', 'Adressinformation: PLZ des Shops');
|
||||
define('STORE_ADDRESS_POSTCODE_DESC', 'Die Kontaktinformationen des Shops, welche sowohl in Dokumenten als auch Online ausgegeben werden');
|
||||
|
||||
define('STORE_ADDRESS_CITY_TITLE', 'Adressinformation: Stadt des Shops');
|
||||
define('STORE_ADDRESS_CITY_DESC', 'Die Kontaktinformationen des Shops, welche sowohl in Dokumenten als auch Online ausgegeben werden');
|
||||
|
||||
define('STORE_ADDRESS_TELEPHONE_NUMBER_TITLE', 'Adressinformation: Telefone des Shops');
|
||||
define('STORE_ADDRESS_TELEPHONE_NUMBER_DESC', 'Die Kontaktinformationen des Shops, welche sowohl in Dokumenten als auch Online ausgegeben werden');
|
||||
|
||||
define('STORE_ADDRESS_EMAIL_TITLE', 'Adressinformation: Die E-Mail Adresse des Shops');
|
||||
define('STORE_ADDRESS_EMAIL_DESC', 'Die E-Mail Adresse des Shops, welche sowohl in Dokumenten als auch Online ausgegeben werden');
|
||||
|
||||
define('STORE_COUNTRY_TITLE', 'Land');
|
||||
define('STORE_COUNTRY_DESC', 'In welchem Land wird der Shop betrieben <br><br><b>Hinweis: Bitte vergessen Sie nicht, das Bundesland zu aktualisieren</b>');
|
||||
|
||||
define('STORE_ZONE_TITLE', 'Bundesland');
|
||||
define('STORE_ZONE_DESC', 'In welchem Bundesland wird der Shop betrieben?');
|
||||
|
||||
define('EXPECTED_PRODUCTS_SORT_TITLE', 'Sortierreihenfolge erwartete Produkte');
|
||||
define('EXPECTED_PRODUCTS_SORT_DESC', 'Sortierreihenfolge, die im \'erwartete Produkte\'-Block verwendet wird.');
|
||||
|
||||
define('EXPECTED_PRODUCTS_FIELD_TITLE', 'Sortierspalte erwartete Produkte');
|
||||
define('EXPECTED_PRODUCTS_FIELD_DESC', 'Die Spalte, nach der im \'erwartete Produkte\'-Block sortiert wird.');
|
||||
|
||||
define('USE_DEFAULT_LANGUAGE_CURRENCY_TITLE', 'Währung automatisch wechseln');
|
||||
define('USE_DEFAULT_LANGUAGE_CURRENCY_DESC', 'Wechselt automatisch die Währung anhand der eingestellten Sprache');
|
||||
|
||||
define('ADVANCED_SEARCH_DEFAULT_OPERATOR_TITLE', 'Standardoperator für Suchfunktionen');
|
||||
define('ADVANCED_SEARCH_DEFAULT_OPERATOR_DESC', 'Die Standardverknüpfung, mit der mehrere Suchbegriffe verknüpft werden');
|
||||
|
||||
define('STORE_NAME_ADDRESS_TITLE', 'Adressinformationen des Shops');
|
||||
define('STORE_NAME_ADDRESS_DESC', 'Die Kontaktinformationen des Shops, welche sowohl in Dokumenten als auch Online ausgegeben werden');
|
||||
|
||||
define('TAX_DECIMAL_PLACES_TITLE', 'Dezimalstellen der Steuer');
|
||||
define('TAX_DECIMAL_PLACES_DESC', 'Anzahl der Dezimalstellen der Steuer');
|
||||
|
||||
define('DISPLAY_PRICE_WITH_TAX_TITLE', 'Preise inkl. Steuer');
|
||||
define('DISPLAY_PRICE_WITH_TAX_DESC', 'Preise incl. Steuer anzeigen (true) oder die Steuer dem Gesamtbetrag hinzurechnen (false)');
|
||||
|
||||
define('BASE_PRICE_TITLE', 'Grundpreis verwenden');
|
||||
define('BASE_PRICE_DESC', 'Möchten Sie Produkte mit einem Grundpreis verwenden?');
|
||||
|
||||
|
||||
define('PRODUCTS_OPTIONS_SORT_BY_PRICE_TITLE', 'Sortierung Produktoptionen');
|
||||
define('PRODUCTS_OPTIONS_SORT_BY_PRICE_DESC', 'Möchten Sie die Produktopionen nach Preisen sortieren?');
|
||||
|
||||
define('ENTRY_FIRST_NAME_MIN_LENGTH_TITLE', 'Vorname');
|
||||
define('ENTRY_FIRST_NAME_MIN_LENGTH_DESC', 'Mindestlänge des Vornames');
|
||||
|
||||
define('ENTRY_LAST_NAME_MIN_LENGTH_TITLE', 'Nachname');
|
||||
define('ENTRY_LAST_NAME_MIN_LENGTH_DESC', 'Mindestlänge des Nachnames');
|
||||
|
||||
define('ENTRY_DOB_MIN_LENGTH_TITLE', 'Geburtsdatum');
|
||||
define('ENTRY_DOB_MIN_LENGTH_DESC', 'Mindestlänge des Geburtsdatums');
|
||||
|
||||
define('ENTRY_EMAIL_ADDRESS_MIN_LENGTH_TITLE', 'E-Mail Adresse');
|
||||
define('ENTRY_EMAIL_ADDRESS_MIN_LENGTH_DESC', 'Mindestlänge der E-Mail Adresse');
|
||||
|
||||
define('ENTRY_STREET_ADDRESS_MIN_LENGTH_TITLE', 'Strasse');
|
||||
define('ENTRY_STREET_ADDRESS_MIN_LENGTH_DESC', 'Mindestlänge des Strassennamens');
|
||||
|
||||
define('ENTRY_COMPANY_LENGTH_TITLE', 'Firma');
|
||||
define('ENTRY_COMPANY_LENGTH_DESC', 'Mindestlänge des Firmennames');
|
||||
|
||||
define('ENTRY_POSTCODE_MIN_LENGTH_TITLE', 'Postleitzahl');
|
||||
define('ENTRY_POSTCODE_MIN_LENGTH_DESC', 'Mindestlänge der Postleitzahl');
|
||||
|
||||
define('ENTRY_CITY_MIN_LENGTH_TITLE', 'Stadt');
|
||||
define('ENTRY_CITY_MIN_LENGTH_DESC', 'Mindestlänge des Namens der Stadt');
|
||||
|
||||
define('ENTRY_STATE_MIN_LENGTH_TITLE', 'Bundesland');
|
||||
define('ENTRY_STATE_MIN_LENGTH_DESC', 'Mindestlänge des Namens des Bundeslandes');
|
||||
|
||||
define('ENTRY_TELEPHONE_MIN_LENGTH_TITLE', 'Telefonnummer');
|
||||
define('ENTRY_TELEPHONE_MIN_LENGTH_DESC', 'Mindestlänge der Telefonnummer');
|
||||
|
||||
define('ENTRY_PASSWORD_MIN_LENGTH_TITLE', 'Passwort');
|
||||
define('ENTRY_PASSWORD_MIN_LENGTH_DESC', 'Mindestlänge des Passworts');
|
||||
|
||||
define('MIN_DISPLAY_BESTSELLERS_TITLE', 'Verkaufsschlager');
|
||||
define('MIN_DISPLAY_BESTSELLERS_DESC', 'Minimale Anzahl der Verkaufsschlager, die angezeigt werden.');
|
||||
|
||||
define('MIN_DISPLAY_ALSO_PURCHASED_TITLE', 'Kunden kauften auch');
|
||||
define('MIN_DISPLAY_ALSO_PURCHASED_DESC', 'Minimale Anzahl von Produkten, die im \'Kunden kauften auch\'-Block angezeigt werden.');
|
||||
|
||||
define('MIN_DISPLAY_XSELL_PRODUCTS_TITLE', 'Produkt-Empfehlungen');
|
||||
define('MIN_DISPLAY_XSELL_PRODUCTS_DESC', 'Minimale Anzahl von Produkten, die im \'Produkt-Empfehlungen\'-Block angezeigt werden.');
|
||||
|
||||
define('MAX_ADDRESS_BOOK_ENTRIES_TITLE', 'Anzahl Adressbucheinträge');
|
||||
define('MAX_ADDRESS_BOOK_ENTRIES_DESC', 'Maximale Anzahl von Adressbucheinträgen, die ein Kunde besitzen darf.');
|
||||
|
||||
define('MAX_DISPLAY_SEARCH_RESULTS_TITLE', 'Anzahl Suchergebnisse');
|
||||
define('MAX_DISPLAY_SEARCH_RESULTS_DESC', 'Maximal Anzahl der Artikel, die als Suchergebnis angezeigt werden.');
|
||||
|
||||
define('MAX_DISPLAY_PAGE_LINKS_TITLE', 'Seiten-Links');
|
||||
define('MAX_DISPLAY_PAGE_LINKS_DESC', 'Number of \'number\' links use for page-sets');
|
||||
|
||||
define('MAX_DISPLAY_NEW_PRODUCTS_TITLE', 'Neue Produkte');
|
||||
define('MAX_DISPLAY_NEW_PRODUCTS_DESC', 'Maximale Anzahl von neuen Produkten, die in jeder Kategorie angezeigt werden.');
|
||||
|
||||
define('MAX_DISPLAY_UPCOMING_PRODUCTS_TITLE', 'Erwartete Produkte');
|
||||
define('MAX_DISPLAY_UPCOMING_PRODUCTS_DESC', 'Maximale Anzahl der erwarteten Produkte, die angezeigt werden.');
|
||||
|
||||
define('MAX_RANDOM_SELECT_NEW_TITLE', 'Zufällige Produktanzeigen');
|
||||
define('MAX_RANDOM_SELECT_NEW_DESC', 'Die Menge der neuen Produkte, aus denen per Zufall ein Produkt angezeigt wird');
|
||||
|
||||
define('MAX_DISPLAY_PRODUCTS_NEW_TITLE', 'Anzahl neue Produkte');
|
||||
define('MAX_DISPLAY_PRODUCTS_NEW_DESC', 'Anzahl der neuen Produkte, die in der Übersicht der neuen Produkte maximal angezeigt werden');
|
||||
|
||||
define('MAX_DISPLAY_BESTSELLERS_TITLE', 'Verkaufsschlager');
|
||||
define('MAX_DISPLAY_BESTSELLERS_DESC', 'Maximale Anzahl der anzuzeigenden Verkaufsschlager');
|
||||
|
||||
define('MAX_DISPLAY_ALSO_PURCHASED_TITLE', 'Kunden kauften auch');
|
||||
define('MAX_DISPLAY_ALSO_PURCHASED_DESC', 'Maximale Anzahl von Produkten die im \'Kunden kauften auch\'-Block angezeigt werden');
|
||||
|
||||
define('MAX_DISPLAY_ORDER_HISTORY_TITLE', 'Anzahl Bestellungen im Bestellübersicht-Block');
|
||||
define('MAX_DISPLAY_ORDER_HISTORY_DESC', 'Maximale Anzahl von Bestellungen im Bestellübersichts-Block');
|
||||
|
||||
define('MAX_DISPLAY_XSELL_PRODUCTS_TITLE', 'Produkt-Empfehlungen');
|
||||
define('MAX_DISPLAY_XSELL_PRODUCTS_DESC', 'Maximale Anzahl von Produkten, die im \'Produkt-Empfehlungen\'-Block angezeigt werden');
|
||||
|
||||
define('MAX_DISPLAY_WISHLIST_PRODUCTS_TITLE', 'Wunschzettel');
|
||||
define('MAX_DISPLAY_WISHLIST_PRODUCTS_DESC', 'Maximale Anzahl von Produkten auf der Wunschzettel-Seite');
|
||||
|
||||
|
||||
define('MAX_DISPLAY_PRODUCTS_IN_PRODUCTS_HISTORY_BOX_TITLE', 'Anzahl der kürzlich besuchten Produkte');
|
||||
define('MAX_DISPLAY_PRODUCTS_IN_PRODUCTS_HISTORY_BOX_DESC', 'Maximale Anzahl von Produkten, die im \'Products History\'-Block angezeigt werden. Dies sind die Produkte, die sich der Shopbesucher kürzlich angesehen hat.');
|
||||
|
||||
define('SMALL_IMAGE_WIDTH_TITLE', 'Breite kleine Bilder');
|
||||
define('SMALL_IMAGE_WIDTH_DESC', 'Die Breite von kleinen Bildern in Pixeln');
|
||||
|
||||
define('SMALL_IMAGE_HEIGHT_TITLE', 'Höhe kleine Bilder');
|
||||
define('SMALL_IMAGE_HEIGHT_DESC', 'Die Höhe von kleinen Bildern in Pixeln');
|
||||
|
||||
define('SUBCATEGORY_IMAGE_WIDTH_TITLE', 'Breite Unterkategorie-Bilder');
|
||||
define('SUBCATEGORY_IMAGE_WIDTH_DESC', 'Die Breite von Unterkategorie-Bildern in Pixeln');
|
||||
|
||||
define('SUBCATEGORY_IMAGE_HEIGHT_TITLE', 'Höhe Unterkategorie-Bilder');
|
||||
define('SUBCATEGORY_IMAGE_HEIGHT_DESC', 'Die Höhe von Unterkategorie-Bildern in Pixeln');
|
||||
|
||||
define('IMAGE_ZOOM_TITLE', 'Bild auf der Produktinfo Seite vergrößern.');
|
||||
define('IMAGE_ZOOM_DESC', 'Bild vergrößern bei:');
|
||||
|
||||
define('IMAGE_ZOOM_TITLE', 'Bild auf der Produktinfo Seite vergrößern.');
|
||||
define('IMAGE_ZOOM_DESC', 'Bild vergrößern bei:');
|
||||
|
||||
define('ZOOM_BUTTON_TITLE', 'Position der Schaltfläche \'Zoom In\'.');
|
||||
define('ZOOM_BUTTON_DESC', 'Die Button Position auf dem Bild der Produktinfo Seite');
|
||||
|
||||
define('CUSTOMER_NOT_LOGIN_TITLE', 'Zugangsberechtigung');
|
||||
define('CUSTOMER_NOT_LOGIN_DESC', 'Die Zugangsberechtigung wird durch den Administrator nach Prüfung der Kundendaten erteilt');
|
||||
|
||||
define('SEND_CUSTOMER_EDIT_EMAILS_TITLE', 'Kundendaten per Mail');
|
||||
define('SEND_CUSTOMER_EDIT_EMAILS_DESC', 'Die Kundendaten werden per E-Mail an den Shopbetreiber versandt');
|
||||
|
||||
define('DEFAULT_MAX_ORDER_TITLE', 'Kundenkredit');
|
||||
define('DEFAULT_MAX_ORDER_DESC', 'Maximaler Wert einer Bestellung');
|
||||
|
||||
define('ACCOUNT_GENDER_TITLE', 'Anrede');
|
||||
define('ACCOUNT_GENDER_DESC', 'Die Anrede wird angezeigt und als Eingabe zwingend gefordert, wenn auf \'true\' gesetzt wird. Sonst wird es als nicht als Eingabemöglichkeit angezeigt.');
|
||||
|
||||
define('ACCOUNT_DOB_TITLE', 'Geburtsdatum');
|
||||
define('ACCOUNT_DOB_DESC', 'Das Gebutsdatum wird als Eingabe zwingend gefordert, wenn auf \'true\' gesetzt wird. Sonst wird es als nicht als Eingabemöglichkeit angezeigt.');
|
||||
|
||||
define('ACCOUNT_COMPANY_TITLE', 'Firmenname');
|
||||
define('ACCOUNT_COMPANY_DESC', 'Ein Firmenname für gewerbliche Kunden kann eingegeben werden. Die Eingabe ist nicht zwingend notwendig.');
|
||||
|
||||
define('ACCOUNT_OWNER_TITLE', 'Inhaber');
|
||||
define('ACCOUNT_OWNER_DESC', 'Der Inhaber der Firmen bei gewerblichen Kunden kann eingegeben werden. Die Eingabe ist nicht zwingend notwendig.');
|
||||
|
||||
define('ACCOUNT_VAT_ID_TITLE', 'Umsatzsteuer ID');
|
||||
define('ACCOUNT_VAT_ID_DESC', 'Die Umsatzsteuer ID bei gewerblichen Kunden kann eingegeben werden.');
|
||||
|
||||
define('ACCOUNT_STATE_TITLE', 'Bundesland');
|
||||
define('ACCOUNT_STATE_DESC', 'Die Anzeige und Eingabe des Bundeslandes wird ermöglicht. Die Eingabe ist bei Anzeige zwingend notwendig.');
|
||||
|
||||
define('ACCOUNT_TELEPHONE_TITLE', 'Telefonnummer');
|
||||
define('ACCOUNT_TELEPHONE_DESC', 'Die Anzeige und Eingabe der Telefonnummer wird ermöglicht. Die Eingabe ist nicht zwingend notwendig.');
|
||||
|
||||
define('NEWSLETTER_TITLE', 'Newsletter');
|
||||
define('NEWSLETTER_DESC', 'Möchten Sie einen Newsletter anbieten?');
|
||||
|
||||
define('PRODUCTS_NOTIFICATIONS_TITLE', 'Produkt-Meldungen');
|
||||
define('PRODUCTS_NOTIFICATIONS_DESC', 'Möchten Sie Produkt-Meldungen per Mail anbieten?');
|
||||
|
||||
define('STORE_ORIGIN_COUNTRY_TITLE', 'Ländercode');
|
||||
define('STORE_ORIGIN_COUNTRY_DESC', 'Eingabe des "ISO 3166"-Ländercodes des Shops, der im Versandbereich benutzt werden soll. Zum Finden Ihres Ländercodes besuchen Sie die <a href="http://www.din.de/gremien/nas/nabd/iso3166ma/codlstp1/index.html" target="_blank">ISO 3166');
|
||||
|
||||
define('STORE_ORIGIN_ZIP_TITLE', 'Postleitzahl');
|
||||
define('STORE_ORIGIN_ZIP_DESC', 'Eingabe der Postleitzahl des Shops, die im Versandbereich benutzt werden soll.');
|
||||
|
||||
define('SHIPPING_MAX_WEIGHT_TITLE', 'Maximales Gewicht einer Bestellung');
|
||||
define('SHIPPING_MAX_WEIGHT_DESC', 'Versandunternehmen haben ein Höchstgewicht für einzelne Pakete. Dies hier ist ein Wert, der für alle Unternehmen gleichermaßen gilt.');
|
||||
|
||||
define('SHIPPING_BOX_WEIGHT_TITLE', 'Gewicht der Verpackung.');
|
||||
define('SHIPPING_BOX_WEIGHT_DESC', 'Wie hoch ist im Schnitt das Gewicht der Verpackung eines kleinen bis mittleren Paketes?');
|
||||
|
||||
define('SHIPPING_BOX_PADDING_TITLE', 'Prozentuale Mehrkosten für schwerere Pakete.');
|
||||
define('SHIPPING_BOX_PADDING_DESC', 'Prozentuale Mehrkosten für schwerere Pakete. Für 10% einfach 10 eingeben.');
|
||||
|
||||
define('STOCK_CHECK_TITLE', 'Bestandsprüfung');
|
||||
define('STOCK_CHECK_DESC', 'Soll der Shop eine Bestandsprüfung durchführen?');
|
||||
|
||||
define('STOCK_LIMITED_TITLE', 'Lagerbestand aktualisieren');
|
||||
define('STOCK_LIMITED_DESC', 'Soll der Shop nach einem Kauf den Artikel vom Bestand abziehen?');
|
||||
|
||||
define('STOCK_ALLOW_CHECKOUT_TITLE', 'Kaufen erlauben');
|
||||
define('STOCK_ALLOW_CHECKOUT_DESC', 'Darf ein Kunde die Kaufabwicklung auch abschließen, wenn er Artikel gekauft hat, die nicht mehr vorrätig sind?');
|
||||
|
||||
define('STOCK_MARK_PRODUCT_OUT_OF_STOCK_TITLE', 'Produktmarkierung, wenn nicht auf Lager');
|
||||
define('STOCK_MARK_PRODUCT_OUT_OF_STOCK_DESC', 'Kennzeichnung für Produkte, die nicht mehr vorrätig sind');
|
||||
|
||||
|
||||
define('STOCK_REORDER_LEVEL_TITLE', 'Unterschrittene Mengen im Lagerbestand');
|
||||
define('STOCK_REORDER_LEVEL_DESC', 'Ab diesem Bestand erfolgt eine Meldung an den Administrator');
|
||||
|
||||
define('STORE_PAGE_PARSE_TIME_TITLE', 'Speichere die Erstellungszeit einer Seite');
|
||||
define('STORE_PAGE_PARSE_TIME_DESC', 'Die Zeit, die der Server zur Erstellung der Seite benötigt, wird gespeichert.');
|
||||
|
||||
define('STORE_PAGE_PARSE_TIME_LOG_TITLE', 'Ziel der Protokolldatei');
|
||||
define('STORE_PAGE_PARSE_TIME_LOG_DESC', 'Verzeichnis und Dateiname der Datei, in der die Seitenerstellungszeiten gespeichert werden.');
|
||||
|
||||
define('STORE_PARSE_DATE_TIME_FORMAT_TITLE', 'Datumsformat der Protokolldatei');
|
||||
define('STORE_PARSE_DATE_TIME_FORMAT_DESC', 'Format von Datum und Uhrzeit.');
|
||||
|
||||
define('DISPLAY_PAGE_PARSE_TIME_TITLE', 'Anzeige der Erstellungszeit einer Seite');
|
||||
define('DISPLAY_PAGE_PARSE_TIME_DESC', 'Die Erstellungszeit einer Seite ist für den Besucher des Shops sichtbar. (\'Speichere die Erstellungszeit einer Seite\' muß aktiviert sein.)');
|
||||
|
||||
define('USE_CACHE_TITLE', 'Benutze Cache');
|
||||
define('USE_CACHE_DESC', 'Soll die Seite zwischengespeichert werden?');
|
||||
|
||||
define('DOWNLOAD_ENABLED_TITLE', 'Ermögliche Download');
|
||||
define('DOWNLOAD_ENABLED_DESC', 'Aktiviert die Shop-Funktionen, die es ermöglichen Datei herunterzuladen.');
|
||||
|
||||
define('DOWNLOAD_BY_REDIRECT_TITLE', 'Download by redirect');
|
||||
define('DOWNLOAD_BY_REDIRECT_DESC', 'Use browser redirection for download. Disable on non-Unix systems.');
|
||||
|
||||
define('DOWNLOAD_MAX_DAYS_TITLE', 'Ablaufzeit (Tage)');
|
||||
define('DOWNLOAD_MAX_DAYS_DESC', 'Setzt die Anzahl der Tage, nach denen der Link ungültig wird. 0 heißt immer gütig.');
|
||||
|
||||
define('DOWNLOAD_MAX_COUNT_TITLE', 'Maximale Anzahl der Downloads');
|
||||
define('DOWNLOAD_MAX_COUNT_DESC', 'Setzt die maximal mögliche Anzahl der Downloads, 0 heißt dass kein Download erlaubt ist.');
|
||||
|
||||
define('DOWNLOADS_CONTROLLER_ON_HOLD_MSG_TITLE', 'Downloads Controller Download on hold message');
|
||||
define('DOWNLOADS_CONTROLLER_ON_HOLD_MSG_DESC', 'Downloads Controller Download on hold message');
|
||||
|
||||
define('DOWNLOADS_CONTROLLER_ORDERS_STATUS_TITLE', 'Downloads Controller Order Status Value');
|
||||
define('DOWNLOADS_CONTROLLER_ORDERS_STATUS_DESC', 'Downloads Controller Order Status Value - Default=2');
|
||||
|
||||
define('SHOW_PRICE_TITLE', 'Produktpreis');
|
||||
define('SHOW_PRICE_DESC', 'Möchten Sie den Produktpreis anzeigen?');
|
||||
|
||||
define('SHOW_SPECIALS_PRICE_TITLE', 'Sonderangebote');
|
||||
define('SHOW_SPECIALS_PRICE_DESC', 'Möchten Sie den Angebotspreis anzeigen?');
|
||||
|
||||
define('SHOW_SPECIALS_PRICE_EXPIRES_TITLE', 'Datum Sonderangebote');
|
||||
define('SHOW_SPECIALS_PRICE_EXPIRES_DESC', 'Möchten Sie das Gültigkeitsdatum der Angebotspreise anzeigen?');
|
||||
|
||||
define('SHOW_TAX_CLASS_ID_TITLE', 'Steuersatz');
|
||||
define('SHOW_TAX_CLASS_ID_DESC', 'Möchten Sie den Steuersatz anzeigen?');
|
||||
|
||||
define('SHOW_OPTIONS_TITLE', 'Produktoptionen');
|
||||
define('SHOW_OPTIONS_DESC', 'Möchten Sie die Produktoptionen anzeigen?');
|
||||
|
||||
define('SHOW_OPTIONS_PRICE_TITLE', 'Preis der Produktoptionen');
|
||||
define('SHOW_OPTIONS_PRICE_DESC', 'Möchten Sie die Preise der Produktoptionen anzeigen?');
|
||||
|
||||
define('SECURITY_CODE_LENGTH_TITLE', 'Einlösungscode');
|
||||
define('SECURITY_CODE_LENGTH_DESC', 'Setzt die Länge des Einlöngscodes, je länger dieser ist, desto sicherer ist er.');
|
||||
|
||||
define('NEW_SIGNUP_GIFT_VOUCHER_AMOUNT_TITLE', 'Neukunden Gutschein');
|
||||
define('NEW_SIGNUP_GIFT_VOUCHER_AMOUNT_DESC', 'Setzt die Höhe des Gutscheines, den ein Neukunde geschenkt bekommt fest. Feld leer lassen, wenn Neukunden kein \'Begrüßungsgeschenk\' bekommen sollen.');
|
||||
|
||||
define('NEW_SIGNUP_DISCOUNT_COUPON_TITLE', 'Coupon-ID');
|
||||
define('NEW_SIGNUP_DISCOUNT_COUPON_DESC', 'Dies ist die Coupon-ID, die ein Neukunde per E-Mail erhält. Ist keine ID gesetzt, wird keine E-Mail verschickt.');
|
||||
|
||||
define('STORE_TEMPLATES_TITLE', 'Layout Vorlage');
|
||||
define('STORE_TEMPLATES_DESC', 'Shop Templates');
|
||||
|
||||
define('SHOW_DATE_ADDED_AVAILABLE_TITLE', 'Produkt - Datum');
|
||||
define('SHOW_DATE_ADDED_AVAILABLE_DESC', 'Möchten Sie im Shop das Datum von der Aufnahme des Produktes zeigen?');
|
||||
|
||||
define('SHOW_COUNTS_TITLE', 'Artikelanzahl hinter den Kategorienamen');
|
||||
define('SHOW_COUNTS_DESC', 'Anzeigen, wieviele Produkte in jeder Kategorie vorhanden sind');
|
||||
|
||||
define('DISPLAY_CART_TITLE', 'Warenkorb anzeigen');
|
||||
define('DISPLAY_CART_DESC', 'Zeigt den Warenkorb an, nachdem diesem ein Produkt hinzugefügt wurde');
|
||||
|
||||
define('OOS_SMALL_IMAGE_WIDTH_TITLE', 'Breite kleine Bilder');
|
||||
define('OOS_SMALL_IMAGE_WIDTH_DESC', 'Die Breite von kleinen Bildern in Pixeln');
|
||||
|
||||
define('OOS_SMALL_IMAGE_HEIGHT_TITLE', 'Höhe kleine Bilder');
|
||||
define('OOS_SMALL_IMAGE_HEIGHT_DESC', 'Die Höhe von kleinen Bildern in Pixeln');
|
||||
|
||||
define('OOS_BIGIMAGE_WIDTH_TITLE', 'Breite grosses Bild');
|
||||
define('OOS_BIGIMAGE_WIDTH_DESC', 'Breite vom grossen Bild in Pixel');
|
||||
|
||||
define('OOS_BIGIMAGE_HEIGHT_TITLE', 'Höhe grosses Bild');
|
||||
define('OOS_BIGIMAGE_HEIGHT_DESC', 'Höhe vom grossen Bild in Pixel');
|
||||
|
||||
define('OOS_META_TITLE_TITLE', 'Shop Titel');
|
||||
define('OOS_META_TITLE_DESC', 'Der Titel');
|
||||
|
||||
define('OOS_META_DESCRIPTION_TITLE', 'Beschreibung');
|
||||
define('OOS_META_DESCRIPTION_DESC', 'Die Beschreibung Ihres Shop(max. 250 Zeichen)');
|
||||
|
||||
define('OOS_META_AUTHOR_TITLE', 'Autor');
|
||||
define('OOS_META_AUTHOR_DESC', 'Der Autor des Shop');
|
||||
|
||||
define('OOS_META_COPYRIGHT_TITLE', 'Copyright');
|
||||
define('OOS_META_COPYRIGHT_DESC', 'Der Entwickler des Shop');
|
||||
|
||||
define('SITE_ICONS_TITLE', 'Website Icons');
|
||||
define('SITE_ICONS_DESC', 'Website-Icons erscheinen in Browser-Tabs und Lesezeichenleisten. Laden Sie hier eins hoch!');
|
||||
|
||||
define('FACEBOOK_URL_TITLE', 'Facebook');
|
||||
define('FACEBOOK_URL_DESC', 'URL der Facebook Seite');
|
||||
|
||||
define('SKYPE_URL_TITLE', 'Skype');
|
||||
define('SKYPE_URL_DESC', 'URL der Skype Seite');
|
||||
|
||||
define('LINKEDIN_URL_TITLE', 'Linkedin');
|
||||
define('LINKEDIN_URL_DESC', 'URL der Linkedin Seite');
|
||||
|
||||
define('PINTEREST_URL_TITLE', 'Pinterest');
|
||||
define('PINTEREST_URL_DESC', 'URL der Pinterest Seite');
|
||||
|
||||
define('TWITTER_URL_TITLE', 'Twitter');
|
||||
define('TWITTER_URL_DESC', 'URL der Twitter Seite');
|
||||
|
||||
define('DRIBBBLE_URL_TITLE', 'Dribbble');
|
||||
define('DRIBBBLE_URL_DESC', 'URL der Dribbble Seite');
|
||||
|
||||
|
||||
define('ENABLE_SPIDER_FRIENDLY_LINKS_TITLE', 'Spider-frundliche Links');
|
||||
define('ENABLE_SPIDER_FRIENDLY_LINKS_DESC', 'Ermögliche Spider-freundliche Links (empfohlen). ACHTUNG: Es sind ggf. Änderungen in der Konfiguration des Webservers notwendig!');
|
@ -0,0 +1,41 @@
|
||||
<?php
|
||||
|
||||
define('1_TITLE', 'My Store');
|
||||
define('1_DESC', 'Allgemeine Informationen über meinen Shop.');
|
||||
|
||||
define('2_TITLE', 'Minimalwerte');
|
||||
define('2_DESC', 'Die Minimalwerte für Funktionen / Daten');
|
||||
|
||||
define('3_TITLE', 'Maximalwerte');
|
||||
define('3_DESC', 'Die Maximalwerte für Funktionen / Daten');
|
||||
|
||||
define('4_TITLE', 'Bilder');
|
||||
define('4_DESC', 'Parameter für Bilder');
|
||||
|
||||
define('5_TITLE', 'Kunden Informationen');
|
||||
define('5_DESC', 'Kundendaten-Konfiguration');
|
||||
|
||||
define('6_TITLE', 'Module Options');
|
||||
define('6_DESC', 'Hidden from configuration');
|
||||
|
||||
define('7_TITLE', 'Verpackung & Versand');
|
||||
define('7_DESC', 'Versandoptionen meines Shops');
|
||||
|
||||
define('8_TITLE', 'Lager');
|
||||
define('8_DESC', 'Konfiguration der Lageroptionen');
|
||||
|
||||
define('9_TITLE', 'Download');
|
||||
define('9_DESC', 'Konfiguration der downloadbaren Artikel');
|
||||
|
||||
define('10_TITLE', 'Gutscheine');
|
||||
define('10_DESC', 'Konfiguration der Gutschein-Optionen');
|
||||
|
||||
define('11_TITLE', 'Shop Gestaltung');
|
||||
define('11_DESC', 'Optionen für das Layout');
|
||||
|
||||
define('12_TITLE', 'Meta-Tag');
|
||||
define('12_DESC', 'Pflegen Sie hier die Daten, die die Suchmaschinen einlesen');
|
||||
|
||||
define('13_TITLE', 'Social Profile');
|
||||
define('13_DESC', 'Geben Sie die Daten zu den sozialen Netzwerkprofilen Ihrer Site an, damit Suchmaschinen erkennen, welche Profile zu dieser Site gehören.');
|
||||
|
47
msd2/myoos/admin/includes/languages/deu/content_block.php
Normal file
47
msd2/myoos/admin/includes/languages/deu/content_block.php
Normal file
@ -0,0 +1,47 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: content_block.php,v 1.3 2007/06/13 16:15:14 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
define('HEADING_TITLE', 'Content Block');
|
||||
|
||||
define('TABLE_HEADING_BLOCK', 'Block');
|
||||
define('TABLE_HEADING_COLUMN', 'Column');
|
||||
define('TABLE_HEADING_SORT_ORDER', 'Reihenfolge');
|
||||
define('TABLE_HEADING_STATUS', 'Status');
|
||||
define('TABLE_HEADING_LOGIN', 'Login');
|
||||
define('TABLE_HEADING_ACTION', 'Aktion');
|
||||
|
||||
define('TEXT_HEADING_NEW_BLOCK', 'Neue Block');
|
||||
define('TEXT_HEADING_EDIT_BLOCK', 'Block bearbeiten');
|
||||
define('TEXT_HEADING_DELETE_BLOCK', 'Block löschen');
|
||||
|
||||
define('TEXT_DATE_ADDED', 'hinzugefügt am:');
|
||||
define('TEXT_LAST_MODIFIED', 'letzte Änderung am:');
|
||||
|
||||
define('TEXT_NEW_INTRO', 'Bitte geben Sie den neuen Block mit allen relevanten Daten ein.');
|
||||
define('TEXT_EDIT_INTRO', 'Bitte führen Sie alle notwendigen Änderungen durch');
|
||||
|
||||
define('TEXT_BLOCK_FUNCTION', 'Funktion');
|
||||
define('TEXT_BLOCK_CACHE', 'cache id');
|
||||
define('TEXT_BLOCK_LOGIN', 'Login');
|
||||
define('TEXT_BLOCK_NAME', 'Block - Name');
|
||||
define('TEXT_BLOCK_PAGE', 'Seite');
|
||||
|
||||
define('TEXT_DELETE_INTRO', 'Sind Sie sicher, dass Sie diesen Block löschen möchten?');
|
||||
|
@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: content_page_type.php,v 1.3 2007/06/13 16:15:14 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
define('HEADING_TITLE', 'Seitentyp');
|
||||
|
||||
define('TABLE_HEADING_PAGE_TYPE', 'Seitentyp');
|
||||
define('TABLE_HEADING_ACTION', 'Aktion');
|
||||
|
||||
define('TEXT_INFO_EDIT_INTRO', 'Bitte führen Sie alle notwendigen Änderungen durch');
|
||||
define('TEXT_INFO_PAGE_TYPE_NAME', 'Seitentyp:');
|
||||
define('TEXT_INFO_INSERT_INTRO', 'Bitte geben Sie den neuen Seitentyp mit allen relevanten Daten ein');
|
||||
define('TEXT_INFO_DELETE_INTRO', 'Sind Sie sicher, dass Sie diesen Bestellstatus löschen möchten?');
|
||||
define('TEXT_INFO_HEADING_NEW_PAGE_TYPE', 'Neuer Seitentyp');
|
||||
define('TEXT_INFO_HEADING_EDIT_PAGE_TYPE', 'Seitentyp bearbeiten');
|
||||
define('TEXT_INFO_HEADING_DELETE_PAGE_TYPE', 'Seitentyp löschen');
|
||||
|
||||
define('ERROR_STATUS_USED_IN_ORDERS', 'Fehler: Dieser Seitentyp wird zur Zeit noch bei den Bl<42>ken verwendet.');
|
||||
|
38
msd2/myoos/admin/includes/languages/deu/countries.php
Normal file
38
msd2/myoos/admin/includes/languages/deu/countries.php
Normal file
@ -0,0 +1,38 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: countries.php,v 1.3 2007/06/13 16:15:14 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: countries.php,v 1.8 2002/01/19 23:00:00 harley_vb
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
define('HEADING_TITLE', 'Rechnungsländer');
|
||||
|
||||
define('TABLE_HEADING_COUNTRY_NAME', 'Rechnungsland');
|
||||
define('TABLE_HEADING_COUNTRY_CODES', 'ISO Codes');
|
||||
define('TABLE_HEADING_ACTION', 'Aktion');
|
||||
|
||||
define('TEXT_INFO_EDIT_INTRO', 'Bitte führen Sie alle notwendigen Änderungen durch');
|
||||
define('TEXT_INFO_COUNTRY_NAME', 'Name:');
|
||||
define('TEXT_INFO_COUNTRY_CODE_2', 'ISO Code (2):');
|
||||
define('TEXT_INFO_COUNTRY_CODE_3', 'ISO Code (3):');
|
||||
define('TEXT_INFO_ADDRESS_FORMAT', 'Adressformat:');
|
||||
define('TEXT_INFO_INSERT_INTRO', 'Bitte geben Sie das neue Rechnungsland mit allen relevanten Daten ein');
|
||||
define('TEXT_INFO_DELETE_INTRO', 'Sind Sie sicher, dass Sie das Rechnungsland löschen möchten?');
|
||||
define('TEXT_INFO_HEADING_NEW_COUNTRY', 'neues Rechnungsland');
|
||||
define('TEXT_INFO_HEADING_EDIT_COUNTRY', 'Rechnungsland bearbeiten');
|
||||
define('TEXT_INFO_HEADING_DELETE_COUNTRY', 'Rechnungsland löschen');
|
||||
|
94
msd2/myoos/admin/includes/languages/deu/coupon_admin.php
Normal file
94
msd2/myoos/admin/includes/languages/deu/coupon_admin.php
Normal file
@ -0,0 +1,94 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: coupon_admin.php,v 1.8 2008/01/20 12:42:14 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: coupon_admin.php,v 1.1.2.2 2003/05/15 23:10:55 wilt
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
define('TOP_BAR_TITLE', 'Statistik');
|
||||
define('HEADING_TITLE', 'Gutscheine');
|
||||
define('HEADING_TITLE_STATUS', 'Status : ');
|
||||
define('TEXT_CUSTOMER', 'Kunde:');
|
||||
define('TEXT_COUPON', 'Gutschein Name');
|
||||
define('TEXT_COUPON_ALL', 'Alle Gutscheine');
|
||||
define('TEXT_COUPON_ACTIVE', 'Aktive Gutscheine');
|
||||
define('TEXT_COUPON_INACTIVE', 'Inaktive Gutscheine');
|
||||
define('TEXT_SUBJECT', 'Betreff:');
|
||||
define('TEXT_FROM', 'Von:');
|
||||
define('TEXT_FREE_SHIPPING', 'Versandkostenfrei');
|
||||
define('TEXT_MESSAGE', 'Mitteilung:');
|
||||
define('TEXT_SELECT_CUSTOMER', 'Kunde auswählen');
|
||||
define('TEXT_ALL_CUSTOMERS', 'Alle Kunden');
|
||||
define('TEXT_NEWSLETTER_CUSTOMERS', 'An alle Newsletter Abonnenten');
|
||||
define('TEXT_CONFIRM_DELETE', 'Sind Sie sicher, dass Sie diesen Gutschein löschen möchten?');
|
||||
define('TEXT_TO_REDEEM', 'Sie können den Gutschein bei Ihrer Bestellung einlösen. Geben Sie dafür Ihren Gutschein-Nummer in das Feld Gutscheine ein.');
|
||||
define('TEXT_IN_CASE', ' im Falle dass Sie Probleme haben.');
|
||||
define('TEXT_VOUCHER_IS', 'Ihre Gutschein-Nummer lautet: ');
|
||||
define('TEXT_REMEMBER', 'Heben Sie Ihre Gutschein-Nummer gut auf, nur so können Sie von diesem Angebot profitieren!');
|
||||
define('TEXT_VISIT', 'Besuchen Sie unsere Seite: ' . OOS_HTTPS_SERVER . OOS_SHOP);
|
||||
define('TEXT_ENTER_CODE', ' und geben Sie die Gutschein-Nummer ein.');
|
||||
|
||||
define('TABLE_HEADING_ACTION', 'Aktion');
|
||||
|
||||
define('CUSTOMER_ID', 'Kunden-Nummer');
|
||||
define('CUSTOMER_NAME', 'Kunden Name');
|
||||
define('REDEEM_DATE', 'Einlösedatum');
|
||||
define('IP_ADDRESS', 'IP Adresse');
|
||||
|
||||
define('TEXT_REDEMPTIONS', 'Einlöseoptionen');
|
||||
define('TEXT_REDEMPTIONS_TOTAL', 'Gesamtsumme');
|
||||
define('TEXT_REDEMPTIONS_CUSTOMER', 'Für diesen Kunden');
|
||||
define('TEXT_NO_FREE_SHIPPING', 'Nicht versandkostenfrei.');
|
||||
|
||||
define('NOTICE_EMAIL_SENT_TO', 'Zu Ihrer Information! Es wurde eine E-Mail an %s gesendet.');
|
||||
define('ERROR_NO_CUSTOMER_SELECTED', 'Fehler: Sie haben keinen Kunden ausgewählt!');
|
||||
define('COUPON_NAME', 'Gutschein Name');
|
||||
|
||||
define('COUPON_AMOUNT', 'Gutschein Wert');
|
||||
define('COUPON_CODE', 'Gutscheincode');
|
||||
define('COUPON_STARTDATE', 'Startdatum');
|
||||
define('COUPON_FINISHDATE', 'Enddatum');
|
||||
define('COUPON_FREE_SHIP', 'Versandkostenfrei');
|
||||
define('COUPON_DESC', 'Gutscheinbeschreibung');
|
||||
define('COUPON_MIN_ORDER', 'Gutschein Mindestbestellwert');
|
||||
define('COUPON_USES_COUPON', 'Gutschein wie oft einlösbar?');
|
||||
define('COUPON_USES_USER', 'Gutschein je Kunde?');
|
||||
define('COUPON_PRODUCTS', 'Zulässige Produkte');
|
||||
define('COUPON_CATEGORIES', 'Zulässige Kategorien');
|
||||
define('VOUCHER_NUMBER_USED', 'Zu benutzende Nummern');
|
||||
define('DATE_CREATED', 'Erstelldatum');
|
||||
define('DATE_MODIFIED', 'Änderungsdatum');
|
||||
define('TEXT_HEADING_NEW_COUPON', 'Erzeuge neuen Gutschein');
|
||||
define('TEXT_NEW_INTRO', 'Bitte geben Sie die folgenden Informationen ein, um einen neuen Gutschein zu erzeugen.<br />');
|
||||
|
||||
define('ERROR_NO_COUPON_AMOUNT', 'Fehler: Kein Gutschein Wert festgelegt.');
|
||||
|
||||
define('TEXT_FROM_NAME', 'Absender Name:');
|
||||
define('TEXT_FROM_MAIL', 'Absender eMail:');
|
||||
|
||||
define('COUPON_NAME_HELP', 'Ein kurzer Name für den Gutschein.');
|
||||
define('COUPON_AMOUNT_HELP', 'Geben Sie einen Gutscheinwert an. Entweder einen bestimmten Betrag oder ein Prozentzeichen (%) am Ende für einen prozentualen Nachlaß');
|
||||
define('COUPON_CODE_HELP', 'Sie können hier einen Gutscheincode eingeben, oder das Feld leer lassen. Es wird dann ein automatisch erzeugter Gutscheincode verwendet.');
|
||||
define('COUPON_STARTDATE_HELP', 'Ab wann ist der Gutschein gültig? ');
|
||||
define('COUPON_FINISHDATE_HELP', 'Bis wann ist der Gutschein gültig? ');
|
||||
define('COUPON_FREE_SHIP_HELP', 'Für diesen Gutschein kann der Kunde versandkostenfrei bestellen! Bitte beachten Sie: Diese Auswahl berschreibt den Warenwert, berücksichtigt jedoch den Mindestbestellwert!');
|
||||
define('COUPON_DESC_HELP', 'Eine Gutscheinbeschreibung für den Kunden');
|
||||
define('COUPON_MIN_ORDER_HELP', 'Einen Mindestbestellwert eingeben. Unterhalb dieses Wertes wird der Gutschein nicht eingelöst!');
|
||||
define('COUPON_USES_COUPON_HELP', 'Wie oft kann der Gutschein benutzt werden? Soll die Anzahl unlimitiert möglich sein, lassen Sie das Feld leer.');
|
||||
define('COUPON_USES_USER_HELP', 'Wie oft kann ein Kunde den Gutschein benutzen? Soll die Anzahl unlimitiert möglich sein, lassen Sie das Feld leer.');
|
||||
define('COUPON_PRODUCTS_HELP', 'Ein Liste von erlaubten Produkt-IDs (mit Komma getrennt). Lassen Sie dieses Feld leer, falls Sie keine Beschränkungen machen wollen.');
|
||||
define('COUPON_CATEGORIES_HELP', 'Eine Liste von erlaubten Kategorien (mit Komma getrennt). Lassen Sie dieses Feld leer, falls Sie keine Beschränkungen machen wollen.');
|
85
msd2/myoos/admin/includes/languages/deu/coupon_restrict.php
Normal file
85
msd2/myoos/admin/includes/languages/deu/coupon_restrict.php
Normal file
@ -0,0 +1,85 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: coupon_restrict.php,v 1.3 2007/06/13 16:15:14 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: coupon_restrict.php,v 1.1.2.1 2003/05/10 16:10:21 wilt
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
define('TOP_BAR_TITLE', 'Statistik');
|
||||
define('HEADING_TITLE', 'Gutscheine');
|
||||
define('HEADING_TITLE_STATUS', 'Status : ');
|
||||
define('TEXT_CUSTOMER', 'Customer:');
|
||||
define('TEXT_COUPON', 'Coupon Name');
|
||||
define('TEXT_COUPON_ALL', 'All Coupons');
|
||||
define('TEXT_COUPON_ACTIVE', 'Active Coupons');
|
||||
define('TEXT_COUPON_INACTIVE', 'Inactive Coupons');
|
||||
define('TEXT_SUBJECT', 'Subject:');
|
||||
define('TEXT_FROM', 'From:');
|
||||
define('TEXT_FREE_SHIPPING', 'Free Shipping');
|
||||
define('TEXT_MESSAGE', 'Message:');
|
||||
define('TEXT_SELECT_CUSTOMER', 'Select Customer');
|
||||
define('TEXT_ALL_CUSTOMERS', 'All Customers');
|
||||
define('TEXT_NEWSLETTER_CUSTOMERS', 'To All Newsletter Subscribers');
|
||||
define('TEXT_CONFIRM_DELETE', 'Are you sure you want to delete this Coupon?');
|
||||
|
||||
define('TEXT_TO_REDEEM', 'You can redeem this coupon during checkout. Just enter the code in the box provided, and click on the redeem button.');
|
||||
define('TEXT_IN_CASE', ' in case you have any problems. ');
|
||||
define('TEXT_VOUCHER_IS', 'The coupon code is ');
|
||||
define('TEXT_REMEMBER', 'Don\'t lose the coupon code, make sure to keep the code safe so you can benefit from this special offer.');
|
||||
define('TEXT_VISIT', 'when you visit ' . OOS_HTTPS_SERVER . OOS_SHOP);
|
||||
define('TEXT_ENTER_CODE', ' and enter the code ');
|
||||
|
||||
define('TABLE_HEADING_ACTION', 'Action');
|
||||
|
||||
|
||||
|
||||
define('NOTICE_EMAIL_SENT_TO', 'Notice: Email sent to: %s');
|
||||
define('ERROR_NO_CUSTOMER_SELECTED', 'Error: No customer has been selected.');
|
||||
define('COUPON_NAME', 'Coupon Name');
|
||||
//define('COUPON_VALUE', 'Coupon Value');
|
||||
define('COUPON_AMOUNT', 'Coupon Amount');
|
||||
define('COUPON_CODE', 'Coupon Code');
|
||||
define('COUPON_STARTDATE', 'Start Date');
|
||||
define('COUPON_FINISHDATE', 'End Date');
|
||||
define('COUPON_FREE_SHIP', 'Free Shipping');
|
||||
define('COUPON_DESC', 'Coupon Description');
|
||||
define('COUPON_MIN_ORDER', 'Coupon Minimum Order');
|
||||
define('COUPON_USES_COUPON', 'Uses per Coupon');
|
||||
define('COUPON_USES_USER', 'Uses per Customer');
|
||||
define('COUPON_PRODUCTS', 'Valid Product List');
|
||||
define('COUPON_CATEGORIES', 'Valid Categories List');
|
||||
define('VOUCHER_NUMBER_USED', 'Number Used');
|
||||
define('DATE_CREATED', 'Date Created');
|
||||
define('DATE_MODIFIED', 'Date Modified');
|
||||
define('TEXT_HEADING_NEW_COUPON', 'Create New Coupon');
|
||||
define('TEXT_NEW_INTRO', 'Please fill out the following information for the new coupon.<br />');
|
||||
|
||||
|
||||
define('COUPON_NAME_HELP', 'A short name for the coupon');
|
||||
define('COUPON_AMOUNT_HELP', 'The value of the discount for the coupon, either fixed or add a % on the end for a percentage discount.');
|
||||
define('COUPON_CODE_HELP', 'You can enter your own code here, or leave blank for an auto generated one.');
|
||||
define('COUPON_STARTDATE_HELP', 'The date the coupon will be valid from');
|
||||
define('COUPON_FINISHDATE_HELP', 'The date the coupon expires');
|
||||
define('COUPON_FREE_SHIP_HELP', 'The coupon gives free shiiping on an order. Note. This overides the coupon_amount figure but respects the minimum order value');
|
||||
define('COUPON_DESC_HELP', 'A description of the coupon for the customer');
|
||||
define('COUPON_MIN_ORDER_HELP', 'The minimum order value before the coupon is valid');
|
||||
define('COUPON_USES_COUPON_HELP', 'The maximum number of times the coupon can be used, leave blank if you want no limit.');
|
||||
define('COUPON_USES_USER_HELP', 'Number of times a user can use the coupon, leave blank for no limit.');
|
||||
define('COUPON_PRODUCTS_HELP', 'A comma separated list of product_ids that this coupon can be used with. Leave blank for no restrictions.');
|
||||
define('COUPON_CATEGORIES_HELP', 'A comma separated list of cpaths that this coupon can be used with, leave blank for no restrictions.');
|
||||
|
48
msd2/myoos/admin/includes/languages/deu/currencies.php
Normal file
48
msd2/myoos/admin/includes/languages/deu/currencies.php
Normal file
@ -0,0 +1,48 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: currencies.php,v 1.3 2007/06/13 16:15:14 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: currencies.php,v 1.14 2002/01/17 11:41:26 jan0815
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
define('HEADING_TITLE', 'Währungen');
|
||||
|
||||
define('TABLE_HEADING_CURRENCY_NAME', 'Währung');
|
||||
define('TABLE_HEADING_CURRENCY_CODES', 'Kürzel');
|
||||
define('TABLE_HEADING_CURRENCY_VALUE', 'Wert');
|
||||
define('TABLE_HEADING_ACTION', 'Aktion');
|
||||
|
||||
define('TEXT_INFO_EDIT_INTRO', 'Bitte führen Sie alle notwendigen Änderungen durch');
|
||||
define('TEXT_INFO_CURRENCY_TITLE', 'Name:');
|
||||
define('TEXT_INFO_CURRENCY_CODE', 'Kürzel:');
|
||||
define('TEXT_INFO_CURRENCY_SYMBOL_LEFT', 'Symbol Links:');
|
||||
define('TEXT_INFO_CURRENCY_SYMBOL_RIGHT', 'Symbol Rechts:');
|
||||
define('TEXT_INFO_CURRENCY_DECIMAL_POINT', 'Dezimalkomma:');
|
||||
define('TEXT_INFO_CURRENCY_THOUSANDS_POINT', 'Tausenderpunkt:');
|
||||
define('TEXT_INFO_CURRENCY_DECIMAL_PLACES', 'Dezimalstellen:');
|
||||
define('TEXT_INFO_CURRENCY_LAST_UPDATED', 'letzte Änderung:');
|
||||
define('TEXT_INFO_CURRENCY_VALUE', 'Wert:');
|
||||
define('TEXT_INFO_CURRENCY_EXAMPLE', 'Beispiel:');
|
||||
define('TEXT_INFO_INSERT_INTRO', 'Bitte geben Sie die neue Währung mit allen relevanten Daten ein');
|
||||
define('TEXT_INFO_DELETE_INTRO', 'Sind Sie sicher, dass Sie diese Währung löschen möchten?');
|
||||
define('TEXT_INFO_HEADING_NEW_CURRENCY', 'neue Währung');
|
||||
define('TEXT_INFO_HEADING_EDIT_CURRENCY', 'Währung bearbeiten');
|
||||
define('TEXT_INFO_HEADING_DELETE_CURRENCY', 'Währung löschen');
|
||||
define('TEXT_INFO_SET_AS_DEFAULT', TEXT_SET_DEFAULT . ' (manuelles Aktualisieren der Wechselkurse erforderlich.)');
|
||||
define('ERROR_REMOVE_DEFAULT_CURRENCY', 'Fehler: Die Standardwährung darf nicht gelöscht werden. Bitte definieren Sie eine neue Standardwährung und wiederholen Sie den Vorgang.');
|
||||
|
80
msd2/myoos/admin/includes/languages/deu/customers.php
Normal file
80
msd2/myoos/admin/includes/languages/deu/customers.php
Normal file
@ -0,0 +1,80 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: customers.php,v 1.3 2007/06/13 16:15:14 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: customers.php,v 1.13 2002/06/15 12:19:14 harley_vb
|
||||
----------------------------------------------------------------------
|
||||
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.
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
define('HEADING_TITLE', 'Kunden');
|
||||
define('HEADING_TITLE_SEARCH', 'Suche:');
|
||||
|
||||
define('TABLE_HEADING_FIRSTNAME', 'Vorname');
|
||||
define('TABLE_HEADING_LASTNAME', 'Nachname');
|
||||
define('TABLE_HEADING_ACCOUNT_CREATED', 'Zugang erstellt am');
|
||||
define('TABLE_HEADING_ACTION', 'Aktion');
|
||||
define('HEADING_TITLE_STATUS', 'Status:');
|
||||
define('TEXT_ALL_CUSTOMERS', 'Alle Kunden');
|
||||
define('HEADING_TITLE_LOGIN', 'Zugang');
|
||||
|
||||
define('TEXT_INFO_HEADING_STATUS_CUSTOMER', 'Kundenstatus ändern');
|
||||
define('TEXT_NO_CUSTOMER_HISTORY', 'Keine Kundenstatus History vorhanden');
|
||||
define('TABLE_HEADING_NEW_VALUE', 'Neuer Status');
|
||||
define('TABLE_HEADING_OLD_VALUE', 'Alter Status');
|
||||
define('TABLE_HEADING_CUSTOMER_NOTIFIED', 'Kunde benachrichtigt');
|
||||
define('TABLE_HEADING_DATE_ADDED', 'Hinzugefügt am:');
|
||||
|
||||
define('CATEGORY_MAX_ORDER', 'Max. Bestellwert');
|
||||
define('ENTRY_MAX_ORDER', 'Kundenkredit:');
|
||||
|
||||
define('ENTRY_VAT_ID_STATUS', 'UmsatzsteuerID geprüft');
|
||||
define('ENTRY_VAT_ID_STATUS_YES', 'ja');
|
||||
define('ENTRY_VAT_ID_STATUS_NO', 'nein');
|
||||
|
||||
define('TEXT_DATE_ACCOUNT_CREATED', 'Zugang erstellt am:');
|
||||
define('TEXT_DATE_ACCOUNT_LAST_MODIFIED', 'letzte Änderung:');
|
||||
define('TEXT_INFO_DATE_LAST_LOGON', 'letzte Anmeldung:');
|
||||
define('TEXT_INFO_NUMBER_OF_LOGONS', 'Anzahl der Anmeldungen:');
|
||||
define('TEXT_INFO_COUNTRY', 'Land:');
|
||||
define('TEXT_INFO_NUMBER_OF_REVIEWS', 'Anzahl der Artikelbewertungen:');
|
||||
define('TEXT_DELETE_INTRO', 'Wollen Sie diesen Kunden wirklich löschen?');
|
||||
define('TEXT_DELETE_REVIEWS', '%s Bewertung(en) löschen');
|
||||
define('TEXT_INFO_HEADING_DELETE_CUSTOMER', 'Kunden löschen');
|
||||
define('TYPE_BELOW', 'Bitte unten eingeben');
|
||||
define('PLEASE_SELECT', 'Auswählen');
|
||||
|
||||
define('EMAIL_SUBJECT', 'Willkommen bei ' . STORE_NAME);
|
||||
define('EMAIL_GREET_MR', 'Sehr geehrter Herr ');
|
||||
define('EMAIL_GREET_MS', 'Sehr geehrte Frau ');
|
||||
define('EMAIL_GREET_NONE', 'Sehr geehrte Damen und Herren,');
|
||||
define('EMAIL_WELCOME', 'willkommen bei <b>' . STORE_NAME . '</b>.' . "\n\n");
|
||||
define('EMAIL_TEXT', 'Sie können jetzt unseren <b>Online-Service</b> nutzen. Der Service bietet unter anderem:' . "\n\n" . '<li><b>Kundenwarenkorb</b> - Jeder Artikel bleibt registriert bis Sie zur Kasse gehen, oder die Produkte aus dem Warenkorb entfernen.' . "\n" . '<li><b>Adressbuch</b> - Wir können jetzt die Produkte zu der von Ihnen ausgesuchten Adresse senden. Der perfekte Weg ein Geburtstagsgeschenk zu versenden.' . "\n" . '<li><b>Vorherige Bestellungen</b> - Sie können jederzeit Ihre vorherigen Bestellungen überprüfen.' . "\n" . '<li><b>Meinungen über Produkte</b> - Teilen Sie Ihre Meinung zu unseren Produkten mit anderen Kunden.' . "\n\n");
|
||||
define('EMAIL_CONTACT', 'Falls Sie Fragen zu unserem Kunden-Service haben, wenden Sie sich bitte an den Vertrieb: ' . STORE_OWNER_EMAIL_ADDRESS . '.' . "\n\n");
|
||||
define('EMAIL_WARNING', '<b>Achtung:</b> Diese eMail-Adresse wurde uns von einem Kunden bekannt gegeben. Falls Sie sich nicht angemeldet haben, senden Sie bitte eine eMail an ' . STORE_OWNER_EMAIL_ADDRESS . '.' . "\n");
|
||||
define('EMAIL_PASSWORD_BODY', 'Ihr Passwort lautet:' . "\n\n" . ' %s' . "\n\n");
|
||||
|
||||
define('EMAIL_GV_INCENTIVE_HEADER', 'Um für Sie als Neukunden zu begrüßen, haben wir Ihnen einen Gutschein über %s gesendet.');
|
||||
define('EMAIL_GV_REDEEM', 'Der Gutscheincode lautet: %s. Sie können diesen, beim Abschluß Ihrer Bestellung eingeben');
|
||||
define('EMAIL_GV_LINK', 'Oder Sie benutzen den folgenden Link: ');
|
||||
define('EMAIL_COUPON_INCENTIVE_HEADER', 'Herzlichen Glückwunsch! Um den ersten Besuch in unserm Shop attraktiver zu machen erhalten Sie diesen Gutschein!' . "\n" .
|
||||
'Es folgen weitere Details über Ihren persönlichen Einkaufsgutschein.' . "\n\n");
|
||||
define('EMAIL_COUPON_REDEEM', 'Um den Einkaufsgutschein zu nutzen geben Sie bitte den Gutscheincode %s ' . "\n" .
|
||||
'beim Beenden Ihrer Bestellung ein!');
|
74
msd2/myoos/admin/includes/languages/deu/customers_status.php
Normal file
74
msd2/myoos/admin/includes/languages/deu/customers_status.php
Normal file
@ -0,0 +1,74 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: customers_status.php,v 1.3 2007/06/13 16:15:14 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: customers_status.php,v 1.1 2002/09/30
|
||||
----------------------------------------------------------------------
|
||||
For Customers Status v3.x
|
||||
|
||||
Contribution based on:
|
||||
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2002 - 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
define('HEADING_TITLE', 'Kundengruppen');
|
||||
|
||||
define('TABLE_HEADING_CUSTOMERS_STATUS', 'Kundengruppe');
|
||||
define('TABLE_HEADING_ACTION', 'Action');
|
||||
define('TABLE_HEADING_CUSTOMERS_QTY_DISCOUNTS', 'Staffelpreis');
|
||||
define('TABLE_HEADING_AMOUNT', 'Bestellwert');
|
||||
|
||||
define('TEXT_INFO_EDIT_INTRO', 'Bitte nehmen Sie alle nötigen Einstellungen vor');
|
||||
define('TEXT_INFO_CUSTOMERS_STATUS_NAME', 'Kundengruppe:');
|
||||
define('TEXT_INFO_CUSTOMERS_STATUS_DISCOUNT_PRICE', 'Rabatt (0 bis 100%):');
|
||||
define('TEXT_INFO_INSERT_INTRO', 'Bitte erstellen Sie eine neue Kundengruppe mit den gewünschten Einstellungen');
|
||||
define('TEXT_INFO_DELETE_INTRO', 'Sind Sie sicher, dass Sie diese Kundengruppe löschen wollen?');
|
||||
define('TEXT_INFO_HEADING_NEW_CUSTOMERS_STATUS', 'Neue Kundengruppe');
|
||||
define('TEXT_INFO_HEADING_EDIT_CUSTOMERS_STATUS', 'Kundengruppe ändern');
|
||||
define('TEXT_INFO_HEADING_DELETE_CUSTOMERS_STATUS', 'Kundengruppe löschen');
|
||||
|
||||
define('TEXT_INFO_CUSTOMERS_STATUS_DISCOUNT_OT_XMEMBER_INTRO', 'Sie können einen Kundenrabatt einstellen. Dieser Rabatt wird auf die Gesamtrechnung gegeben und wirkt sich nicht auf angezeigte Preise aus.');
|
||||
define('ENTRY_OT_XMEMBER', 'Kundenrabatt:');
|
||||
|
||||
define('TEXT_INFO_CUSTOMERS_STATUS_MINIMUM_AMOUNT_OT_XMEMBER_INTRO', 'Sie können einen Mindest-Bestellwert für diesen Kundenrabatt festlegen');
|
||||
define('ENTRY_MINIMUM_AMOUNT_OT_XMEMBER', 'Mindest-Bestellwert');
|
||||
|
||||
|
||||
define('TEXT_INFO_CUSTOMERS_STATUS_STAFFELPREIS_INTRO', 'Sie können Kunden dieser Gruppe erlauben zu Staffelpreisen einzukaufen. Ein gesetzter Kundenrabatt ergänzt sich dazu.');
|
||||
define('ENTRY_STAFFELPREIS', 'Staffelpreis:');
|
||||
|
||||
define('TEXT_INFO_CUSTOMERS_STATUS_PUBLIC_INTRO', 'Sie können die Informationen der Gruppe für den Kunden im Shop veröffentlichen. ');
|
||||
define('ENTRY_CUSTOMERS_STATUS_PUBLIC', 'Veröffentlichen : ');
|
||||
|
||||
define('TEXT_INFO_CUSTOMERS_STATUS_SHOW_PRICE_INTRO', 'Sie können die Preise anzeigen oder vor dem Besucher verstecken. Sollen die Preise nicht angezeigt werden, ist eine Bestellung von Kunden dieser Gruppe nicht möglich. ');
|
||||
define('ENTRY_CUSTOMERS_STATUS_SHOW_PRICE', 'Preise anzeigen: ');
|
||||
|
||||
define('TEXT_INFO_CUSTOMERS_STATUS_SHOW_PRICE_TAX_INTRO', 'Preisinformationen für Kunden dieser Gruppe sind incl. oder excl. MwSt.. ');
|
||||
define('ENTRY_CUSTOMERS_STATUS_SHOW_PRICE_TAX', 'Preise : ');
|
||||
|
||||
define('TEXT_INFO_CUSTOMERS_STATUS_PAYMENT_INTRO', 'Legen Sie die Zahlungsarten dieser Kundengruppe fest.');
|
||||
define('ENTRY_CUSTOMERS_STATUS_PAYMENT', 'Zahlungsweise : ');
|
||||
|
||||
define('ENTRY_YES','ja');
|
||||
define('ENTRY_NO','nein');
|
||||
|
||||
define('ENTRY_TAX_YES', 'incl. MwSt.');
|
||||
define('ENTRY_TAX_NO','excl. MwSt.');
|
||||
|
||||
define('ERROR_REMOVE_DEFAULT_CUSTOMER_STATUS', 'Fehler: Die Standardgruppe darf nicht gelöscht werden. Bitte definieren Sie eine neue Standardgruppe und wiederholen Sie den Vorgang.');
|
||||
define('ERROR_STATUS_USED_IN_CUSTOMERS', 'Fehler: Diese Kundengruppe wird zur Zeit bei Kunden verwendet.');
|
||||
define('ERROR_STATUS_USED_IN_HISTORY', 'Fehler: Diese Kundengruppe wird zur Zeit in der Bestellübersicht verwendet.');
|
||||
|
||||
|
109
msd2/myoos/admin/includes/languages/deu/edit_orders.php
Normal file
109
msd2/myoos/admin/includes/languages/deu/edit_orders.php
Normal file
@ -0,0 +1,109 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: edit_orders.php,v 1.3 2007/06/13 16:15:14 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: edit_orders.php,v 1.25 2003/08/07 00:28:44 jwh
|
||||
----------------------------------------------------------------------
|
||||
Order Editor
|
||||
|
||||
Contribution based on:
|
||||
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
define('HEADING_TITLE', 'Editing Order');
|
||||
define('HEADING_TITLE_SEARCH', 'Order ID:');
|
||||
define('HEADING_TITLE_STATUS', 'Status:');
|
||||
define('ADDING_TITLE', 'Adding a Product to Order');
|
||||
|
||||
define('ENTRY_UPDATE_TO_CC', '(Update to <b>Credit Card</b> to view CC fields.)');
|
||||
define('TABLE_HEADING_COMMENTS', 'Comments');
|
||||
define('TABLE_HEADING_CUSTOMERS', 'Customers');
|
||||
define('TABLE_HEADING_ORDER_TOTAL', 'Order Total');
|
||||
define('TABLE_HEADING_DATE_PURCHASED', 'Date Purchased');
|
||||
define('TABLE_HEADING_STATUS', 'Status');
|
||||
define('TABLE_HEADING_ACTION', 'Action');
|
||||
define('TABLE_HEADING_QUANTITY', 'Qty.');
|
||||
define('TABLE_HEADING_PRODUCTS_MODEL', 'Model');
|
||||
define('TABLE_HEADING_PRODUCTS', 'Products');
|
||||
define('TABLE_HEADING_TAX', 'Tax');
|
||||
define('TABLE_HEADING_TOTAL', 'Total');
|
||||
define('TABLE_HEADING_UNIT_PRICE', 'Unit Price');
|
||||
define('TABLE_HEADING_TOTAL_PRICE', 'Total Price');
|
||||
|
||||
define('TABLE_HEADING_CUSTOMER_NOTIFIED', 'Customer Notified');
|
||||
define('TABLE_HEADING_DATE_ADDED', 'Date Added');
|
||||
|
||||
define('ENTRY_CUSTOMER', 'Customer:');
|
||||
define('ENTRY_CUSTOMER_NAME', 'Name');
|
||||
define('ENTRY_CUSTOMER_COMPANY', 'Company');
|
||||
define('ENTRY_CUSTOMER_ADDRESS', 'Address');
|
||||
define('ENTRY_CUSTOMER_CITY', 'City');
|
||||
define('ENTRY_CUSTOMER_STATE', 'State');
|
||||
define('ENTRY_CUSTOMER_POSTCODE', 'Postcode');
|
||||
define('ENTRY_CUSTOMER_COUNTRY', 'Country');
|
||||
|
||||
define('ENTRY_SOLD_TO', 'SOLD TO:');
|
||||
define('ENTRY_DELIVERY_TO', 'Delivery To:');
|
||||
define('ENTRY_SHIP_TO', 'SHIP TO:');
|
||||
define('ENTRY_SHIPPING_ADDRESS', 'Shipping Address:');
|
||||
define('ENTRY_BILLING_ADDRESS', 'Billing Address:');
|
||||
define('ENTRY_PAYMENT_METHOD', 'Payment Method:');
|
||||
define('ENTRY_SUB_TOTAL', 'Sub-Total:');
|
||||
define('ENTRY_TAX', 'Tax:');
|
||||
define('ENTRY_SHIPPING', 'Shipping:');
|
||||
define('ENTRY_TOTAL', 'Total:');
|
||||
define('ENTRY_DATE_PURCHASED', 'Date Purchased:');
|
||||
define('ENTRY_STATUS', 'Status:');
|
||||
define('ENTRY_DATE_LAST_UPDATED', 'Date Last Updated:');
|
||||
define('ENTRY_NOTIFY_CUSTOMER', 'Notify Customer:');
|
||||
define('ENTRY_NOTIFY_COMMENTS', 'Append Comments:');
|
||||
define('ENTRY_PRINTABLE', 'Print Invoice');
|
||||
|
||||
define('TEXT_INFO_HEADING_DELETE_ORDER', 'Delete Order');
|
||||
define('TEXT_INFO_DELETE_INTRO', 'Are you sure you want to delete this order?');
|
||||
define('TEXT_INFO_RESTOCK_PRODUCT_QUANTITY', 'Restock product quantity');
|
||||
define('TEXT_DATE_ORDER_CREATED', 'Date Created:');
|
||||
define('TEXT_DATE_ORDER_LAST_MODIFIED', 'Last Modified:');
|
||||
define('TEXT_DATE_ORDER_ADDNEW', 'Add product.');
|
||||
define('TEXT_INFO_PAYMENT_METHOD', 'Payment Method:');
|
||||
|
||||
define('TEXT_ALL_ORDERS', 'All Orders');
|
||||
define('TEXT_NO_ORDER_HISTORY', 'No Order History Available');
|
||||
|
||||
define('EMAIL_SEPARATOR', '------------------------------------------------------');
|
||||
define('EMAIL_TEXT_SUBJECT', 'Order Update');
|
||||
define('EMAIL_TEXT_ORDER_NUMBER', 'Order Number:');
|
||||
define('EMAIL_TEXT_INVOICE_URL', 'Detailed Invoice:');
|
||||
define('EMAIL_TEXT_DATE_ORDERED', 'Date Ordered:');
|
||||
define('EMAIL_TEXT_STATUS_UPDATE', 'Your order has been updated to the following status.' . "\n\n" . 'New status: %s' . "\n\n" . 'Please reply to this email if you have any questions.' . "\n");
|
||||
define('EMAIL_TEXT_COMMENTS_UPDATE', 'The comments for your order are' . "\n\n%s\n\n");
|
||||
|
||||
define('ERROR_ORDER_DOES_NOT_EXIST', 'Error: Order does not exist.');
|
||||
define('SUCCESS_ORDER_UPDATED', 'Success: Order has been successfully updated.');
|
||||
define('WARNING_ORDER_NOT_UPDATED', 'Warning: Nothing to change. The order was not updated.');
|
||||
|
||||
define('ADDPRODUCT_TEXT_CATEGORY_CONFIRM', 'OK');
|
||||
define('ADDPRODUCT_TEXT_SELECT_PRODUCT', 'Choose product');
|
||||
define('ADDPRODUCT_TEXT_PRODUCT_CONFIRM', 'OK');
|
||||
define('ADDPRODUCT_TEXT_SELECT_OPTIONS', 'Choose options');
|
||||
define('ADDPRODUCT_TEXT_OPTIONS_CONFIRM', 'OK');
|
||||
define('ADDPRODUCT_TEXT_OPTIONS_NOTEXIST', 'No Options: Skipped..');
|
||||
define('ADDPRODUCT_TEXT_CONFIRM_QUANTITY', 'Qty.');
|
||||
define('ADDPRODUCT_TEXT_CONFIRM_ADDNOW', 'Add now');
|
||||
|
||||
|
||||
|
29
msd2/myoos/admin/includes/languages/deu/email_orders.php
Normal file
29
msd2/myoos/admin/includes/languages/deu/email_orders.php
Normal file
@ -0,0 +1,29 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: email_orders.php,v 1.3 2007/06/13 16:15:14 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: orders.php,v 1.27 2003/02/16 02:09:20 harley_vb
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
define('EMAIL_SEPARATOR', '------------------------------------------------------');
|
||||
define('EMAIL_TEXT_SUBJECT', 'Status<75>nderung Ihrer Bestellung');
|
||||
define('EMAIL_TEXT_ORDER_NUMBER', 'Bestell-Nr.:');
|
||||
define('EMAIL_TEXT_INVOICE_URL', 'Ihre Bestellung k<>nnen Sie unter folgender Adresse einsehen:');
|
||||
define('EMAIL_TEXT_DATE_ORDERED', 'Bestelldatum:');
|
||||
define('EMAIL_TEXT_STATUS_UPDATE', 'Der Status Ihrer Bestellung wurde ge<67>ndert.' . "\n\n" . 'Neuer Status: %s' . "\n\n" . 'Bei Fragen zu Ihrer Bestellung antworten Sie bitte auf diese eMail.' . "\n\n" . 'Mit freundlichen Gr<47>ssen' . "\n\n" . STORE_OWNER. "\n" . STORE_NAME . "\n");
|
||||
define('EMAIL_TEXT_COMMENTS_UPDATE', 'Anmerkungen und Kommentare zu Ihrer Bestellung:' . "\n\n%s\n\n");
|
||||
|
59
msd2/myoos/admin/includes/languages/deu/export_excel.php
Normal file
59
msd2/myoos/admin/includes/languages/deu/export_excel.php
Normal file
@ -0,0 +1,59 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: export_excel.php,v 1.3 2007/06/13 16:15:14 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: backup.php,v 1.21 2002/06/15 11:02:56 harley_vb
|
||||
----------------------------------------------------------------------
|
||||
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.
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
define('HEADING_TITLE', 'Datenbanksicherung');
|
||||
|
||||
define('TABLE_HEADING_TITLE', 'Titel');
|
||||
define('TABLE_HEADING_FILE_DATE', 'Datum');
|
||||
define('TABLE_HEADING_FILE_SIZE', 'Grösse');
|
||||
define('TABLE_HEADING_ACTION', 'Aktion');
|
||||
|
||||
define('TEXT_INFO_HEADING_NEW_BACKUP', 'Neue Sicherung');
|
||||
define('TEXT_INFO_HEADING_RESTORE_LOCAL', 'Lokal wiederherstellen');
|
||||
define('TEXT_INFO_NEW_BACKUP', 'Bitte den Sicherungsprozess AUF KEINEN FALL unterbrechen. Dieser kann einige Minuten in Anspruch nehmen.');
|
||||
define('TEXT_INFO_UNPACK', '<br /><br />(nach dem die Dateien aus dem Archiv extrahiert wurden)');
|
||||
define('TEXT_INFO_DATE', 'Datum:');
|
||||
define('TEXT_INFO_SIZE', 'Grösse:');
|
||||
define('TEXT_INFO_COMPRESSION', 'Komprimieren:');
|
||||
define('TEXT_INFO_USE_GZIP', 'Mit GZIP');
|
||||
define('TEXT_INFO_USE_ZIP', 'Mit ZIP');
|
||||
define('TEXT_INFO_USE_NO_COMPRESSION', 'Keine Komprimierung (Raw SQL)');
|
||||
define('TEXT_INFO_DOWNLOAD_ONLY', 'Nur herunterladen (nicht auf dem Server speichern)');
|
||||
define('TEXT_INFO_BEST_THROUGH_HTTPS', 'Sichere HTTPS Verbindung verwenden!');
|
||||
define('TEXT_NO_EXTENSION', 'Keine');
|
||||
define('TEXT_EXPORT_DIRECTORY', 'Sicherungsverzeichnis:');
|
||||
define('TEXT_FORGET', '(<u> vergessen</u>)');
|
||||
define('TEXT_DELETE_INTRO', 'Sind Sie sicher, dass Sie diese Sicherung löschen möchten?');
|
||||
|
||||
define('ERROR_EXPORT_DIRECTORY_DOES_NOT_EXIST', '<strong>Fehler!</strong> Das Sicherungsverzeichnis ist nicht vorhanden.');
|
||||
define('ERROR_EXPORT_DIRECTORY_NOT_WRITEABLE', '<strong>Fehler!</strong> Das Sicherungsverzeichnis ist schreibgeschützt.');
|
||||
define('ERROR_DOWNLOAD_LINK_NOT_ACCEPTABLE', '<strong>Fehler!</strong> Download Link nicht akzeptabel.');
|
||||
|
||||
define('SUCCESS_DATABASE_SAVED', '<strong>Erfolg!</strong> Die Datenbank wurde gesichert.');
|
||||
define('SUCCESS_DATABASE_RESTORED', '<strong>Erfolg!</strong> Die Datenbank wurde wiederhergestellt.');
|
||||
define('SUCCESS_EXPORT_DELETED', '<strong>Erfolg!</strong> Die Sicherungsdatei wurde gelöscht.');
|
||||
|
39
msd2/myoos/admin/includes/languages/deu/featured.php
Normal file
39
msd2/myoos/admin/includes/languages/deu/featured.php
Normal file
@ -0,0 +1,39 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: featured.php,v 1.3 2007/06/13 16:15:14 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
define('HEADING_TITLE', 'Top-Angebote');
|
||||
|
||||
define('TABLE_HEADING_PRODUCTS', 'Artikel');
|
||||
define('TABLE_HEADING_STATUS', 'Status');
|
||||
define('TABLE_HEADING_ACTION', 'Aktion');
|
||||
|
||||
define('TEXT_FEATURED_PRODUCT', 'Artikel:');
|
||||
define('TEXT_FEATURED_EXPIRES_DATE', 'Gültig bis:<br /><small>(YYYY-MM-DD)</small>');
|
||||
|
||||
define('TEXT_INFO_DATE_ADDED', 'hinzugefügt am:');
|
||||
define('TEXT_INFO_LAST_MODIFIED', 'letzte Änderung:');
|
||||
define('TEXT_INFO_EXPIRES_DATE', 'Gültig bis:');
|
||||
define('TEXT_INFO_STATUS_CHANGE', 'Status geändert:');
|
||||
|
||||
define('TEXT_INFO_HEADING_DELETE_FEATURED', 'Top-Angebot löschen');
|
||||
define('TEXT_INFO_DELETE_INTRO', 'Sind Sie sicher, dass Sie das Sonderangebot löschen möchten?');
|
||||
|
||||
define('TEXT_IMAGE_NONEXISTENT', 'BILD EXISTIERT NICHT');
|
||||
|
26
msd2/myoos/admin/includes/languages/deu/forbiden.php
Normal file
26
msd2/myoos/admin/includes/languages/deu/forbiden.php
Normal file
@ -0,0 +1,26 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: forbiden.php,v 1.3 2007/06/13 16:15:14 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
define('HEADING_TITLE', 'Zugriff verweigert!');
|
||||
define('NAVBAR_TITLE', 'Kein Zugriffsrecht');
|
||||
define('TEXT_MAIN', 'Bitte kontaktieren Sie Ihren <b>Web Administrator</b> um mehr Zugriffsrechte zu erhalten.');
|
||||
|
||||
|
57
msd2/myoos/admin/includes/languages/deu/geo_zones.php
Normal file
57
msd2/myoos/admin/includes/languages/deu/geo_zones.php
Normal file
@ -0,0 +1,57 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: geo_zones.php,v 1.3 2007/06/13 16:15:14 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: geo_zones.php,v 1.9 2002/02/18 13:07:51 harley_vb
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
define('HEADING_TITLE', 'Steuerzonen');
|
||||
|
||||
define('TABLE_HEADING_COUNTRY', 'Land');
|
||||
define('TABLE_HEADING_COUNTRY_ZONE', 'Bundesland');
|
||||
define('TABLE_HEADING_TAX_ZONES', 'Steuerzonen');
|
||||
define('TABLE_HEADING_ACTION', 'Aktion');
|
||||
|
||||
define('TEXT_INFO_HEADING_NEW_ZONE', 'Neue Steuerzone');
|
||||
define('TEXT_INFO_NEW_ZONE_INTRO', 'Bitte geben Sie die neue Steuerzone mit allen relevanten Daten ein');
|
||||
|
||||
define('TEXT_INFO_HEADING_EDIT_ZONE', 'Steuerzone bearbeiten');
|
||||
define('TEXT_INFO_EDIT_ZONE_INTRO', 'Bitte führen Sie alle notwendigen Änderungen durch.');
|
||||
|
||||
define('TEXT_INFO_HEADING_DELETE_ZONE', 'Steuerzone löschen');
|
||||
define('TEXT_INFO_DELETE_ZONE_INTRO', 'Sind Sie sicher, dass Sie diese Steuerzone löschen wollen?');
|
||||
|
||||
define('TEXT_INFO_HEADING_NEW_SUB_ZONE', 'Neue Unterzone');
|
||||
define('TEXT_INFO_NEW_SUB_ZONE_INTRO', 'Bitte geben Sie die neue Unterzone mit allen relevanten Daten ein');
|
||||
|
||||
define('TEXT_INFO_HEADING_EDIT_SUB_ZONE', 'Unterzone bearbeiten');
|
||||
define('TEXT_INFO_EDIT_SUB_ZONE_INTRO', 'Bitte führen Sie alle notwendigen Änderungen durch.');
|
||||
|
||||
define('TEXT_INFO_HEADING_DELETE_SUB_ZONE', 'Unterzone löschen');
|
||||
define('TEXT_INFO_DELETE_SUB_ZONE_INTRO', 'Sind Sie sicher, dass Sie diese Unterzone löschen wollen?');
|
||||
|
||||
define('TEXT_INFO_DATE_ADDED', 'hinzugefügt am:');
|
||||
define('TEXT_INFO_LAST_MODIFIED', 'letzte Änderung:');
|
||||
define('TEXT_INFO_ZONE_NAME', 'Name der Steuerzone:');
|
||||
define('TEXT_INFO_ZONE_DESCRIPTION', 'Beschreibung:');
|
||||
define('TEXT_INFO_COUNTRY', 'Land:');
|
||||
define('TEXT_INFO_COUNTRY_ZONE', 'Bundesland:');
|
||||
define('TYPE_BELOW', 'Alle Bundesländer');
|
||||
define('PLEASE_SELECT', 'Alle Bundesländer');
|
||||
define('TEXT_ALL_COUNTRIES', 'Alle Länder');
|
||||
|
||||
|
52
msd2/myoos/admin/includes/languages/deu/gv_mail.php
Normal file
52
msd2/myoos/admin/includes/languages/deu/gv_mail.php
Normal file
@ -0,0 +1,52 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: gv_mail.php,v 1.3 2007/06/13 16:15:14 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: gv_mail.php,v 1.1.2.1 2003/05/15 23:10:55 wilt
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2002 - 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
define('HEADING_TITLE', 'Gutschein an Kunden versenden');
|
||||
|
||||
define('TEXT_CUSTOMER', 'Kunde:');
|
||||
define('TEXT_SUBJECT', 'Betreff:');
|
||||
define('TEXT_FROM', 'Absender:');
|
||||
define('TEXT_TO', 'eMail an:');
|
||||
define('TEXT_AMOUNT', 'Betrag:');
|
||||
define('TEXT_MESSAGE', 'Nachricht:');
|
||||
define('TEXT_SELECT_CUSTOMER', 'Kunden auswählen');
|
||||
define('TEXT_ALL_CUSTOMERS', 'Alle Kunden');
|
||||
define('TEXT_NEWSLETTER_CUSTOMERS', 'An alle Newsletter-Abonnenten');
|
||||
define('TEXT_FROM_NAME', 'Absender Name:');
|
||||
define('TEXT_FROM_MAIL', 'Absender eMail:');
|
||||
|
||||
define('NOTICE_EMAIL_SENT_TO', 'Hinweis: eMail wurde versendet an: %s');
|
||||
define('ERROR_NO_CUSTOMER_SELECTED', 'Fehler: Es wurde kein Kunde ausgewählt.');
|
||||
define('ERROR_NO_AMOUNT_SELECTED', 'Fehler: Sie haben keinen Betrag für den Gutschein eingegeben.');
|
||||
|
||||
define('TEXT_GV_WORTH', 'Gutscheinwert ');
|
||||
define('TEXT_TO_REDEEM', 'Um den Gutschein einzul<75>en, klicken Sie auf den unten stehenden Link. Bitte notieren Sie sich den Gutschein-Code.');
|
||||
define('TEXT_WHICH_IS', 'welcher ist');
|
||||
define('TEXT_IN_CASE', ' falls Sie Probleme haben.');
|
||||
define('TEXT_OR_VISIT', 'oder besuchen Sie ');
|
||||
define('TEXT_ENTER_CODE', ' und geben den Gutschein-Code ein ');
|
||||
|
||||
define ('TEXT_REDEEM_COUPON_MESSAGE_HEADER', 'Sie haben erfolgreich einen Gutschein von unserem Shop erworben. Aus Sicherheitsgrnden wir der Gutscheinwert nicht sofort Ihrem Konto gutgeschrieben. Der Shop-Besitzer wurde ber den Erwerb informiert.');
|
||||
define ('TEXT_REDEEM_COUPON_MESSAGE_AMOUNT', "\n\n" . 'Der Wert des Gutscheins betr<74>t: %s');
|
||||
define ('TEXT_REDEEM_COUPON_MESSAGE_BODY', "\n\n" . 'Sie k<>nen nun unsere Seite besuchen, sich einloggen und den Gutschein an jeden beliebigen Empf<70>ger versenden.');
|
||||
define ('TEXT_REDEEM_COUPON_MESSAGE_FOOTER', "\n\n");
|
||||
|
45
msd2/myoos/admin/includes/languages/deu/gv_queue.php
Normal file
45
msd2/myoos/admin/includes/languages/deu/gv_queue.php
Normal file
@ -0,0 +1,45 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: gv_queue.php,v 1.3 2007/06/13 16:15:14 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: gv_queue.php,v 1.1.2.1 2003/05/15 23:10:55 wilt
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2002 - 2003 osCommerce
|
||||
|
||||
Gift Voucher System v1.0
|
||||
Copyright (c) 2001,2002 Ian C Wilson
|
||||
http://www.phesis.org
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
define('HEADING_TITLE', 'Gutschein Freigabe');
|
||||
|
||||
define('TABLE_HEADING_CUSTOMERS', 'Kunde');
|
||||
define('TABLE_HEADING_ORDERS_ID', 'Bestell-Nr.');
|
||||
define('TABLE_HEADING_VOUCHER_VALUE', 'Gutscheinwert');
|
||||
define('TABLE_HEADING_DATE_PURCHASED', 'Bestelldatum');
|
||||
define('TABLE_HEADING_ACTION', 'Aktion');
|
||||
|
||||
define('TEXT_REDEEM_COUPON_MESSAGE_HEADER', 'Sie haben erfolgreich einen Gutschein in unserem Shop erworben.' . "\n"
|
||||
. 'Aus Sicherheitsgrnden wurde der Gutschein nicht sofort Ihrem Konto gutgeschrieben.' . "\n"
|
||||
. 'Der Gutschein wurde Ihrem Konto jetzt gutgeschrieben. Sie k<>nen nun unseren Shop besuchen' . "\n"
|
||||
. 'und den Gutschein an jeden beliebigen Empf<70>ger versenden.' . "\n\n");
|
||||
|
||||
define('TEXT_REDEEM_COUPON_MESSAGE_AMOUNT', 'The Gift Voucher(s) you purchased are worth %s' . "\n\n");
|
||||
|
||||
define('TEXT_REDEEM_COUPON_MESSAGE_BODY', '');
|
||||
define('TEXT_REDEEM_COUPON_MESSAGE_FOOTER', '');
|
||||
define('TEXT_REDEEM_COUPON_SUBJECT', 'Gutscheinkauf');
|
||||
|
44
msd2/myoos/admin/includes/languages/deu/gv_sent.php
Normal file
44
msd2/myoos/admin/includes/languages/deu/gv_sent.php
Normal file
@ -0,0 +1,44 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: gv_sent.php,v 1.3 2007/06/13 16:15:14 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: gv_sent.php,v 1.1 2003/02/18 00:18:50 wilt
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2002 - 2003 osCommerce
|
||||
|
||||
Gift Voucher System v1.0
|
||||
Copyright (c) 2001,2002 Ian C Wilson
|
||||
http://www.phesis.org
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
define('HEADING_TITLE', 'Gutscheine versandt');
|
||||
|
||||
define('TABLE_HEADING_SENDERS_NAME', 'Absender');
|
||||
define('TABLE_HEADING_VOUCHER_VALUE', 'Gutscheinwert');
|
||||
define('TABLE_HEADING_VOUCHER_CODE', 'Gutschein Code');
|
||||
define('TABLE_HEADING_DATE_SENT', 'Versanddatum');
|
||||
define('TABLE_HEADING_ACTION', 'Aktion');
|
||||
|
||||
define('TEXT_INFO_SENDERS_ID', 'Kunden Nr.:');
|
||||
define('TEXT_INFO_AMOUNT_SENT', 'Betrag:');
|
||||
define('TEXT_INFO_DATE_SENT', 'Datum:');
|
||||
define('TEXT_INFO_VOUCHER_CODE', 'Gutschein Code:');
|
||||
define('TEXT_INFO_EMAIL_ADDRESS', 'eMail Adresse:');
|
||||
define('TEXT_INFO_DATE_REDEEMED', 'Einlösedatum:');
|
||||
define('TEXT_INFO_IP_ADDRESS', 'IP Adresse:');
|
||||
define('TEXT_INFO_CUSTOMERS_ID', 'Kunden-Nr.:');
|
||||
define('TEXT_INFO_NOT_REDEEMED', 'Nicht eingelöst');
|
||||
|
29
msd2/myoos/admin/includes/languages/deu/import_excel.php
Normal file
29
msd2/myoos/admin/includes/languages/deu/import_excel.php
Normal file
@ -0,0 +1,29 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: export_excel.php,v 1.3 2007/06/13 16:15:14 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: backup.php,v 1.21 2002/06/15 11:02:56 harley_vb
|
||||
----------------------------------------------------------------------
|
||||
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.
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
define('HEADING_TITLE', 'Update Excel Preis');
|
||||
|
48
msd2/myoos/admin/includes/languages/deu/index.php
Normal file
48
msd2/myoos/admin/includes/languages/deu/index.php
Normal file
@ -0,0 +1,48 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: index.php,v 1.3 2007/06/13 16:15:14 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: index.php,v 1.5 2002/03/30 14:32:08 harley_vb
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
define('HEADING_TITLE', 'Option wählen ...');
|
||||
|
||||
define('BOX_TITLE_ORDERS', 'Bestellungen');
|
||||
define('BOX_TITLE_STATISTICS', 'Statistik');
|
||||
|
||||
define('BOX_ENTRY_HAMPEAGE', 'Homepage');
|
||||
define('BOX_ENTRY_MAILING_LISTS', 'Mailing Listen');
|
||||
define('BOX_ENTRY_FAQ', 'FAQ');
|
||||
|
||||
define('BOX_ENTRY_CUSTOMERS', 'Kunden:');
|
||||
define('BOX_ENTRY_PRODUCTS', 'Produkte:');
|
||||
define('BOX_ENTRY_REVIEWS', 'Bewertungen:');
|
||||
|
||||
define('BOX_CONNECTION_PROTECTED', 'Sie sind gesichert durch eine %s sichere SSL Verbindung.');
|
||||
define('BOX_CONNECTION_UNPROTECTED', 'Sie sind <font color="#ff0000">nicht</font> durch eine sichere SSL Verbindung gesichert.');
|
||||
define('BOX_CONNECTION_UNKNOWN', 'unbekannt');
|
||||
|
||||
define('CATALOG_CONTENTS', 'Inhalt');
|
||||
|
||||
define('REPORTS_PRODUCTS', 'Produkte');
|
||||
define('REPORTS_ORDERS', 'Bestellungen');
|
||||
|
||||
define('TOOLS_BACKUP', 'Datensicherung');
|
||||
define('TOOLS_BANNERS', 'Bannerverwaltung');
|
||||
define('TOOLS_FILES', 'Dateiverwaltung');
|
||||
|
49
msd2/myoos/admin/includes/languages/deu/information.php
Normal file
49
msd2/myoos/admin/includes/languages/deu/information.php
Normal file
@ -0,0 +1,49 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: information.php,v 1.3 2007/06/13 16:15:14 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: information.php,v 1.14 2003/02/16 02:09:20 harley_vb
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
define('HEADING_TITLE', 'Rechtlich relevante Seiten');
|
||||
|
||||
define('TABLE_HEADING_INFORMATION', 'Rechtlich relevante Seite');
|
||||
define('TABLE_HEADING_ACTION', 'Aktion');
|
||||
define('TABLE_HEADING_STATUS', 'Status');
|
||||
define('TABLE_HEADING_SORT', 'Sortierung');
|
||||
|
||||
|
||||
define('TEXT_HEADING_NEW_INFORMATION', 'Neue rechtlich relevante Seite');
|
||||
define('TEXT_HEADING_EDIT_INFORMATION', 'Information bearbeiten');
|
||||
define('TEXT_HEADING_DELETE_INFORMATION', 'Information löschen');
|
||||
|
||||
define('TEXT_INFORMATION', 'Information:');
|
||||
define('TEXT_DATE_ADDED', 'hinzugefügt am:');
|
||||
define('TEXT_LAST_MODIFIED', 'letzte Änderung am:');
|
||||
|
||||
define('TEXT_NEW_INTRO', 'Bitte geben Sie die neuen Informationen mit allen relevanten Daten ein.');
|
||||
define('TEXT_EDIT_INTRO', 'Bitte führen Sie alle notwendigen Änderungen durch');
|
||||
|
||||
define('TEXT_INFORMATION_NAME', 'Informationname:');
|
||||
define('TEXT_INFORMATION_DESCRIPTION', 'Informationsbeschreibung:');
|
||||
define('TEXT_INFORMATION_HEADING_TITLE', 'Seitentitel:');
|
||||
define('TEXT_INFORMATION_SORT_ORDER', 'Sortierung:');
|
||||
|
||||
define('TEXT_DELETE_INTRO', 'Sind Sie sicher, dass Sie diese Seite löschen möchten?');
|
||||
|
||||
|
||||
define('TEXT_DATA', 'Daten');
|
42
msd2/myoos/admin/includes/languages/deu/invoice.php
Normal file
42
msd2/myoos/admin/includes/languages/deu/invoice.php
Normal file
@ -0,0 +1,42 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: invoice.php,v 1.4 2007/08/11 05:51:00 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: invoice.php,v 1.2 2002/06/15 12:45:05 harley_vb
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
define('TABLE_HEADING_COMMENTS', 'Kommentar');
|
||||
define('TABLE_HEADING_PRODUCTS_MODEL', 'Artikel-Nr.');
|
||||
define('TABLE_HEADING_PRODUCTS_SERIAL_NUMBER', 'SN');
|
||||
define('TABLE_HEADING_PRODUCTS', 'Artikel');
|
||||
define('TABLE_HEADING_TAX', 'MwSt.');
|
||||
define('TABLE_HEADING_TOTAL', 'Summe');
|
||||
define('TABLE_HEADING_PRICE_EXCLUDING_TAX', 'Preis (exkl.)');
|
||||
define('TABLE_HEADING_PRICE_INCLUDING_TAX', 'Preis (inkl.)');
|
||||
define('TABLE_HEADING_TOTAL_EXCLUDING_TAX', 'Summe (exkl.)');
|
||||
define('TABLE_HEADING_TOTAL_INCLUDING_TAX', 'Summe (inkl.)');
|
||||
|
||||
define('ENTRY_SOLD_TO', 'Rechnungsanschrift:');
|
||||
define('ENTRY_SHIP_TO', 'Lieferanschrift:');
|
||||
define('ENTRY_ORDER_NUMBER', 'Order #');
|
||||
define('ENTRY_ORDER_DATE', 'Order Date & Time');
|
||||
define('ENTRY_PAYMENT_METHOD', 'Zahlungsweise:');
|
||||
define('ENTRY_SUB_TOTAL', 'Zwischensumme:');
|
||||
define('ENTRY_TAX', 'MwSt.:');
|
||||
define('ENTRY_SHIPPING', 'Versandkosten:');
|
||||
define('ENTRY_TOTAL', 'Gesamtsumme:');
|
||||
|
28
msd2/myoos/admin/includes/languages/deu/itransact.php
Normal file
28
msd2/myoos/admin/includes/languages/deu/itransact.php
Normal file
@ -0,0 +1,28 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: itransact.php,v 1.3 2007/06/13 16:15:14 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: itransact.php,v 1.4 2002/03/30 15:15:49 harley_vb
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
define('HEADING_TITLE', 'Öffnen Sie die Transaction Systemsteuerung');
|
||||
define('SUB_BAR_TITLE', 'Klicken Sie auf das Bild unten. Sie benötigen Ihr Gateway ID und Passwort.');
|
||||
|
||||
define('CPANEL_URL', 'https://secure.itransact.com/support/login.html');
|
||||
define('CPANEL_URL_NAME', 'ctrlpan');
|
||||
|
53
msd2/myoos/admin/includes/languages/deu/languages.php
Normal file
53
msd2/myoos/admin/includes/languages/deu/languages.php
Normal file
@ -0,0 +1,53 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: languages.php,v 1.3 2007/06/13 16:15:14 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: languages.php,v 1.10 2002/01/19 22:58:16 harley_vb
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
define('HEADING_TITLE', 'Sprachen');
|
||||
define('HEADING_TITLE_SEARCH', 'Suche: ');
|
||||
define('HEADING_TITLE_STATUS', 'Status:');
|
||||
define('TEXT_ALL_LANGUAGES', 'alle Sprachen');
|
||||
define('TEXT_ACTIVE_LANGUAGES', 'aktive Sprachen');
|
||||
|
||||
define('TABLE_HEADING_LANGUAGE_NAME', 'Name');
|
||||
define('TABLE_HEADING_LANGUAGE_ISO_639_2', 'ISO 639-2');
|
||||
define('TABLE_HEADING_LANGUAGE_ISO_639_1', 'ISO 639-1');
|
||||
define('TABLE_HEADING_LANGUAGE_ISO_3166_1', 'ISO_3166-1');
|
||||
|
||||
|
||||
define('TABLE_HEADING_LANGUAGE_STATUS', 'Status');
|
||||
define('TABLE_HEADING_ACTION', 'Aktion');
|
||||
|
||||
define('TEXT_INFO_EDIT_INTRO', 'Bitte führen Sie alle notwendigen Änderungen durch');
|
||||
define('TEXT_INFO_LANGUAGE_NAME', 'Name:');
|
||||
define('TEXT_INFO_LANGUAGE_ISO_639_2', 'ISO 639-2');
|
||||
define('TEXT_INFO_LANGUAGE_ISO_639_1', 'ISO 639-1');
|
||||
define('TEXT_INFO_LANGUAGE_ISO_3166_1', 'ISO_3166-1');
|
||||
define('TEXT_INFO_LANGUAGE_IMAGE', 'Symbol:');
|
||||
define('TEXT_INFO_LANGUAGE_DIRECTORY', 'Verzeichnis:');
|
||||
define('TEXT_INFO_LANGUAGE_SORT_ORDER', 'Sortierreihenfolge:');
|
||||
define('TEXT_INFO_INSERT_INTRO', 'Bitte geben Sie die neue Sprache mit allen relevanten Daten ein');
|
||||
define('TEXT_INFO_DELETE_INTRO', 'Sind Sie sicher, dass Sie die Sprache löschen möchten?');
|
||||
define('TEXT_INFO_HEADING_NEW_LANGUAGE', 'Neue Sprache');
|
||||
define('TEXT_INFO_HEADING_EDIT_LANGUAGE', 'Sprache bearbeiten');
|
||||
define('TEXT_INFO_HEADING_DELETE_LANGUAGE', 'Sprache löschen');
|
||||
|
||||
define('ERROR_REMOVE_DEFAULT_LANGUAGE', 'Fehler: Die Standardsprache darf nicht gelöscht werden. Bitte definieren Sie eine neue Standardsprache und wiederholen Sie den Vorgang.');
|
||||
|
43
msd2/myoos/admin/includes/languages/deu/login.php
Normal file
43
msd2/myoos/admin/includes/languages/deu/login.php
Normal file
@ -0,0 +1,43 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: login.php,v 1.3 2007/06/13 16:15:14 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: login.php,v 1.11 2002/06/03 13:19:42 hpdl
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
|
||||
define('HEADING_TITLE', 'Anmeldebereich');
|
||||
|
||||
define('HEADING_RETURNING_ADMIN', 'Anmeldebereich:');
|
||||
define('TEXT_RETURNING_ADMIN', 'Nur für Mitarbeiter!');
|
||||
define('ENTRY_EMAIL_ADDRESS', 'E-Mail-Adresse:');
|
||||
define('ENTRY_PASSWORD', 'Passwort:');
|
||||
define('ENTRY_FIRSTNAME', 'Vorname:');
|
||||
define('IMAGE_BUTTON_LOGIN', 'Übertragen');
|
||||
|
||||
define('SECURITYCODE', 'Sicherheitscode:');
|
||||
define('TEXT_PASSWORD_FORGOTTEN', 'Passwort vergessen?');
|
||||
|
||||
define('TEXT_LOGIN_ERROR', '<strong>Fehler:</strong> Falscher Benutzername oder Passwort!');
|
||||
define('TEXT_FORGOTTEN_ERROR', '<strong>Fehler:</strong> Vorname und Passwort sind nicht hinterlegt!');
|
||||
define('TEXT_FORGOTTEN_FAIL', 'Sie haben es mehr als 3x versucht. Aus Sicherheitsgrnden kontaktieren Sie bitte Ihren Administrator um ein neues Passwort zu erhalten.');
|
||||
define('TEXT_FORGOTTEN_SUCCESS', 'Das neue Passwort wurde an Ihre E-Mail-Adresse gesendet. Überprüfen Sie Ihren E-Mail-Eingang und klicken Sie zurück um sich anzumelden.');
|
||||
|
||||
define('ADMIN_EMAIL_SUBJECT', 'Neues Passwort');
|
||||
define('ADMIN_EMAIL_TEXT', 'Hallo %s,' . "\n\n" . 'Sie können den redaktionellen Bereich mit folgenden Passwort betreten. Nach erfolgtem Login, ändern Sie bitte aus Sicherheitsgrnden Ihr Passwort!' . "\n\n" . 'Website : %s' . "\n" . 'Benutzername: %s' . "\n" . 'Passwort: %s' . "\n\n" . 'Danke!' . "\n" . '%s' . "\n\n" . 'Dies ist eine automatisierte Antwortmail. Bitte beantworten Sie diese nicht!');
|
||||
|
25
msd2/myoos/admin/includes/languages/deu/logoff.php
Normal file
25
msd2/myoos/admin/includes/languages/deu/logoff.php
Normal file
@ -0,0 +1,25 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: logoff.php,v 1.3 2007/06/13 16:15:14 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
define('HEADING_TITLE', 'Abmelden');
|
||||
define('NAVBAR_TITLE', 'Anmelden');
|
||||
define('TEXT_MAIN', 'Sie haben sich vom <b>Redaktionsbereich</b> abgemeldet. Es ist nun sicher den Computer zu verlassen. Klicken Sie "zurück" wenn Sie sich wieder anmelden wollen.');
|
||||
define('TEXT_RELOGIN', 'wieder anmelden');
|
||||
|
37
msd2/myoos/admin/includes/languages/deu/mail.php
Normal file
37
msd2/myoos/admin/includes/languages/deu/mail.php
Normal file
@ -0,0 +1,37 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: mail.php,v 1.3 2007/06/13 16:15:14 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: mail.php,v 1.9 2002/01/19 22:44:34 harley_vb
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
define('HEADING_TITLE', 'eMail an Kunden versenden');
|
||||
|
||||
define('TEXT_CUSTOMER', 'Kunde:');
|
||||
define('TEXT_SUBJECT', 'Betreff:');
|
||||
define('TEXT_MESSAGE', 'Nachricht:');
|
||||
define('TEXT_SELECT_CUSTOMER', 'Kunden auswählen');
|
||||
define('TEXT_ALL_CUSTOMERS', 'Alle Kunden');
|
||||
define('TEXT_NEWSLETTER_CUSTOMERS', 'An alle Newsletter-Abonnenten');
|
||||
|
||||
define('NOTICE_EMAIL_SENT_TO', 'Hinweis: eMail wurde versendet an: %s');
|
||||
define('ERROR_NO_CUSTOMER_SELECTED', 'Fehler: Es wurde kein Kunde ausgewählt.');
|
||||
|
||||
define('TEXT_FROM_NAME', 'Absender Name:');
|
||||
define('TEXT_FROM_MAIL', 'Absender eMail:');
|
||||
|
53
msd2/myoos/admin/includes/languages/deu/manual_loging.php
Normal file
53
msd2/myoos/admin/includes/languages/deu/manual_loging.php
Normal file
@ -0,0 +1,53 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: manual_loging.php,v 1.3 2007/06/13 16:15:14 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: spg_manual_info.php
|
||||
----------------------------------------------------------------------
|
||||
P&G Shipping Module Version 0.4 12/03/2002
|
||||
osCommerce Shipping Management Module
|
||||
Copyright (c) 2002 - Oliver Baelde
|
||||
http://www.francecontacts.com
|
||||
dev@francecontacts.com
|
||||
- eCommerce Solutions development and integration -
|
||||
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2002 - 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
define('HEADING_TITLE', 'Manual Entry Flag');
|
||||
|
||||
define('TABLE_HEADING_MANUAL_ENTRY', 'Flag');
|
||||
define('TABLE_HEADING_STATUS', 'Status');
|
||||
define('TABLE_HEADING_ACTION', 'Action');
|
||||
define('TABLE_HEADING_MANUAL_ENTRY_PROCESS', 'IMPORTANT: Read Manual Entry Process here before starting');
|
||||
define('TABLE_HEADING_EMAIL_PROCESS', 'Make sure to SET TO INACTIVE this flag as soon as you are done with manual entry');
|
||||
define('TEXT_CONTACT_CLASS', 'Contact Type Class');
|
||||
define('HEADING_LOGIN_ADMIN_EXPLAIN', 'If Client has already an account in the catalog, login here');
|
||||
define('HEADING_CREATE_ORDER_EXPLAIN', 'If you need to create a new account and enter a manual order , start here.<br />* Note: this order entry process will not send emails to client when account is created or order placed.');
|
||||
define('TEXT_INFO_DATE_ADDED', 'Date Added:');
|
||||
define('TEXT_INFO_LAST_MODIFIED', 'Last Modified:');
|
||||
define('TEXT_INFO_EXPIRES_DATE', 'Expires At:');
|
||||
define('TEXT_INFO_STATUS_CHANGE', 'Status Change:');
|
||||
define('IMAGE_LOGIN', 'Admin Login');
|
||||
define('HEADING_SET_FLAG', 'In order To Do a Manual Entry, set the flag status to active (Green).<br />For added security, set flag status to inactive (Red) when you are done with this utility');
|
||||
define('MAN_LOGIN_ADMIN', 'Admin Login to Catalog');
|
||||
define('MAN_LOGIN_ADMIN_EXPLAIN', 'You can login now to the catalog under an admin account.');
|
||||
define('HEADING_LOGIN_ADMIN', 'Admin Login under Existing Account Name');
|
||||
define('TEXT_EMAIL_ADDRESS', 'Select Customer');
|
||||
define('TEXT_SELECT_CUSTOMER', 'Select Customer');
|
||||
define('IMAGE_CREATE_ORDER', 'Create Order');
|
||||
define('HEADING_CREATE_ORDER_ADMIN', 'Create Order under NEW account name');
|
||||
|
52
msd2/myoos/admin/includes/languages/deu/manufacturers.php
Normal file
52
msd2/myoos/admin/includes/languages/deu/manufacturers.php
Normal file
@ -0,0 +1,52 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: manufacturers.php,v 1.3 2007/06/13 16:15:14 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: manufacturers.php,v 1.14 2003/02/16 02:09:20 harley_vb
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
define('HEADING_TITLE', 'Hersteller');
|
||||
|
||||
define('TABLE_HEADING_MANUFACTURERS', 'Hersteller');
|
||||
define('TABLE_HEADING_ACTION', 'Aktion');
|
||||
|
||||
define('TEXT_HEADING_NEW_MANUFACTURER', 'Neuer Hersteller');
|
||||
define('TEXT_HEADING_EDIT_MANUFACTURER', 'Hersteller bearbeiten');
|
||||
define('TEXT_HEADING_DELETE_MANUFACTURER', 'Hersteller löschen');
|
||||
|
||||
define('TEXT_MANUFACTURERS', 'Hersteller:');
|
||||
define('TEXT_DATE_ADDED', 'hinzugefügt am:');
|
||||
define('TEXT_LAST_MODIFIED', 'letzte Änderung am:');
|
||||
define('TEXT_PRODUCTS', 'Artikel:');
|
||||
define('TEXT_IMAGE_NONEXISTENT', 'BILD NICHT VORHANDEN');
|
||||
|
||||
define('TEXT_NEW_INTRO', 'Bitte geben Sie den neuen Hersteller mit allen relevanten Daten ein.');
|
||||
define('TEXT_EDIT_INTRO', 'Bitte führen Sie alle notwendigen Änderungen durch');
|
||||
|
||||
define('TEXT_MANUFACTURERS_NAME', 'Herstellername:');
|
||||
define('TEXT_MANUFACTURERS_IMAGE', 'Herstellerbild:');
|
||||
define('TEXT_MANUFACTURERS_URL', 'Hersteller URL:');
|
||||
|
||||
define('TEXT_DELETE_INTRO', 'Sind Sie sicher, dass Sie diesen Hersteller löschen möchten?');
|
||||
define('TEXT_DELETE_IMAGE', 'Hersteller Image löschen?');
|
||||
define('TEXT_DELETE_PRODUCTS', 'Alle Artikel von diesem Hersteller löschen? (inkl. Bewertungen, Angebote und Neuerscheinungen)');
|
||||
define('TEXT_DELETE_WARNING_PRODUCTS', '<b>WARNUNG:</b> Es existieren noch %s Artikel, welche mit diesem Hersteller verbunden sind!');
|
||||
|
||||
define('ERROR_DIRECTORY_NOT_WRITEABLE', 'Fehler: Das Verzeichnis %s ist schreibgeschützt. Bitte korrigieren Sie die Zugriffsrechte zu diesem Verzeichnis!');
|
||||
define('ERROR_DIRECTORY_DOES_NOT_EXIST', 'Fehler: Das Verzeichnis %s existiert nicht!');
|
||||
|
28
msd2/myoos/admin/includes/languages/deu/max_order.php
Normal file
28
msd2/myoos/admin/includes/languages/deu/max_order.php
Normal file
@ -0,0 +1,28 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: max_order.php,v 1.3 2007/06/13 16:15:14 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: max_order.php v1.00 2003/04/27 JOHNSON
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2001 - 2003 osCommerce
|
||||
|
||||
Max Order - 2003/04/27 JOHNSON - Copyright (c) 2003 Matti Ressler - mattifinn@optusnet.com.au
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
define('NAVBAR_TITLE', 'Maximaler Bestellwert');
|
||||
define('HEADING_TITLE', 'Maximaler Bestellwert');
|
||||
define('TEXT_INFORMATION', 'Sie sind '. $currencies->format ($cart->show_total() - (+$customer_max_order)) .' ber Ihrem ' . $currencies->format($customer_max_order) . ' maximalen Bestellwert. <br />Bitte kontaktieren Sie unser Verkaufsteam, um Ihre Bestellung best<73>igen zu lassen.');
|
||||
|
33
msd2/myoos/admin/includes/languages/deu/modules.php
Normal file
33
msd2/myoos/admin/includes/languages/deu/modules.php
Normal file
@ -0,0 +1,33 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: modules.php,v 1.3 2007/06/13 16:15:14 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: modules.php,v 1.8 2002/04/09 18:12:41 harley_vb
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
define('HEADING_TITLE_MODULES_PAYMENT', 'Zahlungsweisen');
|
||||
define('HEADING_TITLE_MODULES_SHIPPING', 'Versandarten');
|
||||
define('HEADING_TITLE_MODULES_ORDER_TOTAL', 'Zusammenfassung einer Bestellung');
|
||||
|
||||
define('TABLE_HEADING_MODULES', 'Module');
|
||||
define('TABLE_HEADING_SORT_ORDER', 'Reihenfolge');
|
||||
define('TABLE_HEADING_STATUS', 'Status');
|
||||
define('TABLE_HEADING_ACTION', 'Aktion');
|
||||
|
||||
define('TEXT_MODULE_DIRECTORY', 'Modul Verzeichnis:');
|
||||
|
@ -0,0 +1,24 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: newsletter.php,v 1.3 2007/06/13 16:15:14 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: newsletter.php,v 1.2 2002/03/11 14:15:04 harley_vb
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
define('TEXT_COUNT_CUSTOMERS', 'Anzahl der Kunden, welche das Rundschreiben erhalten: %s');
|
||||
|
@ -0,0 +1,34 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: product_notification.php,v 1.3 2007/06/13 16:15:14 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: product_notification.php,v 1.2 2002/03/11 14:15:44 harley_vb
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
define('TEXT_COUNT_CUSTOMERS', 'Anzahl der Kunden, welche das Rundschreiben erhalten: %s');
|
||||
define('TEXT_PRODUCTS', 'Produkte');
|
||||
define('TEXT_SELECTED_PRODUCTS', 'ausgewählte Produkte');
|
||||
|
||||
define('JS_PLEASE_SELECT_PRODUCTS', 'Bitte w<>len Sie zumindest ein Produkt aus!');
|
||||
|
||||
define('BUTTON_GLOBAL', 'GLOBAL');
|
||||
define('BUTTON_SELECT', '>>>');
|
||||
define('BUTTON_UNSELECT', '<<<');
|
||||
define('BUTTON_SUBMIT', 'Weiter');
|
||||
define('BUTTON_CANCEL', 'Abbrechen');
|
||||
|
49
msd2/myoos/admin/includes/languages/deu/newsletters.php
Normal file
49
msd2/myoos/admin/includes/languages/deu/newsletters.php
Normal file
@ -0,0 +1,49 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: newsletters.php,v 1.3 2007/06/13 16:15:14 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: newsletters.php,v 1.7 2002/03/11 14:13:05 harley_vb
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
define('HEADING_TITLE', 'Rundschreiben Verwaltung');
|
||||
|
||||
define('TABLE_HEADING_NEWSLETTERS', 'Rundschreiben');
|
||||
define('TABLE_HEADING_SIZE', 'Grösse');
|
||||
define('TABLE_HEADING_MODULE', 'Module');
|
||||
define('TABLE_HEADING_SENT', 'Gesendet');
|
||||
define('TABLE_HEADING_STATUS', 'Status');
|
||||
define('TABLE_HEADING_ACTION', 'Aktion');
|
||||
|
||||
define('TEXT_NEWSLETTER_MODULE', 'Module:');
|
||||
define('TEXT_NEWSLETTER_TITLE', 'Titel des Rundschreibens:');
|
||||
define('TEXT_NEWSLETTER_CONTENT', 'Inhalt:');
|
||||
|
||||
define('TEXT_NEWSLETTER_DATE_ADDED', 'hinzugefügt am:');
|
||||
define('TEXT_NEWSLETTER_DATE_SENT', 'Datum gesendet:');
|
||||
|
||||
define('TEXT_INFO_DELETE_INTRO', 'Sind Sie sicher, dass Sie dieses Rundschreiben löschen möchten?');
|
||||
|
||||
define('TEXT_PLEASE_WAIT', 'Bitte warten Sie .. eMails werden gesendet ..<br /><br />Bitte unterbrechen Sie diesen Prozess nicht!');
|
||||
define('TEXT_FINISHED_SENDING_EMAILS', 'eMails wurden versendet!');
|
||||
|
||||
define('ERROR_NEWSLETTER_TITLE', 'Fehler: Ein Titel für das Rundschreiben ist erforderlich.');
|
||||
define('ERROR_NEWSLETTER_MODULE', 'Fehler: Das Newsletter Modul wird benötigt.');
|
||||
define('ERROR_REMOVE_UNLOCKED_NEWSLETTER', 'Fehler: Bitte sperren Sie das Rundschreiben bevor Sie es löschen.');
|
||||
define('ERROR_EDIT_UNLOCKED_NEWSLETTER', 'Fehler: Bitte sperren Sie das Rundschreiben bevor Sie es bearbeiten.');
|
||||
define('ERROR_SEND_UNLOCKED_NEWSLETTER', 'Fehler: Bitte sperren Sie das Rundschreiben bevor Sie es versenden.');
|
||||
|
111
msd2/myoos/admin/includes/languages/deu/orders.php
Normal file
111
msd2/myoos/admin/includes/languages/deu/orders.php
Normal file
@ -0,0 +1,111 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: orders.php,v 1.3 2007/06/13 16:15:14 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: orders.php,v 1.27 2003/02/16 02:09:20 harley_vb
|
||||
----------------------------------------------------------------------
|
||||
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.
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
define('HEADING_TITLE', 'Bestellungen');
|
||||
define('HEADING_TITLE_SEARCH', 'Bestell-Nr.:');
|
||||
define('HEADING_TITLE_STATUS', 'Status:');
|
||||
|
||||
define('TABLE_HEADING_COMMENTS', 'Kommentar');
|
||||
define('TABLE_HEADING_CUSTOMERS', 'Kunde');
|
||||
define('TABLE_HEADING_ORDER_TOTAL', 'Gesamtwert');
|
||||
define('TABLE_HEADING_DATE_PURCHASED', 'Bestelldatum');
|
||||
define('TABLE_HEADING_STATUS', 'Status');
|
||||
define('TABLE_HEADING_ACTION', 'Aktion');
|
||||
define('TABLE_HEADING_QUANTITY', 'Anzahl');
|
||||
define('TABLE_HEADING_PRODUCTS_SERIAL_NUMBER', 'SN');
|
||||
define('TABLE_HEADING_PRODUCTS_MODEL', 'Artikel-Nr.');
|
||||
define('TABLE_HEADING_PRODUCTS', 'Artikel');
|
||||
define('TABLE_HEADING_TAX', 'MwSt.');
|
||||
define('TABLE_HEADING_TOTAL', 'Gesamtsumme');
|
||||
define('TABLE_HEADING_STATUS', 'Status');
|
||||
define('TABLE_HEADING_PRICE_EXCLUDING_TAX', 'Preis (exkl.)');
|
||||
define('TABLE_HEADING_PRICE_INCLUDING_TAX', 'Preis (inkl.)');
|
||||
define('TABLE_HEADING_TOTAL_EXCLUDING_TAX', 'Total (exkl.)');
|
||||
define('TABLE_HEADING_TOTAL_INCLUDING_TAX', 'Total (inkl.)');
|
||||
|
||||
define('TABLE_HEADING_STATUS', 'Status');
|
||||
define('TABLE_HEADING_CUSTOMER_NOTIFIED', 'Kunde benachrichtigt');
|
||||
define('TABLE_HEADING_DATE_ADDED', 'hinzugefügt am:');
|
||||
|
||||
define('ENTRY_CUSTOMER', 'Kunde:');
|
||||
define('ENTRY_SOLD_TO', 'Kunde:');
|
||||
define('ENTRY_STREET_ADDRESS', 'Strasse:');
|
||||
define('ENTRY_CITY', 'Stadt:');
|
||||
define('ENTRY_POST_CODE', 'PLZ:');
|
||||
define('ENTRY_STATE', 'Bundesland:');
|
||||
define('ENTRY_COUNTRY', 'Land:');
|
||||
define('ENTRY_TELEPHONE', 'Telefon:');
|
||||
define('ENTRY_EMAIL_ADDRESS', 'eMail Adresse:');
|
||||
define('ENTRY_DELIVERY_TO', 'Lieferanschrift:');
|
||||
define('ENTRY_SHIP_TO', 'Lieferanschrift:');
|
||||
define('ENTRY_SHIPPING_ADDRESS', 'Versandadresse:');
|
||||
define('ENTRY_BILLING_ADDRESS', 'Rechnungsadresse:');
|
||||
define('ENTRY_ORDER_NUMBER', 'Bestellnummer');
|
||||
define('ENTRY_ORDER_DATE', 'Bestelldatum');
|
||||
|
||||
define('ENTRY_PAYMENT_METHOD', 'Zahlungsweise:');
|
||||
define('ENTRY_SUB_TOTAL', 'Zwischensumme:');
|
||||
define('ENTRY_TAX', 'MwSt.:');
|
||||
define('ENTRY_SHIPPING', 'Versandkosten:');
|
||||
define('ENTRY_TOTAL', 'Gesamtsumme:');
|
||||
define('ENTRY_DATE_PURCHASED', 'Bestelldatum:');
|
||||
define('ENTRY_STATUS', 'Status:');
|
||||
define('ENTRY_DATE_LAST_UPDATED', 'letzte Aktualisierung am:');
|
||||
define('ENTRY_NOTIFY_CUSTOMER', 'Kunde benachrichtigen:');
|
||||
define('ENTRY_NOTIFY_COMMENTS', 'Kommentare mitsenden:');
|
||||
define('ENTRY_PRINTABLE', 'Rechnung drucken');
|
||||
|
||||
define('TEXT_INFO_HEADING_DELETE_ORDER', 'Bestellung löschen');
|
||||
define('TEXT_INFO_DELETE_INTRO', 'Sind Sie sicher, das Sie diese Bestellung löschen möchten?');
|
||||
define('TEXT_INFO_RESTOCK_PRODUCT_QUANTITY', 'Artikelanzahl dem Lager gutschreiben');
|
||||
define('TEXT_DATE_ORDER_CREATED', 'erstellt am:');
|
||||
define('TEXT_DATE_ORDER_LAST_MODIFIED', 'letzte Änderung:');
|
||||
define('TEXT_INFO_PAYMENT_METHOD', 'Zahlungsweise:');
|
||||
|
||||
define('TEXT_ALL_ORDERS', 'Alle Bestellungen');
|
||||
define('TEXT_NO_ORDER_HISTORY', 'Keine Bestellhistorie verfügbar');
|
||||
|
||||
define('ERROR_ORDER_DOES_NOT_EXIST', 'Fehler: Die Bestellung existiert nicht!.');
|
||||
define('SUCCESS_ORDER_UPDATED', 'Hinweis: Die Bestellung wurde erfolgreich aktualisiert.');
|
||||
define('WARNING_ORDER_NOT_UPDATED', 'Hinweis: Es wurde nichts geändert. Daher wurde diese Bestellung nicht aktualisiert.');
|
||||
|
||||
define('TEXT_BANK', 'Bankeinzug');
|
||||
define('TEXT_BANK_OWNER', 'Kontoinhaber:');
|
||||
define('TEXT_BANK_NUMBER', 'Kontonummer:');
|
||||
define('TEXT_BANK_BLZ', 'BLZ:');
|
||||
define('TEXT_BANK_NAME', 'Bank:');
|
||||
define('TEXT_BANK_STATUS', 'Prüfstatus:');
|
||||
define('TEXT_BANK_PRZ', 'Prüfverfahren:');
|
||||
|
||||
define('TEXT_BANK_ERROR_1', 'Kontonummer stimmt nicht mit BLZ überein!');
|
||||
define('TEXT_BANK_ERROR_2', 'Für diese Kontonummer ist kein Prüfverfahren definiert!');
|
||||
define('TEXT_BANK_ERROR_3', 'Kontonummer nicht prüfbar! Prüfverfahren nicht implementiert');
|
||||
define('TEXT_BANK_ERROR_4', 'Kontonummer technisch nicht prüfbar!');
|
||||
define('TEXT_BANK_ERROR_5', 'Bankleitzahl nicht gefunden!');
|
||||
define('TEXT_BANK_ERROR_8', 'Keine Bankleitzahl angegeben!');
|
||||
define('TEXT_BANK_ERROR_9', 'Keine Kontonummer angegeben!');
|
||||
define('TEXT_BANK_ERRORCODE', 'Fehlercode:');
|
||||
|
39
msd2/myoos/admin/includes/languages/deu/orders_status.php
Normal file
39
msd2/myoos/admin/includes/languages/deu/orders_status.php
Normal file
@ -0,0 +1,39 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: orders_status.php,v 1.3 2007/06/13 16:15:14 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: orders_status.php,v 1.7 2002/01/30 11:10:08 harley_vb
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
define('HEADING_TITLE', 'Bestellstatus');
|
||||
|
||||
define('TABLE_HEADING_ORDERS_STATUS', 'Bestellstatus');
|
||||
define('TABLE_HEADING_ACTION', 'Aktion');
|
||||
|
||||
define('TEXT_INFO_EDIT_INTRO', 'Bitte führen Sie alle notwendigen Änderungen durch');
|
||||
define('TEXT_INFO_ORDERS_STATUS_NAME', 'Bestellstatus:');
|
||||
define('TEXT_INFO_INSERT_INTRO', 'Bitte geben Sie den neuen Bestellstatus mit allen relevanten Daten ein');
|
||||
define('TEXT_INFO_DELETE_INTRO', 'Sind Sie sicher, dass Sie diesen Bestellstatus löschen möchten?');
|
||||
define('TEXT_INFO_HEADING_NEW_ORDERS_STATUS', 'Neuer Bestellstatus');
|
||||
define('TEXT_INFO_HEADING_EDIT_ORDERS_STATUS', 'Bestellstatus bearbeiten');
|
||||
define('TEXT_INFO_HEADING_DELETE_ORDERS_STATUS', 'Bestellstatus löschen');
|
||||
|
||||
define('ERROR_REMOVE_DEFAULT_ORDER_STATUS', 'Fehler: Der Standard-Bestellstatus kann nicht gelöscht werden. Bitte definieren Sie einen neuen Standard-Bestellstatus und wiederholen Sie den Vorgang.');
|
||||
define('ERROR_STATUS_USED_IN_ORDERS', 'Fehler: Dieser Bestellstatus wird zur Zeit noch bei den Bestellungen verwendet.');
|
||||
define('ERROR_STATUS_USED_IN_HISTORY', 'Fehler: Dieser Bestellstatus wird zur Zeit noch in der Bestellhistorie verwendet.');
|
||||
|
31
msd2/myoos/admin/includes/languages/deu/packingslip.php
Normal file
31
msd2/myoos/admin/includes/languages/deu/packingslip.php
Normal file
@ -0,0 +1,31 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: packingslip.php,v 1.3 2007/06/13 16:15:14 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: packingslip.php,v 1.2 2002/06/15 13:01:56 harley_vb
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
define('TABLE_HEADING_COMMENTS', 'Kommentar');
|
||||
define('TABLE_HEADING_PRODUCTS_MODEL', 'Artikel-Nr.');
|
||||
define('TABLE_HEADING_PRODUCTS_SERIAL_NUMBER', 'SN');
|
||||
define('TABLE_HEADING_PRODUCTS', 'Artikel');
|
||||
|
||||
define('ENTRY_SOLD_TO', 'Rechnungsanschrift:');
|
||||
define('ENTRY_SHIP_TO', 'Lieferanschrift:');
|
||||
define('ENTRY_PAYMENT_METHOD', 'Zahlungsweise:');
|
||||
|
@ -0,0 +1,28 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: password_forgotten.php,v 1.3 2007/06/13 16:15:14 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: password_forgotten.php,v 1.8 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
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
define('ADMIN_PASSWORD_SUBJECT', STORE_NAME . ' - Ihr neues Passwort.');
|
||||
define('ADMIN_EMAIL_TEXT', 'Über die Adresse ' . oos_server_get_var('REMOTE_ADDR') . ' haben wir eine Anfrage zur Passworterneuerung erhalten.' . "\n\n" . 'Ihr neues Passwort für \'' . STORE_NAME . '\' lautet ab sofort:' . "\n\n" . ' %s' . "\n\n");
|
||||
|
||||
define('HEADING_PASSWORD_FORGOTTEN', 'Passwort vergessen');
|
||||
define('TEXT_PASSWORD_INFO', 'Bitte geben Sie Ihren Vornamen und Ihre E-Mail Adresse ein und klicken Sie auf Passwort senden. <br />In Kürze erhalten Sie ein neues Passwort. Verwenden Sie dieses Passwort, um sich anzumelden.');
|
||||
|
20
msd2/myoos/admin/includes/languages/deu/plugins.php
Normal file
20
msd2/myoos/admin/includes/languages/deu/plugins.php
Normal file
@ -0,0 +1,20 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: plugins.php,v 1.3 2007/06/13 16:15:14 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
define('HEADING_TITLE', 'Plugins');
|
||||
define('TABLE_HEADING_PLUGINS', 'Plugins');
|
||||
define('TABLE_HEADING_SORT_ORDER', 'Reihenfolge');
|
||||
define('TABLE_HEADING_STATUS', 'Status');
|
||||
define('TABLE_HEADING_ACTION', 'Aktion');
|
||||
|
||||
define('TEXT_PLUGINS_DIRECTORY', 'Plugin Verzeichnis:');
|
||||
|
98
msd2/myoos/admin/includes/languages/deu/products.php
Normal file
98
msd2/myoos/admin/includes/languages/deu/products.php
Normal file
@ -0,0 +1,98 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: products.php,v 1.3 2007/06/13 16:15:14 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: categories.php,v 1.22 2002/08/17 09:43:33 project3000
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
define('HEADING_TITLE', 'Neuer Artikel');
|
||||
|
||||
define('TEXT_NEW_PRODUCT', 'Neuer Artikel in "%s"');
|
||||
define('TEXT_PRODUCTS', 'Artikel');
|
||||
define('TEXT_PRODUCTS_DATA', 'Artikeldaten');
|
||||
define('TEXT_PRODUCTS_PRICE_INFO', 'Preis:');
|
||||
define('TEXT_PRODUCTS_TAX_CLASS', 'Steuerklasse:');
|
||||
define('TEXT_PRODUCTS_AVERAGE_RATING', 'durchschnittl. Bewertung:');
|
||||
define('TEXT_PRODUCTS_QUANTITY_INFO', 'Anzahl:');
|
||||
define('TEXT_DATE_ADDED', 'hinzugefügt am:');
|
||||
define('TEXT_DATE_AVAILABLE', 'Erscheinungsdatum:');
|
||||
define('TEXT_LAST_MODIFIED', 'letzte Änderung:');
|
||||
define('TEXT_IMAGE_NONEXISTENT', 'BILD EXISTIERT NICHT');
|
||||
define('TEXT_PRODUCT_MORE_INFORMATION', 'Für weitere Informationen, besuchen Sie bitte die <a href="http://%s" target="blank"><u>Homepage</u></a> des Herstellers.');
|
||||
define('TEXT_PRODUCT_DATE_ADDED', 'Diesen Artikel haben wir am %s in unseren Katalog aufgenommen.');
|
||||
define('TEXT_PRODUCT_DATE_AVAILABLE', 'Dieser Artikel ist erhältlich ab %s.');
|
||||
|
||||
define('TEXT_TAX_INFO', 'Netto:');
|
||||
define('TEXT_PRODUCTS_LIST_PRICE', 'empfohlener Verkaufspreis des Herstellers:');
|
||||
|
||||
define('TEXT_PRODUCTS_BASE_PRICE', 'Grundpreis ');
|
||||
define('TEXT_PRODUCTS_BASE_UNIT', 'Grundpreiseinheiten:');
|
||||
define('TEXT_PRODUCTS_BASE_PRICE_FACTOR', 'Faktor zum Berechnen des Grundpreises:');
|
||||
define('TEXT_PRODUCTS_BASE_QUANTITY', 'Basismenge:');
|
||||
define('TEXT_PRODUCTS_PRODUCT_QUANTITY', 'Artikelmenge:');
|
||||
define('TEXT_PRODUCTS_PRODUCT_MINIMUM_ORDER', 'Mindestbestellmenge:');
|
||||
define('TEXT_PRODUCTS_PRODUCT_PACKAGING_UNIT', 'Verpackungseinheit:');
|
||||
define('TEXT_PRODUCTS_PRODUCT_MAXIMUM_ORDER', 'maximale Bestellmenge:');
|
||||
|
||||
define('TEXT_PRODUCTS_UNIT', 'Produkteinheit:');
|
||||
|
||||
define('TEXT_PRODUCTS_IMAGE_REMOVE', '<b>Entfernen</b> des Bildes vom Artikel?');
|
||||
define('TEXT_PRODUCTS_BUTTON_DELETE', '<b>Löschen</b> des Bildes vom Server?');
|
||||
define('TEXT_ADD_MORE_UPLOAD', 'Mehr Felder zum Hochladen hinzufügen');
|
||||
define('TEXT_NOT_RELOAD', 'Lädt nicht erneut!');
|
||||
|
||||
define('TEXT_INFO_DETAILS', 'Details');
|
||||
define('TEXT_INFO_PREVIEW', 'Voransicht');
|
||||
|
||||
define('ENTRY_STATUS', 'Status:');
|
||||
define('TEXT_PRODUCTS_STATUS', 'Produktstatus:');
|
||||
define('TEXT_CATEGORIES', 'Kategorien:');
|
||||
define('TEXT_PRODUCTS_DATE_AVAILABLE', 'Erscheinungsdatum:');
|
||||
define('TEXT_PRODUCT_NOT_AVAILABLE', 'nicht lieferbar');
|
||||
define('TEXT_PRODUCTS_MANUFACTURER', 'Artikel-Hersteller:');
|
||||
define('TEXT_PRODUCTS_NAME', 'Artikelname:');
|
||||
define('TEXT_PRODUCTS_TITLE', 'Artikel-Titel für SEO:');
|
||||
define('TEXT_PRODUCTS_DESCRIPTION', 'Artikelbeschreibung:');
|
||||
define('TEXT_PRODUCTS_SHORT_DESCRIPTION', 'Artikelkurzbeschreibung:');
|
||||
define('TEXT_PRODUCTS_ESSENTIAL_CHARACTERISTICS', 'Die wesentlichen Merkmale:');
|
||||
define('TEXT_PRODUCTS_DESCRIPTION_META', 'Artikelbeschreibung für Description Tag (max. 250 Zeichen)');
|
||||
define('TEXT_PRODUCTS_QUANTITY', 'Lagerbestand:');
|
||||
define('TEXT_PRODUCTS_REORDER_LEVEL', 'Mindestlagerbestand:');
|
||||
define('TEXT_REPLACEMENT_PRODUCT', 'Ersatzprodukt:');
|
||||
define('TEXT_PRODUCTS_MODEL', 'Artikel-Nr.:');
|
||||
define('TEXT_PRODUCTS_EAN', 'EAN :');
|
||||
define('TEXT_PRODUCTS_IMAGE', 'Artikelbilder');
|
||||
define('TEXT_PRODUCTS_URL', 'Herstellerlink:');
|
||||
define('TEXT_PRODUCTS_URL_WITHOUT_HTTP', '<small>(ohne führendes http://)</small>');
|
||||
define('TEXT_PRODUCTS_PRICE', 'Artikelpreis (Netto):');
|
||||
define('TEXT_PRODUCTS_PRICE_WITH_TAX', 'Artikelpreis (Brutto):');
|
||||
|
||||
define('TEXT_PRODUCTS_WEIGHT', 'Artikelgewicht:');
|
||||
define('TEXT_IMAGE_REMOVE', '<b>Entfernen</b> des Bildes vom Artikel?');
|
||||
|
||||
|
||||
define('ERROR_CANNOT_LINK_TO_SAME_CATEGORY', 'Fehler: Produkte können nicht in der gleichen Kategorie verlinkt werden.');
|
||||
define('ERROR_CATALOG_IMAGE_DIRECTORY_NOT_WRITEABLE', 'Fehler: Das Verzeichnis \'images\' im Katalogverzeichnis ist schreibgeschützt: ' . OOS_ABSOLUTE_PATH . OOS_IMAGES);
|
||||
define('ERROR_CATALOG_IMAGE_DIRECTORY_DOES_NOT_EXIST', 'Fehler: Das Verzeichnis \'images\' im Katalogverzeichnis ist nicht vorhanden: ' . OOS_ABSOLUTE_PATH . OOS_IMAGES);
|
||||
define('ERROR_OUTOFSTOCK', 'Der Lagerbestand dieses Artikels ist nicht ausreichend Verfügbar.');
|
||||
define('ERROR_REPLACEMENT', 'Es wurde ein Ersatzprodukt angeben. Der Status wurde geändert auf: Nicht mehr verfügbar/Es gibt ein Ersatzproduk.');
|
||||
|
||||
define('TEXT_DISCOUNTS_TITLE', 'Staffelpreise');
|
||||
define('TEXT_DISCOUNTS_BREAKS', 'Staffel');
|
||||
define('TEXT_DISCOUNTS_QTY', 'Menge');
|
||||
define('TEXT_DISCOUNTS_PRICE', 'Preis (Netto):');
|
||||
define('TEXT_DISCOUNTS_PRICE_WITH_TAX', 'Preis (Brutto):');
|
@ -0,0 +1,48 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: products_attributes.php,v 1.3 2007/06/13 16:15:14 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: products_attributes.php,v 1.9 2002/03/30 15:11:25 harley_vb
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
define('HEADING_TITLE_OPT', 'Artikelmerkmale');
|
||||
define('HEADING_TITLE_VAL', 'Optionswert');
|
||||
define('HEADING_TITLE_ATRIB', 'Artikelmerkmale');
|
||||
|
||||
define('TABLE_HEADING_ID', 'ID');
|
||||
define('TABLE_HEADING_PRODUCT', 'Artikelname');
|
||||
define('TABLE_HEADING_OPT_NAME', 'Optionsname');
|
||||
define('TABLE_HEADING_OPT_VALUE', 'Optionswert');
|
||||
define('TABLE_HEADING_OPT_TYPE', 'Optionstype');
|
||||
define('TABLE_HEADING_SORT_ORDER_VALUE', 'Reihenfolge');
|
||||
define('TABLE_HEADING_OPT_PRICE', 'Preis');
|
||||
define('TABLE_HEADING_OPT_PRICE_PREFIX', 'Vorzeichen (+/-)');
|
||||
define('TABLE_HEADING_ACTION', 'Aktion');
|
||||
define('TABLE_HEADING_DOWNLOAD', 'Downloadbare Produkte:');
|
||||
define('TABLE_TEXT_FILENAME', 'Dateiname:');
|
||||
define('TABLE_TEXT_MAX_DAYS', 'Zeitspanne:');
|
||||
define('TABLE_TEXT_MAX_COUNT', 'Maximale Anzahl zum Herunterladen:');
|
||||
|
||||
define('TEXT_TAX_INFO', 'Netto:');
|
||||
define('MAX_ROW_LISTS_OPTIONS', 10);
|
||||
|
||||
define('TEXT_WARNING_OF_DELETE', 'Mit dieser Option sind Artikel, sowie Optionsmerkmale verbunden - Löschen wird nicht empfohlen.');
|
||||
define('TEXT_OK_TO_DELETE', 'Mit dieser Option sind keine Artikel, sowie Optionsmerkmale verbunden - Sie kann gelöscht werden.');
|
||||
define('TEXT_OPTION_ID', 'Options ID');
|
||||
define('TEXT_OPTION_NAME', 'Optionsname');
|
||||
|
@ -0,0 +1,30 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: products_expected.php,v 1.3 2007/06/13 16:15:14 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: products_expected.php,v 1.8 2002/03/30 15:09:07 harley_vb
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
define('HEADING_TITLE', 'erwartete Artikel');
|
||||
|
||||
define('TABLE_HEADING_PRODUCTS', 'Artikel');
|
||||
define('TABLE_HEADING_DATE_EXPECTED', 'verfügbar ab:');
|
||||
define('TABLE_HEADING_ACTION', 'Aktion');
|
||||
|
||||
define('TEXT_INFO_DATE_EXPECTED', 'verfügbar ab:');
|
||||
|
37
msd2/myoos/admin/includes/languages/deu/products_status.php
Normal file
37
msd2/myoos/admin/includes/languages/deu/products_status.php
Normal file
@ -0,0 +1,37 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: products.php,v 1.3 2007/06/13 16:15:14 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: categories.php,v 1.22 2002/08/17 09:43:33 project3000
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
define('HEADING_TITLE', 'Produktstatus');
|
||||
|
||||
define('TABLE_HEADING_PRODUCTS_STATUS', 'Produktstatus');
|
||||
define('TABLE_HEADING_ACTION', 'Aktion');
|
||||
|
||||
define('TEXT_INFO_EDIT_INTRO', 'Bitte führen Sie alle notwendigen Änderungen durch');
|
||||
define('TEXT_INFO_PRODUCTS_STATUS_NAME', 'Produktstatus:');
|
||||
define('TEXT_INFO_INSERT_INTRO', 'Bitte geben Sie den neuen Produktstatus mit allen relevanten Daten ein');
|
||||
define('TEXT_INFO_DELETE_INTRO', 'Sind Sie sicher, dass Sie diesen Produktstatus löschen möchten?');
|
||||
define('TEXT_INFO_HEADING_NEW_PRODUCTS_STATUS', 'Neuer Produktstatus');
|
||||
define('TEXT_INFO_HEADING_EDIT_PRODUCTS_STATUS', 'Produktstatus bearbeiten');
|
||||
define('TEXT_INFO_HEADING_DELETE_PRODUCTS_STATUS', 'Produktstatus löschen');
|
||||
|
||||
define('ERROR_REMOVE_DEFAULT_ORDER_STATUS', 'Fehler: Der Standard-Produktstatus kann nicht gelöscht werden. Bitte definieren Sie einen neuen Standard-Produktstatus und wiederholen Sie den Vorgang.');
|
||||
define('ERROR_STATUS_USED_IN_PRODUCTS', 'Fehler: Dieser Produktstatus wird zur Zeit noch bei den Bestellungen verwendet.');
|
||||
define('ERROR_STATUS_USED_IN_HISTORY', 'Fehler: Dieser Produktstatus wird zur Zeit noch in der Bestellhistorie verwendet.');
|
37
msd2/myoos/admin/includes/languages/deu/products_units.php
Normal file
37
msd2/myoos/admin/includes/languages/deu/products_units.php
Normal file
@ -0,0 +1,37 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: products_units.php,v 1.3 2007/06/13 16:15:14 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: orders_status.php,v 1.7 2002/01/30 11:10:08 harley_vb
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
define('HEADING_TITLE', 'Produkteinheiten');
|
||||
|
||||
define('TABLE_HEADING_PRODUCTS_UNITS', 'Produkteinheit');
|
||||
define('TABLE_HEADING_ACTION', 'Aktion');
|
||||
|
||||
define('TEXT_INFO_EDIT_INTRO', 'Bitte führen Sie alle notwendigen Änderungen durch');
|
||||
define('TEXT_INFO_PRODUCTS_UNITS_NAME', 'Produkteinheit:');
|
||||
define('TEXT_INFO_INSERT_INTRO', 'Bitte geben Sie die neue MaßProdukteinheit oder GewichtsProdukteinheit ein');
|
||||
define('TEXT_INFO_DELETE_INTRO', 'Sind Sie sicher, dass Sie diese Produkteinheit löschen möchten?');
|
||||
define('TEXT_INFO_HEADING_NEW_PRODUCTS_UNITS', 'Neue MaßProdukteinheit oder GewichtsProdukteinheit');
|
||||
define('TEXT_INFO_HEADING_EDIT_PRODUCTS_UNITS', 'Produkteinheit bearbeiten');
|
||||
define('TEXT_INFO_HEADING_DELETE_PRODUCTS_UNITS', 'Produkteinheit löschen');
|
||||
|
||||
define('ERROR_REMOVE_DEFAULT_PRODUCTS_UNITS', 'Fehler: Die Standard-Produkteinheit kann nicht gelöscht werden. Bitte definieren Sie einen neuen Standard-Produkteinheit und wiederholen Sie den Vorgang.');
|
||||
define('ERROR_STATUS_USED_IN_PRODUCTS', 'Fehler: Diese Produkteinheit wird zur Zeit noch bei den Produkten verwendet.');
|
||||
|
54
msd2/myoos/admin/includes/languages/deu/reviews.php
Normal file
54
msd2/myoos/admin/includes/languages/deu/reviews.php
Normal file
@ -0,0 +1,54 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: reviews.php,v 1.3 2007/06/13 16:15:14 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: reviews.php,v 1.6 2002/02/06 22:59:17 harley_vb
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
define('HEADING_TITLE', 'Produktbewertungen');
|
||||
|
||||
define('TABLE_HEADING_PRODUCTS', 'Artikel');
|
||||
define('TABLE_HEADING_RATING', 'Bewertung');
|
||||
define('TABLE_HEADING_STATUS', 'Status:');
|
||||
define('TABLE_HEADING_DATE_ADDED', 'hinzugefügt am');
|
||||
define('TABLE_HEADING_ACTION', 'Aktion');
|
||||
|
||||
define('ENTRY_PRODUCT', 'Artikel:');
|
||||
define('ENTRY_FROM', 'von:');
|
||||
define('ENTRY_DATE', 'Datum:');
|
||||
define('ENTRY_REVIEW', 'Bewertung:');
|
||||
define('ENTRY_REVIEW_TEXT', '<small><font color="#ff0000"><b>HINWEIS:</b></font></small> HTML wird nicht konvertiert! ');
|
||||
define('ENTRY_RATING', 'Bewertung:');
|
||||
|
||||
define('TEXT_INFO_DELETE_REVIEW_INTRO', 'Sind Sie sicher, dass Sie diese Bewertung löschen möchten?');
|
||||
|
||||
define('TEXT_INFO_DATE_ADDED', 'hinzugefügt am:');
|
||||
define('TEXT_INFO_LAST_MODIFIED', 'letzte Änderung:');
|
||||
define('TEXT_IMAGE_NONEXISTENT', 'BILD EXISTIERT NICHT');
|
||||
define('TEXT_INFO_REVIEW_AUTHOR', 'geschrieben von:');
|
||||
define('TEXT_INFO_REVIEW_RATING', 'Bewertung:');
|
||||
define('TEXT_INFO_REVIEW_STATUS', 'Status der Bewertung:');
|
||||
define('TEXT_INFO_REVIEW_READ', 'gelesen :');
|
||||
define('TEXT_INFO_REVIEW_SIZE', 'Grösse:');
|
||||
define('TEXT_INFO_PRODUCTS_AVERAGE_RATING', 'durchschnittl. Wertung:');
|
||||
|
||||
define('TEXT_OF_5_STARS', '%s von 5 Sternen!');
|
||||
define('TEXT_GOOD', '<small><font color="#ff0000"><b>GUT</b></font></small>');
|
||||
define('TEXT_BAD', '<small><font color="#ff0000"><b>SCHLECHT</b></font></small>');
|
||||
define('TEXT_INFO_HEADING_DELETE_REVIEW', 'Bewertung löschen');
|
||||
|
45
msd2/myoos/admin/includes/languages/deu/specials.php
Normal file
45
msd2/myoos/admin/includes/languages/deu/specials.php
Normal file
@ -0,0 +1,45 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: specials.php,v 1.3 2007/06/13 16:15:14 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: specials.php,v 1.10 2002/01/31 01:17:51 harley_vb
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
define('HEADING_TITLE', 'Sonderangebote');
|
||||
|
||||
define('TABLE_HEADING_PRODUCTS', 'Artikel');
|
||||
define('TABLE_HEADING_PRODUCTS_PRICE', 'Artikelpreis');
|
||||
define('TABLE_HEADING_STATUS', 'Status');
|
||||
define('TABLE_HEADING_ACTION', 'Aktion');
|
||||
define('TEXT_TAX_INFO', 'Netto:');
|
||||
define('TEXT_SPECIALS_PRODUCT', 'Produkt:');
|
||||
define('TEXT_SPECIALS_SPECIAL_PRICE', 'Angebotspreis:');
|
||||
define('TEXT_SPECIALS_EXPIRES_DATE', 'Gültig bis:<br /><small>(YYYY-MM-DD)</small>');
|
||||
define('TEXT_SPECIALS_PRICE_TIP', '<b>Bemerkung:</b><ul><li>Sie können im Feld Angebotspreis auch prozentuale Werte angeben, z.B.: <b>20%</b></li><li>Wenn Sie einen neuen Preis eingeben, müssen die Nachkommastellen mit einem \'.\' getrennt werden, z.B.: <b>49.99</b></li><li>Lassen Sie das Feld <b>\'Gltig bis\'</b> leer, wenn der Angebotspreis zeitlich unbegrenzt gelten soll.</li></ul>');
|
||||
|
||||
define('TEXT_INFO_DATE_ADDED', 'hinzugefügt am:');
|
||||
define('TEXT_INFO_LAST_MODIFIED', 'letzte Änderung:');
|
||||
define('TEXT_INFO_NEW_PRICE', 'neuer Preis:');
|
||||
define('TEXT_INFO_ORIGINAL_PRICE', 'alter Preis:');
|
||||
define('TEXT_INFO_PERCENTAGE', 'Prozent:');
|
||||
define('TEXT_INFO_EXPIRES_DATE', 'Gültig bis:');
|
||||
define('TEXT_INFO_STATUS_CHANGE', 'Status geändert:');
|
||||
define('TEXT_IMAGE_NONEXISTENT', 'BILD EXISTIERT NICHT');
|
||||
|
||||
define('TEXT_INFO_HEADING_DELETE_SPECIALS', 'Sonderangebot löschen');
|
||||
define('TEXT_INFO_DELETE_INTRO', 'Sind Sie sicher, dass Sie das Sonderangebot löschen möchten?');
|
||||
|
28
msd2/myoos/admin/includes/languages/deu/stats_customers.php
Normal file
28
msd2/myoos/admin/includes/languages/deu/stats_customers.php
Normal file
@ -0,0 +1,28 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: stats_customers.php,v 1.3 2007/06/13 16:15:14 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: stats_customers.php,v 1.9 2002/03/30 15:03:59 harley_vb
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
define('HEADING_TITLE', 'Kunden mit den höchsten Umsätzen');
|
||||
|
||||
define('TABLE_HEADING_NUMBER', 'Nr.');
|
||||
define('TABLE_HEADING_CUSTOMERS', 'Kunde');
|
||||
define('TABLE_HEADING_TOTAL_PURCHASED', 'Gesamtsumme');
|
||||
|
46
msd2/myoos/admin/includes/languages/deu/stats_keywords.php
Normal file
46
msd2/myoos/admin/includes/languages/deu/stats_keywords.php
Normal file
@ -0,0 +1,46 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: stats_keywords.php,v 1.3 2007/06/13 16:15:14 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: stats_keywords.php
|
||||
----------------------------------------------------------------------
|
||||
by Cheng
|
||||
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2002 - 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
define('HEADING_TITLE', 'Suchworte Statistik und Ersetzungen');
|
||||
define('WORD_ENTRY_ORIGINAL', 'Original Worte:');
|
||||
define('WORD_ENTRY_REPLACEMENT', 'wird ersetzt durch:');
|
||||
define('KEYWORD_TITLE', 'Suchwort');
|
||||
define('KEYWORD_TITLE2', 'Suchzähler');
|
||||
|
||||
define('SIDEBAR_HEADING', 'Suchwortoptionen');
|
||||
define('SIDEBAR_INFO_1', 'Benutzen Sie den Schalter unterhalb um ALLE neuen Daten in der Datenbank zu dieser Seite hinzuzufügen.');
|
||||
define('SIDEBAR_INFO_2', 'Um <b>ALLE</b> Suchworte aus der Datanebank zu löschen, klicken Sie auf den unteren Schalter');
|
||||
define('SIDEBAR_INFO_3', '<b>Ersetzen von Suchwörtern und Begriffen</b><br /><br />Klicken Sie hier um falsche Suchwörter anzuzeigen oder zu editieren:');
|
||||
|
||||
# define('BUTTON_VIEW_WORD_LIST', 'Zeige Wortliste');
|
||||
define('BUTTON_VIEW_WORD_LIST', 'View word/phrase list');
|
||||
|
||||
define('BUTTON_UPDATE_WORD_LIST', 'Update von der Datenbank');
|
||||
define('BUTTON_SORT_NAME', 'Sortierung nach Namen');
|
||||
define('BUTTON_SORT_TOTAL', 'Sortierung nach Summe');
|
||||
define('BUTTON_DELETE', 'Löschen');
|
||||
define('BUTTON_EDIT_WORD', 'Editiere dieses Wort');
|
||||
define('BUTTON_ADD_WORD', 'Wort zur Tabelle hinzuf¨gen');
|
||||
|
||||
define('LINK_EDIT', 'Editieren');
|
||||
define('LINK_DELETE', 'Löschen');
|
34
msd2/myoos/admin/includes/languages/deu/stats_low_stock.php
Normal file
34
msd2/myoos/admin/includes/languages/deu/stats_low_stock.php
Normal file
@ -0,0 +1,34 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
$Id: stats_low_stock.php,v 1.3 2007/06/13 16:15:14 r23 Exp $
|
||||
|
||||
MyOOS [Shopsystem]
|
||||
https://www.oos-shop.de
|
||||
|
||||
|
||||
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
||||
----------------------------------------------------------------------
|
||||
Based on:
|
||||
|
||||
File: stats_low_stock.php,v 1.10 2002/04/12 23:13:45 Mounir Ayari
|
||||
----------------------------------------------------------------------
|
||||
The Exchange Project - Community Made Shopping!
|
||||
http://www.theexchangeproject.org
|
||||
|
||||
Copyright (c) 2000,2001 The Exchange Project
|
||||
----------------------------------------------------------------------
|
||||
osCommerce, Open Source E-Commerce Solutions
|
||||
http://www.oscommerce.com
|
||||
|
||||
Copyright (c) 2001 - 2003 osCommerce
|
||||
----------------------------------------------------------------------
|
||||
Released under the GNU General Public License
|
||||
---------------------------------------------------------------------- */
|
||||
|
||||
define('TOP_BAR_TITLE', 'Statistics');
|
||||
define('HEADING_TITLE', 'unterschrittene Mindestmengen');
|
||||
|
||||
define('TABLE_HEADING_NUMBER', 'Nr.');
|
||||
define('TABLE_HEADING_PRODUCTS', 'Produkt Name');
|
||||
define('TABLE_HEADING_QTY_LEFT', 'Anzahl');
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user