Skip to content

Commit

Permalink
Fixed issue : at export page the dropdown list of CSV separators is n…
Browse files Browse the repository at this point in the history
…ot translated

Dev: original issue by elissa
  • Loading branch information
Shnoulle committed Jan 30, 2019
1 parent 848fe92 commit 761a78f
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions application/controllers/admin/export.php
Expand Up @@ -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;
Expand Down

0 comments on commit 761a78f

Please sign in to comment.