From ac51d8c397f239e44c53560a8ddaa7bb5afc2b56 Mon Sep 17 00:00:00 2001 From: AlexEven Date: Wed, 13 Aug 2014 11:56:29 +0200 Subject: [PATCH] // blocktopmenu.php: punctuation --- blocktopmenu.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/blocktopmenu.php b/blocktopmenu.php index 19c3ea2..2714e27 100644 --- a/blocktopmenu.php +++ b/blocktopmenu.php @@ -176,7 +176,7 @@ class Blocktopmenu extends Module if (!count($errors_update_shops)) $this->_html .= $this->displayConfirmation($this->l('The settings have been updated.')); else - $this->_html .= $this->displayError(sprintf($this->l('Unable to update settings for the following shop(s) : %s'), implode(', ', $errors_update_shops))); + $this->_html .= $this->displayError(sprintf($this->l('Unable to update settings for the following shop(s): %s'), implode(', ', $errors_update_shops))); $update_cache = true; } @@ -220,7 +220,7 @@ class Blocktopmenu extends Module if (!count($errors_add_link)) $this->_html .= $this->displayConfirmation($this->l('The link has been added.')); else - $this->_html .= $this->displayError(sprintf($this->l('Unable to add link for the following shop(s) : %s'), implode(', ', $errors_add_link))); + $this->_html .= $this->displayError(sprintf($this->l('Unable to add link for the following shop(s): %s'), implode(', ', $errors_add_link))); } } $update_cache = true; @@ -248,7 +248,7 @@ class Blocktopmenu extends Module if (!count($errors_add_link)) $this->_html .= $this->displayConfirmation($this->l('The link has been removed.')); else - $this->_html .= $this->displayError(sprintf($this->l('Unable to remove link for the following shop(s) : %s'), implode(', ', $errors_delete_link))); + $this->_html .= $this->displayError(sprintf($this->l('Unable to remove link for the following shop(s): %s'), implode(', ', $errors_delete_link))); $update_cache = true; } @@ -303,7 +303,7 @@ class Blocktopmenu extends Module private function getWarningMultishopHtml() { return '

'. - $this->l('You can\'t manage top menu items from a "All Shops" or a "Group Shop" context, select directly the shop you want to edit'). + $this->l('You cannot manage top menu items from a "All Shops" or a "Group Shop" context, select directly the shop you want to edit'). '

'; }