Skip to content

Commit

Permalink
Fixed issue #10959: Missing translation
Browse files Browse the repository at this point in the history
  • Loading branch information
c-schmitz committed Apr 15, 2016
1 parent c61885c commit 4d92c20
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 31 deletions.
4 changes: 2 additions & 2 deletions application/views/admin/survey/editLocalSettings_view.php
Expand Up @@ -70,7 +70,7 @@
<div class="form-group">
<label class="control-label col-sm-2"><?php eT("Date format:"); ?></label>

<div class="col-sm-9">
<div class="col-sm-3">
<select size='1' id='dateformat_<?php echo $esrow['surveyls_language']; ?>' name='dateformat_<?php echo $esrow['surveyls_language']; ?>' class="form-control">
<?php foreach (getDateFormatData(0,Yii::app()->session['adminlang']) as $index=>$dateformatdata): ?>
<option value='<?php echo $index; ?>'
Expand All @@ -86,7 +86,7 @@
<!-- Decimal mark -->
<div class="form-group">
<label class="control-label col-sm-2"><?php eT("Decimal mark:"); ?></label>
<div class="col-sm-9">
<div class="col-sm-3">
<select size='1' id='numberformat_<?php echo $esrow['surveyls_language']; ?>' name='numberformat_<?php echo $esrow['surveyls_language']; ?>' class="form-control">
<?php foreach (getRadixPointData() as $index=>$radixptdata): ?>
<option value='<?php echo $index; ?>'
Expand Down
Expand Up @@ -21,12 +21,12 @@
<div class="modal-body">
<input type='hidden' name='surveyid' value='<?php echo $surveyid; ?>' />
<input type='hidden' name='action' value='importsurveyresources' />
<label for='the_file'><?php eT("Select ZIP File:"); ?></label>
<label for='the_file'><?php eT("Select ZIP file:"); ?></label>
<input id='the_file' name='the_file' type='file' />
</div>

<div class="modal-footer">
<button type="button" class="btn btn-danger" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-danger" data-dismiss="modal"><?php eT("Close");?></button>
<input type='button' class="btn btn-default" value='<?php eT("Import resources ZIP archive"); ?>' <?php echo $ZIPimportAction; ?> />
</div>
</form>
Expand Down

This file was deleted.

0 comments on commit 4d92c20

Please sign in to comment.