40 lines
1.6 KiB
PHP
40 lines
1.6 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' => 'Kategorie',
|
|
'VT_GTM_EE_categoryList' => 'Kategorie',
|
|
'VT_GTM_EE_searchList' => 'Suchergebnisse',
|
|
'VT_GTM_EE_cross' => 'Crossselling',
|
|
'VT_GTM_EE_accessories' => 'Zubehör',
|
|
'VT_GTM_EE_alsoBought' => 'Kunden kaufen auch',
|
|
'VT_GTM_EE_last' => 'Zuletzt angesehen',
|
|
'VT_GTM_EE_bargainItems' => 'Angebot der Woche',
|
|
'VT_GTM_EE_newItems' => 'Frisch eingetroffen',
|
|
'VT_GTM_EE_topBox' => 'Topseller',
|
|
// ab hier wird wieder benötigt
|
|
|
|
// Dimensionen im checkout
|
|
'VT_GTM_EE_LOGINOPTION' => 'Bestandskunde',
|
|
'VT_GTM_EE_LOGINOPTION1' => 'Gastbestellung',
|
|
'VT_GTM_EE_LOGINOPTION2' => 'Bestandskunde',
|
|
'VT_GTM_EE_LOGINOPTION3' => 'Neukunde'
|
|
|
|
];
|