aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/profile_selectors.php4
-rw-r--r--util/strings.php11
2 files changed, 13 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) {
diff --git a/util/strings.php b/util/strings.php
index 5ab565437..43139b0a0 100644
--- a/util/strings.php
+++ b/util/strings.php
@@ -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';