Commit 4509da651d6f244f7921cffb5e649ef68ea375c2
1 parent
c112df7b
Exists in
master
and in
29 other branches
ActionItem489: more a little detail in gender for profile listing
git-svn-id: https://svn.colivre.coop.br/svn/noosfero/trunk@2109 3f533792-8f58-4932-b0fe-aaf55b0a4547
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
app/helpers/application_helper.rb
... | ... | @@ -334,7 +334,7 @@ module ApplicationHelper |
334 | 334 | def profile_image_link( profile, size=:portrait, tag='li' ) |
335 | 335 | if profile.class == Person |
336 | 336 | sex = ( profile.sex ? profile.sex.to_s() : 'undef' ) |
337 | - title = ( sex == 'undef' ? _('undefined gender') : ( sex == 'male' ? _('Male') : _('Female') ) ) | |
337 | + title = ( sex == 'undef' ? _('non registered gender') : ( sex == 'male' ? _('Male') : _('Female') ) ) | |
338 | 338 | sex = content_tag 'span', |
339 | 339 | content_tag( 'span', sex ), |
340 | 340 | :class => 'sex-'+sex, | ... | ... |