]> git.mxchange.org Git - friendica.git/blobdiff - include/profile_selectors.php
From Tobias H - catch some irregularities caused by cut/paste code
[friendica.git] / include / profile_selectors.php
old mode 100644 (file)
new mode 100755 (executable)
index 335f292..92579f6
@@ -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('Currently Male'), t('Currently Female'), t('Mostly Male'), t('Mostly Female'), t('Transgender'), t('Intersex'), t('Transsexual'), t('Hermaphrodite'), 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('Gay'), t('Lesbian'), 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) {