fixed bug #17451: friend/ignored status not internationalized

This commit is contained in:
Gunter Labes 2011-01-09 23:23:41 +00:00
parent 89844cc7d3
commit 9a5b7328e6

View file

@ -1087,13 +1087,13 @@ void preferences_dialog::set_friends_menu()
for (i = friends.begin(); i != friends.end(); ++i)
{
friends_items.push_back(imgpre + "friend.png" + COLUMN_SEPARATOR
+ *i + COLUMN_SEPARATOR + "friend");
+ *i + COLUMN_SEPARATOR + _("friend"));
friends_names.push_back(*i);
}
for (i = ignores.begin(); i != ignores.end(); ++i)
{
friends_items.push_back(imgpre + "ignore.png" + COLUMN_SEPARATOR
+ *i + COLUMN_SEPARATOR + "ignored");
+ *i + COLUMN_SEPARATOR + _("ignored"));
friends_names.push_back(*i);
}
if (friends_items.empty()) {