if (!$this->_allowConfirmation || $this->_additionalParticipantIds) {
// Hardcode maximum number of additional participants here for now. May need to make this configurable per event.
// Label is value + 1, since the code sees this is ADDITIONAL participants (in addition to "self")
- $additionalOptions = array('' => ts('1'), 1 => ts('2'), 2 => ts('3'), 3 => ts('4'), 4 => ts('5'),
- 5 => ts('6'), 6 => ts('7'), 7 => ts('8'), 8 => ts('9'), 9 => ts('10'),
+ $additionalOptions = array(
+ '' => '1', 1 => '2', 2 => '3', 3 => '4', 4 => '5',
+ 5 => '6', 6 => '7', 7 => '8', 8 => '9', 9 => '10',
);
$element = $this->add('select', 'additional_participants',
ts('How many people are you registering?'),
$financialType->id = $financialTypeAccountId;
$financialType->find(TRUE);
$financialType->delete();
- CRM_Core_Session::setStatus(ts('Unbalanced transactions may be created if you delete %1 account.', array(1 => $relationValues[$financialType->account_relationship])));
+ CRM_Core_Session::setStatus(ts('Unbalanced transactions may be created if you delete the account of type: %1.', array(1 => $relationValues[$financialType->account_relationship])));
}
/**
CRM_Contact_Page_View::checkUserPermission($this);
// set page title
- CRM_Utils_System::setTitle(ts('Mailings sent to') . ' ' . $displayName);
+ CRM_Utils_System::setTitle(ts('Mailings sent to %1', array(1 => $displayName)));
}
/**
}
if ($showsumcontribs) {
$totalandsum = array();
- $title = ts('contributions / soft-credits');
+ // ts exception to avoid having ts("%1 %2: %3")
+ $title = '%1 contributions / soft-credits: %2';
+
if (CRM_Utils_Array::value('contribution_or_soft_value', $this->_params) == 'contributions_only') {
- $title = ts('contributions');
+ $title = '%1 contributions: %2';
} else if (CRM_Utils_Array::value('contribution_or_soft_value', $this->_params) == 'soft_credits_only') {
- $title = ts('soft-credits');
+ $title = '%1 soft-credits: %2';
}
foreach ($totals as $key => $total) {
- $totalandsum[$key] = ts("%1 %2: %3", array(
+ $totalandsum[$key] = ts($title, array(
1 => $total,
- 2 => $title,
- 3 => CRM_Utils_Money::format($sumcontribs[$key])
+ 2 => CRM_Utils_Money::format($sumcontribs[$key])
));
}
$this->assign('sectionTotals', $totalandsum);