Channelpilotsolutions_Channelpilot - Version 2.1.1

Version Notes

- some bug fixes

Download this release

Release Info

Developer Magento Core Team
Extension Channelpilotsolutions_Channelpilot
Version 2.1.1
Comparing to
See all releases


Code changes from version 2.1.0 to 2.1.1

Files changed (27) hide show
  1. app/code/community/Channelpilotsolutions/Channelpilot/Helper/Data.php +1 -1
  2. app/code/community/Channelpilotsolutions/Channelpilot/Helper/ExportData.php +6 -4
  3. app/code/community/Channelpilotsolutions/Channelpilot/Helper/api/1_0/ChannelPilotSellerAPI_v1_0.php +1 -1
  4. app/code/community/Channelpilotsolutions/Channelpilot/Helper/handler/CPExportHandler.php +16 -14
  5. app/code/community/Channelpilotsolutions/Channelpilot/Helper/handler/CPNewPriceHandler.php +14 -1
  6. app/code/community/Channelpilotsolutions/Channelpilot/etc/config.xml +12 -12
  7. app/design/adminhtml/base/default/template/channelpilotsolutions/array_dropdown.phtml +174 -0
  8. app/design/adminhtml/base/default/template/channelpilotsolutions/config_hint.phtml +146 -0
  9. app/design/frontend/base/default/template/Channelpilotsolutions/channelpilot.phtml +4 -3
  10. app/locale/de_AT/Channelpilotsolutions_Channelpilot.csv +46 -0
  11. app/locale/en_AU/Channelpilotsolutions_Channelpilot.csv +46 -0
  12. app/locale/en_CA/Channelpilotsolutions_Channelpilot.csv +46 -0
  13. app/locale/en_GB/Channelpilotsolutions_Channelpilot.csv +46 -0
  14. app/locale/en_IE/Channelpilotsolutions_Channelpilot.csv +46 -0
  15. app/locale/en_NZ/Channelpilotsolutions_Channelpilot.csv +46 -0
  16. app/locale/en_US/Channelpilotsolutions_Channelpilot.csv +46 -0
  17. app/locale/es_AR/Channelpilotsolutions_Channelpilot.csv +46 -0
  18. app/locale/es_CL/Channelpilotsolutions_Channelpilot.csv +46 -0
  19. app/locale/es_CO/Channelpilotsolutions_Channelpilot.csv +46 -0
  20. app/locale/es_CR/Channelpilotsolutions_Channelpilot.csv +46 -0
  21. app/locale/es_ES/Channelpilotsolutions_Channelpilot.csv +46 -0
  22. app/locale/es_MX/Channelpilotsolutions_Channelpilot.csv +46 -0
  23. app/locale/es_PA/Channelpilotsolutions_Channelpilot.csv +46 -0
  24. app/locale/es_PE/Channelpilotsolutions_Channelpilot.csv +46 -0
  25. app/locale/es_VE/Channelpilotsolutions_Channelpilot.csv +46 -0
  26. app/locale/fr_CA/Channelpilotsolutions_Channelpilot.csv +46 -0
  27. package.xml +5 -7
app/code/community/Channelpilotsolutions/Channelpilot/Helper/Data.php CHANGED
@@ -105,7 +105,7 @@ class Channelpilotsolutions_Channelpilot_Helper_Data extends Mage_Core_Helper_Ab
105
  $pricecontrolActive = true;
106
  }
107
  $exportActive = false;
108
- if (strcmp(Mage::getStoreConfig('channelpilot_export/channelpilot_productfeed/channelpilot_useExport'), "true") === 0) {
109
  $exportActive = true;
110
  }
111
 
105
  $pricecontrolActive = true;
106
  }
107
  $exportActive = false;
108
+ if (strcmp(Mage::getStoreConfig('channelpilot_export/channelpilot_productfeed/channelpilot_useExport'), "true") !== false || strcmp(Mage::getStoreConfig('channelpilot_export/channelpilot_productfeed/channelpilot_useExport'), "1") !== false) {
109
  $exportActive = true;
110
  }
111
 
app/code/community/Channelpilotsolutions/Channelpilot/Helper/ExportData.php CHANGED
@@ -143,6 +143,8 @@ class ExportData {
143
  $oldCatPath = $categorie[1];
144
  }
145
 
 
 
146
  // By default, set media gallery attribute id to 703
147
  // Look it up later
148
  $MEDIA_GALLERY_ATTRIBUTE_ID = 703;
@@ -174,9 +176,9 @@ class ExportData {
174
  $blankProduct['cp_image_url'] = '';
175
  $blankProduct['color'] = '';
176
  $blankProduct['weight'] = '';
177
- $blankProduct['cp_additional_image_1'] = '';
178
- $blankProduct['cp_additional_image_2'] = '';
179
- $blankProduct['cp_additional_image_3'] = '';
180
 
181
  $special_export_fields = unserialize(Mage::getStoreConfig('channelpilot_export/channelpilot_productfeed/channelpilot_specialexportfields'));
182
  if (!empty($special_export_fields)) {
@@ -545,7 +547,7 @@ class ExportData {
545
  $galleryValues = $this->_dbConnection->fetchAll($query);
546
  if (empty($galleryValues) != true) {
547
  $additional_images = explode(',', $galleryValues[0][1]);
548
- for ($i = 0; $i <= 2; $i++) {
549
  if (isset($additional_images[$i])) {
550
  $product['cp_additional_image_' . ($i + 1)] = $additional_images[$i];
551
  }
143
  $oldCatPath = $categorie[1];
144
  }
145
 
146
+ // print_r($this->_allCat);
147
+ // exit();
148
  // By default, set media gallery attribute id to 703
149
  // Look it up later
150
  $MEDIA_GALLERY_ATTRIBUTE_ID = 703;
176
  $blankProduct['cp_image_url'] = '';
177
  $blankProduct['color'] = '';
178
  $blankProduct['weight'] = '';
179
+ for($i = 1; $i <= Mage::getStoreConfig('channelpilot_export/channelpilot_productfeed/channelpilot_imagenumber'); $i++) {
180
+ $blankProduct['cp_additional_image_'.$i] = '';
181
+ }
182
 
183
  $special_export_fields = unserialize(Mage::getStoreConfig('channelpilot_export/channelpilot_productfeed/channelpilot_specialexportfields'));
184
  if (!empty($special_export_fields)) {
547
  $galleryValues = $this->_dbConnection->fetchAll($query);
548
  if (empty($galleryValues) != true) {
549
  $additional_images = explode(',', $galleryValues[0][1]);
550
+ for($i = 1; $i <= Mage::getStoreConfig('channelpilot_export/channelpilot_productfeed/channelpilot_imagenumber'); $i++) {
551
  if (isset($additional_images[$i])) {
552
  $product['cp_additional_image_' . ($i + 1)] = $additional_images[$i];
553
  }
app/code/community/Channelpilotsolutions/Channelpilot/Helper/api/1_0/ChannelPilotSellerAPI_v1_0.php CHANGED
@@ -38,7 +38,7 @@ require_once 'responses/GetManagedArticlePricesResponse.php';
38
  class ChannelPilotSellerAPI_v1_0 extends SoapClient {
39
 
40
  private $auth;
41
- private $wsdlUrl = 'http://seller.api.channelpilot.com/1_0?wsdl';
42
  private $uri = 'http://seller.api.channelpilot.com/1_0';
43
  private $soapOptions = array(
44
  'connection_timeout' => 20,
38
  class ChannelPilotSellerAPI_v1_0 extends SoapClient {
39
 
40
  private $auth;
41
+ private $wsdlUrl = 'http://stage.seller.api.channelpilot.com/1_0?wsdl';
42
  private $uri = 'http://seller.api.channelpilot.com/1_0';
43
  private $soapOptions = array(
44
  'connection_timeout' => 20,
app/code/community/Channelpilotsolutions/Channelpilot/Helper/handler/CPExportHandler.php CHANGED
@@ -24,10 +24,10 @@ class CPExportHandler extends CPAbstractHandler {
24
  *
25
  */
26
  public function handle() {
27
- if (isset($_GET['limit']) && isset($_GET['store'])) {
28
  $this->limit = $_GET['limit'];
29
  $this->last = $_GET['last'];
30
- $this->_storeId = $_GET['store'];
31
  $this->initExport();
32
  $productData = null;
33
  if ($_GET['priceStock'] === "true") {
@@ -73,20 +73,19 @@ class CPExportHandler extends CPAbstractHandler {
73
  }
74
 
75
  private function getStockAndPriceData() {
76
- $query = "SELECT attribute_id, attribute_code, backend_type, frontend_input
77
- FROM ChannelPilotSolutions_ChannelPilot_eav_attribute
78
- WHERE entity_type_id = $PRODUCT_ENTITY_TYPE_ID
79
- ";
80
-
81
  $selectProductIdsQuery = $this->_applyTablePrefix(
82
  "SELECT p.entity_id, l.parent_id FROM ChannelPilotSolutions_ChannelPilot_catalog_product_entity p
83
  LEFT JOIN ChannelPilotSolutions_ChannelPilot_catalog_product_super_link l ON l.product_id = p.entity_id
84
  WHERE p.entity_id NOT IN (SELECT parent_id FROM catalog_product_super_link)"
85
  );
86
- if (isset($this->last)) {
87
- $selectProductIdsQuery .= " AND p.entity_id > {$this->last} ";
 
 
 
 
 
88
  }
89
- $selectProductIdsQuery .= " GROUP BY p.entity_id ORDER BY p.entity_id ASC LIMIT {$this->limit};";
90
 
91
  $this->_dbConnection->setFetchMode(ZEND_DB::FETCH_NUM);
92
  $productEntities = $this->_dbConnection->fetchAll($selectProductIdsQuery);
@@ -312,11 +311,14 @@ class CPExportHandler extends CPAbstractHandler {
312
  LEFT JOIN ChannelPilotSolutions_ChannelPilot_catalog_product_super_link l ON l.product_id = p.entity_id
313
  WHERE p.entity_id NOT IN (SELECT parent_id FROM catalog_product_super_link)"
314
  );
315
- if (isset($this->last)) {
316
- $selectProductIdsQuery .= " AND p.entity_id > {$this->last} ";
 
 
 
 
 
317
  }
318
- $selectProductIdsQuery .= " GROUP BY p.entity_id ORDER BY p.entity_id ASC LIMIT {$this->limit};";
319
-
320
  $this->_dbConnection->setFetchMode(ZEND_DB::FETCH_NUM);
321
  $productEntities = $this->_dbConnection->fetchAll($selectProductIdsQuery);
322
  $productIds = "";
24
  *
25
  */
26
  public function handle() {
27
+ if (isset($_GET['shopId'])) {
28
  $this->limit = $_GET['limit'];
29
  $this->last = $_GET['last'];
30
+ $this->_storeId = $_GET['shopId'];
31
  $this->initExport();
32
  $productData = null;
33
  if ($_GET['priceStock'] === "true") {
73
  }
74
 
75
  private function getStockAndPriceData() {
 
 
 
 
 
76
  $selectProductIdsQuery = $this->_applyTablePrefix(
77
  "SELECT p.entity_id, l.parent_id FROM ChannelPilotSolutions_ChannelPilot_catalog_product_entity p
78
  LEFT JOIN ChannelPilotSolutions_ChannelPilot_catalog_product_super_link l ON l.product_id = p.entity_id
79
  WHERE p.entity_id NOT IN (SELECT parent_id FROM catalog_product_super_link)"
80
  );
81
+ if (isset($this->limit)) {
82
+ if (isset($this->last)) {
83
+ $selectProductIdsQuery .= " AND p.entity_id > {$this->last} ";
84
+ }
85
+ $selectProductIdsQuery .= " GROUP BY p.entity_id ORDER BY p.entity_id ASC LIMIT {$this->limit};";
86
+ } else {
87
+ $selectProductIdsQuery .= " GROUP BY p.entity_id ORDER BY p.entity_id ASC;";
88
  }
 
89
 
90
  $this->_dbConnection->setFetchMode(ZEND_DB::FETCH_NUM);
91
  $productEntities = $this->_dbConnection->fetchAll($selectProductIdsQuery);
311
  LEFT JOIN ChannelPilotSolutions_ChannelPilot_catalog_product_super_link l ON l.product_id = p.entity_id
312
  WHERE p.entity_id NOT IN (SELECT parent_id FROM catalog_product_super_link)"
313
  );
314
+ if (isset($this->limit)) {
315
+ if (isset($this->last)) {
316
+ $selectProductIdsQuery .= " AND p.entity_id > {$this->last} ";
317
+ }
318
+ $selectProductIdsQuery .= " GROUP BY p.entity_id ORDER BY p.entity_id ASC LIMIT {$this->limit};";
319
+ } else {
320
+ $selectProductIdsQuery .= " GROUP BY p.entity_id ORDER BY p.entity_id ASC;";
321
  }
 
 
322
  $this->_dbConnection->setFetchMode(ZEND_DB::FETCH_NUM);
323
  $productEntities = $this->_dbConnection->fetchAll($selectProductIdsQuery);
324
  $productIds = "";
app/code/community/Channelpilotsolutions/Channelpilot/Helper/handler/CPNewPriceHandler.php CHANGED
@@ -79,7 +79,20 @@ class CPNewPriceHandler extends CPAbstractHandler {
79
  $lastPriceUpdate = $articlePrice->lastUpdate;
80
  }
81
 
82
- // reindex prices
 
 
 
 
 
 
 
 
 
 
 
 
 
83
  Mage::getModel('index/process')->load(2)->reindexEverything();
84
  }
85
 
79
  $lastPriceUpdate = $articlePrice->lastUpdate;
80
  }
81
 
82
+
83
+ /**
84
+ * reindex prices
85
+ *
86
+ * 1 = Product Attributes
87
+ * 2 = Product prices
88
+ * 3 = Catalog URL Rewrites
89
+ * 4 = Product Flat Data
90
+ * 5 = Category Flat Data
91
+ * 6 = Category Products
92
+ * 7 = Catalog Search Index
93
+ * 8 = Stock Status
94
+ * 9 = Tag Aggregation Data
95
+ */
96
  Mage::getModel('index/process')->load(2)->reindexEverything();
97
  }
98
 
app/code/community/Channelpilotsolutions/Channelpilot/etc/config.xml CHANGED
@@ -24,7 +24,7 @@
24
  <config>
25
  <modules>
26
  <Channelpilotsolutions_Channelpilot>
27
- <version>2.1.0</version>
28
  </Channelpilotsolutions_Channelpilot>
29
  </modules>
30
  <global>
@@ -121,16 +121,16 @@
121
  </layout>
122
  </frontend>
123
  <default>
124
- <payment>
125
- <cp_mp>
126
- <active>0</active>
127
- <model>channelpilot/payment</model>
128
- <order_status>processing</order_status>
129
- <payment_action>authorize</payment_action>
130
- <allowspecific>0</allowspecific>
131
- <email_customer>0</email_customer>
132
  <title>ChannelPilot Marketplace Payment</title>
133
- </cp_mp>
134
- </payment>
135
- </default>
136
  </config>
24
  <config>
25
  <modules>
26
  <Channelpilotsolutions_Channelpilot>
27
+ <version>2.1.1</version>
28
  </Channelpilotsolutions_Channelpilot>
29
  </modules>
30
  <global>
121
  </layout>
122
  </frontend>
123
  <default>
124
+ <payment>
125
+ <cp_mp>
126
+ <active>0</active>
127
+ <model>channelpilot/payment</model>
128
+ <order_status>processing</order_status>
129
+ <payment_action>authorize</payment_action>
130
+ <allowspecific>0</allowspecific>
131
+ <email_customer>0</email_customer>
132
  <title>ChannelPilot Marketplace Payment</title>
133
+ </cp_mp>
134
+ </payment>
135
+ </default>
136
  </config>
app/design/adminhtml/base/default/template/channelpilotsolutions/array_dropdown.phtml ADDED
@@ -0,0 +1,174 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ *
4
+ * NOTICE OF LICENSE
5
+ *
6
+ * This source file is subject to the GNU General Public License (GPL 3)
7
+ * that is bundled with this package in the file LICENSE.txt
8
+ *
9
+ * DISCLAIMER
10
+ *
11
+ * Do not edit or add to this file if you wish to upgrade Channelpilotsolutions_Channelpilot to newer
12
+ * versions in the future. If you wish to customize Channelpilotsolutions_Channelpilot for your
13
+ * needs please refer to http://www.channelpilot.com for more information.
14
+ *
15
+ * @category Channelpilotsolutions
16
+ * @package design_adminhtml_base_default
17
+ * @subpackage template_channelpilotsolutions
18
+ * @copyright Copyright (c) 2012 <info@channelpilot.com> - www.channelpilot.com
19
+ * @author Peter Hoffmann <info@channelpilot.com>
20
+ * @license <http://www.gnu.org/licenses/> GNU General Public License (GPL 3)
21
+ * @link http://www.channelpilot.com
22
+ */
23
+ ?>
24
+
25
+ <?php
26
+ $_htmlId = $this->getHtmlId() ? $this->getHtmlId() : '_' . uniqid();
27
+
28
+ $_colspan = 2;
29
+ if (!$this->_addAfter) {
30
+ $_colspan -= 1;
31
+ }
32
+ $_colspan = $_colspan > 1 ? 'colspan="' . $_colspan . '"' : '';
33
+ ?>
34
+
35
+ <div class="grid" id="grid<?php echo $_htmlId ?>">
36
+ <table cellpadding="0" cellspacing="0" class="border">
37
+ <tbody>
38
+
39
+ <tr class="headings" id="headings<?php echo $_htmlId ?>">
40
+ <?php foreach ($this->_columns as $columnName => $column):?>
41
+ <th><?php echo $column['label'] ?></th>
42
+ <?php endforeach;?>
43
+ <th <?php echo $_colspan?>></th>
44
+ </tr>
45
+
46
+ <tr id="addRow<?php echo $_htmlId ?>">
47
+ <td colspan="<?php echo count($this->_columns) ?>"></td>
48
+ <td <?php echo $_colspan?>>
49
+ <button style="" onclick="" class="scalable add" type="button" id="addToEndBtn<?php echo $_htmlId ?>">
50
+ <span><span><span><?php echo $this->_addButtonLabel ?></span></span></span>
51
+ </button>
52
+ </td>
53
+ </tr>
54
+
55
+ </tbody>
56
+ </table>
57
+ <input type="hidden" name="<?php echo $this->getElement()->getName() ?>[__empty]" value="" />
58
+ </div>
59
+ <div id="empty<?php echo $_htmlId ?>">
60
+ <button style="" onclick="" class="scalable add" type="button" id="emptyAddBtn<?php echo $_htmlId ?>">
61
+ <span><span><span><?php echo $this->_addButtonLabel ?></span></span></span>
62
+ </button>
63
+ </div>
64
+
65
+ <script type="text/javascript">
66
+ //<![CDATA[
67
+ // create row creator
68
+ var arrayRow<?php echo $_htmlId ?> = {
69
+ // define row prototypeJS template
70
+ template : new Template(
71
+ '<tr id="#{_id}">'
72
+ <?php foreach ($this->_columns as $columnName => $column):?>
73
+ +'<td class="#{_id}-<?php echo $columnName?>">'
74
+ +'<?php echo $this->_renderCellTemplate($columnName)?>'
75
+ +'<\/td>'
76
+ <?php endforeach;?>
77
+ <?php if ($this->_addAfter):?>
78
+ +'<td><button onclick="" class="scalable add" type="button" id="addAfterBtn#{_id}"><span><span><span><?php echo Mage::helper('adminhtml')->__('Add after') ?><\/span><\/span><\/span><\/button><\/td>'
79
+ <?php endif;?>
80
+ +'<td><button onclick="arrayRow<?php echo $_htmlId ?>.del(\'#{_id}\')" class="scalable delete" type="button"><span><span><span><?php echo Mage::helper('adminhtml')->__('Delete') ?><\/span><\/span><\/span><\/button><\/td>'
81
+ +'<\/tr>'
82
+ ),
83
+
84
+ rowsCount : 0,
85
+
86
+ add : function(templateData, insertAfterId)
87
+ {
88
+ // generate default template data
89
+ if ('' == templateData) {
90
+ var d = new Date();
91
+ var templateData = {
92
+ <?php foreach ($this->_columns as $columnName => $column):?>
93
+ <?php echo $columnName ?> : '',
94
+ <?php endforeach;?>
95
+ _id : '_' + d.getTime() + '_' + d.getMilliseconds()
96
+ };
97
+ }
98
+
99
+ // insert before last row
100
+ if ('' == insertAfterId) {
101
+ Element.insert($('addRow<?php echo $_htmlId ?>'), {before: this.template.evaluate(templateData)});
102
+ }
103
+ // insert after specified row
104
+ else {
105
+ Element.insert($(insertAfterId), {after: this.template.evaluate(templateData)});
106
+ }
107
+
108
+ // set the selected drop-down list item
109
+ <?php foreach ($this->_columns as $columnName => $column):?>
110
+ var options = $$('td.' + templateData._id + '-' + '<?php echo $columnName?>' + ' option')
111
+ for(var index = 0; index < options.length; ++index)
112
+ {
113
+ var option = options[index]
114
+ if(option.getAttribute('value') == templateData.<?php echo $columnName?>)
115
+ {
116
+ option.selected = true
117
+ }
118
+ }
119
+ <?php endforeach;?>
120
+
121
+ <?php if ($this->_addAfter):?>
122
+ Event.observe('addAfterBtn' + templateData._id, 'click', this.add.bind(this, '', templateData._id));
123
+ <?php endif;?>
124
+
125
+ this.rowsCount += 1;
126
+ },
127
+
128
+ del : function(rowId)
129
+ {
130
+ $(rowId).remove();
131
+ this.rowsCount -= 1;
132
+ if (0 == this.rowsCount) {
133
+ this.showButtonOnly();
134
+ }
135
+ },
136
+
137
+ showButtonOnly : function()
138
+ {
139
+ $('grid<?php echo $_htmlId ?>').hide();
140
+ $('empty<?php echo $_htmlId ?>').show();
141
+ }
142
+ }
143
+
144
+ // bind add action to "Add" button in last row
145
+ Event.observe('addToEndBtn<?php echo $_htmlId ?>', 'click', arrayRow<?php echo $_htmlId ?>.add.bind(arrayRow<?php echo $_htmlId ?>, '', ''));
146
+
147
+ // add existing rows
148
+ <?php
149
+ $_addAfterId = "headings{$_htmlId}";
150
+ foreach ($this->getArrayRows() as $_rowId => $_row) {
151
+ echo "arrayRow{$_htmlId}.add(" . $_row->toJson() . ", '{$_addAfterId}');\n";
152
+ $_addAfterId = $_rowId;
153
+ }
154
+ ?>
155
+
156
+ // initialize standalone button
157
+ $('empty<?php echo $_htmlId ?>').hide();
158
+ Event.observe('emptyAddBtn<?php echo $_htmlId ?>', 'click', function () {
159
+ $('grid<?php echo $_htmlId ?>').show();
160
+ $('empty<?php echo $_htmlId ?>').hide();
161
+ arrayRow<?php echo $_htmlId ?>.add('', '');
162
+ });
163
+
164
+ // if no rows, hide grid and show button only
165
+ <?php if (!$this->getArrayRows()):?>
166
+ arrayRow<?php echo $_htmlId ?>.showButtonOnly();
167
+ <?php endif;?>
168
+
169
+ // toggle the grid, if element is disabled (depending on scope)
170
+ <?php if ($this->getElement()->getDisabled()):?>
171
+ toggleValueElements({checked:true}, $('grid<?php echo $_htmlId ?>').parentNode);
172
+ <?php endif;?>
173
+ //]]>
174
+ </script>
app/design/adminhtml/base/default/template/channelpilotsolutions/config_hint.phtml ADDED
@@ -0,0 +1,146 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ $config = $_SERVER['REQUEST_URI'];
3
+
4
+ $background_position = "0px";
5
+ $background_gradient = "linear-gradient(-25deg, #d5e700 15%, #bad700 50%) repeat scroll 0 0 #cce100";
6
+ if (strpos($config, "channelpilot_tracking") !== false) {
7
+ $background_position = "-66px";
8
+ $background_gradient = "linear-gradient(-25deg, #fb671a 15%, #f8390e 50%) repeat scroll 0 0 #fa5716";
9
+ } else {
10
+ if (strpos($config, "channelpilot_marketplace") !== false) {
11
+ $background_position = "-132px";
12
+ $background_gradient = "linear-gradient(-25deg, #ffc11e 15%, #ff9810 50%) repeat scroll 0 0 #ffb319";
13
+ } else {
14
+ if (strpos($config, "channelpilot_pricecontrol") !== false) {
15
+ $background_position = "-198px";
16
+ $background_gradient = "linear-gradient(-25deg, #61bcd5 15%, #3590ba 50%) repeat scroll 0 0 #3590ba";
17
+ }
18
+ }
19
+ }
20
+ ?>
21
+ <style>
22
+ .content-header {
23
+ background: <?= $background_gradient ?>;
24
+ margin-bottom: 0;
25
+ border-bottom: 0;
26
+ padding-bottom: 0;
27
+ }
28
+ .content-header table{
29
+ padding: 5px 20px 5px 10px;
30
+ background-color: #3e352c;
31
+ }
32
+ .main-col-inner .content-header tbody{
33
+ height: 66px;
34
+ background-image: url('https://go.channelpilot.com/css/gfx/logo.channelPilot.png');
35
+ background-repeat: no-repeat;
36
+ background-position: 0 <?= $background_position ?>;
37
+ background-size: 264px;
38
+ }
39
+
40
+ .content-header-floating .content-header td{
41
+ height: 66px;
42
+ background-image: url('https://go.channelpilot.com/css/gfx/logo.channelPilot.png');
43
+ background-repeat: no-repeat;
44
+ background-position: 0 <?= $background_position ?>;
45
+ background-size: 264px;
46
+ min-width: 264px;
47
+ }
48
+
49
+ .content-header-floating .content-header tbody .form-buttons {
50
+ height: 55px;
51
+ background: none !important;
52
+ }
53
+ .content-header h3 {
54
+ display: none;
55
+ }
56
+ .content-header button{
57
+ margin-top: 23px;
58
+ margin-bottom: 22px !important;
59
+ }
60
+
61
+ .section-config:first-of-type .entry-edit-head {
62
+ padding-top: 10px;
63
+ padding-bottom: 0px;
64
+ margin-top: 0;
65
+ background: <?= $background_gradient ?>;
66
+ border-bottom: 2px solid rgba(0, 0, 0, 0.1);
67
+ border-top: 2px solid rgba(0, 0, 0, 0.1);
68
+ }
69
+
70
+ .section-config:first-of-type {
71
+ margin-top: 0px;
72
+ }
73
+
74
+ .section-config {
75
+ margin-top: 25px;
76
+ }
77
+
78
+ .section-config .entry-edit-head {
79
+ padding-top: 7px;
80
+ padding-bottom: 0px;
81
+ margin-top: 0;
82
+ background: none;
83
+ }
84
+
85
+ .section-config:first-of-type .entry-edit-head a{
86
+ font-weight: 600;
87
+ color: #fa5716;
88
+ margin-bottom: -2px;
89
+ border-top: 2px solid rgba(0, 0, 0, 0.1);
90
+ border-left: 2px solid rgba(0, 0, 0, 0.1);
91
+ border-right: 2px solid rgba(0, 0, 0, 0.1);
92
+ }
93
+
94
+ .section-config .entry-edit-head a{
95
+ font-family: "Open Sans";
96
+ font-weight: 300;
97
+ font-size: 13px;
98
+ float:left;
99
+ padding: 5px 20px 2px;
100
+ color: #53473b;
101
+ text-transform: uppercase;
102
+ background: #FFFFFF !important;
103
+ }
104
+
105
+ .section-config .entry-edit-head a:hover{
106
+ color: #fa5716;
107
+ }
108
+
109
+ .section-config:first-of-type fieldset {
110
+ padding-top: 25px;
111
+ }
112
+ .section-config fieldset {
113
+ font-size: 12px;
114
+ font-weight: 400;
115
+ font-family: "Open Sans";
116
+ border: 0px;
117
+ background: #FFFFFF !important;
118
+ }
119
+
120
+ .section-config fieldset select, .section-config fieldset input{
121
+ font-family: "Open Sans";
122
+ background: -moz-linear-gradient(center top , #d6cec6 0px, #ebe8e4 2em) repeat scroll 0 0 #e1dbd5;
123
+ padding: 3px 3px;
124
+ }
125
+
126
+ .form-list .label label {
127
+ margin-left: 10px;
128
+ }
129
+
130
+ .form-list .value .grid .headings{
131
+ background: #5c4f41;
132
+ }
133
+ .form-list .value .grid th, .form-list .value .grid td {
134
+ border: 0;
135
+ }
136
+ .form-list .value .grid th {
137
+ font-family: "Open Sans";
138
+ color: #ffffff;
139
+ font-size: 12px;
140
+ text-align: center;
141
+ }
142
+ .form-list .value .grid table{
143
+ border: 1px solid #3e352c;
144
+ background: rgba(62, 53, 44, 0.02);
145
+ }
146
+ </style>
app/design/frontend/base/default/template/Channelpilotsolutions/channelpilot.phtml CHANGED
@@ -23,7 +23,7 @@
23
  ?>
24
  <?php
25
  if (strpos($_SERVER['REQUEST_URI'], 'checkout/onepage/success') !== false) {
26
- if (strpos(Mage::getStoreConfig('channelpilot_tracking/channelpilot_tracking/channelpilot_useTracking'), "true") !== false) {
27
  $storeId = Mage::app()->getStore()->getId();
28
  $trackingKeys = unserialize(Mage::getStoreConfig('channelpilot_tracking/channelpilot_tracking/channelpilot_trackingkeys'));
29
  $TRACKINGKEY = '';
@@ -106,13 +106,14 @@ WHERE order_id = '" . $ORDER['entity_id'] . "' ORDER BY parent_item_id DESC";
106
  <?php
107
  }
108
  } else {
109
- if (strpos(Mage::getStoreConfig('channelpilot_tracking/channelpilot_tracking/channelpilot_useTracking'), "true") !== false) {
110
  ?>
111
  <script type="text/javascript" src="//content.cptrack.de/clicks.js"></script>
112
  <?php
113
  } else {
 
114
  ?>
115
- <script type="text/javascript">/*<?php echo "--".Mage::getStoreConfig('channelpilot_tracking/channelpilot_tracking/channelpilot_useTracking')."--"; ?> CP Tracking deactivated*/</script>
116
  <?php
117
  }
118
  }
23
  ?>
24
  <?php
25
  if (strpos($_SERVER['REQUEST_URI'], 'checkout/onepage/success') !== false) {
26
+ if (strpos(Mage::getStoreConfig('channelpilot_tracking/channelpilot_tracking/channelpilot_useTracking'), "1") !== false || strpos(Mage::getStoreConfig('channelpilot_tracking/channelpilot_tracking/channelpilot_useTracking'), "true") !== false) {
27
  $storeId = Mage::app()->getStore()->getId();
28
  $trackingKeys = unserialize(Mage::getStoreConfig('channelpilot_tracking/channelpilot_tracking/channelpilot_trackingkeys'));
29
  $TRACKINGKEY = '';
106
  <?php
107
  }
108
  } else {
109
+ if (strpos(Mage::getStoreConfig('channelpilot_tracking/channelpilot_tracking/channelpilot_useTracking'), "1") !== false || strpos(Mage::getStoreConfig('channelpilot_tracking/channelpilot_tracking/channelpilot_useTracking'), "true") !== false) {
110
  ?>
111
  <script type="text/javascript" src="//content.cptrack.de/clicks.js"></script>
112
  <?php
113
  } else {
114
+ echo "test".Mage::getStoreConfig('channelpilot_tracking/channelpilot_tracking/channelpilot_useTracking')."123";
115
  ?>
116
+ <script type="text/javascript">/*CP Tracking deactivated*/</script>
117
  <?php
118
  }
119
  }
app/locale/de_AT/Channelpilotsolutions_Channelpilot.csv ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "CP General","Allgemein"
2
+ "CP General Settings","Allgemeine Einstellungen"
3
+ "CP Activate backendnews?","Backendnews aktivieren?"
4
+ "CP Should the IP for API access be checked?","Soll die IP beim API-Zugriff überprüft werden?"
5
+ "CP Articlenumber","Artikelnummer"
6
+ "CP This applies to the tracking as well as the marketplace integration or the repricing.","Dies gilt für das Tracking sowie die Marktplatzanbindung und die Preissteuerung."
7
+
8
+ "CP Tracking","Tracking"
9
+ "CP Tracking Settings","Tracking Einstellungen"
10
+ "CP Cookiemode","Cookiemodus"
11
+ "CP Trackingkeys","Trackingkeys"
12
+ "CP Shop","Shop"
13
+ "CP TrackingKey","TrackingKey"
14
+
15
+ "CP Data Feed Export","Export"
16
+ "CP Export Settings","Export konfigurieren"
17
+ "CP Password","Passwort"
18
+ "CP Protect your data feed with a password. For example: 'www.testshop.com/channelpilot?password=12345'","Schützen Sie Ihren Produktkatalog mit einem Passwort. Zum Beispiel: 'www.testshop.com/channelpilot?password=12345'"
19
+ "CP Select data fields","Datenfelder auswählen"
20
+ "CP Data field","Datenfeld"
21
+ "CP Select the data fields you want to provide on ChannelPilot. Some product attributes are always included. (Entity_Id, Sku, name, description, price, manufacturer, color, categories, product_url, image_url, additional_image_1, additional_image_2, additional_image_3, weight)","Wählen Sie die Datenfelder aus, die Sie ChannelPilot bereitstellen möchten. Einige Datenfelder sind immer im Produktkatalog enthalten. (Entity_Id, Sku, name, description, price, manufacturer, color, categories, product_url, image_url, additional_image_1, additional_image_2, additional_image_3, weight)"
22
+ "CP Create static data fields","Statische Datenfelder erstellen"
23
+ "CP Data field name","Datenfeld Name"
24
+ "CP Data field value","Datenfeld Wert"
25
+ "CP Set up additional data fields. These fields have for every product the same value. E.g. for additional delivery costs.","Richten Sie zusätzliche Datenfelder ein, die für jedes Produkt einen statischen Wert haben. Z.B. für zusätzliche Versandkosten."
26
+ "CP Product variant data fields","Variantenfelder anpassen"
27
+ "CP Select the data fields you want to be overwritten by the respective value of the parent article.","Wählen Sie die Datenfelder die vom Datenfeld des Parentartikel überschrieben werden sollen."
28
+
29
+ "CP Marketplace Integration","Marktplatzanbindung"
30
+ "CP Marketplace Integration Settings","Marktplatzanbindung Einstellungen"
31
+
32
+ "CP Repricing","Preissteuerung"
33
+ "CP Repricing Settings","Preissteuerung konfigurieren"
34
+ "CP General Repricing","Globale Preissteuerung"
35
+ "CP Field for price","Preisfeld"
36
+ "CP This field would be overwritten by the new product price.","Dieses Preisfeld wird von dem neuen Preis überschrieben."
37
+
38
+ "CP ChannelPilot-Payment","ChannelPilot Payment"
39
+ "CP !!!This is no real payment method!!!","!!!Das ist keine richtige Zahlmethode!!!"
40
+ "CP Title","Bezeichnung"
41
+ "CP Order Status","Bestellstatus"
42
+ "CP Payment Types","Zahlarten"
43
+
44
+ "CP Activate?","Aktivieren?"
45
+ "CP Add","Hinzufügen"
46
+ "CP Delete","Löschen"
app/locale/en_AU/Channelpilotsolutions_Channelpilot.csv ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "CP General","General"
2
+ "CP General Settings","General settings"
3
+ "CP Activate backendnews?","Activate Backend news?"
4
+ "CP Should the IP for API access be checked?","Should the IP for API access be checked?"
5
+ "CP Articlenumber","Item number"
6
+ "CP This applies to the tracking as well as the marketplace integration or the repricing.","This applies to the tracking, to marketplace integration and to the repricing."
7
+
8
+ "CP Tracking","Tracking"
9
+ "CP Tracking Settings","Tracking settings"
10
+ "CP Cookiemode","Cookie mode"
11
+ "CP Trackingkeys","Tracking keys"
12
+ "CP Shop","Shop"
13
+ "CP TrackingKey","Tracking key"
14
+
15
+ "CP Data Feed Export","Data feed export"
16
+ "CP Export Settings","Export settings"
17
+ "CP Password","Password"
18
+ "CP Protect your data feed with a password. For example: 'www.testshop.com/channelpilot?password=12345'","Protect your data feed with a password. For example: 'www.testshop.com/channelpilot?password=12345'"
19
+ "CP Select data fields","Select data fields"
20
+ "CP Data field","Data field"
21
+ "CP Select the data fields you want to provide on ChannelPilot. Some product attributes are always included. (Entity_Id, Sku, name, description, price, manufacturer, color, categories, product_url, image_url, additional_image_1, additional_image_2, additional_image_3, weight)","Select the data fields you would like to provide ChannelPilot. Some data fields are permanently included within the product catalogue. (Entity_Id, Sku, name, description, price, manufacturer, color, categories, product_url, image_url, etc.)"
22
+ "CP Create static data fields","Create static data fields"
23
+ "CP Data field name","Data field name"
24
+ "CP Data field value","Data field value"
25
+ "CP Set up additional data fields. These fields have for every product the same value. E.g. for additional delivery costs.","Set up additional data fields with static product values i.e. For additional delivery costs."
26
+ "CP Product variant data fields","Customise variant data fields"
27
+ "CP Select the data fields you want to be overwritten by the respective value of the parent article.","Select the data fields you would like the parent item to replace"
28
+
29
+ "CP Marketplace Integration","Marketplace integration"
30
+ "CP Marketplace Integration Settings","Marketplace integration settings"
31
+
32
+ "CP Repricing","Repricing"
33
+ "CP Repricing Settings","Repricing settings"
34
+ "CP General Repricing","General repricing"
35
+ "CP Field for price","Price field"
36
+ "CP This field would be overwritten by the new product price.","This price field will be replaced by the new price"
37
+
38
+ "CP ChannelPilot-Payment","ChannelPilot payment"
39
+ "CP !!!This is no real payment method!!!","!!!This payment method is not valid!!!"
40
+ "CP Title","Title"
41
+ "CP Order Status","Order status"
42
+ "CP Payment Types","Payment methods"
43
+
44
+ "CP Activate?","Activate?"
45
+ "CP Add","Add"
46
+ "CP Delete","Delete"
app/locale/en_CA/Channelpilotsolutions_Channelpilot.csv ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "CP General","General"
2
+ "CP General Settings","General settings"
3
+ "CP Activate backendnews?","Activate Backend news?"
4
+ "CP Should the IP for API access be checked?","Should the IP for API access be checked?"
5
+ "CP Articlenumber","Item number"
6
+ "CP This applies to the tracking as well as the marketplace integration or the repricing.","This applies to the tracking, to marketplace integration and to the repricing."
7
+
8
+ "CP Tracking","Tracking"
9
+ "CP Tracking Settings","Tracking settings"
10
+ "CP Cookiemode","Cookie mode"
11
+ "CP Trackingkeys","Tracking keys"
12
+ "CP Shop","Shop"
13
+ "CP TrackingKey","Tracking key"
14
+
15
+ "CP Data Feed Export","Data feed export"
16
+ "CP Export Settings","Export settings"
17
+ "CP Password","Password"
18
+ "CP Protect your data feed with a password. For example: 'www.testshop.com/channelpilot?password=12345'","Protect your data feed with a password. For example: 'www.testshop.com/channelpilot?password=12345'"
19
+ "CP Select data fields","Select data fields"
20
+ "CP Data field","Data field"
21
+ "CP Select the data fields you want to provide on ChannelPilot. Some product attributes are always included. (Entity_Id, Sku, name, description, price, manufacturer, color, categories, product_url, image_url, additional_image_1, additional_image_2, additional_image_3, weight)","Select the data fields you would like to provide ChannelPilot. Some data fields are permanently included within the product catalogue. (Entity_Id, Sku, name, description, price, manufacturer, color, categories, product_url, image_url, etc.)"
22
+ "CP Create static data fields","Create static data fields"
23
+ "CP Data field name","Data field name"
24
+ "CP Data field value","Data field value"
25
+ "CP Set up additional data fields. These fields have for every product the same value. E.g. for additional delivery costs.","Set up additional data fields with static product values i.e. For additional delivery costs."
26
+ "CP Product variant data fields","Customise variant data fields"
27
+ "CP Select the data fields you want to be overwritten by the respective value of the parent article.","Select the data fields you would like the parent item to replace"
28
+
29
+ "CP Marketplace Integration","Marketplace integration"
30
+ "CP Marketplace Integration Settings","Marketplace integration settings"
31
+
32
+ "CP Repricing","Repricing"
33
+ "CP Repricing Settings","Repricing settings"
34
+ "CP General Repricing","General repricing"
35
+ "CP Field for price","Price field"
36
+ "CP This field would be overwritten by the new product price.","This price field will be replaced by the new price"
37
+
38
+ "CP ChannelPilot-Payment","ChannelPilot payment"
39
+ "CP !!!This is no real payment method!!!","!!!This payment method is not valid!!!"
40
+ "CP Title","Title"
41
+ "CP Order Status","Order status"
42
+ "CP Payment Types","Payment methods"
43
+
44
+ "CP Activate?","Activate?"
45
+ "CP Add","Add"
46
+ "CP Delete","Delete"
app/locale/en_GB/Channelpilotsolutions_Channelpilot.csv ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "CP General","General"
2
+ "CP General Settings","General settings"
3
+ "CP Activate backendnews?","Activate Backend news?"
4
+ "CP Should the IP for API access be checked?","Should the IP for API access be checked?"
5
+ "CP Articlenumber","Item number"
6
+ "CP This applies to the tracking as well as the marketplace integration or the repricing.","This applies to the tracking, to marketplace integration and to the repricing."
7
+
8
+ "CP Tracking","Tracking"
9
+ "CP Tracking Settings","Tracking settings"
10
+ "CP Cookiemode","Cookie mode"
11
+ "CP Trackingkeys","Tracking keys"
12
+ "CP Shop","Shop"
13
+ "CP TrackingKey","Tracking key"
14
+
15
+ "CP Data Feed Export","Data feed export"
16
+ "CP Export Settings","Export settings"
17
+ "CP Password","Password"
18
+ "CP Protect your data feed with a password. For example: 'www.testshop.com/channelpilot?password=12345'","Protect your data feed with a password. For example: 'www.testshop.com/channelpilot?password=12345'"
19
+ "CP Select data fields","Select data fields"
20
+ "CP Data field","Data field"
21
+ "CP Select the data fields you want to provide on ChannelPilot. Some product attributes are always included. (Entity_Id, Sku, name, description, price, manufacturer, color, categories, product_url, image_url, additional_image_1, additional_image_2, additional_image_3, weight)","Select the data fields you would like to provide ChannelPilot. Some data fields are permanently included within the product catalogue. (Entity_Id, Sku, name, description, price, manufacturer, color, categories, product_url, image_url, etc.)"
22
+ "CP Create static data fields","Create static data fields"
23
+ "CP Data field name","Data field name"
24
+ "CP Data field value","Data field value"
25
+ "CP Set up additional data fields. These fields have for every product the same value. E.g. for additional delivery costs.","Set up additional data fields with static product values i.e. For additional delivery costs."
26
+ "CP Product variant data fields","Customise variant data fields"
27
+ "CP Select the data fields you want to be overwritten by the respective value of the parent article.","Select the data fields you would like the parent item to replace"
28
+
29
+ "CP Marketplace Integration","Marketplace integration"
30
+ "CP Marketplace Integration Settings","Marketplace integration settings"
31
+
32
+ "CP Repricing","Repricing"
33
+ "CP Repricing Settings","Repricing settings"
34
+ "CP General Repricing","General repricing"
35
+ "CP Field for price","Price field"
36
+ "CP This field would be overwritten by the new product price.","This price field will be replaced by the new price"
37
+
38
+ "CP ChannelPilot-Payment","ChannelPilot payment"
39
+ "CP !!!This is no real payment method!!!","!!!This payment method is not valid!!!"
40
+ "CP Title","Title"
41
+ "CP Order Status","Order status"
42
+ "CP Payment Types","Payment methods"
43
+
44
+ "CP Activate?","Activate?"
45
+ "CP Add","Add"
46
+ "CP Delete","Delete"
app/locale/en_IE/Channelpilotsolutions_Channelpilot.csv ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "CP General","General"
2
+ "CP General Settings","General settings"
3
+ "CP Activate backendnews?","Activate Backend news?"
4
+ "CP Should the IP for API access be checked?","Should the IP for API access be checked?"
5
+ "CP Articlenumber","Item number"
6
+ "CP This applies to the tracking as well as the marketplace integration or the repricing.","This applies to the tracking, to marketplace integration and to the repricing."
7
+
8
+ "CP Tracking","Tracking"
9
+ "CP Tracking Settings","Tracking settings"
10
+ "CP Cookiemode","Cookie mode"
11
+ "CP Trackingkeys","Tracking keys"
12
+ "CP Shop","Shop"
13
+ "CP TrackingKey","Tracking key"
14
+
15
+ "CP Data Feed Export","Data feed export"
16
+ "CP Export Settings","Export settings"
17
+ "CP Password","Password"
18
+ "CP Protect your data feed with a password. For example: 'www.testshop.com/channelpilot?password=12345'","Protect your data feed with a password. For example: 'www.testshop.com/channelpilot?password=12345'"
19
+ "CP Select data fields","Select data fields"
20
+ "CP Data field","Data field"
21
+ "CP Select the data fields you want to provide on ChannelPilot. Some product attributes are always included. (Entity_Id, Sku, name, description, price, manufacturer, color, categories, product_url, image_url, additional_image_1, additional_image_2, additional_image_3, weight)","Select the data fields you would like to provide ChannelPilot. Some data fields are permanently included within the product catalogue. (Entity_Id, Sku, name, description, price, manufacturer, color, categories, product_url, image_url, etc.)"
22
+ "CP Create static data fields","Create static data fields"
23
+ "CP Data field name","Data field name"
24
+ "CP Data field value","Data field value"
25
+ "CP Set up additional data fields. These fields have for every product the same value. E.g. for additional delivery costs.","Set up additional data fields with static product values i.e. For additional delivery costs."
26
+ "CP Product variant data fields","Customise variant data fields"
27
+ "CP Select the data fields you want to be overwritten by the respective value of the parent article.","Select the data fields you would like the parent item to replace"
28
+
29
+ "CP Marketplace Integration","Marketplace integration"
30
+ "CP Marketplace Integration Settings","Marketplace integration settings"
31
+
32
+ "CP Repricing","Repricing"
33
+ "CP Repricing Settings","Repricing settings"
34
+ "CP General Repricing","General repricing"
35
+ "CP Field for price","Price field"
36
+ "CP This field would be overwritten by the new product price.","This price field will be replaced by the new price"
37
+
38
+ "CP ChannelPilot-Payment","ChannelPilot payment"
39
+ "CP !!!This is no real payment method!!!","!!!This payment method is not valid!!!"
40
+ "CP Title","Title"
41
+ "CP Order Status","Order status"
42
+ "CP Payment Types","Payment methods"
43
+
44
+ "CP Activate?","Activate?"
45
+ "CP Add","Add"
46
+ "CP Delete","Delete"
app/locale/en_NZ/Channelpilotsolutions_Channelpilot.csv ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "CP General","General"
2
+ "CP General Settings","General settings"
3
+ "CP Activate backendnews?","Activate Backend news?"
4
+ "CP Should the IP for API access be checked?","Should the IP for API access be checked?"
5
+ "CP Articlenumber","Item number"
6
+ "CP This applies to the tracking as well as the marketplace integration or the repricing.","This applies to the tracking, to marketplace integration and to the repricing."
7
+
8
+ "CP Tracking","Tracking"
9
+ "CP Tracking Settings","Tracking settings"
10
+ "CP Cookiemode","Cookie mode"
11
+ "CP Trackingkeys","Tracking keys"
12
+ "CP Shop","Shop"
13
+ "CP TrackingKey","Tracking key"
14
+
15
+ "CP Data Feed Export","Data feed export"
16
+ "CP Export Settings","Export settings"
17
+ "CP Password","Password"
18
+ "CP Protect your data feed with a password. For example: 'www.testshop.com/channelpilot?password=12345'","Protect your data feed with a password. For example: 'www.testshop.com/channelpilot?password=12345'"
19
+ "CP Select data fields","Select data fields"
20
+ "CP Data field","Data field"
21
+ "CP Select the data fields you want to provide on ChannelPilot. Some product attributes are always included. (Entity_Id, Sku, name, description, price, manufacturer, color, categories, product_url, image_url, additional_image_1, additional_image_2, additional_image_3, weight)","Select the data fields you would like to provide ChannelPilot. Some data fields are permanently included within the product catalogue. (Entity_Id, Sku, name, description, price, manufacturer, color, categories, product_url, image_url, etc.)"
22
+ "CP Create static data fields","Create static data fields"
23
+ "CP Data field name","Data field name"
24
+ "CP Data field value","Data field value"
25
+ "CP Set up additional data fields. These fields have for every product the same value. E.g. for additional delivery costs.","Set up additional data fields with static product values i.e. For additional delivery costs."
26
+ "CP Product variant data fields","Customise variant data fields"
27
+ "CP Select the data fields you want to be overwritten by the respective value of the parent article.","Select the data fields you would like the parent item to replace"
28
+
29
+ "CP Marketplace Integration","Marketplace integration"
30
+ "CP Marketplace Integration Settings","Marketplace integration settings"
31
+
32
+ "CP Repricing","Repricing"
33
+ "CP Repricing Settings","Repricing settings"
34
+ "CP General Repricing","General repricing"
35
+ "CP Field for price","Price field"
36
+ "CP This field would be overwritten by the new product price.","This price field will be replaced by the new price"
37
+
38
+ "CP ChannelPilot-Payment","ChannelPilot payment"
39
+ "CP !!!This is no real payment method!!!","!!!This payment method is not valid!!!"
40
+ "CP Title","Title"
41
+ "CP Order Status","Order status"
42
+ "CP Payment Types","Payment methods"
43
+
44
+ "CP Activate?","Activate?"
45
+ "CP Add","Add"
46
+ "CP Delete","Delete"
app/locale/en_US/Channelpilotsolutions_Channelpilot.csv ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "CP General","General"
2
+ "CP General Settings","General settings"
3
+ "CP Activate backendnews?","Activate Backend news?"
4
+ "CP Should the IP for API access be checked?","Should the IP for API access be checked?"
5
+ "CP Articlenumber","Item number"
6
+ "CP This applies to the tracking as well as the marketplace integration or the repricing.","This applies to the tracking, to marketplace integration and to the repricing."
7
+
8
+ "CP Tracking","Tracking"
9
+ "CP Tracking Settings","Tracking settings"
10
+ "CP Cookiemode","Cookie mode"
11
+ "CP Trackingkeys","Tracking keys"
12
+ "CP Shop","Shop"
13
+ "CP TrackingKey","Tracking key"
14
+
15
+ "CP Data Feed Export","Data feed export"
16
+ "CP Export Settings","Export settings"
17
+ "CP Password","Password"
18
+ "CP Protect your data feed with a password. For example: 'www.testshop.com/channelpilot?password=12345'","Protect your data feed with a password. For example: 'www.testshop.com/channelpilot?password=12345'"
19
+ "CP Select data fields","Select data fields"
20
+ "CP Data field","Data field"
21
+ "CP Select the data fields you want to provide on ChannelPilot. Some product attributes are always included. (Entity_Id, Sku, name, description, price, manufacturer, color, categories, product_url, image_url, additional_image_1, additional_image_2, additional_image_3, weight)","Select the data fields you would like to provide ChannelPilot. Some data fields are permanently included within the product catalogue. (Entity_Id, Sku, name, description, price, manufacturer, color, categories, product_url, image_url, etc.)"
22
+ "CP Create static data fields","Create static data fields"
23
+ "CP Data field name","Data field name"
24
+ "CP Data field value","Data field value"
25
+ "CP Set up additional data fields. These fields have for every product the same value. E.g. for additional delivery costs.","Set up additional data fields with static product values i.e. For additional delivery costs."
26
+ "CP Product variant data fields","Customise variant data fields"
27
+ "CP Select the data fields you want to be overwritten by the respective value of the parent article.","Select the data fields you would like the parent item to replace"
28
+
29
+ "CP Marketplace Integration","Marketplace integration"
30
+ "CP Marketplace Integration Settings","Marketplace integration settings"
31
+
32
+ "CP Repricing","Repricing"
33
+ "CP Repricing Settings","Repricing settings"
34
+ "CP General Repricing","General repricing"
35
+ "CP Field for price","Price field"
36
+ "CP This field would be overwritten by the new product price.","This price field will be replaced by the new price"
37
+
38
+ "CP ChannelPilot-Payment","ChannelPilot payment"
39
+ "CP !!!This is no real payment method!!!","!!!This payment method is not valid!!!"
40
+ "CP Title","Title"
41
+ "CP Order Status","Order status"
42
+ "CP Payment Types","Payment methods"
43
+
44
+ "CP Activate?","Activate?"
45
+ "CP Add","Add"
46
+ "CP Delete","Delete"
app/locale/es_AR/Channelpilotsolutions_Channelpilot.csv ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "CP General","General"
2
+ "CP General Settings","Configuración general"
3
+ "CP Activate backendnews?","¿Activar sistema de notificaciones?"
4
+ "CP Should the IP for API access be checked?","¿Quiere que se compruebe el IP en el acceso IPA?"
5
+ "CP Articlenumber","Número de artículo"
6
+ "CP This applies to the tracking as well as the marketplace integration or the repricing.","Esto es válido para el seguimiento, para la integración del marketplace y para el control de precios."
7
+
8
+ "CP Tracking","Seguimiento"
9
+ "CP Tracking Settings","Opciones de seguimiento"
10
+ "CP Cookiemode","Modo cookie"
11
+ "CP Trackingkeys","Seguimiento"
12
+ "CP Shop","Tienda"
13
+ "CP TrackingKey","Tracking key"
14
+
15
+ "CP Data Feed Export","Exportación"
16
+ "CP Export Settings","Configuración de la exportación"
17
+ "CP Password","Contraseña"
18
+ "CP Protect your data feed with a password. For example: 'www.testshop.com/channelpilot?password=12345'","Proteja su fuente de datos estableciendo una contraseña, como en el siguiente ejemplo: 'www.testshop.com/channelpilot?password=12345'"
19
+ "CP Select data fields","Seleccione el campo de datos"
20
+ "CP Data field","Campo de datos"
21
+ "CP Select the data fields you want to provide on ChannelPilot. Some product attributes are always included. (Entity_Id, Sku, name, description, price, manufacturer, color, categories, product_url, image_url, additional_image_1, additional_image_2, additional_image_3, weight)","Seleccione el campo de datos que le gustaría proporcionar a ChannelPilot. Algunos campos de datos se encuentran en el catálogo de productos de forma permanente. (Entity_Id, Sku, name, description, price, manufacturer, color, categories, product_url, image_url, etc.)"
22
+ "CP Create static data fields","Cree campos de datos estáticos"
23
+ "CP Data field name","Nombre del campo de datos"
24
+ "CP Data field value","Valor del campo de datos"
25
+ "CP Set up additional data fields. These fields have for every product the same value. E.g. for additional delivery costs.","Cree más campos de datos con valores de producto estáticos, por ejemplo, para costes de envío adicionales."
26
+ "CP Product variant data fields","Personalice campos de datos variantes"
27
+ "CP Select the data fields you want to be overwritten by the respective value of the parent article.","Seleccione el campo de datos que desee que sea sustituido por el artículo superior."
28
+
29
+ "CP Marketplace Integration","Integración del mercado"
30
+ "CP Marketplace Integration Settings","Configuración de la integración del mercado"
31
+
32
+ "CP Repricing","Control de precios "
33
+ "CP Repricing Settings","Configuración del control de precios"
34
+ "CP General Repricing","Control de precios general"
35
+ "CP Field for price","Campo de precio"
36
+ "CP This field would be overwritten by the new product price.","Este campo de precio será sustituido por el precio nuevo"
37
+
38
+ "CP ChannelPilot-Payment","Pago ChannelPilot"
39
+ "CP !!!This is no real payment method!!!","¡¡¡La forma de pago escogida no es válida!!!"
40
+ "CP Title","Término"
41
+ "CP Order Status","Estado del pedido"
42
+ "CP Payment Types","Formas de pago"
43
+
44
+ "CP Activate?","Activar?"
45
+ "CP Add","Añadir"
46
+ "CP Delete","Borrar"
app/locale/es_CL/Channelpilotsolutions_Channelpilot.csv ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "CP General","General"
2
+ "CP General Settings","Configuración general"
3
+ "CP Activate backendnews?","¿Activar sistema de notificaciones?"
4
+ "CP Should the IP for API access be checked?","¿Quiere que se compruebe el IP en el acceso IPA?"
5
+ "CP Articlenumber","Número de artículo"
6
+ "CP This applies to the tracking as well as the marketplace integration or the repricing.","Esto es válido para el seguimiento, para la integración del marketplace y para el control de precios."
7
+
8
+ "CP Tracking","Seguimiento"
9
+ "CP Tracking Settings","Opciones de seguimiento"
10
+ "CP Cookiemode","Modo cookie"
11
+ "CP Trackingkeys","Seguimiento"
12
+ "CP Shop","Tienda"
13
+ "CP TrackingKey","Tracking key"
14
+
15
+ "CP Data Feed Export","Exportación"
16
+ "CP Export Settings","Configuración de la exportación"
17
+ "CP Password","Contraseña"
18
+ "CP Protect your data feed with a password. For example: 'www.testshop.com/channelpilot?password=12345'","Proteja su fuente de datos estableciendo una contraseña, como en el siguiente ejemplo: 'www.testshop.com/channelpilot?password=12345'"
19
+ "CP Select data fields","Seleccione el campo de datos"
20
+ "CP Data field","Campo de datos"
21
+ "CP Select the data fields you want to provide on ChannelPilot. Some product attributes are always included. (Entity_Id, Sku, name, description, price, manufacturer, color, categories, product_url, image_url, additional_image_1, additional_image_2, additional_image_3, weight)","Seleccione el campo de datos que le gustaría proporcionar a ChannelPilot. Algunos campos de datos se encuentran en el catálogo de productos de forma permanente. (Entity_Id, Sku, name, description, price, manufacturer, color, categories, product_url, image_url, etc.)"
22
+ "CP Create static data fields","Cree campos de datos estáticos"
23
+ "CP Data field name","Nombre del campo de datos"
24
+ "CP Data field value","Valor del campo de datos"
25
+ "CP Set up additional data fields. These fields have for every product the same value. E.g. for additional delivery costs.","Cree más campos de datos con valores de producto estáticos, por ejemplo, para costes de envío adicionales."
26
+ "CP Product variant data fields","Personalice campos de datos variantes"
27
+ "CP Select the data fields you want to be overwritten by the respective value of the parent article.","Seleccione el campo de datos que desee que sea sustituido por el artículo superior."
28
+
29
+ "CP Marketplace Integration","Integración del mercado"
30
+ "CP Marketplace Integration Settings","Configuración de la integración del mercado"
31
+
32
+ "CP Repricing","Control de precios "
33
+ "CP Repricing Settings","Configuración del control de precios"
34
+ "CP General Repricing","Control de precios general"
35
+ "CP Field for price","Campo de precio"
36
+ "CP This field would be overwritten by the new product price.","Este campo de precio será sustituido por el precio nuevo"
37
+
38
+ "CP ChannelPilot-Payment","Pago ChannelPilot"
39
+ "CP !!!This is no real payment method!!!","¡¡¡La forma de pago escogida no es válida!!!"
40
+ "CP Title","Término"
41
+ "CP Order Status","Estado del pedido"
42
+ "CP Payment Types","Formas de pago"
43
+
44
+ "CP Activate?","Activar?"
45
+ "CP Add","Añadir"
46
+ "CP Delete","Borrar"
app/locale/es_CO/Channelpilotsolutions_Channelpilot.csv ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "CP General","General"
2
+ "CP General Settings","Configuración general"
3
+ "CP Activate backendnews?","¿Activar sistema de notificaciones?"
4
+ "CP Should the IP for API access be checked?","¿Quiere que se compruebe el IP en el acceso IPA?"
5
+ "CP Articlenumber","Número de artículo"
6
+ "CP This applies to the tracking as well as the marketplace integration or the repricing.","Esto es válido para el seguimiento, para la integración del marketplace y para el control de precios."
7
+
8
+ "CP Tracking","Seguimiento"
9
+ "CP Tracking Settings","Opciones de seguimiento"
10
+ "CP Cookiemode","Modo cookie"
11
+ "CP Trackingkeys","Seguimiento"
12
+ "CP Shop","Tienda"
13
+ "CP TrackingKey","Tracking key"
14
+
15
+ "CP Data Feed Export","Exportación"
16
+ "CP Export Settings","Configuración de la exportación"
17
+ "CP Password","Contraseña"
18
+ "CP Protect your data feed with a password. For example: 'www.testshop.com/channelpilot?password=12345'","Proteja su fuente de datos estableciendo una contraseña, como en el siguiente ejemplo: 'www.testshop.com/channelpilot?password=12345'"
19
+ "CP Select data fields","Seleccione el campo de datos"
20
+ "CP Data field","Campo de datos"
21
+ "CP Select the data fields you want to provide on ChannelPilot. Some product attributes are always included. (Entity_Id, Sku, name, description, price, manufacturer, color, categories, product_url, image_url, additional_image_1, additional_image_2, additional_image_3, weight)","Seleccione el campo de datos que le gustaría proporcionar a ChannelPilot. Algunos campos de datos se encuentran en el catálogo de productos de forma permanente. (Entity_Id, Sku, name, description, price, manufacturer, color, categories, product_url, image_url, etc.)"
22
+ "CP Create static data fields","Cree campos de datos estáticos"
23
+ "CP Data field name","Nombre del campo de datos"
24
+ "CP Data field value","Valor del campo de datos"
25
+ "CP Set up additional data fields. These fields have for every product the same value. E.g. for additional delivery costs.","Cree más campos de datos con valores de producto estáticos, por ejemplo, para costes de envío adicionales."
26
+ "CP Product variant data fields","Personalice campos de datos variantes"
27
+ "CP Select the data fields you want to be overwritten by the respective value of the parent article.","Seleccione el campo de datos que desee que sea sustituido por el artículo superior."
28
+
29
+ "CP Marketplace Integration","Integración del mercado"
30
+ "CP Marketplace Integration Settings","Configuración de la integración del mercado"
31
+
32
+ "CP Repricing","Control de precios "
33
+ "CP Repricing Settings","Configuración del control de precios"
34
+ "CP General Repricing","Control de precios general"
35
+ "CP Field for price","Campo de precio"
36
+ "CP This field would be overwritten by the new product price.","Este campo de precio será sustituido por el precio nuevo"
37
+
38
+ "CP ChannelPilot-Payment","Pago ChannelPilot"
39
+ "CP !!!This is no real payment method!!!","¡¡¡La forma de pago escogida no es válida!!!"
40
+ "CP Title","Término"
41
+ "CP Order Status","Estado del pedido"
42
+ "CP Payment Types","Formas de pago"
43
+
44
+ "CP Activate?","Activar?"
45
+ "CP Add","Añadir"
46
+ "CP Delete","Borrar"
app/locale/es_CR/Channelpilotsolutions_Channelpilot.csv ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "CP General","General"
2
+ "CP General Settings","Configuración general"
3
+ "CP Activate backendnews?","¿Activar sistema de notificaciones?"
4
+ "CP Should the IP for API access be checked?","¿Quiere que se compruebe el IP en el acceso IPA?"
5
+ "CP Articlenumber","Número de artículo"
6
+ "CP This applies to the tracking as well as the marketplace integration or the repricing.","Esto es válido para el seguimiento, para la integración del marketplace y para el control de precios."
7
+
8
+ "CP Tracking","Seguimiento"
9
+ "CP Tracking Settings","Opciones de seguimiento"
10
+ "CP Cookiemode","Modo cookie"
11
+ "CP Trackingkeys","Seguimiento"
12
+ "CP Shop","Tienda"
13
+ "CP TrackingKey","Tracking key"
14
+
15
+ "CP Data Feed Export","Exportación"
16
+ "CP Export Settings","Configuración de la exportación"
17
+ "CP Password","Contraseña"
18
+ "CP Protect your data feed with a password. For example: 'www.testshop.com/channelpilot?password=12345'","Proteja su fuente de datos estableciendo una contraseña, como en el siguiente ejemplo: 'www.testshop.com/channelpilot?password=12345'"
19
+ "CP Select data fields","Seleccione el campo de datos"
20
+ "CP Data field","Campo de datos"
21
+ "CP Select the data fields you want to provide on ChannelPilot. Some product attributes are always included. (Entity_Id, Sku, name, description, price, manufacturer, color, categories, product_url, image_url, additional_image_1, additional_image_2, additional_image_3, weight)","Seleccione el campo de datos que le gustaría proporcionar a ChannelPilot. Algunos campos de datos se encuentran en el catálogo de productos de forma permanente. (Entity_Id, Sku, name, description, price, manufacturer, color, categories, product_url, image_url, etc.)"
22
+ "CP Create static data fields","Cree campos de datos estáticos"
23
+ "CP Data field name","Nombre del campo de datos"
24
+ "CP Data field value","Valor del campo de datos"
25
+ "CP Set up additional data fields. These fields have for every product the same value. E.g. for additional delivery costs.","Cree más campos de datos con valores de producto estáticos, por ejemplo, para costes de envío adicionales."
26
+ "CP Product variant data fields","Personalice campos de datos variantes"
27
+ "CP Select the data fields you want to be overwritten by the respective value of the parent article.","Seleccione el campo de datos que desee que sea sustituido por el artículo superior."
28
+
29
+ "CP Marketplace Integration","Integración del mercado"
30
+ "CP Marketplace Integration Settings","Configuración de la integración del mercado"
31
+
32
+ "CP Repricing","Control de precios "
33
+ "CP Repricing Settings","Configuración del control de precios"
34
+ "CP General Repricing","Control de precios general"
35
+ "CP Field for price","Campo de precio"
36
+ "CP This field would be overwritten by the new product price.","Este campo de precio será sustituido por el precio nuevo"
37
+
38
+ "CP ChannelPilot-Payment","Pago ChannelPilot"
39
+ "CP !!!This is no real payment method!!!","¡¡¡La forma de pago escogida no es válida!!!"
40
+ "CP Title","Término"
41
+ "CP Order Status","Estado del pedido"
42
+ "CP Payment Types","Formas de pago"
43
+
44
+ "CP Activate?","Activar?"
45
+ "CP Add","Añadir"
46
+ "CP Delete","Borrar"
app/locale/es_ES/Channelpilotsolutions_Channelpilot.csv ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "CP General","General"
2
+ "CP General Settings","Configuración general"
3
+ "CP Activate backendnews?","¿Activar sistema de notificaciones?"
4
+ "CP Should the IP for API access be checked?","¿Quiere que se compruebe el IP en el acceso IPA?"
5
+ "CP Articlenumber","Número de artículo"
6
+ "CP This applies to the tracking as well as the marketplace integration or the repricing.","Esto es válido para el seguimiento, para la integración del marketplace y para el control de precios."
7
+
8
+ "CP Tracking","Seguimiento"
9
+ "CP Tracking Settings","Opciones de seguimiento"
10
+ "CP Cookiemode","Modo cookie"
11
+ "CP Trackingkeys","Seguimiento"
12
+ "CP Shop","Tienda"
13
+ "CP TrackingKey","Tracking key"
14
+
15
+ "CP Data Feed Export","Exportación"
16
+ "CP Export Settings","Configuración de la exportación"
17
+ "CP Password","Contraseña"
18
+ "CP Protect your data feed with a password. For example: 'www.testshop.com/channelpilot?password=12345'","Proteja su fuente de datos estableciendo una contraseña, como en el siguiente ejemplo: 'www.testshop.com/channelpilot?password=12345'"
19
+ "CP Select data fields","Seleccione el campo de datos"
20
+ "CP Data field","Campo de datos"
21
+ "CP Select the data fields you want to provide on ChannelPilot. Some product attributes are always included. (Entity_Id, Sku, name, description, price, manufacturer, color, categories, product_url, image_url, additional_image_1, additional_image_2, additional_image_3, weight)","Seleccione el campo de datos que le gustaría proporcionar a ChannelPilot. Algunos campos de datos se encuentran en el catálogo de productos de forma permanente. (Entity_Id, Sku, name, description, price, manufacturer, color, categories, product_url, image_url, etc.)"
22
+ "CP Create static data fields","Cree campos de datos estáticos"
23
+ "CP Data field name","Nombre del campo de datos"
24
+ "CP Data field value","Valor del campo de datos"
25
+ "CP Set up additional data fields. These fields have for every product the same value. E.g. for additional delivery costs.","Cree más campos de datos con valores de producto estáticos, por ejemplo, para costes de envío adicionales."
26
+ "CP Product variant data fields","Personalice campos de datos variantes"
27
+ "CP Select the data fields you want to be overwritten by the respective value of the parent article.","Seleccione el campo de datos que desee que sea sustituido por el artículo superior."
28
+
29
+ "CP Marketplace Integration","Integración del mercado"
30
+ "CP Marketplace Integration Settings","Configuración de la integración del mercado"
31
+
32
+ "CP Repricing","Control de precios "
33
+ "CP Repricing Settings","Configuración del control de precios"
34
+ "CP General Repricing","Control de precios general"
35
+ "CP Field for price","Campo de precio"
36
+ "CP This field would be overwritten by the new product price.","Este campo de precio será sustituido por el precio nuevo"
37
+
38
+ "CP ChannelPilot-Payment","Pago ChannelPilot"
39
+ "CP !!!This is no real payment method!!!","¡¡¡La forma de pago escogida no es válida!!!"
40
+ "CP Title","Término"
41
+ "CP Order Status","Estado del pedido"
42
+ "CP Payment Types","Formas de pago"
43
+
44
+ "CP Activate?","Activar?"
45
+ "CP Add","Añadir"
46
+ "CP Delete","Borrar"
app/locale/es_MX/Channelpilotsolutions_Channelpilot.csv ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "CP General","General"
2
+ "CP General Settings","Configuración general"
3
+ "CP Activate backendnews?","¿Activar sistema de notificaciones?"
4
+ "CP Should the IP for API access be checked?","¿Quiere que se compruebe el IP en el acceso IPA?"
5
+ "CP Articlenumber","Número de artículo"
6
+ "CP This applies to the tracking as well as the marketplace integration or the repricing.","Esto es válido para el seguimiento, para la integración del marketplace y para el control de precios."
7
+
8
+ "CP Tracking","Seguimiento"
9
+ "CP Tracking Settings","Opciones de seguimiento"
10
+ "CP Cookiemode","Modo cookie"
11
+ "CP Trackingkeys","Seguimiento"
12
+ "CP Shop","Tienda"
13
+ "CP TrackingKey","Tracking key"
14
+
15
+ "CP Data Feed Export","Exportación"
16
+ "CP Export Settings","Configuración de la exportación"
17
+ "CP Password","Contraseña"
18
+ "CP Protect your data feed with a password. For example: 'www.testshop.com/channelpilot?password=12345'","Proteja su fuente de datos estableciendo una contraseña, como en el siguiente ejemplo: 'www.testshop.com/channelpilot?password=12345'"
19
+ "CP Select data fields","Seleccione el campo de datos"
20
+ "CP Data field","Campo de datos"
21
+ "CP Select the data fields you want to provide on ChannelPilot. Some product attributes are always included. (Entity_Id, Sku, name, description, price, manufacturer, color, categories, product_url, image_url, additional_image_1, additional_image_2, additional_image_3, weight)","Seleccione el campo de datos que le gustaría proporcionar a ChannelPilot. Algunos campos de datos se encuentran en el catálogo de productos de forma permanente. (Entity_Id, Sku, name, description, price, manufacturer, color, categories, product_url, image_url, etc.)"
22
+ "CP Create static data fields","Cree campos de datos estáticos"
23
+ "CP Data field name","Nombre del campo de datos"
24
+ "CP Data field value","Valor del campo de datos"
25
+ "CP Set up additional data fields. These fields have for every product the same value. E.g. for additional delivery costs.","Cree más campos de datos con valores de producto estáticos, por ejemplo, para costes de envío adicionales."
26
+ "CP Product variant data fields","Personalice campos de datos variantes"
27
+ "CP Select the data fields you want to be overwritten by the respective value of the parent article.","Seleccione el campo de datos que desee que sea sustituido por el artículo superior."
28
+
29
+ "CP Marketplace Integration","Integración del mercado"
30
+ "CP Marketplace Integration Settings","Configuración de la integración del mercado"
31
+
32
+ "CP Repricing","Control de precios "
33
+ "CP Repricing Settings","Configuración del control de precios"
34
+ "CP General Repricing","Control de precios general"
35
+ "CP Field for price","Campo de precio"
36
+ "CP This field would be overwritten by the new product price.","Este campo de precio será sustituido por el precio nuevo"
37
+
38
+ "CP ChannelPilot-Payment","Pago ChannelPilot"
39
+ "CP !!!This is no real payment method!!!","¡¡¡La forma de pago escogida no es válida!!!"
40
+ "CP Title","Término"
41
+ "CP Order Status","Estado del pedido"
42
+ "CP Payment Types","Formas de pago"
43
+
44
+ "CP Activate?","Activar?"
45
+ "CP Add","Añadir"
46
+ "CP Delete","Borrar"
app/locale/es_PA/Channelpilotsolutions_Channelpilot.csv ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "CP General","General"
2
+ "CP General Settings","Configuración general"
3
+ "CP Activate backendnews?","¿Activar sistema de notificaciones?"
4
+ "CP Should the IP for API access be checked?","¿Quiere que se compruebe el IP en el acceso IPA?"
5
+ "CP Articlenumber","Número de artículo"
6
+ "CP This applies to the tracking as well as the marketplace integration or the repricing.","Esto es válido para el seguimiento, para la integración del marketplace y para el control de precios."
7
+
8
+ "CP Tracking","Seguimiento"
9
+ "CP Tracking Settings","Opciones de seguimiento"
10
+ "CP Cookiemode","Modo cookie"
11
+ "CP Trackingkeys","Seguimiento"
12
+ "CP Shop","Tienda"
13
+ "CP TrackingKey","Tracking key"
14
+
15
+ "CP Data Feed Export","Exportación"
16
+ "CP Export Settings","Configuración de la exportación"
17
+ "CP Password","Contraseña"
18
+ "CP Protect your data feed with a password. For example: 'www.testshop.com/channelpilot?password=12345'","Proteja su fuente de datos estableciendo una contraseña, como en el siguiente ejemplo: 'www.testshop.com/channelpilot?password=12345'"
19
+ "CP Select data fields","Seleccione el campo de datos"
20
+ "CP Data field","Campo de datos"
21
+ "CP Select the data fields you want to provide on ChannelPilot. Some product attributes are always included. (Entity_Id, Sku, name, description, price, manufacturer, color, categories, product_url, image_url, additional_image_1, additional_image_2, additional_image_3, weight)","Seleccione el campo de datos que le gustaría proporcionar a ChannelPilot. Algunos campos de datos se encuentran en el catálogo de productos de forma permanente. (Entity_Id, Sku, name, description, price, manufacturer, color, categories, product_url, image_url, etc.)"
22
+ "CP Create static data fields","Cree campos de datos estáticos"
23
+ "CP Data field name","Nombre del campo de datos"
24
+ "CP Data field value","Valor del campo de datos"
25
+ "CP Set up additional data fields. These fields have for every product the same value. E.g. for additional delivery costs.","Cree más campos de datos con valores de producto estáticos, por ejemplo, para costes de envío adicionales."
26
+ "CP Product variant data fields","Personalice campos de datos variantes"
27
+ "CP Select the data fields you want to be overwritten by the respective value of the parent article.","Seleccione el campo de datos que desee que sea sustituido por el artículo superior."
28
+
29
+ "CP Marketplace Integration","Integración del mercado"
30
+ "CP Marketplace Integration Settings","Configuración de la integración del mercado"
31
+
32
+ "CP Repricing","Control de precios "
33
+ "CP Repricing Settings","Configuración del control de precios"
34
+ "CP General Repricing","Control de precios general"
35
+ "CP Field for price","Campo de precio"
36
+ "CP This field would be overwritten by the new product price.","Este campo de precio será sustituido por el precio nuevo"
37
+
38
+ "CP ChannelPilot-Payment","Pago ChannelPilot"
39
+ "CP !!!This is no real payment method!!!","¡¡¡La forma de pago escogida no es válida!!!"
40
+ "CP Title","Término"
41
+ "CP Order Status","Estado del pedido"
42
+ "CP Payment Types","Formas de pago"
43
+
44
+ "CP Activate?","Activar?"
45
+ "CP Add","Añadir"
46
+ "CP Delete","Borrar"
app/locale/es_PE/Channelpilotsolutions_Channelpilot.csv ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "CP General","General"
2
+ "CP General Settings","Configuración general"
3
+ "CP Activate backendnews?","¿Activar sistema de notificaciones?"
4
+ "CP Should the IP for API access be checked?","¿Quiere que se compruebe el IP en el acceso IPA?"
5
+ "CP Articlenumber","Número de artículo"
6
+ "CP This applies to the tracking as well as the marketplace integration or the repricing.","Esto es válido para el seguimiento, para la integración del marketplace y para el control de precios."
7
+
8
+ "CP Tracking","Seguimiento"
9
+ "CP Tracking Settings","Opciones de seguimiento"
10
+ "CP Cookiemode","Modo cookie"
11
+ "CP Trackingkeys","Seguimiento"
12
+ "CP Shop","Tienda"
13
+ "CP TrackingKey","Tracking key"
14
+
15
+ "CP Data Feed Export","Exportación"
16
+ "CP Export Settings","Configuración de la exportación"
17
+ "CP Password","Contraseña"
18
+ "CP Protect your data feed with a password. For example: 'www.testshop.com/channelpilot?password=12345'","Proteja su fuente de datos estableciendo una contraseña, como en el siguiente ejemplo: 'www.testshop.com/channelpilot?password=12345'"
19
+ "CP Select data fields","Seleccione el campo de datos"
20
+ "CP Data field","Campo de datos"
21
+ "CP Select the data fields you want to provide on ChannelPilot. Some product attributes are always included. (Entity_Id, Sku, name, description, price, manufacturer, color, categories, product_url, image_url, additional_image_1, additional_image_2, additional_image_3, weight)","Seleccione el campo de datos que le gustaría proporcionar a ChannelPilot. Algunos campos de datos se encuentran en el catálogo de productos de forma permanente. (Entity_Id, Sku, name, description, price, manufacturer, color, categories, product_url, image_url, etc.)"
22
+ "CP Create static data fields","Cree campos de datos estáticos"
23
+ "CP Data field name","Nombre del campo de datos"
24
+ "CP Data field value","Valor del campo de datos"
25
+ "CP Set up additional data fields. These fields have for every product the same value. E.g. for additional delivery costs.","Cree más campos de datos con valores de producto estáticos, por ejemplo, para costes de envío adicionales."
26
+ "CP Product variant data fields","Personalice campos de datos variantes"
27
+ "CP Select the data fields you want to be overwritten by the respective value of the parent article.","Seleccione el campo de datos que desee que sea sustituido por el artículo superior."
28
+
29
+ "CP Marketplace Integration","Integración del mercado"
30
+ "CP Marketplace Integration Settings","Configuración de la integración del mercado"
31
+
32
+ "CP Repricing","Control de precios "
33
+ "CP Repricing Settings","Configuración del control de precios"
34
+ "CP General Repricing","Control de precios general"
35
+ "CP Field for price","Campo de precio"
36
+ "CP This field would be overwritten by the new product price.","Este campo de precio será sustituido por el precio nuevo"
37
+
38
+ "CP ChannelPilot-Payment","Pago ChannelPilot"
39
+ "CP !!!This is no real payment method!!!","¡¡¡La forma de pago escogida no es válida!!!"
40
+ "CP Title","Término"
41
+ "CP Order Status","Estado del pedido"
42
+ "CP Payment Types","Formas de pago"
43
+
44
+ "CP Activate?","Activar?"
45
+ "CP Add","Añadir"
46
+ "CP Delete","Borrar"
app/locale/es_VE/Channelpilotsolutions_Channelpilot.csv ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "CP General","General"
2
+ "CP General Settings","Configuración general"
3
+ "CP Activate backendnews?","¿Activar sistema de notificaciones?"
4
+ "CP Should the IP for API access be checked?","¿Quiere que se compruebe el IP en el acceso IPA?"
5
+ "CP Articlenumber","Número de artículo"
6
+ "CP This applies to the tracking as well as the marketplace integration or the repricing.","Esto es válido para el seguimiento, para la integración del marketplace y para el control de precios."
7
+
8
+ "CP Tracking","Seguimiento"
9
+ "CP Tracking Settings","Opciones de seguimiento"
10
+ "CP Cookiemode","Modo cookie"
11
+ "CP Trackingkeys","Seguimiento"
12
+ "CP Shop","Tienda"
13
+ "CP TrackingKey","Tracking key"
14
+
15
+ "CP Data Feed Export","Exportación"
16
+ "CP Export Settings","Configuración de la exportación"
17
+ "CP Password","Contraseña"
18
+ "CP Protect your data feed with a password. For example: 'www.testshop.com/channelpilot?password=12345'","Proteja su fuente de datos estableciendo una contraseña, como en el siguiente ejemplo: 'www.testshop.com/channelpilot?password=12345'"
19
+ "CP Select data fields","Seleccione el campo de datos"
20
+ "CP Data field","Campo de datos"
21
+ "CP Select the data fields you want to provide on ChannelPilot. Some product attributes are always included. (Entity_Id, Sku, name, description, price, manufacturer, color, categories, product_url, image_url, additional_image_1, additional_image_2, additional_image_3, weight)","Seleccione el campo de datos que le gustaría proporcionar a ChannelPilot. Algunos campos de datos se encuentran en el catálogo de productos de forma permanente. (Entity_Id, Sku, name, description, price, manufacturer, color, categories, product_url, image_url, etc.)"
22
+ "CP Create static data fields","Cree campos de datos estáticos"
23
+ "CP Data field name","Nombre del campo de datos"
24
+ "CP Data field value","Valor del campo de datos"
25
+ "CP Set up additional data fields. These fields have for every product the same value. E.g. for additional delivery costs.","Cree más campos de datos con valores de producto estáticos, por ejemplo, para costes de envío adicionales."
26
+ "CP Product variant data fields","Personalice campos de datos variantes"
27
+ "CP Select the data fields you want to be overwritten by the respective value of the parent article.","Seleccione el campo de datos que desee que sea sustituido por el artículo superior."
28
+
29
+ "CP Marketplace Integration","Integración del mercado"
30
+ "CP Marketplace Integration Settings","Configuración de la integración del mercado"
31
+
32
+ "CP Repricing","Control de precios "
33
+ "CP Repricing Settings","Configuración del control de precios"
34
+ "CP General Repricing","Control de precios general"
35
+ "CP Field for price","Campo de precio"
36
+ "CP This field would be overwritten by the new product price.","Este campo de precio será sustituido por el precio nuevo"
37
+
38
+ "CP ChannelPilot-Payment","Pago ChannelPilot"
39
+ "CP !!!This is no real payment method!!!","¡¡¡La forma de pago escogida no es válida!!!"
40
+ "CP Title","Término"
41
+ "CP Order Status","Estado del pedido"
42
+ "CP Payment Types","Formas de pago"
43
+
44
+ "CP Activate?","Activar?"
45
+ "CP Add","Añadir"
46
+ "CP Delete","Borrar"
app/locale/fr_CA/Channelpilotsolutions_Channelpilot.csv ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "CP General","Général"
2
+ "CP General Settings","Paramètres généraux"
3
+ "CP Activate backendnews?","Activer les informations de Backend?"
4
+ "CP Should the IP for API access be checked?","L'IP de l'accès API doit-il être vérifié?"
5
+ "CP Articlenumber","Numéro de l'article"
6
+ "CP This applies to the tracking as well as the marketplace integration or the repricing.","Ceci vaut pour le Tracking mais aussi pour l'intégration aux places de marché et pour le Repricing"
7
+
8
+ "CP Tracking","Tracking"
9
+ "CP Tracking Settings","Paramètres du Tracking"
10
+ "CP Cookiemode","Mode du cookie"
11
+ "CP Trackingkeys","Clés de Tracking"
12
+ "CP Shop","E-boutique"
13
+ "CP TrackingKey","Clé de Tracking"
14
+
15
+ "CP Data Feed Export","Exportation"
16
+ "CP Export Settings","Configuration de l'exportation"
17
+ "CP Password","Mot de passe"
18
+ "CP Protect your data feed with a password. For example: 'www.testshop.com/channelpilot?password=12345'","Protégez votre flux de données grâce à un mot de passe. Par exemple : 'www.testshop.com/channelpilot?password=12345'"
19
+ "CP Select data fields","Choisir un champ de données"
20
+ "CP Data field","Champ de données"
21
+ "CP Select the data fields you want to provide on ChannelPilot. Some product attributes are always included. (Entity_Id, Sku, name, description, price, manufacturer, color, categories, product_url, image_url, additional_image_1, additional_image_2, additional_image_3, weight)","Sélectionnez le champ de données que vous souhaitez apporter à ChannelPilot. Certains champs de données sont toujours compris dans le catalogue de produit. (Entity_Id, Sku, name, description, price, manufacturer, color, categories, product_url, image_url, additional_image_1, additional_image_2, additional_image_3, weight)"
22
+ "CP Create static data fields","Créer des champs de données stratistiques"
23
+ "CP Data field name","Nom des champs de données"
24
+ "CP Data field value","Valeur des champs de données"
25
+ "CP Set up additional data fields. These fields have for every product the same value. E.g. for additional delivery costs.","Créer des champs de données supplémentaires. Chaque produit de ces champs ont la même valeur, par exemple, pour les frais de port."
26
+ "CP Product variant data fields","Adapter le champ de données des produits variants"
27
+ "CP Select the data fields you want to be overwritten by the respective value of the parent article.","Choissiez le champ de données, qui doivent être intituler comme les champs des données des articles parents."
28
+
29
+ "CP Marketplace Integration","Connexion aux places de marché"
30
+ "CP Marketplace Integration Settings","Paramètres de connexion aux places de marché"
31
+ <<<<
32
+ "CP Repricing","Repricing"
33
+ "CP Repricing Settings","Paramètres de Repricing"
34
+ "CP General Repricing","Repricing général"
35
+ "CP Field for price","Champ de prix"
36
+ "CP This field would be overwritten by the new product price.","Ce champ de prix sera remplacé par le nouveau prix."
37
+
38
+ "CP ChannelPilot-Payment","Paiement ChannelPilot"
39
+ "CP !!!This is no real payment method!!!","!!! Ceci n'est pas un vrai moyen de paiement!!!"
40
+ "CP Title","Titre"
41
+ "CP Order Status","Statut de la commande"
42
+ "CP Payment Types","Moyens de paiement"
43
+
44
+ "CP Activate?","Activer?"
45
+ "CP Add","Ajouter"
46
+ "CP Delete","Supprimer"
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Channelpilotsolutions_Channelpilot</name>
4
- <version>2.1.0</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.opensource.org/licenses/gpl-license.php">GPL</license>
7
  <channel>community</channel>
@@ -26,13 +26,11 @@
26
  &lt;li&gt;&lt;b&gt;ChannelPilot Multi-Platform:&lt;/b&gt; Access ChannelPilot on any device (e.g. computer, tablet or smartphone) and keep a firm hold on your online marketing- wherever you are!&lt;/li&gt;&#xD;
27
  &lt;/ul&gt;&#xD;
28
  Just get more information about ChannelPilot: &lt;a href="http://www.channelpilot.com"&gt;www.channelpilot.com&lt;/a&gt;</description>
29
- <notes>- some bug fixes&#xD;
30
- - optimize price control&#xD;
31
- - new design</notes>
32
  <authors><author><name>ChannelPilot Solutions GmbH</name><user>auto-converted</user><email>info@channelpilot.com</email></author></authors>
33
- <date>2015-01-29</date>
34
- <time>09:44:25</time>
35
- <contents><target name="magecommunity"><dir name="Channelpilotsolutions"><dir name="Channelpilot"><dir name="Adminhtml"><dir name="Model"><dir name="Articlenumber"><file name="Values.php" hash="f2744ef8301e25e096318f34eb97c2bf"/></dir><dir name="Cookiemode"><file name="Values.php" hash="1ec39f85bb7562c1b6a4614f759d9124"/></dir><dir name="Grossnet"><file name="Values.php" hash="11eaf553b0ec34299524ec6d5a9f1e13"/></dir><dir name="Imagenumber"><file name="Values.php" hash="010dbb2ec946627f338bc500d3d8d747"/></dir><dir name="Pricefield"><file name="Values.php" hash="6b02dfa3fa93daafa8325d66a986b4ac"/></dir><dir name="Truefalse"><file name="Values.php" hash="e07f105d7d8dc9881690f162cd23472d"/></dir><dir name="Truefalsesecurity"><file name="Values.php" hash="509b5e1cc7cabbe179373bc0ed490499"/></dir></dir></dir><dir name="Block"><dir name="Adminhtml"><dir name="Field"><file name="Exportfields.php" hash="ca3e562dff7272ed6e72592d65d2466f"/><file name="Replacefields.php" hash="998c731b9e0419271f5ef13237405ad0"/><file name="Specialfields.php" hash="617a423f8632d0bee669bab5a463ce74"/><file name="Trackingkeys.php" hash="383c5112824ccb2998c74dbc3fe10da1"/></dir><file name="Hintlogo.php" hash="be78974a79e7cc59601254a8df0dc48b"/></dir></dir><dir name="Helper"><dir name="api"><dir name="1_0"><dir name="responses"><file name="GetManagedArticlePricesResponse.php" hash="9ad5adee1952b9408b442449791a1f34"/><file name="GetNewMarketplaceOrdersResponse.php" hash="cd5db953a84759b93a35a360956c4624"/><file name="GetServerTimeResponse.php" hash="07d157639b5bf715aa3f93b0d9e4b736"/><file name="Response.php" hash="c76ce62707a862e1c59346c668055b5d"/><file name="UpdateArticleResult.php" hash="a014c60be447fbb9cf48c947c8e9822f"/><file name="UpdateArticlesResponse.php" hash="338619d50391d91defb5c9d41370022f"/><file name="UpdateOrderResult.php" hash="0fbd88371624270a8cb2c4209a89cfac"/><file name="UpdateOrdersResponse.php" hash="b0ad5828da633b05e654da393b15526a"/></dir><dir name="thin"><file name="CPAddress.php" hash="885fb4517335421fbd8cbc882ae336b1"/><file name="CPArticle.php" hash="1adce1ce33acdd0185dee06010040b18"/><file name="CPArticleUpdate.php" hash="45f514823895c754010f8f11a1ff683a"/><file name="CPAuth.php" hash="cf5fe570dbd98e3e6339b20cec826b7b"/><file name="CPCancellation.php" hash="9bf808e265e09d166466313405a167fc"/><file name="CPCustomer.php" hash="62babdf11e9b4d80ae0afbbf96ba329d"/><file name="CPDelivery.php" hash="c8c54883370efd519249a9a9551668d0"/><file name="CPDiscount.php" hash="5d6f2766869134a86761c12230dc32d1"/><file name="CPManagedArticlePrice.php" hash="65c4c0df04b7c8d20294874de11640d6"/><file name="CPMoney.php" hash="952131eccc8470e107c78e15c94b6495"/><file name="CPOrder.php" hash="32623885f664e9b5871fc48b6ba0c801"/><file name="CPOrderHeader.php" hash="828377182e8197c304f230a783606993"/><file name="CPOrderItem.php" hash="dfe2440a08e3d0f13e638fc4090e6c52"/><file name="CPOrderStatus.php" hash="e0e767388dd9a1ab8be5a990f1ab1259"/><file name="CPOrderSummary.php" hash="fceaa6a79b5fc892062681f518fd0243"/><file name="CPPayment.php" hash="446ffde1318d001c213de2b80855af07"/><file name="CPResponseHeader.php" hash="53930210d68046183e3be306996ea9b9"/><file name="CPShipping.php" hash="eaddceace28cdc6ba72434a6321d8c47"/></dir><file name="CPResultCodes.php" hash="955180ee33f14b4afa93f6eb1b5df53f"/><file name="ChannelPilotSellerAPI_v1_0.php" hash="26a64c7251790d823507ce1e40617b2e"/></dir></dir><dir name="handler"><file name="CPAbstractHandler.php" hash="3ff636f82a10e452f8b76e0747d64644"/><file name="CPCancellationHandler.php" hash="9b77706089a26ae42ad2e00c303b66ae"/><file name="CPDebugHandler.php" hash="43f2e8da6e44adfb20d7ec813ca54cad"/><file name="CPDeliveryHandler.php" hash="a392ca48d781dd0db4e6fb9bdd863b7e"/><file name="CPErrorHandler.php" hash="5d728c064c068fdf8354fa87882e4dba"/><file name="CPExportHandler.php" hash="fa1ad717314260ccc9a6b09c899e5d53"/><file name="CPNewPriceHandler.php" hash="5e636b0c9a9fdd45347c7f2134bc3e36"/><file name="CPNewsHandler.php" hash="4975a6271baf09af3b2f007f13bb587c"/><file name="CPOrderHandler.php" hash="b605bf698acd1803bb6d3be8a65dd27c"/><file name="CPRegisterHandler.php" hash="43a7baff372b472049dc0e52deb2549f"/><file name="CPStatusHandler.php" hash="713feca664739aeacda6260318f5c26a"/><file name="todoCPPaymentHandler.php" hash="34ea64beda7c8bc5309ebea280146c32"/></dir><dir name="responses"><file name="CPGetStatusHookResponse.php" hash="672609ebcaa23aa0de85aed04c7662d8"/><file name="CPHookResponse.php" hash="9acdda5838cae8b6022af2f4e0a9314b"/><file name="CPRegisterHookResponse.php" hash="206de6433d0795ebdabff98129cc2fb7"/></dir><dir name="special"><file name="CustomerFunctions.php" hash="0d343d3c9c3cb87232c833e0772f730e"/></dir><file name="CPErrors.php" hash="3659c38a1ed3be4aa4ec03d93e68a84e"/><file name="Data.php" hash="56a9ef3bb2f137cd3ec2dae77e4b429a"/><file name="ExportData.php" hash="2e9fb9a11383b4d436936ce383d93083"/></dir><dir name="Model"><file name="Abstract.php" hash="0e9349f1023527a77e59742dfdb21308"/><file name="Payment.php" hash="5160ffe0422a9a46dc2bd7a79e512b8b"/><file name="PaymentTypes.php" hash="adc3931280cfe313adcbdd4702191a01"/><file name="Paymenttypes.php" hash="b217cdabf427beadb8d74acff069af4d"/></dir><dir name="controllers"><file name="IndexController.php" hash="36e391b61d1914f8669cd48207dd06da"/></dir><dir name="etc"><file name="adminhtml.xml" hash="62fad9ef0e77e858b74d2a7bdd6a6879"/><file name="config.xml" hash="69ed726729fe84d75014ae336d56f460"/><file name="system.xml" hash="33d311ca704780d078533f62381895b1"/></dir><dir name="sql"><dir name="channelpilot_setup"><file name="mysql4-install-2.0.0.php" hash="8910b9b0507d1b38c8b8465845fb3849"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Channelpilotsolutions_Channelpilot.xml" hash="4cc80daa0c7f8dda239e41a6b17321bf"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><dir name="Channelpilotsolutions"><file name="channelpilot.xml" hash="732f1d98851f3c1bf0cb9e655a4a0359"/></dir></dir><dir name="template"><dir name="Channelpilotsolutions"><file name="channelpilot.phtml" hash="cff9533bc583c15d1cb041ee60ffd80a"/></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="adminhtml"><dir name="base"><dir name="default"><dir name="Channelpilotsolutions"><file name="channelpilot" hash=""/></dir></dir></dir></dir><dir name="de_DE"><file name="Channelpilotsolutions_Channelpilot.csv" hash="57d54b69d4c7cb28373764403069eb6d"/></dir><dir name="de_CH"><file name="Channelpilotsolutions_Channelpilot.csv" hash="c5c7fd72d8a8778b5f1228c356111695"/></dir><dir name="fr_FR"><file name="Channelpilotsolutions_Channelpilot.csv" hash="9a49d3ba87895fb14b234cfa838b9fab"/></dir></target><target name="mageskin"><dir name="de_AT"><file name="Channelpilotsolutions_Channelpilot.csv" hash=""/></dir></target><target name="magelocal"><dir name="fr_CA"><file name="Channelpilotsolutions_Channelpilot.csv" hash=""/></dir><dir name="en_AU"><file name="Channelpilotsolutions_Channelpilot.csv" hash=""/></dir><dir name="en_CA"><file name="Channelpilotsolutions_Channelpilot.csv" hash=""/></dir><dir name="en_GB"><file name="Channelpilotsolutions_Channelpilot.csv" hash=""/></dir><dir name="en_IE"><file name="Channelpilotsolutions_Channelpilot.csv" hash=""/></dir><dir name="en_NZ"><file name="Channelpilotsolutions_Channelpilot.csv" hash=""/></dir><dir name="en_US"><file name="Channelpilotsolutions_Channelpilot.csv" hash=""/></dir><dir name="es_AR"><file name="Channelpilotsolutions_Channelpilot.csv" hash=""/></dir><dir name="es_CL"><file name="Channelpilotsolutions_Channelpilot.csv" hash=""/></dir><dir name="es_CO"><file name="Channelpilotsolutions_Channelpilot.csv" hash=""/></dir><dir name="es_CR"><file name="Channelpilotsolutions_Channelpilot.csv" hash=""/></dir><dir name="es_ES"><file name="Channelpilotsolutions_Channelpilot.csv" hash=""/></dir><dir name="es_MX"><file name="Channelpilotsolutions_Channelpilot.csv" hash=""/></dir><dir name="es_PA"><file name="Channelpilotsolutions_Channelpilot.csv" hash=""/></dir><dir name="es_PE"><file name="Channelpilotsolutions_Channelpilot.csv" hash=""/></dir><dir name="es_VE"><file name="Channelpilotsolutions_Channelpilot.csv" hash=""/></dir></target></contents>
36
  <compatible/>
37
  <dependencies/>
38
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Channelpilotsolutions_Channelpilot</name>
4
+ <version>2.1.1</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.opensource.org/licenses/gpl-license.php">GPL</license>
7
  <channel>community</channel>
26
  &lt;li&gt;&lt;b&gt;ChannelPilot Multi-Platform:&lt;/b&gt; Access ChannelPilot on any device (e.g. computer, tablet or smartphone) and keep a firm hold on your online marketing- wherever you are!&lt;/li&gt;&#xD;
27
  &lt;/ul&gt;&#xD;
28
  Just get more information about ChannelPilot: &lt;a href="http://www.channelpilot.com"&gt;www.channelpilot.com&lt;/a&gt;</description>
29
+ <notes>- some bug fixes</notes>
 
 
30
  <authors><author><name>ChannelPilot Solutions GmbH</name><user>auto-converted</user><email>info@channelpilot.com</email></author></authors>
31
+ <date>2015-03-19</date>
32
+ <time>12:22:37</time>
33
+ <contents><target name="magecommunity"><dir name="Channelpilotsolutions"><dir name="Channelpilot"><dir name="Adminhtml"><dir name="Model"><dir name="Articlenumber"><file name="Values.php" hash="f2744ef8301e25e096318f34eb97c2bf"/></dir><dir name="Cookiemode"><file name="Values.php" hash="1ec39f85bb7562c1b6a4614f759d9124"/></dir><dir name="Grossnet"><file name="Values.php" hash="11eaf553b0ec34299524ec6d5a9f1e13"/></dir><dir name="Imagenumber"><file name="Values.php" hash="010dbb2ec946627f338bc500d3d8d747"/></dir><dir name="Pricefield"><file name="Values.php" hash="6b02dfa3fa93daafa8325d66a986b4ac"/></dir><dir name="Truefalse"><file name="Values.php" hash="e07f105d7d8dc9881690f162cd23472d"/></dir><dir name="Truefalsesecurity"><file name="Values.php" hash="509b5e1cc7cabbe179373bc0ed490499"/></dir></dir></dir><dir name="Block"><dir name="Adminhtml"><dir name="Field"><file name="Exportfields.php" hash="ca3e562dff7272ed6e72592d65d2466f"/><file name="Replacefields.php" hash="998c731b9e0419271f5ef13237405ad0"/><file name="Specialfields.php" hash="617a423f8632d0bee669bab5a463ce74"/><file name="Trackingkeys.php" hash="383c5112824ccb2998c74dbc3fe10da1"/></dir><file name="Hintlogo.php" hash="be78974a79e7cc59601254a8df0dc48b"/></dir></dir><dir name="Helper"><dir name="api"><dir name="1_0"><dir name="responses"><file name="GetManagedArticlePricesResponse.php" hash="9ad5adee1952b9408b442449791a1f34"/><file name="GetNewMarketplaceOrdersResponse.php" hash="cd5db953a84759b93a35a360956c4624"/><file name="GetServerTimeResponse.php" hash="07d157639b5bf715aa3f93b0d9e4b736"/><file name="Response.php" hash="c76ce62707a862e1c59346c668055b5d"/><file name="UpdateArticleResult.php" hash="a014c60be447fbb9cf48c947c8e9822f"/><file name="UpdateArticlesResponse.php" hash="338619d50391d91defb5c9d41370022f"/><file name="UpdateOrderResult.php" hash="0fbd88371624270a8cb2c4209a89cfac"/><file name="UpdateOrdersResponse.php" hash="b0ad5828da633b05e654da393b15526a"/></dir><dir name="thin"><file name="CPAddress.php" hash="885fb4517335421fbd8cbc882ae336b1"/><file name="CPArticle.php" hash="1adce1ce33acdd0185dee06010040b18"/><file name="CPArticleUpdate.php" hash="45f514823895c754010f8f11a1ff683a"/><file name="CPAuth.php" hash="cf5fe570dbd98e3e6339b20cec826b7b"/><file name="CPCancellation.php" hash="9bf808e265e09d166466313405a167fc"/><file name="CPCustomer.php" hash="62babdf11e9b4d80ae0afbbf96ba329d"/><file name="CPDelivery.php" hash="c8c54883370efd519249a9a9551668d0"/><file name="CPDiscount.php" hash="5d6f2766869134a86761c12230dc32d1"/><file name="CPManagedArticlePrice.php" hash="65c4c0df04b7c8d20294874de11640d6"/><file name="CPMoney.php" hash="952131eccc8470e107c78e15c94b6495"/><file name="CPOrder.php" hash="32623885f664e9b5871fc48b6ba0c801"/><file name="CPOrderHeader.php" hash="828377182e8197c304f230a783606993"/><file name="CPOrderItem.php" hash="dfe2440a08e3d0f13e638fc4090e6c52"/><file name="CPOrderStatus.php" hash="e0e767388dd9a1ab8be5a990f1ab1259"/><file name="CPOrderSummary.php" hash="fceaa6a79b5fc892062681f518fd0243"/><file name="CPPayment.php" hash="446ffde1318d001c213de2b80855af07"/><file name="CPResponseHeader.php" hash="53930210d68046183e3be306996ea9b9"/><file name="CPShipping.php" hash="eaddceace28cdc6ba72434a6321d8c47"/></dir><file name="CPResultCodes.php" hash="955180ee33f14b4afa93f6eb1b5df53f"/><file name="ChannelPilotSellerAPI_v1_0.php" hash="9e5691bd5007a62b02b822457e8454cd"/></dir></dir><dir name="handler"><file name="CPAbstractHandler.php" hash="3ff636f82a10e452f8b76e0747d64644"/><file name="CPCancellationHandler.php" hash="9b77706089a26ae42ad2e00c303b66ae"/><file name="CPDebugHandler.php" hash="43f2e8da6e44adfb20d7ec813ca54cad"/><file name="CPDeliveryHandler.php" hash="a392ca48d781dd0db4e6fb9bdd863b7e"/><file name="CPErrorHandler.php" hash="5d728c064c068fdf8354fa87882e4dba"/><file name="CPExportHandler.php" hash="8a46a4a30ff01209641aa8d0852ab073"/><file name="CPNewPriceHandler.php" hash="749093369d0c3fefe1782c5c77774f9f"/><file name="CPNewsHandler.php" hash="4975a6271baf09af3b2f007f13bb587c"/><file name="CPOrderHandler.php" hash="b605bf698acd1803bb6d3be8a65dd27c"/><file name="CPRegisterHandler.php" hash="43a7baff372b472049dc0e52deb2549f"/><file name="CPStatusHandler.php" hash="713feca664739aeacda6260318f5c26a"/><file name="todoCPPaymentHandler.php" hash="34ea64beda7c8bc5309ebea280146c32"/></dir><dir name="responses"><file name="CPGetStatusHookResponse.php" hash="672609ebcaa23aa0de85aed04c7662d8"/><file name="CPHookResponse.php" hash="9acdda5838cae8b6022af2f4e0a9314b"/><file name="CPRegisterHookResponse.php" hash="206de6433d0795ebdabff98129cc2fb7"/></dir><dir name="special"><file name="CustomerFunctions.php" hash="0d343d3c9c3cb87232c833e0772f730e"/></dir><file name="CPErrors.php" hash="3659c38a1ed3be4aa4ec03d93e68a84e"/><file name="Data.php" hash="08dc97ef0dd64cfe4e0b77ea3735b0bf"/><file name="ExportData.php" hash="8eb3d8aafa53ddc6b4c49f80f35348b6"/></dir><dir name="Model"><file name="Abstract.php" hash="0e9349f1023527a77e59742dfdb21308"/><file name="Payment.php" hash="5160ffe0422a9a46dc2bd7a79e512b8b"/><file name="PaymentTypes.php" hash="adc3931280cfe313adcbdd4702191a01"/><file name="Paymenttypes.php" hash="b217cdabf427beadb8d74acff069af4d"/></dir><dir name="controllers"><file name="IndexController.php" hash="36e391b61d1914f8669cd48207dd06da"/></dir><dir name="etc"><file name="adminhtml.xml" hash="62fad9ef0e77e858b74d2a7bdd6a6879"/><file name="config.xml" hash="48f9c891f7d45bae24430d454ca8dda3"/><file name="system.xml" hash="33d311ca704780d078533f62381895b1"/></dir><dir name="sql"><dir name="channelpilot_setup"><file name="mysql4-install-2.0.0.php" hash="8910b9b0507d1b38c8b8465845fb3849"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Channelpilotsolutions_Channelpilot.xml" hash="4cc80daa0c7f8dda239e41a6b17321bf"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><dir name="Channelpilotsolutions"><file name="channelpilot.xml" hash="732f1d98851f3c1bf0cb9e655a4a0359"/></dir></dir><dir name="template"><dir name="Channelpilotsolutions"><file name="channelpilot.phtml" hash="73af9ebd5c21292628356d6d88787e0a"/></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="base"><dir name="default"><dir name="template"><dir name="channelpilotsolutions"><file name="array_dropdown.phtml" hash="cb1230cd8a92ce0a0961f71b396736ec"/><file name="config_hint.phtml" hash="bab45579386a99fe4ccbfb1972ed08fc"/></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="de_DE"><file name="Channelpilotsolutions_Channelpilot.csv" hash="57d54b69d4c7cb28373764403069eb6d"/></dir><dir name="de_CH"><file name="Channelpilotsolutions_Channelpilot.csv" hash="c5c7fd72d8a8778b5f1228c356111695"/></dir><dir name="de_AT"><file name="Channelpilotsolutions_Channelpilot.csv" hash="c5c7fd72d8a8778b5f1228c356111695"/></dir><dir name="fr_FR"><file name="Channelpilotsolutions_Channelpilot.csv" hash="9a49d3ba87895fb14b234cfa838b9fab"/></dir><dir name="fr_CA"><file name="Channelpilotsolutions_Channelpilot.csv" hash="9a49d3ba87895fb14b234cfa838b9fab"/></dir><dir name="en_AU"><file name="Channelpilotsolutions_Channelpilot.csv" hash="023babc42d9f9fd4488c6badcee01032"/></dir><dir name="en_CA"><file name="Channelpilotsolutions_Channelpilot.csv" hash="023babc42d9f9fd4488c6badcee01032"/></dir><dir name="en_GB"><file name="Channelpilotsolutions_Channelpilot.csv" hash="023babc42d9f9fd4488c6badcee01032"/></dir><dir name="en_IE"><file name="Channelpilotsolutions_Channelpilot.csv" hash="023babc42d9f9fd4488c6badcee01032"/></dir><dir name="en_NZ"><file name="Channelpilotsolutions_Channelpilot.csv" hash="023babc42d9f9fd4488c6badcee01032"/></dir><dir name="en_US"><file name="Channelpilotsolutions_Channelpilot.csv" hash="023babc42d9f9fd4488c6badcee01032"/></dir><dir name="es_AR"><file name="Channelpilotsolutions_Channelpilot.csv" hash="eb81767885d7b76c7e89f9f3c0900fc3"/></dir><dir name="es_CL"><file name="Channelpilotsolutions_Channelpilot.csv" hash="eb81767885d7b76c7e89f9f3c0900fc3"/></dir><dir name="es_CO"><file name="Channelpilotsolutions_Channelpilot.csv" hash="eb81767885d7b76c7e89f9f3c0900fc3"/></dir><dir name="es_CR"><file name="Channelpilotsolutions_Channelpilot.csv" hash="eb81767885d7b76c7e89f9f3c0900fc3"/></dir><dir name="es_ES"><file name="Channelpilotsolutions_Channelpilot.csv" hash="eb81767885d7b76c7e89f9f3c0900fc3"/></dir><dir name="es_MX"><file name="Channelpilotsolutions_Channelpilot.csv" hash="eb81767885d7b76c7e89f9f3c0900fc3"/></dir><dir name="es_PA"><file name="Channelpilotsolutions_Channelpilot.csv" hash="eb81767885d7b76c7e89f9f3c0900fc3"/></dir><dir name="es_PE"><file name="Channelpilotsolutions_Channelpilot.csv" hash="eb81767885d7b76c7e89f9f3c0900fc3"/></dir><dir name="es_VE"><file name="Channelpilotsolutions_Channelpilot.csv" hash="eb81767885d7b76c7e89f9f3c0900fc3"/></dir></target></contents>
34
  <compatible/>
35
  <dependencies/>
36
  </package>