Version Notes
==== 1.3.1 ====
== v1.3.1 ==
- Added Magento Patch SUPEE-6788 compatibility
==== 1.3.0 ====
==== New features ====
- Shipping methods connected to MyParcel
- Minimal order price PakjeGemak
- Labels printing via shipping overview
==== Bug fixes ====
- Various bugs fixed
== v1.1.4 ==
- Pakjegemak extra address-validation on order detail page
known bugs:
None. Please contact us if you find a bug.
== v1.1.3 ==
- Print-position overlay optimised
- New translations
- Extended logging functionality
Download this release
Release Info
Developer | TIG |
Extension | tig_myparcel |
Version | 1.3.1 |
Comparing to | |
See all releases |
Code changes from version 1.3.0 to 1.3.1
- app/code/community/TIG/MyParcel2014/Block/Adminhtml/Sales/Order/Shipment/ShippingInfo.php +2 -2
- app/code/community/TIG/MyParcel2014/Block/Adminhtml/System/Config/AdminSecure.php +0 -1
- app/code/community/TIG/MyParcel2014/Model/Adminhtml/Observer/OrderGrid.php +19 -19
- app/code/community/TIG/MyParcel2014/Model/Adminhtml/Observer/ShipmentGrid.php +12 -12
- app/code/community/TIG/MyParcel2014/Model/Adminhtml/Observer/SystemConfig.php +1 -1
- app/code/community/TIG/MyParcel2014/Model/Adminhtml/Observer/ViewShipment.php +2 -2
- app/code/community/TIG/MyParcel2014/controllers/{Adminhtml → MyparcelAdminhtml}/ConfigController.php +1 -1
- app/code/community/TIG/MyParcel2014/controllers/{Adminhtml → MyparcelAdminhtml}/ShipmentController.php +2 -6
- app/code/community/TIG/MyParcel2014/etc/config.xml +6 -6
- app/design/adminhtml/default/default/template/TIG/MyParcel2014/sales/order/shipment/shipping_info.phtml +1 -1
- app/design/frontend/base/default/template/TIG/MyParcel2014/checkout/idev_onestepcheckout/js.phtml +0 -185
- app/design/frontend/base/default/template/TIG/MyParcel2014/checkout/onepage/js.phtml +0 -228
- app/design/frontend/base/default/template/TIG/MyParcel2014/checkout/onepage/progress.phtml +0 -57
- app/design/frontend/base/default/template/TIG/MyParcel2014/checkout/onepage/progress/pakje_gemak.phtml +0 -48
- app/design/frontend/base/default/template/TIG/MyParcel2014/checkout/pg_address.phtml +0 -103
- app/locale/en_US/TIG_MyParcel2014.csv +179 -200
- app/locale/nl_NL/TIG_MyParcel2014.csv +22 -33
- package.xml +9 -5
app/code/community/TIG/MyParcel2014/Block/Adminhtml/Sales/Order/Shipment/ShippingInfo.php
CHANGED
@@ -110,13 +110,13 @@ class TIG_MyParcel2014_Block_Adminhtml_Sales_Order_Shipment_ShippingInfo extends
|
|
110 |
public function getRetourlinkUrl()
|
111 |
{
|
112 |
$shipmentId = $this->getRequest()->getParam('shipment_id');
|
113 |
-
return $this->getUrl('
|
114 |
}
|
115 |
|
116 |
public function getCreditUrl()
|
117 |
{
|
118 |
$shipmentId = $this->getRequest()->getParam('shipment_id');
|
119 |
-
return $this->getUrl('
|
120 |
}
|
121 |
|
122 |
/**
|
110 |
public function getRetourlinkUrl()
|
111 |
{
|
112 |
$shipmentId = $this->getRequest()->getParam('shipment_id');
|
113 |
+
return $this->getUrl('adminhtml/myparcelAdminhtml_config/generateRetourlink',array('shipment_id'=>$shipmentId));
|
114 |
}
|
115 |
|
116 |
public function getCreditUrl()
|
117 |
{
|
118 |
$shipmentId = $this->getRequest()->getParam('shipment_id');
|
119 |
+
return $this->getUrl('adminhtml/myparcelAdminhtml_config/creditConsignment',array('shipment_id'=>$shipmentId));
|
120 |
}
|
121 |
|
122 |
/**
|
app/code/community/TIG/MyParcel2014/Block/Adminhtml/System/Config/AdminSecure.php
CHANGED
@@ -44,7 +44,6 @@ class TIG_MyParcel2014_Block_Adminhtml_System_Config_AdminSecure
|
|
44 |
protected function _getValue()
|
45 |
{
|
46 |
$isSecure = Mage::getStoreConfigFlag('web/secure/use_in_adminhtml');
|
47 |
-
Mage::log($isSecure, null, 'test.log', true);
|
48 |
return $isSecure;
|
49 |
}
|
50 |
|
44 |
protected function _getValue()
|
45 |
{
|
46 |
$isSecure = Mage::getStoreConfigFlag('web/secure/use_in_adminhtml');
|
|
|
47 |
return $isSecure;
|
48 |
}
|
49 |
|
app/code/community/TIG/MyParcel2014/Model/Adminhtml/Observer/OrderGrid.php
CHANGED
@@ -139,18 +139,18 @@ class TIG_MyParcel2014_Model_Adminhtml_Observer_OrderGrid extends Varien_Object
|
|
139 |
'country_id',
|
140 |
'IF({{pakjegemak_parent_id}}, {{pakjegemak_country_id}}, {{shipping_country_id}})',
|
141 |
array(
|
142 |
-
'pakjegemak_parent_id' => '
|
143 |
-
'pakjegemak_country_id' => '
|
144 |
-
'shipping_country_id' => '
|
145 |
)
|
146 |
);
|
147 |
$collection->addExpressionFieldToSelect(
|
148 |
'postcode',
|
149 |
'IF({{pakjegemak_parent_id}}, {{pakjegemak_postcode}}, {{shipping_postcode}})',
|
150 |
array(
|
151 |
-
'pakjegemak_parent_id' => '
|
152 |
-
'pakjegemak_postcode' => '
|
153 |
-
'shipping_postcode' => '
|
154 |
)
|
155 |
);
|
156 |
|
@@ -160,10 +160,10 @@ class TIG_MyParcel2014_Model_Adminhtml_Observer_OrderGrid extends Varien_Object
|
|
160 |
* Join sales_flat_order table.
|
161 |
*/
|
162 |
$select->joinInner(
|
163 |
-
array('
|
164 |
-
'
|
165 |
array(
|
166 |
-
'shipping_method' => '
|
167 |
)
|
168 |
);
|
169 |
|
@@ -172,13 +172,13 @@ class TIG_MyParcel2014_Model_Adminhtml_Observer_OrderGrid extends Varien_Object
|
|
172 |
*/
|
173 |
$select->joinLeft(
|
174 |
array('shipping_address' => $resource->getTableName('sales/order_address')),
|
175 |
-
"
|
176 |
array()
|
177 |
);
|
178 |
$select->joinLeft(
|
179 |
array('pakjegemak_address' => $resource->getTableName('sales/order_address')),
|
180 |
-
"
|
181 |
-
"AND
|
182 |
array()
|
183 |
);
|
184 |
|
@@ -187,15 +187,15 @@ class TIG_MyParcel2014_Model_Adminhtml_Observer_OrderGrid extends Varien_Object
|
|
187 |
*/
|
188 |
$select->joinLeft(
|
189 |
array('tig_myparcel_shipment' => $resource->getTableName('tig_myparcel/shipment')),
|
190 |
-
'
|
191 |
array(
|
192 |
'shipping_status' => new Zend_Db_Expr(
|
193 |
-
'group_concat(
|
194 |
-
. '
|
195 |
),
|
196 |
'barcode' => new Zend_Db_Expr(
|
197 |
-
'group_concat(
|
198 |
-
. '
|
199 |
),
|
200 |
)
|
201 |
);
|
@@ -328,7 +328,7 @@ class TIG_MyParcel2014_Model_Adminhtml_Observer_OrderGrid extends Varien_Object
|
|
328 |
'myparcel_print_labels',
|
329 |
array(
|
330 |
'label' => $helper->__('MyParcel - Create & Print shipping labels'),
|
331 |
-
'url' => $adminhtmlHelper->getUrl('
|
332 |
'additional' => array(
|
333 |
'type_consignment' => array(
|
334 |
'name' => 'type_consignment',
|
@@ -357,7 +357,7 @@ class TIG_MyParcel2014_Model_Adminhtml_Observer_OrderGrid extends Varien_Object
|
|
357 |
'myparcel_create_shipments',
|
358 |
array(
|
359 |
'label' => $helper->__('MyParcel - Create Magento shipments (no labels)'),
|
360 |
-
'url' => $adminhtmlHelper->getUrl('
|
361 |
)
|
362 |
);
|
363 |
|
139 |
'country_id',
|
140 |
'IF({{pakjegemak_parent_id}}, {{pakjegemak_country_id}}, {{shipping_country_id}})',
|
141 |
array(
|
142 |
+
'pakjegemak_parent_id' => 'pakjegemak_address.parent_id',
|
143 |
+
'pakjegemak_country_id' => 'pakjegemak_address.country_id',
|
144 |
+
'shipping_country_id' => 'shipping_address.country_id',
|
145 |
)
|
146 |
);
|
147 |
$collection->addExpressionFieldToSelect(
|
148 |
'postcode',
|
149 |
'IF({{pakjegemak_parent_id}}, {{pakjegemak_postcode}}, {{shipping_postcode}})',
|
150 |
array(
|
151 |
+
'pakjegemak_parent_id' => 'pakjegemak_address.parent_id',
|
152 |
+
'pakjegemak_postcode' => 'pakjegemak_address.postcode',
|
153 |
+
'shipping_postcode' => 'shipping_address.postcode',
|
154 |
)
|
155 |
);
|
156 |
|
160 |
* Join sales_flat_order table.
|
161 |
*/
|
162 |
$select->joinInner(
|
163 |
+
array('tig_myparcel_order' => $resource->getTableName('sales/order')),
|
164 |
+
'main_table.entity_id=tig_myparcel_order.entity_id',
|
165 |
array(
|
166 |
+
'shipping_method' => 'tig_myparcel_order.shipping_method',
|
167 |
)
|
168 |
);
|
169 |
|
172 |
*/
|
173 |
$select->joinLeft(
|
174 |
array('shipping_address' => $resource->getTableName('sales/order_address')),
|
175 |
+
"main_table.entity_id=shipping_address.parent_id AND shipping_address.address_type='shipping'",
|
176 |
array()
|
177 |
);
|
178 |
$select->joinLeft(
|
179 |
array('pakjegemak_address' => $resource->getTableName('sales/order_address')),
|
180 |
+
"main_table.entity_id=pakjegemak_address.parent_id " .
|
181 |
+
"AND pakjegemak_address.address_type='pakje_gemak'",
|
182 |
array()
|
183 |
);
|
184 |
|
187 |
*/
|
188 |
$select->joinLeft(
|
189 |
array('tig_myparcel_shipment' => $resource->getTableName('tig_myparcel/shipment')),
|
190 |
+
'main_table.entity_id=tig_myparcel_shipment.order_id',
|
191 |
array(
|
192 |
'shipping_status' => new Zend_Db_Expr(
|
193 |
+
'group_concat(tig_myparcel_shipment.status ORDER BY '
|
194 |
+
. 'tig_myparcel_shipment.created_at DESC SEPARATOR ",")'
|
195 |
),
|
196 |
'barcode' => new Zend_Db_Expr(
|
197 |
+
'group_concat(tig_myparcel_shipment.barcode ORDER BY '
|
198 |
+
. 'tig_myparcel_shipment.created_at DESC SEPARATOR ",")'
|
199 |
),
|
200 |
)
|
201 |
);
|
328 |
'myparcel_print_labels',
|
329 |
array(
|
330 |
'label' => $helper->__('MyParcel - Create & Print shipping labels'),
|
331 |
+
'url' => $adminhtmlHelper->getUrl('adminhtml/myparcelAdminhtml_shipment/massPrintLabels'),
|
332 |
'additional' => array(
|
333 |
'type_consignment' => array(
|
334 |
'name' => 'type_consignment',
|
357 |
'myparcel_create_shipments',
|
358 |
array(
|
359 |
'label' => $helper->__('MyParcel - Create Magento shipments (no labels)'),
|
360 |
+
'url' => $adminhtmlHelper->getUrl('adminhtml/myparcelAdminhtml_shipment/massCreateShipments'),
|
361 |
)
|
362 |
);
|
363 |
|
app/code/community/TIG/MyParcel2014/Model/Adminhtml/Observer/ShipmentGrid.php
CHANGED
@@ -140,18 +140,18 @@ class TIG_MyParcel2014_Model_Adminhtml_Observer_ShipmentGrid extends Varien_Obje
|
|
140 |
'country_id',
|
141 |
'IF({{pakjegemak_parent_id}}, {{pakjegemak_country_id}}, {{shipping_country_id}})',
|
142 |
array(
|
143 |
-
'pakjegemak_parent_id' => '
|
144 |
-
'pakjegemak_country_id' => '
|
145 |
-
'shipping_country_id' => '
|
146 |
)
|
147 |
);
|
148 |
$collection->addExpressionFieldToSelect(
|
149 |
'postcode',
|
150 |
'IF({{pakjegemak_parent_id}}, {{pakjegemak_postcode}}, {{shipping_postcode}})',
|
151 |
array(
|
152 |
-
'pakjegemak_parent_id' => '
|
153 |
-
'pakjegemak_postcode' => '
|
154 |
-
'shipping_postcode' => '
|
155 |
)
|
156 |
);
|
157 |
|
@@ -162,7 +162,7 @@ class TIG_MyParcel2014_Model_Adminhtml_Observer_ShipmentGrid extends Varien_Obje
|
|
162 |
*/
|
163 |
$select->joinInner(
|
164 |
array('order' => $resource->getTableName('sales/order')),
|
165 |
-
'
|
166 |
array(
|
167 |
'shipping_method' => 'order.shipping_method',
|
168 |
)
|
@@ -173,13 +173,13 @@ class TIG_MyParcel2014_Model_Adminhtml_Observer_ShipmentGrid extends Varien_Obje
|
|
173 |
*/
|
174 |
$select->joinLeft(
|
175 |
array('shipping_address' => $resource->getTableName('sales/order_address')),
|
176 |
-
"
|
177 |
array()
|
178 |
);
|
179 |
$select->joinLeft(
|
180 |
array('pakjegemak_address' => $resource->getTableName('sales/order_address')),
|
181 |
-
"
|
182 |
-
"AND
|
183 |
array()
|
184 |
);
|
185 |
|
@@ -188,7 +188,7 @@ class TIG_MyParcel2014_Model_Adminhtml_Observer_ShipmentGrid extends Varien_Obje
|
|
188 |
*/
|
189 |
$select->joinLeft(
|
190 |
array('tig_myparcel_shipment' => $resource->getTableName('tig_myparcel/shipment')),
|
191 |
-
'
|
192 |
array('status' => 'tig_myparcel_shipment.status', 'barcode' => 'tig_myparcel_shipment.barcode')
|
193 |
);
|
194 |
|
@@ -415,7 +415,7 @@ class TIG_MyParcel2014_Model_Adminhtml_Observer_ShipmentGrid extends Varien_Obje
|
|
415 |
'myparcel_print_labels',
|
416 |
array(
|
417 |
'label' => $helper->__('MyParcel - Print shipping labels'),
|
418 |
-
'url' => $adminhtmlHelper->getUrl('
|
419 |
'additional' => array(
|
420 |
'type_consignment' => array(
|
421 |
'name' => 'type_consignment',
|
140 |
'country_id',
|
141 |
'IF({{pakjegemak_parent_id}}, {{pakjegemak_country_id}}, {{shipping_country_id}})',
|
142 |
array(
|
143 |
+
'pakjegemak_parent_id' => 'pakjegemak_address.parent_id',
|
144 |
+
'pakjegemak_country_id' => 'pakjegemak_address.country_id',
|
145 |
+
'shipping_country_id' => 'shipping_address.country_id',
|
146 |
)
|
147 |
);
|
148 |
$collection->addExpressionFieldToSelect(
|
149 |
'postcode',
|
150 |
'IF({{pakjegemak_parent_id}}, {{pakjegemak_postcode}}, {{shipping_postcode}})',
|
151 |
array(
|
152 |
+
'pakjegemak_parent_id' => 'pakjegemak_address.parent_id',
|
153 |
+
'pakjegemak_postcode' => 'pakjegemak_address.postcode',
|
154 |
+
'shipping_postcode' => 'shipping_address.postcode',
|
155 |
)
|
156 |
);
|
157 |
|
162 |
*/
|
163 |
$select->joinInner(
|
164 |
array('order' => $resource->getTableName('sales/order')),
|
165 |
+
'main_table.order_id=order.entity_id',
|
166 |
array(
|
167 |
'shipping_method' => 'order.shipping_method',
|
168 |
)
|
173 |
*/
|
174 |
$select->joinLeft(
|
175 |
array('shipping_address' => $resource->getTableName('sales/order_address')),
|
176 |
+
"main_table.order_id=shipping_address.parent_id AND shipping_address.address_type='shipping'",
|
177 |
array()
|
178 |
);
|
179 |
$select->joinLeft(
|
180 |
array('pakjegemak_address' => $resource->getTableName('sales/order_address')),
|
181 |
+
"main_table.order_id=pakjegemak_address.parent_id " .
|
182 |
+
"AND pakjegemak_address.address_type='pakje_gemak'",
|
183 |
array()
|
184 |
);
|
185 |
|
188 |
*/
|
189 |
$select->joinLeft(
|
190 |
array('tig_myparcel_shipment' => $resource->getTableName('tig_myparcel/shipment')),
|
191 |
+
'main_table.entity_id=tig_myparcel_shipment.shipment_id',
|
192 |
array('status' => 'tig_myparcel_shipment.status', 'barcode' => 'tig_myparcel_shipment.barcode')
|
193 |
);
|
194 |
|
415 |
'myparcel_print_labels',
|
416 |
array(
|
417 |
'label' => $helper->__('MyParcel - Print shipping labels'),
|
418 |
+
'url' => $adminhtmlHelper->getUrl('adminhtml/myparcelAdminhtml_shipment/massPrintShipmentLabels'),
|
419 |
'additional' => array(
|
420 |
'type_consignment' => array(
|
421 |
'name' => 'type_consignment',
|
app/code/community/TIG/MyParcel2014/Model/Adminhtml/Observer/SystemConfig.php
CHANGED
@@ -76,7 +76,7 @@ class TIG_MyParcel2014_Model_Adminhtml_Observer_SystemConfig
|
|
76 |
|
77 |
$helper = Mage::helper('tig_myparcel');
|
78 |
|
79 |
-
$onClickUrl = $configEditBlock->getUrl('
|
80 |
$onClick = "setLocation('{$onClickUrl}')";
|
81 |
|
82 |
$button = $configEditBlock->getLayout()->createBlock('adminhtml/widget_button');
|
76 |
|
77 |
$helper = Mage::helper('tig_myparcel');
|
78 |
|
79 |
+
$onClickUrl = $configEditBlock->getUrl('adminhtml/myparcelAdminhtml_config/downloadLogs');
|
80 |
$onClick = "setLocation('{$onClickUrl}')";
|
81 |
|
82 |
$button = $configEditBlock->getLayout()->createBlock('adminhtml/widget_button');
|
app/code/community/TIG/MyParcel2014/Model/Adminhtml/Observer/ViewShipment.php
CHANGED
@@ -39,8 +39,8 @@
|
|
39 |
|
40 |
class TIG_MyParcel2014_Model_Adminhtml_Observer_ViewShipment extends Varien_Object
|
41 |
{
|
42 |
-
const RETOURLINK_ROUTE = '
|
43 |
-
const CREDIT_CONSIGNMENT_ROUTE = '
|
44 |
|
45 |
/**
|
46 |
* Adds a button to the view-shipment page, allowing the merchant to create a MyParcel-consignment.
|
39 |
|
40 |
class TIG_MyParcel2014_Model_Adminhtml_Observer_ViewShipment extends Varien_Object
|
41 |
{
|
42 |
+
const RETOURLINK_ROUTE = 'adminhtml/myparcelAdminhtml_config/generateRetourlink';
|
43 |
+
const CREDIT_CONSIGNMENT_ROUTE = 'adminhtml/myparcelAdminhtml_config/creditConsignment';
|
44 |
|
45 |
/**
|
46 |
* Adds a button to the view-shipment page, allowing the merchant to create a MyParcel-consignment.
|
app/code/community/TIG/MyParcel2014/controllers/{Adminhtml → MyparcelAdminhtml}/ConfigController.php
RENAMED
@@ -1,6 +1,6 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
class
|
4 |
{
|
5 |
/**
|
6 |
* Download all MyParcel log files as a zip file.
|
1 |
<?php
|
2 |
|
3 |
+
class TIG_MyParcel2014_MyparcelAdminhtml_ConfigController extends Mage_Adminhtml_Controller_Action
|
4 |
{
|
5 |
/**
|
6 |
* Download all MyParcel log files as a zip file.
|
app/code/community/TIG/MyParcel2014/controllers/{Adminhtml → MyparcelAdminhtml}/ShipmentController.php
RENAMED
@@ -36,7 +36,7 @@
|
|
36 |
* @copyright Copyright (c) 2014 Total Internet Group B.V. (http://www.totalinternetgroup.nl)
|
37 |
* @license http://creativecommons.org/licenses/by-nc-nd/3.0/nl/deed.en_US
|
38 |
*/
|
39 |
-
class
|
40 |
{
|
41 |
/**
|
42 |
* Used module name in current adminhtml controller.
|
@@ -930,8 +930,4 @@ class TIG_MyParcel2014_Adminhtml_ShipmentController extends Mage_Adminhtml_Contr
|
|
930 |
return $itemQtys;
|
931 |
}
|
932 |
|
933 |
-
|
934 |
-
{
|
935 |
-
return true;
|
936 |
-
}
|
937 |
-
}
|
36 |
* @copyright Copyright (c) 2014 Total Internet Group B.V. (http://www.totalinternetgroup.nl)
|
37 |
* @license http://creativecommons.org/licenses/by-nc-nd/3.0/nl/deed.en_US
|
38 |
*/
|
39 |
+
class TIG_MyParcel2014_MyparcelAdminhtml_ShipmentController extends Mage_Adminhtml_Controller_Action
|
40 |
{
|
41 |
/**
|
42 |
* Used module name in current adminhtml controller.
|
930 |
return $itemQtys;
|
931 |
}
|
932 |
|
933 |
+
}
|
|
|
|
|
|
|
|
app/code/community/TIG/MyParcel2014/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<TIG_MyParcel2014>
|
5 |
-
<version>1.3.
|
6 |
</TIG_MyParcel2014>
|
7 |
</modules>
|
8 |
<global>
|
@@ -71,13 +71,13 @@
|
|
71 |
</global>
|
72 |
<admin>
|
73 |
<routers>
|
74 |
-
<
|
75 |
-
<use>admin</use>
|
76 |
<args>
|
77 |
-
<
|
78 |
-
|
|
|
79 |
</args>
|
80 |
-
</
|
81 |
</routers>
|
82 |
</admin>
|
83 |
<adminhtml>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<TIG_MyParcel2014>
|
5 |
+
<version>1.3.1</version>
|
6 |
</TIG_MyParcel2014>
|
7 |
</modules>
|
8 |
<global>
|
71 |
</global>
|
72 |
<admin>
|
73 |
<routers>
|
74 |
+
<adminhtml>
|
|
|
75 |
<args>
|
76 |
+
<modules>
|
77 |
+
<myparcel_admin after="Mage_Adminhtml">TIG_MyParcel2014</myparcel_admin>
|
78 |
+
</modules>
|
79 |
</args>
|
80 |
+
</adminhtml>
|
81 |
</routers>
|
82 |
</admin>
|
83 |
<adminhtml>
|
app/design/adminhtml/default/default/template/TIG/MyParcel2014/sales/order/shipment/shipping_info.phtml
CHANGED
@@ -70,7 +70,7 @@ if(true == $_isPakjegemak){
|
|
70 |
|
71 |
<div id="print_container" style="display:none;">
|
72 |
<div id="deliveryOptions">
|
73 |
-
<form id="myparcel_create_consignment_form" method="post" action="<?php echo $this->getUrl('
|
74 |
<input type="hidden" name="shipment_id" value="<?php echo $_shipment->getId();?>" />
|
75 |
<input type="hidden" name="form_key" value="<?php echo $this->getFormKey(); ?>" />
|
76 |
<div id="tig_myparcel_consignment_options">
|
70 |
|
71 |
<div id="print_container" style="display:none;">
|
72 |
<div id="deliveryOptions">
|
73 |
+
<form id="myparcel_create_consignment_form" method="post" action="<?php echo $this->getUrl('adminhtml/myparcelAdminhtml_shipment/createConsignment');?>">
|
74 |
<input type="hidden" name="shipment_id" value="<?php echo $_shipment->getId();?>" />
|
75 |
<input type="hidden" name="form_key" value="<?php echo $this->getFormKey(); ?>" />
|
76 |
<div id="tig_myparcel_consignment_options">
|
app/design/frontend/base/default/template/TIG/MyParcel2014/checkout/idev_onestepcheckout/js.phtml
DELETED
@@ -1,185 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* ___________ __ __
|
4 |
-
* \__ ___/____ _/ |_ _____ | |
|
5 |
-
* | | / _ \\ __\\__ \ | |
|
6 |
-
* | | | |_| || | / __ \_| |__
|
7 |
-
* |____| \____/ |__| (____ /|____/
|
8 |
-
* \/
|
9 |
-
* ___ __ __
|
10 |
-
* | | ____ _/ |_ ____ _______ ____ ____ _/ |_
|
11 |
-
* | | / \\ __\_/ __ \\_ __ \ / \ _/ __ \\ __\
|
12 |
-
* | || | \| | \ ___/ | | \/| | \\ ___/ | |
|
13 |
-
* |___||___| /|__| \_____>|__| |___| / \_____>|__|
|
14 |
-
* \/ \/
|
15 |
-
* ________
|
16 |
-
* / _____/_______ ____ __ __ ______
|
17 |
-
* / \ ___\_ __ \ / _ \ | | \\____ \
|
18 |
-
* \ \_\ \| | \/| |_| || | /| |_| |
|
19 |
-
* \______ /|__| \____/ |____/ | __/
|
20 |
-
* \/ |__|
|
21 |
-
*
|
22 |
-
* NOTICE OF LICENSE
|
23 |
-
*
|
24 |
-
* This source file is subject to the Creative Commons License.
|
25 |
-
* It is available through the world-wide-web at this URL:
|
26 |
-
* http://creativecommons.org/licenses/by-nc-nd/3.0/nl/deed.en_US
|
27 |
-
* If you are unable to obtain it through the world-wide-web, please send an email
|
28 |
-
* to servicedesk@tig.nl so we can send you a copy immediately.
|
29 |
-
*
|
30 |
-
* DISCLAIMER
|
31 |
-
*
|
32 |
-
* Do not edit or add to this file if you wish to upgrade this module to newer
|
33 |
-
* versions in the future. If you wish to customize this module for your
|
34 |
-
* needs please contact servicedesk@tig.nl for more information.
|
35 |
-
*
|
36 |
-
* @copyright Copyright (c) 2015 Total Internet Group B.V. (http://www.tig.nl)
|
37 |
-
* @license http://creativecommons.org/licenses/by-nc-nd/3.0/nl/deed.en_US
|
38 |
-
*/
|
39 |
-
?>
|
40 |
-
<?php $_helper = Mage::helper('tig_myparcel'); ?>
|
41 |
-
<div id="myparcel_checkout_overlay_container" style="display:none;"></div>
|
42 |
-
<div id="myparcel_checkout_container" style="display:none;">
|
43 |
-
<div id="#{overlay_id}" class="responsive-add-location">
|
44 |
-
<div class="overlay close"></div>
|
45 |
-
<div id="#{overlay_window_id}">
|
46 |
-
<div class="logo">
|
47 |
-
<img src="<?php echo $this->getSkinUrl('images/TIG/MyParcel/checkout/logo_postnl.png');?>" alt="" />
|
48 |
-
<p class="powered-by"><?php echo $_helper->__('Powered by MyParcel'); ?></p>
|
49 |
-
</div>
|
50 |
-
<span class="close"><?php echo $_helper->__('Close'); ?></span>
|
51 |
-
<h3><?php echo $_helper->__('Choose a PostNL pickup location'); ?></h3>
|
52 |
-
<div class="responsive-location-search">
|
53 |
-
<div class="search-form">
|
54 |
-
<label for="#{postcode_field_id}"><?php echo $_helper->__('Search by zipcode and housenumber'); ?>:</label>
|
55 |
-
<input type="text" class="myparcel-input" name="" id="#{postcode_field_id}" value="" placeholder="<?php echo $_helper->__('Zipcode'); ?>" />
|
56 |
-
<label for="#{housenr_field_id}"><?php echo $_helper->__('Housenumber'); ?>:</label>
|
57 |
-
<input type="text" class="myparcel-input" name="" id="#{housenr_field_id}" value="" placeholder="<?php echo $_helper->__('Housenumber'); ?>" />
|
58 |
-
</div>
|
59 |
-
<div class="actions">
|
60 |
-
<div id="#{location_loader_id}" class="myparcel-loader" style="display:none;"></div>
|
61 |
-
<button class="myparcel-button" id="#{search_button_id}"><?php echo $_helper->__('Search'); ?></button>
|
62 |
-
</div>
|
63 |
-
</div>
|
64 |
-
|
65 |
-
<div class="responsive-location-results">
|
66 |
-
<div class="heading">
|
67 |
-
<h3><?php echo $_helper->__('Nearest myparcel pickup points'); ?></h3>
|
68 |
-
</div>
|
69 |
-
|
70 |
-
<ul class="list" id="#{location_list_id}">
|
71 |
-
</ul>
|
72 |
-
</div>
|
73 |
-
</div>
|
74 |
-
</div>
|
75 |
-
</div>
|
76 |
-
<div id="myparcel_checkout_location_template" style="display:none;">
|
77 |
-
<li class="location-details #{location_class}" id="#{location_id}" data-location_code="#{location_code}">
|
78 |
-
<div class="content">
|
79 |
-
<div class="location-info">
|
80 |
-
<span class="radio selected"></span><span class="address"><strong>#{location}</strong><br>#{street} #{street_number}<br>#{postcode} #{city}</span><span class="distance"><strong>#{distance} m</strong></span>
|
81 |
-
</div>
|
82 |
-
<a style="display:none;" href="#" class="info-link">More info</a>
|
83 |
-
<button class="myparcel-button" onclick="#{select_location_onclick}"><?php echo $_helper->__('Select'); ?></button>
|
84 |
-
</div>
|
85 |
-
<div class="more-info" id="#{location_info_id}" style="display:none;">
|
86 |
-
<table class="business-hours">
|
87 |
-
<thead>
|
88 |
-
<tr>
|
89 |
-
<th colspan="2"><?php echo $this->__('Business hours') ?></th>
|
90 |
-
</tr>
|
91 |
-
</thead>
|
92 |
-
<tbody>
|
93 |
-
<tr>
|
94 |
-
<th><?php echo $this->__('Mo') ?></th>
|
95 |
-
<td>#{opening_hours_monday}</td>
|
96 |
-
</tr>
|
97 |
-
<tr>
|
98 |
-
<th><?php echo $this->__('Tu') ?></th>
|
99 |
-
<td>#{opening_hours_tuesday}</td>
|
100 |
-
</tr>
|
101 |
-
<tr>
|
102 |
-
<th><?php echo $this->__('We') ?></th>
|
103 |
-
<td>#{opening_hours_wednesday}</td>
|
104 |
-
</tr>
|
105 |
-
<tr>
|
106 |
-
<th><?php echo $this->__('Th') ?></th>
|
107 |
-
<td>#{opening_hours_thursday}</td>
|
108 |
-
</tr>
|
109 |
-
<tr>
|
110 |
-
<th><?php echo $this->__('Fr') ?></th>
|
111 |
-
<td>#{opening_hours_friday}</td>
|
112 |
-
</tr>
|
113 |
-
<tr>
|
114 |
-
<th><?php echo $this->__('Sa') ?></th>
|
115 |
-
<td>#{opening_hours_saturday}</td>
|
116 |
-
</tr>
|
117 |
-
<tr>
|
118 |
-
<th><?php echo $this->__('Su') ?></th>
|
119 |
-
<td>#{opening_hours_sunday}</td>
|
120 |
-
</tr>
|
121 |
-
</tbody>
|
122 |
-
</table>
|
123 |
-
</div>
|
124 |
-
</li>
|
125 |
-
</div>
|
126 |
-
<div id="myparcel_checkout_location_error_template" style="display:none;">
|
127 |
-
<li id="no_locations_error" class="location-error-msg">
|
128 |
-
<?php echo $_helper->__('Unfortunately no locations could be found. Please check your postcode and house number combination.'); ?>
|
129 |
-
</li>
|
130 |
-
</div>
|
131 |
-
<div id="myparcel_checkout_selected_location_template" style="display:none;">
|
132 |
-
<div id="#{selected_location_id}" class="complete">
|
133 |
-
<label><?php echo $this->__('Selected post office location:') ?></label>
|
134 |
-
<address>
|
135 |
-
#{location}<br />
|
136 |
-
#{street} #{street_number}<br />
|
137 |
-
#{city}, #{postcode}<br />
|
138 |
-
Nederland<br />
|
139 |
-
T: #{phone_number}
|
140 |
-
<a href="#" onclick="myParcelCheckout.openOverlay();return false;" class="myparcel_checkout_edit_link"><?php echo $this->__('Edit'); ?></a>
|
141 |
-
</address>
|
142 |
-
</div>
|
143 |
-
</div>
|
144 |
-
<script type="text/javascript">
|
145 |
-
//<![CDATA[
|
146 |
-
var myParcelCheckout;
|
147 |
-
document.observe('dom:loaded', function() {
|
148 |
-
var checkoutContainer = $('myparcel_checkout_container');
|
149 |
-
var locationContainer = $('myparcel_checkout_location_template');
|
150 |
-
var locationErrorContainer = $('myparcel_checkout_location_error_template');
|
151 |
-
var selectedLocationContainer = $('myparcel_checkout_selected_location_template');
|
152 |
-
var templates = {
|
153 |
-
overlay : new Template(checkoutContainer.innerHTML),
|
154 |
-
location : new Template(locationContainer.innerHTML),
|
155 |
-
location_error : new Template(locationErrorContainer.innerHTML),
|
156 |
-
selected_location : new Template(selectedLocationContainer.innerHTML)
|
157 |
-
};
|
158 |
-
|
159 |
-
checkoutContainer.remove();
|
160 |
-
locationContainer.remove();
|
161 |
-
locationErrorContainer.remove();
|
162 |
-
selectedLocationContainer.remove();
|
163 |
-
|
164 |
-
var config = {
|
165 |
-
get_locations_url : '<?php echo $this->getUrl('myparcel2014/checkout/getLocations', array('_secure' => true)); ?>',
|
166 |
-
save_location_url : '<?php echo $this->getUrl('myparcel2014/checkout/saveLocation', array('_secure' => true)); ?>',
|
167 |
-
use_shipping_or_billing_checkbox : true,
|
168 |
-
save_location_on_select : true
|
169 |
-
};
|
170 |
-
|
171 |
-
var selectors = {
|
172 |
-
shipping_methods_container : '.onestepcheckout-shipping-method-block',
|
173 |
-
shipping_method : '#s_method_myparcel_pakjegemak',
|
174 |
-
billing_or_shipping_field : '#billing\\:use_for_shipping_yes'
|
175 |
-
};
|
176 |
-
|
177 |
-
myParcelCheckout = new MyParcelCheckout(config, selectors, templates, {});
|
178 |
-
|
179 |
-
var shippingMethod =$('s_method_myparcel_pakjegemak');
|
180 |
-
if (shippingMethod.checked) {
|
181 |
-
shippingMethod.checked = false;
|
182 |
-
}
|
183 |
-
});
|
184 |
-
//]]>
|
185 |
-
</script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/design/frontend/base/default/template/TIG/MyParcel2014/checkout/onepage/js.phtml
DELETED
@@ -1,228 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* ___________ __ __
|
4 |
-
* \__ ___/____ _/ |_ _____ | |
|
5 |
-
* | | / _ \\ __\\__ \ | |
|
6 |
-
* | | | |_| || | / __ \_| |__
|
7 |
-
* |____| \____/ |__| (____ /|____/
|
8 |
-
* \/
|
9 |
-
* ___ __ __
|
10 |
-
* | | ____ _/ |_ ____ _______ ____ ____ _/ |_
|
11 |
-
* | | / \\ __\_/ __ \\_ __ \ / \ _/ __ \\ __\
|
12 |
-
* | || | \| | \ ___/ | | \/| | \\ ___/ | |
|
13 |
-
* |___||___| /|__| \_____>|__| |___| / \_____>|__|
|
14 |
-
* \/ \/
|
15 |
-
* ________
|
16 |
-
* / _____/_______ ____ __ __ ______
|
17 |
-
* / \ ___\_ __ \ / _ \ | | \\____ \
|
18 |
-
* \ \_\ \| | \/| |_| || | /| |_| |
|
19 |
-
* \______ /|__| \____/ |____/ | __/
|
20 |
-
* \/ |__|
|
21 |
-
*
|
22 |
-
* NOTICE OF LICENSE
|
23 |
-
*
|
24 |
-
* This source file is subject to the Creative Commons License.
|
25 |
-
* It is available through the world-wide-web at this URL:
|
26 |
-
* http://creativecommons.org/licenses/by-nc-nd/3.0/nl/deed.en_US
|
27 |
-
* If you are unable to obtain it through the world-wide-web, please send an email
|
28 |
-
* to servicedesk@tig.nl so we can send you a copy immediately.
|
29 |
-
*
|
30 |
-
* DISCLAIMER
|
31 |
-
*
|
32 |
-
* Do not edit or add to this file if you wish to upgrade this module to newer
|
33 |
-
* versions in the future. If you wish to customize this module for your
|
34 |
-
* needs please contact servicedesk@tig.nl for more information.
|
35 |
-
*
|
36 |
-
* @copyright Copyright (c) 2015 Total Internet Group B.V. (http://www.tig.nl)
|
37 |
-
* @license http://creativecommons.org/licenses/by-nc-nd/3.0/nl/deed.en_US
|
38 |
-
*/
|
39 |
-
?>
|
40 |
-
<?php
|
41 |
-
$_helper = Mage::helper('tig_myparcel');
|
42 |
-
$version = Mage::getVersionInfo();
|
43 |
-
$_selector = '';
|
44 |
-
if((int) $version['major'] === 1 && (int)$version['minor'] < 8){
|
45 |
-
$_selector = 'style_16';
|
46 |
-
}
|
47 |
-
?>
|
48 |
-
<div id="myparcel_checkout_overlay_container" style="display:none;"></div>
|
49 |
-
<div id="myparcel_checkout_container" style="display:none;">
|
50 |
-
<div id="#{overlay_id}" class="responsive-add-location <?php echo $_selector;?>">
|
51 |
-
<div class="overlay close"></div>
|
52 |
-
<div id="#{overlay_window_id}">
|
53 |
-
<div class="logo">
|
54 |
-
<img src="<?php echo $this->getSkinUrl('images/TIG/MyParcel/checkout/logo_postnl.png');?>" alt="" />
|
55 |
-
<p class="powered-by"><?php echo $_helper->__('Powered by MyParcel'); ?></p>
|
56 |
-
</div>
|
57 |
-
<span class="close"><?php echo $_helper->__('Close'); ?></span>
|
58 |
-
<h3><?php echo $_helper->__('Choose a PostNL pickup location'); ?></h3>
|
59 |
-
<div class="responsive-location-search">
|
60 |
-
<div class="search-form">
|
61 |
-
<label for="#{postcode_field_id}"><?php echo $_helper->__('Search by zipcode and housenumber'); ?>:</label>
|
62 |
-
<input type="text" class="myparcel-input" name="" id="#{postcode_field_id}" value="" placeholder="<?php echo $_helper->__('Zipcode'); ?>" />
|
63 |
-
<label for="#{housenr_field_id}"><?php echo $_helper->__('Housenumber'); ?>:</label>
|
64 |
-
<input type="text" class="myparcel-input" name="" id="#{housenr_field_id}" value="" placeholder="<?php echo $_helper->__('Housenumber'); ?>" />
|
65 |
-
</div>
|
66 |
-
<div class="actions">
|
67 |
-
<div id="#{location_loader_id}" class="myparcel-loader" style="display:none;"></div>
|
68 |
-
<button class="myparcel-button" id="#{search_button_id}"><?php echo $_helper->__('Search'); ?></button>
|
69 |
-
</div>
|
70 |
-
</div>
|
71 |
-
|
72 |
-
<div class="responsive-location-results">
|
73 |
-
<div class="heading">
|
74 |
-
<h3><?php echo $_helper->__('Nearest myparcel pickup points'); ?></h3>
|
75 |
-
</div>
|
76 |
-
|
77 |
-
<ul class="list" id="#{location_list_id}">
|
78 |
-
</ul>
|
79 |
-
</div>
|
80 |
-
</div>
|
81 |
-
</div>
|
82 |
-
</div>
|
83 |
-
<div id="myparcel_checkout_location_template" style="display:none;">
|
84 |
-
<li class="location-details #{location_class}" id="#{location_id}" data-location_code="#{location_code}">
|
85 |
-
<div class="content">
|
86 |
-
<div class="location-info">
|
87 |
-
<span class="radio selected"></span>
|
88 |
-
<span class="address"><strong>#{location}</strong><br>#{street} #{street_number}<br>#{postcode} #{city}</span>
|
89 |
-
</div>
|
90 |
-
<span class="distance"><strong>#{distance} m</strong></span>
|
91 |
-
<a style="display:none;" href="#" class="info-link">More info</a>
|
92 |
-
<button class="myparcel-button" onclick="#{select_location_onclick}"><?php echo $_helper->__('Select'); ?></button>
|
93 |
-
</div>
|
94 |
-
<div class="more-info" id="#{location_info_id}" style="display:none;">
|
95 |
-
<table class="business-hours">
|
96 |
-
<thead>
|
97 |
-
<tr>
|
98 |
-
<th colspan="2"><?php echo $this->__('Business hours') ?></th>
|
99 |
-
</tr>
|
100 |
-
</thead>
|
101 |
-
<tbody>
|
102 |
-
<tr>
|
103 |
-
<th><?php echo $this->__('Mo') ?></th>
|
104 |
-
<td>#{opening_hours_monday}</td>
|
105 |
-
</tr>
|
106 |
-
<tr>
|
107 |
-
<th><?php echo $this->__('Tu') ?></th>
|
108 |
-
<td>#{opening_hours_tuesday}</td>
|
109 |
-
</tr>
|
110 |
-
<tr>
|
111 |
-
<th><?php echo $this->__('We') ?></th>
|
112 |
-
<td>#{opening_hours_wednesday}</td>
|
113 |
-
</tr>
|
114 |
-
<tr>
|
115 |
-
<th><?php echo $this->__('Th') ?></th>
|
116 |
-
<td>#{opening_hours_thursday}</td>
|
117 |
-
</tr>
|
118 |
-
<tr>
|
119 |
-
<th><?php echo $this->__('Fr') ?></th>
|
120 |
-
<td>#{opening_hours_friday}</td>
|
121 |
-
</tr>
|
122 |
-
<tr>
|
123 |
-
<th><?php echo $this->__('Sa') ?></th>
|
124 |
-
<td>#{opening_hours_saturday}</td>
|
125 |
-
</tr>
|
126 |
-
<tr>
|
127 |
-
<th><?php echo $this->__('Su') ?></th>
|
128 |
-
<td>#{opening_hours_sunday}</td>
|
129 |
-
</tr>
|
130 |
-
</tbody>
|
131 |
-
</table>
|
132 |
-
</div>
|
133 |
-
</li>
|
134 |
-
</div>
|
135 |
-
<div id="myparcel_checkout_location_error_template" style="display:none;">
|
136 |
-
<li id="no_locations_error" class="location-error-msg">
|
137 |
-
<?php echo $_helper->__('Unfortunately no locations could be found. Please check your postcode and house number combination.'); ?>
|
138 |
-
</li>
|
139 |
-
</div>
|
140 |
-
<div id="myparcel_checkout_selected_location_template" style="display:none;">
|
141 |
-
<div id="#{selected_location_id}" class="complete">
|
142 |
-
<label class="head"><?php echo $this->__('Selected post office location:') ?></label>
|
143 |
-
<address>
|
144 |
-
#{location}<br />
|
145 |
-
#{street} #{street_number}<br />
|
146 |
-
#{city}, #{postcode}<br />
|
147 |
-
Nederland<br />
|
148 |
-
T: #{phone_number}
|
149 |
-
<a href="#" onclick="myParcelCheckout.openOverlay();return false;" class="myparcel_checkout_edit_link"><?php echo $this->__('Edit'); ?></a>
|
150 |
-
</address>
|
151 |
-
</div>
|
152 |
-
</div>
|
153 |
-
<script type="text/javascript">
|
154 |
-
//<![CDATA[
|
155 |
-
var myParcelCheckout;
|
156 |
-
document.observe('dom:loaded', function() {
|
157 |
-
var checkoutContainer = $('myparcel_checkout_container');
|
158 |
-
var locationContainer = $('myparcel_checkout_location_template');
|
159 |
-
var locationErrorContainer = $('myparcel_checkout_location_error_template');
|
160 |
-
var selectedLocationContainer = $('myparcel_checkout_selected_location_template');
|
161 |
-
var templates = {
|
162 |
-
overlay : new Template(checkoutContainer.innerHTML),
|
163 |
-
location : new Template(locationContainer.innerHTML),
|
164 |
-
location_error : new Template(locationErrorContainer.innerHTML),
|
165 |
-
selected_location : new Template(selectedLocationContainer.innerHTML)
|
166 |
-
};
|
167 |
-
|
168 |
-
var shippingMethodsLoadCallback = function() {
|
169 |
-
if(null != $('shipping-progress-opcheckout')){
|
170 |
-
$('shipping-progress-opcheckout').show();
|
171 |
-
}
|
172 |
-
};
|
173 |
-
|
174 |
-
var saveLocationSuccessCallback = function() {
|
175 |
-
checkout.reloadProgressBlock('myparcel_checkout');
|
176 |
-
$('shipping-progress-opcheckout').hide();
|
177 |
-
};
|
178 |
-
|
179 |
-
var config = {
|
180 |
-
get_locations_url : '<?php echo $this->getUrl('myparcel2014/checkout/getLocations', array('_secure' => true)); ?>',
|
181 |
-
save_location_url : '<?php echo $this->getUrl('myparcel2014/checkout/saveLocation', array('_secure' => true)); ?>',
|
182 |
-
shipping_methods_load_callback : shippingMethodsLoadCallback,
|
183 |
-
save_location_success_callback : saveLocationSuccessCallback
|
184 |
-
};
|
185 |
-
|
186 |
-
var selectors = {
|
187 |
-
shipping_method : '#s_method_myparcel_pakjegemak'
|
188 |
-
};
|
189 |
-
|
190 |
-
checkoutContainer.remove();
|
191 |
-
locationContainer.remove();
|
192 |
-
locationErrorContainer.remove();
|
193 |
-
selectedLocationContainer.remove();
|
194 |
-
myParcelCheckout = new MyParcelCheckout(config, selectors, templates, {});
|
195 |
-
|
196 |
-
if (typeof myParcelCheckout != 'undefined') {
|
197 |
-
Object.extend(shippingMethod, {
|
198 |
-
save : function () {
|
199 |
-
if (checkout.loadWaiting != false) return;
|
200 |
-
if (this.validate()) {
|
201 |
-
var selectedShippingMethod = $$('#co-shipping-method-form input:checked[name="shipping_method"]')[0];
|
202 |
-
if (selectedShippingMethod.id == 's_method_myparcel_pakjegemak') {
|
203 |
-
myParcelCheckout.saveSelectedLocation();
|
204 |
-
} else {
|
205 |
-
if(null != $('shipping-progress-opcheckout')){
|
206 |
-
$('shipping-progress-opcheckout').show();
|
207 |
-
}
|
208 |
-
$('myparcel_checkout-progress-opcheckout').hide();
|
209 |
-
}
|
210 |
-
|
211 |
-
checkout.setLoadWaiting('shipping-method');
|
212 |
-
new Ajax.Request(
|
213 |
-
this.saveUrl,
|
214 |
-
{
|
215 |
-
method : 'post',
|
216 |
-
onComplete : this.onComplete,
|
217 |
-
onSuccess : this.onSave,
|
218 |
-
onFailure : checkout.ajaxFailure.bind(checkout),
|
219 |
-
parameters : Form.serialize(this.form)
|
220 |
-
}
|
221 |
-
);
|
222 |
-
}
|
223 |
-
}
|
224 |
-
});
|
225 |
-
}
|
226 |
-
});
|
227 |
-
//]]>
|
228 |
-
</script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/design/frontend/base/default/template/TIG/MyParcel2014/checkout/onepage/progress.phtml
DELETED
@@ -1,57 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* ___________ __ __
|
4 |
-
* \__ ___/____ _/ |_ _____ | |
|
5 |
-
* | | / _ \\ __\\__ \ | |
|
6 |
-
* | | | |_| || | / __ \_| |__
|
7 |
-
* |____| \____/ |__| (____ /|____/
|
8 |
-
* \/
|
9 |
-
* ___ __ __
|
10 |
-
* | | ____ _/ |_ ____ _______ ____ ____ _/ |_
|
11 |
-
* | | / \\ __\_/ __ \\_ __ \ / \ _/ __ \\ __\
|
12 |
-
* | || | \| | \ ___/ | | \/| | \\ ___/ | |
|
13 |
-
* |___||___| /|__| \_____>|__| |___| / \_____>|__|
|
14 |
-
* \/ \/
|
15 |
-
* ________
|
16 |
-
* / _____/_______ ____ __ __ ______
|
17 |
-
* / \ ___\_ __ \ / _ \ | | \\____ \
|
18 |
-
* \ \_\ \| | \/| |_| || | /| |_| |
|
19 |
-
* \______ /|__| \____/ |____/ | __/
|
20 |
-
* \/ |__|
|
21 |
-
*
|
22 |
-
* NOTICE OF LICENSE
|
23 |
-
*
|
24 |
-
* This source file is subject to the Creative Commons License.
|
25 |
-
* It is available through the world-wide-web at this URL:
|
26 |
-
* http://creativecommons.org/licenses/by-nc-nd/3.0/nl/deed.en_US
|
27 |
-
* If you are unable to obtain it through the world-wide-web, please send an email
|
28 |
-
* to servicedesk@tig.nl so we can send you a copy immediately.
|
29 |
-
*
|
30 |
-
* DISCLAIMER
|
31 |
-
*
|
32 |
-
* Do not edit or add to this file if you wish to upgrade this module to newer
|
33 |
-
* versions in the future. If you wish to customize this module for your
|
34 |
-
* needs please contact servicedesk@tig.nl for more information.
|
35 |
-
*
|
36 |
-
* @copyright Copyright (c) 2015 Total Internet Group B.V. (http://www.tig.nl)
|
37 |
-
* @license http://creativecommons.org/licenses/by-nc-nd/3.0/nl/deed.en_US
|
38 |
-
*
|
39 |
-
* @var TIG_MyParcel2014_Block_Checkout_Progress $this
|
40 |
-
*/
|
41 |
-
?>
|
42 |
-
<div id="myparcel_checkout-progress-opcheckout">
|
43 |
-
</div>
|
44 |
-
<script type="text/javascript">
|
45 |
-
//<![CDATA[
|
46 |
-
var shippingAddressProgress = $('shipping-progress-opcheckout');
|
47 |
-
if (shippingAddressProgress) {
|
48 |
-
shippingAddressProgress.insert({
|
49 |
-
after : $('myparcel_checkout-progress-opcheckout')
|
50 |
-
});
|
51 |
-
}
|
52 |
-
|
53 |
-
if (checkout) {
|
54 |
-
checkout.steps = ['login', 'billing', 'shipping', 'shipping_method', 'myparcel_checkout', 'payment', 'review'];
|
55 |
-
}
|
56 |
-
//]]>
|
57 |
-
</script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/design/frontend/base/default/template/TIG/MyParcel2014/checkout/onepage/progress/pakje_gemak.phtml
DELETED
@@ -1,48 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* ___________ __ __
|
4 |
-
* \__ ___/____ _/ |_ _____ | |
|
5 |
-
* | | / _ \\ __\\__ \ | |
|
6 |
-
* | | | |_| || | / __ \_| |__
|
7 |
-
* |____| \____/ |__| (____ /|____/
|
8 |
-
* \/
|
9 |
-
* ___ __ __
|
10 |
-
* | | ____ _/ |_ ____ _______ ____ ____ _/ |_
|
11 |
-
* | | / \\ __\_/ __ \\_ __ \ / \ _/ __ \\ __\
|
12 |
-
* | || | \| | \ ___/ | | \/| | \\ ___/ | |
|
13 |
-
* |___||___| /|__| \_____>|__| |___| / \_____>|__|
|
14 |
-
* \/ \/
|
15 |
-
* ________
|
16 |
-
* / _____/_______ ____ __ __ ______
|
17 |
-
* / \ ___\_ __ \ / _ \ | | \\____ \
|
18 |
-
* \ \_\ \| | \/| |_| || | /| |_| |
|
19 |
-
* \______ /|__| \____/ |____/ | __/
|
20 |
-
* \/ |__|
|
21 |
-
*
|
22 |
-
* NOTICE OF LICENSE
|
23 |
-
*
|
24 |
-
* This source file is subject to the Creative Commons License.
|
25 |
-
* It is available through the world-wide-web at this URL:
|
26 |
-
* http://creativecommons.org/licenses/by-nc-nd/3.0/nl/deed.en_US
|
27 |
-
* If you are unable to obtain it through the world-wide-web, please send an email
|
28 |
-
* to servicedesk@tig.nl so we can send you a copy immediately.
|
29 |
-
*
|
30 |
-
* DISCLAIMER
|
31 |
-
*
|
32 |
-
* Do not edit or add to this file if you wish to upgrade this module to newer
|
33 |
-
* versions in the future. If you wish to customize this module for your
|
34 |
-
* needs please contact servicedesk@tig.nl for more information.
|
35 |
-
*
|
36 |
-
* @copyright Copyright (c) 2015 Total Internet Group B.V. (http://www.tig.nl)
|
37 |
-
* @license http://creativecommons.org/licenses/by-nc-nd/3.0/nl/deed.en_US
|
38 |
-
*
|
39 |
-
* @var TIG_MyParcel2014_Block_Checkout_Progress $this
|
40 |
-
*/
|
41 |
-
?>
|
42 |
-
<?php if ($this->getCheckout()->getStepData('shipping_method', 'complete')): ?>
|
43 |
-
<?php $_pakjeGemakAddress = $this->getPakjeGemakAddress(); ?>
|
44 |
-
<?php if($_pakjeGemakAddress): ?>
|
45 |
-
<dt class="complete"><?php echo $this->__('Post Office Address') ?> <span class="changelink"><span class="separator">|</span> <a href="#shipping_method" onclick="checkout.changeSection('opc-shipping_method'); return false;"><?php echo $this->__('Change') ?></a></span></dt>
|
46 |
-
<dd class="complete"><?php echo $_pakjeGemakAddress; ?></dd>
|
47 |
-
<?php endif; ?>
|
48 |
-
<?php endif; ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/design/frontend/base/default/template/TIG/MyParcel2014/checkout/pg_address.phtml
DELETED
@@ -1,103 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* ___________ __ __
|
4 |
-
* \__ ___/____ _/ |_ _____ | |
|
5 |
-
* | | / _ \\ __\\__ \ | |
|
6 |
-
* | | | |_| || | / __ \_| |__
|
7 |
-
* |____| \____/ |__| (____ /|____/
|
8 |
-
* \/
|
9 |
-
* ___ __ __
|
10 |
-
* | | ____ _/ |_ ____ _______ ____ ____ _/ |_
|
11 |
-
* | | / \\ __\_/ __ \\_ __ \ / \ _/ __ \\ __\
|
12 |
-
* | || | \| | \ ___/ | | \/| | \\ ___/ | |
|
13 |
-
* |___||___| /|__| \_____>|__| |___| / \_____>|__|
|
14 |
-
* \/ \/
|
15 |
-
* ________
|
16 |
-
* / _____/_______ ____ __ __ ______
|
17 |
-
* / \ ___\_ __ \ / _ \ | | \\____ \
|
18 |
-
* \ \_\ \| | \/| |_| || | /| |_| |
|
19 |
-
* \______ /|__| \____/ |____/ | __/
|
20 |
-
* \/ |__|
|
21 |
-
*
|
22 |
-
* NOTICE OF LICENSE
|
23 |
-
*
|
24 |
-
* This source file is subject to the Creative Commons License.
|
25 |
-
* It is available through the world-wide-web at this URL:
|
26 |
-
* http://creativecommons.org/licenses/by-nc-nd/3.0/nl/deed.en_US
|
27 |
-
* If you are unable to obtain it through the world-wide-web, please send an email
|
28 |
-
* to servicedesk@tig.nl so we can send you a copy immediately.
|
29 |
-
*
|
30 |
-
* DISCLAIMER
|
31 |
-
*
|
32 |
-
* Do not edit or add to this file if you wish to upgrade this module to newer
|
33 |
-
* versions in the future. If you wish to customize this module for your
|
34 |
-
* needs please contact servicedesk@tig.nl for more information.
|
35 |
-
*
|
36 |
-
* @copyright Copyright (c) 2014 Total Internet Group B.V. (http://www.totalinternetgroup.nl)
|
37 |
-
* @license http://creativecommons.org/licenses/by-nc-nd/3.0/nl/deed.en_US
|
38 |
-
*/
|
39 |
-
|
40 |
-
$_helper = Mage::helper('tig_myparcel');
|
41 |
-
$_user = $_helper->getConfig('username', 'api');
|
42 |
-
$_apiKey = $_helper->getConfig('key', 'api', null, true);
|
43 |
-
$_shop = $this->getUrl('myparcel2014/index/pakjegemak', array('_secure' => true));
|
44 |
-
$_hash = hash_hmac('sha1', $_user . 'MyParcel' . $_shop, $_apiKey);
|
45 |
-
?>
|
46 |
-
<div id="tig_myparcel_pg_container" style="display:none;">
|
47 |
-
<fieldset id="tig_myparcel_pg_address">
|
48 |
-
<input type="hidden" name="tig_myparcel_pg_address[firstname]" data-tig-myparcel-address-key="firstname" />
|
49 |
-
<input type="hidden" name="tig_myparcel_pg_address[lastname]" data-tig-myparcel-address-key="lastname" />
|
50 |
-
<input type="hidden" name="tig_myparcel_pg_address[company]" data-tig-myparcel-address-key="name" />
|
51 |
-
<input type="hidden" name="tig_myparcel_pg_address[street][1]" data-tig-myparcel-address-key="street" />
|
52 |
-
<input type="hidden" name="tig_myparcel_pg_address[street][2]" data-tig-myparcel-address-key="housenumber" />
|
53 |
-
<input type="hidden" name="tig_myparcel_pg_address[street][3]" data-tig-myparcel-address-key="housenumberadd" />
|
54 |
-
<input type="hidden" name="tig_myparcel_pg_address[postcode]" data-tig-myparcel-address-key="postalcode" />
|
55 |
-
<input type="hidden" name="tig_myparcel_pg_address[city]" data-tig-myparcel-address-key="city" />
|
56 |
-
<input type="hidden" name="tig_myparcel_pg_address[country_id]" data-tig-myparcel-address-key="country" />
|
57 |
-
<input type="hidden" name="tig_myparcel_pg_address[telephone]" data-tig-myparcel-address-key="phone" />
|
58 |
-
</fieldset>
|
59 |
-
</div>
|
60 |
-
<script type="text/javascript">
|
61 |
-
//<![CDATA[
|
62 |
-
if (typeof MyParcelPgAddress == 'undefined') {
|
63 |
-
console.error('<?php echo $_helper->__('MyParcel PgAddress class missing.');?>');
|
64 |
-
}
|
65 |
-
|
66 |
-
window.myParcelPgAddress = new MyParcelPgAddress($('tig_myparcel_pg_address'), {debug: false});
|
67 |
-
|
68 |
-
var pg_popup;
|
69 |
-
document.observe('click', function(e, el){
|
70 |
-
if(el = e.findElement('#s_method_tig_myparcel_pakjegemak'))
|
71 |
-
{
|
72 |
-
if(!pg_popup || pg_popup.closed)
|
73 |
-
{
|
74 |
-
var viewport = document.viewport.getDimensions();
|
75 |
-
var width = viewport.width;
|
76 |
-
var height = viewport.height;
|
77 |
-
|
78 |
-
pg_popup = window.open(
|
79 |
-
'<?php echo $_helper->getConfig('url'); ?>/pakjegemak-locatie?hash=<?php echo $_hash; ?>&webshop=<?php echo urlencode($_shop); ?>&user=<?php echo $_user; ?>',
|
80 |
-
'tig_myparcel_pakjegemak',
|
81 |
-
'width=' + width + ',height=' + height + ',dependent,resizable,scrollbars'
|
82 |
-
);
|
83 |
-
if(window.focus) { pg_popup.focus(); }
|
84 |
-
}
|
85 |
-
else
|
86 |
-
{
|
87 |
-
pg_popup.focus();
|
88 |
-
}
|
89 |
-
// refresh info div placeholder
|
90 |
-
var pginfo = $('pginfodiv');
|
91 |
-
if(pginfo) {
|
92 |
-
pginfo.remove();
|
93 |
-
}
|
94 |
-
pginfo = document.createElement('div');
|
95 |
-
pginfo.id = 'pginfodiv'
|
96 |
-
el.parentNode.appendChild(pginfo);
|
97 |
-
|
98 |
-
return false;
|
99 |
-
}
|
100 |
-
});
|
101 |
-
|
102 |
-
//]]>
|
103 |
-
</script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/locale/en_US/TIG_MyParcel2014.csv
CHANGED
@@ -1,200 +1,179 @@
|
|
1 |
-
TIG_MyParcel2014::Enabled,Enabled
|
2 |
-
TIG_MyParcel2014::Title,Title
|
3 |
-
TIG_MyParcel2014::Method Name,Method Name
|
4 |
-
TIG_MyParcel2014::Rate Type,Rate Type
|
5 |
-
TIG_MyParcel2014::Type,Type
|
6 |
-
TIG_MyParcel2014::Price,Price
|
7 |
-
TIG_MyParcel2014::Pakjegemak active,Pakjegemak active
|
8 |
-
TIG_MyParcel2014::Pakjegemak fee,Pakjegemak fee
|
9 |
-
TIG_MyParcel2014::Condition,Condition
|
10 |
-
TIG_MyParcel2014::Calculate Handling Fee,Calculate Handling Fee
|
11 |
-
TIG_MyParcel2014::Handling Fee,Handling Fee
|
12 |
-
TIG_MyParcel2014::Ship to Applicable Countries,Ship to Applicable Countries
|
13 |
-
TIG_MyParcel2014::Ship to Specific Countries,Ship to Specific Countries
|
14 |
-
TIG_MyParcel2014::Sort Order,Sort Order
|
15 |
-
TIG_MyParcel2014::Default Shipment Settings,Default Shipment Settings
|
16 |
-
TIG_MyParcel2014::Home address only,Home address only
|
17 |
-
TIG_MyParcel2014::Signature on receipt,Signature on receipt
|
18 |
-
TIG_MyParcel2014::Return if no answer,Return if no answer
|
19 |
-
TIG_MyParcel2014::Insured up to € 50,Insured up to € 50
|
20 |
-
TIG_MyParcel2014::For NL shipping only,For NL shipping only
|
21 |
-
TIG_MyParcel2014::Insured up to € 250,Insured up to € 250
|
22 |
-
"TIG_MyParcel2014::For NL shipping only, shipments outside the EU insured default is € 200","For NL shipping only, shipments outside the EU insured default is € 200"
|
23 |
-
TIG_MyParcel2014::Insured up to € 500,Insured up to € 500
|
24 |
-
"TIG_MyParcel2014::For NL shipping only, shipments inside the EU insured default is € 500","For NL shipping only, shipments inside the EU insured default is € 500"
|
25 |
-
TIG_MyParcel2014::Customs Shipment Type,Customs Shipment Type
|
26 |
-
TIG_MyParcel2014::Customs Content HS Code,Customs Content HS Code
|
27 |
-
"TIG_MyParcel2014::Default content type for Cross Domestic products, see <a href=""http://gebruikstarief.douane.nl"" target=""_blank"">http://gebruikstarief.douane.nl</a>","Default content type for Cross Domestic products, see <a href=""http://gebruikstarief.douane.nl"" target=""_blank"">http://gebruikstarief.douane.nl</a>"
|
28 |
-
"TIG_MyParcel2014::Fill in your preferences for a shipment. These settings will only apply for the mass actions in the order grid. When creating a single shipment, these settings can be changed manually.<br/>These settings will activate based on the order total amount. When shipping outside of the EU you can set default values for customs type and customs goods HS code.","Fill in your preferences for a shipment. These settings will only apply for the mass actions in the order grid. When creating a single shipment, these settings can be changed manually.<br/>These settings will activate based on the order total amount. When shipping outside of the EU you can set default values for customs type and customs goods HS code."
|
29 |
-
TIG_MyParcel2014::Retourlink e-mail Template,Retourlink e-mail Template
|
30 |
-
TIG_MyParcel2014::PLACEHOLDER,PLACEHOLDER
|
31 |
-
TIG_MyParcel2014::Track&Trace email template,Track&Trace email template
|
32 |
-
"TIG_MyParcel2014::You can create a new transactional e-mail where the variables {{var tracktrace_url}} and {{var retourlabel_url}} are available. TIP: You can base them on the Order Update template, because {{var order}} is also available.","You can create a new transactional e-mail where the variables {{var tracktrace_url}} and {{var retourlabel_url}} are available. TIP: You can base them on the Order Update template, because {{var order}} is also available."
|
33 |
-
TIG_MyParcel2014::Print Orientation,Print Orientation
|
34 |
-
TIG_MyParcel2014::Select a standard orientation for printing labels.,Select a standard orientation for printing labels.
|
35 |
-
TIG_MyParcel2014::Enable test modus,Enable test modus
|
36 |
-
TIG_MyParcel2014::Enable to test the extension,Enable to test the extension
|
37 |
-
TIG_MyParcel2014::Enable Myparcel Extension,Enable Myparcel Extension
|
38 |
-
TIG_MyParcel2014::Enable or disable the MyParcel module.,Enable or disable the MyParcel module.
|
39 |
-
TIG_MyParcel2014::Selecting 'No' will overrule all individual settings.,Selecting 'No' will overrule all individual settings.
|
40 |
-
TIG_MyParcel2014::General Settings,General Settings
|
41 |
-
TIG_MyParcel2014::API Key,API Key
|
42 |
-
TIG_MyParcel2014::The API Key given by MyParcel.,The API Key given by MyParcel.
|
43 |
-
TIG_MyParcel2014::API Username,API Username
|
44 |
-
TIG_MyParcel2014::Your MyParcel username.,Your MyParcel username.
|
45 |
-
TIG_MyParcel2014::To get your personal API credentials you should contact MyParcel.,To get your personal API credentials you should contact MyParcel.
|
46 |
-
TIG_MyParcel2014::API settings,API settings
|
47 |
-
TIG_MyParcel2014::Version & Support,Version & Support
|
48 |
-
TIG_MyParcel2014::The log files cannot be downloaded.,The log files cannot be downloaded.
|
49 |
-
TIG_MyParcel2014::An error occurred while processing this action.,An error occurred while processing this action.
|
50 |
-
TIG_MyParcel2014::The shipments were successfully created.,The shipments were successfully created.
|
51 |
-
TIG_MyParcel2014::None of the shipments could be created. Please check the error messages for more details.,None of the shipments could be created. Please check the error messages for more details.
|
52 |
-
TIG_MyParcel2014::Please select one or more shipments.,Please select one or more shipments.
|
53 |
-
TIG_MyParcel2014::Please select one or more orders.,Please select one or more orders.
|
54 |
-
TIG_MyParcel2014::MyParcel replied with the following warnings:,MyParcel replied with the following warnings:
|
55 |
-
TIG_MyParcel2014::The following shipments or orders could not be processed:,The following shipments or orders could not be processed:
|
56 |
-
TIG_MyParcel2014::Order #%s cannot be shipped at this time.,Order #%s cannot be shipped at this time.
|
57 |
-
TIG_MyParcel2014::Invalid full street supplied: %s.,Invalid full street supplied: %s.
|
58 |
-
TIG_MyParcel2014::Invalid housnumber supplied: %s.,Invalid housnumber supplied: %s.
|
59 |
-
TIG_MyParcel2014::Invalid session requested.,Invalid session requested.
|
60 |
-
TIG_MyParcel2014::Invalid message type requested: %s.,Invalid message type requested: %s.
|
61 |
-
TIG_MyParcel2014::No message supplied.,No message supplied.
|
62 |
-
TIG_MyParcel2014::No message type supplied.,No message type supplied.
|
63 |
-
TIG_MyParcel2014::Click here for more information from the TiG knowledgebase.,Click here for more information from the TiG knowledgebase.
|
64 |
-
TIG_MyParcel2014::An error occurred while processing your request: ,An error occurred while processing your request:
|
65 |
-
TIG_MyParcel2014::The createConsignment action is currently unavailable.,The createConsignment action is currently unavailable.
|
66 |
-
TIG_MyParcel2014::Invalid createConsignment response.,Invalid createConsignment response.
|
67 |
-
TIG_MyParcel2014::Shipping status,Shipping status
|
68 |
-
TIG_MyParcel2014::MyParcel - Create Shipments,MyParcel - Create Shipments
|
69 |
-
TIG_MyParcel2014::MyParcel - Print shipping labels,MyParcel - Print shipping labels
|
70 |
-
TIG_MyParcel2014::Download log files,Download log files
|
71 |
-
TIG_MyParcel2014::Unknown rate type specified: %s.,Unknown rate type specified: %s.
|
72 |
-
TIG_MyParcel2014::Flat,Flat
|
73 |
-
TIG_MyParcel2014::Table,Table
|
74 |
-
TIG_MyParcel2014::Invalid PakjeGemak address.,Invalid PakjeGemak address.
|
75 |
-
TIG_MyParcel2014::Invalid phone number.,Invalid phone number.
|
76 |
-
TIG_MyParcel2014::Invalid housenumber extension.,Invalid housenumber extension.
|
77 |
-
TIG_MyParcel2014::A4,A4
|
78 |
-
TIG_MyParcel2014::A6,A6
|
79 |
-
TIG_MyParcel2014::Commercial Goods,Commercial Goods
|
80 |
-
TIG_MyParcel2014::Commercial Sample,Commercial Sample
|
81 |
-
TIG_MyParcel2014::Documents,Documents
|
82 |
-
TIG_MyParcel2014::Gift,Gift
|
83 |
-
TIG_MyParcel2014::Returned Goods,Returned Goods
|
84 |
-
TIG_MyParcel2014::Yes,Yes
|
85 |
-
TIG_MyParcel2014::No,No
|
86 |
-
TIG_MyParcel2014::Myparcel Consignment Options,Myparcel Consignment Options
|
87 |
-
TIG_MyParcel2014::Insured amount,Insured amount
|
88 |
-
TIG_MyParcel2014::Insured,Insured
|
89 |
-
TIG_MyParcel2014::MyParcel version %s,MyParcel version %s
|
90 |
-
TIG_MyParcel2014::Magento & 3rd party version compatibility,Magento & 3rd party version compatibility
|
91 |
-
TIG_MyParcel2014::Magento Community Edition version,Magento Community Edition version
|
92 |
-
TIG_MyParcel2014::Magento Enterprise Edition version,Magento Enterprise Edition version
|
93 |
-
TIG_MyParcel2014::Idev's OneStepCheckout version,Idev's OneStepCheckout version
|
94 |
-
"TIG_MyParcel2014::If you wish to use this extension on an unsupported Magento version or edition, or in combination with an unsupported 3rd party extension, we cannot guarantee the MyParcel extension will function as expected. For questions please contact the Total Internet Group servicedesk.","If you wish to use this extension on an unsupported Magento version or edition, or in combination with an unsupported 3rd party extension, we cannot guarantee the MyParcel extension will function as expected. For questions please contact the Total Internet Group servicedesk."
|
95 |
-
TIG_MyParcel2014::Support,Support
|
96 |
-
TIG_MyParcel2014::The extension is developed by Total Internet Group.,The extension is developed by Total Internet Group.
|
97 |
-
TIG_MyParcel2014::MyParcel account questions and information,MyParcel account questions and information
|
98 |
-
"TIG_MyParcel2014::For questions related to your MyParcel account,please contact MyParcel.","For questions related to your MyParcel account,please contact MyParcel."
|
99 |
-
TIG_MyParcel2014::Phone,Phone
|
100 |
-
TIG_MyParcel2014::Extension support and configuration questions,Extension support and configuration questions
|
101 |
-
"TIG_MyParcel2014::For configuration problems, extension conflicts and bugs contact Total Internet Group.","For configuration problems, extension conflicts and bugs contact Total Internet Group."
|
102 |
-
TIG_MyParcel2014::Online knowledgebase,Online knowledgebase
|
103 |
-
TIG_MyParcel2014::Request help directly,Request help directly
|
104 |
-
TIG_MyParcel2014::Email,Email
|
105 |
-
TIG_MyParcel2014::Documentation,Documentation
|
106 |
-
TIG_MyParcel2014::A list of documents regarding the extension.,A list of documents regarding the extension.
|
107 |
-
TIG_MyParcel2014::View the installation and configuration manual.,View the installation and configuration manual.
|
108 |
-
TIG_MyParcel2014::Installation and configuration manual,Installation and configuration manual
|
109 |
-
TIG_MyParcel2014::View the user manual.,View the user manual.
|
110 |
-
TIG_MyParcel2014::User manual,User manual
|
111 |
-
TIG_MyParcel2014::View the complete changelog of the extension.,View the complete changelog of the extension.
|
112 |
-
TIG_MyParcel2014::Full changelog,Full changelog
|
113 |
-
TIG_MyParcel2014::MyParcel PgAddress class missing.,MyParcel PgAddress class missing.
|
114 |
-
TIG_MyParcel2014::Select a transactional e-mail template to send the retourlink,Select a transactional e-mail template to send the retourlink
|
115 |
-
TIG_MyParcel2014::Select a transactional e-mail template to send the barcode,Select a transactional e-mail template to send the barcode
|
116 |
-
TIG_MyParcel2014::You can create a new transactional e-mail where the variables {{var retourlink}} is available.,You can create a new transactional e-mail where the variables {{var retourlink}} is available.
|
117 |
-
TIG_MyParcel2014::Unable to send track and trace email for shipment #,Unable to send track and trace email for shipment #
|
118 |
-
TIG_MyParcel2014::Track&Trace e-mail is send: %s,Track&Trace e-mail is send: %s
|
119 |
-
TIG_MyParcel2014::Credit Consignment,Credit Consignment
|
120 |
-
TIG_MyParcel2014::Generate Retourlink,Generate Retourlink
|
121 |
-
TIG_MyParcel2014::Retourlink generated: %s,Retourlink generated: %s
|
122 |
-
"TIG_MyParcel2014::Credit has not been created, check MyParcel backend for details","Credit has not been created, check MyParcel backend for details"
|
123 |
-
TIG_MyParcel2014::Consignment %s is credited at MyParcel,Consignment %s is credited at MyParcel
|
124 |
-
"TIG_MyParcel2014::If you do not use split street lines and you wish to ship to outside the EU, there is a strong possibility that MyParcel will be unable to properly parse the address. This may result in the shipment being refused or it may even lead to the shipment being delivered at the wrong address!","If you do not use split street lines and you wish to ship to outside the EU, there is a strong possibility that MyParcel will be unable to properly parse the address. This may result in the shipment being refused or it may even lead to the shipment being delivered at the wrong address!"
|
125 |
-
TIG_MyParcel2014::Split street parts,Split street parts
|
126 |
-
TIG_MyParcel2014::Streetname field,Streetname field
|
127 |
-
TIG_MyParcel2014::Housenr. field,Housenr. field
|
128 |
-
TIG_MyParcel2014::Split house number parts,Split house number parts
|
129 |
-
TIG_MyParcel2014::Housenr. extension field,Housenr. extension field
|
130 |
-
TIG_MyParcel2014::Street line #%s,Street line #%s
|
131 |
-
TIG_MyParcel2014::This will be added to the regular shipping price,This will be added to the regular shipping price
|
132 |
-
TIG_MyParcel2014::Default shipment type for Cross Domestic shipments,Default shipment type for Cross Domestic shipments
|
133 |
-
"TIG_MyParcel2014::When changing the address, you need to cancel the current MyParcel shipment(s) linked to this order and create new MyParcel shipments.","When changing the address, you need to cancel the current MyParcel shipment(s) linked to this order and create new MyParcel shipments."
|
134 |
-
"TIG_MyParcel2014::To download the instructions for the MyParcel Magento extension, click <a target=""_blank"" href=""%s"">here</a>.","To download the instructions for the MyParcel Magento extension, click <a target=""_blank"" href=""%s"">here</a>."
|
135 |
-
TIG_MyParcel2014::When using the extension please note:,When using the extension please note:
|
136 |
-
TIG_MyParcel2014::To be able to configure the extension you need to possess and use an active MyParcel account.,To be able to configure the extension you need to possess and use an active MyParcel account.
|
137 |
-
"TIG_MyParcel2014::During the transition phase the old Magento MyParcel extension can remain active. However, you do need to turn off PakjeGemak in the old MyParcel extension.","During the transition phase the old Magento MyParcel extension can remain active. However, you do need to turn off PakjeGemak in the old MyParcel extension."
|
138 |
-
TIG_MyParcel2014::We cannot guarantee perfect functionality of the MyParcel extension when you intend to use the extension on a version of Magento that is not supported or when you intend to use the extension together with a 3rd part extension that is not supported. If you have any questions please contact MyParcel.,We cannot guarantee perfect functionality of the MyParcel extension when you intend to use the extension on a version of Magento that is not supported or when you intend to use the extension together with a 3rd part extension that is not supported. If you have any questions please contact MyParcel.
|
139 |
-
TIG_MyParcel2014::Installation and configuration instructions,Installation and configuration instructions
|
140 |
-
TIG_MyParcel2014::Overview articles in knowledge base,View all articles in the knowledgebase
|
141 |
-
TIG_MyParcel2014::This extension has been developed by TIG.,This extension has been developed by TIG.
|
142 |
-
TIG_MyParcel2014::Questions and information about your MyParcel account,Questions and information about your MyParcel account
|
143 |
-
"TIG_MyParcel2014::For configuration problems, extension conflicts or bugs, please contact TIG.","For configuration problems, extension conflicts or bugs, please contact TIG."
|
144 |
-
"TIG_MyParcel2014::Shipments will not be delivered at the neighbours, only on house address.","Shipments will not be delivered at the neighbours, only on house address."
|
145 |
-
TIG_MyParcel2014::Shipments will not go the a pickup point but will be returned directly after multiple delivery attempts.,Shipments will not go the a pickup point but will be returned directly after multiple delivery attempts.
|
146 |
-
TIG_MyParcel2014::Unable to save check_status cron expression: %s,Unable to save check_status cron expression: %s
|
147 |
-
TIG_MyParcel2014::Some of the shipments could not be created or could not be created at MyParcel from the selected orders. See below for detailed information.,Some of the shipments could not be created or could not be created at MyParcel from the selected orders. See below for detailed information.
|
148 |
-
TIG_MyParcel2014::Select A4 print start position,Select A4 print start position
|
149 |
-
"TIG_MyParcel2014::Select content type for Cross Domestic products, see <a href=""http://gebruikstarief.douane.nl"" target=""_blank"">http://gebruikstarief.douane.nl</a>","Select content type for Cross Domestic products, see <a href=""http://gebruikstarief.douane.nl"" target=""_blank"">http://gebruikstarief.douane.nl</a>"
|
150 |
-
TIG_MyParcel2014::Create MyParcel Consignment,Create MyParcel Consignment
|
151 |
-
TIG_MyParcel2014::Track&Trace link: %s,Track&Trace link: %s
|
152 |
-
TIG_MyParcel2014::Is letter box parcel,Is letter box parcel
|
153 |
-
TIG_MyParcel2014::Shipment type,Shipment type
|
154 |
-
TIG_MyParcel2014::Normal,Normal
|
155 |
-
TIG_MyParcel2014::Letter box,Letter box
|
156 |
-
TIG_MyParcel2014::Unstamped,Unstamped
|
157 |
-
TIG_MyParcel2014::The MyParcel consignment is successfully created.,The MyParcel consignment is successfully created.
|
158 |
-
TIG_MyParcel2014::Choose a pickup location,Choose a pickup location
|
159 |
-
TIG_MyParcel2014::Zipcode,Zipcode
|
160 |
-
"TIG_MyParcel2014::Search by zipcode, address or city","Search by zipcode, address or city"
|
161 |
-
TIG_MyParcel2014::Housenumber,Housenumber
|
162 |
-
TIG_MyParcel2014::Search,Search
|
163 |
-
TIG_MyParcel2014::Nearest myparcel pickup points,Nearest myparcel pickup points
|
164 |
-
TIG_MyParcel2014::Pakjegemak Method Name,Pakjegemak Method Name
|
165 |
-
TIG_MyParcel2014::Unpaid,Unpaid
|
166 |
-
TIG_MyParcel2014::The consignment is already credited.,The consignment is already credited.
|
167 |
-
TIG_MyParcel2014::MyParcel - Create & Print shipping labels,MyParcel - Create & Print shipping labels
|
168 |
-
TIG_MyParcel2014::Letterbox,Letterbox
|
169 |
-
TIG_MyParcel2014::Select,Select
|
170 |
-
TIG_MyParcel2014::Insured Up To %s,Insured Up To %s
|
171 |
-
TIG_MyParcel2014::Close,Close
|
172 |
-
TIG_MyParcel2014::Choose a PostNL pickup location,Choose a PostNL pickup location
|
173 |
-
"TIG_MyParcel2014::The selected shipment-type cannot be used, Pakjegemak-shipments can only be created with the normal shipment type.","The selected shipment-type cannot be used, Pakjegemak-shipments can only be created with the normal shipment type."
|
174 |
-
TIG_MyParcel2014::MyParcel - Create Magento shipments (no labels),MyParcel - Create Magento shipments (no labels)
|
175 |
-
TIG_MyParcel2014::Insured up to: € %s,Insured up to: € %s
|
176 |
-
TIG_MyParcel2014::Post Office Address,Post Office Address
|
177 |
-
"TIG_MyParcel2014::The selected shipment type cannot be used. Pakjegemak shipments can only be created with the normal shipment type.<br/> The Magento shipment has been created without a MyParcel shipment, select a different shipment type or go to the shipment page to create a single MyParcel shipment. <a target=""_blank"" href=""%s"">View shipment</a>","The selected shipment type cannot be used. Pakjegemak shipments can only be created with the normal shipment type.<br/> The Magento shipment has been created without a MyParcel shipment, select a different shipment type or go to the shipment page to create a single MyParcel shipment. <a target=""_blank"" href=""%s"">View shipment</a>"
|
178 |
-
TIG_MyParcel2014::Only for dutch shipments,Only for dutch shipments
|
179 |
-
"TIG_MyParcel2014::Only for dutch shipments, shipments to outside of the EU are standard ensured up to &euro 200","Only for dutch shipments, shipments to outside of the EU are standard ensured up to &euro 200"
|
180 |
-
TIG_MyParcel2014::Force unencrypted MyParcel connection,Force unencrypted MyParcel connection
|
181 |
-
"TIG_MyParcel2014::By enabling this, you will force connection to the MyParcel platform over unsecured http, rather than https.","By enabling this, you will force connection to the MyParcel platform over unsecured http, rather than https."
|
182 |
-
"TIG_MyParcel2014::In some cases the SSL certification can't be validated, which can lead to problems connection to the MyParcel platform. Only use this if you are aware that ALL communication to MyParcel will be sent over the unsecure https protocol.","In some cases the SSL certification can't be validated, which can lead to problems connection to the MyParcel platform. Only use this if you are aware that ALL communication to MyParcel will be sent over the unsecure https protocol."
|
183 |
-
TIG_MyParcel2014::Unfortunately no locations could be found. Please check your postcode and house number combination.,Unfortunately no locations could be found. Please check your postcode and house number combination.
|
184 |
-
TIG_MyParcel2014::Search by zipcode and housenumber,Search by zipcode and housenumber
|
185 |
-
"TIG_MyParcel2014::Pakjegemak minimum order total, incl. BTW","Pakjegemak minimum order total, incl. BTW"
|
186 |
-
TIG_MyParcel2014::Pakjegemak minimum order total enabled,Pakjegemak minimum order total enabled
|
187 |
-
TIG_MyParcel2014::MyParcel shipping methods,MyParcel shipping methods
|
188 |
-
TIG_MyParcel2014::MyParcel Shipping,MyParcel Shipping
|
189 |
-
TIG_MyParcel2014::Selected post office location,Selected post office location
|
190 |
-
TIG_MyParcel2014::Powerd by MyParcel,Powerd by MyParcel
|
191 |
-
TIG_MyParcel2014::Business hours,Business hours
|
192 |
-
TIG_MyParcel2014::Mo,Mo
|
193 |
-
TIG_MyParcel2014::Tu,Tu
|
194 |
-
TIG_MyParcel2014::We,We
|
195 |
-
TIG_MyParcel2014::Th,Th
|
196 |
-
TIG_MyParcel2014::Fr,Fr
|
197 |
-
TIG_MyParcel2014::Sa,Sa
|
198 |
-
TIG_MyParcel2014::Su,Su
|
199 |
-
TIG_MyParcel2014::Edit,Edit
|
200 |
-
TIG_MyParcel2014::Type Consignment,Type Consignment
|
1 |
+
TIG_MyParcel2014::Enabled,Enabled
|
2 |
+
TIG_MyParcel2014::Title,Title
|
3 |
+
TIG_MyParcel2014::Method Name,Method Name
|
4 |
+
TIG_MyParcel2014::Rate Type,Rate Type
|
5 |
+
TIG_MyParcel2014::Type,Type
|
6 |
+
TIG_MyParcel2014::Price,Price
|
7 |
+
TIG_MyParcel2014::Pakjegemak active,Pakjegemak active
|
8 |
+
TIG_MyParcel2014::Pakjegemak fee,Pakjegemak fee
|
9 |
+
TIG_MyParcel2014::Condition,Condition
|
10 |
+
TIG_MyParcel2014::Calculate Handling Fee,Calculate Handling Fee
|
11 |
+
TIG_MyParcel2014::Handling Fee,Handling Fee
|
12 |
+
TIG_MyParcel2014::Ship to Applicable Countries,Ship to Applicable Countries
|
13 |
+
TIG_MyParcel2014::Ship to Specific Countries,Ship to Specific Countries
|
14 |
+
TIG_MyParcel2014::Sort Order,Sort Order
|
15 |
+
TIG_MyParcel2014::Default Shipment Settings,Default Shipment Settings
|
16 |
+
TIG_MyParcel2014::Home address only,Home address only
|
17 |
+
TIG_MyParcel2014::Signature on receipt,Signature on receipt
|
18 |
+
TIG_MyParcel2014::Return if no answer,Return if no answer
|
19 |
+
TIG_MyParcel2014::Insured up to € 50,Insured up to € 50
|
20 |
+
TIG_MyParcel2014::For NL shipping only,For NL shipping only
|
21 |
+
TIG_MyParcel2014::Insured up to € 250,Insured up to € 250
|
22 |
+
"TIG_MyParcel2014::For NL shipping only, shipments outside the EU insured default is € 200","For NL shipping only, shipments outside the EU insured default is € 200"
|
23 |
+
TIG_MyParcel2014::Insured up to € 500,Insured up to € 500
|
24 |
+
"TIG_MyParcel2014::For NL shipping only, shipments inside the EU insured default is € 500","For NL shipping only, shipments inside the EU insured default is € 500"
|
25 |
+
TIG_MyParcel2014::Customs Shipment Type,Customs Shipment Type
|
26 |
+
TIG_MyParcel2014::Customs Content HS Code,Customs Content HS Code
|
27 |
+
"TIG_MyParcel2014::Default content type for Cross Domestic products, see <a href=""http://gebruikstarief.douane.nl"" target=""_blank"">http://gebruikstarief.douane.nl</a>","Default content type for Cross Domestic products, see <a href=""http://gebruikstarief.douane.nl"" target=""_blank"">http://gebruikstarief.douane.nl</a>"
|
28 |
+
"TIG_MyParcel2014::Fill in your preferences for a shipment. These settings will only apply for the mass actions in the order grid. When creating a single shipment, these settings can be changed manually.<br/>These settings will activate based on the order total amount. When shipping outside of the EU you can set default values for customs type and customs goods HS code.","Fill in your preferences for a shipment. These settings will only apply for the mass actions in the order grid. When creating a single shipment, these settings can be changed manually.<br/>These settings will activate based on the order total amount. When shipping outside of the EU you can set default values for customs type and customs goods HS code."
|
29 |
+
TIG_MyParcel2014::Retourlink e-mail Template,Retourlink e-mail Template
|
30 |
+
TIG_MyParcel2014::PLACEHOLDER,PLACEHOLDER
|
31 |
+
TIG_MyParcel2014::Track&Trace email template,Track&Trace email template
|
32 |
+
"TIG_MyParcel2014::You can create a new transactional e-mail where the variables {{var tracktrace_url}} and {{var retourlabel_url}} are available. TIP: You can base them on the Order Update template, because {{var order}} is also available.","You can create a new transactional e-mail where the variables {{var tracktrace_url}} and {{var retourlabel_url}} are available. TIP: You can base them on the Order Update template, because {{var order}} is also available."
|
33 |
+
TIG_MyParcel2014::Print Orientation,Print Orientation
|
34 |
+
TIG_MyParcel2014::Select a standard orientation for printing labels.,Select a standard orientation for printing labels.
|
35 |
+
TIG_MyParcel2014::Enable test modus,Enable test modus
|
36 |
+
TIG_MyParcel2014::Enable to test the extension,Enable to test the extension
|
37 |
+
TIG_MyParcel2014::Enable Myparcel Extension,Enable Myparcel Extension
|
38 |
+
TIG_MyParcel2014::Enable or disable the MyParcel module.,Enable or disable the MyParcel module.
|
39 |
+
TIG_MyParcel2014::Selecting 'No' will overrule all individual settings.,Selecting 'No' will overrule all individual settings.
|
40 |
+
TIG_MyParcel2014::General Settings,General Settings
|
41 |
+
TIG_MyParcel2014::API Key,API Key
|
42 |
+
TIG_MyParcel2014::The API Key given by MyParcel.,The API Key given by MyParcel.
|
43 |
+
TIG_MyParcel2014::API Username,API Username
|
44 |
+
TIG_MyParcel2014::Your MyParcel username.,Your MyParcel username.
|
45 |
+
TIG_MyParcel2014::To get your personal API credentials you should contact MyParcel.,To get your personal API credentials you should contact MyParcel.
|
46 |
+
TIG_MyParcel2014::API settings,API settings
|
47 |
+
TIG_MyParcel2014::Version & Support,Version & Support
|
48 |
+
TIG_MyParcel2014::The log files cannot be downloaded.,The log files cannot be downloaded.
|
49 |
+
TIG_MyParcel2014::An error occurred while processing this action.,An error occurred while processing this action.
|
50 |
+
TIG_MyParcel2014::The shipments were successfully created.,The shipments were successfully created.
|
51 |
+
TIG_MyParcel2014::None of the shipments could be created. Please check the error messages for more details.,None of the shipments could be created. Please check the error messages for more details.
|
52 |
+
TIG_MyParcel2014::Please select one or more shipments.,Please select one or more shipments.
|
53 |
+
TIG_MyParcel2014::Please select one or more orders.,Please select one or more orders.
|
54 |
+
TIG_MyParcel2014::MyParcel replied with the following warnings:,MyParcel replied with the following warnings:
|
55 |
+
TIG_MyParcel2014::The following shipments or orders could not be processed:,The following shipments or orders could not be processed:
|
56 |
+
TIG_MyParcel2014::Order #%s cannot be shipped at this time.,Order #%s cannot be shipped at this time.
|
57 |
+
TIG_MyParcel2014::Invalid full street supplied: %s.,Invalid full street supplied: %s.
|
58 |
+
TIG_MyParcel2014::Invalid housnumber supplied: %s.,Invalid housnumber supplied: %s.
|
59 |
+
TIG_MyParcel2014::Invalid session requested.,Invalid session requested.
|
60 |
+
TIG_MyParcel2014::Invalid message type requested: %s.,Invalid message type requested: %s.
|
61 |
+
TIG_MyParcel2014::No message supplied.,No message supplied.
|
62 |
+
TIG_MyParcel2014::No message type supplied.,No message type supplied.
|
63 |
+
TIG_MyParcel2014::Click here for more information from the TiG knowledgebase.,Click here for more information from the TiG knowledgebase.
|
64 |
+
TIG_MyParcel2014::An error occurred while processing your request: ,An error occurred while processing your request:
|
65 |
+
TIG_MyParcel2014::The createConsignment action is currently unavailable.,The createConsignment action is currently unavailable.
|
66 |
+
TIG_MyParcel2014::Invalid createConsignment response.,Invalid createConsignment response.
|
67 |
+
TIG_MyParcel2014::Shipping status,Shipping status
|
68 |
+
TIG_MyParcel2014::MyParcel - Create Shipments,MyParcel - Create Shipments
|
69 |
+
TIG_MyParcel2014::MyParcel - Print shipping labels,MyParcel - Print shipping labels
|
70 |
+
TIG_MyParcel2014::Download log files,Download log files
|
71 |
+
TIG_MyParcel2014::Unknown rate type specified: %s.,Unknown rate type specified: %s.
|
72 |
+
TIG_MyParcel2014::Flat,Flat
|
73 |
+
TIG_MyParcel2014::Table,Table
|
74 |
+
TIG_MyParcel2014::Invalid PakjeGemak address.,Invalid PakjeGemak address.
|
75 |
+
TIG_MyParcel2014::Invalid phone number.,Invalid phone number.
|
76 |
+
TIG_MyParcel2014::Invalid housenumber extension.,Invalid housenumber extension.
|
77 |
+
TIG_MyParcel2014::A4,A4
|
78 |
+
TIG_MyParcel2014::A6,A6
|
79 |
+
TIG_MyParcel2014::Commercial Goods,Commercial Goods
|
80 |
+
TIG_MyParcel2014::Commercial Sample,Commercial Sample
|
81 |
+
TIG_MyParcel2014::Documents,Documents
|
82 |
+
TIG_MyParcel2014::Gift,Gift
|
83 |
+
TIG_MyParcel2014::Returned Goods,Returned Goods
|
84 |
+
TIG_MyParcel2014::Yes,Yes
|
85 |
+
TIG_MyParcel2014::No,No
|
86 |
+
TIG_MyParcel2014::Myparcel Consignment Options,Myparcel Consignment Options
|
87 |
+
TIG_MyParcel2014::Insured amount,Insured amount
|
88 |
+
TIG_MyParcel2014::Insured,Insured
|
89 |
+
TIG_MyParcel2014::MyParcel version %s,MyParcel version %s
|
90 |
+
TIG_MyParcel2014::Magento & 3rd party version compatibility,Magento & 3rd party version compatibility
|
91 |
+
TIG_MyParcel2014::Magento Community Edition version,Magento Community Edition version
|
92 |
+
TIG_MyParcel2014::Magento Enterprise Edition version,Magento Enterprise Edition version
|
93 |
+
TIG_MyParcel2014::Idev's OneStepCheckout version,Idev's OneStepCheckout version
|
94 |
+
"TIG_MyParcel2014::If you wish to use this extension on an unsupported Magento version or edition, or in combination with an unsupported 3rd party extension, we cannot guarantee the MyParcel extension will function as expected. For questions please contact the Total Internet Group servicedesk.","If you wish to use this extension on an unsupported Magento version or edition, or in combination with an unsupported 3rd party extension, we cannot guarantee the MyParcel extension will function as expected. For questions please contact the Total Internet Group servicedesk."
|
95 |
+
TIG_MyParcel2014::Support,Support
|
96 |
+
TIG_MyParcel2014::The extension is developed by Total Internet Group.,The extension is developed by Total Internet Group.
|
97 |
+
TIG_MyParcel2014::MyParcel account questions and information,MyParcel account questions and information
|
98 |
+
"TIG_MyParcel2014::For questions related to your MyParcel account,please contact MyParcel.","For questions related to your MyParcel account,please contact MyParcel."
|
99 |
+
TIG_MyParcel2014::Phone,Phone
|
100 |
+
TIG_MyParcel2014::Extension support and configuration questions,Extension support and configuration questions
|
101 |
+
"TIG_MyParcel2014::For configuration problems, extension conflicts and bugs contact Total Internet Group.","For configuration problems, extension conflicts and bugs contact Total Internet Group."
|
102 |
+
TIG_MyParcel2014::Online knowledgebase,Online knowledgebase
|
103 |
+
TIG_MyParcel2014::Request help directly,Request help directly
|
104 |
+
TIG_MyParcel2014::Email,Email
|
105 |
+
TIG_MyParcel2014::Documentation,Documentation
|
106 |
+
TIG_MyParcel2014::A list of documents regarding the extension.,A list of documents regarding the extension.
|
107 |
+
TIG_MyParcel2014::View the installation and configuration manual.,View the installation and configuration manual.
|
108 |
+
TIG_MyParcel2014::Installation and configuration manual,Installation and configuration manual
|
109 |
+
TIG_MyParcel2014::View the user manual.,View the user manual.
|
110 |
+
TIG_MyParcel2014::User manual,User manual
|
111 |
+
TIG_MyParcel2014::View the complete changelog of the extension.,View the complete changelog of the extension.
|
112 |
+
TIG_MyParcel2014::Full changelog,Full changelog
|
113 |
+
TIG_MyParcel2014::MyParcel PgAddress class missing.,MyParcel PgAddress class missing.
|
114 |
+
TIG_MyParcel2014::Select a transactional e-mail template to send the retourlink,Select a transactional e-mail template to send the retourlink
|
115 |
+
TIG_MyParcel2014::Select a transactional e-mail template to send the barcode,Select a transactional e-mail template to send the barcode
|
116 |
+
TIG_MyParcel2014::You can create a new transactional e-mail where the variables {{var retourlink}} is available.,You can create a new transactional e-mail where the variables {{var retourlink}} is available.
|
117 |
+
TIG_MyParcel2014::Unable to send track and trace email for shipment #,Unable to send track and trace email for shipment #
|
118 |
+
TIG_MyParcel2014::Track&Trace e-mail is send: %s,Track&Trace e-mail is send: %s
|
119 |
+
TIG_MyParcel2014::Credit Consignment,Credit Consignment
|
120 |
+
TIG_MyParcel2014::Generate Retourlink,Generate Retourlink
|
121 |
+
TIG_MyParcel2014::Retourlink generated: %s,Retourlink generated: %s
|
122 |
+
"TIG_MyParcel2014::Credit has not been created, check MyParcel backend for details","Credit has not been created, check MyParcel backend for details"
|
123 |
+
TIG_MyParcel2014::Consignment %s is credited at MyParcel,Consignment %s is credited at MyParcel
|
124 |
+
"TIG_MyParcel2014::If you do not use split street lines and you wish to ship to outside the EU, there is a strong possibility that MyParcel will be unable to properly parse the address. This may result in the shipment being refused or it may even lead to the shipment being delivered at the wrong address!","If you do not use split street lines and you wish to ship to outside the EU, there is a strong possibility that MyParcel will be unable to properly parse the address. This may result in the shipment being refused or it may even lead to the shipment being delivered at the wrong address!"
|
125 |
+
TIG_MyParcel2014::Split street parts,Split street parts
|
126 |
+
TIG_MyParcel2014::Streetname field,Streetname field
|
127 |
+
TIG_MyParcel2014::Housenr. field,Housenr. field
|
128 |
+
TIG_MyParcel2014::Split house number parts,Split house number parts
|
129 |
+
TIG_MyParcel2014::Housenr. extension field,Housenr. extension field
|
130 |
+
TIG_MyParcel2014::Street line #%s,Street line #%s
|
131 |
+
TIG_MyParcel2014::This will be added to the regular shipping price,This will be added to the regular shipping price
|
132 |
+
TIG_MyParcel2014::Default shipment type for Cross Domestic shipments,Default shipment type for Cross Domestic shipments
|
133 |
+
"TIG_MyParcel2014::When changing the address, you need to cancel the current MyParcel shipment(s) linked to this order and create new MyParcel shipments.","When changing the address, you need to cancel the current MyParcel shipment(s) linked to this order and create new MyParcel shipments."
|
134 |
+
"TIG_MyParcel2014::To download the instructions for the MyParcel Magento extension, click <a target=""_blank"" href=""%s"">here</a>.","To download the instructions for the MyParcel Magento extension, click <a target=""_blank"" href=""%s"">here</a>."
|
135 |
+
TIG_MyParcel2014::When using the extension please note:,When using the extension please note:
|
136 |
+
TIG_MyParcel2014::To be able to configure the extension you need to possess and use an active MyParcel account.,To be able to configure the extension you need to possess and use an active MyParcel account.
|
137 |
+
"TIG_MyParcel2014::During the transition phase the old Magento MyParcel extension can remain active. However, you do need to turn off PakjeGemak in the old MyParcel extension.","During the transition phase the old Magento MyParcel extension can remain active. However, you do need to turn off PakjeGemak in the old MyParcel extension."
|
138 |
+
TIG_MyParcel2014::We cannot guarantee perfect functionality of the MyParcel extension when you intend to use the extension on a version of Magento that is not supported or when you intend to use the extension together with a 3rd part extension that is not supported. If you have any questions please contact MyParcel.,We cannot guarantee perfect functionality of the MyParcel extension when you intend to use the extension on a version of Magento that is not supported or when you intend to use the extension together with a 3rd part extension that is not supported. If you have any questions please contact MyParcel.
|
139 |
+
TIG_MyParcel2014::Installation and configuration instructions,Installation and configuration instructions
|
140 |
+
TIG_MyParcel2014::Overview articles in knowledge base,View all articles in the knowledgebase
|
141 |
+
TIG_MyParcel2014::This extension has been developed by TIG.,This extension has been developed by TIG.
|
142 |
+
TIG_MyParcel2014::Questions and information about your MyParcel account,Questions and information about your MyParcel account
|
143 |
+
"TIG_MyParcel2014::For configuration problems, extension conflicts or bugs, please contact TIG.","For configuration problems, extension conflicts or bugs, please contact TIG."
|
144 |
+
"TIG_MyParcel2014::Shipments will not be delivered at the neighbours, only on house address.","Shipments will not be delivered at the neighbours, only on house address."
|
145 |
+
TIG_MyParcel2014::Shipments will not go the a pickup point but will be returned directly after multiple delivery attempts.,Shipments will not go the a pickup point but will be returned directly after multiple delivery attempts.
|
146 |
+
TIG_MyParcel2014::Unable to save check_status cron expression: %s,Unable to save check_status cron expression: %s
|
147 |
+
TIG_MyParcel2014::Some of the shipments could not be created or could not be created at MyParcel from the selected orders. See below for detailed information.,Some of the shipments could not be created or could not be created at MyParcel from the selected orders. See below for detailed information.
|
148 |
+
TIG_MyParcel2014::Select A4 print start position,Select A4 print start position
|
149 |
+
"TIG_MyParcel2014::Select content type for Cross Domestic products, see <a href=""http://gebruikstarief.douane.nl"" target=""_blank"">http://gebruikstarief.douane.nl</a>","Select content type for Cross Domestic products, see <a href=""http://gebruikstarief.douane.nl"" target=""_blank"">http://gebruikstarief.douane.nl</a>"
|
150 |
+
TIG_MyParcel2014::Create MyParcel Consignment,Create MyParcel Consignment
|
151 |
+
TIG_MyParcel2014::Track&Trace link: %s,Track&Trace link: %s
|
152 |
+
TIG_MyParcel2014::Is letter box parcel,Is letter box parcel
|
153 |
+
TIG_MyParcel2014::Shipment type,Shipment type
|
154 |
+
TIG_MyParcel2014::Normal,Normal
|
155 |
+
TIG_MyParcel2014::Letter box,Letter box
|
156 |
+
TIG_MyParcel2014::Unstamped,Unstamped
|
157 |
+
TIG_MyParcel2014::The MyParcel consignment is successfully created.,The MyParcel consignment is successfully created.
|
158 |
+
TIG_MyParcel2014::Choose a pickup location,Choose a pickup location
|
159 |
+
TIG_MyParcel2014::Zipcode,Zipcode
|
160 |
+
"TIG_MyParcel2014::Search by zipcode, address or city","Search by zipcode, address or city"
|
161 |
+
TIG_MyParcel2014::Housenumber,Housenumber
|
162 |
+
TIG_MyParcel2014::Search,Search
|
163 |
+
TIG_MyParcel2014::Nearest myparcel pickup points,Nearest myparcel pickup points
|
164 |
+
TIG_MyParcel2014::Pakjegemak Method Name,Pakjegemak Method Name
|
165 |
+
TIG_MyParcel2014::Unpaid,Unpaid
|
166 |
+
TIG_MyParcel2014::The consignment is already credited.,The consignment is already credited.
|
167 |
+
TIG_MyParcel2014::MyParcel - Create & Print shipping labels,MyParcel - Create & Print shipping labels
|
168 |
+
TIG_MyParcel2014::Letterbox,Letterbox
|
169 |
+
TIG_MyParcel2014::Select,Select
|
170 |
+
TIG_MyParcel2014::Insured Up To %s,Insured Up To %s
|
171 |
+
TIG_MyParcel2014::Close,Close
|
172 |
+
TIG_MyParcel2014::Choose a PostNL pickup location,Choose a PostNL pickup location
|
173 |
+
"TIG_MyParcel2014::The selected shipment-type cannot be used, Pakjegemak-shipments can only be created with the normal shipment type.","The selected shipment-type cannot be used, Pakjegemak-shipments can only be created with the normal shipment type."
|
174 |
+
TIG_MyParcel2014::MyParcel - Create Magento shipments (no labels),MyParcel - Create Magento shipments (no labels)
|
175 |
+
TIG_MyParcel2014::Insured up to: € %s,Insured up to: € %s
|
176 |
+
TIG_MyParcel2014::Post Office Address,Post Office Address
|
177 |
+
"TIG_MyParcel2014::The selected shipment type cannot be used. Pakjegemak shipments can only be created with the normal shipment type.<br/> The Magento shipment has been created without a MyParcel shipment, select a different shipment type or go to the shipment page to create a single MyParcel shipment. <a target=""_blank"" href=""%s"">View shipment</a>","The selected shipment type cannot be used. Pakjegemak shipments can only be created with the normal shipment type.<br/> The Magento shipment has been created without a MyParcel shipment, select a different shipment type or go to the shipment page to create a single MyParcel shipment. <a target=""_blank"" href=""%s"">View shipment</a>"
|
178 |
+
TIG_MyParcel2014::Only for dutch shipments,Only for dutch shipments
|
179 |
+
"TIG_MyParcel2014::Only for dutch shipments, shipments to outside of the EU are standard ensured up to &euro 200","Only for dutch shipments, shipments to outside of the EU are standard ensured up to &euro 200"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/locale/nl_NL/TIG_MyParcel2014.csv
CHANGED
@@ -25,12 +25,12 @@ TIG_MyParcel2014::Insured up to € 500,Verzekerd tot € 500
|
|
25 |
TIG_MyParcel2014::Customs Shipment Type,Douane verzend type
|
26 |
TIG_MyParcel2014::Customs Content HS Code,Douane goederen HS code
|
27 |
"TIG_MyParcel2014::Default content type for Cross Domestic products, see <a href=""http://gebruikstarief.douane.nl"" target=""_blank"">http://gebruikstarief.douane.nl</a>","Standaard goederen type voor Cross Domestic producten, zie <a href=""http://gebruikstarief.douane.nl"" target=""_blank"">http://gebruikstarief.douane.nl</a> voor de juiste HS code"
|
28 |
-
"TIG_MyParcel2014::Fill in your preferences for a shipment. These settings will only apply for the mass actions in the order grid. When creating a single shipment, these settings can be changed manually.<br/>These settings will activate based on the order total amount. When shipping outside of the EU you can set default values for customs type and customs goods HS code.","Vul hier uw standaard voorkeuren in voor uw verzendopties. Deze instellingen worden als default op al uw zendingen toegepast, indien van toepassing. Deze opties zijn later, per zending, uiteraard nog wel aan te passen tijdens het verwerken. <br/><br/>De opties ""Alleen huisadres"", ""Handtekening bij ontvangst"", ""Retour bij niet aanwezig"" en de verschillende verzekeringen worden actief op basis van het totale order bedrag. Bijvoorbeeld, als u bij ""
|
29 |
TIG_MyParcel2014::Retourlink e-mail Template,Retourlink e-mail Template
|
30 |
TIG_MyParcel2014::PLACEHOLDER,PLACEHOLDER
|
31 |
-
TIG_MyParcel2014::Track&Trace email template,Track&Trace e-mail Template
|
32 |
-
"TIG_MyParcel2014::You can create a new transactional e-mail where the variables {{var tracktrace_url}} and {{var retourlabel_url}} are available. TIP: You can base them on the Order Update template, because {{var order}} is also available.","U kunt een nieuwe transactionele email aanmaken en daarin {{var tracktrace_url}} en {{var retourlabel_url}} gebruiken. Zie voor details de <a target=""_blank"" href=""http://kb.
|
33 |
-
TIG_MyParcel2014::Print Orientation,Print oriëntatie
|
34 |
TIG_MyParcel2014::Select a standard orientation for printing labels.,Selecteer een standaard print oriëntatie voor het printen van labels.
|
35 |
TIG_MyParcel2014::Enable test modus,Activeer test modus
|
36 |
TIG_MyParcel2014::Enable to test the extension,Activeer om test verzendingen te kunnen maken
|
@@ -111,7 +111,7 @@ TIG_MyParcel2014::User manual,Gebruikers handleiding
|
|
111 |
TIG_MyParcel2014::View the complete changelog of the extension.,Bekijk de volledige release notes van de extensie
|
112 |
TIG_MyParcel2014::Full changelog,Volledige release notes
|
113 |
TIG_MyParcel2014::MyParcel PgAddress class missing.,MyParcel PgAddress class mist
|
114 |
-
TIG_MyParcel2014::Select a transactional e-mail template to send the retourlink,Selecteer een transactionele e-mail template om de retourlink te verzenden.
|
115 |
TIG_MyParcel2014::Select a transactional e-mail template to send the barcode,Selecteer een transactionele e-mail template om de Track&Trace code te versturen
|
116 |
TIG_MyParcel2014::You can create a new transactional e-mail where the variables {{var retourlink}} is available.,"Maak een transactionele e-mail aan, daarin zal de variabele {{var retourlink}} beschikbaar zijn om te retourlink te verzenden."
|
117 |
TIG_MyParcel2014::Unable to send track and trace email for shipment #,Versturen van track & trace e-mail mislukt voor zending #
|
@@ -144,7 +144,7 @@ TIG_MyParcel2014::Questions and information about your MyParcel account,MyParcel
|
|
144 |
"TIG_MyParcel2014::Shipments will not be delivered at the neighbours, only on house address.","Zendingen worden niet bij de buren aangeboden, alleen op huisadres."
|
145 |
TIG_MyParcel2014::Shipments will not go the a pickup point but will be returned directly after multiple delivery attempts.,Zendingen gaan niet naar een afhaallocatie en komen direct retour na bezorgpogingen.
|
146 |
TIG_MyParcel2014::Unable to save check_status cron expression: %s,Het is niet gelukt om de check_status cron expressie op te slaan: %s
|
147 |
-
TIG_MyParcel2014::Some of the shipments could not be created or could not be created at MyParcel from the selected orders. See below for detailed information.,Een aantal van de geselecteerde orders is een foutmelding opgetreden tijdens het aanmaken van de verzending. Zie hieronder voor gedetailleerde informatie.
|
148 |
TIG_MyParcel2014::Select A4 print start position,Selecteer de A4 print start positie
|
149 |
"TIG_MyParcel2014::Select content type for Cross Domestic products, see <a href=""http://gebruikstarief.douane.nl"" target=""_blank"">http://gebruikstarief.douane.nl</a>","Vul de goederen code voor zendingen buiten de EU in, zie <a href=""http://gebruikstarief.douane.nl"" target=""_blank"">http://gebruikstarief.douane.nl</a> voor de bestaande codes."
|
150 |
TIG_MyParcel2014::Create MyParcel Consignment,Creëer MyParcel verzending
|
@@ -154,16 +154,16 @@ TIG_MyParcel2014::Shipment type,Zendingtype
|
|
154 |
TIG_MyParcel2014::Normal,Normaal
|
155 |
TIG_MyParcel2014::Letter box,Brievenbuspakje
|
156 |
TIG_MyParcel2014::Unstamped,Ongefrankeerd
|
157 |
-
TIG_MyParcel2014::The MyParcel consignment is successfully created.,De MyParcel zending is succesvol aangemaakt.
|
158 |
-
TIG_MyParcel2014::Choose a pickup location,Selecteer MyParcel Verzendopties
|
159 |
TIG_MyParcel2014::Zipcode,Postcode
|
160 |
"TIG_MyParcel2014::Search by zipcode, address or city","Zoek op postcode, adres of plaats"
|
161 |
TIG_MyParcel2014::Housenumber,Huisnummer
|
162 |
TIG_MyParcel2014::Search,Zoeken
|
163 |
-
TIG_MyParcel2014::Nearest myparcel pickup points,Dichtstbijzijnde afhaal locaties
|
164 |
TIG_MyParcel2014::Pakjegemak Method Name,Pakjegemak methode naam
|
165 |
TIG_MyParcel2014::Unpaid,Ongefrankeerd
|
166 |
-
TIG_MyParcel2014::The consignment is already credited.,Deze zending is al gecrediteerd.
|
167 |
TIG_MyParcel2014::MyParcel - Create & Print shipping labels,MyParcel - Creëer & Print verzend labels
|
168 |
TIG_MyParcel2014::Letterbox,Brievenbuspakje
|
169 |
TIG_MyParcel2014::Select,Selecteer
|
@@ -173,28 +173,17 @@ TIG_MyParcel2014::Choose a PostNL pickup location,Kies PostNL afhaallocatie
|
|
173 |
"TIG_MyParcel2014::The selected shipment-type cannot be used, Pakjegemak-shipments can only be created with the normal shipment type.","Het geselecteerde zending-type kan niet gebruikt worden, Pakjegemak zendingen kunnen enkel aangemaakt worden met het normale verzend-type."
|
174 |
TIG_MyParcel2014::MyParcel - Create Magento shipments (no labels),MyParcel - Creëer Magento verzendingen (geen labels)
|
175 |
TIG_MyParcel2014::Insured up to: € %s,Verzekerd tot : € %s
|
176 |
-
TIG_MyParcel2014::Post Office Address,Gekozen afhaallocatie
|
177 |
-
"TIG_MyParcel2014::The selected shipment type cannot be used. Pakjegemak shipments can only be created with the normal shipment type.<br/> The Magento shipment has been created without a MyParcel shipment, select a different shipment type or go to the shipment page to create a single MyParcel shipment. <a target=""_blank"" href=""%s"">View shipment</a>","
|
178 |
TIG_MyParcel2014::Only for dutch shipments,Alleen voor Nederlandse verzendingen
|
179 |
"TIG_MyParcel2014::Only for dutch shipments, shipments to outside of the EU are standard ensured up to &euro 200","Alleen voor Nederlandse verzendingen, zendingen naar landen buiten de EU zijn standaard verzekerd tot € 200"
|
180 |
-
TIG_MyParcel2014::
|
181 |
-
"
|
182 |
-
"
|
183 |
-
|
184 |
-
|
185 |
-
"
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
TIG_MyParcel2014::
|
190 |
-
TIG_MyParcel2014::Powerd by MyParcel,Gesponsord door MyParcel
|
191 |
-
TIG_MyParcel2014::Business hours,Kantoor uren
|
192 |
-
TIG_MyParcel2014::Mo,Ma
|
193 |
-
TIG_MyParcel2014::Tu,Di
|
194 |
-
TIG_MyParcel2014::We,Wo
|
195 |
-
TIG_MyParcel2014::Th,Do
|
196 |
-
TIG_MyParcel2014::Fr,Vr
|
197 |
-
TIG_MyParcel2014::Sa,Za
|
198 |
-
TIG_MyParcel2014::Su,Zo
|
199 |
-
TIG_MyParcel2014::Edit,Wijzig
|
200 |
-
TIG_MyParcel2014::Type Consignment,Zendingtype
|
25 |
TIG_MyParcel2014::Customs Shipment Type,Douane verzend type
|
26 |
TIG_MyParcel2014::Customs Content HS Code,Douane goederen HS code
|
27 |
"TIG_MyParcel2014::Default content type for Cross Domestic products, see <a href=""http://gebruikstarief.douane.nl"" target=""_blank"">http://gebruikstarief.douane.nl</a>","Standaard goederen type voor Cross Domestic producten, zie <a href=""http://gebruikstarief.douane.nl"" target=""_blank"">http://gebruikstarief.douane.nl</a> voor de juiste HS code"
|
28 |
+
"TIG_MyParcel2014::Fill in your preferences for a shipment. These settings will only apply for the mass actions in the order grid. When creating a single shipment, these settings can be changed manually.<br/>These settings will activate based on the order total amount. When shipping outside of the EU you can set default values for customs type and customs goods HS code.","Vul hier uw standaard voorkeuren in voor uw verzendopties. Deze instellingen worden als default op al uw zendingen toegepast, indien van toepassing. Deze opties zijn later, per zending, uiteraard nog wel aan te passen tijdens het verwerken. <br/><br/>De opties ""Alleen huisadres"", ""Handtekening bij ontvangst"", ""Retour bij niet aanwezig"" en de verschillende verzekeringen worden actief op basis van het totale order bedrag. Bijvoorbeeld, als u bij ""alleen huisadres"" 50 invult, dan wordt voor alle zendingen voor orders vanaf € 50 standaard de instelling ""alleen huisadres"" aangevinkt. Of als u bij ""Verzekerd tot € 250,-"" het getal 150 invult, dan worden alle orders vanaf € 150 standaard verzekerd voor € 250,- inkoopwaarde.<br/><br/>Indien u zendingen naar landen buiten de EU verstuurt, kunt u optioneel voor deze zendingen een standaard waarde invullen bij het Douane verzendtype en de Douane goederen HS code. Deze waardes kunt u nog aanpassen wanneer u uw zending verwerkt."
|
29 |
TIG_MyParcel2014::Retourlink e-mail Template,Retourlink e-mail Template
|
30 |
TIG_MyParcel2014::PLACEHOLDER,PLACEHOLDER
|
31 |
+
TIG_MyParcel2014::Track&Trace email template,Track&Trace e-mail Template
|
32 |
+
"TIG_MyParcel2014::You can create a new transactional e-mail where the variables {{var tracktrace_url}} and {{var retourlabel_url}} are available. TIP: You can base them on the Order Update template, because {{var order}} is also available.","U kunt een nieuwe transactionele email aanmaken en daarin {{var tracktrace_url}} en {{var retourlabel_url}} gebruiken. Zie voor details de <a target=""_blank"" href=""http://kb.tig.nl/topic/98526863"">KB</a>"
|
33 |
+
TIG_MyParcel2014::Print Orientation,Print oriëntatie
|
34 |
TIG_MyParcel2014::Select a standard orientation for printing labels.,Selecteer een standaard print oriëntatie voor het printen van labels.
|
35 |
TIG_MyParcel2014::Enable test modus,Activeer test modus
|
36 |
TIG_MyParcel2014::Enable to test the extension,Activeer om test verzendingen te kunnen maken
|
111 |
TIG_MyParcel2014::View the complete changelog of the extension.,Bekijk de volledige release notes van de extensie
|
112 |
TIG_MyParcel2014::Full changelog,Volledige release notes
|
113 |
TIG_MyParcel2014::MyParcel PgAddress class missing.,MyParcel PgAddress class mist
|
114 |
+
TIG_MyParcel2014::Select a transactional e-mail template to send the retourlink,Selecteer een transactionele e-mail template om de retourlink te verzenden.
|
115 |
TIG_MyParcel2014::Select a transactional e-mail template to send the barcode,Selecteer een transactionele e-mail template om de Track&Trace code te versturen
|
116 |
TIG_MyParcel2014::You can create a new transactional e-mail where the variables {{var retourlink}} is available.,"Maak een transactionele e-mail aan, daarin zal de variabele {{var retourlink}} beschikbaar zijn om te retourlink te verzenden."
|
117 |
TIG_MyParcel2014::Unable to send track and trace email for shipment #,Versturen van track & trace e-mail mislukt voor zending #
|
144 |
"TIG_MyParcel2014::Shipments will not be delivered at the neighbours, only on house address.","Zendingen worden niet bij de buren aangeboden, alleen op huisadres."
|
145 |
TIG_MyParcel2014::Shipments will not go the a pickup point but will be returned directly after multiple delivery attempts.,Zendingen gaan niet naar een afhaallocatie en komen direct retour na bezorgpogingen.
|
146 |
TIG_MyParcel2014::Unable to save check_status cron expression: %s,Het is niet gelukt om de check_status cron expressie op te slaan: %s
|
147 |
+
TIG_MyParcel2014::Some of the shipments could not be created or could not be created at MyParcel from the selected orders. See below for detailed information.,Een aantal van de geselecteerde orders is een foutmelding opgetreden tijdens het aanmaken van de verzending. Zie hieronder voor gedetailleerde informatie.
|
148 |
TIG_MyParcel2014::Select A4 print start position,Selecteer de A4 print start positie
|
149 |
"TIG_MyParcel2014::Select content type for Cross Domestic products, see <a href=""http://gebruikstarief.douane.nl"" target=""_blank"">http://gebruikstarief.douane.nl</a>","Vul de goederen code voor zendingen buiten de EU in, zie <a href=""http://gebruikstarief.douane.nl"" target=""_blank"">http://gebruikstarief.douane.nl</a> voor de bestaande codes."
|
150 |
TIG_MyParcel2014::Create MyParcel Consignment,Creëer MyParcel verzending
|
154 |
TIG_MyParcel2014::Normal,Normaal
|
155 |
TIG_MyParcel2014::Letter box,Brievenbuspakje
|
156 |
TIG_MyParcel2014::Unstamped,Ongefrankeerd
|
157 |
+
TIG_MyParcel2014::The MyParcel consignment is successfully created.,De MyParcel zending is succesvol aangemaakt.
|
158 |
+
TIG_MyParcel2014::Choose a pickup location,Selecteer MyParcel Verzendopties
|
159 |
TIG_MyParcel2014::Zipcode,Postcode
|
160 |
"TIG_MyParcel2014::Search by zipcode, address or city","Zoek op postcode, adres of plaats"
|
161 |
TIG_MyParcel2014::Housenumber,Huisnummer
|
162 |
TIG_MyParcel2014::Search,Zoeken
|
163 |
+
TIG_MyParcel2014::Nearest myparcel pickup points,Dichtstbijzijnde afhaal locaties
|
164 |
TIG_MyParcel2014::Pakjegemak Method Name,Pakjegemak methode naam
|
165 |
TIG_MyParcel2014::Unpaid,Ongefrankeerd
|
166 |
+
TIG_MyParcel2014::The consignment is already credited.,Deze zending is al gecrediteerd.
|
167 |
TIG_MyParcel2014::MyParcel - Create & Print shipping labels,MyParcel - Creëer & Print verzend labels
|
168 |
TIG_MyParcel2014::Letterbox,Brievenbuspakje
|
169 |
TIG_MyParcel2014::Select,Selecteer
|
173 |
"TIG_MyParcel2014::The selected shipment-type cannot be used, Pakjegemak-shipments can only be created with the normal shipment type.","Het geselecteerde zending-type kan niet gebruikt worden, Pakjegemak zendingen kunnen enkel aangemaakt worden met het normale verzend-type."
|
174 |
TIG_MyParcel2014::MyParcel - Create Magento shipments (no labels),MyParcel - Creëer Magento verzendingen (geen labels)
|
175 |
TIG_MyParcel2014::Insured up to: € %s,Verzekerd tot : € %s
|
176 |
+
TIG_MyParcel2014::Post Office Address,Gekozen afhaallocatie
|
177 |
+
"TIG_MyParcel2014::The selected shipment type cannot be used. Pakjegemak shipments can only be created with the normal shipment type.<br/> The Magento shipment has been created without a MyParcel shipment, select a different shipment type or go to the shipment page to create a single MyParcel shipment. <a target=""_blank"" href=""%s"">View shipment</a>","De geselecteerde zending type kan niet gebruikt worden. Pakjegemak zendingen kunnen enkel aangemaakt worden middels de normale verzendtype. <br/>De Magento zending is aangemaakt zonder een MyParcel zending, selecteer een ander verzend type of ga naar de Magento zending pagina en maak daar een MyParcel zending aan. <a target=""_blank"" href=""%s"">Bekijk zending</a>"
|
178 |
TIG_MyParcel2014::Only for dutch shipments,Alleen voor Nederlandse verzendingen
|
179 |
"TIG_MyParcel2014::Only for dutch shipments, shipments to outside of the EU are standard ensured up to &euro 200","Alleen voor Nederlandse verzendingen, zendingen naar landen buiten de EU zijn standaard verzekerd tot € 200"
|
180 |
+
"TIG_MyParcel2014::Please select the shipping methods that will be considered to be 'MyParcel' by this extension. Orders placed using one of these shipping methods may be processed using the MyParcel extension.","Selecteer de verzendmethodes die deze extensie als 'MyParcel' moet beschouwen. Orders die worden geplaatst via deze verzendmethodes, kunnen worden verwerkt door de MyParcel extensie."
|
181 |
+
"All Allowed Countries","Alle toegestane landen"
|
182 |
+
"Specific Countries","Specifieke landen"
|
183 |
+
"The configuration has been saved.","De configuratie is opgeslagen."
|
184 |
+
"Weight vs. Destination","Gewicht vs. Bestemming"
|
185 |
+
"Price vs. Destination","Prijs vs. Bestemming"
|
186 |
+
"# of Items vs. Destination","# Items vs. Bestemming"
|
187 |
+
"Fixed","Vast"
|
188 |
+
"Percent","Percentage"
|
189 |
+
"TIG_MyParcel2014::There are no log files to be downloaded.","Er zijn geen log files om te downloaden."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>tig_myparcel</name>
|
4 |
-
<version>1.3.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://creativecommons.org/licenses/by-nc-nd/3.0/nl/deed.en_US">Creative Commons License</license>
|
7 |
<channel>community</channel>
|
@@ -19,7 +19,11 @@ With this extension you can:
|
|
19 |
- Generate return-links for a shipment
|
20 |
- Ship world-wide with MyParcel
|
21 |
- Send Track&Trace information</description>
|
22 |
-
<notes>==== 1.3.
|
|
|
|
|
|
|
|
|
23 |
==== New features ====
|
24 |
- Shipping methods connected to MyParcel
|
25 |
- Minimal order price PakjeGemak
|
@@ -41,9 +45,9 @@ None. Please contact us if you find a bug.
|
|
41 |
- New translations
|
42 |
- Extended logging functionality</notes>
|
43 |
<authors><author><name>TIG</name><user>supporttotal</user><email>servicedesk@totalinternetgroup.nl</email></author></authors>
|
44 |
-
<date>2015-
|
45 |
-
<time>
|
46 |
-
<contents><target name="magecommunity"><dir name="TIG"><dir name="MyParcel2014"><dir name="Block"><dir name="Adminhtml"><dir name="Sales"><dir name="Order"><dir name="Shipment"><dir name="Create"><file name="ConsignmentOptions.php" hash="fdf0ec9cf1e5ada2c89638392d5a4106"/></dir><file name="ShippingInfo.php" hash="
|
47 |
<compatible/>
|
48 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
49 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>tig_myparcel</name>
|
4 |
+
<version>1.3.1</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://creativecommons.org/licenses/by-nc-nd/3.0/nl/deed.en_US">Creative Commons License</license>
|
7 |
<channel>community</channel>
|
19 |
- Generate return-links for a shipment
|
20 |
- Ship world-wide with MyParcel
|
21 |
- Send Track&Trace information</description>
|
22 |
+
<notes>==== 1.3.1 ====
|
23 |
+
== v1.3.1 ==
|
24 |
+
- Added Magento Patch SUPEE-6788 compatibility
|
25 |
+

|
26 |
+
==== 1.3.0 ====
|
27 |
==== New features ====
|
28 |
- Shipping methods connected to MyParcel
|
29 |
- Minimal order price PakjeGemak
|
45 |
- New translations
|
46 |
- Extended logging functionality</notes>
|
47 |
<authors><author><name>TIG</name><user>supporttotal</user><email>servicedesk@totalinternetgroup.nl</email></author></authors>
|
48 |
+
<date>2015-10-29</date>
|
49 |
+
<time>10:32:29</time>
|
50 |
+
<contents><target name="magecommunity"><dir name="TIG"><dir name="MyParcel2014"><dir name="Block"><dir name="Adminhtml"><dir name="Sales"><dir name="Order"><dir name="Shipment"><dir name="Create"><file name="ConsignmentOptions.php" hash="fdf0ec9cf1e5ada2c89638392d5a4106"/></dir><file name="ShippingInfo.php" hash="8371397f10be993791d5878160b06548"/></dir><dir name="View"><file name="ShippingInfo.php" hash="7e0ffdedc1cab6870991cbb7e7f752fc"/></dir></dir></dir><dir name="System"><dir name="Config"><file name="AdminSecure.php" hash="abfbc4f529358040f5f21fbc47f95c0a"/><file name="Hidden.php" hash="98e74d07fb637d7cbac3eed14a55b378"/><file name="SupportTab.php" hash="3ed95adf1523bd5a21c1fe19d61813dc"/></dir></dir><dir name="Widget"><dir name="Grid"><dir name="Column"><dir name="Renderer"><dir name="Shipment"><file name="ShippingStatus.php" hash="6250677ea5d6e6b36be23cdc6d21c151"/></dir><file name="ShippingStatus.php" hash="6a9bfdfcac2b362f6797186f94467115"/></dir></dir></dir></dir></dir><dir name="Checkout"><file name="Js.php" hash="2fcda151238c8bf53d8c0bcd25b2859a"/><file name="PgAddress.php" hash="b1a9ac7d2219b3b4f85cab5996f8c531"/><file name="Progress.php" hash="ff8ec8b6512b5785dd621366a06856de"/></dir></dir><file name="Exception.php" hash="17fbabfc37a1872da197dda8ae31eaad"/><dir name="Helper"><file name="AddressValidation.php" hash="a85c4dda15b569c42f5ba51e74fa5726"/><file name="Data.php" hash="8e8524b060c84e5a2514f212be6d329b"/></dir><dir name="Model"><dir name="Adminhtml"><dir name="Observer"><file name="OrderGrid.php" hash="8486635dfa393a8055c6cd28b30052d9"/><file name="ShipmentGrid.php" hash="39c2804ebc9c89c3abee141e22cfb0ad"/><file name="SystemConfig.php" hash="556df530f658e0c4e179ffba534e5013"/><file name="ViewShipment.php" hash="75cd817a5603280143a3ac87a4672f3c"/></dir><dir name="Support"><file name="Logs.php" hash="8678ec28f8a98cf2bd6b5625dc55ac15"/></dir></dir><dir name="Api"><file name="Curl.php" hash="f006338a00df9cef0485a647bfefaca6"/><file name="MyParcel.php" hash="32b8c1b8442926751ca9b8acfa9359c1"/></dir><dir name="Carrier"><file name="MyParcel.php" hash="56d1cce86bbd2193e9122cd17b724681"/><dir name="System"><dir name="Config"><dir name="Source"><file name="RateType.php" hash="d0e2b78dc1040b1265e35d60ae2de76b"/></dir></dir></dir></dir><dir name="Checkout"><file name="Service.php" hash="73e0c2c9ff1512a1c927093e200cfed2"/><file name="Validate.php" hash="f411737f90a793ba75c18092cb2f1248"/></dir><dir name="Observer"><file name="Cron.php" hash="ea790b89e5bd5379b0711415623b3e1d"/><file name="SaveConfig.php" hash="3804317337df37ce33615280f6c3677b"/><file name="SavePgAddress.php" hash="b07e42bda2318a7272a48a52480dccc0"/><file name="SaveShipment.php" hash="a70cef74590a4952af19944a1e7bf502"/></dir><dir name="Resource"><dir name="Order"><dir name="Grid"><file name="Collection.php" hash="48fc092078dcdbcca40788c486ca0987"/></dir></dir><file name="Setup.php" hash="b16d3f9146b6544c1f90ff8e218b52bb"/><dir name="Shipment"><file name="Collection.php" hash="6af521845d88a214d283cfd3fecfbd2d"/><dir name="Grid"><file name="Collection.php" hash="52886710560d83ced9224c93c0e6489c"/></dir></dir><file name="Shipment.php" hash="7c7bb4b4349da9504015a279b9ff8a4f"/></dir><file name="Shipment.php" hash="fd15fb02034a52915d674e059d0d2056"/><dir name="System"><dir name="Config"><dir name="Source"><file name="A4a6.php" hash="9233248742c79824ea8408577a9b4f2e"/><file name="Customs.php" hash="9b5c4fd3a866fdabf44a7b532b9c3501"/><file name="ShippingMethods.php" hash="ee471d016cf4df58467e21620bbd680c"/><file name="StreetField.php" hash="f171261f2d8785ebf41f19d2bfeb7d58"/><file name="Yesno.php" hash="0c49e0c17e933924d25ffe823e2dab16"/></dir></dir></dir></dir><dir name="controllers"><file name="CheckoutController.php" hash="b62b65440631e6bc5d80d59b84c3f4df"/><dir name="MyparcelAdminhtml"><file name="ConfigController.php" hash="2c139cec3382ab52efc6340e54d33ad6"/><file name="ShipmentController.php" hash="5522c694ecf6f01d5e89aeed5128aed0"/></dir></dir><dir name="data"><dir name="tig_myparcel_setup"><file name="data-upgrade-0.1.0-1.1.1.php" hash="04cd4a74b8e7a2374586f2352c6716c4"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="48f98ab56dba89e6b2479b9a4cebb628"/><file name="config.xml" hash="ad4cbed5db899cf6568180b884592a9b"/><file name="system.xml" hash="9cc7401f0addb375843efeacb5ed232d"/></dir><dir name="sql"><dir name="tig_myparcel_setup"><file name="install-0.1.0.php" hash="6f0adc84b58a049b000997cec80946a3"/><file name="upgrade-1.1.4-1.2.0.php" hash="03f749e474005d691c8ecafa07f91deb"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="TIG_MyParcel2014.xml" hash="ea5b922031b3e792a2b381903077e66f"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><dir name="TIG"><file name="tig_myparcel.xml" hash="a944d8cfb23ade9b64dd6299a9f91cf5"/></dir></dir><dir name="template"><dir name="TIG"><dir name="MyParcel2014"><dir name="sales"><dir name="order"><dir name="address"><file name="warning.phtml" hash="fd5bf39bc5bf1ff6e79c41cad00de14b"/></dir><file name="mass_actions.phtml" hash="6a24b4431dac3412a9240bd8b68539b3"/><dir name="shipment"><dir name="create"><file name="consignment_options.phtml" hash="b32b4f46b7985c5285c71c9a7c028baf"/></dir><file name="mass_actions.phtml" hash="db772f2c96dc31f41649762e7663d5d6"/><file name="shipping_info.phtml" hash="17f3be5129d4f5ae68976e8a12cb0057"/></dir><dir name="view"><file name="shipping_info.phtml" hash="e6e8ca0fa33e940b00c5c4c138c55bac"/></dir></dir></dir><dir name="system"><dir name="config"><file name="edit.phtml" hash="3b3728e61a547322258ee4fd0026b271"/><file name="supportTab.phtml" hash="bd4e2c8d1496236c240e3356f3a2205e"/></dir></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><dir name="TIG"><file name="tig_myparcel.xml" hash="8022c6c45dbb88195a951120dfd347c0"/></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="css"><dir name="TIG"><dir name="MyParcel2014"><file name="prototype_windows_themes_magento.css" hash="c1cfaf8dca98f8e18e2b83dc8e9f216d"/><file name="styles.css" hash="7c8cc3f0ea1f8b9bbaeb9ebaf7f91f9c"/><file name="system_config_edit.css" hash="429c1a64ac62e62ab80915236e6400cf"/><file name="system_config_edit_myparcel.css" hash="4ca2ff19c68359ebaf3750239da2bcc7"/><file name="system_config_edit_myparcel_magento16.css" hash="f9a8479639e2fe8d0da9cf602b1607c3"/></dir></dir></dir><dir name="images"><dir name="TIG"><dir name="MyParcel2014"><file name="bkg_tooltip.png" hash="56cfed3ed8a65b19f8de88946d1a0a01"/><file name="btn_download_icon.png" hash="142d5ebbe43ad09dde97cd32e1ef4303"/><file name="glyph_error.gif" hash="a138b803d772f552aa2e49e1c506edbd"/><file name="glyph_info.gif" hash="40f72d28be63ecf2b6ef44c7ea730104"/><file name="glyph_manual.png" hash="771db63b6ffc9de1c06da564796adc6e"/><file name="glyph_pdf.png" hash="a5ea929f4014a88d7320d0293913ace3"/><file name="glyph_success.gif" hash="465a056a3ba3d94367f51c3c0b751391"/><file name="glyph_warning.gif" hash="fa817cb6d49efb9855942ef2b739fc6c"/><file name="icon-tooltip.png" hash="5767601cd66b23d0b6fe8defc10dd48d"/><file name="legend.gif" hash="d8fb0642901868d489d31b426f3e3406"/><file name="logo_myparcel.png" hash="73b50ec4d9d63d1b4ee4822b8b5f4964"/><file name="logo_myparcel_19.png" hash="8b7463a2911050419d97b24890732472"/><file name="logo_myparcel_38.png" hash="20e50f897cd8a4133e15629a10a1fea2"/><dir name="magento"><file name="btn_bg.gif" hash="37c51a4d48a92da9648dcd3ca011039f"/><file name="content_bg.gif" hash="21278ea0da2d4256f4ced96b6080ba2e"/><file name="top_bg.gif" hash="26f28090de87d64f9b01bf624f89bfe2"/><file name="window_close.png" hash="3af14f053f360bf31f8ba2df73ec7f1e"/></dir><file name="tig_logo_medium.gif" hash="3e1071908cfdb7b472438482c3331ac7"/><file name="tig_logo_medium.png" hash="ae24176891a64b6dcf1fa4b34326757a"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><dir name="TIG"><dir name="MyParcel2014"><file name="checkout.css" hash="621cd2a44f1b3d7a4946e834ed589ffe"/></dir></dir></dir><dir name="images"><dir name="TIG"><dir name="MyParcel"><dir name="checkout"><file name="loader_mini.gif" hash="f244ab6581d4329e3dbb7e289d47dfb2"/><file name="logo_myparcel.png" hash="73b50ec4d9d63d1b4ee4822b8b5f4964"/><file name="logo_postnl.png" hash="6fa95b3a5e83b6887848b5feb7369bf1"/></dir></dir></dir></dir><dir name="js"><dir name="TIG"><dir name="MyParcel2014"><file name="MutationObserver.js" hash="0ce653eab6a6aa85e827da86ddb71c2c"/><file name="checkout.js" hash="db71dd5e28bdb04a67c6a5828ca3911c"/></dir></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="nl_NL"><file name="TIG_MyParcel2014.csv" hash="bd8ed3a48a5975c71ac2fc0cfeedcf82"/></dir><dir name="en_US"><file name="TIG_MyParcel2014.csv" hash="cc09aff93ca3efc5012a2801a512bb3e"/></dir></target></contents>
|
51 |
<compatible/>
|
52 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
53 |
</package>
|