Fix the updated strings having effect only on LOW_MEM builds.

This commit is contained in:
Ignacio R. Morelle 2007-11-07 15:09:29 +00:00
parent 8e13bd3e95
commit 705ab3a02b

View file

@ -138,7 +138,7 @@ void leader_list_manager::update_gender_list(const std::string& leader)
#ifdef LOW_MEM
genders_.push_back(IMAGE_PREFIX + utg->image() + COLUMN_SEPARATOR + _("Female ♀"));
#else
genders_.push_back(IMAGE_PREFIX + utg->image() + std::string("~RC(" + utg->flag_rgb() + ">1)") + COLUMN_SEPARATOR + _("Feminine ♀"));
genders_.push_back(IMAGE_PREFIX + utg->image() + std::string("~RC(" + utg->flag_rgb() + ">1)") + COLUMN_SEPARATOR + _("Female ♀"));
#endif
}
else
@ -147,7 +147,7 @@ void leader_list_manager::update_gender_list(const std::string& leader)
#ifdef LOW_MEM
genders_.push_back(IMAGE_PREFIX + utg->image() + COLUMN_SEPARATOR + _("Male ♂"));
#else
genders_.push_back(IMAGE_PREFIX + utg->image() + std::string("~RC(" + utg->flag_rgb() + ">1)") + COLUMN_SEPARATOR + _("Masculine ♂"));
genders_.push_back(IMAGE_PREFIX + utg->image() + std::string("~RC(" + utg->flag_rgb() + ">1)") + COLUMN_SEPARATOR + _("Male ♂"));
#endif
}
}