Skip to content

Commit

Permalink
Fixed issue: Two non-translatable strings when browsing responses (th…
Browse files Browse the repository at this point in the history
…anks to Pal Monstad)

git-svn-id: file:///Users/Shitiz/Downloads/lssvn/source/limesurvey@9074 b72ed6b6-b9f8-46b5-92b4-906544132732
  • Loading branch information
c-schmitz committed Aug 19, 2010
1 parent 8edd826 commit 0411a34
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions admin/browse.php
Expand Up @@ -331,7 +331,7 @@
$fnames[] = array("lastname", "Last Name", $clang->gT("Last Name"), 0);
$fnames[] = array("email", "Email", $clang->gT("Email"), 0);
}
$fnames[] = array("submitdate", "Completed", $clang->gT("Completed"), "0", 'D');
$fnames[] = array("submitdate", $clang->gT("Completed"), $clang->gT("Completed"), "0", 'D');

foreach ($fields as $fielddetails)
{
Expand All @@ -357,7 +357,7 @@
else {$tableheader .= "<table class='browsetable'>\n";}
$tableheader .= "\t<thead><tr valign='top'>\n"
. "<th><input type='checkbox' id='selectall'></th>\n"
. "<th>Actions</th>\n";
. "<th>".$clang->gT('Actions')."</th>\n";
foreach ($fnames as $fn)
{
if (!isset($currentgroup)) {$currentgroup = $fn[1]; $gbc = "oddrow";}
Expand Down

0 comments on commit 0411a34

Please sign in to comment.