From: pk910 Date: Tue, 23 Aug 2011 23:54:55 +0000 (+0200) Subject: fixed srvx language fail (minimum must NOT be greater than the maximum - it must... X-Git-Url: http://git.pk910.de/?a=commitdiff_plain;h=cb82b371fc71b7f22f05077160d7a0d4e20dc470;hp=cac5d7cf813ec11676a75901df02ae41385dcdf5;p=srvx.git fixed srvx language fail (minimum must NOT be greater than the maximum - it must be lower ;)) --- diff --git a/src/chanserv.c b/src/chanserv.c index ba74d70..28db426 100644 --- a/src/chanserv.c +++ b/src/chanserv.c @@ -209,7 +209,7 @@ static const struct message_entry msgtab[] = { /* User management */ { "CSMSG_ADDED_USER", "Added %s to the %s user list with access %d." }, { "CSMSG_DELETED_USER", "Deleted %s (with access %d) from the %s user list." }, - { "CSMSG_BAD_RANGE", "Invalid access range; minimum (%d) must be greater than maximum (%d)." }, + { "CSMSG_BAD_RANGE", "Invalid access range; minimum (%d) must be lower than maximum (%d)." }, { "CSMSG_DELETED_USERS", "Deleted accounts matching $b%s$b with access from $b%d$b to $b%d$b from the %s user list." }, { "CSMSG_TRIMMED_USERS", "Trimmed $b%d users$b with access from %d to %d from the %s user list who were inactive for at least %s." }, { "CSMSG_INCORRECT_ACCESS", "%s has access $b%d$b, not %s." },