From 0da1eb9e35c985f2d0f16eb89f21729726dc410c Mon Sep 17 00:00:00 2001 From: djfm Date: Mon, 22 Apr 2013 17:24:47 +0200 Subject: [PATCH] [*] TR : Fixed wrong use of translation functions in AdminTranslationsController --- controllers/admin/AdminTranslationsController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/controllers/admin/AdminTranslationsController.php b/controllers/admin/AdminTranslationsController.php index df8898e62..af0b6970e 100644 --- a/controllers/admin/AdminTranslationsController.php +++ b/controllers/admin/AdminTranslationsController.php @@ -761,7 +761,7 @@ class AdminTranslationsControllerCore extends AdminController $this->errors[] = sprintf(Tools::displayError('Cannot delete the archive %s.'), $file); } else - $this->errors[] = Tools::displayError('The server does not have permissions for writing.'. ' '.sprintf(Tools::displayError('Please check rights for %s'), dirname($file))); + $this->errors[] = Tools::displayError('The server does not have permissions for writing.').' '.sprintf(Tools::displayError('Please check rights for %s'), dirname($file)); } else $this->errors[] = Tools::displayError('Language not found.'); @@ -2737,4 +2737,4 @@ class AdminTranslationsControllerCore extends AdminController return $list; } -} \ No newline at end of file +}