elseif (substr($fieldName, 0, 6) === 'county') {
if ($addressOptions['county']) {
$form->add('select', $name, $title,
- array(
- '' => ts('(choose state first)')), $required
+ array('' => ts('Choose state first')), $required
);
}
}
$elements = array();
if (!isset($_GET['_value']) || CRM_Utils_System::isNull($_GET['_value'])) {
$elements = array(
- array('name' => ts('(choose state first)'), 'value' => '')
+ array('name' => ts('Choose state first'), 'value' => '')
);
}
else {
$('select[name="{$stateCountryMap.state_province}"], select#{$stateCountryMap.state_province}', $form).data('chainSelect', {ldelim}
callback: CRM.url('civicrm/ajax/jqCounty'),
target: initField('select[name="{$stateCountryMap.county}"], #{$stateCountryMap.county}'),
- placeholder: "{ts escape='js'}(choose state first){/ts}"
+ placeholder: "{ts escape='js'}Choose state first{/ts}"
{rdelim}).on('change', chainSelect);
{/if}
{if $stateCountryMap.country && $stateCountryMap.state_province}
initField('select[name="{$stateCountryMap.country}"], select#{$stateCountryMap.country}').data('chainSelect', {ldelim}
callback: CRM.url('civicrm/ajax/jqState'),
target: initField('select[name="{$stateCountryMap.state_province}"], #{$stateCountryMap.state_province}'),
- placeholder: "{ts escape='js'}(choose country first){/ts}"
+ placeholder: "{ts escape='js'}Choose country first{/ts}"
{rdelim}).on('change', chainSelect).change();
{/if}
{/foreach}