mirror of
https://github.com/friendica/friendica
synced 2025-04-27 11:50:11 +00:00
15 gender choices, 12 sexual preference choices and 30 relationship status options are probably adequate. :-)
This commit is contained in:
parent
5c515940fa
commit
3672335dec
2 changed files with 13 additions and 2 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue