Please post all pre-sales questions of all products on this forum

error in administrator-view-registrant html.php

  • Baptiste
  • Topic Author
  • Offline
  • Premium Member
  • Premium Member
More
8 years 9 months ago #90372 by Baptiste
Hi Tuan,

I create another website for another activity, and i'm very glad to use one more time Even booking.
I discover the "new" one, as i use 1.6.9 version fot the older one.
New features are really great!

There is a little code error i thnik in the file : html.php in administrator/view/registrant

here is the code :
Code:
$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'));

It should be :
Code:
$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'));

Not a problem for english users, but it is for translation.

BTW, can you explain me what the button "checked in" is for? is it not redundant with registration status? what does this check in thick make?

Thank you!

Please Log in or Create an account to join the conversation.

More
8 years 9 months ago #90401 by Tuan Pham Ngoc
Replied by Tuan Pham Ngoc on topic error in administrator-view-registrant html.php
Hi

Thanks for reporting the issue. I will implement the suggested modification into the extension in the next release

For checked in column, please read documentation at eventbookingdoc.joomservices.com/advance...check-in-registrants to understand more about it

Regards,

Tuan

Please Log in or Create an account to join the conversation.

  • Baptiste
  • Topic Author
  • Offline
  • Premium Member
  • Premium Member
More
8 years 9 months ago #90422 by Baptiste
Great, thank you!

Please Log in or Create an account to join the conversation.

  • Baptiste
  • Topic Author
  • Offline
  • Premium Member
  • Premium Member
More
8 years 9 months ago #90737 by Baptiste
Hi!

One more translation missing : in the file : /administrator/components/com_eventbooking/view/event/html.php, from line 247 to 261 :
Code:
$options[] = JHtml::_('select.option', 0, JText::_('No')); $options[] = JHtml::_('select.option', 1, JText::_('Yes')); $options[] = JHtml::_('select.option', 2, JText::_('EB_USE_GLOBAL_CONFIGURATION')); $this->lists['activate_waiting_list'] = JHtml::_('select.genericlist', $options, 'activate_waiting_list', ' class="inputbox" ', 'value', 'text', $item->activate_waiting_list); $options = array(); $options[] = JHtml::_('select.option', 0, JText::_('No')); $options[] = JHtml::_('select.option', 1, JText::_('Yes'));

"No" & "Yes" can't be translate.

Please Log in or Create an account to join the conversation.

Moderators: Tuan Pham NgocGiang Dinh TruongDang Thuc Dam