From 9b9c9415add69209fbdc77bdc3d7ccd0570ef3f6 Mon Sep 17 00:00:00 2001 From: pk910 Date: Sat, 5 Nov 2011 01:15:00 +0100 Subject: [PATCH] added missing args to the default strings (language editor) --- src/bot_NeonServ.c | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/bot_NeonServ.c b/src/bot_NeonServ.c index 2b557dd..6bd0dd0 100644 --- a/src/bot_NeonServ.c +++ b/src/bot_NeonServ.c @@ -105,7 +105,7 @@ static const struct default_language_entry msgtab[] = { {"NS_MDELUSER_DONE", "Deleted $b%d$b account(s) matching $b%s$b with access from $b%d$b to $b%d$b from the %s user list."}, /* {ARGS: 10, "Test*", 1, 200, "#TestChan"} */ {"NS_TRIM_DURATION_TOO_SHORT", "You must include a minimum inactivity duration of at least %d seconds to trim."}, {"NS_TRIM_DONE", "Trimmed $b%d users$b with access from %d to %d from the %s user list who were inactive for at least %s."}, /* {ARGS: 10, 1, 100, "#TestChan", "10 days"} */ - {"NS_TRIM_BAN_DONE", "Trimmed $b%d bans$b from the %s ban list who were banned for at least %s."}, + {"NS_TRIM_BAN_DONE", "Trimmed $b%d bans$b from the %s ban list who were banned for at least %s."}, /* {ARGS: 5, "#TestChan", "1 day"} */ {"NS_GIVEOWNER_SELF", "You cannot give ownership to your own account."}, {"NS_GIVEOWNER_TIMEOUT", "You must wait %s before you can give ownership of $b%s$b to someone else."}, /* {ARGS: "5 hours", "#TestChan"} */ {"NS_GIVEOWNER_CONFIRM", "To really give ownership to $b%1$s$b, you must use 'giveownership *%1$s %2$s'."}, /* {ARGS: "TestUser", "abc123"} */ @@ -298,7 +298,7 @@ static const struct default_language_entry msgtab[] = { {"NS_SETRANK_UNKNOWN_SETTING", "$b%s$b is an unknown support rank setting."}, /* {ARGS: "moep"} */ {"NS_SETRANK_ORDER_INVALID", "%d is an invalid numeric value. (valid: 1-99)"}, /* {ARGS: 100} */ {"NS_ASSIGNRANK_DONE", "$b%s$b is now ranked as '$b%s$b'."}, /* {ARGS: "TestUser", "Supporter"} */ - {"NS_INFO_HEADER", "$b%s$b Information:"}, + {"NS_INFO_HEADER", "$b%s$b Information:"}, /* {ARGS: "#TestChan"} */ {"NS_INFO_DEFAULTTOPIC", "Default Topic:"}, {"NS_INFO_MODELOCK", "Mode Lock:"}, {"NS_INFO_RECORD", "Record Visitors:"}, @@ -308,22 +308,22 @@ static const struct default_language_entry msgtab[] = { {"NS_INFO_VISITED", "Visited:"}, {"NS_INFO_REGISTERED", "Registered:"}, {"NS_INFO_REGISTRAR", "Registered by:"}, - {"NS_INFO_OWNERLOG", "Ownership transfer history for $b%s$b:"}, + {"NS_INFO_OWNERLOG", "Ownership transfer history for $b%s$b:"}, /* {ARGS: "#TestChan"} */ {"NS_INFO_OWNERCHANGE", " from %s to %s on %s"}, - {"NS_RENAME_DONE", "Renamed $b%s$b to $b%s$b."}, - {"NS_RENAME_FAIL", "Failed renaming $b%s$b."}, - {"NS_FUN_DISABLED", "Fun commands are disabled in %s."}, + {"NS_RENAME_DONE", "Renamed $b%s$b to $b%s$b."}, /* {ARGS: "TestUser", "TestUser2"} */ + {"NS_RENAME_FAIL", "Failed renaming $b%s$b."}, /* {ARGS: "TestUser"} */ + {"NS_FUN_DISABLED", "Fun commands are disabled in %s."}, /* {ARGS: "#TestChan"} */ {"NS_UNBIND_REQUIRED", "%1$s is a required function and there is no other command bound to %1$s. Bind anothjer command to %1$s first."}, /* {ARGS: bind} */ {"NS_COMMANDS_NAME", "Name"}, {"NS_COMMANDS_ACCESS", "Access"}, {"NS_COMMANDS_GACCESS", "GodAccess"}, {"NS_COMMANDS_FUNCTION", "Function"}, - {"NS_DNR_SET", "$b%s$b is do-not-register (by $b%s$b): %s" }, - {"NS_DNR_SET_EXPIRES", "$b%s$b is do-not-register (by $b%s$b; expires %s): %s" }, - {"NS_DNR_SET_ANONYM", "$b%s$b is do-not-register. Please contact the support to get more information."}, - {"NS_NOREGISTER_INVALID_DURATION", "$b%s$b is not a valid duration."}, - {"NS_NOREGISTER_REGISTERED", "$b%s$b is currently registered and can't be added to the do-not-register list."}, - {"NS_NOREGISTER_DONE", "added $b%s$b to the do-not-register list."}, + {"NS_DNR_SET", "$b%s$b is do-not-register (by $b%s$b): %s" }, /* {ARGS: "#TestChan", "TestUser", "because of it is like it is"} */ + {"NS_DNR_SET_EXPIRES", "$b%s$b is do-not-register (by $b%s$b; expires %s): %s" }, /* {ARGS: "#TestChan", "TestUser", "1 day", "because of it is like it is"} */ + {"NS_DNR_SET_ANONYM", "$b%s$b is do-not-register. Please contact the support to get more information."}, /* {ARGS: "TestUser"} */ + {"NS_NOREGISTER_INVALID_DURATION", "$b%s$b is not a valid duration."}, /* {ARGS: "möp"} */ + {"NS_NOREGISTER_REGISTERED", "$b%s$b is currently registered and can't be added to the do-not-register list."}, /* {ARGS: "#TestChan"} */ + {"NS_NOREGISTER_DONE", "added $b%s$b to the do-not-register list."}, /* {ARGS: "#TestChan"} */ {"NS_NOREGISTER_HEAD", "The following do-not-registers were found:"}, {"NS_DNR_TARGET", "Target"}, {"NS_DNR_USER", "Issuer"}, -- 2.20.1