summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 71656b2)
raw | patch | inline | side by side (parent: 71656b2)
author | Benoit Mortier <opensides@users.sourceforge.net> | |
Sat, 25 Dec 2004 23:17:46 +0000 (23:17 +0000) | ||
committer | Benoit Mortier <opensides@users.sourceforge.net> | |
Sat, 25 Dec 2004 23:17:46 +0000 (23:17 +0000) |
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1061 f882894a-f735-0410-b71e-b25c423dba1c
41 files changed:
diff --git a/plugins/check_dig.c b/plugins/check_dig.c
index a44d578637bd84a6fa2451967e05f879ae18e6c1..c60789651492dd353c37e1f1bc320f9ab9e3d00c 100644 (file)
--- a/plugins/check_dig.c
+++ b/plugins/check_dig.c
if (verbose) {
printf ("%s\n", command_line);
if(expected_address != NULL) {
- printf ("Looking for: '%s'\n", expected_address);
+ printf (_("Looking for: '%s'\n"), expected_address);
} else {
- printf ("Looking for: '%s'\n", query_address);
+ printf (_("Looking for: '%s'\n"), query_address);
}
}
switch (c) {
case '?': /* help */
- printf (_("%s: Unknown argument: %s\n\n"), progname, optarg);
- print_usage ();
- exit (STATE_UNKNOWN);
+ usage2 (_("Unknown argument"), optarg);
case 'h': /* help */
print_help ();
exit (STATE_OK);
diff --git a/plugins/check_disk.c b/plugins/check_disk.c
index 669a1cd6b1fd62d9488b887a3e748f08a9288da1..ab9f66f8ba4dcafb68d31bc33073ae5785394c58 100644 (file)
--- a/plugins/check_disk.c
+++ b/plugins/check_disk.c
print_help ();
exit (STATE_OK);
case '?': /* help */
- printf (_("%s: Unknown argument: %s\n\n"), progname, optarg);
- print_usage ();
- exit (STATE_UNKNOWN);
+ usage2 (_("Unknown argument"), optarg);
}
}
if (mypath == NULL)
printf ("\n");
else
- printf (" for %s\n", mypath);
+ printf (_(" for %s\n"), mypath);
return;
}
diff --git a/plugins/check_dns.c b/plugins/check_dns.c
index 20cb6dd87a513de9f9027153d089c74ec1cf5092..e6483b9ce09505a31e12e94e95c3f2b663408937 100644 (file)
--- a/plugins/check_dns.c
+++ b/plugins/check_dns.c
asprintf(&address, "%s,%s", address, temp_buffer);
}
- else if (strstr (input_buffer, "Non-authoritative answer:")) {
+ else if (strstr (input_buffer, _("Non-authoritative answer:"))) {
non_authoritative = TRUE;
}
}
-
/* process command-line arguments */
int
process_arguments (int argc, char **argv)
switch (c) {
case '?': /* args not parsable */
- printf (_("%s: Unknown argument: %s\n\n"), progname, optarg);
- print_usage ();
- exit (STATE_UNKNOWN);
+ usage2 (_("Unknown argument"), optarg);
case 'h': /* help */
print_help ();
exit (STATE_OK);
}
-
int
validate_arguments ()
{
}
-
void
print_help (void)
{
}
-
void
print_usage (void)
{
diff --git a/plugins/check_dummy.c b/plugins/check_dummy.c
index 2dbbaec843b0bc38ee1f8110338ea6f71bf815b0..0892611508fe05ff5ed9bac779b8f7d9a367c476 100644 (file)
--- a/plugins/check_dummy.c
+++ b/plugins/check_dummy.c
void print_usage (void);
-
int
main (int argc, char **argv)
{
diff --git a/plugins/check_fping.c b/plugins/check_fping.c
index 7f05d4d53038ab297245a7eebc36bd409caf7285..5ffcd16e35ed3a02bcc9fafd61b7b0774720ba33 100644 (file)
--- a/plugins/check_fping.c
+++ b/plugins/check_fping.c
switch (c) {
case '?': /* print short usage statement if args not parsable */
- printf (_("%s: Unknown argument: %s\n\n"), progname, optarg);
- print_usage ();
- exit (STATE_UNKNOWN);
+ usage2 (_("Unknown argument"), optarg);
case 'h': /* help */
print_help ();
exit (STATE_OK);
}
}
-
if (server_name == NULL)
- usage (_("Hostname was not supplied\n\n"));
+ usage4 (_("Hostname was not supplied"));
return OK;
}
-
int
get_threshold (char *arg, char *rv[2])
{
}
-
void
print_help (void)
{
}
-
void
print_usage (void)
{
diff --git a/plugins/check_game.c b/plugins/check_game.c
index 6699c71dddc7f3992e8b99e83ed76ad369aaa41f..05b363af509259c1a4ebc8556306fb90d99835e0 100644 (file)
--- a/plugins/check_game.c
+++ b/plugins/check_game.c
}
if (strstr (ret[2], QSTAT_HOST_ERROR)) {
- printf ("CRITICAL - Host not found\n");
+ printf (_("CRITICAL - Host not found\n"));
result = STATE_CRITICAL;
}
else if (strstr (ret[2], QSTAT_HOST_DOWN)) {
- printf ("CRITICAL - Game server down or unavailable\n");
+ printf (_("CRITICAL - Game server down or unavailable\n"));
result = STATE_CRITICAL;
}
else if (strstr (ret[2], QSTAT_HOST_TIMEOUT)) {
- printf ("CRITICAL - Game server timeout\n");
+ printf (_("CRITICAL - Game server timeout\n"));
result = STATE_CRITICAL;
}
else {
}
-
int
process_arguments (int argc, char **argv)
{
switch (c) {
case '?': /* args not parsable */
- printf (_("%s: Unknown argument: %s\n\n"), progname, optarg);
- print_usage ();
- exit (STATE_UNKNOWN);
+ usage2 (_("Unknown argument"), optarg);
case 'h': /* help */
print_help ();
exit (STATE_OK);
return validate_arguments ();
}
+
int
validate_arguments (void)
{
}
-
-
-
void
print_help (void)
{
diff --git a/plugins/check_hpjd.c b/plugins/check_hpjd.c
index 53769565b87827c84778f0472ec2ac1a94fdd2e3..dd49893b8f955011a3e26964bab39113d49f1ee6 100644 (file)
--- a/plugins/check_hpjd.c
+++ b/plugins/check_hpjd.c
}
-
/* process command-line arguments */
int
process_arguments (int argc, char **argv)
print_help ();
exit (STATE_OK);
case '?': /* help */
- printf (_("%s: Unknown argument: %s\n\n"), progname, optarg);
- print_usage ();
- exit (STATE_UNKNOWN);
+ usage2 (_("Unknown argument"), optarg);
}
}
}
-
int
validate_arguments (void)
{
}
-
void
print_help (void)
{
diff --git a/plugins/check_icmp.c b/plugins/check_icmp.c
index cbd686423a3261492ec04af51a0686903e6d9f2a..4571682498d0227cac6d763ac555987953489d78 100644 (file)
--- a/plugins/check_icmp.c
+++ b/plugins/check_icmp.c
/* check if we are root */
if(geteuid()) {
- printf("Root access needed (for raw sockets)\n");
+ printf(_("Root access needed (for raw sockets)\n"));
exit(STATE_UNKNOWN);
}
/* confirm that ICMP is available on this machine */
if((proto = getprotobyname("icmp")) == NULL)
- crash("icmp: unknown protocol");
+ crash(_("icmp: unknown protocol"));
/* create raw socket for ICMP calls (ping) */
sock = socket(AF_INET, SOCK_RAW, proto->p_proto);
if(sock < 0)
- crash("can't create raw socket");
+ crash(_("Can't create raw socket"));
/* drop privileges now that we have the socket */
if((uid = getuid())) {
ident = getpid() & 0xFFFF;
if(!(host_base_ptr = malloc(sizeof(struct host_name_list)))) {
- crash("Unable to allocate memory for host name list\n");
+ crash(_("Unable to allocate memory for host name list\n"));
}
host_ptr = host_base_ptr;
switch (c) {
case 'H':
if(!(host_ptr->entry = malloc(strlen(optarg) + 1))) {
- crash("Failed to allocate memory for hostname");
+ crash(_("Failed to allocate memory for hostname"));
}
memset(host_ptr->entry, 0, strlen(optarg) + 1);
host_ptr->entry = memcpy(host_ptr->entry, optarg, strlen(optarg));
if(!(host_ptr->next = malloc(sizeof(struct host_name_list))))
- crash("Failed to allocate memory for hostname");
+ crash(_("Failed to allocate memory for hostname"));
host_ptr = host_ptr->next;
host_ptr->next = NULL;
// add_name(optarg);
break;
case 'w':
if(get_threshold(optarg, &warn)) {
- printf("Illegal threshold pair specified for -%c", c);
+ printf(_("Illegal threshold pair specified for -%c"), c);
print_usage();
}
break;
case 'c':
if(get_threshold(optarg, &crit)) {
- printf("Illegal threshold pair specified for -%c", c);
+ printf(_("Illegal threshold pair specified for -%c"), c);
print_usage();
}
break;
case 't':
if(!(timeout = (u_int) strtoul(optarg, NULL, 0) * 100)) {
- printf("option -%c requires integer argument\n", c);
+ printf(_("Option -%c requires integer argument\n"), c);
print_usage();
}
break;
case 'r':
if(!(retry = (u_int) strtoul(optarg, NULL, 0))) {
- printf("option -%c requires integer argument\n", c);
+ printf(_("Option -%c requires integer argument\n"), c);
print_usage();
}
break;
case 'i':
if(!(interval = (u_int) strtoul(optarg, NULL, 0) * 100)) {
- printf("option -%c requires positive non-zero integer argument\n", c);
+ printf(_("Option -%c requires positive non-zero integer argument\n"), c);
print_usage();
}
break;
case 'p':
case 'n':
if(!(count = (u_int) strtoul(optarg, NULL, 0))) {
- printf("option -%c requires positive non-zero integer argument\n", c);
+ printf(_("Option -%c requires positive non-zero integer argument\n"), c);
print_usage();
}
break;
case 'b':
if(!(ping_data_size = (u_int) strtoul(optarg, NULL, 0))) {
- printf("option -%c requires integer argument\n", c);
+ printf(_("Option -%c requires integer argument\n"), c);
print_usage();
}
break;
break;
default:
- printf("option flag -%c specified, but not recognized\n", c);
+ printf(_("Option flag -%c specified, but not recognized\n"), c);
print_usage();
break;
}
else if(timeout < warn.rta) timeout = warn.rta;
if((interval < MIN_INTERVAL * 100 || retry > MAX_RETRY) && getuid()) {
- printf("%s: these options are too risky for mere mortals.\n", prog);
- printf("%s: You need i >= %u and r < %u\n",
+ printf(_("%s: these options are too risky for mere mortals.\n"), prog);
+ printf(_("%s: You need i >= %u and r < %u\n"),
prog, MIN_INTERVAL, MAX_RETRY);
- printf("Current settings; i = %d, r = %d\n",
+ printf(_("Current settings; i = %d, r = %d\n"),
interval / 100, retry);
print_usage();
}
if((ping_data_size > MAX_PING_DATA) || (ping_data_size < MIN_PING_DATA)) {
- printf("%s: data size %u not valid, must be between %u and %u\n",
+ printf(_("%s: data size %u not valid, must be between %u and %u\n"),
prog, ping_data_size, MIN_PING_DATA, MAX_PING_DATA);
print_usage();
}
if((backoff > MAX_BACKOFF_FACTOR) || (backoff < MIN_BACKOFF_FACTOR)) {
- printf("%s: backoff factor %.1f not valid, must be between %.1f and %.1f\n",
+ printf(_("%s: backoff factor %.1f not valid, must be between %.1f and %.1f\n"),
prog, backoff, MIN_BACKOFF_FACTOR, MAX_BACKOFF_FACTOR);
print_usage();
}
if(count > MAX_COUNT) {
- printf("%s: count %u not valid, must be less than %u\n",
+ printf(_("%s: count %u not valid, must be less than %u\n"),
prog, count, MAX_COUNT);
print_usage();
}
/* generate requires command line parameters beyond the switches */
if(generate_flag && !*argv) {
- printf("generate flag requires command line parameters beyond switches\n");
+ printf(_("Generate flag requires command line parameters beyond switches\n"));
print_usage();
}
if(*argv && !generate_flag) {
while(*argv) {
if(!(host_ptr->entry = malloc(strlen(*argv) + 1))) {
- crash("Failed to allocate memory for hostname");
+ crash(_("Failed to allocate memory for hostname"));
}
memset(host_ptr->entry, 0, strlen(*argv) + 1);
host_ptr->entry = memcpy(host_ptr->entry, *argv, strlen(*argv));
if(!(host_ptr->next = malloc(sizeof(struct host_name_list))))
- crash("Failed to allocate memory for hostname");
+ crash(_("Failed to allocate memory for hostname"));
host_ptr = host_ptr->next;
host_ptr->next = NULL;
}
if(!num_hosts) {
- printf("No hosts to work with!\n\n");
+ printf(_("No hosts to work with!\n\n"));
print_usage();
}
/* allocate array to hold outstanding ping requests */
table = (HOST_ENTRY **) malloc(sizeof(HOST_ENTRY *) * num_hosts);
- if(!table) crash("Can't malloc array of hosts");
+ if(!table) crash(_("Can't malloc array of hosts"));
cursor = rrlist;
warn.pl, crit.pl);
}
else {
- printf("%s is down (lost 100%%)", h->host);
+ printf(_("%s is down (lost 100%%)"), h->host);
}
}
else {
}
if(num_noaddress) {
- printf("No hostaddress specified.\n");
+ printf(_("No hostaddress specified.\n"));
print_usage();
}
else if(num_alive != num_hosts) {
if(num_hosts > 1) {
if(num_alive == num_hosts) {
- printf("OK - All %d hosts are alive\n", num_hosts);
+ printf(_("OK - All %d hosts are alive\n"), num_hosts);
}
else {
- printf("CRITICAL - %d of %d hosts are alive\n", num_alive, num_hosts);
+ printf(_("CRITICAL - %d of %d hosts are alive\n"), num_alive, num_hosts);
}
}
exit(fin_stat);
buffer = (char *)malloc((size_t) ping_pkt_size);
if(!buffer)
- crash("can't malloc ping packet");
+ crash(_("Can't malloc ping packet"));
memset(buffer, 0, ping_pkt_size * sizeof(char));
icp = (struct icmp *)buffer;
if(n < 0 || (unsigned int)n != ping_pkt_size) {
if(unreachable_flag) {
- printf("%s error while sending ping: %s\n",
+ printf(_("%s error while sending ping: %s\n"),
h->host, strerror(errno));
} /* IF */
#endif /* defined(__alpha__) && __STDC__ */
if(result < hlen + ICMP_MINLEN) {
- printf("received packet too short for ICMP (%d bytes from %s)\n", result,
+ printf(_("Received packet too short for ICMP (%d bytes from %s)\n"), result,
inet_ntoa(response_addr.sin_addr));
return (1); /* too short */
/* note reply time in array, probably */
if((this_count >= 0) && ((unsigned int)this_count < trials)) {
if(h->resp_times[this_count] != RESP_WAITING) {
- printf("%s : duplicate for [%d], %d bytes, %s ms",
+ printf(_("%s : duplicate for [%d], %d bytes, %s ms"),
h->host, this_count, result, sprint_tm(this_reply));
if(response_addr.sin_addr.s_addr != h->saddr.sin_addr.s_addr)
} /* IF */
else {
/* count is out of bounds?? */
- printf("%s : duplicate for [%d], %d bytes, %s ms\n",
+ printf(_("%s : duplicate for [%d], %d bytes, %s ms\n"),
h->host, this_count, result, sprint_tm(this_reply));
} /* ELSE */
h = table[sent_icmp->icmp_seq];
if(p->icmp_code > ICMP_UNREACH_MAXTYPE) {
- printf("ICMP Unreachable (Invalid Code) from %s for ICMP Echo sent to %s",
+ printf(_("ICMP Unreachable (Invalid Code) from %s for ICMP Echo sent to %s"),
inet_ntoa(addr->sin_addr), h->host);
} /* IF */
else {
- printf("ICMP Unreachable from %s for ICMP Echo sent to %s",
+ printf(_("ICMP Unreachable from %s for ICMP Echo sent to %s"),
inet_ntoa(addr->sin_addr), h->host);
} /* ELSE */
(sent_icmp->icmp_seq < (n_short) num_hosts)) {
/* this is a response to a ping we sent */
h = table[sent_icmp->icmp_seq];
- printf("ICMP Unreachable from %s for ICMP Echo sent to %s",
+ printf(_("ICMP Unreachable from %s for ICMP Echo sent to %s"),
inet_ntoa(addr->sin_addr), h->host);
if(inet_addr(h->host) == INADDR_NONE)
} /* IF */
if(host_ent == NULL) {
- printf("%s address not found\n", name);
+ printf(_("%s address not found\n"), name);
num_noaddress++;
return;
} /* IF */
host_add = (struct in_addr *)*(host_ent->h_addr_list);
if(host_add == NULL) {
- printf("%s has no address data\n", name);
+ printf(_("%s has no address data\n"), name);
num_noaddress++;
return;
} /* IF */
nm = (char *)malloc(strlen(name) + strlen(as) + 4);
if(!nm)
- crash("can't allocate some space for a string");
+ crash(_("Can't allocate some space for a string"));
strcpy(nm, name);
strcat(nm, " (");
int *i;
if(!(p = (HOST_ENTRY *) malloc(sizeof(HOST_ENTRY)))) {
- crash("can't allocate HOST_ENTRY");
+ crash(_("Can't allocate HOST_ENTRY"));
}
memset((char *)p, 0, sizeof(HOST_ENTRY));
/* array for response time results */
if(!(i = (int *)malloc(trials * sizeof(int)))) {
- crash("can't allocate resp_times array");
+ crash(_("Can't allocate resp_times array"));
}
for(n = 1; n < trials; n++)
if(string) {
dst = (char *)malloc(1 + strlen(string));
- if(!dst) crash("malloc() failed!");
+ if(!dst) crash(_("malloc() failed!"));
strcpy(dst, string);
return dst;
if(errno)
printf("%s: %s : %s\n", prog, msg, strerror(errno));
if(h_errno)
- printf("%s: %s : A network error occurred\n", prog, msg);
+ printf(_("%s: %s : A network error occurred\n"), prog, msg);
}
else printf("%s: %s\n", prog, msg);
FD_ZERO(&readset);
nfound = select(0, &readset, &writeset, NULL, &to);
if(nfound < 0)
- crash("select() in u_sleep:");
+ crash(_("select() in u_sleep:"));
return;
} /* u_sleep() */
@@ -1306,14 +1306,14 @@ int recvfrom_wto(int lsock, char *buf, int len, struct sockaddr *saddr, int timo
FD_ZERO(&writeset);
FD_SET(lsock, &readset);
nfound = select(lsock + 1, &readset, &writeset, NULL, &to);
- if(nfound < 0) crash("select() in recvfrom_wto");
+ if(nfound < 0) crash(_("select() in recvfrom_wto"));
if(nfound == 0) return -1; /* timeout */
if(nfound) {
slen = sizeof(struct sockaddr);
n = recvfrom(sock, buf, len, 0, saddr, &slen);
- if(n < 0) crash("recvfrom");
+ if(n < 0) crash(_("recvfrom"));
return(n);
}
index 644dc4881c0c48d0b363fb9e7ff27ea06f890585..16cd1a875b7289fa1bdb7c7da2d31ea413383510 100644 (file)
print_revision (progname, revision);
return STATE_OK;
default:
- printf (_("%s: Unknown argument: %s\n\n"), progname, optarg);
- print_usage ();
- exit (STATE_UNKNOWN);
+ usage2 (_("Unknown argument"), optarg);
}
if (optind < argc) {
}
-
void
print_help ()
{
}
-
void
print_usage (void)
{
diff --git a/plugins/check_ldap.c b/plugins/check_ldap.c
index 582c956464290e57b39d5d4db5e20e0d6d0ec0f6..4f14328074cc92b964ab51633fdcec8db46ed9f4 100644 (file)
--- a/plugins/check_ldap.c
+++ b/plugins/check_ldap.c
if (ldap_set_option (ld, LDAP_OPT_X_TLS, &tls) != LDAP_SUCCESS)
{
/*ldap_perror(ld, "ldaps_option"); */
- printf ("Could not init TLS at port %i!\n", ld_port);
+ printf (_("Could not init TLS at port %i!\n"), ld_port);
return STATE_CRITICAL;
}
#else
- printf ("TLS not supported by the libraries!\n", ld_port);
+ printf (_("TLS not supported by the libraries!\n"), ld_port);
return STATE_CRITICAL;
#endif /* LDAP_OPT_X_TLS */
} else {
if (ldap_start_tls_s(ld, NULL, NULL) != LDAP_SUCCESS)
{
/*ldap_perror(ld, "ldap_start_tls"); */
- printf ("Could not init startTLS at port %i!\n", ld_port);
+ printf (_("Could not init startTLS at port %i!\n"), ld_port);
return STATE_CRITICAL;
}
#else
- printf ("startTLS not supported by the library, needs LDAPv3!\n");
+ printf (_("startTLS not supported by the library, needs LDAPv3!\n"));
return STATE_CRITICAL;
#endif /* HAVE_LDAP_START_TLS_S */
}
#endif
break;
default:
- printf (_("%s: Unknown argument: %s\n\n"), progname, optarg);
- print_usage ();
- exit (STATE_UNKNOWN);
+ usage2 (_("Unknown argument"), optarg);
}
}
return validate_arguments ();
}
+
int
validate_arguments ()
{
if (ld_host==NULL || strlen(ld_host)==0)
- usage (_("please specify the host name\n"));
+ usage4 (_("Please specify the host name\n"));
if (ld_base==NULL || strlen(ld_base)==0)
- usage (_("please specify the LDAP base\n"));
+ usage4 (_("Please specify the LDAP base\n"));
return OK;
-
}
-
void
print_help (void)
{
}
-
void
print_usage (void)
{
diff --git a/plugins/check_load.c b/plugins/check_load.c
index 1b7865c7be67fe78a3cd093a2c45226976467407..7e1cc481e9d777b3662cf404c9f65c6322f9d6eb 100644 (file)
--- a/plugins/check_load.c
+++ b/plugins/check_load.c
print_help ();
exit (STATE_OK);
case '?': /* help */
- printf (_("%s: Unknown argument: %s\n\n"), progname, optarg);
- print_usage ();
- exit (STATE_UNKNOWN);
+ usage2 (_("Unknown argument"), optarg);
}
}
diff --git a/plugins/check_mrtg.c b/plugins/check_mrtg.c
index bd37aefff893d18c441b7cefdbd8d53b4093a5d0..067429cf26eddc83518d22b2d60ddbff0d11cfbd 100644 (file)
--- a/plugins/check_mrtg.c
+++ b/plugins/check_mrtg.c
print_help ();
exit (STATE_OK);
case '?': /* help */
- printf (_("%s: Unknown argument: %s\n\n"), progname, optarg);
- print_usage ();
- exit (STATE_UNKNOWN);
+ usage2 (_("Unknown argument"), optarg);
}
}
index 096b3bded3478c95778d8b001a704deb2bf202dd..877072ce2e89f72582815b6924747717bed0658e 100644 (file)
--- a/plugins/check_mrtgtraf.c
+++ b/plugins/check_mrtgtraf.c
print_help ();
exit (STATE_OK);
case '?': /* help */
- printf (_("%s: Unknown argument: %s\n\n"), progname, optarg);
- print_usage ();
- exit (STATE_UNKNOWN);
+ usage2 (_("Unknown argument"), optarg);
}
}
}
-
int
validate_arguments (void)
{
}
-
void
print_help (void)
{
diff --git a/plugins/check_mysql.c b/plugins/check_mysql.c
index 1e7a82f92011eb5a6bec752b379b4252e1a3f22d..735eaa2ea8a511f4044d944172f2752c2ddc5721 100644 (file)
--- a/plugins/check_mysql.c
+++ b/plugins/check_mysql.c
/* check the slave status */
if (mysql_query (&mysql, "show slave status") != 0) {
mysql_close (&mysql);
- die (STATE_CRITICAL, "slave query error: %s\n", mysql_error (&mysql));
+ die (STATE_CRITICAL, _("slave query error: %s\n"), mysql_error (&mysql));
}
/* store the result */
if ( (res = mysql_store_result (&mysql)) == NULL) {
mysql_close (&mysql);
- die (STATE_CRITICAL, "slave store_result error: %s\n", mysql_error (&mysql));
+ die (STATE_CRITICAL, _("slave store_result error: %s\n"), mysql_error (&mysql));
}
/* fetch the first row */
if ( (row = mysql_fetch_row (res)) == NULL) {
mysql_free_result (res);
mysql_close (&mysql);
- die (STATE_CRITICAL, "slave fetch row error: %s\n", mysql_error (&mysql));
+ die (STATE_CRITICAL, _("slave fetch row error: %s\n"), mysql_error (&mysql));
}
if (mysql_field_count (&mysql) == 12) {
/* mysql 3.23.x */
- snprintf (slaveresult, SLAVERESULTSIZE, "Slave running: %s", row[6]);
+ snprintf (slaveresult, SLAVERESULTSIZE, _("Slave running: %s"), row[6]);
if (strcmp (row[6], "Yes") != 0) {
mysql_free_result (res);
mysql_close (&mysql);
}
-
/* process command-line arguments */
int
process_arguments (int argc, char **argv)
print_help ();
exit (STATE_OK);
case '?': /* help */
- printf (_("%s: Unknown argument: %s\n\n"), progname, optarg);
- print_usage ();
- exit (STATE_UNKNOWN);
+ usage2 (_("Unknown argument"), optarg);
}
}
}
-
int
validate_arguments (void)
{
}
-
void
print_help (void)
{
}
-
void
print_usage (void)
{
diff --git a/plugins/check_nagios.c b/plugins/check_nagios.c
index 465b409dcea420c0ac35e4f696cb94bc420bea29..0176983c5866f900a20587416cfe3aa9b4bab70e 100644 (file)
--- a/plugins/check_nagios.c
+++ b/plugins/check_nagios.c
fclose (fp);
if (verbose >= 2)
- printf("command: %s\n", PS_COMMAND);
+ printf(_("command: %s\n"), PS_COMMAND);
/* run the command to check for the Nagios process.. */
child_process = spopen (PS_COMMAND);
expire_minutes = atoi (argv[2]);
else
die (STATE_UNKNOWN,
- _("Expiration time must be an integer (seconds)\nType '%s -h' for additional help\n"),
- progname);
+ _("Expiration time must be an integer (seconds)\n"));
process_string = argv[3];
return OK;
}
switch (c) {
case '?': /* print short usage statement if args not parsable */
- printf (_("%s: Unknown argument: %c\n\n"), progname, optopt);
- print_usage ();
- exit (STATE_UNKNOWN);
+ usage2 (_("Unknown argument"), optarg);
case 'h': /* help */
print_help ();
exit (STATE_OK);
expire_minutes = atoi (optarg);
else
die (STATE_UNKNOWN,
- _("Expiration time must be an integer (seconds)\nType '%s -h' for additional help\n"),
- progname);
+ _("Expiration time must be an integer (seconds)\n"));
break;
case 'v':
verbose++;
if (status_log == NULL)
die (STATE_UNKNOWN,
- _("You must provide the status_log\nType '%s -h' for additional help\n"),
- progname);
+ _("You must provide the status_log\n"));
else if (process_string == NULL)
die (STATE_UNKNOWN,
- _("You must provide a process string\nType '%s -h' for additional help\n"),
- progname);
+ _("You must provide a process string\n"));
return OK;
}
diff --git a/plugins/check_nt.c b/plugins/check_nt.c
index fa93fce745fb82ffb71b128586798c98bacd65fd..cac826f5502a0eaa53abf4f18855d443e045b408 100644 (file)
--- a/plugins/check_nt.c
+++ b/plugins/check_nt.c
case CHECK_NONE:
default:
- usage (_("Please specify a variable to check"));
+ usage4 (_("Please specify a variable to check"));
break;
}
switch (c)
{
case '?': /* print short usage statement if args not parsable */
- printf("%s: Unknown argument: %s\n\n",progname,optarg);
- print_usage();
- exit(STATE_UNKNOWN);
+ usage2 (_("Unknown argument"), optarg);
case 'h': /* help */
print_help();
exit(STATE_OK);
case 'V': /* version */
- print_revision(progname,"$Revision$");
+ print_revision(progname,revision);
exit(STATE_OK);
case 'H': /* hostname */
if (server_address) free(server_address);
if (is_intnonneg(optarg))
server_port=atoi(optarg);
else
- die(STATE_UNKNOWN,_("Server port an integer (seconds)\nType '%s -h' for additional help\n"),progname);
+ die(STATE_UNKNOWN,_("Server port must be an integer\n"));
break;
case 'v':
if(strlen(optarg)<4)
result=process_tcp_request(address, port, sendb, recv_buffer,sizeof(recv_buffer));
if(result!=STATE_OK)
- die (result, "could not fetch information from server\n");
+ die (result, _("could not fetch information from server\n"));
if (!strncmp(recv_buffer,"ERROR",5))
die (STATE_UNKNOWN, "NSClient - %s\n",recv_buffer);
diff --git a/plugins/check_nwstat.c b/plugins/check_nwstat.c
index 2d7e611da8f437f8052a046fff6535530bae076c..601b25d32178004370c01f0a74d2baa3122f6772 100644 (file)
--- a/plugins/check_nwstat.c
+++ b/plugins/check_nwstat.c
switch (c)
{
case '?': /* print short usage statement if args not parsable */
- printf ("%s: Unknown argument: %s\n\n", progname, optarg);
- print_usage();
- exit(STATE_UNKNOWN);
+ usage2 (_("Unknown argument"), optarg);
case 'h': /* help */
print_help();
exit(STATE_OK);
if (is_intnonneg(optarg))
server_port=atoi(optarg);
else
- die(STATE_UNKNOWN,_("Server port an integer (seconds)\nType '%s -h' for additional help\n"),progname);
+ die(STATE_UNKNOWN,_("Server port an integer\n"));
break;
case 'v':
if (strlen(optarg)<3)
diff --git a/plugins/check_overcr.c b/plugins/check_overcr.c
index 9bf40d3cac151b90bd075516e183dbc29168cc43..a4abf2b9cc35060de8457623e0963f0d7e03e711 100644 (file)
--- a/plugins/check_overcr.c
+++ b/plugins/check_overcr.c
die (STATE_UNKNOWN, _("Nothing to check!\n"));
break;
}
-
- /* reset timeout */
-/* alarm (0); */
-
-/* printf (_("Reached end of program with no data returned\n")); */
-
-/* return result; */
}
-
/* process command-line arguments */
int
process_arguments (int argc, char **argv)
switch (c) {
case '?': /* print short usage statement if args not parsable */
- printf (_("%s: Unknown argument: %s\n\n"), progname, optarg);
- print_usage ();
- exit (STATE_UNKNOWN);
+ usage2 (_("Unknown argument"), optarg);
case 'h': /* help */
print_help ();
exit (STATE_OK);
server_port = atoi (optarg);
else
die (STATE_UNKNOWN,
- _("Server port an integer (seconds)\nType '%s -h' for additional help\n"),
- progname);
+ _("Server port an integer\n"));
break;
case 'v': /* variable */
if (strcmp (optarg, "LOAD") == 0) {
}
-
void
print_help (void)
{
}
-
void
print_usage (void)
{
diff --git a/plugins/check_pgsql.c b/plugins/check_pgsql.c
index b5b9ff810bebc38967b7573b204569fe008c6b37..d56ce9b0e2b5e5264440e552c939c24c325df915 100644 (file)
--- a/plugins/check_pgsql.c
+++ b/plugins/check_pgsql.c
switch (c) {
case '?': /* usage */
- printf (_("%s: Unknown argument: %s\n\n"), progname, optarg);
- print_usage ();
- exit (STATE_UNKNOWN);
+ usage2 (_("Unknown argument"), optarg);
case 'h': /* help */
print_help ();
exit (STATE_OK);
break;
case 'w': /* warning time threshold */
if (!is_nonnegative (optarg))
- usage2 (_("Critical threshold must be a positive integer"), optarg);
+ usage2 (_("Warning threshold must be a positive integer"), optarg);
else
twarn = strtod (optarg, NULL);
break;
diff --git a/plugins/check_ping.c b/plugins/check_ping.c
index 91764666da93e02f76daf4d3de2e729b7680fa29..818bb668f5b58bbe7287b24c648e852ecd989e2a 100644 (file)
--- a/plugins/check_ping.c
+++ b/plugins/check_ping.c
switch (c) {
case '?': /* usage */
- printf (_("%s: Unknown argument: %s\n\n"), progname, optarg);
- print_usage ();
- exit (STATE_UNKNOWN);
+ usage2 (_("Unknown argument"), optarg);
case 'h': /* help */
print_help ();
exit (STATE_OK);
diff --git a/plugins/check_procs.c b/plugins/check_procs.c
index 1be93f464b81202db11cec6459b9d39b837c89f8..0cd9153cbc5fcf6335ad8ff2e14d270c61e90694 100644 (file)
--- a/plugins/check_procs.c
+++ b/plugins/check_procs.c
switch (c) {
case '?': /* help */
- printf (_("%s: Unknown argument: %s\n\n"), progname, optarg);
- print_usage ();
- exit (STATE_UNKNOWN);
+ usage2 (_("Unknown argument"), optarg);
case 'h': /* help */
print_help ();
exit (STATE_OK);
else if (sscanf (optarg, "%d:", &cmin) == 1)
break;
else
- usage (_("Critical Process Count must be an integer!\n\n"));
+ usage4 (_("Critical Process Count must be an integer!"));
break;
case 'w': /* warning threshold */
if (is_integer (optarg))
else if (sscanf (optarg, "%d:", &wmin) == 1)
break;
else
- usage (_("Warning Process Count must be an integer!\n\n"));
+ usage4 (_("Warning Process Count must be an integer!"));
break;
case 'p': /* process id */
if (sscanf (optarg, "%d%[^0-9]", &ppid, tmp) == 1) {
options |= PPID;
break;
}
- usage2 (_("%s: Parent Process ID must be an integer!\n\n"), progname);
+ usage4 (_("Parent Process ID must be an integer!"));
case 's': /* status */
if (statopts)
break;
pw = getpwuid ((uid_t) uid);
/* check to be sure user exists */
if (pw == NULL)
- usage2 (_("UID %s was not found\n"), optarg);
+ usage2 (_("UID %s was not found"), optarg);
}
else {
pw = getpwnam (optarg);
/* check to be sure user exists */
if (pw == NULL)
- usage2 (_("User name %s was not found\n"), optarg);
+ usage2 (_("User name %s was not found"), optarg);
/* then get uid */
uid = pw->pw_uid;
}
options |= RSS;
break;
}
- usage2 (_("%s: RSS must be an integer!\n\n"), progname);
+ usage4 (_("RSS must be an integer!"));
case 'z': /* VSZ */
if (sscanf (optarg, "%d%[^0-9]", &vsz, tmp) == 1) {
asprintf (&fmt, _("%s%sVSZ >= %d"), (fmt ? fmt : ""), (options ? ", " : ""), vsz);
options |= VSZ;
break;
}
- usage2 (_("%s: VSZ must be an integer!\n\n"), progname);
+ usage4 (_("VSZ must be an integer!"));
case 'P': /* PCPU */
/* TODO: -P 1.5.5 is accepted */
if (sscanf (optarg, "%f%[^0-9.]", &pcpu, tmp) == 1) {
options |= PCPU;
break;
}
- usage2 (_("%s: PCPU must be a float!\n\n"), progname);
+ usage4 (_("PCPU must be a float!"));
case 'm':
asprintf (&metric_name, "%s", optarg);
if ( strcmp(optarg, "PROCS") == 0) {
break;
}
- printf (_("%s: metric must be one of PROCS, VSZ, RSS, CPU, ELAPSED!\n\n"),
- progname);
- print_usage ();
- exit (STATE_UNKNOWN);
+ usage4 (_("Metric must be one of PROCS, VSZ, RSS, CPU, ELAPSED!"));
case 'v': /* command */
verbose++;
break;
}
-
-
/* convert the elapsed time to seconds */
int
convert_to_seconds(char *etime) {
}
-
void
print_help (void)
{
diff --git a/plugins/check_radius.c b/plugins/check_radius.c
index 9e1046865e2e4e0a574db7cb2bdc786e460f37f4..07ee4c7f35bcedaa7c61d7a3a585060cb6d7b369 100644 (file)
--- a/plugins/check_radius.c
+++ b/plugins/check_radius.c
if (is_intpos (argv[5]))
retries = atoi (argv[5]);
else
- usage (_("Number of retries must be a positive integer"));
+ usage4 (_("Number of retries must be a positive integer"));
server = argv[6];
if (is_intpos (argv[7]))
port = atoi (argv[7]);
else
- usage (_("Port must be a positive integer"));
+ usage4 (_("Port must be a positive integer"));
expect = argv[8];
return OK;
}
switch (c) {
case '?': /* print short usage statement if args not parsable */
- printf (_("%s: Unknown argument: %s\n\n"), progname, optarg);
- print_usage ();
- exit (STATE_UNKNOWN);
+ usage2 (_("Unknown argument"), optarg);
case 'h': /* help */
print_help ();
exit (OK);
if (is_intnonneg (optarg))
port = atoi (optarg);
else
- usage (_("Port must be a positive integer"));
+ usage4 (_("Port must be a positive integer"));
break;
case 'u': /* username */
username = optarg;
if (is_intpos (optarg))
retries = atoi (optarg);
else
- usage (_("Number of retries must be a positive integer"));
+ usage4 (_("Number of retries must be a positive integer"));
break;
case 't': /* timeout */
if (is_intpos (optarg))
diff --git a/plugins/check_real.c b/plugins/check_real.c
index 30424656ef411a3c3af0646865b7298e5de2d172..eb892c77fc594d8efbb911cbdffca387c0a934b1 100644 (file)
--- a/plugins/check_real.c
+++ b/plugins/check_real.c
check_critical_time = TRUE;
}
else {
- usage4 (_("Critical time must be a nonnegative integer"));
+ usage4 (_("Critical time must be a positive integer"));
}
break;
case 'v': /* verbose */
socket_timeout = atoi (optarg);
}
else {
- usage4 (_("Time interval must be a nonnegative integer"));
+ usage4 (_("Timeout interval must be a positive integer"));
}
break;
case 'V': /* version */
print_help ();
exit (STATE_OK);
case '?': /* usage */
- printf (_("%s: Unknown argument: %s\n\n"), progname, optarg);
- print_usage ();
- exit (STATE_UNKNOWN);
+ usage2 (_("Unknown argument"), optarg);
}
}
}
if (server_address==NULL)
- usage (_("You must provide a server to check\n"));
+ usage4 (_("You must provide a server to check"));
if (host_name==NULL)
host_name = strdup (server_address);
diff --git a/plugins/check_smtp.c b/plugins/check_smtp.c
index b6c60c244ebf5ea73446fc28ca8a0a017e3fb3f4..55cf5da567ad4efba2b4213bddd7b866dd7d4141 100644 (file)
--- a/plugins/check_smtp.c
+++ b/plugins/check_smtp.c
socket_timeout = atoi (optarg);
}
else {
- usage4 (_("Time interval must be a positive integer"));
+ usage4 (_("Timeout interval must be a positive integer"));
}
break;
case '4':
print_help ();
exit (STATE_OK);
case '?': /* help */
- printf (_("%s: Unknown argument: %s\n\n"), progname, optarg);
- print_usage ();
- exit (STATE_UNKNOWN);
+ usage2 (_("Unknown argument"), optarg);
}
}
diff --git a/plugins/check_snmp.c b/plugins/check_snmp.c
index c1c4ea831b7db57093296956fe12ebb9fbde1e94..5f221218d5e4ad7d4410adbd5874a18f6ee134d0 100644 (file)
--- a/plugins/check_snmp.c
+++ b/plugins/check_snmp.c
eval_method[i] & WARN_NE) {
p2 = strpbrk (p2, "0123456789");
if (p2 == NULL)
- die (STATE_UNKNOWN,"No valid data returned");
+ die (STATE_UNKNOWN,_("No valid data returned"));
response_value[i] = strtoul (p2, NULL, 10);
iresult = check_num (i);
asprintf (&show, "%lu", response_value[i]);
switch (c) {
case '?': /* usage */
- printf (_("%s: Unknown argument: %s\n\n"), progname, optarg);
- print_usage ();
- exit (STATE_UNKNOWN);
+ usage2 (_("Unknown argument"), optarg);
case 'h': /* help */
print_help ();
exit (STATE_OK);
str += strspn (str, " \t\r\n"); /* trim any leading whitespace */
if (strstr (str, "'") == str) { /* handle SIMPLE quoted strings */
if (strlen (str) == 1 || !strstr (str + 1, "'"))
- die (STATE_UNKNOWN, "Unbalanced quotes\n");
+ die (STATE_UNKNOWN, _("Unbalanced quotes\n"));
}
return str;
}
diff --git a/plugins/check_ssh.c b/plugins/check_ssh.c
index e957c0538a898f3c3c5a427cb9ec2c8dbc36e395..7b7bc8fdc61eb3d805e268c00b80bd1912e38260 100644 (file)
--- a/plugins/check_ssh.c
+++ b/plugins/check_ssh.c
switch (c) {
case '?': /* help */
- printf (_("%s: Unknown argument: %s\n\n"), progname, optarg);
- print_usage ();
- exit (STATE_UNKNOWN);
+ usage2 (_("Unknown argument"), optarg);
case 'V': /* version */
print_revision (progname, revision);
exit (STATE_OK);
#ifdef USE_IPV6
address_family = AF_INET6;
#else
- usage (_("IPv6 support not available\n"));
+ usage4 (_("IPv6 support not available"));
#endif
break;
case 'r': /* remote version */
port = atoi (optarg);
}
else {
- printf ("Port number nust be a positive integer: %s\n", optarg);
- usage ("");
+ usage2 (_("Port number must be a positive integer"), optarg);
}
}
-
}
c = optind;
diff --git a/plugins/check_swap.c b/plugins/check_swap.c
index 6e2ab7232af4d1ab35d4d101b3830ba037cefb28..093845b4712bc09450a4500a491bd81dc0e9ef5a 100644 (file)
--- a/plugins/check_swap.c
+++ b/plugins/check_swap.c
/* and now, tally 'em up */
swapctl_res=swapctl(SC_LIST, tbl);
if(swapctl_res < 0){
- perror("swapctl failed: ");
+ perror(_("swapctl failed: "));
result = STATE_WARNING;
}
/* and now, tally 'em up */
swapctl_res=swapctl(SWAP_STATS, ent, nswaps);
if(swapctl_res < 0){
- perror("swapctl failed: ");
+ perror(_("swapctl failed: "));
result = STATE_WARNING;
}
break;
}
else {
- usage (_("Warning threshold must be integer or percentage!\n"));
+ usage4 (_("Warning threshold must be integer or percentage!"));
}
case 'c': /* critical size threshold */
if (is_intnonneg (optarg)) {
print_help ();
exit (STATE_OK);
case '?': /* error */
- printf (_("%s: Unknown argument: %s\n\n"), progname, optarg);
- print_usage ();
- exit (STATE_UNKNOWN);
+ usage2 (_("Unknown argument"), optarg);
}
}
diff --git a/plugins/check_tcp.c b/plugins/check_tcp.c
index b922536eba6b05ef97f56da50efcd6789e59cf41..fcd677862e032efd72529b83250ddda3806079ef 100644 (file)
--- a/plugins/check_tcp.c
+++ b/plugins/check_tcp.c
#ifdef HAVE_SSL
if (use_ssl && check_cert == TRUE) {
if (connect_SSL () != OK)
- die (STATE_CRITICAL,"CRITICAL - Could not make SSL connection\n");
+ die (STATE_CRITICAL,_("CRITICAL - Could not make SSL connection\n"));
if ((server_cert = SSL_get_peer_certificate (ssl)) != NULL) {
result = check_certificate (&server_cert);
X509_free(server_cert);
}
else {
- printf("CRITICAL - Cannot retrieve server certificate.\n");
+ printf(_("CRITICAL - Cannot retrieve server certificate.\n"));
result = STATE_CRITICAL;
}
SSL_shutdown (ssl);
};
if (argc < 2)
- usage ("No arguments found\n");
+ usage4 (_("No arguments found"));
/* backwards compatibility */
for (c = 1; c < argc; c++) {
switch (c) {
case '?': /* print short usage statement if args not parsable */
- printf (_("%s: Unknown argument: %s\n\n"), progname, optarg);
- print_usage ();
- exit (STATE_UNKNOWN);
+ usage2 (_("Unknown argument"), optarg);
case 'h': /* help */
print_help ();
exit (STATE_OK);
case 'V': /* version */
- print_revision (progname, "$Revision$");
+ print_revision (progname, revision);
exit (STATE_OK);
case 'v': /* verbose mode */
verbose = TRUE;
case 'D': /* Check SSL cert validity - days 'til certificate expiration */
#ifdef HAVE_SSL
if (!is_intnonneg (optarg))
- usage2 ("invalid certificate expiration period", optarg);
+ usage2 (_("Invalid certificate expiration period"), optarg);
days_till_exp = atoi (optarg);
check_cert = TRUE;
use_ssl = TRUE;
case 'S':
use_ssl = TRUE;
#else
- die (STATE_UNKNOWN, "SSL support not available. Install OpenSSL and recompile.");
+ die (STATE_UNKNOWN, _("SSL support not available. Install OpenSSL and recompile."));
#endif
break;
}
}
if (server_address == NULL)
- usage (_("You must provide a server address\n"));
+ usage4 (_("You must provide a server address"));
return TRUE;
}
/* Generate tm structure to process timestamp */
if (tm->type == V_ASN1_UTCTIME) {
if (tm->length < 10) {
- printf ("CRITICAL - Wrong time format in certificate.\n");
+ printf (_("CRITICAL - Wrong time format in certificate.\n"));
return STATE_CRITICAL;
}
else {
}
else {
if (tm->length < 12) {
- printf ("CRITICAL - Wrong time format in certificate.\n");
+ printf (_("CRITICAL - Wrong time format in certificate.\n"));
return STATE_CRITICAL;
}
else {
stamp.tm_mday, stamp.tm_year + 1900, stamp.tm_hour, stamp.tm_min);
if (days_left > 0 && days_left <= days_till_exp) {
- printf ("Certificate expires in %d day(s) (%s).\n", days_left, timestamp);
+ printf (_("Certificate expires in %d day(s) (%s).\n"), days_left, timestamp);
return STATE_WARNING;
}
if (days_left < 0) {
- printf ("Certificate expired on %s.\n", timestamp);
+ printf (_("Certificate expired on %s.\n"), timestamp);
return STATE_CRITICAL;
}
if (days_left == 0) {
- printf ("Certificate expires today (%s).\n", timestamp);
+ printf (_("Certificate expires today (%s).\n"), timestamp);
return STATE_WARNING;
}
- printf ("Certificate will expire on %s.\n", timestamp);
+ printf (_("Certificate will expire on %s.\n"), timestamp);
return STATE_OK;
}
diff --git a/plugins/check_time.c b/plugins/check_time.c
index 63d7ee255bb94ed0dc2a21196ed728161dbe80b8..efca91bdc894424d0160e7571ee208339c3da2b2 100644 (file)
--- a/plugins/check_time.c
+++ b/plugins/check_time.c
switch (c) {
case '?': /* print short usage statement if args not parsable */
- printf (_("%s: Unknown argument: %s\n\n"), progname, optarg);
- print_usage ();
- exit (STATE_UNKNOWN);
+ usage2 (_("Unknown argument"), optarg);
case 'h': /* help */
print_help ();
exit (STATE_OK);
diff --git a/plugins/check_udp.c b/plugins/check_udp.c
index b79f31f76495faebffebf82a47146b486449c683..e7d5280cba0c64fc3387266aac43d2e64dc2b095 100644 (file)
--- a/plugins/check_udp.c
+++ b/plugins/check_udp.c
time (&end_time);
if (result != STATE_OK) {
- printf ("No response from host on port %d\n", server_port);
+ printf (_("No response from host on port %d\n"), server_port);
result = STATE_CRITICAL;
}
/* check to see if we got the response we wanted */
if (server_expect) {
if (!strstr (recv_buffer, server_expect)) {
- printf ("Invalid response received from host on port %d\n",
+ printf (_("Invalid response received from host on port %d\n"),
server_port);
result = STATE_CRITICAL;
}
switch (c) {
case '?': /* print short usage statement if args not parsable */
- printf (_("%s: Unknown argument: %s\n\n"), progname, optarg);
- print_usage ();
- exit (STATE_UNKNOWN);
+ usage2 (_("Unknown argument"), optarg);
case 'h': /* help */
print_help ();
exit (STATE_OK);
}
-
-
/* Original Command line:
check_udp <host_address> [-p port] [-s send] [-e expect] \
[-wt warn_time] [-ct crit_time] [-to to_sec] */
diff --git a/plugins/check_ups.c b/plugins/check_ups.c
index a4d765038882a9493767af05a96113ec8ff7b0fb..1cdf9e9e6b0e9d554c60392730a084d1306428c2 100644 (file)
--- a/plugins/check_ups.c
+++ b/plugins/check_ups.c
}
else if ((status & (UPSSTATUS_OB | UPSSTATUS_LB)) ==
(UPSSTATUS_OB | UPSSTATUS_LB)) {
- asprintf (&ups_status, "On Battery, Low Battery");
+ asprintf (&ups_status, _("On Battery, Low Battery"));
result = STATE_CRITICAL;
}
else {
if (status & UPSSTATUS_OL) {
- asprintf (&ups_status, "%s%s", ups_status, "Online");
+ asprintf (&ups_status, "%s%s", ups_status, _("Online"));
}
if (status & UPSSTATUS_OB) {
- asprintf (&ups_status, "%s%s", ups_status, "On Battery");
+ asprintf (&ups_status, "%s%s", ups_status, _("On Battery"));
result = STATE_WARNING;
}
if (status & UPSSTATUS_LB) {
- asprintf (&ups_status, "%s%s", ups_status, ", Low Battery");
+ asprintf (&ups_status, "%s%s", ups_status, _(", Low Battery"));
result = STATE_WARNING;
}
if (status & UPSSTATUS_CAL) {
- asprintf (&ups_status, "%s%s", ups_status, ", Calibrating");
+ asprintf (&ups_status, "%s%s", ups_status, _(", Calibrating"));
}
if (status & UPSSTATUS_RB) {
- asprintf (&ups_status, "%s%s", ups_status, ", Replace Battery");
+ asprintf (&ups_status, "%s%s", ups_status, _(", Replace Battery"));
result = STATE_WARNING;
}
if (status & UPSSTATUS_BYPASS) {
- asprintf (&ups_status, "%s%s", ups_status, ", On Bypass");
+ asprintf (&ups_status, "%s%s", ups_status, _(", On Bypass"));
}
if (status & UPSSTATUS_OVER) {
- asprintf (&ups_status, "%s%s", ups_status, ", Overload");
+ asprintf (&ups_status, "%s%s", ups_status, _(", Overload"));
}
if (status & UPSSTATUS_TRIM) {
- asprintf (&ups_status, "%s%s", ups_status, ", Trimming");
+ asprintf (&ups_status, "%s%s", ups_status, _(", Trimming"));
}
if (status & UPSSTATUS_BOOST) {
- asprintf (&ups_status, "%s%s", ups_status, ", Boosting");
+ asprintf (&ups_status, "%s%s", ups_status, _(", Boosting"));
}
if (status & UPSSTATUS_CHRG) {
- asprintf (&ups_status, "%s%s", ups_status, ", Charging");
+ asprintf (&ups_status, "%s%s", ups_status, _(", Charging"));
}
if (status & UPSSTATUS_DISCHRG) {
- asprintf (&ups_status, "%s%s", ups_status, ", Discharging");
+ asprintf (&ups_status, "%s%s", ups_status, _(", Discharging"));
}
if (status & UPSSTATUS_UNKOWN) {
- asprintf (&ups_status, "%s%s", ups_status, ", Unknown");
+ asprintf (&ups_status, "%s%s", ups_status, _(", Unknown"));
}
}
asprintf (&message, "%sStatus=%s ", message, ups_status);
/* if the UPS does not support any options we are looking for, report an error */
if (supported_options == UPS_NONE) {
result = STATE_CRITICAL;
- asprintf (&message, "UPS does not support any available options\n");
+ asprintf (&message, _("UPS does not support any available options\n"));
}
/* reset timeout */
res=get_ups_variable ("ups.status", recv_buffer, sizeof (recv_buffer));
if (res == NOSUCHVAR) return OK;
if (res != STATE_OK) {
- printf ("Invalid response received from host\n");
+ printf (_("Invalid response received from host\n"));
return ERROR;
}
if (process_tcp_request
(server_address, server_port, send_buffer, temp_buffer,
sizeof (temp_buffer)) != STATE_OK) {
- printf ("Invalid response received from host\n");
+ printf (_("Invalid response received from host\n"));
return ERROR;
}
len = strlen(ptr);
if (len > 0 && ptr[len-1] == '\n') ptr[len-1]=0;
if (strcmp (ptr, "ERR UNKNOWN-UPS") == 0) {
- printf ("CRITICAL - no such ups '%s' on that host\n", ups_name);
+ printf (_("CRITICAL - no such ups '%s' on that host\n"), ups_name);
return ERROR;
}
}
if (strcmp (ptr, "ERR DATA-STALE") == 0) {
- printf ("CRITICAL - UPS data is stale\n");
+ printf (_("CRITICAL - UPS data is stale\n"));
return ERROR;
}
if (strncmp (ptr, "ERR", 3) == 0) {
- printf ("Unknown error: %s\n", ptr);
+ printf (_("Unknown error: %s\n"), ptr);
return ERROR;
}
ptr = temp_buffer + strlen (varname) + strlen (ups_name) + 6;
len = strlen(ptr);
if (len < 2 || ptr[0] != '"' || ptr[len-1] != '"') {
- printf ("Error: unable to parse variable\n");
+ printf (_("Error: unable to parse variable\n"));
return ERROR;
}
strncpy (buf, ptr+1, len - 2);
switch (c) {
case '?': /* help */
- printf (_("%s: Unknown argument: %s\n\n"), progname, optarg);
- print_usage ();
- exit (STATE_UNKNOWN);
+ usage2 (_("Unknown argument"), optarg);
case 'H': /* hostname */
if (is_host (optarg)) {
server_address = optarg;
server_port = atoi (optarg);
}
else {
- usage2 ("Port must be a positive integer", optarg);
+ usage2 (_("Port must be a positive integer"), optarg);
}
break;
case 'c': /* critical time threshold */
check_crit = TRUE;
}
else {
- usage2 ("Critical time must be a positive integer", optarg);
+ usage2 (_("Critical time must be a positive integer"), optarg);
}
break;
case 'w': /* warning time threshold */
check_warn = TRUE;
}
else {
- usage2 ("Warning time must be a positive integer", optarg);
+ usage2 (_("Warning time must be a positive integer"), optarg);
}
break;
case 'v': /* variable */
else if (!strcmp (optarg, "LOADPCT"))
check_variable = UPS_LOADPCT;
else
- usage2 ("Unrecognized UPS variable", optarg);
+ usage2 (_("Unrecognized UPS variable"), optarg);
break;
case 't': /* timeout */
if (is_intnonneg (optarg)) {
socket_timeout = atoi (optarg);
}
else {
- usage ("Time interval must be a positive integer\n");
+ usage4 (_("Timeout interval must be a positive integer"));
}
break;
case 'V': /* version */
}
-
int
validate_arguments (void)
{
if (! ups_name) {
- printf ("Error : no ups indicated\n");
+ printf (_("Error : no ups indicated\n"));
return ERROR;
}
return OK;
}
-
void
print_help (void)
{
}
-
void
print_usage (void)
{
diff --git a/plugins/check_users.c b/plugins/check_users.c
index d1b4f01898e5a8130871ef55387c86c5da112c35..25d04ed0b02de0d58a8b24bba49ba64e0fdaf6b4 100644 (file)
--- a/plugins/check_users.c
+++ b/plugins/check_users.c
switch (c) {
case '?': /* print short usage statement if args not parsable */
- printf (_("%s: Unknown argument: %s\n\n"), progname, optarg);
- print_usage ();
- exit (STATE_UNKNOWN);
+ usage2 (_("Unknown argument"), optarg);
case 'h': /* help */
print_help ();
exit (STATE_OK);
exit (STATE_OK);
case 'c': /* critical */
if (!is_intnonneg (optarg))
- usage (_("Critical threshold must be a positive integer\n"));
+ usage4 (_("Critical threshold must be a positive integer"));
else
cusers = atoi (optarg);
break;
case 'w': /* warning */
if (!is_intnonneg (optarg))
- usage (_("Warning threshold must be a positive integer\n"));
+ usage4 (_("Warning threshold must be a positive integer"));
else
wusers = atoi (optarg);
break;
c = optind;
if (wusers == -1 && argc > c) {
if (is_intnonneg (argv[c]) == FALSE)
- usage (_("Warning threshold must be a positive integer\n"));
+ usage4 (_("Warning threshold must be a positive integer"));
else
wusers = atoi (argv[c++]);
}
if (cusers == -1 && argc > c) {
if (is_intnonneg (argv[c]) == FALSE)
- usage (_("Warning threshold must be a positive integer\n"));
+ usage4 (_("Warning threshold must be a positive integer"));
else
cusers = atoi (argv[c]);
}
@@ -210,7 +208,6 @@ system and generates an error if the number exceeds the thresholds specified.\n"
}
-
void
print_usage (void)
{
diff --git a/plugins/negate.c b/plugins/negate.c
index e35ddb9e90ca11a6f2c2bc5a74c3172cb1839c9f..d08c3a309e30b868cd6dc7a51c0655d48797c5ee 100644 (file)
--- a/plugins/negate.c
+++ b/plugins/negate.c
switch (c) {
case '?': /* help */
- printf (_("%s: Unknown argument: %s\n\n"), progname, optarg);
- print_usage ();
- exit (STATE_UNKNOWN);
+ usage2 (_("Unknown argument"), optarg);
break;
case 'h': /* help */
print_help ();
diff --git a/plugins/netutils.c b/plugins/netutils.c
index 6702b13f25250439416549681e85f5aa98a8d316..1231c1efe87e67c71135955dc4d80c0ac19664c5 100644 (file)
--- a/plugins/netutils.c
+++ b/plugins/netutils.c
socket_timeout_alarm_handler (int sig)
{
if (sig == SIGALRM)
- printf ("CRITICAL - Socket timeout after %d seconds\n", socket_timeout);
+ printf (_("CRITICAL - Socket timeout after %d seconds\n"), socket_timeout);
else
- printf ("CRITICAL - Abnormal timeout after %d seconds\n", socket_timeout);
+ printf (_("CRITICAL - Abnormal timeout after %d seconds\n"), socket_timeout);
exit (STATE_CRITICAL);
}
send_result = send (sd, send_buffer, strlen (send_buffer), 0);
if (send_result<0 || (size_t)send_result!=strlen(send_buffer)) {
- printf ("Send failed\n");
+ printf (_("Send failed\n"));
result = STATE_WARNING;
}
if (!FD_ISSET (sd, &readfds)) { /* it hasn't */
if (!recv_length) {
strcpy (recv_buffer, "");
- printf ("No data was received from host!\n");
+ printf (_("No data was received from host!\n"));
result = STATE_WARNING;
}
else { /* this one failed, but previous ones worked */
SOCK_DGRAM : SOCK_STREAM, res->ai_protocol);
if (*sd < 0) {
- printf ("Socket creation failed\n");
+ printf (_("Socket creation failed\n"));
freeaddrinfo (res);
return STATE_UNKNOWN;
}
@@ -315,7 +315,7 @@ send_request (int sd, int proto, const char *send_buffer, char *recv_buffer, int
send_result = send (sd, send_buffer, strlen (send_buffer), 0);
if (send_result<0 || (size_t)send_result!=strlen(send_buffer)) {
- printf ("Send failed\n");
+ printf (_("Send failed\n"));
result = STATE_WARNING;
}
@@ -330,7 +330,7 @@ send_request (int sd, int proto, const char *send_buffer, char *recv_buffer, int
/* make sure some data has arrived */
if (!FD_ISSET (sd, &readfds)) {
strcpy (recv_buffer, "");
- printf ("No data was received from host!\n");
+ printf (_("No data was received from host!\n"));
result = STATE_WARNING;
}
@@ -339,7 +339,7 @@ send_request (int sd, int proto, const char *send_buffer, char *recv_buffer, int
if (recv_result == -1) {
strcpy (recv_buffer, "");
if (proto != IPPROTO_TCP)
- printf ("Receive failed\n");
+ printf (_("Receive failed\n"));
result = STATE_WARNING;
}
else
diff --git a/plugins/popen.c b/plugins/popen.c
index 94ad583f78770dfac294e5ee3b91376c0b2b3fc4..04eb3881b328fa0e0938a5b93295f661231119db 100644 (file)
--- a/plugins/popen.c
+++ b/plugins/popen.c
argv = malloc (sizeof(char*)*argc);
if (argv == NULL) {
- printf ("Could not malloc argv array in popen()\n");
+ printf (_("Could not malloc argv array in popen()\n"));
return NULL;
}
str += strspn (str, " \t\r\n"); /* trim any leading whitespace */
if (i >= argc - 2) {
- printf ("CRITICAL - You need more args!!!\n");
+ printf (_("CRITICAL - You need more args!!!\n"));
return (NULL);
}
#define OPEN_MAX_GUESS 256 /* if OPEN_MAX is indeterminate */
/* no guarantee this is adequate */
+
void
popen_timeout_alarm_handler (int signo)
{
if (signo == SIGALRM) {
kill (childpid[fileno (child_process)], SIGKILL);
- printf ("CRITICAL - Plugin timed out after %d seconds\n",
+ printf (_("CRITICAL - Plugin timed out after %d seconds\n"),
timeout_interval);
exit (STATE_CRITICAL);
}
}
+
int
open_max (void)
{
if (errno == 0)
openmax = OPEN_MAX_GUESS; /* it's indeterminate */
else
- err_sys ("sysconf error for _SC_OPEN_MAX");
+ err_sys (_("sysconf error for _SC_OPEN_MAX"));
}
}
return (openmax);
}
-
/* Fatal error related to a system call.
* Print a message and die. */
}
return str;
}
-
diff --git a/plugins/popen.h b/plugins/popen.h
index b758579249c18c9cc629ac2fa6deaf3762959f12..1f4e413a7e8c65c8f0da388139cef80781ae5b9d 100644 (file)
--- a/plugins/popen.h
+++ b/plugins/popen.h
+/******************************************************************************
+ *
+ * $Id$
+ *
+ ******************************************************************************/
+
FILE *spopen (const char *);
int spclose (FILE *);
RETSIGTYPE popen_timeout_alarm_handler (int);
diff --git a/plugins/urlize.c b/plugins/urlize.c
index 3564e4692f3351ffb82d01f1bd2f93a4addaf1c3..96bbdc00543f8ca2bc9039ac0fffd3f2a6fdbda5 100644 (file)
--- a/plugins/urlize.c
+++ b/plugins/urlize.c
break;
case '?':
default:
- printf (_("%s: Unknown argument: %s\n\n"), progname, optarg);
- print_usage ();
- exit (STATE_UNKNOWN);
+ usage2 (_("Unknown argument"), optarg);
}
}
diff --git a/plugins/utils.c b/plugins/utils.c
index b2948e65688d2050c2ca32f2ab18d569cf104bae..b9a19d3fe0c2f8f39d0fd1f5c9bfbd30c1279448 100644 (file)
--- a/plugins/utils.c
+++ b/plugins/utils.c
void usage (const char *msg)
{
- printf ("%s", msg);
+ printf ("%s\n", msg);
print_usage ();
exit (STATE_UNKNOWN);
}
timeout_alarm_handler (int signo)
{
if (signo == SIGALRM) {
- printf ("CRITICAL - Plugin timed out after %d seconds\n",
+ printf (_("CRITICAL - Plugin timed out after %d seconds\n"),
timeout_interval);
exit (STATE_CRITICAL);
}
if (dest == NULL || strlen (dest) < len)
dest = realloc (dest, len + 1);
if (dest == NULL)
- die (STATE_UNKNOWN, "failed realloc in strpcpy\n");
+ die (STATE_UNKNOWN, _("failed realloc in strpcpy\n"));
strncpy (dest, src, len);
dest[len] = '\0';
dest = realloc (dest, len + l2 + 1);
if (dest == NULL)
- die (STATE_UNKNOWN, "failed malloc in strscat\n");
+ die (STATE_UNKNOWN, _("failed malloc in strscat\n"));
strncpy (dest + len, src, l2);
dest[len + l2] = '\0';
diff --git a/po/de.po b/po/de.po
index 95cd0aaca7cfdcb2a3df372048925c865ed141e9..392092fa98255afe609cb21d9252329f64cc2534 100644 (file)
--- a/po/de.po
+++ b/po/de.po
msgstr ""
"Project-Id-Version: nagiosplug\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-12-25 16:26+0100\n"
+"POT-Creation-Date: 2004-12-26 00:06+0100\n"
"PO-Revision-Date: 2004-12-23 17:46+0100\n"
"Last-Translator: <>\n"
"Language-Team: English <en@li.org>\n"
"Plural-Forms: nplurals=2; plural=(n > 1);X-Generator: KBabel 1.3.1\n"
#: plugins/check_by_ssh.c:72 plugins/check_dhcp.c:251 plugins/check_dig.c:72
-#: plugins/check_disk.c:167 plugins/check_dns.c:75 plugins/check_dummy.c:44
+#: plugins/check_disk.c:167 plugins/check_dns.c:75 plugins/check_dummy.c:43
#: plugins/check_fping.c:73 plugins/check_game.c:69 plugins/check_hpjd.c:89
#: plugins/check_http.c:149 plugins/check_ldap.c:92 plugins/check_load.c:78
#: plugins/check_mrtgtraf.c:66 plugins/check_mysql.c:63
#: plugins/check_fping.c:87 plugins/check_game.c:86 plugins/check_hpjd.c:114
#: plugins/check_nagios.c:103 plugins/check_procs.c:137
#: plugins/check_snmp.c:172 plugins/check_swap.c:151 plugins/check_users.c:59
-#: plugins/negate.c:97 plugins/urlize.c:90
+#: plugins/negate.c:97 plugins/urlize.c:88
#, c-format
msgid "Could not open pipe: %s\n"
msgstr "Pipe: %s konnte nicht geƶffnet werden\n"
#: plugins/check_fping.c:93 plugins/check_hpjd.c:120 plugins/check_load.c:115
#: plugins/check_nagios.c:109 plugins/check_procs.c:143
#: plugins/check_snmp.c:178 plugins/check_swap.c:157 plugins/check_users.c:65
-#: plugins/negate.c:102 plugins/urlize.c:96
+#: plugins/negate.c:102 plugins/urlize.c:94
#, c-format
msgid "Could not open stderr for %s\n"
msgstr "Konnte stderr nicht öffnen für: %s\n"
msgid "SSH WARNING: could not open %s\n"
msgstr "SSH WARNING: Konnte %s nicht ƶffnen\n"
-#: plugins/check_by_ssh.c:216 plugins/check_http.c:254
+#: plugins/check_by_ssh.c:216 plugins/check_dig.c:217 plugins/check_disk.c:441
+#: plugins/check_dns.c:315 plugins/check_fping.c:245 plugins/check_game.c:201
+#: plugins/check_hpjd.c:336 plugins/check_http.c:254 plugins/check_ldap.c:315
+#: plugins/check_load.c:227 plugins/check_mrtg.c:236
+#: plugins/check_mrtgtraf.c:263 plugins/check_mysql.c:214
+#: plugins/check_nagios.c:222 plugins/check_nt.c:490
+#: plugins/check_nwstat.c:763 plugins/check_overcr.c:327
+#: plugins/check_pgsql.c:212 plugins/check_ping.c:197
+#: plugins/check_procs.c:346 plugins/check_radius.c:221
+#: plugins/check_real.c:354 plugins/check_smtp.c:374 plugins/check_snmp.c:401
+#: plugins/check_ssh.c:113 plugins/check_swap.c:423 plugins/check_tcp.c:465
+#: plugins/check_time.c:219 plugins/check_udp.c:149 plugins/check_ups.c:484
+#: plugins/check_users.c:143 plugins/check_ide_smart.c:209
+#: plugins/negate.c:177 plugins/urlize.c:74
#, fuzzy
msgid "Unknown argument"
msgstr ""
"%s: Unbekanntes Argument: %s\n"
"\n"
-#: plugins/check_by_ssh.c:228 plugins/check_dig.c:266 plugins/check_disk.c:308
-#: plugins/check_http.c:266 plugins/check_ldap.c:268 plugins/check_pgsql.c:223
-#: plugins/check_procs.c:357 plugins/check_radius.c:198
-#: plugins/check_radius.c:270 plugins/check_snmp.c:447 plugins/check_ssh.c:127
-#: plugins/check_tcp.c:519 plugins/check_time.c:292 plugins/check_udp.c:182
-#: plugins/negate.c:190
+#: plugins/check_by_ssh.c:228 plugins/check_dig.c:264 plugins/check_disk.c:308
+#: plugins/check_http.c:266 plugins/check_ldap.c:268 plugins/check_pgsql.c:221
+#: plugins/check_procs.c:355 plugins/check_radius.c:198
+#: plugins/check_radius.c:268 plugins/check_real.c:344
+#: plugins/check_smtp.c:354 plugins/check_snmp.c:445 plugins/check_ssh.c:125
+#: plugins/check_tcp.c:517 plugins/check_time.c:290 plugins/check_udp.c:180
+#: plugins/check_ups.c:542 plugins/negate.c:188
msgid "Timeout interval must be a positive integer"
msgstr "Timeout interval muss ein positiver Integer sein"
#: plugins/check_by_ssh.c:234 plugins/check_by_ssh.c:293
-#: plugins/check_dig.c:231 plugins/check_dig.c:288 plugins/check_dns.c:340
-#: plugins/check_dns.c:349 plugins/check_fping.c:259 plugins/check_hpjd.c:324
-#: plugins/check_hpjd.c:349 plugins/check_mysql.c:190
-#: plugins/check_mysql.c:230 plugins/check_pgsql.c:241
-#: plugins/check_ping.c:270 plugins/check_ping.c:393
-#: plugins/check_radius.c:235 plugins/check_real.c:302
-#: plugins/check_real.c:366 plugins/check_smtp.c:292 plugins/check_smtp.c:386
-#: plugins/check_ssh.c:146 plugins/check_tcp.c:489 plugins/check_time.c:230
-#: plugins/check_time.c:305 plugins/check_udp.c:163 plugins/check_udp.c:204
-#: plugins/check_ups.c:492 plugins/check_ups.c:561
+#: plugins/check_dig.c:229 plugins/check_dig.c:286 plugins/check_dns.c:337
+#: plugins/check_dns.c:346 plugins/check_fping.c:257 plugins/check_hpjd.c:323
+#: plugins/check_hpjd.c:346 plugins/check_mysql.c:189
+#: plugins/check_mysql.c:227 plugins/check_pgsql.c:239
+#: plugins/check_ping.c:268 plugins/check_ping.c:391
+#: plugins/check_radius.c:233 plugins/check_real.c:302
+#: plugins/check_real.c:364 plugins/check_smtp.c:292 plugins/check_smtp.c:384
+#: plugins/check_ssh.c:144 plugins/check_tcp.c:487 plugins/check_time.c:228
+#: plugins/check_time.c:303 plugins/check_udp.c:161 plugins/check_udp.c:202
+#: plugins/check_ups.c:490 plugins/check_ups.c:559
msgid "Invalid hostname/address"
msgstr "Ungültige(r) Hostname/Adresse"
-#: plugins/check_by_ssh.c:239 plugins/check_dig.c:239
-#: plugins/check_pgsql.c:247 plugins/check_radius.c:207
-#: plugins/check_radius.c:243 plugins/check_real.c:315
-#: plugins/check_smtp.c:299 plugins/check_tcp.c:525 plugins/check_time.c:286
-#: plugins/check_udp.c:188
+#: plugins/check_by_ssh.c:239 plugins/check_dig.c:237
+#: plugins/check_pgsql.c:245 plugins/check_radius.c:207
+#: plugins/check_radius.c:241 plugins/check_real.c:315
+#: plugins/check_smtp.c:299 plugins/check_tcp.c:523 plugins/check_time.c:284
+#: plugins/check_udp.c:186 plugins/check_ups.c:504
msgid "Port must be a positive integer"
msgstr "Port muss ein positiver Integer sein"
" Print version information\n"
msgstr ""
+#: plugins/check_dig.c:84 plugins/check_dig.c:86
+#, c-format
+msgid "Looking for: '%s'\n"
+msgstr ""
+
#: plugins/check_dig.c:130
msgid "Server not found in ANSWER SECTION"
msgstr "Server nicht gefunden in ANSWER SECTION"
msgid "%.3f seconds response time (%s)"
msgstr "%.3f Sekunden Antwortzeit (%s)"
-#: plugins/check_dig.c:217 plugins/check_disk.c:441 plugins/check_dns.c:316
-#: plugins/check_fping.c:245 plugins/check_game.c:202 plugins/check_hpjd.c:337
-#: plugins/check_ldap.c:315 plugins/check_load.c:227 plugins/check_mrtg.c:236
-#: plugins/check_mrtgtraf.c:263 plugins/check_mysql.c:215
-#: plugins/check_overcr.c:335 plugins/check_pgsql.c:212
-#: plugins/check_ping.c:197 plugins/check_procs.c:346
-#: plugins/check_radius.c:221 plugins/check_real.c:354
-#: plugins/check_smtp.c:374 plugins/check_snmp.c:401 plugins/check_ssh.c:113
-#: plugins/check_swap.c:423 plugins/check_tcp.c:465 plugins/check_time.c:219
-#: plugins/check_udp.c:149 plugins/check_ups.c:484 plugins/check_users.c:143
-#: plugins/check_ide_smart.c:209 plugins/negate.c:177 plugins/urlize.c:74
-#, c-format
-msgid ""
-"%s: Unknown argument: %s\n"
-"\n"
-msgstr ""
-"%s: Unbekanntes Argument: %s\n"
-"\n"
-
-#: plugins/check_dig.c:250
+#: plugins/check_dig.c:248
msgid "Warning interval must be a positive integer"
msgstr "Warning interval muss ein positiver Integer sein"
-#: plugins/check_dig.c:258
+#: plugins/check_dig.c:256
msgid "Critical interval must be a positive integer"
msgstr "Critical interval muss ein positiver Integer sein"
-#: plugins/check_dig.c:321
+#: plugins/check_dig.c:319
#, c-format
msgid ""
"Test the DNS service on the specified host using dig\n"
"Testet den DNS Dienst auf dem angegebenen Host mit dig\n"
"\n"
-#: plugins/check_dig.c:329
+#: plugins/check_dig.c:327
#, c-format
msgid ""
" -l, --lookup=STRING\n"
" -l, --lookup=STRING\n"
" zu prüfender Hostname\n"
-#: plugins/check_dig.c:333
+#: plugins/check_dig.c:331
#, c-format
msgid ""
" -T, --record_type=STRING\n"
" -T, --record_type=STRING\n"
" abzufragender Datensatztyp (Default: A)\n"
-#: plugins/check_dig.c:337
+#: plugins/check_dig.c:335
#, c-format
msgid ""
" -a, --expected_address=STRING\n"
msgid "%s [%s not found]"
msgstr "%s [%s nicht gefunden]"
-#: plugins/check_disk.c:325
+#: plugins/check_disk.c:325 plugins/check_swap.c:391
msgid "Warning threshold must be integer or percentage!"
msgstr "Warning threshold muss ein Integer oder ein Prozentwert sein"
msgid "failed allocating storage for '%s'\n"
msgstr "konnte keinen Speicher für '%s' reservieren\n"
-#: plugins/check_disk.c:502
+#: plugins/check_disk.c:489
+#, c-format
+msgid " for %s\n"
+msgstr ""
+
+#: plugins/check_disk.c:500
#, c-format
msgid "INPUT ERROR: No thresholds specified"
msgstr "FEHLER: Kein Schwellwert angegeben"
-#: plugins/check_disk.c:508
+#: plugins/check_disk.c:506
#, c-format
msgid ""
"INPUT ERROR: C_DFP (%f) should be less than W_DFP (%.1f) and both should be "
"INPUT ERROR: C_DFP (%f) sollte kleiner sein als W_DFP (%.1f) und beide "
"sollten zwischen 0 und 100 Prozent liegen"
-#: plugins/check_disk.c:515
+#: plugins/check_disk.c:513
#, c-format
msgid ""
"INPUT ERROR: C_DF (%lu) should be less than W_DF (%lu) and both should be "
"INPUT ERROR: C_DF (%lu) sollte kleiner sein als W_DF (%lu) und beide sollten "
"grƶĆer als 0 sein"
-#: plugins/check_disk.c:579
+#: plugins/check_disk.c:577
#, c-format
msgid ""
"This plugin checks the amount of used disk space on a mounted file system\n"
"unterschritten wird.\n"
"\n"
-#: plugins/check_disk.c:587
+#: plugins/check_disk.c:585
#, c-format
msgid ""
" -w, --warning=INTEGER\n"
" -C, --clear\n"
" Schwellwerte lƶschen\n"
-#: plugins/check_disk.c:599
+#: plugins/check_disk.c:597
#, c-format
msgid ""
" -u, --units=STRING\n"
" Same as '--units MB'\n"
msgstr ""
-#: plugins/check_disk.c:607
+#: plugins/check_disk.c:605
#, c-format
msgid ""
" -l, --local\n"
" Display only devices/mountpoints with errors\n"
msgstr ""
-#: plugins/check_disk.c:627
+#: plugins/check_disk.c:625
msgid ""
"Examples:\n"
" check_disk -w 10% -c 5% -p /tmp -p /var -C -w 100000 -c 50000 -p /\n"
msgid "DNS CRITICAL - '%s' returned empty host name string\n"
msgstr "DNS CRITICAL - '%s' hat einen leeren Hostnamen zurückgegeben\n"
+#: plugins/check_dns.c:138
+msgid "Non-authoritative answer:"
+msgstr ""
+
#: plugins/check_dns.c:171
msgid "nslookup returned error status"
msgstr "nslookup hat einen Fehler zurückgegeben"
msgid "server %s is not authoritative for %s"
msgstr "Server %s ist nicht authoritativ für %s"
-#: plugins/check_dns.c:202 plugins/check_dummy.c:60 plugins/check_http.c:930
+#: plugins/check_dns.c:202 plugins/check_dummy.c:59 plugins/check_http.c:930
#: plugins/check_http.c:1183 plugins/check_procs.c:279
#, c-format
msgid "OK"
msgid "DNS failure for %s\n"
msgstr "DNS Fehler für %s\n"
-#: plugins/check_dns.c:333 plugins/check_dns.c:343 plugins/check_dns.c:352
-#: plugins/check_dns.c:357 plugins/check_dns.c:370 plugins/check_dns.c:381
-#: plugins/check_game.c:219 plugins/check_game.c:227
+#: plugins/check_dns.c:330 plugins/check_dns.c:340 plugins/check_dns.c:349
+#: plugins/check_dns.c:354 plugins/check_dns.c:367 plugins/check_dns.c:378
+#: plugins/check_game.c:216 plugins/check_game.c:224
msgid "Input buffer overflow\n"
msgstr "Eingabe-Pufferüberlauf\n"
-#: plugins/check_dns.c:377
+#: plugins/check_dns.c:374
#, c-format
msgid ""
"Invalid hostname/address: %s\n"
"Ungültige(r) Name/Adresse: %s\n"
"\n"
-#: plugins/check_dns.c:409
+#: plugins/check_dns.c:404
#, c-format
msgid ""
"This plugin uses the nslookup program to obtain the IP address\n"
"/etc/resolv.conf genutzt.\n"
"\n"
-#: plugins/check_dns.c:419
+#: plugins/check_dns.c:414
#, c-format
msgid ""
"-H, --hostname=HOST\n"
" Optionally expect the DNS server to be authoritative for the lookup\n"
msgstr ""
-#: plugins/check_dummy.c:54
+#: plugins/check_dummy.c:53
msgid "Arguments to check_dummy must be an integer"
msgstr "Argument für check_dummy muss ein Integer sein"
-#: plugins/check_dummy.c:63 plugins/check_http.c:932 plugins/check_procs.c:281
+#: plugins/check_dummy.c:62 plugins/check_http.c:932 plugins/check_procs.c:281
#, c-format
msgid "WARNING"
msgstr "WARNING"
-#: plugins/check_dummy.c:66 plugins/check_http.c:934 plugins/check_procs.c:286
+#: plugins/check_dummy.c:65 plugins/check_http.c:934 plugins/check_procs.c:286
#, c-format
msgid "CRITICAL"
msgstr "CRITICAL"
-#: plugins/check_dummy.c:69 plugins/check_http.c:928
+#: plugins/check_dummy.c:68 plugins/check_http.c:928
#, c-format
msgid "UNKNOWN"
msgstr "UNKNOWN"
-#: plugins/check_dummy.c:72
+#: plugins/check_dummy.c:71
#, c-format
msgid "Status %d is not a supported error state\n"
msgstr "Status %d ist kein bekannter Fehlerstatus\n"
-#: plugins/check_dummy.c:94
+#: plugins/check_dummy.c:93
#, c-format
msgid ""
"This plugin will simply return the state corresponding to the numeric value\n"
msgid "FPING %s - %s (loss=%.0f%% )|%s\n"
msgstr "FPING %s - %s (verloren=%.0f%% )|%s\n"
-#: plugins/check_fping.c:293
+#: plugins/check_fping.c:291
msgid "Packet size must be a positive integer"
msgstr "Packet size muss ein positiver Integer sein"
-#: plugins/check_fping.c:299
+#: plugins/check_fping.c:297
msgid "Packet count must be a positive integer"
msgstr "Packet count muss ein positiver Integer sein"
-#: plugins/check_fping.c:306
-msgid ""
-"Hostname was not supplied\n"
-"\n"
+#: plugins/check_fping.c:303 plugins/check_time.c:307 plugins/check_udp.c:207
+msgid "Hostname was not supplied"
msgstr ""
-"Kein Hostname angegeben\n"
-"\n"
-#: plugins/check_fping.c:327
+#: plugins/check_fping.c:323
#, c-format
msgid "%s: Only one threshold may be packet loss (%s)\n"
msgstr "%s: Nur ein Wert darf für packet loss angegeben werden (%s)\n"
-#: plugins/check_fping.c:331
+#: plugins/check_fping.c:327
#, c-format
msgid "%s: Only one threshold must be packet loss (%s)\n"
msgstr "%s: Nur ein Wert darf für packet loss angegeben werden (%s)\n"
-#: plugins/check_fping.c:364
+#: plugins/check_fping.c:359
#, c-format
msgid ""
"This plugin will use the /bin/fping command to ping the specified host\n"
"\n"
msgstr ""
-#: plugins/check_fping.c:373
+#: plugins/check_fping.c:368
#, c-format
msgid ""
" -H, --hostname=HOST\n"
" Number of ICMP packets to send (default: %d)\n"
msgstr ""
-#: plugins/check_fping.c:389
+#: plugins/check_fping.c:384
#, c-format
msgid ""
"\n"
msgid "CRITICAL - Host type parameter incorrect!\n"
msgstr "CRITICAL - Host type parameter unkorrekt!\n"
-#: plugins/check_game.c:305
+#: plugins/check_game.c:126
+#, fuzzy, c-format
+msgid "CRITICAL - Host not found\n"
+msgstr "CRITICAL - Text nicht gefunden%s|%s %s\n"
+
+#: plugins/check_game.c:130
+#, fuzzy, c-format
+msgid "CRITICAL - Game server down or unavailable\n"
+msgstr "CRITICAL - Serverdatum \"%100s\" konnte nicht verarbeitet werden"
+
+#: plugins/check_game.c:134
+#, fuzzy, c-format
+msgid "CRITICAL - Game server timeout\n"
+msgstr "CRITICAL - Konnte kein Serverzertifikat erhalten\n"
+
+#: plugins/check_game.c:300
#, c-format
msgid "This plugin tests game server connections with the specified host."
msgstr "Dieses plugin testet Gameserververbindungen zum angegebenen Host."
-#: plugins/check_game.c:311
+#: plugins/check_game.c:306
#, c-format
msgid ""
"<game> = Game type that is recognised by qstat (without the leading "
" [ping_field] = Field number in raw qstat output that contains ping time\n"
msgstr ""
-#: plugins/check_game.c:321
+#: plugins/check_game.c:316
#, c-format
msgid ""
"\n"
msgid "Printer ok - (%s)\n"
msgstr "Printer ok - (%s)\n"
-#: plugins/check_hpjd.c:381
+#: plugins/check_hpjd.c:376
#, c-format
msgid ""
"This plugin tests the STATUS of an HP printer with a JetDirect card.\n"
"Net-snmp muss auf dem ausführenden Computer installiert sein.\n"
"\n"
-#: plugins/check_hpjd.c:389
+#: plugins/check_hpjd.c:384
#, c-format
msgid ""
" -C, --community=STRING\n"
msgid "HTTP CRITICAL - Could not make SSL connection\n"
msgstr "HTTP CRITICAL - Konnte keine SSL Verbindung herstellen\n"
-#: plugins/check_http.c:177 plugins/check_http.c:739
+#: plugins/check_http.c:177 plugins/check_http.c:739 plugins/check_tcp.c:268
#, c-format
msgid "CRITICAL - Cannot retrieve server certificate.\n"
msgstr "CRITICAL - Konnte kein Serverzertifikat erhalten\n"
msgid "Invalid option - SSL is not available"
msgstr "Ungültige Option - SSL ist nicht verfügbar\n"
-#: plugins/check_http.c:309
+#: plugins/check_http.c:309 plugins/check_tcp.c:576
msgid "Invalid certificate expiration period"
msgstr "Ungültiger Zertifikatsablauftermin"
msgid "Could Not Compile Regular Expression: %s"
msgstr ""
-#: plugins/check_http.c:404 plugins/check_smtp.c:364 plugins/check_tcp.c:484
+#: plugins/check_http.c:404 plugins/check_smtp.c:364 plugins/check_ssh.c:136
+#: plugins/check_tcp.c:482
msgid "IPv6 support not available"
msgstr "IPv6 Unterstützung nicht vorhanden"
msgid "CRITICAL - Cannot create SSL context.\n"
msgstr "CRITICAL - Konnte SSL Kontext nicht erzeugen.\n"
-#: plugins/check_http.c:1214 plugins/check_tcp.c:642
+#: plugins/check_http.c:1214 plugins/check_tcp.c:640
#, c-format
msgid "CRITICAL - Cannot initiate SSL handshake.\n"
msgstr "CRITICAL - Konnte SSL Handshake nicht starten.\n"
-#: plugins/check_http.c:1244 plugins/check_http.c:1256
+#: plugins/check_http.c:1244 plugins/check_http.c:1256 plugins/check_tcp.c:670
+#: plugins/check_tcp.c:682
#, c-format
msgid "CRITICAL - Wrong time format in certificate.\n"
msgstr ""
"the certificate is expired.\n"
msgstr ""
+#: plugins/check_icmp.c:313
+#, c-format
+msgid "Root access needed (for raw sockets)\n"
+msgstr ""
+
+#: plugins/check_icmp.c:319
+msgid "icmp: unknown protocol"
+msgstr ""
+
+#: plugins/check_icmp.c:325
+msgid "Can't create raw socket"
+msgstr ""
+
+#: plugins/check_icmp.c:337
+msgid "Unable to allocate memory for host name list\n"
+msgstr ""
+
+#: plugins/check_icmp.c:362 plugins/check_icmp.c:367 plugins/check_icmp.c:546
+#: plugins/check_icmp.c:551
+#, fuzzy
+msgid "Failed to allocate memory for hostname"
+msgstr "konnte keinen Speicher für '%s' reservieren\n"
+
+#: plugins/check_icmp.c:378 plugins/check_icmp.c:385
+#, c-format
+msgid "Illegal threshold pair specified for -%c"
+msgstr ""
+
+#: plugins/check_icmp.c:392 plugins/check_icmp.c:399 plugins/check_icmp.c:421
+#, c-format
+msgid "Option -%c requires integer argument\n"
+msgstr ""
+
+#: plugins/check_icmp.c:406 plugins/check_icmp.c:414
+#, c-format
+msgid "Option -%c requires positive non-zero integer argument\n"
+msgstr ""
+
+#: plugins/check_icmp.c:470
+#, c-format
+msgid "Option flag -%c specified, but not recognized\n"
+msgstr ""
+
+#: plugins/check_icmp.c:497
+#, c-format
+msgid "%s: these options are too risky for mere mortals.\n"
+msgstr ""
+
+#: plugins/check_icmp.c:498
+#, c-format
+msgid "%s: You need i >= %u and r < %u\n"
+msgstr ""
+
+#: plugins/check_icmp.c:500
+#, c-format
+msgid "Current settings; i = %d, r = %d\n"
+msgstr ""
+
+#: plugins/check_icmp.c:506
+#, c-format
+msgid "%s: data size %u not valid, must be between %u and %u\n"
+msgstr ""
+
+#: plugins/check_icmp.c:513
+#, c-format
+msgid "%s: backoff factor %.1f not valid, must be between %.1f and %.1f\n"
+msgstr ""
+
+#: plugins/check_icmp.c:520
+#, c-format
+msgid "%s: count %u not valid, must be less than %u\n"
+msgstr ""
+
+#: plugins/check_icmp.c:539
+#, c-format
+msgid "Generate flag requires command line parameters beyond switches\n"
+msgstr ""
+
+#: plugins/check_icmp.c:568
+#, c-format
+msgid ""
+"No hosts to work with!\n"
+"\n"
+msgstr ""
+
+#: plugins/check_icmp.c:574
+msgid "Can't malloc array of hosts"
+msgstr ""
+
+#: plugins/check_icmp.c:706
+#, c-format
+msgid "%s is down (lost 100%%)"
+msgstr ""
+
+#: plugins/check_icmp.c:757
+#, c-format
+msgid "No hostaddress specified.\n"
+msgstr ""
+
+#: plugins/check_icmp.c:768
+#, c-format
+msgid "OK - All %d hosts are alive\n"
+msgstr ""
+
+#: plugins/check_icmp.c:771
+#, fuzzy, c-format
+msgid "CRITICAL - %d of %d hosts are alive\n"
+msgstr "CRITICAL - Serverdatum \"%100s\" konnte nicht verarbeitet werden"
+
+#: plugins/check_icmp.c:787
+msgid "Can't malloc ping packet"
+msgstr ""
+
+#: plugins/check_icmp.c:811
+#, c-format
+msgid "%s error while sending ping: %s\n"
+msgstr ""
+
+#: plugins/check_icmp.c:863
+#, c-format
+msgid "Received packet too short for ICMP (%d bytes from %s)\n"
+msgstr ""
+
+#: plugins/check_icmp.c:906
+#, c-format
+msgid "%s : duplicate for [%d], %d bytes, %s ms"
+msgstr ""
+
+#: plugins/check_icmp.c:916
+#, c-format
+msgid "%s : duplicate for [%d], %d bytes, %s ms\n"
+msgstr ""
+
+#: plugins/check_icmp.c:945
+#, c-format
+msgid "ICMP Unreachable (Invalid Code) from %s for ICMP Echo sent to %s"
+msgstr ""
+
+#: plugins/check_icmp.c:950 plugins/check_icmp.c:974
+#, c-format
+msgid "ICMP Unreachable from %s for ICMP Echo sent to %s"
+msgstr ""
+
+#: plugins/check_icmp.c:1059
+#, fuzzy, c-format
+msgid "%s address not found\n"
+msgstr "%s [%s nicht gefunden]"
+
+#: plugins/check_icmp.c:1067
+#, fuzzy, c-format
+msgid "%s has no address data\n"
+msgstr "Nameserver %s hat keine DatensƤtze\n"
+
+#: plugins/check_icmp.c:1100
+msgid "Can't allocate some space for a string"
+msgstr ""
+
+#: plugins/check_icmp.c:1119
+msgid "Can't allocate HOST_ENTRY"
+msgstr ""
+
+#: plugins/check_icmp.c:1132
+msgid "Can't allocate resp_times array"
+msgstr ""
+
+#: plugins/check_icmp.c:1196
+msgid "malloc() failed!"
+msgstr ""
+
+#: plugins/check_icmp.c:1213
+#, c-format
+msgid "%s: %s : A network error occurred\n"
+msgstr ""
+
+#: plugins/check_icmp.c:1279
+msgid "select() in u_sleep:"
+msgstr ""
+
+#: plugins/check_icmp.c:1309
+msgid "select() in recvfrom_wto"
+msgstr ""
+
+#: plugins/check_icmp.c:1316
+msgid "recvfrom"
+msgstr ""
+
#: plugins/check_icmp.c:1371
#, c-format
msgid ""
msgid "Could not set protocol version %d\n"
msgstr ""
+#: plugins/check_ldap.c:137
+#, fuzzy, c-format
+msgid "Could not init TLS at port %i!\n"
+msgstr "Konnte stderr nicht öffnen für: %s\n"
+
+#: plugins/check_ldap.c:141
+#, c-format
+msgid "TLS not supported by the libraries!\n"
+msgstr ""
+
+#: plugins/check_ldap.c:160
+#, fuzzy, c-format
+msgid "Could not init startTLS at port %i!\n"
+msgstr "Konnte stderr nicht öffnen für: %s\n"
+
+#: plugins/check_ldap.c:164
+#, c-format
+msgid "startTLS not supported by the library, needs LDAPv3!\n"
+msgstr ""
+
#: plugins/check_ldap.c:174
#, c-format
msgid "Could not bind to the ldap-server\n"
msgid "LDAP %s - %.3f seconds response time|%s\n"
msgstr ""
-#: plugins/check_ldap.c:311 plugins/check_ping.c:221 plugins/check_ssh.c:138
+#: plugins/check_ldap.c:311 plugins/check_ping.c:219
msgid "IPv6 support not available\n"
msgstr ""
-#: plugins/check_ldap.c:335
-msgid "please specify the host name\n"
+#: plugins/check_ldap.c:334
+msgid "Please specify the host name\n"
msgstr ""
-#: plugins/check_ldap.c:338
-msgid "please specify the LDAP base\n"
+#: plugins/check_ldap.c:337
+msgid "Please specify the LDAP base\n"
msgstr ""
-#: plugins/check_ldap.c:365
+#: plugins/check_ldap.c:362
#, c-format
msgid ""
" -a [--attr]\n"
" ldap password (if required)\n"
msgstr ""
-#: plugins/check_ldap.c:376
+#: plugins/check_ldap.c:373
#, c-format
msgid ""
" -2 [--ver2]\n"
msgid "Critical threshold must be float or float triplet!\n"
msgstr ""
-#: plugins/check_load.c:273
+#: plugins/check_load.c:271
msgid "Warning threshold for 1-minute load average is not specified\n"
msgstr ""
-#: plugins/check_load.c:275
+#: plugins/check_load.c:273
msgid "Warning threshold for 5-minute load average is not specified\n"
msgstr ""
-#: plugins/check_load.c:277
+#: plugins/check_load.c:275
msgid "Warning threshold for 15-minute load average is not specified\n"
msgstr ""
-#: plugins/check_load.c:279
+#: plugins/check_load.c:277
msgid "Critical threshold for 1-minute load average is not specified\n"
msgstr ""
-#: plugins/check_load.c:281
+#: plugins/check_load.c:279
msgid "Critical threshold for 5-minute load average is not specified\n"
msgstr ""
-#: plugins/check_load.c:283
+#: plugins/check_load.c:281
msgid "Critical threshold for 15-minute load average is not specified\n"
msgstr ""
-#: plugins/check_load.c:285
+#: plugins/check_load.c:283
msgid ""
"Parameter inconsistency: 1-minute \"warning load\" greater than \"critical "
"load\".\n"
msgstr ""
-#: plugins/check_load.c:287
+#: plugins/check_load.c:285
msgid ""
"Parameter inconsistency: 5-minute \"warning load\" greater than \"critical "
"load\".\n"
msgstr ""
-#: plugins/check_load.c:289
+#: plugins/check_load.c:287
msgid ""
"Parameter inconsistency: 15-minute \"warning load\" greater than \"critical "
"load\".\n"
msgstr ""
-#: plugins/check_load.c:303
+#: plugins/check_load.c:301
#, c-format
msgid ""
"This plugin tests the current system load average.\n"
"\n"
msgstr ""
-#: plugins/check_load.c:309
+#: plugins/check_load.c:307
#, c-format
msgid ""
" -w, --warning=WLOAD1,WLOAD5,WLOAD15\n"
msgid "Invalid variable number"
msgstr ""
-#: plugins/check_mrtg.c:252
+#: plugins/check_mrtg.c:250
#, c-format
msgid ""
"%s is not a valid expiration time\n"
"Use '%s -h' for additional help\n"
msgstr ""
-#: plugins/check_mrtg.c:269
+#: plugins/check_mrtg.c:267
msgid "Invalid variable number\n"
msgstr ""
-#: plugins/check_mrtg.c:296
+#: plugins/check_mrtg.c:294
msgid "You must supply the variable number"
msgstr ""
-#: plugins/check_mrtg.c:317
+#: plugins/check_mrtg.c:315
#, c-format
msgid ""
"This plugin will check either the average or maximum value of one of the\n"
"\n"
msgstr ""
-#: plugins/check_mrtg.c:325
+#: plugins/check_mrtg.c:323
#, c-format
msgid ""
" -F, --logfile=FILE\n"
" Threshold value for data to result in CRITICAL status\n"
msgstr ""
-#: plugins/check_mrtg.c:339
+#: plugins/check_mrtg.c:337
#, c-format
msgid ""
" -l, --label=STRING\n"
" \"Bytes Per Second\", \"%% Utilization\")\n"
msgstr ""
-#: plugins/check_mrtg.c:346
+#: plugins/check_mrtg.c:344
#, c-format
msgid ""
"If the value exceeds the <vwl> threshold, a WARNING status is returned. If\n"
"\n"
msgstr ""
-#: plugins/check_mrtg.c:352
+#: plugins/check_mrtg.c:350
#, c-format
msgid ""
"This plugin is useful for monitoring MRTG data that does not correspond to\n"
"\n"
msgstr ""
-#: plugins/check_mrtg.c:359
+#: plugins/check_mrtg.c:357
#, c-format
msgid ""
"Notes:\n"
msgid "Traffic %s - %s\n"
msgstr ""
-#: plugins/check_mrtgtraf.c:324
+#: plugins/check_mrtgtraf.c:320
#, c-format
msgid ""
"\n"
"\n"
msgstr ""
-#: plugins/check_mrtgtraf.c:336
+#: plugins/check_mrtgtraf.c:332
#, c-format
msgid ""
" -F, --filename=STRING\n"
" Critical threshold pair \"<incoming>,<outgoing>\"\n"
msgstr ""
-#: plugins/check_mrtgtraf.c:348
+#: plugins/check_mrtgtraf.c:344
#, c-format
msgid ""
"Notes:\n"
" for future enhancements of this plugin.\n"
msgstr ""
-#: plugins/check_mysql.c:279
+#: plugins/check_mysql.c:101
+#, c-format
+msgid "slave query error: %s\n"
+msgstr ""
+
+#: plugins/check_mysql.c:107
+#, c-format
+msgid "slave store_result error: %s\n"
+msgstr ""
+
+#: plugins/check_mysql.c:114
+#, c-format
+msgid "slave fetch row error: %s\n"
+msgstr ""
+
+#: plugins/check_mysql.c:119
+#, c-format
+msgid "Slave running: %s"
+msgstr ""
+
+#: plugins/check_mysql.c:274
#, c-format
msgid "This program tests connections to a mysql server\n"
msgstr ""
-#: plugins/check_mysql.c:287
+#: plugins/check_mysql.c:282
#, c-format
msgid ""
" -d, --database=STRING\n"
" Check if the slave thread is running properly.\n"
msgstr ""
-#: plugins/check_mysql.c:299
+#: plugins/check_mysql.c:294
#, c-format
msgid ""
"\n"
msgid "CRITICAL - Cannot open status log for reading!\n"
msgstr ""
+#: plugins/check_nagios.c:98
+#, c-format
+msgid "command: %s\n"
+msgstr ""
+
#: plugins/check_nagios.c:140
#, c-format
msgid "Found process: %s %s\n"
msgid "Nagios %s: located %d process%s, status log updated %d second%s ago\n"
msgstr ""
-#: plugins/check_nagios.c:209 plugins/check_nagios.c:243
-#, c-format
-msgid ""
-"Expiration time must be an integer (seconds)\n"
-"Type '%s -h' for additional help\n"
-msgstr ""
-
-#: plugins/check_nagios.c:223
-#, c-format
-msgid ""
-"%s: Unknown argument: %c\n"
-"\n"
-msgstr ""
+#: plugins/check_nagios.c:209 plugins/check_nagios.c:240
+#, fuzzy
+msgid "Expiration time must be an integer (seconds)\n"
+msgstr "skip lines muss ein Integer sein"
-#: plugins/check_nagios.c:255
-#, c-format
-msgid ""
-"You must provide the status_log\n"
-"Type '%s -h' for additional help\n"
-msgstr ""
+#: plugins/check_nagios.c:251
+#, fuzzy
+msgid "You must provide the status_log\n"
+msgstr "%s: Hostname muss angegeben werden\n"
-#: plugins/check_nagios.c:259
-#, c-format
-msgid ""
-"You must provide a process string\n"
-"Type '%s -h' for additional help\n"
-msgstr ""
+#: plugins/check_nagios.c:254
+#, fuzzy
+msgid "You must provide a process string\n"
+msgstr "%s: Hostname muss angegeben werden\n"
-#: plugins/check_nagios.c:274
+#: plugins/check_nagios.c:268
#, c-format
msgid ""
"This plugin checks the status of the Nagios process on the local\n"
"\n"
msgstr ""
-#: plugins/check_nagios.c:284
+#: plugins/check_nagios.c:278
#, c-format
msgid ""
" -F, --filename=FILE\n"
" Substring to search for in process arguments\n"
msgstr ""
-#: plugins/check_nagios.c:292
+#: plugins/check_nagios.c:286
#, c-format
msgid ""
"Example:\n"
msgid "Please specify a variable to check"
msgstr ""
-#: plugins/check_nt.c:510 plugins/check_nwstat.c:782
-#: plugins/check_overcr.c:352
-#, c-format
-msgid ""
-"Server port an integer (seconds)\n"
-"Type '%s -h' for additional help\n"
-msgstr ""
+#: plugins/check_nt.c:508
+#, fuzzy
+msgid "Server port must be an integer\n"
+msgstr "skip lines muss ein Integer sein"
-#: plugins/check_nt.c:563
+#: plugins/check_nt.c:561
msgid "None"
msgstr ""
-#: plugins/check_nt.c:620
+#: plugins/check_nt.c:574
+msgid "could not fetch information from server\n"
+msgstr ""
+
+#: plugins/check_nt.c:618
#, c-format
msgid ""
"This plugin collects data from the NSClient service running on a\n"
"\n"
msgstr ""
-#: plugins/check_nt.c:625
+#: plugins/check_nt.c:623
#, c-format
msgid ""
"\n"
" Print version information\n"
msgstr ""
-#: plugins/check_nt.c:643
+#: plugins/check_nt.c:641
#, c-format
msgid ""
"-v, --variable=STRING\n"
" Variable to check. Valid variables are:\n"
msgstr ""
-#: plugins/check_nt.c:646
+#: plugins/check_nt.c:644
#, c-format
msgid ""
" CLIENTVERSION = Get the NSClient version\n"
" If -l <version> is specified, will return warning if versions differ.\n"
msgstr ""
-#: plugins/check_nt.c:649
+#: plugins/check_nt.c:647
#, c-format
msgid ""
" CPULOAD = Average CPU load on last x minutes.\n"
" ie: -l 60,90,95,120,90,95\n"
msgstr ""
-#: plugins/check_nt.c:656
+#: plugins/check_nt.c:654
#, c-format
msgid ""
" UPTIME = Get the uptime of the machine.\n"
" No specific parameters. No warning or critical threshold\n"
msgstr ""
-#: plugins/check_nt.c:659
+#: plugins/check_nt.c:657
#, c-format
msgid ""
" USEDDISKSPACE = Size and percentage of disk use.\n"
" Warning and critical thresholds can be specified with -w and -c.\n"
msgstr ""
-#: plugins/check_nt.c:663
+#: plugins/check_nt.c:661
#, c-format
msgid ""
" MEMUSE = Memory use.\n"
" Warning and critical thresholds can be specified with -w and -c.\n"
msgstr ""
-#: plugins/check_nt.c:666
+#: plugins/check_nt.c:664
#, c-format
msgid ""
" SERVICESTATE = Check the state of one or several services.\n"
"\t\t in the returned string.\n"
msgstr ""
-#: plugins/check_nt.c:672
+#: plugins/check_nt.c:670
#, c-format
msgid ""
" PROCSTATE = Check if one or several process are running.\n"
" Same syntax as SERVICESTATE.\n"
msgstr ""
-#: plugins/check_nt.c:675
+#: plugins/check_nt.c:673
#, c-format
msgid ""
" COUNTER = Check any performance counter of Windows NT/2000.\n"
" \"%%.f %%%% paging file used.\"\n"
msgstr ""
-#: plugins/check_nt.c:685
+#: plugins/check_nt.c:683
#, c-format
msgid ""
"Notes:\n"
msgid "Nothing to check!\n"
msgstr ""
-#: plugins/check_nwstat.c:910
+#: plugins/check_nwstat.c:780 plugins/check_overcr.c:342
+#, fuzzy
+msgid "Server port an integer\n"
+msgstr "skip lines muss ein Integer sein"
+
+#: plugins/check_nwstat.c:908
#, c-format
msgid ""
"This plugin attempts to contact the MRTGEXT NLM running on a\n"
"\n"
msgstr ""
-#: plugins/check_nwstat.c:920
+#: plugins/check_nwstat.c:918
#, c-format
msgid ""
" -v, --variable=STRING\n"
" UPTIME = server uptime\n"
msgstr ""
-#: plugins/check_nwstat.c:930
+#: plugins/check_nwstat.c:928
#, c-format
msgid ""
" LTCH = percent long term cache hits\n"
" TCB = dirty cache buffers as a percentage of the original\n"
msgstr ""
-#: plugins/check_nwstat.c:937
+#: plugins/check_nwstat.c:935
#, c-format
msgid ""
" OFILES = number of open files\n"
" VKNP<vol> = KB of not yet purgeable space on volume <vol>\n"
msgstr ""
-#: plugins/check_nwstat.c:946
+#: plugins/check_nwstat.c:944
#, c-format
msgid ""
" LRUM = LRU sitting time in minutes\n"
" SAPENTRIES<n> = number of entries in the SAP table for SAP type <n>\n"
msgstr ""
-#: plugins/check_nwstat.c:956
+#: plugins/check_nwstat.c:954
#, c-format
msgid ""
" TSYNC = timesync status \n"
" (e.g. \"NLM:TSANDS.NLM\")\n"
msgstr ""
-#: plugins/check_nwstat.c:963
+#: plugins/check_nwstat.c:961
#, c-format
msgid ""
" -w, --warning=INTEGER\n"
" Include server version string in results\n"
msgstr ""
-#: plugins/check_nwstat.c:973
+#: plugins/check_nwstat.c:971
#, c-format
msgid ""
"\n"
msgid "Uptime %s - Up %d days %d hours %d minutes"
msgstr ""
-#: plugins/check_overcr.c:418
+#: plugins/check_overcr.c:406
#, c-format
msgid ""
"This plugin attempts to contact the Over-CR collector daemon running on the\n"
"\n"
msgstr ""
-#: plugins/check_overcr.c:428
+#: plugins/check_overcr.c:416
#, c-format
msgid ""
"-v, --variable=STRING\n"
" UPTIME = system uptime in seconds\n"
msgstr ""
-#: plugins/check_overcr.c:439
+#: plugins/check_overcr.c:427
#, c-format
msgid ""
" -w, --warning=INTEGER\n"
" Threshold which will result in a critical status\n"
msgstr ""
-#: plugins/check_overcr.c:447
+#: plugins/check_overcr.c:435
#, c-format
msgid ""
"Notes:\n"
"\n"
msgstr ""
-#: plugins/check_overcr.c:452
+#: plugins/check_overcr.c:440
#, c-format
msgid ""
" - This plugin requres that Eric Molitors' Over-CR collector daemon be\n"
msgid " %s - database %s (%d sec.)|%s\n"
msgstr ""
-#: plugins/check_pgsql.c:229 plugins/check_pgsql.c:235 plugins/check_tcp.c:494
-#: plugins/check_time.c:267 plugins/check_time.c:279 plugins/check_udp.c:168
+#: plugins/check_pgsql.c:227 plugins/check_tcp.c:492 plugins/check_time.c:265
+#: plugins/check_time.c:277 plugins/check_udp.c:166 plugins/check_users.c:152
msgid "Critical threshold must be a positive integer"
msgstr "Critical threshold muss ein positiver Integer sein"
-#: plugins/check_pgsql.c:253
+#: plugins/check_pgsql.c:233 plugins/check_tcp.c:502 plugins/check_time.c:246
+#: plugins/check_time.c:270 plugins/check_udp.c:173 plugins/check_users.c:158
+#: plugins/check_users.c:168 plugins/check_users.c:175
+msgid "Warning threshold must be a positive integer"
+msgstr "Warning threshold muss ein positiver Integer sein"
+
+#: plugins/check_pgsql.c:251
msgid "Database name is not valid"
msgstr ""
-#: plugins/check_pgsql.c:259
+#: plugins/check_pgsql.c:257
msgid "User name is not valid"
msgstr ""
-#: plugins/check_pgsql.c:396
+#: plugins/check_pgsql.c:394
#, c-format
msgid ""
"Test whether a PostgreSQL Database is accepting connections.\n"
"\n"
msgstr ""
-#: plugins/check_pgsql.c:406
+#: plugins/check_pgsql.c:404
#, c-format
msgid ""
" -d, --database=STRING\n"
" Password (BIG SECURITY ISSUE)\n"
msgstr ""
-#: plugins/check_pgsql.c:420
+#: plugins/check_pgsql.c:418
#, c-format
msgid ""
"\n"
"PostgreSQL DBMS.\n"
msgstr ""
-#: plugins/check_pgsql.c:427
+#: plugins/check_pgsql.c:425
#, c-format
msgid ""
"\n"
"connections (start the postmaster with the -i option).\n"
msgstr ""
-#: plugins/check_pgsql.c:431
+#: plugins/check_pgsql.c:429
#, c-format
msgid ""
"\n"
msgid "PING %s - %sPacket loss = %d%%, RTA = %2.2f ms"
msgstr ""
-#: plugins/check_ping.c:232
+#: plugins/check_ping.c:230
msgid "Could not realloc() addresses\n"
msgstr ""
-#: plugins/check_ping.c:247 plugins/check_ping.c:327
+#: plugins/check_ping.c:245 plugins/check_ping.c:325
#, c-format
msgid "<max_packets> (%s) must be a non-negative number\n"
msgstr ""
-#: plugins/check_ping.c:281
+#: plugins/check_ping.c:279
#, c-format
msgid "<wpl> (%s) must be an integer percentage\n"
msgstr ""
-#: plugins/check_ping.c:292
+#: plugins/check_ping.c:290
#, c-format
msgid "<cpl> (%s) must be an integer percentage\n"
msgstr ""
-#: plugins/check_ping.c:303
+#: plugins/check_ping.c:301
#, c-format
msgid "<wrta> (%s) must be a non-negative number\n"
msgstr ""
-#: plugins/check_ping.c:314
+#: plugins/check_ping.c:312
#, c-format
msgid "<crta> (%s) must be a non-negative number\n"
msgstr ""
-#: plugins/check_ping.c:347
+#: plugins/check_ping.c:345
#, c-format
msgid ""
"%s: Warning threshold must be integer or percentage!\n"
"\n"
msgstr ""
-#: plugins/check_ping.c:360
+#: plugins/check_ping.c:358
#, c-format
msgid "<wrta> was not set\n"
msgstr ""
-#: plugins/check_ping.c:364
+#: plugins/check_ping.c:362
#, c-format
msgid "<crta> was not set\n"
msgstr ""
-#: plugins/check_ping.c:368
+#: plugins/check_ping.c:366
#, c-format
msgid "<wpl> was not set\n"
msgstr ""
-#: plugins/check_ping.c:372
+#: plugins/check_ping.c:370
#, c-format
msgid "<cpl> was not set\n"
msgstr ""
-#: plugins/check_ping.c:376
+#: plugins/check_ping.c:374
#, c-format
msgid "<wrta> (%f) cannot be larger than <crta> (%f)\n"
msgstr ""
-#: plugins/check_ping.c:380
+#: plugins/check_ping.c:378
#, c-format
msgid "<wpl> (%d) cannot be larger than <cpl> (%d)\n"
msgstr ""
-#: plugins/check_ping.c:408
+#: plugins/check_ping.c:406
#, c-format
msgid "Cannot open pipe: %s"
msgstr ""
-#: plugins/check_ping.c:412
+#: plugins/check_ping.c:410
#, c-format
msgid "Cannot open stderr for %s\n"
msgstr ""
-#: plugins/check_ping.c:467
+#: plugins/check_ping.c:465
#, c-format
msgid "CRITICAL - Network unreachable (%s)"
msgstr "CRITICAL - Netzwerk nicht erreichbar (%s)"
-#: plugins/check_ping.c:469
+#: plugins/check_ping.c:467
#, c-format
msgid "CRITICAL - Host Unreachable (%s)"
msgstr ""
-#: plugins/check_ping.c:471
+#: plugins/check_ping.c:469
#, c-format
msgid "CRITICAL - Host not found (%s)"
msgstr ""
-#: plugins/check_ping.c:473
+#: plugins/check_ping.c:471
#, c-format
msgid "CRITICAL - Time to live exceeded (%s)"
msgstr ""
-#: plugins/check_ping.c:480
+#: plugins/check_ping.c:478
msgid "Unable to realloc warn_text"
msgstr ""
-#: plugins/check_ping.c:497
+#: plugins/check_ping.c:495
#, c-format
msgid ""
"Use ping to check connection statistics for a remote host.\n"
"\n"
msgstr ""
-#: plugins/check_ping.c:505
+#: plugins/check_ping.c:503
#, c-format
msgid ""
"-H, --hostname=HOST\n"
" show HTML in the plugin output (obsoleted by urlize)\n"
msgstr ""
-#: plugins/check_ping.c:520
+#: plugins/check_ping.c:518
#, c-format
msgid ""
"THRESHOLD is <rta>,<pl>%% where <rta> is the round trip average travel\n"
"\n"
msgstr ""
-#: plugins/check_ping.c:525
+#: plugins/check_ping.c:523
#, c-format
msgid ""
"This plugin uses the ping command to probe the specified host for packet "
msgid " with %s"
msgstr ""
-#: plugins/check_procs.c:371
-msgid ""
-"Critical Process Count must be an integer!\n"
-"\n"
-msgstr ""
+#: plugins/check_procs.c:369
+#, fuzzy
+msgid "Critical Process Count must be an integer!"
+msgstr "Critical threshold muss ein Integer sein"
-#: plugins/check_procs.c:383
-msgid ""
-"Warning Process Count must be an integer!\n"
-"\n"
-msgstr ""
+#: plugins/check_procs.c:381
+#, fuzzy
+msgid "Warning Process Count must be an integer!"
+msgstr "Warning threshold Integer sein"
-#: plugins/check_procs.c:391
-#, c-format
-msgid ""
-"%s: Parent Process ID must be an integer!\n"
-"\n"
-msgstr ""
+#: plugins/check_procs.c:389
+#, fuzzy
+msgid "Parent Process ID must be an integer!"
+msgstr "Argument für check_dummy muss ein Integer sein"
-#: plugins/check_procs.c:397 plugins/check_procs.c:502
+#: plugins/check_procs.c:395 plugins/check_procs.c:497
#, c-format
msgid "%s%sSTATE = %s"
msgstr ""
-#: plugins/check_procs.c:406
-#, c-format
-msgid "UID %s was not found\n"
-msgstr ""
+#: plugins/check_procs.c:404
+#, fuzzy, c-format
+msgid "UID %s was not found"
+msgstr "%s [%s nicht gefunden]"
-#: plugins/check_procs.c:412
-#, c-format
-msgid "User name %s was not found\n"
-msgstr ""
+#: plugins/check_procs.c:410
+#, fuzzy, c-format
+msgid "User name %s was not found"
+msgstr "%s [%s nicht gefunden]"
-#: plugins/check_procs.c:417
+#: plugins/check_procs.c:415
#, c-format
msgid "%s%sUID = %d (%s)"
msgstr ""
-#: plugins/check_procs.c:427
+#: plugins/check_procs.c:425
#, c-format
msgid "%s%scommand name '%s'"
msgstr ""
-#: plugins/check_procs.c:437
+#: plugins/check_procs.c:435
#, c-format
msgid "%s%sargs '%s'"
msgstr ""
-#: plugins/check_procs.c:442
+#: plugins/check_procs.c:440
#, c-format
msgid "%s%sRSS >= %d"
msgstr ""
-#: plugins/check_procs.c:446
-#, c-format
-msgid ""
-"%s: RSS must be an integer!\n"
-"\n"
-msgstr ""
+#: plugins/check_procs.c:444
+#, fuzzy
+msgid "RSS must be an integer!"
+msgstr "skip lines muss ein Integer sein"
-#: plugins/check_procs.c:449
+#: plugins/check_procs.c:447
#, c-format
msgid "%s%sVSZ >= %d"
msgstr ""
-#: plugins/check_procs.c:453
-#, c-format
-msgid ""
-"%s: VSZ must be an integer!\n"
-"\n"
-msgstr ""
+#: plugins/check_procs.c:451
+#, fuzzy
+msgid "VSZ must be an integer!"
+msgstr "skip lines muss ein Integer sein"
-#: plugins/check_procs.c:457
+#: plugins/check_procs.c:455
#, c-format
msgid "%s%sPCPU >= %.2f"
msgstr ""
-#: plugins/check_procs.c:461
-#, c-format
-msgid ""
-"%s: PCPU must be a float!\n"
-"\n"
+#: plugins/check_procs.c:459
+msgid "PCPU must be a float!"
msgstr ""
-#: plugins/check_procs.c:485
-#, c-format
-msgid ""
-"%s: metric must be one of PROCS, VSZ, RSS, CPU, ELAPSED!\n"
-"\n"
+#: plugins/check_procs.c:483
+msgid "Metric must be one of PROCS, VSZ, RSS, CPU, ELAPSED!"
msgstr ""
-#: plugins/check_procs.c:521
+#: plugins/check_procs.c:516
#, c-format
msgid "wmax (%d) cannot be greater than cmax (%d)\n"
msgstr ""
-#: plugins/check_procs.c:525
+#: plugins/check_procs.c:520
#, c-format
msgid "wmin (%d) cannot be less than cmin (%d)\n"
msgstr ""
-#: plugins/check_procs.c:665
+#: plugins/check_procs.c:657
#, c-format
msgid ""
"Checks all processes and generates WARNING or CRITICAL states if the "
"\n"
msgstr ""
-#: plugins/check_procs.c:672
+#: plugins/check_procs.c:664
#, c-format
msgid ""
"\n"
" Generate critical state if metric is outside this range\n"
msgstr ""
-#: plugins/check_procs.c:679
+#: plugins/check_procs.c:671
#, c-format
msgid ""
"\n"
" CPU - percentage cpu\n"
msgstr ""
-#: plugins/check_procs.c:689
+#: plugins/check_procs.c:681
#, c-format
msgid " ELAPSED - time elapsed in seconds\n"
msgstr ""
-#: plugins/check_procs.c:694
+#: plugins/check_procs.c:686
#, c-format
msgid ""
" -v, --verbose\n"
" Extra information. Up to 3 verbosity levels\n"
msgstr ""
-#: plugins/check_procs.c:698
+#: plugins/check_procs.c:690
#, c-format
msgid ""
"\n"
" Only scan for processes with rss higher than indicated.\n"
msgstr ""
-#: plugins/check_procs.c:711
+#: plugins/check_procs.c:703
#, c-format
msgid ""
" -P, --pcpu=PCPU\n"
" Only scan for exact matches of COMMAND (without path).\n"
msgstr ""
-#: plugins/check_procs.c:721
+#: plugins/check_procs.c:713
#, c-format
msgid ""
"\n"
"\n"
msgstr ""
-#: plugins/check_procs.c:726
+#: plugins/check_procs.c:718
#, c-format
msgid ""
"This plugin checks the number of currently running processes and\n"
"\n"
msgstr ""
-#: plugins/check_procs.c:733
+#: plugins/check_procs.c:725
#, c-format
msgid ""
"Examples:\n"
msgid "Auth OK"
msgstr ""
-#: plugins/check_radius.c:202 plugins/check_radius.c:264
+#: plugins/check_radius.c:202 plugins/check_radius.c:262
msgid "Number of retries must be a positive integer"
msgstr ""
-#: plugins/check_radius.c:290
+#: plugins/check_radius.c:288
#, c-format
msgid ""
"Tests to see if a radius server is accepting connections.\n"
"\n"
msgstr ""
-#: plugins/check_radius.c:298
+#: plugins/check_radius.c:296
#, c-format
msgid ""
" -u, --username=STRING\n"
" Number of times to retry a failed connection\n"
msgstr ""
-#: plugins/check_radius.c:314
+#: plugins/check_radius.c:312
#, c-format
msgid ""
"\n"
"\n"
msgstr ""
-#: plugins/check_radius.c:321
+#: plugins/check_radius.c:319
#, c-format
msgid ""
"The password option presents a substantial security issue because the\n"
msgid "REAL %s - %d second response time\n"
msgstr ""
-#: plugins/check_real.c:324 plugins/check_smtp.c:343
+#: plugins/check_real.c:324 plugins/check_smtp.c:343 plugins/check_ups.c:522
msgid "Warning time must be a positive integer"
msgstr "Warnung time muss ein positiver Integer sein"
-#: plugins/check_real.c:333
-msgid "Critical time must be a nonnegative integer"
+#: plugins/check_real.c:333 plugins/check_smtp.c:334 plugins/check_ups.c:513
+msgid "Critical time must be a positive integer"
msgstr "Critical time muss ein positiver Integer sein"
-#: plugins/check_real.c:344
-msgid "Time interval must be a nonnegative integer"
-msgstr "Time interval muss ein positiver Integer sein"
-
-#: plugins/check_real.c:371
-msgid "You must provide a server to check\n"
-msgstr ""
+#: plugins/check_real.c:369
+#, fuzzy
+msgid "You must provide a server to check"
+msgstr "%s: Hostname muss angegeben werden\n"
-#: plugins/check_real.c:403
+#: plugins/check_real.c:401
#, c-format
msgid ""
"This plugin tests the REAL service on the specified host.\n"
"\n"
msgstr ""
-#: plugins/check_real.c:411
+#: plugins/check_real.c:409
#, c-format
msgid ""
" -u, --url=STRING\n"
" String to expect in first line of server response (default: %s)\n"
msgstr ""
-#: plugins/check_real.c:424
+#: plugins/check_real.c:422
#, c-format
msgid ""
"This plugin will attempt to open an RTSP connection with the host.\n"
msgid "Invalid SMTP response received from host on port %d\n"
msgstr ""
-#: plugins/check_smtp.c:182 plugins/check_snmp.c:510
+#: plugins/check_smtp.c:182 plugins/check_snmp.c:508
#, c-format
msgid "Could Not Compile Regular Expression"
msgstr ""
msgid "SMTP %s - %.3f sec. response time%s%s|%s\n"
msgstr ""
-#: plugins/check_smtp.c:313 plugins/check_smtp.c:323 plugins/check_snmp.c:566
+#: plugins/check_smtp.c:313 plugins/check_smtp.c:323 plugins/check_snmp.c:564
#, c-format
msgid "Could not realloc() units [%d]\n"
msgstr ""
-#: plugins/check_smtp.c:334
-msgid "Critical time must be a positive integer"
-msgstr "Critical time muss ein positiver Integer sein"
-
-#: plugins/check_smtp.c:354
-msgid "Time interval must be a positive integer"
-msgstr "Time interval muss ein positiver Integer sein"
-
-#: plugins/check_smtp.c:426
+#: plugins/check_smtp.c:424
#, c-format
msgid ""
"This plugin will attempt to open an SMTP connection with the host.\n"
"\n"
msgstr ""
-#: plugins/check_smtp.c:436
+#: plugins/check_smtp.c:434
#, c-format
msgid ""
" -e, --expect=STRING\n"
" FROM-address to include in MAIL command, required by Exchange 2000\n"
msgstr ""
-#: plugins/check_smtp.c:455
+#: plugins/check_smtp.c:453
#, c-format
msgid ""
"\n"
"STATE_WARNING return values.\n"
msgstr ""
-#: plugins/check_snmp.c:284 plugins/check_snmp.c:516
+#: plugins/check_snmp.c:254
+msgid "No valid data returned"
+msgstr ""
+
+#: plugins/check_snmp.c:284 plugins/check_snmp.c:514
#, c-format
msgid "%s UNKNOWN: call for regex which was not a compiled option"
msgstr ""
"CMD: %s\n"
msgstr ""
-#: plugins/check_snmp.c:455
+#: plugins/check_snmp.c:453
#, c-format
msgid "Invalid critical threshold: %s\n"
msgstr ""
-#: plugins/check_snmp.c:466
+#: plugins/check_snmp.c:464
#, c-format
msgid "Invalid warning threshold: %s\n"
msgstr ""
-#: plugins/check_snmp.c:536
+#: plugins/check_snmp.c:534
#, c-format
msgid "Could not realloc() labels[%d]"
msgstr ""
-#: plugins/check_snmp.c:548
+#: plugins/check_snmp.c:546
msgid "Could not realloc() labels\n"
msgstr ""
-#: plugins/check_snmp.c:578
+#: plugins/check_snmp.c:576
msgid "Could not realloc() units\n"
msgstr ""
-#: plugins/check_snmp.c:651
+#: plugins/check_snmp.c:649
#, c-format
msgid ""
"Missing secname (%s) or authpassword (%s) ! \n"
")"
msgstr ""
-#: plugins/check_snmp.c:659
+#: plugins/check_snmp.c:657
#, c-format
msgid "Missing secname (%s), authpassword (%s), or privpasswd (%s)! \n"
msgstr ""
-#: plugins/check_snmp.c:668
+#: plugins/check_snmp.c:666
#, c-format
msgid "Invalid SNMP version: %s\n"
msgstr ""
-#: plugins/check_snmp.c:847
+#: plugins/check_snmp.c:796
+msgid "Unbalanced quotes\n"
+msgstr ""
+
+#: plugins/check_snmp.c:845
#, c-format
msgid ""
"Check status of remote machines and obtain sustem information via SNMP\n"
"\n"
msgstr ""
-#: plugins/check_snmp.c:857
+#: plugins/check_snmp.c:855
#, c-format
msgid ""
" -P, --protocol=[1|3]\n"
" SNMPv3 auth proto\n"
msgstr ""
-#: plugins/check_snmp.c:866
+#: plugins/check_snmp.c:864
#, c-format
msgid ""
" -C, --community=STRING\n"
" SNMPv3 crypt passwd (DES)\n"
msgstr ""
-#: plugins/check_snmp.c:878
+#: plugins/check_snmp.c:876
#, c-format
msgid ""
" -o, --oid=OID(s)\n"
" to be the data that should be used in the evaluation.\n"
msgstr ""
-#: plugins/check_snmp.c:888
+#: plugins/check_snmp.c:886
#, c-format
msgid ""
" -w, --warning=INTEGER_RANGE(s)\n"
" Range(s) which will not result in a CRITICAL status\n"
msgstr ""
-#: plugins/check_snmp.c:895
+#: plugins/check_snmp.c:893
#, c-format
msgid ""
" -s, --string=STRING\n"
" Prefix label for output from plugin (default -s 'SNMP')\n"
msgstr ""
-#: plugins/check_snmp.c:906
+#: plugins/check_snmp.c:904
#, c-format
msgid ""
" -u, --units=STRING\n"
" Separates output on multiple OID requests\n"
msgstr ""
-#: plugins/check_snmp.c:916
+#: plugins/check_snmp.c:914
#, c-format
msgid ""
"\n"
" http://net-snmp.sourceforge.net before you can use this plugin.\n"
msgstr ""
-#: plugins/check_snmp.c:921
+#: plugins/check_snmp.c:919
#, c-format
msgid ""
"- Multiple OIDs may be indicated by a comma- or space-delimited list (lists "
" internal spaces must be quoted) [max 8 OIDs]\n"
msgstr ""
-#: plugins/check_snmp.c:925
+#: plugins/check_snmp.c:923
#, c-format
msgid ""
"- Ranges are inclusive and are indicated with colons. When specified as\n"
" returned if the result is outside the specified range.\n"
msgstr ""
-#: plugins/check_snmp.c:931
+#: plugins/check_snmp.c:929
#, c-format
msgid ""
"- If specified in the order 'max:min' a non-OK state will be returned if "
" result is within the (inclusive) range.\n"
msgstr ""
-#: plugins/check_snmp.c:935
+#: plugins/check_snmp.c:933
#, c-format
msgid ""
"- Upper or lower bounds may be omitted to skip checking the respective "
" returned from the SNMP query is an unsigned integer.\n"
msgstr ""
-#: plugins/check_ssh.c:221
+#: plugins/check_ssh.c:152
+#, fuzzy
+msgid "Port number must be a positive integer"
+msgstr "Port muss ein positiver Integer sein"
+
+#: plugins/check_ssh.c:217
#, c-format
msgid "Server answer: %s"
msgstr ""
-#: plugins/check_ssh.c:239
+#: plugins/check_ssh.c:235
#, c-format
msgid "SSH WARNING - %s (protocol %s) version mismatch, expected '%s'\n"
msgstr ""
-#: plugins/check_ssh.c:245
+#: plugins/check_ssh.c:241
#, c-format
msgid "SSH OK - %s (protocol %s)\n"
msgstr ""
-#: plugins/check_ssh.c:264
+#: plugins/check_ssh.c:260
#, c-format
msgid ""
"Try to connect to an SSH server at specified server and port\n"
"\n"
msgstr ""
-#: plugins/check_ssh.c:276
+#: plugins/check_ssh.c:272
#, c-format
msgid ""
" -r, --remote-version=STRING\n"
msgid "total=%llu, free=%llu\n"
msgstr ""
+#: plugins/check_swap.c:242 plugins/check_swap.c:281
+msgid "swapctl failed: "
+msgstr ""
+
#: plugins/check_swap.c:314
#, c-format
msgid " %d%% free (%llu MB out of %llu MB)"
msgstr ""
-#: plugins/check_swap.c:391
-msgid "Warning threshold must be integer or percentage!\n"
-msgstr "Warning threshold muss ein Integer oder ein Prozentwert sein!\n"
-
#: plugins/check_swap.c:408
msgid "Critical threshold must be integer or percentage!\n"
msgstr "Critical threshold muss ein Integer oder ein Prozentwert sein!\n"
-#: plugins/check_swap.c:464
+#: plugins/check_swap.c:462
msgid "Warning percentage should be more than critical percentage\n"
msgstr ""
-#: plugins/check_swap.c:468
+#: plugins/check_swap.c:466
msgid "Warning free space should be more than critical free space\n"
msgstr ""
-#: plugins/check_swap.c:482
+#: plugins/check_swap.c:480
#, c-format
msgid ""
"Check swap space on local machine.\n"
"\n"
msgstr ""
-#: plugins/check_swap.c:488
+#: plugins/check_swap.c:486
#, c-format
msgid ""
"\n"
" Verbose output. Up to 3 levels\n"
msgstr ""
-#: plugins/check_swap.c:502
+#: plugins/check_swap.c:500
#, c-format
msgid ""
"\n"
"real memory\n"
msgstr ""
-#: plugins/check_swap.c:506
+#: plugins/check_swap.c:504
#, c-format
msgid ""
"\n"
msgid "CRITICAL - Generic check_tcp called with unknown service\n"
msgstr ""
+#: plugins/check_tcp.c:262
+#, fuzzy
+msgid "CRITICAL - Could not make SSL connection\n"
+msgstr "HTTP CRITICAL - Konnte keine SSL Verbindung herstellen\n"
+
#: plugins/check_tcp.c:335
#, fuzzy, c-format
msgid "Unexpected response from host: %s\n"
msgid "%s %s%s - %.3f second response time on port %d"
msgstr ""
-#: plugins/check_tcp.c:504 plugins/check_time.c:248 plugins/check_time.c:272
-#: plugins/check_udp.c:175
-msgid "Warning threshold must be a positive integer"
-msgstr "Warning threshold muss ein positiver Integer sein"
+#: plugins/check_tcp.c:437
+msgid "No arguments found"
+msgstr ""
-#: plugins/check_tcp.c:543
+#: plugins/check_tcp.c:541
msgid "Maxbytes must be a positive integer"
msgstr "Maxbytes muss ein positiver Integer sein"
-#: plugins/check_tcp.c:557
+#: plugins/check_tcp.c:555
msgid "Refuse must be one of ok, warn, crit"
msgstr ""
-#: plugins/check_tcp.c:567
+#: plugins/check_tcp.c:565
msgid "Mismatch must be one of ok, warn, crit"
msgstr ""
-#: plugins/check_tcp.c:573
+#: plugins/check_tcp.c:571
msgid "Delay must be a positive integer"
msgstr "Delay muss ein positiver Integer sein"
-#: plugins/check_tcp.c:593
-msgid "You must provide a server address\n"
+#: plugins/check_tcp.c:584
+msgid "SSL support not available. Install OpenSSL and recompile."
msgstr ""
-#: plugins/check_tcp.c:613
+#: plugins/check_tcp.c:591
+#, fuzzy
+msgid "You must provide a server address"
+msgstr "%s: Hostname muss angegeben werden\n"
+
+#: plugins/check_tcp.c:611
#, c-format
msgid "CRITICAL - Cannot create SSL context.\n"
msgstr ""
-#: plugins/check_tcp.c:636
+#: plugins/check_tcp.c:634
#, c-format
msgid "CRITICAL - Cannot make SSL connection "
msgstr ""
-#: plugins/check_tcp.c:763
+#: plugins/check_tcp.c:711
+#, c-format
+msgid "Certificate expires in %d day(s) (%s).\n"
+msgstr ""
+
+#: plugins/check_tcp.c:715
+#, fuzzy, c-format
+msgid "Certificate expired on %s.\n"
+msgstr "Clientzertifikat benƶtigt\n"
+
+#: plugins/check_tcp.c:720
+#, fuzzy, c-format
+msgid "Certificate expires today (%s).\n"
+msgstr "Clientzertifikat benƶtigt\n"
+
+#: plugins/check_tcp.c:724
+#, c-format
+msgid "Certificate will expire on %s.\n"
+msgstr ""
+
+#: plugins/check_tcp.c:761
#, c-format
msgid ""
"This plugin tests %s connections with the specified host.\n"
"\n"
msgstr ""
-#: plugins/check_tcp.c:774
+#: plugins/check_tcp.c:772
#, c-format
msgid ""
" -s, --send=STRING\n"
" String to send server to initiate a clean close of the connection\n"
msgstr ""
-#: plugins/check_tcp.c:782
+#: plugins/check_tcp.c:780
#, c-format
msgid ""
" -r, --refuse=ok|warn|crit\n"
" Seconds to wait between sending string and polling for response\n"
msgstr ""
-#: plugins/check_tcp.c:795
+#: plugins/check_tcp.c:793
#, c-format
msgid ""
" -D, --certificate=INTEGER\n"
msgid "TIME %s - %lu second time difference|%s %s\n"
msgstr ""
-#: plugins/check_time.c:244
+#: plugins/check_time.c:242
msgid "Warning thresholds must be a positive integer"
msgstr "Warning thresholds muss ein positiver Integer sein"
-#: plugins/check_time.c:263
+#: plugins/check_time.c:261
msgid "Critical thresholds must be a positive integer"
msgstr "Critical thresholds muss ein positiver Integer sein"
-#: plugins/check_time.c:309 plugins/check_udp.c:209
-msgid "Hostname was not supplied"
-msgstr ""
-
-#: plugins/check_time.c:329
+#: plugins/check_time.c:327
#, c-format
msgid ""
"This plugin will check the time on the specified host.\n"
"\n"
msgstr ""
-#: plugins/check_time.c:337
+#: plugins/check_time.c:335
#, c-format
msgid ""
" -u, --udp\n"
" Response time (sec.) necessary to result in critical status\n"
msgstr ""
+#: plugins/check_udp.c:70
+#, fuzzy, c-format
+msgid "No response from host on port %d\n"
+msgstr "Ungültige HTTP Antwort von Host erhalten auf Port %d\n"
+
+#: plugins/check_udp.c:79
+#, fuzzy, c-format
+msgid "Invalid response received from host on port %d\n"
+msgstr "Ungültige HTTP Antwort von Host erhalten auf Port %d\n"
+
#: plugins/check_udp.c:95
#, c-format
msgid "Connection %s on port %d - %d second response time\n"
msgid "problem"
msgstr ""
-#: plugins/check_udp.c:227
+#: plugins/check_udp.c:225
#, c-format
msgid ""
"\tThis plugin tests an UDP connection with the specified host.\n"
"\n"
msgstr ""
-#: plugins/check_udp.c:236
+#: plugins/check_udp.c:234
#, c-format
msgid ""
" -e, --expect=STRING <optional>\n"
" String to send to the server when initiating the connection\n"
msgstr ""
-#: plugins/check_udp.c:248
+#: plugins/check_udp.c:246
#, c-format
msgid ""
"This plugin will attempt to connect to the specified port on the host.\n"
"\n"
msgstr ""
-#: plugins/check_ups.c:597
+#: plugins/check_ups.c:136
+msgid "On Battery, Low Battery"
+msgstr ""
+
+#: plugins/check_ups.c:141
+msgid "Online"
+msgstr ""
+
+#: plugins/check_ups.c:144
+msgid "On Battery"
+msgstr ""
+
+#: plugins/check_ups.c:148
+msgid ", Low Battery"
+msgstr ""
+
+#: plugins/check_ups.c:152
+msgid ", Calibrating"
+msgstr ""
+
+#: plugins/check_ups.c:155
+msgid ", Replace Battery"
+msgstr ""
+
+#: plugins/check_ups.c:159
+msgid ", On Bypass"
+msgstr ""
+
+#: plugins/check_ups.c:162
+msgid ", Overload"
+msgstr ""
+
+#: plugins/check_ups.c:165
+msgid ", Trimming"
+msgstr ""
+
+#: plugins/check_ups.c:168
+msgid ", Boosting"
+msgstr ""
+
+#: plugins/check_ups.c:171
+msgid ", Charging"
+msgstr ""
+
+#: plugins/check_ups.c:174
+msgid ", Discharging"
+msgstr ""
+
+#: plugins/check_ups.c:177
+msgid ", Unknown"
+msgstr ""
+
+#: plugins/check_ups.c:314
+#, fuzzy
+msgid "UPS does not support any available options\n"
+msgstr "IPv6 Unterstützung nicht vorhanden"
+
+#: plugins/check_ups.c:338 plugins/check_ups.c:398
+#, fuzzy, c-format
+msgid "Invalid response received from host\n"
+msgstr "Ungültige HTTP Antwort von Host empfangen\n"
+
+#: plugins/check_ups.c:406
+#, c-format
+msgid "CRITICAL - no such ups '%s' on that host\n"
+msgstr ""
+
+#: plugins/check_ups.c:416
+#, fuzzy, c-format
+msgid "CRITICAL - UPS data is stale\n"
+msgstr "CRITICAL - Serverdatum \"%100s\" konnte nicht verarbeitet werden"
+
+#: plugins/check_ups.c:421
+#, fuzzy, c-format
+msgid "Unknown error: %s\n"
+msgstr "Papierfehler"
+
+#: plugins/check_ups.c:428
+#, c-format
+msgid "Error: unable to parse variable\n"
+msgstr ""
+
+#: plugins/check_ups.c:535
+msgid "Unrecognized UPS variable"
+msgstr ""
+
+#: plugins/check_ups.c:573
+#, c-format
+msgid "Error : no ups indicated\n"
+msgstr ""
+
+#: plugins/check_ups.c:593
#, c-format
msgid ""
"This plugin tests the UPS service on the specified host.\n"
"\n"
msgstr ""
-#: plugins/check_ups.c:607
+#: plugins/check_ups.c:603
#, c-format
msgid ""
" -u, --ups=STRING\n"
" Name of UPS\n"
msgstr ""
-#: plugins/check_ups.c:611
+#: plugins/check_ups.c:607
#, c-format
msgid ""
" -T, --temperature\n"
" Output of temperatures in Celsius\n"
msgstr ""
-#: plugins/check_ups.c:621
+#: plugins/check_ups.c:617
#, c-format
msgid ""
"This plugin attempts to determine the status of a UPS (Uninterruptible "
"\n"
msgstr ""
-#: plugins/check_ups.c:628
+#: plugins/check_ups.c:624
#, c-format
msgid ""
"You may also specify a variable to check [such as temperature, utility "
"\n"
msgstr ""
-#: plugins/check_ups.c:634
+#: plugins/check_ups.c:630
#, c-format
msgid ""
"Notes:\n"
msgid "USERS %s - %d users currently logged in |%s\n"
msgstr ""
-#: plugins/check_users.c:154
-msgid "Critical threshold must be a positive integer\n"
-msgstr "Critical threshold muss ein positiver Integer sein\n"
-
-#: plugins/check_users.c:160 plugins/check_users.c:170
-#: plugins/check_users.c:177
-msgid "Warning threshold must be a positive integer\n"
-msgstr "Warning threshold muss ein positiver Integer sein\n"
-
-#: plugins/check_users.c:195
+#: plugins/check_users.c:193
#, c-format
msgid ""
"This plugin checks the number of users currently logged in on the local\n"
"specified.\n"
msgstr ""
-#: plugins/check_users.c:203
+#: plugins/check_users.c:201
#, c-format
msgid ""
" -w, --warning=INTEGER\n"
" Set CRITICAL status if more than INTEGER users are logged in\n"
msgstr ""
-#: plugins/check_ide_smart.c:227
+#: plugins/check_ide_smart.c:225
#, c-format
msgid "CRITICAL - Couldn't open device: %s\n"
msgstr "CRITICAL - Device konnte nicht geƶffnet werden: %s\n"
-#: plugins/check_ide_smart.c:232
+#: plugins/check_ide_smart.c:230
#, c-format
msgid "CRITICAL - SMART_CMD_ENABLE\n"
msgstr ""
-#: plugins/check_ide_smart.c:294
+#: plugins/check_ide_smart.c:292
#, c-format
msgid "CRITICAL - SMART_READ_VALUES: %s\n"
msgstr ""
-#: plugins/check_ide_smart.c:363
+#: plugins/check_ide_smart.c:361
#, c-format
msgid "CRITICAL - %d Harddrive PreFailure%cDetected! %d/%d tests failed.\n"
msgstr ""
-#: plugins/check_ide_smart.c:370
+#: plugins/check_ide_smart.c:368
#, c-format
msgid "WARNING - %d Harddrive Advisor%s Detected. %d/%d tests failed.\n"
msgstr ""
-#: plugins/check_ide_smart.c:377
+#: plugins/check_ide_smart.c:375
#, c-format
msgid "OK - Operational (%d/%d tests passed)\n"
msgstr ""
-#: plugins/check_ide_smart.c:380
+#: plugins/check_ide_smart.c:378
#, c-format
msgid "ERROR - Status '%d' uknown. %d/%d tests passed\n"
msgstr ""
-#: plugins/check_ide_smart.c:413
+#: plugins/check_ide_smart.c:411
#, c-format
msgid "OffLineStatus=%d {%s}, AutoOffLine=%s, OffLineTimeout=%d minutes\n"
msgstr ""
-#: plugins/check_ide_smart.c:419
+#: plugins/check_ide_smart.c:417
#, c-format
msgid "OffLineCapability=%d {%s %s %s}\n"
msgstr ""
-#: plugins/check_ide_smart.c:425
+#: plugins/check_ide_smart.c:423
#, c-format
msgid "SmartRevision=%d, CheckSum=%d, SmartCapability=%d {%s %s}\n"
msgstr ""
-#: plugins/check_ide_smart.c:464
+#: plugins/check_ide_smart.c:462
#, c-format
msgid "CRITICAL - %s: %s\n"
msgstr ""
-#: plugins/check_ide_smart.c:483
+#: plugins/check_ide_smart.c:481
#, c-format
msgid "CRITICAL - SMART_READ_THRESHOLDS: %s\n"
msgstr ""
-#: plugins/negate.c:244
+#: plugins/negate.c:242
#, c-format
msgid ""
"Negates the status of a plugin (returns OK for CRITICAL, and vice-versa).\n"
"\n"
msgstr ""
-#: plugins/negate.c:253
+#: plugins/negate.c:251
#, c-format
msgid " [keep timeout than the plugin timeout to retain CRITICAL status]\n"
msgstr ""
-#: plugins/negate.c:256
+#: plugins/negate.c:254
#, c-format
msgid ""
" negate \"/usr/local/nagios/libexec/check_ping -H host\"\n"
" Use single quotes if you need to retain spaces\n"
msgstr ""
-#: plugins/negate.c:262
+#: plugins/negate.c:260
#, c-format
msgid ""
"This plugin is a wrapper to take the output of another plugin and invert "
"Otherwise, the output state of the wrapped plugin is unchanged.\n"
msgstr ""
-#: plugins/urlize.c:108
+#: plugins/netutils.c:48
+#, fuzzy, c-format
+msgid "CRITICAL - Socket timeout after %d seconds\n"
+msgstr "CRITICAL - Dokumentendatum ist %d Sekunden in der Zukunft\n"
+
+#: plugins/netutils.c:50
+#, fuzzy, c-format
+msgid "CRITICAL - Abnormal timeout after %d seconds\n"
+msgstr "CRITICAL - Dokumentendatum ist %d Sekunden in der Zukunft\n"
+
+#: plugins/netutils.c:109 plugins/netutils.c:318
+#, c-format
+msgid "Send failed\n"
+msgstr ""
+
+#: plugins/netutils.c:126 plugins/netutils.c:333
+#, fuzzy, c-format
+msgid "No data was received from host!\n"
+msgstr "Keine Daten empfangen %s\n"
+
+#: plugins/netutils.c:242
+#, c-format
+msgid "Socket creation failed\n"
+msgstr ""
+
+#: plugins/netutils.c:342
+#, c-format
+msgid "Receive failed\n"
+msgstr ""
+
+#: plugins/popen.c:117
+#, fuzzy, c-format
+msgid "Could not malloc argv array in popen()\n"
+msgstr "Konnte addr nicht zuweisen\n"
+
+#: plugins/popen.c:127
+#, fuzzy, c-format
+msgid "CRITICAL - You need more args!!!\n"
+msgstr "CRITICAL - Fehler: %s\n"
+
+#: plugins/popen.c:248 plugins/utils.c:136
+#, fuzzy, c-format
+msgid "CRITICAL - Plugin timed out after %d seconds\n"
+msgstr "CRITICAL - Dokumentendatum ist %d Sekunden in der Zukunft\n"
+
+#: plugins/popen.c:264
+msgid "sysconf error for _SC_OPEN_MAX"
+msgstr ""
+
+#: plugins/urlize.c:106
#, c-format
msgid ""
"%s UNKNOWN - No data received from host\n"
"CMD: %s</A>\n"
msgstr ""
-#: plugins/urlize.c:135
+#: plugins/urlize.c:133
#, c-format
msgid ""
"\n"
"\n"
msgstr ""
-#: plugins/urlize.c:143
+#: plugins/urlize.c:141
#, c-format
msgid ""
"\n"
" urlize http://example.com/ \"check_http -H example.com -r 'two words'\"\n"
msgstr ""
+#: plugins/utils.c:433
+#, fuzzy
+msgid "failed realloc in strpcpy\n"
+msgstr "konnte keinen Speicher für '%s' reservieren\n"
+
+#: plugins/utils.c:475
+#, fuzzy
+msgid "failed malloc in strscat\n"
+msgstr "konnte keinen Speicher für '%s' reservieren\n"
+
+#~ msgid ""
+#~ "Hostname was not supplied\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Kein Hostname angegeben\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "%s: Unknown argument: %s\n"
+#~ "\n"
+#~ msgstr ""
+#~ "%s: Unbekanntes Argument: %s\n"
+#~ "\n"
+
+#~ msgid "Critical time must be a nonnegative integer"
+#~ msgstr "Critical time muss ein positiver Integer sein"
+
+#~ msgid "Time interval must be a nonnegative integer"
+#~ msgstr "Time interval muss ein positiver Integer sein"
+
+#~ msgid "Time interval must be a positive integer"
+#~ msgstr "Time interval muss ein positiver Integer sein"
+
+#~ msgid "Warning threshold must be integer or percentage!\n"
+#~ msgstr "Warning threshold muss ein Integer oder ein Prozentwert sein!\n"
+
+#~ msgid "Critical threshold must be a positive integer\n"
+#~ msgstr "Critical threshold muss ein positiver Integer sein\n"
+
+#~ msgid "Warning threshold must be a positive integer\n"
+#~ msgstr "Warning threshold muss ein positiver Integer sein\n"
+
#~ msgid "check_http: invalid option - SSL is not available\n"
#~ msgstr "check_http: ungültige Option - SSL ist nicht verfügbar\n"
diff --git a/po/fr.po b/po/fr.po
index 69b81bb8ebf496a9c3562f013cd72fe50f4ab1f0..47f7bc1e0cb1dcef15eae64f62c8a562b61b5ed6 100644 (file)
--- a/po/fr.po
+++ b/po/fr.po
msgstr ""
"Project-Id-Version: fr\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-12-25 16:26+0100\n"
+"POT-Creation-Date: 2004-12-26 00:06+0100\n"
"PO-Revision-Date: 2004-12-20 21:03+0100\n"
"Last-Translator: Benoit Mortier <benoit.mortier@opensides.be>\n"
"Language-Team: FranƧais <benoit.mortier@opensides.be>\n"
"X-Generator: KBabel 1.3.1\n"
#: plugins/check_by_ssh.c:72 plugins/check_dhcp.c:251 plugins/check_dig.c:72
-#: plugins/check_disk.c:167 plugins/check_dns.c:75 plugins/check_dummy.c:44
+#: plugins/check_disk.c:167 plugins/check_dns.c:75 plugins/check_dummy.c:43
#: plugins/check_fping.c:73 plugins/check_game.c:69 plugins/check_hpjd.c:89
#: plugins/check_http.c:149 plugins/check_ldap.c:92 plugins/check_load.c:78
#: plugins/check_mrtgtraf.c:66 plugins/check_mysql.c:63
#: plugins/check_fping.c:87 plugins/check_game.c:86 plugins/check_hpjd.c:114
#: plugins/check_nagios.c:103 plugins/check_procs.c:137
#: plugins/check_snmp.c:172 plugins/check_swap.c:151 plugins/check_users.c:59
-#: plugins/negate.c:97 plugins/urlize.c:90
+#: plugins/negate.c:97 plugins/urlize.c:88
#, c-format
msgid "Could not open pipe: %s\n"
msgstr "Impossible d'ouvrir le pipe: %s\n"
#: plugins/check_fping.c:93 plugins/check_hpjd.c:120 plugins/check_load.c:115
#: plugins/check_nagios.c:109 plugins/check_procs.c:143
#: plugins/check_snmp.c:178 plugins/check_swap.c:157 plugins/check_users.c:65
-#: plugins/negate.c:102 plugins/urlize.c:96
+#: plugins/negate.c:102 plugins/urlize.c:94
#, c-format
msgid "Could not open stderr for %s\n"
msgstr "Impossible d'ouvrir stderr pour %s\n"
msgid "SSH WARNING: could not open %s\n"
msgstr "SSH ALERTE: impossible d'ouvrir %s\n"
-#: plugins/check_by_ssh.c:216 plugins/check_http.c:254
+#: plugins/check_by_ssh.c:216 plugins/check_dig.c:217 plugins/check_disk.c:441
+#: plugins/check_dns.c:315 plugins/check_fping.c:245 plugins/check_game.c:201
+#: plugins/check_hpjd.c:336 plugins/check_http.c:254 plugins/check_ldap.c:315
+#: plugins/check_load.c:227 plugins/check_mrtg.c:236
+#: plugins/check_mrtgtraf.c:263 plugins/check_mysql.c:214
+#: plugins/check_nagios.c:222 plugins/check_nt.c:490
+#: plugins/check_nwstat.c:763 plugins/check_overcr.c:327
+#: plugins/check_pgsql.c:212 plugins/check_ping.c:197
+#: plugins/check_procs.c:346 plugins/check_radius.c:221
+#: plugins/check_real.c:354 plugins/check_smtp.c:374 plugins/check_snmp.c:401
+#: plugins/check_ssh.c:113 plugins/check_swap.c:423 plugins/check_tcp.c:465
+#: plugins/check_time.c:219 plugins/check_udp.c:149 plugins/check_ups.c:484
+#: plugins/check_users.c:143 plugins/check_ide_smart.c:209
+#: plugins/negate.c:177 plugins/urlize.c:74
#, fuzzy
msgid "Unknown argument"
msgstr ""
"%s: Argument inconnu: %c\n"
"\n"
-#: plugins/check_by_ssh.c:228 plugins/check_dig.c:266 plugins/check_disk.c:308
-#: plugins/check_http.c:266 plugins/check_ldap.c:268 plugins/check_pgsql.c:223
-#: plugins/check_procs.c:357 plugins/check_radius.c:198
-#: plugins/check_radius.c:270 plugins/check_snmp.c:447 plugins/check_ssh.c:127
-#: plugins/check_tcp.c:519 plugins/check_time.c:292 plugins/check_udp.c:182
-#: plugins/negate.c:190
+#: plugins/check_by_ssh.c:228 plugins/check_dig.c:264 plugins/check_disk.c:308
+#: plugins/check_http.c:266 plugins/check_ldap.c:268 plugins/check_pgsql.c:221
+#: plugins/check_procs.c:355 plugins/check_radius.c:198
+#: plugins/check_radius.c:268 plugins/check_real.c:344
+#: plugins/check_smtp.c:354 plugins/check_snmp.c:445 plugins/check_ssh.c:125
+#: plugins/check_tcp.c:517 plugins/check_time.c:290 plugins/check_udp.c:180
+#: plugins/check_ups.c:542 plugins/negate.c:188
msgid "Timeout interval must be a positive integer"
msgstr "L'intervalle de temps doit ĆŖtre un entier positif"
#: plugins/check_by_ssh.c:234 plugins/check_by_ssh.c:293
-#: plugins/check_dig.c:231 plugins/check_dig.c:288 plugins/check_dns.c:340
-#: plugins/check_dns.c:349 plugins/check_fping.c:259 plugins/check_hpjd.c:324
-#: plugins/check_hpjd.c:349 plugins/check_mysql.c:190
-#: plugins/check_mysql.c:230 plugins/check_pgsql.c:241
-#: plugins/check_ping.c:270 plugins/check_ping.c:393
-#: plugins/check_radius.c:235 plugins/check_real.c:302
-#: plugins/check_real.c:366 plugins/check_smtp.c:292 plugins/check_smtp.c:386
-#: plugins/check_ssh.c:146 plugins/check_tcp.c:489 plugins/check_time.c:230
-#: plugins/check_time.c:305 plugins/check_udp.c:163 plugins/check_udp.c:204
-#: plugins/check_ups.c:492 plugins/check_ups.c:561
+#: plugins/check_dig.c:229 plugins/check_dig.c:286 plugins/check_dns.c:337
+#: plugins/check_dns.c:346 plugins/check_fping.c:257 plugins/check_hpjd.c:323
+#: plugins/check_hpjd.c:346 plugins/check_mysql.c:189
+#: plugins/check_mysql.c:227 plugins/check_pgsql.c:239
+#: plugins/check_ping.c:268 plugins/check_ping.c:391
+#: plugins/check_radius.c:233 plugins/check_real.c:302
+#: plugins/check_real.c:364 plugins/check_smtp.c:292 plugins/check_smtp.c:384
+#: plugins/check_ssh.c:144 plugins/check_tcp.c:487 plugins/check_time.c:228
+#: plugins/check_time.c:303 plugins/check_udp.c:161 plugins/check_udp.c:202
+#: plugins/check_ups.c:490 plugins/check_ups.c:559
msgid "Invalid hostname/address"
msgstr "Adresse/Nom invalide"
-#: plugins/check_by_ssh.c:239 plugins/check_dig.c:239
-#: plugins/check_pgsql.c:247 plugins/check_radius.c:207
-#: plugins/check_radius.c:243 plugins/check_real.c:315
-#: plugins/check_smtp.c:299 plugins/check_tcp.c:525 plugins/check_time.c:286
-#: plugins/check_udp.c:188
+#: plugins/check_by_ssh.c:239 plugins/check_dig.c:237
+#: plugins/check_pgsql.c:245 plugins/check_radius.c:207
+#: plugins/check_radius.c:241 plugins/check_real.c:315
+#: plugins/check_smtp.c:299 plugins/check_tcp.c:523 plugins/check_time.c:284
+#: plugins/check_udp.c:186 plugins/check_ups.c:504
msgid "Port must be a positive integer"
msgstr "Le numéro du port doit être un entier positif"
" Print version information\n"
msgstr ""
+#: plugins/check_dig.c:84 plugins/check_dig.c:86
+#, c-format
+msgid "Looking for: '%s'\n"
+msgstr ""
+
#: plugins/check_dig.c:130
msgid "Server not found in ANSWER SECTION"
msgstr "Le serveur n'a pas ƩtƩ trouvƩ dans l'ANSWER SECTION"
msgid "%.3f seconds response time (%s)"
msgstr "%.3f secondes de temps de rƩponse (%s)"
-#: plugins/check_dig.c:217 plugins/check_disk.c:441 plugins/check_dns.c:316
-#: plugins/check_fping.c:245 plugins/check_game.c:202 plugins/check_hpjd.c:337
-#: plugins/check_ldap.c:315 plugins/check_load.c:227 plugins/check_mrtg.c:236
-#: plugins/check_mrtgtraf.c:263 plugins/check_mysql.c:215
-#: plugins/check_overcr.c:335 plugins/check_pgsql.c:212
-#: plugins/check_ping.c:197 plugins/check_procs.c:346
-#: plugins/check_radius.c:221 plugins/check_real.c:354
-#: plugins/check_smtp.c:374 plugins/check_snmp.c:401 plugins/check_ssh.c:113
-#: plugins/check_swap.c:423 plugins/check_tcp.c:465 plugins/check_time.c:219
-#: plugins/check_udp.c:149 plugins/check_ups.c:484 plugins/check_users.c:143
-#: plugins/check_ide_smart.c:209 plugins/negate.c:177 plugins/urlize.c:74
-#, c-format
-msgid ""
-"%s: Unknown argument: %s\n"
-"\n"
-msgstr ""
-"%s: Argument inconnu: %s\n"
-"\n"
-
-#: plugins/check_dig.c:250
+#: plugins/check_dig.c:248
msgid "Warning interval must be a positive integer"
msgstr "Attention l'intervalle doit ĆŖtre un entier positif"
-#: plugins/check_dig.c:258
+#: plugins/check_dig.c:256
msgid "Critical interval must be a positive integer"
msgstr "Critique l'intervalle doit ĆŖtre un entier positif"
-#: plugins/check_dig.c:321
+#: plugins/check_dig.c:319
#, c-format
msgid ""
"Test the DNS service on the specified host using dig\n"
"Teste le service DNS sur l'hƓte spƩcifiƩ en utilisant dig\n"
"\n"
-#: plugins/check_dig.c:329
+#: plugins/check_dig.c:327
#, c-format
msgid ""
" -l, --lookup=STRING\n"
" -l, --lookup=STRING\n"
" nom de machine à vérifier\n"
-#: plugins/check_dig.c:333
+#: plugins/check_dig.c:331
#, c-format
msgid ""
" -T, --record_type=STRING\n"
" -T, --record_type=STRING\n"
" type d'enregistrement à vérifier (défaut: A)\n"
-#: plugins/check_dig.c:337
+#: plugins/check_dig.c:335
#, c-format
msgid ""
" -a, --expected_address=STRING\n"
msgid "%s [%s not found]"
msgstr "%s [%s non trouvƩ]"
-#: plugins/check_disk.c:325
+#: plugins/check_disk.c:325 plugins/check_swap.c:391
msgid "Warning threshold must be integer or percentage!"
msgstr "Le seuil d'alerte doit ĆŖtre un entier positif!"
msgid "failed allocating storage for '%s'\n"
msgstr "Impossible d'allouer de l'espace pour '%s'\n"
-#: plugins/check_disk.c:502
+#: plugins/check_disk.c:489
+#, fuzzy, c-format
+msgid " for %s\n"
+msgstr "Format: %s\n"
+
+#: plugins/check_disk.c:500
#, c-format
msgid "INPUT ERROR: No thresholds specified"
msgstr "INPUT ERROR: Pas de seuil spƩcifiƩ"
-#: plugins/check_disk.c:508
+#: plugins/check_disk.c:506
#, c-format
msgid ""
"INPUT ERROR: C_DFP (%f) should be less than W_DFP (%.1f) and both should be "
"INPUT ERROR: C_DFP (%f) doit ĆŖtre plus petit que W_DFP (%.1f) et les deux "
"doivent ĆŖtre entre 0 et 100 pourcent"
-#: plugins/check_disk.c:515
+#: plugins/check_disk.c:513
#, c-format
msgid ""
"INPUT ERROR: C_DF (%lu) should be less than W_DF (%lu) and both should be "
"INPUT ERROR: C_DF (%lu) doit ĆŖtre plus petit que W_DF (%lu) et les deux "
"doivent être plus grands que zéro"
-#: plugins/check_disk.c:579
+#: plugins/check_disk.c:577
#, c-format
msgid ""
"This plugin checks the amount of used disk space on a mounted file system\n"
"valeurs fournies.\n"
"\n"
-#: plugins/check_disk.c:587
+#: plugins/check_disk.c:585
#, c-format
msgid ""
" -w, --warning=INTEGER\n"
" -C, --clear\n"
" Remet à zéro\n"
-#: plugins/check_disk.c:599
+#: plugins/check_disk.c:597
#, c-format
msgid ""
" -u, --units=STRING\n"
" -m, --megabytes\n"
" Identique Ć '--units MB'\n"
-#: plugins/check_disk.c:607
+#: plugins/check_disk.c:605
#, c-format
msgid ""
" -l, --local\n"
" -e, --errors-only\n"
" Affiche seulement les pƩriphƩriques/points de montage avec des erreurs\n"
-#: plugins/check_disk.c:627
+#: plugins/check_disk.c:625
msgid ""
"Examples:\n"
" check_disk -w 10% -c 5% -p /tmp -p /var -C -w 100000 -c 50000 -p /\n"
msgid "DNS CRITICAL - '%s' returned empty host name string\n"
msgstr "DNS CRITIQUE - '%s' à retourné un nom d'hÓte vide\n"
+#: plugins/check_dns.c:138
+msgid "Non-authoritative answer:"
+msgstr ""
+
#: plugins/check_dns.c:171
msgid "nslookup returned error status"
msgstr "nslookup à retourné une erreur"
msgid "server %s is not authoritative for %s"
msgstr "Le serveur %s est autoritaire pour %s"
-#: plugins/check_dns.c:202 plugins/check_dummy.c:60 plugins/check_http.c:930
+#: plugins/check_dns.c:202 plugins/check_dummy.c:59 plugins/check_http.c:930
#: plugins/check_http.c:1183 plugins/check_procs.c:279
#, c-format
msgid "OK"
msgid "DNS failure for %s\n"
msgstr "DNS à échoué pour %s\n"
-#: plugins/check_dns.c:333 plugins/check_dns.c:343 plugins/check_dns.c:352
-#: plugins/check_dns.c:357 plugins/check_dns.c:370 plugins/check_dns.c:381
-#: plugins/check_game.c:219 plugins/check_game.c:227
+#: plugins/check_dns.c:330 plugins/check_dns.c:340 plugins/check_dns.c:349
+#: plugins/check_dns.c:354 plugins/check_dns.c:367 plugins/check_dns.c:378
+#: plugins/check_game.c:216 plugins/check_game.c:224
msgid "Input buffer overflow\n"
msgstr "Le tampon d'entrƩe a dƩbordƩ\n"
-#: plugins/check_dns.c:377
+#: plugins/check_dns.c:374
#, c-format
msgid ""
"Invalid hostname/address: %s\n"
"Adresse/Nom invalide: %s\n"
"\n"
-#: plugins/check_dns.c:409
+#: plugins/check_dns.c:404
#, c-format
msgid ""
"This plugin uses the nslookup program to obtain the IP address\n"
"dans /etc/resolv.conf sera utilisƩ.\n"
"\n"
-#: plugins/check_dns.c:419
+#: plugins/check_dns.c:414
#, c-format
msgid ""
"-H, --hostname=HOST\n"
"-A, --expect-authority\n"
" Serveur DNS qui doit normalement ĆŖtre autoritatif pour la recherche\n"
-#: plugins/check_dummy.c:54
+#: plugins/check_dummy.c:53
msgid "Arguments to check_dummy must be an integer"
msgstr "Les arguments pour check_dummy doivent ĆŖtre des entiers"
-#: plugins/check_dummy.c:63 plugins/check_http.c:932 plugins/check_procs.c:281
+#: plugins/check_dummy.c:62 plugins/check_http.c:932 plugins/check_procs.c:281
#, c-format
msgid "WARNING"
msgstr "ALERTE"
-#: plugins/check_dummy.c:66 plugins/check_http.c:934 plugins/check_procs.c:286
+#: plugins/check_dummy.c:65 plugins/check_http.c:934 plugins/check_procs.c:286
#, c-format
msgid "CRITICAL"
msgstr "CRITIQUE"
-#: plugins/check_dummy.c:69 plugins/check_http.c:928
+#: plugins/check_dummy.c:68 plugins/check_http.c:928
#, c-format
msgid "UNKNOWN"
msgstr "INCONNU"
-#: plugins/check_dummy.c:72
+#: plugins/check_dummy.c:71
#, c-format
msgid "Status %d is not a supported error state\n"
msgstr "L'Ʃtat %d n'est pas un Ʃtat supportƩ\n"
-#: plugins/check_dummy.c:94
+#: plugins/check_dummy.c:93
#, c-format
msgid ""
"This plugin will simply return the state corresponding to the numeric value\n"
msgid "FPING %s - %s (loss=%.0f%% )|%s\n"
msgstr "FPING %s - %s (perte=%.0f%% )|%s\n"
-#: plugins/check_fping.c:293
+#: plugins/check_fping.c:291
msgid "Packet size must be a positive integer"
msgstr "La taille du paquet doit ĆŖtre un entier positif"
-#: plugins/check_fping.c:299
+#: plugins/check_fping.c:297
msgid "Packet count must be a positive integer"
msgstr "Le nombre de paquets doit ĆŖtre un entier positif"
-#: plugins/check_fping.c:306
-msgid ""
-"Hostname was not supplied\n"
-"\n"
-msgstr ""
-"Le nom de l'hƓte n'a pas ƩtƩ fourni\n"
-"\n"
+#: plugins/check_fping.c:303 plugins/check_time.c:307 plugins/check_udp.c:207
+msgid "Hostname was not supplied"
+msgstr "Le nom de l'hƓte n'a pas ƩtƩ spƩcifiƩ"
-#: plugins/check_fping.c:327
+#: plugins/check_fping.c:323
#, c-format
msgid "%s: Only one threshold may be packet loss (%s)\n"
msgstr ""
"%s: Seulement un seuil peut être utilisé pour les pertes de paquets (%s)\n"
-#: plugins/check_fping.c:331
+#: plugins/check_fping.c:327
#, c-format
msgid "%s: Only one threshold must be packet loss (%s)\n"
msgstr ""
"%s: Seulement un seuil doit être utilisé pour les pertes de paquets (%s)\n"
-#: plugins/check_fping.c:364
+#: plugins/check_fping.c:359
#, c-format
msgid ""
"This plugin will use the /bin/fping command to ping the specified host\n"
"fping.\n"
"\n"
-#: plugins/check_fping.c:373
+#: plugins/check_fping.c:368
#, c-format
msgid ""
" -H, --hostname=HOST\n"
" -n, --number=INTEGER\n"
" Nombre de paquets ICMP à envoyer (défaut: %d)\n"
-#: plugins/check_fping.c:389
+#: plugins/check_fping.c:384
#, c-format
msgid ""
"\n"
msgid "CRITICAL - Host type parameter incorrect!\n"
msgstr "CRITIQUE - Argument de type hƓte incorrect!\n"
-#: plugins/check_game.c:305
+#: plugins/check_game.c:126
+#, fuzzy, c-format
+msgid "CRITICAL - Host not found\n"
+msgstr "CRITIQUE - HƓte non trouvƩ (%s)"
+
+#: plugins/check_game.c:130
+#, fuzzy, c-format
+msgid "CRITICAL - Game server down or unavailable\n"
+msgstr "CRITIQUE - Date du serveur \"%100s\" illisible"
+
+#: plugins/check_game.c:134
+#, fuzzy, c-format
+msgid "CRITICAL - Game server timeout\n"
+msgstr "CRITIQUE - Impossible d'obtenir le certificat du serveur.\n"
+
+#: plugins/check_game.c:300
#, c-format
msgid "This plugin tests game server connections with the specified host."
msgstr "Le plugin teste la connection au serveur de jeux avec l'hƓte spƩcifiƩ."
-#: plugins/check_game.c:311
+#: plugins/check_game.c:306
#, c-format
msgid ""
"<game> = Game type that is recognised by qstat (without the leading "
" [map_field] = NumƩro du champ qui contient le nom de la carte\n"
" [ping_field] = NumƩro du champ qui contient le temp de ping\n"
-#: plugins/check_game.c:321
+#: plugins/check_game.c:316
#, c-format
msgid ""
"\n"
msgid "Printer ok - (%s)\n"
msgstr "Imprimante ok - (%s)\n"
-#: plugins/check_hpjd.c:381
+#: plugins/check_hpjd.c:376
#, c-format
msgid ""
"This plugin tests the STATUS of an HP printer with a JetDirect card.\n"
"Net snmp doit être installé sur l'ordinateur qui execute le plugin.\n"
"\n"
-#: plugins/check_hpjd.c:389
+#: plugins/check_hpjd.c:384
#, c-format
msgid ""
" -C, --community=STRING\n"
msgid "HTTP CRITICAL - Could not make SSL connection\n"
msgstr "HTTP CRITIQUE - Impossible d'Ʃtablir une connection SSL\n"
-#: plugins/check_http.c:177 plugins/check_http.c:739
+#: plugins/check_http.c:177 plugins/check_http.c:739 plugins/check_tcp.c:268
#, c-format
msgid "CRITICAL - Cannot retrieve server certificate.\n"
msgstr "CRITIQUE - Impossible d'obtenir le certificat du serveur.\n"
msgid "Invalid option - SSL is not available"
msgstr "Option invalide - SSL n'est pas disponible\n"
-#: plugins/check_http.c:309
+#: plugins/check_http.c:309 plugins/check_tcp.c:576
msgid "Invalid certificate expiration period"
msgstr "PƩriode d'expiration du certificat invalide"
@@ -1208,7 +1228,8 @@ msgstr "Demande d'utilisation d'un regex qui n'est pas prƩvu dans le programme"
msgid "Could Not Compile Regular Expression: %s"
msgstr "Impossible de compiler l'expression régulière: %s"
-#: plugins/check_http.c:404 plugins/check_smtp.c:364 plugins/check_tcp.c:484
+#: plugins/check_http.c:404 plugins/check_smtp.c:364 plugins/check_ssh.c:136
+#: plugins/check_tcp.c:482
msgid "IPv6 support not available"
msgstr "Support IPv6 non disponible"
msgid "CRITICAL - Cannot create SSL context.\n"
msgstr "CRITIQUE - Impossible de crƩer le contexte SSL.\n"
-#: plugins/check_http.c:1214 plugins/check_tcp.c:642
+#: plugins/check_http.c:1214 plugins/check_tcp.c:640
#, c-format
msgid "CRITICAL - Cannot initiate SSL handshake.\n"
msgstr "CRITIQUE - Impossible d'initialiser la nƩgociation SSL.\n"
-#: plugins/check_http.c:1244 plugins/check_http.c:1256
+#: plugins/check_http.c:1244 plugins/check_http.c:1256 plugins/check_tcp.c:670
+#: plugins/check_tcp.c:682
#, c-format
msgid "CRITICAL - Wrong time format in certificate.\n"
msgstr "CRITIQUE - Format de date incorrect dans le certificat.\n"
"un Ʃtat STATE_WARNING est renvoyƩ. un Ʃtat STATE_CRITICAL est renvoyƩ quand "
"le certificat est expirƩ.\n"
+#: plugins/check_icmp.c:313
+#, c-format
+msgid "Root access needed (for raw sockets)\n"
+msgstr ""
+
+#: plugins/check_icmp.c:319
+msgid "icmp: unknown protocol"
+msgstr ""
+
+#: plugins/check_icmp.c:325
+msgid "Can't create raw socket"
+msgstr ""
+
+#: plugins/check_icmp.c:337
+msgid "Unable to allocate memory for host name list\n"
+msgstr ""
+
+#: plugins/check_icmp.c:362 plugins/check_icmp.c:367 plugins/check_icmp.c:546
+#: plugins/check_icmp.c:551
+#, fuzzy
+msgid "Failed to allocate memory for hostname"
+msgstr "Impossible d'allouer de l'espace pour '%s'\n"
+
+#: plugins/check_icmp.c:378 plugins/check_icmp.c:385
+#, c-format
+msgid "Illegal threshold pair specified for -%c"
+msgstr ""
+
+#: plugins/check_icmp.c:392 plugins/check_icmp.c:399 plugins/check_icmp.c:421
+#, c-format
+msgid "Option -%c requires integer argument\n"
+msgstr ""
+
+#: plugins/check_icmp.c:406 plugins/check_icmp.c:414
+#, c-format
+msgid "Option -%c requires positive non-zero integer argument\n"
+msgstr ""
+
+#: plugins/check_icmp.c:470
+#, c-format
+msgid "Option flag -%c specified, but not recognized\n"
+msgstr ""
+
+#: plugins/check_icmp.c:497
+#, c-format
+msgid "%s: these options are too risky for mere mortals.\n"
+msgstr ""
+
+#: plugins/check_icmp.c:498
+#, c-format
+msgid "%s: You need i >= %u and r < %u\n"
+msgstr ""
+
+#: plugins/check_icmp.c:500
+#, c-format
+msgid "Current settings; i = %d, r = %d\n"
+msgstr ""
+
+#: plugins/check_icmp.c:506
+#, c-format
+msgid "%s: data size %u not valid, must be between %u and %u\n"
+msgstr ""
+
+#: plugins/check_icmp.c:513
+#, c-format
+msgid "%s: backoff factor %.1f not valid, must be between %.1f and %.1f\n"
+msgstr ""
+
+#: plugins/check_icmp.c:520
+#, c-format
+msgid "%s: count %u not valid, must be less than %u\n"
+msgstr ""
+
+#: plugins/check_icmp.c:539
+#, c-format
+msgid "Generate flag requires command line parameters beyond switches\n"
+msgstr ""
+
+#: plugins/check_icmp.c:568
+#, c-format
+msgid ""
+"No hosts to work with!\n"
+"\n"
+msgstr ""
+
+#: plugins/check_icmp.c:574
+msgid "Can't malloc array of hosts"
+msgstr ""
+
+#: plugins/check_icmp.c:706
+#, c-format
+msgid "%s is down (lost 100%%)"
+msgstr ""
+
+#: plugins/check_icmp.c:757
+#, fuzzy, c-format
+msgid "No hostaddress specified.\n"
+msgstr "Pas de compteur spƩcifiƩ"
+
+#: plugins/check_icmp.c:768
+#, c-format
+msgid "OK - All %d hosts are alive\n"
+msgstr ""
+
+#: plugins/check_icmp.c:771
+#, fuzzy, c-format
+msgid "CRITICAL - %d of %d hosts are alive\n"
+msgstr "CRITIQUE - Date du serveur \"%100s\" illisible"
+
+#: plugins/check_icmp.c:787
+msgid "Can't malloc ping packet"
+msgstr ""
+
+#: plugins/check_icmp.c:811
+#, c-format
+msgid "%s error while sending ping: %s\n"
+msgstr ""
+
+#: plugins/check_icmp.c:863
+#, c-format
+msgid "Received packet too short for ICMP (%d bytes from %s)\n"
+msgstr ""
+
+#: plugins/check_icmp.c:906
+#, c-format
+msgid "%s : duplicate for [%d], %d bytes, %s ms"
+msgstr ""
+
+#: plugins/check_icmp.c:916
+#, c-format
+msgid "%s : duplicate for [%d], %d bytes, %s ms\n"
+msgstr ""
+
+#: plugins/check_icmp.c:945
+#, c-format
+msgid "ICMP Unreachable (Invalid Code) from %s for ICMP Echo sent to %s"
+msgstr ""
+
+#: plugins/check_icmp.c:950 plugins/check_icmp.c:974
+#, c-format
+msgid "ICMP Unreachable from %s for ICMP Echo sent to %s"
+msgstr ""
+
+#: plugins/check_icmp.c:1059
+#, fuzzy, c-format
+msgid "%s address not found\n"
+msgstr "%s [%s non trouvƩ]"
+
+#: plugins/check_icmp.c:1067
+#, fuzzy, c-format
+msgid "%s has no address data\n"
+msgstr "Le DNS %s n'a pas d'enregistrements\n"
+
+#: plugins/check_icmp.c:1100
+msgid "Can't allocate some space for a string"
+msgstr ""
+
+#: plugins/check_icmp.c:1119
+msgid "Can't allocate HOST_ENTRY"
+msgstr ""
+
+#: plugins/check_icmp.c:1132
+msgid "Can't allocate resp_times array"
+msgstr ""
+
+#: plugins/check_icmp.c:1196
+#, fuzzy
+msgid "malloc() failed!"
+msgstr "La réception à échoué\n"
+
+#: plugins/check_icmp.c:1213
+#, c-format
+msgid "%s: %s : A network error occurred\n"
+msgstr ""
+
+#: plugins/check_icmp.c:1279
+msgid "select() in u_sleep:"
+msgstr ""
+
+#: plugins/check_icmp.c:1309
+msgid "select() in recvfrom_wto"
+msgstr ""
+
+#: plugins/check_icmp.c:1316
+msgid "recvfrom"
+msgstr ""
+
#: plugins/check_icmp.c:1371
#, fuzzy, c-format
msgid ""
msgid "Could not set protocol version %d\n"
msgstr "Impossible d'utiliser le protocole version %d\n"
+#: plugins/check_ldap.c:137
+#, fuzzy, c-format
+msgid "Could not init TLS at port %i!\n"
+msgstr "Impossible de se connecter au serveur port %i\n"
+
+#: plugins/check_ldap.c:141
+#, c-format
+msgid "TLS not supported by the libraries!\n"
+msgstr ""
+
+#: plugins/check_ldap.c:160
+#, fuzzy, c-format
+msgid "Could not init startTLS at port %i!\n"
+msgstr "Impossible de se connecter au serveur port %i\n"
+
+#: plugins/check_ldap.c:164
+#, c-format
+msgid "startTLS not supported by the library, needs LDAPv3!\n"
+msgstr ""
+
#: plugins/check_ldap.c:174
#, c-format
msgid "Could not bind to the ldap-server\n"
msgid "LDAP %s - %.3f seconds response time|%s\n"
msgstr "LDAP %s - %.3f secondes de temps de rƩponse|%s\n"
-#: plugins/check_ldap.c:311 plugins/check_ping.c:221 plugins/check_ssh.c:138
+#: plugins/check_ldap.c:311 plugins/check_ping.c:219
msgid "IPv6 support not available\n"
msgstr "Support IPv6 non disponible\n"
-#: plugins/check_ldap.c:335
-msgid "please specify the host name\n"
+#: plugins/check_ldap.c:334
+#, fuzzy
+msgid "Please specify the host name\n"
msgstr "Veuillez spƩcifier le nom de l'hƓte\n"
-#: plugins/check_ldap.c:338
-msgid "please specify the LDAP base\n"
+#: plugins/check_ldap.c:337
+#, fuzzy
+msgid "Please specify the LDAP base\n"
msgstr "Veuillez spƩcifier la base LDAP\n"
-#: plugins/check_ldap.c:365
+#: plugins/check_ldap.c:362
#, c-format
msgid ""
" -a [--attr]\n"
" -P [--pass]\n"
" mot de passe ldap (si nƩcessaire)\n"
-#: plugins/check_ldap.c:376
+#: plugins/check_ldap.c:373
#, c-format
msgid ""
" -2 [--ver2]\n"
msgid "Critical threshold must be float or float triplet!\n"
msgstr "Le seuil critique doit ĆŖtre un nombre Ć virgule flottante!\n"
-#: plugins/check_load.c:273
+#: plugins/check_load.c:271
msgid "Warning threshold for 1-minute load average is not specified\n"
msgstr ""
"Le seuil d'alerte pour la charge système après 1 minute n'est pas spécifié\n"
-#: plugins/check_load.c:275
+#: plugins/check_load.c:273
msgid "Warning threshold for 5-minute load average is not specified\n"
msgstr ""
"Le seuil d'alerte pour la charge système après 5 minutes n'est pas spécifié\n"
-#: plugins/check_load.c:277
+#: plugins/check_load.c:275
msgid "Warning threshold for 15-minute load average is not specified\n"
msgstr ""
"Le seuil d'alerte pour la charge systĆØme aprĆØs 15 minutes n'est pas "
"spƩcifiƩ\n"
-#: plugins/check_load.c:279
+#: plugins/check_load.c:277
msgid "Critical threshold for 1-minute load average is not specified\n"
msgstr ""
"Le seuil critique pour la charge système après 1 minute n'est pas spécifié\n"
-#: plugins/check_load.c:281
+#: plugins/check_load.c:279
msgid "Critical threshold for 5-minute load average is not specified\n"
msgstr ""
"Le seuil critique pour la charge système après 5 minutes n'est pas spécifié\n"
-#: plugins/check_load.c:283
+#: plugins/check_load.c:281
msgid "Critical threshold for 15-minute load average is not specified\n"
msgstr ""
"Le seuil critique pour la charge système après 15 minute n'est pas spécifié\n"
-#: plugins/check_load.c:285
+#: plugins/check_load.c:283
msgid ""
"Parameter inconsistency: 1-minute \"warning load\" greater than \"critical "
"load\".\n"
"Arguments Incorrects: 1-minute \"warning load\" est plus grand que "
"\"critical load\".\n"
-#: plugins/check_load.c:287
+#: plugins/check_load.c:285
msgid ""
"Parameter inconsistency: 5-minute \"warning load\" greater than \"critical "
"load\".\n"
"Arguments Incorrects: 5-minute \"warning load\" est plus grand que "
"\"critical load\".\n"
-#: plugins/check_load.c:289
+#: plugins/check_load.c:287
msgid ""
"Parameter inconsistency: 15-minute \"warning load\" greater than \"critical "
"load\".\n"
"Arguments Incorrects: 15-minute \"warning load\" est plus grand que "
"\"critical load\".\n"
-#: plugins/check_load.c:303
+#: plugins/check_load.c:301
#, c-format
msgid ""
"This plugin tests the current system load average.\n"
"Ce plugin teste la charge systĆØme actuelle.\n"
"\n"
-#: plugins/check_load.c:309
+#: plugins/check_load.c:307
#, c-format
msgid ""
" -w, --warning=WLOAD1,WLOAD5,WLOAD15\n"
msgid "Invalid variable number"
msgstr "NumƩro de la variable invalide"
-#: plugins/check_mrtg.c:252
+#: plugins/check_mrtg.c:250
#, c-format
msgid ""
"%s is not a valid expiration time\n"
"%s n'est pas un temps d'expiration valide\n"
"Utilisez '%s -h' pour de l'aide supplƩmentaire\n"
-#: plugins/check_mrtg.c:269
+#: plugins/check_mrtg.c:267
msgid "Invalid variable number\n"
msgstr "NumƩro de la variable invalide\n"
-#: plugins/check_mrtg.c:296
+#: plugins/check_mrtg.c:294
msgid "You must supply the variable number"
msgstr "Vous devez fournir le numƩro de la variable"
-#: plugins/check_mrtg.c:317
+#: plugins/check_mrtg.c:315
#, c-format
msgid ""
"This plugin will check either the average or maximum value of one of the\n"
"Ʃcrites dans un fichier de log MRTG.\n"
"\n"
-#: plugins/check_mrtg.c:325
+#: plugins/check_mrtg.c:323
#, c-format
msgid ""
" -F, --logfile=FILE\n"
" -c, --critical=INTEGER\n"
" Valeur d'intervalle qui doit dƩclencher un seuil CRITIQUE\n"
-#: plugins/check_mrtg.c:339
+#: plugins/check_mrtg.c:337
#, c-format
msgid ""
" -l, --label=STRING\n"
" Label optionnel pour les donnƩes (Exemple: Paquets/Sec, Erreurs/Sec, \n"
" \"Bytes Par Secondes\", \"%% Utilisation\")\n"
-#: plugins/check_mrtg.c:346
+#: plugins/check_mrtg.c:344
#, c-format
msgid ""
"If the value exceeds the <vwl> threshold, a WARNING status is returned. If\n"
" un status ALERTE est renvoyƩ and un message d'alerte est affichƩ.\n"
"\n"
-#: plugins/check_mrtg.c:352
+#: plugins/check_mrtg.c:350
#, c-format
msgid ""
"This plugin is useful for monitoring MRTG data that does not correspond to\n"
"\n"
msgstr ""
-#: plugins/check_mrtg.c:359
+#: plugins/check_mrtg.c:357
#, c-format
msgid ""
"Notes:\n"
msgid "Traffic %s - %s\n"
msgstr "Trafic %s - %s\n"
-#: plugins/check_mrtgtraf.c:324
+#: plugins/check_mrtgtraf.c:320
#, c-format
msgid ""
"\n"
"\n"
msgstr ""
-#: plugins/check_mrtgtraf.c:336
+#: plugins/check_mrtgtraf.c:332
#, c-format
msgid ""
" -F, --filename=STRING\n"
" -c, --critical\n"
" Seuil Critique \"<incoming>,<outgoing>\"\n"
-#: plugins/check_mrtgtraf.c:348
+#: plugins/check_mrtgtraf.c:344
#, c-format
msgid ""
"Notes:\n"
" for future enhancements of this plugin.\n"
msgstr ""
-#: plugins/check_mysql.c:279
+#: plugins/check_mysql.c:101
+#, fuzzy, c-format
+msgid "slave query error: %s\n"
+msgstr "Erreur d'exƩcution: %s\n"
+
+#: plugins/check_mysql.c:107
+#, c-format
+msgid "slave store_result error: %s\n"
+msgstr ""
+
+#: plugins/check_mysql.c:114
+#, c-format
+msgid "slave fetch row error: %s\n"
+msgstr ""
+
+#: plugins/check_mysql.c:119
+#, c-format
+msgid "Slave running: %s"
+msgstr ""
+
+#: plugins/check_mysql.c:274
#, c-format
msgid "This program tests connections to a mysql server\n"
msgstr "Ce plugin teste une connection vers un serveur mysql\n"
-#: plugins/check_mysql.c:287
+#: plugins/check_mysql.c:282
#, c-format
msgid ""
" -d, --database=STRING\n"
" -S, --check-slave\n"
" VƩrifier si le processus esclave fonctionne correctement.\n"
-#: plugins/check_mysql.c:299
+#: plugins/check_mysql.c:294
#, c-format
msgid ""
"\n"
msgid "CRITICAL - Cannot open status log for reading!\n"
msgstr "CRITIQUE - Impossible d'ouvrir le status log en lecture!\n"
+#: plugins/check_nagios.c:98
+#, fuzzy, c-format
+msgid "command: %s\n"
+msgstr "Commande: %s\n"
+
#: plugins/check_nagios.c:140
#, c-format
msgid "Found process: %s %s\n"
"Nagios %s: à trouvé %d processus%s, status log mis à jour %d secondes%s "
"auparavant\n"
-#: plugins/check_nagios.c:209 plugins/check_nagios.c:243
-#, c-format
-msgid ""
-"Expiration time must be an integer (seconds)\n"
-"Type '%s -h' for additional help\n"
+#: plugins/check_nagios.c:209 plugins/check_nagios.c:240
+#, fuzzy
+msgid "Expiration time must be an integer (seconds)\n"
msgstr ""
"Le délai d'expiration doit être un entier (en secondes)\n"
"Tapez '%s -h' pour de l'aide additionelle\n"
-#: plugins/check_nagios.c:223
-#, c-format
-msgid ""
-"%s: Unknown argument: %c\n"
-"\n"
-msgstr ""
-"%s: Argument inconnu: %c\n"
-"\n"
-
-#: plugins/check_nagios.c:255
-#, c-format
-msgid ""
-"You must provide the status_log\n"
-"Type '%s -h' for additional help\n"
-msgstr ""
-"Vous devez fournir le fichier status_log\n"
-"Tapez '%s -h' pour de l'aide additionelle\n"
+#: plugins/check_nagios.c:251
+#, fuzzy
+msgid "You must provide the status_log\n"
+msgstr "%s: Vous devez fournir un nom d'hƓte\n"
-#: plugins/check_nagios.c:259
-#, c-format
-msgid ""
-"You must provide a process string\n"
-"Type '%s -h' for additional help\n"
-msgstr ""
-"Vous devez fournir le nom du processus\n"
-"Tapez '%s -h' pour de l'aide additionelle\n"
+#: plugins/check_nagios.c:254
+#, fuzzy
+msgid "You must provide a process string\n"
+msgstr "%s: Vous devez fournir un nom d'hƓte\n"
-#: plugins/check_nagios.c:274
+#: plugins/check_nagios.c:268
#, fuzzy, c-format
msgid ""
"This plugin checks the status of the Nagios process on the local\n"
"l'option <process_string>.\n"
"\n"
-#: plugins/check_nagios.c:284
+#: plugins/check_nagios.c:278
#, fuzzy, c-format
msgid ""
" -F, --filename=FILE\n"
"-C, --command=STRING\n"
" Commande Ć chercher dans la table des processus\n"
-#: plugins/check_nagios.c:292
+#: plugins/check_nagios.c:286
#, fuzzy, c-format
msgid ""
"Example:\n"
msgid "Please specify a variable to check"
msgstr "Veuillez prƩciser une variable a vƩrifier"
-#: plugins/check_nt.c:510 plugins/check_nwstat.c:782
-#: plugins/check_overcr.c:352
-#, c-format
-msgid ""
-"Server port an integer (seconds)\n"
-"Type '%s -h' for additional help\n"
+#: plugins/check_nt.c:508
+#, fuzzy
+msgid "Server port must be an integer\n"
msgstr ""
"Le port du server doit ĆŖtre un entier (secondes)\n"
"Tapez '%s -h' pour de l'aide additionelle\n"
-#: plugins/check_nt.c:563
+#: plugins/check_nt.c:561
msgid "None"
msgstr "Aucun"
-#: plugins/check_nt.c:620
+#: plugins/check_nt.c:574
+msgid "could not fetch information from server\n"
+msgstr ""
+
+#: plugins/check_nt.c:618
#, c-format
msgid ""
"This plugin collects data from the NSClient service running on a\n"
"Windows NT/2000/XP server.\n"
"\n"
-#: plugins/check_nt.c:625
+#: plugins/check_nt.c:623
#, c-format
msgid ""
"\n"
" Print version information\n"
msgstr ""
-#: plugins/check_nt.c:643
+#: plugins/check_nt.c:641
#, c-format
msgid ""
"-v, --variable=STRING\n"
"-v, --variable=STRING\n"
" Variable à vérifier. Les variables valides sont:\n"
-#: plugins/check_nt.c:646
+#: plugins/check_nt.c:644
#, c-format
msgid ""
" CLIENTVERSION = Get the NSClient version\n"
" CLIENTVERSION = Obtenir la version de NSClient\n"
" si l'argument -l <version> est spƩcifiƩ, une alerte sera renvoyƩe.\n"
-#: plugins/check_nt.c:649
+#: plugins/check_nt.c:647
#, c-format
msgid ""
" CPULOAD = Average CPU load on last x minutes.\n"
" ie: -l 60,90,95,120,90,95\n"
msgstr ""
-#: plugins/check_nt.c:656
+#: plugins/check_nt.c:654
#, c-format
msgid ""
" UPTIME = Get the uptime of the machine.\n"
" UPTIME = Obtenir la durƩe de bon fonctionnement de la machine.\n"
" Pas d'argument spƩcifique. Pas de seuil d'alerte ou critique\n"
-#: plugins/check_nt.c:659
+#: plugins/check_nt.c:657
#, c-format
msgid ""
" USEDDISKSPACE = Size and percentage of disk use.\n"
" Warning and critical thresholds can be specified with -w and -c.\n"
msgstr ""
-#: plugins/check_nt.c:663
+#: plugins/check_nt.c:661
#, c-format
msgid ""
" MEMUSE = Memory use.\n"
" MEMUSE = Utilisation mƩmoire.\n"
" Les seuil d'alerte et critiques peuvent être spécifiés avec -w et -c.\n"
-#: plugins/check_nt.c:666
+#: plugins/check_nt.c:664
#, c-format
msgid ""
" SERVICESTATE = Check the state of one or several services.\n"
"\t\t in the returned string.\n"
msgstr ""
-#: plugins/check_nt.c:672
+#: plugins/check_nt.c:670
#, c-format
msgid ""
" PROCSTATE = Check if one or several process are running.\n"
" PROCSTATE = VƩrifie si un ou plusieurs processus sont dƩmarrƩs.\n"
" mĆŖme syntaxe que SERVICESTATE.\n"
-#: plugins/check_nt.c:675
+#: plugins/check_nt.c:673
#, c-format
msgid ""
" COUNTER = Check any performance counter of Windows NT/2000.\n"
" \"%%.f %%%% paging file used.\"\n"
msgstr ""
-#: plugins/check_nt.c:685
+#: plugins/check_nt.c:683
#, c-format
msgid ""
"Notes:\n"
msgid "Nothing to check!\n"
msgstr "Rien à vérifier!\n"
-#: plugins/check_nwstat.c:910
+#: plugins/check_nwstat.c:780 plugins/check_overcr.c:342
+#, fuzzy
+msgid "Server port an integer\n"
+msgstr ""
+"Le port du server doit ĆŖtre un entier (secondes)\n"
+"Tapez '%s -h' pour de l'aide additionelle\n"
+
+#: plugins/check_nwstat.c:908
#, c-format
msgid ""
"This plugin attempts to contact the MRTGEXT NLM running on a\n"
"un serveur Novell pour récupèrer l'information système demandée.\n"
"\n"
-#: plugins/check_nwstat.c:920
+#: plugins/check_nwstat.c:918
#, fuzzy, c-format
msgid ""
" -v, --variable=STRING\n"
" ABENDS = number of abended threads (NW 5.x only)\n"
" UPTIME = server uptime\n"
-#: plugins/check_nwstat.c:930
+#: plugins/check_nwstat.c:928
#, fuzzy, c-format
msgid ""
" LTCH = percent long term cache hits\n"
" DCB = buffers cache sales en pourcentage du total\n"
" TCB = buffers cache sales en pourcentage de l'original\n"
-#: plugins/check_nwstat.c:937
+#: plugins/check_nwstat.c:935
#, c-format
msgid ""
" OFILES = number of open files\n"
" VPNP<vol> = pourcentage de place non libƩrable sur le volume <vol>\n"
" VKNP<vol> = KB de place non libƩrable sur le volume <vol>\n"
-#: plugins/check_nwstat.c:946
+#: plugins/check_nwstat.c:944
#, c-format
msgid ""
" LRUM = LRU sitting time in minutes\n"
" SAPENTRIES<n> = number of entries in the SAP table for SAP type <n>\n"
msgstr ""
-#: plugins/check_nwstat.c:956
+#: plugins/check_nwstat.c:954
#, c-format
msgid ""
" TSYNC = timesync status \n"
" (e.g. \"NLM:TSANDS.NLM\")\n"
msgstr ""
-#: plugins/check_nwstat.c:963
+#: plugins/check_nwstat.c:961
#, c-format
msgid ""
" -w, --warning=INTEGER\n"
" Include server version string in results\n"
msgstr ""
-#: plugins/check_nwstat.c:973
+#: plugins/check_nwstat.c:971
#, c-format
msgid ""
"\n"
msgid "Uptime %s - Up %d days %d hours %d minutes"
msgstr "Temps de fonctionnement %s - Up %d jours %d heures %d minutes"
-#: plugins/check_overcr.c:418
+#: plugins/check_overcr.c:406
#, c-format
msgid ""
"This plugin attempts to contact the Over-CR collector daemon running on the\n"
"distant afin de récupèrer les informations système demandées.\n"
"\n"
-#: plugins/check_overcr.c:428
+#: plugins/check_overcr.c:416
#, c-format
msgid ""
"-v, --variable=STRING\n"
" UPTIME = system uptime in seconds\n"
msgstr ""
-#: plugins/check_overcr.c:439
+#: plugins/check_overcr.c:427
#, c-format
msgid ""
" -w, --warning=INTEGER\n"
" Threshold which will result in a critical status\n"
msgstr ""
-#: plugins/check_overcr.c:447
+#: plugins/check_overcr.c:435
#, c-format
msgid ""
"Notes:\n"
" grand que le seuil d'alerte SAUF pour l'option uptime\n"
"\n"
-#: plugins/check_overcr.c:452
+#: plugins/check_overcr.c:440
#, c-format
msgid ""
" - This plugin requres that Eric Molitors' Over-CR collector daemon be\n"
msgid " %s - database %s (%d sec.)|%s\n"
msgstr " %s - base de donnƩes %s (%d sec.)|%s\n"
-#: plugins/check_pgsql.c:229 plugins/check_pgsql.c:235 plugins/check_tcp.c:494
-#: plugins/check_time.c:267 plugins/check_time.c:279 plugins/check_udp.c:168
+#: plugins/check_pgsql.c:227 plugins/check_tcp.c:492 plugins/check_time.c:265
+#: plugins/check_time.c:277 plugins/check_udp.c:166 plugins/check_users.c:152
msgid "Critical threshold must be a positive integer"
msgstr "Le seuil critique doit ĆŖtre un entier positif"
-#: plugins/check_pgsql.c:253
+#: plugins/check_pgsql.c:233 plugins/check_tcp.c:502 plugins/check_time.c:246
+#: plugins/check_time.c:270 plugins/check_udp.c:173 plugins/check_users.c:158
+#: plugins/check_users.c:168 plugins/check_users.c:175
+msgid "Warning threshold must be a positive integer"
+msgstr "Attention l'intervalle doit ĆŖtre un entier positif"
+
+#: plugins/check_pgsql.c:251
msgid "Database name is not valid"
msgstr "Le nom de la base de donnƩes est invalide"
-#: plugins/check_pgsql.c:259
+#: plugins/check_pgsql.c:257
msgid "User name is not valid"
msgstr "Le nom de l'utilisateur est invalide"
-#: plugins/check_pgsql.c:396
+#: plugins/check_pgsql.c:394
#, c-format
msgid ""
"Test whether a PostgreSQL Database is accepting connections.\n"
"Teste si une base de donnƩes Postgresql accepte les connections.\n"
"\n"
-#: plugins/check_pgsql.c:406
+#: plugins/check_pgsql.c:404
#, c-format
msgid ""
" -d, --database=STRING\n"
" -p, --password = STRING\n"
" mot de passe (GROS PROBLEME DE SECURITE)\n"
-#: plugins/check_pgsql.c:420
+#: plugins/check_pgsql.c:418
#, c-format
msgid ""
"\n"
"PostgreSQL DBMS.\n"
msgstr ""
-#: plugins/check_pgsql.c:427
+#: plugins/check_pgsql.c:425
#, c-format
msgid ""
"\n"
"accepte \n"
"les connections TCP/IP (dƩmarrez le postmaster avec l'option -i).\n"
-#: plugins/check_pgsql.c:431
+#: plugins/check_pgsql.c:429
#, c-format
msgid ""
"\n"
msgid "PING %s - %sPacket loss = %d%%, RTA = %2.2f ms"
msgstr "PING %s - %sPaquets perdus = %d%%, RTA = %2.2f ms"
-#: plugins/check_ping.c:232
+#: plugins/check_ping.c:230
msgid "Could not realloc() addresses\n"
msgstr "Impossible de rƩallouer les adresses\n"
-#: plugins/check_ping.c:247 plugins/check_ping.c:327
+#: plugins/check_ping.c:245 plugins/check_ping.c:325
#, c-format
msgid "<max_packets> (%s) must be a non-negative number\n"
msgstr "<max_packets> (%s) doit ĆŖtre un nombre positif\n"
-#: plugins/check_ping.c:281
+#: plugins/check_ping.c:279
#, c-format
msgid "<wpl> (%s) must be an integer percentage\n"
msgstr "<wpl> (%s) doit ĆŖtre un pourcentage entier\n"
-#: plugins/check_ping.c:292
+#: plugins/check_ping.c:290
#, c-format
msgid "<cpl> (%s) must be an integer percentage\n"
msgstr "<cpl> (%s) doit ĆŖtre un pourcentage entier\n"
-#: plugins/check_ping.c:303
+#: plugins/check_ping.c:301
#, c-format
msgid "<wrta> (%s) must be a non-negative number\n"
msgstr "<wrta> (%s) doit ĆŖtre un entier positif\n"
-#: plugins/check_ping.c:314
+#: plugins/check_ping.c:312
#, c-format
msgid "<crta> (%s) must be a non-negative number\n"
msgstr "<crta> (%s) doit ĆŖtre un entier positif\n"
-#: plugins/check_ping.c:347
+#: plugins/check_ping.c:345
#, c-format
msgid ""
"%s: Warning threshold must be integer or percentage!\n"
"\n"
msgstr "%s: Le seuil d'alerte doit ĆŖtre un entier ou un pourcentage!\n"
-#: plugins/check_ping.c:360
+#: plugins/check_ping.c:358
#, c-format
msgid "<wrta> was not set\n"
msgstr "<wrta> n'a pas ƩtƩ indiquƩ\n"
-#: plugins/check_ping.c:364
+#: plugins/check_ping.c:362
#, c-format
msgid "<crta> was not set\n"
msgstr "<crta> n'a pas ƩtƩ indiquƩ\n"
-#: plugins/check_ping.c:368
+#: plugins/check_ping.c:366
#, c-format
msgid "<wpl> was not set\n"
msgstr " <wpl> n'a pas ƩtƩ indiquƩ\n"
-#: plugins/check_ping.c:372
+#: plugins/check_ping.c:370
#, c-format
msgid "<cpl> was not set\n"
msgstr "<cpl> n'a pas ƩtƩ indiquƩ\n"
-#: plugins/check_ping.c:376
+#: plugins/check_ping.c:374
#, c-format
msgid "<wrta> (%f) cannot be larger than <crta> (%f)\n"
msgstr "<wrta> (%f) ne peut pas ĆŖtre plus large que <crta> (%f)\n"
-#: plugins/check_ping.c:380
+#: plugins/check_ping.c:378
#, c-format
msgid "<wpl> (%d) cannot be larger than <cpl> (%d)\n"
msgstr "<wpl> (%d) ne peut pas ĆŖtre plus large que <cpl> (%d)\n"
-#: plugins/check_ping.c:408
+#: plugins/check_ping.c:406
#, c-format
msgid "Cannot open pipe: %s"
msgstr ""
-#: plugins/check_ping.c:412
+#: plugins/check_ping.c:410
#, c-format
msgid "Cannot open stderr for %s\n"
msgstr "Impossible d'ouvrir stderr pour %s\n"
-#: plugins/check_ping.c:467
+#: plugins/check_ping.c:465
#, c-format
msgid "CRITICAL - Network unreachable (%s)"
msgstr "CRITIQUE - Le rƩseau est injoignable (%s)"
-#: plugins/check_ping.c:469
+#: plugins/check_ping.c:467
#, c-format
msgid "CRITICAL - Host Unreachable (%s)"
msgstr "CRITIQUE - HƓte injoignable (%s)"
-#: plugins/check_ping.c:471
+#: plugins/check_ping.c:469
#, c-format
msgid "CRITICAL - Host not found (%s)"
msgstr "CRITIQUE - HƓte non trouvƩ (%s)"
-#: plugins/check_ping.c:473
+#: plugins/check_ping.c:471
#, c-format
msgid "CRITICAL - Time to live exceeded (%s)"
msgstr "CRITIQUE - La durƩe de vie du paquet est dƩpassƩe (%s)"
-#: plugins/check_ping.c:480
+#: plugins/check_ping.c:478
msgid "Unable to realloc warn_text"
msgstr "Impossible de rƩallouer le texte d'avertissement"
-#: plugins/check_ping.c:497
+#: plugins/check_ping.c:495
#, c-format
msgid ""
"Use ping to check connection statistics for a remote host.\n"
"distant.\n"
"\n"
-#: plugins/check_ping.c:505
+#: plugins/check_ping.c:503
#, c-format
msgid ""
"-H, --hostname=HOST\n"
" show HTML in the plugin output (obsoleted by urlize)\n"
msgstr ""
-#: plugins/check_ping.c:520
+#: plugins/check_ping.c:518
#, c-format
msgid ""
"THRESHOLD is <rta>,<pl>%% where <rta> is the round trip average travel\n"
"\n"
msgstr ""
-#: plugins/check_ping.c:525
+#: plugins/check_ping.c:523
#, c-format
msgid ""
"This plugin uses the ping command to probe the specified host for packet "
msgid " with %s"
msgstr "avec %s"
-#: plugins/check_procs.c:371
-msgid ""
-"Critical Process Count must be an integer!\n"
-"\n"
+#: plugins/check_procs.c:369
+#, fuzzy
+msgid "Critical Process Count must be an integer!"
msgstr ""
"Critique Le total des processus doit ĆŖtre un entier!\n"
"\n"
-#: plugins/check_procs.c:383
-msgid ""
-"Warning Process Count must be an integer!\n"
-"\n"
+#: plugins/check_procs.c:381
+#, fuzzy
+msgid "Warning Process Count must be an integer!"
msgstr ""
"Alerte Le total des processus doit ĆŖtre un entier!\n"
"\n"
-#: plugins/check_procs.c:391
-#, c-format
-msgid ""
-"%s: Parent Process ID must be an integer!\n"
-"\n"
+#: plugins/check_procs.c:389
+#, fuzzy
+msgid "Parent Process ID must be an integer!"
msgstr ""
"%s: L'id du processus parent doit ĆŖtre un entier!\n"
"\n"
-#: plugins/check_procs.c:397 plugins/check_procs.c:502
+#: plugins/check_procs.c:395 plugins/check_procs.c:497
#, c-format
msgid "%s%sSTATE = %s"
msgstr "%s%sETAT = %s"
-#: plugins/check_procs.c:406
-#, c-format
-msgid "UID %s was not found\n"
+#: plugins/check_procs.c:404
+#, fuzzy, c-format
+msgid "UID %s was not found"
msgstr "UID %s n'a pas ƩtƩ trouvƩ\n"
-#: plugins/check_procs.c:412
-#, c-format
-msgid "User name %s was not found\n"
+#: plugins/check_procs.c:410
+#, fuzzy, c-format
+msgid "User name %s was not found"
msgstr "L'utilisateur %s n'a pas ƩtƩ trouvƩ\n"
-#: plugins/check_procs.c:417
+#: plugins/check_procs.c:415
#, c-format
msgid "%s%sUID = %d (%s)"
msgstr "%s%sUID = %d (%s)"
-#: plugins/check_procs.c:427
+#: plugins/check_procs.c:425
#, c-format
msgid "%s%scommand name '%s'"
msgstr "%s%snom de la commande '%s'"
-#: plugins/check_procs.c:437
+#: plugins/check_procs.c:435
#, c-format
msgid "%s%sargs '%s'"
msgstr "%s%sarguments '%s'"
-#: plugins/check_procs.c:442
+#: plugins/check_procs.c:440
#, c-format
msgid "%s%sRSS >= %d"
msgstr ""
-#: plugins/check_procs.c:446
-#, c-format
-msgid ""
-"%s: RSS must be an integer!\n"
-"\n"
+#: plugins/check_procs.c:444
+#, fuzzy
+msgid "RSS must be an integer!"
msgstr ""
"%s: RSS doit ĆŖtre un entier!\n"
"\n"
-#: plugins/check_procs.c:449
+#: plugins/check_procs.c:447
#, c-format
msgid "%s%sVSZ >= %d"
msgstr ""
-#: plugins/check_procs.c:453
-#, c-format
-msgid ""
-"%s: VSZ must be an integer!\n"
-"\n"
+#: plugins/check_procs.c:451
+#, fuzzy
+msgid "VSZ must be an integer!"
msgstr ""
"%s: VSZ doit ĆŖtre un entier!\n"
"\n"
-#: plugins/check_procs.c:457
+#: plugins/check_procs.c:455
#, c-format
msgid "%s%sPCPU >= %.2f"
msgstr ""
-#: plugins/check_procs.c:461
-#, c-format
-msgid ""
-"%s: PCPU must be a float!\n"
-"\n"
+#: plugins/check_procs.c:459
+#, fuzzy
+msgid "PCPU must be a float!"
msgstr ""
"%s: PCPU doit ĆŖtre un nombre en virgule flottante!\n"
"\n"
-#: plugins/check_procs.c:485
-#, fuzzy, c-format
-msgid ""
-"%s: metric must be one of PROCS, VSZ, RSS, CPU, ELAPSED!\n"
-"\n"
+#: plugins/check_procs.c:483
+#, fuzzy
+msgid "Metric must be one of PROCS, VSZ, RSS, CPU, ELAPSED!"
msgstr ""
"%s: metric doivent ĆŖtre un de PROCS, VSZ, RSS, CPU, ELAPSED!\n"
"\n"
-#: plugins/check_procs.c:521
+#: plugins/check_procs.c:516
#, c-format
msgid "wmax (%d) cannot be greater than cmax (%d)\n"
msgstr "wmax (%d) ne peut pas ĆŖtre plus grand que cmax (%d)\n"
-#: plugins/check_procs.c:525
+#: plugins/check_procs.c:520
#, c-format
msgid "wmin (%d) cannot be less than cmin (%d)\n"
msgstr "wmin (%d) ne peut pas ĆŖtre plus petit que cmin (%d)\n"
-#: plugins/check_procs.c:665
+#: plugins/check_procs.c:657
#, c-format
msgid ""
"Checks all processes and generates WARNING or CRITICAL states if the "
"nombres de processus. Des filtres de recherches peuvent être utilisés pour \n"
"limiter la recherche.\n"
-#: plugins/check_procs.c:672
+#: plugins/check_procs.c:664
#, c-format
msgid ""
"\n"
" Generate critical state if metric is outside this range\n"
msgstr ""
-#: plugins/check_procs.c:679
+#: plugins/check_procs.c:671
#, c-format
msgid ""
"\n"
" CPU - percentage cpu\n"
msgstr ""
-#: plugins/check_procs.c:689
+#: plugins/check_procs.c:681
#, c-format
msgid " ELAPSED - time elapsed in seconds\n"
msgstr " ELAPSED - temps ƩcoulƩ en secondes\n"
-#: plugins/check_procs.c:694
+#: plugins/check_procs.c:686
#, c-format
msgid ""
" -v, --verbose\n"
" -v, --verbose\n"
" Extra information. Jusqu'a 3 niveaux de verbositƩ\n"
-#: plugins/check_procs.c:698
+#: plugins/check_procs.c:690
#, c-format
msgid ""
"\n"
" Only scan for processes with rss higher than indicated.\n"
msgstr ""
-#: plugins/check_procs.c:711
+#: plugins/check_procs.c:703
#, c-format
msgid ""
" -P, --pcpu=PCPU\n"
" Only scan for exact matches of COMMAND (without path).\n"
msgstr ""
-#: plugins/check_procs.c:721
+#: plugins/check_procs.c:713
#, c-format
msgid ""
"\n"
"\n"
msgstr ""
-#: plugins/check_procs.c:726
+#: plugins/check_procs.c:718
#, c-format
msgid ""
"This plugin checks the number of currently running processes and\n"
"\n"
msgstr ""
-#: plugins/check_procs.c:733
+#: plugins/check_procs.c:725
#, c-format
msgid ""
"Examples:\n"
msgid "Auth OK"
msgstr "L'authentification à réussi"
-#: plugins/check_radius.c:202 plugins/check_radius.c:264
+#: plugins/check_radius.c:202 plugins/check_radius.c:262
msgid "Number of retries must be a positive integer"
msgstr "Le nombre d'essai doit ĆŖtre un entier positif"
-#: plugins/check_radius.c:290
+#: plugins/check_radius.c:288
#, c-format
msgid ""
"Tests to see if a radius server is accepting connections.\n"
"Teste si un serveur radius accepte les connections.\n"
"\n"
-#: plugins/check_radius.c:298
+#: plugins/check_radius.c:296
#, c-format
msgid ""
" -u, --username=STRING\n"
" Number of times to retry a failed connection\n"
msgstr ""
-#: plugins/check_radius.c:314
+#: plugins/check_radius.c:312
#, c-format
msgid ""
"\n"
"radius.\n"
"\n"
-#: plugins/check_radius.c:321
+#: plugins/check_radius.c:319
#, c-format
msgid ""
"The password option presents a substantial security issue because the\n"
msgid "REAL %s - %d second response time\n"
msgstr "REAL %s - %d secondes de temps de rƩponse\n"
-#: plugins/check_real.c:324 plugins/check_smtp.c:343
+#: plugins/check_real.c:324 plugins/check_smtp.c:343 plugins/check_ups.c:522
msgid "Warning time must be a positive integer"
msgstr "Le temps d'alerte doit ĆŖtre un entier positif"
-#: plugins/check_real.c:333
-#, fuzzy
-msgid "Critical time must be a nonnegative integer"
-msgstr "Le temps critique doit ĆŖtre un entier positif"
-
-#: plugins/check_real.c:344
-msgid "Time interval must be a nonnegative integer"
-msgstr "L'intervalle de temps doit ĆŖtre un entier positif"
+#: plugins/check_real.c:333 plugins/check_smtp.c:334 plugins/check_ups.c:513
+msgid "Critical time must be a positive integer"
+msgstr "Critique le temps doit ĆŖtre un entier positif"
-#: plugins/check_real.c:371
-msgid "You must provide a server to check\n"
+#: plugins/check_real.c:369
+#, fuzzy
+msgid "You must provide a server to check"
msgstr "Vous devez fournir un serveur à vérifier\n"
-#: plugins/check_real.c:403
+#: plugins/check_real.c:401
#, c-format
msgid ""
"This plugin tests the REAL service on the specified host.\n"
"Ce plugin teste le service REAL sur l'hƓte spƩcifiƩ.\n"
"\n"
-#: plugins/check_real.c:411
+#: plugins/check_real.c:409
#, c-format
msgid ""
" -u, --url=STRING\n"
" Texte attendu dans la première ligne de réponse venant du server (défaut: "
"%s)\n"
-#: plugins/check_real.c:424
+#: plugins/check_real.c:422
#, c-format
msgid ""
"This plugin will attempt to open an RTSP connection with the host.\n"
msgid "Invalid SMTP response received from host on port %d\n"
msgstr "RƩponse SMTP invalide reƧue de l'hƓte sur le port %d\n"
-#: plugins/check_smtp.c:182 plugins/check_snmp.c:510
+#: plugins/check_smtp.c:182 plugins/check_snmp.c:508
#, c-format
msgid "Could Not Compile Regular Expression"
msgstr "Impossible de compiler l'expression régulière"
msgid "SMTP %s - %.3f sec. response time%s%s|%s\n"
msgstr "SMTP %s - %.3f sec. de temps de rƩponse%s%s|%s\n"
-#: plugins/check_smtp.c:313 plugins/check_smtp.c:323 plugins/check_snmp.c:566
+#: plugins/check_smtp.c:313 plugins/check_smtp.c:323 plugins/check_snmp.c:564
#, c-format
msgid "Could not realloc() units [%d]\n"
msgstr "Impossible de rƩallouer des unitƩs [%d]\n"
-#: plugins/check_smtp.c:334
-msgid "Critical time must be a positive integer"
-msgstr "Critique le temps doit ĆŖtre un entier positif"
-
-#: plugins/check_smtp.c:354
-msgid "Time interval must be a positive integer"
-msgstr "L'intervalle de temps doit ĆŖtre un entier positif"
-
-#: plugins/check_smtp.c:426
+#: plugins/check_smtp.c:424
#, c-format
msgid ""
"This plugin will attempt to open an SMTP connection with the host.\n"
"Ce plugin va essayer d'ouvrir un connection SMTP avec l'hƓte.\n"
"\n"
-#: plugins/check_smtp.c:436
+#: plugins/check_smtp.c:434
#, c-format
msgid ""
" -e, --expect=STRING\n"
" FROM-address to include in MAIL command, required by Exchange 2000\n"
msgstr ""
-#: plugins/check_smtp.c:455
+#: plugins/check_smtp.c:453
#, c-format
msgid ""
"\n"
"STATE_WARNING return values.\n"
msgstr ""
-#: plugins/check_snmp.c:284 plugins/check_snmp.c:516
+#: plugins/check_snmp.c:254
+msgid "No valid data returned"
+msgstr ""
+
+#: plugins/check_snmp.c:284 plugins/check_snmp.c:514
#, c-format
msgid "%s UNKNOWN: call for regex which was not a compiled option"
msgstr ""
"CMD: %s\n"
msgstr ""
-#: plugins/check_snmp.c:455
+#: plugins/check_snmp.c:453
#, c-format
msgid "Invalid critical threshold: %s\n"
msgstr "Seuil critique invalide: %s\n"
-#: plugins/check_snmp.c:466
+#: plugins/check_snmp.c:464
#, c-format
msgid "Invalid warning threshold: %s\n"
msgstr "Seuil d'alerte invalide: %s\n"
-#: plugins/check_snmp.c:536
+#: plugins/check_snmp.c:534
#, c-format
msgid "Could not realloc() labels[%d]"
msgstr ""
-#: plugins/check_snmp.c:548
+#: plugins/check_snmp.c:546
msgid "Could not realloc() labels\n"
msgstr ""
-#: plugins/check_snmp.c:578
+#: plugins/check_snmp.c:576
msgid "Could not realloc() units\n"
msgstr "Impossible de rƩallouer des unitƩs\n"
-#: plugins/check_snmp.c:651
+#: plugins/check_snmp.c:649
#, fuzzy, c-format
msgid ""
"Missing secname (%s) or authpassword (%s) ! \n"
"Manque secname (%s) ou mot de passe (%s) ! \n"
")"
-#: plugins/check_snmp.c:659
+#: plugins/check_snmp.c:657
#, c-format
msgid "Missing secname (%s), authpassword (%s), or privpasswd (%s)! \n"
msgstr ""
-#: plugins/check_snmp.c:668
+#: plugins/check_snmp.c:666
#, c-format
msgid "Invalid SNMP version: %s\n"
msgstr "Version de SNMP invalide: %s\n"
-#: plugins/check_snmp.c:847
+#: plugins/check_snmp.c:796
+msgid "Unbalanced quotes\n"
+msgstr ""
+
+#: plugins/check_snmp.c:845
#, c-format
msgid ""
"Check status of remote machines and obtain sustem information via SNMP\n"
"SNMP\n"
"\n"
-#: plugins/check_snmp.c:857
+#: plugins/check_snmp.c:855
#, c-format
msgid ""
" -P, --protocol=[1|3]\n"
" -a, --authproto=[MD5|SHA]\n"
" Protocole d'authenfication SNMPv3\n"
-#: plugins/check_snmp.c:866
+#: plugins/check_snmp.c:864
#, c-format
msgid ""
" -C, --community=STRING\n"
" SNMPv3 crypt passwd (DES)\n"
msgstr ""
-#: plugins/check_snmp.c:878
+#: plugins/check_snmp.c:876
#, c-format
msgid ""
" -o, --oid=OID(s)\n"
" to be the data that should be used in the evaluation.\n"
msgstr ""
-#: plugins/check_snmp.c:888
+#: plugins/check_snmp.c:886
#, c-format
msgid ""
" -w, --warning=INTEGER_RANGE(s)\n"
" Range(s) which will not result in a CRITICAL status\n"
msgstr ""
-#: plugins/check_snmp.c:895
+#: plugins/check_snmp.c:893
#, c-format
msgid ""
" -s, --string=STRING\n"
" Prefix label for output from plugin (default -s 'SNMP')\n"
msgstr ""
-#: plugins/check_snmp.c:906
+#: plugins/check_snmp.c:904
#, c-format
msgid ""
" -u, --units=STRING\n"
" Separates output on multiple OID requests\n"
msgstr ""
-#: plugins/check_snmp.c:916
+#: plugins/check_snmp.c:914
#, c-format
msgid ""
"\n"
"Si vous n'avez pas ce logiciel installƩ, vous devez le tƩlƩcharger depuis \n"
"http://net-snmp.sourceforge.net avant de pouvoir utiliser ce plugin.\n"
-#: plugins/check_snmp.c:921
+#: plugins/check_snmp.c:919
#, c-format
msgid ""
"- Multiple OIDs may be indicated by a comma- or space-delimited list (lists "
" internal spaces must be quoted) [max 8 OIDs]\n"
msgstr ""
-#: plugins/check_snmp.c:925
+#: plugins/check_snmp.c:923
#, c-format
msgid ""
"- Ranges are inclusive and are indicated with colons. When specified as\n"
" returned if the result is outside the specified range.\n"
msgstr ""
-#: plugins/check_snmp.c:931
+#: plugins/check_snmp.c:929
#, c-format
msgid ""
"- If specified in the order 'max:min' a non-OK state will be returned if "
" result is within the (inclusive) range.\n"
msgstr ""
-#: plugins/check_snmp.c:935
+#: plugins/check_snmp.c:933
#, c-format
msgid ""
"- Upper or lower bounds may be omitted to skip checking the respective "
" returned from the SNMP query is an unsigned integer.\n"
msgstr ""
-#: plugins/check_ssh.c:221
+#: plugins/check_ssh.c:152
+#, fuzzy
+msgid "Port number must be a positive integer"
+msgstr "Le numéro du port doit être un entier positif"
+
+#: plugins/check_ssh.c:217
#, c-format
msgid "Server answer: %s"
msgstr "RƩponse du serveur: %s"
-#: plugins/check_ssh.c:239
+#: plugins/check_ssh.c:235
#, c-format
msgid "SSH WARNING - %s (protocol %s) version mismatch, expected '%s'\n"
msgstr "SSH ALERTE - %s (protocole %s) diffƩrence de version, attendu'%s'\n"
-#: plugins/check_ssh.c:245
+#: plugins/check_ssh.c:241
#, c-format
msgid "SSH OK - %s (protocol %s)\n"
msgstr "SSH OK - %s (protocole %s)\n"
-#: plugins/check_ssh.c:264
+#: plugins/check_ssh.c:260
#, c-format
msgid ""
"Try to connect to an SSH server at specified server and port\n"
"Essaye de se connecter à un serveur SSH précisé à un port précis\n"
"\n"
-#: plugins/check_ssh.c:276
+#: plugins/check_ssh.c:272
#, c-format
msgid ""
" -r, --remote-version=STRING\n"
msgid "total=%llu, free=%llu\n"
msgstr "total=%llu, libre=%llu\n"
+#: plugins/check_swap.c:242 plugins/check_swap.c:281
+msgid "swapctl failed: "
+msgstr ""
+
#: plugins/check_swap.c:314
#, c-format
msgid " %d%% free (%llu MB out of %llu MB)"
msgstr " %d%% libre (%llu MB sur un total de %llu MB)"
-#: plugins/check_swap.c:391
-msgid "Warning threshold must be integer or percentage!\n"
-msgstr ""
-
#: plugins/check_swap.c:408
msgid "Critical threshold must be integer or percentage!\n"
msgstr ""
-#: plugins/check_swap.c:464
+#: plugins/check_swap.c:462
msgid "Warning percentage should be more than critical percentage\n"
msgstr ""
-#: plugins/check_swap.c:468
+#: plugins/check_swap.c:466
msgid "Warning free space should be more than critical free space\n"
msgstr ""
-#: plugins/check_swap.c:482
+#: plugins/check_swap.c:480
#, fuzzy, c-format
msgid ""
"Check swap space on local machine.\n"
"VƩrifie l'espace swap sur la machine locale\n"
"\n"
-#: plugins/check_swap.c:488
+#: plugins/check_swap.c:486
#, c-format
msgid ""
"\n"
" Verbose output. Up to 3 levels\n"
msgstr ""
-#: plugins/check_swap.c:502
+#: plugins/check_swap.c:500
#, c-format
msgid ""
"\n"
"mƩmoire\n"
" vive\n"
-#: plugins/check_swap.c:506
+#: plugins/check_swap.c:504
#, c-format
msgid ""
"\n"
msgid "CRITICAL - Generic check_tcp called with unknown service\n"
msgstr "CRITIQUE -check_tcp utilisƩ avec un service inconnu\n"
+#: plugins/check_tcp.c:262
+#, fuzzy
+msgid "CRITICAL - Could not make SSL connection\n"
+msgstr "HTTP CRITIQUE - Impossible d'Ʃtablir une connection SSL\n"
+
#: plugins/check_tcp.c:335
#, c-format
msgid "Unexpected response from host: %s\n"
msgid "%s %s%s - %.3f second response time on port %d"
msgstr "%s %s%s - %.3f secondes de temps de rƩponse sur le port %d"
-#: plugins/check_tcp.c:504 plugins/check_time.c:248 plugins/check_time.c:272
-#: plugins/check_udp.c:175
-msgid "Warning threshold must be a positive integer"
-msgstr "Attention l'intervalle doit ĆŖtre un entier positif"
+#: plugins/check_tcp.c:437
+msgid "No arguments found"
+msgstr ""
-#: plugins/check_tcp.c:543
+#: plugins/check_tcp.c:541
msgid "Maxbytes must be a positive integer"
msgstr "Maxbytes doit ĆŖtre un entier positif"
-#: plugins/check_tcp.c:557
+#: plugins/check_tcp.c:555
msgid "Refuse must be one of ok, warn, crit"
msgstr "Refuse doit ĆŖtre parmis ok, warn, crit"
-#: plugins/check_tcp.c:567
+#: plugins/check_tcp.c:565
#, fuzzy
msgid "Mismatch must be one of ok, warn, crit"
msgstr "Mismatch doit ĆŖtre parmis ok, warn, crit"
-#: plugins/check_tcp.c:573
+#: plugins/check_tcp.c:571
msgid "Delay must be a positive integer"
msgstr "Le delai doit ĆŖtre un entier positif"
-#: plugins/check_tcp.c:593
-msgid "You must provide a server address\n"
+#: plugins/check_tcp.c:584
+msgid "SSL support not available. Install OpenSSL and recompile."
+msgstr ""
+
+#: plugins/check_tcp.c:591
+#, fuzzy
+msgid "You must provide a server address"
msgstr "Vous devez fournir une adresse serveur\n"
-#: plugins/check_tcp.c:613
+#: plugins/check_tcp.c:611
#, c-format
msgid "CRITICAL - Cannot create SSL context.\n"
msgstr "CRITIQUE - Impossible de crƩer le contexte SSL.\n"
-#: plugins/check_tcp.c:636
+#: plugins/check_tcp.c:634
#, c-format
msgid "CRITICAL - Cannot make SSL connection "
msgstr "CRITIQUE - Impossible d'Ʃtablir une connection SSL"
-#: plugins/check_tcp.c:763
+#: plugins/check_tcp.c:711
+#, fuzzy, c-format
+msgid "Certificate expires in %d day(s) (%s).\n"
+msgstr "ALERTE - Le certificat expire dans %d jour(s) (%s).\n"
+
+#: plugins/check_tcp.c:715
+#, fuzzy, c-format
+msgid "Certificate expired on %s.\n"
+msgstr "CRITIQUE - Le certificat à expiré le %s.\n"
+
+#: plugins/check_tcp.c:720
+#, fuzzy, c-format
+msgid "Certificate expires today (%s).\n"
+msgstr "ALERTE - Le certificat expires aujourd'hui (%s).\n"
+
+#: plugins/check_tcp.c:724
+#, fuzzy, c-format
+msgid "Certificate will expire on %s.\n"
+msgstr "OK - Le certificat expirera le %s.\n"
+
+#: plugins/check_tcp.c:761
#, c-format
msgid ""
"This plugin tests %s connections with the specified host.\n"
"Le plugin teste %s connections avec l'hƓte spƩcifiƩ\n"
"\n"
-#: plugins/check_tcp.c:774
+#: plugins/check_tcp.c:772
#, c-format
msgid ""
" -s, --send=STRING\n"
" String to send server to initiate a clean close of the connection\n"
msgstr ""
-#: plugins/check_tcp.c:782
+#: plugins/check_tcp.c:780
#, c-format
msgid ""
" -r, --refuse=ok|warn|crit\n"
" Seconds to wait between sending string and polling for response\n"
msgstr ""
-#: plugins/check_tcp.c:795
+#: plugins/check_tcp.c:793
#, c-format
msgid ""
" -D, --certificate=INTEGER\n"
msgid "TIME %s - %lu second time difference|%s %s\n"
msgstr "TIME %s - %lu secondes de diffƩrence|%s %s\n"
-#: plugins/check_time.c:244
+#: plugins/check_time.c:242
msgid "Warning thresholds must be a positive integer"
msgstr "Alerte les seuils doivent ĆŖtre un entier positif"
-#: plugins/check_time.c:263
+#: plugins/check_time.c:261
msgid "Critical thresholds must be a positive integer"
msgstr "Critique les seuils doivent ĆŖtre un entier positif"
-#: plugins/check_time.c:309 plugins/check_udp.c:209
-msgid "Hostname was not supplied"
-msgstr "Le nom de l'hƓte n'a pas ƩtƩ spƩcifiƩ"
-
-#: plugins/check_time.c:329
+#: plugins/check_time.c:327
#, c-format
msgid ""
"This plugin will check the time on the specified host.\n"
"Ce plugin va vƩrifier l'heure sur l'hƓte spƩcifiƩ.\n"
"\n"
-#: plugins/check_time.c:337
+#: plugins/check_time.c:335
#, c-format
msgid ""
" -u, --udp\n"
" Response time (sec.) necessary to result in critical status\n"
msgstr ""
+#: plugins/check_udp.c:70
+#, fuzzy, c-format
+msgid "No response from host on port %d\n"
+msgstr "RƩponse SMTP invalide reƧue de l'hƓte sur le port %d\n"
+
+#: plugins/check_udp.c:79
+#, fuzzy, c-format
+msgid "Invalid response received from host on port %d\n"
+msgstr "RƩponse HTTP invalide reƧue de l'hƓte sur le port %d\n"
+
#: plugins/check_udp.c:95
#, c-format
msgid "Connection %s on port %d - %d second response time\n"
msgid "problem"
msgstr "problĆØme"
-#: plugins/check_udp.c:227
+#: plugins/check_udp.c:225
#, c-format
msgid ""
"\tThis plugin tests an UDP connection with the specified host.\n"
"Ce plugin teste un connection UDP avec l'hƓte spƩcifiƩ.\n"
"\n"
-#: plugins/check_udp.c:236
+#: plugins/check_udp.c:234
#, c-format
msgid ""
" -e, --expect=STRING <optional>\n"
" String to send to the server when initiating the connection\n"
msgstr ""
-#: plugins/check_udp.c:248
+#: plugins/check_udp.c:246
#, c-format
msgid ""
"This plugin will attempt to connect to the specified port on the host.\n"
"\n"
msgstr ""
-#: plugins/check_ups.c:597
+#: plugins/check_ups.c:136
+msgid "On Battery, Low Battery"
+msgstr ""
+
+#: plugins/check_ups.c:141
+msgid "Online"
+msgstr ""
+
+#: plugins/check_ups.c:144
+msgid "On Battery"
+msgstr ""
+
+#: plugins/check_ups.c:148
+msgid ", Low Battery"
+msgstr ""
+
+#: plugins/check_ups.c:152
+msgid ", Calibrating"
+msgstr ""
+
+#: plugins/check_ups.c:155
+msgid ", Replace Battery"
+msgstr ""
+
+#: plugins/check_ups.c:159
+msgid ", On Bypass"
+msgstr ""
+
+#: plugins/check_ups.c:162
+msgid ", Overload"
+msgstr ""
+
+#: plugins/check_ups.c:165
+msgid ", Trimming"
+msgstr ""
+
+#: plugins/check_ups.c:168
+msgid ", Boosting"
+msgstr ""
+
+#: plugins/check_ups.c:171
+msgid ", Charging"
+msgstr ""
+
+#: plugins/check_ups.c:174
+msgid ", Discharging"
+msgstr ""
+
+#: plugins/check_ups.c:177
+msgid ", Unknown"
+msgstr ""
+
+#: plugins/check_ups.c:314
+#, fuzzy
+msgid "UPS does not support any available options\n"
+msgstr "Support IPv6 non disponible\n"
+
+#: plugins/check_ups.c:338 plugins/check_ups.c:398
+#, fuzzy, c-format
+msgid "Invalid response received from host\n"
+msgstr "RƩponse SMTP invalide reƧue de l'hƓte\n"
+
+#: plugins/check_ups.c:406
+#, fuzzy, c-format
+msgid "CRITICAL - no such ups '%s' on that host\n"
+msgstr "CRITIQUE: Le volume '%s' n'existe pas!"
+
+#: plugins/check_ups.c:416
+#, fuzzy, c-format
+msgid "CRITICAL - UPS data is stale\n"
+msgstr "CRITIQUE - Date du serveur \"%100s\" illisible"
+
+#: plugins/check_ups.c:421
+#, fuzzy, c-format
+msgid "Unknown error: %s\n"
+msgstr "Erreur de papier inconnue"
+
+#: plugins/check_ups.c:428
+#, c-format
+msgid "Error: unable to parse variable\n"
+msgstr ""
+
+#: plugins/check_ups.c:535
+msgid "Unrecognized UPS variable"
+msgstr ""
+
+#: plugins/check_ups.c:573
+#, c-format
+msgid "Error : no ups indicated\n"
+msgstr ""
+
+#: plugins/check_ups.c:593
#, c-format
msgid ""
"This plugin tests the UPS service on the specified host.\n"
"l'hƓte pour que ce plugin fonctionne.\n"
"\n"
-#: plugins/check_ups.c:607
+#: plugins/check_ups.c:603
#, c-format
msgid ""
" -u, --ups=STRING\n"
" -u, --ups=STRING\n"
" Nom de l'UPS\n"
-#: plugins/check_ups.c:611
+#: plugins/check_ups.c:607
#, c-format
msgid ""
" -T, --temperature\n"
" -T, --temperature\n"
" Affichage des tempƩratures en Celsius\n"
-#: plugins/check_ups.c:621
+#: plugins/check_ups.c:617
#, c-format
msgid ""
"This plugin attempts to determine the status of a UPS (Uninterruptible "
"\n"
msgstr ""
-#: plugins/check_ups.c:628
+#: plugins/check_ups.c:624
#, c-format
msgid ""
"You may also specify a variable to check [such as temperature, utility "
"\n"
msgstr ""
-#: plugins/check_ups.c:634
+#: plugins/check_ups.c:630
#, c-format
msgid ""
"Notes:\n"
msgid "USERS %s - %d users currently logged in |%s\n"
msgstr "UTILISATEURS %s - %d utilisateurs actuellement connectƩs sur |%s\n"
-#: plugins/check_users.c:154
-msgid "Critical threshold must be a positive integer\n"
-msgstr "Critique le seuil doit ĆŖtre un entier positif\n"
-
-#: plugins/check_users.c:160 plugins/check_users.c:170
-#: plugins/check_users.c:177
-msgid "Warning threshold must be a positive integer\n"
-msgstr "Alerte le seuil doit ĆŖtre un entier positif\n"
-
-#: plugins/check_users.c:195
+#: plugins/check_users.c:193
#, c-format
msgid ""
"This plugin checks the number of users currently logged in on the local\n"
"sytĆØme\n"
"local et génère une erreur si le nombre excède le seuil spécifié.\n"
-#: plugins/check_users.c:203
+#: plugins/check_users.c:201
#, c-format
msgid ""
" -w, --warning=INTEGER\n"
" Set CRITICAL status if more than INTEGER users are logged in\n"
msgstr ""
-#: plugins/check_ide_smart.c:227
+#: plugins/check_ide_smart.c:225
#, c-format
msgid "CRITICAL - Couldn't open device: %s\n"
msgstr "Critique - Impossible d'ouvrir le pƩriphƩrique: %s\n"
-#: plugins/check_ide_smart.c:232
+#: plugins/check_ide_smart.c:230
#, c-format
msgid "CRITICAL - SMART_CMD_ENABLE\n"
msgstr "CRITIQUE - SMART_CMD_ENABLE\n"
-#: plugins/check_ide_smart.c:294
+#: plugins/check_ide_smart.c:292
#, c-format
msgid "CRITICAL - SMART_READ_VALUES: %s\n"
msgstr "CRITIQUE - SMART_READ_VALUES: %s\n"
-#: plugins/check_ide_smart.c:363
+#: plugins/check_ide_smart.c:361
#, c-format
msgid "CRITICAL - %d Harddrive PreFailure%cDetected! %d/%d tests failed.\n"
msgstr ""
"CRITIQUE - %d Ćtat de prĆ©-panne %c DĆ©tectĆ©! %d/%d les tests on Ć©chouĆ©s.\n"
-#: plugins/check_ide_smart.c:370
+#: plugins/check_ide_smart.c:368
#, c-format
msgid "WARNING - %d Harddrive Advisor%s Detected. %d/%d tests failed.\n"
msgstr ""
"ALERTE - %d Ćtat de prĆ©-panne %s DĆ©tectĆ©! %d/%d les tests on Ć©chouĆ©s.\n"
-#: plugins/check_ide_smart.c:377
+#: plugins/check_ide_smart.c:375
#, c-format
msgid "OK - Operational (%d/%d tests passed)\n"
msgstr "OK - En fonctionnement (%d/%d les tests on ƩtƩ rƩussi)\n"
-#: plugins/check_ide_smart.c:380
+#: plugins/check_ide_smart.c:378
#, c-format
msgid "ERROR - Status '%d' uknown. %d/%d tests passed\n"
msgstr "ERREUR - Ćtat '%d' inconnu. %d/%d les tests on rĆ©ussi\n"
-#: plugins/check_ide_smart.c:413
+#: plugins/check_ide_smart.c:411
#, fuzzy, c-format
msgid "OffLineStatus=%d {%s}, AutoOffLine=%s, OffLineTimeout=%d minutes\n"
msgstr ""
"Etat Hors Ligne=%d {%s}, Hors Ligne Auto=%s, OffLineTimeout=%d minutes\n"
-#: plugins/check_ide_smart.c:419
+#: plugins/check_ide_smart.c:417
#, c-format
msgid "OffLineCapability=%d {%s %s %s}\n"
msgstr ""
-#: plugins/check_ide_smart.c:425
+#: plugins/check_ide_smart.c:423
#, c-format
msgid "SmartRevision=%d, CheckSum=%d, SmartCapability=%d {%s %s}\n"
msgstr "Revision Smart=%d, Somme de contrƓle=%d, CapacitƩ Smart=%d {%s %s}\n"
-#: plugins/check_ide_smart.c:464
+#: plugins/check_ide_smart.c:462
#, c-format
msgid "CRITICAL - %s: %s\n"
msgstr "CRITIQUE - %s: %s\n"
-#: plugins/check_ide_smart.c:483
+#: plugins/check_ide_smart.c:481
#, c-format
msgid "CRITICAL - SMART_READ_THRESHOLDS: %s\n"
msgstr "CRITIQUE - SMART_READ_THRESHOLDS: %s\n"
-#: plugins/negate.c:244
+#: plugins/negate.c:242
#, c-format
msgid ""
"Negates the status of a plugin (returns OK for CRITICAL, and vice-versa).\n"
"Inverse le status d'un plugin (retourne OK pour CRITIQUE, et vice-versa).\n"
"\n"
-#: plugins/negate.c:253
+#: plugins/negate.c:251
#, c-format
msgid " [keep timeout than the plugin timeout to retain CRITICAL status]\n"
msgstr ""
-#: plugins/negate.c:256
+#: plugins/negate.c:254
#, c-format
msgid ""
" negate \"/usr/local/nagios/libexec/check_ping -H host\"\n"
" Use single quotes if you need to retain spaces\n"
msgstr ""
-#: plugins/negate.c:262
+#: plugins/negate.c:260
#, c-format
msgid ""
"This plugin is a wrapper to take the output of another plugin and invert "
"Otherwise, the output state of the wrapped plugin is unchanged.\n"
msgstr ""
-#: plugins/urlize.c:108
+#: plugins/netutils.c:48
+#, fuzzy, c-format
+msgid "CRITICAL - Socket timeout after %d seconds\n"
+msgstr "CRITIQUE - La date du document est %d secondes dans le futur\n"
+
+#: plugins/netutils.c:50
+#, fuzzy, c-format
+msgid "CRITICAL - Abnormal timeout after %d seconds\n"
+msgstr "CRITIQUE - La date du document est %d secondes dans le futur\n"
+
+#: plugins/netutils.c:109 plugins/netutils.c:318
+#, fuzzy, c-format
+msgid "Send failed\n"
+msgstr "La réception à échoué\n"
+
+#: plugins/netutils.c:126 plugins/netutils.c:333
+#, fuzzy, c-format
+msgid "No data was received from host!\n"
+msgstr "Pas de donnƩes reƧues de l'hƓte\n"
+
+#: plugins/netutils.c:242
+#, c-format
+msgid "Socket creation failed\n"
+msgstr ""
+
+#: plugins/netutils.c:342
+#, fuzzy, c-format
+msgid "Receive failed\n"
+msgstr "La réception à échoué\n"
+
+#: plugins/popen.c:117
+#, fuzzy, c-format
+msgid "Could not malloc argv array in popen()\n"
+msgstr "Impossible d'allouer une adresse\n"
+
+#: plugins/popen.c:127
+#, fuzzy, c-format
+msgid "CRITICAL - You need more args!!!\n"
+msgstr "CRITIQUE - Erreur d'exƩcution: %s\n"
+
+#: plugins/popen.c:248 plugins/utils.c:136
+#, fuzzy, c-format
+msgid "CRITICAL - Plugin timed out after %d seconds\n"
+msgstr "CRITIQUE - La date du document est %d secondes dans le futur\n"
+
+#: plugins/popen.c:264
+msgid "sysconf error for _SC_OPEN_MAX"
+msgstr ""
+
+#: plugins/urlize.c:106
#, c-format
msgid ""
"%s UNKNOWN - No data received from host\n"
"%s INCONNU - Pas de donnƩes reƧues de l'hƓte\n"
"CMD: %s</A>\n"
-#: plugins/urlize.c:135
+#: plugins/urlize.c:133
#, c-format
msgid ""
"\n"
"\n"
msgstr ""
-#: plugins/urlize.c:143
+#: plugins/urlize.c:141
#, c-format
msgid ""
"\n"
" urlize http://example.com/ \"check_http -H example.com -r 'two words'\"\n"
msgstr ""
+#: plugins/utils.c:433
+#, fuzzy
+msgid "failed realloc in strpcpy\n"
+msgstr "Impossible d'allouer de l'espace pour '%s'\n"
+
+#: plugins/utils.c:475
+#, fuzzy
+msgid "failed malloc in strscat\n"
+msgstr "Impossible d'allouer de l'espace pour '%s'\n"
+
+#~ msgid ""
+#~ "Expiration time must be an integer (seconds)\n"
+#~ "Type '%s -h' for additional help\n"
+#~ msgstr ""
+#~ "Le délai d'expiration doit être un entier (en secondes)\n"
+#~ "Tapez '%s -h' pour de l'aide additionelle\n"
+
+#, fuzzy
+#~ msgid "Server port an integer (seconds)\n"
+#~ msgstr ""
+#~ "Le port du server doit ĆŖtre un entier (secondes)\n"
+#~ "Tapez '%s -h' pour de l'aide additionelle\n"
+
+#~ msgid ""
+#~ "Hostname was not supplied\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Le nom de l'hƓte n'a pas ƩtƩ fourni\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "%s: Unknown argument: %s\n"
+#~ "\n"
+#~ msgstr ""
+#~ "%s: Argument inconnu: %s\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "%s: Unknown argument: %c\n"
+#~ "\n"
+#~ msgstr ""
+#~ "%s: Argument inconnu: %c\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "You must provide the status_log\n"
+#~ "Type '%s -h' for additional help\n"
+#~ msgstr ""
+#~ "Vous devez fournir le fichier status_log\n"
+#~ "Tapez '%s -h' pour de l'aide additionelle\n"
+
+#~ msgid ""
+#~ "You must provide a process string\n"
+#~ "Type '%s -h' for additional help\n"
+#~ msgstr ""
+#~ "Vous devez fournir le nom du processus\n"
+#~ "Tapez '%s -h' pour de l'aide additionelle\n"
+
+#, fuzzy
+#~ msgid "Critical time must be a nonnegative integer"
+#~ msgstr "Le temps critique doit ĆŖtre un entier positif"
+
+#~ msgid "Time interval must be a nonnegative integer"
+#~ msgstr "L'intervalle de temps doit ĆŖtre un entier positif"
+
+#~ msgid "Time interval must be a positive integer"
+#~ msgstr "L'intervalle de temps doit ĆŖtre un entier positif"
+
+#~ msgid "Critical threshold must be a positive integer\n"
+#~ msgstr "Critique le seuil doit ĆŖtre un entier positif\n"
+
+#~ msgid "Warning threshold must be a positive integer\n"
+#~ msgstr "Alerte le seuil doit ĆŖtre un entier positif\n"
+
#~ msgid "check_http: invalid option - SSL is not available\n"
#~ msgstr "check_http: option invalide - SSL n'est pas disponible\n"
diff --git a/po/nagios-plugins.pot b/po/nagios-plugins.pot
index f9d0d57cc839b00734cea4891d3c054e91b301cf..04b97a32a1000fc420502a5089750a4c39d656b6 100644 (file)
--- a/po/nagios-plugins.pot
+++ b/po/nagios-plugins.pot
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-12-25 16:26+0100\n"
+"POT-Creation-Date: 2004-12-26 00:06+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
#: plugins/check_by_ssh.c:72 plugins/check_dhcp.c:251 plugins/check_dig.c:72
-#: plugins/check_disk.c:167 plugins/check_dns.c:75 plugins/check_dummy.c:44
+#: plugins/check_disk.c:167 plugins/check_dns.c:75 plugins/check_dummy.c:43
#: plugins/check_fping.c:73 plugins/check_game.c:69 plugins/check_hpjd.c:89
#: plugins/check_http.c:149 plugins/check_ldap.c:92 plugins/check_load.c:78
#: plugins/check_mrtgtraf.c:66 plugins/check_mysql.c:63
#: plugins/check_fping.c:87 plugins/check_game.c:86 plugins/check_hpjd.c:114
#: plugins/check_nagios.c:103 plugins/check_procs.c:137
#: plugins/check_snmp.c:172 plugins/check_swap.c:151 plugins/check_users.c:59
-#: plugins/negate.c:97 plugins/urlize.c:90
+#: plugins/negate.c:97 plugins/urlize.c:88
#, c-format
msgid "Could not open pipe: %s\n"
msgstr ""
#: plugins/check_fping.c:93 plugins/check_hpjd.c:120 plugins/check_load.c:115
#: plugins/check_nagios.c:109 plugins/check_procs.c:143
#: plugins/check_snmp.c:178 plugins/check_swap.c:157 plugins/check_users.c:65
-#: plugins/negate.c:102 plugins/urlize.c:96
+#: plugins/negate.c:102 plugins/urlize.c:94
#, c-format
msgid "Could not open stderr for %s\n"
msgstr ""
msgid "SSH WARNING: could not open %s\n"
msgstr ""
-#: plugins/check_by_ssh.c:216 plugins/check_http.c:254
+#: plugins/check_by_ssh.c:216 plugins/check_dig.c:217 plugins/check_disk.c:441
+#: plugins/check_dns.c:315 plugins/check_fping.c:245 plugins/check_game.c:201
+#: plugins/check_hpjd.c:336 plugins/check_http.c:254 plugins/check_ldap.c:315
+#: plugins/check_load.c:227 plugins/check_mrtg.c:236
+#: plugins/check_mrtgtraf.c:263 plugins/check_mysql.c:214
+#: plugins/check_nagios.c:222 plugins/check_nt.c:490
+#: plugins/check_nwstat.c:763 plugins/check_overcr.c:327
+#: plugins/check_pgsql.c:212 plugins/check_ping.c:197
+#: plugins/check_procs.c:346 plugins/check_radius.c:221
+#: plugins/check_real.c:354 plugins/check_smtp.c:374 plugins/check_snmp.c:401
+#: plugins/check_ssh.c:113 plugins/check_swap.c:423 plugins/check_tcp.c:465
+#: plugins/check_time.c:219 plugins/check_udp.c:149 plugins/check_ups.c:484
+#: plugins/check_users.c:143 plugins/check_ide_smart.c:209
+#: plugins/negate.c:177 plugins/urlize.c:74
msgid "Unknown argument"
msgstr ""
-#: plugins/check_by_ssh.c:228 plugins/check_dig.c:266 plugins/check_disk.c:308
-#: plugins/check_http.c:266 plugins/check_ldap.c:268 plugins/check_pgsql.c:223
-#: plugins/check_procs.c:357 plugins/check_radius.c:198
-#: plugins/check_radius.c:270 plugins/check_snmp.c:447 plugins/check_ssh.c:127
-#: plugins/check_tcp.c:519 plugins/check_time.c:292 plugins/check_udp.c:182
-#: plugins/negate.c:190
+#: plugins/check_by_ssh.c:228 plugins/check_dig.c:264 plugins/check_disk.c:308
+#: plugins/check_http.c:266 plugins/check_ldap.c:268 plugins/check_pgsql.c:221
+#: plugins/check_procs.c:355 plugins/check_radius.c:198
+#: plugins/check_radius.c:268 plugins/check_real.c:344
+#: plugins/check_smtp.c:354 plugins/check_snmp.c:445 plugins/check_ssh.c:125
+#: plugins/check_tcp.c:517 plugins/check_time.c:290 plugins/check_udp.c:180
+#: plugins/check_ups.c:542 plugins/negate.c:188
msgid "Timeout interval must be a positive integer"
msgstr ""
#: plugins/check_by_ssh.c:234 plugins/check_by_ssh.c:293
-#: plugins/check_dig.c:231 plugins/check_dig.c:288 plugins/check_dns.c:340
-#: plugins/check_dns.c:349 plugins/check_fping.c:259 plugins/check_hpjd.c:324
-#: plugins/check_hpjd.c:349 plugins/check_mysql.c:190
-#: plugins/check_mysql.c:230 plugins/check_pgsql.c:241
-#: plugins/check_ping.c:270 plugins/check_ping.c:393
-#: plugins/check_radius.c:235 plugins/check_real.c:302
-#: plugins/check_real.c:366 plugins/check_smtp.c:292 plugins/check_smtp.c:386
-#: plugins/check_ssh.c:146 plugins/check_tcp.c:489 plugins/check_time.c:230
-#: plugins/check_time.c:305 plugins/check_udp.c:163 plugins/check_udp.c:204
-#: plugins/check_ups.c:492 plugins/check_ups.c:561
+#: plugins/check_dig.c:229 plugins/check_dig.c:286 plugins/check_dns.c:337
+#: plugins/check_dns.c:346 plugins/check_fping.c:257 plugins/check_hpjd.c:323
+#: plugins/check_hpjd.c:346 plugins/check_mysql.c:189
+#: plugins/check_mysql.c:227 plugins/check_pgsql.c:239
+#: plugins/check_ping.c:268 plugins/check_ping.c:391
+#: plugins/check_radius.c:233 plugins/check_real.c:302
+#: plugins/check_real.c:364 plugins/check_smtp.c:292 plugins/check_smtp.c:384
+#: plugins/check_ssh.c:144 plugins/check_tcp.c:487 plugins/check_time.c:228
+#: plugins/check_time.c:303 plugins/check_udp.c:161 plugins/check_udp.c:202
+#: plugins/check_ups.c:490 plugins/check_ups.c:559
msgid "Invalid hostname/address"
msgstr ""
-#: plugins/check_by_ssh.c:239 plugins/check_dig.c:239
-#: plugins/check_pgsql.c:247 plugins/check_radius.c:207
-#: plugins/check_radius.c:243 plugins/check_real.c:315
-#: plugins/check_smtp.c:299 plugins/check_tcp.c:525 plugins/check_time.c:286
-#: plugins/check_udp.c:188
+#: plugins/check_by_ssh.c:239 plugins/check_dig.c:237
+#: plugins/check_pgsql.c:245 plugins/check_radius.c:207
+#: plugins/check_radius.c:241 plugins/check_real.c:315
+#: plugins/check_smtp.c:299 plugins/check_tcp.c:523 plugins/check_time.c:284
+#: plugins/check_udp.c:186 plugins/check_ups.c:504
msgid "Port must be a positive integer"
msgstr ""
" Print version information\n"
msgstr ""
+#: plugins/check_dig.c:84 plugins/check_dig.c:86
+#, c-format
+msgid "Looking for: '%s'\n"
+msgstr ""
+
#: plugins/check_dig.c:130
msgid "Server not found in ANSWER SECTION"
msgstr ""
msgid "%.3f seconds response time (%s)"
msgstr ""
-#: plugins/check_dig.c:217 plugins/check_disk.c:441 plugins/check_dns.c:316
-#: plugins/check_fping.c:245 plugins/check_game.c:202 plugins/check_hpjd.c:337
-#: plugins/check_ldap.c:315 plugins/check_load.c:227 plugins/check_mrtg.c:236
-#: plugins/check_mrtgtraf.c:263 plugins/check_mysql.c:215
-#: plugins/check_overcr.c:335 plugins/check_pgsql.c:212
-#: plugins/check_ping.c:197 plugins/check_procs.c:346
-#: plugins/check_radius.c:221 plugins/check_real.c:354
-#: plugins/check_smtp.c:374 plugins/check_snmp.c:401 plugins/check_ssh.c:113
-#: plugins/check_swap.c:423 plugins/check_tcp.c:465 plugins/check_time.c:219
-#: plugins/check_udp.c:149 plugins/check_ups.c:484 plugins/check_users.c:143
-#: plugins/check_ide_smart.c:209 plugins/negate.c:177 plugins/urlize.c:74
-#, c-format
-msgid ""
-"%s: Unknown argument: %s\n"
-"\n"
-msgstr ""
-
-#: plugins/check_dig.c:250
+#: plugins/check_dig.c:248
msgid "Warning interval must be a positive integer"
msgstr ""
-#: plugins/check_dig.c:258
+#: plugins/check_dig.c:256
msgid "Critical interval must be a positive integer"
msgstr ""
-#: plugins/check_dig.c:321
+#: plugins/check_dig.c:319
#, c-format
msgid ""
"Test the DNS service on the specified host using dig\n"
"\n"
msgstr ""
-#: plugins/check_dig.c:329
+#: plugins/check_dig.c:327
#, c-format
msgid ""
" -l, --lookup=STRING\n"
" machine name to lookup\n"
msgstr ""
-#: plugins/check_dig.c:333
+#: plugins/check_dig.c:331
#, c-format
msgid ""
" -T, --record_type=STRING\n"
" record type to lookup (default: A)\n"
msgstr ""
-#: plugins/check_dig.c:337
+#: plugins/check_dig.c:335
#, c-format
msgid ""
" -a, --expected_address=STRING\n"
msgid "%s [%s not found]"
msgstr ""
-#: plugins/check_disk.c:325
+#: plugins/check_disk.c:325 plugins/check_swap.c:391
msgid "Warning threshold must be integer or percentage!"
msgstr ""
msgid "failed allocating storage for '%s'\n"
msgstr ""
-#: plugins/check_disk.c:502
+#: plugins/check_disk.c:489
+#, c-format
+msgid " for %s\n"
+msgstr ""
+
+#: plugins/check_disk.c:500
#, c-format
msgid "INPUT ERROR: No thresholds specified"
msgstr ""
-#: plugins/check_disk.c:508
+#: plugins/check_disk.c:506
#, c-format
msgid ""
"INPUT ERROR: C_DFP (%f) should be less than W_DFP (%.1f) and both should be "
"between zero and 100 percent, inclusive"
msgstr ""
-#: plugins/check_disk.c:515
+#: plugins/check_disk.c:513
#, c-format
msgid ""
"INPUT ERROR: C_DF (%lu) should be less than W_DF (%lu) and both should be "
"greater than zero"
msgstr ""
-#: plugins/check_disk.c:579
+#: plugins/check_disk.c:577
#, c-format
msgid ""
"This plugin checks the amount of used disk space on a mounted file system\n"
"\n"
msgstr ""
-#: plugins/check_disk.c:587
+#: plugins/check_disk.c:585
#, c-format
msgid ""
" -w, --warning=INTEGER\n"
" Clear thresholds\n"
msgstr ""
-#: plugins/check_disk.c:599
+#: plugins/check_disk.c:597
#, c-format
msgid ""
" -u, --units=STRING\n"
" Same as '--units MB'\n"
msgstr ""
-#: plugins/check_disk.c:607
+#: plugins/check_disk.c:605
#, c-format
msgid ""
" -l, --local\n"
" Display only devices/mountpoints with errors\n"
msgstr ""
-#: plugins/check_disk.c:627
+#: plugins/check_disk.c:625
msgid ""
"Examples:\n"
" check_disk -w 10% -c 5% -p /tmp -p /var -C -w 100000 -c 50000 -p /\n"
msgid "DNS CRITICAL - '%s' returned empty host name string\n"
msgstr ""
+#: plugins/check_dns.c:138
+msgid "Non-authoritative answer:"
+msgstr ""
+
#: plugins/check_dns.c:171
msgid "nslookup returned error status"
msgstr ""
msgid "server %s is not authoritative for %s"
msgstr ""
-#: plugins/check_dns.c:202 plugins/check_dummy.c:60 plugins/check_http.c:930
+#: plugins/check_dns.c:202 plugins/check_dummy.c:59 plugins/check_http.c:930
#: plugins/check_http.c:1183 plugins/check_procs.c:279
#, c-format
msgid "OK"
msgid "DNS failure for %s\n"
msgstr ""
-#: plugins/check_dns.c:333 plugins/check_dns.c:343 plugins/check_dns.c:352
-#: plugins/check_dns.c:357 plugins/check_dns.c:370 plugins/check_dns.c:381
-#: plugins/check_game.c:219 plugins/check_game.c:227
+#: plugins/check_dns.c:330 plugins/check_dns.c:340 plugins/check_dns.c:349
+#: plugins/check_dns.c:354 plugins/check_dns.c:367 plugins/check_dns.c:378
+#: plugins/check_game.c:216 plugins/check_game.c:224
msgid "Input buffer overflow\n"
msgstr ""
-#: plugins/check_dns.c:377
+#: plugins/check_dns.c:374
#, c-format
msgid ""
"Invalid hostname/address: %s\n"
"\n"
msgstr ""
-#: plugins/check_dns.c:409
+#: plugins/check_dns.c:404
#, c-format
msgid ""
"This plugin uses the nslookup program to obtain the IP address\n"
"\n"
msgstr ""
-#: plugins/check_dns.c:419
+#: plugins/check_dns.c:414
#, c-format
msgid ""
"-H, --hostname=HOST\n"
" Optionally expect the DNS server to be authoritative for the lookup\n"
msgstr ""
-#: plugins/check_dummy.c:54
+#: plugins/check_dummy.c:53
msgid "Arguments to check_dummy must be an integer"
msgstr ""
-#: plugins/check_dummy.c:63 plugins/check_http.c:932 plugins/check_procs.c:281
+#: plugins/check_dummy.c:62 plugins/check_http.c:932 plugins/check_procs.c:281
#, c-format
msgid "WARNING"
msgstr ""
-#: plugins/check_dummy.c:66 plugins/check_http.c:934 plugins/check_procs.c:286
+#: plugins/check_dummy.c:65 plugins/check_http.c:934 plugins/check_procs.c:286
#, c-format
msgid "CRITICAL"
msgstr ""
-#: plugins/check_dummy.c:69 plugins/check_http.c:928
+#: plugins/check_dummy.c:68 plugins/check_http.c:928
#, c-format
msgid "UNKNOWN"
msgstr ""
-#: plugins/check_dummy.c:72
+#: plugins/check_dummy.c:71
#, c-format
msgid "Status %d is not a supported error state\n"
msgstr ""
-#: plugins/check_dummy.c:94
+#: plugins/check_dummy.c:93
#, c-format
msgid ""
"This plugin will simply return the state corresponding to the numeric value\n"
msgid "FPING %s - %s (loss=%.0f%% )|%s\n"
msgstr ""
-#: plugins/check_fping.c:293
+#: plugins/check_fping.c:291
msgid "Packet size must be a positive integer"
msgstr ""
-#: plugins/check_fping.c:299
+#: plugins/check_fping.c:297
msgid "Packet count must be a positive integer"
msgstr ""
-#: plugins/check_fping.c:306
-msgid ""
-"Hostname was not supplied\n"
-"\n"
+#: plugins/check_fping.c:303 plugins/check_time.c:307 plugins/check_udp.c:207
+msgid "Hostname was not supplied"
msgstr ""
-#: plugins/check_fping.c:327
+#: plugins/check_fping.c:323
#, c-format
msgid "%s: Only one threshold may be packet loss (%s)\n"
msgstr ""
-#: plugins/check_fping.c:331
+#: plugins/check_fping.c:327
#, c-format
msgid "%s: Only one threshold must be packet loss (%s)\n"
msgstr ""
-#: plugins/check_fping.c:364
+#: plugins/check_fping.c:359
#, c-format
msgid ""
"This plugin will use the /bin/fping command to ping the specified host\n"
"\n"
msgstr ""
-#: plugins/check_fping.c:373
+#: plugins/check_fping.c:368
#, c-format
msgid ""
" -H, --hostname=HOST\n"
" Number of ICMP packets to send (default: %d)\n"
msgstr ""
-#: plugins/check_fping.c:389
+#: plugins/check_fping.c:384
#, c-format
msgid ""
"\n"
msgid "CRITICAL - Host type parameter incorrect!\n"
msgstr ""
-#: plugins/check_game.c:305
+#: plugins/check_game.c:126
+#, c-format
+msgid "CRITICAL - Host not found\n"
+msgstr ""
+
+#: plugins/check_game.c:130
+#, c-format
+msgid "CRITICAL - Game server down or unavailable\n"
+msgstr ""
+
+#: plugins/check_game.c:134
+#, c-format
+msgid "CRITICAL - Game server timeout\n"
+msgstr ""
+
+#: plugins/check_game.c:300
#, c-format
msgid "This plugin tests game server connections with the specified host."
msgstr ""
-#: plugins/check_game.c:311
+#: plugins/check_game.c:306
#, c-format
msgid ""
"<game> = Game type that is recognised by qstat (without the leading "
" [ping_field] = Field number in raw qstat output that contains ping time\n"
msgstr ""
-#: plugins/check_game.c:321
+#: plugins/check_game.c:316
#, c-format
msgid ""
"\n"
msgid "Printer ok - (%s)\n"
msgstr ""
-#: plugins/check_hpjd.c:381
+#: plugins/check_hpjd.c:376
#, c-format
msgid ""
"This plugin tests the STATUS of an HP printer with a JetDirect card.\n"
"\n"
msgstr ""
-#: plugins/check_hpjd.c:389
+#: plugins/check_hpjd.c:384
#, c-format
msgid ""
" -C, --community=STRING\n"
msgid "HTTP CRITICAL - Could not make SSL connection\n"
msgstr ""
-#: plugins/check_http.c:177 plugins/check_http.c:739
+#: plugins/check_http.c:177 plugins/check_http.c:739 plugins/check_tcp.c:268
#, c-format
msgid "CRITICAL - Cannot retrieve server certificate.\n"
msgstr ""
msgid "Invalid option - SSL is not available"
msgstr ""
-#: plugins/check_http.c:309
+#: plugins/check_http.c:309 plugins/check_tcp.c:576
msgid "Invalid certificate expiration period"
msgstr ""
msgid "Could Not Compile Regular Expression: %s"
msgstr ""
-#: plugins/check_http.c:404 plugins/check_smtp.c:364 plugins/check_tcp.c:484
+#: plugins/check_http.c:404 plugins/check_smtp.c:364 plugins/check_ssh.c:136
+#: plugins/check_tcp.c:482
msgid "IPv6 support not available"
msgstr ""
msgid "CRITICAL - Cannot create SSL context.\n"
msgstr ""
-#: plugins/check_http.c:1214 plugins/check_tcp.c:642
+#: plugins/check_http.c:1214 plugins/check_tcp.c:640
#, c-format
msgid "CRITICAL - Cannot initiate SSL handshake.\n"
msgstr ""
-#: plugins/check_http.c:1244 plugins/check_http.c:1256
+#: plugins/check_http.c:1244 plugins/check_http.c:1256 plugins/check_tcp.c:670
+#: plugins/check_tcp.c:682
#, c-format
msgid "CRITICAL - Wrong time format in certificate.\n"
msgstr ""
"the certificate is expired.\n"
msgstr ""
+#: plugins/check_icmp.c:313
+#, c-format
+msgid "Root access needed (for raw sockets)\n"
+msgstr ""
+
+#: plugins/check_icmp.c:319
+msgid "icmp: unknown protocol"
+msgstr ""
+
+#: plugins/check_icmp.c:325
+msgid "Can't create raw socket"
+msgstr ""
+
+#: plugins/check_icmp.c:337
+msgid "Unable to allocate memory for host name list\n"
+msgstr ""
+
+#: plugins/check_icmp.c:362 plugins/check_icmp.c:367 plugins/check_icmp.c:546
+#: plugins/check_icmp.c:551
+msgid "Failed to allocate memory for hostname"
+msgstr ""
+
+#: plugins/check_icmp.c:378 plugins/check_icmp.c:385
+#, c-format
+msgid "Illegal threshold pair specified for -%c"
+msgstr ""
+
+#: plugins/check_icmp.c:392 plugins/check_icmp.c:399 plugins/check_icmp.c:421
+#, c-format
+msgid "Option -%c requires integer argument\n"
+msgstr ""
+
+#: plugins/check_icmp.c:406 plugins/check_icmp.c:414
+#, c-format
+msgid "Option -%c requires positive non-zero integer argument\n"
+msgstr ""
+
+#: plugins/check_icmp.c:470
+#, c-format
+msgid "Option flag -%c specified, but not recognized\n"
+msgstr ""
+
+#: plugins/check_icmp.c:497
+#, c-format
+msgid "%s: these options are too risky for mere mortals.\n"
+msgstr ""
+
+#: plugins/check_icmp.c:498
+#, c-format
+msgid "%s: You need i >= %u and r < %u\n"
+msgstr ""
+
+#: plugins/check_icmp.c:500
+#, c-format
+msgid "Current settings; i = %d, r = %d\n"
+msgstr ""
+
+#: plugins/check_icmp.c:506
+#, c-format
+msgid "%s: data size %u not valid, must be between %u and %u\n"
+msgstr ""
+
+#: plugins/check_icmp.c:513
+#, c-format
+msgid "%s: backoff factor %.1f not valid, must be between %.1f and %.1f\n"
+msgstr ""
+
+#: plugins/check_icmp.c:520
+#, c-format
+msgid "%s: count %u not valid, must be less than %u\n"
+msgstr ""
+
+#: plugins/check_icmp.c:539
+#, c-format
+msgid "Generate flag requires command line parameters beyond switches\n"
+msgstr ""
+
+#: plugins/check_icmp.c:568
+#, c-format
+msgid ""
+"No hosts to work with!\n"
+"\n"
+msgstr ""
+
+#: plugins/check_icmp.c:574
+msgid "Can't malloc array of hosts"
+msgstr ""
+
+#: plugins/check_icmp.c:706
+#, c-format
+msgid "%s is down (lost 100%%)"
+msgstr ""
+
+#: plugins/check_icmp.c:757
+#, c-format
+msgid "No hostaddress specified.\n"
+msgstr ""
+
+#: plugins/check_icmp.c:768
+#, c-format
+msgid "OK - All %d hosts are alive\n"
+msgstr ""
+
+#: plugins/check_icmp.c:771
+#, c-format
+msgid "CRITICAL - %d of %d hosts are alive\n"
+msgstr ""
+
+#: plugins/check_icmp.c:787
+msgid "Can't malloc ping packet"
+msgstr ""
+
+#: plugins/check_icmp.c:811
+#, c-format
+msgid "%s error while sending ping: %s\n"
+msgstr ""
+
+#: plugins/check_icmp.c:863
+#, c-format
+msgid "Received packet too short for ICMP (%d bytes from %s)\n"
+msgstr ""
+
+#: plugins/check_icmp.c:906
+#, c-format
+msgid "%s : duplicate for [%d], %d bytes, %s ms"
+msgstr ""
+
+#: plugins/check_icmp.c:916
+#, c-format
+msgid "%s : duplicate for [%d], %d bytes, %s ms\n"
+msgstr ""
+
+#: plugins/check_icmp.c:945
+#, c-format
+msgid "ICMP Unreachable (Invalid Code) from %s for ICMP Echo sent to %s"
+msgstr ""
+
+#: plugins/check_icmp.c:950 plugins/check_icmp.c:974
+#, c-format
+msgid "ICMP Unreachable from %s for ICMP Echo sent to %s"
+msgstr ""
+
+#: plugins/check_icmp.c:1059
+#, c-format
+msgid "%s address not found\n"
+msgstr ""
+
+#: plugins/check_icmp.c:1067
+#, c-format
+msgid "%s has no address data\n"
+msgstr ""
+
+#: plugins/check_icmp.c:1100
+msgid "Can't allocate some space for a string"
+msgstr ""
+
+#: plugins/check_icmp.c:1119
+msgid "Can't allocate HOST_ENTRY"
+msgstr ""
+
+#: plugins/check_icmp.c:1132
+msgid "Can't allocate resp_times array"
+msgstr ""
+
+#: plugins/check_icmp.c:1196
+msgid "malloc() failed!"
+msgstr ""
+
+#: plugins/check_icmp.c:1213
+#, c-format
+msgid "%s: %s : A network error occurred\n"
+msgstr ""
+
+#: plugins/check_icmp.c:1279
+msgid "select() in u_sleep:"
+msgstr ""
+
+#: plugins/check_icmp.c:1309
+msgid "select() in recvfrom_wto"
+msgstr ""
+
+#: plugins/check_icmp.c:1316
+msgid "recvfrom"
+msgstr ""
+
#: plugins/check_icmp.c:1371
#, c-format
msgid ""
msgid "Could not set protocol version %d\n"
msgstr ""
+#: plugins/check_ldap.c:137
+#, c-format
+msgid "Could not init TLS at port %i!\n"
+msgstr ""
+
+#: plugins/check_ldap.c:141
+#, c-format
+msgid "TLS not supported by the libraries!\n"
+msgstr ""
+
+#: plugins/check_ldap.c:160
+#, c-format
+msgid "Could not init startTLS at port %i!\n"
+msgstr ""
+
+#: plugins/check_ldap.c:164
+#, c-format
+msgid "startTLS not supported by the library, needs LDAPv3!\n"
+msgstr ""
+
#: plugins/check_ldap.c:174
#, c-format
msgid "Could not bind to the ldap-server\n"
msgid "LDAP %s - %.3f seconds response time|%s\n"
msgstr ""
-#: plugins/check_ldap.c:311 plugins/check_ping.c:221 plugins/check_ssh.c:138
+#: plugins/check_ldap.c:311 plugins/check_ping.c:219
msgid "IPv6 support not available\n"
msgstr ""
-#: plugins/check_ldap.c:335
-msgid "please specify the host name\n"
+#: plugins/check_ldap.c:334
+msgid "Please specify the host name\n"
msgstr ""
-#: plugins/check_ldap.c:338
-msgid "please specify the LDAP base\n"
+#: plugins/check_ldap.c:337
+msgid "Please specify the LDAP base\n"
msgstr ""
-#: plugins/check_ldap.c:365
+#: plugins/check_ldap.c:362
#, c-format
msgid ""
" -a [--attr]\n"
" ldap password (if required)\n"
msgstr ""
-#: plugins/check_ldap.c:376
+#: plugins/check_ldap.c:373
#, c-format
msgid ""
" -2 [--ver2]\n"
msgid "Critical threshold must be float or float triplet!\n"
msgstr ""
-#: plugins/check_load.c:273
+#: plugins/check_load.c:271
msgid "Warning threshold for 1-minute load average is not specified\n"
msgstr ""
-#: plugins/check_load.c:275
+#: plugins/check_load.c:273
msgid "Warning threshold for 5-minute load average is not specified\n"
msgstr ""
-#: plugins/check_load.c:277
+#: plugins/check_load.c:275
msgid "Warning threshold for 15-minute load average is not specified\n"
msgstr ""
-#: plugins/check_load.c:279
+#: plugins/check_load.c:277
msgid "Critical threshold for 1-minute load average is not specified\n"
msgstr ""
-#: plugins/check_load.c:281
+#: plugins/check_load.c:279
msgid "Critical threshold for 5-minute load average is not specified\n"
msgstr ""
-#: plugins/check_load.c:283
+#: plugins/check_load.c:281
msgid "Critical threshold for 15-minute load average is not specified\n"
msgstr ""
-#: plugins/check_load.c:285
+#: plugins/check_load.c:283
msgid ""
"Parameter inconsistency: 1-minute \"warning load\" greater than \"critical "
"load\".\n"
msgstr ""
-#: plugins/check_load.c:287
+#: plugins/check_load.c:285
msgid ""
"Parameter inconsistency: 5-minute \"warning load\" greater than \"critical "
"load\".\n"
msgstr ""
-#: plugins/check_load.c:289
+#: plugins/check_load.c:287
msgid ""
"Parameter inconsistency: 15-minute \"warning load\" greater than \"critical "
"load\".\n"
msgstr ""
-#: plugins/check_load.c:303
+#: plugins/check_load.c:301
#, c-format
msgid ""
"This plugin tests the current system load average.\n"
"\n"
msgstr ""
-#: plugins/check_load.c:309
+#: plugins/check_load.c:307
#, c-format
msgid ""
" -w, --warning=WLOAD1,WLOAD5,WLOAD15\n"
msgid "Invalid variable number"
msgstr ""
-#: plugins/check_mrtg.c:252
+#: plugins/check_mrtg.c:250
#, c-format
msgid ""
"%s is not a valid expiration time\n"
"Use '%s -h' for additional help\n"
msgstr ""
-#: plugins/check_mrtg.c:269
+#: plugins/check_mrtg.c:267
msgid "Invalid variable number\n"
msgstr ""
-#: plugins/check_mrtg.c:296
+#: plugins/check_mrtg.c:294
msgid "You must supply the variable number"
msgstr ""
-#: plugins/check_mrtg.c:317
+#: plugins/check_mrtg.c:315
#, c-format
msgid ""
"This plugin will check either the average or maximum value of one of the\n"
"\n"
msgstr ""
-#: plugins/check_mrtg.c:325
+#: plugins/check_mrtg.c:323
#, c-format
msgid ""
" -F, --logfile=FILE\n"
" Threshold value for data to result in CRITICAL status\n"
msgstr ""
-#: plugins/check_mrtg.c:339
+#: plugins/check_mrtg.c:337
#, c-format
msgid ""
" -l, --label=STRING\n"
" \"Bytes Per Second\", \"%% Utilization\")\n"
msgstr ""
-#: plugins/check_mrtg.c:346
+#: plugins/check_mrtg.c:344
#, c-format
msgid ""
"If the value exceeds the <vwl> threshold, a WARNING status is returned. If\n"
"\n"
msgstr ""
-#: plugins/check_mrtg.c:352
+#: plugins/check_mrtg.c:350
#, c-format
msgid ""
"This plugin is useful for monitoring MRTG data that does not correspond to\n"
"\n"
msgstr ""
-#: plugins/check_mrtg.c:359
+#: plugins/check_mrtg.c:357
#, c-format
msgid ""
"Notes:\n"
msgid "Traffic %s - %s\n"
msgstr ""
-#: plugins/check_mrtgtraf.c:324
+#: plugins/check_mrtgtraf.c:320
#, c-format
msgid ""
"\n"
"\n"
msgstr ""
-#: plugins/check_mrtgtraf.c:336
+#: plugins/check_mrtgtraf.c:332
#, c-format
msgid ""
" -F, --filename=STRING\n"
" Critical threshold pair \"<incoming>,<outgoing>\"\n"
msgstr ""
-#: plugins/check_mrtgtraf.c:348
+#: plugins/check_mrtgtraf.c:344
#, c-format
msgid ""
"Notes:\n"
" for future enhancements of this plugin.\n"
msgstr ""
-#: plugins/check_mysql.c:279
+#: plugins/check_mysql.c:101
+#, c-format
+msgid "slave query error: %s\n"
+msgstr ""
+
+#: plugins/check_mysql.c:107
+#, c-format
+msgid "slave store_result error: %s\n"
+msgstr ""
+
+#: plugins/check_mysql.c:114
+#, c-format
+msgid "slave fetch row error: %s\n"
+msgstr ""
+
+#: plugins/check_mysql.c:119
+#, c-format
+msgid "Slave running: %s"
+msgstr ""
+
+#: plugins/check_mysql.c:274
#, c-format
msgid "This program tests connections to a mysql server\n"
msgstr ""
-#: plugins/check_mysql.c:287
+#: plugins/check_mysql.c:282
#, c-format
msgid ""
" -d, --database=STRING\n"
" Check if the slave thread is running properly.\n"
msgstr ""
-#: plugins/check_mysql.c:299
+#: plugins/check_mysql.c:294
#, c-format
msgid ""
"\n"
msgid "CRITICAL - Cannot open status log for reading!\n"
msgstr ""
+#: plugins/check_nagios.c:98
+#, c-format
+msgid "command: %s\n"
+msgstr ""
+
#: plugins/check_nagios.c:140
#, c-format
msgid "Found process: %s %s\n"
msgid "Nagios %s: located %d process%s, status log updated %d second%s ago\n"
msgstr ""
-#: plugins/check_nagios.c:209 plugins/check_nagios.c:243
-#, c-format
-msgid ""
-"Expiration time must be an integer (seconds)\n"
-"Type '%s -h' for additional help\n"
+#: plugins/check_nagios.c:209 plugins/check_nagios.c:240
+msgid "Expiration time must be an integer (seconds)\n"
msgstr ""
-#: plugins/check_nagios.c:223
-#, c-format
-msgid ""
-"%s: Unknown argument: %c\n"
-"\n"
+#: plugins/check_nagios.c:251
+msgid "You must provide the status_log\n"
msgstr ""
-#: plugins/check_nagios.c:255
-#, c-format
-msgid ""
-"You must provide the status_log\n"
-"Type '%s -h' for additional help\n"
-msgstr ""
-
-#: plugins/check_nagios.c:259
-#, c-format
-msgid ""
-"You must provide a process string\n"
-"Type '%s -h' for additional help\n"
+#: plugins/check_nagios.c:254
+msgid "You must provide a process string\n"
msgstr ""
-#: plugins/check_nagios.c:274
+#: plugins/check_nagios.c:268
#, c-format
msgid ""
"This plugin checks the status of the Nagios process on the local\n"
"\n"
msgstr ""
-#: plugins/check_nagios.c:284
+#: plugins/check_nagios.c:278
#, c-format
msgid ""
" -F, --filename=FILE\n"
" Substring to search for in process arguments\n"
msgstr ""
-#: plugins/check_nagios.c:292
+#: plugins/check_nagios.c:286
#, c-format
msgid ""
"Example:\n"
msgid "Please specify a variable to check"
msgstr ""
-#: plugins/check_nt.c:510 plugins/check_nwstat.c:782
-#: plugins/check_overcr.c:352
-#, c-format
-msgid ""
-"Server port an integer (seconds)\n"
-"Type '%s -h' for additional help\n"
+#: plugins/check_nt.c:508
+msgid "Server port must be an integer\n"
msgstr ""
-#: plugins/check_nt.c:563
+#: plugins/check_nt.c:561
msgid "None"
msgstr ""
-#: plugins/check_nt.c:620
+#: plugins/check_nt.c:574
+msgid "could not fetch information from server\n"
+msgstr ""
+
+#: plugins/check_nt.c:618
#, c-format
msgid ""
"This plugin collects data from the NSClient service running on a\n"
"\n"
msgstr ""
-#: plugins/check_nt.c:625
+#: plugins/check_nt.c:623
#, c-format
msgid ""
"\n"
" Print version information\n"
msgstr ""
-#: plugins/check_nt.c:643
+#: plugins/check_nt.c:641
#, c-format
msgid ""
"-v, --variable=STRING\n"
" Variable to check. Valid variables are:\n"
msgstr ""
-#: plugins/check_nt.c:646
+#: plugins/check_nt.c:644
#, c-format
msgid ""
" CLIENTVERSION = Get the NSClient version\n"
" If -l <version> is specified, will return warning if versions differ.\n"
msgstr ""
-#: plugins/check_nt.c:649
+#: plugins/check_nt.c:647
#, c-format
msgid ""
" CPULOAD = Average CPU load on last x minutes.\n"
" ie: -l 60,90,95,120,90,95\n"
msgstr ""
-#: plugins/check_nt.c:656
+#: plugins/check_nt.c:654
#, c-format
msgid ""
" UPTIME = Get the uptime of the machine.\n"
" No specific parameters. No warning or critical threshold\n"
msgstr ""
-#: plugins/check_nt.c:659
+#: plugins/check_nt.c:657
#, c-format
msgid ""
" USEDDISKSPACE = Size and percentage of disk use.\n"
" Warning and critical thresholds can be specified with -w and -c.\n"
msgstr ""
-#: plugins/check_nt.c:663
+#: plugins/check_nt.c:661
#, c-format
msgid ""
" MEMUSE = Memory use.\n"
" Warning and critical thresholds can be specified with -w and -c.\n"
msgstr ""
-#: plugins/check_nt.c:666
+#: plugins/check_nt.c:664
#, c-format
msgid ""
" SERVICESTATE = Check the state of one or several services.\n"
"\t\t in the returned string.\n"
msgstr ""
-#: plugins/check_nt.c:672
+#: plugins/check_nt.c:670
#, c-format
msgid ""
" PROCSTATE = Check if one or several process are running.\n"
" Same syntax as SERVICESTATE.\n"
msgstr ""
-#: plugins/check_nt.c:675
+#: plugins/check_nt.c:673
#, c-format
msgid ""
" COUNTER = Check any performance counter of Windows NT/2000.\n"
" \"%%.f %%%% paging file used.\"\n"
msgstr ""
-#: plugins/check_nt.c:685
+#: plugins/check_nt.c:683
#, c-format
msgid ""
"Notes:\n"
msgid "Nothing to check!\n"
msgstr ""
-#: plugins/check_nwstat.c:910
+#: plugins/check_nwstat.c:780 plugins/check_overcr.c:342
+msgid "Server port an integer\n"
+msgstr ""
+
+#: plugins/check_nwstat.c:908
#, c-format
msgid ""
"This plugin attempts to contact the MRTGEXT NLM running on a\n"
"\n"
msgstr ""
-#: plugins/check_nwstat.c:920
+#: plugins/check_nwstat.c:918
#, c-format
msgid ""
" -v, --variable=STRING\n"
" UPTIME = server uptime\n"
msgstr ""
-#: plugins/check_nwstat.c:930
+#: plugins/check_nwstat.c:928
#, c-format
msgid ""
" LTCH = percent long term cache hits\n"
" TCB = dirty cache buffers as a percentage of the original\n"
msgstr ""
-#: plugins/check_nwstat.c:937
+#: plugins/check_nwstat.c:935
#, c-format
msgid ""
" OFILES = number of open files\n"
" VKNP<vol> = KB of not yet purgeable space on volume <vol>\n"
msgstr ""
-#: plugins/check_nwstat.c:946
+#: plugins/check_nwstat.c:944
#, c-format
msgid ""
" LRUM = LRU sitting time in minutes\n"
" SAPENTRIES<n> = number of entries in the SAP table for SAP type <n>\n"
msgstr ""
-#: plugins/check_nwstat.c:956
+#: plugins/check_nwstat.c:954
#, c-format
msgid ""
" TSYNC = timesync status \n"
" (e.g. \"NLM:TSANDS.NLM\")\n"
msgstr ""
-#: plugins/check_nwstat.c:963
+#: plugins/check_nwstat.c:961
#, c-format
msgid ""
" -w, --warning=INTEGER\n"
" Include server version string in results\n"
msgstr ""
-#: plugins/check_nwstat.c:973
+#: plugins/check_nwstat.c:971
#, c-format
msgid ""
"\n"
msgid "Uptime %s - Up %d days %d hours %d minutes"
msgstr ""
-#: plugins/check_overcr.c:418
+#: plugins/check_overcr.c:406
#, c-format
msgid ""
"This plugin attempts to contact the Over-CR collector daemon running on the\n"
"\n"
msgstr ""
-#: plugins/check_overcr.c:428
+#: plugins/check_overcr.c:416
#, c-format
msgid ""
"-v, --variable=STRING\n"
" UPTIME = system uptime in seconds\n"
msgstr ""
-#: plugins/check_overcr.c:439
+#: plugins/check_overcr.c:427
#, c-format
msgid ""
" -w, --warning=INTEGER\n"
" Threshold which will result in a critical status\n"
msgstr ""
-#: plugins/check_overcr.c:447
+#: plugins/check_overcr.c:435
#, c-format
msgid ""
"Notes:\n"
"\n"
msgstr ""
-#: plugins/check_overcr.c:452
+#: plugins/check_overcr.c:440
#, c-format
msgid ""
" - This plugin requres that Eric Molitors' Over-CR collector daemon be\n"
msgid " %s - database %s (%d sec.)|%s\n"
msgstr ""
-#: plugins/check_pgsql.c:229 plugins/check_pgsql.c:235 plugins/check_tcp.c:494
-#: plugins/check_time.c:267 plugins/check_time.c:279 plugins/check_udp.c:168
+#: plugins/check_pgsql.c:227 plugins/check_tcp.c:492 plugins/check_time.c:265
+#: plugins/check_time.c:277 plugins/check_udp.c:166 plugins/check_users.c:152
msgid "Critical threshold must be a positive integer"
msgstr ""
-#: plugins/check_pgsql.c:253
+#: plugins/check_pgsql.c:233 plugins/check_tcp.c:502 plugins/check_time.c:246
+#: plugins/check_time.c:270 plugins/check_udp.c:173 plugins/check_users.c:158
+#: plugins/check_users.c:168 plugins/check_users.c:175
+msgid "Warning threshold must be a positive integer"
+msgstr ""
+
+#: plugins/check_pgsql.c:251
msgid "Database name is not valid"
msgstr ""
-#: plugins/check_pgsql.c:259
+#: plugins/check_pgsql.c:257
msgid "User name is not valid"
msgstr ""
-#: plugins/check_pgsql.c:396
+#: plugins/check_pgsql.c:394
#, c-format
msgid ""
"Test whether a PostgreSQL Database is accepting connections.\n"
"\n"
msgstr ""
-#: plugins/check_pgsql.c:406
+#: plugins/check_pgsql.c:404
#, c-format
msgid ""
" -d, --database=STRING\n"
" Password (BIG SECURITY ISSUE)\n"
msgstr ""
-#: plugins/check_pgsql.c:420
+#: plugins/check_pgsql.c:418
#, c-format
msgid ""
"\n"
"PostgreSQL DBMS.\n"
msgstr ""
-#: plugins/check_pgsql.c:427
+#: plugins/check_pgsql.c:425
#, c-format
msgid ""
"\n"
"connections (start the postmaster with the -i option).\n"
msgstr ""
-#: plugins/check_pgsql.c:431
+#: plugins/check_pgsql.c:429
#, c-format
msgid ""
"\n"
msgid "PING %s - %sPacket loss = %d%%, RTA = %2.2f ms"
msgstr ""
-#: plugins/check_ping.c:232
+#: plugins/check_ping.c:230
msgid "Could not realloc() addresses\n"
msgstr ""
-#: plugins/check_ping.c:247 plugins/check_ping.c:327
+#: plugins/check_ping.c:245 plugins/check_ping.c:325
#, c-format
msgid "<max_packets> (%s) must be a non-negative number\n"
msgstr ""
-#: plugins/check_ping.c:281
+#: plugins/check_ping.c:279
#, c-format
msgid "<wpl> (%s) must be an integer percentage\n"
msgstr ""
-#: plugins/check_ping.c:292
+#: plugins/check_ping.c:290
#, c-format
msgid "<cpl> (%s) must be an integer percentage\n"
msgstr ""
-#: plugins/check_ping.c:303
+#: plugins/check_ping.c:301
#, c-format
msgid "<wrta> (%s) must be a non-negative number\n"
msgstr ""
-#: plugins/check_ping.c:314
+#: plugins/check_ping.c:312
#, c-format
msgid "<crta> (%s) must be a non-negative number\n"
msgstr ""
-#: plugins/check_ping.c:347
+#: plugins/check_ping.c:345
#, c-format
msgid ""
"%s: Warning threshold must be integer or percentage!\n"
"\n"
msgstr ""
-#: plugins/check_ping.c:360
+#: plugins/check_ping.c:358
#, c-format
msgid "<wrta> was not set\n"
msgstr ""
-#: plugins/check_ping.c:364
+#: plugins/check_ping.c:362
#, c-format
msgid "<crta> was not set\n"
msgstr ""
-#: plugins/check_ping.c:368
+#: plugins/check_ping.c:366
#, c-format
msgid "<wpl> was not set\n"
msgstr ""
-#: plugins/check_ping.c:372
+#: plugins/check_ping.c:370
#, c-format
msgid "<cpl> was not set\n"
msgstr ""
-#: plugins/check_ping.c:376
+#: plugins/check_ping.c:374
#, c-format
msgid "<wrta> (%f) cannot be larger than <crta> (%f)\n"
msgstr ""
-#: plugins/check_ping.c:380
+#: plugins/check_ping.c:378
#, c-format
msgid "<wpl> (%d) cannot be larger than <cpl> (%d)\n"
msgstr ""
-#: plugins/check_ping.c:408
+#: plugins/check_ping.c:406
#, c-format
msgid "Cannot open pipe: %s"
msgstr ""
-#: plugins/check_ping.c:412
+#: plugins/check_ping.c:410
#, c-format
msgid "Cannot open stderr for %s\n"
msgstr ""
-#: plugins/check_ping.c:467
+#: plugins/check_ping.c:465
#, c-format
msgid "CRITICAL - Network unreachable (%s)"
msgstr ""
-#: plugins/check_ping.c:469
+#: plugins/check_ping.c:467
#, c-format
msgid "CRITICAL - Host Unreachable (%s)"
msgstr ""
-#: plugins/check_ping.c:471
+#: plugins/check_ping.c:469
#, c-format
msgid "CRITICAL - Host not found (%s)"
msgstr ""
-#: plugins/check_ping.c:473
+#: plugins/check_ping.c:471
#, c-format
msgid "CRITICAL - Time to live exceeded (%s)"
msgstr ""
-#: plugins/check_ping.c:480
+#: plugins/check_ping.c:478
msgid "Unable to realloc warn_text"
msgstr ""
-#: plugins/check_ping.c:497
+#: plugins/check_ping.c:495
#, c-format
msgid ""
"Use ping to check connection statistics for a remote host.\n"
"\n"
msgstr ""
-#: plugins/check_ping.c:505
+#: plugins/check_ping.c:503
#, c-format
msgid ""
"-H, --hostname=HOST\n"
" show HTML in the plugin output (obsoleted by urlize)\n"
msgstr ""
-#: plugins/check_ping.c:520
+#: plugins/check_ping.c:518
#, c-format
msgid ""
"THRESHOLD is <rta>,<pl>%% where <rta> is the round trip average travel\n"
"\n"
msgstr ""
-#: plugins/check_ping.c:525
+#: plugins/check_ping.c:523
#, c-format
msgid ""
"This plugin uses the ping command to probe the specified host for packet "
msgid " with %s"
msgstr ""
-#: plugins/check_procs.c:371
-msgid ""
-"Critical Process Count must be an integer!\n"
-"\n"
+#: plugins/check_procs.c:369
+msgid "Critical Process Count must be an integer!"
msgstr ""
-#: plugins/check_procs.c:383
-msgid ""
-"Warning Process Count must be an integer!\n"
-"\n"
+#: plugins/check_procs.c:381
+msgid "Warning Process Count must be an integer!"
msgstr ""
-#: plugins/check_procs.c:391
-#, c-format
-msgid ""
-"%s: Parent Process ID must be an integer!\n"
-"\n"
+#: plugins/check_procs.c:389
+msgid "Parent Process ID must be an integer!"
msgstr ""
-#: plugins/check_procs.c:397 plugins/check_procs.c:502
+#: plugins/check_procs.c:395 plugins/check_procs.c:497
#, c-format
msgid "%s%sSTATE = %s"
msgstr ""
-#: plugins/check_procs.c:406
+#: plugins/check_procs.c:404
#, c-format
-msgid "UID %s was not found\n"
+msgid "UID %s was not found"
msgstr ""
-#: plugins/check_procs.c:412
+#: plugins/check_procs.c:410
#, c-format
-msgid "User name %s was not found\n"
+msgid "User name %s was not found"
msgstr ""
-#: plugins/check_procs.c:417
+#: plugins/check_procs.c:415
#, c-format
msgid "%s%sUID = %d (%s)"
msgstr ""
-#: plugins/check_procs.c:427
+#: plugins/check_procs.c:425
#, c-format
msgid "%s%scommand name '%s'"
msgstr ""
-#: plugins/check_procs.c:437
+#: plugins/check_procs.c:435
#, c-format
msgid "%s%sargs '%s'"
msgstr ""
-#: plugins/check_procs.c:442
+#: plugins/check_procs.c:440
#, c-format
msgid "%s%sRSS >= %d"
msgstr ""
-#: plugins/check_procs.c:446
-#, c-format
-msgid ""
-"%s: RSS must be an integer!\n"
-"\n"
+#: plugins/check_procs.c:444
+msgid "RSS must be an integer!"
msgstr ""
-#: plugins/check_procs.c:449
+#: plugins/check_procs.c:447
#, c-format
msgid "%s%sVSZ >= %d"
msgstr ""
-#: plugins/check_procs.c:453
-#, c-format
-msgid ""
-"%s: VSZ must be an integer!\n"
-"\n"
+#: plugins/check_procs.c:451
+msgid "VSZ must be an integer!"
msgstr ""
-#: plugins/check_procs.c:457
+#: plugins/check_procs.c:455
#, c-format
msgid "%s%sPCPU >= %.2f"
msgstr ""
-#: plugins/check_procs.c:461
-#, c-format
-msgid ""
-"%s: PCPU must be a float!\n"
-"\n"
+#: plugins/check_procs.c:459
+msgid "PCPU must be a float!"
msgstr ""
-#: plugins/check_procs.c:485
-#, c-format
-msgid ""
-"%s: metric must be one of PROCS, VSZ, RSS, CPU, ELAPSED!\n"
-"\n"
+#: plugins/check_procs.c:483
+msgid "Metric must be one of PROCS, VSZ, RSS, CPU, ELAPSED!"
msgstr ""
-#: plugins/check_procs.c:521
+#: plugins/check_procs.c:516
#, c-format
msgid "wmax (%d) cannot be greater than cmax (%d)\n"
msgstr ""
-#: plugins/check_procs.c:525
+#: plugins/check_procs.c:520
#, c-format
msgid "wmin (%d) cannot be less than cmin (%d)\n"
msgstr ""
-#: plugins/check_procs.c:665
+#: plugins/check_procs.c:657
#, c-format
msgid ""
"Checks all processes and generates WARNING or CRITICAL states if the "
"\n"
msgstr ""
-#: plugins/check_procs.c:672
+#: plugins/check_procs.c:664
#, c-format
msgid ""
"\n"
" Generate critical state if metric is outside this range\n"
msgstr ""
-#: plugins/check_procs.c:679
+#: plugins/check_procs.c:671
#, c-format
msgid ""
"\n"
" CPU - percentage cpu\n"
msgstr ""
-#: plugins/check_procs.c:689
+#: plugins/check_procs.c:681
#, c-format
msgid " ELAPSED - time elapsed in seconds\n"
msgstr ""
-#: plugins/check_procs.c:694
+#: plugins/check_procs.c:686
#, c-format
msgid ""
" -v, --verbose\n"
" Extra information. Up to 3 verbosity levels\n"
msgstr ""
-#: plugins/check_procs.c:698
+#: plugins/check_procs.c:690
#, c-format
msgid ""
"\n"
" Only scan for processes with rss higher than indicated.\n"
msgstr ""
-#: plugins/check_procs.c:711
+#: plugins/check_procs.c:703
#, c-format
msgid ""
" -P, --pcpu=PCPU\n"
" Only scan for exact matches of COMMAND (without path).\n"
msgstr ""
-#: plugins/check_procs.c:721
+#: plugins/check_procs.c:713
#, c-format
msgid ""
"\n"
"\n"
msgstr ""
-#: plugins/check_procs.c:726
+#: plugins/check_procs.c:718
#, c-format
msgid ""
"This plugin checks the number of currently running processes and\n"
"\n"
msgstr ""
-#: plugins/check_procs.c:733
+#: plugins/check_procs.c:725
#, c-format
msgid ""
"Examples:\n"
msgid "Auth OK"
msgstr ""
-#: plugins/check_radius.c:202 plugins/check_radius.c:264
+#: plugins/check_radius.c:202 plugins/check_radius.c:262
msgid "Number of retries must be a positive integer"
msgstr ""
-#: plugins/check_radius.c:290
+#: plugins/check_radius.c:288
#, c-format
msgid ""
"Tests to see if a radius server is accepting connections.\n"
"\n"
msgstr ""
-#: plugins/check_radius.c:298
+#: plugins/check_radius.c:296
#, c-format
msgid ""
" -u, --username=STRING\n"
" Number of times to retry a failed connection\n"
msgstr ""
-#: plugins/check_radius.c:314
+#: plugins/check_radius.c:312
#, c-format
msgid ""
"\n"
"\n"
msgstr ""
-#: plugins/check_radius.c:321
+#: plugins/check_radius.c:319
#, c-format
msgid ""
"The password option presents a substantial security issue because the\n"
msgid "REAL %s - %d second response time\n"
msgstr ""
-#: plugins/check_real.c:324 plugins/check_smtp.c:343
+#: plugins/check_real.c:324 plugins/check_smtp.c:343 plugins/check_ups.c:522
msgid "Warning time must be a positive integer"
msgstr ""
-#: plugins/check_real.c:333
-msgid "Critical time must be a nonnegative integer"
-msgstr ""
-
-#: plugins/check_real.c:344
-msgid "Time interval must be a nonnegative integer"
+#: plugins/check_real.c:333 plugins/check_smtp.c:334 plugins/check_ups.c:513
+msgid "Critical time must be a positive integer"
msgstr ""
-#: plugins/check_real.c:371
-msgid "You must provide a server to check\n"
+#: plugins/check_real.c:369
+msgid "You must provide a server to check"
msgstr ""
-#: plugins/check_real.c:403
+#: plugins/check_real.c:401
#, c-format
msgid ""
"This plugin tests the REAL service on the specified host.\n"
"\n"
msgstr ""
-#: plugins/check_real.c:411
+#: plugins/check_real.c:409
#, c-format
msgid ""
" -u, --url=STRING\n"
" String to expect in first line of server response (default: %s)\n"
msgstr ""
-#: plugins/check_real.c:424
+#: plugins/check_real.c:422
#, c-format
msgid ""
"This plugin will attempt to open an RTSP connection with the host.\n"
msgid "Invalid SMTP response received from host on port %d\n"
msgstr ""
-#: plugins/check_smtp.c:182 plugins/check_snmp.c:510
+#: plugins/check_smtp.c:182 plugins/check_snmp.c:508
#, c-format
msgid "Could Not Compile Regular Expression"
msgstr ""
msgid "SMTP %s - %.3f sec. response time%s%s|%s\n"
msgstr ""
-#: plugins/check_smtp.c:313 plugins/check_smtp.c:323 plugins/check_snmp.c:566
+#: plugins/check_smtp.c:313 plugins/check_smtp.c:323 plugins/check_snmp.c:564
#, c-format
msgid "Could not realloc() units [%d]\n"
msgstr ""
-#: plugins/check_smtp.c:334
-msgid "Critical time must be a positive integer"
-msgstr ""
-
-#: plugins/check_smtp.c:354
-msgid "Time interval must be a positive integer"
-msgstr ""
-
-#: plugins/check_smtp.c:426
+#: plugins/check_smtp.c:424
#, c-format
msgid ""
"This plugin will attempt to open an SMTP connection with the host.\n"
"\n"
msgstr ""
-#: plugins/check_smtp.c:436
+#: plugins/check_smtp.c:434
#, c-format
msgid ""
" -e, --expect=STRING\n"
" FROM-address to include in MAIL command, required by Exchange 2000\n"
msgstr ""
-#: plugins/check_smtp.c:455
+#: plugins/check_smtp.c:453
#, c-format
msgid ""
"\n"
"STATE_WARNING return values.\n"
msgstr ""
-#: plugins/check_snmp.c:284 plugins/check_snmp.c:516
+#: plugins/check_snmp.c:254
+msgid "No valid data returned"
+msgstr ""
+
+#: plugins/check_snmp.c:284 plugins/check_snmp.c:514
#, c-format
msgid "%s UNKNOWN: call for regex which was not a compiled option"
msgstr ""
"CMD: %s\n"
msgstr ""
-#: plugins/check_snmp.c:455
+#: plugins/check_snmp.c:453
#, c-format
msgid "Invalid critical threshold: %s\n"
msgstr ""
-#: plugins/check_snmp.c:466
+#: plugins/check_snmp.c:464
#, c-format
msgid "Invalid warning threshold: %s\n"
msgstr ""
-#: plugins/check_snmp.c:536
+#: plugins/check_snmp.c:534
#, c-format
msgid "Could not realloc() labels[%d]"
msgstr ""
-#: plugins/check_snmp.c:548
+#: plugins/check_snmp.c:546
msgid "Could not realloc() labels\n"
msgstr ""
-#: plugins/check_snmp.c:578
+#: plugins/check_snmp.c:576
msgid "Could not realloc() units\n"
msgstr ""
-#: plugins/check_snmp.c:651
+#: plugins/check_snmp.c:649
#, c-format
msgid ""
"Missing secname (%s) or authpassword (%s) ! \n"
")"
msgstr ""
-#: plugins/check_snmp.c:659
+#: plugins/check_snmp.c:657
#, c-format
msgid "Missing secname (%s), authpassword (%s), or privpasswd (%s)! \n"
msgstr ""
-#: plugins/check_snmp.c:668
+#: plugins/check_snmp.c:666
#, c-format
msgid "Invalid SNMP version: %s\n"
msgstr ""
-#: plugins/check_snmp.c:847
+#: plugins/check_snmp.c:796
+msgid "Unbalanced quotes\n"
+msgstr ""
+
+#: plugins/check_snmp.c:845
#, c-format
msgid ""
"Check status of remote machines and obtain sustem information via SNMP\n"
"\n"
msgstr ""
-#: plugins/check_snmp.c:857
+#: plugins/check_snmp.c:855
#, c-format
msgid ""
" -P, --protocol=[1|3]\n"
" SNMPv3 auth proto\n"
msgstr ""
-#: plugins/check_snmp.c:866
+#: plugins/check_snmp.c:864
#, c-format
msgid ""
" -C, --community=STRING\n"
" SNMPv3 crypt passwd (DES)\n"
msgstr ""
-#: plugins/check_snmp.c:878
+#: plugins/check_snmp.c:876
#, c-format
msgid ""
" -o, --oid=OID(s)\n"
" to be the data that should be used in the evaluation.\n"
msgstr ""
-#: plugins/check_snmp.c:888
+#: plugins/check_snmp.c:886
#, c-format
msgid ""
" -w, --warning=INTEGER_RANGE(s)\n"
" Range(s) which will not result in a CRITICAL status\n"
msgstr ""
-#: plugins/check_snmp.c:895
+#: plugins/check_snmp.c:893
#, c-format
msgid ""
" -s, --string=STRING\n"
" Prefix label for output from plugin (default -s 'SNMP')\n"
msgstr ""
-#: plugins/check_snmp.c:906
+#: plugins/check_snmp.c:904
#, c-format
msgid ""
" -u, --units=STRING\n"
" Separates output on multiple OID requests\n"
msgstr ""
-#: plugins/check_snmp.c:916
+#: plugins/check_snmp.c:914
#, c-format
msgid ""
"\n"
" http://net-snmp.sourceforge.net before you can use this plugin.\n"
msgstr ""
-#: plugins/check_snmp.c:921
+#: plugins/check_snmp.c:919
#, c-format
msgid ""
"- Multiple OIDs may be indicated by a comma- or space-delimited list (lists "
" internal spaces must be quoted) [max 8 OIDs]\n"
msgstr ""
-#: plugins/check_snmp.c:925
+#: plugins/check_snmp.c:923
#, c-format
msgid ""
"- Ranges are inclusive and are indicated with colons. When specified as\n"
" returned if the result is outside the specified range.\n"
msgstr ""
-#: plugins/check_snmp.c:931
+#: plugins/check_snmp.c:929
#, c-format
msgid ""
"- If specified in the order 'max:min' a non-OK state will be returned if "
" result is within the (inclusive) range.\n"
msgstr ""
-#: plugins/check_snmp.c:935
+#: plugins/check_snmp.c:933
#, c-format
msgid ""
"- Upper or lower bounds may be omitted to skip checking the respective "
" returned from the SNMP query is an unsigned integer.\n"
msgstr ""
-#: plugins/check_ssh.c:221
+#: plugins/check_ssh.c:152
+msgid "Port number must be a positive integer"
+msgstr ""
+
+#: plugins/check_ssh.c:217
#, c-format
msgid "Server answer: %s"
msgstr ""
-#: plugins/check_ssh.c:239
+#: plugins/check_ssh.c:235
#, c-format
msgid "SSH WARNING - %s (protocol %s) version mismatch, expected '%s'\n"
msgstr ""
-#: plugins/check_ssh.c:245
+#: plugins/check_ssh.c:241
#, c-format
msgid "SSH OK - %s (protocol %s)\n"
msgstr ""
-#: plugins/check_ssh.c:264
+#: plugins/check_ssh.c:260
#, c-format
msgid ""
"Try to connect to an SSH server at specified server and port\n"
"\n"
msgstr ""
-#: plugins/check_ssh.c:276
+#: plugins/check_ssh.c:272
#, c-format
msgid ""
" -r, --remote-version=STRING\n"
msgid "total=%llu, free=%llu\n"
msgstr ""
+#: plugins/check_swap.c:242 plugins/check_swap.c:281
+msgid "swapctl failed: "
+msgstr ""
+
#: plugins/check_swap.c:314
#, c-format
msgid " %d%% free (%llu MB out of %llu MB)"
msgstr ""
-#: plugins/check_swap.c:391
-msgid "Warning threshold must be integer or percentage!\n"
-msgstr ""
-
#: plugins/check_swap.c:408
msgid "Critical threshold must be integer or percentage!\n"
msgstr ""
-#: plugins/check_swap.c:464
+#: plugins/check_swap.c:462
msgid "Warning percentage should be more than critical percentage\n"
msgstr ""
-#: plugins/check_swap.c:468
+#: plugins/check_swap.c:466
msgid "Warning free space should be more than critical free space\n"
msgstr ""
-#: plugins/check_swap.c:482
+#: plugins/check_swap.c:480
#, c-format
msgid ""
"Check swap space on local machine.\n"
"\n"
msgstr ""
-#: plugins/check_swap.c:488
+#: plugins/check_swap.c:486
#, c-format
msgid ""
"\n"
" Verbose output. Up to 3 levels\n"
msgstr ""
-#: plugins/check_swap.c:502
+#: plugins/check_swap.c:500
#, c-format
msgid ""
"\n"
"real memory\n"
msgstr ""
-#: plugins/check_swap.c:506
+#: plugins/check_swap.c:504
#, c-format
msgid ""
"\n"
msgid "CRITICAL - Generic check_tcp called with unknown service\n"
msgstr ""
+#: plugins/check_tcp.c:262
+msgid "CRITICAL - Could not make SSL connection\n"
+msgstr ""
+
#: plugins/check_tcp.c:335
#, c-format
msgid "Unexpected response from host: %s\n"
msgid "%s %s%s - %.3f second response time on port %d"
msgstr ""
-#: plugins/check_tcp.c:504 plugins/check_time.c:248 plugins/check_time.c:272
-#: plugins/check_udp.c:175
-msgid "Warning threshold must be a positive integer"
+#: plugins/check_tcp.c:437
+msgid "No arguments found"
msgstr ""
-#: plugins/check_tcp.c:543
+#: plugins/check_tcp.c:541
msgid "Maxbytes must be a positive integer"
msgstr ""
-#: plugins/check_tcp.c:557
+#: plugins/check_tcp.c:555
msgid "Refuse must be one of ok, warn, crit"
msgstr ""
-#: plugins/check_tcp.c:567
+#: plugins/check_tcp.c:565
msgid "Mismatch must be one of ok, warn, crit"
msgstr ""
-#: plugins/check_tcp.c:573
+#: plugins/check_tcp.c:571
msgid "Delay must be a positive integer"
msgstr ""
-#: plugins/check_tcp.c:593
-msgid "You must provide a server address\n"
+#: plugins/check_tcp.c:584
+msgid "SSL support not available. Install OpenSSL and recompile."
msgstr ""
-#: plugins/check_tcp.c:613
+#: plugins/check_tcp.c:591
+msgid "You must provide a server address"
+msgstr ""
+
+#: plugins/check_tcp.c:611
#, c-format
msgid "CRITICAL - Cannot create SSL context.\n"
msgstr ""
-#: plugins/check_tcp.c:636
+#: plugins/check_tcp.c:634
#, c-format
msgid "CRITICAL - Cannot make SSL connection "
msgstr ""
-#: plugins/check_tcp.c:763
+#: plugins/check_tcp.c:711
+#, c-format
+msgid "Certificate expires in %d day(s) (%s).\n"
+msgstr ""
+
+#: plugins/check_tcp.c:715
+#, c-format
+msgid "Certificate expired on %s.\n"
+msgstr ""
+
+#: plugins/check_tcp.c:720
+#, c-format
+msgid "Certificate expires today (%s).\n"
+msgstr ""
+
+#: plugins/check_tcp.c:724
+#, c-format
+msgid "Certificate will expire on %s.\n"
+msgstr ""
+
+#: plugins/check_tcp.c:761
#, c-format
msgid ""
"This plugin tests %s connections with the specified host.\n"
"\n"
msgstr ""
-#: plugins/check_tcp.c:774
+#: plugins/check_tcp.c:772
#, c-format
msgid ""
" -s, --send=STRING\n"
" String to send server to initiate a clean close of the connection\n"
msgstr ""
-#: plugins/check_tcp.c:782
+#: plugins/check_tcp.c:780
#, c-format
msgid ""
" -r, --refuse=ok|warn|crit\n"
" Seconds to wait between sending string and polling for response\n"
msgstr ""
-#: plugins/check_tcp.c:795
+#: plugins/check_tcp.c:793
#, c-format
msgid ""
" -D, --certificate=INTEGER\n"
msgid "TIME %s - %lu second time difference|%s %s\n"
msgstr ""
-#: plugins/check_time.c:244
+#: plugins/check_time.c:242
msgid "Warning thresholds must be a positive integer"
msgstr ""
-#: plugins/check_time.c:263
+#: plugins/check_time.c:261
msgid "Critical thresholds must be a positive integer"
msgstr ""
-#: plugins/check_time.c:309 plugins/check_udp.c:209
-msgid "Hostname was not supplied"
-msgstr ""
-
-#: plugins/check_time.c:329
+#: plugins/check_time.c:327
#, c-format
msgid ""
"This plugin will check the time on the specified host.\n"
"\n"
msgstr ""
-#: plugins/check_time.c:337
+#: plugins/check_time.c:335
#, c-format
msgid ""
" -u, --udp\n"
" Response time (sec.) necessary to result in critical status\n"
msgstr ""
+#: plugins/check_udp.c:70
+#, c-format
+msgid "No response from host on port %d\n"
+msgstr ""
+
+#: plugins/check_udp.c:79
+#, c-format
+msgid "Invalid response received from host on port %d\n"
+msgstr ""
+
#: plugins/check_udp.c:95
#, c-format
msgid "Connection %s on port %d - %d second response time\n"
msgid "problem"
msgstr ""
-#: plugins/check_udp.c:227
+#: plugins/check_udp.c:225
#, c-format
msgid ""
"\tThis plugin tests an UDP connection with the specified host.\n"
"\n"
msgstr ""
-#: plugins/check_udp.c:236
+#: plugins/check_udp.c:234
#, c-format
msgid ""
" -e, --expect=STRING <optional>\n"
" String to send to the server when initiating the connection\n"
msgstr ""
-#: plugins/check_udp.c:248
+#: plugins/check_udp.c:246
#, c-format
msgid ""
"This plugin will attempt to connect to the specified port on the host.\n"
"\n"
msgstr ""
-#: plugins/check_ups.c:597
+#: plugins/check_ups.c:136
+msgid "On Battery, Low Battery"
+msgstr ""
+
+#: plugins/check_ups.c:141
+msgid "Online"
+msgstr ""
+
+#: plugins/check_ups.c:144
+msgid "On Battery"
+msgstr ""
+
+#: plugins/check_ups.c:148
+msgid ", Low Battery"
+msgstr ""
+
+#: plugins/check_ups.c:152
+msgid ", Calibrating"
+msgstr ""
+
+#: plugins/check_ups.c:155
+msgid ", Replace Battery"
+msgstr ""
+
+#: plugins/check_ups.c:159
+msgid ", On Bypass"
+msgstr ""
+
+#: plugins/check_ups.c:162
+msgid ", Overload"
+msgstr ""
+
+#: plugins/check_ups.c:165
+msgid ", Trimming"
+msgstr ""
+
+#: plugins/check_ups.c:168
+msgid ", Boosting"
+msgstr ""
+
+#: plugins/check_ups.c:171
+msgid ", Charging"
+msgstr ""
+
+#: plugins/check_ups.c:174
+msgid ", Discharging"
+msgstr ""
+
+#: plugins/check_ups.c:177
+msgid ", Unknown"
+msgstr ""
+
+#: plugins/check_ups.c:314
+msgid "UPS does not support any available options\n"
+msgstr ""
+
+#: plugins/check_ups.c:338 plugins/check_ups.c:398
+#, c-format
+msgid "Invalid response received from host\n"
+msgstr ""
+
+#: plugins/check_ups.c:406
+#, c-format
+msgid "CRITICAL - no such ups '%s' on that host\n"
+msgstr ""
+
+#: plugins/check_ups.c:416
+#, c-format
+msgid "CRITICAL - UPS data is stale\n"
+msgstr ""
+
+#: plugins/check_ups.c:421
+#, c-format
+msgid "Unknown error: %s\n"
+msgstr ""
+
+#: plugins/check_ups.c:428
+#, c-format
+msgid "Error: unable to parse variable\n"
+msgstr ""
+
+#: plugins/check_ups.c:535
+msgid "Unrecognized UPS variable"
+msgstr ""
+
+#: plugins/check_ups.c:573
+#, c-format
+msgid "Error : no ups indicated\n"
+msgstr ""
+
+#: plugins/check_ups.c:593
#, c-format
msgid ""
"This plugin tests the UPS service on the specified host.\n"
"\n"
msgstr ""
-#: plugins/check_ups.c:607
+#: plugins/check_ups.c:603
#, c-format
msgid ""
" -u, --ups=STRING\n"
" Name of UPS\n"
msgstr ""
-#: plugins/check_ups.c:611
+#: plugins/check_ups.c:607
#, c-format
msgid ""
" -T, --temperature\n"
" Output of temperatures in Celsius\n"
msgstr ""
-#: plugins/check_ups.c:621
+#: plugins/check_ups.c:617
#, c-format
msgid ""
"This plugin attempts to determine the status of a UPS (Uninterruptible "
"\n"
msgstr ""
-#: plugins/check_ups.c:628
+#: plugins/check_ups.c:624
#, c-format
msgid ""
"You may also specify a variable to check [such as temperature, utility "
"\n"
msgstr ""
-#: plugins/check_ups.c:634
+#: plugins/check_ups.c:630
#, c-format
msgid ""
"Notes:\n"
msgid "USERS %s - %d users currently logged in |%s\n"
msgstr ""
-#: plugins/check_users.c:154
-msgid "Critical threshold must be a positive integer\n"
-msgstr ""
-
-#: plugins/check_users.c:160 plugins/check_users.c:170
-#: plugins/check_users.c:177
-msgid "Warning threshold must be a positive integer\n"
-msgstr ""
-
-#: plugins/check_users.c:195
+#: plugins/check_users.c:193
#, c-format
msgid ""
"This plugin checks the number of users currently logged in on the local\n"
"specified.\n"
msgstr ""
-#: plugins/check_users.c:203
+#: plugins/check_users.c:201
#, c-format
msgid ""
" -w, --warning=INTEGER\n"
" Set CRITICAL status if more than INTEGER users are logged in\n"
msgstr ""
-#: plugins/check_ide_smart.c:227
+#: plugins/check_ide_smart.c:225
#, c-format
msgid "CRITICAL - Couldn't open device: %s\n"
msgstr ""
-#: plugins/check_ide_smart.c:232
+#: plugins/check_ide_smart.c:230
#, c-format
msgid "CRITICAL - SMART_CMD_ENABLE\n"
msgstr ""
-#: plugins/check_ide_smart.c:294
+#: plugins/check_ide_smart.c:292
#, c-format
msgid "CRITICAL - SMART_READ_VALUES: %s\n"
msgstr ""
-#: plugins/check_ide_smart.c:363
+#: plugins/check_ide_smart.c:361
#, c-format
msgid "CRITICAL - %d Harddrive PreFailure%cDetected! %d/%d tests failed.\n"
msgstr ""
-#: plugins/check_ide_smart.c:370
+#: plugins/check_ide_smart.c:368
#, c-format
msgid "WARNING - %d Harddrive Advisor%s Detected. %d/%d tests failed.\n"
msgstr ""
-#: plugins/check_ide_smart.c:377
+#: plugins/check_ide_smart.c:375
#, c-format
msgid "OK - Operational (%d/%d tests passed)\n"
msgstr ""
-#: plugins/check_ide_smart.c:380
+#: plugins/check_ide_smart.c:378
#, c-format
msgid "ERROR - Status '%d' uknown. %d/%d tests passed\n"
msgstr ""
-#: plugins/check_ide_smart.c:413
+#: plugins/check_ide_smart.c:411
#, c-format
msgid "OffLineStatus=%d {%s}, AutoOffLine=%s, OffLineTimeout=%d minutes\n"
msgstr ""
-#: plugins/check_ide_smart.c:419
+#: plugins/check_ide_smart.c:417
#, c-format
msgid "OffLineCapability=%d {%s %s %s}\n"
msgstr ""
-#: plugins/check_ide_smart.c:425
+#: plugins/check_ide_smart.c:423
#, c-format
msgid "SmartRevision=%d, CheckSum=%d, SmartCapability=%d {%s %s}\n"
msgstr ""
-#: plugins/check_ide_smart.c:464
+#: plugins/check_ide_smart.c:462
#, c-format
msgid "CRITICAL - %s: %s\n"
msgstr ""
-#: plugins/check_ide_smart.c:483
+#: plugins/check_ide_smart.c:481
#, c-format
msgid "CRITICAL - SMART_READ_THRESHOLDS: %s\n"
msgstr ""
-#: plugins/negate.c:244
+#: plugins/negate.c:242
#, c-format
msgid ""
"Negates the status of a plugin (returns OK for CRITICAL, and vice-versa).\n"
"\n"
msgstr ""
-#: plugins/negate.c:253
+#: plugins/negate.c:251
#, c-format
msgid " [keep timeout than the plugin timeout to retain CRITICAL status]\n"
msgstr ""
-#: plugins/negate.c:256
+#: plugins/negate.c:254
#, c-format
msgid ""
" negate \"/usr/local/nagios/libexec/check_ping -H host\"\n"
" Use single quotes if you need to retain spaces\n"
msgstr ""
-#: plugins/negate.c:262
+#: plugins/negate.c:260
#, c-format
msgid ""
"This plugin is a wrapper to take the output of another plugin and invert "
"Otherwise, the output state of the wrapped plugin is unchanged.\n"
msgstr ""
-#: plugins/urlize.c:108
+#: plugins/netutils.c:48
+#, c-format
+msgid "CRITICAL - Socket timeout after %d seconds\n"
+msgstr ""
+
+#: plugins/netutils.c:50
+#, c-format
+msgid "CRITICAL - Abnormal timeout after %d seconds\n"
+msgstr ""
+
+#: plugins/netutils.c:109 plugins/netutils.c:318
+#, c-format
+msgid "Send failed\n"
+msgstr ""
+
+#: plugins/netutils.c:126 plugins/netutils.c:333
+#, c-format
+msgid "No data was received from host!\n"
+msgstr ""
+
+#: plugins/netutils.c:242
+#, c-format
+msgid "Socket creation failed\n"
+msgstr ""
+
+#: plugins/netutils.c:342
+#, c-format
+msgid "Receive failed\n"
+msgstr ""
+
+#: plugins/popen.c:117
+#, c-format
+msgid "Could not malloc argv array in popen()\n"
+msgstr ""
+
+#: plugins/popen.c:127
+#, c-format
+msgid "CRITICAL - You need more args!!!\n"
+msgstr ""
+
+#: plugins/popen.c:248 plugins/utils.c:136
+#, c-format
+msgid "CRITICAL - Plugin timed out after %d seconds\n"
+msgstr ""
+
+#: plugins/popen.c:264
+msgid "sysconf error for _SC_OPEN_MAX"
+msgstr ""
+
+#: plugins/urlize.c:106
#, c-format
msgid ""
"%s UNKNOWN - No data received from host\n"
"CMD: %s</A>\n"
msgstr ""
-#: plugins/urlize.c:135
+#: plugins/urlize.c:133
#, c-format
msgid ""
"\n"
"\n"
msgstr ""
-#: plugins/urlize.c:143
+#: plugins/urlize.c:141
#, c-format
msgid ""
"\n"
"\n"
" urlize http://example.com/ \"check_http -H example.com -r 'two words'\"\n"
msgstr ""
+
+#: plugins/utils.c:433
+msgid "failed realloc in strpcpy\n"
+msgstr ""
+
+#: plugins/utils.c:475
+msgid "failed malloc in strscat\n"
+msgstr ""