git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1617 c06c8d41-db1a-0410-9941-cceddc491573
4HATGRJJE7Q6LXHJ3ZGYTNBLG542KAUEK6ERKARIYRKRWY6VTDKQC
snprintf(info, INFO_SIZE, "Your follower%s decide%s to abandon you.",
(num_reconvert > 1) ? "s" : "", (num_reconvert > 1) ? "" : "s");
std::string how_many;
if (num_reconvert == 1 and num_followers > 1)
how_many = "One of your";
else if (num_reconvert == num_followers)
how_many = "Your";
else
how_many = "Some of your";
snprintf(info, INFO_SIZE, "%s follower%s decide%s to abandon you.",
how_many.c_str(),
(num_reconvert > 1) ? "s" : "",
(num_reconvert > 1) ? "" : "s");