Skip to content

Commit

Permalink
added missing strings
Browse files Browse the repository at this point in the history
  • Loading branch information
kawshar committed Jan 5, 2022
1 parent 4c0833f commit 7c70b7b
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions templates/shaper_helix3/html/com_finder/search/default_form.php
Original file line number Diff line number Diff line change
Expand Up @@ -109,14 +109,18 @@
<?php if ($this->params->get('show_advanced_tips', 1)) : ?>
<div class="card card-outline-secondary mb-3">
<div class="card-body">
<?php echo JText::_('COM_FINDER_ADVANCED_TIPS_INTRO'); ?>
<?php echo JText::_('COM_FINDER_ADVANCED_TIPS_AND'); ?>
<?php echo JText::_('COM_FINDER_ADVANCED_TIPS_NOT'); ?>
<?php echo JText::_('COM_FINDER_ADVANCED_TIPS_OR'); ?>
<?php if ($this->params->get('tuplecount', 1) > 1) : ?>
<?php echo JText::_('COM_FINDER_ADVANCED_TIPS_PHRASE'); ?>
<?php if(JVERSION < 4) : ?>
<?php echo JText::_('COM_FINDER_ADVANCED_TIPS'); ?>
<?php else : ?>
<?php echo JText::_('COM_FINDER_ADVANCED_TIPS_INTRO'); ?>
<?php echo JText::_('COM_FINDER_ADVANCED_TIPS_AND'); ?>
<?php echo JText::_('COM_FINDER_ADVANCED_TIPS_NOT'); ?>
<?php echo JText::_('COM_FINDER_ADVANCED_TIPS_OR'); ?>
<?php if ($this->params->get('tuplecount', 1) > 1) : ?>
<?php echo JText::_('COM_FINDER_ADVANCED_TIPS_PHRASE'); ?>
<?php endif; ?>
<?php echo JText::_('COM_FINDER_ADVANCED_TIPS_OUTRO'); ?>
<?php endif; ?>
<?php echo JText::_('COM_FINDER_ADVANCED_TIPS_OUTRO'); ?>
</div>
</div>
<?php endif; ?>
Expand Down

0 comments on commit 7c70b7b

Please sign in to comment.