Hi,
from back-end administrator registrants in management, click on the name of the registrant to change the registration status but the dropdown does not report the items translated into their own language.
I have solved so,
open
html.php the file in
administrator/components/com_eventbooking/view/registrant and find code:
Code:
...
$options = array();
$options[] = JHtml::_('select.option', 0, JText::_('Pending'));
$options[] = JHtml::_('select.option', 1, JText::_('Paid'));
$options[] = JHtml::_('select.option', 3, JText::_('EB_WAITING_LIST'));
$options[] = JHtml::_('select.option', 2, JText::_('Cancelled'));
$this->lists['published'] = JHtml::_('select.genericlist', $options, 'published', ' class="inputbox" ', 'value', 'text',
...
replace the code found with this:
Code:
...
$options = array();
$options[] = JHtml::_('select.option', 0, JText::_('EB_PENDING'));
$options[] = JHtml::_('select.option', 1, JText::_('EB_PAID'));
$options[] = JHtml::_('select.option', 3, JText::_('EB_WAITING_LIST'));
$options[] = JHtml::_('select.option', 2, JText::_('EB_CANCELLED'));
$this->lists['published'] = JHtml::_('select.genericlist', $options, 'published', ' class="inputbox" ', 'value', 'text',
...
So I made the following change that I hope will be useful to many.See you later!