diff options
author | friendica <info@friendica.com> | 2012-04-13 17:34:02 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-04-13 17:34:02 -0700 |
commit | 0d0aa7495b8e6848d7a822278339613fd3fcb6d4 (patch) | |
tree | 5ef4a03a3218e28f4153d4042c4ee32fc193b6eb /include | |
parent | 1a0995f1bbe2c10471577d202388a878e75b4287 (diff) | |
download | volse-hubzilla-0d0aa7495b8e6848d7a822278339613fd3fcb6d4.tar.gz volse-hubzilla-0d0aa7495b8e6848d7a822278339613fd3fcb6d4.tar.bz2 volse-hubzilla-0d0aa7495b8e6848d7a822278339613fd3fcb6d4.zip |
additional marital status selectors
Diffstat (limited to 'include')
-rw-r--r-- | include/profile_selectors.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/profile_selectors.php b/include/profile_selectors.php index 92579f64a..d934b7300 100644 --- a/include/profile_selectors.php +++ b/include/profile_selectors.php @@ -30,7 +30,7 @@ function sexpref_selector($current="",$suffix="") { function marital_selector($current="",$suffix="") { $o = ''; - $select = array('', t('Single'), t('Lonely'), t('Available'), t('Unavailable'), t('Dating'), t('Unfaithful'), t('Sex Addict'), t('Friends'), t('Friends/Benefits'), t('Casual'), t('Engaged'), t('Married'), t('Partners'), t('Cohabiting'), t('Happy'), t('Not Looking'), t('Swinger'), t('Betrayed'), t('Separated'), t('Unstable'), t('Divorced'), t('Widowed'), t('Uncertain'), t('Complicated'), t('Don\'t care'), t('Ask me') ); + $select = array('', t('Single'), t('Lonely'), t('Available'), t('Unavailable'), t('Has crush'), t('Infatuated'), t('Dating'), t('Unfaithful'), t('Sex Addict'), t('Friends'), t('Friends/Benefits'), t('Casual'), t('Engaged'), t('Married'), t('Imaginarily married'), t('Partners'), t('Cohabiting'), t('Happy'), t('Not looking'), t('Swinger'), t('Betrayed'), t('Separated'), t('Unstable'), t('Divorced'), t('Imaginarily divorced'), t('Widowed'), t('Uncertain'), t('It\'s complicated'), t('Don\'t care'), t('Ask me') ); $o .= "<select name=\"marital\" id=\"marital-select\" size=\"1\" >"; foreach($select as $selection) { |