diff options
author | Friendika <info@friendika.com> | 2010-11-29 20:56:54 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2010-11-29 20:56:54 -0800 |
commit | 3672335decff66669ef7a9411fa3ae12f9c5feeb (patch) | |
tree | a1b43a5a965a20b891af6f038191496bc228775c /include/profile_selectors.php | |
parent | 5c515940fa622c92771747a32d65c8a31f2aca05 (diff) | |
download | volse-hubzilla-3672335decff66669ef7a9411fa3ae12f9c5feeb.tar.gz volse-hubzilla-3672335decff66669ef7a9411fa3ae12f9c5feeb.tar.bz2 volse-hubzilla-3672335decff66669ef7a9411fa3ae12f9c5feeb.zip |
15 gender choices, 12 sexual preference choices and 30 relationship status options are probably adequate. :-)
Diffstat (limited to 'include/profile_selectors.php')
-rw-r--r-- | include/profile_selectors.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/profile_selectors.php b/include/profile_selectors.php index 335f292dc..63bc22dc5 100644 --- a/include/profile_selectors.php +++ b/include/profile_selectors.php @@ -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) { |