Skip to content

Commit

Permalink
Dev Small text changes
Browse files Browse the repository at this point in the history
  • Loading branch information
c-schmitz committed Feb 21, 2018
1 parent 36129db commit 05e4dc8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion application/controllers/admin/export.php
Expand Up @@ -231,7 +231,7 @@ public function exportresults()
'code'=>array('label'=>gT("Question code"), 'help'=>null, 'checked'=>false),
'abbreviated'=>array('label'=>gT("Abbreviated question text"), 'help'=>null, 'checked'=>false),
'full'=>array('label'=>gT("Full question text"), 'help'=>null, 'checked'=>true),
'codetext'=>array('label'=>gT("Question code and question text"), 'help'=>null, 'checked'=>false),
'codetext'=>array('label'=>gT("Question code & question text"), 'help'=>null, 'checked'=>false),
);
// Add a plugin for adding headexports : a public function getRegistereddPlugins($event) can help here.
$aLanguagesCode = Survey::model()->findByPk($iSurveyID)->getAllLanguages();
Expand Down
4 changes: 2 additions & 2 deletions application/views/admin/export/exportresults_view.php
Expand Up @@ -323,12 +323,12 @@ class="form-control"
<div class="form-group row">
<div class='col-sm-6'>
<?php echo CHTML::checkBox('converty',false,array('value'=>'Y','id'=>'converty'));
echo CHTML::label(gT("Convert Y to:"),'converty');?>
echo ' '.CHTML::label(gT("Convert Y to:"),'converty');?>
<?php echo CHTML::textField('convertyto','1',array('id'=>'convertyto','size'=>'3','maxlength'=>'1', 'class' => 'form-control')); ?>
</div>
<div class='col-sm-6'>
<?php echo CHTML::checkBox('convertn',false,array('value'=>'Y','id'=>'convertn'));
echo CHTML::label(gT("Convert N to:"),'convertn');?>
echo ' '.CHTML::label(gT("Convert N to:"),'convertn');?>
<?php echo CHTML::textField('convertnto','2',array('id'=>'convertnto','size'=>'3','maxlength'=>'1', 'class' => 'form-control')); ?>
</div>
</div>
Expand Down

0 comments on commit 05e4dc8

Please sign in to comment.