man4x_mondialrelay - Version 1.1.2

Version Notes

(EN)
Responsive design for very small media screens (320px)
-----------------------------------------------------------
(FR)
- Responsive design pour les très petits écrans (320px)

Download this release

Release Info

Developer Emmanuel Catrysse
Extension man4x_mondialrelay
Version 1.1.2
Comparing to
See all releases


Code changes from version 1.1.1 to 1.1.2

app/code/community/Man4x/MondialRelay/Helper/Data.php CHANGED
@@ -232,6 +232,7 @@ class Man4x_MondialRelay_Helper_Data
232
  {
233
  $data['mondialrelay_ws_error_msg'] = $this->convertStatToTxt($errorCode);
234
  }
 
235
  Mage::log(print_r($data, true) . self::CSV_EOL, Zend_Log::DEBUG, self::LOG_FILE, true);
236
  }
237
 
232
  {
233
  $data['mondialrelay_ws_error_msg'] = $this->convertStatToTxt($errorCode);
234
  }
235
+ die(var_dump($data));
236
  Mage::log(print_r($data, true) . self::CSV_EOL, Zend_Log::DEBUG, self::LOG_FILE, true);
237
  }
238
 
app/code/community/Man4x/MondialRelay/Model/Carrier/Abstract.php CHANGED
@@ -511,15 +511,7 @@ class Man4x_MondialRelay_Model_Carrier_Abstract
511
 
512
  // $order->getShippingMethod() formated as carrier . _ . method (e.g. mondialrelaypickup_24R_00000)
513
  $_shippingMethod = explode('_', $order->getShippingMethod());
514
-
515
- // Format phone number (remove all non-numerical characters and international prefix - restore then the front 0)
516
- $_phone = preg_replace("/[^0-9\+]/", "", $order->getBillingAddress()->getTelephone());
517
- $_country = $order->getShippingAddress()->getCountry();
518
- if (('LU' == $_country) && ('352' == substr($_phone, 0, 3))) {$_country = '0' . substr($_phone, 3);}
519
- if (('FR' == $_country) && ('33' == substr($_phone, 0, 2))) {$_country = '0' . substr($_phone, 2);}
520
- if (('BE' == $_country) && ('32' == substr($_phone, 0, 2))) {$_country = '0' . substr($_phone, 2);}
521
- if (('ES' == $_country) && ('34' == substr($_phone, 0, 2))) {$_country = '0' . substr($_phone, 2);}
522
-
523
  $_params = array(
524
  'Enseigne' => $this->_getGenericConfigData('company'),
525
  'ModeCol' => 'CCC', // Collection at the sender's place
@@ -542,8 +534,8 @@ class Man4x_MondialRelay_Model_Carrier_Abstract
542
  'Dest_Ad4' => $_helper->removeAccent($order->getShippingAddress()->getStreet(2)),
543
  'Dest_Ville' => $_helper->removeAccent($order->getShippingAddress()->getCity()),
544
  'Dest_CP' => $order->getShippingAddress()->getPostcode(),
545
- 'Dest_Pays' => $_helper->removeAccent($_country),
546
- 'Dest_Tel1' => $_phone,
547
  'Dest_Mail' => $order->getCustomerEmail(),
548
  'Poids' => (string) $_parcelDetails['weight'],
549
  'NbColis' => (string) $_parcelDetails['box'],
511
 
512
  // $order->getShippingMethod() formated as carrier . _ . method (e.g. mondialrelaypickup_24R_00000)
513
  $_shippingMethod = explode('_', $order->getShippingMethod());
514
+
 
 
 
 
 
 
 
 
515
  $_params = array(
516
  'Enseigne' => $this->_getGenericConfigData('company'),
517
  'ModeCol' => 'CCC', // Collection at the sender's place
534
  'Dest_Ad4' => $_helper->removeAccent($order->getShippingAddress()->getStreet(2)),
535
  'Dest_Ville' => $_helper->removeAccent($order->getShippingAddress()->getCity()),
536
  'Dest_CP' => $order->getShippingAddress()->getPostcode(),
537
+ 'Dest_Pays' => $_helper->removeAccent($order->getShippingAddress()->getCountry()),
538
+ 'Dest_Tel1' => preg_replace("/[^0-9\+]/", "", $order->getBillingAddress()->getTelephone()), // Remove all non-numerical characters
539
  'Dest_Mail' => $order->getCustomerEmail(),
540
  'Poids' => (string) $_parcelDetails['weight'],
541
  'NbColis' => (string) $_parcelDetails['box'],
app/code/community/Man4x/MondialRelay/Model/Carrier/Pickup.php CHANGED
@@ -68,7 +68,7 @@ class Man4x_MondialRelay_Model_Carrier_Pickup
68
  *
69
  * @param string $postcode
70
  * @param string $country
71
- * @return string | array
72
  */
73
  static public function wsGetPickups($postcode, $country)
74
  {
@@ -87,17 +87,12 @@ class Man4x_MondialRelay_Model_Carrier_Pickup
87
  $_client = new SoapClient(Mage::getStoreConfig('carriers/mondialrelay/url_ws', true));
88
  $_wsResult = $_client->WSI2_RecherchePointRelaisAvancee($_params)->WSI2_RecherchePointRelaisAvanceeResult;
89
 
90
- if (! property_exists($_wsResult, 'ListePR'))
91
- {
92
- return $_wsResult->STAT;
93
- }
94
-
95
- $_pickups = array();
96
- if (! property_exists($_wsResult->ListePR, 'ret_WSI2_sub_PointRelaisAvancee'))
97
  {
98
- return $_pickups;
99
  }
100
 
 
101
  foreach ($_wsResult->ListePR->ret_WSI2_sub_PointRelaisAvancee as $_pickup)
102
  {
103
  $_pickup = array(
68
  *
69
  * @param string $postcode
70
  * @param string $country
71
+ * @return false | array
72
  */
73
  static public function wsGetPickups($postcode, $country)
74
  {
87
  $_client = new SoapClient(Mage::getStoreConfig('carriers/mondialrelay/url_ws', true));
88
  $_wsResult = $_client->WSI2_RecherchePointRelaisAvancee($_params)->WSI2_RecherchePointRelaisAvanceeResult;
89
 
90
+ if (! property_exists($_wsResult, 'ListePR') || ! property_exists($_wsResult->ListePR, 'ret_WSI2_sub_PointRelaisAvancee'))
 
 
 
 
 
 
91
  {
92
+ return false;
93
  }
94
 
95
+ $_pickups = array();
96
  foreach ($_wsResult->ListePR->ret_WSI2_sub_PointRelaisAvancee as $_pickup)
97
  {
98
  $_pickup = array(
app/code/community/Man4x/MondialRelay/controllers/IndexController.php CHANGED
@@ -272,30 +272,20 @@ class Man4x_MondialRelay_IndexController
272
 
273
  $_wsResult = Man4x_MondialRelay_Model_Carrier_Pickup::wsGetPickups($postcode, $countryId);
274
 
275
- if (! is_array($_wsResult))
276
  {
277
  $_result = $this->_setResult(
278
  'error',
279
  'Mondial Relay service temporary unavailable.',
280
- $_wsResult);
281
  }
282
  else
283
- {
284
- if (0 == count($_wsResult))
285
- {
286
- $_result = $this->_setResult(
287
- 'error',
288
- 'No matching pick-up for this postcode.',
289
- 0);
290
- }
291
- else
292
- {
293
- $_result = array(
294
- 'type' => 'pickup-list',
295
- 'title' => Mage::helper('mondialrelay')->__('Pick-up List'),
296
- 'data' => $_wsResult,
297
- );
298
- }
299
  }
300
  return $_result;
301
  }
272
 
273
  $_wsResult = Man4x_MondialRelay_Model_Carrier_Pickup::wsGetPickups($postcode, $countryId);
274
 
275
+ if (false === $_wsResult)
276
  {
277
  $_result = $this->_setResult(
278
  'error',
279
  'Mondial Relay service temporary unavailable.',
280
+ $_wsResult->STAT);
281
  }
282
  else
283
+ {
284
+ $_result = array(
285
+ 'type' => 'pickup-list',
286
+ 'title' => Mage::helper('mondialrelay')->__('Pick-up List'),
287
+ 'data' => $_wsResult,
288
+ );
 
 
 
 
 
 
 
 
 
 
289
  }
290
  return $_result;
291
  }
app/code/community/Man4x/MondialRelay/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <Man4x_MondialRelay>
5
- <version>1.1.1</version>
6
  <depends>
7
  <Mage_Adminhtml />
8
  <Mage_Shipping />
2
  <config>
3
  <modules>
4
  <Man4x_MondialRelay>
5
+ <version>1.1.2</version>
6
  <depends>
7
  <Mage_Adminhtml />
8
  <Mage_Shipping />
app/design/frontend/base/default/template/Man4x_MondialRelay/pickuppopup.phtml CHANGED
@@ -312,7 +312,7 @@
312
  </div>
313
 
314
  <div id="pickup-map">
315
- <div id="pickup-map-canvas" style="width: 100%; height: 300px;"></div>
316
  </div>
317
 
318
  </div>
312
  </div>
313
 
314
  <div id="pickup-map">
315
+ <div id="pickup-map-canvas" style="width: 100%; height: 280px;"></div>
316
  </div>
317
 
318
  </div>
app/design/frontend/base/default/template/Man4x_MondialRelay/shippingmethods.phtml CHANGED
@@ -35,10 +35,7 @@
35
 
36
  var _method = e.readAttribute('id');
37
  if (_method.indexOf('mondialrelay') != -1) {
38
- var _label = $$('label[for=' + _method + ']')[0];
39
- var _parent = $(_label.parentNode);
40
- if (_parent.select('p.method-description').length == 0)
41
- {
42
  _parent.insert("<p class='method-description'>" + _methodsDesc[_method.substring(9)] + "</p>");
43
 
44
  if (_method.indexOf('pickup') != -1) {
@@ -98,8 +95,7 @@
98
  });
99
  });
100
  }
101
- }
102
- }
103
  }
104
  }
105
  )
35
 
36
  var _method = e.readAttribute('id');
37
  if (_method.indexOf('mondialrelay') != -1) {
38
+ var _parent = $(e.parentNode);
 
 
 
39
  _parent.insert("<p class='method-description'>" + _methodsDesc[_method.substring(9)] + "</p>");
40
 
41
  if (_method.indexOf('pickup') != -1) {
95
  });
96
  });
97
  }
98
+ }
 
99
  }
100
  }
101
  )
app/etc/modules/Man4x_MondialRelay.xml DELETED
@@ -1,9 +0,0 @@
1
- <?xml version="1.0"?>
2
- <config>
3
- <modules>
4
- <Man4x_MondialRelay>
5
- <active>true</active>
6
- <codePool>community</codePool>
7
- </Man4x_MondialRelay>
8
- </modules>
9
- </config>
 
 
 
 
 
 
 
 
 
app/locale/en_US/Man4x_MondialRelay.csv DELETED
@@ -1,209 +0,0 @@
1
- "(Tracking Code Reserved)","(Tracking Code Reserved)"
2
- "Access Map","Access Map"
3
- "Active","Active"
4
- "Allowed Methods","Allowed Methods"
5
- "An error has occurred during labels recovery (%s)","An error has occurred during labels recovery (%s)"
6
- "An error has occurred during labels recovery. Please contact Mondial Relay or try again later.","An error has occurred during labels recovery. Please contact Mondial Relay or try again later."
7
- "As displayed on the front-end","As displayed on the front-end"
8
- "AS400 Unavailability","AS400 Unavailability"
9
- "Bad Base Company Type","Bad Base Company Type"
10
- "Banned Items","Banned items for this shipping method"
11
- "Carrier Title","Generic Carrier Title"
12
- "Cart Value","Cart Value"
13
- "Catalog Weight Unit","Catalog weight unit"
14
- "City List","City List"
15
- "Click to select your pick-up location","Click to select your pick-up location"
16
- "Close this window","Close this window"
17
- "Closed","Closed"
18
- "Colis-Drive Delivery Enabled","Colis-Drive Delivery Enabled"
19
- "Comfort Method Enabled","Comfort Method Enabled"
20
- "Comma-separated ID values","Comma-separated ID values"
21
- "Company Name","Company Name"
22
- "Company Reference (Tracking)","Company Reference (Tracking)"
23
- "Company Reference (Web service)","Company Reference (Web service)"
24
- "Debug Mode","Debug Mode"
25
- "Default Developed Length (cm)","Default Developed Length (cm)"
26
- "Description","Description"
27
- "Disabled Company Account","Disabled Company Account"
28
- "Displayed Error Message","Displayed Error Message"
29
- "Drive-Pickup Delivery","Drive-Pickup Delivery"
30
- "Drive-Pickup Delivery Enabled","Drive-Pickup Delivery Enabled"
31
- "Error in table rates line %s: %s fields found!","Error in table rates line %s: %s fields found!"
32
- "Error in table rates line %s: value %s is not valid","Error in table rates line %s: value %s is not valid"
33
- "Exhausted Delivery Number Range","Exhausted Delivery Number Range"
34
- "Extra Fee","Extra Fee"
35
- "Friday","Friday"
36
- "Gram","Gram"
37
- "%sh%s","%sh%s"
38
- "Handling Fee","Handling Fee"
39
- "Handling Fee Calculation Method","Handling Fee Calculation Method"
40
- "Home Delivery and Installation on Appointment","Home delivery and installation on appointment"
41
- "Home Delivery on Appointment","Home Delivery on Appointment"
42
- "If enabled, log file is located at /var/log/man4x_mondialrelay_debug.log","If enabled, log file is located at /var/log/man4x_mondialrelay_debug.log"
43
- "If yes, pick-up is selected on a map. If no, pick-up is selected in a list. Warning: list-selection will increase the sales_flat_quote_shipping_rate table size much quicker","If yes, pick-up is selected on a map. If no, pick-up is selected in a list.<br />Warning: list-selection will increase the sales_flat_quote_shipping_rate table size much quicker!"
44
- "Info","Info"
45
- "Invalid %s \"%s\" in the Row #%s","Invalid %s \"%s\" in the Row #%s"
46
- "Invalid Address","Invalid Address"
47
- "Invalid Appointment Top","Invalid Appointment Top"
48
- "Invalid Insurance","Invalid Insurance"
49
- "Invalid City","Invalid City"
50
- "Invalid COD Amount","Invalid COD Amount"
51
- "Invalid COD Currency","Invalid COD Currency"
52
- "Invalid Collection Mode","Invalid Collection Mode"
53
- "Invalid Collection or Delivery Mode","Invalid Collection or Delivery Mode"
54
- "Invalid Collection Relay Country","Invalid Collection Relay Country"
55
- "Invalid Collection Relay Number","Invalid Collection Relay Number"
56
- "Invalid Collection Type (1/D > Home -- 3/R > Relay)","Invalid Collection Type (1/D > Home -- 3/R > Relay)"
57
- "Invalid Company Account","Invalid Company Account"
58
- "Invalid Company Customer Number","Invalid Company Customer Number"
59
- "Invalid Company File Number","Invalid Company File Number"
60
- "Invalid Company Name","Invalid Company Name"
61
- "Invalid Country \"%s\" in the Row #%s","Invalid Country \"%s\" in the Row #%s"
62
- "Invalid Country Code","Invalid Country Code"
63
- "Invalid Delivery Instructions","Invalid Delivery Instructions"
64
- "Invalid Delivery Mode","Invalid Delivery Mode"
65
- "Invalid Delivery Relay Country","Invalid Delivery Relay Country"
66
- "Invalid Delivery Relay Number","Invalid Delivery Relay Number"
67
- "Invalid Delivery Type (1/D > Home -- 3/R > Relay)","Invalid Delivery Type (1/D > Home -- 3/R > Relay)"
68
- "Invalid Language","Invalid Language"
69
- "Invalid Mondial Relay Parcel Number","Invalid Mondial Relay Parcel Number"
70
- "Invalid Parcel Number","Invalid Parcel Number"
71
- "Invalid Parcel Size","Invalid Parcel Size"
72
- "Invalid Parcel Size (Length + Height)","Invalid Parcel Size (Length + Height)"
73
- "Invalid Parcel Value","Invalid Parcel Value"
74
- "Invalid Parcel Value Currency","Invalid Parcel Value Currency"
75
- "Invalid Parcel Weight","Invalid Parcel Weight"
76
- "Invalid Post Code","Invalid Post Code"
77
- "Invalid Region/State \"%s\" in the Row #%s","Invalid Region/State \"%s\" in the Row #%s"
78
- "Invalid Recipient Address Line 1","Invalid Recipient Address Line 1"
79
- "Invalid Recipient Address Line 2","Invalid Recipient Address Line 2"
80
- "Invalid Recipient Address Line 3","Invalid Recipient Address Line 3"
81
- "Invalid Recipient Address Line 4","Invalid Recipient Address Line 4"
82
- "Invalid Recipient City","Invalid Recipient City"
83
- "Invalid Recipient Country","Invalid Recipient Country"
84
- "Invalid Recipient E-mail","Invalid Recipient E-mail"
85
- "Invalid Recipient Language","Invalid Recipient Language"
86
- "Invalid Recipient Phone Number","Invalid Recipient Phone Number"
87
- "Invalid Recipient Post Code","Invalid Recipient Post Code"
88
- "Invalid Recovery Top","Invalid Recovery Top"
89
- "Invalid Relay Number","Invalid Relay Number"
90
- "Invalid Security Key","Invalid Security Key"
91
- "Invalid Sender Address Line 1","Invalid Sender Address Line 1"
92
- "Invalid Sender Address Line 2","Invalid Sender Address Line 2"
93
- "Invalid Sender Address Line 3","Invalid Sender Address Line 3"
94
- "Invalid Sender Address Line 4","Invalid Sender Address Line 4"
95
- "Invalid Sender City","Invalid Sender City"
96
- "Invalid Sender Country","Invalid Sender Country"
97
- "Invalid Sender E-mail","Invalid Sender E-mail"
98
- "Invalid Sender Language","Invalid Sender Language"
99
- "Invalid Sender Phone Number","Invalid Sender Phone Number"
100
- "Invalid Sender Post Code","Invalid Sender Post Code"
101
- "Invalid Setup Time","Invalid Setup Time"
102
- "Invalid Shipment Number","Invalid Shipment Number"
103
- "Invalid Shipping Price \"%s\" in the Row #%s","Invalid Shipping Price \"%s\" in the Row #%s"
104
- "Invalid Table Rates File Format","Invalid Table Rates File Format"
105
- "Invalid Tablerate Rate code type: %s","Invalid Tablerate Rate code type: %s"
106
- "Invalid Tablerate Rate code for type %s: %s","Invalid Tablerate Rate code for type %s: %s"
107
- "Invalid Text Field","Invalid Text Field"
108
- "Invalid Top Notification","Invalid Top Notification"
109
- "Items Nr","Items Nr"
110
- "Key (Tracking)","Key (Tracking)"
111
- "Key (Web service)","Key (Web service)"
112
- "Kilogram","Kilogram"
113
- "Labels Printing","Labels Printing"
114
- "Leave 0 to prevent free shipping","Leave 0 to prevent free shipping"
115
- "Leave 0 to use basic table rate","Leave 0 to use basic table rate"
116
- "Map & Opening hours","Map & Opening hours"
117
- "Mass Shipping","Mass Shipping"
118
- "Mass Shipping (Flat File)","Mass Shipping (Flat File)"
119
- "Mass Shipping (Web Service)","Mass Shipping (Web Service)"
120
- "Maximal Weight per Box for Light Shipments","Maximal weight per box for light shipments (< 30kg)"
121
- "Max. 4 Address Lines","Max. 4 x 32 characters address line"
122
- "Minimum: 1 - Maximum: 10","Minimum: 1 - Maximum: 10"
123
- "Missing Company Number","Missing Company Number"
124
- "Monday","Monday"
125
- "Mondial Relay","Mondial Relay"
126
- "Mondial Relay: Generic Settings","Mondial Relay: Generic Settings"
127
- "Mondial Relay: Pickup Delivery","Mondial Relay: Pickup Delivery"
128
- "Mondial Relay: Home Delivery","Mondial Relay: Home Delivery"
129
- "Mondial Relay Label","Mondial Relay Label"
130
- "Mondial Relay service temporary unavailable.","Mondial Relay service temporary unavailable."
131
- "Mondial Relay shipment error for order #%s (%s)","Mondial Relay shipment error for order #%s (%s)"
132
- "Mondial Relay shipment for order #%s was successfully created","Mondial Relay shipment for order #%s was successfully created"
133
- "(More info)","(More info)"
134
- "No Available Action Without City / Post Code","No Available Action Without City / Post Code"
135
- "No Result After Sorting Plan","No Result After Sorting Plan"
136
- "No matching city has been found in this country.","No matching city has been found in this country."
137
- "No matching pick-up for this postcode.","No matching pick-up for this postcode."
138
- "Nonexistent Parcel","Nonexistent Parcel"
139
- "Number of pickup spots displayed on request","Number of pickup spots displayed on request"
140
- "One line per rate; enter '*' for wildcards";"One line per rate, as: country code;region id;postcode;price;rate. Enter '*' for wildcards"
141
- "Only 32 characters per line for sender address","Only 32 characters per line for sender address"
142
- "Only four lines are allowed in sender address","Only four lines are allowed in sender address"
143
- "Opening Hours","Opening Hours"
144
- "Optional","Optional"
145
- "Order Total for Free Shipping","Order Total for Free Shipping"
146
- "Ounce","Ounce"
147
- "Package Weight (grams)","Package Weight (grams)"
148
- "Pick-up details","Pick-up information"
149
- "Pick-up locations search","Pick-up locations search"
150
- "Pick-up selection on map","Pick-up selection on map"
151
- "Pick-up List","Pick-up List"
152
- "Please specify where you want to be delivered in order to search for relevant pick-up locations.","Please specify where you want to be delivered in order to search for relevant pick-up locations."
153
- "Please wait while loading Mondial Relay data...","Please wait while loading Mondial Relay data..."
154
- "Post Code","Post Code"
155
- "Pound","Pound"
156
- "Premium Method Enabled","Premium Method Enabled"
157
- "Printing Labels","Printing Labels"
158
- "Provided by Mondial Relay","Provided by Mondial Relay"
159
- "Rate Condition","Rate condition"
160
- "Rate vs package total items/destination","Rate vs package total items/destination"
161
- "Rate vs package value/destination","Rate vs package value/destination"
162
- "Rate vs weight/destination","Rate vs weight/destination"
163
- "Rates Schedule","Rates Schedule"
164
- "Relay Map","Relay Map"
165
- "Relay Point",Relay Point"
166
- "Relay Multi-Piece Delivery is not Allowed","Relay Multi-Piece Delivery is not Allowed"
167
- "Saturday","Saturday"
168
- "Search","Search"
169
- "Select this pick-up","Select this pick-up"
170
- "Selected pick-up:","Selected pick-up:"
171
- "Send Email when Mass Shipping","Send email when mass shipping"
172
- "Sender Address","Sender address"
173
- "Sender City","Sender city"
174
- "Sender Country Code","Sender country code"
175
- "Sender E-mail","Sender e-mail"
176
- "Sender Mobile","Sender mobile"
177
- "Sender Name","Sender name"
178
- "Sender Phone","Sender phone"
179
- "Sender Post Code","Sender post code"
180
- "Service Generic Error","Service Generic Error"
181
- "Ship to Applicable Countries","Ship to Applicable Countries"
182
- "Ship to Specific Countries","Allowed Shipping Countries"
183
- "Show Method If Not Applicable","Show Method If Not Applicable"
184
- "Sort Order","Sort Order"
185
- "Standard Home Delivery","Standard Home Delivery"
186
- "Standard Pickup Delivery","Standard Pickup Delivery"
187
- "Sunday","Sunday"
188
- "Thursday","Thursday"
189
- "Title","Title for shipping method"
190
- "Too many orders: 100 max. by export file.","Too many orders: 100 max. by export file."
191
- "Tracking Code: Anomaly","Tracking Code: Anomaly"
192
- "Tracking Code: Delivered Parcel","Tracking Code: Delivered Parcel"
193
- "Tracking Code: Mondial Relay Processing Parcel","Tracking Code: Mondial Relay Processing Parcel"
194
- "Tracking Code: Registered Parcel","Tracking Code: Registered Parcel"
195
- "Tracking URL","Tracking URL"
196
- "Two-letters code","Two-letters code (e.g. FR, BE, DE...)"
197
- "Tuesday","Tuesday"
198
- "Unable to display pick-up details","Unable to display pick-up details"
199
- "Unavailable Service","Unavailable Service"
200
- "Unknown/Non-unique City Name","Unknown/Non-unique City Name"
201
- "Unknown Error","Unknown Error"
202
- "Use same unit as the weight unit of your catalog items","Use same unit as the weight unit of your catalog items"
203
- "Use same unit as the weight unit of your catalog items. Leave 0 to always ship as a single box","Use same unit as the weight unit of your catalog items. Leave 0 to always ship as a single box"
204
- "WARNING: clear cache after any change!","WARNING: clear cache after any change!"
205
- "Web Service for single shipment","Web Service for single shipment"
206
- "Web Service URL","Web Service URL"
207
- "Wednesday","Wednesday"
208
- "Weight","Weight"
209
- "Zip/Postal Code","Zip/Postal Code"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/locale/fr_FR/Man4x_MondialRelay.csv DELETED
@@ -1,209 +0,0 @@
1
- "(Tracking Code Reserved)","(Réservé Code Tracking)"
2
- "Access Map","Plan d'accès"
3
- "Active","Activé"
4
- "Allowed Methods","Types d'expédition pris en charge"
5
- "An error has occurred during labels recovery (%s)","Une erreur est survenue durant la récupération des étiquettes (%s)"
6
- "An error has occurred during labels recovery. Please contact Mondial Relay or try again later.","Une erreur est survenue durant la récupération des étiquettes. Veuillez contacter Mondial Relay ou réessayer un peu plus tard."
7
- "As displayed on the front-end","Tel qu'affiché sur le front-end"
8
- "AS400 Unavailability","Indisponibilité AS400"
9
- "Bad Base Company Type","Type d'enseigne incorrect en base"
10
- "Banned Items","Articles interdits à cette méthode de livraison"
11
- "Carrier Title","Intitulé générique du mode de livraison"
12
- "Cart Value","Valeur du panier"
13
- "Catalog Weight Unit","Unité de poids des articles du catalogue"
14
- "City List","Liste des communes"
15
- "Click to select your pick-up location","Cliquez ici pour choisir votre point relais®&nbsp;"
16
- "Close this window","Fermer cette fenêtre"
17
- "Closed","Fermé"
18
- "Colis-Drive Delivery Enabled","Livraison en Colis-Drive activée"
19
- "Comfort Method Enabled","Formule Confort active"
20
- "Comma-separated ID values","ID produits séparés par des virgules"
21
- "Company Name","Enseigne"
22
- "Company Reference (Tracking)","Référence de marque (Tracking)"
23
- "Company Reference (Web service)","Référence de marque (Web Service)"
24
- "Debug Mode","Mode débogage"
25
- "Default Developed Length (cm)","Longueur développée d'un produit par défaut (cm)"
26
- "Description","Description"
27
- "Disabled Company Account","Compte enseigne non activé"
28
- "Displayed Error Message","Message d'erreur"
29
- "Drive-Pickup Delivery","Livraison en Colis-Drive"
30
- "Drive-Pickup Delivery Enabled","Livraison en Colis-Drive activée"
31
- "Error in table rates line %s: %s fields found!","Erreur dans la grille de tarification ligne %s: %s champs trouvés !"
32
- "Error in table rates line %s: value %s is not valid","Erreur dans la grille de tarification ligne %s: valeur %s non valide"
33
- "Exhausted Delivery Number Range","Plage de numéros d'expédition épuisée"
34
- "Extra Fee","Frais supplémentaires"
35
- "Friday","Vendredi"
36
- "Gram","Gramme"
37
- "%sh%s","%sh%s"
38
- "Handling Fee","Frais de dossier"
39
- "Handling Fee Calculation Method","Calcul des frais de dossier"
40
- "Home Delivery and Installation on Appointment","Livraison et installation à domicile sur rendez-vous (formule Premium)"
41
- "Home Delivery on Appointment","Livraison à domicile sur rendez-vous (formule Confort)"
42
- "If enabled, log file is located at /var/log/man4x_mondialrelay_debug.log","Si activé, les logs sont compilés dans le fichier /var/log/man4x_mondialrelay_debug.log"
43
- "If yes, pick-up is selected on a map. If no, pick-up is selected in a list. Warning: list-selection will increase the sales_flat_quote_shipping_rate table size much quicker","Si oui, la sélection de Point Relais® se fait sur carte. Si non, la sélection se fait sur liste. <br />Attention: la sélection sur liste entraîne une augmentation beaucoup plus rapide de la taille de la table sales_flat_quote_shipping_rate!"
44
- "Info","Détails"
45
- "Invalid %s \"%s\" in the Row #%s","Condition %s \"%s\" invalide à la ligne %s"
46
- "Invalid Address","Adresse invalide"
47
- "Invalid Appointment Top","Top rendez-vous invalide"
48
- "Invalid Insurance","Assurance invalide ou incorrecte"
49
- "Invalid City","Invalid City"
50
- "Invalid COD Amount","Montant CRT invalide"
51
- "Invalid COD Currency","Devise CRT invalide"
52
- "Invalid Collection Mode","Mode de collecte invalide"
53
- "Invalid Collection or Delivery Mode","Mode de collecte ou de livraison invalide"
54
- "Invalid Collection Relay Country","Pays de point de relais de collecte invalide"
55
- "Invalid Collection Relay Number","Numéro de point de relais de collecte invalide"
56
- "Invalid Collection Type (1/D > Home -- 3/R > Relay)","Type de collecte invalide (1/D > Domicile -- 3/R > Relay)"
57
- "Invalid Company Account","Numéro de compte enseigne invalide"
58
- "Invalid Company Customer Number","Numéro de client enseigne invalide"
59
- "Invalid Company File Number","Numéro de dossier enseigne invalide"
60
- "Invalid Company Name","Enseigne invalide"
61
- "Invalid Country \"%s\" in the Row #%s","Pays \"%s\" invalide à la ligne %s"
62
- "Invalid Country Code","Code pays invalide"
63
- "Invalid Delivery Instructions","Instructions de livraison invalides"
64
- "Invalid Delivery Mode","Mode de livraison invalide"
65
- "Invalid Delivery Relay Country","Pays de point de relais de livraison invalide"
66
- "Invalid Delivery Relay Number","Numéro de point relais de livraison invalide"
67
- "Invalid Delivery Type (1/D > Home -- 3/R > Relay)","Type de livraison invalide (1/D > Domicile -- 3/R > Relay)"
68
- "Invalid Language","Langue invalide"
69
- "Invalid Mondial Relay Parcel Number","Numéro de colis Mondial Relay invalide"
70
- "Invalid Parcel Number","Nombre de colis invalide"
71
- "Invalid Parcel Size","Taille du colis invalide"
72
- "Invalid Parcel Size (Length + Height)","Taille du colis invalide (longueur + hauteur)"
73
- "Invalid Parcel Value","Valeur colis invalide"
74
- "Invalid Parcel Value Currency","Devise de la valeur colis invalide"
75
- "Invalid Parcel Weight","Poids colis invalide"
76
- "Invalid Post Code","Code postal invalide"
77
- "Invalid Region/State \"%s\" in the Row #%s","Région/Département \"%s\" invalide à la ligne %s"
78
- "Invalid Recipient Address Line 1","Ligne 1 d'adresse du destinataire invalide"
79
- "Invalid Recipient Address Line 2","Ligne 2 d'adresse du destinataire invalide"
80
- "Invalid Recipient Address Line 3","Ligne 3 d'adresse du destinataire invalide"
81
- "Invalid Recipient Address Line 4","Ligne 4 d'adresse du destinataire invalide"
82
- "Invalid Recipient City","Ville destinataire invalide"
83
- "Invalid Recipient Country","Pays destinataire invalide"
84
- "Invalid Recipient E-mail","Email destinataire invalide"
85
- "Invalid Recipient Language","Langue destinataire invalide"
86
- "Invalid Recipient Phone Number","Téléphone destinataire invalide"
87
- "Invalid Recipient Post Code","Code postal destinataire invalide"
88
- "Invalid Recovery Top","Top reprise invalide"
89
- "Invalid Relay Number","Numéro de relais invalide"
90
- "Invalid Security Key","Clé de sécurité invalide"
91
- "Invalid Sender Address Line 1","Ligne 1 d'adresse de l'expéditeur invalide"
92
- "Invalid Sender Address Line 2","Ligne 2 d'adresse de l'expéditeur invalide"
93
- "Invalid Sender Address Line 3","Ligne 3 d'adresse de l'expéditeur invalide"
94
- "Invalid Sender Address Line 4","Ligne 4 d'adresse de l'expéditeur invalide"
95
- "Invalid Sender City","Ville expéditeur invalide"
96
- "Invalid Sender Country","Pays expéditeur invalide"
97
- "Invalid Sender E-mail","Email expéditeur invalide"
98
- "Invalid Sender Language","Langue expéditeur invalide"
99
- "Invalid Sender Phone Number","Téléphone expéditeur invalide"
100
- "Invalid Sender Post Code","Code postal expéditeur invalide"
101
- "Invalid Setup Time","Temps de montage invalide"
102
- "Invalid Shipment Number","Numéro d'expédition invalide"
103
- "Invalid Shipping Price \"%s\" in the Row #%s","Tarif de livraison \"%s\" invalide à la ligne %s"
104
- "Invalid Table Rates File Format","Format de la grille tarifaire invalide"
105
- "Invalid Tablerate Rate code type: %s","Erreur de grille tarifaire pour expédition de type: %s"
106
- "Invalid Tablerate Rate code for type %s: %s","Erreur de grille tarifaire pour expéditionde type %s / %s"
107
- "Invalid Text Field","Champ texte libre invalide"
108
- "Invalid Top Notification","Top avisage invalide"
109
- "Items Nr","Nombre d'articles"
110
- "Key (Tracking)","Clé (Tracking)"
111
- "Key (Web service)","Clé (Web Service)"
112
- "Kilogram","Kilogramme"
113
- "Labels Printing","Impression des étiquettes"
114
- "Leave 0 to prevent free shipping","Laisser à 0 pour ne pas accorder de franco de port"
115
- "Leave 0 to use basic table rate","Laisser à 0 pour utiliser la grille standard de tarification"
116
- "Map & Opening hours","[Info]"
117
- "Mass Shipping","Expédition par lot"
118
- "Mass Shipping (Flat File)","Expédition par lot (fichier plat)"
119
- "Mass Shipping (Web Service)","Expédition par lot (Web Service)"
120
- "Maximal Weight per Box for Light Shipments","Poids maximal par colis pour les expéditions légères (< 30 kg)"
121
- "Max. 4 Address Lines","Max. 4 lignes d'adresse de 32 caractères"
122
- "Minimum: 1 - Maximum: 10","Valeur entre 1 et 10"
123
- "Missing Company Number","Numéro d'enseigne vide"
124
- "Monday","Lundi"
125
- "Mondial Relay","Mondial Relay"
126
- "Mondial Relay: Generic Settings","Mondial Relay: Paramètres génériques"
127
- "Mondial Relay: Pickup Delivery","Mondial Relay: Livraison en Points Relais®"
128
- "Mondial Relay: Home Delivery","Mondial Relay: Livraison à Domicile"
129
- "Mondial Relay Label","Etiquette Mondial Relay"
130
- "Mondial Relay service temporary unavailable.","Accès aux services Mondial Relay temporairement indisponible."
131
- "Mondial Relay shipment error for order #%s (%s)","Erreur d'expédition Mondial Relay pour la commande n°%s (%s)"
132
- "Mondial Relay shipment for order #%s was successfully created","L'expédition Mondial Relay pour la commande n°%s a été effectuée avec succès"
133
- "(More info)","(Détails)"
134
- "No Available Action Without City / Post Code","Aucune action possible sans ville ou code postal"
135
- "No Result After Sorting Plan","Aucun élément retourné par le plan de tri"
136
- "No matching city has been found in this country.","Aucune ville de ce nom n'a été trouvée dans le pays indiqué."
137
- "No matching pick-up for this postcode.","Aucun points relais® trouvé pour ce code postal."
138
- "Nonexistent Parcel","Colis inexistant"
139
- "Number of pickup spots displayed on request","Nombre de points relais® affichés par requête"
140
- "One line per rate; enter '*' for wildcards";"Une ligne par règle, sur le motif: code pays;code région;code postal;prix;coût. Utiliser '*' pour signifier toutes valeurs"
141
- "Only 32 characters per line for sender address","Maximum 32 caractères par ligne d'adresse pour l'expéditeur"
142
- "Only four lines are allowed in sender address","Seules quatre lignes sont prises en compte pour l'adresse de l'expéditeur"
143
- "Opening Hours","Horaires d'ouverture"
144
- "Optional","Facultatif"
145
- "Order Total for Free Shipping","Montant minimum de commande pour bénéficier des frais de port gratuits"
146
- "Ounce","Once"
147
- "Package Weight (grams)","Poids d'un carton (en gramme)"
148
- "Pick-up details","Information Point Relais®"
149
- "Pick-up locations search","Recherche de Points Relais®"
150
- "Pick-up selection on map","Sélection du Point Relais® sur carte"
151
- "Pick-up List","Liste des Points Relais®"
152
- "Please specify where you want to be delivered in order to search for relevant pick-up locations.","Veuillez indiquer le lieu où vous souhaitez recevoir votre colis de manière à vous proposer une liste de Points Relais® disponibles."
153
- "Please wait while loading Mondial Relay data...","En attente des données Mondial Relay..."
154
- "Post Code","Code postal"
155
- "Pound","Livre"
156
- "Premium Method Enabled","Formule Premium active"
157
- "Printing Labels","Impression des étiquettes Mondial Relay"
158
- "Provided by Mondial Relay","Paramètre fourni par Mondial Relay"
159
- "Rate Condition","Paramètre de tarification"
160
- "Rate vs package total items/destination","Tarification par nombre d'articles/destination"
161
- "Rate vs package value/destination","Tarification par valeur de la commande/destination"
162
- "Rate vs weight/destination","Tarification par poids/destination"
163
- "Rates Schedule","Grille de tarification"
164
- "Relay Map","Plan d'accès au Point Relais"
165
- "Relay Multi-Piece Delivery is not Allowed","Livraison multi-colis en relai interdite"
166
- "Relay Point","Point Relais"
167
- "Saturday","Samedi"
168
- "Search","Rechercher"
169
- "Select this pick-up","Choisir ce point relais®"
170
- "Selected pick-up:","Vous avez choisi le point relais®:"
171
- "Send Email when Mass Shipping","Notification email quand expédition par lot"
172
- "Sender Address","Adresse de l'expéditeur"
173
- "Sender City","Ville de l'expéditeur"
174
- "Sender Country Code","Code pays de l'expéditeur"
175
- "Sender E-mail","E-mail de l'expéditeur"
176
- "Sender Mobile","Mobile de l'expéditeur"
177
- "Sender Name","Nom de l'expéditeur"
178
- "Sender Phone","Téléphone de l'expéditeur"
179
- "Sender Post Code","Code postal de l'expéditeur"
180
- "Service Generic Error","Erreur générique du service"
181
- "Ship to Applicable Countries","Pays de destination autorisés"
182
- "Ship to Specific Countries","Pays de destination autorisés"
183
- "Show Method If Not Applicable","Afficher si non disponible"
184
- "Sort Order","Ordre de tri"
185
- "Standard Home Delivery","Livraison à domicile sans rendez-vous, sur le pas de porte ou d'immeuble."
186
- "Standard Pickup Delivery","Livraison en Point Relais®"
187
- "Sunday","Dimanche"
188
- "Thursday","Mardi"
189
- "Title","Intitulé de la méthode de livraison"
190
- "Too many orders: 100 max. by export file.","Erreur: 100 commandes maximum par fichier export."
191
- "Tracking Code: Anomaly","Code Tracking: Anomalie"
192
- "Tracking Code: Delivered Parcel","Code Tracking: Colis livré"
193
- "Tracking Code: Mondial Relay Processing Parcel","Code Tracking: Colis en cours de traitement par Mondial Relay"
194
- "Tracking Code: Registered Parcel","Code Tracking: Colis enregistré"
195
- "Tracking URL","URL de Tracking"
196
- "Tuesday","Mardi"
197
- "Two-letters code","Code pays à deux lettres (ex: FR, BE, DE...)"
198
- "Unable to display pick-up details","Affichage des données du Point Relais® impossible"
199
- "Unavailable Service","Service indisponible"
200
- "Unknown/Non-unique City Name","Nom de ville inconnue ou non-unique"
201
- "Unknown Error","Erreur inconnue"
202
- "Use same unit as the weight unit of your catalog items","Utiliser la même unité de poids que celle des articles de votre catalogue"
203
- "Use same unit as the weight unit of your catalog items. Leave 0 to always ship as a single box","Utiliser la même unité de poids que celle des articles de votre catalogue. Laisser à 0 pour considérer chaque envoi comme un colis unique"
204
- "WARNING: clear cache after any change!","ATTENTION: vider le cache après toute modification !"
205
- "Web Service for single shipment","Expédition unique par web service"
206
- "Web Service URL","URL du Web Service"
207
- "Wednesday","Mercredi"
208
- "Weight","Poids"
209
- "Zip/Postal Code","Code postal"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>man4x_mondialrelay</name>
4
- <version>1.1.1</version>
5
  <stability>stable</stability>
6
  <license>Massachusetts Institute of Technology License (MITL)</license>
7
  <channel>community</channel>
@@ -14,16 +14,14 @@ WARNING: this module is not compatible with MondialRelay_Pointsrelais unless man
14
  (FR) Ce module a &#xE9;t&#xE9; inspir&#xE9; par le module MondialRelay_Pointsrelais disponible sur Magento Connect dans le but de corriger certaines limitations de ce dernier (exp&#xE9;ditions par lot, s&#xE9;lection des points relais sur carte ou par liste, interception des erreurs d'enregistrement...)&#xD;
15
  ATTENTION: ce module n'est pas compatible en l'&#xE9;tat avec le module MondialRelay_Pointsrelais (voir documentation).</description>
16
  <notes>(EN) &#xD;
17
- - Administrator is now allowed to choose from "on-map" or "by-list" pick-up selection&#xD;
18
- - Visual reformating of the pick-up selection popup&#xD;
19
  -----------------------------------------------------------&#xD;
20
  (FR)&#xD;
21
- - Ajout de la possibilit&#xE9; pour l'administrateur de choisir entre une s&#xE9;lection des points relais&#xAE; sur carte ou sur liste&#xD;
22
- - Reformatage visuel du popup de s&#xE9;lection des points relais&#xAE;</notes>
23
  <authors><author><name>Emmanuel Catrysse</name><user>Peppermay</user><email>man4x@hotmail.fr</email></author></authors>
24
- <date>2013-11-06</date>
25
- <time>13:15:37</time>
26
- <contents><target name="magecommunity"><dir name="Man4x"><dir name="MondialRelay"><dir name="Block"><dir name="Checkout"><file name="Pickupinfo.php" hash="f680aaaff2440322a2e52466c82ada29"/><file name="Pickuppopup.php" hash="2ba541c8dc6f7879ed253247203a2845"/><file name="Shippingmethods.php" hash="b7b8add2c3c4ff0b3e62cb40b51723c3"/></dir><dir name="Sales"><dir name="Labelprinting"><file name="Grid.php" hash="d857aff4471f24384b0c5297ccb0cb78"/></dir><file name="Labelprinting.php" hash="9e990a4eb0ceefa636ebc32bba6b6a8f"/><dir name="Massshipping"><file name="Grid.php" hash="ce414d6219b1b1af560c0088edf77368"/></dir><file name="Massshipping.php" hash="9a57748baaf79fb6e60d1644d2135fda"/></dir></dir><dir name="Helper"><file name="Data.php" hash="b79908e85ce1b84c842374d5bf46b08f"/></dir><dir name="Model"><dir name="Carrier"><file name="Abstract.php" hash="29e5e197d48bd7b7d2342633415aade8"/><file name="Home.php" hash="ad17938c4cce4cf0016706389acba36e"/><file name="Pickup.php" hash="c7dd3eb0a8a18bc2230c4032d11ee61b"/></dir><file name="Observer.php" hash="9d5dea24dcfad2443e2ccc9690b811f0"/><dir name="System"><dir name="Config"><dir name="Source"><file name="Condition.php" hash="efba05e86889f72a3df7ce18b6f72ada"/><file name="Weightunit.php" hash="ccd1e3db82344d3474cbfc14ae99bd4b"/></dir><dir name="Validation"><file name="Senderaddress.php" hash="ca607aa992c55449506e281bd77955c7"/><file name="Tablerate.php" hash="2eefc73133b5a0876024b6f528e53a8e"/></dir></dir></dir></dir><dir name="controllers"><file name="IndexController.php" hash="c09e54802cbabc65b33b59badbbe1929"/><dir name="Sales"><file name="ShippingController.php" hash="9c02e4cd4ef508b9b9779ed4a709907c"/></dir></dir><dir name="doc"><file name="guide_module_man4x_mondialrelay_1_1_0_en.pdf" hash="60cd8884d5d22b748b30c10b9697514b"/><file name="guide_module_man4x_mondialrelay_1_1_0_fr.pdf" hash="99bd87f2d497b6f176b76add0f77c3f8"/></dir><dir name="etc"><file name="adminhtml.xml" hash="8c62dc7ecb883783e2e65d46a60b154f"/><file name="config.xml" hash="8ceccf720eb03b423a25cbeaba156b49"/><file name="system.xml" hash="307636e6456d1ae72492344bb6fa9ecc"/></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="Man4x_MondialRelay.xml" hash="eaf0e0972f6ab93544fdd8a6ca45a244"/></dir><dir name="template"><dir name="Man4x_MondialRelay"><file name="pickupinfo.phtml" hash="e0daf3278c83ab590dab924b1644648a"/><file name="pickuppopup.phtml" hash="c095cbe8a59d5119e5f586e8e59c0505"/><file name="shippingmethods.phtml" hash="e72b8aaad38f14d47231e42571600d35"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Man4x_MondialRelay.xml" hash="cbf764631c906fbf3b9bcee94199d078"/></dir></target><target name="magelocale"><dir><dir name="en_US"><file name="Man4x_MondialRelay.csv" hash="00c832b9103da2d51747541ca4ab839b"/></dir><dir name="fr_FR"><file name="Man4x_MondialRelay.csv" hash="09fe6c431be15edb14244dc1e317e3d0"/></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><file name="Man4x_MondialRelay.css" hash="aa86f6043d553ea459bef15fda691cc3"/></dir><dir name="images"><dir name="Man4x_MondialRelay"><file name="close_icon.png" hash="f8422d11f273f2690226160682d80f10"/><file name="logo_mondialrelay.gif" hash="95bc996ef1c8fce2b8cc7b0b864d6f52"/><file name="logo_mondialrelay_20.gif" hash="ac7ca03f8638455ce33dd8ca9c17c475"/><file name="mondialrelay_ajax_loading.gif" hash="ef4b7ef99db4254577aac23fff5ff50b"/><file name="mondialrelay_ajax_loading_50x55.gif" hash="b260ebcedb57b84557917ecc748469ff"/><file name="mondialrelay_mapicon.png" hash="42af394899f3cb4dee42dacea2acb5b5"/></dir></dir></dir></dir></dir></target></contents>
27
  <compatible/>
28
  <dependencies><required><php><min>5.0.0</min><max>5.5.3</max></php></required></dependencies>
29
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>man4x_mondialrelay</name>
4
+ <version>1.1.2</version>
5
  <stability>stable</stability>
6
  <license>Massachusetts Institute of Technology License (MITL)</license>
7
  <channel>community</channel>
14
  (FR) Ce module a &#xE9;t&#xE9; inspir&#xE9; par le module MondialRelay_Pointsrelais disponible sur Magento Connect dans le but de corriger certaines limitations de ce dernier (exp&#xE9;ditions par lot, s&#xE9;lection des points relais sur carte ou par liste, interception des erreurs d'enregistrement...)&#xD;
15
  ATTENTION: ce module n'est pas compatible en l'&#xE9;tat avec le module MondialRelay_Pointsrelais (voir documentation).</description>
16
  <notes>(EN) &#xD;
17
+ Responsive design for very small media screens (320px)&#xD;
 
18
  -----------------------------------------------------------&#xD;
19
  (FR)&#xD;
20
+ - Responsive design pour les tr&#xE8;s petits &#xE9;crans (320px)</notes>
 
21
  <authors><author><name>Emmanuel Catrysse</name><user>Peppermay</user><email>man4x@hotmail.fr</email></author></authors>
22
+ <date>2013-11-12</date>
23
+ <time>09:37:22</time>
24
+ <contents><target name="magecommunity"><dir name="Man4x"><dir name="MondialRelay"><dir name="Block"><dir name="Checkout"><file name="Pickupinfo.php" hash="f680aaaff2440322a2e52466c82ada29"/><file name="Pickuppopup.php" hash="2ba541c8dc6f7879ed253247203a2845"/><file name="Shippingmethods.php" hash="b7b8add2c3c4ff0b3e62cb40b51723c3"/></dir><dir name="Sales"><dir name="Labelprinting"><file name="Grid.php" hash="d857aff4471f24384b0c5297ccb0cb78"/></dir><file name="Labelprinting.php" hash="9e990a4eb0ceefa636ebc32bba6b6a8f"/><dir name="Massshipping"><file name="Grid.php" hash="ce414d6219b1b1af560c0088edf77368"/></dir><file name="Massshipping.php" hash="9a57748baaf79fb6e60d1644d2135fda"/></dir></dir><dir name="Helper"><file name="Data.php" hash="72df1f45251e0478dbca7b297e2a681e"/></dir><dir name="Model"><dir name="Carrier"><file name="Abstract.php" hash="f6a030cf13c9c1318fe443bbd6e98f76"/><file name="Home.php" hash="ad17938c4cce4cf0016706389acba36e"/><file name="Pickup.php" hash="2131f0b7985c85f78c6281f0dbd619d8"/></dir><file name="Observer.php" hash="9d5dea24dcfad2443e2ccc9690b811f0"/><dir name="System"><dir name="Config"><dir name="Source"><file name="Condition.php" hash="efba05e86889f72a3df7ce18b6f72ada"/><file name="Weightunit.php" hash="ccd1e3db82344d3474cbfc14ae99bd4b"/></dir><dir name="Validation"><file name="Senderaddress.php" hash="ca607aa992c55449506e281bd77955c7"/><file name="Tablerate.php" hash="2eefc73133b5a0876024b6f528e53a8e"/></dir></dir></dir></dir><dir name="controllers"><file name="IndexController.php" hash="ffd62c82cec4f6ee9a577df12241064e"/><dir name="Sales"><file name="ShippingController.php" hash="9c02e4cd4ef508b9b9779ed4a709907c"/></dir></dir><dir name="doc"><file name="guide_module_man4x_mondialrelay_1_1_0_en.pdf" hash="60cd8884d5d22b748b30c10b9697514b"/><file name="guide_module_man4x_mondialrelay_1_1_0_fr.pdf" hash="99bd87f2d497b6f176b76add0f77c3f8"/></dir><dir name="etc"><file name="adminhtml.xml" hash="8c62dc7ecb883783e2e65d46a60b154f"/><file name="config.xml" hash="858cbf70107b827050774c20f6eb738e"/><file name="system.xml" hash="307636e6456d1ae72492344bb6fa9ecc"/></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="Man4x_MondialRelay.xml" hash="eaf0e0972f6ab93544fdd8a6ca45a244"/></dir><dir name="template"><dir name="Man4x_MondialRelay"><file name="pickupinfo.phtml" hash="e0daf3278c83ab590dab924b1644648a"/><file name="pickuppopup.phtml" hash="48eb0f72577f343cf1782a618863b235"/><file name="shippingmethods.phtml" hash="762d33ce8636227788f8d94387317776"/></dir></dir></dir></dir></dir></target><target name="magelocal"><dir name="modules"><file name="Man4x_MondialRelay.xml" hash=""/></dir></target><target name="magelocale"><dir/></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><file name="Man4x_MondialRelay.css" hash="aa86f6043d553ea459bef15fda691cc3"/></dir><dir name="images"><dir name="Man4x_MondialRelay"><file name="close_icon.png" hash="f8422d11f273f2690226160682d80f10"/><file name="logo_mondialrelay.gif" hash="95bc996ef1c8fce2b8cc7b0b864d6f52"/><file name="logo_mondialrelay_20.gif" hash="ac7ca03f8638455ce33dd8ca9c17c475"/><file name="mondialrelay_ajax_loading.gif" hash="ef4b7ef99db4254577aac23fff5ff50b"/><file name="mondialrelay_ajax_loading_50x55.gif" hash="b260ebcedb57b84557917ecc748469ff"/><file name="mondialrelay_mapicon.png" hash="42af394899f3cb4dee42dacea2acb5b5"/></dir></dir></dir></dir></dir></target></contents>
25
  <compatible/>
26
  <dependencies><required><php><min>5.0.0</min><max>5.5.3</max></php></required></dependencies>
27
  </package>