1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-22 22:04:08 +03:00

s3 net: i18n support for net status

This commit is contained in:
Kai Blin 2009-08-11 08:35:46 +02:00
parent 7e4bd16c70
commit 5810f7f094
2 changed files with 36 additions and 33 deletions

View File

@ -32,7 +32,8 @@ FILES=`add_basedir_to_filelist ../../utils net.c net_ads.c net_ads_gpo.c \
net_join.c net_lookup.c net_lua.c net_rap.c net_registry.c \
net_registry_util.c net_rpc.c net_rpc_audit.c net_rpc_join.c \
net_rpc_printer.c net_rpc_registry.c net_rpc_rights.c net_rpc_samsync.c \
net_rpc_service.c net_rpc_sh_acct.c net_rpc_shell.c net_sam.c net_share.c`
net_rpc_service.c net_rpc_sh_acct.c net_rpc_shell.c net_sam.c \
net_share.c net_status.c`
LANGS="af ar bg bn bs ca cs cy da de el en_GB en_US es et fi fr gl gu he hi hr
hu id it ja ka km ko lo lt mk mr nb nl pa pl pt_BR pt ro ru si sk sl sr

View File

@ -21,10 +21,10 @@
int net_status_usage(struct net_context *c, int argc, const char **argv)
{
d_printf(" net status sessions [parseable] "
"Show list of open sessions\n");
d_printf(" net status shares [parseable] "
"Show list of open shares\n");
d_printf(_(" net status sessions [parseable] "
"Show list of open sessions\n"));
d_printf(_(" net status shares [parseable] "
"Show list of open shares\n"));
return -1;
}
@ -63,11 +63,11 @@ static int net_status_sessions(struct net_context *c, int argc, const char **arg
bool parseable;
if (c->display_usage) {
d_printf("Usage:\n"
"net status sessions [parseable]\n"
" Display open user sessions.\n"
" If parseable is specified, output is machine-"
"readable.\n");
d_printf(_("Usage:\n"
"net status sessions [parseable]\n"
" Display open user sessions.\n"
" If parseable is specified, output is machine-"
"readable.\n"));
return 0;
}
@ -80,16 +80,17 @@ static int net_status_sessions(struct net_context *c, int argc, const char **arg
}
if (!parseable) {
d_printf("PID Username Group Machine"
" \n");
d_printf("-------------------------------------------"
"------------------------\n");
d_printf(_("PID Username Group Machine"
" \n"
"-------------------------------------------"
"------------------------\n"));
}
db = db_open(NULL, lock_path("sessionid.tdb"), 0,
TDB_CLEAR_IF_FIRST, O_RDONLY, 0644);
if (db == NULL) {
d_fprintf(stderr, "%s not initialised\n", lock_path("sessionid.tdb"));
d_fprintf(stderr, _("%s not initialised\n"),
lock_path("sessionid.tdb"));
return -1;
}
@ -194,7 +195,8 @@ static int net_status_shares_parseable(struct net_context *c, int argc, const ch
db = db_open(NULL, lock_path("sessionid.tdb"), 0,
TDB_CLEAR_IF_FIRST, O_RDONLY, 0644);
if (db == NULL) {
d_fprintf(stderr, "%s not initialised\n", lock_path("sessionid.tdb"));
d_fprintf(stderr, _("%s not initialised\n"),
lock_path("sessionid.tdb"));
return -1;
}
@ -211,20 +213,20 @@ static int net_status_shares_parseable(struct net_context *c, int argc, const ch
static int net_status_shares(struct net_context *c, int argc, const char **argv)
{
if (c->display_usage) {
d_printf("Usage:\n"
"net status shares [parseable]\n"
" Display open user shares.\n"
" If parseable is specified, output is machine-"
"readable.\n");
d_printf(_("Usage:\n"
"net status shares [parseable]\n"
" Display open user shares.\n"
" If parseable is specified, output is machine-"
"readable.\n"));
return 0;
}
if (argc == 0) {
d_printf("\nService pid machine "
"Connected at\n");
d_printf("-------------------------------------"
"------------------\n");
d_printf(_("\nService pid machine "
"Connected at\n"
"-------------------------------------"
"------------------\n"));
connections_forall(show_share, NULL);
@ -245,19 +247,19 @@ int net_status(struct net_context *c, int argc, const char **argv)
"sessions",
net_status_sessions,
NET_TRANSPORT_LOCAL,
"Show list of open sessions",
"net status sessions [parseable]\n"
" If parseable is specified, output is presented "
"in a machine-parseable fashion."
N_("Show list of open sessions"),
N_("net status sessions [parseable]\n"
" If parseable is specified, output is presented "
"in a machine-parseable fashion.")
},
{
"shares",
net_status_shares,
NET_TRANSPORT_LOCAL,
"Show list of open shares",
"net status shares [parseable]\n"
" If parseable is specified, output is presented "
"in a machine-parseable fashion."
N_("Show list of open shares"),
N_("net status shares [parseable]\n"
" If parseable is specified, output is presented "
"in a machine-parseable fashion.")
},
{NULL, NULL, 0, NULL, NULL}
};