comparison src/blist.c @ 13043:fa99be331f2f

[gaim-migrate @ 15402] This might be a clearer message for when a group can't be deleted because it contains buddies on an account which is not signed in. committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Thu, 26 Jan 2006 04:43:34 +0000
parents 248b8b39c671
children c242836ff793
comparison
equal deleted inserted replaced
13042:fc4d2a386ba3 13043:fa99be331f2f
1881 1881
1882 for (child = node->child; child != NULL; child = child->next) 1882 for (child = node->child; child != NULL; child = child->next)
1883 count++; 1883 count++;
1884 1884
1885 buf = g_strdup_printf(ngettext("%d buddy from group %s was not removed " 1885 buf = g_strdup_printf(ngettext("%d buddy from group %s was not removed "
1886 "because its account was not logged in." 1886 "because it belongs to an account which is "
1887 " This buddy and the group were not " 1887 "disabled or offline. This buddy and the "
1888 "removed.\n", 1888 "group were not removed.\n",
1889 "%d buddies from group %s were not " 1889 "%d buddies from group %s were not "
1890 "removed because their accounts were " 1890 "removed because they belong to accounts "
1891 "not logged in. These buddies and " 1891 "which are currently disabled or offline. "
1892 "the group were not removed.\n", count), 1892 "These buddies and the group were not "
1893 "removed.\n", count),
1893 count, group->name); 1894 count, group->name);
1894 gaim_notify_error(NULL, NULL, _("Group not removed"), buf); 1895 gaim_notify_error(NULL, NULL, _("Group not removed"), buf);
1895 g_free(buf); 1896 g_free(buf);
1896 return; 1897 return;
1897 } 1898 }