From a7f6c839bafeb8c163cec1c8b73603637621faa7 Mon Sep 17 00:00:00 2001 From: Kai Blin Date: Thu, 30 Jul 2009 11:30:33 +0200 Subject: s3 net: i18n support for net help --- source3/utils/net_help.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/utils/net_help.c') diff --git a/source3/utils/net_help.c b/source3/utils/net_help.c index 0502373aa2..20fb66c2e0 100644 --- a/source3/utils/net_help.c +++ b/source3/utils/net_help.c @@ -33,10 +33,10 @@ static int net_usage(struct net_context *c, int argc, const char **argv) struct functable *table = (struct functable*) c->private_data; int i; - d_printf("Usage:\n"); + d_printf(_("Usage:\n")); for (i=0; table[i].funcname != NULL; i++) { if (c->display_usage) { - d_printf("net %s usage:\n", table[i].funcname); + d_printf(_("net %s usage:\n"), table[i].funcname); d_printf("\n%s\n\n", table[i].usage); } else { d_printf("%s %-15s %s\n", "net", table[i].funcname, -- cgit