From 761a78fd61cdec4780fe6848a9adfc8d14aeaf73 Mon Sep 17 00:00:00 2001 From: Denis Chenu Date: Wed, 30 Jan 2019 08:13:20 +0100 Subject: [PATCH] Fixed issue : at export page the dropdown list of CSV separators is not translated Dev: original issue by elissa --- application/controllers/admin/export.php | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/application/controllers/admin/export.php b/application/controllers/admin/export.php index 559618c0073..58043194631 100644 --- a/application/controllers/admin/export.php +++ b/application/controllers/admin/export.php @@ -245,10 +245,9 @@ public function exportresults() $data['aLanguages'] = $aLanguages; // Pass available exports $data['aCsvFieldSeparator'] = array( - chr(44) => "Comma", - chr(59) => "Semicolon", - chr(9) => "Tab", - + chr(44) => gT("Comma"), + chr(59) => gT("Semicolon"), + chr(9) => gT("Tab"), ); $data['sidemenu']['state'] = false;