From 4509da651d6f244f7921cffb5e649ef68ea375c2 Mon Sep 17 00:00:00 2001 From: AurelioAHeckert Date: Fri, 27 Jun 2008 23:04:57 +0000 Subject: [PATCH] ActionItem489: more a little detail in gender for profile listing --- app/helpers/application_helper.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index 501244a..92609af 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -334,7 +334,7 @@ module ApplicationHelper def profile_image_link( profile, size=:portrait, tag='li' ) if profile.class == Person sex = ( profile.sex ? profile.sex.to_s() : 'undef' ) - title = ( sex == 'undef' ? _('undefined gender') : ( sex == 'male' ? _('Male') : _('Female') ) ) + title = ( sex == 'undef' ? _('non registered gender') : ( sex == 'male' ? _('Male') : _('Female') ) ) sex = content_tag 'span', content_tag( 'span', sex ), :class => 'sex-'+sex, -- libgit2 0.21.2