}
elseif (($optMax - $opDbCount) == 1) {
$errors[$soldOutPnum[$optId]]["price_{$fieldId}"]
- = ts('Sorry, currently only a single seat is available for this option.', array(1 => ($optMax - $opDbCount)));
+ = ts('Sorry, currently only a single space is available for this option.', array(1 => ($optMax - $opDbCount)));
}
else {
$errors[$soldOutPnum[$optId]]["price_{$fieldId}"]
- = ts('Sorry, currently only %1 seats are available for this option.', array(1 => ($optMax - $opDbCount)));
+ = ts('Sorry, currently only %1 spaces are available for this option.', array(1 => ($optMax - $opDbCount)));
}
}
}
if (!$self->_allowConfirmation && empty($self->_values['event']['has_waitlist']) &&
$totalParticipants > $self->_availableRegistrations
) {
- $errors['_qf_default'] = ts('It looks like event has only %2 seats available and you are trying to register %1 participants, so could you please select price options accordingly.', array(
+ $errors['_qf_default'] = ts('Sorry, it looks like this event only has %2 spaces available, and you are trying to register %1 participants. Please change your selections accordingly.', array(
1 => $totalParticipants,
2 => $self->_availableRegistrations,
));