Skip to content

Commit

Permalink
Dev Fixed some translations not being picked up by the translation tool
Browse files Browse the repository at this point in the history
  • Loading branch information
c-schmitz committed Nov 8, 2013
1 parent 099428d commit 7a2dc47
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions application/views/admin/participants/attributeMapToken_view.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
var surveyId = "<?php echo Yii::app()->request->getQuery('sid'); ?>";

/* LANGUAGE */
var attributesMappedText = "<?php $clang->et("There are no unmapped attributes") ?>";
var mustPairAttributeText= "<?php $clang->et("You have to pair it with one attribute of the token table") ?>";
var onlyOneAttributeMappedText="<?php $clang->et("Only one central attribute is mapped with token attribute") ?>";
var cannotAcceptTokenAttributesText="<?php $clang->et("This list cannot accept token attributes.") ?>";
var addElementBelowText="<?php $clang->et("You have to add the element below the list") ?>";
var attributesMappedText = "<?php $clang->eT("There are no unmapped attributes") ?>";
var mustPairAttributeText= "<?php $clang->eT("You have to pair it with one attribute of the token table") ?>";
var onlyOneAttributeMappedText="<?php $clang->eT("Only one central attribute is mapped with token attribute") ?>";
var cannotAcceptTokenAttributesText="<?php $clang->eT("This list cannot accept token attributes.") ?>";
var addElementBelowText="<?php $clang->eT("You have to add the element below the list") ?>";

</script>
</head>
Expand Down
8 changes: 4 additions & 4 deletions application/views/admin/participants/attributeMap_view.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
var participant_id = "<?php echo $participant_id; ?>";

/* SCRIPT TEXT */
var attributesMappedText = "<?php $clang->et("All the attributes are automatically mapped") ?>";
var mustPairAttributeText= "<?php $clang->et("You have to pair it with one attribute of the token table") ?>";
var onlyOneAttributeMappedText="<?php $clang->et("Only one central attribute is mapped with token attribute ") ?>";
var cannotAcceptTokenAttributesText="<?php $clang->et("This list cannot accept token attributes.") ?>";
var attributesMappedText = "<?php $clang->eT("All the attributes are automatically mapped") ?>";
var mustPairAttributeText= "<?php $clang->eT("You have to pair it with one attribute of the token table") ?>";
var onlyOneAttributeMappedText="<?php $clang->eT("Only one central attribute is mapped with token attribute ") ?>";
var cannotAcceptTokenAttributesText="<?php $clang->eT("This list cannot accept token attributes.") ?>";

</script>
</head>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
var notcontainsTxt="<?php $clang->eT("Does not contain") ?>";
var greaterthanTxt="<?php $clang->eT("Greater than") ?>";
var lessthanTxt="<?php $clang->eT("Less than") ?>";
var beginswithTxt="<?php $clang->et("Begins with") ?>";
var beginswithTxt="<?php $clang->eT("Begins with") ?>";
var andTxt="<?php $clang->eT("AND") ?>";
var orTxt="<?php $clang->eT("OR") ?>";
/* End search form titles */
Expand Down
2 changes: 1 addition & 1 deletion application/views/installer/precheck_view.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ function dirReport($dir, $write, $clang)
<td><?php $clang->eT("Minimum memory available"); ?></td>
<td>64MB</td>
<td><?php
if (isset($bMemoryError) && $bMemoryError) { ?><span style='font-weight:bold; color: red'><?php $clang->eT("Outdated"); ?>: <?php echo $this->return_bytes(ini_get('memory_limit'))/1024/1024; ?>MB</span>
if (isset($bMemoryError) && $bMemoryError) { ?><span style='font-weight:bold; color: red'><?php $clang->eT("Too low"); ?>: <?php echo $this->return_bytes(ini_get('memory_limit'))/1024/1024; ?>MB</span>
<?php } else { ?><?php echo $this->return_bytes(ini_get('memory_limit'))/1024/1024; ?>MB <?php } ?></td>
</tr>
<tr>
Expand Down

0 comments on commit 7a2dc47

Please sign in to comment.