Skip to content

Commit e470472

Browse files
committed
Suggestions by @addison74
1 parent b5835c8 commit e470472

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

app/code/core/Mage/Contacts/controllers/IndexController.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public function postAction()
7676
}
7777

7878
if ($error) {
79-
Mage::throwException($this->__('Unable to submit your request. Please, try again later'));
79+
Mage::throwException($this->__('Unable to submit your request. Please try again later'));
8080
}
8181
$mailTemplate = Mage::getModel('core/email_template');
8282
/** @var Mage_Core_Model_Email_Template $mailTemplate */
@@ -91,7 +91,7 @@ public function postAction()
9191
);
9292

9393
if (!$mailTemplate->getSentSuccess()) {
94-
Mage::throwException($this->__('Unable to submit your request. Please, try again later'));
94+
Mage::throwException($this->__('Unable to submit your request. Please try again later'));
9595
}
9696

9797
$translate->setTranslateInline(true);
@@ -106,7 +106,7 @@ public function postAction()
106106
Mage::getSingleton('customer/session')->addError($e->getMessage());
107107
} catch (Throwable $e) {
108108
Mage::logException($e);
109-
Mage::getSingleton('customer/session')->addError($this->__('Unable to submit your request. Please, try again later'));
109+
Mage::getSingleton('customer/session')->addError($this->__('Unable to submit your request. Please try again later'));
110110
$this->_redirect('*/*/');
111111
return;
112112
}

app/locale/en_US/Mage_Contacts.csv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@
1515
"Send Emails To","Send Emails To"
1616
"Submit","Submit"
1717
"Telephone","Telephone"
18-
"Unable to submit your request. Please, try again later","Unable to submit your request. Please, try again later."
18+
"Unable to submit your request. Please try again later","Unable to submit your request. Please try again later."
1919
"Your inquiry was submitted and will be responded to as soon as possible. Thank you for contacting us.","Your inquiry was submitted and will be responded to as soon as possible. Thank you for contacting us."

0 commit comments

Comments
 (0)