Skip to content

Commit

Permalink
Fixed issue #6785: Spelling error
Browse files Browse the repository at this point in the history
  • Loading branch information
c-schmitz committed Oct 26, 2012
1 parent ae819d3 commit 85b781e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Expand Up @@ -31,7 +31,7 @@
{
$uploadSummary .= "<li>" . sprintf($clang->gT("%s records have empty mandatory fields"), $mandatory) . "</li>";
}
$uploadSummary .= "<li>" . sprintf($clang->gT("%s records met minumum requirements"), $mincriteria) . "</li>";
$uploadSummary .= "<li>" . sprintf($clang->gT("%s records met minimum requirements"), $mincriteria) . "</li>";
$uploadSummary .= "<li>" . sprintf($clang->gT("%s new participants were created"), $imported) . "</li>";
if($overwritten > 0) {
$uploadSummary .= "<li>".sprintf($clang->gT("%s records were duplicate but had attributes updated"), $overwritten)."</li>";
Expand Down
2 changes: 1 addition & 1 deletion application/views/admin/token/csvpost.php
Expand Up @@ -14,7 +14,7 @@

<ul>
<li><?php printf($clang->gT("%s records in CSV"), $recordcount); ?></li>
<li><?php printf($clang->gT("%s records met minumum requirements"), $xv); ?></li>
<li><?php printf($clang->gT("%s records met minimum requirements"), $xv); ?></li>
<li><?php printf($clang->gT("%s records imported"), $xz); ?></li>
</ul>

Expand Down
2 changes: 1 addition & 1 deletion application/views/admin/token/ldappost.php
Expand Up @@ -8,7 +8,7 @@
<br /><br />
<?php echo $resultnum; ?>
<?php $clang->eT("Results from LDAP Query."); ?><br />
<?php echo $xv; ?> <?php $clang->eT("Records met minumum requirements"); ?>.<br />
<?php printf($clang->gT("%s records met minimum requirements"),$xv); ?><br />
<?php echo $xz; ?> <?php $clang->eT("Records imported"); ?>.<br />
<?php echo $xy; ?> <?php $clang->eT("Duplicate records removed"); ?>
[<a href='#' onclick='$("#duplicateslist").toggle();'><?php $clang->eT("List"); ?></a>]
Expand Down

0 comments on commit 85b781e

Please sign in to comment.