Replace EMPTY value by empty value in profile selectors
This commit is contained in:
parent
102c44e8ee
commit
b2e41e3298
|
@ -150,7 +150,7 @@ class ContactSelector
|
||||||
{
|
{
|
||||||
$o = '';
|
$o = '';
|
||||||
$select = [
|
$select = [
|
||||||
'EMPTY' => '',
|
'' => L10n::t('No answer'),
|
||||||
'Male' => L10n::t('Male'),
|
'Male' => L10n::t('Male'),
|
||||||
'Female' => L10n::t('Female'),
|
'Female' => L10n::t('Female'),
|
||||||
'Currently Male' => L10n::t('Currently Male'),
|
'Currently Male' => L10n::t('Currently Male'),
|
||||||
|
@ -190,7 +190,7 @@ class ContactSelector
|
||||||
{
|
{
|
||||||
$o = '';
|
$o = '';
|
||||||
$select = [
|
$select = [
|
||||||
'EMPTY' => '',
|
'' => L10n::t('No answer'),
|
||||||
'Males' => L10n::t('Males'),
|
'Males' => L10n::t('Males'),
|
||||||
'Females' => L10n::t('Females'),
|
'Females' => L10n::t('Females'),
|
||||||
'Gay' => L10n::t('Gay'),
|
'Gay' => L10n::t('Gay'),
|
||||||
|
@ -228,7 +228,7 @@ class ContactSelector
|
||||||
{
|
{
|
||||||
$o = '';
|
$o = '';
|
||||||
$select = [
|
$select = [
|
||||||
'EMPTY' => '',
|
'' => L10n::t('No answer'),
|
||||||
'Single' => L10n::t('Single'),
|
'Single' => L10n::t('Single'),
|
||||||
'Lonely' => L10n::t('Lonely'),
|
'Lonely' => L10n::t('Lonely'),
|
||||||
'Available' => L10n::t('Available'),
|
'Available' => L10n::t('Available'),
|
||||||
|
|
Loading…
Reference in a new issue