diff options
author | Kai Blin <kai@samba.org> | 2009-07-30 09:35:42 +0200 |
---|---|---|
committer | Kai Blin <kai@samba.org> | 2009-07-30 09:35:42 +0200 |
commit | 137a4015f04ea172c2610c9f5c9dd8295e1e4e0f (patch) | |
tree | 78155e836053f489f13058480ee0071b6a25b07d /source3/utils/net_file.c | |
parent | 3a7b04361e594a0a35229a7762d30daa3d4264bb (diff) | |
download | samba-137a4015f04ea172c2610c9f5c9dd8295e1e4e0f.tar.gz samba-137a4015f04ea172c2610c9f5c9dd8295e1e4e0f.tar.xz samba-137a4015f04ea172c2610c9f5c9dd8295e1e4e0f.zip |
s3 net: i18n support for net file
Diffstat (limited to 'source3/utils/net_file.c')
-rw-r--r-- | source3/utils/net_file.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/source3/utils/net_file.c b/source3/utils/net_file.c index 8aa1b0e443..27f2d24096 100644 --- a/source3/utils/net_file.c +++ b/source3/utils/net_file.c @@ -24,15 +24,15 @@ int net_file_usage(struct net_context *c, int argc, const char **argv) { - d_printf("net [<method>] file [misc. options] [targets]\n"\ - "\tlists all open files on file server\n\n"); - d_printf("net [<method>] file USER <username> "\ - "[misc. options] [targets]"\ - "\n\tlists all files opened by username on file server\n\n"); - d_printf("net [<method>] file CLOSE <id> [misc. options] [targets]\n"\ - "\tcloses specified file on target server\n\n"); - d_printf("net [rap] file INFO <id> [misc. options] [targets]\n"\ - "\tdisplays information about the specified open file\n"); + d_printf(_("net [<method>] file [misc. options] [targets]\n" + "\tlists all open files on file server\n")); + d_printf(_("net [<method>] file USER <username> " + "[misc. options] [targets]" + "\n\tlists all files opened by username on file server\n")); + d_printf(_("net [<method>] file CLOSE <id> [misc. options] [targets]\n" + "\tcloses specified file on target server\n")); + d_printf(_("net [rap] file INFO <id> [misc. options] [targets]\n" + "\tdisplays information about the specified open file\n")); net_common_methods_usage(c, argc, argv); net_common_flags_usage(c, argc, argv); |