38 Zeilen
1.5 KiB
PHP
38 Zeilen
1.5 KiB
PHP
<?php
|
|
/**
|
|
* [bla] tag-manager
|
|
* Copyright (C) 2018 bestlife AG
|
|
* info: oxid@bestlife.ag
|
|
*
|
|
* This program is free software;
|
|
* you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation;
|
|
* either version 3 of the License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
|
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
* You should have received a copy of the GNU General Public License along with this program; if not, see <http://www.gnu.org/licenses/>
|
|
**/
|
|
|
|
$aLang = [
|
|
'charset' => 'UTF-8',
|
|
|
|
|
|
// das hier wird nicht mehr benötigt, aber ich lasse es drin, falls doch
|
|
// leserliche Namen für product list performance (GA)
|
|
'VT_GTM_EE_productList' => 'Category',
|
|
'VT_GTM_EE_searchList' => 'Search',
|
|
'VT_GTM_EE_cross' => 'Crossselling',
|
|
'VT_GTM_EE_accessories' => 'Accessories',
|
|
'VT_GTM_EE_last' => 'Last Seen',
|
|
'VT_GTM_EE_bargainItems' => 'Offer of the Week',
|
|
'VT_GTM_EE_newItems' => 'Just Arrived',
|
|
'VT_GTM_EE_topBox' => 'Topseller',
|
|
// ab hier wird wieder benötigt
|
|
|
|
// Dimensionen im checkout
|
|
'VT_GTM_EE_LOGINOPTION' => 'Existing Customer',
|
|
'VT_GTM_EE_LOGINOPTION1' => 'Guest',
|
|
'VT_GTM_EE_LOGINOPTION2' => 'Existing Customer',
|
|
'VT_GTM_EE_LOGINOPTION3' => 'New Customer'
|
|
];
|