parcelspace - Version 1.0.0

Version Notes

Release candidate.

Download this release

Release Info

Developer ParcelSpace Ltd
Extension parcelspace
Version 1.0.0
Comparing to
See all releases


Version 1.0.0

app/code/local/Parcelspace/.DS_Store ADDED
Binary file
app/code/local/Parcelspace/Deliveringconfidence/.DS_Store ADDED
Binary file
app/code/local/Parcelspace/Deliveringconfidence/Block/.DS_Store ADDED
Binary file
app/code/local/Parcelspace/Deliveringconfidence/Block/Btn.php ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ class Parcelspace_DeliveringConfidence_Block_Btn extends Mage_Core_Block_Template
3
+ {
4
+ /*public function getDate()
5
+ {
6
+ $date = date('Y-m-d');
7
+ return urlencode($date);
8
+ }*/
9
+ }
app/code/local/Parcelspace/Deliveringconfidence/Helper/.DS_Store ADDED
Binary file
app/code/local/Parcelspace/Deliveringconfidence/Helper/Data.php ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ class Parcelspace_Deliveringconfidence_Helper_Data extends Mage_Core_Helper_Data
3
+ {
4
+ /*public function isIpAllowed() {
5
+ $allow = true;
6
+
7
+ $allowedIps = $this->getGeneralConfig()->getFirewall( null ); // IP/IPs separated by comma
8
+ if( !empty( $allowedIps ) ) {
9
+ $allowedIps = preg_split( '#\s*,\s*#', $allowedIps, null, PREG_SPLIT_NO_EMPTY );
10
+ if( array_search( Mage::helper( 'core/http' )->getRemoteAddr(), $allowedIps ) === false ) {
11
+ $allow = false;
12
+ }
13
+ }
14
+
15
+ return $allow;
16
+ }*/
17
+ }
app/code/local/Parcelspace/Deliveringconfidence/Model/.DS_Store ADDED
Binary file
app/code/local/Parcelspace/Deliveringconfidence/Model/Observer.php ADDED
@@ -0,0 +1,110 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ class Parcelspace_Deliveringconfidence_Model_Observer
3
+ {
4
+ public function sendInfo($observer)
5
+ {
6
+ //get info (tracking number, order number, email address, etc)
7
+ //curl post to ParcelSpace
8
+ $apikey = Mage::getStoreConfig('parcelspace_deliveringconfidence/general/api_key');
9
+ if ($apikey) {
10
+ //echo "key:".$apikey;
11
+ $orderid = $observer->getTrack()->getOrderId();
12
+ $order = Mage::getModel('sales/order')->load($orderid);
13
+ $email = $order->getData('customer_email');
14
+ //$od = $order->getCreatedAtStoreDate();
15
+ //$odt = $od->getTimestamp();
16
+ if ($email) {
17
+ $firstname = $order->getData('customer_firstname');
18
+ $lastname = $order->getData('customer_lastname');
19
+
20
+ // Get the id of the orders shipping address
21
+ $shippingId = $order->getShippingAddress()->getId();
22
+
23
+ // Get shipping address data using the id
24
+ $address = Mage::getModel('sales/order_address')->load($shippingId);
25
+ $postcode = $address->getData('postcode');
26
+ $street = $address->getData('street');
27
+ $city = $address->getData('city');
28
+ //$telephone = $address->getData('telephone');
29
+ //echo $firstname." abc ".$lastname;
30
+ $trackingno = $observer->getTrack()->getTrackNumber();
31
+ //$order->getShipmentsCollection();
32
+ $od = $order->getCreatedAtStoreDate();
33
+ $odt = $od->getTimestamp();
34
+ $sh = 0;
35
+ foreach($order->getShipmentsCollection() as $shipment) {
36
+ //$dhid = $shipment->getId();
37
+ $sh = strtotime($shipment->getCreatedAt());
38
+ }
39
+ $session = curl_init();
40
+
41
+ curl_setopt($session, CURLOPT_HEADER, false);
42
+ curl_setopt($session, CURLOPT_RETURNTRANSFER, true);
43
+ curl_setopt($session, CURLOPT_FOLLOWLOCATION, true);
44
+ curl_setopt($session, CURLOPT_REFERER, $_SERVER['HTTP_REFERER']);
45
+ curl_setopt($session, CURLOPT_TIMEOUT, 60);
46
+ curl_setopt($session, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.7) Gecko/20070914 Firefox/2.0.0.7");
47
+ curl_setopt($session, CURLOPT_POST, true);
48
+
49
+ //$vars = "key=".$authuser['token'];
50
+ $vars = "apikey=".urlencode($apikey);
51
+ $vars .= "&email=".urlencode($email);
52
+ $vars .= "&firstname=".urlencode($firstname);
53
+ $vars .= "&lastname=".urlencode($lastname);
54
+ $vars .= "&trackingno=".urlencode($trackingno);
55
+ //if (isset($orderno)) {
56
+ $vars .= "&orderno=".urlencode($orderid);
57
+ $vars .= "&postcode=".urlencode($postcode);
58
+ $vars .= "&city=".urlencode($city);
59
+ $vars .= "&street=".urlencode($street);
60
+ $vars .= "&sdate=".urlencode($sh);
61
+ $vars .= "&odate=".urlencode($odt);
62
+ //$vars .= "&telephone=".urlencode($telephone);
63
+ //}
64
+ /*if (isset($post['myform']['sigreq'])) {
65
+ $vars .= "&sigreq=".$post['myform']['sigreq'];
66
+ }*/
67
+ curl_setopt($session, CURLOPT_POSTFIELDS, $vars);
68
+
69
+ //$url = 'https://www.parcelspace.com';
70
+ //$url .= '/eords/confirm.xml';
71
+ $url = 'https://www.parcelspace.com/deliveries/magentoAddDelivery.xml';
72
+ //$url = 'http://parcelcake/deliveries/magentoAddDelivery.xml';
73
+ curl_setopt($session, CURLOPT_URL, $url);
74
+ $response = curl_exec($session);
75
+
76
+ if (!$response) {
77
+ //echo "no response";
78
+ //$message = $this->__('Error. Could not confirm.');
79
+ //Mage::getSingleton('adminhtml/session')->addError($message);
80
+ //$this->Session->setFlash('Error. Could not confirm', 'flash_failure');
81
+ } else {
82
+ $xml = simplexml_load_string($response);
83
+
84
+ if ($xml->success == 1) {
85
+ //$this->Session->setFlash('Confirm success', 'flash_success');
86
+ //$message = $this->__('Confirm success.');
87
+ //Mage::getSingleton('adminhtml/session')->addSuccess($message);
88
+ //echo "confirm success";
89
+ } else {
90
+ //$this->Session->setFlash('Could not confirm '.$xml->error, 'flash_failure');
91
+ //$message = $this->__('Could not confirm.');
92
+ //Mage::getSingleton('adminhtml/session')->addError($message);
93
+ //echo "Could not confirm";
94
+ //echo $response;
95
+ }
96
+ }
97
+ } else {
98
+ //echo "No email address";
99
+ }
100
+ } else {
101
+ //echo "No API Key";
102
+ }
103
+ }
104
+
105
+ public function deleteInfo($observer)
106
+ {
107
+ //fix
108
+ //echo "dhb deleted";
109
+ }
110
+ }
app/code/local/Parcelspace/Deliveringconfidence/controllers/.DS_Store ADDED
Binary file
app/code/local/Parcelspace/Deliveringconfidence/controllers/IndexController.php ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class ParcelSpace_DeliveringConfidence_IndexController extends Mage_Core_Controller_Front_Action {
4
+
5
+ //http://alanstorm.com/magento_controller_hello_world
6
+ public function indexAction()
7
+ {
8
+ echo "hello";
9
+ }
10
+
11
+ public function goodbyeAction()
12
+ {
13
+ $storeId = Mage::app()->getStore()->getStoreId();
14
+ $emailId = Mage::getStoreConfig('sales_email/creditmemo/template');
15
+
16
+ $mailTemplate = Mage::getModel('core/email_template');
17
+
18
+ //$mailTemplate->setSenderName("dave");
19
+ //$mailTemplate->setSenderEmail("dave@nimisis.com");
20
+ $mailTemplate->setDesignConfig(array('area'=>'frontend', 'store'=>$storeId))
21
+ ->setSenderName("davebutler257@gmail.com")
22
+ ->setSenderEmail("davebutler257@gmail.com")
23
+ ->setReplyTo("davebutler257@gmail.com")
24
+ ->sendTransactional($emailId, "hi@abc.com", "davebutler257@gmail.com", "some name");//, $vars=array(), $storeId=null)
25
+
26
+ if (!$mailTemplate->getSentSuccess()) {
27
+ echo '<div class="error-msg">'.Mage::helper('contacts')->__('Unable to submit your request. Please, try again later.').'</div>';
28
+ exit;
29
+ } else {
30
+ echo "success";
31
+ }
32
+ }
33
+ }
34
+ ?>
app/code/local/Parcelspace/Deliveringconfidence/etc/.DS_Store ADDED
Binary file
app/code/local/Parcelspace/Deliveringconfidence/etc/config.xml ADDED
@@ -0,0 +1,97 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <config>
3
+ <modules>
4
+ <Parcelspace_Deliveringconfidence>
5
+ <version>0.0.1</version>
6
+ </Parcelspace_Deliveringconfidence>
7
+ </modules>
8
+ <frontend>
9
+ <layout>
10
+ <updates>
11
+ <parcelspace_deliveringconfidence>
12
+ <file>parcelspace_deliveringconfidence.xml</file>
13
+ </parcelspace_deliveringconfidence>
14
+ </updates>
15
+ </layout>
16
+ <routers>
17
+ <parcelspace_deliveringconfidence>
18
+ <use>standard</use>
19
+ <args>
20
+ <module>Parcelspace_Deliveringconfidence</module>
21
+ <frontName>parcelspace_deliveringconfidence</frontName>
22
+ </args>
23
+ </parcelspace_deliveringconfidence>
24
+ </routers>
25
+ <translate>
26
+ <modules>
27
+ <Parcelspace_Deliveringconfidence>
28
+ <files>
29
+ <default>Parcelspace_Deliveringconfidence.csv</default>
30
+ </files>
31
+ </Parcelspace_Deliveringconfidence>
32
+ </modules>
33
+ </translate>
34
+ </frontend>
35
+ <global>
36
+ <helpers>
37
+ <parcelspace_deliveringconfidence>
38
+ <class>Parcelspace_Deliveringconfidence_Helper</class>
39
+ </parcelspace_deliveringconfidence>
40
+ </helpers>
41
+ <models>
42
+ <parcelspace_deliveringconfidence>
43
+ <class>Parcelspace_Deliveringconfidence_Model</class>
44
+ </parcelspace_deliveringconfidence>
45
+ </models>
46
+ <blocks>
47
+ <parcelspace_deliveringconfidence>
48
+ <class>Parcelspace_Deliveringconfidence_Block</class>
49
+ </parcelspace_deliveringconfidence>
50
+ </blocks>
51
+ <events>
52
+ <sales_order_shipment_track_save_after>
53
+ <observers>
54
+ <parcelspace_deliveringconfidence>
55
+ <type>singleton</type>
56
+ <class>parcelspace_deliveringconfidence/observer</class>
57
+ <method>sendInfo</method>
58
+ </parcelspace_deliveringconfidence>
59
+ </observers>
60
+ </sales_order_shipment_track_save_after>
61
+ <sales_order_shipment_track_delete_after>
62
+ <observers>
63
+ <parcelspace_deliveringconfidence>
64
+ <type>singleton</type>
65
+ <class>parcelspace_deliveringconfidence/observer</class>
66
+ <method>deleteInfo</method>
67
+ </parcelspace_deliveringconfidence>
68
+ </observers>
69
+ </sales_order_shipment_track_delete_after>
70
+ </events>
71
+ </global>
72
+ <adminhtml>
73
+ <acl>
74
+ <resources>
75
+ <all>
76
+ <title>Allow Everything</title>
77
+ </all>
78
+ <admin>
79
+ <children>
80
+ <system>
81
+ <children>
82
+ <config>
83
+ <children>
84
+ <parcelspace_deliveringconfidence>
85
+ <title>PS</title>
86
+ <sort_order>100</sort_order>
87
+ </parcelspace_deliveringconfidence>
88
+ </children>
89
+ </config>
90
+ </children>
91
+ </system>
92
+ </children>
93
+ </admin>
94
+ </resources>
95
+ </acl>
96
+ </adminhtml>
97
+ </config>
app/code/local/Parcelspace/Deliveringconfidence/etc/system.xml ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <config>
3
+ <sections>
4
+ <parcelspace_deliveringconfidence translate="label" module="parcelspace_deliveringconfidence">
5
+ <label>ParcelSpace</label>
6
+ <tab>sales</tab>
7
+ <sort_order>9999</sort_order>
8
+ <show_in_default>1</show_in_default>
9
+ <show_in_website>1</show_in_website>
10
+ <show_in_store>1</show_in_store>
11
+ <groups>
12
+ <general translate="label">
13
+ <label>API Key</label>
14
+ <sort_order>10</sort_order>
15
+ <show_in_default>1</show_in_default>
16
+ <show_in_website>1</show_in_website>
17
+ <show_in_store>1</show_in_store>
18
+ <fields>
19
+ <api_key translate="label">
20
+ <label>Key</label>
21
+ <frontend_type>text</frontend_type>
22
+ <validate></validate>
23
+ <sort_order>10</sort_order>
24
+ <show_in_default>1</show_in_default>
25
+ <show_in_website>1</show_in_website>
26
+ <show_in_store>1</show_in_store>
27
+ </api_key>
28
+ </fields>
29
+ </general>
30
+ </groups>
31
+ </parcelspace_deliveringconfidence>
32
+ </sections>
33
+ </config>
app/design/frontend/base/default/layout/parcelspace_deliveringconfidence.xml ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <layout>
3
+ <shipping_tracking_popup>
4
+ <block type="shipping/tracking_popup" name="shipping.tracking.popup" template="parcelspace_deliveringconfidence/tracking/popup.phtml" />
5
+ </shipping_tracking_popup>
6
+ </layout>
app/design/frontend/base/default/template/parcelspace_deliveringconfidence/.DS_Store ADDED
Binary file
app/design/frontend/base/default/template/parcelspace_deliveringconfidence/tracking/.DS_Store ADDED
Binary file
app/design/frontend/base/default/template/parcelspace_deliveringconfidence/tracking/popup.phtml ADDED
@@ -0,0 +1,191 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0)
8
+ * that is bundled with this package in the file LICENSE_AFL.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/afl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magentocommerce.com for more information.
20
+ *
21
+ * @category design
22
+ * @package base_default
23
+ * @copyright Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
24
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
+ */
26
+ ?>
27
+ <?php /** @var $this Mage_Shipping_Block_Tracking_Popup */ ?>
28
+ <?php $_results = $this->getTrackingInfo();
29
+ $apikey = Mage::getStoreConfig('parcelspace_deliveringconfidence/general/api_key');
30
+ ?>
31
+ <div class="page-title title-buttons">
32
+ <h1><?php echo $this->__('Tracking Info'); ?></h1>
33
+ <button class="button" onclick="window.close(); window.opener.focus();"><span><span><?php echo $this->__('Close Window') ?></span></span></button>
34
+ </div>
35
+ <?php if(sizeof($_results)>0): ?>
36
+ <?php foreach($_results as $shipid => $_result): ?>
37
+ <?php if($shipid): ?>
38
+ <h2 class="sub-title"><?php echo $this->__('Shipment #').$shipid; ?></h2>
39
+ <?php endif; ?>
40
+ <?php if(sizeof($_result)>0): ?>
41
+ <?php $rowCount = sizeof($_result); $counter = 1; ?>
42
+ <?php $_id = 0; foreach($_result as $track): ?>
43
+ <?php
44
+ //echo "apikey:".$apikey;
45
+ if ($apikey) {
46
+ //$url = "http://parcelcake/deliveries/magenIframe?apikey=".$apikey."&trackingno=".$track['number'];
47
+ $url = "https://www.parcelspace.com/deliveries/magenIframe?ak=".base64_encode($apikey)."&trackingno=".$track['number'];
48
+ //echo $url;
49
+ echo "<iframe src=\"".$url."\" style=\"width:100%;height:500px;border:0px;\"></iframe>";
50
+ } else {
51
+ ?>
52
+ <table class="tracking-table-popup data-table" id="tracking-table-popup-<?php echo $_id ?>">
53
+ <col width="15%" />
54
+ <col />
55
+ <tbody>
56
+ <?php if(is_object($track)): ?>
57
+ <tr>
58
+ <th class="label"><?php echo $this->__('Tracking Number:'); ?></th>
59
+ <td class="value"><?php echo $this->escapeHtml($track->getTracking()); ?></td>
60
+ </tr>
61
+ <?php if ($track->getCarrierTitle()): ?>
62
+ <tr>
63
+ <th class="label"><?php echo $this->__('Carrier:'); ?></th>
64
+ <td class="value"><?php echo $this->escapeHtml($track->getCarrierTitle()); ?></td>
65
+ </tr>
66
+ <?php endif; ?>
67
+ <?php if($track->getErrorMessage()): ?>
68
+ <tr>
69
+ <th class="label"><?php echo $this->__('Error:'); ?></th>
70
+ <td class="error"><?php echo $this->__('Tracking information is currently not available. Please '); if ($this->getContactUsEnabled()) : ?><a href="<?php echo $this->getContactUs() ?>" title="<?php echo $this->__('contact us') ?>" onclick="this.target='_blank'"><?php echo $this->__('contact us') ?></a><?php echo $this->__(' for more information or '); endif; echo $this->__('email us at '); ?><a href="mailto:<?php echo $this->getStoreSupportEmail() ?>"><?php echo $this->getStoreSupportEmail() ?></a></td>
71
+ </tr>
72
+ <?php elseif($track->getTrackSummary()): ?>
73
+ <tr>
74
+ <th class="label"><?php echo $this->__('Info:'); ?></th>
75
+ <td class="value"><?php echo $track->getTrackSummary(); ?></td>
76
+ </tr>
77
+ <?php elseif($track->getUrl()): ?>
78
+ <tr>
79
+ <th class="label"><?php echo $this->__('Track:'); ?></th>
80
+ <td class="value"><a href="<?php echo $this->escapeHtml($track->getUrl()); ?>" onclick="this.target='_blank'"><?php echo $this->escapeHtml($track->getUrl()); ?></a></td>
81
+ </tr>
82
+ <?php else: ?>
83
+ <?php if ($track->getStatus()): ?>
84
+ <tr>
85
+ <th class="label"><?php echo $this->__('Status:'); ?></th>
86
+ <td class="value"><?php echo $track->getStatus(); ?></td>
87
+ </tr>
88
+ <?php endif; ?>
89
+
90
+ <?php if ($track->getDeliverydate()): ?>
91
+ <tr>
92
+ <th class="label"><?php echo $this->__('Delivered on:'); ?></th>
93
+ <td class="value"><?php echo $this->formatDeliveryDateTime($track->getDeliverydate(),$track->getDeliverytime()); ?></td>
94
+ </tr>
95
+ <?php endif; ?>
96
+
97
+ <?php if ($track->getSignedby()): ?>
98
+ <tr>
99
+ <th class="label"><?php echo $this->__('Signed by:'); ?></th>
100
+ <td class="value"><?php echo $track->getSignedby(); ?></td>
101
+ </tr>
102
+ <?php endif; ?>
103
+
104
+ <?php if ($track->getDeliveryLocation()): ?>
105
+ <tr>
106
+ <th class="label"><?php echo $this->__('Delivered to:'); ?></th>
107
+ <td class="value"><?php echo $track->getDeliveryLocation(); ?></td>
108
+ </tr>
109
+ <?php endif; ?>
110
+
111
+ <?php if ($track->getShippedDate()): ?>
112
+ <tr>
113
+ <th class="label"><?php echo $this->__('Shipped or billed on:'); ?></th>
114
+ <td class="value"><?php echo $track->getShippedDate(); ?></td>
115
+ </tr>
116
+ <?php endif; ?>
117
+
118
+ <?php if ($track->getService()): ?>
119
+ <tr>
120
+ <th class="label"><?php echo $this->__('Service Type:'); ?></th>
121
+ <td class="value"><?php echo $track->getService(); ?></td>
122
+ </tr>
123
+ <?php endif; ?>
124
+
125
+ <?php if ($track->getWeight()): ?>
126
+ <tr>
127
+ <th class="label"><?php echo $this->__('Weight:'); ?></th>
128
+ <td class="value"><?php echo $track->getWeight(); ?></td>
129
+ </tr>
130
+ <?php endif; ?>
131
+ <?php endif; ?>
132
+ <?php elseif(isset($track['title']) && isset($track['number']) && $track['number']): ?>
133
+ <!--if the tracking is custom value-->
134
+ <tr>
135
+ <th class="label"><?php echo ($track['title'] ? $this->escapeHtml($track['title']) : $this->__('N/A')); ?>:</th>
136
+ <td class="value"><?php echo (isset($track['number']) ? $this->escapeHtml($track['number']) : ''); ?></td>
137
+ </tr>
138
+ <?php endif; ?>
139
+ </tbody>
140
+ </table>
141
+ <script type="text/javascript">decorateTable('tracking-table-popup-<?php echo $_id++ ?>');</script>
142
+ <?php if (is_object($track) && sizeof($track->getProgressdetail())>0): ?>
143
+ <br />
144
+ <table class="data-table" id="track-history-table-<?php echo $track->getTracking(); ?>">
145
+ <col />
146
+ <col width="1" />
147
+ <col width="1" />
148
+ <col />
149
+ <thead>
150
+ <tr>
151
+ <th><?php echo $this->__('Location') ?></th>
152
+ <th><?php echo $this->__('Date') ?></th>
153
+ <th><?php echo $this->__('Local Time') ?></th>
154
+ <th><?php echo $this->__('Description') ?></th>
155
+ </tr>
156
+ </thead>
157
+ <tbody>
158
+ <?php foreach($track->getProgressdetail() as $_detail): ?>
159
+ <?php $_detailDate = (isset($_detail['deliverydate']) ? $this->formatDeliveryDate($_detail['deliverydate']) : '') ?>
160
+ <?php $_detailTime = (isset($_detail['deliverytime']) ? $this->formatDeliveryTime($_detail['deliverytime'], $_detail['deliverydate']) : '') ?>
161
+ <tr>
162
+ <td><?php echo (isset($_detail['deliverylocation']) ? $_detail['deliverylocation'] : ''); ?></td>
163
+ <td><span class="nobr"><?php echo $_detailDate ?></span></td>
164
+ <td><span class="nobr"><?php echo $_detailTime ?></span></td>
165
+ <td><?php echo (isset($_detail['activity']) ? $_detail['activity'] : '') ?></td>
166
+ </tr>
167
+ <?php endforeach; ?>
168
+ </tbody>
169
+ </table>
170
+ <script type="text/javascript">decorateTable('track-history-table-<?php echo $track->getTracking(); ?>');</script>
171
+ <?php endif; ?>
172
+ <div class="divider"></div>
173
+ <?php if($counter!=$rowCount): ?>
174
+ <?php endif; ?>
175
+ <?php $counter++; ?>
176
+ <?php
177
+ }
178
+ ?>
179
+ <!--end for each tracking information-->
180
+ <?php endforeach; ?>
181
+ <?php else: ?>
182
+ <p><?php echo $this->__('There is no tracking available for this shipment.'); ?></p>
183
+ <?php endif; ?>
184
+
185
+ <?php endforeach; ?>
186
+ <?php else: ?>
187
+ <p><?php echo $this->__('There is no tracking available.'); ?></p>
188
+ <?php endif; ?>
189
+ <div class="buttons-set">
190
+ <button type="button" title="<?php echo $this->__('Close Window') ?>" class="button" onclick="window.close(); window.opener.focus();"><span><span><?php echo $this->__('Close Window') ?></span></span></button>
191
+ </div>
app/etc/modules/Parcelspace_Deliveringconfidence.xml ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <config>
3
+ <modules>
4
+ <Parcelspace_Deliveringconfidence>
5
+ <active>true</active>
6
+ <codePool>local</codePool>
7
+ </Parcelspace_Deliveringconfidence>
8
+ </modules>
9
+ </config>
app/locale/en_US/Parcelspace_Deliveringconfidence.csv ADDED
@@ -0,0 +1,1196 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ " The customer does not exist in the system anymore."," The customer does not exist in the system anymore."
2
+ " [deleted]"," [deleted]"
3
+ " and "," and "
4
+ "%s (Default Template from Locale)","%s (Default Template from Locale)"
5
+ "%s cache type(s) disabled.","%s cache type(s) disabled."
6
+ "%s cache type(s) enabled.","%s cache type(s) enabled."
7
+ "%s cache type(s) refreshed.","%s cache type(s) refreshed."
8
+ "(For Type ""Local Server"" need to use relative path to Magento install var/export or var/import, e.g. var/export, var/import, var/export/some/dir, var/import/some/dir)","(For Type ""Local Server"" need to use relative path to Magento install var/export or var/import, e.g. var/export, var/import, var/export/some/dir, var/import/some/dir)"
9
+ "(For US 2-letter state names)","(For US 2-letter state names)"
10
+ "(If left empty will be auto-generated)","(If left empty will be auto-generated)"
11
+ "(Leave empty for first spreadsheet)","(Leave empty for first spreadsheet)"
12
+ "(Products will be added/updated to this store if 'store' column is blank or missing in the import file.)","(Products will be added/updated to this store if 'store' column is blank or missing in the import file.)"
13
+ "(Shift-)Click or drag to change value","(Shift-)Click or drag to change value"
14
+ "(Starting with)","(Starting with)"
15
+ "(When 'No', only mapped fields will be imported. When mapping, use 'column1', 'column2', etc.)","(When 'No', only mapped fields will be imported. When mapping, use 'column1', 'column2', etc.)"
16
+ "(You have to increase php memory_limit before changing this value)","(You have to increase php memory_limit before changing this value)"
17
+ "(\\t for tab)","(\\t for tab)"
18
+ "* - If indexing is in progress, it will be killed and new indexing process will start.","* - If indexing is in progress, it will be killed and new indexing process will start."
19
+ "* Required Fields","* Required Fields"
20
+ "- Click on any of the time parts to increase it","- Click on any of the time parts to increase it"
21
+ "- Hold mouse button on any of the above buttons for faster selection.","- Hold mouse button on any of the above buttons for faster selection."
22
+ "- Use the %s buttons to select month","- Use the %s buttons to select month"
23
+ "- Use the %s, %s buttons to select year","- Use the %s, %s buttons to select year"
24
+ "- or Shift-click to decrease it","- or Shift-click to decrease it"
25
+ "- or click and drag for faster selection.","- or click and drag for faster selection."
26
+ "-- Not Selected --","-- Not Selected --"
27
+ "-- Please Select --","-- Please Select --"
28
+ "-- Please Select Billing Agreement--","-- Please Select Billing Agreement--"
29
+ "-- Please Select a Category --","-- Please Select a Category --"
30
+ "-- Please select --","-- Please select --"
31
+ "--Please Select--","--Please Select--"
32
+ "1 Hour","1 Hour"
33
+ "12 Hours","12 Hours"
34
+ "12h AM/PM","12h AM/PM"
35
+ "2 Hours","2 Hours"
36
+ "24 Hours","24 Hours"
37
+ "24h","24h"
38
+ "2YTD","2YTD"
39
+ "6 Hours","6 Hours"
40
+ "<h1 class=""page-heading"">404 Error</h1><p>Page not found.</p>","<h1 class=""page-heading"">404 Error</h1><p>Page not found.</p>"
41
+ "<strong>%s</strong> requests access to your account","<strong>%s</strong> requests access to your account"
42
+ "<strong>Attention</strong>: Captcha is case sensitive.","<strong>Attention</strong>: Captcha is case sensitive."
43
+ "A user with the same user name or email aleady exists.","A user with the same user name or email aleady exists."
44
+ "API Key","API Key"
45
+ "API Key Confirmation","API Key Confirmation"
46
+ "ASCII","ASCII"
47
+ "Abandoned Carts","Abandoned Carts"
48
+ "About the calendar","About the calendar"
49
+ "Access Denied","Access Denied"
50
+ "Access denied","Access denied"
51
+ "Access denied.","Access denied."
52
+ "Account Created in:","Account Created in:"
53
+ "Account Created on (%s):","Account Created on (%s):"
54
+ "Account Created on:","Account Created on:"
55
+ "Account Information","Account Information"
56
+ "Account Status","Account Status"
57
+ "Account status","Account status"
58
+ "Action","Action"
59
+ "Actions","Actions"
60
+ "Actions XML","Actions XML"
61
+ "Active","Active"
62
+ "Add","Add"
63
+ "Add Exception","Add Exception"
64
+ "Add Field Mapping","Add Field Mapping"
65
+ "Add Field with URL:","Add Field with URL:"
66
+ "Add New","Add New"
67
+ "Add New Image","Add New Image"
68
+ "Add New Profile","Add New Profile"
69
+ "Add New Role","Add New Role"
70
+ "Add New Template","Add New Template"
71
+ "Add New URL Rewrite","Add New URL Rewrite"
72
+ "Add New User","Add New User"
73
+ "Add New Variable","Add New Variable"
74
+ "Add Products","Add Products"
75
+ "Add URL Rewrite","Add URL Rewrite"
76
+ "Add URL Rewrite for a Category","Add URL Rewrite for a Category"
77
+ "Add URL Rewrite for a Product","Add URL Rewrite for a Product"
78
+ "Add after","Add after"
79
+ "Additional Cache Management","Additional Cache Management"
80
+ "Address Type:","Address Type:"
81
+ "Admin","Admin"
82
+ "Advanced Admin Section","Advanced Admin Section"
83
+ "Advanced Profiles","Advanced Profiles"
84
+ "Advanced Section","Advanced Section"
85
+ "After authorization application will have access to you account.","After authorization application will have access to you account."
86
+ "All","All"
87
+ "All Allowed Countries","All Allowed Countries"
88
+ "All Cache","All Cache"
89
+ "All Files","All Files"
90
+ "All Reviews","All Reviews"
91
+ "All Store Views","All Store Views"
92
+ "All Tags","All Tags"
93
+ "All Websites","All Websites"
94
+ "All countries","All countries"
95
+ "All fields","All fields"
96
+ "All possible rates were fetched, please click on ""Save"" to apply","All possible rates were fetched, please click on ""Save"" to apply"
97
+ "All rates were fetched, please click on ""Save"" to apply","All rates were fetched, please click on ""Save"" to apply"
98
+ "All valid rates have been saved.","All valid rates have been saved."
99
+ "Always (during development)","Always (during development)"
100
+ "Amounts","Amounts"
101
+ "An error has occured while syncronizing media storages.","An error has occured while syncronizing media storages."
102
+ "An error occurred while clearing the JavaScript/CSS cache.","An error occurred while clearing the JavaScript/CSS cache."
103
+ "An error occurred while clearing the image cache.","An error occurred while clearing the image cache."
104
+ "An error occurred while deleting URL Rewrite.","An error occurred while deleting URL Rewrite."
105
+ "An error occurred while deleting email template data. Please review log and try again.","An error occurred while deleting email template data. Please review log and try again."
106
+ "An error occurred while deleting record(s).","An error occurred while deleting record(s)."
107
+ "An error occurred while deleting this role.","An error occurred while deleting this role."
108
+ "An error occurred while deleting this set.","An error occurred while deleting this set."
109
+ "An error occurred while deleting this template.","An error occurred while deleting this template."
110
+ "An error occurred while finishing process. Please refresh the cache","An error occurred while finishing process. Please refresh the cache"
111
+ "An error occurred while rebuilding the CatalogInventory Stock Status.","An error occurred while rebuilding the CatalogInventory Stock Status."
112
+ "An error occurred while rebuilding the catalog index.","An error occurred while rebuilding the catalog index."
113
+ "An error occurred while rebuilding the flat catalog category.","An error occurred while rebuilding the flat catalog category."
114
+ "An error occurred while rebuilding the flat product catalog.","An error occurred while rebuilding the flat product catalog."
115
+ "An error occurred while rebuilding the search index.","An error occurred while rebuilding the search index."
116
+ "An error occurred while refreshing the Catalog Rewrites.","An error occurred while refreshing the Catalog Rewrites."
117
+ "An error occurred while refreshing the Layered Navigation indices.","An error occurred while refreshing the Layered Navigation indices."
118
+ "An error occurred while refreshing the catalog rewrites.","An error occurred while refreshing the catalog rewrites."
119
+ "An error occurred while refreshing the layered navigation indices.","An error occurred while refreshing the layered navigation indices."
120
+ "An error occurred while saving URL Rewrite.","An error occurred while saving URL Rewrite."
121
+ "An error occurred while saving account.","An error occurred while saving account."
122
+ "An error occurred while saving review.","An error occurred while saving review."
123
+ "An error occurred while saving the customer.","An error occurred while saving the customer."
124
+ "An error occurred while saving this configuration:","An error occurred while saving this configuration:"
125
+ "An error occurred while saving this role.","An error occurred while saving this role."
126
+ "An error occurred while saving this template.","An error occurred while saving this template."
127
+ "An error occurred while updating the selected review(s).","An error occurred while updating the selected review(s)."
128
+ "Any","Any"
129
+ "Any Attribute Set","Any Attribute Set"
130
+ "Any Group","Any Group"
131
+ "Any Status","Any Status"
132
+ "Any Store","Any Store"
133
+ "Any Type","Any Type"
134
+ "Any Visibility","Any Visibility"
135
+ "Any data created since the backup was made will be lost including admin users, customers and orders.","Any data created since the backup was made will be lost including admin users, customers and orders."
136
+ "Archive file name:","Archive file name:"
137
+ "Are you sure that you want to delete this template?","Are you sure that you want to delete this template?"
138
+ "Are you sure that you want to strip tags?","Are you sure that you want to strip tags?"
139
+ "Are you sure you want to do this?","Are you sure you want to do this?"
140
+ "Are you sure you want to proceed?","Are you sure you want to proceed?"
141
+ "Area","Area"
142
+ "As low as:","As low as:"
143
+ "Assigned","Assigned"
144
+ "Associated Tags","Associated Tags"
145
+ "Attribute Set Name:","Attribute Set Name:"
146
+ "Attributes","Attributes"
147
+ "Authorization confirmed","Authorization confirmed"
148
+ "Authorize","Authorize"
149
+ "Authorize application","Authorize application"
150
+ "Authorized OAuth Tokens","Authorized OAuth Tokens"
151
+ "Automatic (equalize price ranges)","Automatic (equalize price ranges)"
152
+ "Automatic (equalize product counts)","Automatic (equalize product counts)"
153
+ "Average Order Amount","Average Order Amount"
154
+ "Average Orders","Average Orders"
155
+ "BINARY","BINARY"
156
+ "Back","Back"
157
+ "Back to Login","Back to Login"
158
+ "Backup","Backup"
159
+ "Backup Name","Backup Name"
160
+ "Backup options","Backup options"
161
+ "Backups","Backups"
162
+ "Base currency","Base currency"
163
+ "Bcc","Bcc"
164
+ "Bestsellers","Bestsellers"
165
+ "Billing Address","Billing Address"
166
+ "Billing Address: ","Billing Address: "
167
+ "Billing Agreement","Billing Agreement"
168
+ "Billing Agreements","Billing Agreements"
169
+ "Block Information","Block Information"
170
+ "Both (without and with tax)","Both (without and with tax)"
171
+ "Both IPN and PDT","Both IPN and PDT"
172
+ "Browse Files...","Browse Files..."
173
+ "Bundle with dynamic pricing cannot include custom defined options. Options will not be saved.","Bundle with dynamic pricing cannot include custom defined options. Options will not be saved."
174
+ "CMS","CMS"
175
+ "CRITICAL","CRITICAL"
176
+ "CSV","CSV"
177
+ "CSV / Tab separated","CSV / Tab separated"
178
+ "Cache Control","Cache Control"
179
+ "Cache Control (beta)","Cache Control (beta)"
180
+ "Cache Management","Cache Management"
181
+ "Cache Type","Cache Type"
182
+ "Cancel","Cancel"
183
+ "Cannot add new comment.","Cannot add new comment."
184
+ "Cannot add tracking number.","Cannot add tracking number."
185
+ "Cannot create an invoice without products.","Cannot create an invoice without products."
186
+ "Cannot create credit memo for the order.","Cannot create credit memo for the order."
187
+ "Cannot delete the design change.","Cannot delete the design change."
188
+ "Cannot delete tracking number.","Cannot delete tracking number."
189
+ "Cannot do shipment for the order separately from invoice.","Cannot do shipment for the order separately from invoice."
190
+ "Cannot do shipment for the order.","Cannot do shipment for the order."
191
+ "Cannot initialize shipment for adding tracking number.","Cannot initialize shipment for adding tracking number."
192
+ "Cannot initialize shipment for delete tracking number.","Cannot initialize shipment for delete tracking number."
193
+ "Cannot load track with retrieving identifier.","Cannot load track with retrieving identifier."
194
+ "Cannot retrieve tracking number detail.","Cannot retrieve tracking number detail."
195
+ "Cannot save shipment.","Cannot save shipment."
196
+ "Cannot save the credit memo.","Cannot save the credit memo."
197
+ "Cannot send shipment information.","Cannot send shipment information."
198
+ "Cannot update item quantity.","Cannot update item quantity."
199
+ "Cannot update the item\'s quantity.","Cannot update the item\'s quantity."
200
+ "Catalog","Catalog"
201
+ "Catalog Price Rules","Catalog Price Rules"
202
+ "Catalog Rewrites","Catalog Rewrites"
203
+ "Categories","Categories"
204
+ "Category","Category"
205
+ "Category:","Category:"
206
+ "Chart is disabled. If you want to enable chart, click <a href=""%s"">here</a>.","Chart is disabled. If you want to enable chart, click <a href=""%s"">here</a>."
207
+ "Checkbox","Checkbox"
208
+ "Child Transactions","Child Transactions"
209
+ "Choose Store View:","Choose Store View:"
210
+ "Choose an attribute","Choose an attribute"
211
+ "Chosen category does not associated with any website, so url rewrite is not possible.","Chosen category does not associated with any website, so url rewrite is not possible."
212
+ "Chosen product does not associated with any website, so url rewrite is not possible.","Chosen product does not associated with any website, so url rewrite is not possible."
213
+ "Clear","Clear"
214
+ "Close","Close"
215
+ "Code","Code"
216
+ "Comment text field cannot be empty.","Comment text field cannot be empty."
217
+ "Complete","Complete"
218
+ "Config form fieldset clone model required to be able to clone fields","Config form fieldset clone model required to be able to clone fields"
219
+ "Configuration","Configuration"
220
+ "Confirm New Password","Confirm New Password"
221
+ "Confirm token authorization Pop Up for admin","Confirm token authorization Pop Up for admin"
222
+ "Confirm token authorization for admin","Confirm token authorization for admin"
223
+ "Confirmation Of Authorization","Confirmation Of Authorization"
224
+ "Confirmed email:","Confirmed email:"
225
+ "Connect with the Magento Community","Connect with the Magento Community"
226
+ "Continue","Continue"
227
+ "Convert to Plain Text","Convert to Plain Text"
228
+ "Cookie (unsafe)","Cookie (unsafe)"
229
+ "Country","Country"
230
+ "Country:","Country:"
231
+ "Coupons","Coupons"
232
+ "Create","Create"
233
+ "Create DB Backup","Create DB Backup"
234
+ "Create New Attribute","Create New Attribute"
235
+ "Create URL Rewrite:","Create URL Rewrite:"
236
+ "Created At","Created At"
237
+ "Credit Card %s","Credit Card %s"
238
+ "Credit Memo History","Credit Memo History"
239
+ "Credit Memo Totals","Credit Memo Totals"
240
+ "Credit Memos","Credit Memos"
241
+ "Credit memo #%s comment added","Credit memo #%s comment added"
242
+ "Credit memo #%s created","Credit memo #%s created"
243
+ "Credit memo\'s total must be positive.","Credit memo\'s total must be positive."
244
+ "Currency","Currency"
245
+ "Currency ""%s"" is used as %s in %s.","Currency ""%s"" is used as %s in %s."
246
+ "Currency Information","Currency Information"
247
+ "Currency Setup Section","Currency Setup Section"
248
+ "Current Configuration Scope:","Current Configuration Scope:"
249
+ "Current Month","Current Month"
250
+ "Custom","Custom"
251
+ "Custom Variable ""%s""","Custom Variable ""%s"""
252
+ "Custom Variables","Custom Variables"
253
+ "Customer","Customer"
254
+ "Customer Group:","Customer Group:"
255
+ "Customer Groups","Customer Groups"
256
+ "Customer Name","Customer Name"
257
+ "Customer Reviews","Customer Reviews"
258
+ "Customer Shopping Carts","Customer Shopping Carts"
259
+ "Customer Since:","Customer Since:"
260
+ "Customer Tax Classes","Customer Tax Classes"
261
+ "Customer with the same email already exists.","Customer with the same email already exists."
262
+ "Customers","Customers"
263
+ "Customers by Number of Orders","Customers by Number of Orders"
264
+ "Customers by Orders Total","Customers by Orders Total"
265
+ "DHTML Date/Time Selector","DHTML Date/Time Selector"
266
+ "Dashboard","Dashboard"
267
+ "Data Format","Data Format"
268
+ "Data transfer:","Data transfer:"
269
+ "Database","Database"
270
+ "Dataflow - Advanced Profiles","Dataflow - Advanced Profiles"
271
+ "Dataflow - Profiles","Dataflow - Profiles"
272
+ "Date","Date"
273
+ "Date & Time","Date & Time"
274
+ "Date Added","Date Added"
275
+ "Date Updated","Date Updated"
276
+ "Date selection:","Date selection:"
277
+ "Date selector","Date selector"
278
+ "Day","Day"
279
+ "Decimal separator:","Decimal separator:"
280
+ "Default (Admin) Values","Default (Admin) Values"
281
+ "Default Billing Address","Default Billing Address"
282
+ "Default Config","Default Config"
283
+ "Default Template from Locale","Default Template from Locale"
284
+ "Default Values","Default Values"
285
+ "Default display currency ""%s"" is not available in allowed currencies.","Default display currency ""%s"" is not available in allowed currencies."
286
+ "Default scope","Default scope"
287
+ "Delete","Delete"
288
+ "Delete %s","Delete %s"
289
+ "Delete %s '%s'","Delete %s '%s'"
290
+ "Delete File","Delete File"
291
+ "Delete Image","Delete Image"
292
+ "Delete Profile","Delete Profile"
293
+ "Delete Role","Delete Role"
294
+ "Delete Store","Delete Store"
295
+ "Delete Store View","Delete Store View"
296
+ "Delete Template","Delete Template"
297
+ "Delete User","Delete User"
298
+ "Delete Website","Delete Website"
299
+ "Description","Description"
300
+ "Design","Design"
301
+ "Design Section","Design Section"
302
+ "Details","Details"
303
+ "Developer Section","Developer Section"
304
+ "Direction:","Direction:"
305
+ "Disable","Disable"
306
+ "Disabled","Disabled"
307
+ "Display %s first","Display %s first"
308
+ "Display default currency","Display default currency"
309
+ "Distributed under GNU LGPL. See %s for details.","Distributed under GNU LGPL. See %s for details."
310
+ "Do you really want to KILL parallel process and start new indexing process?","Do you really want to KILL parallel process and start new indexing process?"
311
+ "Do you really want to proceed?","Do you really want to proceed?"
312
+ "Download","Download"
313
+ "Downloads","Downloads"
314
+ "Drag to move","Drag to move"
315
+ "Drop-down","Drop-down"
316
+ "Edit","Edit"
317
+ "Edit Design Change","Edit Design Change"
318
+ "Edit Email Template","Edit Email Template"
319
+ "Edit Order","Edit Order"
320
+ "Edit Poll","Edit Poll"
321
+ "Edit Queue","Edit Queue"
322
+ "Edit Review","Edit Review"
323
+ "Edit Role","Edit Role"
324
+ "Edit Store View","Edit Store View"
325
+ "Edit System Template","Edit System Template"
326
+ "Edit Template","Edit Template"
327
+ "Edit URL Rewrite","Edit URL Rewrite"
328
+ "Edit User","Edit User"
329
+ "Edit User '%s'","Edit User '%s'"
330
+ "Edit Website","Edit Website"
331
+ "Email","Email"
332
+ "Email Address:","Email Address:"
333
+ "Email Preview","Email Preview"
334
+ "Email to a Friend","Email to a Friend"
335
+ "Email:","Email:"
336
+ "Enable","Enable"
337
+ "Enabled","Enabled"
338
+ "Enclose Values In:","Enclose Values In:"
339
+ "Entity Attributes","Entity Attributes"
340
+ "Entity Type","Entity Type"
341
+ "Entity type:","Entity type:"
342
+ "Error","Error"
343
+ "Excel XML","Excel XML"
344
+ "Excl. Tax","Excl. Tax"
345
+ "Exclude media folder from backup","Exclude media folder from backup"
346
+ "Export","Export"
347
+ "Export CSV","Export CSV"
348
+ "Export Filters","Export Filters"
349
+ "Export to:","Export to:"
350
+ "Export:","Export:"
351
+ "FTP Host","FTP Host"
352
+ "FTP Host[:Port]","FTP Host[:Port]"
353
+ "FTP Login","FTP Login"
354
+ "FTP Password","FTP Password"
355
+ "FTP credentials","FTP credentials"
356
+ "Failed","Failed"
357
+ "Failed to add a product to cart by id ""%s"".","Failed to add a product to cart by id ""%s""."
358
+ "Failed to cancel the billing agreement.","Failed to cancel the billing agreement."
359
+ "Failed to clear the JavaScript/CSS cache.","Failed to clear the JavaScript/CSS cache."
360
+ "Failed to delete the billing agreement.","Failed to delete the billing agreement."
361
+ "Failed to update the profile.","Failed to update the profile."
362
+ "Field","Field"
363
+ "Field Mapping","Field Mapping"
364
+ "File","File"
365
+ "File Information","File Information"
366
+ "File System","File System"
367
+ "File mode","File mode"
368
+ "File name:","File name:"
369
+ "File size should be more than 0 bytes","File size should be more than 0 bytes"
370
+ "Finished profile execution.","Finished profile execution."
371
+ "First Invoice Created Date","First Invoice Created Date"
372
+ "First Name","First Name"
373
+ "First Name is required field.","First Name is required field."
374
+ "First Name:","First Name:"
375
+ "Fixed","Fixed"
376
+ "Flush Catalog Images Cache","Flush Catalog Images Cache"
377
+ "Flush JavaScript/CSS Cache","Flush JavaScript/CSS Cache"
378
+ "For category","For category"
379
+ "For latest version visit: %s","For latest version visit: %s"
380
+ "For product","For product"
381
+ "Forgot Admin Password","Forgot Admin Password"
382
+ "Forgot your password?","Forgot your password?"
383
+ "Forgot your user name or password?","Forgot your user name or password?"
384
+ "From","From"
385
+ "GLOBAL","GLOBAL"
386
+ "Gb","Gb"
387
+ "General Information","General Information"
388
+ "General Section","General Section"
389
+ "Get Image Base64","Get Image Base64"
390
+ "Get help for this page","Get help for this page"
391
+ "Give the verifier code to application administrator","Give the verifier code to application administrator"
392
+ "Global Attribute","Global Attribute"
393
+ "Global Record Search","Global Record Search"
394
+ "Global Search","Global Search"
395
+ "Go Today","Go Today"
396
+ "Go to messages inbox","Go to messages inbox"
397
+ "Go to notifications","Go to notifications"
398
+ "Google Base","Google Base"
399
+ "Google Sitemaps","Google Sitemaps"
400
+ "Grand Total","Grand Total"
401
+ "Grid (default) / List","Grid (default) / List"
402
+ "Grid Only","Grid Only"
403
+ "Group:","Group:"
404
+ "Guest","Guest"
405
+ "HTTP (unsecure)","HTTP (unsecure)"
406
+ "HTTPS (SSL)","HTTPS (SSL)"
407
+ "Help Us Keep Magento Healthy - Report All Bugs","Help Us Keep Magento Healthy - Report All Bugs"
408
+ "Helper attributes should not be used in custom layout updates.","Helper attributes should not be used in custom layout updates."
409
+ "Helper for options rendering doesn't implement required interface.","Helper for options rendering doesn't implement required interface."
410
+ "Home","Home"
411
+ "ID","ID"
412
+ "ID Path","ID Path"
413
+ "IP Address","IP Address"
414
+ "IPN (Instant Payment Notification) Only","IPN (Instant Payment Notification) Only"
415
+ "Id","Id"
416
+ "If there is an account associated with %s you will receive an email with a link to reset your password.","If there is an account associated with %s you will receive an email with a link to reset your password."
417
+ "If this message persists, please contact the store owner.","If this message persists, please contact the store owner."
418
+ "If you do not specify an option value for a specific store view then the default (Admin) value will be used.","If you do not specify an option value for a specific store view then the default (Admin) value will be used."
419
+ "Images (.gif, .jpg, .png)","Images (.gif, .jpg, .png)"
420
+ "Images Cache","Images Cache"
421
+ "Import","Import"
422
+ "Import Service","Import Service"
423
+ "Import and Export","Import and Export"
424
+ "Import and Export Tax Rates","Import and Export Tax Rates"
425
+ "Import/Export","Import/Export"
426
+ "Import/Export Advanced","Import/Export Advanced"
427
+ "Import/Export Profile","Import/Export Profile"
428
+ "Important: ","Important: "
429
+ "Imported <strong>%s</strong> records","Imported <strong>%s</strong> records"
430
+ "In","In"
431
+ "In Database:","In Database:"
432
+ "In File:","In File:"
433
+ "Inactive","Inactive"
434
+ "Incl. Tax","Incl. Tax"
435
+ "Incoming Message","Incoming Message"
436
+ "Insert Variable...","Insert Variable..."
437
+ "Interactive","Interactive"
438
+ "Interface Locale: %s","Interface Locale: %s"
439
+ "Invalid Form Key. Please refresh the page.","Invalid Form Key. Please refresh the page."
440
+ "Invalid Import Service Specified","Invalid Import Service Specified"
441
+ "Invalid POST data (please check post_max_size and upload_max_filesize settings in your php.ini file).","Invalid POST data (please check post_max_size and upload_max_filesize settings in your php.ini file)."
442
+ "Invalid Secret Key. Please refresh the page.","Invalid Secret Key. Please refresh the page."
443
+ "Invalid User Name or Password.","Invalid User Name or Password."
444
+ "Invalid directory: %s","Invalid directory: %s"
445
+ "Invalid email address ""%s"".","Invalid email address ""%s""."
446
+ "Invalid email address.","Invalid email address."
447
+ "Invalid file: %s","Invalid file: %s"
448
+ "Invalid input data for %s => %s rate","Invalid input data for %s => %s rate"
449
+ "Invalid parent block for this block","Invalid parent block for this block"
450
+ "Invalid parent block for this block.","Invalid parent block for this block."
451
+ "Invalid password reset token.","Invalid password reset token."
452
+ "Invalid sender name ""%s"". Please use only visible characters and spaces.","Invalid sender name ""%s"". Please use only visible characters and spaces."
453
+ "Invalid timezone","Invalid timezone"
454
+ "Invalidated","Invalidated"
455
+ "Inventory Stock Status","Inventory Stock Status"
456
+ "Invoice #%s comment added","Invoice #%s comment added"
457
+ "Invoice #%s created","Invoice #%s created"
458
+ "Invoice History","Invoice History"
459
+ "Invoice Totals","Invoice Totals"
460
+ "Invoice canceling error.","Invoice canceling error."
461
+ "Invoice capturing error.","Invoice capturing error."
462
+ "Invoice voiding error.","Invoice voiding error."
463
+ "Invoices","Invoices"
464
+ "Is Closed","Is Closed"
465
+ "Is Default","Is Default"
466
+ "Issue Number","Issue Number"
467
+ "Items","Items"
468
+ "JavaScript seems to be disabled in your browser.","JavaScript seems to be disabled in your browser."
469
+ "JavaScript/CSS","JavaScript/CSS"
470
+ "JavaScript/CSS Cache","JavaScript/CSS Cache"
471
+ "Kb","Kb"
472
+ "Last 24 Hours","Last 24 Hours"
473
+ "Last 5 Orders","Last 5 Orders"
474
+ "Last 5 Search Terms","Last 5 Search Terms"
475
+ "Last 7 Days","Last 7 Days"
476
+ "Last Credit Memo Created Date","Last Credit Memo Created Date"
477
+ "Last Invoice Created Date","Last Invoice Created Date"
478
+ "Last Logged In (%s):","Last Logged In (%s):"
479
+ "Last Logged In:","Last Logged In:"
480
+ "Last Name","Last Name"
481
+ "Last Name is required field.","Last Name is required field."
482
+ "Last Name:","Last Name:"
483
+ "Last updated: %s. To refresh last day\'s <a href=""%s"">statistics</a>, click <a href=""%s"">here</a>.","Last updated: %s. To refresh last day\'s <a href=""%s"">statistics</a>, click <a href=""%s"">here</a>."
484
+ "Latest Message:","Latest Message:"
485
+ "Layered Navigation Indices","Layered Navigation Indices"
486
+ "Layered Navigation Indices were refreshed.","Layered Navigation Indices were refreshed."
487
+ "Leave empty to use tax identifier","Leave empty to use tax identifier"
488
+ "Lifetime Sales","Lifetime Sales"
489
+ "Lifetime statistics have been updated.","Lifetime statistics have been updated."
490
+ "Links","Links"
491
+ "Links with associated products will retain only after saving current product.","Links with associated products will retain only after saving current product."
492
+ "List (default) / Grid","List (default) / Grid"
493
+ "List Only","List Only"
494
+ "Load Template","Load Template"
495
+ "Load default template","Load default template"
496
+ "Loading...","Loading..."
497
+ "Local Server","Local Server"
498
+ "Local/Remote Server","Local/Remote Server"
499
+ "Locale","Locale"
500
+ "Log In","Log In"
501
+ "Log Out","Log Out"
502
+ "Log in to Admin Panel","Log in to Admin Panel"
503
+ "Log in to use <strong>%s</strong>","Log in to use <strong>%s</strong>"
504
+ "Log into Magento Admin Page","Log into Magento Admin Page"
505
+ "Logged in as %s","Logged in as %s"
506
+ "Login","Login"
507
+ "Low Stock","Low Stock"
508
+ "MAJOR","MAJOR"
509
+ "MINOR","MINOR"
510
+ "MS Excel XML","MS Excel XML"
511
+ "Magento Admin","Magento Admin"
512
+ "Magento Commerce - Administrative Panel","Magento Commerce - Administrative Panel"
513
+ "Magento Connect","Magento Connect"
514
+ "Magento Connect Manager","Magento Connect Manager"
515
+ "Magento Logo","Magento Logo"
516
+ "Magento is a trademark of Magento Inc. Copyright &copy; %s Magento Inc.","Magento is a trademark of Magento Inc. Copyright &copy; %s Magento Inc."
517
+ "Magento root directory","Magento root directory"
518
+ "Magento ver. %s","Magento ver. %s"
519
+ "Magento&trade; is a trademark of Magento Inc.<br/>Copyright &copy; %s Magento Inc.","Magento&trade; is a trademark of Magento Inc.<br/>Copyright &copy; %s Magento Inc."
520
+ "Make sure that data encoding in the file is consistent and saved in one of supported encodings (UTF-8 or ANSI).","Make sure that data encoding in the file is consistent and saved in one of supported encodings (UTF-8 or ANSI)."
521
+ "Manage Attribute Sets","Manage Attribute Sets"
522
+ "Manage Attributes","Manage Attributes"
523
+ "Manage Categories","Manage Categories"
524
+ "Manage Content","Manage Content"
525
+ "Manage Currency Rates","Manage Currency Rates"
526
+ "Manage Customers","Manage Customers"
527
+ "Manage Options (values of your attribute)","Manage Options (values of your attribute)"
528
+ "Manage Ratings","Manage Ratings"
529
+ "Manage Stores","Manage Stores"
530
+ "Manage Tax Rules","Manage Tax Rules"
531
+ "Manage Tax Zones and Rates","Manage Tax Zones and Rates"
532
+ "Manage Titles (Size, Color, etc.)","Manage Titles (Size, Color, etc.)"
533
+ "Manual","Manual"
534
+ "Matched Expression","Matched Expression"
535
+ "Maximum sender name length is 255. Please correct your settings.","Maximum sender name length is 255. Please correct your settings."
536
+ "Mb","Mb"
537
+ "Media (.avi, .flv, .swf)","Media (.avi, .flv, .swf)"
538
+ "Media storages synchronization has completed!","Media storages synchronization has completed!"
539
+ "Messages Inbox","Messages Inbox"
540
+ "Month","Month"
541
+ "Most Viewed","Most Viewed"
542
+ "Most Viewed Products","Most Viewed Products"
543
+ "Multiple Select","Multiple Select"
544
+ "My Account","My Account"
545
+ "My Applications","My Applications"
546
+ "N/A","N/A"
547
+ "NOTICE","NOTICE"
548
+ "Name","Name"
549
+ "Name:","Name:"
550
+ "Never (production)","Never (production)"
551
+ "New ","New "
552
+ "New API Key","New API Key"
553
+ "New Accounts","New Accounts"
554
+ "New Attribute","New Attribute"
555
+ "New Block","New Block"
556
+ "New Category","New Category"
557
+ "New Class","New Class"
558
+ "New Condition","New Condition"
559
+ "New Custom Variable","New Custom Variable"
560
+ "New Customer","New Customer"
561
+ "New Customers","New Customers"
562
+ "New Design Change","New Design Change"
563
+ "New Email Template","New Email Template"
564
+ "New Group","New Group"
565
+ "New Invoice","New Invoice"
566
+ "New Item Type","New Item Type"
567
+ "New Memo","New Memo"
568
+ "New Memo for #%s","New Memo for #%s"
569
+ "New Page","New Page"
570
+ "New Password","New Password"
571
+ "New Poll","New Poll"
572
+ "New Profile","New Profile"
573
+ "New Rate","New Rate"
574
+ "New Rating","New Rating"
575
+ "New Review","New Review"
576
+ "New Role","New Role"
577
+ "New Rule","New Rule"
578
+ "New Search","New Search"
579
+ "New Set","New Set"
580
+ "New Shipment","New Shipment"
581
+ "New Sitemap","New Sitemap"
582
+ "New Store View","New Store View"
583
+ "New System Template","New System Template"
584
+ "New Tag","New Tag"
585
+ "New Template","New Template"
586
+ "New User","New User"
587
+ "New Variable","New Variable"
588
+ "New Website","New Website"
589
+ "New password field cannot be empty.","New password field cannot be empty."
590
+ "Newsletter","Newsletter"
591
+ "Newsletter Problems","Newsletter Problems"
592
+ "Newsletter Queue","Newsletter Queue"
593
+ "Newsletter Subscribers","Newsletter Subscribers"
594
+ "Newsletter Templates","Newsletter Templates"
595
+ "Next month (hold for menu)","Next month (hold for menu)"
596
+ "Next year (hold for menu)","Next year (hold for menu)"
597
+ "No","No"
598
+ "No (price without tax)","No (price without tax)"
599
+ "No Data Found","No Data Found"
600
+ "No Templates Found","No Templates Found"
601
+ "No change","No change"
602
+ "No customer id defined.","No customer id defined."
603
+ "No information available.","No information available."
604
+ "No profile loaded...","No profile loaded..."
605
+ "No records found for this period.","No records found for this period."
606
+ "No records found.","No records found."
607
+ "No report code specified.","No report code specified."
608
+ "No search keywords.","No search keywords."
609
+ "No search modules were registered","No search modules were registered"
610
+ "No wishlist item id defined.","No wishlist item id defined."
611
+ "None","None"
612
+ "Note:","Note:"
613
+ "Notes","Notes"
614
+ "Notifications","Notifications"
615
+ "Number of Orders","Number of Orders"
616
+ "Number of Uses","Number of Uses"
617
+ "Number of Views","Number of Views"
618
+ "Number of records:","Number of records:"
619
+ "OAuth Consumers","OAuth Consumers"
620
+ "OAuth authorization for admin","OAuth authorization for admin"
621
+ "OAuth authorization simple for admin","OAuth authorization simple for admin"
622
+ "OK","OK"
623
+ "Old rate:","Old rate:"
624
+ "Once you log into your PayPal Advanced account, navigate to the Service Settings - Hosted Checkout Pages - Set Up menu and set the options described below","Once you log into your PayPal Advanced account, navigate to the Service Settings - Hosted Checkout Pages - Set Up menu and set the options described below"
625
+ "Once you log into your PayPal Payflow Link account, navigate to the Service Settings - Hosted Checkout Pages - Set Up menu and set the options described below","Once you log into your PayPal Payflow Link account, navigate to the Service Settings - Hosted Checkout Pages - Set Up menu and set the options described below"
626
+ "One or more media files failed to be synchronized during the media storages syncronization process. Refer to the log file for details.","One or more media files failed to be synchronized during the media storages syncronization process. Refer to the log file for details."
627
+ "One or more of the Cache Types are invalidated:","One or more of the Cache Types are invalidated:"
628
+ "Online Customers","Online Customers"
629
+ "Only Once (version upgrade)","Only Once (version upgrade)"
630
+ "Only attributes with scope ""Global"", input type ""Dropdown"" and Use To Create Configurable Product ""Yes"" are available.","Only attributes with scope ""Global"", input type ""Dropdown"" and Use To Create Configurable Product ""Yes"" are available."
631
+ "Only mapped fields","Only mapped fields"
632
+ "Optional","Optional"
633
+ "Options","Options"
634
+ "Options is required","Options is required"
635
+ "Order","Order"
636
+ "Order #%s","Order #%s"
637
+ "Order #%s (%s)","Order #%s (%s)"
638
+ "Order Created Date","Order Created Date"
639
+ "Order ID","Order ID"
640
+ "Order Totals","Order Totals"
641
+ "Order Updated Date","Order Updated Date"
642
+ "Order Updated Date report is real-time, does not need statistics refreshing.","Order Updated Date report is real-time, does not need statistics refreshing."
643
+ "Orders","Orders"
644
+ "Original Magento attribute names in first row:","Original Magento attribute names in first row:"
645
+ "Out of stock","Out of stock"
646
+ "PDT (Payment Data Transfer) Only","PDT (Payment Data Transfer) Only"
647
+ "Package Extensions","Package Extensions"
648
+ "Pages","Pages"
649
+ "Parent Product Thumbnail","Parent Product Thumbnail"
650
+ "Parent Transaction ID","Parent Transaction ID"
651
+ "Passive mode","Passive mode"
652
+ "Password","Password"
653
+ "Password Confirmation","Password Confirmation"
654
+ "Password confirmation must be same as password.","Password confirmation must be same as password."
655
+ "Password must be at least of %d characters.","Password must be at least of %d characters."
656
+ "Password must include both numeric and alphabetic characters.","Password must include both numeric and alphabetic characters."
657
+ "Password:","Password:"
658
+ "Path:","Path:"
659
+ "Payment method instance is not available.","Payment method instance is not available."
660
+ "Payment method is not available.","Payment method is not available."
661
+ "Payment method must be specified.","Payment method must be specified."
662
+ "Pending Reviews","Pending Reviews"
663
+ "Pending Tags","Pending Tags"
664
+ "Per Item","Per Item"
665
+ "Per Order","Per Order"
666
+ "Percent","Percent"
667
+ "Performed At","Performed At"
668
+ "Period","Period"
669
+ "Permanent (301)","Permanent (301)"
670
+ "Permissions","Permissions"
671
+ "Personal Information","Personal Information"
672
+ "Phone:","Phone:"
673
+ "Please Select","Please Select"
674
+ "Please confirm site switching. All data that hasn\'t been saved will be lost.","Please confirm site switching. All data that hasn\'t been saved will be lost."
675
+ "Please enter 6 or more characters.","Please enter 6 or more characters."
676
+ "Please enter a number greater than 0 in this field.","Please enter a number greater than 0 in this field."
677
+ "Please enter a valid $ amount. For example $100.00.","Please enter a valid $ amount. For example $100.00."
678
+ "Please enter a valid URL. For example http://www.example.com or www.example.com","Please enter a valid URL. For example http://www.example.com or www.example.com"
679
+ "Please enter a valid URL. http:// is required","Please enter a valid URL. http:// is required"
680
+ "Please enter a valid credit card number.","Please enter a valid credit card number."
681
+ "Please enter a valid date.","Please enter a valid date."
682
+ "Please enter a valid email address. For example johndoe@domain.com.","Please enter a valid email address. For example johndoe@domain.com."
683
+ "Please enter a valid email.","Please enter a valid email."
684
+ "Please enter a valid number in this field.","Please enter a valid number in this field."
685
+ "Please enter a valid phone number. For example (123) 456-7890 or 123-456-7890.","Please enter a valid phone number. For example (123) 456-7890 or 123-456-7890."
686
+ "Please enter a valid social security number. For example 123-45-6789.","Please enter a valid social security number. For example 123-45-6789."
687
+ "Please enter a valid value from list","Please enter a valid value from list"
688
+ "Please enter a valid value, ex: 10,20,30","Please enter a valid value, ex: 10,20,30"
689
+ "Please enter a valid zip code.","Please enter a valid zip code."
690
+ "Please enter a valid zip code. For example 90602 or 90602-1234.","Please enter a valid zip code. For example 90602 or 90602-1234."
691
+ "Please enter another credit card number to complete your purchase.","Please enter another credit card number to complete your purchase."
692
+ "Please enter password","Please enter password"
693
+ "Please enter password to confirm rollback.","Please enter password to confirm rollback."
694
+ "Please enter valid password.","Please enter valid password."
695
+ "Please make sure that all global admin search modules are installed and activated.","Please make sure that all global admin search modules are installed and activated."
696
+ "Please make sure that your changes were saved before running the profile.","Please make sure that your changes were saved before running the profile."
697
+ "Please make sure your passwords match.","Please make sure your passwords match."
698
+ "Please select State/Province.","Please select State/Province."
699
+ "Please select a customer.","Please select a customer."
700
+ "Please select a store.","Please select a store."
701
+ "Please select an option.","Please select an option."
702
+ "Please select catalog searches.","Please select catalog searches."
703
+ "Please select customer(s).","Please select customer(s)."
704
+ "Please select message(s).","Please select message(s)."
705
+ "Please select one of the above options.","Please select one of the above options."
706
+ "Please select one of the options.","Please select one of the options."
707
+ "Please select review(s).","Please select review(s)."
708
+ "Please select tag(s).","Please select tag(s)."
709
+ "Please specify backup creation options","Please specify backup creation options"
710
+ "Please specify the admin custom URL.","Please specify the admin custom URL."
711
+ "Please try to logout and sign in again.","Please try to logout and sign in again."
712
+ "Please type the letters from the image:","Please type the letters from the image:"
713
+ "Please use in this field only ""a-z,0-9,_"".","Please use in this field only ""a-z,0-9,_""."
714
+ "Please use letters only (a-z) in this field.","Please use letters only (a-z) in this field."
715
+ "Please use numbers only in this field. Please avoid spaces or other characters such as dots or commas.","Please use numbers only in this field. Please avoid spaces or other characters such as dots or commas."
716
+ "Please use only letters (a-z or A-Z), numbers (0-9) or spaces in this field.","Please use only letters (a-z or A-Z), numbers (0-9) or spaces in this field."
717
+ "Please use only letters (a-z) or numbers (0-9) only in this field. No spaces or other characters are allowed.","Please use only letters (a-z) or numbers (0-9) only in this field. No spaces or other characters are allowed."
718
+ "Please use only letters (a-z) or numbers (0-9) or spaces and # only in this field.","Please use only letters (a-z) or numbers (0-9) or spaces and # only in this field."
719
+ "Please use this date format: dd/mm/yyyy. For example 17/03/2006 for the 17th of March, 2006.","Please use this date format: dd/mm/yyyy. For example 17/03/2006 for the 17th of March, 2006."
720
+ "Please wait while the indexes are being refreshed.","Please wait while the indexes are being refreshed."
721
+ "Please wait, loading...","Please wait, loading..."
722
+ "Please wait...","Please wait..."
723
+ "Please, add some answers to this poll first.","Please, add some answers to this poll first."
724
+ "Please, select ""Visible in Stores"" for this poll first.","Please, select ""Visible in Stores"" for this poll first."
725
+ "Poll Manager","Poll Manager"
726
+ "Polls","Polls"
727
+ "Popular","Popular"
728
+ "Position","Position"
729
+ "Position of Watermark for %s","Position of Watermark for %s"
730
+ "Pregenerated product images files.","Pregenerated product images files."
731
+ "Prev. month (hold for menu)","Prev. month (hold for menu)"
732
+ "Prev. year (hold for menu)","Prev. year (hold for menu)"
733
+ "Preview","Preview"
734
+ "Preview Template","Preview Template"
735
+ "Price","Price"
736
+ "Price alert subscription was saved.","Price alert subscription was saved."
737
+ "Price:","Price:"
738
+ "Processed <strong>%s%% %s/%d</strong> records","Processed <strong>%s%% %s/%d</strong> records"
739
+ "Product","Product"
740
+ "Product Name","Product Name"
741
+ "Product Reviews","Product Reviews"
742
+ "Product Tax Classes","Product Tax Classes"
743
+ "Product Thumbnail Itself","Product Thumbnail Itself"
744
+ "Product is not loaded.","Product is not loaded."
745
+ "Product:","Product:"
746
+ "Products","Products"
747
+ "Products Bestsellers Report","Products Bestsellers Report"
748
+ "Products Most Viewed Report","Products Most Viewed Report"
749
+ "Products Ordered","Products Ordered"
750
+ "Products in Carts","Products in Carts"
751
+ "Profile Action","Profile Action"
752
+ "Profile Actions XML","Profile Actions XML"
753
+ "Profile Direction","Profile Direction"
754
+ "Profile History","Profile History"
755
+ "Profile Information","Profile Information"
756
+ "Profile Name","Profile Name"
757
+ "Profile Payments","Profile Payments"
758
+ "Profile Schedule","Profile Schedule"
759
+ "Profile Wizard","Profile Wizard"
760
+ "Profiles","Profiles"
761
+ "Promo","Promo"
762
+ "Promotions","Promotions"
763
+ "Purchased Item","Purchased Item"
764
+ "Put store on the maintenance mode while backup creation","Put store on the maintenance mode while backup creation"
765
+ "Put store on the maintenance mode while rollback processing","Put store on the maintenance mode while rollback processing"
766
+ "Quantity","Quantity"
767
+ "Queue Refresh","Queue Refresh"
768
+ "Queued... Cancel","Queued... Cancel"
769
+ "REST Roles","REST Roles"
770
+ "Radio Buttons","Radio Buttons"
771
+ "Rates","Rates"
772
+ "Read details","Read details"
773
+ "Rebuild","Rebuild"
774
+ "Rebuild Catalog Index","Rebuild Catalog Index"
775
+ "Rebuild Flat Catalog Category","Rebuild Flat Catalog Category"
776
+ "Rebuild Flat Catalog Product","Rebuild Flat Catalog Product"
777
+ "Recent Orders","Recent Orders"
778
+ "Recent statistics have been updated.","Recent statistics have been updated."
779
+ "Recurring Profile View","Recurring Profile View"
780
+ "Recursive Dir","Recursive Dir"
781
+ "Redirect","Redirect"
782
+ "Reference","Reference"
783
+ "Reference ID","Reference ID"
784
+ "Refresh","Refresh"
785
+ "Refresh Now*","Refresh Now*"
786
+ "Refresh Statistics","Refresh Statistics"
787
+ "Region/State","Region/State"
788
+ "Regular Price:","Regular Price:"
789
+ "Reject","Reject"
790
+ "Reject token authorization Pop Up for admin","Reject token authorization Pop Up for admin"
791
+ "Reject token authorization for admin","Reject token authorization for admin"
792
+ "Rejection Of Authorization","Rejection Of Authorization"
793
+ "Release","Release"
794
+ "Release Stability","Release Stability"
795
+ "Release Version","Release Version"
796
+ "Reload captcha","Reload captcha"
797
+ "Remote FTP","Remote FTP"
798
+ "Remove","Remove"
799
+ "Reports","Reports"
800
+ "Request Path","Request Path"
801
+ "Required","Required"
802
+ "Reset","Reset"
803
+ "Reset Filter","Reset Filter"
804
+ "Reset Password","Reset Password"
805
+ "Reset a Password","Reset a Password"
806
+ "Resize","Resize"
807
+ "Resource Access","Resource Access"
808
+ "Resources","Resources"
809
+ "Results","Results"
810
+ "Retrieve Password","Retrieve Password"
811
+ "Return Html Version","Return Html Version"
812
+ "Revenue","Revenue"
813
+ "Reviews","Reviews"
814
+ "Reviews and Ratings","Reviews and Ratings"
815
+ "Rewrite Rules","Rewrite Rules"
816
+ "Role ID","Role ID"
817
+ "Role Info","Role Info"
818
+ "Role Information","Role Information"
819
+ "Role Name","Role Name"
820
+ "Role Resources","Role Resources"
821
+ "Role Users","Role Users"
822
+ "Roles","Roles"
823
+ "Roles Resources","Roles Resources"
824
+ "Root Category","Root Category"
825
+ "Rotate CCW","Rotate CCW"
826
+ "Rotate CW","Rotate CW"
827
+ "Run","Run"
828
+ "Run Profile","Run Profile"
829
+ "Run Profile Inside This Window","Run Profile Inside This Window"
830
+ "Run Profile in Popup","Run Profile in Popup"
831
+ "Running... Kill","Running... Kill"
832
+ "SKU","SKU"
833
+ "SKU:","SKU:"
834
+ "SSL Error: Invalid or self-signed certificate","SSL Error: Invalid or self-signed certificate"
835
+ "Sales","Sales"
836
+ "Sales Report","Sales Report"
837
+ "Samples","Samples"
838
+ "Save","Save"
839
+ "Save & Generate","Save & Generate"
840
+ "Save Account","Save Account"
841
+ "Save Cache Settings","Save Cache Settings"
842
+ "Save Config","Save Config"
843
+ "Save Currency Rates","Save Currency Rates"
844
+ "Save Profile","Save Profile"
845
+ "Save Role","Save Role"
846
+ "Save Template","Save Template"
847
+ "Save User","Save User"
848
+ "Save and Continue Edit","Save and Continue Edit"
849
+ "Search","Search"
850
+ "Search Index","Search Index"
851
+ "Search Term","Search Term"
852
+ "Search Terms","Search Terms"
853
+ "Select","Select"
854
+ "Select All","Select All"
855
+ "Select Category","Select Category"
856
+ "Select Date","Select Date"
857
+ "Select Range","Select Range"
858
+ "Select date","Select date"
859
+ "Selected allowed currency ""%s"" is not available in installed currencies.","Selected allowed currency ""%s"" is not available in installed currencies."
860
+ "Selected base currency is not available in installed currencies.","Selected base currency is not available in installed currencies."
861
+ "Selected default display currency is not available in allowed currencies.","Selected default display currency is not available in allowed currencies."
862
+ "Selected default display currency is not available in installed currencies.","Selected default display currency is not available in installed currencies."
863
+ "Self-assigned roles cannot be deleted.","Self-assigned roles cannot be deleted."
864
+ "Sender","Sender"
865
+ "Separate Email","Separate Email"
866
+ "Shipment #%s comment added","Shipment #%s comment added"
867
+ "Shipment #%s created","Shipment #%s created"
868
+ "Shipment Comments","Shipment Comments"
869
+ "Shipment History","Shipment History"
870
+ "Shipments","Shipments"
871
+ "Shipping","Shipping"
872
+ "Shipping Address","Shipping Address"
873
+ "Shipping Address: ","Shipping Address: "
874
+ "Shipping Origin","Shipping Origin"
875
+ "Shipping Price","Shipping Price"
876
+ "Shipping address selection is not applicable","Shipping address selection is not applicable"
877
+ "Shipping method must be specified.","Shipping method must be specified."
878
+ "Shipping method selection is not applicable","Shipping method selection is not applicable"
879
+ "Shopping Cart","Shopping Cart"
880
+ "Shopping Cart Price Rules","Shopping Cart Price Rules"
881
+ "Shopping Cart from %s","Shopping Cart from %s"
882
+ "Show By","Show By"
883
+ "Show Report For:","Show Report For:"
884
+ "Show Reviews","Show Reviews"
885
+ "Sitemap Information","Sitemap Information"
886
+ "Size for %s","Size for %s"
887
+ "Skip Category Selection","Skip Category Selection"
888
+ "Some items in this order have different invoice and shipment types. You can create shipment only after the invoice is created.","Some items in this order have different invoice and shipment types. You can create shipment only after the invoice is created."
889
+ "Some of the ordered items do not exist in the catalog anymore and will be removed if you try to edit the order.","Some of the ordered items do not exist in the catalog anymore and will be removed if you try to edit the order."
890
+ "Sorry, this feature is coming soon...","Sorry, this feature is coming soon..."
891
+ "Special Price:","Special Price:"
892
+ "Specific Countries","Specific Countries"
893
+ "Specified","Specified"
894
+ "Specified profile does not exist.","Specified profile does not exist."
895
+ "Spreadsheet Name:","Spreadsheet Name:"
896
+ "Start Date","Start Date"
897
+ "Starting profile execution, please wait...","Starting profile execution, please wait..."
898
+ "State/Province:","State/Province:"
899
+ "Static Blocks","Static Blocks"
900
+ "Status","Status"
901
+ "Status:","Status:"
902
+ "Stock Quantity:","Stock Quantity:"
903
+ "Stock notification was saved.","Stock notification was saved."
904
+ "Store","Store"
905
+ "Store Email Addresses Section","Store Email Addresses Section"
906
+ "Store View","Store View"
907
+ "Store:","Store:"
908
+ "Stores","Stores"
909
+ "Subject","Subject"
910
+ "Submit","Submit"
911
+ "Subpackage cannot be conflicting.","Subpackage cannot be conflicting."
912
+ "Subtotal","Subtotal"
913
+ "Switch/Solo/Maestro Only","Switch/Solo/Maestro Only"
914
+ "Symbol","Symbol"
915
+ "Synchronization is required.","Synchronization is required."
916
+ "Synchronization of media storages has been successfully completed.","Synchronization of media storages has been successfully completed."
917
+ "Synchronize","Synchronize"
918
+ "Synchronizing %s to %s","Synchronizing %s to %s"
919
+ "Synchronizing...","Synchronizing..."
920
+ "System","System"
921
+ "System Section","System Section"
922
+ "System busy","System busy"
923
+ "Tags","Tags"
924
+ "Target Path","Target Path"
925
+ "Tax","Tax"
926
+ "Tb","Tb"
927
+ "Template","Template"
928
+ "Template Content","Template Content"
929
+ "Template Information","Template Information"
930
+ "Template Name","Template Name"
931
+ "Template Styles","Template Styles"
932
+ "Template Subject","Template Subject"
933
+ "Template Type","Template Type"
934
+ "Temporary (302)","Temporary (302)"
935
+ "Terms and Conditions","Terms and Conditions"
936
+ "Text","Text"
937
+ "The Catalog Rewrites were refreshed.","The Catalog Rewrites were refreshed."
938
+ "The CatalogInventory Stock Status has been rebuilt.","The CatalogInventory Stock Status has been rebuilt."
939
+ "The Comment Text field cannot be empty.","The Comment Text field cannot be empty."
940
+ "The Flat Catalog Product was rebuilt","The Flat Catalog Product was rebuilt"
941
+ "The JavaScript/CSS cache has been cleaned.","The JavaScript/CSS cache has been cleaned."
942
+ "The JavaScript/CSS cache has been cleared.","The JavaScript/CSS cache has been cleared."
943
+ "The Layered Navigation indexing has been queued.","The Layered Navigation indexing has been queued."
944
+ "The Layered Navigation indexing queue has been canceled.","The Layered Navigation indexing queue has been canceled."
945
+ "The Layered Navigation indices were refreshed.","The Layered Navigation indices were refreshed."
946
+ "The Layered Navigation process has been queued to be killed.","The Layered Navigation process has been queued to be killed."
947
+ "The Magento cache storage has been flushed.","The Magento cache storage has been flushed."
948
+ "The URL Rewrite has been deleted.","The URL Rewrite has been deleted."
949
+ "The URL Rewrite has been saved.","The URL Rewrite has been saved."
950
+ "The account has been saved.","The account has been saved."
951
+ "The archive can be uncompressed with <a href=""%s"">%s</a> on Windows systems","The archive can be uncompressed with <a href=""%s"">%s</a> on Windows systems"
952
+ "The attribute set has been removed.","The attribute set has been removed."
953
+ "The backup's creation process will take time.","The backup's creation process will take time."
954
+ "The billing agreement has been canceled.","The billing agreement has been canceled."
955
+ "The billing agreement has been deleted.","The billing agreement has been deleted."
956
+ "The cache storage has been flushed.","The cache storage has been flushed."
957
+ "The carrier needs to be specified.","The carrier needs to be specified."
958
+ "The catalog index has been rebuilt.","The catalog index has been rebuilt."
959
+ "The catalog rewrites have been refreshed.","The catalog rewrites have been refreshed."
960
+ "The configuration has been saved.","The configuration has been saved."
961
+ "The credit memo has been canceled.","The credit memo has been canceled."
962
+ "The credit memo has been created.","The credit memo has been created."
963
+ "The credit memo has been voided.","The credit memo has been voided."
964
+ "The custom variable has been deleted.","The custom variable has been deleted."
965
+ "The custom variable has been saved.","The custom variable has been saved."
966
+ "The customer has been deleted.","The customer has been deleted."
967
+ "The customer has been saved.","The customer has been saved."
968
+ "The design change has been deleted.","The design change has been deleted."
969
+ "The design change has been saved.","The design change has been saved."
970
+ "The email address is empty.","The email address is empty."
971
+ "The email template has been deleted.","The email template has been deleted."
972
+ "The email template has been saved.","The email template has been saved."
973
+ "The flat catalog category has been rebuilt.","The flat catalog category has been rebuilt."
974
+ "The group node name must be specified with field node name.","The group node name must be specified with field node name."
975
+ "The image cache was cleaned.","The image cache was cleaned."
976
+ "The image cache was cleared.","The image cache was cleared."
977
+ "The invoice and shipment have been created.","The invoice and shipment have been created."
978
+ "The invoice and the shipment have been created. The shipping label cannot be created at the moment.","The invoice and the shipment have been created. The shipping label cannot be created at the moment."
979
+ "The invoice has been canceled.","The invoice has been canceled."
980
+ "The invoice has been captured.","The invoice has been captured."
981
+ "The invoice has been created.","The invoice has been created."
982
+ "The invoice has been voided.","The invoice has been voided."
983
+ "The invoice no longer exists.","The invoice no longer exists."
984
+ "The item %s (SKU %s) does not exist in the catalog anymore.","The item %s (SKU %s) does not exist in the catalog anymore."
985
+ "The order does not allow creating an invoice.","The order does not allow creating an invoice."
986
+ "The order no longer exists.","The order no longer exists."
987
+ "The poll has been deleted.","The poll has been deleted."
988
+ "The poll has been saved.","The poll has been saved."
989
+ "The profile has been deleted.","The profile has been deleted."
990
+ "The profile has been saved.","The profile has been saved."
991
+ "The profile has been updated.","The profile has been updated."
992
+ "The profile has no changes.","The profile has no changes."
993
+ "The profile you are trying to save no longer exists","The profile you are trying to save no longer exists"
994
+ "The rating has been deleted.","The rating has been deleted."
995
+ "The rating has been saved.","The rating has been saved."
996
+ "The role has been deleted.","The role has been deleted."
997
+ "The role has been saved.","The role has been saved."
998
+ "The role has been successfully saved.","The role has been successfully saved."
999
+ "The search index has been rebuilt.","The search index has been rebuilt."
1000
+ "The shipment has been created.","The shipment has been created."
1001
+ "The shipment has been sent.","The shipment has been sent."
1002
+ "The shipping label has been created.","The shipping label has been created."
1003
+ "The tag has been deleted.","The tag has been deleted."
1004
+ "The tag has been saved.","The tag has been saved."
1005
+ "The transaction details have been updated.","The transaction details have been updated."
1006
+ "The user has been deleted.","The user has been deleted."
1007
+ "The user has been saved.","The user has been saved."
1008
+ "Themes JavaScript and CSS files combined to one file.","Themes JavaScript and CSS files combined to one file."
1009
+ "There is an error in one of the option rows.","There is an error in one of the option rows."
1010
+ "This Account is","This Account is"
1011
+ "This Email template no longer exists.","This Email template no longer exists."
1012
+ "This Role no longer exists","This Role no longer exists"
1013
+ "This Role no longer exists.","This Role no longer exists."
1014
+ "This account is","This account is"
1015
+ "This account is inactive.","This account is inactive."
1016
+ "This action cannot be undone.","This action cannot be undone."
1017
+ "This attribute set does not have attributes which we can use for configurable product","This attribute set does not have attributes which we can use for configurable product"
1018
+ "This attribute shares the same value in all the stores","This attribute shares the same value in all the stores"
1019
+ "This is a demo store. Any orders placed through this store will not be honored or fulfilled.","This is a demo store. Any orders placed through this store will not be honored or fulfilled."
1020
+ "This is a required field.","This is a required field."
1021
+ "This product is currently disabled.","This product is currently disabled."
1022
+ "This report depends on timezone configuration. Once timezone is changed, the lifetime statistics need to be refreshed.","This report depends on timezone configuration. Once timezone is changed, the lifetime statistics need to be refreshed."
1023
+ "This section is not allowed.","This section is not allowed."
1024
+ "This user no longer exists.","This user no longer exists."
1025
+ "Time","Time"
1026
+ "Time selection:","Time selection:"
1027
+ "Time:","Time:"
1028
+ "Timeout limit for response from synchronize process was reached.","Timeout limit for response from synchronize process was reached."
1029
+ "To","To"
1030
+ "To cancel pending authorizations and release amounts that have already been processed during this payment, click Cancel.","To cancel pending authorizations and release amounts that have already been processed during this payment, click Cancel."
1031
+ "To use PayPal Payflow Link, you must configure your PayPal Payflow Link account on the PayPal website.","To use PayPal Payflow Link, you must configure your PayPal Payflow Link account on the PayPal website."
1032
+ "To use PayPal Payments Advanced, you must configure your PayPal Payments Advanced account on the PayPal website.","To use PayPal Payments Advanced, you must configure your PayPal Payments Advanced account on the PayPal website."
1033
+ "Toggle Editor","Toggle Editor"
1034
+ "Tools","Tools"
1035
+ "Top 5 Search Terms","Top 5 Search Terms"
1036
+ "Total","Total"
1037
+ "Total Invoiced","Total Invoiced"
1038
+ "Total Order Amount","Total Order Amount"
1039
+ "Total Refunded","Total Refunded"
1040
+ "Total of %d record(s) have been deleted.","Total of %d record(s) have been deleted."
1041
+ "Total of %d record(s) have been updated.","Total of %d record(s) have been updated."
1042
+ "Total of %d record(s) were canceled.","Total of %d record(s) were canceled."
1043
+ "Total of %d record(s) were deleted","Total of %d record(s) were deleted"
1044
+ "Total of %d record(s) were deleted.","Total of %d record(s) were deleted."
1045
+ "Total of %d record(s) were updated","Total of %d record(s) were updated"
1046
+ "Total of %d record(s) were updated.","Total of %d record(s) were updated."
1047
+ "Track Order","Track Order"
1048
+ "Track this shipment","Track this shipment"
1049
+ "Tracking number %s for %s assigned","Tracking number %s for %s assigned"
1050
+ "Tracking number cannot be empty.","Tracking number cannot be empty."
1051
+ "Transaction Data","Transaction Data"
1052
+ "Transaction Details","Transaction Details"
1053
+ "Transaction ID","Transaction ID"
1054
+ "Transaction Type","Transaction Type"
1055
+ "Transactional Emails","Transactional Emails"
1056
+ "Transactions","Transactions"
1057
+ "Try Magento Go for Free","Try Magento Go for Free"
1058
+ "Type","Type"
1059
+ "Type:","Type:"
1060
+ "URL Rewrite","URL Rewrite"
1061
+ "URL Rewrite Information","URL Rewrite Information"
1062
+ "URL Rewrite Management","URL Rewrite Management"
1063
+ "Unable to cancel the credit memo.","Unable to cancel the credit memo."
1064
+ "Unable to find a Email Template to delete.","Unable to find a Email Template to delete."
1065
+ "Unable to find a poll to delete.","Unable to find a poll to delete."
1066
+ "Unable to find a tag to delete.","Unable to find a tag to delete."
1067
+ "Unable to find a user to delete.","Unable to find a user to delete."
1068
+ "Unable to initialize import model","Unable to initialize import model"
1069
+ "Unable to refresh lifetime statistics.","Unable to refresh lifetime statistics."
1070
+ "Unable to refresh recent statistics.","Unable to refresh recent statistics."
1071
+ "Unable to save the cron expression.","Unable to save the cron expression."
1072
+ "Unable to save the invoice.","Unable to save the invoice."
1073
+ "Unable to send the invoice email.","Unable to send the invoice email."
1074
+ "Unable to send the shipment email.","Unable to send the shipment email."
1075
+ "Unable to update transaction details.","Unable to update transaction details."
1076
+ "Unable to void the credit memo.","Unable to void the credit memo."
1077
+ "Unknown","Unknown"
1078
+ "Unlimited","Unlimited"
1079
+ "Update","Update"
1080
+ "Updated At","Updated At"
1081
+ "Upload File","Upload File"
1082
+ "Upload Files","Upload Files"
1083
+ "Upload HTTP Error","Upload HTTP Error"
1084
+ "Upload I/O Error","Upload I/O Error"
1085
+ "Upload Security Error","Upload Security Error"
1086
+ "Upload import file","Upload import file"
1087
+ "Uploaded file is larger than %.2f kilobytes allowed by server","Uploaded file is larger than %.2f kilobytes allowed by server"
1088
+ "Use All Available Attributes","Use All Available Attributes"
1089
+ "Use Config Settings","Use Config Settings"
1090
+ "Use Default","Use Default"
1091
+ "Use Default Value","Use Default Value"
1092
+ "Use Default Variable Values","Use Default Variable Values"
1093
+ "Use FTP Connection","Use FTP Connection"
1094
+ "Use Website","Use Website"
1095
+ "Used Currently For","Used Currently For"
1096
+ "Used as Default For","Used as Default For"
1097
+ "User Email","User Email"
1098
+ "User ID","User ID"
1099
+ "User Info","User Info"
1100
+ "User Information","User Information"
1101
+ "User Name","User Name"
1102
+ "User Name is required field.","User Name is required field."
1103
+ "User Name:","User Name:"
1104
+ "User Password","User Password"
1105
+ "User Role","User Role"
1106
+ "User Roles","User Roles"
1107
+ "User Roles Information","User Roles Information"
1108
+ "User Type Resources","User Type Resources"
1109
+ "User name","User name"
1110
+ "Users","Users"
1111
+ "VAT Number is Invalid","VAT Number is Invalid"
1112
+ "VAT Number is Valid","VAT Number is Valid"
1113
+ "Validation Results","Validation Results"
1114
+ "Value","Value"
1115
+ "Value Delimiter:","Value Delimiter:"
1116
+ "Variable","Variable"
1117
+ "Variable Code","Variable Code"
1118
+ "Variable HTML Value","Variable HTML Value"
1119
+ "Variable ID","Variable ID"
1120
+ "Variable Name","Variable Name"
1121
+ "Variable Plain Value","Variable Plain Value"
1122
+ "Verifier code: %s","Verifier code: %s"
1123
+ "View Actions XML","View Actions XML"
1124
+ "View Full Size","View Full Size"
1125
+ "View Memo","View Memo"
1126
+ "View Memo for #%s","View Memo for #%s"
1127
+ "View Shipment","View Shipment"
1128
+ "View Statistics For:","View Statistics For:"
1129
+ "Visibility:","Visibility:"
1130
+ "Warning","Warning"
1131
+ "Warning! Empty value can cause problems with CSV format.","Warning! Empty value can cause problems with CSV format."
1132
+ "Warning!\r\nThis action will remove this user from already assigned role\r\nAre you sure?","Warning!\r\nThis action will remove this user from already assigned role\r\nAre you sure?"
1133
+ "Warning!\r\nThis action will remove those users from already assigned roles\r\nAre you sure?","Warning!\r\nThis action will remove those users from already assigned roles\r\nAre you sure?"
1134
+ "Warning: Please do not close the window during importing/exporting data","Warning: Please do not close the window during importing/exporting data"
1135
+ "Watermark File for %s","Watermark File for %s"
1136
+ "We appreciate our merchants\' feedback, please <a href=""#"" onclick=""surveyAction(\'yes\'); return false;"">take our survey</a> to provide insight on the features you would like included in Magento. <a href=""#"" onclick=""surveyAction(\'no\'); return false;"">Remove this notification</a>","We appreciate our merchants\' feedback, please <a href=""#"" onclick=""surveyAction(\'yes\'); return false;"">take our survey</a> to provide insight on the features you would like included in Magento. <a href=""#"" onclick=""surveyAction(\'no\'); return false;"">Remove this notification</a>"
1137
+ "We\'re in our typing table, coding away more features for Magento. Thank you for your patience.","We\'re in our typing table, coding away more features for Magento. Thank you for your patience."
1138
+ "Web Section","Web Section"
1139
+ "Web Services","Web Services"
1140
+ "Web services","Web services"
1141
+ "Website","Website"
1142
+ "What is this?","What is this?"
1143
+ "Wishlist Report","Wishlist Report"
1144
+ "Wishlist item is not loaded.","Wishlist item is not loaded."
1145
+ "Wrong account specified.","Wrong account specified."
1146
+ "Wrong billing agreement ID specified.","Wrong billing agreement ID specified."
1147
+ "Wrong column format.","Wrong column format."
1148
+ "Wrong newsletter template.","Wrong newsletter template."
1149
+ "Wrong quote item.","Wrong quote item."
1150
+ "Wrong tab configuration.","Wrong tab configuration."
1151
+ "Wrong tag was specified.","Wrong tag was specified."
1152
+ "Wrong transaction ID specified.","Wrong transaction ID specified."
1153
+ "XML","XML"
1154
+ "XML data is invalid.","XML data is invalid."
1155
+ "XML object is not instance of ""Varien_Simplexml_Element"".","XML object is not instance of ""Varien_Simplexml_Element""."
1156
+ "YTD","YTD"
1157
+ "Year","Year"
1158
+ "Yes","Yes"
1159
+ "Yes (301 Moved Permanently)","Yes (301 Moved Permanently)"
1160
+ "Yes (302 Found)","Yes (302 Found)"
1161
+ "Yes (only price with tax)","Yes (only price with tax)"
1162
+ "You cannot delete your own account.","You cannot delete your own account."
1163
+ "You have %s unread message(s).","You have %s unread message(s)."
1164
+ "You have %s unread message(s). <a href=""%s"">Go to messages inbox</a>.","You have %s unread message(s). <a href=""%s"">Go to messages inbox</a>."
1165
+ "You have %s, %s and %s unread messages. <a href=""%s"">Go to messages inbox</a>.","You have %s, %s and %s unread messages. <a href=""%s"">Go to messages inbox</a>."
1166
+ "You have logged out.","You have logged out."
1167
+ "You have not enough permissions to use this functionality.","You have not enough permissions to use this functionality."
1168
+ "You must have JavaScript enabled in your browser to utilize the functionality of this website.","You must have JavaScript enabled in your browser to utilize the functionality of this website."
1169
+ "You need to specify order items.","You need to specify order items."
1170
+ "You will need to wait when the action ends.","You will need to wait when the action ends."
1171
+ "Your answers contain duplicates.","Your answers contain duplicates."
1172
+ "Your password has been updated.","Your password has been updated."
1173
+ "Your password reset link has expired.","Your password reset link has expired."
1174
+ "Your server PHP settings allow you to upload files not more than %s at a time. Please modify post_max_size (currently is %s) and upload_max_filesize (currently is %s) values in php.ini if you want to upload larger files.","Your server PHP settings allow you to upload files not more than %s at a time. Please modify post_max_size (currently is %s) and upload_max_filesize (currently is %s) values in php.ini if you want to upload larger files."
1175
+ "Your web server is configured incorrectly. As a result, configuration files with sensitive information are accessible from the outside. Please contact your hosting provider.","Your web server is configured incorrectly. As a result, configuration files with sensitive information are accessible from the outside. Please contact your hosting provider."
1176
+ "Zip/Postal Code","Zip/Postal Code"
1177
+ "Zip/Postal Code:","Zip/Postal Code:"
1178
+ "[ deleted ]","[ deleted ]"
1179
+ "[GLOBAL]","[GLOBAL]"
1180
+ "[STORE VIEW]","[STORE VIEW]"
1181
+ "[WEBSITE]","[WEBSITE]"
1182
+ "b","b"
1183
+ "close","close"
1184
+ "critical","critical"
1185
+ "example: ""sitemap/"" or ""/"" for base path (path must be writeable)","example: ""sitemap/"" or ""/"" for base path (path must be writeable)"
1186
+ "example: sitemap.xml","example: sitemap.xml"
1187
+ "failed","failed"
1188
+ "from","from"
1189
+ "major","major"
1190
+ "minor","minor"
1191
+ "notice","notice"
1192
+ "store(%s) scope","store(%s) scope"
1193
+ "successful","successful"
1194
+ "to","to"
1195
+ "website(%s) scope","website(%s) scope"
1196
+ "{{base_url}} is not recommended to use in a production environment to declare the Base Unsecure URL / Base Secure URL. It is highly recommended to change this value in your Magento <a href=""%s"">configuration</a>.","{{base_url}} is not recommended to use in a production environment to declare the Base Unsecure URL / Base Secure URL. It is highly recommended to change this value in your Magento <a href=""%s"">configuration</a>."
package.xml ADDED
@@ -0,0 +1,66 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <package>
3
+ <name>parcelspace</name>
4
+ <version>1.0.0</version>
5
+ <stability>stable</stability>
6
+ <license uri="https://www.parcelspace.com/docs/eula">End User Licence Agreement</license>
7
+ <channel>community</channel>
8
+ <extends/>
9
+ <summary>Enhancing customer relationships and revenue by increasing delivery confidence and improving delivery outcomes&#xD;
10
+ </summary>
11
+ <description>&lt;h3&gt;ParcelSpace delivering confidence&lt;/h3&gt;&#xD;
12
+ to help you increase customer satisfaction, sell more, and enhance your reputation amongst your target customers through smart app-alerts, monitoring, messaging and more.&#xD;
13
+ &#xD;
14
+ &lt;h3&gt;Turn delivery problems into positive conversations&lt;/h3&gt;&#xD;
15
+ - Dashboard overview of all your orders and despatches&#xD;
16
+ - Alerts to actively manage deliveries&#xD;
17
+ - Easy direct contact with customers to turn problematic deliveries into positive outcomes&#xD;
18
+ &#xD;
19
+ &lt;h3&gt;Proactive parcel tracking for your customers&lt;/h3&gt;&#xD;
20
+ - Smart alerting for your customer in the free ParcelSpace iOS and Android app &#xD;
21
+ - Range of messaging and texting options to suit you and your customer&#xD;
22
+ - Helps your customers plan a better delivery experience&#xD;
23
+ &#xD;
24
+ &lt;h3&gt;Drive customers back to your website&lt;/h3&gt;&#xD;
25
+ - Multiple opportunities to drive traffic and build customer relationships&#xD;
26
+ &#xD;
27
+ &lt;h3&gt;Additional brand promotion&lt;/h3&gt;&#xD;
28
+ - Configurable brand enhancing email and text tracking alerts&#xD;
29
+ - White label options available for seamless integration&#xD;
30
+ &#xD;
31
+ Further features will be implemented in the coming months with participating partners, allowing &#xD;
32
+ you to generate additional revenue as well as improve your customer relationships. ParcelSpace is a genuine win-win for you and your customer.&#xD;
33
+ &#xD;
34
+ &lt;h3&gt;HOW IT WORKS&lt;/h3&gt;&#xD;
35
+ The ParcelSpace Magento extension works via a fully functional API written in PHP using REST. &#xD;
36
+ It is currently compatible with Magento Community. If you require Magento Enterprise please &#xD;
37
+ contact us directly to learn of our development plans.&#xD;
38
+ The ParcelSpace on-line application is simple, easy to use and powerful, and works seamlessly with the ParcelSpace consumer iOS and Android apps.&#xD;
39
+ Our extension is focused on UK retailers using their UK carriers, and we are happy to facilitate links to your main international carriers if required.&#xD;
40
+ &#xD;
41
+ &lt;h3&gt;PRICING&lt;/h3&gt;&#xD;
42
+ ParcelSpace is free for web site tracking, monitoring, eNotes and some other functionality. Fees for additional functionality are modest and we will always try to ensure that all fees charged will be more than offset by increased value and revenue from customers. &#xD;
43
+ All fees are charged monthly with no long term commitments, and you will be surprised at the value that ParcelSpace can bring. &#xD;
44
+ &#xD;
45
+ &lt;h3&gt;SETUP PROCESS&lt;/h3&gt;&#xD;
46
+ &#xD;
47
+ &lt;h3&gt;1. Register your details on the retailer solutions sign up page&lt;/h3&gt;&#xD;
48
+ https://www.parcelspace.com/retailersignup&#xD;
49
+ After confirming that you are a UK retailer, we will send you a key for our API (Application &#xD;
50
+ Programming Interface) to use with the Magento extension.&#xD;
51
+ &#xD;
52
+ &lt;h3&gt;2. Install ParcelSpace extension&lt;/h3&gt;&#xD;
53
+ Obtain the extension installation key from Magento Connect.&#xD;
54
+ We recommend that you back up your database.&#xD;
55
+ From the Magento Admin Panel, open the Magento Connect Manager (System &gt; Magento Connect &gt;Magento Connect Manager) and paste the extension key to install.&#xD;
56
+ &#xD;
57
+ &lt;h3&gt;3. Enter ParcelSpace API key&lt;/h3&gt;&#xD;
58
+ On the Configuration menu (System &gt; Configuration), choose ParcelSpace under SALES, to bring up the field for the API key, and then choose &lt;Save Config&gt;.</description>
59
+ <notes>Release candidate.</notes>
60
+ <authors><author><name>ParcelSpace Ltd</name><user>ParcelSpace</user><email>info@parcelspace.com</email></author></authors>
61
+ <date>2014-08-21</date>
62
+ <time>17:47:46</time>
63
+ <contents><target name="magelocal"><dir name="Parcelspace"><dir name="Deliveringconfidence"><dir name="Block"><file name="Btn.php" hash="b8206fcaddc8ecbb170924ad9d83e3b9"/><file name=".DS_Store" hash="e6aa15d861c418c74084903c219fad1d"/></dir><dir name="Helper"><file name="Data.php" hash="c136aeff841dbb466deae7d57966e0ba"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><dir name="Model"><file name="Observer.php" hash="520f06fec9c9aee1ec4400a9c9c86f5b"/><file name=".DS_Store" hash="79f87a004b84448fc00d11d8d892ac9e"/></dir><dir name="controllers"><file name="IndexController.php" hash="0f4a4096d3476154ad0dbc51dd4bddd8"/><file name=".DS_Store" hash="612ec870195a9c767b00f79da5072856"/></dir><dir name="etc"><file name="config.xml" hash="b098077b475e87e82e77ebd692a4e2fd"/><file name="system.xml" hash="45d27e7b587db7c6cbaaeac9caa49c2b"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><file name=".DS_Store" hash="e3bcc054fa459859301beabb391de8fd"/></dir><file name=".DS_Store" hash="57d18dc4b5dca31385d0b00b0fef0de3"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="parcelspace_deliveringconfidence.xml" hash="d6f45213735de98a6f0fdda70a99be84"/></dir><dir name="template"><dir name="parcelspace_deliveringconfidence"><dir name="tracking"><file name="popup.phtml" hash="78ee0e701abb1207701dfedab3cc0691"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><file name=".DS_Store" hash="07429daf8ce8106b1d70c195b0a9af27"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Parcelspace_Deliveringconfidence.xml" hash="14f68e4378ac8d6bc84b65a74e974206"/></dir></target><target name="magelocale"><dir><dir name="en_US"><file name="Parcelspace_Deliveringconfidence.csv" hash="aba0f88f88f727c94e8e5368453c88cb"/></dir></dir></target></contents>
64
+ <compatible/>
65
+ <dependencies><required><php><min>5.2.0</min><max>5.5.0</max></php></required></dependencies>
66
+ </package>