Channelpilotsolutions_Channelpilot - Version 2.3.0

Version Notes

- added as comment in the order:
expectedShippingTimeFrom
expectedShippingTimeTo
isBusinessOrder
purchaseOrderNumber
externalTransactionId
- added discount

Download this release

Release Info

Developer ChannelPilot Solutions GmbH
Extension Channelpilotsolutions_Channelpilot
Version 2.3.0
Comparing to
See all releases


Code changes from version 2.2.8 to 2.3.0

Files changed (60) hide show
  1. app/code/community/Channelpilotsolutions/Channelpilot/Adminhtml/Model/ExternalTransactionId/Values.php +33 -0
  2. app/code/community/Channelpilotsolutions/Channelpilot/Adminhtml/Model/Orderid/Values.php +33 -0
  3. app/code/community/Channelpilotsolutions/Channelpilot/Helper/Data.php +3 -3
  4. app/code/community/Channelpilotsolutions/Channelpilot/Helper/api/1_0/thin/CPOrderHeader.php +2 -1
  5. app/code/community/Channelpilotsolutions/Channelpilot/Helper/api/3_2/CPResultCodes.php +29 -0
  6. app/code/community/Channelpilotsolutions/Channelpilot/Helper/api/3_2/ChannelPilotSellerAPI_v3_2.php +194 -0
  7. app/code/community/Channelpilotsolutions/Channelpilot/Helper/api/3_2/responses/GetManagedArticlePricesResponse.php +19 -0
  8. app/code/community/Channelpilotsolutions/Channelpilot/Helper/api/3_2/responses/GetNewMarketplaceOrdersResponse.php +27 -0
  9. app/code/community/Channelpilotsolutions/Channelpilot/Helper/api/3_2/responses/GetServerTimeResponse.php +14 -0
  10. app/code/community/Channelpilotsolutions/Channelpilot/Helper/api/3_2/responses/Response.php +14 -0
  11. app/code/community/Channelpilotsolutions/Channelpilot/Helper/api/3_2/responses/UpdateOrderResult.php +12 -0
  12. app/code/community/Channelpilotsolutions/Channelpilot/Helper/api/3_2/responses/UpdateOrdersResponse.php +11 -0
  13. app/code/community/Channelpilotsolutions/Channelpilot/Helper/api/3_2/thin/CPAddress.php +87 -0
  14. app/code/community/Channelpilotsolutions/Channelpilot/Helper/api/3_2/thin/CPArticle.php +24 -0
  15. app/code/community/Channelpilotsolutions/Channelpilot/Helper/api/3_2/thin/CPAuth.php +24 -0
  16. app/code/community/Channelpilotsolutions/Channelpilot/Helper/api/3_2/thin/CPCancellation.php +37 -0
  17. app/code/community/Channelpilotsolutions/Channelpilot/Helper/api/3_2/thin/CPCustomer.php +67 -0
  18. app/code/community/Channelpilotsolutions/Channelpilot/Helper/api/3_2/thin/CPCustomerGroup.php +21 -0
  19. app/code/community/Channelpilotsolutions/Channelpilot/Helper/api/3_2/thin/CPDelivery.php +59 -0
  20. app/code/community/Channelpilotsolutions/Channelpilot/Helper/api/3_2/thin/CPManagedArticlePrice.php +32 -0
  21. app/code/community/Channelpilotsolutions/Channelpilot/Helper/api/3_2/thin/CPMoney.php +29 -0
  22. app/code/community/Channelpilotsolutions/Channelpilot/Helper/api/3_2/thin/CPOrder.php +66 -0
  23. app/code/community/Channelpilotsolutions/Channelpilot/Helper/api/3_2/thin/CPOrderHeader.php +58 -0
  24. app/code/community/Channelpilotsolutions/Channelpilot/Helper/api/3_2/thin/CPOrderItem.php +74 -0
  25. app/code/community/Channelpilotsolutions/Channelpilot/Helper/api/3_2/thin/CPOrderStatus.php +58 -0
  26. app/code/community/Channelpilotsolutions/Channelpilot/Helper/api/3_2/thin/CPOrderSummary.php +34 -0
  27. app/code/community/Channelpilotsolutions/Channelpilot/Helper/api/3_2/thin/CPPayment.php +29 -0
  28. app/code/community/Channelpilotsolutions/Channelpilot/Helper/api/3_2/thin/CPRefund.php +39 -0
  29. app/code/community/Channelpilotsolutions/Channelpilot/Helper/api/3_2/thin/CPResponseHeader.php +20 -0
  30. app/code/community/Channelpilotsolutions/Channelpilot/Helper/api/3_2/thin/CPShipping.php +24 -0
  31. app/code/community/Channelpilotsolutions/Channelpilot/Helper/handler/CPAbstractHandler.php +1 -1
  32. app/code/community/Channelpilotsolutions/Channelpilot/Helper/handler/CPCancellationHandler.php +1 -1
  33. app/code/community/Channelpilotsolutions/Channelpilot/Helper/handler/CPDeliveryHandler.php +1 -1
  34. app/code/community/Channelpilotsolutions/Channelpilot/Helper/handler/CPNewPriceHandler.php +1 -1
  35. app/code/community/Channelpilotsolutions/Channelpilot/Helper/handler/CPOrderHandler.php +149 -42
  36. app/code/community/Channelpilotsolutions/Channelpilot/Helper/handler/CPPaymentHandler.php +1 -1
  37. app/code/community/Channelpilotsolutions/Channelpilot/etc/config.xml +12 -2
  38. app/code/community/Channelpilotsolutions/Channelpilot/etc/system.xml +29 -1
  39. app/code/community/Channelpilotsolutions/Channelpilot/sql/channelpilot_setup/mysql4-upgrade-2.2.7-2.3.0.php +20 -0
  40. app/locale/de_AT/Channelpilotsolutions_Channelpilot.csv +99 -97
  41. app/locale/de_CH/Channelpilotsolutions_Channelpilot.csv +99 -97
  42. app/locale/de_DE/Channelpilotsolutions_Channelpilot.csv +99 -97
  43. app/locale/en_AU/Channelpilotsolutions_Channelpilot.csv +99 -97
  44. app/locale/en_CA/Channelpilotsolutions_Channelpilot.csv +99 -97
  45. app/locale/en_GB/Channelpilotsolutions_Channelpilot.csv +99 -97
  46. app/locale/en_IE/Channelpilotsolutions_Channelpilot.csv +99 -97
  47. app/locale/en_NZ/Channelpilotsolutions_Channelpilot.csv +99 -97
  48. app/locale/en_US/Channelpilotsolutions_Channelpilot.csv +99 -97
  49. app/locale/es_AR/Channelpilotsolutions_Channelpilot.csv +66 -64
  50. app/locale/es_CL/Channelpilotsolutions_Channelpilot.csv +66 -64
  51. app/locale/es_CO/Channelpilotsolutions_Channelpilot.csv +66 -64
  52. app/locale/es_CR/Channelpilotsolutions_Channelpilot.csv +66 -64
  53. app/locale/es_ES/Channelpilotsolutions_Channelpilot.csv +66 -64
  54. app/locale/es_MX/Channelpilotsolutions_Channelpilot.csv +66 -64
  55. app/locale/es_PA/Channelpilotsolutions_Channelpilot.csv +66 -64
  56. app/locale/es_PE/Channelpilotsolutions_Channelpilot.csv +66 -64
  57. app/locale/es_VE/Channelpilotsolutions_Channelpilot.csv +66 -64
  58. app/locale/fr_CA/Channelpilotsolutions_Channelpilot.csv +66 -64
  59. app/locale/fr_FR/Channelpilotsolutions_Channelpilot.csv +66 -64
  60. package.xml +11 -5
app/code/community/Channelpilotsolutions/Channelpilot/Adminhtml/Model/ExternalTransactionId/Values.php ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 Channelpilotsolutions_Channelpilot
17
+ * @subpackage adminhtml_model_cookiemode
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
+ class Channelpilotsolutions_Channelpilot_Adminhtml_Model_ExternalTransactionId_Values
24
+ {
25
+ public function toOptionArray()
26
+ {
27
+ return array(
28
+ array('value' => 'orderComment', 'label'=>'Order Comment'),
29
+ array('value' => 'noWhere', 'label'=>'Don\'t Show')
30
+ );
31
+ }
32
+ }
33
+ ?>
app/code/community/Channelpilotsolutions/Channelpilot/Adminhtml/Model/Orderid/Values.php ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 Channelpilotsolutions_Channelpilot
17
+ * @subpackage adminhtml_model_cookiemode
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
+ class Channelpilotsolutions_Channelpilot_Adminhtml_Model_Orderid_Values
24
+ {
25
+ public function toOptionArray()
26
+ {
27
+ return array(
28
+ array('value' => 'orderId', 'label'=>'Order ID'),
29
+ array('value' => 'externalTransactionId', 'label'=>'External Transaction Id')
30
+ );
31
+ }
32
+ }
33
+ ?>
app/code/community/Channelpilotsolutions/Channelpilot/Helper/Data.php CHANGED
@@ -43,9 +43,9 @@ require_once 'responses/CPGetStatusHookResponse.php';
43
  require_once 'responses/CPRegisterHookResponse.php';
44
 
45
  // API
46
- require_once 'api/1_0/thin/CPDelivery.php';
47
- require_once 'api/1_0/ChannelPilotSellerAPI_v1_0.php';
48
- require_once 'api/1_0/CPResultCodes.php';
49
 
50
  // special customer functions
51
  require_once 'special/CustomerFunctions.php';
43
  require_once 'responses/CPRegisterHookResponse.php';
44
 
45
  // API
46
+ require_once 'api/3_2/thin/CPDelivery.php';
47
+ require_once 'api/3_2/ChannelPilotSellerAPI_v3_2.php';
48
+ require_once 'api/3_2/CPResultCodes.php';
49
 
50
  // special customer functions
51
  require_once 'special/CustomerFunctions.php';
app/code/community/Channelpilotsolutions/Channelpilot/Helper/api/1_0/thin/CPOrderHeader.php CHANGED
@@ -3,11 +3,12 @@
3
  /**
4
  * meta-data for an order.
5
  * @author Channel Pilot Solutions GmbH <api@channelpilot.com>
6
- * @version 1.0
7
  */
8
  class CPOrderHeader {
9
  public $orderId;
10
  public $orderIdExternal;
 
11
 
12
  public $status;
13
 
3
  /**
4
  * meta-data for an order.
5
  * @author Channel Pilot Solutions GmbH <api@channelpilot.com>
6
+ * @version 2.0
7
  */
8
  class CPOrderHeader {
9
  public $orderId;
10
  public $orderIdExternal;
11
+ public $orderIdExternalTransactionId;
12
 
13
  public $status;
14
 
app/code/community/Channelpilotsolutions/Channelpilot/Helper/api/3_2/CPResultCodes.php ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * CPResultCodes. Collection of possible resultCodes for a request.
4
+ * @author Channel Pilot Solutions GmbH <api@channelpilot.com>
5
+ * @version 3.2
6
+ */
7
+ class CPResultCodes {
8
+ // successfull
9
+ const SUCCESS = 200;
10
+
11
+ // client errors
12
+ const AUTH_ERROR = 401;
13
+ const ID_NOT_FOUND = 404;
14
+ const METHOD_INVALID = 405;
15
+ const REQUEST_INVALID = 406;
16
+ const DUPLICATED_ID_FOUND = 407;
17
+ const TOO_MANY_ELEMENTS = 413;
18
+
19
+ // server error
20
+ const SYSTEM_ERROR = 500;
21
+
22
+ const SHOP_ERROR_PAYMENT_METHOD_UNKNOWN = 700;
23
+ const SHOP_ERROR_DELIVERY_METHOD_UNKNOWN = 701;
24
+ const SHOP_ERROR_ARTICLE_UNKNOWN = 702;
25
+ const SHOP_ERROR_ARTICLE_UNKNOWN_EXISTING_ORDER = 703;
26
+ const SHOP_ERROR_MORE_THAN_ONE_ARTICLES_FOUND = 704;
27
+ }
28
+
29
+ ?>
app/code/community/Channelpilotsolutions/Channelpilot/Helper/api/3_2/ChannelPilotSellerAPI_v3_2.php ADDED
@@ -0,0 +1,194 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ // include the stub-classes
4
+ require_once 'thin/CPAuth.php';
5
+ require_once 'thin/CPResponseHeader.php';
6
+ require_once 'thin/CPAddress.php';
7
+ require_once 'thin/CPArticle.php';
8
+ require_once 'thin/CPCancellation.php';
9
+ require_once 'thin/CPManagedArticlePrice.php';
10
+ require_once 'thin/CPMoney.php';
11
+ require_once 'thin/CPPayment.php';
12
+ require_once 'thin/CPCustomer.php';
13
+ require_once 'thin/CPCustomerGroup.php';
14
+ require_once 'thin/CPDelivery.php';
15
+ require_once 'thin/CPOrderItem.php';
16
+ require_once 'thin/CPShipping.php';
17
+ require_once 'thin/CPOrderStatus.php';
18
+ require_once 'thin/CPOrderHeader.php';
19
+ require_once 'thin/CPOrder.php';
20
+ require_once 'thin/CPOrderSummary.php';
21
+ require_once 'thin/CPRefund.php';
22
+
23
+ // request-classes
24
+ // response-classes
25
+ require_once 'responses/Response.php';
26
+ require_once 'responses/GetServerTimeResponse.php';
27
+ require_once 'responses/UpdateOrdersResponse.php';
28
+ require_once 'responses/UpdateOrderResult.php';
29
+ require_once 'responses/GetNewMarketplaceOrdersResponse.php';
30
+ require_once 'responses/GetManagedArticlePricesResponse.php';
31
+
32
+ /**
33
+ * Main API-Class
34
+ * @author Channel Pilot Solutions GmbH <api@channelpilot.com>
35
+ * @version 3.2
36
+ */
37
+ class ChannelPilotSellerAPI_v3_2 extends SoapClient {
38
+
39
+ private $auth;
40
+ private $wsdlUrl = 'https://release.seller.api.channelpilot.com/3_2?wsdl';
41
+ private $soapOptions = array(
42
+ 'connection_timeout' => 20,
43
+ 'features' => SOAP_SINGLE_ELEMENT_ARRAYS
44
+ );
45
+ private $classmap = array(
46
+ 'CPAuth' => 'CPAuth',
47
+ 'CPResponseHeader' => 'CPResponseHeader',
48
+ 'AbstractResponse' => 'AbstractResponse',
49
+ 'GetServerTimeResponse' => 'GetServerTimeResponse',
50
+ 'CPArticleUpdate' => 'CPArticleUpdate',
51
+ 'UpdateArticlesResponse' => 'UpdateArticlesResponse',
52
+ 'UpdateArticleResult' => 'UpdateArticleResult',
53
+ 'UpdateOrdersResponse' => 'UpdateOrdersResponse',
54
+ 'UpdateOrderResult' => 'UpdateOrderResult',
55
+ 'CPAddress' => 'CPAddress',
56
+ 'CPArticle' => 'CPArticle',
57
+ 'CPManagedArticlePrice' => 'CPManagedArticlePrice',
58
+ 'CPMoney' => 'CPMoney',
59
+ 'CPPayment' => 'CPPayment',
60
+ 'CPCustomer' => 'CPCustomer',
61
+ 'CPOrderItem' => 'CPOrderItem',
62
+ 'CPShipping' => 'CPShipping',
63
+ 'CPOrderStatus' => 'CPOrderStatus',
64
+ 'CPOrderHeader' => 'CPOrderHeader',
65
+ 'CPOrder' => 'CPOrder',
66
+ 'CPOrderSummary' => 'CPOrderSummary',
67
+ 'GetNewMarketplaceOrdersResponse' => 'GetNewMarketplaceOrdersResponse',
68
+ 'GetManagedArticlePricesResponse' => 'GetManagedArticlePricesResponse',
69
+ 'CPRefund' => 'CPRefund'
70
+ );
71
+
72
+ public function __construct($merchantId, $shopToken) {
73
+ $this->auth = new CPAuth($merchantId, $shopToken);
74
+
75
+ foreach ($this->classmap as $key => $value) {
76
+ if (!isset($this->soapOptions['classmap'][$key])) {
77
+ $this->soapOptions['classmap'][$key] = $value;
78
+ }
79
+ }
80
+ parent::__construct($this->wsdlUrl, $this->soapOptions);
81
+ }
82
+
83
+ /**
84
+ * Receives the acutal server time. Can be used to test the connection.
85
+ * @return GetServerTimeResponse
86
+ */
87
+ public function getServerTime() {
88
+ return $this->__call(
89
+ 'getServerTime',
90
+ array(
91
+ new SoapParam($this->auth, 'auth')
92
+ )
93
+ );
94
+ }
95
+
96
+ /**
97
+ * retrieves new marketplace orders
98
+ * @return GetNewMarketplaceOrdersResponse
99
+ */
100
+ public function getNewMarketplaceOrders() {
101
+ return $this->__call(
102
+ 'getNewMarketplaceOrders',
103
+ array(
104
+ new SoapParam($this->auth, 'auth')
105
+ )
106
+ );
107
+ }
108
+
109
+ /**
110
+ * update orders in ChannelPilot to "imported", generates the matching between externalOrderId and the shop-internal orderId
111
+ * q
112
+ * @return GetNewMarketplaceOrdersResponse
113
+ */
114
+
115
+
116
+ /**
117
+ * update orders in ChannelPilot to "imported", generates the matching between externalOrderId and the shop-internal orderId
118
+ * @param array $orders array of CPOrders
119
+ * @param type $mapOrderItemIds boolean, if channelPilot should map your internal orderItemIds
120
+ * @return type
121
+ */
122
+ public function setImportedOrders(array $orders, $mapOrderItemIds) {
123
+ return $this->__call(
124
+ 'setImportedOrders',
125
+ array(
126
+ new SoapParam($this->auth, 'auth'),
127
+ new SoapParam($orders, 'importedOrders'),
128
+ new SoapParam($mapOrderItemIds, 'mapOrderItemIds')
129
+ )
130
+ );
131
+ }
132
+
133
+
134
+ public function registerDeliveries(array $deliveries) {
135
+ return $this->__call(
136
+ 'registerDeliveries',
137
+ array(
138
+ new SoapParam($this->auth, 'auth'),
139
+ new SoapParam($deliveries, 'deliveries')
140
+ )
141
+ );
142
+ }
143
+
144
+ public function registerCancellations(array $cancellations) {
145
+ return $this->__call(
146
+ 'registerCancellations',
147
+ array(
148
+ new SoapParam($this->auth, 'auth'),
149
+ new SoapParam($cancellations, 'cancellations')
150
+ )
151
+ );
152
+ }
153
+
154
+ public function getDynamicArticlePrices($priceId, $method, $filterArticles, $filterFrom) {
155
+ return $this->__call(
156
+ 'getDynamicArticlePrices',
157
+ array(
158
+ new SoapParam($this->auth, 'auth'),
159
+ new SoapParam($priceId, 'priceId'),
160
+ new SoapParam(null, 'pagination'),
161
+ new SoapParam($method, 'method'),
162
+ new SoapParam($filterArticles, 'filterArticles'),
163
+ new SoapParam($filterFrom, 'filterFrom')
164
+ )
165
+ );
166
+ }
167
+
168
+ /**
169
+ * Set paymentTime in ChannelPilot. Send CPOrder with CPOrderHeader and CPPayment (paymentTime is necessary).
170
+ * @param CPOrder[] $orders
171
+ * @return UpdateOrdersResponse
172
+ */
173
+ public function setPaidOrders(array $orders) {
174
+ return $this->__call(
175
+ 'setPaidOrders', array(
176
+ new SoapParam($this->auth, 'auth'),
177
+ new SoapParam($orders, 'paidOrders')
178
+ )
179
+ );
180
+ }
181
+
182
+ /**
183
+ *
184
+ *
185
+ */
186
+ public function registerRefunds(array $refunds) {
187
+ return $this->__call(
188
+ 'registerRefunds', array(
189
+ new SoapParam($this->auth, 'auth'),
190
+ new SoapParam($refunds, 'refunds')
191
+ )
192
+ );
193
+ }
194
+ }
app/code/community/Channelpilotsolutions/Channelpilot/Helper/api/3_2/responses/GetManagedArticlePricesResponse.php ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * GetManagedArticlePricesResponse.
5
+ * @author Channel Pilot Solutions GmbH <api@channelpilot.com>
6
+ * @version 3.2
7
+ */
8
+ class GetManagedArticlePricesResponse extends Response {
9
+ /**
10
+ * array of managed article prices, can be empty
11
+ * @var type CPManagedArticlePrice[]
12
+ */
13
+
14
+ public $moreAvailable;
15
+ public $countMoreAvailable;
16
+ public $managedArticlePrices = array();
17
+ }
18
+
19
+ ?>
app/code/community/Channelpilotsolutions/Channelpilot/Helper/api/3_2/responses/GetNewMarketplaceOrdersResponse.php ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * GetNewMarketplaceOrdersResponse.
5
+ * @author Channel Pilot Solutions GmbH <api@channelpilot.com>
6
+ * @version 3.2
7
+ */
8
+ class GetNewMarketplaceOrdersResponse extends Response {
9
+ /**
10
+ * are more orders available, than could be returned in this call
11
+ * @var type boolean
12
+ */
13
+ public $moreAvailable;
14
+
15
+ /**
16
+ *
17
+ */
18
+ public $countMoreAvailable;
19
+
20
+ /**
21
+ * array of new orders, can be empty
22
+ * @var type CPOrder[]
23
+ */
24
+ public $orders = array();
25
+ }
26
+
27
+ ?>
app/code/community/Channelpilotsolutions/Channelpilot/Helper/api/3_2/responses/GetServerTimeResponse.php ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * GetServerTimeResponse.
4
+ * @author Channel Pilot Solutions GmbH <api@channelpilot.com>
5
+ * @version 3.2
6
+ */
7
+ class GetServerTimeResponse extends Response {
8
+ /**
9
+ * @var type string
10
+ */
11
+ public $localTime;
12
+ }
13
+
14
+ ?>
app/code/community/Channelpilotsolutions/Channelpilot/Helper/api/3_2/responses/Response.php ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * AbstractRequestResponse.
4
+ * @author Channel Pilot Solutions GmbH <api@channelpilot.com>
5
+ * @version 3.2
6
+ */
7
+ class Response {
8
+ /**
9
+ * @var type CPResponseHeader
10
+ */
11
+ public $header;
12
+ }
13
+
14
+ ?>
app/code/community/Channelpilotsolutions/Channelpilot/Helper/api/3_2/responses/UpdateOrderResult.php ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * UpdateOrderResult
4
+ * @author Channel Pilot Solutions GmbH <api@channelpilot.com>
5
+ * @version 3.2
6
+ */
7
+ class UpdateOrderResult {
8
+ public $orderHeader;
9
+ public $header;
10
+ }
11
+
12
+ ?>
app/code/community/Channelpilotsolutions/Channelpilot/Helper/api/3_2/responses/UpdateOrdersResponse.php ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * UpdateOrdersResponse
4
+ * @author Channel Pilot Solutions GmbH <api@channelpilot.com>
5
+ * @version 3.2
6
+ */
7
+ class UpdateOrdersResponse extends Response {
8
+ public $updateResults = array();
9
+ }
10
+
11
+ ?>
app/code/community/Channelpilotsolutions/Channelpilot/Helper/api/3_2/thin/CPAddress.php ADDED
@@ -0,0 +1,87 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Holds an address. e.g. a shipping-address
5
+ * @author Channel Pilot Solutions GmbH <api@channelpilot.com>
6
+ * @version 3.2
7
+ */
8
+ class CPAddress {
9
+
10
+ /**
11
+ * 1 for male, 2 for female, -1 for unknown/default. ChannelPilot will try to determine genderId if not provided by the channel.
12
+ * @var type int
13
+ */
14
+ public $genderId;
15
+
16
+ /**
17
+ * @var type string
18
+ */
19
+ public $nameFirst;
20
+
21
+ /**
22
+ * @var type string
23
+ */
24
+ public $nameLast;
25
+
26
+ /**
27
+ * @var type string
28
+ */
29
+ public $nameFull;
30
+
31
+ /**
32
+ * @var type string
33
+ */
34
+ public $company;
35
+
36
+ /**
37
+ * @var type string
38
+ */
39
+ public $streetTitle;
40
+
41
+ /**
42
+ * @var type string
43
+ */
44
+ public $streetNumber;
45
+
46
+ /**
47
+ * @var type string
48
+ */
49
+ public $streetFull;
50
+
51
+ /**
52
+ * @var type string
53
+ */
54
+ public $streetExtra;
55
+
56
+ /**
57
+ * @var type string
58
+ */
59
+ public $zip;
60
+
61
+ /**
62
+ * @var type string
63
+ */
64
+ public $city;
65
+
66
+ /**
67
+ * @var type string
68
+ */
69
+ public $countryIso2;
70
+
71
+ /**
72
+ * @var type string
73
+ */
74
+ public $countryIso3;
75
+
76
+ /**
77
+ * @var type string
78
+ */
79
+ public $state;
80
+
81
+ /**
82
+ * @var type string
83
+ */
84
+ public $phone;
85
+ }
86
+
87
+ ?>
app/code/community/Channelpilotsolutions/Channelpilot/Helper/api/3_2/thin/CPArticle.php ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * @author Channel Pilot Solutions GmbH <api@channelpilot.com>
4
+ * @version 3.2
5
+ */
6
+ class CPArticle {
7
+
8
+ /**
9
+ * @var type string
10
+ */
11
+ public $id;
12
+
13
+ /**
14
+ * @var type string
15
+ */
16
+ public $idExternal;
17
+
18
+ /**
19
+ * @var type string
20
+ */
21
+ public $title;
22
+ }
23
+
24
+ ?>
app/code/community/Channelpilotsolutions/Channelpilot/Helper/api/3_2/thin/CPAuth.php ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Basic authentication class to use the ChannelPilot seller API.
4
+ * @author Channel Pilot Solutions GmbH <api@channelpilot.com>
5
+ * @version 3.2
6
+ */
7
+ class CPAuth {
8
+ /**
9
+ * MerchantId for your ChannelPilot account. You can get from go.channelpilot.com/api.
10
+ * @var type string
11
+ */
12
+ public $merchantId;
13
+ /**
14
+ * ShopToken for your shop in ChannelPilot. You can get from go.channelpilot.com/api.
15
+ * @var type string
16
+ */
17
+ public $shopToken;
18
+
19
+ function __construct($merchantId, $shopToken) {
20
+ $this->merchantId = $merchantId;
21
+ $this->shopToken = $shopToken;
22
+ }
23
+ }
24
+ ?>
app/code/community/Channelpilotsolutions/Channelpilot/Helper/api/3_2/thin/CPCancellation.php ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Holds information about a cancellation.
5
+ * @author Channel Pilot Solutions GmbH <api@channelpilot.com>
6
+ * @version 3.2
7
+ */
8
+ class CPCancellation {
9
+
10
+ /**The header of the order required to identify your order.
11
+ * @var type CPOrderHeader
12
+ */
13
+ public $orderHeader;
14
+
15
+ /**
16
+ * @var type string
17
+ */
18
+ public $cancellationTime;
19
+
20
+ /**
21
+ * @var type boolean
22
+ */
23
+ public $isWholeOrderCancelled;
24
+
25
+ /**
26
+ * @var type CPOrderItem[]
27
+ */
28
+ public $cancelledItems = array();
29
+
30
+ function __construct($orderId, $statusIdBefore, $source, $cancellationTime, $isWholeOrderCancelled) {
31
+ $this->orderHeader = new CPOrderHeader (null,$orderId,$source, $isWholeOrderCancelled ? CPOrderStatus::ID_CANCELLED : $statusIdBefore, false, null);
32
+ $this->cancellationTime = $cancellationTime;
33
+ $this->isWholeOrderCancelled = $isWholeOrderCancelled;
34
+ }
35
+ }
36
+
37
+ ?>
app/code/community/Channelpilotsolutions/Channelpilot/Helper/api/3_2/thin/CPCustomer.php ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Holds information about a customer.
5
+ * @author Channel Pilot Solutions GmbH <api@channelpilot.com>
6
+ * @version 3.2
7
+ */
8
+ class CPCustomer {
9
+
10
+ /**
11
+ * ID of the customer on the marketplace.
12
+ * @var type string
13
+ */
14
+ public $idExternal;
15
+
16
+ /**
17
+ * 0 for male, 1 for female. ChannelPilot will try to determine genderId if not provided by
18
+ * @var type int
19
+ */
20
+ public $genderId;
21
+
22
+ /**
23
+ * @var type CPCustomerGroup[]
24
+ */
25
+ public $customerGroups = array();
26
+
27
+ /**
28
+ * @var type string
29
+ */
30
+ public $nameFirst;
31
+
32
+ /**
33
+ * @var type string
34
+ */
35
+ public $nameLast;
36
+
37
+ /**
38
+ * @var type string
39
+ */
40
+ public $nameFull;
41
+
42
+ /**
43
+ * Email of the customer.
44
+ * Some marketplaces provide “forward-mails” that are only valid for
45
+ * email-forwarding through the marketplace
46
+ * and not for direct communication (e.g.Amazon).
47
+ * @var type string
48
+ */
49
+ public $email;
50
+
51
+ /**
52
+ * @var type string
53
+ */
54
+ public $phone;
55
+
56
+ /**
57
+ * @var type string
58
+ */
59
+ public $mobile;
60
+
61
+ /**
62
+ * @var type string
63
+ */
64
+ public $fax;
65
+ }
66
+
67
+ ?>
app/code/community/Channelpilotsolutions/Channelpilot/Helper/api/3_2/thin/CPCustomerGroup.php ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * @author Channel Pilot Solutions GmbH <api@channelpilot.com>
4
+ * @version 3.2
5
+ */
6
+ class CPCustomerGroup {
7
+
8
+ /**
9
+ * Your ID of the mapped customerGroup.
10
+ * This ID should map to an ID in your Shop- or ERPsystem.
11
+ * @var type string
12
+ */
13
+ public $id;
14
+
15
+ /**
16
+ * @var type string
17
+ */
18
+ public $title;
19
+ }
20
+
21
+ ?>
app/code/community/Channelpilotsolutions/Channelpilot/Helper/api/3_2/thin/CPDelivery.php ADDED
@@ -0,0 +1,59 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Holds information about a delivery.
5
+ * @author Channel Pilot Solutions GmbH <api@channelpilot.com>
6
+ * @version 3.2
7
+ */
8
+ class CPDelivery {
9
+
10
+ /**The header of the order required to identify your order.
11
+ * @var type CPOrderHeader
12
+ */
13
+ public $orderHeader;
14
+
15
+ /**
16
+ * @var type string
17
+ */
18
+ public $deliveryTime;
19
+
20
+ /**
21
+ * the carrier (DHL/UPS/...). if not set, channelpilot will take the default-carrier defined for the orders shippingType
22
+ * @var type String
23
+ */
24
+ public $carrierName;
25
+
26
+ /**
27
+ * are all to be delivered items deliverd after this delivery?
28
+ * @var type boolean
29
+ */
30
+ public $isDeliveryCompleted;
31
+
32
+ /**
33
+ * tracking-number for this delivery
34
+ * @var type String
35
+ */
36
+ public $trackingNumber;
37
+
38
+ /**
39
+ *
40
+ * @var type CPShipping
41
+ */
42
+ public $shipping;
43
+
44
+
45
+ /**
46
+ * array of delivered items. is only evaluated and neccessary if ($isDeliveryCompleted == false).
47
+ * @var type CPOrderItem[]
48
+ */
49
+ public $deliveredItems = array();
50
+
51
+ function __construct($orderId, $source, $isDeliveryCompleted, $trackingNumber, $deliveryTime) {
52
+ $this->orderHeader = new CPOrderHeader(null, $orderId, $source, $isDeliveryCompleted ? CPOrderStatus::ID_DELIVERED : CPOrderStatus::ID_PARTIALLY_DELIVERED, null, false);
53
+ $this->trackingNumber = $trackingNumber;
54
+ $this->deliveryTime = $deliveryTime;
55
+ $this->isDeliveryCompleted = $isDeliveryCompleted;
56
+ }
57
+ }
58
+
59
+ ?>
app/code/community/Channelpilotsolutions/Channelpilot/Helper/api/3_2/thin/CPManagedArticlePrice.php ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Holds an address. e.g. a shipping-address
5
+ * @author Channel Pilot Solutions GmbH <api@channelpilot.com>
6
+ * @version 3.2
7
+ */
8
+ class CPManagedArticlePrice {
9
+
10
+ /**
11
+ * @var type CPArticle
12
+ */
13
+ public $article;
14
+
15
+ /**
16
+ * @var type number
17
+ */
18
+ public $price;
19
+
20
+ /**
21
+ * @var type string
22
+ */
23
+ public $lastUpdate;
24
+
25
+ function __construct($article, $price,$lastUpdate) {
26
+ $this->article=$article;
27
+ $this->price=$price;
28
+ $this->lastUpdate=$lastUpdate;
29
+ }
30
+ }
31
+
32
+ ?>
app/code/community/Channelpilotsolutions/Channelpilot/Helper/api/3_2/thin/CPMoney.php ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * @author Channel Pilot Solutions GmbH <api@channelpilot.com>
4
+ * @version 3.2
5
+ */
6
+ class CPMoney {
7
+
8
+ /**
9
+ * @var type number
10
+ */
11
+ public $gross;
12
+
13
+ /**
14
+ * @var type number
15
+ */
16
+ public $net;
17
+
18
+ /**
19
+ * @var type number
20
+ */
21
+ public $tax;
22
+
23
+ /**
24
+ * @var type number
25
+ */
26
+ public $taxRate;
27
+
28
+ }
29
+ ?>
app/code/community/Channelpilotsolutions/Channelpilot/Helper/api/3_2/thin/CPOrder.php ADDED
@@ -0,0 +1,66 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * The order class holds information about an order.
5
+ * @author Channel Pilot Solutions GmbH <api@channelpilot.com>
6
+ * @version 3.2
7
+ */
8
+ class CPOrder {
9
+
10
+ /**
11
+ * @var type CPOrderHeader
12
+ */
13
+ public $orderHeader;
14
+
15
+ /**
16
+ * @var type CPCustomer
17
+ */
18
+ public $customer;
19
+
20
+ /**
21
+ * @var type CPAdress
22
+ */
23
+ public $addressInvoice;
24
+
25
+ /**
26
+ * @var type CPAdress
27
+ */
28
+ public $addressDelivery;
29
+
30
+ /**
31
+ * @var type CPOrderItem[]
32
+ */
33
+ public $itemsOrdered = array();
34
+
35
+ /**
36
+ * @var type shipping
37
+ */
38
+ public $shipping;
39
+
40
+ /**
41
+ * @var type CPPayment
42
+ */
43
+ public $payment;
44
+
45
+ /**
46
+ * @var type CPOrderSummary
47
+ */
48
+ public $summary;
49
+
50
+ /**
51
+ * @var type CPMoney
52
+ */
53
+ public $discount;
54
+
55
+ /**
56
+ * @var type string
57
+ */
58
+ public $expectedShippingTimeFrom;
59
+
60
+ /**
61
+ * @var type string
62
+ */
63
+ public $expectedShippingTimeTo;
64
+ }
65
+
66
+ ?>
app/code/community/Channelpilotsolutions/Channelpilot/Helper/api/3_2/thin/CPOrderHeader.php ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * meta-data for an order.
5
+ * @author Channel Pilot Solutions GmbH <api@channelpilot.com>
6
+ * @version 3.2
7
+ */
8
+ class CPOrderHeader {
9
+
10
+ /**
11
+ * @var type string
12
+ */
13
+ public $orderId;
14
+
15
+ /**
16
+ * @var type string
17
+ */
18
+ public $orderIdExternal;
19
+
20
+ /**
21
+ * @var type string
22
+ */
23
+ public $orderIdExternalTransactionId;
24
+
25
+ /**
26
+ * @var type string
27
+ */
28
+ public $source;
29
+
30
+ /**
31
+ * @var type CPOrderStatus
32
+ */
33
+ public $status;
34
+
35
+ /**
36
+ * @var type string
37
+ */
38
+ public $orderTime;
39
+
40
+ /**
41
+ * @var type string
42
+ */
43
+ public $purchaseOrderNumber;
44
+
45
+ /**
46
+ * @var type boolean
47
+ */
48
+ public $isBusinessOrder;
49
+
50
+ function __construct($orderIdExternal, $orderId, $source, $statusIdentifier, $hasError, $errorCode) {
51
+ $this->orderIdExternal = $orderIdExternal;
52
+ $this->orderId = $orderId;
53
+ $this->source = $source;
54
+ $this->status = new CPOrderStatus($statusIdentifier, $hasError, $errorCode);
55
+ }
56
+ }
57
+
58
+ ?>
app/code/community/Channelpilotsolutions/Channelpilot/Helper/api/3_2/thin/CPOrderItem.php ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * @author Channel Pilot Solutions GmbH <api@channelpilot.com>
4
+ * @version 3.2
5
+ */
6
+ class CPOrderItem {
7
+
8
+ /**
9
+ * @var type string
10
+ */
11
+ public $id;
12
+
13
+ /**
14
+ * @var type string
15
+ */
16
+ public $idExternal;
17
+
18
+ /**
19
+ * @var type CPArticle
20
+ */
21
+ public $article;
22
+
23
+ /**
24
+ * @var type int
25
+ */
26
+ public $quantityOrdered;
27
+
28
+ /**
29
+ * @var type int
30
+ */
31
+ public $quantityDelivered;
32
+
33
+ /**
34
+ * @var type int
35
+ */
36
+ public $quantityCancelled;
37
+
38
+ /**
39
+ * @var type CPMoney
40
+ */
41
+ public $costsSingle;
42
+
43
+ /**
44
+ * @var type CPMoney
45
+ */
46
+ public $costsTotal;
47
+
48
+ /**
49
+ * @var type number
50
+ */
51
+ public $feeSingleNet;
52
+
53
+ /**
54
+ * @var type number
55
+ */
56
+ public $feeTotalNet;
57
+
58
+ /**
59
+ * @var type CPMoney
60
+ */
61
+ public $discount;
62
+
63
+ /**
64
+ * @var type string
65
+ */
66
+ public $expectedShippingTimeFrom;
67
+
68
+ /**
69
+ * @var type string
70
+ */
71
+ public $expectedShippingTimeTo;
72
+ }
73
+
74
+ ?>
app/code/community/Channelpilotsolutions/Channelpilot/Helper/api/3_2/thin/CPOrderStatus.php ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * an order status
5
+ * @author Channel Pilot Solutions GmbH <api@channelpilot.com>
6
+ * @version 3.2
7
+ */
8
+ class CPOrderStatus {
9
+ const ID_READY_FOR_EXPORT = "10";
10
+ const ID_IMPORTED = "20";
11
+ const ID_PARTIALLY_DELIVERED = "25";
12
+ const ID_DELIVERED = "30";
13
+ const ID_CANCELLED = "99";
14
+
15
+ /**
16
+ * the unique-id for this orderStatus. Has a value of the constants defined in this class.
17
+ * @var type string
18
+ */
19
+ public $identifier;
20
+
21
+ /**
22
+ * the public title for the status, can be null
23
+ * @var type string
24
+ */
25
+ public $publicTitle;
26
+
27
+ /**
28
+ * the public description for the status, can be null
29
+ * @var type string
30
+ */
31
+ public $publicDescription;
32
+
33
+ /**
34
+ * was the orderimport successfully
35
+ * @var type boolean
36
+ */
37
+ public $hasError;
38
+
39
+ /**
40
+ * the public errormessage, can be null
41
+ * @var type string
42
+ */
43
+ public $errorMessage;
44
+
45
+ /**
46
+ * which error, can be null
47
+ * @var type int
48
+ */
49
+ public $errorCode;
50
+
51
+ function __construct($identifier, $hasError, $errorCode) {
52
+ $this->identifier = $identifier;
53
+ $this->hasError = $hasError;
54
+ $this->errorCode = $errorCode;
55
+ }
56
+ }
57
+
58
+ ?>
app/code/community/Channelpilotsolutions/Channelpilot/Helper/api/3_2/thin/CPOrderSummary.php ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * @author Channel Pilot Solutions GmbH <api@channelpilot.com>
4
+ * @version 3.2
5
+ */
6
+ class CPOrderSummary {
7
+
8
+ /**
9
+ * @var type string
10
+ */
11
+ public $currencyIso3;
12
+
13
+ /**
14
+ * @var type CPMoney
15
+ */
16
+ public $totalSumItems;
17
+
18
+ /**
19
+ * @var type CPMoney
20
+ */
21
+ public $totalSumOrder;
22
+
23
+ /**
24
+ * @var type string
25
+ */
26
+ public $message;
27
+
28
+ /**
29
+ * @var type Number
30
+ */
31
+ public $feeTotalNet;
32
+ }
33
+
34
+ ?>
app/code/community/Channelpilotsolutions/Channelpilot/Helper/api/3_2/thin/CPPayment.php ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * @author Channel Pilot Solutions GmbH <api@channelpilot.com>
4
+ * @version 3.2
5
+ */
6
+ class CPPayment {
7
+
8
+ /**
9
+ * @var type string
10
+ */
11
+ public $typeId;
12
+
13
+ /**
14
+ * @var type string
15
+ */
16
+ public $typeTitle;
17
+
18
+ /**
19
+ * @var type CPMoney
20
+ */
21
+ public $costs;
22
+
23
+ /**
24
+ * @var type string
25
+ */
26
+ public $paymentTime;
27
+ }
28
+
29
+ ?>
app/code/community/Channelpilotsolutions/Channelpilot/Helper/api/3_2/thin/CPRefund.php ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * @author Channel Pilot Solutions GmbH <api@channelpilot.com>
4
+ * @version 3.2
5
+ */
6
+ class CPRefund {
7
+ /**The header of the order required to identify your order.
8
+ * @var type CPOrderHeader
9
+ */
10
+ public $orderHeader;
11
+
12
+ /**
13
+ * @var type string
14
+ */
15
+ public $refundTime;
16
+
17
+ /**
18
+ * @var type CPMoney
19
+ */
20
+ public $refund;
21
+
22
+ /**
23
+ * @var type string
24
+ */
25
+ public $refundReason;
26
+
27
+ function __construct($orderId, $refundTime, $refundReason, $net, $gross, $tax, $taxRate) {
28
+ $this->orderHeader = new CPOrderHeader(null, $orderId, null, null, null, null);
29
+ $this->refundTime = $refundTime;
30
+ $this->refundReason = $refundReason;
31
+ $this->refund = new CPMoney();
32
+ $this->refund ->net = $net;
33
+ $this->refund ->gross = $gross;
34
+ $this->refund ->tax = $tax;
35
+ $this->refund ->taxRate = $taxRate;
36
+ }
37
+ }
38
+
39
+ ?>
app/code/community/Channelpilotsolutions/Channelpilot/Helper/api/3_2/thin/CPResponseHeader.php ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Header for a reponse.
4
+ * @author Channel Pilot Solutions GmbH <api@channelpilot.com>
5
+ * @version 3.2
6
+ */
7
+ class CPResponseHeader {
8
+ /**
9
+ * Every request returns a defined result code. @see CPResultCodes
10
+ * @var type int
11
+ */
12
+ public $resultCode;
13
+ /**
14
+ * the message could provide further information about the result.
15
+ * @var type string
16
+ */
17
+ public $resultMessage;
18
+ }
19
+
20
+ ?>
app/code/community/Channelpilotsolutions/Channelpilot/Helper/api/3_2/thin/CPShipping.php ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * @author Channel Pilot Solutions GmbH <api@channelpilot.com>
4
+ * @version 3.2
5
+ */
6
+ class CPShipping {
7
+
8
+ /**
9
+ * @var type int
10
+ */
11
+ public $typeId;
12
+
13
+ /**
14
+ * @var type string
15
+ */
16
+ public $typeTitle;
17
+
18
+ /**
19
+ * @var type CPMoney
20
+ */
21
+ public $costs;
22
+ }
23
+
24
+ ?>
app/code/community/Channelpilotsolutions/Channelpilot/Helper/handler/CPAbstractHandler.php CHANGED
@@ -9,7 +9,7 @@ class CPAbstractHandler {
9
 
10
  const defaultHeader = "Content-Type: application/json;";
11
  const errorHeader_forbidden = "HTTP/1.0 403 Forbidden";
12
- const ChannelPilot_IP = "148.251.65.130";
13
  const DB_REGISTRATION = "cp_registration";
14
  const DB_PRICES = "cp_prices";
15
  const DB_ORDERS = "cp_marketplace_orders";
9
 
10
  const defaultHeader = "Content-Type: application/json;";
11
  const errorHeader_forbidden = "HTTP/1.0 403 Forbidden";
12
+ const ChannelPilot_IP = "85.10.230.194";
13
  const DB_REGISTRATION = "cp_registration";
14
  const DB_PRICES = "cp_prices";
15
  const DB_ORDERS = "cp_marketplace_orders";
app/code/community/Channelpilotsolutions/Channelpilot/Helper/handler/CPCancellationHandler.php CHANGED
@@ -38,7 +38,7 @@ class CPCancellationHandler extends CPAbstractHandler {
38
  self::hookResult(false);
39
  }
40
  $merchantId = self::getMerchantId($token);
41
- $api = new ChannelPilotSellerAPI_v1_0($merchantId, $token);
42
  $result = $api->registerCancellations($cancelled);
43
  if ($result->header->resultCode == CPResultCodes::SUCCESS) {
44
  self::changeStatusOrders($result->updateResults);
38
  self::hookResult(false);
39
  }
40
  $merchantId = self::getMerchantId($token);
41
+ $api = new ChannelPilotSellerAPI_v3_2($merchantId, $token);
42
  $result = $api->registerCancellations($cancelled);
43
  if ($result->header->resultCode == CPResultCodes::SUCCESS) {
44
  self::changeStatusOrders($result->updateResults);
app/code/community/Channelpilotsolutions/Channelpilot/Helper/handler/CPDeliveryHandler.php CHANGED
@@ -131,7 +131,7 @@ class CPDeliveryHandler extends CPAbstractHandler {
131
  }
132
 
133
  $merchantId = self::getMerchantId($token);
134
- $api = new ChannelPilotSellerAPI_v1_0($merchantId, $token);
135
  $result = $api->registerDeliveries($deliveries);
136
  if ($result->header->resultCode == CPResultCodes::SUCCESS) {
137
  $defectiveOrderIncrementIds = self::changeStatusOrders($result->updateResults);
131
  }
132
 
133
  $merchantId = self::getMerchantId($token);
134
+ $api = new ChannelPilotSellerAPI_v3_2($merchantId, $token);
135
  $result = $api->registerDeliveries($deliveries);
136
  if ($result->header->resultCode == CPResultCodes::SUCCESS) {
137
  $defectiveOrderIncrementIds = self::changeStatusOrders($result->updateResults);
app/code/community/Channelpilotsolutions/Channelpilot/Helper/handler/CPNewPriceHandler.php CHANGED
@@ -26,7 +26,7 @@ class CPNewPriceHandler extends CPAbstractHandler {
26
  }
27
  $filterArticles = null;
28
 
29
- $api = new ChannelPilotSellerAPI_v1_0($merchantId, $token);
30
  $result = $api->getDynamicArticlePrices($priceId, $method, $filterArticles, $filterFrom);
31
  $unknownArticles = array();
32
  $lastPriceUpdate = null;
26
  }
27
  $filterArticles = null;
28
 
29
+ $api = new ChannelPilotSellerAPI_v3_2($merchantId, $token);
30
  $result = $api->getDynamicArticlePrices($priceId, $method, $filterArticles, $filterFrom);
31
  $unknownArticles = array();
32
  $lastPriceUpdate = null;
app/code/community/Channelpilotsolutions/Channelpilot/Helper/handler/CPOrderHandler.php CHANGED
@@ -7,6 +7,8 @@
7
  */
8
  class CPOrderHandler extends CPAbstractHandler {
9
 
 
 
10
  protected $shopId;
11
  protected $store;
12
  protected $websiteId;
@@ -27,7 +29,7 @@ class CPOrderHandler extends CPAbstractHandler {
27
  $this->websiteId = $this->store->getWebsiteId();
28
  $oldOrders = self::getOrdersFromDb();
29
  ini_set('allow_url_fopen', 'On');
30
- $api = new ChannelPilotSellerAPI_v1_0($merchantId, $token);
31
  $result = $api->getNewMarketplaceOrders();
32
  // Check ResultCode of getNewMarketplaceOrders Result
33
  if ($result->header->resultCode == CPResultCodes::SUCCESS) {
@@ -121,14 +123,16 @@ class CPOrderHandler extends CPAbstractHandler {
121
 
122
  // set total values
123
  // total gross
124
- $quote->setGrandTotal($apiOrder->summary->totalSumOrder->gross);
125
- $quote->setBaseGrandTotal($apiOrder->summary->totalSumOrder->gross);
126
 
127
  // net
128
  $quote->setSubtotal($apiOrder->summary->totalSumOrder->net);
129
  $quote->setBaseSubtotal($apiOrder->summary->totalSumOrder->net);
130
- $quote->setSubtotalWithDiscount($apiOrder->summary->totalSumOrder->net);
131
- $quote->setBaseSubtotalWithDiscount($apiOrder->summary->totalSumOrder->net);
 
 
132
 
133
  // set item values
134
  /** @var $item Mage_Sales_Model_Quote_Item */
@@ -157,7 +161,13 @@ class CPOrderHandler extends CPAbstractHandler {
157
  // total gross
158
  $item->setRowTotalInclTax($orderItem->costsTotal->gross);
159
  $item->setBaseRowTotalInclTax($orderItem->costsTotal->gross);
160
-
 
 
 
 
 
 
161
  $item->save();
162
  }
163
  }
@@ -229,24 +239,14 @@ class CPOrderHandler extends CPAbstractHandler {
229
  if(array_key_exists($orderItem->article->id, $temp)) {
230
  // add the additonal row to the first one
231
  $temp[$orderItem->article->id]->quantityOrdered += $orderItem->quantityOrdered;
232
- $temp[$orderItem->article->id]->costsTotal->net = $temp[$orderItem->article->id]->costsSingle->net * $temp[$orderItem->article->id]->quantityOrdered;
233
- $temp[$orderItem->article->id]->costsTotal->gross = $temp[$orderItem->article->id]->costsSingle->gross * $temp[$orderItem->article->id]->quantityOrdered;
234
- $temp[$orderItem->article->id]->costsTotal->tax = $temp[$orderItem->article->id]->costsSingle->tax * $temp[$orderItem->article->id]->quantityOrdered;
235
-
236
- // calculate the totals for the current orderItem
237
- $costsNet = $orderItem->quantityOrdered * $orderItem->costsSingle->net;
238
- $costsGross = $orderItem->quantityOrdered * $orderItem->costsSingle->gross;
239
- $costsTax = $orderItem->quantityOrdered * $orderItem->costsSingle->tax;
240
-
241
- // add the calculated totals to the item summary
242
- $apiOrder->summary->totalSumItems->net = $apiOrder->summary->totalSumItems->net + $costsNet;
243
- $apiOrder->summary->totalSumItems->gross = $apiOrder->summary->totalSumItems->gross + $costsGross;
244
- $apiOrder->summary->totalSumItems->tax = $apiOrder->summary->totalSumItems->tax + $costsTax;
245
-
246
- // add the calculated totals to the order summary
247
- $apiOrder->summary->totalSumOrder->net = $apiOrder->summary->totalSumOrder->net + $costsNet;
248
- $apiOrder->summary->totalSumOrder->gross = $apiOrder->summary->totalSumOrder->gross + $costsGross;
249
- $apiOrder->summary->totalSumOrder->tax = $apiOrder->summary->totalSumOrder->tax + $costsTax;
250
  } else {
251
  $temp[$orderItem->article->id] = $orderItem;
252
  }
@@ -323,9 +323,9 @@ class CPOrderHandler extends CPAbstractHandler {
323
  $order = $service->getOrder();
324
  $items = $order->getAllItems();
325
 
 
326
  $orderItemIds = self::getSavedOrderItemArticleIds($items, $idField);
327
  $articleIds = self::getOrderedArticleIds($apiOrder);
328
-
329
  // check if the order has items and the amount of items matches the amount from the seller api
330
  if(count($orderItemIds) == 0 || count($articleIds) != count($orderItemIds)) {
331
  if(!Mage::registry('isSecureArea')) {
@@ -333,8 +333,6 @@ class CPOrderHandler extends CPAbstractHandler {
333
  }
334
  Mage::app('admin');
335
  $order->delete();
336
-
337
- $idField = Mage::getStoreConfig('channelpilot_general/channelpilot_general/channelpilot_articlenumber');
338
 
339
  $articleCount = count($articleIds);
340
  $orderItemCount = count($orderItemIds);
@@ -381,7 +379,8 @@ class CPOrderHandler extends CPAbstractHandler {
381
 
382
  $orderItemsResponse = array();
383
  try {
384
- foreach ($items as $item) {
 
385
  foreach ($apiOrder->itemsOrdered as $orderItem) {
386
  if ($orderItem->article->id == $item->getSku() || $orderItem->article->id == $item->getProductId()) {
387
  $item->setPrice($orderItem->costsSingle->net);
@@ -400,6 +399,15 @@ class CPOrderHandler extends CPAbstractHandler {
400
  $item->setBaseRowTotal($orderItem->costsTotal->net);
401
  $item->setRowTotalInclTax($orderItem->costsTotal->gross);
402
  $item->setBaseRowTotalInclTax($orderItem->costsTotal->gross);
 
 
 
 
 
 
 
 
 
403
 
404
  $item->save();
405
  $orderItem->id = $item->getId();
@@ -466,8 +474,14 @@ class CPOrderHandler extends CPAbstractHandler {
466
  $order->setBaseShippingInclTax($apiOrder->shipping->costs->gross);
467
 
468
  // Grand total
469
- $order->setBaseGrandTotal($apiOrder->summary->totalSumOrder->gross);
470
- $order->setGrandTotal($apiOrder->summary->totalSumOrder->gross);
 
 
 
 
 
 
471
 
472
  $order->setCreatedAt($apiOrder->orderHeader->orderTime);
473
 
@@ -482,7 +496,44 @@ class CPOrderHandler extends CPAbstractHandler {
482
  $order->setData('state', Mage::getStoreConfig('channelpilot_marketplace/channelpilot_marketplace/channelpilot_orderStatusImportedUnpayed'));
483
  $order->setStatus(Mage::getStoreConfig('channelpilot_marketplace/channelpilot_marketplace/channelpilot_orderStatusImportedUnpayed'));
484
  }
 
 
 
 
 
 
 
 
485
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
486
  $order->save();
487
  } catch (Exception $e) {
488
  self::deleteCPOrder($order->getId());
@@ -501,6 +552,52 @@ class CPOrderHandler extends CPAbstractHandler {
501
  return $apiOrder;
502
  }
503
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
504
  /**
505
  *
506
  * @param type $id
@@ -534,6 +631,24 @@ class CPOrderHandler extends CPAbstractHandler {
534
  $customer = Mage::getModel('customer/customer')
535
  ->setWebsiteId($this->websiteId)
536
  ->loadByEmail(CustomerFunctions::getUserName($apiOrder->customer->email));
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
537
  if ($customer->getId() == null) {
538
  $customer = Mage::getModel("customer/customer");
539
  $customer->website_id = $this->websiteId;
@@ -585,9 +700,7 @@ class CPOrderHandler extends CPAbstractHandler {
585
  if (isset($apiOrder->addressDelivery->company)) {
586
  $shippingAddress->setCompany($apiOrder->addressDelivery->company);
587
  }
588
- if (isset($apiOrder->addressDelivery->phone)) {
589
- $shippingAddress->setTelephone($apiOrder->addressDelivery->phone);
590
- }
591
  $shippingAddress = CustomerFunctions::createAddress($shippingAddress, $apiOrder);
592
  $shippingAddress->setIsDefaultShipping(true);
593
  $shippingAddress->save();
@@ -608,9 +721,7 @@ class CPOrderHandler extends CPAbstractHandler {
608
  if (isset($apiOrder->addressInvoice->company)) {
609
  $billingAddress->setCompany($apiOrder->addressInvoice->company);
610
  }
611
- if (isset($apiOrder->addressInvoice->phone)) {
612
- $billingAddress->setTelephone($apiOrder->addressInvoice->phone);
613
- }
614
  $billingAddress = CustomerFunctions::createAddress($billingAddress, $apiOrder);
615
  $billingAddress->setIsDefaultBilling(true);
616
  $billingAddress->save();
@@ -658,9 +769,7 @@ class CPOrderHandler extends CPAbstractHandler {
658
  if (isset($apiOrder->addressDelivery->company)) {
659
  $shippingAddress->setCompany($apiOrder->addressDelivery->company);
660
  }
661
- if (isset($apiOrder->addressDelivery->phone)) {
662
- $shippingAddress->setTelephone($apiOrder->addressDelivery->phone);
663
- }
664
  $shippingAddress = CustomerFunctions::createAddress($shippingAddress, $apiOrder);
665
  $shippingAddress->setIsDefaultShipping(true);
666
  $shippingAddress->save();
@@ -679,9 +788,7 @@ class CPOrderHandler extends CPAbstractHandler {
679
  if (isset($apiOrder->addressInvoice->company)) {
680
  $billingAddress->setCompany($apiOrder->addressInvoice->company);
681
  }
682
- if (isset($apiOrder->addressInvoice->phone)) {
683
- $billingAddress->setTelephone($apiOrder->addressInvoice->phone);
684
- }
685
  $billingAddress = CustomerFunctions::createAddress($billingAddress, $apiOrder);
686
  $billingAddress->setIsDefaultBilling(true);
687
  $billingAddress->save();
7
  */
8
  class CPOrderHandler extends CPAbstractHandler {
9
 
10
+ const FAKE_PHONE_NUMBER = 1234567890;
11
+
12
  protected $shopId;
13
  protected $store;
14
  protected $websiteId;
29
  $this->websiteId = $this->store->getWebsiteId();
30
  $oldOrders = self::getOrdersFromDb();
31
  ini_set('allow_url_fopen', 'On');
32
+ $api = new ChannelPilotSellerAPI_v3_2($merchantId, $token);
33
  $result = $api->getNewMarketplaceOrders();
34
  // Check ResultCode of getNewMarketplaceOrders Result
35
  if ($result->header->resultCode == CPResultCodes::SUCCESS) {
123
 
124
  // set total values
125
  // total gross
126
+ $quote->setGrandTotal($apiOrder->summary->totalSumOrder->gross-$apiOrder->discount->gross);
127
+ $quote->setBaseGrandTotal($apiOrder->summary->totalSumOrder->gross-$apiOrder->discount->gross);
128
 
129
  // net
130
  $quote->setSubtotal($apiOrder->summary->totalSumOrder->net);
131
  $quote->setBaseSubtotal($apiOrder->summary->totalSumOrder->net);
132
+
133
+ // discount
134
+ $quote->setSubtotalWithDiscount($apiOrder->summary->totalSumOrder->net-$apiOrder->discount->net);
135
+ $quote->setBaseSubtotalWithDiscount($apiOrder->summary->totalSumOrder->net-$apiOrder->discount->net);
136
 
137
  // set item values
138
  /** @var $item Mage_Sales_Model_Quote_Item */
161
  // total gross
162
  $item->setRowTotalInclTax($orderItem->costsTotal->gross);
163
  $item->setBaseRowTotalInclTax($orderItem->costsTotal->gross);
164
+
165
+ //Discount
166
+ $item->setRowTotalWithDiscount($orderItem->costsTotal->gross-$apiOrder->discount->gross);
167
+ $item->setBaseRowTotalWithDiscount($orderItem->costsTotal->gross-$apiOrder->discount->gross);
168
+ $item->setDiscountAmount($orderItem->discount->gross*(-1));
169
+ $item->setBaseDiscountAmount ($orderItem->discount->gross*(-1));
170
+
171
  $item->save();
172
  }
173
  }
239
  if(array_key_exists($orderItem->article->id, $temp)) {
240
  // add the additonal row to the first one
241
  $temp[$orderItem->article->id]->quantityOrdered += $orderItem->quantityOrdered;
242
+ $temp[$orderItem->article->id]->costsTotal->net += $orderItem->costsTotal->net;
243
+ $temp[$orderItem->article->id]->costsTotal->gross += $orderItem->costsTotal->gross;
244
+ $temp[$orderItem->article->id]->costsTotal->net += $orderItem->costsTotal->net;
245
+
246
+ $apiOrder->summary->totalSumItems->net = $temp[$orderItem->article->id]->costsTotal->net;
247
+ $apiOrder->summary->totalSumItems->gross = $temp[$orderItem->article->id]->costsTotal->gross;
248
+ $apiOrder->summary->totalSumItems->tax = $temp[$orderItem->article->id]->costsTotal->tax;
249
+
 
 
 
 
 
 
 
 
 
 
250
  } else {
251
  $temp[$orderItem->article->id] = $orderItem;
252
  }
323
  $order = $service->getOrder();
324
  $items = $order->getAllItems();
325
 
326
+ $idField = Mage::getStoreConfig('channelpilot_general/channelpilot_general/channelpilot_articlenumber');
327
  $orderItemIds = self::getSavedOrderItemArticleIds($items, $idField);
328
  $articleIds = self::getOrderedArticleIds($apiOrder);
 
329
  // check if the order has items and the amount of items matches the amount from the seller api
330
  if(count($orderItemIds) == 0 || count($articleIds) != count($orderItemIds)) {
331
  if(!Mage::registry('isSecureArea')) {
333
  }
334
  Mage::app('admin');
335
  $order->delete();
 
 
336
 
337
  $articleCount = count($articleIds);
338
  $orderItemCount = count($orderItemIds);
379
 
380
  $orderItemsResponse = array();
381
  try {
382
+ /** @var $item Mage_Sales_Model_Order_Item */
383
+ foreach ($items as $item) {
384
  foreach ($apiOrder->itemsOrdered as $orderItem) {
385
  if ($orderItem->article->id == $item->getSku() || $orderItem->article->id == $item->getProductId()) {
386
  $item->setPrice($orderItem->costsSingle->net);
399
  $item->setBaseRowTotal($orderItem->costsTotal->net);
400
  $item->setRowTotalInclTax($orderItem->costsTotal->gross);
401
  $item->setBaseRowTotalInclTax($orderItem->costsTotal->gross);
402
+
403
+ $item->setRowTotalWithDiscount($orderItem->costsTotal->gross-$apiOrder->discount->gross);
404
+ $item->setBaseRowTotalWithDiscount($orderItem->costsTotal->gross-$apiOrder->discount->gross);
405
+
406
+ //discount
407
+ $item->setDiscountAmount($orderItem->discount->gross);
408
+ $item->setBaseDiscountAmount($orderItem->discount->gross);
409
+
410
+ $item->setExtOrderItemId($orderItem->idExternal);
411
 
412
  $item->save();
413
  $orderItem->id = $item->getId();
474
  $order->setBaseShippingInclTax($apiOrder->shipping->costs->gross);
475
 
476
  // Grand total
477
+ $order->setBaseGrandTotal($apiOrder->summary->totalSumOrder->gross-$apiOrder->discount->gross);
478
+ $order->setGrandTotal($apiOrder->summary->totalSumOrder->gross-$apiOrder->discount->gross);
479
+
480
+ //discount
481
+ $order->setSubtotalWithDiscount($apiOrder->summary->totalSumOrder->net-$apiOrder->discount->net);
482
+ $order->setBaseSubtotalWithDiscount($apiOrder->summary->totalSumOrder->net-$apiOrder->discount->net);
483
+ $order->setDiscountAmount($apiOrder->discount->gross*(-1));
484
+ $order->setBaseDiscountAmount($apiOrder->discount->gross*(-1));
485
 
486
  $order->setCreatedAt($apiOrder->orderHeader->orderTime);
487
 
496
  $order->setData('state', Mage::getStoreConfig('channelpilot_marketplace/channelpilot_marketplace/channelpilot_orderStatusImportedUnpayed'));
497
  $order->setStatus(Mage::getStoreConfig('channelpilot_marketplace/channelpilot_marketplace/channelpilot_orderStatusImportedUnpayed'));
498
  }
499
+
500
+ if(strpos($apiOrder->orderHeader->source, 'ebay') !== false
501
+ && Mage::getStoreConfig('channelpilot_marketplace/channelpilot_marketplace/which_external_id_for_ebay_orders') == 'externalTransactionId'
502
+ && !empty($apiOrder->orderHeader->orderIdExternalTransactionId)) {
503
+ $order->setExtOrderId($apiOrder->orderHeader->orderIdExternalTransactionId);
504
+ } else {
505
+ $order->setExtOrderId($apiOrder->orderHeader->orderIdExternal);
506
+ }
507
 
508
+ $msg = $this->_getOrderComments($apiOrder);
509
+ if(!empty($msg)) {
510
+ $order->addStatusHistoryComment($msg, false);
511
+ }
512
+
513
+ $statusHistoryComment = "";
514
+ switch (Mage::getStoreConfig('channelpilot_marketplace/channelpilot_marketplace/which_field_for_externalTransactionId')) {
515
+ case 'orderComment':
516
+ if(!empty($apiOrder->orderHeader->orderIdExternalTransactionId)){
517
+ $statusHistoryComment .= "External Transaction ID: <b>".$apiOrder->orderHeader->orderIdExternalTransactionId."</b><br/><br/>";
518
+ };
519
+ break;
520
+ }
521
+ if(!empty($apiOrder->orderHeader->purchaseOrderNumber)) {
522
+ $statusHistoryComment .= "Purchase Order Number: <b>".$apiOrder->orderHeader->purchaseOrderNumber."</b><br/><br/>";
523
+ }
524
+ if(!empty($apiOrder->expectedShippingTimeFrom)) {
525
+ $statusHistoryComment .= "Expected Shipping Time from: <b>".$apiOrder->expectedShippingTimeFrom."</b><br/><br/>";
526
+ }
527
+ if(!empty($apiOrder->expectedShippingTimeTo)) {
528
+ $statusHistoryComment .= "Expected Shipping Time to: <b>".$apiOrder->expectedShippingTimeTo."</b><br/><br/>";
529
+ }
530
+ if($apiOrder->orderHeader->isBusinessOrder!==false){
531
+ $statusHistoryComment .= "<b>B2B Order"."</b><br/><br/>";
532
+ }
533
+ if ($statusHistoryComment!="") {
534
+ $order->addStatusHistoryComment($statusHistoryComment, false);
535
+ }
536
+
537
  $order->save();
538
  } catch (Exception $e) {
539
  self::deleteCPOrder($order->getId());
552
  return $apiOrder;
553
  }
554
 
555
+ /**
556
+ * Creates a string that is used as a comment for the order.
557
+ * @param $apiOrder
558
+ * @return string
559
+ */
560
+ protected function _getOrderComments($apiOrder) {
561
+ $helper = Mage::helper('channelpilot');
562
+
563
+ $msg = "";
564
+
565
+ // create a message that state that the order is being imported from ChannelPilot if this feature has been enabled
566
+ if(Mage::getStoreConfigFlag("channelpilot_marketplace/channelpilot_marketplace/create_order_comment", $this->shopId)) {
567
+ $msg = $helper->__(
568
+ "The order has been imported from ChannelPilot and was placed on %s with the order number %s",
569
+ $apiOrder->orderHeader->source,
570
+ $apiOrder->orderHeader->orderIdExternal
571
+ );
572
+ }
573
+
574
+ // create an info message that states that the phone number for the delivery address is empty and changed to the fake one
575
+ if (isset($apiOrder->addressDelivery->phone) && empty($apiOrder->addressDelivery->phone)) {
576
+ if(!empty($msg)) {
577
+ $msg .= "<br/><br/>";
578
+ }
579
+ $msg .= $helper->__(
580
+ "The customer did not enter a phone number for the %s. To prevent import errors, the fake phone number %s has been added instead.",
581
+ $helper->__("delivery address"),
582
+ self::FAKE_PHONE_NUMBER
583
+ );
584
+ }
585
+
586
+ // create an info message that states that the phone number for the billing address is empty and changed to the fake one
587
+ if (isset($apiOrder->addressInvoice->phone) && empty($apiOrder->addressInvoice->phone)) {
588
+ if(!empty($msg)) {
589
+ $msg .= "<br/><br/>";
590
+ }
591
+ $msg .= $helper->__(
592
+ "The customer did not enter a phone number for the %s. To prevent import errors, the fake phone number %s has been added instead.",
593
+ $helper->__("billing address"),
594
+ self::FAKE_PHONE_NUMBER
595
+ );
596
+ }
597
+
598
+ return $msg;
599
+ }
600
+
601
  /**
602
  *
603
  * @param type $id
631
  $customer = Mage::getModel('customer/customer')
632
  ->setWebsiteId($this->websiteId)
633
  ->loadByEmail(CustomerFunctions::getUserName($apiOrder->customer->email));
634
+
635
+ $phoneDelivery = null;
636
+ $phoneBilling = null;
637
+
638
+ if (isset($apiOrder->addressDelivery->phone)) {
639
+ $phoneDelivery = $apiOrder->addressDelivery->phone;
640
+ if(empty($phoneDelivery)) {
641
+ $phoneDelivery = self::FAKE_PHONE_NUMBER;
642
+ }
643
+ }
644
+
645
+ if (isset($apiOrder->addressInvoice->phone)) {
646
+ $phoneBilling = $apiOrder->addressInvoice->phone;
647
+ if(empty($phoneBilling)) {
648
+ $phoneBilling = self::FAKE_PHONE_NUMBER;
649
+ }
650
+ }
651
+
652
  if ($customer->getId() == null) {
653
  $customer = Mage::getModel("customer/customer");
654
  $customer->website_id = $this->websiteId;
700
  if (isset($apiOrder->addressDelivery->company)) {
701
  $shippingAddress->setCompany($apiOrder->addressDelivery->company);
702
  }
703
+ $shippingAddress->setTelephone($phoneDelivery);
 
 
704
  $shippingAddress = CustomerFunctions::createAddress($shippingAddress, $apiOrder);
705
  $shippingAddress->setIsDefaultShipping(true);
706
  $shippingAddress->save();
721
  if (isset($apiOrder->addressInvoice->company)) {
722
  $billingAddress->setCompany($apiOrder->addressInvoice->company);
723
  }
724
+ $billingAddress->setTelephone($phoneBilling);
 
 
725
  $billingAddress = CustomerFunctions::createAddress($billingAddress, $apiOrder);
726
  $billingAddress->setIsDefaultBilling(true);
727
  $billingAddress->save();
769
  if (isset($apiOrder->addressDelivery->company)) {
770
  $shippingAddress->setCompany($apiOrder->addressDelivery->company);
771
  }
772
+ $shippingAddress->setTelephone($phoneDelivery);
 
 
773
  $shippingAddress = CustomerFunctions::createAddress($shippingAddress, $apiOrder);
774
  $shippingAddress->setIsDefaultShipping(true);
775
  $shippingAddress->save();
788
  if (isset($apiOrder->addressInvoice->company)) {
789
  $billingAddress->setCompany($apiOrder->addressInvoice->company);
790
  }
791
+ $billingAddress->setTelephone($phoneBilling);
 
 
792
  $billingAddress = CustomerFunctions::createAddress($billingAddress, $apiOrder);
793
  $billingAddress->setIsDefaultBilling(true);
794
  $billingAddress->save();
app/code/community/Channelpilotsolutions/Channelpilot/Helper/handler/CPPaymentHandler.php CHANGED
@@ -45,7 +45,7 @@ class CPPaymentHandler extends CPAbstractHandler {
45
  self::hookResult(false);
46
  }
47
  $merchantId = self::getMerchantId($token);
48
- $api = new ChannelPilotSellerAPI_v1_0($merchantId, $token);
49
  $result = $api->setPaidOrders($paidOrders);
50
  if ($result->header->resultCode == CPResultCodes::SUCCESS) {
51
  $affectedRows = Mage::getModel('channelpilot/order')->massSetOrderPaid($paidOrders);
45
  self::hookResult(false);
46
  }
47
  $merchantId = self::getMerchantId($token);
48
+ $api = new ChannelPilotSellerAPI_v3_2($merchantId, $token);
49
  $result = $api->setPaidOrders($paidOrders);
50
  if ($result->header->resultCode == CPResultCodes::SUCCESS) {
51
  $affectedRows = Mage::getModel('channelpilot/order')->massSetOrderPaid($paidOrders);
app/code/community/Channelpilotsolutions/Channelpilot/etc/config.xml CHANGED
@@ -24,7 +24,7 @@
24
  <config>
25
  <modules>
26
  <Channelpilotsolutions_Channelpilot>
27
- <version>2.2.8</version>
28
  </Channelpilotsolutions_Channelpilot>
29
  </modules>
30
  <global>
@@ -174,7 +174,7 @@
174
  <channelpilot_useNews>0</channelpilot_useNews>
175
  <channelpilot_checkIp>1</channelpilot_checkIp>
176
  <channelpilot_articlenumber>product_id</channelpilot_articlenumber>
177
- <seller_api_wsdl_url>https://seller.api.channelpilot.com/1_0?wsdl</seller_api_wsdl_url>
178
  </channelpilot_general>
179
  </channelpilot_general>
180
  <channelpilot_tracking>
@@ -195,8 +195,18 @@
195
  <channelpilot_marketplace>
196
  <channelpilot_useMarketplaces>0</channelpilot_useMarketplaces>
197
  <use_admin_mode>0</use_admin_mode>
 
 
198
  </channelpilot_marketplace>
199
  </channelpilot_marketplace>
 
 
 
 
 
 
 
 
200
  <channelpilot_pricecontrol>
201
  <channelpilot_general>
202
  <channelpilot_usePricecontrol>0</channelpilot_usePricecontrol>
24
  <config>
25
  <modules>
26
  <Channelpilotsolutions_Channelpilot>
27
+ <version>2.3.0</version>
28
  </Channelpilotsolutions_Channelpilot>
29
  </modules>
30
  <global>
174
  <channelpilot_useNews>0</channelpilot_useNews>
175
  <channelpilot_checkIp>1</channelpilot_checkIp>
176
  <channelpilot_articlenumber>product_id</channelpilot_articlenumber>
177
+ <seller_api_wsdl_url>https://seller.api.channelpilot.com/3_2?wsdl</seller_api_wsdl_url>
178
  </channelpilot_general>
179
  </channelpilot_general>
180
  <channelpilot_tracking>
195
  <channelpilot_marketplace>
196
  <channelpilot_useMarketplaces>0</channelpilot_useMarketplaces>
197
  <use_admin_mode>0</use_admin_mode>
198
+ <create_order_comment>0</create_order_comment>
199
+ <which_external_id_for_ebay_orders>orderId</which_external_id_for_ebay_orders>
200
  </channelpilot_marketplace>
201
  </channelpilot_marketplace>
202
+ <channelpilot_marketplace>
203
+ <channelpilot_marketplace>
204
+ <channelpilot_useMarketplaces>0</channelpilot_useMarketplaces>
205
+ <use_admin_mode>0</use_admin_mode>
206
+ <create_order_comment>0</create_order_comment>
207
+ <which_field_for_externalTransactionId>orderComment</which_field_for_externalTransactionId>
208
+ </channelpilot_marketplace>
209
+ </channelpilot_marketplace>
210
  <channelpilot_pricecontrol>
211
  <channelpilot_general>
212
  <channelpilot_usePricecontrol>0</channelpilot_usePricecontrol>
app/code/community/Channelpilotsolutions/Channelpilot/etc/system.xml CHANGED
@@ -85,7 +85,7 @@
85
  </channelpilot_articlenumber>
86
  <seller_api_wsdl_url>
87
  <label>CP Seller api wsdl url</label>
88
- <comment>CP Default url: https://seller.api.channelpilot.com/1_0?wsdl</comment>
89
  <frontend_type>text</frontend_type>
90
  <sort_order>40</sort_order>
91
  <show_in_default>1</show_in_default>
@@ -329,6 +329,34 @@
329
  <show_in_website>0</show_in_website>
330
  <show_in_store>0</show_in_store>
331
  </use_admin_mode>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
332
  </fields>
333
  </channelpilot_marketplace>
334
  </groups>
85
  </channelpilot_articlenumber>
86
  <seller_api_wsdl_url>
87
  <label>CP Seller api wsdl url</label>
88
+ <comment>CP Default url: https://seller.api.channelpilot.com/2_0?wsdl</comment>
89
  <frontend_type>text</frontend_type>
90
  <sort_order>40</sort_order>
91
  <show_in_default>1</show_in_default>
329
  <show_in_website>0</show_in_website>
330
  <show_in_store>0</show_in_store>
331
  </use_admin_mode>
332
+ <create_order_comment translate="label comment">
333
+ <label>CP Create Order Comment</label>
334
+ <comment>CP Creates a comment for the order stating that the order has been imported from ChannelPilot, where the order has been places and the order number.</comment>
335
+ <frontend_type>select</frontend_type>
336
+ <source_model>adminhtml/system_config_source_yesno</source_model>
337
+ <sort_order>50</sort_order>
338
+ <show_in_default>1</show_in_default>
339
+ <show_in_website>1</show_in_website>
340
+ <show_in_store>1</show_in_store>
341
+ </create_order_comment>
342
+ <which_external_id_for_ebay_orders translate="label">
343
+ <label>CP Which orderid saved for ebay?</label>
344
+ <frontend_type>select</frontend_type>
345
+ <source_model>channelpilot_adminhtml/orderid_values</source_model>
346
+ <sort_order>60</sort_order>
347
+ <show_in_default>1</show_in_default>
348
+ <show_in_website>1</show_in_website>
349
+ <show_in_store>1</show_in_store>
350
+ </which_external_id_for_ebay_orders>
351
+ <which_field_for_externalTransactionId translate="label">
352
+ <label>CP In which field you want to save the externalTransactionId?</label>
353
+ <frontend_type>select</frontend_type>
354
+ <source_model>channelpilot_adminhtml/externalTransactionId_values</source_model>
355
+ <sort_order>60</sort_order>
356
+ <show_in_default>1</show_in_default>
357
+ <show_in_website>1</show_in_website>
358
+ <show_in_store>1</show_in_store>
359
+ </which_field_for_externalTransactionId>
360
  </fields>
361
  </channelpilot_marketplace>
362
  </groups>
app/code/community/Channelpilotsolutions/Channelpilot/sql/channelpilot_setup/mysql4-upgrade-2.2.7-2.3.0.php ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ $installer = $this;
4
+ $installer->startSetup();
5
+ $setup = new Mage_Eav_Model_Entity_Setup('core_setup');
6
+
7
+ $setup->addAttribute('order', 'expectedShippingTime', array(
8
+ 'position' => 1,
9
+ 'input' => 'text',
10
+ 'type' => 'varchar',
11
+ 'label' => 'Choose delivery date',
12
+ 'visible' => 1,
13
+ 'required' => 0,
14
+ 'user_defined' => 1,
15
+ 'global' => 1,
16
+ 'visible_on_front' => 1,
17
+ ));
18
+
19
+ $installer->endSetup();
20
+ ?>
app/locale/de_AT/Channelpilotsolutions_Channelpilot.csv CHANGED
@@ -1,97 +1,99 @@
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
- "CP Number additional productimages","Anzahl zusätzlicher Produktbilder"
29
- "CP How many additional productimages should be exported?","Wieviele zusätzliche Produktbilder sollen exportiert werden?"
30
-
31
- "CP Marketplace Integration","Marktplatzanbindung"
32
- "CP Marketplace Integration Settings","Marktplatzanbindung Einstellungen"
33
-
34
- "CP Repricing","Preissteuerung"
35
- "CP Repricing Settings","Preissteuerung konfigurieren"
36
- "CP General Repricing","Globale Preissteuerung"
37
- "CP Field for price","Preisfeld"
38
- "CP This field would be overwritten by the new product price.","Dieses Preisfeld wird von dem neuen Preis überschrieben."
39
- "CP Save prices net or gross?","Preis in netto oder brutto speichern?"
40
-
41
- "CP ChannelPilot-Payment","ChannelPilot Payment"
42
- "CP !!!This is no real payment method!!!","!!!Das ist keine richtige Zahlmethode!!!"
43
- "CP Title","Bezeichnung"
44
- "CP Order Status","Bestellstatus"
45
- "CP Payment Types","Zahlarten"
46
-
47
- "CP Activate?","Aktivieren?"
48
- "CP Add","Hinzufügen"
49
- "CP Delete","Löschen"
50
- "CP OrderStatus Imported (payed)?","Status von importierten bezahlten Bestellungen?"
51
- "CP OrderStatus Imported (unpayed)?","Status von importierten nicht bezahlten Bestellungen?"
52
-
53
- "This shipping method is currently unavailable.","Diese Versandart ist derzeit nicht verfügbar."
54
- "CP ChannelPilot - Shipping Method", "ChannelPilot - Versandmethode"
55
- "CP Enabled","Aktiviert"
56
- "CP Use for backend only","Nur im Backend-Bereich aktivieren"
57
- "CP Title","Titel"
58
- "CP Method Name","Name der Versandart"
59
- "CP Price","Preis"
60
- "CP Ship to Applicable Countries","Versand an verfügbare Länder"
61
- "CP Show Method if Not Applicable","Versandart anzeigen wenn diese nicht verfügbar ist"
62
- "CP Ship to Specific Countries","Versand nur in folgende Länder"
63
- "CP Displayed Error Message","Angezeigte Fehlermeldung"
64
- "CP Sort Order","Sortierreihenfolge"
65
-
66
- "CP Tracking Method","Tracking Methode"
67
- "CP Image","Bild"
68
- "CP JavaScript","JavaScript"
69
-
70
- "CP Use Admin Mode for order import","Admin-Modus für den Import der Marktplatzbestellungen benutzen"
71
- "CP When importing marketplace orders you can use the admin mode. When choosing the admin mode please note that all checks are disabled thar are normally applied, like: ordering a product which amount is less than the configured minimum allowed quantity in shopping cart, import orders which have products that are sold out or the available amount is less than the ordered amount.","Wenn Marktplatzbestellungen importiert werden kann der Admin-Modus genutz werden. Sollte dieser genutzt werden dann bedenken Sie bitte, dass sämtliche Prüfungen nicht durchlaufen werden die es normalerweise tun, wie: die bestellte Menge ist geringer als die eingestellte Mindestbestellmenge; Bestellungen werden importiert die Produkte haben die ausverkauft oder nur noch in einer geringeren Stückzahl vorhanden sind."
72
-
73
- "CP Export Method","Exportmethode"
74
- "CP If you choose the indexed method, make sure that the 'Channelpilot Product Feed Export' index is always up to date. Please note, that if you select more than 40 data fields, that the indexed method will be used regardless of the selected option.","Wenn Sie die Methode 'Indiziert' wählen, dann müssen Sie sicherstellen, dass der Index 'Channelpilot Produktfeed-Export' immer aktuell ist. Sollten Sie mehr als 40 Datenfelder ausgewählt haben, wird, unabhängig davon welche Option Sie gewählt haben, der Modus 'Indiziert' verwendet."
75
- "CP Live","Live"
76
- "CP Indexed","Indiziert"
77
- "CP Channelpilot Product Feed Export","ChannelPilot Produktfeed-Export"
78
- "CP Index product data for the Channelpilot product feed export","Indiziert die Produktdaten für den ChannelPilot Produktfeed-Export"
79
- "CP You have added more than %s data fields for the product feed export. Please note that with this amount the 'indexed' export method will re used regardless of the selected one. Keep in mind that you have to keep the ChannelPilot Product Feed Export index up to date.","Sie haben mehr als %s Datenfelder für den ChannelPilot Produktfeed-Export ausgewählt. Bitte beachten Sie, dass unabhängig von der gewählten Option, fortan der Exportmodus 'Indiziert' verwendet wird. Halten Sie daher bitte den ChannelPilot Produktfeed-Export-Index aktuell."
80
- "CP Product ID","Produkt ID"
81
- "CP Product SKU","Produkt SKU"
82
- "CP Created At","Erstellt"
83
- "CP Showing feed export data for product %s and store %s - Created at: %s","Zeige Exportdaten für das Produkt %s und Store %s - die Daten wurden erstellt am: %s"
84
- "CP Please specify store.","Bitte geben Sie den Store an."
85
- "CP The data has been deleted. Please reindex the export data.","Die Daten wurden gelöscht. Bitte reindizieren Sie die Exportdaten."
86
- "CP Warning, this will delete all entries and the data has to be reindexed. Proceed ?","Warnung, sämtliche Exportdaten werden gelöscht. Möchten Sie fortfahren ?"
87
- "CP Truncate Index Table","Indextabelle leeren"
88
-
89
- "CP Default url: https://seller.api.channelpilot.com/1_0?wsdl", "Standard Url: https://seller.api.channelpilot.com/1_0?wsdl"
90
- "CP Seller api wsdl url","Seller api wsdl url"
91
-
92
- "CP Product Url Generation Method","Methode zur Erstellung der Produkt-URL"
93
- "CP base url + url_path","Basis URL + url_path"
94
- "CP base url + url_key","Basis URL + url_key"
95
- "CP base url + url_key + .html","Basis URL + url_key + .html"
96
- "CP Method getProductUrl","getProductUrl Methode"
97
- "CP Method getUrlInStore","getUrlInStore Methode"
 
 
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
+ "CP Number additional productimages","Anzahl zusätzlicher Produktbilder"
29
+ "CP How many additional productimages should be exported?","Wieviele zusätzliche Produktbilder sollen exportiert werden?"
30
+
31
+ "CP Marketplace Integration","Marktplatzanbindung"
32
+ "CP Marketplace Integration Settings","Marktplatzanbindung Einstellungen"
33
+
34
+ "CP Repricing","Preissteuerung"
35
+ "CP Repricing Settings","Preissteuerung konfigurieren"
36
+ "CP General Repricing","Globale Preissteuerung"
37
+ "CP Field for price","Preisfeld"
38
+ "CP This field would be overwritten by the new product price.","Dieses Preisfeld wird von dem neuen Preis überschrieben."
39
+ "CP Save prices net or gross?","Preis in netto oder brutto speichern?"
40
+
41
+ "CP ChannelPilot-Payment","ChannelPilot Payment"
42
+ "CP !!!This is no real payment method!!!","!!!Das ist keine richtige Zahlmethode!!!"
43
+ "CP Title","Bezeichnung"
44
+ "CP Order Status","Bestellstatus"
45
+ "CP Payment Types","Zahlarten"
46
+
47
+ "CP Activate?","Aktivieren?"
48
+ "CP Add","Hinzufügen"
49
+ "CP Delete","Löschen"
50
+ "CP OrderStatus Imported (payed)?","Status von importierten bezahlten Bestellungen?"
51
+ "CP OrderStatus Imported (unpayed)?","Status von importierten nicht bezahlten Bestellungen?"
52
+
53
+ "This shipping method is currently unavailable.","Diese Versandart ist derzeit nicht verfügbar."
54
+ "CP ChannelPilot - Shipping Method", "ChannelPilot - Versandmethode"
55
+ "CP Enabled","Aktiviert"
56
+ "CP Use for backend only","Nur im Backend-Bereich aktivieren"
57
+ "CP Title","Titel"
58
+ "CP Method Name","Name der Versandart"
59
+ "CP Price","Preis"
60
+ "CP Ship to Applicable Countries","Versand an verfügbare Länder"
61
+ "CP Show Method if Not Applicable","Versandart anzeigen wenn diese nicht verfügbar ist"
62
+ "CP Ship to Specific Countries","Versand nur in folgende Länder"
63
+ "CP Displayed Error Message","Angezeigte Fehlermeldung"
64
+ "CP Sort Order","Sortierreihenfolge"
65
+
66
+ "CP Tracking Method","Tracking Methode"
67
+ "CP Image","Bild"
68
+ "CP JavaScript","JavaScript"
69
+
70
+ "CP Use Admin Mode for order import","Admin-Modus für den Import der Marktplatzbestellungen benutzen"
71
+ "CP When importing marketplace orders you can use the admin mode. When choosing the admin mode please note that all checks are disabled thar are normally applied, like: ordering a product which amount is less than the configured minimum allowed quantity in shopping cart, import orders which have products that are sold out or the available amount is less than the ordered amount.","Wenn Marktplatzbestellungen importiert werden kann der Admin-Modus genutz werden. Sollte dieser genutzt werden dann bedenken Sie bitte, dass sämtliche Prüfungen nicht durchlaufen werden die es normalerweise tun, wie: die bestellte Menge ist geringer als die eingestellte Mindestbestellmenge; Bestellungen werden importiert die Produkte haben die ausverkauft oder nur noch in einer geringeren Stückzahl vorhanden sind."
72
+
73
+ "CP Export Method","Exportmethode"
74
+ "CP If you choose the indexed method, make sure that the 'Channelpilot Product Feed Export' index is always up to date. Please note, that if you select more than 40 data fields, that the indexed method will be used regardless of the selected option.","Wenn Sie die Methode 'Indiziert' wählen, dann müssen Sie sicherstellen, dass der Index 'Channelpilot Produktfeed-Export' immer aktuell ist. Sollten Sie mehr als 40 Datenfelder ausgewählt haben, wird, unabhängig davon welche Option Sie gewählt haben, der Modus 'Indiziert' verwendet."
75
+ "CP Live","Live"
76
+ "CP Indexed","Indiziert"
77
+ "CP Channelpilot Product Feed Export","ChannelPilot Produktfeed-Export"
78
+ "CP Index product data for the Channelpilot product feed export","Indiziert die Produktdaten für den ChannelPilot Produktfeed-Export"
79
+ "CP You have added more than %s data fields for the product feed export. Please note that with this amount the 'indexed' export method will re used regardless of the selected one. Keep in mind that you have to keep the ChannelPilot Product Feed Export index up to date.","Sie haben mehr als %s Datenfelder für den ChannelPilot Produktfeed-Export ausgewählt. Bitte beachten Sie, dass unabhängig von der gewählten Option, fortan der Exportmodus 'Indiziert' verwendet wird. Halten Sie daher bitte den ChannelPilot Produktfeed-Export-Index aktuell."
80
+ "CP Product ID","Produkt ID"
81
+ "CP Product SKU","Produkt SKU"
82
+ "CP Created At","Erstellt"
83
+ "CP Showing feed export data for product %s and store %s - Created at: %s","Zeige Exportdaten für das Produkt %s und Store %s - die Daten wurden erstellt am: %s"
84
+ "CP Please specify store.","Bitte geben Sie den Store an."
85
+ "CP The data has been deleted. Please reindex the export data.","Die Daten wurden gelöscht. Bitte reindizieren Sie die Exportdaten."
86
+ "CP Warning, this will delete all entries and the data has to be reindexed. Proceed ?","Warnung, sämtliche Exportdaten werden gelöscht. Möchten Sie fortfahren ?"
87
+ "CP Truncate Index Table","Indextabelle leeren"
88
+
89
+ "CP Default url: https://seller.api.channelpilot.com/3_2?wsdl", "Standard Url: https://seller.api.channelpilot.com/3_2?wsdl"
90
+ "CP Seller api wsdl url","Seller api wsdl url"
91
+
92
+ "CP Product Url Generation Method","Methode zur Erstellung der Produkt-URL"
93
+ "CP base url + url_path","Basis URL + url_path"
94
+ "CP base url + url_key","Basis URL + url_key"
95
+ "CP base url + url_key + .html","Basis URL + url_key + .html"
96
+ "CP Method getProductUrl","getProductUrl Methode"
97
+ "CP Method getUrlInStore","getUrlInStore Methode"
98
+
99
+ "CP In which field you want to save the externalTransactionId?","Wo wollen Sie die externalTransactionId gespeichert haben?"
app/locale/de_CH/Channelpilotsolutions_Channelpilot.csv CHANGED
@@ -1,97 +1,99 @@
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
- "CP Number additional productimages","Anzahl zusätzlicher Produktbilder"
29
- "CP How many additional productimages should be exported?","Wieviele zusätzliche Produktbilder sollen exportiert werden?"
30
-
31
- "CP Marketplace Integration","Marktplatzanbindung"
32
- "CP Marketplace Integration Settings","Marktplatzanbindung Einstellungen"
33
-
34
- "CP Repricing","Preissteuerung"
35
- "CP Repricing Settings","Preissteuerung konfigurieren"
36
- "CP General Repricing","Globale Preissteuerung"
37
- "CP Field for price","Preisfeld"
38
- "CP This field would be overwritten by the new product price.","Dieses Preisfeld wird von dem neuen Preis überschrieben."
39
- "CP Save prices net or gross?","Preis in netto oder brutto speichern?"
40
-
41
- "CP ChannelPilot-Payment","ChannelPilot Payment"
42
- "CP !!!This is no real payment method!!!","!!!Das ist keine richtige Zahlmethode!!!"
43
- "CP Title","Bezeichnung"
44
- "CP Order Status","Bestellstatus"
45
- "CP Payment Types","Zahlarten"
46
-
47
- "CP Activate?","Aktivieren?"
48
- "CP Add","Hinzufügen"
49
- "CP Delete","Löschen"
50
- "CP OrderStatus Imported (payed)?","Status von importierten bezahlten Bestellungen?"
51
- "CP OrderStatus Imported (unpayed)?","Status von importierten nicht bezahlten Bestellungen?"
52
-
53
- "This shipping method is currently unavailable.","Diese Versandart ist derzeit nicht verfügbar."
54
- "CP ChannelPilot - Shipping Method", "ChannelPilot - Versandmethode"
55
- "CP Enabled","Aktiviert"
56
- "CP Use for backend only","Nur im Backend-Bereich aktivieren"
57
- "CP Title","Titel"
58
- "CP Method Name","Name der Versandart"
59
- "CP Price","Preis"
60
- "CP Ship to Applicable Countries","Versand an verfügbare Länder"
61
- "CP Show Method if Not Applicable","Versandart anzeigen wenn diese nicht verfügbar ist"
62
- "CP Ship to Specific Countries","Versand nur in folgende Länder"
63
- "CP Displayed Error Message","Angezeigte Fehlermeldung"
64
- "CP Sort Order","Sortierreihenfolge"
65
-
66
- "CP Tracking Method","Tracking Methode"
67
- "CP Image","Bild"
68
- "CP JavaScript","JavaScript"
69
-
70
- "CP Use Admin Mode for order import","Admin-Modus für den Import der Marktplatzbestellungen benutzen"
71
- "CP When importing marketplace orders you can use the admin mode. When choosing the admin mode please note that all checks are disabled thar are normally applied, like: ordering a product which amount is less than the configured minimum allowed quantity in shopping cart, import orders which have products that are sold out or the available amount is less than the ordered amount.","Wenn Marktplatzbestellungen importiert werden kann der Admin-Modus genutz werden. Sollte dieser genutzt werden dann bedenken Sie bitte, dass sämtliche Prüfungen nicht durchlaufen werden die es normalerweise tun, wie: die bestellte Menge ist geringer als die eingestellte Mindestbestellmenge; Bestellungen werden importiert die Produkte haben die ausverkauft oder nur noch in einer geringeren Stückzahl vorhanden sind."
72
-
73
- "CP Export Method","Exportmethode"
74
- "CP If you choose the indexed method, make sure that the 'Channelpilot Product Feed Export' index is always up to date. Please note, that if you select more than 40 data fields, that the indexed method will be used regardless of the selected option.","Wenn Sie die Methode 'Indiziert' wählen, dann müssen Sie sicherstellen, dass der Index 'Channelpilot Produktfeed-Export' immer aktuell ist. Sollten Sie mehr als 40 Datenfelder ausgewählt haben, wird, unabhängig davon welche Option Sie gewählt haben, der Modus 'Indiziert' verwendet."
75
- "CP Live","Live"
76
- "CP Indexed","Indiziert"
77
- "CP Channelpilot Product Feed Export","ChannelPilot Produktfeed-Export"
78
- "CP Index product data for the Channelpilot product feed export","Indiziert die Produktdaten für den ChannelPilot Produktfeed-Export"
79
- "CP You have added more than %s data fields for the product feed export. Please note that with this amount the 'indexed' export method will re used regardless of the selected one. Keep in mind that you have to keep the ChannelPilot Product Feed Export index up to date.","Sie haben mehr als %s Datenfelder für den ChannelPilot Produktfeed-Export ausgewählt. Bitte beachten Sie, dass unabhängig von der gewählten Option, fortan der Exportmodus 'Indiziert' verwendet wird. Halten Sie daher bitte den ChannelPilot Produktfeed-Export-Index aktuell."
80
- "CP Product ID","Produkt ID"
81
- "CP Product SKU","Produkt SKU"
82
- "CP Created At","Erstellt"
83
- "CP Showing feed export data for product %s and store %s - Created at: %s","Zeige Exportdaten für das Produkt %s und Store %s - die Daten wurden erstellt am: %s"
84
- "CP Please specify store.","Bitte geben Sie den Store an."
85
- "CP The data has been deleted. Please reindex the export data.","Die Daten wurden gelöscht. Bitte reindizieren Sie die Exportdaten."
86
- "CP Warning, this will delete all entries and the data has to be reindexed. Proceed ?","Warnung, sämtliche Exportdaten werden gelöscht. Möchten Sie fortfahren ?"
87
- "CP Truncate Index Table","Indextabelle leeren"
88
-
89
- "CP Default url: https://seller.api.channelpilot.com/1_0?wsdl", "Standard Url: https://seller.api.channelpilot.com/1_0?wsdl"
90
- "CP Seller api wsdl url","Seller api wsdl url"
91
-
92
- "CP Product Url Generation Method","Methode zur Erstellung der Produkt-URL"
93
- "CP base url + url_path","Basis URL + url_path"
94
- "CP base url + url_key","Basis URL + url_key"
95
- "CP base url + url_key + .html","Basis URL + url_key + .html"
96
- "CP Method getProductUrl","getProductUrl Methode"
97
- "CP Method getUrlInStore","getUrlInStore Methode"
 
 
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
+ "CP Number additional productimages","Anzahl zusätzlicher Produktbilder"
29
+ "CP How many additional productimages should be exported?","Wieviele zusätzliche Produktbilder sollen exportiert werden?"
30
+
31
+ "CP Marketplace Integration","Marktplatzanbindung"
32
+ "CP Marketplace Integration Settings","Marktplatzanbindung Einstellungen"
33
+
34
+ "CP Repricing","Preissteuerung"
35
+ "CP Repricing Settings","Preissteuerung konfigurieren"
36
+ "CP General Repricing","Globale Preissteuerung"
37
+ "CP Field for price","Preisfeld"
38
+ "CP This field would be overwritten by the new product price.","Dieses Preisfeld wird von dem neuen Preis überschrieben."
39
+ "CP Save prices net or gross?","Preis in netto oder brutto speichern?"
40
+
41
+ "CP ChannelPilot-Payment","ChannelPilot Payment"
42
+ "CP !!!This is no real payment method!!!","!!!Das ist keine richtige Zahlmethode!!!"
43
+ "CP Title","Bezeichnung"
44
+ "CP Order Status","Bestellstatus"
45
+ "CP Payment Types","Zahlarten"
46
+
47
+ "CP Activate?","Aktivieren?"
48
+ "CP Add","Hinzufügen"
49
+ "CP Delete","Löschen"
50
+ "CP OrderStatus Imported (payed)?","Status von importierten bezahlten Bestellungen?"
51
+ "CP OrderStatus Imported (unpayed)?","Status von importierten nicht bezahlten Bestellungen?"
52
+
53
+ "This shipping method is currently unavailable.","Diese Versandart ist derzeit nicht verfügbar."
54
+ "CP ChannelPilot - Shipping Method", "ChannelPilot - Versandmethode"
55
+ "CP Enabled","Aktiviert"
56
+ "CP Use for backend only","Nur im Backend-Bereich aktivieren"
57
+ "CP Title","Titel"
58
+ "CP Method Name","Name der Versandart"
59
+ "CP Price","Preis"
60
+ "CP Ship to Applicable Countries","Versand an verfügbare Länder"
61
+ "CP Show Method if Not Applicable","Versandart anzeigen wenn diese nicht verfügbar ist"
62
+ "CP Ship to Specific Countries","Versand nur in folgende Länder"
63
+ "CP Displayed Error Message","Angezeigte Fehlermeldung"
64
+ "CP Sort Order","Sortierreihenfolge"
65
+
66
+ "CP Tracking Method","Tracking Methode"
67
+ "CP Image","Bild"
68
+ "CP JavaScript","JavaScript"
69
+
70
+ "CP Use Admin Mode for order import","Admin-Modus für den Import der Marktplatzbestellungen benutzen"
71
+ "CP When importing marketplace orders you can use the admin mode. When choosing the admin mode please note that all checks are disabled thar are normally applied, like: ordering a product which amount is less than the configured minimum allowed quantity in shopping cart, import orders which have products that are sold out or the available amount is less than the ordered amount.","Wenn Marktplatzbestellungen importiert werden kann der Admin-Modus genutz werden. Sollte dieser genutzt werden dann bedenken Sie bitte, dass sämtliche Prüfungen nicht durchlaufen werden die es normalerweise tun, wie: die bestellte Menge ist geringer als die eingestellte Mindestbestellmenge; Bestellungen werden importiert die Produkte haben die ausverkauft oder nur noch in einer geringeren Stückzahl vorhanden sind."
72
+
73
+ "CP Export Method","Exportmethode"
74
+ "CP If you choose the indexed method, make sure that the 'Channelpilot Product Feed Export' index is always up to date. Please note, that if you select more than 40 data fields, that the indexed method will be used regardless of the selected option.","Wenn Sie die Methode 'Indiziert' wählen, dann müssen Sie sicherstellen, dass der Index 'Channelpilot Produktfeed-Export' immer aktuell ist. Sollten Sie mehr als 40 Datenfelder ausgewählt haben, wird, unabhängig davon welche Option Sie gewählt haben, der Modus 'Indiziert' verwendet."
75
+ "CP Live","Live"
76
+ "CP Indexed","Indiziert"
77
+ "CP Channelpilot Product Feed Export","ChannelPilot Produktfeed-Export"
78
+ "CP Index product data for the Channelpilot product feed export","Indiziert die Produktdaten für den ChannelPilot Produktfeed-Export"
79
+ "CP You have added more than %s data fields for the product feed export. Please note that with this amount the 'indexed' export method will re used regardless of the selected one. Keep in mind that you have to keep the ChannelPilot Product Feed Export index up to date.","Sie haben mehr als %s Datenfelder für den ChannelPilot Produktfeed-Export ausgewählt. Bitte beachten Sie, dass unabhängig von der gewählten Option, fortan der Exportmodus 'Indiziert' verwendet wird. Halten Sie daher bitte den ChannelPilot Produktfeed-Export-Index aktuell."
80
+ "CP Product ID","Produkt ID"
81
+ "CP Product SKU","Produkt SKU"
82
+ "CP Created At","Erstellt"
83
+ "CP Showing feed export data for product %s and store %s - Created at: %s","Zeige Exportdaten für das Produkt %s und Store %s - die Daten wurden erstellt am: %s"
84
+ "CP Please specify store.","Bitte geben Sie den Store an."
85
+ "CP The data has been deleted. Please reindex the export data.","Die Daten wurden gelöscht. Bitte reindizieren Sie die Exportdaten."
86
+ "CP Warning, this will delete all entries and the data has to be reindexed. Proceed ?","Warnung, sämtliche Exportdaten werden gelöscht. Möchten Sie fortfahren ?"
87
+ "CP Truncate Index Table","Indextabelle leeren"
88
+
89
+ "CP Default url: https://seller.api.channelpilot.com/3_2?wsdl", "Standard Url: https://seller.api.channelpilot.com/3_2?wsdl"
90
+ "CP Seller api wsdl url","Seller api wsdl url"
91
+
92
+ "CP Product Url Generation Method","Methode zur Erstellung der Produkt-URL"
93
+ "CP base url + url_path","Basis URL + url_path"
94
+ "CP base url + url_key","Basis URL + url_key"
95
+ "CP base url + url_key + .html","Basis URL + url_key + .html"
96
+ "CP Method getProductUrl","getProductUrl Methode"
97
+ "CP Method getUrlInStore","getUrlInStore Methode"
98
+
99
+ "CP In which field you want to save the externalTransactionId?","Wo wollen Sie die externalTransactionId gespeichert haben?"
app/locale/de_DE/Channelpilotsolutions_Channelpilot.csv CHANGED
@@ -1,97 +1,99 @@
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
- "CP Number additional productimages","Anzahl zusätzlicher Produktbilder"
29
- "CP How many additional productimages should be exported?","Wieviele zusätzliche Produktbilder sollen exportiert werden?"
30
-
31
- "CP Marketplace Integration","Marktplatzanbindung"
32
- "CP Marketplace Integration Settings","Marktplatzanbindung Einstellungen"
33
-
34
- "CP Repricing","Preissteuerung"
35
- "CP Repricing Settings","Preissteuerung konfigurieren"
36
- "CP General Repricing","Globale Preissteuerung"
37
- "CP Field for price","Preisfeld"
38
- "CP This field would be overwritten by the new product price.","Dieses Preisfeld wird von dem neuen Preis überschrieben."
39
- "CP Save prices net or gross?","Preis in netto oder brutto speichern?"
40
-
41
- "CP ChannelPilot-Payment","ChannelPilot Payment"
42
- "CP !!!This is no real payment method!!!","!!!Das ist keine richtige Zahlmethode!!!"
43
- "CP Title","Bezeichnung"
44
- "CP Order Status","Bestellstatus"
45
- "CP Payment Types","Zahlarten"
46
-
47
- "CP Activate?","Aktivieren?"
48
- "CP Add","Hinzufügen"
49
- "CP Delete","Löschen"
50
- "CP OrderStatus Imported (payed)?","Status von importierten bezahlten Bestellungen?"
51
- "CP OrderStatus Imported (unpayed)?","Status von importierten nicht bezahlten Bestellungen?"
52
-
53
- "This shipping method is currently unavailable.","Diese Versandart ist derzeit nicht verfügbar."
54
- "CP ChannelPilot - Shipping Method", "ChannelPilot - Versandmethode"
55
- "CP Enabled","Aktiviert"
56
- "CP Use for backend only","Nur im Backend-Bereich aktivieren"
57
- "CP Title","Titel"
58
- "CP Method Name","Name der Versandart"
59
- "CP Price","Preis"
60
- "CP Ship to Applicable Countries","Versand an verfügbare Länder"
61
- "CP Show Method if Not Applicable","Versandart anzeigen wenn diese nicht verfügbar ist"
62
- "CP Ship to Specific Countries","Versand nur in folgende Länder"
63
- "CP Displayed Error Message","Angezeigte Fehlermeldung"
64
- "CP Sort Order","Sortierreihenfolge"
65
-
66
- "CP Tracking Method","Tracking Methode"
67
- "CP Image","Bild"
68
- "CP JavaScript","JavaScript"
69
-
70
- "CP Use Admin Mode for order import","Admin-Modus für den Import der Marktplatzbestellungen benutzen"
71
- "CP When importing marketplace orders you can use the admin mode. When choosing the admin mode please note that all checks are disabled thar are normally applied, like: ordering a product which amount is less than the configured minimum allowed quantity in shopping cart, import orders which have products that are sold out or the available amount is less than the ordered amount.","Wenn Marktplatzbestellungen importiert werden kann der Admin-Modus genutz werden. Sollte dieser genutzt werden dann bedenken Sie bitte, dass sämtliche Prüfungen nicht durchlaufen werden die es normalerweise tun, wie: die bestellte Menge ist geringer als die eingestellte Mindestbestellmenge; Bestellungen werden importiert die Produkte haben die ausverkauft oder nur noch in einer geringeren Stückzahl vorhanden sind."
72
-
73
- "CP Export Method","Exportmethode"
74
- "CP If you choose the indexed method, make sure that the 'Channelpilot Product Feed Export' index is always up to date. Please note, that if you select more than 40 data fields, that the indexed method will be used regardless of the selected option.","Wenn Sie die Methode 'Indiziert' wählen, dann müssen Sie sicherstellen, dass der Index 'Channelpilot Produktfeed-Export' immer aktuell ist. Sollten Sie mehr als 40 Datenfelder ausgewählt haben, wird, unabhängig davon welche Option Sie gewählt haben, der Modus 'Indiziert' verwendet."
75
- "CP Live","Live"
76
- "CP Indexed","Indiziert"
77
- "CP Channelpilot Product Feed Export","ChannelPilot Produktfeed-Export"
78
- "CP Index product data for the Channelpilot product feed export","Indiziert die Produktdaten für den ChannelPilot Produktfeed-Export"
79
- "CP You have added more than %s data fields for the product feed export. Please note that with this amount the 'indexed' export method will re used regardless of the selected one. Keep in mind that you have to keep the ChannelPilot Product Feed Export index up to date.","Sie haben mehr als %s Datenfelder für den ChannelPilot Produktfeed-Export ausgewählt. Bitte beachten Sie, dass unabhängig von der gewählten Option, fortan der Exportmodus 'Indiziert' verwendet wird. Halten Sie daher bitte den ChannelPilot Produktfeed-Export-Index aktuell."
80
- "CP Product ID","Produkt ID"
81
- "CP Product SKU","Produkt SKU"
82
- "CP Created At","Erstellt"
83
- "CP Showing feed export data for product %s and store %s - Created at: %s","Zeige Exportdaten für das Produkt %s und Store %s - die Daten wurden erstellt am: %s"
84
- "CP Please specify store.","Bitte geben Sie den Store an."
85
- "CP The data has been deleted. Please reindex the export data.","Die Daten wurden gelöscht. Bitte reindizieren Sie die Exportdaten."
86
- "CP Warning, this will delete all entries and the data has to be reindexed. Proceed ?","Warnung, sämtliche Exportdaten werden gelöscht. Möchten Sie fortfahren ?"
87
- "CP Truncate Index Table","Indextabelle leeren"
88
-
89
- "CP Default url: https://seller.api.channelpilot.com/1_0?wsdl", "Standard Url: https://seller.api.channelpilot.com/1_0?wsdl"
90
- "CP Seller api wsdl url","Seller api wsdl url"
91
-
92
- "CP Product Url Generation Method","Methode zur Erstellung der Produkt-URL"
93
- "CP base url + url_path","Basis URL + url_path"
94
- "CP base url + url_key","Basis URL + url_key"
95
- "CP base url + url_key + .html","Basis URL + url_key + .html"
96
- "CP Method getProductUrl","getProductUrl Methode"
97
- "CP Method getUrlInStore","getUrlInStore Methode"
 
 
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
+ "CP Number additional productimages","Anzahl zusätzlicher Produktbilder"
29
+ "CP How many additional productimages should be exported?","Wieviele zusätzliche Produktbilder sollen exportiert werden?"
30
+
31
+ "CP Marketplace Integration","Marktplatzanbindung"
32
+ "CP Marketplace Integration Settings","Marktplatzanbindung Einstellungen"
33
+
34
+ "CP Repricing","Preissteuerung"
35
+ "CP Repricing Settings","Preissteuerung konfigurieren"
36
+ "CP General Repricing","Globale Preissteuerung"
37
+ "CP Field for price","Preisfeld"
38
+ "CP This field would be overwritten by the new product price.","Dieses Preisfeld wird von dem neuen Preis überschrieben."
39
+ "CP Save prices net or gross?","Preis in netto oder brutto speichern?"
40
+
41
+ "CP ChannelPilot-Payment","ChannelPilot Payment"
42
+ "CP !!!This is no real payment method!!!","!!!Das ist keine richtige Zahlmethode!!!"
43
+ "CP Title","Bezeichnung"
44
+ "CP Order Status","Bestellstatus"
45
+ "CP Payment Types","Zahlarten"
46
+
47
+ "CP Activate?","Aktivieren?"
48
+ "CP Add","Hinzufügen"
49
+ "CP Delete","Löschen"
50
+ "CP OrderStatus Imported (payed)?","Status von importierten bezahlten Bestellungen?"
51
+ "CP OrderStatus Imported (unpayed)?","Status von importierten nicht bezahlten Bestellungen?"
52
+
53
+ "This shipping method is currently unavailable.","Diese Versandart ist derzeit nicht verfügbar."
54
+ "CP ChannelPilot - Shipping Method", "ChannelPilot - Versandmethode"
55
+ "CP Enabled","Aktiviert"
56
+ "CP Use for backend only","Nur im Backend-Bereich aktivieren"
57
+ "CP Title","Titel"
58
+ "CP Method Name","Name der Versandart"
59
+ "CP Price","Preis"
60
+ "CP Ship to Applicable Countries","Versand an verfügbare Länder"
61
+ "CP Show Method if Not Applicable","Versandart anzeigen wenn diese nicht verfügbar ist"
62
+ "CP Ship to Specific Countries","Versand nur in folgende Länder"
63
+ "CP Displayed Error Message","Angezeigte Fehlermeldung"
64
+ "CP Sort Order","Sortierreihenfolge"
65
+
66
+ "CP Tracking Method","Tracking Methode"
67
+ "CP Image","Bild"
68
+ "CP JavaScript","JavaScript"
69
+
70
+ "CP Use Admin Mode for order import","Admin-Modus für den Import der Marktplatzbestellungen benutzen"
71
+ "CP When importing marketplace orders you can use the admin mode. When choosing the admin mode please note that all checks are disabled thar are normally applied, like: ordering a product which amount is less than the configured minimum allowed quantity in shopping cart, import orders which have products that are sold out or the available amount is less than the ordered amount.","Wenn Marktplatzbestellungen importiert werden kann der Admin-Modus genutz werden. Sollte dieser genutzt werden dann bedenken Sie bitte, dass sämtliche Prüfungen nicht durchlaufen werden die es normalerweise tun, wie: die bestellte Menge ist geringer als die eingestellte Mindestbestellmenge; Bestellungen werden importiert die Produkte haben die ausverkauft oder nur noch in einer geringeren Stückzahl vorhanden sind."
72
+
73
+ "CP Export Method","Exportmethode"
74
+ "CP If you choose the indexed method, make sure that the 'Channelpilot Product Feed Export' index is always up to date. Please note, that if you select more than 40 data fields, that the indexed method will be used regardless of the selected option.","Wenn Sie die Methode 'Indiziert' wählen, dann müssen Sie sicherstellen, dass der Index 'Channelpilot Produktfeed-Export' immer aktuell ist. Sollten Sie mehr als 40 Datenfelder ausgewählt haben, wird, unabhängig davon welche Option Sie gewählt haben, der Modus 'Indiziert' verwendet."
75
+ "CP Live","Live"
76
+ "CP Indexed","Indiziert"
77
+ "CP Channelpilot Product Feed Export","ChannelPilot Produktfeed-Export"
78
+ "CP Index product data for the Channelpilot product feed export","Indiziert die Produktdaten für den ChannelPilot Produktfeed-Export"
79
+ "CP You have added more than %s data fields for the product feed export. Please note that with this amount the 'indexed' export method will re used regardless of the selected one. Keep in mind that you have to keep the ChannelPilot Product Feed Export index up to date.","Sie haben mehr als %s Datenfelder für den ChannelPilot Produktfeed-Export ausgewählt. Bitte beachten Sie, dass unabhängig von der gewählten Option, fortan der Exportmodus 'Indiziert' verwendet wird. Halten Sie daher bitte den ChannelPilot Produktfeed-Export-Index aktuell."
80
+ "CP Product ID","Produkt ID"
81
+ "CP Product SKU","Produkt SKU"
82
+ "CP Created At","Erstellt"
83
+ "CP Showing feed export data for product %s and store %s - Created at: %s","Zeige Exportdaten für das Produkt %s und Store %s - die Daten wurden erstellt am: %s"
84
+ "CP Please specify store.","Bitte geben Sie den Store an."
85
+ "CP The data has been deleted. Please reindex the export data.","Die Daten wurden gelöscht. Bitte reindizieren Sie die Exportdaten."
86
+ "CP Warning, this will delete all entries and the data has to be reindexed. Proceed ?","Warnung, sämtliche Exportdaten werden gelöscht. Möchten Sie fortfahren ?"
87
+ "CP Truncate Index Table","Indextabelle leeren"
88
+
89
+ "CP Default url: https://seller.api.channelpilot.com/3_2?wsdl", "Standard Url: https://seller.api.channelpilot.com/3_2?wsdl"
90
+ "CP Seller api wsdl url","Seller api wsdl url"
91
+
92
+ "CP Product Url Generation Method","Methode zur Erstellung der Produkt-URL"
93
+ "CP base url + url_path","Basis URL + url_path"
94
+ "CP base url + url_key","Basis URL + url_key"
95
+ "CP base url + url_key + .html","Basis URL + url_key + .html"
96
+ "CP Method getProductUrl","getProductUrl Methode"
97
+ "CP Method getUrlInStore","getUrlInStore Methode"
98
+
99
+ "CP In which field you want to save the externalTransactionId?","Wo wollen Sie die externalTransactionId gespeichert haben?"
app/locale/en_AU/Channelpilotsolutions_Channelpilot.csv CHANGED
@@ -1,97 +1,99 @@
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
- "CP Number additional productimages","Number additional productimages"
29
- "CP How many additional productimages should be exported?","How many additional productimages should be exported?"
30
-
31
- "CP Marketplace Integration","Marketplace integration"
32
- "CP Marketplace Integration Settings","Marketplace integration settings"
33
-
34
- "CP Repricing","Repricing"
35
- "CP Repricing Settings","Repricing settings"
36
- "CP General Repricing","General repricing"
37
- "CP Field for price","Price field"
38
- "CP This field would be overwritten by the new product price.","This price field will be replaced by the new price"
39
- "CP Save prices net or gross?","Save prices net or gross?"
40
-
41
- "CP ChannelPilot-Payment","ChannelPilot payment"
42
- "CP !!!This is no real payment method!!!","!!!This payment method is not valid!!!"
43
- "CP Title","Title"
44
- "CP Order Status","Order status"
45
- "CP Payment Types","Payment methods"
46
-
47
- "CP Activate?","Activate?"
48
- "CP Add","Add"
49
- "CP Delete","Delete"
50
- "CP OrderStatus Imported (payed)?","Status of imported orders (payed)?"
51
- "CP OrderStatus Imported (unpayed)?","Status of imported orders (unpayed)?"
52
-
53
- "This shipping method is currently unavailable.","This shipping method is currently unavailable."
54
- "CP ChannelPilot - Shipping Method", "ChannelPilot - Shipping Method"
55
- "CP Enabled","Enabled"
56
- "CP Use for backend only","Use for backend only"
57
- "CP Title","Title"
58
- "CP Method Name","Method Name"
59
- "CP Price","Price"
60
- "CP Ship to Applicable Countries","Ship to Applicable Countries"
61
- "CP Show Method if Not Applicable","Show Method If Not Applicable"
62
- "CP Ship to Specific Countries","Ship to Specific Countries"
63
- "CP Displayed Error Message","Displayed Error Message"
64
- "CP Sort Order","Sort Order"
65
-
66
- "CP Tracking Method","Tracking Method"
67
- "CP Image","Image"
68
- "CP JavaScript","JavaScript"
69
-
70
- "CP Use Admin Mode for order import","Use Admin Mode for order import"
71
- "CP When importing marketplace orders you can use the admin mode. When choosing the admin mode please note that all checks are disabled thar are normally applied, like: ordering a product which amount is less than the configured minimum allowed quantity in shopping cart, import orders which have products that are sold out or the available amount is less than the ordered amount.","CP When importing marketplace orders you can use the admin mode. When choosing the admin mode please note that all checks are disabled thar are normally applied, like: ordering a product which amount is less than the configured minimum allowed quantity in shopping cart, import orders which have products that are sold out or the available amount is less than the ordered amount."
72
-
73
- "CP Export Method","Export Method"
74
- "CP If you choose the indexed method, make sure that the 'Channelpilot Product Feed Export' index is always up to date. Please note, that if you select more than 40 data fields, that the indexed method will be used regardless of the selected option.","If you choose the indexed method, make sure that the 'Channelpilot Product Feed Export' index is always up to date. Please note, that if you select more than 40 data fields, that the indexed method will be used regardless of the selected option."
75
- "CP Live","Live"
76
- "CP Indexed","Indexed"
77
- "CP Channelpilot Product Feed Export","ChannelPilot Product Feed Export"
78
- "CP Index product data for the Channelpilot product feed export","Index product data for the Channelpilot product feed export"
79
- "CP You have added more than %s data fields for the product feed export. Please note that with this amount the 'indexed' export method will re used regardless of the selected one. Keep in mind that you have to keep the ChannelPilot Product Feed Export index up to date.","You have added more than %s data fields for the product feed export. Please note that with this amount the 'indexed' export method will re used regardless of the selected one. Keep in mind that you have to keep the ChannelPilot Product Feed Export index up to date."
80
- "CP Product ID","Product ID"
81
- "CP Product SKU","Product SKU"
82
- "CP Created At","Created at"
83
- "CP Showing feed export data for product %s and store %s - Created at: %s","Showing feed export data for product %s and store %s - Created at: %s"
84
- "CP Please specify store.","Please specify store."
85
- "CP The data has been deleted. Please reindex the export data.","The data has been deleted. Please reindex the export data."
86
- "CP Warning, this will delete all entries and the data has to be reindexed. Proceed ?","Warning, this will delete all entries and the data has to be reindexed. Do you wish to proceed ?"
87
- "CP Truncate Index Table","Truncate Index Table"
88
-
89
- "CP Default url: https://seller.api.channelpilot.com/1_0?wsdl", "Default url: https://seller.api.channelpilot.com/1_0?wsdl"
90
- "CP Seller api wsdl url","Seller api wsdl url"
91
-
92
- "CP Product Url Generation Method","Product Url Generation Method"
93
- "CP base url + url_path","base url + url_path"
94
- "CP base url + url_key","base url + url_key"
95
- "CP base url + url_key + .html","base url + url_key + .html"
96
- "CP Method getProductUrl","Method getProductUrl"
97
- "CP Method getUrlInStore","Method getUrlInStore"
 
 
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
+ "CP Number additional productimages","Number additional productimages"
29
+ "CP How many additional productimages should be exported?","How many additional productimages should be exported?"
30
+
31
+ "CP Marketplace Integration","Marketplace integration"
32
+ "CP Marketplace Integration Settings","Marketplace integration settings"
33
+
34
+ "CP Repricing","Repricing"
35
+ "CP Repricing Settings","Repricing settings"
36
+ "CP General Repricing","General repricing"
37
+ "CP Field for price","Price field"
38
+ "CP This field would be overwritten by the new product price.","This price field will be replaced by the new price"
39
+ "CP Save prices net or gross?","Save prices net or gross?"
40
+
41
+ "CP ChannelPilot-Payment","ChannelPilot payment"
42
+ "CP !!!This is no real payment method!!!","!!!This payment method is not valid!!!"
43
+ "CP Title","Title"
44
+ "CP Order Status","Order status"
45
+ "CP Payment Types","Payment methods"
46
+
47
+ "CP Activate?","Activate?"
48
+ "CP Add","Add"
49
+ "CP Delete","Delete"
50
+ "CP OrderStatus Imported (payed)?","Status of imported orders (payed)?"
51
+ "CP OrderStatus Imported (unpayed)?","Status of imported orders (unpayed)?"
52
+
53
+ "This shipping method is currently unavailable.","This shipping method is currently unavailable."
54
+ "CP ChannelPilot - Shipping Method", "ChannelPilot - Shipping Method"
55
+ "CP Enabled","Enabled"
56
+ "CP Use for backend only","Use for backend only"
57
+ "CP Title","Title"
58
+ "CP Method Name","Method Name"
59
+ "CP Price","Price"
60
+ "CP Ship to Applicable Countries","Ship to Applicable Countries"
61
+ "CP Show Method if Not Applicable","Show Method If Not Applicable"
62
+ "CP Ship to Specific Countries","Ship to Specific Countries"
63
+ "CP Displayed Error Message","Displayed Error Message"
64
+ "CP Sort Order","Sort Order"
65
+
66
+ "CP Tracking Method","Tracking Method"
67
+ "CP Image","Image"
68
+ "CP JavaScript","JavaScript"
69
+
70
+ "CP Use Admin Mode for order import","Use Admin Mode for order import"
71
+ "CP When importing marketplace orders you can use the admin mode. When choosing the admin mode please note that all checks are disabled thar are normally applied, like: ordering a product which amount is less than the configured minimum allowed quantity in shopping cart, import orders which have products that are sold out or the available amount is less than the ordered amount.","CP When importing marketplace orders you can use the admin mode. When choosing the admin mode please note that all checks are disabled thar are normally applied, like: ordering a product which amount is less than the configured minimum allowed quantity in shopping cart, import orders which have products that are sold out or the available amount is less than the ordered amount."
72
+
73
+ "CP Export Method","Export Method"
74
+ "CP If you choose the indexed method, make sure that the 'Channelpilot Product Feed Export' index is always up to date. Please note, that if you select more than 40 data fields, that the indexed method will be used regardless of the selected option.","If you choose the indexed method, make sure that the 'Channelpilot Product Feed Export' index is always up to date. Please note, that if you select more than 40 data fields, that the indexed method will be used regardless of the selected option."
75
+ "CP Live","Live"
76
+ "CP Indexed","Indexed"
77
+ "CP Channelpilot Product Feed Export","ChannelPilot Product Feed Export"
78
+ "CP Index product data for the Channelpilot product feed export","Index product data for the Channelpilot product feed export"
79
+ "CP You have added more than %s data fields for the product feed export. Please note that with this amount the 'indexed' export method will re used regardless of the selected one. Keep in mind that you have to keep the ChannelPilot Product Feed Export index up to date.","You have added more than %s data fields for the product feed export. Please note that with this amount the 'indexed' export method will re used regardless of the selected one. Keep in mind that you have to keep the ChannelPilot Product Feed Export index up to date."
80
+ "CP Product ID","Product ID"
81
+ "CP Product SKU","Product SKU"
82
+ "CP Created At","Created at"
83
+ "CP Showing feed export data for product %s and store %s - Created at: %s","Showing feed export data for product %s and store %s - Created at: %s"
84
+ "CP Please specify store.","Please specify store."
85
+ "CP The data has been deleted. Please reindex the export data.","The data has been deleted. Please reindex the export data."
86
+ "CP Warning, this will delete all entries and the data has to be reindexed. Proceed ?","Warning, this will delete all entries and the data has to be reindexed. Do you wish to proceed ?"
87
+ "CP Truncate Index Table","Truncate Index Table"
88
+
89
+ "CP Default url: https://seller.api.channelpilot.com/3_2?wsdl", "Default url: https://seller.api.channelpilot.com/3_2?wsdl"
90
+ "CP Seller api wsdl url","Seller api wsdl url"
91
+
92
+ "CP Product Url Generation Method","Product Url Generation Method"
93
+ "CP base url + url_path","base url + url_path"
94
+ "CP base url + url_key","base url + url_key"
95
+ "CP base url + url_key + .html","base url + url_key + .html"
96
+ "CP Method getProductUrl","Method getProductUrl"
97
+ "CP Method getUrlInStore","Method getUrlInStore"
98
+
99
+ "CP In which field you want to save the externalTransactionId?","In which field you want to save the externalTransactionId?"
app/locale/en_CA/Channelpilotsolutions_Channelpilot.csv CHANGED
@@ -1,97 +1,99 @@
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
- "CP Number additional productimages","Number additional productimages"
29
- "CP How many additional productimages should be exported?","How many additional productimages should be exported?"
30
-
31
- "CP Marketplace Integration","Marketplace integration"
32
- "CP Marketplace Integration Settings","Marketplace integration settings"
33
-
34
- "CP Repricing","Repricing"
35
- "CP Repricing Settings","Repricing settings"
36
- "CP General Repricing","General repricing"
37
- "CP Field for price","Price field"
38
- "CP This field would be overwritten by the new product price.","This price field will be replaced by the new price"
39
- "CP Save prices net or gross?","Save prices net or gross?"
40
-
41
- "CP ChannelPilot-Payment","ChannelPilot payment"
42
- "CP !!!This is no real payment method!!!","!!!This payment method is not valid!!!"
43
- "CP Title","Title"
44
- "CP Order Status","Order status"
45
- "CP Payment Types","Payment methods"
46
-
47
- "CP Activate?","Activate?"
48
- "CP Add","Add"
49
- "CP Delete","Delete"
50
- "CP OrderStatus Imported (payed)?","Status of imported orders (payed)?"
51
- "CP OrderStatus Imported (unpayed)?","Status of imported orders (unpayed)?"
52
-
53
- "This shipping method is currently unavailable.","This shipping method is currently unavailable."
54
- "CP ChannelPilot - Shipping Method", "ChannelPilot - Shipping Method"
55
- "CP Enabled","Enabled"
56
- "CP Use for backend only","Use for backend only"
57
- "CP Title","Title"
58
- "CP Method Name","Method Name"
59
- "CP Price","Price"
60
- "CP Ship to Applicable Countries","Ship to Applicable Countries"
61
- "CP Show Method if Not Applicable","Show Method If Not Applicable"
62
- "CP Ship to Specific Countries","Ship to Specific Countries"
63
- "CP Displayed Error Message","Displayed Error Message"
64
- "CP Sort Order","Sort Order"
65
-
66
- "CP Tracking Method","Tracking Method"
67
- "CP Image","Image"
68
- "CP JavaScript","JavaScript"
69
-
70
- "CP Use Admin Mode for order import","Use Admin Mode for order import"
71
- "CP When importing marketplace orders you can use the admin mode. When choosing the admin mode please note that all checks are disabled thar are normally applied, like: ordering a product which amount is less than the configured minimum allowed quantity in shopping cart, import orders which have products that are sold out or the available amount is less than the ordered amount.","CP When importing marketplace orders you can use the admin mode. When choosing the admin mode please note that all checks are disabled thar are normally applied, like: ordering a product which amount is less than the configured minimum allowed quantity in shopping cart, import orders which have products that are sold out or the available amount is less than the ordered amount."
72
-
73
- "CP Export Method","Export Method"
74
- "CP If you choose the indexed method, make sure that the 'Channelpilot Product Feed Export' index is always up to date. Please note, that if you select more than 40 data fields, that the indexed method will be used regardless of the selected option.","If you choose the indexed method, make sure that the 'Channelpilot Product Feed Export' index is always up to date. Please note, that if you select more than 40 data fields, that the indexed method will be used regardless of the selected option."
75
- "CP Live","Live"
76
- "CP Indexed","Indexed"
77
- "CP Channelpilot Product Feed Export","ChannelPilot Product Feed Export"
78
- "CP Index product data for the Channelpilot product feed export","Index product data for the Channelpilot product feed export"
79
- "CP You have added more than %s data fields for the product feed export. Please note that with this amount the 'indexed' export method will re used regardless of the selected one. Keep in mind that you have to keep the ChannelPilot Product Feed Export index up to date.","You have added more than %s data fields for the product feed export. Please note that with this amount the 'indexed' export method will re used regardless of the selected one. Keep in mind that you have to keep the ChannelPilot Product Feed Export index up to date."
80
- "CP Product ID","Product ID"
81
- "CP Product SKU","Product SKU"
82
- "CP Created At","Created at"
83
- "CP Showing feed export data for product %s and store %s - Created at: %s","Showing feed export data for product %s and store %s - Created at: %s"
84
- "CP Please specify store.","Please specify store."
85
- "CP The data has been deleted. Please reindex the export data.","The data has been deleted. Please reindex the export data."
86
- "CP Warning, this will delete all entries and the data has to be reindexed. Proceed ?","Warning, this will delete all entries and the data has to be reindexed. Do you wish to proceed ?"
87
- "CP Truncate Index Table","Truncate Index Table"
88
-
89
- "CP Default url: https://seller.api.channelpilot.com/1_0?wsdl", "Default url: https://seller.api.channelpilot.com/1_0?wsdl"
90
- "CP Seller api wsdl url","Seller api wsdl url"
91
-
92
- "CP Product Url Generation Method","Product Url Generation Method"
93
- "CP base url + url_path","base url + url_path"
94
- "CP base url + url_key","base url + url_key"
95
- "CP base url + url_key + .html","base url + url_key + .html"
96
- "CP Method getProductUrl","Method getProductUrl"
97
- "CP Method getUrlInStore","Method getUrlInStore"
 
 
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
+ "CP Number additional productimages","Number additional productimages"
29
+ "CP How many additional productimages should be exported?","How many additional productimages should be exported?"
30
+
31
+ "CP Marketplace Integration","Marketplace integration"
32
+ "CP Marketplace Integration Settings","Marketplace integration settings"
33
+
34
+ "CP Repricing","Repricing"
35
+ "CP Repricing Settings","Repricing settings"
36
+ "CP General Repricing","General repricing"
37
+ "CP Field for price","Price field"
38
+ "CP This field would be overwritten by the new product price.","This price field will be replaced by the new price"
39
+ "CP Save prices net or gross?","Save prices net or gross?"
40
+
41
+ "CP ChannelPilot-Payment","ChannelPilot payment"
42
+ "CP !!!This is no real payment method!!!","!!!This payment method is not valid!!!"
43
+ "CP Title","Title"
44
+ "CP Order Status","Order status"
45
+ "CP Payment Types","Payment methods"
46
+
47
+ "CP Activate?","Activate?"
48
+ "CP Add","Add"
49
+ "CP Delete","Delete"
50
+ "CP OrderStatus Imported (payed)?","Status of imported orders (payed)?"
51
+ "CP OrderStatus Imported (unpayed)?","Status of imported orders (unpayed)?"
52
+
53
+ "This shipping method is currently unavailable.","This shipping method is currently unavailable."
54
+ "CP ChannelPilot - Shipping Method", "ChannelPilot - Shipping Method"
55
+ "CP Enabled","Enabled"
56
+ "CP Use for backend only","Use for backend only"
57
+ "CP Title","Title"
58
+ "CP Method Name","Method Name"
59
+ "CP Price","Price"
60
+ "CP Ship to Applicable Countries","Ship to Applicable Countries"
61
+ "CP Show Method if Not Applicable","Show Method If Not Applicable"
62
+ "CP Ship to Specific Countries","Ship to Specific Countries"
63
+ "CP Displayed Error Message","Displayed Error Message"
64
+ "CP Sort Order","Sort Order"
65
+
66
+ "CP Tracking Method","Tracking Method"
67
+ "CP Image","Image"
68
+ "CP JavaScript","JavaScript"
69
+
70
+ "CP Use Admin Mode for order import","Use Admin Mode for order import"
71
+ "CP When importing marketplace orders you can use the admin mode. When choosing the admin mode please note that all checks are disabled thar are normally applied, like: ordering a product which amount is less than the configured minimum allowed quantity in shopping cart, import orders which have products that are sold out or the available amount is less than the ordered amount.","CP When importing marketplace orders you can use the admin mode. When choosing the admin mode please note that all checks are disabled thar are normally applied, like: ordering a product which amount is less than the configured minimum allowed quantity in shopping cart, import orders which have products that are sold out or the available amount is less than the ordered amount."
72
+
73
+ "CP Export Method","Export Method"
74
+ "CP If you choose the indexed method, make sure that the 'Channelpilot Product Feed Export' index is always up to date. Please note, that if you select more than 40 data fields, that the indexed method will be used regardless of the selected option.","If you choose the indexed method, make sure that the 'Channelpilot Product Feed Export' index is always up to date. Please note, that if you select more than 40 data fields, that the indexed method will be used regardless of the selected option."
75
+ "CP Live","Live"
76
+ "CP Indexed","Indexed"
77
+ "CP Channelpilot Product Feed Export","ChannelPilot Product Feed Export"
78
+ "CP Index product data for the Channelpilot product feed export","Index product data for the Channelpilot product feed export"
79
+ "CP You have added more than %s data fields for the product feed export. Please note that with this amount the 'indexed' export method will re used regardless of the selected one. Keep in mind that you have to keep the ChannelPilot Product Feed Export index up to date.","You have added more than %s data fields for the product feed export. Please note that with this amount the 'indexed' export method will re used regardless of the selected one. Keep in mind that you have to keep the ChannelPilot Product Feed Export index up to date."
80
+ "CP Product ID","Product ID"
81
+ "CP Product SKU","Product SKU"
82
+ "CP Created At","Created at"
83
+ "CP Showing feed export data for product %s and store %s - Created at: %s","Showing feed export data for product %s and store %s - Created at: %s"
84
+ "CP Please specify store.","Please specify store."
85
+ "CP The data has been deleted. Please reindex the export data.","The data has been deleted. Please reindex the export data."
86
+ "CP Warning, this will delete all entries and the data has to be reindexed. Proceed ?","Warning, this will delete all entries and the data has to be reindexed. Do you wish to proceed ?"
87
+ "CP Truncate Index Table","Truncate Index Table"
88
+
89
+ "CP Default url: https://seller.api.channelpilot.com/3_2?wsdl", "Default url: https://seller.api.channelpilot.com/3_2?wsdl"
90
+ "CP Seller api wsdl url","Seller api wsdl url"
91
+
92
+ "CP Product Url Generation Method","Product Url Generation Method"
93
+ "CP base url + url_path","base url + url_path"
94
+ "CP base url + url_key","base url + url_key"
95
+ "CP base url + url_key + .html","base url + url_key + .html"
96
+ "CP Method getProductUrl","Method getProductUrl"
97
+ "CP Method getUrlInStore","Method getUrlInStore"
98
+
99
+ "CP In which field you want to save the externalTransactionId?","In which field you want to save the externalTransactionId?"
app/locale/en_GB/Channelpilotsolutions_Channelpilot.csv CHANGED
@@ -1,97 +1,99 @@
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
- "CP Number additional productimages","Number additional productimages"
29
- "CP How many additional productimages should be exported?","How many additional productimages should be exported?"
30
-
31
- "CP Marketplace Integration","Marketplace integration"
32
- "CP Marketplace Integration Settings","Marketplace integration settings"
33
-
34
- "CP Repricing","Repricing"
35
- "CP Repricing Settings","Repricing settings"
36
- "CP General Repricing","General repricing"
37
- "CP Field for price","Price field"
38
- "CP This field would be overwritten by the new product price.","This price field will be replaced by the new price"
39
- "CP Save prices net or gross?","Save prices net or gross?"
40
-
41
- "CP ChannelPilot-Payment","ChannelPilot payment"
42
- "CP !!!This is no real payment method!!!","!!!This payment method is not valid!!!"
43
- "CP Title","Title"
44
- "CP Order Status","Order status"
45
- "CP Payment Types","Payment methods"
46
-
47
- "CP Activate?","Activate?"
48
- "CP Add","Add"
49
- "CP Delete","Delete"
50
- "CP OrderStatus Imported (payed)?","Status of imported orders (payed)?"
51
- "CP OrderStatus Imported (unpayed)?","Status of imported orders (unpayed)?"
52
-
53
- "This shipping method is currently unavailable.","This shipping method is currently unavailable."
54
- "CP ChannelPilot - Shipping Method", "ChannelPilot - Shipping Method"
55
- "CP Enabled","Enabled"
56
- "CP Use for backend only","Use for backend only"
57
- "CP Title","Title"
58
- "CP Method Name","Method Name"
59
- "CP Price","Price"
60
- "CP Ship to Applicable Countries","Ship to Applicable Countries"
61
- "CP Show Method if Not Applicable","Show Method If Not Applicable"
62
- "CP Ship to Specific Countries","Ship to Specific Countries"
63
- "CP Displayed Error Message","Displayed Error Message"
64
- "CP Sort Order","Sort Order"
65
-
66
- "CP Tracking Method","Tracking Method"
67
- "CP Image","Image"
68
- "CP JavaScript","JavaScript"
69
-
70
- "CP Use Admin Mode for order import","Use Admin Mode for order import"
71
- "CP When importing marketplace orders you can use the admin mode. When choosing the admin mode please note that all checks are disabled thar are normally applied, like: ordering a product which amount is less than the configured minimum allowed quantity in shopping cart, import orders which have products that are sold out or the available amount is less than the ordered amount.","CP When importing marketplace orders you can use the admin mode. When choosing the admin mode please note that all checks are disabled thar are normally applied, like: ordering a product which amount is less than the configured minimum allowed quantity in shopping cart, import orders which have products that are sold out or the available amount is less than the ordered amount."
72
-
73
- "CP Export Method","Export Method"
74
- "CP If you choose the indexed method, make sure that the 'Channelpilot Product Feed Export' index is always up to date. Please note, that if you select more than 40 data fields, that the indexed method will be used regardless of the selected option.","If you choose the indexed method, make sure that the 'Channelpilot Product Feed Export' index is always up to date. Please note, that if you select more than 40 data fields, that the indexed method will be used regardless of the selected option."
75
- "CP Live","Live"
76
- "CP Indexed","Indexed"
77
- "CP Channelpilot Product Feed Export","ChannelPilot Product Feed Export"
78
- "CP Index product data for the Channelpilot product feed export","Index product data for the Channelpilot product feed export"
79
- "CP You have added more than %s data fields for the product feed export. Please note that with this amount the 'indexed' export method will re used regardless of the selected one. Keep in mind that you have to keep the ChannelPilot Product Feed Export index up to date.","You have added more than %s data fields for the product feed export. Please note that with this amount the 'indexed' export method will re used regardless of the selected one. Keep in mind that you have to keep the ChannelPilot Product Feed Export index up to date."
80
- "CP Product ID","Product ID"
81
- "CP Product SKU","Product SKU"
82
- "CP Created At","Created at"
83
- "CP Showing feed export data for product %s and store %s - Created at: %s","Showing feed export data for product %s and store %s - Created at: %s"
84
- "CP Please specify store.","Please specify store."
85
- "CP The data has been deleted. Please reindex the export data.","The data has been deleted. Please reindex the export data."
86
- "CP Warning, this will delete all entries and the data has to be reindexed. Proceed ?","Warning, this will delete all entries and the data has to be reindexed. Do you wish to proceed ?"
87
- "CP Truncate Index Table","Truncate Index Table"
88
-
89
- "CP Default url: https://seller.api.channelpilot.com/1_0?wsdl", "Default url: https://seller.api.channelpilot.com/1_0?wsdl"
90
- "CP Seller api wsdl url","Seller api wsdl url"
91
-
92
- "CP Product Url Generation Method","Product Url Generation Method"
93
- "CP base url + url_path","base url + url_path"
94
- "CP base url + url_key","base url + url_key"
95
- "CP base url + url_key + .html","base url + url_key + .html"
96
- "CP Method getProductUrl","Method getProductUrl"
97
- "CP Method getUrlInStore","Method getUrlInStore"
 
 
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
+ "CP Number additional productimages","Number additional productimages"
29
+ "CP How many additional productimages should be exported?","How many additional productimages should be exported?"
30
+
31
+ "CP Marketplace Integration","Marketplace integration"
32
+ "CP Marketplace Integration Settings","Marketplace integration settings"
33
+
34
+ "CP Repricing","Repricing"
35
+ "CP Repricing Settings","Repricing settings"
36
+ "CP General Repricing","General repricing"
37
+ "CP Field for price","Price field"
38
+ "CP This field would be overwritten by the new product price.","This price field will be replaced by the new price"
39
+ "CP Save prices net or gross?","Save prices net or gross?"
40
+
41
+ "CP ChannelPilot-Payment","ChannelPilot payment"
42
+ "CP !!!This is no real payment method!!!","!!!This payment method is not valid!!!"
43
+ "CP Title","Title"
44
+ "CP Order Status","Order status"
45
+ "CP Payment Types","Payment methods"
46
+
47
+ "CP Activate?","Activate?"
48
+ "CP Add","Add"
49
+ "CP Delete","Delete"
50
+ "CP OrderStatus Imported (payed)?","Status of imported orders (payed)?"
51
+ "CP OrderStatus Imported (unpayed)?","Status of imported orders (unpayed)?"
52
+
53
+ "This shipping method is currently unavailable.","This shipping method is currently unavailable."
54
+ "CP ChannelPilot - Shipping Method", "ChannelPilot - Shipping Method"
55
+ "CP Enabled","Enabled"
56
+ "CP Use for backend only","Use for backend only"
57
+ "CP Title","Title"
58
+ "CP Method Name","Method Name"
59
+ "CP Price","Price"
60
+ "CP Ship to Applicable Countries","Ship to Applicable Countries"
61
+ "CP Show Method if Not Applicable","Show Method If Not Applicable"
62
+ "CP Ship to Specific Countries","Ship to Specific Countries"
63
+ "CP Displayed Error Message","Displayed Error Message"
64
+ "CP Sort Order","Sort Order"
65
+
66
+ "CP Tracking Method","Tracking Method"
67
+ "CP Image","Image"
68
+ "CP JavaScript","JavaScript"
69
+
70
+ "CP Use Admin Mode for order import","Use Admin Mode for order import"
71
+ "CP When importing marketplace orders you can use the admin mode. When choosing the admin mode please note that all checks are disabled thar are normally applied, like: ordering a product which amount is less than the configured minimum allowed quantity in shopping cart, import orders which have products that are sold out or the available amount is less than the ordered amount.","CP When importing marketplace orders you can use the admin mode. When choosing the admin mode please note that all checks are disabled thar are normally applied, like: ordering a product which amount is less than the configured minimum allowed quantity in shopping cart, import orders which have products that are sold out or the available amount is less than the ordered amount."
72
+
73
+ "CP Export Method","Export Method"
74
+ "CP If you choose the indexed method, make sure that the 'Channelpilot Product Feed Export' index is always up to date. Please note, that if you select more than 40 data fields, that the indexed method will be used regardless of the selected option.","If you choose the indexed method, make sure that the 'Channelpilot Product Feed Export' index is always up to date. Please note, that if you select more than 40 data fields, that the indexed method will be used regardless of the selected option."
75
+ "CP Live","Live"
76
+ "CP Indexed","Indexed"
77
+ "CP Channelpilot Product Feed Export","ChannelPilot Product Feed Export"
78
+ "CP Index product data for the Channelpilot product feed export","Index product data for the Channelpilot product feed export"
79
+ "CP You have added more than %s data fields for the product feed export. Please note that with this amount the 'indexed' export method will re used regardless of the selected one. Keep in mind that you have to keep the ChannelPilot Product Feed Export index up to date.","You have added more than %s data fields for the product feed export. Please note that with this amount the 'indexed' export method will re used regardless of the selected one. Keep in mind that you have to keep the ChannelPilot Product Feed Export index up to date."
80
+ "CP Product ID","Product ID"
81
+ "CP Product SKU","Product SKU"
82
+ "CP Created At","Created at"
83
+ "CP Showing feed export data for product %s and store %s - Created at: %s","Showing feed export data for product %s and store %s - Created at: %s"
84
+ "CP Please specify store.","Please specify store."
85
+ "CP The data has been deleted. Please reindex the export data.","The data has been deleted. Please reindex the export data."
86
+ "CP Warning, this will delete all entries and the data has to be reindexed. Proceed ?","Warning, this will delete all entries and the data has to be reindexed. Do you wish to proceed ?"
87
+ "CP Truncate Index Table","Truncate Index Table"
88
+
89
+ "CP Default url: https://seller.api.channelpilot.com/3_2?wsdl", "Default url: https://seller.api.channelpilot.com/3_2?wsdl"
90
+ "CP Seller api wsdl url","Seller api wsdl url"
91
+
92
+ "CP Product Url Generation Method","Product Url Generation Method"
93
+ "CP base url + url_path","base url + url_path"
94
+ "CP base url + url_key","base url + url_key"
95
+ "CP base url + url_key + .html","base url + url_key + .html"
96
+ "CP Method getProductUrl","Method getProductUrl"
97
+ "CP Method getUrlInStore","Method getUrlInStore"
98
+
99
+ "CP In which field you want to save the externalTransactionId?","In which field you want to save the externalTransactionId?"
app/locale/en_IE/Channelpilotsolutions_Channelpilot.csv CHANGED
@@ -1,97 +1,99 @@
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
- "CP Number additional productimages","Number additional productimages"
29
- "CP How many additional productimages should be exported?","How many additional productimages should be exported?"
30
-
31
- "CP Marketplace Integration","Marketplace integration"
32
- "CP Marketplace Integration Settings","Marketplace integration settings"
33
-
34
- "CP Repricing","Repricing"
35
- "CP Repricing Settings","Repricing settings"
36
- "CP General Repricing","General repricing"
37
- "CP Field for price","Price field"
38
- "CP This field would be overwritten by the new product price.","This price field will be replaced by the new price"
39
- "CP Save prices net or gross?","Save prices net or gross?"
40
-
41
- "CP ChannelPilot-Payment","ChannelPilot payment"
42
- "CP !!!This is no real payment method!!!","!!!This payment method is not valid!!!"
43
- "CP Title","Title"
44
- "CP Order Status","Order status"
45
- "CP Payment Types","Payment methods"
46
-
47
- "CP Activate?","Activate?"
48
- "CP Add","Add"
49
- "CP Delete","Delete"
50
- "CP OrderStatus Imported (payed)?","Status of imported orders (payed)?"
51
- "CP OrderStatus Imported (unpayed)?","Status of imported orders (unpayed)?"
52
-
53
- "This shipping method is currently unavailable.","This shipping method is currently unavailable."
54
- "CP ChannelPilot - Shipping Method", "ChannelPilot - Shipping Method"
55
- "CP Enabled","Enabled"
56
- "CP Use for backend only","Use for backend only"
57
- "CP Title","Title"
58
- "CP Method Name","Method Name"
59
- "CP Price","Price"
60
- "CP Ship to Applicable Countries","Ship to Applicable Countries"
61
- "CP Show Method if Not Applicable","Show Method If Not Applicable"
62
- "CP Ship to Specific Countries","Ship to Specific Countries"
63
- "CP Displayed Error Message","Displayed Error Message"
64
- "CP Sort Order","Sort Order"
65
-
66
- "CP Tracking Method","Tracking Method"
67
- "CP Image","Image"
68
- "CP JavaScript","JavaScript"
69
-
70
- "CP Use Admin Mode for order import","Use Admin Mode for order import"
71
- "CP When importing marketplace orders you can use the admin mode. When choosing the admin mode please note that all checks are disabled thar are normally applied, like: ordering a product which amount is less than the configured minimum allowed quantity in shopping cart, import orders which have products that are sold out or the available amount is less than the ordered amount.","CP When importing marketplace orders you can use the admin mode. When choosing the admin mode please note that all checks are disabled thar are normally applied, like: ordering a product which amount is less than the configured minimum allowed quantity in shopping cart, import orders which have products that are sold out or the available amount is less than the ordered amount."
72
-
73
- "CP Export Method","Export Method"
74
- "CP If you choose the indexed method, make sure that the 'Channelpilot Product Feed Export' index is always up to date. Please note, that if you select more than 40 data fields, that the indexed method will be used regardless of the selected option.","If you choose the indexed method, make sure that the 'Channelpilot Product Feed Export' index is always up to date. Please note, that if you select more than 40 data fields, that the indexed method will be used regardless of the selected option."
75
- "CP Live","Live"
76
- "CP Indexed","Indexed"
77
- "CP Channelpilot Product Feed Export","ChannelPilot Product Feed Export"
78
- "CP Index product data for the Channelpilot product feed export","Index product data for the Channelpilot product feed export"
79
- "CP You have added more than %s data fields for the product feed export. Please note that with this amount the 'indexed' export method will re used regardless of the selected one. Keep in mind that you have to keep the ChannelPilot Product Feed Export index up to date.","You have added more than %s data fields for the product feed export. Please note that with this amount the 'indexed' export method will re used regardless of the selected one. Keep in mind that you have to keep the ChannelPilot Product Feed Export index up to date."
80
- "CP Product ID","Product ID"
81
- "CP Product SKU","Product SKU"
82
- "CP Created At","Created at"
83
- "CP Showing feed export data for product %s and store %s - Created at: %s","Showing feed export data for product %s and store %s - Created at: %s"
84
- "CP Please specify store.","Please specify store."
85
- "CP The data has been deleted. Please reindex the export data.","The data has been deleted. Please reindex the export data."
86
- "CP Warning, this will delete all entries and the data has to be reindexed. Proceed ?","Warning, this will delete all entries and the data has to be reindexed. Do you wish to proceed ?"
87
- "CP Truncate Index Table","Truncate Index Table"
88
-
89
- "CP Default url: https://seller.api.channelpilot.com/1_0?wsdl", "Default url: https://seller.api.channelpilot.com/1_0?wsdl"
90
- "CP Seller api wsdl url","Seller api wsdl url"
91
-
92
- "CP Product Url Generation Method","Product Url Generation Method"
93
- "CP base url + url_path","base url + url_path"
94
- "CP base url + url_key","base url + url_key"
95
- "CP base url + url_key + .html","base url + url_key + .html"
96
- "CP Method getProductUrl","Method getProductUrl"
97
- "CP Method getUrlInStore","Method getUrlInStore"
 
 
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
+ "CP Number additional productimages","Number additional productimages"
29
+ "CP How many additional productimages should be exported?","How many additional productimages should be exported?"
30
+
31
+ "CP Marketplace Integration","Marketplace integration"
32
+ "CP Marketplace Integration Settings","Marketplace integration settings"
33
+
34
+ "CP Repricing","Repricing"
35
+ "CP Repricing Settings","Repricing settings"
36
+ "CP General Repricing","General repricing"
37
+ "CP Field for price","Price field"
38
+ "CP This field would be overwritten by the new product price.","This price field will be replaced by the new price"
39
+ "CP Save prices net or gross?","Save prices net or gross?"
40
+
41
+ "CP ChannelPilot-Payment","ChannelPilot payment"
42
+ "CP !!!This is no real payment method!!!","!!!This payment method is not valid!!!"
43
+ "CP Title","Title"
44
+ "CP Order Status","Order status"
45
+ "CP Payment Types","Payment methods"
46
+
47
+ "CP Activate?","Activate?"
48
+ "CP Add","Add"
49
+ "CP Delete","Delete"
50
+ "CP OrderStatus Imported (payed)?","Status of imported orders (payed)?"
51
+ "CP OrderStatus Imported (unpayed)?","Status of imported orders (unpayed)?"
52
+
53
+ "This shipping method is currently unavailable.","This shipping method is currently unavailable."
54
+ "CP ChannelPilot - Shipping Method", "ChannelPilot - Shipping Method"
55
+ "CP Enabled","Enabled"
56
+ "CP Use for backend only","Use for backend only"
57
+ "CP Title","Title"
58
+ "CP Method Name","Method Name"
59
+ "CP Price","Price"
60
+ "CP Ship to Applicable Countries","Ship to Applicable Countries"
61
+ "CP Show Method if Not Applicable","Show Method If Not Applicable"
62
+ "CP Ship to Specific Countries","Ship to Specific Countries"
63
+ "CP Displayed Error Message","Displayed Error Message"
64
+ "CP Sort Order","Sort Order"
65
+
66
+ "CP Tracking Method","Tracking Method"
67
+ "CP Image","Image"
68
+ "CP JavaScript","JavaScript"
69
+
70
+ "CP Use Admin Mode for order import","Use Admin Mode for order import"
71
+ "CP When importing marketplace orders you can use the admin mode. When choosing the admin mode please note that all checks are disabled thar are normally applied, like: ordering a product which amount is less than the configured minimum allowed quantity in shopping cart, import orders which have products that are sold out or the available amount is less than the ordered amount.","CP When importing marketplace orders you can use the admin mode. When choosing the admin mode please note that all checks are disabled thar are normally applied, like: ordering a product which amount is less than the configured minimum allowed quantity in shopping cart, import orders which have products that are sold out or the available amount is less than the ordered amount."
72
+
73
+ "CP Export Method","Export Method"
74
+ "CP If you choose the indexed method, make sure that the 'Channelpilot Product Feed Export' index is always up to date. Please note, that if you select more than 40 data fields, that the indexed method will be used regardless of the selected option.","If you choose the indexed method, make sure that the 'Channelpilot Product Feed Export' index is always up to date. Please note, that if you select more than 40 data fields, that the indexed method will be used regardless of the selected option."
75
+ "CP Live","Live"
76
+ "CP Indexed","Indexed"
77
+ "CP Channelpilot Product Feed Export","ChannelPilot Product Feed Export"
78
+ "CP Index product data for the Channelpilot product feed export","Index product data for the Channelpilot product feed export"
79
+ "CP You have added more than %s data fields for the product feed export. Please note that with this amount the 'indexed' export method will re used regardless of the selected one. Keep in mind that you have to keep the ChannelPilot Product Feed Export index up to date.","You have added more than %s data fields for the product feed export. Please note that with this amount the 'indexed' export method will re used regardless of the selected one. Keep in mind that you have to keep the ChannelPilot Product Feed Export index up to date."
80
+ "CP Product ID","Product ID"
81
+ "CP Product SKU","Product SKU"
82
+ "CP Created At","Created at"
83
+ "CP Showing feed export data for product %s and store %s - Created at: %s","Showing feed export data for product %s and store %s - Created at: %s"
84
+ "CP Please specify store.","Please specify store."
85
+ "CP The data has been deleted. Please reindex the export data.","The data has been deleted. Please reindex the export data."
86
+ "CP Warning, this will delete all entries and the data has to be reindexed. Proceed ?","Warning, this will delete all entries and the data has to be reindexed. Do you wish to proceed ?"
87
+ "CP Truncate Index Table","Truncate Index Table"
88
+
89
+ "CP Default url: https://seller.api.channelpilot.com/3_2?wsdl", "Default url: https://seller.api.channelpilot.com/3_2?wsdl"
90
+ "CP Seller api wsdl url","Seller api wsdl url"
91
+
92
+ "CP Product Url Generation Method","Product Url Generation Method"
93
+ "CP base url + url_path","base url + url_path"
94
+ "CP base url + url_key","base url + url_key"
95
+ "CP base url + url_key + .html","base url + url_key + .html"
96
+ "CP Method getProductUrl","Method getProductUrl"
97
+ "CP Method getUrlInStore","Method getUrlInStore"
98
+
99
+ "CP In which field you want to save the externalTransactionId?","In which field you want to save the externalTransactionId?"
app/locale/en_NZ/Channelpilotsolutions_Channelpilot.csv CHANGED
@@ -1,97 +1,99 @@
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
- "CP Number additional productimages","Number additional productimages"
29
- "CP How many additional productimages should be exported?","How many additional productimages should be exported?"
30
-
31
- "CP Marketplace Integration","Marketplace integration"
32
- "CP Marketplace Integration Settings","Marketplace integration settings"
33
-
34
- "CP Repricing","Repricing"
35
- "CP Repricing Settings","Repricing settings"
36
- "CP General Repricing","General repricing"
37
- "CP Field for price","Price field"
38
- "CP This field would be overwritten by the new product price.","This price field will be replaced by the new price"
39
- "CP Save prices net or gross?","Save prices net or gross?"
40
-
41
- "CP ChannelPilot-Payment","ChannelPilot payment"
42
- "CP !!!This is no real payment method!!!","!!!This payment method is not valid!!!"
43
- "CP Title","Title"
44
- "CP Order Status","Order status"
45
- "CP Payment Types","Payment methods"
46
-
47
- "CP Activate?","Activate?"
48
- "CP Add","Add"
49
- "CP Delete","Delete"
50
- "CP OrderStatus Imported (payed)?","Status of imported orders (payed)?"
51
- "CP OrderStatus Imported (unpayed)?","Status of imported orders (unpayed)?"
52
-
53
- "This shipping method is currently unavailable.","This shipping method is currently unavailable."
54
- "CP ChannelPilot - Shipping Method", "ChannelPilot - Shipping Method"
55
- "CP Enabled","Enabled"
56
- "CP Use for backend only","Use for backend only"
57
- "CP Title","Title"
58
- "CP Method Name","Method Name"
59
- "CP Price","Price"
60
- "CP Ship to Applicable Countries","Ship to Applicable Countries"
61
- "CP Show Method if Not Applicable","Show Method If Not Applicable"
62
- "CP Ship to Specific Countries","Ship to Specific Countries"
63
- "CP Displayed Error Message","Displayed Error Message"
64
- "CP Sort Order","Sort Order"
65
-
66
- "CP Tracking Method","Tracking Method"
67
- "CP Image","Image"
68
- "CP JavaScript","JavaScript"
69
-
70
- "CP Use Admin Mode for order import","Use Admin Mode for order import"
71
- "CP When importing marketplace orders you can use the admin mode. When choosing the admin mode please note that all checks are disabled thar are normally applied, like: ordering a product which amount is less than the configured minimum allowed quantity in shopping cart, import orders which have products that are sold out or the available amount is less than the ordered amount.","CP When importing marketplace orders you can use the admin mode. When choosing the admin mode please note that all checks are disabled thar are normally applied, like: ordering a product which amount is less than the configured minimum allowed quantity in shopping cart, import orders which have products that are sold out or the available amount is less than the ordered amount."
72
-
73
- "CP Export Method","Export Method"
74
- "CP If you choose the indexed method, make sure that the 'Channelpilot Product Feed Export' index is always up to date. Please note, that if you select more than 40 data fields, that the indexed method will be used regardless of the selected option.","If you choose the indexed method, make sure that the 'Channelpilot Product Feed Export' index is always up to date. Please note, that if you select more than 40 data fields, that the indexed method will be used regardless of the selected option."
75
- "CP Live","Live"
76
- "CP Indexed","Indexed"
77
- "CP Channelpilot Product Feed Export","ChannelPilot Product Feed Export"
78
- "CP Index product data for the Channelpilot product feed export","Index product data for the Channelpilot product feed export"
79
- "CP You have added more than %s data fields for the product feed export. Please note that with this amount the 'indexed' export method will re used regardless of the selected one. Keep in mind that you have to keep the ChannelPilot Product Feed Export index up to date.","You have added more than %s data fields for the product feed export. Please note that with this amount the 'indexed' export method will re used regardless of the selected one. Keep in mind that you have to keep the ChannelPilot Product Feed Export index up to date."
80
- "CP Product ID","Product ID"
81
- "CP Product SKU","Product SKU"
82
- "CP Created At","Created at"
83
- "CP Showing feed export data for product %s and store %s - Created at: %s","Showing feed export data for product %s and store %s - Created at: %s"
84
- "CP Please specify store.","Please specify store."
85
- "CP The data has been deleted. Please reindex the export data.","The data has been deleted. Please reindex the export data."
86
- "CP Warning, this will delete all entries and the data has to be reindexed. Proceed ?","Warning, this will delete all entries and the data has to be reindexed. Do you wish to proceed ?"
87
- "CP Truncate Index Table","Truncate Index Table"
88
-
89
- "CP Default url: https://seller.api.channelpilot.com/1_0?wsdl", "Default url: https://seller.api.channelpilot.com/1_0?wsdl"
90
- "CP Seller api wsdl url","Seller api wsdl url"
91
-
92
- "CP Product Url Generation Method","Product Url Generation Method"
93
- "CP base url + url_path","base url + url_path"
94
- "CP base url + url_key","base url + url_key"
95
- "CP base url + url_key + .html","base url + url_key + .html"
96
- "CP Method getProductUrl","Method getProductUrl"
97
- "CP Method getUrlInStore","Method getUrlInStore"
 
 
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
+ "CP Number additional productimages","Number additional productimages"
29
+ "CP How many additional productimages should be exported?","How many additional productimages should be exported?"
30
+
31
+ "CP Marketplace Integration","Marketplace integration"
32
+ "CP Marketplace Integration Settings","Marketplace integration settings"
33
+
34
+ "CP Repricing","Repricing"
35
+ "CP Repricing Settings","Repricing settings"
36
+ "CP General Repricing","General repricing"
37
+ "CP Field for price","Price field"
38
+ "CP This field would be overwritten by the new product price.","This price field will be replaced by the new price"
39
+ "CP Save prices net or gross?","Save prices net or gross?"
40
+
41
+ "CP ChannelPilot-Payment","ChannelPilot payment"
42
+ "CP !!!This is no real payment method!!!","!!!This payment method is not valid!!!"
43
+ "CP Title","Title"
44
+ "CP Order Status","Order status"
45
+ "CP Payment Types","Payment methods"
46
+
47
+ "CP Activate?","Activate?"
48
+ "CP Add","Add"
49
+ "CP Delete","Delete"
50
+ "CP OrderStatus Imported (payed)?","Status of imported orders (payed)?"
51
+ "CP OrderStatus Imported (unpayed)?","Status of imported orders (unpayed)?"
52
+
53
+ "This shipping method is currently unavailable.","This shipping method is currently unavailable."
54
+ "CP ChannelPilot - Shipping Method", "ChannelPilot - Shipping Method"
55
+ "CP Enabled","Enabled"
56
+ "CP Use for backend only","Use for backend only"
57
+ "CP Title","Title"
58
+ "CP Method Name","Method Name"
59
+ "CP Price","Price"
60
+ "CP Ship to Applicable Countries","Ship to Applicable Countries"
61
+ "CP Show Method if Not Applicable","Show Method If Not Applicable"
62
+ "CP Ship to Specific Countries","Ship to Specific Countries"
63
+ "CP Displayed Error Message","Displayed Error Message"
64
+ "CP Sort Order","Sort Order"
65
+
66
+ "CP Tracking Method","Tracking Method"
67
+ "CP Image","Image"
68
+ "CP JavaScript","JavaScript"
69
+
70
+ "CP Use Admin Mode for order import","Use Admin Mode for order import"
71
+ "CP When importing marketplace orders you can use the admin mode. When choosing the admin mode please note that all checks are disabled thar are normally applied, like: ordering a product which amount is less than the configured minimum allowed quantity in shopping cart, import orders which have products that are sold out or the available amount is less than the ordered amount.","CP When importing marketplace orders you can use the admin mode. When choosing the admin mode please note that all checks are disabled thar are normally applied, like: ordering a product which amount is less than the configured minimum allowed quantity in shopping cart, import orders which have products that are sold out or the available amount is less than the ordered amount."
72
+
73
+ "CP Export Method","Export Method"
74
+ "CP If you choose the indexed method, make sure that the 'Channelpilot Product Feed Export' index is always up to date. Please note, that if you select more than 40 data fields, that the indexed method will be used regardless of the selected option.","If you choose the indexed method, make sure that the 'Channelpilot Product Feed Export' index is always up to date. Please note, that if you select more than 40 data fields, that the indexed method will be used regardless of the selected option."
75
+ "CP Live","Live"
76
+ "CP Indexed","Indexed"
77
+ "CP Channelpilot Product Feed Export","ChannelPilot Product Feed Export"
78
+ "CP Index product data for the Channelpilot product feed export","Index product data for the Channelpilot product feed export"
79
+ "CP You have added more than %s data fields for the product feed export. Please note that with this amount the 'indexed' export method will re used regardless of the selected one. Keep in mind that you have to keep the ChannelPilot Product Feed Export index up to date.","You have added more than %s data fields for the product feed export. Please note that with this amount the 'indexed' export method will re used regardless of the selected one. Keep in mind that you have to keep the ChannelPilot Product Feed Export index up to date."
80
+ "CP Product ID","Product ID"
81
+ "CP Product SKU","Product SKU"
82
+ "CP Created At","Created at"
83
+ "CP Showing feed export data for product %s and store %s - Created at: %s","Showing feed export data for product %s and store %s - Created at: %s"
84
+ "CP Please specify store.","Please specify store."
85
+ "CP The data has been deleted. Please reindex the export data.","The data has been deleted. Please reindex the export data."
86
+ "CP Warning, this will delete all entries and the data has to be reindexed. Proceed ?","Warning, this will delete all entries and the data has to be reindexed. Do you wish to proceed ?"
87
+ "CP Truncate Index Table","Truncate Index Table"
88
+
89
+ "CP Default url: https://seller.api.channelpilot.com/3_2?wsdl", "Default url: https://seller.api.channelpilot.com/3_2?wsdl"
90
+ "CP Seller api wsdl url","Seller api wsdl url"
91
+
92
+ "CP Product Url Generation Method","Product Url Generation Method"
93
+ "CP base url + url_path","base url + url_path"
94
+ "CP base url + url_key","base url + url_key"
95
+ "CP base url + url_key + .html","base url + url_key + .html"
96
+ "CP Method getProductUrl","Method getProductUrl"
97
+ "CP Method getUrlInStore","Method getUrlInStore"
98
+
99
+ "CP In which field you want to save the externalTransactionId?","In which field you want to save the externalTransactionId?"
app/locale/en_US/Channelpilotsolutions_Channelpilot.csv CHANGED
@@ -1,97 +1,99 @@
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
- "CP Number additional productimages","Number additional productimages"
29
- "CP How many additional productimages should be exported?","How many additional productimages should be exported?"
30
-
31
- "CP Marketplace Integration","Marketplace integration"
32
- "CP Marketplace Integration Settings","Marketplace integration settings"
33
-
34
- "CP Repricing","Repricing"
35
- "CP Repricing Settings","Repricing settings"
36
- "CP General Repricing","General repricing"
37
- "CP Field for price","Price field"
38
- "CP This field would be overwritten by the new product price.","This price field will be replaced by the new price"
39
- "CP Save prices net or gross?","Save prices net or gross?"
40
-
41
- "CP ChannelPilot-Payment","ChannelPilot payment"
42
- "CP !!!This is no real payment method!!!","!!!This payment method is not valid!!!"
43
- "CP Title","Title"
44
- "CP Order Status","Order status"
45
- "CP Payment Types","Payment methods"
46
-
47
- "CP Activate?","Activate?"
48
- "CP Add","Add"
49
- "CP Delete","Delete"
50
- "CP OrderStatus Imported (payed)?","Status of imported orders (payed)?"
51
- "CP OrderStatus Imported (unpayed)?","Status of imported orders (unpayed)?"
52
-
53
- "This shipping method is currently unavailable.","This shipping method is currently unavailable."
54
- "CP ChannelPilot - Shipping Method", "ChannelPilot - Shipping Method"
55
- "CP Enabled","Enabled"
56
- "CP Use for backend only","Use for backend only"
57
- "CP Title","Title"
58
- "CP Method Name","Method Name"
59
- "CP Price","Price"
60
- "CP Ship to Applicable Countries","Ship to Applicable Countries"
61
- "CP Show Method if Not Applicable","Show Method If Not Applicable"
62
- "CP Ship to Specific Countries","Ship to Specific Countries"
63
- "CP Displayed Error Message","Displayed Error Message"
64
- "CP Sort Order","Sort Order"
65
-
66
- "CP Tracking Method","Tracking Method"
67
- "CP Image","Image"
68
- "CP JavaScript","JavaScript"
69
-
70
- "CP Use Admin Mode for order import","Use Admin Mode for order import"
71
- "CP When importing marketplace orders you can use the admin mode. When choosing the admin mode please note that all checks are disabled thar are normally applied, like: ordering a product which amount is less than the configured minimum allowed quantity in shopping cart, import orders which have products that are sold out or the available amount is less than the ordered amount.","CP When importing marketplace orders you can use the admin mode. When choosing the admin mode please note that all checks are disabled thar are normally applied, like: ordering a product which amount is less than the configured minimum allowed quantity in shopping cart, import orders which have products that are sold out or the available amount is less than the ordered amount."
72
-
73
- "CP Export Method","Export Method"
74
- "CP If you choose the indexed method, make sure that the 'Channelpilot Product Feed Export' index is always up to date. Please note, that if you select more than 40 data fields, that the indexed method will be used regardless of the selected option.","If you choose the indexed method, make sure that the 'Channelpilot Product Feed Export' index is always up to date. Please note, that if you select more than 40 data fields, that the indexed method will be used regardless of the selected option."
75
- "CP Live","Live"
76
- "CP Indexed","Indexed"
77
- "CP Channelpilot Product Feed Export","ChannelPilot Product Feed Export"
78
- "CP Index product data for the Channelpilot product feed export","Index product data for the Channelpilot product feed export"
79
- "CP You have added more than %s data fields for the product feed export. Please note that with this amount the 'indexed' export method will re used regardless of the selected one. Keep in mind that you have to keep the ChannelPilot Product Feed Export index up to date.","You have added more than %s data fields for the product feed export. Please note that with this amount the 'indexed' export method will re used regardless of the selected one. Keep in mind that you have to keep the ChannelPilot Product Feed Export index up to date."
80
- "CP Product ID","Product ID"
81
- "CP Product SKU","Product SKU"
82
- "CP Created At","Created at"
83
- "CP Showing feed export data for product %s and store %s - Created at: %s","Showing feed export data for product %s and store %s - Created at: %s"
84
- "CP Please specify store.","Please specify store."
85
- "CP The data has been deleted. Please reindex the export data.","The data has been deleted. Please reindex the export data."
86
- "CP Warning, this will delete all entries and the data has to be reindexed. Proceed ?","Warning, this will delete all entries and the data has to be reindexed. Do you wish to proceed ?"
87
- "CP Truncate Index Table","Truncate Index Table"
88
-
89
- "CP Default url: https://seller.api.channelpilot.com/1_0?wsdl", "Default url: https://seller.api.channelpilot.com/1_0?wsdl"
90
- "CP Seller api wsdl url","Seller api wsdl url"
91
-
92
- "CP Product Url Generation Method","Product Url Generation Method"
93
- "CP base url + url_path","base url + url_path"
94
- "CP base url + url_key","base url + url_key"
95
- "CP base url + url_key + .html","base url + url_key + .html"
96
- "CP Method getProductUrl","Method getProductUrl"
97
- "CP Method getUrlInStore","Method getUrlInStore"
 
 
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
+ "CP Number additional productimages","Number additional productimages"
29
+ "CP How many additional productimages should be exported?","How many additional productimages should be exported?"
30
+
31
+ "CP Marketplace Integration","Marketplace integration"
32
+ "CP Marketplace Integration Settings","Marketplace integration settings"
33
+
34
+ "CP Repricing","Repricing"
35
+ "CP Repricing Settings","Repricing settings"
36
+ "CP General Repricing","General repricing"
37
+ "CP Field for price","Price field"
38
+ "CP This field would be overwritten by the new product price.","This price field will be replaced by the new price"
39
+ "CP Save prices net or gross?","Save prices net or gross?"
40
+
41
+ "CP ChannelPilot-Payment","ChannelPilot payment"
42
+ "CP !!!This is no real payment method!!!","!!!This payment method is not valid!!!"
43
+ "CP Title","Title"
44
+ "CP Order Status","Order status"
45
+ "CP Payment Types","Payment methods"
46
+
47
+ "CP Activate?","Activate?"
48
+ "CP Add","Add"
49
+ "CP Delete","Delete"
50
+ "CP OrderStatus Imported (payed)?","Status of imported orders (payed)?"
51
+ "CP OrderStatus Imported (unpayed)?","Status of imported orders (unpayed)?"
52
+
53
+ "This shipping method is currently unavailable.","This shipping method is currently unavailable."
54
+ "CP ChannelPilot - Shipping Method", "ChannelPilot - Shipping Method"
55
+ "CP Enabled","Enabled"
56
+ "CP Use for backend only","Use for backend only"
57
+ "CP Title","Title"
58
+ "CP Method Name","Method Name"
59
+ "CP Price","Price"
60
+ "CP Ship to Applicable Countries","Ship to Applicable Countries"
61
+ "CP Show Method if Not Applicable","Show Method If Not Applicable"
62
+ "CP Ship to Specific Countries","Ship to Specific Countries"
63
+ "CP Displayed Error Message","Displayed Error Message"
64
+ "CP Sort Order","Sort Order"
65
+
66
+ "CP Tracking Method","Tracking Method"
67
+ "CP Image","Image"
68
+ "CP JavaScript","JavaScript"
69
+
70
+ "CP Use Admin Mode for order import","Use Admin Mode for order import"
71
+ "CP When importing marketplace orders you can use the admin mode. When choosing the admin mode please note that all checks are disabled thar are normally applied, like: ordering a product which amount is less than the configured minimum allowed quantity in shopping cart, import orders which have products that are sold out or the available amount is less than the ordered amount.","CP When importing marketplace orders you can use the admin mode. When choosing the admin mode please note that all checks are disabled thar are normally applied, like: ordering a product which amount is less than the configured minimum allowed quantity in shopping cart, import orders which have products that are sold out or the available amount is less than the ordered amount."
72
+
73
+ "CP Export Method","Export Method"
74
+ "CP If you choose the indexed method, make sure that the 'Channelpilot Product Feed Export' index is always up to date. Please note, that if you select more than 40 data fields, that the indexed method will be used regardless of the selected option.","If you choose the indexed method, make sure that the 'Channelpilot Product Feed Export' index is always up to date. Please note, that if you select more than 40 data fields, that the indexed method will be used regardless of the selected option."
75
+ "CP Live","Live"
76
+ "CP Indexed","Indexed"
77
+ "CP Channelpilot Product Feed Export","ChannelPilot Product Feed Export"
78
+ "CP Index product data for the Channelpilot product feed export","Index product data for the Channelpilot product feed export"
79
+ "CP You have added more than %s data fields for the product feed export. Please note that with this amount the 'indexed' export method will re used regardless of the selected one. Keep in mind that you have to keep the ChannelPilot Product Feed Export index up to date.","You have added more than %s data fields for the product feed export. Please note that with this amount the 'indexed' export method will re used regardless of the selected one. Keep in mind that you have to keep the ChannelPilot Product Feed Export index up to date."
80
+ "CP Product ID","Product ID"
81
+ "CP Product SKU","Product SKU"
82
+ "CP Created At","Created at"
83
+ "CP Showing feed export data for product %s and store %s - Created at: %s","Showing feed export data for product %s and store %s - Created at: %s"
84
+ "CP Please specify store.","Please specify store."
85
+ "CP The data has been deleted. Please reindex the export data.","The data has been deleted. Please reindex the export data."
86
+ "CP Warning, this will delete all entries and the data has to be reindexed. Proceed ?","Warning, this will delete all entries and the data has to be reindexed. Do you wish to proceed ?"
87
+ "CP Truncate Index Table","Truncate Index Table"
88
+
89
+ "CP Default url: https://seller.api.channelpilot.com/3_2?wsdl", "Default url: https://seller.api.channelpilot.com/3_2?wsdl"
90
+ "CP Seller api wsdl url","Seller api wsdl url"
91
+
92
+ "CP Product Url Generation Method","Product Url Generation Method"
93
+ "CP base url + url_path","base url + url_path"
94
+ "CP base url + url_key","base url + url_key"
95
+ "CP base url + url_key + .html","base url + url_key + .html"
96
+ "CP Method getProductUrl","Method getProductUrl"
97
+ "CP Method getUrlInStore","Method getUrlInStore"
98
+
99
+ "CP In which field you want to save the externalTransactionId?","In which field you want to save the externalTransactionId?"
app/locale/es_AR/Channelpilotsolutions_Channelpilot.csv CHANGED
@@ -1,64 +1,66 @@
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
- "CP Number additional productimages","Clasificar pedido"
29
- "CP How many additional productimages should be exported?","¿Cuántas imágenes adicionales quiere exportar?"
30
-
31
- "CP Marketplace Integration","Integración del mercado"
32
- "CP Marketplace Integration Settings","Configuración de la integración del mercado"
33
-
34
- "CP Repricing","Control de precios "
35
- "CP Repricing Settings","Configuración del control de precios"
36
- "CP General Repricing","Control de precios general"
37
- "CP Field for price","Campo de precio"
38
- "CP This field would be overwritten by the new product price.","Este campo de precio será sustituido por el precio nuevo"
39
- "CP Save prices net or gross?","¿Guardar precios en neto o en bruto?"
40
-
41
- "CP ChannelPilot-Payment","Pago ChannelPilot"
42
- "CP !!!This is no real payment method!!!","¡¡¡La forma de pago escogida no es válida!!!"
43
- "CP Title","Término"
44
- "CP Order Status","Estado del pedido"
45
- "CP Payment Types","Formas de pago"
46
-
47
- "CP Activate?","Activar?"
48
- "CP Add","Añadir"
49
- "CP Delete","Borrar"
50
- "CP OrderStatus Imported (payed)?","¿OrderStatus Importado (pagado)?"
51
- "CP OrderStatus Imported (unpayed)?","¿OrderStatus importado (no pagado)?"
52
-
53
- "This shipping method is currently unavailable.","El modo de envío no está disponible."
54
- "CP ChannelPilot - Shipping Method", "ChannelPilot - Modo de envío"
55
- "CP Enabled","Activad"
56
- "CP Use for backend only","Sólo para uso en el backend"
57
- "CP Title","Título"
58
- "CP Method Name","Nombre del modo"
59
- "CP Price","Precio"
60
- "CP Ship to Applicable Countries","Enviar a países aplicables."
61
- "CP Show Method if Not Applicable","Mostrar modo si no es aplicable."
62
- "CP Ship to Specific Countries","Enviar a países específicos."
63
- "CP Displayed Error Message","Mensaje de error mostrado"
64
- "CP Sort Order","Clasificar pedido"
 
 
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
+ "CP Number additional productimages","Clasificar pedido"
29
+ "CP How many additional productimages should be exported?","¿Cuántas imágenes adicionales quiere exportar?"
30
+
31
+ "CP Marketplace Integration","Integración del mercado"
32
+ "CP Marketplace Integration Settings","Configuración de la integración del mercado"
33
+
34
+ "CP Repricing","Control de precios "
35
+ "CP Repricing Settings","Configuración del control de precios"
36
+ "CP General Repricing","Control de precios general"
37
+ "CP Field for price","Campo de precio"
38
+ "CP This field would be overwritten by the new product price.","Este campo de precio será sustituido por el precio nuevo"
39
+ "CP Save prices net or gross?","¿Guardar precios en neto o en bruto?"
40
+
41
+ "CP ChannelPilot-Payment","Pago ChannelPilot"
42
+ "CP !!!This is no real payment method!!!","¡¡¡La forma de pago escogida no es válida!!!"
43
+ "CP Title","Término"
44
+ "CP Order Status","Estado del pedido"
45
+ "CP Payment Types","Formas de pago"
46
+
47
+ "CP Activate?","Activar?"
48
+ "CP Add","Añadir"
49
+ "CP Delete","Borrar"
50
+ "CP OrderStatus Imported (payed)?","¿OrderStatus Importado (pagado)?"
51
+ "CP OrderStatus Imported (unpayed)?","¿OrderStatus importado (no pagado)?"
52
+
53
+ "This shipping method is currently unavailable.","El modo de envío no está disponible."
54
+ "CP ChannelPilot - Shipping Method", "ChannelPilot - Modo de envío"
55
+ "CP Enabled","Activad"
56
+ "CP Use for backend only","Sólo para uso en el backend"
57
+ "CP Title","Título"
58
+ "CP Method Name","Nombre del modo"
59
+ "CP Price","Precio"
60
+ "CP Ship to Applicable Countries","Enviar a países aplicables."
61
+ "CP Show Method if Not Applicable","Mostrar modo si no es aplicable."
62
+ "CP Ship to Specific Countries","Enviar a países específicos."
63
+ "CP Displayed Error Message","Mensaje de error mostrado"
64
+ "CP Sort Order","Clasificar pedido"
65
+
66
+ "CP In which field you want to save the externalTransactionId?","¿En cuál campo desea guardar el externalTransactionId?"
app/locale/es_CL/Channelpilotsolutions_Channelpilot.csv CHANGED
@@ -1,64 +1,66 @@
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
- "CP Number additional productimages","Clasificar pedido"
29
- "CP How many additional productimages should be exported?","¿Cuántas imágenes adicionales quiere exportar?"
30
-
31
- "CP Marketplace Integration","Integración del mercado"
32
- "CP Marketplace Integration Settings","Configuración de la integración del mercado"
33
-
34
- "CP Repricing","Control de precios "
35
- "CP Repricing Settings","Configuración del control de precios"
36
- "CP General Repricing","Control de precios general"
37
- "CP Field for price","Campo de precio"
38
- "CP This field would be overwritten by the new product price.","Este campo de precio será sustituido por el precio nuevo"
39
- "CP Save prices net or gross?","¿Guardar precios en neto o en bruto?"
40
-
41
- "CP ChannelPilot-Payment","Pago ChannelPilot"
42
- "CP !!!This is no real payment method!!!","¡¡¡La forma de pago escogida no es válida!!!"
43
- "CP Title","Término"
44
- "CP Order Status","Estado del pedido"
45
- "CP Payment Types","Formas de pago"
46
-
47
- "CP Activate?","Activar?"
48
- "CP Add","Añadir"
49
- "CP Delete","Borrar"
50
- "CP OrderStatus Imported (payed)?","¿OrderStatus Importado (pagado)?"
51
- "CP OrderStatus Imported (unpayed)?","¿OrderStatus importado (no pagado)?"
52
-
53
- "This shipping method is currently unavailable.","El modo de envío no está disponible."
54
- "CP ChannelPilot - Shipping Method", "ChannelPilot - Modo de envío"
55
- "CP Enabled","Activad"
56
- "CP Use for backend only","Sólo para uso en el backend"
57
- "CP Title","Título"
58
- "CP Method Name","Nombre del modo"
59
- "CP Price","Precio"
60
- "CP Ship to Applicable Countries","Enviar a países aplicables."
61
- "CP Show Method if Not Applicable","Mostrar modo si no es aplicable."
62
- "CP Ship to Specific Countries","Enviar a países específicos."
63
- "CP Displayed Error Message","Mensaje de error mostrado"
64
- "CP Sort Order","Clasificar pedido"
 
 
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
+ "CP Number additional productimages","Clasificar pedido"
29
+ "CP How many additional productimages should be exported?","¿Cuántas imágenes adicionales quiere exportar?"
30
+
31
+ "CP Marketplace Integration","Integración del mercado"
32
+ "CP Marketplace Integration Settings","Configuración de la integración del mercado"
33
+
34
+ "CP Repricing","Control de precios "
35
+ "CP Repricing Settings","Configuración del control de precios"
36
+ "CP General Repricing","Control de precios general"
37
+ "CP Field for price","Campo de precio"
38
+ "CP This field would be overwritten by the new product price.","Este campo de precio será sustituido por el precio nuevo"
39
+ "CP Save prices net or gross?","¿Guardar precios en neto o en bruto?"
40
+
41
+ "CP ChannelPilot-Payment","Pago ChannelPilot"
42
+ "CP !!!This is no real payment method!!!","¡¡¡La forma de pago escogida no es válida!!!"
43
+ "CP Title","Término"
44
+ "CP Order Status","Estado del pedido"
45
+ "CP Payment Types","Formas de pago"
46
+
47
+ "CP Activate?","Activar?"
48
+ "CP Add","Añadir"
49
+ "CP Delete","Borrar"
50
+ "CP OrderStatus Imported (payed)?","¿OrderStatus Importado (pagado)?"
51
+ "CP OrderStatus Imported (unpayed)?","¿OrderStatus importado (no pagado)?"
52
+
53
+ "This shipping method is currently unavailable.","El modo de envío no está disponible."
54
+ "CP ChannelPilot - Shipping Method", "ChannelPilot - Modo de envío"
55
+ "CP Enabled","Activad"
56
+ "CP Use for backend only","Sólo para uso en el backend"
57
+ "CP Title","Título"
58
+ "CP Method Name","Nombre del modo"
59
+ "CP Price","Precio"
60
+ "CP Ship to Applicable Countries","Enviar a países aplicables."
61
+ "CP Show Method if Not Applicable","Mostrar modo si no es aplicable."
62
+ "CP Ship to Specific Countries","Enviar a países específicos."
63
+ "CP Displayed Error Message","Mensaje de error mostrado"
64
+ "CP Sort Order","Clasificar pedido"
65
+
66
+ "CP In which field you want to save the externalTransactionId?","¿En cuál campo desea guardar el externalTransactionId?"
app/locale/es_CO/Channelpilotsolutions_Channelpilot.csv CHANGED
@@ -1,64 +1,66 @@
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
- "CP Number additional productimages","Clasificar pedido"
29
- "CP How many additional productimages should be exported?","¿Cuántas imágenes adicionales quiere exportar?"
30
-
31
- "CP Marketplace Integration","Integración del mercado"
32
- "CP Marketplace Integration Settings","Configuración de la integración del mercado"
33
-
34
- "CP Repricing","Control de precios "
35
- "CP Repricing Settings","Configuración del control de precios"
36
- "CP General Repricing","Control de precios general"
37
- "CP Field for price","Campo de precio"
38
- "CP This field would be overwritten by the new product price.","Este campo de precio será sustituido por el precio nuevo"
39
- "CP Save prices net or gross?","¿Guardar precios en neto o en bruto?"
40
-
41
- "CP ChannelPilot-Payment","Pago ChannelPilot"
42
- "CP !!!This is no real payment method!!!","¡¡¡La forma de pago escogida no es válida!!!"
43
- "CP Title","Término"
44
- "CP Order Status","Estado del pedido"
45
- "CP Payment Types","Formas de pago"
46
-
47
- "CP Activate?","Activar?"
48
- "CP Add","Añadir"
49
- "CP Delete","Borrar"
50
- "CP OrderStatus Imported (payed)?","¿OrderStatus Importado (pagado)?"
51
- "CP OrderStatus Imported (unpayed)?","¿OrderStatus importado (no pagado)?"
52
-
53
- "This shipping method is currently unavailable.","El modo de envío no está disponible."
54
- "CP ChannelPilot - Shipping Method", "ChannelPilot - Modo de envío"
55
- "CP Enabled","Activad"
56
- "CP Use for backend only","Sólo para uso en el backend"
57
- "CP Title","Título"
58
- "CP Method Name","Nombre del modo"
59
- "CP Price","Precio"
60
- "CP Ship to Applicable Countries","Enviar a países aplicables."
61
- "CP Show Method if Not Applicable","Mostrar modo si no es aplicable."
62
- "CP Ship to Specific Countries","Enviar a países específicos."
63
- "CP Displayed Error Message","Mensaje de error mostrado"
64
- "CP Sort Order","Clasificar pedido"
 
 
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
+ "CP Number additional productimages","Clasificar pedido"
29
+ "CP How many additional productimages should be exported?","¿Cuántas imágenes adicionales quiere exportar?"
30
+
31
+ "CP Marketplace Integration","Integración del mercado"
32
+ "CP Marketplace Integration Settings","Configuración de la integración del mercado"
33
+
34
+ "CP Repricing","Control de precios "
35
+ "CP Repricing Settings","Configuración del control de precios"
36
+ "CP General Repricing","Control de precios general"
37
+ "CP Field for price","Campo de precio"
38
+ "CP This field would be overwritten by the new product price.","Este campo de precio será sustituido por el precio nuevo"
39
+ "CP Save prices net or gross?","¿Guardar precios en neto o en bruto?"
40
+
41
+ "CP ChannelPilot-Payment","Pago ChannelPilot"
42
+ "CP !!!This is no real payment method!!!","¡¡¡La forma de pago escogida no es válida!!!"
43
+ "CP Title","Término"
44
+ "CP Order Status","Estado del pedido"
45
+ "CP Payment Types","Formas de pago"
46
+
47
+ "CP Activate?","Activar?"
48
+ "CP Add","Añadir"
49
+ "CP Delete","Borrar"
50
+ "CP OrderStatus Imported (payed)?","¿OrderStatus Importado (pagado)?"
51
+ "CP OrderStatus Imported (unpayed)?","¿OrderStatus importado (no pagado)?"
52
+
53
+ "This shipping method is currently unavailable.","El modo de envío no está disponible."
54
+ "CP ChannelPilot - Shipping Method", "ChannelPilot - Modo de envío"
55
+ "CP Enabled","Activad"
56
+ "CP Use for backend only","Sólo para uso en el backend"
57
+ "CP Title","Título"
58
+ "CP Method Name","Nombre del modo"
59
+ "CP Price","Precio"
60
+ "CP Ship to Applicable Countries","Enviar a países aplicables."
61
+ "CP Show Method if Not Applicable","Mostrar modo si no es aplicable."
62
+ "CP Ship to Specific Countries","Enviar a países específicos."
63
+ "CP Displayed Error Message","Mensaje de error mostrado"
64
+ "CP Sort Order","Clasificar pedido"
65
+
66
+ "CP In which field you want to save the externalTransactionId?","¿En cuál campo desea guardar el externalTransactionId?"
app/locale/es_CR/Channelpilotsolutions_Channelpilot.csv CHANGED
@@ -1,64 +1,66 @@
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
- "CP Number additional productimages","Clasificar pedido"
29
- "CP How many additional productimages should be exported?","¿Cuántas imágenes adicionales quiere exportar?"
30
-
31
- "CP Marketplace Integration","Integración del mercado"
32
- "CP Marketplace Integration Settings","Configuración de la integración del mercado"
33
-
34
- "CP Repricing","Control de precios "
35
- "CP Repricing Settings","Configuración del control de precios"
36
- "CP General Repricing","Control de precios general"
37
- "CP Field for price","Campo de precio"
38
- "CP This field would be overwritten by the new product price.","Este campo de precio será sustituido por el precio nuevo"
39
- "CP Save prices net or gross?","¿Guardar precios en neto o en bruto?"
40
-
41
- "CP ChannelPilot-Payment","Pago ChannelPilot"
42
- "CP !!!This is no real payment method!!!","¡¡¡La forma de pago escogida no es válida!!!"
43
- "CP Title","Término"
44
- "CP Order Status","Estado del pedido"
45
- "CP Payment Types","Formas de pago"
46
-
47
- "CP Activate?","Activar?"
48
- "CP Add","Añadir"
49
- "CP Delete","Borrar"
50
- "CP OrderStatus Imported (payed)?","¿OrderStatus Importado (pagado)?"
51
- "CP OrderStatus Imported (unpayed)?","¿OrderStatus importado (no pagado)?"
52
-
53
- "This shipping method is currently unavailable.","El modo de envío no está disponible."
54
- "CP ChannelPilot - Shipping Method", "ChannelPilot - Modo de envío"
55
- "CP Enabled","Activad"
56
- "CP Use for backend only","Sólo para uso en el backend"
57
- "CP Title","Título"
58
- "CP Method Name","Nombre del modo"
59
- "CP Price","Precio"
60
- "CP Ship to Applicable Countries","Enviar a países aplicables."
61
- "CP Show Method if Not Applicable","Mostrar modo si no es aplicable."
62
- "CP Ship to Specific Countries","Enviar a países específicos."
63
- "CP Displayed Error Message","Mensaje de error mostrado"
64
- "CP Sort Order","Clasificar pedido"
 
 
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
+ "CP Number additional productimages","Clasificar pedido"
29
+ "CP How many additional productimages should be exported?","¿Cuántas imágenes adicionales quiere exportar?"
30
+
31
+ "CP Marketplace Integration","Integración del mercado"
32
+ "CP Marketplace Integration Settings","Configuración de la integración del mercado"
33
+
34
+ "CP Repricing","Control de precios "
35
+ "CP Repricing Settings","Configuración del control de precios"
36
+ "CP General Repricing","Control de precios general"
37
+ "CP Field for price","Campo de precio"
38
+ "CP This field would be overwritten by the new product price.","Este campo de precio será sustituido por el precio nuevo"
39
+ "CP Save prices net or gross?","¿Guardar precios en neto o en bruto?"
40
+
41
+ "CP ChannelPilot-Payment","Pago ChannelPilot"
42
+ "CP !!!This is no real payment method!!!","¡¡¡La forma de pago escogida no es válida!!!"
43
+ "CP Title","Término"
44
+ "CP Order Status","Estado del pedido"
45
+ "CP Payment Types","Formas de pago"
46
+
47
+ "CP Activate?","Activar?"
48
+ "CP Add","Añadir"
49
+ "CP Delete","Borrar"
50
+ "CP OrderStatus Imported (payed)?","¿OrderStatus Importado (pagado)?"
51
+ "CP OrderStatus Imported (unpayed)?","¿OrderStatus importado (no pagado)?"
52
+
53
+ "This shipping method is currently unavailable.","El modo de envío no está disponible."
54
+ "CP ChannelPilot - Shipping Method", "ChannelPilot - Modo de envío"
55
+ "CP Enabled","Activad"
56
+ "CP Use for backend only","Sólo para uso en el backend"
57
+ "CP Title","Título"
58
+ "CP Method Name","Nombre del modo"
59
+ "CP Price","Precio"
60
+ "CP Ship to Applicable Countries","Enviar a países aplicables."
61
+ "CP Show Method if Not Applicable","Mostrar modo si no es aplicable."
62
+ "CP Ship to Specific Countries","Enviar a países específicos."
63
+ "CP Displayed Error Message","Mensaje de error mostrado"
64
+ "CP Sort Order","Clasificar pedido"
65
+
66
+ "CP In which field you want to save the externalTransactionId?","¿En cuál campo desea guardar el externalTransactionId?"
app/locale/es_ES/Channelpilotsolutions_Channelpilot.csv CHANGED
@@ -1,64 +1,66 @@
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
- "CP Number additional productimages","Clasificar pedido"
29
- "CP How many additional productimages should be exported?","¿Cuántas imágenes adicionales quiere exportar?"
30
-
31
- "CP Marketplace Integration","Integración del mercado"
32
- "CP Marketplace Integration Settings","Configuración de la integración del mercado"
33
-
34
- "CP Repricing","Control de precios "
35
- "CP Repricing Settings","Configuración del control de precios"
36
- "CP General Repricing","Control de precios general"
37
- "CP Field for price","Campo de precio"
38
- "CP This field would be overwritten by the new product price.","Este campo de precio será sustituido por el precio nuevo"
39
- "CP Save prices net or gross?","¿Guardar precios en neto o en bruto?"
40
-
41
- "CP ChannelPilot-Payment","Pago ChannelPilot"
42
- "CP !!!This is no real payment method!!!","¡¡¡La forma de pago escogida no es válida!!!"
43
- "CP Title","Término"
44
- "CP Order Status","Estado del pedido"
45
- "CP Payment Types","Formas de pago"
46
-
47
- "CP Activate?","Activar?"
48
- "CP Add","Añadir"
49
- "CP Delete","Borrar"
50
- "CP OrderStatus Imported (payed)?","¿OrderStatus Importado (pagado)?"
51
- "CP OrderStatus Imported (unpayed)?","¿OrderStatus importado (no pagado)?"
52
-
53
- "This shipping method is currently unavailable.","El modo de envío no está disponible."
54
- "CP ChannelPilot - Shipping Method", "ChannelPilot - Modo de envío"
55
- "CP Enabled","Activad"
56
- "CP Use for backend only","Sólo para uso en el backend"
57
- "CP Title","Título"
58
- "CP Method Name","Nombre del modo"
59
- "CP Price","Precio"
60
- "CP Ship to Applicable Countries","Enviar a países aplicables."
61
- "CP Show Method if Not Applicable","Mostrar modo si no es aplicable."
62
- "CP Ship to Specific Countries","Enviar a países específicos."
63
- "CP Displayed Error Message","Mensaje de error mostrado"
64
- "CP Sort Order","Clasificar pedido"
 
 
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
+ "CP Number additional productimages","Clasificar pedido"
29
+ "CP How many additional productimages should be exported?","¿Cuántas imágenes adicionales quiere exportar?"
30
+
31
+ "CP Marketplace Integration","Integración del mercado"
32
+ "CP Marketplace Integration Settings","Configuración de la integración del mercado"
33
+
34
+ "CP Repricing","Control de precios "
35
+ "CP Repricing Settings","Configuración del control de precios"
36
+ "CP General Repricing","Control de precios general"
37
+ "CP Field for price","Campo de precio"
38
+ "CP This field would be overwritten by the new product price.","Este campo de precio será sustituido por el precio nuevo"
39
+ "CP Save prices net or gross?","¿Guardar precios en neto o en bruto?"
40
+
41
+ "CP ChannelPilot-Payment","Pago ChannelPilot"
42
+ "CP !!!This is no real payment method!!!","¡¡¡La forma de pago escogida no es válida!!!"
43
+ "CP Title","Término"
44
+ "CP Order Status","Estado del pedido"
45
+ "CP Payment Types","Formas de pago"
46
+
47
+ "CP Activate?","Activar?"
48
+ "CP Add","Añadir"
49
+ "CP Delete","Borrar"
50
+ "CP OrderStatus Imported (payed)?","¿OrderStatus Importado (pagado)?"
51
+ "CP OrderStatus Imported (unpayed)?","¿OrderStatus importado (no pagado)?"
52
+
53
+ "This shipping method is currently unavailable.","El modo de envío no está disponible."
54
+ "CP ChannelPilot - Shipping Method", "ChannelPilot - Modo de envío"
55
+ "CP Enabled","Activad"
56
+ "CP Use for backend only","Sólo para uso en el backend"
57
+ "CP Title","Título"
58
+ "CP Method Name","Nombre del modo"
59
+ "CP Price","Precio"
60
+ "CP Ship to Applicable Countries","Enviar a países aplicables."
61
+ "CP Show Method if Not Applicable","Mostrar modo si no es aplicable."
62
+ "CP Ship to Specific Countries","Enviar a países específicos."
63
+ "CP Displayed Error Message","Mensaje de error mostrado"
64
+ "CP Sort Order","Clasificar pedido"
65
+
66
+ "CP In which field you want to save the externalTransactionId?","¿En cuál campo desea guardar el externalTransactionId?"
app/locale/es_MX/Channelpilotsolutions_Channelpilot.csv CHANGED
@@ -1,64 +1,66 @@
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
- "CP Number additional productimages","Clasificar pedido"
29
- "CP How many additional productimages should be exported?","¿Cuántas imágenes adicionales quiere exportar?"
30
-
31
- "CP Marketplace Integration","Integración del mercado"
32
- "CP Marketplace Integration Settings","Configuración de la integración del mercado"
33
-
34
- "CP Repricing","Control de precios "
35
- "CP Repricing Settings","Configuración del control de precios"
36
- "CP General Repricing","Control de precios general"
37
- "CP Field for price","Campo de precio"
38
- "CP This field would be overwritten by the new product price.","Este campo de precio será sustituido por el precio nuevo"
39
- "CP Save prices net or gross?","¿Guardar precios en neto o en bruto?"
40
-
41
- "CP ChannelPilot-Payment","Pago ChannelPilot"
42
- "CP !!!This is no real payment method!!!","¡¡¡La forma de pago escogida no es válida!!!"
43
- "CP Title","Término"
44
- "CP Order Status","Estado del pedido"
45
- "CP Payment Types","Formas de pago"
46
-
47
- "CP Activate?","Activar?"
48
- "CP Add","Añadir"
49
- "CP Delete","Borrar"
50
- "CP OrderStatus Imported (payed)?","¿OrderStatus Importado (pagado)?"
51
- "CP OrderStatus Imported (unpayed)?","¿OrderStatus importado (no pagado)?"
52
-
53
- "This shipping method is currently unavailable.","El modo de envío no está disponible."
54
- "CP ChannelPilot - Shipping Method", "ChannelPilot - Modo de envío"
55
- "CP Enabled","Activad"
56
- "CP Use for backend only","Sólo para uso en el backend"
57
- "CP Title","Título"
58
- "CP Method Name","Nombre del modo"
59
- "CP Price","Precio"
60
- "CP Ship to Applicable Countries","Enviar a países aplicables."
61
- "CP Show Method if Not Applicable","Mostrar modo si no es aplicable."
62
- "CP Ship to Specific Countries","Enviar a países específicos."
63
- "CP Displayed Error Message","Mensaje de error mostrado"
64
- "CP Sort Order","Clasificar pedido"
 
 
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
+ "CP Number additional productimages","Clasificar pedido"
29
+ "CP How many additional productimages should be exported?","¿Cuántas imágenes adicionales quiere exportar?"
30
+
31
+ "CP Marketplace Integration","Integración del mercado"
32
+ "CP Marketplace Integration Settings","Configuración de la integración del mercado"
33
+
34
+ "CP Repricing","Control de precios "
35
+ "CP Repricing Settings","Configuración del control de precios"
36
+ "CP General Repricing","Control de precios general"
37
+ "CP Field for price","Campo de precio"
38
+ "CP This field would be overwritten by the new product price.","Este campo de precio será sustituido por el precio nuevo"
39
+ "CP Save prices net or gross?","¿Guardar precios en neto o en bruto?"
40
+
41
+ "CP ChannelPilot-Payment","Pago ChannelPilot"
42
+ "CP !!!This is no real payment method!!!","¡¡¡La forma de pago escogida no es válida!!!"
43
+ "CP Title","Término"
44
+ "CP Order Status","Estado del pedido"
45
+ "CP Payment Types","Formas de pago"
46
+
47
+ "CP Activate?","Activar?"
48
+ "CP Add","Añadir"
49
+ "CP Delete","Borrar"
50
+ "CP OrderStatus Imported (payed)?","¿OrderStatus Importado (pagado)?"
51
+ "CP OrderStatus Imported (unpayed)?","¿OrderStatus importado (no pagado)?"
52
+
53
+ "This shipping method is currently unavailable.","El modo de envío no está disponible."
54
+ "CP ChannelPilot - Shipping Method", "ChannelPilot - Modo de envío"
55
+ "CP Enabled","Activad"
56
+ "CP Use for backend only","Sólo para uso en el backend"
57
+ "CP Title","Título"
58
+ "CP Method Name","Nombre del modo"
59
+ "CP Price","Precio"
60
+ "CP Ship to Applicable Countries","Enviar a países aplicables."
61
+ "CP Show Method if Not Applicable","Mostrar modo si no es aplicable."
62
+ "CP Ship to Specific Countries","Enviar a países específicos."
63
+ "CP Displayed Error Message","Mensaje de error mostrado"
64
+ "CP Sort Order","Clasificar pedido"
65
+
66
+ "CP In which field you want to save the externalTransactionId?","¿En cuál campo desea guardar el externalTransactionId?"
app/locale/es_PA/Channelpilotsolutions_Channelpilot.csv CHANGED
@@ -1,64 +1,66 @@
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
- "CP Number additional productimages","Clasificar pedido"
29
- "CP How many additional productimages should be exported?","¿Cuántas imágenes adicionales quiere exportar?"
30
-
31
- "CP Marketplace Integration","Integración del mercado"
32
- "CP Marketplace Integration Settings","Configuración de la integración del mercado"
33
-
34
- "CP Repricing","Control de precios "
35
- "CP Repricing Settings","Configuración del control de precios"
36
- "CP General Repricing","Control de precios general"
37
- "CP Field for price","Campo de precio"
38
- "CP This field would be overwritten by the new product price.","Este campo de precio será sustituido por el precio nuevo"
39
- "CP Save prices net or gross?","¿Guardar precios en neto o en bruto?"
40
-
41
- "CP ChannelPilot-Payment","Pago ChannelPilot"
42
- "CP !!!This is no real payment method!!!","¡¡¡La forma de pago escogida no es válida!!!"
43
- "CP Title","Término"
44
- "CP Order Status","Estado del pedido"
45
- "CP Payment Types","Formas de pago"
46
-
47
- "CP Activate?","Activar?"
48
- "CP Add","Añadir"
49
- "CP Delete","Borrar"
50
- "CP OrderStatus Imported (payed)?","¿OrderStatus Importado (pagado)?"
51
- "CP OrderStatus Imported (unpayed)?","¿OrderStatus importado (no pagado)?"
52
-
53
- "This shipping method is currently unavailable.","El modo de envío no está disponible."
54
- "CP ChannelPilot - Shipping Method", "ChannelPilot - Modo de envío"
55
- "CP Enabled","Activad"
56
- "CP Use for backend only","Sólo para uso en el backend"
57
- "CP Title","Título"
58
- "CP Method Name","Nombre del modo"
59
- "CP Price","Precio"
60
- "CP Ship to Applicable Countries","Enviar a países aplicables."
61
- "CP Show Method if Not Applicable","Mostrar modo si no es aplicable."
62
- "CP Ship to Specific Countries","Enviar a países específicos."
63
- "CP Displayed Error Message","Mensaje de error mostrado"
64
- "CP Sort Order","Clasificar pedido"
 
 
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
+ "CP Number additional productimages","Clasificar pedido"
29
+ "CP How many additional productimages should be exported?","¿Cuántas imágenes adicionales quiere exportar?"
30
+
31
+ "CP Marketplace Integration","Integración del mercado"
32
+ "CP Marketplace Integration Settings","Configuración de la integración del mercado"
33
+
34
+ "CP Repricing","Control de precios "
35
+ "CP Repricing Settings","Configuración del control de precios"
36
+ "CP General Repricing","Control de precios general"
37
+ "CP Field for price","Campo de precio"
38
+ "CP This field would be overwritten by the new product price.","Este campo de precio será sustituido por el precio nuevo"
39
+ "CP Save prices net or gross?","¿Guardar precios en neto o en bruto?"
40
+
41
+ "CP ChannelPilot-Payment","Pago ChannelPilot"
42
+ "CP !!!This is no real payment method!!!","¡¡¡La forma de pago escogida no es válida!!!"
43
+ "CP Title","Término"
44
+ "CP Order Status","Estado del pedido"
45
+ "CP Payment Types","Formas de pago"
46
+
47
+ "CP Activate?","Activar?"
48
+ "CP Add","Añadir"
49
+ "CP Delete","Borrar"
50
+ "CP OrderStatus Imported (payed)?","¿OrderStatus Importado (pagado)?"
51
+ "CP OrderStatus Imported (unpayed)?","¿OrderStatus importado (no pagado)?"
52
+
53
+ "This shipping method is currently unavailable.","El modo de envío no está disponible."
54
+ "CP ChannelPilot - Shipping Method", "ChannelPilot - Modo de envío"
55
+ "CP Enabled","Activad"
56
+ "CP Use for backend only","Sólo para uso en el backend"
57
+ "CP Title","Título"
58
+ "CP Method Name","Nombre del modo"
59
+ "CP Price","Precio"
60
+ "CP Ship to Applicable Countries","Enviar a países aplicables."
61
+ "CP Show Method if Not Applicable","Mostrar modo si no es aplicable."
62
+ "CP Ship to Specific Countries","Enviar a países específicos."
63
+ "CP Displayed Error Message","Mensaje de error mostrado"
64
+ "CP Sort Order","Clasificar pedido"
65
+
66
+ "CP In which field you want to save the externalTransactionId?","¿En cuál campo desea guardar el externalTransactionId?"
app/locale/es_PE/Channelpilotsolutions_Channelpilot.csv CHANGED
@@ -1,64 +1,66 @@
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
- "CP Number additional productimages","Clasificar pedido"
29
- "CP How many additional productimages should be exported?","¿Cuántas imágenes adicionales quiere exportar?"
30
-
31
- "CP Marketplace Integration","Integración del mercado"
32
- "CP Marketplace Integration Settings","Configuración de la integración del mercado"
33
-
34
- "CP Repricing","Control de precios "
35
- "CP Repricing Settings","Configuración del control de precios"
36
- "CP General Repricing","Control de precios general"
37
- "CP Field for price","Campo de precio"
38
- "CP This field would be overwritten by the new product price.","Este campo de precio será sustituido por el precio nuevo"
39
- "CP Save prices net or gross?","¿Guardar precios en neto o en bruto?"
40
-
41
- "CP ChannelPilot-Payment","Pago ChannelPilot"
42
- "CP !!!This is no real payment method!!!","¡¡¡La forma de pago escogida no es válida!!!"
43
- "CP Title","Término"
44
- "CP Order Status","Estado del pedido"
45
- "CP Payment Types","Formas de pago"
46
-
47
- "CP Activate?","Activar?"
48
- "CP Add","Añadir"
49
- "CP Delete","Borrar"
50
- "CP OrderStatus Imported (payed)?","¿OrderStatus Importado (pagado)?"
51
- "CP OrderStatus Imported (unpayed)?","¿OrderStatus importado (no pagado)?"
52
-
53
- "This shipping method is currently unavailable.","El modo de envío no está disponible."
54
- "CP ChannelPilot - Shipping Method", "ChannelPilot - Modo de envío"
55
- "CP Enabled","Activad"
56
- "CP Use for backend only","Sólo para uso en el backend"
57
- "CP Title","Título"
58
- "CP Method Name","Nombre del modo"
59
- "CP Price","Precio"
60
- "CP Ship to Applicable Countries","Enviar a países aplicables."
61
- "CP Show Method if Not Applicable","Mostrar modo si no es aplicable."
62
- "CP Ship to Specific Countries","Enviar a países específicos."
63
- "CP Displayed Error Message","Mensaje de error mostrado"
64
- "CP Sort Order","Clasificar pedido"
 
 
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
+ "CP Number additional productimages","Clasificar pedido"
29
+ "CP How many additional productimages should be exported?","¿Cuántas imágenes adicionales quiere exportar?"
30
+
31
+ "CP Marketplace Integration","Integración del mercado"
32
+ "CP Marketplace Integration Settings","Configuración de la integración del mercado"
33
+
34
+ "CP Repricing","Control de precios "
35
+ "CP Repricing Settings","Configuración del control de precios"
36
+ "CP General Repricing","Control de precios general"
37
+ "CP Field for price","Campo de precio"
38
+ "CP This field would be overwritten by the new product price.","Este campo de precio será sustituido por el precio nuevo"
39
+ "CP Save prices net or gross?","¿Guardar precios en neto o en bruto?"
40
+
41
+ "CP ChannelPilot-Payment","Pago ChannelPilot"
42
+ "CP !!!This is no real payment method!!!","¡¡¡La forma de pago escogida no es válida!!!"
43
+ "CP Title","Término"
44
+ "CP Order Status","Estado del pedido"
45
+ "CP Payment Types","Formas de pago"
46
+
47
+ "CP Activate?","Activar?"
48
+ "CP Add","Añadir"
49
+ "CP Delete","Borrar"
50
+ "CP OrderStatus Imported (payed)?","¿OrderStatus Importado (pagado)?"
51
+ "CP OrderStatus Imported (unpayed)?","¿OrderStatus importado (no pagado)?"
52
+
53
+ "This shipping method is currently unavailable.","El modo de envío no está disponible."
54
+ "CP ChannelPilot - Shipping Method", "ChannelPilot - Modo de envío"
55
+ "CP Enabled","Activad"
56
+ "CP Use for backend only","Sólo para uso en el backend"
57
+ "CP Title","Título"
58
+ "CP Method Name","Nombre del modo"
59
+ "CP Price","Precio"
60
+ "CP Ship to Applicable Countries","Enviar a países aplicables."
61
+ "CP Show Method if Not Applicable","Mostrar modo si no es aplicable."
62
+ "CP Ship to Specific Countries","Enviar a países específicos."
63
+ "CP Displayed Error Message","Mensaje de error mostrado"
64
+ "CP Sort Order","Clasificar pedido"
65
+
66
+ "CP In which field you want to save the externalTransactionId?","¿En cuál campo desea guardar el externalTransactionId?"
app/locale/es_VE/Channelpilotsolutions_Channelpilot.csv CHANGED
@@ -1,64 +1,66 @@
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
- "CP Number additional productimages","Clasificar pedido"
29
- "CP How many additional productimages should be exported?","¿Cuántas imágenes adicionales quiere exportar?"
30
-
31
- "CP Marketplace Integration","Integración del mercado"
32
- "CP Marketplace Integration Settings","Configuración de la integración del mercado"
33
-
34
- "CP Repricing","Control de precios "
35
- "CP Repricing Settings","Configuración del control de precios"
36
- "CP General Repricing","Control de precios general"
37
- "CP Field for price","Campo de precio"
38
- "CP This field would be overwritten by the new product price.","Este campo de precio será sustituido por el precio nuevo"
39
- "CP Save prices net or gross?","¿Guardar precios en neto o en bruto?"
40
-
41
- "CP ChannelPilot-Payment","Pago ChannelPilot"
42
- "CP !!!This is no real payment method!!!","¡¡¡La forma de pago escogida no es válida!!!"
43
- "CP Title","Término"
44
- "CP Order Status","Estado del pedido"
45
- "CP Payment Types","Formas de pago"
46
-
47
- "CP Activate?","Activar?"
48
- "CP Add","Añadir"
49
- "CP Delete","Borrar"
50
- "CP OrderStatus Imported (payed)?","¿OrderStatus Importado (pagado)?"
51
- "CP OrderStatus Imported (unpayed)?","¿OrderStatus importado (no pagado)?"
52
-
53
- "This shipping method is currently unavailable.","El modo de envío no está disponible."
54
- "CP ChannelPilot - Shipping Method", "ChannelPilot - Modo de envío"
55
- "CP Enabled","Activad"
56
- "CP Use for backend only","Sólo para uso en el backend"
57
- "CP Title","Título"
58
- "CP Method Name","Nombre del modo"
59
- "CP Price","Precio"
60
- "CP Ship to Applicable Countries","Enviar a países aplicables."
61
- "CP Show Method if Not Applicable","Mostrar modo si no es aplicable."
62
- "CP Ship to Specific Countries","Enviar a países específicos."
63
- "CP Displayed Error Message","Mensaje de error mostrado"
64
- "CP Sort Order","Clasificar pedido"
 
 
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
+ "CP Number additional productimages","Clasificar pedido"
29
+ "CP How many additional productimages should be exported?","¿Cuántas imágenes adicionales quiere exportar?"
30
+
31
+ "CP Marketplace Integration","Integración del mercado"
32
+ "CP Marketplace Integration Settings","Configuración de la integración del mercado"
33
+
34
+ "CP Repricing","Control de precios "
35
+ "CP Repricing Settings","Configuración del control de precios"
36
+ "CP General Repricing","Control de precios general"
37
+ "CP Field for price","Campo de precio"
38
+ "CP This field would be overwritten by the new product price.","Este campo de precio será sustituido por el precio nuevo"
39
+ "CP Save prices net or gross?","¿Guardar precios en neto o en bruto?"
40
+
41
+ "CP ChannelPilot-Payment","Pago ChannelPilot"
42
+ "CP !!!This is no real payment method!!!","¡¡¡La forma de pago escogida no es válida!!!"
43
+ "CP Title","Término"
44
+ "CP Order Status","Estado del pedido"
45
+ "CP Payment Types","Formas de pago"
46
+
47
+ "CP Activate?","Activar?"
48
+ "CP Add","Añadir"
49
+ "CP Delete","Borrar"
50
+ "CP OrderStatus Imported (payed)?","¿OrderStatus Importado (pagado)?"
51
+ "CP OrderStatus Imported (unpayed)?","¿OrderStatus importado (no pagado)?"
52
+
53
+ "This shipping method is currently unavailable.","El modo de envío no está disponible."
54
+ "CP ChannelPilot - Shipping Method", "ChannelPilot - Modo de envío"
55
+ "CP Enabled","Activad"
56
+ "CP Use for backend only","Sólo para uso en el backend"
57
+ "CP Title","Título"
58
+ "CP Method Name","Nombre del modo"
59
+ "CP Price","Precio"
60
+ "CP Ship to Applicable Countries","Enviar a países aplicables."
61
+ "CP Show Method if Not Applicable","Mostrar modo si no es aplicable."
62
+ "CP Ship to Specific Countries","Enviar a países específicos."
63
+ "CP Displayed Error Message","Mensaje de error mostrado"
64
+ "CP Sort Order","Clasificar pedido"
65
+
66
+ "CP In which field you want to save the externalTransactionId?","¿En cuál campo desea guardar el externalTransactionId?"
app/locale/fr_CA/Channelpilotsolutions_Channelpilot.csv CHANGED
@@ -1,64 +1,66 @@
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
- "CP Number additional productimages","Número de imágenes adicionales"
29
- "CP How many additional productimages should be exported?","Combien d’images supplémentaires du produit doivent être exportés ?"
30
-
31
- "CP Marketplace Integration","Connexion aux places de marché"
32
- "CP Marketplace Integration Settings","Paramètres de connexion aux places de marché"
33
-
34
- "CP Repricing","Repricing"
35
- "CP Repricing Settings","Paramètres de Repricing"
36
- "CP General Repricing","Repricing général"
37
- "CP Field for price","Champ de prix"
38
- "CP This field would be overwritten by the new product price.","Ce champ de prix sera remplacé par le nouveau prix."
39
- "CP Save prices net or gross?","Prix à enregistrer nets ou bruts ?"
40
-
41
- "CP ChannelPilot-Payment","Paiement ChannelPilot"
42
- "CP !!!This is no real payment method!!!","!!! Ceci n'est pas un vrai moyen de paiement !!!"
43
- "CP Title","Titre"
44
- "CP Order Status","Statut de la commande"
45
- "CP Payment Types","Moyens de paiement"
46
-
47
- "CP Activate?","Activer ?"
48
- "CP Add","Ajouter"
49
- "CP Delete","Supprimer"
50
- "CP OrderStatus Imported (payed)?","Le statut de l’offre a-t-il été importé (payé) ?"
51
- "CP OrderStatus Imported (unpayed)?","Le statut de l’offre a-t-il été importé (impayé) ?"
52
-
53
- "This shipping method is currently unavailable.","Ce mode de livraison n’est pas disponible actuellement."
54
- "CP ChannelPilot - Shipping Method", "ChannelPilot - Mode de livraison"
55
- "CP Enabled","Autorisé"
56
- "CP Use for backend only","Utilisé seulement pour le Backend"
57
- "CP Title","Titre"
58
- "CP Method Name","Nom du mode"
59
- "CP Price","Prix"
60
- "CP Ship to Applicable Countries","Transports vers les pays autorisés"
61
- "CP Show Method if Not Applicable","Montre les modes si pays non autorisés"
62
- "CP Ship to Specific Countries","Transports vers pays particuliers"
63
- "CP Displayed Error Message","Message d’erreur affiché"
64
- "CP Sort Order","Trier les commandes"
 
 
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
+ "CP Number additional productimages","Número de imágenes adicionales"
29
+ "CP How many additional productimages should be exported?","Combien d’images supplémentaires du produit doivent être exportés ?"
30
+
31
+ "CP Marketplace Integration","Connexion aux places de marché"
32
+ "CP Marketplace Integration Settings","Paramètres de connexion aux places de marché"
33
+
34
+ "CP Repricing","Repricing"
35
+ "CP Repricing Settings","Paramètres de Repricing"
36
+ "CP General Repricing","Repricing général"
37
+ "CP Field for price","Champ de prix"
38
+ "CP This field would be overwritten by the new product price.","Ce champ de prix sera remplacé par le nouveau prix."
39
+ "CP Save prices net or gross?","Prix à enregistrer nets ou bruts ?"
40
+
41
+ "CP ChannelPilot-Payment","Paiement ChannelPilot"
42
+ "CP !!!This is no real payment method!!!","!!! Ceci n'est pas un vrai moyen de paiement !!!"
43
+ "CP Title","Titre"
44
+ "CP Order Status","Statut de la commande"
45
+ "CP Payment Types","Moyens de paiement"
46
+
47
+ "CP Activate?","Activer ?"
48
+ "CP Add","Ajouter"
49
+ "CP Delete","Supprimer"
50
+ "CP OrderStatus Imported (payed)?","Le statut de l’offre a-t-il été importé (payé) ?"
51
+ "CP OrderStatus Imported (unpayed)?","Le statut de l’offre a-t-il été importé (impayé) ?"
52
+
53
+ "This shipping method is currently unavailable.","Ce mode de livraison n’est pas disponible actuellement."
54
+ "CP ChannelPilot - Shipping Method", "ChannelPilot - Mode de livraison"
55
+ "CP Enabled","Autorisé"
56
+ "CP Use for backend only","Utilisé seulement pour le Backend"
57
+ "CP Title","Titre"
58
+ "CP Method Name","Nom du mode"
59
+ "CP Price","Prix"
60
+ "CP Ship to Applicable Countries","Transports vers les pays autorisés"
61
+ "CP Show Method if Not Applicable","Montre les modes si pays non autorisés"
62
+ "CP Ship to Specific Countries","Transports vers pays particuliers"
63
+ "CP Displayed Error Message","Message d’erreur affiché"
64
+ "CP Sort Order","Trier les commandes"
65
+
66
+ "CP In which field you want to save the externalTransactionId?","Dans quel champ de données souhaitez vous enregistrer votre externalTransactionId?"
app/locale/fr_FR/Channelpilotsolutions_Channelpilot.csv CHANGED
@@ -1,64 +1,66 @@
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
- "CP Number additional productimages","Número de imágenes adicionales"
29
- "CP How many additional productimages should be exported?","Combien d’images supplémentaires du produit doivent être exportés ?"
30
-
31
- "CP Marketplace Integration","Connexion aux places de marché"
32
- "CP Marketplace Integration Settings","Paramètres de connexion aux places de marché"
33
-
34
- "CP Repricing","Repricing"
35
- "CP Repricing Settings","Paramètres de Repricing"
36
- "CP General Repricing","Repricing général"
37
- "CP Field for price","Champ de prix"
38
- "CP This field would be overwritten by the new product price.","Ce champ de prix sera remplacé par le nouveau prix."
39
- "CP Save prices net or gross?","Prix à enregistrer nets ou bruts ?"
40
-
41
- "CP ChannelPilot-Payment","Paiement ChannelPilot"
42
- "CP !!!This is no real payment method!!!","!!! Ceci n'est pas un vrai moyen de paiement !!!"
43
- "CP Title","Titre"
44
- "CP Order Status","Statut de la commande"
45
- "CP Payment Types","Moyens de paiement"
46
-
47
- "CP Activate?","Activer ?"
48
- "CP Add","Ajouter"
49
- "CP Delete","Supprimer"
50
- "CP OrderStatus Imported (payed)?","Le statut de l’offre a-t-il été importé (payé) ?"
51
- "CP OrderStatus Imported (unpayed)?","Le statut de l’offre a-t-il été importé (impayé) ?"
52
-
53
- "This shipping method is currently unavailable.","Ce mode de livraison n’est pas disponible actuellement."
54
- "CP ChannelPilot - Shipping Method", "ChannelPilot - Mode de livraison"
55
- "CP Enabled","Autorisé"
56
- "CP Use for backend only","Utilisé seulement pour le Backend"
57
- "CP Title","Titre"
58
- "CP Method Name","Nom du mode"
59
- "CP Price","Prix"
60
- "CP Ship to Applicable Countries","Transports vers les pays autorisés"
61
- "CP Show Method if Not Applicable","Montre les modes si pays non autorisés"
62
- "CP Ship to Specific Countries","Transports vers pays particuliers"
63
- "CP Displayed Error Message","Message d’erreur affiché"
64
- "CP Sort Order","Trier les commandes"
 
 
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
+ "CP Number additional productimages","Número de imágenes adicionales"
29
+ "CP How many additional productimages should be exported?","Combien d’images supplémentaires du produit doivent être exportés ?"
30
+
31
+ "CP Marketplace Integration","Connexion aux places de marché"
32
+ "CP Marketplace Integration Settings","Paramètres de connexion aux places de marché"
33
+
34
+ "CP Repricing","Repricing"
35
+ "CP Repricing Settings","Paramètres de Repricing"
36
+ "CP General Repricing","Repricing général"
37
+ "CP Field for price","Champ de prix"
38
+ "CP This field would be overwritten by the new product price.","Ce champ de prix sera remplacé par le nouveau prix."
39
+ "CP Save prices net or gross?","Prix à enregistrer nets ou bruts ?"
40
+
41
+ "CP ChannelPilot-Payment","Paiement ChannelPilot"
42
+ "CP !!!This is no real payment method!!!","!!! Ceci n'est pas un vrai moyen de paiement !!!"
43
+ "CP Title","Titre"
44
+ "CP Order Status","Statut de la commande"
45
+ "CP Payment Types","Moyens de paiement"
46
+
47
+ "CP Activate?","Activer ?"
48
+ "CP Add","Ajouter"
49
+ "CP Delete","Supprimer"
50
+ "CP OrderStatus Imported (payed)?","Le statut de l’offre a-t-il été importé (payé) ?"
51
+ "CP OrderStatus Imported (unpayed)?","Le statut de l’offre a-t-il été importé (impayé) ?"
52
+
53
+ "This shipping method is currently unavailable.","Ce mode de livraison n’est pas disponible actuellement."
54
+ "CP ChannelPilot - Shipping Method", "ChannelPilot - Mode de livraison"
55
+ "CP Enabled","Autorisé"
56
+ "CP Use for backend only","Utilisé seulement pour le Backend"
57
+ "CP Title","Titre"
58
+ "CP Method Name","Nom du mode"
59
+ "CP Price","Prix"
60
+ "CP Ship to Applicable Countries","Transports vers les pays autorisés"
61
+ "CP Show Method if Not Applicable","Montre les modes si pays non autorisés"
62
+ "CP Ship to Specific Countries","Transports vers pays particuliers"
63
+ "CP Displayed Error Message","Message d’erreur affiché"
64
+ "CP Sort Order","Trier les commandes"
65
+
66
+ "CP In which field you want to save the externalTransactionId?","Dans quel champ de données souhaitez vous enregistrer votre externalTransactionId?"
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Channelpilotsolutions_Channelpilot</name>
4
- <version>2.2.8</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.opensource.org/licenses/gpl-license.php">GPL</license>
7
  <channel>community</channel>
@@ -26,11 +26,17 @@
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>- bugfix for error during import orders with bundle products</notes>
 
 
 
 
 
 
30
  <authors><author><name>ChannelPilot Solutions GmbH</name><user>channelpilot</user><email>info@channelpilot.com</email></author></authors>
31
- <date>2016-09-16</date>
32
- <time>07:32:21</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="Orderstatus"><file name="Values.php" hash="39823f1757a41c848ad4505d09aca9d2"/></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="Feedexport"><file name="Grid.php" hash="2e62d6614e84d6073d33fb079f50f907"/><dir name="View"><file name="Form.php" hash="539382c03bf5b43cb3e9ca6aa3ebfa10"/></dir><file name="View.php" hash="44887305f3570fdc95cdf5dbf2a5e563"/></dir><file name="Feedexport.php" hash="df8d33aa8c32e52158fa31e9d9af3950"/><dir name="Field"><file name="Abstract.php" hash="fc0aae8ea2b0bc8aab16ecba459b8988"/><file name="Exportfields.php" hash="8017ae4a421013309b731aff45bf997a"/><file name="Replacefields.php" hash="55266f9270660519a6ce1843048467e3"/><file name="Specialfields.php" hash="4723404c20af3390d6d820318b21c1f6"/><file name="Trackingkeys.php" hash="6164e184bf6ac2b1e81169251752a551"/></dir><file name="Hintlogo.php" hash="1daa84afa8820f71a0d1630ee2311da6"/></dir><dir name="Tracking"><file name="Tracking.php" hash="3be4cdf75739c3dc1078f90be82380c6"/></dir></dir><dir name="Helper"><file name="CPErrors.php" hash="3659c38a1ed3be4aa4ec03d93e68a84e"/><file name="Data.php" hash="cdd617730e9bf291ac62ef928eca39c6"/><file name="Export.php" hash="bbce34cb6ef8590e89d856b32cd36a77"/><dir name="api"><dir name="1_0"><file name="CPResultCodes.php" hash="955180ee33f14b4afa93f6eb1b5df53f"/><file name="ChannelPilotSellerAPI_v1_0.php" hash="acbdc4a0f2bac0755922ac46910ac52e"/><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="a270104ae1c253adee0ad1ffb5e01c65"/><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="698b42f377910ef04d50a545e599fbca"/><file name="CPResponseHeader.php" hash="53930210d68046183e3be306996ea9b9"/><file name="CPShipping.php" hash="eaddceace28cdc6ba72434a6321d8c47"/></dir></dir></dir><dir name="handler"><file name="CPAbstractHandler.php" hash="f1b4364706b9bab005b53b91625c65f2"/><file name="CPCancellationHandler.php" hash="9d74f0de8d188d36e4141eb6f6a71687"/><file name="CPDebugHandler.php" hash="51845f353b8e3d94ec324c3a750d9cc7"/><file name="CPDeliveryHandler.php" hash="f0af720a86c867a488fe6228376dd9a6"/><file name="CPErrorHandler.php" hash="5d728c064c068fdf8354fa87882e4dba"/><file name="CPExportHandler.php" hash="819c62aa9a99f021f2c3a07109a623dd"/><file name="CPNewPriceHandler.php" hash="246824a7c008e693682f7f09f0753813"/><file name="CPNewsHandler.php" hash="10757d4bbb3d10a3090dab9587c86132"/><file name="CPOrderHandler.php" hash="eb62d7996ad33b1bfa4f2b9859f27d79"/><file name="CPPaymentHandler.php" hash="85faddc1ed661b5cca39e39550cc0211"/><file name="CPRegisterHandler.php" hash="039ede8ff760f4d5a429ad56bb0ce596"/><file name="CPStatusHandler.php" hash="f378b4b56ac502fc035cfabc062cd43c"/></dir><dir name="responses"><file name="CPGetStatusHookResponse.php" hash="672609ebcaa23aa0de85aed04c7662d8"/><file name="CPHookResponse.php" hash="df481afb1680964780126fcd68c00818"/><file name="CPRegisterHookResponse.php" hash="206de6433d0795ebdabff98129cc2fb7"/></dir><dir name="special"><file name="CustomerFunctions.php" hash="0d343d3c9c3cb87232c833e0772f730e"/></dir></dir><dir name="Model"><file name="Abstract.php" hash="a142674a12bf57e8c98724b4ead154f8"/><dir name="Adminhtml"><dir name="Source"><file name="Exportmethod.php" hash="604cb29e7871ac54697582dc51f67842"/><file name="Producturlgeneration.php" hash="a9e7fb7aecf048858a1af4f1fae9ead6"/><file name="Trackingmethod.php" hash="e32ab184b05377af38e4d912022cb889"/></dir></dir><dir name="Carrier"><file name="Cpshipping.php" hash="5c73d41a01797c86137d036584db36ae"/></dir><dir name="Feedexport"><file name="Indexer.php" hash="447a342567484ba84ba67494ce30d63e"/></dir><file name="Logs.php" hash="85c27d3b47cbd97fc197a1ba8ae60dc6"/><file name="Observer.php" hash="9e18ed13078767de556617fe6fb7d445"/><dir name="Order"><file name="Item.php" hash="7e64ca596a4a66e7c5052d0981745cf8"/><file name="Shipment.php" hash="71651ad5489eca654f47e41fd12e79a6"/></dir><file name="Order.php" hash="431bda96fe598fbb5a64928b940d8c13"/><file name="Payment.php" hash="223ab9dec3315f3dada4298f0418151a"/><file name="Paymenttypes.php" hash="ca90419f6e4603be3f70a214d95177c3"/><file name="Prices.php" hash="c1c966c0a3001fee90d14c050f00b66a"/><file name="Registration.php" hash="9d22f91f645a0070ee17c8b9eb3e28c8"/><dir name="Resource"><dir name="Feedexport"><dir name="Indexer"><file name="Collection.php" hash="e0957ac77559f71f544aa5c70db5d80e"/></dir><file name="Indexer.php" hash="367c813db1aff8331629c400af3b8c99"/></dir><dir name="Logs"><file name="Collection.php" hash="d02494433e6369ddd552e04db867e9d5"/></dir><file name="Logs.php" hash="b406da96412148256028b8c73444b0d9"/><dir name="Order"><file name="Collection.php" hash="00423726d837a71042527c588cfc4b11"/><dir name="Item"><file name="Collection.php" hash="954e3889a8b8f93510a36be1a13c2fb8"/></dir><file name="Item.php" hash="22aac20cc7c2a9765d170e9ea50d9315"/><dir name="Shipment"><file name="Collection.php" hash="6aa1fd002807916effa760169a2e769d"/></dir><file name="Shipment.php" hash="5d1514d5721b501fda7e71e6a15f931d"/></dir><file name="Order.php" hash="be971d53867fafbbf7c582dbe860e107"/><dir name="Prices"><file name="Collection.php" hash="6d49bf71e50a0d2b0e087d52036a08ef"/></dir><file name="Prices.php" hash="30275edca721b6986ff6bd39648bf4eb"/><dir name="Registration"><file name="Collection.php" hash="81423be65cf2ee706203ac03b5e83236"/></dir><file name="Registration.php" hash="e956369769523f25eb8a8351c668add4"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Channelpilot"><file name="FeedexportController.php" hash="9770c6d8fb2b957936e5e17c6282ab17"/></dir></dir><file name="IndexController.php" hash="ca07da3c0b2c689e9c0a8e552b6c7004"/></dir><dir name="etc"><file name="adminhtml.xml" hash="916b5e121b31dceffe732afec9c6019f"/><file name="config.xml" hash="ea2c81dad083568db9d3a387c77623b9"/><file name="system.xml" hash="7b6bb850ed7600ffd2b5b5a9687eaf09"/></dir><dir name="sql"><dir name="channelpilot_setup"><file name="mysql4-install-2.0.0.php" hash="f89d8be8b1ed7a6793ba6a2516de3528"/><file name="mysql4-upgrade-1.0.0-2.0.0.php" hash="12264e29678f7a56b002cd693dafd56f"/><file name="mysql4-upgrade-2.1.0-2.1.6.php" hash="7f76ad8deebb387a635e05c39b32e458"/><file name="mysql4-upgrade-2.1.6-2.2.0.php" hash="4327290be3ce3226544515a72e6a74cf"/><file name="mysql4-upgrade-2.2.5-2.2.6.php" hash="a1b2b1ba0227b6553202af9f2ce8abb1"/><file name="mysql4-upgrade-2.2.6-2.2.7.php" hash="66580c8caf95997f6e3322c4eb39ebbf"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Channelpilotsolutions_Channelpilot.xml" hash="d14fbcbdca7324e5e97bee70f2a75976"/></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="2952fa387aadf60f36b6fea9b5c69fb8"/></dir></dir><dir name="template"><dir name="Channelpilotsolutions"><file name="clicktracking_js.phtml" hash="20d1883b633d814587e5dd1661364fc1"/><file name="salestracking_js.phtml" hash="61c77c6fdab88cfac5989e7d47a8c5a4"/><file name="tracking_image.phtml" hash="f2477e9bf58ed34950b049db5af8a712"/></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="5717b5f3ca67bb4da734572fdca1a907"/><file name="config_hint.phtml" hash="c92f883df809f89278492d1e22a352d7"/></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="de_DE"><file name="Channelpilotsolutions_Channelpilot.csv" hash="c67ab461fb1ad4cc42958646bc3cc5db"/></dir><dir name="de_CH"><file name="Channelpilotsolutions_Channelpilot.csv" hash="c67ab461fb1ad4cc42958646bc3cc5db"/></dir><dir name="de_AT"><file name="Channelpilotsolutions_Channelpilot.csv" hash="c67ab461fb1ad4cc42958646bc3cc5db"/></dir><dir name="fr_FR"><file name="Channelpilotsolutions_Channelpilot.csv" hash="23217faa0b1c623750bb91d1e324e082"/></dir><dir name="fr_CA"><file name="Channelpilotsolutions_Channelpilot.csv" hash="23217faa0b1c623750bb91d1e324e082"/></dir><dir name="en_AU"><file name="Channelpilotsolutions_Channelpilot.csv" hash="5d535e9bc597ff62a64a999f1b1c8879"/></dir><dir name="en_CA"><file name="Channelpilotsolutions_Channelpilot.csv" hash="5d535e9bc597ff62a64a999f1b1c8879"/></dir><dir name="en_GB"><file name="Channelpilotsolutions_Channelpilot.csv" hash="5d535e9bc597ff62a64a999f1b1c8879"/></dir><dir name="en_IE"><file name="Channelpilotsolutions_Channelpilot.csv" hash="5d535e9bc597ff62a64a999f1b1c8879"/></dir><dir name="en_NZ"><file name="Channelpilotsolutions_Channelpilot.csv" hash="5d535e9bc597ff62a64a999f1b1c8879"/></dir><dir name="en_US"><file name="Channelpilotsolutions_Channelpilot.csv" hash="5d535e9bc597ff62a64a999f1b1c8879"/></dir><dir name="es_AR"><file name="Channelpilotsolutions_Channelpilot.csv" hash="e457ab4f2c03c46e8ce69bc6eb1dcc25"/></dir><dir name="es_CL"><file name="Channelpilotsolutions_Channelpilot.csv" hash="e457ab4f2c03c46e8ce69bc6eb1dcc25"/></dir><dir name="es_CO"><file name="Channelpilotsolutions_Channelpilot.csv" hash="e457ab4f2c03c46e8ce69bc6eb1dcc25"/></dir><dir name="es_CR"><file name="Channelpilotsolutions_Channelpilot.csv" hash="e457ab4f2c03c46e8ce69bc6eb1dcc25"/></dir><dir name="es_ES"><file name="Channelpilotsolutions_Channelpilot.csv" hash="e457ab4f2c03c46e8ce69bc6eb1dcc25"/></dir><dir name="es_MX"><file name="Channelpilotsolutions_Channelpilot.csv" hash="e457ab4f2c03c46e8ce69bc6eb1dcc25"/></dir><dir name="es_PA"><file name="Channelpilotsolutions_Channelpilot.csv" hash="e457ab4f2c03c46e8ce69bc6eb1dcc25"/></dir><dir name="es_PE"><file name="Channelpilotsolutions_Channelpilot.csv" hash="e457ab4f2c03c46e8ce69bc6eb1dcc25"/></dir><dir name="es_VE"><file name="Channelpilotsolutions_Channelpilot.csv" hash="e457ab4f2c03c46e8ce69bc6eb1dcc25"/></dir></target></contents>
34
  <compatible/>
35
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
36
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Channelpilotsolutions_Channelpilot</name>
4
+ <version>2.3.0</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>- added as comment in the order:&#xD;
30
+ expectedShippingTimeFrom &#xD;
31
+ expectedShippingTimeTo &#xD;
32
+ isBusinessOrder&#xD;
33
+ purchaseOrderNumber&#xD;
34
+ externalTransactionId&#xD;
35
+ - added discount</notes>
36
  <authors><author><name>ChannelPilot Solutions GmbH</name><user>channelpilot</user><email>info@channelpilot.com</email></author></authors>
37
+ <date>2017-07-20</date>
38
+ <time>13:29:51</time>
39
+ <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="ExternalTransactionId"><file name="Values.php" hash="1fbc50a4da0c894425dcfb25810f618a"/></dir><dir name="Grossnet"><file name="Values.php" hash="11eaf553b0ec34299524ec6d5a9f1e13"/></dir><dir name="Imagenumber"><file name="Values.php" hash="010dbb2ec946627f338bc500d3d8d747"/></dir><dir name="Orderid"><file name="Values.php" hash="6c6d732004f39691e1c63c8b412cd6a9"/></dir><dir name="Orderstatus"><file name="Values.php" hash="39823f1757a41c848ad4505d09aca9d2"/></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="Feedexport"><file name="Grid.php" hash="2e62d6614e84d6073d33fb079f50f907"/><dir name="View"><file name="Form.php" hash="539382c03bf5b43cb3e9ca6aa3ebfa10"/></dir><file name="View.php" hash="44887305f3570fdc95cdf5dbf2a5e563"/></dir><file name="Feedexport.php" hash="df8d33aa8c32e52158fa31e9d9af3950"/><dir name="Field"><file name="Abstract.php" hash="fc0aae8ea2b0bc8aab16ecba459b8988"/><file name="Exportfields.php" hash="8017ae4a421013309b731aff45bf997a"/><file name="Replacefields.php" hash="55266f9270660519a6ce1843048467e3"/><file name="Specialfields.php" hash="4723404c20af3390d6d820318b21c1f6"/><file name="Trackingkeys.php" hash="6164e184bf6ac2b1e81169251752a551"/></dir><file name="Hintlogo.php" hash="1daa84afa8820f71a0d1630ee2311da6"/></dir><dir name="Tracking"><file name="Tracking.php" hash="3be4cdf75739c3dc1078f90be82380c6"/></dir></dir><dir name="Helper"><file name="CPErrors.php" hash="3659c38a1ed3be4aa4ec03d93e68a84e"/><file name="Data.php" hash="5f43d0947d52e2f8555d487697c8d19f"/><file name="Export.php" hash="bbce34cb6ef8590e89d856b32cd36a77"/><dir name="api"><dir name="1_0"><file name="CPResultCodes.php" hash="955180ee33f14b4afa93f6eb1b5df53f"/><file name="ChannelPilotSellerAPI_v1_0.php" hash="acbdc4a0f2bac0755922ac46910ac52e"/><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="a270104ae1c253adee0ad1ffb5e01c65"/><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="df00d78cb7c1b422afdb18949da8cc90"/><file name="CPOrderItem.php" hash="dfe2440a08e3d0f13e638fc4090e6c52"/><file name="CPOrderStatus.php" hash="e0e767388dd9a1ab8be5a990f1ab1259"/><file name="CPOrderSummary.php" hash="fceaa6a79b5fc892062681f518fd0243"/><file name="CPPayment.php" hash="698b42f377910ef04d50a545e599fbca"/><file name="CPResponseHeader.php" hash="53930210d68046183e3be306996ea9b9"/><file name="CPShipping.php" hash="eaddceace28cdc6ba72434a6321d8c47"/></dir></dir><dir name="3_2"><file name="CPResultCodes.php" hash="02911d197267b5083fac734333083037"/><file name="ChannelPilotSellerAPI_v3_2.php" hash="48f3873072f6f8ae1c089e919783bf40"/><dir name="responses"><file name="GetManagedArticlePricesResponse.php" hash="ab0d9c2bde97b9bd956b833d88376f34"/><file name="GetNewMarketplaceOrdersResponse.php" hash="6b81f4649bb499f892174748c7446a1a"/><file name="GetServerTimeResponse.php" hash="a430f44478f10911864cebe57968aa46"/><file name="Response.php" hash="5fed32e1ad9af802465bf0ea7a496122"/><file name="UpdateOrderResult.php" hash="572fec6dcfebadaf2ffdf3ffc4bd13a3"/><file name="UpdateOrdersResponse.php" hash="76f47ecd3152198248bc9eccbd59cbc6"/></dir><dir name="thin"><file name="CPAddress.php" hash="72de4e2afc6546068bd1d11bbbfadcf2"/><file name="CPArticle.php" hash="de6b1e05a113cda50425df45d9ecbdbc"/><file name="CPAuth.php" hash="b37bcf0168fc182ce716d6b4adacf205"/><file name="CPCancellation.php" hash="30ba1614e882b9263e905689ecf27d9a"/><file name="CPCustomer.php" hash="03f7ff81dfbee74a826a2c1d5cffb183"/><file name="CPCustomerGroup.php" hash="01222acefa8ffaab26c36df197090902"/><file name="CPDelivery.php" hash="87b33f033370c8901f504ea4e3675208"/><file name="CPManagedArticlePrice.php" hash="94a7405a8fa92ed0295fc7b805b1fe32"/><file name="CPMoney.php" hash="2e52d130ba8b92c0704b1be851d25287"/><file name="CPOrder.php" hash="c724614a7b7e3519f8203f7bf805fab4"/><file name="CPOrderHeader.php" hash="7838a1a66dec0d639004027d196ee24f"/><file name="CPOrderItem.php" hash="5d2ae4c33324fcdbb63968b686316cb2"/><file name="CPOrderStatus.php" hash="9daf721042033dc2a08a05c319b7fca3"/><file name="CPOrderSummary.php" hash="4b4c9bc88d142812e33a12f38aedde90"/><file name="CPPayment.php" hash="14fab303affd0eab8d2e9e39341426a0"/><file name="CPRefund.php" hash="789c4ef27e6b746511559829c4f316a8"/><file name="CPResponseHeader.php" hash="bfe1539b116e76c7c387201e6d2c2a6c"/><file name="CPShipping.php" hash="db3244ac4f7e79c228b648051ee2807d"/></dir></dir></dir><dir name="handler"><file name="CPAbstractHandler.php" hash="0acf338c61415aaaaf067b754972a21d"/><file name="CPCancellationHandler.php" hash="535384aeae726adbe036628bed33cceb"/><file name="CPDebugHandler.php" hash="51845f353b8e3d94ec324c3a750d9cc7"/><file name="CPDeliveryHandler.php" hash="04b0abd16bb226f2d8403c92e60126f5"/><file name="CPErrorHandler.php" hash="5d728c064c068fdf8354fa87882e4dba"/><file name="CPExportHandler.php" hash="819c62aa9a99f021f2c3a07109a623dd"/><file name="CPNewPriceHandler.php" hash="79038baec806b78858a26e48168c1c0f"/><file name="CPNewsHandler.php" hash="10757d4bbb3d10a3090dab9587c86132"/><file name="CPOrderHandler.php" hash="78ff6a9bda3c92f65552c4d80e4758cd"/><file name="CPPaymentHandler.php" hash="fa664a391b87f4b3ca76ce30797dfb16"/><file name="CPRegisterHandler.php" hash="039ede8ff760f4d5a429ad56bb0ce596"/><file name="CPStatusHandler.php" hash="f378b4b56ac502fc035cfabc062cd43c"/></dir><dir name="responses"><file name="CPGetStatusHookResponse.php" hash="672609ebcaa23aa0de85aed04c7662d8"/><file name="CPHookResponse.php" hash="df481afb1680964780126fcd68c00818"/><file name="CPRegisterHookResponse.php" hash="206de6433d0795ebdabff98129cc2fb7"/></dir><dir name="special"><file name="CustomerFunctions.php" hash="0d343d3c9c3cb87232c833e0772f730e"/></dir></dir><dir name="Model"><file name="Abstract.php" hash="a142674a12bf57e8c98724b4ead154f8"/><dir name="Adminhtml"><dir name="Source"><file name="Exportmethod.php" hash="604cb29e7871ac54697582dc51f67842"/><file name="Producturlgeneration.php" hash="a9e7fb7aecf048858a1af4f1fae9ead6"/><file name="Trackingmethod.php" hash="e32ab184b05377af38e4d912022cb889"/></dir></dir><dir name="Carrier"><file name="Cpshipping.php" hash="5c73d41a01797c86137d036584db36ae"/></dir><dir name="Feedexport"><file name="Indexer.php" hash="447a342567484ba84ba67494ce30d63e"/></dir><file name="Logs.php" hash="85c27d3b47cbd97fc197a1ba8ae60dc6"/><file name="Observer.php" hash="9e18ed13078767de556617fe6fb7d445"/><dir name="Order"><file name="Item.php" hash="7e64ca596a4a66e7c5052d0981745cf8"/><file name="Shipment.php" hash="71651ad5489eca654f47e41fd12e79a6"/></dir><file name="Order.php" hash="431bda96fe598fbb5a64928b940d8c13"/><file name="Payment.php" hash="223ab9dec3315f3dada4298f0418151a"/><file name="Paymenttypes.php" hash="ca90419f6e4603be3f70a214d95177c3"/><file name="Prices.php" hash="c1c966c0a3001fee90d14c050f00b66a"/><file name="Registration.php" hash="9d22f91f645a0070ee17c8b9eb3e28c8"/><dir name="Resource"><dir name="Feedexport"><dir name="Indexer"><file name="Collection.php" hash="e0957ac77559f71f544aa5c70db5d80e"/></dir><file name="Indexer.php" hash="367c813db1aff8331629c400af3b8c99"/></dir><dir name="Logs"><file name="Collection.php" hash="d02494433e6369ddd552e04db867e9d5"/></dir><file name="Logs.php" hash="b406da96412148256028b8c73444b0d9"/><dir name="Order"><file name="Collection.php" hash="00423726d837a71042527c588cfc4b11"/><dir name="Item"><file name="Collection.php" hash="954e3889a8b8f93510a36be1a13c2fb8"/></dir><file name="Item.php" hash="22aac20cc7c2a9765d170e9ea50d9315"/><dir name="Shipment"><file name="Collection.php" hash="6aa1fd002807916effa760169a2e769d"/></dir><file name="Shipment.php" hash="5d1514d5721b501fda7e71e6a15f931d"/></dir><file name="Order.php" hash="be971d53867fafbbf7c582dbe860e107"/><dir name="Prices"><file name="Collection.php" hash="6d49bf71e50a0d2b0e087d52036a08ef"/></dir><file name="Prices.php" hash="30275edca721b6986ff6bd39648bf4eb"/><dir name="Registration"><file name="Collection.php" hash="81423be65cf2ee706203ac03b5e83236"/></dir><file name="Registration.php" hash="e956369769523f25eb8a8351c668add4"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Channelpilot"><file name="FeedexportController.php" hash="9770c6d8fb2b957936e5e17c6282ab17"/></dir></dir><file name="IndexController.php" hash="ca07da3c0b2c689e9c0a8e552b6c7004"/></dir><dir name="etc"><file name="adminhtml.xml" hash="916b5e121b31dceffe732afec9c6019f"/><file name="config.xml" hash="5e737292b3f59ce06d9177cf6c623c87"/><file name="system.xml" hash="042369a68b63e80e8bebc895685e653f"/></dir><dir name="sql"><dir name="channelpilot_setup"><file name="mysql4-install-2.0.0.php" hash="f89d8be8b1ed7a6793ba6a2516de3528"/><file name="mysql4-upgrade-1.0.0-2.0.0.php" hash="12264e29678f7a56b002cd693dafd56f"/><file name="mysql4-upgrade-2.1.0-2.1.6.php" hash="7f76ad8deebb387a635e05c39b32e458"/><file name="mysql4-upgrade-2.1.6-2.2.0.php" hash="4327290be3ce3226544515a72e6a74cf"/><file name="mysql4-upgrade-2.2.5-2.2.6.php" hash="a1b2b1ba0227b6553202af9f2ce8abb1"/><file name="mysql4-upgrade-2.2.6-2.2.7.php" hash="66580c8caf95997f6e3322c4eb39ebbf"/><file name="mysql4-upgrade-2.2.7-2.3.0.php" hash="d3d272793fa3f2a179e4581e64af16f1"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Channelpilotsolutions_Channelpilot.xml" hash="d14fbcbdca7324e5e97bee70f2a75976"/></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="2952fa387aadf60f36b6fea9b5c69fb8"/></dir></dir><dir name="template"><dir name="Channelpilotsolutions"><file name="clicktracking_js.phtml" hash="20d1883b633d814587e5dd1661364fc1"/><file name="salestracking_js.phtml" hash="61c77c6fdab88cfac5989e7d47a8c5a4"/><file name="tracking_image.phtml" hash="f2477e9bf58ed34950b049db5af8a712"/></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="5717b5f3ca67bb4da734572fdca1a907"/><file name="config_hint.phtml" hash="c92f883df809f89278492d1e22a352d7"/></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="de_DE"><file name="Channelpilotsolutions_Channelpilot.csv" hash="9c0732d92c33db18baa32085d6365190"/></dir><dir name="de_CH"><file name="Channelpilotsolutions_Channelpilot.csv" hash="9c0732d92c33db18baa32085d6365190"/></dir><dir name="de_AT"><file name="Channelpilotsolutions_Channelpilot.csv" hash="9c0732d92c33db18baa32085d6365190"/></dir><dir name="fr_FR"><file name="Channelpilotsolutions_Channelpilot.csv" hash="9cac04b46364a365ace5bad95bdc7e39"/></dir><dir name="fr_CA"><file name="Channelpilotsolutions_Channelpilot.csv" hash="9cac04b46364a365ace5bad95bdc7e39"/></dir><dir name="en_AU"><file name="Channelpilotsolutions_Channelpilot.csv" hash="f6d78def7671ebf63514503971f61af9"/></dir><dir name="en_CA"><file name="Channelpilotsolutions_Channelpilot.csv" hash="f6d78def7671ebf63514503971f61af9"/></dir><dir name="en_GB"><file name="Channelpilotsolutions_Channelpilot.csv" hash="f6d78def7671ebf63514503971f61af9"/></dir><dir name="en_IE"><file name="Channelpilotsolutions_Channelpilot.csv" hash="f6d78def7671ebf63514503971f61af9"/></dir><dir name="en_NZ"><file name="Channelpilotsolutions_Channelpilot.csv" hash="f6d78def7671ebf63514503971f61af9"/></dir><dir name="en_US"><file name="Channelpilotsolutions_Channelpilot.csv" hash="f6d78def7671ebf63514503971f61af9"/></dir><dir name="es_AR"><file name="Channelpilotsolutions_Channelpilot.csv" hash="d96e87e8f2fe20ac9048cc12a16cb540"/></dir><dir name="es_CL"><file name="Channelpilotsolutions_Channelpilot.csv" hash="d96e87e8f2fe20ac9048cc12a16cb540"/></dir><dir name="es_CO"><file name="Channelpilotsolutions_Channelpilot.csv" hash="d96e87e8f2fe20ac9048cc12a16cb540"/></dir><dir name="es_CR"><file name="Channelpilotsolutions_Channelpilot.csv" hash="d96e87e8f2fe20ac9048cc12a16cb540"/></dir><dir name="es_ES"><file name="Channelpilotsolutions_Channelpilot.csv" hash="d96e87e8f2fe20ac9048cc12a16cb540"/></dir><dir name="es_MX"><file name="Channelpilotsolutions_Channelpilot.csv" hash="d96e87e8f2fe20ac9048cc12a16cb540"/></dir><dir name="es_PA"><file name="Channelpilotsolutions_Channelpilot.csv" hash="d96e87e8f2fe20ac9048cc12a16cb540"/></dir><dir name="es_PE"><file name="Channelpilotsolutions_Channelpilot.csv" hash="d96e87e8f2fe20ac9048cc12a16cb540"/></dir><dir name="es_VE"><file name="Channelpilotsolutions_Channelpilot.csv" hash="d96e87e8f2fe20ac9048cc12a16cb540"/></dir></target></contents>
40
  <compatible/>
41
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
42
  </package>