15 gender choices, 12 sexual preference choices and 30 relationship status options are probably adequate. :-)
This commit is contained in:
parent
5c515940fa
commit
3672335dec
|
@ -3,7 +3,7 @@
|
|||
|
||||
function gender_selector($current="",$suffix="") {
|
||||
$o = '';
|
||||
$select = array('', t('Male'), t('Female'), t('Transsexual'), t('Hermaphrodite'), t('Neuter'), t('Other'), t('Undecided'));
|
||||
$select = array('', t('Male'), t('Female'), t('Mostly Male'), t('Mostly Female'), t('Transgender'), t('Intersex'), t('Transsexual'), t('Hermaphrodite'), t('Currently Male'), t('Currently Female'), t('Neuter'), t('Non-specific'), t('Other'), t('Undecided'));
|
||||
|
||||
$o .= "<select name=\"gender$suffix\" id=\"gender-select$suffix\" size=\"1\" >";
|
||||
foreach($select as $selection) {
|
||||
|
@ -16,7 +16,7 @@ function gender_selector($current="",$suffix="") {
|
|||
|
||||
function sexpref_selector($current="",$suffix="") {
|
||||
$o = '';
|
||||
$select = array('', t('Males'), t('Females'), t('Bisexual'), t('Autosexual'), t('Abstinent'), t('Virgin'), t('Nonsexual'));
|
||||
$select = array('', t('Males'), t('Females'), t('No Preference'), t('Bisexual'), t('Autosexual'), t('Abstinent'), t('Virgin'), t('Deviant'), t('Fetish'), t('Oodles'), t('Nonsexual'));
|
||||
|
||||
$o .= "<select name=\"sexual$suffix\" id=\"sexual-select$suffix\" size=\"1\" >";
|
||||
foreach($select as $selection) {
|
||||
|
|
|
@ -354,17 +354,28 @@ $a->strings['Settings'] = 'Settings';
|
|||
$a->strings['Profiles'] = 'Profiles';
|
||||
$a->strings['Male'] = 'Male';
|
||||
$a->strings['Female'] = 'Female';
|
||||
$a->strings['Mostly Male'] = 'Mostly Male';
|
||||
$a->strings['Mostly Female'] = 'Mostly Female';
|
||||
$a->strings['Transgender'] = 'Transgender';
|
||||
$a->strings['Intersex'] = 'Intersex';
|
||||
$a->strings['Transsexual'] = 'Transsexual';
|
||||
$a->strings['Hermaphrodite'] = 'Hermaphrodite';
|
||||
$a->strings['Currently Male'] = 'Currently Male';
|
||||
$a->strings['Currently Female'] = 'Currently Female';
|
||||
$a->strings['Neuter'] = 'Neuter';
|
||||
$a->strings['Non-specific'] = 'Non-specific';
|
||||
$a->strings['Other'] = 'Other';
|
||||
$a->strings['Undecided'] = 'Undecided';
|
||||
$a->strings['Males'] = 'Males';
|
||||
$a->strings['Females'] = 'Females';
|
||||
$a->strings['No Preference'] = 'No Preference';
|
||||
$a->strings['Bisexual'] = 'Bisexual';
|
||||
$a->strings['Autosexual'] = 'Autosexual';
|
||||
$a->strings['Abstinent'] = 'Abstinent';
|
||||
$a->strings['Virgin'] = 'Virgin';
|
||||
$a->strings['Deviant'] = 'Deviant';
|
||||
$a->strings['Fetish'] = 'Fetish';
|
||||
$a->strings['Oodles'] = 'Oodles';
|
||||
$a->strings['Nonsexual'] = 'Nonsexual';
|
||||
$a->strings['Single'] = 'Single';
|
||||
$a->strings['Lonely'] = 'Lonely';
|
||||
|
|
Loading…
Reference in a new issue