Skip to content

Commit

Permalink
Merge branch 'hotfix/2.1.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
aschempp committed Jun 2, 2014
2 parents 869e87e + 56320e4 commit 4b96b55
Show file tree
Hide file tree
Showing 41 changed files with 240 additions and 97 deletions.
19 changes: 19 additions & 0 deletions system/modules/isotope/docs/CHANGELOG-2.1.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,25 @@
Isotope eCommerce Changelog
===========================

Version 2.1.2-stable (2014-06-02)
---------------------------------

### Fixed
- Request cache did not consider variant filtering (#1100)
- Wrong column count in collection template again (#1091)
- Assets import calling to classes in wrong namespace (#1113)
- TypeAgent not being compatible with Contao 3.3 changes
- Product translations not being compatible with Contao 3.3 changes (#1109)
- HAVING support was incompatible with Contao 3.3 (#1112)
- Product filter removed all parameters except page instead of the opposite (#1098)
- DatePicker was not compatible with changes introduced in Contao 3.3 (#1119)
- Related products module could get hidden in edge case (#1090)
- Fatal error when setting a redirect page for product search (#1068)
- Prevent Contao from trying to load an empty tinyMCE config (#1111)
- Variants were not shown if product group filter was applied (#1097)
- Attributes were always initialized with array default value (#1021)


Version 2.1.1-stable (2014-05-20)
---------------------------------

Expand Down
26 changes: 14 additions & 12 deletions system/modules/isotope/drivers/DC_ProductData.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ class DC_ProductData extends \DC_Table
protected $blnEditLanguage;

/**
* Array of languages for this product's type
* Array of translations for this product's type
* @var array
*/
protected $arrLanguages;
protected $arrTranslations;

/**
* Array of language labels
Expand Down Expand Up @@ -136,7 +136,9 @@ public function showAll()
$this->procedure[] = "language=''";

// Display products filtered by group
$this->procedure[] = "gid IN(" . implode(',', array_map('intval', \Database::getInstance()->getChildRecords(array($this->intGroupId), \Isotope\Model\Group::getTable(), false, array($this->intGroupId)))) . ")";
if (!$this->intId) {
$this->procedure[] = "gid IN(" . implode(',', array_map('intval', \Database::getInstance()->getChildRecords(array($this->intGroupId), \Isotope\Model\Group::getTable(), false, array($this->intGroupId)))) . ")";
}

// Custom filter
if (is_array($GLOBALS['TL_DCA'][$this->strTable]['list']['sorting']['filter']) && !empty($GLOBALS['TL_DCA'][$this->strTable]['list']['sorting']['filter'])) {
Expand Down Expand Up @@ -441,13 +443,13 @@ public function edit($intID = false, $ajaxId = false)
}

if (count($arrPageLanguages) > 1) {
$this->arrLanguageLabels = \System::getLanguages();
$this->arrLanguages = array_intersect(array_keys($this->arrLanguageLabels), $arrPageLanguages);
$this->arrTranslationLabels = \System::getLanguages();
$this->arrTranslations = array_intersect(array_keys($this->arrTranslationLabels), $arrPageLanguages);

if (\Input::post('FORM_SUBMIT') == 'tl_language') {
$session = $this->Session->getData();

if (in_array(\Input::post('language'), $this->arrLanguages)) {
if (in_array(\Input::post('language'), $this->arrTranslations)) {
$session['language'][$this->strTable][$this->intId] = \Input::post('language');

if (\Input::post('deleteLanguage') != '') {
Expand All @@ -463,7 +465,7 @@ public function edit($intID = false, $ajaxId = false)
\Controller::reload();
}

if ($_SESSION['BE_DATA']['language'][$this->strTable][$this->intId] != '' && in_array($_SESSION['BE_DATA']['language'][$this->strTable][$this->intId], $this->arrLanguages)) {
if ($_SESSION['BE_DATA']['language'][$this->strTable][$this->intId] != '' && in_array($_SESSION['BE_DATA']['language'][$this->strTable][$this->intId], $this->arrTranslations)) {
$objRow = $this->Database->prepare("SELECT * FROM " . $this->strTable . " WHERE pid=? AND language=?")->execute($this->intId, $_SESSION['BE_DATA']['language'][$this->strTable][$this->intId]);

if (!$objRow->numRows) {
Expand Down Expand Up @@ -672,21 +674,21 @@ public function edit($intID = false, $ajaxId = false)
}

// Check languages
if (is_array($this->arrLanguages) && !empty($this->arrLanguages)) {
if (is_array($this->arrTranslations) && !empty($this->arrTranslations)) {
$arrAvailableLanguages = $this->Database->prepare("SELECT language FROM " . $this->strTable . " WHERE pid=?")->execute($this->intId)->fetchEach('language');
$available = '';
$undefined = '';

foreach ($this->arrLanguages as $language) {
foreach ($this->arrTranslations as $language) {
if (in_array($language, $arrAvailableLanguages)) {
if ($_SESSION['BE_DATA']['language'][$this->strTable][$this->intId] == $language) {
$available .= '<option value="' . $language . '" selected="selected">' . $this->arrLanguageLabels[$language] . '</option>';
$available .= '<option value="' . $language . '" selected="selected">' . $this->arrTranslationLabels[$language] . '</option>';
$_SESSION['TL_INFO'] = array($GLOBALS['TL_LANG']['MSC']['editingLanguage']);
} else {
$available .= '<option value="' . $language . '">' . $this->arrLanguageLabels[$language] . '</option>';
$available .= '<option value="' . $language . '">' . $this->arrTranslationLabels[$language] . '</option>';
}
} else {
$undefined .= '<option value="' . $language . '">' . $this->arrLanguageLabels[$language] . ' (' . $GLOBALS['TL_LANG']['MSC']['undefinedLanguage'] . ')' . '</option>';
$undefined .= '<option value="' . $language . '">' . $this->arrTranslationLabels[$language] . ' (' . $GLOBALS['TL_LANG']['MSC']['undefinedLanguage'] . ')' . '</option>';
}
}

Expand Down
1 change: 1 addition & 0 deletions system/modules/isotope/languages/cs/iso_upgrade.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@
* @license http://www.gnu.org/licenses/lgpl-3.0.html
*/

$GLOBALS['TL_LANG']['UPG']['submit'] = 'Aktualizovat';
1 change: 1 addition & 0 deletions system/modules/isotope/languages/da/iso_upgrade.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@
* @license http://www.gnu.org/licenses/lgpl-3.0.html
*/

$GLOBALS['TL_LANG']['UPG']['submit'] = 'Opdater';
3 changes: 3 additions & 0 deletions system/modules/isotope/languages/de/iso_upgrade.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,6 @@
* @license http://www.gnu.org/licenses/lgpl-3.0.html
*/

$GLOBALS['TL_LANG']['UPG']['headline'] = 'Migrationsassistent (Version: %s)';
$GLOBALS['TL_LANG']['UPG']['submit'] = 'Aktualisieren';
$GLOBALS['TL_LANG']['UPG'][20010000] = 'Isotope muss wissen, welches JavaScript-Template zur Ausgabe der Lightbox in Galerien ausgewählt ist. Bitte wählen Sie das passende Template für jede Galerie aus (meistens <i>moo_mediabox</i> oder <i>j_colorbox</i>), abhängig davon, ob Sie MooTools oder jQuery auf Ihrer Website verwenden. Dies kann jederzeit in den Galerie-Einstellungen geändert werden.';
7 changes: 7 additions & 0 deletions system/modules/isotope/languages/de/tl_iso_config.php
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,12 @@
$GLOBALS['TL_LANG']['tl_iso_config']['cartMinSubtotal'][1] = 'Diese Gesamtsumme muss im Warenkorb mindest erreicht werden um die Bestellung durchzuführen. Geben Sie eine 0 ein um diese Funktion zu deaktivieren.';
$GLOBALS['TL_LANG']['tl_iso_config']['newProductPeriod'][0] = 'Dauer, für die ein Produkt als "Neu" angezeigt wird';
$GLOBALS['TL_LANG']['tl_iso_config']['newProductPeriod'][1] = 'Wenn Sie neue Produkte hervorheben möchten, können Sie hier eine Dauer festlegen. Es wird automatisch eine CSS-Klasse "new" zu jedem Produkt in ganz Isotope eCommerce hinzugefügt.';
$GLOBALS['TL_LANG']['tl_iso_config']['ga_enable'][0] = 'Google Analytics aktivieren';
$GLOBALS['TL_LANG']['tl_iso_config']['ga_enable'][1] = 'Aktivieren Sie das Tracking with Google Analytics.';
$GLOBALS['TL_LANG']['tl_iso_config']['ga_account'][0] = 'Konto';
$GLOBALS['TL_LANG']['tl_iso_config']['ga_account'][1] = 'Bitte geben Sie die Kontoschlüssel (UA-XXXXXXX-X) an.';
$GLOBALS['TL_LANG']['tl_iso_config']['ga_member'][0] = 'Mitglieder tracken';
$GLOBALS['TL_LANG']['tl_iso_config']['ga_member'][1] = 'Geben Sie Simple Token ein um Mitglieder zu tracken (z. B. ##firstname## ##lastname##). Achtung: vergewissern Sie sich, dass Sie das machen dürfen!';
$GLOBALS['TL_LANG']['tl_iso_config']['left'] = 'Links des Preises';
$GLOBALS['TL_LANG']['tl_iso_config']['right'] = 'Rechts des Preises';
$GLOBALS['TL_LANG']['tl_iso_config']['div'] = 'Dividieren';
Expand Down Expand Up @@ -136,3 +142,4 @@
$GLOBALS['TL_LANG']['tl_iso_config']['images_legend'] = 'Bilder';
$GLOBALS['TL_LANG']['tl_iso_config']['url_legend'] = 'URL-Einstellungen';
$GLOBALS['TL_LANG']['tl_iso_config']['products_legend'] = 'Produkte';
$GLOBALS['TL_LANG']['tl_iso_config']['analytics_legend'] = 'Analytics';
2 changes: 2 additions & 0 deletions system/modules/isotope/languages/de/tl_iso_gallery.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@
$GLOBALS['TL_LANG']['tl_iso_gallery']['main_size'][1] = 'Bitte geben Sie eine Breite und Höhe für das Hauptbild ein.';
$GLOBALS['TL_LANG']['tl_iso_gallery']['gallery_size'][0] = 'Galeriegröße';
$GLOBALS['TL_LANG']['tl_iso_gallery']['gallery_size'][1] = 'Bitte geben Sie eine Breite und Höhe für zusätzliche Bilder ein.';
$GLOBALS['TL_LANG']['tl_iso_gallery']['lightbox_template'][0] = 'Lightbox-Template';
$GLOBALS['TL_LANG']['tl_iso_gallery']['lightbox_template'][1] = 'Bitte wählen Sie das Lightbox-Template aus Ihrem Seitenlayout um die Bilder-Galerie nach einer AJAX-Anfrage neu zu laden';
$GLOBALS['TL_LANG']['tl_iso_gallery']['lightbox_size'][0] = 'Lightbox Bildgröße';
$GLOBALS['TL_LANG']['tl_iso_gallery']['lightbox_size'][1] = 'Bitte geben Sie eine Breite und Höhe für Lightbox-Bilder ein.';
$GLOBALS['TL_LANG']['tl_iso_gallery']['main_watermark_image'][0] = 'Hauptbild-Wasserzeichen';
Expand Down
2 changes: 2 additions & 0 deletions system/modules/isotope/languages/de/tl_iso_orderstatus.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@

$GLOBALS['TL_LANG']['tl_iso_orderstatus']['name'][0] = 'Name';
$GLOBALS['TL_LANG']['tl_iso_orderstatus']['name'][1] = 'Bitte geben Sie den Namen für den Status ein.';
$GLOBALS['TL_LANG']['tl_iso_orderstatus']['color'][0] = 'Farbe';
$GLOBALS['TL_LANG']['tl_iso_orderstatus']['color'][1] = 'Hier können Sie eine Farbe für den Bestellstatus festlegen. Die Farbe wird in der Bestellliste im Backend ausgegeben.';
$GLOBALS['TL_LANG']['tl_iso_orderstatus']['paid'][0] = 'Die Bestellung wurde bezahlt';
$GLOBALS['TL_LANG']['tl_iso_orderstatus']['paid'][1] = 'Bei diesem Status wurde die Bestellung bezahlt. Beispielsweise ist das herunterladen von Dateien möglich.';
$GLOBALS['TL_LANG']['tl_iso_orderstatus']['welcomescreen'][0] = 'Auf der Willkommensseite anzeigen';
Expand Down
1 change: 1 addition & 0 deletions system/modules/isotope/languages/de/tl_iso_product.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@
$GLOBALS['TL_LANG']['tl_iso_product']['mmTranslateAll'][1] = 'Dieses Bild nicht in die übersetzte Version übernehmen.';
$GLOBALS['TL_LANG']['tl_iso_product']['variantValuesLabel'] = 'Variante';
$GLOBALS['TL_LANG']['tl_iso_product']['showVariants'] = 'Zeige Produktvarianten';
$GLOBALS['TL_LANG']['tl_iso_product']['priceBlankOptionLabel'] = 'Steuerfrei';
$GLOBALS['TL_LANG']['tl_iso_product']['new'][0] = 'Neues Produkt';
$GLOBALS['TL_LANG']['tl_iso_product']['new'][1] = 'Neues Produkt erstellen';
$GLOBALS['TL_LANG']['tl_iso_product']['new_variant'][0] = 'Variante hinzufügen';
Expand Down
5 changes: 5 additions & 0 deletions system/modules/isotope/languages/de/tl_module.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@
$GLOBALS['TL_LANG']['tl_module']['iso_display404Page'][1] = 'Die 404-Fehlerseite anzeigen falls kein Produktalias in der URL vorhanden ist. Verwenden Sie diese Einstellung falls das Leser-Modul auf einer separaten Seite verwendet wird, die sonst nicht aufgerufen werden darf.';
$GLOBALS['TL_LANG']['tl_module']['iso_checkout_method'][0] = 'Bestellvorgang-Art';
$GLOBALS['TL_LANG']['tl_module']['iso_checkout_method'][1] = 'Wählen Sie eine Bestellvorgang-Art';
$GLOBALS['TL_LANG']['tl_module']['iso_loginRequired'][0] = 'Login erforderlich machen';
$GLOBALS['TL_LANG']['tl_module']['iso_loginRequired'][1] = 'Aktivieren Sie diese Checkbox, wenn ein Login für die Ansicht dieses Moduls erzwungen werden soll (z.B. wenn eine Bestellung zu einem Mitglied gehört).';
$GLOBALS['TL_LANG']['tl_module']['iso_login_jumpTo'][0] = 'Anmeldeseite';
$GLOBALS['TL_LANG']['tl_module']['iso_login_jumpTo'][1] = 'Wählen Sie die Seite auf der sich der Nutzer anmelden kann.';
$GLOBALS['TL_LANG']['tl_module']['iso_addProductJumpTo'][0] = '"In den Warenkorb"-Weiterleitungsseite hinzufügen';
$GLOBALS['TL_LANG']['tl_module']['iso_addProductJumpTo'][1] = 'Diese Einstellung gibt an, zu welcher Seite - außer der gerade aktiven - der Nutzer weitergeleitet wird, wenn er ein Produkt in den Warenkorb legt.';
$GLOBALS['TL_LANG']['tl_module']['iso_cols'][0] = 'Spalten';
Expand Down Expand Up @@ -110,6 +114,7 @@
$GLOBALS['TL_LANG']['tl_module']['iso_includeMessages'][1] = 'Diese Einstellung ermöglicht es dem Modul Fehler, Hinweise oder Bestätigungen anzuzeigen, die der Besucher sehen sollte.';
$GLOBALS['TL_LANG']['tl_module']['iso_continueShopping'][0] = '"Einkauf fortsetzen"-Schaltfläche aktivieren';
$GLOBALS['TL_LANG']['tl_module']['iso_continueShopping'][1] = 'Link zum gerade hinzugefügten Produkt hinzufügen.';
$GLOBALS['TL_LANG']['tl_module']['iso_order_conditions_legend'] = 'Bestellbedingungsformular';
$GLOBALS['TL_LANG']['tl_module']['iso_checkout_method_ref']['member'] = 'Anmelden/Registrieren erforderlich';
$GLOBALS['TL_LANG']['tl_module']['iso_checkout_method_ref']['guest'] = 'Nur Gast-Bestellungen';
$GLOBALS['TL_LANG']['tl_module']['iso_checkout_method_ref']['both'] = 'Beides erlaubt';
Expand Down
2 changes: 2 additions & 0 deletions system/modules/isotope/languages/de/tokens.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@
$GLOBALS['TL_LANG']['NOTIFICATION_CENTER_TOKEN']['iso_order_status_change']['cart_text'] = 'Bestellung/Warenkorb im Text-Format.';
$GLOBALS['TL_LANG']['NOTIFICATION_CENTER_TOKEN']['iso_order_status_change']['cart_html'] = 'Bestellung/Warenkorb in HTML.';
$GLOBALS['TL_LANG']['NOTIFICATION_CENTER_TOKEN']['iso_order_status_change']['document'] = 'Das Dokument, welches angehängt werden soll (z. B. eine Rechnung).';
$GLOBALS['TL_LANG']['NOTIFICATION_CENTER_TOKEN']['iso_order_status_change']['billing_address_*'] = 'Alle Rechnungsadresse-Model-Felder.';
$GLOBALS['TL_LANG']['NOTIFICATION_CENTER_TOKEN']['iso_order_status_change']['shipping_address_*'] = 'Alle Versandadresse-Model-Felder.';
$GLOBALS['TL_LANG']['NOTIFICATION_CENTER_TOKEN']['iso_order_status_change']['form_*'] = 'Alle Bestellbedingungen-Formular-Felder.';
$GLOBALS['TL_LANG']['NOTIFICATION_CENTER_TOKEN']['iso_order_status_change']['payment_id'] = 'ID der Zahlungsart.';
$GLOBALS['TL_LANG']['NOTIFICATION_CENTER_TOKEN']['iso_order_status_change']['payment_label'] = 'Zahlungsart-Beschriftung.';
Expand Down
1 change: 1 addition & 0 deletions system/modules/isotope/languages/es/iso_upgrade.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@
* @license http://www.gnu.org/licenses/lgpl-3.0.html
*/

$GLOBALS['TL_LANG']['UPG']['submit'] = 'Actualizar';
1 change: 1 addition & 0 deletions system/modules/isotope/languages/es/tl_module.php
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@
$GLOBALS['TL_LANG']['tl_module']['iso_includeMessages'][1] = 'Esta configuración permite que el módulo incluya los errores, notificaciones o confirmaciones que el visitante debe tener en cuenta.';
$GLOBALS['TL_LANG']['tl_module']['iso_continueShopping'][0] = 'Habilitar el botón "Seguir comprando"';
$GLOBALS['TL_LANG']['tl_module']['iso_continueShopping'][1] = 'Añadir un enlace al producto agregado actualmente a la cesta.';
$GLOBALS['TL_LANG']['tl_module']['iso_order_conditions_legend'] = 'Condiciones del formulario de pedido';
$GLOBALS['TL_LANG']['tl_module']['iso_checkout_method_ref']['member'] = 'Login / Registro requerido';
$GLOBALS['TL_LANG']['tl_module']['iso_checkout_method_ref']['guest'] = 'Proceso de pago sólo para Invitado';
$GLOBALS['TL_LANG']['tl_module']['iso_checkout_method_ref']['both'] = 'Ambos permitido';
Expand Down
1 change: 1 addition & 0 deletions system/modules/isotope/languages/fa/iso_upgrade.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@
* @license http://www.gnu.org/licenses/lgpl-3.0.html
*/

$GLOBALS['TL_LANG']['UPG']['submit'] = 'بروزرسانی';
1 change: 1 addition & 0 deletions system/modules/isotope/languages/fr/iso_upgrade.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@
* @license http://www.gnu.org/licenses/lgpl-3.0.html
*/

$GLOBALS['TL_LANG']['UPG']['submit'] = 'Mettre à jour';
1 change: 1 addition & 0 deletions system/modules/isotope/languages/fr/tl_module.php
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@
$GLOBALS['TL_LANG']['tl_module']['iso_includeMessages'][1] = 'This setting allows the module to include any errors, notifications, or confirmations the visitor should be aware of.';
$GLOBALS['TL_LANG']['tl_module']['iso_continueShopping'][0] = 'Enable "Continue shopping" button';
$GLOBALS['TL_LANG']['tl_module']['iso_continueShopping'][1] = 'Add a link to the currently added product to the cart.';
$GLOBALS['TL_LANG']['tl_module']['iso_order_conditions_legend'] = 'Conditions de commande';
$GLOBALS['TL_LANG']['tl_module']['iso_checkout_method_ref']['member'] = 'Connexion/inscription requise';
$GLOBALS['TL_LANG']['tl_module']['iso_checkout_method_ref']['guest'] = 'Commande invité seulement';
$GLOBALS['TL_LANG']['tl_module']['iso_checkout_method_ref']['both'] = 'Les deux autorisés';
Expand Down
1 change: 1 addition & 0 deletions system/modules/isotope/languages/it/iso_upgrade.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@
* @license http://www.gnu.org/licenses/lgpl-3.0.html
*/

$GLOBALS['TL_LANG']['UPG']['submit'] = 'Aggiornamento';
1 change: 1 addition & 0 deletions system/modules/isotope/languages/it/tl_module.php
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@
$GLOBALS['TL_LANG']['tl_module']['iso_buttons'][1] = 'Selezioni i bottoni che vuole mostrare.';
$GLOBALS['TL_LANG']['tl_module']['iso_related_categories'][0] = 'Categorie correlate';
$GLOBALS['TL_LANG']['tl_module']['iso_related_categories'][1] = 'Selezioni le categorie prodotti da mostrare.';
$GLOBALS['TL_LANG']['tl_module']['iso_order_conditions_legend'] = 'Form condizioni ordine';
$GLOBALS['TL_LANG']['tl_module']['iso_checkout_method_ref']['member'] = 'Regiatrazione/Login necessaria/o';
$GLOBALS['TL_LANG']['tl_module']['iso_checkout_method_ref']['guest'] = 'Checkout solo per ospiti';
$GLOBALS['TL_LANG']['tl_module']['iso_checkout_method_ref']['both'] = 'Permessi entrambi';
Expand Down
1 change: 1 addition & 0 deletions system/modules/isotope/languages/nl/iso_upgrade.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@
* @license http://www.gnu.org/licenses/lgpl-3.0.html
*/

$GLOBALS['TL_LANG']['UPG']['submit'] = 'Verversen';
1 change: 1 addition & 0 deletions system/modules/isotope/languages/nl/tl_module.php
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@
$GLOBALS['TL_LANG']['tl_module']['iso_includeMessages'][1] = 'Deze instelling stelt de module in staat, alle foutmeldingen, notificaties of bevestigingen waar de bezoeker zich bewust van zou moeten zijn, in te sluiten.';
$GLOBALS['TL_LANG']['tl_module']['iso_continueShopping'][0] = 'Voeg knop "Verder winkelen" toe';
$GLOBALS['TL_LANG']['tl_module']['iso_continueShopping'][1] = 'Voeg een link to naar het zojuist aan winkelwagen toegevoegde product.';
$GLOBALS['TL_LANG']['tl_module']['iso_order_conditions_legend'] = 'Bestelvoorwaarden formulier';
$GLOBALS['TL_LANG']['tl_module']['iso_checkout_method_ref']['member'] = 'Login/Registratie vereist';
$GLOBALS['TL_LANG']['tl_module']['iso_checkout_method_ref']['guest'] = 'Alleen gast checkout';
$GLOBALS['TL_LANG']['tl_module']['iso_checkout_method_ref']['both'] = 'Beide toegestaan';
Expand Down
2 changes: 2 additions & 0 deletions system/modules/isotope/languages/nl/tokens.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@
$GLOBALS['TL_LANG']['NOTIFICATION_CENTER_TOKEN']['iso_order_status_change']['cart_text'] = 'Bestelling/winkelwagen als tekst.';
$GLOBALS['TL_LANG']['NOTIFICATION_CENTER_TOKEN']['iso_order_status_change']['cart_html'] = 'Bestelling/winkelwagen als HTML.';
$GLOBALS['TL_LANG']['NOTIFICATION_CENTER_TOKEN']['iso_order_status_change']['document'] = 'Het document dat bijgevoegd moet worden (bijv. een factuur).';
$GLOBALS['TL_LANG']['NOTIFICATION_CENTER_TOKEN']['iso_order_status_change']['billing_address_*'] = 'Alle factuuradres model velden.';
$GLOBALS['TL_LANG']['NOTIFICATION_CENTER_TOKEN']['iso_order_status_change']['shipping_address_*'] = 'Alle verzendadres model velden.';
$GLOBALS['TL_LANG']['NOTIFICATION_CENTER_TOKEN']['iso_order_status_change']['form_*'] = 'Alle velden van bestelvoorwaarden bestelling.';
$GLOBALS['TL_LANG']['NOTIFICATION_CENTER_TOKEN']['iso_order_status_change']['payment_id'] = 'Betaalmethode ID.';
$GLOBALS['TL_LANG']['NOTIFICATION_CENTER_TOKEN']['iso_order_status_change']['payment_label'] = 'Label van betaalmethode';
Expand Down
1 change: 1 addition & 0 deletions system/modules/isotope/languages/pl/iso_upgrade.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@
* @license http://www.gnu.org/licenses/lgpl-3.0.html
*/

$GLOBALS['TL_LANG']['UPG']['submit'] = 'Aktualizuj';
1 change: 1 addition & 0 deletions system/modules/isotope/languages/pl/tl_module.php
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@
$GLOBALS['TL_LANG']['tl_module']['iso_includeMessages'][1] = 'To ustawienie pozwala modułowi na dołączenie wszelakich błędów, powiadomień czy potwierdzeń, z którymi odwiedzający powinien się zapoznać.';
$GLOBALS['TL_LANG']['tl_module']['iso_continueShopping'][0] = 'Włącz przycisk "Kontynuuj zakupy"';
$GLOBALS['TL_LANG']['tl_module']['iso_continueShopping'][1] = 'Dodaj link do właśnie dodanego produktu do koszyka.';
$GLOBALS['TL_LANG']['tl_module']['iso_order_conditions_legend'] = 'Formularz warunków zakupu';
$GLOBALS['TL_LANG']['tl_module']['iso_checkout_method_ref']['member'] = 'Wymagane logowanie/rejestracja';
$GLOBALS['TL_LANG']['tl_module']['iso_checkout_method_ref']['guest'] = 'Kasa tylko dla gości';
$GLOBALS['TL_LANG']['tl_module']['iso_checkout_method_ref']['both'] = 'Oba dozwolone';
Expand Down
Loading

0 comments on commit 4b96b55

Please sign in to comment.