summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenoit Mortier <opensides@users.sourceforge.net>2004-12-25 23:17:46 (GMT)
committerBenoit Mortier <opensides@users.sourceforge.net>2004-12-25 23:17:46 (GMT)
commite9ccc6b21a1152bbf150302c4a29a6df79d75bd7 (patch)
tree91bf1ebb6f927fd628b298df2ac5a89580282591
parent71656b2aafffb69716620bf08cce76c925dc8fa3 (diff)
downloadmonitoring-plugins-e9ccc6b21a1152bbf150302c4a29a6df79d75bd7.tar.gz
various fixes for localization
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1061 f882894a-f735-0410-b71e-b25c423dba1c
-rw-r--r--plugins/check_dig.c8
-rw-r--r--plugins/check_disk.c6
-rw-r--r--plugins/check_dns.c10
-rw-r--r--plugins/check_dummy.c1
-rw-r--r--plugins/check_fping.c10
-rw-r--r--plugins/check_game.c15
-rw-r--r--plugins/check_hpjd.c7
-rw-r--r--plugins/check_icmp.c94
-rw-r--r--plugins/check_ide_smart.c6
-rw-r--r--plugins/check_ldap.c20
-rw-r--r--plugins/check_load.c4
-rw-r--r--plugins/check_mrtg.c4
-rw-r--r--plugins/check_mrtgtraf.c6
-rw-r--r--plugins/check_mysql.c16
-rw-r--r--plugins/check_nagios.c18
-rw-r--r--plugins/check_nt.c12
-rw-r--r--plugins/check_nwstat.c6
-rw-r--r--plugins/check_overcr.c17
-rw-r--r--plugins/check_pgsql.c6
-rw-r--r--plugins/check_ping.c4
-rw-r--r--plugins/check_procs.c28
-rw-r--r--plugins/check_radius.c12
-rw-r--r--plugins/check_real.c10
-rw-r--r--plugins/check_smtp.c6
-rw-r--r--plugins/check_snmp.c8
-rw-r--r--plugins/check_ssh.c10
-rw-r--r--plugins/check_swap.c10
-rw-r--r--plugins/check_tcp.c30
-rw-r--r--plugins/check_time.c4
-rw-r--r--plugins/check_udp.c10
-rw-r--r--plugins/check_ups.c59
-rw-r--r--plugins/check_users.c13
-rw-r--r--plugins/negate.c4
-rw-r--r--plugins/netutils.c16
-rw-r--r--plugins/popen.c12
-rw-r--r--plugins/popen.h6
-rw-r--r--plugins/urlize.c4
-rw-r--r--plugins/utils.c8
-rw-r--r--po/de.po1284
-rw-r--r--po/fr.po1314
-rw-r--r--po/nagios-plugins.pot1200
41 files changed, 2768 insertions, 1550 deletions
diff --git a/plugins/check_dig.c b/plugins/check_dig.c
index a44d578..c607896 100644
--- a/plugins/check_dig.c
+++ b/plugins/check_dig.c
@@ -81,9 +81,9 @@ main (int argc, char **argv)
81 if (verbose) { 81 if (verbose) {
82 printf ("%s\n", command_line); 82 printf ("%s\n", command_line);
83 if(expected_address != NULL) { 83 if(expected_address != NULL) {
84 printf ("Looking for: '%s'\n", expected_address); 84 printf (_("Looking for: '%s'\n"), expected_address);
85 } else { 85 } else {
86 printf ("Looking for: '%s'\n", query_address); 86 printf (_("Looking for: '%s'\n"), query_address);
87 } 87 }
88 } 88 }
89 89
@@ -214,9 +214,7 @@ process_arguments (int argc, char **argv)
214 214
215 switch (c) { 215 switch (c) {
216 case '?': /* help */ 216 case '?': /* help */
217 printf (_("%s: Unknown argument: %s\n\n"), progname, optarg); 217 usage2 (_("Unknown argument"), optarg);
218 print_usage ();
219 exit (STATE_UNKNOWN);
220 case 'h': /* help */ 218 case 'h': /* help */
221 print_help (); 219 print_help ();
222 exit (STATE_OK); 220 exit (STATE_OK);
diff --git a/plugins/check_disk.c b/plugins/check_disk.c
index 669a1cd..ab9f66f 100644
--- a/plugins/check_disk.c
+++ b/plugins/check_disk.c
@@ -438,9 +438,7 @@ process_arguments (int argc, char **argv)
438 print_help (); 438 print_help ();
439 exit (STATE_OK); 439 exit (STATE_OK);
440 case '?': /* help */ 440 case '?': /* help */
441 printf (_("%s: Unknown argument: %s\n\n"), progname, optarg); 441 usage2 (_("Unknown argument"), optarg);
442 print_usage ();
443 exit (STATE_UNKNOWN);
444 } 442 }
445 } 443 }
446 444
@@ -488,7 +486,7 @@ print_path (const char *mypath)
488 if (mypath == NULL) 486 if (mypath == NULL)
489 printf ("\n"); 487 printf ("\n");
490 else 488 else
491 printf (" for %s\n", mypath); 489 printf (_(" for %s\n"), mypath);
492 490
493 return; 491 return;
494} 492}
diff --git a/plugins/check_dns.c b/plugins/check_dns.c
index 20cb6dd..e6483b9 100644
--- a/plugins/check_dns.c
+++ b/plugins/check_dns.c
@@ -135,7 +135,7 @@ main (int argc, char **argv)
135 asprintf(&address, "%s,%s", address, temp_buffer); 135 asprintf(&address, "%s,%s", address, temp_buffer);
136 } 136 }
137 137
138 else if (strstr (input_buffer, "Non-authoritative answer:")) { 138 else if (strstr (input_buffer, _("Non-authoritative answer:"))) {
139 non_authoritative = TRUE; 139 non_authoritative = TRUE;
140 } 140 }
141 141
@@ -277,7 +277,6 @@ error_scan (char *input_buffer)
277} 277}
278 278
279 279
280
281/* process command-line arguments */ 280/* process command-line arguments */
282int 281int
283process_arguments (int argc, char **argv) 282process_arguments (int argc, char **argv)
@@ -313,9 +312,7 @@ process_arguments (int argc, char **argv)
313 312
314 switch (c) { 313 switch (c) {
315 case '?': /* args not parsable */ 314 case '?': /* args not parsable */
316 printf (_("%s: Unknown argument: %s\n\n"), progname, optarg); 315 usage2 (_("Unknown argument"), optarg);
317 print_usage ();
318 exit (STATE_UNKNOWN);
319 case 'h': /* help */ 316 case 'h': /* help */
320 print_help (); 317 print_help ();
321 exit (STATE_OK); 318 exit (STATE_OK);
@@ -386,7 +383,6 @@ process_arguments (int argc, char **argv)
386} 383}
387 384
388 385
389
390int 386int
391validate_arguments () 387validate_arguments ()
392{ 388{
@@ -397,7 +393,6 @@ validate_arguments ()
397} 393}
398 394
399 395
400
401void 396void
402print_help (void) 397print_help (void)
403{ 398{
@@ -432,7 +427,6 @@ specified in /etc/resolv.conf will be used.\n\n"));
432} 427}
433 428
434 429
435
436void 430void
437print_usage (void) 431print_usage (void)
438{ 432{
diff --git a/plugins/check_dummy.c b/plugins/check_dummy.c
index 2dbbaec..0892611 100644
--- a/plugins/check_dummy.c
+++ b/plugins/check_dummy.c
@@ -30,7 +30,6 @@ void print_help (void);
30void print_usage (void); 30void print_usage (void);
31 31
32 32
33
34int 33int
35main (int argc, char **argv) 34main (int argc, char **argv)
36{ 35{
diff --git a/plugins/check_fping.c b/plugins/check_fping.c
index 7f05d4d..5ffcd16 100644
--- a/plugins/check_fping.c
+++ b/plugins/check_fping.c
@@ -242,9 +242,7 @@ process_arguments (int argc, char **argv)
242 242
243 switch (c) { 243 switch (c) {
244 case '?': /* print short usage statement if args not parsable */ 244 case '?': /* print short usage statement if args not parsable */
245 printf (_("%s: Unknown argument: %s\n\n"), progname, optarg); 245 usage2 (_("Unknown argument"), optarg);
246 print_usage ();
247 exit (STATE_UNKNOWN);
248 case 'h': /* help */ 246 case 'h': /* help */
249 print_help (); 247 print_help ();
250 exit (STATE_OK); 248 exit (STATE_OK);
@@ -301,15 +299,13 @@ process_arguments (int argc, char **argv)
301 } 299 }
302 } 300 }
303 301
304
305 if (server_name == NULL) 302 if (server_name == NULL)
306 usage (_("Hostname was not supplied\n\n")); 303 usage4 (_("Hostname was not supplied"));
307 304
308 return OK; 305 return OK;
309} 306}
310 307
311 308
312
313int 309int
314get_threshold (char *arg, char *rv[2]) 310get_threshold (char *arg, char *rv[2])
315{ 311{
@@ -351,7 +347,6 @@ get_threshold (char *arg, char *rv[2])
351} 347}
352 348
353 349
354
355void 350void
356print_help (void) 351print_help (void)
357{ 352{
@@ -395,7 +390,6 @@ percentage of packet loss to trigger an alarm state.\n"));
395} 390}
396 391
397 392
398
399void 393void
400print_usage (void) 394print_usage (void)
401{ 395{
diff --git a/plugins/check_game.c b/plugins/check_game.c
index 6699c71..05b363a 100644
--- a/plugins/check_game.c
+++ b/plugins/check_game.c
@@ -123,15 +123,15 @@ main (int argc, char **argv)
123 } 123 }
124 124
125 if (strstr (ret[2], QSTAT_HOST_ERROR)) { 125 if (strstr (ret[2], QSTAT_HOST_ERROR)) {
126 printf ("CRITICAL - Host not found\n"); 126 printf (_("CRITICAL - Host not found\n"));
127 result = STATE_CRITICAL; 127 result = STATE_CRITICAL;
128 } 128 }
129 else if (strstr (ret[2], QSTAT_HOST_DOWN)) { 129 else if (strstr (ret[2], QSTAT_HOST_DOWN)) {
130 printf ("CRITICAL - Game server down or unavailable\n"); 130 printf (_("CRITICAL - Game server down or unavailable\n"));
131 result = STATE_CRITICAL; 131 result = STATE_CRITICAL;
132 } 132 }
133 else if (strstr (ret[2], QSTAT_HOST_TIMEOUT)) { 133 else if (strstr (ret[2], QSTAT_HOST_TIMEOUT)) {
134 printf ("CRITICAL - Game server timeout\n"); 134 printf (_("CRITICAL - Game server timeout\n"));
135 result = STATE_CRITICAL; 135 result = STATE_CRITICAL;
136 } 136 }
137 else { 137 else {
@@ -156,7 +156,6 @@ main (int argc, char **argv)
156} 156}
157 157
158 158
159
160int 159int
161process_arguments (int argc, char **argv) 160process_arguments (int argc, char **argv)
162{ 161{
@@ -199,9 +198,7 @@ process_arguments (int argc, char **argv)
199 198
200 switch (c) { 199 switch (c) {
201 case '?': /* args not parsable */ 200 case '?': /* args not parsable */
202 printf (_("%s: Unknown argument: %s\n\n"), progname, optarg); 201 usage2 (_("Unknown argument"), optarg);
203 print_usage ();
204 exit (STATE_UNKNOWN);
205 case 'h': /* help */ 202 case 'h': /* help */
206 print_help (); 203 print_help ();
207 exit (STATE_OK); 204 exit (STATE_OK);
@@ -269,6 +266,7 @@ process_arguments (int argc, char **argv)
269 return validate_arguments (); 266 return validate_arguments ();
270} 267}
271 268
269
272int 270int
273validate_arguments (void) 271validate_arguments (void)
274{ 272{
@@ -291,9 +289,6 @@ validate_arguments (void)
291} 289}
292 290
293 291
294
295
296
297void 292void
298print_help (void) 293print_help (void)
299{ 294{
diff --git a/plugins/check_hpjd.c b/plugins/check_hpjd.c
index 5376956..dd49893 100644
--- a/plugins/check_hpjd.c
+++ b/plugins/check_hpjd.c
@@ -286,7 +286,6 @@ main (int argc, char **argv)
286} 286}
287 287
288 288
289
290/* process command-line arguments */ 289/* process command-line arguments */
291int 290int
292process_arguments (int argc, char **argv) 291process_arguments (int argc, char **argv)
@@ -334,9 +333,7 @@ process_arguments (int argc, char **argv)
334 print_help (); 333 print_help ();
335 exit (STATE_OK); 334 exit (STATE_OK);
336 case '?': /* help */ 335 case '?': /* help */
337 printf (_("%s: Unknown argument: %s\n\n"), progname, optarg); 336 usage2 (_("Unknown argument"), optarg);
338 print_usage ();
339 exit (STATE_UNKNOWN);
340 } 337 }
341 } 338 }
342 339
@@ -361,7 +358,6 @@ process_arguments (int argc, char **argv)
361} 358}
362 359
363 360
364
365int 361int
366validate_arguments (void) 362validate_arguments (void)
367{ 363{
@@ -369,7 +365,6 @@ validate_arguments (void)
369} 365}
370 366
371 367
372
373void 368void
374print_help (void) 369print_help (void)
375{ 370{
diff --git a/plugins/check_icmp.c b/plugins/check_icmp.c
index cbd6864..4571682 100644
--- a/plugins/check_icmp.c
+++ b/plugins/check_icmp.c
@@ -310,19 +310,19 @@ int main(int argc, char **argv)
310 310
311 /* check if we are root */ 311 /* check if we are root */
312 if(geteuid()) { 312 if(geteuid()) {
313 printf("Root access needed (for raw sockets)\n"); 313 printf(_("Root access needed (for raw sockets)\n"));
314 exit(STATE_UNKNOWN); 314 exit(STATE_UNKNOWN);
315 } 315 }
316 316
317 /* confirm that ICMP is available on this machine */ 317 /* confirm that ICMP is available on this machine */
318 if((proto = getprotobyname("icmp")) == NULL) 318 if((proto = getprotobyname("icmp")) == NULL)
319 crash("icmp: unknown protocol"); 319 crash(_("icmp: unknown protocol"));
320 320
321 /* create raw socket for ICMP calls (ping) */ 321 /* create raw socket for ICMP calls (ping) */
322 sock = socket(AF_INET, SOCK_RAW, proto->p_proto); 322 sock = socket(AF_INET, SOCK_RAW, proto->p_proto);
323 323
324 if(sock < 0) 324 if(sock < 0)
325 crash("can't create raw socket"); 325 crash(_("Can't create raw socket"));
326 326
327 /* drop privileges now that we have the socket */ 327 /* drop privileges now that we have the socket */
328 if((uid = getuid())) { 328 if((uid = getuid())) {
@@ -334,7 +334,7 @@ int main(int argc, char **argv)
334 ident = getpid() & 0xFFFF; 334 ident = getpid() & 0xFFFF;
335 335
336 if(!(host_base_ptr = malloc(sizeof(struct host_name_list)))) { 336 if(!(host_base_ptr = malloc(sizeof(struct host_name_list)))) {
337 crash("Unable to allocate memory for host name list\n"); 337 crash(_("Unable to allocate memory for host name list\n"));
338 } 338 }
339 host_ptr = host_base_ptr; 339 host_ptr = host_base_ptr;
340 340
@@ -359,12 +359,12 @@ int main(int argc, char **argv)
359 switch (c) { 359 switch (c) {
360 case 'H': 360 case 'H':
361 if(!(host_ptr->entry = malloc(strlen(optarg) + 1))) { 361 if(!(host_ptr->entry = malloc(strlen(optarg) + 1))) {
362 crash("Failed to allocate memory for hostname"); 362 crash(_("Failed to allocate memory for hostname"));
363 } 363 }
364 memset(host_ptr->entry, 0, strlen(optarg) + 1); 364 memset(host_ptr->entry, 0, strlen(optarg) + 1);
365 host_ptr->entry = memcpy(host_ptr->entry, optarg, strlen(optarg)); 365 host_ptr->entry = memcpy(host_ptr->entry, optarg, strlen(optarg));
366 if(!(host_ptr->next = malloc(sizeof(struct host_name_list)))) 366 if(!(host_ptr->next = malloc(sizeof(struct host_name_list))))
367 crash("Failed to allocate memory for hostname"); 367 crash(_("Failed to allocate memory for hostname"));
368 host_ptr = host_ptr->next; 368 host_ptr = host_ptr->next;
369 host_ptr->next = NULL; 369 host_ptr->next = NULL;
370// add_name(optarg); 370// add_name(optarg);
@@ -375,35 +375,35 @@ int main(int argc, char **argv)
375 break; 375 break;
376 case 'w': 376 case 'w':
377 if(get_threshold(optarg, &warn)) { 377 if(get_threshold(optarg, &warn)) {
378 printf("Illegal threshold pair specified for -%c", c); 378 printf(_("Illegal threshold pair specified for -%c"), c);
379 print_usage(); 379 print_usage();
380 } 380 }
381 break; 381 break;
382 382
383 case 'c': 383 case 'c':
384 if(get_threshold(optarg, &crit)) { 384 if(get_threshold(optarg, &crit)) {
385 printf("Illegal threshold pair specified for -%c", c); 385 printf(_("Illegal threshold pair specified for -%c"), c);
386 print_usage(); 386 print_usage();
387 } 387 }
388 break; 388 break;
389 389
390 case 't': 390 case 't':
391 if(!(timeout = (u_int) strtoul(optarg, NULL, 0) * 100)) { 391 if(!(timeout = (u_int) strtoul(optarg, NULL, 0) * 100)) {
392 printf("option -%c requires integer argument\n", c); 392 printf(_("Option -%c requires integer argument\n"), c);
393 print_usage(); 393 print_usage();
394 } 394 }
395 break; 395 break;
396 396
397 case 'r': 397 case 'r':
398 if(!(retry = (u_int) strtoul(optarg, NULL, 0))) { 398 if(!(retry = (u_int) strtoul(optarg, NULL, 0))) {
399 printf("option -%c requires integer argument\n", c); 399 printf(_("Option -%c requires integer argument\n"), c);
400 print_usage(); 400 print_usage();
401 } 401 }
402 break; 402 break;
403 403
404 case 'i': 404 case 'i':
405 if(!(interval = (u_int) strtoul(optarg, NULL, 0) * 100)) { 405 if(!(interval = (u_int) strtoul(optarg, NULL, 0) * 100)) {
406 printf("option -%c requires positive non-zero integer argument\n", c); 406 printf(_("Option -%c requires positive non-zero integer argument\n"), c);
407 print_usage(); 407 print_usage();
408 } 408 }
409 break; 409 break;
@@ -411,14 +411,14 @@ int main(int argc, char **argv)
411 case 'p': 411 case 'p':
412 case 'n': 412 case 'n':
413 if(!(count = (u_int) strtoul(optarg, NULL, 0))) { 413 if(!(count = (u_int) strtoul(optarg, NULL, 0))) {
414 printf("option -%c requires positive non-zero integer argument\n", c); 414 printf(_("Option -%c requires positive non-zero integer argument\n"), c);
415 print_usage(); 415 print_usage();
416 } 416 }
417 break; 417 break;
418 418
419 case 'b': 419 case 'b':
420 if(!(ping_data_size = (u_int) strtoul(optarg, NULL, 0))) { 420 if(!(ping_data_size = (u_int) strtoul(optarg, NULL, 0))) {
421 printf("option -%c requires integer argument\n", c); 421 printf(_("Option -%c requires integer argument\n"), c);
422 print_usage(); 422 print_usage();
423 } 423 }
424 break; 424 break;
@@ -467,7 +467,7 @@ int main(int argc, char **argv)
467 break; 467 break;
468 468
469 default: 469 default:
470 printf("option flag -%c specified, but not recognized\n", c); 470 printf(_("Option flag -%c specified, but not recognized\n"), c);
471 print_usage(); 471 print_usage();
472 break; 472 break;
473 } 473 }
@@ -494,30 +494,30 @@ int main(int argc, char **argv)
494 else if(timeout < warn.rta) timeout = warn.rta; 494 else if(timeout < warn.rta) timeout = warn.rta;
495 495
496 if((interval < MIN_INTERVAL * 100 || retry > MAX_RETRY) && getuid()) { 496 if((interval < MIN_INTERVAL * 100 || retry > MAX_RETRY) && getuid()) {
497 printf("%s: these options are too risky for mere mortals.\n", prog); 497 printf(_("%s: these options are too risky for mere mortals.\n"), prog);
498 printf("%s: You need i >= %u and r < %u\n", 498 printf(_("%s: You need i >= %u and r < %u\n"),
499 prog, MIN_INTERVAL, MAX_RETRY); 499 prog, MIN_INTERVAL, MAX_RETRY);
500 printf("Current settings; i = %d, r = %d\n", 500 printf(_("Current settings; i = %d, r = %d\n"),
501 interval / 100, retry); 501 interval / 100, retry);
502 print_usage(); 502 print_usage();
503 } 503 }
504 504
505 if((ping_data_size > MAX_PING_DATA) || (ping_data_size < MIN_PING_DATA)) { 505 if((ping_data_size > MAX_PING_DATA) || (ping_data_size < MIN_PING_DATA)) {
506 printf("%s: data size %u not valid, must be between %u and %u\n", 506 printf(_("%s: data size %u not valid, must be between %u and %u\n"),
507 prog, ping_data_size, MIN_PING_DATA, MAX_PING_DATA); 507 prog, ping_data_size, MIN_PING_DATA, MAX_PING_DATA);
508 print_usage(); 508 print_usage();
509 509
510 } 510 }
511 511
512 if((backoff > MAX_BACKOFF_FACTOR) || (backoff < MIN_BACKOFF_FACTOR)) { 512 if((backoff > MAX_BACKOFF_FACTOR) || (backoff < MIN_BACKOFF_FACTOR)) {
513 printf("%s: backoff factor %.1f not valid, must be between %.1f and %.1f\n", 513 printf(_("%s: backoff factor %.1f not valid, must be between %.1f and %.1f\n"),
514 prog, backoff, MIN_BACKOFF_FACTOR, MAX_BACKOFF_FACTOR); 514 prog, backoff, MIN_BACKOFF_FACTOR, MAX_BACKOFF_FACTOR);
515 print_usage(); 515 print_usage();
516 516
517 } 517 }
518 518
519 if(count > MAX_COUNT) { 519 if(count > MAX_COUNT) {
520 printf("%s: count %u not valid, must be less than %u\n", 520 printf(_("%s: count %u not valid, must be less than %u\n"),
521 prog, count, MAX_COUNT); 521 prog, count, MAX_COUNT);
522 print_usage(); 522 print_usage();
523 } 523 }
@@ -536,19 +536,19 @@ int main(int argc, char **argv)
536 536
537 /* generate requires command line parameters beyond the switches */ 537 /* generate requires command line parameters beyond the switches */
538 if(generate_flag && !*argv) { 538 if(generate_flag && !*argv) {
539 printf("generate flag requires command line parameters beyond switches\n"); 539 printf(_("Generate flag requires command line parameters beyond switches\n"));
540 print_usage(); 540 print_usage();
541 } 541 }
542 542
543 if(*argv && !generate_flag) { 543 if(*argv && !generate_flag) {
544 while(*argv) { 544 while(*argv) {
545 if(!(host_ptr->entry = malloc(strlen(*argv) + 1))) { 545 if(!(host_ptr->entry = malloc(strlen(*argv) + 1))) {
546 crash("Failed to allocate memory for hostname"); 546 crash(_("Failed to allocate memory for hostname"));
547 } 547 }
548 memset(host_ptr->entry, 0, strlen(*argv) + 1); 548 memset(host_ptr->entry, 0, strlen(*argv) + 1);
549 host_ptr->entry = memcpy(host_ptr->entry, *argv, strlen(*argv)); 549 host_ptr->entry = memcpy(host_ptr->entry, *argv, strlen(*argv));
550 if(!(host_ptr->next = malloc(sizeof(struct host_name_list)))) 550 if(!(host_ptr->next = malloc(sizeof(struct host_name_list))))
551 crash("Failed to allocate memory for hostname"); 551 crash(_("Failed to allocate memory for hostname"));
552 host_ptr = host_ptr->next; 552 host_ptr = host_ptr->next;
553 host_ptr->next = NULL; 553 host_ptr->next = NULL;
554 554
@@ -565,13 +565,13 @@ int main(int argc, char **argv)
565 } 565 }
566 566
567 if(!num_hosts) { 567 if(!num_hosts) {
568 printf("No hosts to work with!\n\n"); 568 printf(_("No hosts to work with!\n\n"));
569 print_usage(); 569 print_usage();
570 } 570 }
571 571
572 /* allocate array to hold outstanding ping requests */ 572 /* allocate array to hold outstanding ping requests */
573 table = (HOST_ENTRY **) malloc(sizeof(HOST_ENTRY *) * num_hosts); 573 table = (HOST_ENTRY **) malloc(sizeof(HOST_ENTRY *) * num_hosts);
574 if(!table) crash("Can't malloc array of hosts"); 574 if(!table) crash(_("Can't malloc array of hosts"));
575 575
576 cursor = rrlist; 576 cursor = rrlist;
577 577
@@ -703,7 +703,7 @@ void finish()
703 warn.pl, crit.pl); 703 warn.pl, crit.pl);
704 } 704 }
705 else { 705 else {
706 printf("%s is down (lost 100%%)", h->host); 706 printf(_("%s is down (lost 100%%)"), h->host);
707 } 707 }
708 } 708 }
709 else { 709 else {
@@ -754,7 +754,7 @@ void finish()
754 } 754 }
755 755
756 if(num_noaddress) { 756 if(num_noaddress) {
757 printf("No hostaddress specified.\n"); 757 printf(_("No hostaddress specified.\n"));
758 print_usage(); 758 print_usage();
759 } 759 }
760 else if(num_alive != num_hosts) { 760 else if(num_alive != num_hosts) {
@@ -765,10 +765,10 @@ void finish()
765 765
766 if(num_hosts > 1) { 766 if(num_hosts > 1) {
767 if(num_alive == num_hosts) { 767 if(num_alive == num_hosts) {
768 printf("OK - All %d hosts are alive\n", num_hosts); 768 printf(_("OK - All %d hosts are alive\n"), num_hosts);
769 } 769 }
770 else { 770 else {
771 printf("CRITICAL - %d of %d hosts are alive\n", num_alive, num_hosts); 771 printf(_("CRITICAL - %d of %d hosts are alive\n"), num_alive, num_hosts);
772 } 772 }
773 } 773 }
774 exit(fin_stat); 774 exit(fin_stat);
@@ -784,7 +784,7 @@ void send_ping(int lsock, HOST_ENTRY *h)
784 784
785 buffer = (char *)malloc((size_t) ping_pkt_size); 785 buffer = (char *)malloc((size_t) ping_pkt_size);
786 if(!buffer) 786 if(!buffer)
787 crash("can't malloc ping packet"); 787 crash(_("Can't malloc ping packet"));
788 788
789 memset(buffer, 0, ping_pkt_size * sizeof(char)); 789 memset(buffer, 0, ping_pkt_size * sizeof(char));
790 icp = (struct icmp *)buffer; 790 icp = (struct icmp *)buffer;
@@ -808,7 +808,7 @@ void send_ping(int lsock, HOST_ENTRY *h)
808 808
809 if(n < 0 || (unsigned int)n != ping_pkt_size) { 809 if(n < 0 || (unsigned int)n != ping_pkt_size) {
810 if(unreachable_flag) { 810 if(unreachable_flag) {
811 printf("%s error while sending ping: %s\n", 811 printf(_("%s error while sending ping: %s\n"),
812 h->host, strerror(errno)); 812 h->host, strerror(errno));
813 } /* IF */ 813 } /* IF */
814 814
@@ -860,7 +860,7 @@ int wait_for_reply(int lsock)
860#endif /* defined(__alpha__) && __STDC__ */ 860#endif /* defined(__alpha__) && __STDC__ */
861 861
862 if(result < hlen + ICMP_MINLEN) { 862 if(result < hlen + ICMP_MINLEN) {
863 printf("received packet too short for ICMP (%d bytes from %s)\n", result, 863 printf(_("Received packet too short for ICMP (%d bytes from %s)\n"), result,
864 inet_ntoa(response_addr.sin_addr)); 864 inet_ntoa(response_addr.sin_addr));
865 865
866 return (1); /* too short */ 866 return (1); /* too short */
@@ -903,7 +903,7 @@ int wait_for_reply(int lsock)
903 /* note reply time in array, probably */ 903 /* note reply time in array, probably */
904 if((this_count >= 0) && ((unsigned int)this_count < trials)) { 904 if((this_count >= 0) && ((unsigned int)this_count < trials)) {
905 if(h->resp_times[this_count] != RESP_WAITING) { 905 if(h->resp_times[this_count] != RESP_WAITING) {
906 printf("%s : duplicate for [%d], %d bytes, %s ms", 906 printf(_("%s : duplicate for [%d], %d bytes, %s ms"),
907 h->host, this_count, result, sprint_tm(this_reply)); 907 h->host, this_count, result, sprint_tm(this_reply));
908 908
909 if(response_addr.sin_addr.s_addr != h->saddr.sin_addr.s_addr) 909 if(response_addr.sin_addr.s_addr != h->saddr.sin_addr.s_addr)
@@ -913,7 +913,7 @@ int wait_for_reply(int lsock)
913 } /* IF */ 913 } /* IF */
914 else { 914 else {
915 /* count is out of bounds?? */ 915 /* count is out of bounds?? */
916 printf("%s : duplicate for [%d], %d bytes, %s ms\n", 916 printf(_("%s : duplicate for [%d], %d bytes, %s ms\n"),
917 h->host, this_count, result, sprint_tm(this_reply)); 917 h->host, this_count, result, sprint_tm(this_reply));
918 } /* ELSE */ 918 } /* ELSE */
919 919
@@ -942,12 +942,12 @@ int handle_random_icmp(struct icmp *p, struct sockaddr_in *addr)
942 h = table[sent_icmp->icmp_seq]; 942 h = table[sent_icmp->icmp_seq];
943 943
944 if(p->icmp_code > ICMP_UNREACH_MAXTYPE) { 944 if(p->icmp_code > ICMP_UNREACH_MAXTYPE) {
945 printf("ICMP Unreachable (Invalid Code) from %s for ICMP Echo sent to %s", 945 printf(_("ICMP Unreachable (Invalid Code) from %s for ICMP Echo sent to %s"),
946 inet_ntoa(addr->sin_addr), h->host); 946 inet_ntoa(addr->sin_addr), h->host);
947 947
948 } /* IF */ 948 } /* IF */
949 else { 949 else {
950 printf("ICMP Unreachable from %s for ICMP Echo sent to %s", 950 printf(_("ICMP Unreachable from %s for ICMP Echo sent to %s"),
951 inet_ntoa(addr->sin_addr), h->host); 951 inet_ntoa(addr->sin_addr), h->host);
952 952
953 } /* ELSE */ 953 } /* ELSE */
@@ -971,7 +971,7 @@ int handle_random_icmp(struct icmp *p, struct sockaddr_in *addr)
971 (sent_icmp->icmp_seq < (n_short) num_hosts)) { 971 (sent_icmp->icmp_seq < (n_short) num_hosts)) {
972 /* this is a response to a ping we sent */ 972 /* this is a response to a ping we sent */
973 h = table[sent_icmp->icmp_seq]; 973 h = table[sent_icmp->icmp_seq];
974 printf("ICMP Unreachable from %s for ICMP Echo sent to %s", 974 printf(_("ICMP Unreachable from %s for ICMP Echo sent to %s"),
975 inet_ntoa(addr->sin_addr), h->host); 975 inet_ntoa(addr->sin_addr), h->host);
976 976
977 if(inet_addr(h->host) == INADDR_NONE) 977 if(inet_addr(h->host) == INADDR_NONE)
@@ -1056,7 +1056,7 @@ void add_name(char *name)
1056 } /* IF */ 1056 } /* IF */
1057 1057
1058 if(host_ent == NULL) { 1058 if(host_ent == NULL) {
1059 printf("%s address not found\n", name); 1059 printf(_("%s address not found\n"), name);
1060 num_noaddress++; 1060 num_noaddress++;
1061 return; 1061 return;
1062 } /* IF */ 1062 } /* IF */
@@ -1064,7 +1064,7 @@ void add_name(char *name)
1064 1064
1065 host_add = (struct in_addr *)*(host_ent->h_addr_list); 1065 host_add = (struct in_addr *)*(host_ent->h_addr_list);
1066 if(host_add == NULL) { 1066 if(host_add == NULL) {
1067 printf("%s has no address data\n", name); 1067 printf(_("%s has no address data\n"), name);
1068 num_noaddress++; 1068 num_noaddress++;
1069 return; 1069 return;
1070 } /* IF */ 1070 } /* IF */
@@ -1097,7 +1097,7 @@ char *na_cat(char *name, struct in_addr ipaddr)
1097 nm = (char *)malloc(strlen(name) + strlen(as) + 4); 1097 nm = (char *)malloc(strlen(name) + strlen(as) + 4);
1098 1098
1099 if(!nm) 1099 if(!nm)
1100 crash("can't allocate some space for a string"); 1100 crash(_("Can't allocate some space for a string"));
1101 1101
1102 strcpy(nm, name); 1102 strcpy(nm, name);
1103 strcat(nm, " ("); 1103 strcat(nm, " (");
@@ -1116,7 +1116,7 @@ void add_addr(char *name, char *host, struct in_addr ipaddr)
1116 int *i; 1116 int *i;
1117 1117
1118 if(!(p = (HOST_ENTRY *) malloc(sizeof(HOST_ENTRY)))) { 1118 if(!(p = (HOST_ENTRY *) malloc(sizeof(HOST_ENTRY)))) {
1119 crash("can't allocate HOST_ENTRY"); 1119 crash(_("Can't allocate HOST_ENTRY"));
1120 } 1120 }
1121 1121
1122 memset((char *)p, 0, sizeof(HOST_ENTRY)); 1122 memset((char *)p, 0, sizeof(HOST_ENTRY));
@@ -1129,7 +1129,7 @@ void add_addr(char *name, char *host, struct in_addr ipaddr)
1129 1129
1130 /* array for response time results */ 1130 /* array for response time results */
1131 if(!(i = (int *)malloc(trials * sizeof(int)))) { 1131 if(!(i = (int *)malloc(trials * sizeof(int)))) {
1132 crash("can't allocate resp_times array"); 1132 crash(_("Can't allocate resp_times array"));
1133 } 1133 }
1134 1134
1135 for(n = 1; n < trials; n++) 1135 for(n = 1; n < trials; n++)
@@ -1193,7 +1193,7 @@ char *cpystr(char *string)
1193 1193
1194 if(string) { 1194 if(string) {
1195 dst = (char *)malloc(1 + strlen(string)); 1195 dst = (char *)malloc(1 + strlen(string));
1196 if(!dst) crash("malloc() failed!"); 1196 if(!dst) crash(_("malloc() failed!"));
1197 1197
1198 strcpy(dst, string); 1198 strcpy(dst, string);
1199 return dst; 1199 return dst;
@@ -1210,7 +1210,7 @@ void crash(char *msg)
1210 if(errno) 1210 if(errno)
1211 printf("%s: %s : %s\n", prog, msg, strerror(errno)); 1211 printf("%s: %s : %s\n", prog, msg, strerror(errno));
1212 if(h_errno) 1212 if(h_errno)
1213 printf("%s: %s : A network error occurred\n", prog, msg); 1213 printf(_("%s: %s : A network error occurred\n"), prog, msg);
1214 } 1214 }
1215 else printf("%s: %s\n", prog, msg); 1215 else printf("%s: %s\n", prog, msg);
1216 1216
@@ -1276,7 +1276,7 @@ void u_sleep(int u_sec)
1276 FD_ZERO(&readset); 1276 FD_ZERO(&readset);
1277 nfound = select(0, &readset, &writeset, NULL, &to); 1277 nfound = select(0, &readset, &writeset, NULL, &to);
1278 if(nfound < 0) 1278 if(nfound < 0)
1279 crash("select() in u_sleep:"); 1279 crash(_("select() in u_sleep:"));
1280 1280
1281 return; 1281 return;
1282} /* u_sleep() */ 1282} /* u_sleep() */
@@ -1306,14 +1306,14 @@ int recvfrom_wto(int lsock, char *buf, int len, struct sockaddr *saddr, int timo
1306 FD_ZERO(&writeset); 1306 FD_ZERO(&writeset);
1307 FD_SET(lsock, &readset); 1307 FD_SET(lsock, &readset);
1308 nfound = select(lsock + 1, &readset, &writeset, NULL, &to); 1308 nfound = select(lsock + 1, &readset, &writeset, NULL, &to);
1309 if(nfound < 0) crash("select() in recvfrom_wto"); 1309 if(nfound < 0) crash(_("select() in recvfrom_wto"));
1310 1310
1311 if(nfound == 0) return -1; /* timeout */ 1311 if(nfound == 0) return -1; /* timeout */
1312 1312
1313 if(nfound) { 1313 if(nfound) {
1314 slen = sizeof(struct sockaddr); 1314 slen = sizeof(struct sockaddr);
1315 n = recvfrom(sock, buf, len, 0, saddr, &slen); 1315 n = recvfrom(sock, buf, len, 0, saddr, &slen);
1316 if(n < 0) crash("recvfrom"); 1316 if(n < 0) crash(_("recvfrom"));
1317 return(n); 1317 return(n);
1318 } 1318 }
1319 1319
diff --git a/plugins/check_ide_smart.c b/plugins/check_ide_smart.c
index 644dc48..16cd1a8 100644
--- a/plugins/check_ide_smart.c
+++ b/plugins/check_ide_smart.c
@@ -206,9 +206,7 @@ main (int argc, char *argv[])
206 print_revision (progname, revision); 206 print_revision (progname, revision);
207 return STATE_OK; 207 return STATE_OK;
208 default: 208 default:
209 printf (_("%s: Unknown argument: %s\n\n"), progname, optarg); 209 usage2 (_("Unknown argument"), optarg);
210 print_usage ();
211 exit (STATE_UNKNOWN);
212 } 210 }
213 211
214 if (optind < argc) { 212 if (optind < argc) {
@@ -488,7 +486,6 @@ smart_read_thresholds (int fd, thresholds_t * thresholds)
488} 486}
489 487
490 488
491
492void 489void
493print_help () 490print_help ()
494{ 491{
@@ -515,7 +512,6 @@ Usage: %s [DEVICE] [OPTION]\n\
515} 512}
516 513
517 514
518
519void 515void
520print_usage (void) 516print_usage (void)
521{ 517{
diff --git a/plugins/check_ldap.c b/plugins/check_ldap.c
index 582c956..4f14328 100644
--- a/plugins/check_ldap.c
+++ b/plugins/check_ldap.c
@@ -134,11 +134,11 @@ main (int argc, char *argv[])
134 if (ldap_set_option (ld, LDAP_OPT_X_TLS, &tls) != LDAP_SUCCESS) 134 if (ldap_set_option (ld, LDAP_OPT_X_TLS, &tls) != LDAP_SUCCESS)
135 { 135 {
136 /*ldap_perror(ld, "ldaps_option"); */ 136 /*ldap_perror(ld, "ldaps_option"); */
137 printf ("Could not init TLS at port %i!\n", ld_port); 137 printf (_("Could not init TLS at port %i!\n"), ld_port);
138 return STATE_CRITICAL; 138 return STATE_CRITICAL;
139 } 139 }
140#else 140#else
141 printf ("TLS not supported by the libraries!\n", ld_port); 141 printf (_("TLS not supported by the libraries!\n"), ld_port);
142 return STATE_CRITICAL; 142 return STATE_CRITICAL;
143#endif /* LDAP_OPT_X_TLS */ 143#endif /* LDAP_OPT_X_TLS */
144 } else { 144 } else {
@@ -157,11 +157,11 @@ main (int argc, char *argv[])
157 if (ldap_start_tls_s(ld, NULL, NULL) != LDAP_SUCCESS) 157 if (ldap_start_tls_s(ld, NULL, NULL) != LDAP_SUCCESS)
158 { 158 {
159 /*ldap_perror(ld, "ldap_start_tls"); */ 159 /*ldap_perror(ld, "ldap_start_tls"); */
160 printf ("Could not init startTLS at port %i!\n", ld_port); 160 printf (_("Could not init startTLS at port %i!\n"), ld_port);
161 return STATE_CRITICAL; 161 return STATE_CRITICAL;
162 } 162 }
163#else 163#else
164 printf ("startTLS not supported by the library, needs LDAPv3!\n"); 164 printf (_("startTLS not supported by the library, needs LDAPv3!\n"));
165 return STATE_CRITICAL; 165 return STATE_CRITICAL;
166#endif /* HAVE_LDAP_START_TLS_S */ 166#endif /* HAVE_LDAP_START_TLS_S */
167 } 167 }
@@ -312,9 +312,7 @@ process_arguments (int argc, char **argv)
312#endif 312#endif
313 break; 313 break;
314 default: 314 default:
315 printf (_("%s: Unknown argument: %s\n\n"), progname, optarg); 315 usage2 (_("Unknown argument"), optarg);
316 print_usage ();
317 exit (STATE_UNKNOWN);
318 } 316 }
319 } 317 }
320 318
@@ -328,21 +326,20 @@ process_arguments (int argc, char **argv)
328 return validate_arguments (); 326 return validate_arguments ();
329} 327}
330 328
329
331int 330int
332validate_arguments () 331validate_arguments ()
333{ 332{
334 if (ld_host==NULL || strlen(ld_host)==0) 333 if (ld_host==NULL || strlen(ld_host)==0)
335 usage (_("please specify the host name\n")); 334 usage4 (_("Please specify the host name\n"));
336 335
337 if (ld_base==NULL || strlen(ld_base)==0) 336 if (ld_base==NULL || strlen(ld_base)==0)
338 usage (_("please specify the LDAP base\n")); 337 usage4 (_("Please specify the LDAP base\n"));
339 338
340 return OK; 339 return OK;
341
342} 340}
343 341
344 342
345
346void 343void
347print_help (void) 344print_help (void)
348{ 345{
@@ -392,7 +389,6 @@ print_help (void)
392} 389}
393 390
394 391
395
396void 392void
397print_usage (void) 393print_usage (void)
398{ 394{
diff --git a/plugins/check_load.c b/plugins/check_load.c
index 1b7865c..7e1cc48 100644
--- a/plugins/check_load.c
+++ b/plugins/check_load.c
@@ -224,9 +224,7 @@ process_arguments (int argc, char **argv)
224 print_help (); 224 print_help ();
225 exit (STATE_OK); 225 exit (STATE_OK);
226 case '?': /* help */ 226 case '?': /* help */
227 printf (_("%s: Unknown argument: %s\n\n"), progname, optarg); 227 usage2 (_("Unknown argument"), optarg);
228 print_usage ();
229 exit (STATE_UNKNOWN);
230 } 228 }
231 } 229 }
232 230
diff --git a/plugins/check_mrtg.c b/plugins/check_mrtg.c
index bd37aef..067429c 100644
--- a/plugins/check_mrtg.c
+++ b/plugins/check_mrtg.c
@@ -233,9 +233,7 @@ process_arguments (int argc, char **argv)
233 print_help (); 233 print_help ();
234 exit (STATE_OK); 234 exit (STATE_OK);
235 case '?': /* help */ 235 case '?': /* help */
236 printf (_("%s: Unknown argument: %s\n\n"), progname, optarg); 236 usage2 (_("Unknown argument"), optarg);
237 print_usage ();
238 exit (STATE_UNKNOWN);
239 } 237 }
240 } 238 }
241 239
diff --git a/plugins/check_mrtgtraf.c b/plugins/check_mrtgtraf.c
index 096b3bd..877072c 100644
--- a/plugins/check_mrtgtraf.c
+++ b/plugins/check_mrtgtraf.c
@@ -260,9 +260,7 @@ process_arguments (int argc, char **argv)
260 print_help (); 260 print_help ();
261 exit (STATE_OK); 261 exit (STATE_OK);
262 case '?': /* help */ 262 case '?': /* help */
263 printf (_("%s: Unknown argument: %s\n\n"), progname, optarg); 263 usage2 (_("Unknown argument"), optarg);
264 print_usage ();
265 exit (STATE_UNKNOWN);
266 } 264 }
267 } 265 }
268 266
@@ -304,7 +302,6 @@ process_arguments (int argc, char **argv)
304} 302}
305 303
306 304
307
308int 305int
309validate_arguments (void) 306validate_arguments (void)
310{ 307{
@@ -312,7 +309,6 @@ validate_arguments (void)
312} 309}
313 310
314 311
315
316void 312void
317print_help (void) 313print_help (void)
318{ 314{
diff --git a/plugins/check_mysql.c b/plugins/check_mysql.c
index 1e7a82f..735eaa2 100644
--- a/plugins/check_mysql.c
+++ b/plugins/check_mysql.c
@@ -98,25 +98,25 @@ main (int argc, char **argv)
98 /* check the slave status */ 98 /* check the slave status */
99 if (mysql_query (&mysql, "show slave status") != 0) { 99 if (mysql_query (&mysql, "show slave status") != 0) {
100 mysql_close (&mysql); 100 mysql_close (&mysql);
101 die (STATE_CRITICAL, "slave query error: %s\n", mysql_error (&mysql)); 101 die (STATE_CRITICAL, _("slave query error: %s\n"), mysql_error (&mysql));
102 } 102 }
103 103
104 /* store the result */ 104 /* store the result */
105 if ( (res = mysql_store_result (&mysql)) == NULL) { 105 if ( (res = mysql_store_result (&mysql)) == NULL) {
106 mysql_close (&mysql); 106 mysql_close (&mysql);
107 die (STATE_CRITICAL, "slave store_result error: %s\n", mysql_error (&mysql)); 107 die (STATE_CRITICAL, _("slave store_result error: %s\n"), mysql_error (&mysql));
108 } 108 }
109 109
110 /* fetch the first row */ 110 /* fetch the first row */
111 if ( (row = mysql_fetch_row (res)) == NULL) { 111 if ( (row = mysql_fetch_row (res)) == NULL) {
112 mysql_free_result (res); 112 mysql_free_result (res);
113 mysql_close (&mysql); 113 mysql_close (&mysql);
114 die (STATE_CRITICAL, "slave fetch row error: %s\n", mysql_error (&mysql)); 114 die (STATE_CRITICAL, _("slave fetch row error: %s\n"), mysql_error (&mysql));
115 } 115 }
116 116
117 if (mysql_field_count (&mysql) == 12) { 117 if (mysql_field_count (&mysql) == 12) {
118 /* mysql 3.23.x */ 118 /* mysql 3.23.x */
119 snprintf (slaveresult, SLAVERESULTSIZE, "Slave running: %s", row[6]); 119 snprintf (slaveresult, SLAVERESULTSIZE, _("Slave running: %s"), row[6]);
120 if (strcmp (row[6], "Yes") != 0) { 120 if (strcmp (row[6], "Yes") != 0) {
121 mysql_free_result (res); 121 mysql_free_result (res);
122 mysql_close (&mysql); 122 mysql_close (&mysql);
@@ -151,7 +151,6 @@ main (int argc, char **argv)
151} 151}
152 152
153 153
154
155/* process command-line arguments */ 154/* process command-line arguments */
156int 155int
157process_arguments (int argc, char **argv) 156process_arguments (int argc, char **argv)
@@ -212,9 +211,7 @@ process_arguments (int argc, char **argv)
212 print_help (); 211 print_help ();
213 exit (STATE_OK); 212 exit (STATE_OK);
214 case '?': /* help */ 213 case '?': /* help */
215 printf (_("%s: Unknown argument: %s\n\n"), progname, optarg); 214 usage2 (_("Unknown argument"), optarg);
216 print_usage ();
217 exit (STATE_UNKNOWN);
218 } 215 }
219 } 216 }
220 217
@@ -245,7 +242,6 @@ process_arguments (int argc, char **argv)
245} 242}
246 243
247 244
248
249int 245int
250validate_arguments (void) 246validate_arguments (void)
251{ 247{
@@ -265,7 +261,6 @@ validate_arguments (void)
265} 261}
266 262
267 263
268
269void 264void
270print_help (void) 265print_help (void)
271{ 266{
@@ -304,7 +299,6 @@ a server listening on MySQL standard port %d will be checked\n"), MYSQL_PORT);
304} 299}
305 300
306 301
307
308void 302void
309print_usage (void) 303print_usage (void)
310{ 304{
diff --git a/plugins/check_nagios.c b/plugins/check_nagios.c
index 465b409..0176983 100644
--- a/plugins/check_nagios.c
+++ b/plugins/check_nagios.c
@@ -95,7 +95,7 @@ main (int argc, char **argv)
95 fclose (fp); 95 fclose (fp);
96 96
97 if (verbose >= 2) 97 if (verbose >= 2)
98 printf("command: %s\n", PS_COMMAND); 98 printf(_("command: %s\n"), PS_COMMAND);
99 99
100 /* run the command to check for the Nagios process.. */ 100 /* run the command to check for the Nagios process.. */
101 child_process = spopen (PS_COMMAND); 101 child_process = spopen (PS_COMMAND);
@@ -206,8 +206,7 @@ process_arguments (int argc, char **argv)
206 expire_minutes = atoi (argv[2]); 206 expire_minutes = atoi (argv[2]);
207 else 207 else
208 die (STATE_UNKNOWN, 208 die (STATE_UNKNOWN,
209 _("Expiration time must be an integer (seconds)\nType '%s -h' for additional help\n"), 209 _("Expiration time must be an integer (seconds)\n"));
210 progname);
211 process_string = argv[3]; 210 process_string = argv[3];
212 return OK; 211 return OK;
213 } 212 }
@@ -220,9 +219,7 @@ process_arguments (int argc, char **argv)
220 219
221 switch (c) { 220 switch (c) {
222 case '?': /* print short usage statement if args not parsable */ 221 case '?': /* print short usage statement if args not parsable */
223 printf (_("%s: Unknown argument: %c\n\n"), progname, optopt); 222 usage2 (_("Unknown argument"), optarg);
224 print_usage ();
225 exit (STATE_UNKNOWN);
226 case 'h': /* help */ 223 case 'h': /* help */
227 print_help (); 224 print_help ();
228 exit (STATE_OK); 225 exit (STATE_OK);
@@ -240,8 +237,7 @@ process_arguments (int argc, char **argv)
240 expire_minutes = atoi (optarg); 237 expire_minutes = atoi (optarg);
241 else 238 else
242 die (STATE_UNKNOWN, 239 die (STATE_UNKNOWN,
243 _("Expiration time must be an integer (seconds)\nType '%s -h' for additional help\n"), 240 _("Expiration time must be an integer (seconds)\n"));
244 progname);
245 break; 241 break;
246 case 'v': 242 case 'v':
247 verbose++; 243 verbose++;
@@ -252,12 +248,10 @@ process_arguments (int argc, char **argv)
252 248
253 if (status_log == NULL) 249 if (status_log == NULL)
254 die (STATE_UNKNOWN, 250 die (STATE_UNKNOWN,
255 _("You must provide the status_log\nType '%s -h' for additional help\n"), 251 _("You must provide the status_log\n"));
256 progname);
257 else if (process_string == NULL) 252 else if (process_string == NULL)
258 die (STATE_UNKNOWN, 253 die (STATE_UNKNOWN,
259 _("You must provide a process string\nType '%s -h' for additional help\n"), 254 _("You must provide a process string\n"));
260 progname);
261 255
262 return OK; 256 return OK;
263} 257}
diff --git a/plugins/check_nt.c b/plugins/check_nt.c
index fa93fce..cac826f 100644
--- a/plugins/check_nt.c
+++ b/plugins/check_nt.c
@@ -423,7 +423,7 @@ int main(int argc, char **argv){
423 423
424 case CHECK_NONE: 424 case CHECK_NONE:
425 default: 425 default:
426 usage (_("Please specify a variable to check")); 426 usage4 (_("Please specify a variable to check"));
427 break; 427 break;
428 428
429 } 429 }
@@ -487,14 +487,12 @@ int process_arguments(int argc, char **argv){
487 switch (c) 487 switch (c)
488 { 488 {
489 case '?': /* print short usage statement if args not parsable */ 489 case '?': /* print short usage statement if args not parsable */
490 printf("%s: Unknown argument: %s\n\n",progname,optarg); 490 usage2 (_("Unknown argument"), optarg);
491 print_usage();
492 exit(STATE_UNKNOWN);
493 case 'h': /* help */ 491 case 'h': /* help */
494 print_help(); 492 print_help();
495 exit(STATE_OK); 493 exit(STATE_OK);
496 case 'V': /* version */ 494 case 'V': /* version */
497 print_revision(progname,"$Revision$"); 495 print_revision(progname,revision);
498 exit(STATE_OK); 496 exit(STATE_OK);
499 case 'H': /* hostname */ 497 case 'H': /* hostname */
500 if (server_address) free(server_address); 498 if (server_address) free(server_address);
@@ -507,7 +505,7 @@ int process_arguments(int argc, char **argv){
507 if (is_intnonneg(optarg)) 505 if (is_intnonneg(optarg))
508 server_port=atoi(optarg); 506 server_port=atoi(optarg);
509 else 507 else
510 die(STATE_UNKNOWN,_("Server port an integer (seconds)\nType '%s -h' for additional help\n"),progname); 508 die(STATE_UNKNOWN,_("Server port must be an integer\n"));
511 break; 509 break;
512 case 'v': 510 case 'v':
513 if(strlen(optarg)<4) 511 if(strlen(optarg)<4)
@@ -573,7 +571,7 @@ void fetch_data (const char *address, int port, const char *sendb) {
573 result=process_tcp_request(address, port, sendb, recv_buffer,sizeof(recv_buffer)); 571 result=process_tcp_request(address, port, sendb, recv_buffer,sizeof(recv_buffer));
574 572
575 if(result!=STATE_OK) 573 if(result!=STATE_OK)
576 die (result, "could not fetch information from server\n"); 574 die (result, _("could not fetch information from server\n"));
577 575
578 if (!strncmp(recv_buffer,"ERROR",5)) 576 if (!strncmp(recv_buffer,"ERROR",5))
579 die (STATE_UNKNOWN, "NSClient - %s\n",recv_buffer); 577 die (STATE_UNKNOWN, "NSClient - %s\n",recv_buffer);
diff --git a/plugins/check_nwstat.c b/plugins/check_nwstat.c
index 2d7e611..601b25d 100644
--- a/plugins/check_nwstat.c
+++ b/plugins/check_nwstat.c
@@ -760,9 +760,7 @@ int process_arguments(int argc, char **argv) {
760 switch (c) 760 switch (c)
761 { 761 {
762 case '?': /* print short usage statement if args not parsable */ 762 case '?': /* print short usage statement if args not parsable */
763 printf ("%s: Unknown argument: %s\n\n", progname, optarg); 763 usage2 (_("Unknown argument"), optarg);
764 print_usage();
765 exit(STATE_UNKNOWN);
766 case 'h': /* help */ 764 case 'h': /* help */
767 print_help(); 765 print_help();
768 exit(STATE_OK); 766 exit(STATE_OK);
@@ -779,7 +777,7 @@ int process_arguments(int argc, char **argv) {
779 if (is_intnonneg(optarg)) 777 if (is_intnonneg(optarg))
780 server_port=atoi(optarg); 778 server_port=atoi(optarg);
781 else 779 else
782 die(STATE_UNKNOWN,_("Server port an integer (seconds)\nType '%s -h' for additional help\n"),progname); 780 die(STATE_UNKNOWN,_("Server port an integer\n"));
783 break; 781 break;
784 case 'v': 782 case 'v':
785 if (strlen(optarg)<3) 783 if (strlen(optarg)<3)
diff --git a/plugins/check_overcr.c b/plugins/check_overcr.c
index 9bf40d3..a4abf2b 100644
--- a/plugins/check_overcr.c
+++ b/plugins/check_overcr.c
@@ -272,17 +272,9 @@ main (int argc, char **argv)
272 die (STATE_UNKNOWN, _("Nothing to check!\n")); 272 die (STATE_UNKNOWN, _("Nothing to check!\n"));
273 break; 273 break;
274 } 274 }
275
276 /* reset timeout */
277/* alarm (0); */
278
279/* printf (_("Reached end of program with no data returned\n")); */
280
281/* return result; */
282} 275}
283 276
284 277
285
286/* process command-line arguments */ 278/* process command-line arguments */
287int 279int
288process_arguments (int argc, char **argv) 280process_arguments (int argc, char **argv)
@@ -332,9 +324,7 @@ process_arguments (int argc, char **argv)
332 324
333 switch (c) { 325 switch (c) {
334 case '?': /* print short usage statement if args not parsable */ 326 case '?': /* print short usage statement if args not parsable */
335 printf (_("%s: Unknown argument: %s\n\n"), progname, optarg); 327 usage2 (_("Unknown argument"), optarg);
336 print_usage ();
337 exit (STATE_UNKNOWN);
338 case 'h': /* help */ 328 case 'h': /* help */
339 print_help (); 329 print_help ();
340 exit (STATE_OK); 330 exit (STATE_OK);
@@ -349,8 +339,7 @@ process_arguments (int argc, char **argv)
349 server_port = atoi (optarg); 339 server_port = atoi (optarg);
350 else 340 else
351 die (STATE_UNKNOWN, 341 die (STATE_UNKNOWN,
352 _("Server port an integer (seconds)\nType '%s -h' for additional help\n"), 342 _("Server port an integer\n"));
353 progname);
354 break; 343 break;
355 case 'v': /* variable */ 344 case 'v': /* variable */
356 if (strcmp (optarg, "LOAD") == 0) { 345 if (strcmp (optarg, "LOAD") == 0) {
@@ -403,7 +392,6 @@ process_arguments (int argc, char **argv)
403} 392}
404 393
405 394
406
407void 395void
408print_help (void) 396print_help (void)
409{ 397{
@@ -459,7 +447,6 @@ Notes:\n\
459} 447}
460 448
461 449
462
463void 450void
464print_usage (void) 451print_usage (void)
465{ 452{
diff --git a/plugins/check_pgsql.c b/plugins/check_pgsql.c
index b5b9ff8..d56ce9b 100644
--- a/plugins/check_pgsql.c
+++ b/plugins/check_pgsql.c
@@ -209,9 +209,7 @@ process_arguments (int argc, char **argv)
209 209
210 switch (c) { 210 switch (c) {
211 case '?': /* usage */ 211 case '?': /* usage */
212 printf (_("%s: Unknown argument: %s\n\n"), progname, optarg); 212 usage2 (_("Unknown argument"), optarg);
213 print_usage ();
214 exit (STATE_UNKNOWN);
215 case 'h': /* help */ 213 case 'h': /* help */
216 print_help (); 214 print_help ();
217 exit (STATE_OK); 215 exit (STATE_OK);
@@ -232,7 +230,7 @@ process_arguments (int argc, char **argv)
232 break; 230 break;
233 case 'w': /* warning time threshold */ 231 case 'w': /* warning time threshold */
234 if (!is_nonnegative (optarg)) 232 if (!is_nonnegative (optarg))
235 usage2 (_("Critical threshold must be a positive integer"), optarg); 233 usage2 (_("Warning threshold must be a positive integer"), optarg);
236 else 234 else
237 twarn = strtod (optarg, NULL); 235 twarn = strtod (optarg, NULL);
238 break; 236 break;
diff --git a/plugins/check_ping.c b/plugins/check_ping.c
index 9176466..818bb66 100644
--- a/plugins/check_ping.c
+++ b/plugins/check_ping.c
@@ -194,9 +194,7 @@ process_arguments (int argc, char **argv)
194 194
195 switch (c) { 195 switch (c) {
196 case '?': /* usage */ 196 case '?': /* usage */
197 printf (_("%s: Unknown argument: %s\n\n"), progname, optarg); 197 usage2 (_("Unknown argument"), optarg);
198 print_usage ();
199 exit (STATE_UNKNOWN);
200 case 'h': /* help */ 198 case 'h': /* help */
201 print_help (); 199 print_help ();
202 exit (STATE_OK); 200 exit (STATE_OK);
diff --git a/plugins/check_procs.c b/plugins/check_procs.c
index 1be93f4..0cd9153 100644
--- a/plugins/check_procs.c
+++ b/plugins/check_procs.c
@@ -343,9 +343,7 @@ process_arguments (int argc, char **argv)
343 343
344 switch (c) { 344 switch (c) {
345 case '?': /* help */ 345 case '?': /* help */
346 printf (_("%s: Unknown argument: %s\n\n"), progname, optarg); 346 usage2 (_("Unknown argument"), optarg);
347 print_usage ();
348 exit (STATE_UNKNOWN);
349 case 'h': /* help */ 347 case 'h': /* help */
350 print_help (); 348 print_help ();
351 exit (STATE_OK); 349 exit (STATE_OK);
@@ -368,7 +366,7 @@ process_arguments (int argc, char **argv)
368 else if (sscanf (optarg, "%d:", &cmin) == 1) 366 else if (sscanf (optarg, "%d:", &cmin) == 1)
369 break; 367 break;
370 else 368 else
371 usage (_("Critical Process Count must be an integer!\n\n")); 369 usage4 (_("Critical Process Count must be an integer!"));
372 break; 370 break;
373 case 'w': /* warning threshold */ 371 case 'w': /* warning threshold */
374 if (is_integer (optarg)) 372 if (is_integer (optarg))
@@ -380,7 +378,7 @@ process_arguments (int argc, char **argv)
380 else if (sscanf (optarg, "%d:", &wmin) == 1) 378 else if (sscanf (optarg, "%d:", &wmin) == 1)
381 break; 379 break;
382 else 380 else
383 usage (_("Warning Process Count must be an integer!\n\n")); 381 usage4 (_("Warning Process Count must be an integer!"));
384 break; 382 break;
385 case 'p': /* process id */ 383 case 'p': /* process id */
386 if (sscanf (optarg, "%d%[^0-9]", &ppid, tmp) == 1) { 384 if (sscanf (optarg, "%d%[^0-9]", &ppid, tmp) == 1) {
@@ -388,7 +386,7 @@ process_arguments (int argc, char **argv)
388 options |= PPID; 386 options |= PPID;
389 break; 387 break;
390 } 388 }
391 usage2 (_("%s: Parent Process ID must be an integer!\n\n"), progname); 389 usage4 (_("Parent Process ID must be an integer!"));
392 case 's': /* status */ 390 case 's': /* status */
393 if (statopts) 391 if (statopts)
394 break; 392 break;
@@ -403,13 +401,13 @@ process_arguments (int argc, char **argv)
403 pw = getpwuid ((uid_t) uid); 401 pw = getpwuid ((uid_t) uid);
404 /* check to be sure user exists */ 402 /* check to be sure user exists */
405 if (pw == NULL) 403 if (pw == NULL)
406 usage2 (_("UID %s was not found\n"), optarg); 404 usage2 (_("UID %s was not found"), optarg);
407 } 405 }
408 else { 406 else {
409 pw = getpwnam (optarg); 407 pw = getpwnam (optarg);
410 /* check to be sure user exists */ 408 /* check to be sure user exists */
411 if (pw == NULL) 409 if (pw == NULL)
412 usage2 (_("User name %s was not found\n"), optarg); 410 usage2 (_("User name %s was not found"), optarg);
413 /* then get uid */ 411 /* then get uid */
414 uid = pw->pw_uid; 412 uid = pw->pw_uid;
415 } 413 }
@@ -443,14 +441,14 @@ process_arguments (int argc, char **argv)
443 options |= RSS; 441 options |= RSS;
444 break; 442 break;
445 } 443 }
446 usage2 (_("%s: RSS must be an integer!\n\n"), progname); 444 usage4 (_("RSS must be an integer!"));
447 case 'z': /* VSZ */ 445 case 'z': /* VSZ */
448 if (sscanf (optarg, "%d%[^0-9]", &vsz, tmp) == 1) { 446 if (sscanf (optarg, "%d%[^0-9]", &vsz, tmp) == 1) {
449 asprintf (&fmt, _("%s%sVSZ >= %d"), (fmt ? fmt : ""), (options ? ", " : ""), vsz); 447 asprintf (&fmt, _("%s%sVSZ >= %d"), (fmt ? fmt : ""), (options ? ", " : ""), vsz);
450 options |= VSZ; 448 options |= VSZ;
451 break; 449 break;
452 } 450 }
453 usage2 (_("%s: VSZ must be an integer!\n\n"), progname); 451 usage4 (_("VSZ must be an integer!"));
454 case 'P': /* PCPU */ 452 case 'P': /* PCPU */
455 /* TODO: -P 1.5.5 is accepted */ 453 /* TODO: -P 1.5.5 is accepted */
456 if (sscanf (optarg, "%f%[^0-9.]", &pcpu, tmp) == 1) { 454 if (sscanf (optarg, "%f%[^0-9.]", &pcpu, tmp) == 1) {
@@ -458,7 +456,7 @@ process_arguments (int argc, char **argv)
458 options |= PCPU; 456 options |= PCPU;
459 break; 457 break;
460 } 458 }
461 usage2 (_("%s: PCPU must be a float!\n\n"), progname); 459 usage4 (_("PCPU must be a float!"));
462 case 'm': 460 case 'm':
463 asprintf (&metric_name, "%s", optarg); 461 asprintf (&metric_name, "%s", optarg);
464 if ( strcmp(optarg, "PROCS") == 0) { 462 if ( strcmp(optarg, "PROCS") == 0) {
@@ -482,10 +480,7 @@ process_arguments (int argc, char **argv)
482 break; 480 break;
483 } 481 }
484 482
485 printf (_("%s: metric must be one of PROCS, VSZ, RSS, CPU, ELAPSED!\n\n"), 483 usage4 (_("Metric must be one of PROCS, VSZ, RSS, CPU, ELAPSED!"));
486 progname);
487 print_usage ();
488 exit (STATE_UNKNOWN);
489 case 'v': /* command */ 484 case 'v': /* command */
490 verbose++; 485 verbose++;
491 break; 486 break;
@@ -588,8 +583,6 @@ check_thresholds (int value)
588} 583}
589 584
590 585
591
592
593/* convert the elapsed time to seconds */ 586/* convert the elapsed time to seconds */
594int 587int
595convert_to_seconds(char *etime) { 588convert_to_seconds(char *etime) {
@@ -653,7 +646,6 @@ convert_to_seconds(char *etime) {
653} 646}
654 647
655 648
656
657void 649void
658print_help (void) 650print_help (void)
659{ 651{
diff --git a/plugins/check_radius.c b/plugins/check_radius.c
index 9e10468..07ee4c7 100644
--- a/plugins/check_radius.c
+++ b/plugins/check_radius.c
@@ -199,12 +199,12 @@ process_arguments (int argc, char **argv)
199 if (is_intpos (argv[5])) 199 if (is_intpos (argv[5]))
200 retries = atoi (argv[5]); 200 retries = atoi (argv[5]);
201 else 201 else
202 usage (_("Number of retries must be a positive integer")); 202 usage4 (_("Number of retries must be a positive integer"));
203 server = argv[6]; 203 server = argv[6];
204 if (is_intpos (argv[7])) 204 if (is_intpos (argv[7]))
205 port = atoi (argv[7]); 205 port = atoi (argv[7]);
206 else 206 else
207 usage (_("Port must be a positive integer")); 207 usage4 (_("Port must be a positive integer"));
208 expect = argv[8]; 208 expect = argv[8];
209 return OK; 209 return OK;
210 } 210 }
@@ -218,9 +218,7 @@ process_arguments (int argc, char **argv)
218 218
219 switch (c) { 219 switch (c) {
220 case '?': /* print short usage statement if args not parsable */ 220 case '?': /* print short usage statement if args not parsable */
221 printf (_("%s: Unknown argument: %s\n\n"), progname, optarg); 221 usage2 (_("Unknown argument"), optarg);
222 print_usage ();
223 exit (STATE_UNKNOWN);
224 case 'h': /* help */ 222 case 'h': /* help */
225 print_help (); 223 print_help ();
226 exit (OK); 224 exit (OK);
@@ -240,7 +238,7 @@ process_arguments (int argc, char **argv)
240 if (is_intnonneg (optarg)) 238 if (is_intnonneg (optarg))
241 port = atoi (optarg); 239 port = atoi (optarg);
242 else 240 else
243 usage (_("Port must be a positive integer")); 241 usage4 (_("Port must be a positive integer"));
244 break; 242 break;
245 case 'u': /* username */ 243 case 'u': /* username */
246 username = optarg; 244 username = optarg;
@@ -261,7 +259,7 @@ process_arguments (int argc, char **argv)
261 if (is_intpos (optarg)) 259 if (is_intpos (optarg))
262 retries = atoi (optarg); 260 retries = atoi (optarg);
263 else 261 else
264 usage (_("Number of retries must be a positive integer")); 262 usage4 (_("Number of retries must be a positive integer"));
265 break; 263 break;
266 case 't': /* timeout */ 264 case 't': /* timeout */
267 if (is_intpos (optarg)) 265 if (is_intpos (optarg))
diff --git a/plugins/check_real.c b/plugins/check_real.c
index 3042465..eb892c7 100644
--- a/plugins/check_real.c
+++ b/plugins/check_real.c
@@ -330,7 +330,7 @@ process_arguments (int argc, char **argv)
330 check_critical_time = TRUE; 330 check_critical_time = TRUE;
331 } 331 }
332 else { 332 else {
333 usage4 (_("Critical time must be a nonnegative integer")); 333 usage4 (_("Critical time must be a positive integer"));
334 } 334 }
335 break; 335 break;
336 case 'v': /* verbose */ 336 case 'v': /* verbose */
@@ -341,7 +341,7 @@ process_arguments (int argc, char **argv)
341 socket_timeout = atoi (optarg); 341 socket_timeout = atoi (optarg);
342 } 342 }
343 else { 343 else {
344 usage4 (_("Time interval must be a nonnegative integer")); 344 usage4 (_("Timeout interval must be a positive integer"));
345 } 345 }
346 break; 346 break;
347 case 'V': /* version */ 347 case 'V': /* version */
@@ -351,9 +351,7 @@ process_arguments (int argc, char **argv)
351 print_help (); 351 print_help ();
352 exit (STATE_OK); 352 exit (STATE_OK);
353 case '?': /* usage */ 353 case '?': /* usage */
354 printf (_("%s: Unknown argument: %s\n\n"), progname, optarg); 354 usage2 (_("Unknown argument"), optarg);
355 print_usage ();
356 exit (STATE_UNKNOWN);
357 } 355 }
358 } 356 }
359 357
@@ -368,7 +366,7 @@ process_arguments (int argc, char **argv)
368 } 366 }
369 367
370 if (server_address==NULL) 368 if (server_address==NULL)
371 usage (_("You must provide a server to check\n")); 369 usage4 (_("You must provide a server to check"));
372 370
373 if (host_name==NULL) 371 if (host_name==NULL)
374 host_name = strdup (server_address); 372 host_name = strdup (server_address);
diff --git a/plugins/check_smtp.c b/plugins/check_smtp.c
index b6c60c2..55cf5da 100644
--- a/plugins/check_smtp.c
+++ b/plugins/check_smtp.c
@@ -351,7 +351,7 @@ process_arguments (int argc, char **argv)
351 socket_timeout = atoi (optarg); 351 socket_timeout = atoi (optarg);
352 } 352 }
353 else { 353 else {
354 usage4 (_("Time interval must be a positive integer")); 354 usage4 (_("Timeout interval must be a positive integer"));
355 } 355 }
356 break; 356 break;
357 case '4': 357 case '4':
@@ -371,9 +371,7 @@ process_arguments (int argc, char **argv)
371 print_help (); 371 print_help ();
372 exit (STATE_OK); 372 exit (STATE_OK);
373 case '?': /* help */ 373 case '?': /* help */
374 printf (_("%s: Unknown argument: %s\n\n"), progname, optarg); 374 usage2 (_("Unknown argument"), optarg);
375 print_usage ();
376 exit (STATE_UNKNOWN);
377 } 375 }
378 } 376 }
379 377
diff --git a/plugins/check_snmp.c b/plugins/check_snmp.c
index c1c4ea8..5f22121 100644
--- a/plugins/check_snmp.c
+++ b/plugins/check_snmp.c
@@ -251,7 +251,7 @@ main (int argc, char **argv)
251 eval_method[i] & WARN_NE) { 251 eval_method[i] & WARN_NE) {
252 p2 = strpbrk (p2, "0123456789"); 252 p2 = strpbrk (p2, "0123456789");
253 if (p2 == NULL) 253 if (p2 == NULL)
254 die (STATE_UNKNOWN,"No valid data returned"); 254 die (STATE_UNKNOWN,_("No valid data returned"));
255 response_value[i] = strtoul (p2, NULL, 10); 255 response_value[i] = strtoul (p2, NULL, 10);
256 iresult = check_num (i); 256 iresult = check_num (i);
257 asprintf (&show, "%lu", response_value[i]); 257 asprintf (&show, "%lu", response_value[i]);
@@ -398,9 +398,7 @@ process_arguments (int argc, char **argv)
398 398
399 switch (c) { 399 switch (c) {
400 case '?': /* usage */ 400 case '?': /* usage */
401 printf (_("%s: Unknown argument: %s\n\n"), progname, optarg); 401 usage2 (_("Unknown argument"), optarg);
402 print_usage ();
403 exit (STATE_UNKNOWN);
404 case 'h': /* help */ 402 case 'h': /* help */
405 print_help (); 403 print_help ();
406 exit (STATE_OK); 404 exit (STATE_OK);
@@ -795,7 +793,7 @@ thisarg (char *str)
795 str += strspn (str, " \t\r\n"); /* trim any leading whitespace */ 793 str += strspn (str, " \t\r\n"); /* trim any leading whitespace */
796 if (strstr (str, "'") == str) { /* handle SIMPLE quoted strings */ 794 if (strstr (str, "'") == str) { /* handle SIMPLE quoted strings */
797 if (strlen (str) == 1 || !strstr (str + 1, "'")) 795 if (strlen (str) == 1 || !strstr (str + 1, "'"))
798 die (STATE_UNKNOWN, "Unbalanced quotes\n"); 796 die (STATE_UNKNOWN, _("Unbalanced quotes\n"));
799 } 797 }
800 return str; 798 return str;
801} 799}
diff --git a/plugins/check_ssh.c b/plugins/check_ssh.c
index e957c05..7b7bc8f 100644
--- a/plugins/check_ssh.c
+++ b/plugins/check_ssh.c
@@ -110,9 +110,7 @@ process_arguments (int argc, char **argv)
110 110
111 switch (c) { 111 switch (c) {
112 case '?': /* help */ 112 case '?': /* help */
113 printf (_("%s: Unknown argument: %s\n\n"), progname, optarg); 113 usage2 (_("Unknown argument"), optarg);
114 print_usage ();
115 exit (STATE_UNKNOWN);
116 case 'V': /* version */ 114 case 'V': /* version */
117 print_revision (progname, revision); 115 print_revision (progname, revision);
118 exit (STATE_OK); 116 exit (STATE_OK);
@@ -135,7 +133,7 @@ process_arguments (int argc, char **argv)
135#ifdef USE_IPV6 133#ifdef USE_IPV6
136 address_family = AF_INET6; 134 address_family = AF_INET6;
137#else 135#else
138 usage (_("IPv6 support not available\n")); 136 usage4 (_("IPv6 support not available"));
139#endif 137#endif
140 break; 138 break;
141 case 'r': /* remote version */ 139 case 'r': /* remote version */
@@ -151,11 +149,9 @@ process_arguments (int argc, char **argv)
151 port = atoi (optarg); 149 port = atoi (optarg);
152 } 150 }
153 else { 151 else {
154 printf ("Port number nust be a positive integer: %s\n", optarg); 152 usage2 (_("Port number must be a positive integer"), optarg);
155 usage ("");
156 } 153 }
157 } 154 }
158
159 } 155 }
160 156
161 c = optind; 157 c = optind;
diff --git a/plugins/check_swap.c b/plugins/check_swap.c
index 6e2ab72..093845b 100644
--- a/plugins/check_swap.c
+++ b/plugins/check_swap.c
@@ -239,7 +239,7 @@ main (int argc, char **argv)
239 /* and now, tally 'em up */ 239 /* and now, tally 'em up */
240 swapctl_res=swapctl(SC_LIST, tbl); 240 swapctl_res=swapctl(SC_LIST, tbl);
241 if(swapctl_res < 0){ 241 if(swapctl_res < 0){
242 perror("swapctl failed: "); 242 perror(_("swapctl failed: "));
243 result = STATE_WARNING; 243 result = STATE_WARNING;
244 } 244 }
245 245
@@ -278,7 +278,7 @@ main (int argc, char **argv)
278 /* and now, tally 'em up */ 278 /* and now, tally 'em up */
279 swapctl_res=swapctl(SWAP_STATS, ent, nswaps); 279 swapctl_res=swapctl(SWAP_STATS, ent, nswaps);
280 if(swapctl_res < 0){ 280 if(swapctl_res < 0){
281 perror("swapctl failed: "); 281 perror(_("swapctl failed: "));
282 result = STATE_WARNING; 282 result = STATE_WARNING;
283 } 283 }
284 284
@@ -388,7 +388,7 @@ process_arguments (int argc, char **argv)
388 break; 388 break;
389 } 389 }
390 else { 390 else {
391 usage (_("Warning threshold must be integer or percentage!\n")); 391 usage4 (_("Warning threshold must be integer or percentage!"));
392 } 392 }
393 case 'c': /* critical size threshold */ 393 case 'c': /* critical size threshold */
394 if (is_intnonneg (optarg)) { 394 if (is_intnonneg (optarg)) {
@@ -420,9 +420,7 @@ process_arguments (int argc, char **argv)
420 print_help (); 420 print_help ();
421 exit (STATE_OK); 421 exit (STATE_OK);
422 case '?': /* error */ 422 case '?': /* error */
423 printf (_("%s: Unknown argument: %s\n\n"), progname, optarg); 423 usage2 (_("Unknown argument"), optarg);
424 print_usage ();
425 exit (STATE_UNKNOWN);
426 } 424 }
427 } 425 }
428 426
diff --git a/plugins/check_tcp.c b/plugins/check_tcp.c
index b922536..fcd6778 100644
--- a/plugins/check_tcp.c
+++ b/plugins/check_tcp.c
@@ -259,13 +259,13 @@ main (int argc, char **argv)
259#ifdef HAVE_SSL 259#ifdef HAVE_SSL
260 if (use_ssl && check_cert == TRUE) { 260 if (use_ssl && check_cert == TRUE) {
261 if (connect_SSL () != OK) 261 if (connect_SSL () != OK)
262 die (STATE_CRITICAL,"CRITICAL - Could not make SSL connection\n"); 262 die (STATE_CRITICAL,_("CRITICAL - Could not make SSL connection\n"));
263 if ((server_cert = SSL_get_peer_certificate (ssl)) != NULL) { 263 if ((server_cert = SSL_get_peer_certificate (ssl)) != NULL) {
264 result = check_certificate (&server_cert); 264 result = check_certificate (&server_cert);
265 X509_free(server_cert); 265 X509_free(server_cert);
266 } 266 }
267 else { 267 else {
268 printf("CRITICAL - Cannot retrieve server certificate.\n"); 268 printf(_("CRITICAL - Cannot retrieve server certificate.\n"));
269 result = STATE_CRITICAL; 269 result = STATE_CRITICAL;
270 } 270 }
271 SSL_shutdown (ssl); 271 SSL_shutdown (ssl);
@@ -434,7 +434,7 @@ process_arguments (int argc, char **argv)
434 }; 434 };
435 435
436 if (argc < 2) 436 if (argc < 2)
437 usage ("No arguments found\n"); 437 usage4 (_("No arguments found"));
438 438
439 /* backwards compatibility */ 439 /* backwards compatibility */
440 for (c = 1; c < argc; c++) { 440 for (c = 1; c < argc; c++) {
@@ -462,14 +462,12 @@ process_arguments (int argc, char **argv)
462 462
463 switch (c) { 463 switch (c) {
464 case '?': /* print short usage statement if args not parsable */ 464 case '?': /* print short usage statement if args not parsable */
465 printf (_("%s: Unknown argument: %s\n\n"), progname, optarg); 465 usage2 (_("Unknown argument"), optarg);
466 print_usage ();
467 exit (STATE_UNKNOWN);
468 case 'h': /* help */ 466 case 'h': /* help */
469 print_help (); 467 print_help ();
470 exit (STATE_OK); 468 exit (STATE_OK);
471 case 'V': /* version */ 469 case 'V': /* version */
472 print_revision (progname, "$Revision$"); 470 print_revision (progname, revision);
473 exit (STATE_OK); 471 exit (STATE_OK);
474 case 'v': /* verbose mode */ 472 case 'v': /* verbose mode */
475 verbose = TRUE; 473 verbose = TRUE;
@@ -575,7 +573,7 @@ process_arguments (int argc, char **argv)
575 case 'D': /* Check SSL cert validity - days 'til certificate expiration */ 573 case 'D': /* Check SSL cert validity - days 'til certificate expiration */
576#ifdef HAVE_SSL 574#ifdef HAVE_SSL
577 if (!is_intnonneg (optarg)) 575 if (!is_intnonneg (optarg))
578 usage2 ("invalid certificate expiration period", optarg); 576 usage2 (_("Invalid certificate expiration period"), optarg);
579 days_till_exp = atoi (optarg); 577 days_till_exp = atoi (optarg);
580 check_cert = TRUE; 578 check_cert = TRUE;
581 use_ssl = TRUE; 579 use_ssl = TRUE;
@@ -583,14 +581,14 @@ process_arguments (int argc, char **argv)
583 case 'S': 581 case 'S':
584 use_ssl = TRUE; 582 use_ssl = TRUE;
585#else 583#else
586 die (STATE_UNKNOWN, "SSL support not available. Install OpenSSL and recompile."); 584 die (STATE_UNKNOWN, _("SSL support not available. Install OpenSSL and recompile."));
587#endif 585#endif
588 break; 586 break;
589 } 587 }
590 } 588 }
591 589
592 if (server_address == NULL) 590 if (server_address == NULL)
593 usage (_("You must provide a server address\n")); 591 usage4 (_("You must provide a server address"));
594 592
595 return TRUE; 593 return TRUE;
596} 594}
@@ -669,7 +667,7 @@ check_certificate (X509 ** certificate)
669 /* Generate tm structure to process timestamp */ 667 /* Generate tm structure to process timestamp */
670 if (tm->type == V_ASN1_UTCTIME) { 668 if (tm->type == V_ASN1_UTCTIME) {
671 if (tm->length < 10) { 669 if (tm->length < 10) {
672 printf ("CRITICAL - Wrong time format in certificate.\n"); 670 printf (_("CRITICAL - Wrong time format in certificate.\n"));
673 return STATE_CRITICAL; 671 return STATE_CRITICAL;
674 } 672 }
675 else { 673 else {
@@ -681,7 +679,7 @@ check_certificate (X509 ** certificate)
681 } 679 }
682 else { 680 else {
683 if (tm->length < 12) { 681 if (tm->length < 12) {
684 printf ("CRITICAL - Wrong time format in certificate.\n"); 682 printf (_("CRITICAL - Wrong time format in certificate.\n"));
685 return STATE_CRITICAL; 683 return STATE_CRITICAL;
686 } 684 }
687 else { 685 else {
@@ -710,20 +708,20 @@ check_certificate (X509 ** certificate)
710 stamp.tm_mday, stamp.tm_year + 1900, stamp.tm_hour, stamp.tm_min); 708 stamp.tm_mday, stamp.tm_year + 1900, stamp.tm_hour, stamp.tm_min);
711 709
712 if (days_left > 0 && days_left <= days_till_exp) { 710 if (days_left > 0 && days_left <= days_till_exp) {
713 printf ("Certificate expires in %d day(s) (%s).\n", days_left, timestamp); 711 printf (_("Certificate expires in %d day(s) (%s).\n"), days_left, timestamp);
714 return STATE_WARNING; 712 return STATE_WARNING;
715 } 713 }
716 if (days_left < 0) { 714 if (days_left < 0) {
717 printf ("Certificate expired on %s.\n", timestamp); 715 printf (_("Certificate expired on %s.\n"), timestamp);
718 return STATE_CRITICAL; 716 return STATE_CRITICAL;
719 } 717 }
720 718
721 if (days_left == 0) { 719 if (days_left == 0) {
722 printf ("Certificate expires today (%s).\n", timestamp); 720 printf (_("Certificate expires today (%s).\n"), timestamp);
723 return STATE_WARNING; 721 return STATE_WARNING;
724 } 722 }
725 723
726 printf ("Certificate will expire on %s.\n", timestamp); 724 printf (_("Certificate will expire on %s.\n"), timestamp);
727 725
728 return STATE_OK; 726 return STATE_OK;
729} 727}
diff --git a/plugins/check_time.c b/plugins/check_time.c
index 63d7ee2..efca91b 100644
--- a/plugins/check_time.c
+++ b/plugins/check_time.c
@@ -216,9 +216,7 @@ process_arguments (int argc, char **argv)
216 216
217 switch (c) { 217 switch (c) {
218 case '?': /* print short usage statement if args not parsable */ 218 case '?': /* print short usage statement if args not parsable */
219 printf (_("%s: Unknown argument: %s\n\n"), progname, optarg); 219 usage2 (_("Unknown argument"), optarg);
220 print_usage ();
221 exit (STATE_UNKNOWN);
222 case 'h': /* help */ 220 case 'h': /* help */
223 print_help (); 221 print_help ();
224 exit (STATE_OK); 222 exit (STATE_OK);
diff --git a/plugins/check_udp.c b/plugins/check_udp.c
index b79f31f..e7d5280 100644
--- a/plugins/check_udp.c
+++ b/plugins/check_udp.c
@@ -67,7 +67,7 @@ main (int argc, char **argv)
67 time (&end_time); 67 time (&end_time);
68 68
69 if (result != STATE_OK) { 69 if (result != STATE_OK) {
70 printf ("No response from host on port %d\n", server_port); 70 printf (_("No response from host on port %d\n"), server_port);
71 result = STATE_CRITICAL; 71 result = STATE_CRITICAL;
72 } 72 }
73 73
@@ -76,7 +76,7 @@ main (int argc, char **argv)
76 /* check to see if we got the response we wanted */ 76 /* check to see if we got the response we wanted */
77 if (server_expect) { 77 if (server_expect) {
78 if (!strstr (recv_buffer, server_expect)) { 78 if (!strstr (recv_buffer, server_expect)) {
79 printf ("Invalid response received from host on port %d\n", 79 printf (_("Invalid response received from host on port %d\n"),
80 server_port); 80 server_port);
81 result = STATE_CRITICAL; 81 result = STATE_CRITICAL;
82 } 82 }
@@ -146,9 +146,7 @@ process_arguments (int argc, char **argv)
146 146
147 switch (c) { 147 switch (c) {
148 case '?': /* print short usage statement if args not parsable */ 148 case '?': /* print short usage statement if args not parsable */
149 printf (_("%s: Unknown argument: %s\n\n"), progname, optarg); 149 usage2 (_("Unknown argument"), optarg);
150 print_usage ();
151 exit (STATE_UNKNOWN);
152 case 'h': /* help */ 150 case 'h': /* help */
153 print_help (); 151 print_help ();
154 exit (STATE_OK); 152 exit (STATE_OK);
@@ -254,8 +252,6 @@ STATE_CRITICAL, other errors return STATE_UNKNOWN.\n\n"));
254} 252}
255 253
256 254
257
258
259/* Original Command line: 255/* Original Command line:
260 check_udp <host_address> [-p port] [-s send] [-e expect] \ 256 check_udp <host_address> [-p port] [-s send] [-e expect] \
261 [-wt warn_time] [-ct crit_time] [-to to_sec] */ 257 [-wt warn_time] [-ct crit_time] [-to to_sec] */
diff --git a/plugins/check_ups.c b/plugins/check_ups.c
index a4d7650..1cdf9e9 100644
--- a/plugins/check_ups.c
+++ b/plugins/check_ups.c
@@ -133,48 +133,48 @@ main (int argc, char **argv)
133 } 133 }
134 else if ((status & (UPSSTATUS_OB | UPSSTATUS_LB)) == 134 else if ((status & (UPSSTATUS_OB | UPSSTATUS_LB)) ==
135 (UPSSTATUS_OB | UPSSTATUS_LB)) { 135 (UPSSTATUS_OB | UPSSTATUS_LB)) {
136 asprintf (&ups_status, "On Battery, Low Battery"); 136 asprintf (&ups_status, _("On Battery, Low Battery"));
137 result = STATE_CRITICAL; 137 result = STATE_CRITICAL;
138 } 138 }
139 else { 139 else {
140 if (status & UPSSTATUS_OL) { 140 if (status & UPSSTATUS_OL) {
141 asprintf (&ups_status, "%s%s", ups_status, "Online"); 141 asprintf (&ups_status, "%s%s", ups_status, _("Online"));
142 } 142 }
143 if (status & UPSSTATUS_OB) { 143 if (status & UPSSTATUS_OB) {
144 asprintf (&ups_status, "%s%s", ups_status, "On Battery"); 144 asprintf (&ups_status, "%s%s", ups_status, _("On Battery"));
145 result = STATE_WARNING; 145 result = STATE_WARNING;
146 } 146 }
147 if (status & UPSSTATUS_LB) { 147 if (status & UPSSTATUS_LB) {
148 asprintf (&ups_status, "%s%s", ups_status, ", Low Battery"); 148 asprintf (&ups_status, "%s%s", ups_status, _(", Low Battery"));
149 result = STATE_WARNING; 149 result = STATE_WARNING;
150 } 150 }
151 if (status & UPSSTATUS_CAL) { 151 if (status & UPSSTATUS_CAL) {
152 asprintf (&ups_status, "%s%s", ups_status, ", Calibrating"); 152 asprintf (&ups_status, "%s%s", ups_status, _(", Calibrating"));
153 } 153 }
154 if (status & UPSSTATUS_RB) { 154 if (status & UPSSTATUS_RB) {
155 asprintf (&ups_status, "%s%s", ups_status, ", Replace Battery"); 155 asprintf (&ups_status, "%s%s", ups_status, _(", Replace Battery"));
156 result = STATE_WARNING; 156 result = STATE_WARNING;
157 } 157 }
158 if (status & UPSSTATUS_BYPASS) { 158 if (status & UPSSTATUS_BYPASS) {
159 asprintf (&ups_status, "%s%s", ups_status, ", On Bypass"); 159 asprintf (&ups_status, "%s%s", ups_status, _(", On Bypass"));
160 } 160 }
161 if (status & UPSSTATUS_OVER) { 161 if (status & UPSSTATUS_OVER) {
162 asprintf (&ups_status, "%s%s", ups_status, ", Overload"); 162 asprintf (&ups_status, "%s%s", ups_status, _(", Overload"));
163 } 163 }
164 if (status & UPSSTATUS_TRIM) { 164 if (status & UPSSTATUS_TRIM) {
165 asprintf (&ups_status, "%s%s", ups_status, ", Trimming"); 165 asprintf (&ups_status, "%s%s", ups_status, _(", Trimming"));
166 } 166 }
167 if (status & UPSSTATUS_BOOST) { 167 if (status & UPSSTATUS_BOOST) {
168 asprintf (&ups_status, "%s%s", ups_status, ", Boosting"); 168 asprintf (&ups_status, "%s%s", ups_status, _(", Boosting"));
169 } 169 }
170 if (status & UPSSTATUS_CHRG) { 170 if (status & UPSSTATUS_CHRG) {
171 asprintf (&ups_status, "%s%s", ups_status, ", Charging"); 171 asprintf (&ups_status, "%s%s", ups_status, _(", Charging"));
172 } 172 }
173 if (status & UPSSTATUS_DISCHRG) { 173 if (status & UPSSTATUS_DISCHRG) {
174 asprintf (&ups_status, "%s%s", ups_status, ", Discharging"); 174 asprintf (&ups_status, "%s%s", ups_status, _(", Discharging"));
175 } 175 }
176 if (status & UPSSTATUS_UNKOWN) { 176 if (status & UPSSTATUS_UNKOWN) {
177 asprintf (&ups_status, "%s%s", ups_status, ", Unknown"); 177 asprintf (&ups_status, "%s%s", ups_status, _(", Unknown"));
178 } 178 }
179 } 179 }
180 asprintf (&message, "%sStatus=%s ", message, ups_status); 180 asprintf (&message, "%sStatus=%s ", message, ups_status);
@@ -311,7 +311,7 @@ main (int argc, char **argv)
311 /* if the UPS does not support any options we are looking for, report an error */ 311 /* if the UPS does not support any options we are looking for, report an error */
312 if (supported_options == UPS_NONE) { 312 if (supported_options == UPS_NONE) {
313 result = STATE_CRITICAL; 313 result = STATE_CRITICAL;
314 asprintf (&message, "UPS does not support any available options\n"); 314 asprintf (&message, _("UPS does not support any available options\n"));
315 } 315 }
316 316
317 /* reset timeout */ 317 /* reset timeout */
@@ -335,7 +335,7 @@ determine_status (void)
335 res=get_ups_variable ("ups.status", recv_buffer, sizeof (recv_buffer)); 335 res=get_ups_variable ("ups.status", recv_buffer, sizeof (recv_buffer));
336 if (res == NOSUCHVAR) return OK; 336 if (res == NOSUCHVAR) return OK;
337 if (res != STATE_OK) { 337 if (res != STATE_OK) {
338 printf ("Invalid response received from host\n"); 338 printf (_("Invalid response received from host\n"));
339 return ERROR; 339 return ERROR;
340 } 340 }
341 341
@@ -395,7 +395,7 @@ get_ups_variable (const char *varname, char *buf, size_t buflen)
395 if (process_tcp_request 395 if (process_tcp_request
396 (server_address, server_port, send_buffer, temp_buffer, 396 (server_address, server_port, send_buffer, temp_buffer,
397 sizeof (temp_buffer)) != STATE_OK) { 397 sizeof (temp_buffer)) != STATE_OK) {
398 printf ("Invalid response received from host\n"); 398 printf (_("Invalid response received from host\n"));
399 return ERROR; 399 return ERROR;
400 } 400 }
401 401
@@ -403,7 +403,7 @@ get_ups_variable (const char *varname, char *buf, size_t buflen)
403 len = strlen(ptr); 403 len = strlen(ptr);
404 if (len > 0 && ptr[len-1] == '\n') ptr[len-1]=0; 404 if (len > 0 && ptr[len-1] == '\n') ptr[len-1]=0;
405 if (strcmp (ptr, "ERR UNKNOWN-UPS") == 0) { 405 if (strcmp (ptr, "ERR UNKNOWN-UPS") == 0) {
406 printf ("CRITICAL - no such ups '%s' on that host\n", ups_name); 406 printf (_("CRITICAL - no such ups '%s' on that host\n"), ups_name);
407 return ERROR; 407 return ERROR;
408 } 408 }
409 409
@@ -413,19 +413,19 @@ get_ups_variable (const char *varname, char *buf, size_t buflen)
413 } 413 }
414 414
415 if (strcmp (ptr, "ERR DATA-STALE") == 0) { 415 if (strcmp (ptr, "ERR DATA-STALE") == 0) {
416 printf ("CRITICAL - UPS data is stale\n"); 416 printf (_("CRITICAL - UPS data is stale\n"));
417 return ERROR; 417 return ERROR;
418 } 418 }
419 419
420 if (strncmp (ptr, "ERR", 3) == 0) { 420 if (strncmp (ptr, "ERR", 3) == 0) {
421 printf ("Unknown error: %s\n", ptr); 421 printf (_("Unknown error: %s\n"), ptr);
422 return ERROR; 422 return ERROR;
423 } 423 }
424 424
425 ptr = temp_buffer + strlen (varname) + strlen (ups_name) + 6; 425 ptr = temp_buffer + strlen (varname) + strlen (ups_name) + 6;
426 len = strlen(ptr); 426 len = strlen(ptr);
427 if (len < 2 || ptr[0] != '"' || ptr[len-1] != '"') { 427 if (len < 2 || ptr[0] != '"' || ptr[len-1] != '"') {
428 printf ("Error: unable to parse variable\n"); 428 printf (_("Error: unable to parse variable\n"));
429 return ERROR; 429 return ERROR;
430 } 430 }
431 strncpy (buf, ptr+1, len - 2); 431 strncpy (buf, ptr+1, len - 2);
@@ -481,9 +481,7 @@ process_arguments (int argc, char **argv)
481 481
482 switch (c) { 482 switch (c) {
483 case '?': /* help */ 483 case '?': /* help */
484 printf (_("%s: Unknown argument: %s\n\n"), progname, optarg); 484 usage2 (_("Unknown argument"), optarg);
485 print_usage ();
486 exit (STATE_UNKNOWN);
487 case 'H': /* hostname */ 485 case 'H': /* hostname */
488 if (is_host (optarg)) { 486 if (is_host (optarg)) {
489 server_address = optarg; 487 server_address = optarg;
@@ -503,7 +501,7 @@ process_arguments (int argc, char **argv)
503 server_port = atoi (optarg); 501 server_port = atoi (optarg);
504 } 502 }
505 else { 503 else {
506 usage2 ("Port must be a positive integer", optarg); 504 usage2 (_("Port must be a positive integer"), optarg);
507 } 505 }
508 break; 506 break;
509 case 'c': /* critical time threshold */ 507 case 'c': /* critical time threshold */
@@ -512,7 +510,7 @@ process_arguments (int argc, char **argv)
512 check_crit = TRUE; 510 check_crit = TRUE;
513 } 511 }
514 else { 512 else {
515 usage2 ("Critical time must be a positive integer", optarg); 513 usage2 (_("Critical time must be a positive integer"), optarg);
516 } 514 }
517 break; 515 break;
518 case 'w': /* warning time threshold */ 516 case 'w': /* warning time threshold */
@@ -521,7 +519,7 @@ process_arguments (int argc, char **argv)
521 check_warn = TRUE; 519 check_warn = TRUE;
522 } 520 }
523 else { 521 else {
524 usage2 ("Warning time must be a positive integer", optarg); 522 usage2 (_("Warning time must be a positive integer"), optarg);
525 } 523 }
526 break; 524 break;
527 case 'v': /* variable */ 525 case 'v': /* variable */
@@ -534,14 +532,14 @@ process_arguments (int argc, char **argv)
534 else if (!strcmp (optarg, "LOADPCT")) 532 else if (!strcmp (optarg, "LOADPCT"))
535 check_variable = UPS_LOADPCT; 533 check_variable = UPS_LOADPCT;
536 else 534 else
537 usage2 ("Unrecognized UPS variable", optarg); 535 usage2 (_("Unrecognized UPS variable"), optarg);
538 break; 536 break;
539 case 't': /* timeout */ 537 case 't': /* timeout */
540 if (is_intnonneg (optarg)) { 538 if (is_intnonneg (optarg)) {
541 socket_timeout = atoi (optarg); 539 socket_timeout = atoi (optarg);
542 } 540 }
543 else { 541 else {
544 usage ("Time interval must be a positive integer\n"); 542 usage4 (_("Timeout interval must be a positive integer"));
545 } 543 }
546 break; 544 break;
547 case 'V': /* version */ 545 case 'V': /* version */
@@ -568,19 +566,17 @@ process_arguments (int argc, char **argv)
568} 566}
569 567
570 568
571
572int 569int
573validate_arguments (void) 570validate_arguments (void)
574{ 571{
575 if (! ups_name) { 572 if (! ups_name) {
576 printf ("Error : no ups indicated\n"); 573 printf (_("Error : no ups indicated\n"));
577 return ERROR; 574 return ERROR;
578 } 575 }
579 return OK; 576 return OK;
580} 577}
581 578
582 579
583
584void 580void
585print_help (void) 581print_help (void)
586{ 582{
@@ -641,7 +637,6 @@ http://www.networkupstools.org\n\n"));
641} 637}
642 638
643 639
644
645void 640void
646print_usage (void) 641print_usage (void)
647{ 642{
diff --git a/plugins/check_users.c b/plugins/check_users.c
index d1b4f01..25d04ed 100644
--- a/plugins/check_users.c
+++ b/plugins/check_users.c
@@ -140,9 +140,7 @@ process_arguments (int argc, char **argv)
140 140
141 switch (c) { 141 switch (c) {
142 case '?': /* print short usage statement if args not parsable */ 142 case '?': /* print short usage statement if args not parsable */
143 printf (_("%s: Unknown argument: %s\n\n"), progname, optarg); 143 usage2 (_("Unknown argument"), optarg);
144 print_usage ();
145 exit (STATE_UNKNOWN);
146 case 'h': /* help */ 144 case 'h': /* help */
147 print_help (); 145 print_help ();
148 exit (STATE_OK); 146 exit (STATE_OK);
@@ -151,13 +149,13 @@ process_arguments (int argc, char **argv)
151 exit (STATE_OK); 149 exit (STATE_OK);
152 case 'c': /* critical */ 150 case 'c': /* critical */
153 if (!is_intnonneg (optarg)) 151 if (!is_intnonneg (optarg))
154 usage (_("Critical threshold must be a positive integer\n")); 152 usage4 (_("Critical threshold must be a positive integer"));
155 else 153 else
156 cusers = atoi (optarg); 154 cusers = atoi (optarg);
157 break; 155 break;
158 case 'w': /* warning */ 156 case 'w': /* warning */
159 if (!is_intnonneg (optarg)) 157 if (!is_intnonneg (optarg))
160 usage (_("Warning threshold must be a positive integer\n")); 158 usage4 (_("Warning threshold must be a positive integer"));
161 else 159 else
162 wusers = atoi (optarg); 160 wusers = atoi (optarg);
163 break; 161 break;
@@ -167,14 +165,14 @@ process_arguments (int argc, char **argv)
167 c = optind; 165 c = optind;
168 if (wusers == -1 && argc > c) { 166 if (wusers == -1 && argc > c) {
169 if (is_intnonneg (argv[c]) == FALSE) 167 if (is_intnonneg (argv[c]) == FALSE)
170 usage (_("Warning threshold must be a positive integer\n")); 168 usage4 (_("Warning threshold must be a positive integer"));
171 else 169 else
172 wusers = atoi (argv[c++]); 170 wusers = atoi (argv[c++]);
173 } 171 }
174 172
175 if (cusers == -1 && argc > c) { 173 if (cusers == -1 && argc > c) {
176 if (is_intnonneg (argv[c]) == FALSE) 174 if (is_intnonneg (argv[c]) == FALSE)
177 usage (_("Warning threshold must be a positive integer\n")); 175 usage4 (_("Warning threshold must be a positive integer"));
178 else 176 else
179 cusers = atoi (argv[c]); 177 cusers = atoi (argv[c]);
180 } 178 }
@@ -210,7 +208,6 @@ system and generates an error if the number exceeds the thresholds specified.\n"
210} 208}
211 209
212 210
213
214void 211void
215print_usage (void) 212print_usage (void)
216{ 213{
diff --git a/plugins/negate.c b/plugins/negate.c
index e35ddb9..d08c3a3 100644
--- a/plugins/negate.c
+++ b/plugins/negate.c
@@ -174,9 +174,7 @@ process_arguments (int argc, char **argv)
174 174
175 switch (c) { 175 switch (c) {
176 case '?': /* help */ 176 case '?': /* help */
177 printf (_("%s: Unknown argument: %s\n\n"), progname, optarg); 177 usage2 (_("Unknown argument"), optarg);
178 print_usage ();
179 exit (STATE_UNKNOWN);
180 break; 178 break;
181 case 'h': /* help */ 179 case 'h': /* help */
182 print_help (); 180 print_help ();
diff --git a/plugins/netutils.c b/plugins/netutils.c
index 6702b13..1231c1e 100644
--- a/plugins/netutils.c
+++ b/plugins/netutils.c
@@ -45,9 +45,9 @@ void
45socket_timeout_alarm_handler (int sig) 45socket_timeout_alarm_handler (int sig)
46{ 46{
47 if (sig == SIGALRM) 47 if (sig == SIGALRM)
48 printf ("CRITICAL - Socket timeout after %d seconds\n", socket_timeout); 48 printf (_("CRITICAL - Socket timeout after %d seconds\n"), socket_timeout);
49 else 49 else
50 printf ("CRITICAL - Abnormal timeout after %d seconds\n", socket_timeout); 50 printf (_("CRITICAL - Abnormal timeout after %d seconds\n"), socket_timeout);
51 51
52 exit (STATE_CRITICAL); 52 exit (STATE_CRITICAL);
53} 53}
@@ -106,7 +106,7 @@ process_tcp_request2 (const char *server_address, int server_port,
106 106
107 send_result = send (sd, send_buffer, strlen (send_buffer), 0); 107 send_result = send (sd, send_buffer, strlen (send_buffer), 0);
108 if (send_result<0 || (size_t)send_result!=strlen(send_buffer)) { 108 if (send_result<0 || (size_t)send_result!=strlen(send_buffer)) {
109 printf ("Send failed\n"); 109 printf (_("Send failed\n"));
110 result = STATE_WARNING; 110 result = STATE_WARNING;
111 } 111 }
112 112
@@ -123,7 +123,7 @@ process_tcp_request2 (const char *server_address, int server_port,
123 if (!FD_ISSET (sd, &readfds)) { /* it hasn't */ 123 if (!FD_ISSET (sd, &readfds)) { /* it hasn't */
124 if (!recv_length) { 124 if (!recv_length) {
125 strcpy (recv_buffer, ""); 125 strcpy (recv_buffer, "");
126 printf ("No data was received from host!\n"); 126 printf (_("No data was received from host!\n"));
127 result = STATE_WARNING; 127 result = STATE_WARNING;
128 } 128 }
129 else { /* this one failed, but previous ones worked */ 129 else { /* this one failed, but previous ones worked */
@@ -239,7 +239,7 @@ my_connect (const char *host_name, int port, int *sd, int proto)
239 SOCK_DGRAM : SOCK_STREAM, res->ai_protocol); 239 SOCK_DGRAM : SOCK_STREAM, res->ai_protocol);
240 240
241 if (*sd < 0) { 241 if (*sd < 0) {
242 printf ("Socket creation failed\n"); 242 printf (_("Socket creation failed\n"));
243 freeaddrinfo (res); 243 freeaddrinfo (res);
244 return STATE_UNKNOWN; 244 return STATE_UNKNOWN;
245 } 245 }
@@ -315,7 +315,7 @@ send_request (int sd, int proto, const char *send_buffer, char *recv_buffer, int
315 315
316 send_result = send (sd, send_buffer, strlen (send_buffer), 0); 316 send_result = send (sd, send_buffer, strlen (send_buffer), 0);
317 if (send_result<0 || (size_t)send_result!=strlen(send_buffer)) { 317 if (send_result<0 || (size_t)send_result!=strlen(send_buffer)) {
318 printf ("Send failed\n"); 318 printf (_("Send failed\n"));
319 result = STATE_WARNING; 319 result = STATE_WARNING;
320 } 320 }
321 321
@@ -330,7 +330,7 @@ send_request (int sd, int proto, const char *send_buffer, char *recv_buffer, int
330 /* make sure some data has arrived */ 330 /* make sure some data has arrived */
331 if (!FD_ISSET (sd, &readfds)) { 331 if (!FD_ISSET (sd, &readfds)) {
332 strcpy (recv_buffer, ""); 332 strcpy (recv_buffer, "");
333 printf ("No data was received from host!\n"); 333 printf (_("No data was received from host!\n"));
334 result = STATE_WARNING; 334 result = STATE_WARNING;
335 } 335 }
336 336
@@ -339,7 +339,7 @@ send_request (int sd, int proto, const char *send_buffer, char *recv_buffer, int
339 if (recv_result == -1) { 339 if (recv_result == -1) {
340 strcpy (recv_buffer, ""); 340 strcpy (recv_buffer, "");
341 if (proto != IPPROTO_TCP) 341 if (proto != IPPROTO_TCP)
342 printf ("Receive failed\n"); 342 printf (_("Receive failed\n"));
343 result = STATE_WARNING; 343 result = STATE_WARNING;
344 } 344 }
345 else 345 else
diff --git a/plugins/popen.c b/plugins/popen.c
index 94ad583..04eb388 100644
--- a/plugins/popen.c
+++ b/plugins/popen.c
@@ -114,7 +114,7 @@ spopen (const char *cmdstring)
114 argv = malloc (sizeof(char*)*argc); 114 argv = malloc (sizeof(char*)*argc);
115 115
116 if (argv == NULL) { 116 if (argv == NULL) {
117 printf ("Could not malloc argv array in popen()\n"); 117 printf (_("Could not malloc argv array in popen()\n"));
118 return NULL; 118 return NULL;
119 } 119 }
120 120
@@ -124,7 +124,7 @@ spopen (const char *cmdstring)
124 str += strspn (str, " \t\r\n"); /* trim any leading whitespace */ 124 str += strspn (str, " \t\r\n"); /* trim any leading whitespace */
125 125
126 if (i >= argc - 2) { 126 if (i >= argc - 2) {
127 printf ("CRITICAL - You need more args!!!\n"); 127 printf (_("CRITICAL - You need more args!!!\n"));
128 return (NULL); 128 return (NULL);
129 } 129 }
130 130
@@ -239,17 +239,19 @@ static int openmax = 0;
239#define OPEN_MAX_GUESS 256 /* if OPEN_MAX is indeterminate */ 239#define OPEN_MAX_GUESS 256 /* if OPEN_MAX is indeterminate */
240 /* no guarantee this is adequate */ 240 /* no guarantee this is adequate */
241 241
242
242void 243void
243popen_timeout_alarm_handler (int signo) 244popen_timeout_alarm_handler (int signo)
244{ 245{
245 if (signo == SIGALRM) { 246 if (signo == SIGALRM) {
246 kill (childpid[fileno (child_process)], SIGKILL); 247 kill (childpid[fileno (child_process)], SIGKILL);
247 printf ("CRITICAL - Plugin timed out after %d seconds\n", 248 printf (_("CRITICAL - Plugin timed out after %d seconds\n"),
248 timeout_interval); 249 timeout_interval);
249 exit (STATE_CRITICAL); 250 exit (STATE_CRITICAL);
250 } 251 }
251} 252}
252 253
254
253int 255int
254open_max (void) 256open_max (void)
255{ 257{
@@ -259,14 +261,13 @@ open_max (void)
259 if (errno == 0) 261 if (errno == 0)
260 openmax = OPEN_MAX_GUESS; /* it's indeterminate */ 262 openmax = OPEN_MAX_GUESS; /* it's indeterminate */
261 else 263 else
262 err_sys ("sysconf error for _SC_OPEN_MAX"); 264 err_sys (_("sysconf error for _SC_OPEN_MAX"));
263 } 265 }
264 } 266 }
265 return (openmax); 267 return (openmax);
266} 268}
267 269
268 270
269
270/* Fatal error related to a system call. 271/* Fatal error related to a system call.
271 * Print a message and die. */ 272 * Print a message and die. */
272 273
@@ -309,4 +310,3 @@ rtrim (char *str, const char *tok)
309 } 310 }
310 return str; 311 return str;
311} 312}
312
diff --git a/plugins/popen.h b/plugins/popen.h
index b758579..1f4e413 100644
--- a/plugins/popen.h
+++ b/plugins/popen.h
@@ -1,3 +1,9 @@
1/******************************************************************************
2 *
3 * $Id$
4 *
5 ******************************************************************************/
6
1FILE *spopen (const char *); 7FILE *spopen (const char *);
2int spclose (FILE *); 8int spclose (FILE *);
3RETSIGTYPE popen_timeout_alarm_handler (int); 9RETSIGTYPE popen_timeout_alarm_handler (int);
diff --git a/plugins/urlize.c b/plugins/urlize.c
index 3564e46..96bbdc0 100644
--- a/plugins/urlize.c
+++ b/plugins/urlize.c
@@ -71,9 +71,7 @@ main (int argc, char **argv)
71 break; 71 break;
72 case '?': 72 case '?':
73 default: 73 default:
74 printf (_("%s: Unknown argument: %s\n\n"), progname, optarg); 74 usage2 (_("Unknown argument"), optarg);
75 print_usage ();
76 exit (STATE_UNKNOWN);
77 } 75 }
78 } 76 }
79 77
diff --git a/plugins/utils.c b/plugins/utils.c
index b2948e6..b9a19d3 100644
--- a/plugins/utils.c
+++ b/plugins/utils.c
@@ -53,7 +53,7 @@ max_state (int a, int b)
53 53
54void usage (const char *msg) 54void usage (const char *msg)
55{ 55{
56 printf ("%s", msg); 56 printf ("%s\n", msg);
57 print_usage (); 57 print_usage ();
58 exit (STATE_UNKNOWN); 58 exit (STATE_UNKNOWN);
59} 59}
@@ -133,7 +133,7 @@ void
133timeout_alarm_handler (int signo) 133timeout_alarm_handler (int signo)
134{ 134{
135 if (signo == SIGALRM) { 135 if (signo == SIGALRM) {
136 printf ("CRITICAL - Plugin timed out after %d seconds\n", 136 printf (_("CRITICAL - Plugin timed out after %d seconds\n"),
137 timeout_interval); 137 timeout_interval);
138 exit (STATE_CRITICAL); 138 exit (STATE_CRITICAL);
139 } 139 }
@@ -430,7 +430,7 @@ strpcpy (char *dest, const char *src, const char *str)
430 if (dest == NULL || strlen (dest) < len) 430 if (dest == NULL || strlen (dest) < len)
431 dest = realloc (dest, len + 1); 431 dest = realloc (dest, len + 1);
432 if (dest == NULL) 432 if (dest == NULL)
433 die (STATE_UNKNOWN, "failed realloc in strpcpy\n"); 433 die (STATE_UNKNOWN, _("failed realloc in strpcpy\n"));
434 434
435 strncpy (dest, src, len); 435 strncpy (dest, src, len);
436 dest[len] = '\0'; 436 dest[len] = '\0';
@@ -472,7 +472,7 @@ strpcat (char *dest, const char *src, const char *str)
472 472
473 dest = realloc (dest, len + l2 + 1); 473 dest = realloc (dest, len + l2 + 1);
474 if (dest == NULL) 474 if (dest == NULL)
475 die (STATE_UNKNOWN, "failed malloc in strscat\n"); 475 die (STATE_UNKNOWN, _("failed malloc in strscat\n"));
476 476
477 strncpy (dest + len, src, l2); 477 strncpy (dest + len, src, l2);
478 dest[len + l2] = '\0'; 478 dest[len + l2] = '\0';
diff --git a/po/de.po b/po/de.po
index 95cd0aa..392092f 100644
--- a/po/de.po
+++ b/po/de.po
@@ -9,7 +9,7 @@ msgid ""
9msgstr "" 9msgstr ""
10"Project-Id-Version: nagiosplug\n" 10"Project-Id-Version: nagiosplug\n"
11"Report-Msgid-Bugs-To: \n" 11"Report-Msgid-Bugs-To: \n"
12"POT-Creation-Date: 2004-12-25 16:26+0100\n" 12"POT-Creation-Date: 2004-12-26 00:06+0100\n"
13"PO-Revision-Date: 2004-12-23 17:46+0100\n" 13"PO-Revision-Date: 2004-12-23 17:46+0100\n"
14"Last-Translator: <>\n" 14"Last-Translator: <>\n"
15"Language-Team: English <en@li.org>\n" 15"Language-Team: English <en@li.org>\n"
@@ -19,7 +19,7 @@ msgstr ""
19"Plural-Forms: nplurals=2; plural=(n > 1);X-Generator: KBabel 1.3.1\n" 19"Plural-Forms: nplurals=2; plural=(n > 1);X-Generator: KBabel 1.3.1\n"
20 20
21#: plugins/check_by_ssh.c:72 plugins/check_dhcp.c:251 plugins/check_dig.c:72 21#: plugins/check_by_ssh.c:72 plugins/check_dhcp.c:251 plugins/check_dig.c:72
22#: plugins/check_disk.c:167 plugins/check_dns.c:75 plugins/check_dummy.c:44 22#: plugins/check_disk.c:167 plugins/check_dns.c:75 plugins/check_dummy.c:43
23#: plugins/check_fping.c:73 plugins/check_game.c:69 plugins/check_hpjd.c:89 23#: plugins/check_fping.c:73 plugins/check_game.c:69 plugins/check_hpjd.c:89
24#: plugins/check_http.c:149 plugins/check_ldap.c:92 plugins/check_load.c:78 24#: plugins/check_http.c:149 plugins/check_ldap.c:92 plugins/check_load.c:78
25#: plugins/check_mrtgtraf.c:66 plugins/check_mysql.c:63 25#: plugins/check_mrtgtraf.c:66 plugins/check_mysql.c:63
@@ -43,7 +43,7 @@ msgstr "Konnte SIGALRM nicht erhalten"
43#: plugins/check_fping.c:87 plugins/check_game.c:86 plugins/check_hpjd.c:114 43#: plugins/check_fping.c:87 plugins/check_game.c:86 plugins/check_hpjd.c:114
44#: plugins/check_nagios.c:103 plugins/check_procs.c:137 44#: plugins/check_nagios.c:103 plugins/check_procs.c:137
45#: plugins/check_snmp.c:172 plugins/check_swap.c:151 plugins/check_users.c:59 45#: plugins/check_snmp.c:172 plugins/check_swap.c:151 plugins/check_users.c:59
46#: plugins/negate.c:97 plugins/urlize.c:90 46#: plugins/negate.c:97 plugins/urlize.c:88
47#, c-format 47#, c-format
48msgid "Could not open pipe: %s\n" 48msgid "Could not open pipe: %s\n"
49msgstr "Pipe: %s konnte nicht geöffnet werden\n" 49msgstr "Pipe: %s konnte nicht geöffnet werden\n"
@@ -52,7 +52,7 @@ msgstr "Pipe: %s konnte nicht geöffnet werden\n"
52#: plugins/check_fping.c:93 plugins/check_hpjd.c:120 plugins/check_load.c:115 52#: plugins/check_fping.c:93 plugins/check_hpjd.c:120 plugins/check_load.c:115
53#: plugins/check_nagios.c:109 plugins/check_procs.c:143 53#: plugins/check_nagios.c:109 plugins/check_procs.c:143
54#: plugins/check_snmp.c:178 plugins/check_swap.c:157 plugins/check_users.c:65 54#: plugins/check_snmp.c:178 plugins/check_swap.c:157 plugins/check_users.c:65
55#: plugins/negate.c:102 plugins/urlize.c:96 55#: plugins/negate.c:102 plugins/urlize.c:94
56#, c-format 56#, c-format
57msgid "Could not open stderr for %s\n" 57msgid "Could not open stderr for %s\n"
58msgstr "Konnte stderr nicht öffnen für: %s\n" 58msgstr "Konnte stderr nicht öffnen für: %s\n"
@@ -62,41 +62,55 @@ msgstr "Konnte stderr nicht öffnen für: %s\n"
62msgid "SSH WARNING: could not open %s\n" 62msgid "SSH WARNING: could not open %s\n"
63msgstr "SSH WARNING: Konnte %s nicht öffnen\n" 63msgstr "SSH WARNING: Konnte %s nicht öffnen\n"
64 64
65#: plugins/check_by_ssh.c:216 plugins/check_http.c:254 65#: plugins/check_by_ssh.c:216 plugins/check_dig.c:217 plugins/check_disk.c:441
66#: plugins/check_dns.c:315 plugins/check_fping.c:245 plugins/check_game.c:201
67#: plugins/check_hpjd.c:336 plugins/check_http.c:254 plugins/check_ldap.c:315
68#: plugins/check_load.c:227 plugins/check_mrtg.c:236
69#: plugins/check_mrtgtraf.c:263 plugins/check_mysql.c:214
70#: plugins/check_nagios.c:222 plugins/check_nt.c:490
71#: plugins/check_nwstat.c:763 plugins/check_overcr.c:327
72#: plugins/check_pgsql.c:212 plugins/check_ping.c:197
73#: plugins/check_procs.c:346 plugins/check_radius.c:221
74#: plugins/check_real.c:354 plugins/check_smtp.c:374 plugins/check_snmp.c:401
75#: plugins/check_ssh.c:113 plugins/check_swap.c:423 plugins/check_tcp.c:465
76#: plugins/check_time.c:219 plugins/check_udp.c:149 plugins/check_ups.c:484
77#: plugins/check_users.c:143 plugins/check_ide_smart.c:209
78#: plugins/negate.c:177 plugins/urlize.c:74
66#, fuzzy 79#, fuzzy
67msgid "Unknown argument" 80msgid "Unknown argument"
68msgstr "" 81msgstr ""
69"%s: Unbekanntes Argument: %s\n" 82"%s: Unbekanntes Argument: %s\n"
70"\n" 83"\n"
71 84
72#: plugins/check_by_ssh.c:228 plugins/check_dig.c:266 plugins/check_disk.c:308 85#: plugins/check_by_ssh.c:228 plugins/check_dig.c:264 plugins/check_disk.c:308
73#: plugins/check_http.c:266 plugins/check_ldap.c:268 plugins/check_pgsql.c:223 86#: plugins/check_http.c:266 plugins/check_ldap.c:268 plugins/check_pgsql.c:221
74#: plugins/check_procs.c:357 plugins/check_radius.c:198 87#: plugins/check_procs.c:355 plugins/check_radius.c:198
75#: plugins/check_radius.c:270 plugins/check_snmp.c:447 plugins/check_ssh.c:127 88#: plugins/check_radius.c:268 plugins/check_real.c:344
76#: plugins/check_tcp.c:519 plugins/check_time.c:292 plugins/check_udp.c:182 89#: plugins/check_smtp.c:354 plugins/check_snmp.c:445 plugins/check_ssh.c:125
77#: plugins/negate.c:190 90#: plugins/check_tcp.c:517 plugins/check_time.c:290 plugins/check_udp.c:180
91#: plugins/check_ups.c:542 plugins/negate.c:188
78msgid "Timeout interval must be a positive integer" 92msgid "Timeout interval must be a positive integer"
79msgstr "Timeout interval muss ein positiver Integer sein" 93msgstr "Timeout interval muss ein positiver Integer sein"
80 94
81#: plugins/check_by_ssh.c:234 plugins/check_by_ssh.c:293 95#: plugins/check_by_ssh.c:234 plugins/check_by_ssh.c:293
82#: plugins/check_dig.c:231 plugins/check_dig.c:288 plugins/check_dns.c:340 96#: plugins/check_dig.c:229 plugins/check_dig.c:286 plugins/check_dns.c:337
83#: plugins/check_dns.c:349 plugins/check_fping.c:259 plugins/check_hpjd.c:324 97#: plugins/check_dns.c:346 plugins/check_fping.c:257 plugins/check_hpjd.c:323
84#: plugins/check_hpjd.c:349 plugins/check_mysql.c:190 98#: plugins/check_hpjd.c:346 plugins/check_mysql.c:189
85#: plugins/check_mysql.c:230 plugins/check_pgsql.c:241 99#: plugins/check_mysql.c:227 plugins/check_pgsql.c:239
86#: plugins/check_ping.c:270 plugins/check_ping.c:393 100#: plugins/check_ping.c:268 plugins/check_ping.c:391
87#: plugins/check_radius.c:235 plugins/check_real.c:302 101#: plugins/check_radius.c:233 plugins/check_real.c:302
88#: plugins/check_real.c:366 plugins/check_smtp.c:292 plugins/check_smtp.c:386 102#: plugins/check_real.c:364 plugins/check_smtp.c:292 plugins/check_smtp.c:384
89#: plugins/check_ssh.c:146 plugins/check_tcp.c:489 plugins/check_time.c:230 103#: plugins/check_ssh.c:144 plugins/check_tcp.c:487 plugins/check_time.c:228
90#: plugins/check_time.c:305 plugins/check_udp.c:163 plugins/check_udp.c:204 104#: plugins/check_time.c:303 plugins/check_udp.c:161 plugins/check_udp.c:202
91#: plugins/check_ups.c:492 plugins/check_ups.c:561 105#: plugins/check_ups.c:490 plugins/check_ups.c:559
92msgid "Invalid hostname/address" 106msgid "Invalid hostname/address"
93msgstr "Ungültige(r) Hostname/Adresse" 107msgstr "Ungültige(r) Hostname/Adresse"
94 108
95#: plugins/check_by_ssh.c:239 plugins/check_dig.c:239 109#: plugins/check_by_ssh.c:239 plugins/check_dig.c:237
96#: plugins/check_pgsql.c:247 plugins/check_radius.c:207 110#: plugins/check_pgsql.c:245 plugins/check_radius.c:207
97#: plugins/check_radius.c:243 plugins/check_real.c:315 111#: plugins/check_radius.c:241 plugins/check_real.c:315
98#: plugins/check_smtp.c:299 plugins/check_tcp.c:525 plugins/check_time.c:286 112#: plugins/check_smtp.c:299 plugins/check_tcp.c:523 plugins/check_time.c:284
99#: plugins/check_udp.c:188 113#: plugins/check_udp.c:186 plugins/check_ups.c:504
100msgid "Port must be a positive integer" 114msgid "Port must be a positive integer"
101msgstr "Port muss ein positiver Integer sein" 115msgstr "Port muss ein positiver Integer sein"
102 116
@@ -491,6 +505,11 @@ msgid ""
491" Print version information\n" 505" Print version information\n"
492msgstr "" 506msgstr ""
493 507
508#: plugins/check_dig.c:84 plugins/check_dig.c:86
509#, c-format
510msgid "Looking for: '%s'\n"
511msgstr ""
512
494#: plugins/check_dig.c:130 513#: plugins/check_dig.c:130
495msgid "Server not found in ANSWER SECTION" 514msgid "Server not found in ANSWER SECTION"
496msgstr "Server nicht gefunden in ANSWER SECTION" 515msgstr "Server nicht gefunden in ANSWER SECTION"
@@ -513,34 +532,15 @@ msgstr "nicht existierender Host/Domain"
513msgid "%.3f seconds response time (%s)" 532msgid "%.3f seconds response time (%s)"
514msgstr "%.3f Sekunden Antwortzeit (%s)" 533msgstr "%.3f Sekunden Antwortzeit (%s)"
515 534
516#: plugins/check_dig.c:217 plugins/check_disk.c:441 plugins/check_dns.c:316 535#: plugins/check_dig.c:248
517#: plugins/check_fping.c:245 plugins/check_game.c:202 plugins/check_hpjd.c:337
518#: plugins/check_ldap.c:315 plugins/check_load.c:227 plugins/check_mrtg.c:236
519#: plugins/check_mrtgtraf.c:263 plugins/check_mysql.c:215
520#: plugins/check_overcr.c:335 plugins/check_pgsql.c:212
521#: plugins/check_ping.c:197 plugins/check_procs.c:346
522#: plugins/check_radius.c:221 plugins/check_real.c:354
523#: plugins/check_smtp.c:374 plugins/check_snmp.c:401 plugins/check_ssh.c:113
524#: plugins/check_swap.c:423 plugins/check_tcp.c:465 plugins/check_time.c:219
525#: plugins/check_udp.c:149 plugins/check_ups.c:484 plugins/check_users.c:143
526#: plugins/check_ide_smart.c:209 plugins/negate.c:177 plugins/urlize.c:74
527#, c-format
528msgid ""
529"%s: Unknown argument: %s\n"
530"\n"
531msgstr ""
532"%s: Unbekanntes Argument: %s\n"
533"\n"
534
535#: plugins/check_dig.c:250
536msgid "Warning interval must be a positive integer" 536msgid "Warning interval must be a positive integer"
537msgstr "Warning interval muss ein positiver Integer sein" 537msgstr "Warning interval muss ein positiver Integer sein"
538 538
539#: plugins/check_dig.c:258 539#: plugins/check_dig.c:256
540msgid "Critical interval must be a positive integer" 540msgid "Critical interval must be a positive integer"
541msgstr "Critical interval muss ein positiver Integer sein" 541msgstr "Critical interval muss ein positiver Integer sein"
542 542
543#: plugins/check_dig.c:321 543#: plugins/check_dig.c:319
544#, c-format 544#, c-format
545msgid "" 545msgid ""
546"Test the DNS service on the specified host using dig\n" 546"Test the DNS service on the specified host using dig\n"
@@ -549,7 +549,7 @@ msgstr ""
549"Testet den DNS Dienst auf dem angegebenen Host mit dig\n" 549"Testet den DNS Dienst auf dem angegebenen Host mit dig\n"
550"\n" 550"\n"
551 551
552#: plugins/check_dig.c:329 552#: plugins/check_dig.c:327
553#, c-format 553#, c-format
554msgid "" 554msgid ""
555" -l, --lookup=STRING\n" 555" -l, --lookup=STRING\n"
@@ -558,7 +558,7 @@ msgstr ""
558" -l, --lookup=STRING\n" 558" -l, --lookup=STRING\n"
559" zu prüfender Hostname\n" 559" zu prüfender Hostname\n"
560 560
561#: plugins/check_dig.c:333 561#: plugins/check_dig.c:331
562#, c-format 562#, c-format
563msgid "" 563msgid ""
564" -T, --record_type=STRING\n" 564" -T, --record_type=STRING\n"
@@ -567,7 +567,7 @@ msgstr ""
567" -T, --record_type=STRING\n" 567" -T, --record_type=STRING\n"
568" abzufragender Datensatztyp (Default: A)\n" 568" abzufragender Datensatztyp (Default: A)\n"
569 569
570#: plugins/check_dig.c:337 570#: plugins/check_dig.c:335
571#, c-format 571#, c-format
572msgid "" 572msgid ""
573" -a, --expected_address=STRING\n" 573" -a, --expected_address=STRING\n"
@@ -591,7 +591,7 @@ msgstr ""
591msgid "%s [%s not found]" 591msgid "%s [%s not found]"
592msgstr "%s [%s nicht gefunden]" 592msgstr "%s [%s nicht gefunden]"
593 593
594#: plugins/check_disk.c:325 594#: plugins/check_disk.c:325 plugins/check_swap.c:391
595msgid "Warning threshold must be integer or percentage!" 595msgid "Warning threshold must be integer or percentage!"
596msgstr "Warning threshold muss ein Integer oder ein Prozentwert sein" 596msgstr "Warning threshold muss ein Integer oder ein Prozentwert sein"
597 597
@@ -609,12 +609,17 @@ msgstr "unbekannter unit type: %s\n"
609msgid "failed allocating storage for '%s'\n" 609msgid "failed allocating storage for '%s'\n"
610msgstr "konnte keinen Speicher für '%s' reservieren\n" 610msgstr "konnte keinen Speicher für '%s' reservieren\n"
611 611
612#: plugins/check_disk.c:502 612#: plugins/check_disk.c:489
613#, c-format
614msgid " for %s\n"
615msgstr ""
616
617#: plugins/check_disk.c:500
613#, c-format 618#, c-format
614msgid "INPUT ERROR: No thresholds specified" 619msgid "INPUT ERROR: No thresholds specified"
615msgstr "FEHLER: Kein Schwellwert angegeben" 620msgstr "FEHLER: Kein Schwellwert angegeben"
616 621
617#: plugins/check_disk.c:508 622#: plugins/check_disk.c:506
618#, c-format 623#, c-format
619msgid "" 624msgid ""
620"INPUT ERROR: C_DFP (%f) should be less than W_DFP (%.1f) and both should be " 625"INPUT ERROR: C_DFP (%f) should be less than W_DFP (%.1f) and both should be "
@@ -623,7 +628,7 @@ msgstr ""
623"INPUT ERROR: C_DFP (%f) sollte kleiner sein als W_DFP (%.1f) und beide " 628"INPUT ERROR: C_DFP (%f) sollte kleiner sein als W_DFP (%.1f) und beide "
624"sollten zwischen 0 und 100 Prozent liegen" 629"sollten zwischen 0 und 100 Prozent liegen"
625 630
626#: plugins/check_disk.c:515 631#: plugins/check_disk.c:513
627#, c-format 632#, c-format
628msgid "" 633msgid ""
629"INPUT ERROR: C_DF (%lu) should be less than W_DF (%lu) and both should be " 634"INPUT ERROR: C_DF (%lu) should be less than W_DF (%lu) and both should be "
@@ -632,7 +637,7 @@ msgstr ""
632"INPUT ERROR: C_DF (%lu) sollte kleiner sein als W_DF (%lu) und beide sollten " 637"INPUT ERROR: C_DF (%lu) sollte kleiner sein als W_DF (%lu) und beide sollten "
633"größer als 0 sein" 638"größer als 0 sein"
634 639
635#: plugins/check_disk.c:579 640#: plugins/check_disk.c:577
636#, c-format 641#, c-format
637msgid "" 642msgid ""
638"This plugin checks the amount of used disk space on a mounted file system\n" 643"This plugin checks the amount of used disk space on a mounted file system\n"
@@ -645,7 +650,7 @@ msgstr ""
645"unterschritten wird.\n" 650"unterschritten wird.\n"
646"\n" 651"\n"
647 652
648#: plugins/check_disk.c:587 653#: plugins/check_disk.c:585
649#, c-format 654#, c-format
650msgid "" 655msgid ""
651" -w, --warning=INTEGER\n" 656" -w, --warning=INTEGER\n"
@@ -670,7 +675,7 @@ msgstr ""
670" -C, --clear\n" 675" -C, --clear\n"
671" Schwellwerte löschen\n" 676" Schwellwerte löschen\n"
672 677
673#: plugins/check_disk.c:599 678#: plugins/check_disk.c:597
674#, c-format 679#, c-format
675msgid "" 680msgid ""
676" -u, --units=STRING\n" 681" -u, --units=STRING\n"
@@ -681,7 +686,7 @@ msgid ""
681" Same as '--units MB'\n" 686" Same as '--units MB'\n"
682msgstr "" 687msgstr ""
683 688
684#: plugins/check_disk.c:607 689#: plugins/check_disk.c:605
685#, c-format 690#, c-format
686msgid "" 691msgid ""
687" -l, --local\n" 692" -l, --local\n"
@@ -698,7 +703,7 @@ msgid ""
698" Display only devices/mountpoints with errors\n" 703" Display only devices/mountpoints with errors\n"
699msgstr "" 704msgstr ""
700 705
701#: plugins/check_disk.c:627 706#: plugins/check_disk.c:625
702msgid "" 707msgid ""
703"Examples:\n" 708"Examples:\n"
704" check_disk -w 10% -c 5% -p /tmp -p /var -C -w 100000 -c 50000 -p /\n" 709" check_disk -w 10% -c 5% -p /tmp -p /var -C -w 100000 -c 50000 -p /\n"
@@ -717,6 +722,10 @@ msgstr "Warnung Plugin Fehler"
717msgid "DNS CRITICAL - '%s' returned empty host name string\n" 722msgid "DNS CRITICAL - '%s' returned empty host name string\n"
718msgstr "DNS CRITICAL - '%s' hat einen leeren Hostnamen zurückgegeben\n" 723msgstr "DNS CRITICAL - '%s' hat einen leeren Hostnamen zurückgegeben\n"
719 724
725#: plugins/check_dns.c:138
726msgid "Non-authoritative answer:"
727msgstr ""
728
720#: plugins/check_dns.c:171 729#: plugins/check_dns.c:171
721msgid "nslookup returned error status" 730msgid "nslookup returned error status"
722msgstr "nslookup hat einen Fehler zurückgegeben" 731msgstr "nslookup hat einen Fehler zurückgegeben"
@@ -736,7 +745,7 @@ msgstr "Erwartet: %s aber: %s erhalten"
736msgid "server %s is not authoritative for %s" 745msgid "server %s is not authoritative for %s"
737msgstr "Server %s ist nicht authoritativ für %s" 746msgstr "Server %s ist nicht authoritativ für %s"
738 747
739#: plugins/check_dns.c:202 plugins/check_dummy.c:60 plugins/check_http.c:930 748#: plugins/check_dns.c:202 plugins/check_dummy.c:59 plugins/check_http.c:930
740#: plugins/check_http.c:1183 plugins/check_procs.c:279 749#: plugins/check_http.c:1183 plugins/check_procs.c:279
741#, c-format 750#, c-format
742msgid "OK" 751msgid "OK"
@@ -808,13 +817,13 @@ msgstr "Netzwerk nicht erreichbar\n"
808msgid "DNS failure for %s\n" 817msgid "DNS failure for %s\n"
809msgstr "DNS Fehler für %s\n" 818msgstr "DNS Fehler für %s\n"
810 819
811#: plugins/check_dns.c:333 plugins/check_dns.c:343 plugins/check_dns.c:352 820#: plugins/check_dns.c:330 plugins/check_dns.c:340 plugins/check_dns.c:349
812#: plugins/check_dns.c:357 plugins/check_dns.c:370 plugins/check_dns.c:381 821#: plugins/check_dns.c:354 plugins/check_dns.c:367 plugins/check_dns.c:378
813#: plugins/check_game.c:219 plugins/check_game.c:227 822#: plugins/check_game.c:216 plugins/check_game.c:224
814msgid "Input buffer overflow\n" 823msgid "Input buffer overflow\n"
815msgstr "Eingabe-Pufferüberlauf\n" 824msgstr "Eingabe-Pufferüberlauf\n"
816 825
817#: plugins/check_dns.c:377 826#: plugins/check_dns.c:374
818#, c-format 827#, c-format
819msgid "" 828msgid ""
820"Invalid hostname/address: %s\n" 829"Invalid hostname/address: %s\n"
@@ -823,7 +832,7 @@ msgstr ""
823"Ungültige(r) Name/Adresse: %s\n" 832"Ungültige(r) Name/Adresse: %s\n"
824"\n" 833"\n"
825 834
826#: plugins/check_dns.c:409 835#: plugins/check_dns.c:404
827#, c-format 836#, c-format
828msgid "" 837msgid ""
829"This plugin uses the nslookup program to obtain the IP address\n" 838"This plugin uses the nslookup program to obtain the IP address\n"
@@ -838,7 +847,7 @@ msgstr ""
838"/etc/resolv.conf genutzt.\n" 847"/etc/resolv.conf genutzt.\n"
839"\n" 848"\n"
840 849
841#: plugins/check_dns.c:419 850#: plugins/check_dns.c:414
842#, c-format 851#, c-format
843msgid "" 852msgid ""
844"-H, --hostname=HOST\n" 853"-H, --hostname=HOST\n"
@@ -851,31 +860,31 @@ msgid ""
851" Optionally expect the DNS server to be authoritative for the lookup\n" 860" Optionally expect the DNS server to be authoritative for the lookup\n"
852msgstr "" 861msgstr ""
853 862
854#: plugins/check_dummy.c:54 863#: plugins/check_dummy.c:53
855msgid "Arguments to check_dummy must be an integer" 864msgid "Arguments to check_dummy must be an integer"
856msgstr "Argument für check_dummy muss ein Integer sein" 865msgstr "Argument für check_dummy muss ein Integer sein"
857 866
858#: plugins/check_dummy.c:63 plugins/check_http.c:932 plugins/check_procs.c:281 867#: plugins/check_dummy.c:62 plugins/check_http.c:932 plugins/check_procs.c:281
859#, c-format 868#, c-format
860msgid "WARNING" 869msgid "WARNING"
861msgstr "WARNING" 870msgstr "WARNING"
862 871
863#: plugins/check_dummy.c:66 plugins/check_http.c:934 plugins/check_procs.c:286 872#: plugins/check_dummy.c:65 plugins/check_http.c:934 plugins/check_procs.c:286
864#, c-format 873#, c-format
865msgid "CRITICAL" 874msgid "CRITICAL"
866msgstr "CRITICAL" 875msgstr "CRITICAL"
867 876
868#: plugins/check_dummy.c:69 plugins/check_http.c:928 877#: plugins/check_dummy.c:68 plugins/check_http.c:928
869#, c-format 878#, c-format
870msgid "UNKNOWN" 879msgid "UNKNOWN"
871msgstr "UNKNOWN" 880msgstr "UNKNOWN"
872 881
873#: plugins/check_dummy.c:72 882#: plugins/check_dummy.c:71
874#, c-format 883#, c-format
875msgid "Status %d is not a supported error state\n" 884msgid "Status %d is not a supported error state\n"
876msgstr "Status %d ist kein bekannter Fehlerstatus\n" 885msgstr "Status %d ist kein bekannter Fehlerstatus\n"
877 886
878#: plugins/check_dummy.c:94 887#: plugins/check_dummy.c:93
879#, c-format 888#, c-format
880msgid "" 889msgid ""
881"This plugin will simply return the state corresponding to the numeric value\n" 890"This plugin will simply return the state corresponding to the numeric value\n"
@@ -908,33 +917,29 @@ msgstr "FPING %s - %s (verloren=%.0f%%, rta=%f ms)|%s %s\n"
908msgid "FPING %s - %s (loss=%.0f%% )|%s\n" 917msgid "FPING %s - %s (loss=%.0f%% )|%s\n"
909msgstr "FPING %s - %s (verloren=%.0f%% )|%s\n" 918msgstr "FPING %s - %s (verloren=%.0f%% )|%s\n"
910 919
911#: plugins/check_fping.c:293 920#: plugins/check_fping.c:291
912msgid "Packet size must be a positive integer" 921msgid "Packet size must be a positive integer"
913msgstr "Packet size muss ein positiver Integer sein" 922msgstr "Packet size muss ein positiver Integer sein"
914 923
915#: plugins/check_fping.c:299 924#: plugins/check_fping.c:297
916msgid "Packet count must be a positive integer" 925msgid "Packet count must be a positive integer"
917msgstr "Packet count muss ein positiver Integer sein" 926msgstr "Packet count muss ein positiver Integer sein"
918 927
919#: plugins/check_fping.c:306 928#: plugins/check_fping.c:303 plugins/check_time.c:307 plugins/check_udp.c:207
920msgid "" 929msgid "Hostname was not supplied"
921"Hostname was not supplied\n"
922"\n"
923msgstr "" 930msgstr ""
924"Kein Hostname angegeben\n"
925"\n"
926 931
927#: plugins/check_fping.c:327 932#: plugins/check_fping.c:323
928#, c-format 933#, c-format
929msgid "%s: Only one threshold may be packet loss (%s)\n" 934msgid "%s: Only one threshold may be packet loss (%s)\n"
930msgstr "%s: Nur ein Wert darf für packet loss angegeben werden (%s)\n" 935msgstr "%s: Nur ein Wert darf für packet loss angegeben werden (%s)\n"
931 936
932#: plugins/check_fping.c:331 937#: plugins/check_fping.c:327
933#, c-format 938#, c-format
934msgid "%s: Only one threshold must be packet loss (%s)\n" 939msgid "%s: Only one threshold must be packet loss (%s)\n"
935msgstr "%s: Nur ein Wert darf für packet loss angegeben werden (%s)\n" 940msgstr "%s: Nur ein Wert darf für packet loss angegeben werden (%s)\n"
936 941
937#: plugins/check_fping.c:364 942#: plugins/check_fping.c:359
938#, c-format 943#, c-format
939msgid "" 944msgid ""
940"This plugin will use the /bin/fping command to ping the specified host\n" 945"This plugin will use the /bin/fping command to ping the specified host\n"
@@ -943,7 +948,7 @@ msgid ""
943"\n" 948"\n"
944msgstr "" 949msgstr ""
945 950
946#: plugins/check_fping.c:373 951#: plugins/check_fping.c:368
947#, c-format 952#, c-format
948msgid "" 953msgid ""
949" -H, --hostname=HOST\n" 954" -H, --hostname=HOST\n"
@@ -959,7 +964,7 @@ msgid ""
959" Number of ICMP packets to send (default: %d)\n" 964" Number of ICMP packets to send (default: %d)\n"
960msgstr "" 965msgstr ""
961 966
962#: plugins/check_fping.c:389 967#: plugins/check_fping.c:384
963#, c-format 968#, c-format
964msgid "" 969msgid ""
965"\n" 970"\n"
@@ -973,12 +978,27 @@ msgstr ""
973msgid "CRITICAL - Host type parameter incorrect!\n" 978msgid "CRITICAL - Host type parameter incorrect!\n"
974msgstr "CRITICAL - Host type parameter unkorrekt!\n" 979msgstr "CRITICAL - Host type parameter unkorrekt!\n"
975 980
976#: plugins/check_game.c:305 981#: plugins/check_game.c:126
982#, fuzzy, c-format
983msgid "CRITICAL - Host not found\n"
984msgstr "CRITICAL - Text nicht gefunden%s|%s %s\n"
985
986#: plugins/check_game.c:130
987#, fuzzy, c-format
988msgid "CRITICAL - Game server down or unavailable\n"
989msgstr "CRITICAL - Serverdatum \"%100s\" konnte nicht verarbeitet werden"
990
991#: plugins/check_game.c:134
992#, fuzzy, c-format
993msgid "CRITICAL - Game server timeout\n"
994msgstr "CRITICAL - Konnte kein Serverzertifikat erhalten\n"
995
996#: plugins/check_game.c:300
977#, c-format 997#, c-format
978msgid "This plugin tests game server connections with the specified host." 998msgid "This plugin tests game server connections with the specified host."
979msgstr "Dieses plugin testet Gameserververbindungen zum angegebenen Host." 999msgstr "Dieses plugin testet Gameserververbindungen zum angegebenen Host."
980 1000
981#: plugins/check_game.c:311 1001#: plugins/check_game.c:306
982#, c-format 1002#, c-format
983msgid "" 1003msgid ""
984"<game> = Game type that is recognised by qstat (without the leading " 1004"<game> = Game type that is recognised by qstat (without the leading "
@@ -990,7 +1010,7 @@ msgid ""
990" [ping_field] = Field number in raw qstat output that contains ping time\n" 1010" [ping_field] = Field number in raw qstat output that contains ping time\n"
991msgstr "" 1011msgstr ""
992 1012
993#: plugins/check_game.c:321 1013#: plugins/check_game.c:316
994#, c-format 1014#, c-format
995msgid "" 1015msgid ""
996"\n" 1016"\n"
@@ -1052,7 +1072,7 @@ msgstr "Papierfehler"
1052msgid "Printer ok - (%s)\n" 1072msgid "Printer ok - (%s)\n"
1053msgstr "Printer ok - (%s)\n" 1073msgstr "Printer ok - (%s)\n"
1054 1074
1055#: plugins/check_hpjd.c:381 1075#: plugins/check_hpjd.c:376
1056#, c-format 1076#, c-format
1057msgid "" 1077msgid ""
1058"This plugin tests the STATUS of an HP printer with a JetDirect card.\n" 1078"This plugin tests the STATUS of an HP printer with a JetDirect card.\n"
@@ -1064,7 +1084,7 @@ msgstr ""
1064"Net-snmp muss auf dem ausführenden Computer installiert sein.\n" 1084"Net-snmp muss auf dem ausführenden Computer installiert sein.\n"
1065"\n" 1085"\n"
1066 1086
1067#: plugins/check_hpjd.c:389 1087#: plugins/check_hpjd.c:384
1068#, c-format 1088#, c-format
1069msgid "" 1089msgid ""
1070" -C, --community=STRING\n" 1090" -C, --community=STRING\n"
@@ -1075,7 +1095,7 @@ msgstr ""
1075msgid "HTTP CRITICAL - Could not make SSL connection\n" 1095msgid "HTTP CRITICAL - Could not make SSL connection\n"
1076msgstr "HTTP CRITICAL - Konnte keine SSL Verbindung herstellen\n" 1096msgstr "HTTP CRITICAL - Konnte keine SSL Verbindung herstellen\n"
1077 1097
1078#: plugins/check_http.c:177 plugins/check_http.c:739 1098#: plugins/check_http.c:177 plugins/check_http.c:739 plugins/check_tcp.c:268
1079#, c-format 1099#, c-format
1080msgid "CRITICAL - Cannot retrieve server certificate.\n" 1100msgid "CRITICAL - Cannot retrieve server certificate.\n"
1081msgstr "CRITICAL - Konnte kein Serverzertifikat erhalten\n" 1101msgstr "CRITICAL - Konnte kein Serverzertifikat erhalten\n"
@@ -1093,7 +1113,7 @@ msgstr "Warning threshold Integer sein"
1093msgid "Invalid option - SSL is not available" 1113msgid "Invalid option - SSL is not available"
1094msgstr "Ungültige Option - SSL ist nicht verfügbar\n" 1114msgstr "Ungültige Option - SSL ist nicht verfügbar\n"
1095 1115
1096#: plugins/check_http.c:309 1116#: plugins/check_http.c:309 plugins/check_tcp.c:576
1097msgid "Invalid certificate expiration period" 1117msgid "Invalid certificate expiration period"
1098msgstr "Ungültiger Zertifikatsablauftermin" 1118msgstr "Ungültiger Zertifikatsablauftermin"
1099 1119
@@ -1115,7 +1135,8 @@ msgstr ""
1115msgid "Could Not Compile Regular Expression: %s" 1135msgid "Could Not Compile Regular Expression: %s"
1116msgstr "" 1136msgstr ""
1117 1137
1118#: plugins/check_http.c:404 plugins/check_smtp.c:364 plugins/check_tcp.c:484 1138#: plugins/check_http.c:404 plugins/check_smtp.c:364 plugins/check_ssh.c:136
1139#: plugins/check_tcp.c:482
1119msgid "IPv6 support not available" 1140msgid "IPv6 support not available"
1120msgstr "IPv6 Unterstützung nicht vorhanden" 1141msgstr "IPv6 Unterstützung nicht vorhanden"
1121 1142
@@ -1293,12 +1314,13 @@ msgstr "Fehlgeschlagen"
1293msgid "CRITICAL - Cannot create SSL context.\n" 1314msgid "CRITICAL - Cannot create SSL context.\n"
1294msgstr "CRITICAL - Konnte SSL Kontext nicht erzeugen.\n" 1315msgstr "CRITICAL - Konnte SSL Kontext nicht erzeugen.\n"
1295 1316
1296#: plugins/check_http.c:1214 plugins/check_tcp.c:642 1317#: plugins/check_http.c:1214 plugins/check_tcp.c:640
1297#, c-format 1318#, c-format
1298msgid "CRITICAL - Cannot initiate SSL handshake.\n" 1319msgid "CRITICAL - Cannot initiate SSL handshake.\n"
1299msgstr "CRITICAL - Konnte SSL Handshake nicht starten.\n" 1320msgstr "CRITICAL - Konnte SSL Handshake nicht starten.\n"
1300 1321
1301#: plugins/check_http.c:1244 plugins/check_http.c:1256 1322#: plugins/check_http.c:1244 plugins/check_http.c:1256 plugins/check_tcp.c:670
1323#: plugins/check_tcp.c:682
1302#, c-format 1324#, c-format
1303msgid "CRITICAL - Wrong time format in certificate.\n" 1325msgid "CRITICAL - Wrong time format in certificate.\n"
1304msgstr "" 1326msgstr ""
@@ -1462,6 +1484,192 @@ msgid ""
1462"the certificate is expired.\n" 1484"the certificate is expired.\n"
1463msgstr "" 1485msgstr ""
1464 1486
1487#: plugins/check_icmp.c:313
1488#, c-format
1489msgid "Root access needed (for raw sockets)\n"
1490msgstr ""
1491
1492#: plugins/check_icmp.c:319
1493msgid "icmp: unknown protocol"
1494msgstr ""
1495
1496#: plugins/check_icmp.c:325
1497msgid "Can't create raw socket"
1498msgstr ""
1499
1500#: plugins/check_icmp.c:337
1501msgid "Unable to allocate memory for host name list\n"
1502msgstr ""
1503
1504#: plugins/check_icmp.c:362 plugins/check_icmp.c:367 plugins/check_icmp.c:546
1505#: plugins/check_icmp.c:551
1506#, fuzzy
1507msgid "Failed to allocate memory for hostname"
1508msgstr "konnte keinen Speicher für '%s' reservieren\n"
1509
1510#: plugins/check_icmp.c:378 plugins/check_icmp.c:385
1511#, c-format
1512msgid "Illegal threshold pair specified for -%c"
1513msgstr ""
1514
1515#: plugins/check_icmp.c:392 plugins/check_icmp.c:399 plugins/check_icmp.c:421
1516#, c-format
1517msgid "Option -%c requires integer argument\n"
1518msgstr ""
1519
1520#: plugins/check_icmp.c:406 plugins/check_icmp.c:414
1521#, c-format
1522msgid "Option -%c requires positive non-zero integer argument\n"
1523msgstr ""
1524
1525#: plugins/check_icmp.c:470
1526#, c-format
1527msgid "Option flag -%c specified, but not recognized\n"
1528msgstr ""
1529
1530#: plugins/check_icmp.c:497
1531#, c-format
1532msgid "%s: these options are too risky for mere mortals.\n"
1533msgstr ""
1534
1535#: plugins/check_icmp.c:498
1536#, c-format
1537msgid "%s: You need i >= %u and r < %u\n"
1538msgstr ""
1539
1540#: plugins/check_icmp.c:500
1541#, c-format
1542msgid "Current settings; i = %d, r = %d\n"
1543msgstr ""
1544
1545#: plugins/check_icmp.c:506
1546#, c-format
1547msgid "%s: data size %u not valid, must be between %u and %u\n"
1548msgstr ""
1549
1550#: plugins/check_icmp.c:513
1551#, c-format
1552msgid "%s: backoff factor %.1f not valid, must be between %.1f and %.1f\n"
1553msgstr ""
1554
1555#: plugins/check_icmp.c:520
1556#, c-format
1557msgid "%s: count %u not valid, must be less than %u\n"
1558msgstr ""
1559
1560#: plugins/check_icmp.c:539
1561#, c-format
1562msgid "Generate flag requires command line parameters beyond switches\n"
1563msgstr ""
1564
1565#: plugins/check_icmp.c:568
1566#, c-format
1567msgid ""
1568"No hosts to work with!\n"
1569"\n"
1570msgstr ""
1571
1572#: plugins/check_icmp.c:574
1573msgid "Can't malloc array of hosts"
1574msgstr ""
1575
1576#: plugins/check_icmp.c:706
1577#, c-format
1578msgid "%s is down (lost 100%%)"
1579msgstr ""
1580
1581#: plugins/check_icmp.c:757
1582#, c-format
1583msgid "No hostaddress specified.\n"
1584msgstr ""
1585
1586#: plugins/check_icmp.c:768
1587#, c-format
1588msgid "OK - All %d hosts are alive\n"
1589msgstr ""
1590
1591#: plugins/check_icmp.c:771
1592#, fuzzy, c-format
1593msgid "CRITICAL - %d of %d hosts are alive\n"
1594msgstr "CRITICAL - Serverdatum \"%100s\" konnte nicht verarbeitet werden"
1595
1596#: plugins/check_icmp.c:787
1597msgid "Can't malloc ping packet"
1598msgstr ""
1599
1600#: plugins/check_icmp.c:811
1601#, c-format
1602msgid "%s error while sending ping: %s\n"
1603msgstr ""
1604
1605#: plugins/check_icmp.c:863
1606#, c-format
1607msgid "Received packet too short for ICMP (%d bytes from %s)\n"
1608msgstr ""
1609
1610#: plugins/check_icmp.c:906
1611#, c-format
1612msgid "%s : duplicate for [%d], %d bytes, %s ms"
1613msgstr ""
1614
1615#: plugins/check_icmp.c:916
1616#, c-format
1617msgid "%s : duplicate for [%d], %d bytes, %s ms\n"
1618msgstr ""
1619
1620#: plugins/check_icmp.c:945
1621#, c-format
1622msgid "ICMP Unreachable (Invalid Code) from %s for ICMP Echo sent to %s"
1623msgstr ""
1624
1625#: plugins/check_icmp.c:950 plugins/check_icmp.c:974
1626#, c-format
1627msgid "ICMP Unreachable from %s for ICMP Echo sent to %s"
1628msgstr ""
1629
1630#: plugins/check_icmp.c:1059
1631#, fuzzy, c-format
1632msgid "%s address not found\n"
1633msgstr "%s [%s nicht gefunden]"
1634
1635#: plugins/check_icmp.c:1067
1636#, fuzzy, c-format
1637msgid "%s has no address data\n"
1638msgstr "Nameserver %s hat keine Datensätze\n"
1639
1640#: plugins/check_icmp.c:1100
1641msgid "Can't allocate some space for a string"
1642msgstr ""
1643
1644#: plugins/check_icmp.c:1119
1645msgid "Can't allocate HOST_ENTRY"
1646msgstr ""
1647
1648#: plugins/check_icmp.c:1132
1649msgid "Can't allocate resp_times array"
1650msgstr ""
1651
1652#: plugins/check_icmp.c:1196
1653msgid "malloc() failed!"
1654msgstr ""
1655
1656#: plugins/check_icmp.c:1213
1657#, c-format
1658msgid "%s: %s : A network error occurred\n"
1659msgstr ""
1660
1661#: plugins/check_icmp.c:1279
1662msgid "select() in u_sleep:"
1663msgstr ""
1664
1665#: plugins/check_icmp.c:1309
1666msgid "select() in recvfrom_wto"
1667msgstr ""
1668
1669#: plugins/check_icmp.c:1316
1670msgid "recvfrom"
1671msgstr ""
1672
1465#: plugins/check_icmp.c:1371 1673#: plugins/check_icmp.c:1371
1466#, c-format 1674#, c-format
1467msgid "" 1675msgid ""
@@ -1503,6 +1711,26 @@ msgstr ""
1503msgid "Could not set protocol version %d\n" 1711msgid "Could not set protocol version %d\n"
1504msgstr "" 1712msgstr ""
1505 1713
1714#: plugins/check_ldap.c:137
1715#, fuzzy, c-format
1716msgid "Could not init TLS at port %i!\n"
1717msgstr "Konnte stderr nicht öffnen für: %s\n"
1718
1719#: plugins/check_ldap.c:141
1720#, c-format
1721msgid "TLS not supported by the libraries!\n"
1722msgstr ""
1723
1724#: plugins/check_ldap.c:160
1725#, fuzzy, c-format
1726msgid "Could not init startTLS at port %i!\n"
1727msgstr "Konnte stderr nicht öffnen für: %s\n"
1728
1729#: plugins/check_ldap.c:164
1730#, c-format
1731msgid "startTLS not supported by the library, needs LDAPv3!\n"
1732msgstr ""
1733
1506#: plugins/check_ldap.c:174 1734#: plugins/check_ldap.c:174
1507#, c-format 1735#, c-format
1508msgid "Could not bind to the ldap-server\n" 1736msgid "Could not bind to the ldap-server\n"
@@ -1518,19 +1746,19 @@ msgstr ""
1518msgid "LDAP %s - %.3f seconds response time|%s\n" 1746msgid "LDAP %s - %.3f seconds response time|%s\n"
1519msgstr "" 1747msgstr ""
1520 1748
1521#: plugins/check_ldap.c:311 plugins/check_ping.c:221 plugins/check_ssh.c:138 1749#: plugins/check_ldap.c:311 plugins/check_ping.c:219
1522msgid "IPv6 support not available\n" 1750msgid "IPv6 support not available\n"
1523msgstr "" 1751msgstr ""
1524 1752
1525#: plugins/check_ldap.c:335 1753#: plugins/check_ldap.c:334
1526msgid "please specify the host name\n" 1754msgid "Please specify the host name\n"
1527msgstr "" 1755msgstr ""
1528 1756
1529#: plugins/check_ldap.c:338 1757#: plugins/check_ldap.c:337
1530msgid "please specify the LDAP base\n" 1758msgid "Please specify the LDAP base\n"
1531msgstr "" 1759msgstr ""
1532 1760
1533#: plugins/check_ldap.c:365 1761#: plugins/check_ldap.c:362
1534#, c-format 1762#, c-format
1535msgid "" 1763msgid ""
1536" -a [--attr]\n" 1764" -a [--attr]\n"
@@ -1543,7 +1771,7 @@ msgid ""
1543" ldap password (if required)\n" 1771" ldap password (if required)\n"
1544msgstr "" 1772msgstr ""
1545 1773
1546#: plugins/check_ldap.c:376 1774#: plugins/check_ldap.c:373
1547#, c-format 1775#, c-format
1548msgid "" 1776msgid ""
1549" -2 [--ver2]\n" 1777" -2 [--ver2]\n"
@@ -1586,56 +1814,56 @@ msgstr ""
1586msgid "Critical threshold must be float or float triplet!\n" 1814msgid "Critical threshold must be float or float triplet!\n"
1587msgstr "" 1815msgstr ""
1588 1816
1589#: plugins/check_load.c:273 1817#: plugins/check_load.c:271
1590msgid "Warning threshold for 1-minute load average is not specified\n" 1818msgid "Warning threshold for 1-minute load average is not specified\n"
1591msgstr "" 1819msgstr ""
1592 1820
1593#: plugins/check_load.c:275 1821#: plugins/check_load.c:273
1594msgid "Warning threshold for 5-minute load average is not specified\n" 1822msgid "Warning threshold for 5-minute load average is not specified\n"
1595msgstr "" 1823msgstr ""
1596 1824
1597#: plugins/check_load.c:277 1825#: plugins/check_load.c:275
1598msgid "Warning threshold for 15-minute load average is not specified\n" 1826msgid "Warning threshold for 15-minute load average is not specified\n"
1599msgstr "" 1827msgstr ""
1600 1828
1601#: plugins/check_load.c:279 1829#: plugins/check_load.c:277
1602msgid "Critical threshold for 1-minute load average is not specified\n" 1830msgid "Critical threshold for 1-minute load average is not specified\n"
1603msgstr "" 1831msgstr ""
1604 1832
1605#: plugins/check_load.c:281 1833#: plugins/check_load.c:279
1606msgid "Critical threshold for 5-minute load average is not specified\n" 1834msgid "Critical threshold for 5-minute load average is not specified\n"
1607msgstr "" 1835msgstr ""
1608 1836
1609#: plugins/check_load.c:283 1837#: plugins/check_load.c:281
1610msgid "Critical threshold for 15-minute load average is not specified\n" 1838msgid "Critical threshold for 15-minute load average is not specified\n"
1611msgstr "" 1839msgstr ""
1612 1840
1613#: plugins/check_load.c:285 1841#: plugins/check_load.c:283
1614msgid "" 1842msgid ""
1615"Parameter inconsistency: 1-minute \"warning load\" greater than \"critical " 1843"Parameter inconsistency: 1-minute \"warning load\" greater than \"critical "
1616"load\".\n" 1844"load\".\n"
1617msgstr "" 1845msgstr ""
1618 1846
1619#: plugins/check_load.c:287 1847#: plugins/check_load.c:285
1620msgid "" 1848msgid ""
1621"Parameter inconsistency: 5-minute \"warning load\" greater than \"critical " 1849"Parameter inconsistency: 5-minute \"warning load\" greater than \"critical "
1622"load\".\n" 1850"load\".\n"
1623msgstr "" 1851msgstr ""
1624 1852
1625#: plugins/check_load.c:289 1853#: plugins/check_load.c:287
1626msgid "" 1854msgid ""
1627"Parameter inconsistency: 15-minute \"warning load\" greater than \"critical " 1855"Parameter inconsistency: 15-minute \"warning load\" greater than \"critical "
1628"load\".\n" 1856"load\".\n"
1629msgstr "" 1857msgstr ""
1630 1858
1631#: plugins/check_load.c:303 1859#: plugins/check_load.c:301
1632#, c-format 1860#, c-format
1633msgid "" 1861msgid ""
1634"This plugin tests the current system load average.\n" 1862"This plugin tests the current system load average.\n"
1635"\n" 1863"\n"
1636msgstr "" 1864msgstr ""
1637 1865
1638#: plugins/check_load.c:309 1866#: plugins/check_load.c:307
1639#, c-format 1867#, c-format
1640msgid "" 1868msgid ""
1641" -w, --warning=WLOAD1,WLOAD5,WLOAD15\n" 1869" -w, --warning=WLOAD1,WLOAD5,WLOAD15\n"
@@ -1679,22 +1907,22 @@ msgstr ""
1679msgid "Invalid variable number" 1907msgid "Invalid variable number"
1680msgstr "" 1908msgstr ""
1681 1909
1682#: plugins/check_mrtg.c:252 1910#: plugins/check_mrtg.c:250
1683#, c-format 1911#, c-format
1684msgid "" 1912msgid ""
1685"%s is not a valid expiration time\n" 1913"%s is not a valid expiration time\n"
1686"Use '%s -h' for additional help\n" 1914"Use '%s -h' for additional help\n"
1687msgstr "" 1915msgstr ""
1688 1916
1689#: plugins/check_mrtg.c:269 1917#: plugins/check_mrtg.c:267
1690msgid "Invalid variable number\n" 1918msgid "Invalid variable number\n"
1691msgstr "" 1919msgstr ""
1692 1920
1693#: plugins/check_mrtg.c:296 1921#: plugins/check_mrtg.c:294
1694msgid "You must supply the variable number" 1922msgid "You must supply the variable number"
1695msgstr "" 1923msgstr ""
1696 1924
1697#: plugins/check_mrtg.c:317 1925#: plugins/check_mrtg.c:315
1698#, c-format 1926#, c-format
1699msgid "" 1927msgid ""
1700"This plugin will check either the average or maximum value of one of the\n" 1928"This plugin will check either the average or maximum value of one of the\n"
@@ -1702,7 +1930,7 @@ msgid ""
1702"\n" 1930"\n"
1703msgstr "" 1931msgstr ""
1704 1932
1705#: plugins/check_mrtg.c:325 1933#: plugins/check_mrtg.c:323
1706#, c-format 1934#, c-format
1707msgid "" 1935msgid ""
1708" -F, --logfile=FILE\n" 1936" -F, --logfile=FILE\n"
@@ -1719,7 +1947,7 @@ msgid ""
1719" Threshold value for data to result in CRITICAL status\n" 1947" Threshold value for data to result in CRITICAL status\n"
1720msgstr "" 1948msgstr ""
1721 1949
1722#: plugins/check_mrtg.c:339 1950#: plugins/check_mrtg.c:337
1723#, c-format 1951#, c-format
1724msgid "" 1952msgid ""
1725" -l, --label=STRING\n" 1953" -l, --label=STRING\n"
@@ -1729,7 +1957,7 @@ msgid ""
1729" \"Bytes Per Second\", \"%% Utilization\")\n" 1957" \"Bytes Per Second\", \"%% Utilization\")\n"
1730msgstr "" 1958msgstr ""
1731 1959
1732#: plugins/check_mrtg.c:346 1960#: plugins/check_mrtg.c:344
1733#, c-format 1961#, c-format
1734msgid "" 1962msgid ""
1735"If the value exceeds the <vwl> threshold, a WARNING status is returned. If\n" 1963"If the value exceeds the <vwl> threshold, a WARNING status is returned. If\n"
@@ -1739,7 +1967,7 @@ msgid ""
1739"\n" 1967"\n"
1740msgstr "" 1968msgstr ""
1741 1969
1742#: plugins/check_mrtg.c:352 1970#: plugins/check_mrtg.c:350
1743#, c-format 1971#, c-format
1744msgid "" 1972msgid ""
1745"This plugin is useful for monitoring MRTG data that does not correspond to\n" 1973"This plugin is useful for monitoring MRTG data that does not correspond to\n"
@@ -1752,7 +1980,7 @@ msgid ""
1752"\n" 1980"\n"
1753msgstr "" 1981msgstr ""
1754 1982
1755#: plugins/check_mrtg.c:359 1983#: plugins/check_mrtg.c:357
1756#, c-format 1984#, c-format
1757msgid "" 1985msgid ""
1758"Notes:\n" 1986"Notes:\n"
@@ -1783,7 +2011,7 @@ msgstr ""
1783msgid "Traffic %s - %s\n" 2011msgid "Traffic %s - %s\n"
1784msgstr "" 2012msgstr ""
1785 2013
1786#: plugins/check_mrtgtraf.c:324 2014#: plugins/check_mrtgtraf.c:320
1787#, c-format 2015#, c-format
1788msgid "" 2016msgid ""
1789"\n" 2017"\n"
@@ -1796,7 +2024,7 @@ msgid ""
1796"\n" 2024"\n"
1797msgstr "" 2025msgstr ""
1798 2026
1799#: plugins/check_mrtgtraf.c:336 2027#: plugins/check_mrtgtraf.c:332
1800#, c-format 2028#, c-format
1801msgid "" 2029msgid ""
1802" -F, --filename=STRING\n" 2030" -F, --filename=STRING\n"
@@ -1811,7 +2039,7 @@ msgid ""
1811" Critical threshold pair \"<incoming>,<outgoing>\"\n" 2039" Critical threshold pair \"<incoming>,<outgoing>\"\n"
1812msgstr "" 2040msgstr ""
1813 2041
1814#: plugins/check_mrtgtraf.c:348 2042#: plugins/check_mrtgtraf.c:344
1815#, c-format 2043#, c-format
1816msgid "" 2044msgid ""
1817"Notes:\n" 2045"Notes:\n"
@@ -1824,12 +2052,32 @@ msgid ""
1824" for future enhancements of this plugin.\n" 2052" for future enhancements of this plugin.\n"
1825msgstr "" 2053msgstr ""
1826 2054
1827#: plugins/check_mysql.c:279 2055#: plugins/check_mysql.c:101
2056#, c-format
2057msgid "slave query error: %s\n"
2058msgstr ""
2059
2060#: plugins/check_mysql.c:107
2061#, c-format
2062msgid "slave store_result error: %s\n"
2063msgstr ""
2064
2065#: plugins/check_mysql.c:114
2066#, c-format
2067msgid "slave fetch row error: %s\n"
2068msgstr ""
2069
2070#: plugins/check_mysql.c:119
2071#, c-format
2072msgid "Slave running: %s"
2073msgstr ""
2074
2075#: plugins/check_mysql.c:274
1828#, c-format 2076#, c-format
1829msgid "This program tests connections to a mysql server\n" 2077msgid "This program tests connections to a mysql server\n"
1830msgstr "" 2078msgstr ""
1831 2079
1832#: plugins/check_mysql.c:287 2080#: plugins/check_mysql.c:282
1833#, c-format 2081#, c-format
1834msgid "" 2082msgid ""
1835" -d, --database=STRING\n" 2083" -d, --database=STRING\n"
@@ -1844,7 +2092,7 @@ msgid ""
1844" Check if the slave thread is running properly.\n" 2092" Check if the slave thread is running properly.\n"
1845msgstr "" 2093msgstr ""
1846 2094
1847#: plugins/check_mysql.c:299 2095#: plugins/check_mysql.c:294
1848#, c-format 2096#, c-format
1849msgid "" 2097msgid ""
1850"\n" 2098"\n"
@@ -1857,6 +2105,11 @@ msgstr ""
1857msgid "CRITICAL - Cannot open status log for reading!\n" 2105msgid "CRITICAL - Cannot open status log for reading!\n"
1858msgstr "" 2106msgstr ""
1859 2107
2108#: plugins/check_nagios.c:98
2109#, c-format
2110msgid "command: %s\n"
2111msgstr ""
2112
1860#: plugins/check_nagios.c:140 2113#: plugins/check_nagios.c:140
1861#, c-format 2114#, c-format
1862msgid "Found process: %s %s\n" 2115msgid "Found process: %s %s\n"
@@ -1872,35 +2125,22 @@ msgstr ""
1872msgid "Nagios %s: located %d process%s, status log updated %d second%s ago\n" 2125msgid "Nagios %s: located %d process%s, status log updated %d second%s ago\n"
1873msgstr "" 2126msgstr ""
1874 2127
1875#: plugins/check_nagios.c:209 plugins/check_nagios.c:243 2128#: plugins/check_nagios.c:209 plugins/check_nagios.c:240
1876#, c-format 2129#, fuzzy
1877msgid "" 2130msgid "Expiration time must be an integer (seconds)\n"
1878"Expiration time must be an integer (seconds)\n" 2131msgstr "skip lines muss ein Integer sein"
1879"Type '%s -h' for additional help\n"
1880msgstr ""
1881
1882#: plugins/check_nagios.c:223
1883#, c-format
1884msgid ""
1885"%s: Unknown argument: %c\n"
1886"\n"
1887msgstr ""
1888 2132
1889#: plugins/check_nagios.c:255 2133#: plugins/check_nagios.c:251
1890#, c-format 2134#, fuzzy
1891msgid "" 2135msgid "You must provide the status_log\n"
1892"You must provide the status_log\n" 2136msgstr "%s: Hostname muss angegeben werden\n"
1893"Type '%s -h' for additional help\n"
1894msgstr ""
1895 2137
1896#: plugins/check_nagios.c:259 2138#: plugins/check_nagios.c:254
1897#, c-format 2139#, fuzzy
1898msgid "" 2140msgid "You must provide a process string\n"
1899"You must provide a process string\n" 2141msgstr "%s: Hostname muss angegeben werden\n"
1900"Type '%s -h' for additional help\n"
1901msgstr ""
1902 2142
1903#: plugins/check_nagios.c:274 2143#: plugins/check_nagios.c:268
1904#, c-format 2144#, c-format
1905msgid "" 2145msgid ""
1906"This plugin checks the status of the Nagios process on the local\n" 2146"This plugin checks the status of the Nagios process on the local\n"
@@ -1911,7 +2151,7 @@ msgid ""
1911"\n" 2151"\n"
1912msgstr "" 2152msgstr ""
1913 2153
1914#: plugins/check_nagios.c:284 2154#: plugins/check_nagios.c:278
1915#, c-format 2155#, c-format
1916msgid "" 2156msgid ""
1917" -F, --filename=FILE\n" 2157" -F, --filename=FILE\n"
@@ -1922,7 +2162,7 @@ msgid ""
1922" Substring to search for in process arguments\n" 2162" Substring to search for in process arguments\n"
1923msgstr "" 2163msgstr ""
1924 2164
1925#: plugins/check_nagios.c:292 2165#: plugins/check_nagios.c:286
1926#, c-format 2166#, c-format
1927msgid "" 2167msgid ""
1928"Example:\n" 2168"Example:\n"
@@ -2019,19 +2259,20 @@ msgstr ""
2019msgid "Please specify a variable to check" 2259msgid "Please specify a variable to check"
2020msgstr "" 2260msgstr ""
2021 2261
2022#: plugins/check_nt.c:510 plugins/check_nwstat.c:782 2262#: plugins/check_nt.c:508
2023#: plugins/check_overcr.c:352 2263#, fuzzy
2024#, c-format 2264msgid "Server port must be an integer\n"
2025msgid "" 2265msgstr "skip lines muss ein Integer sein"
2026"Server port an integer (seconds)\n"
2027"Type '%s -h' for additional help\n"
2028msgstr ""
2029 2266
2030#: plugins/check_nt.c:563 2267#: plugins/check_nt.c:561
2031msgid "None" 2268msgid "None"
2032msgstr "" 2269msgstr ""
2033 2270
2034#: plugins/check_nt.c:620 2271#: plugins/check_nt.c:574
2272msgid "could not fetch information from server\n"
2273msgstr ""
2274
2275#: plugins/check_nt.c:618
2035#, c-format 2276#, c-format
2036msgid "" 2277msgid ""
2037"This plugin collects data from the NSClient service running on a\n" 2278"This plugin collects data from the NSClient service running on a\n"
@@ -2039,7 +2280,7 @@ msgid ""
2039"\n" 2280"\n"
2040msgstr "" 2281msgstr ""
2041 2282
2042#: plugins/check_nt.c:625 2283#: plugins/check_nt.c:623
2043#, c-format 2284#, c-format
2044msgid "" 2285msgid ""
2045"\n" 2286"\n"
@@ -2062,21 +2303,21 @@ msgid ""
2062" Print version information\n" 2303" Print version information\n"
2063msgstr "" 2304msgstr ""
2064 2305
2065#: plugins/check_nt.c:643 2306#: plugins/check_nt.c:641
2066#, c-format 2307#, c-format
2067msgid "" 2308msgid ""
2068"-v, --variable=STRING\n" 2309"-v, --variable=STRING\n"
2069" Variable to check. Valid variables are:\n" 2310" Variable to check. Valid variables are:\n"
2070msgstr "" 2311msgstr ""
2071 2312
2072#: plugins/check_nt.c:646 2313#: plugins/check_nt.c:644
2073#, c-format 2314#, c-format
2074msgid "" 2315msgid ""
2075" CLIENTVERSION = Get the NSClient version\n" 2316" CLIENTVERSION = Get the NSClient version\n"
2076" If -l <version> is specified, will return warning if versions differ.\n" 2317" If -l <version> is specified, will return warning if versions differ.\n"
2077msgstr "" 2318msgstr ""
2078 2319
2079#: plugins/check_nt.c:649 2320#: plugins/check_nt.c:647
2080#, c-format 2321#, c-format
2081msgid "" 2322msgid ""
2082" CPULOAD = Average CPU load on last x minutes.\n" 2323" CPULOAD = Average CPU load on last x minutes.\n"
@@ -2088,14 +2329,14 @@ msgid ""
2088" ie: -l 60,90,95,120,90,95\n" 2329" ie: -l 60,90,95,120,90,95\n"
2089msgstr "" 2330msgstr ""
2090 2331
2091#: plugins/check_nt.c:656 2332#: plugins/check_nt.c:654
2092#, c-format 2333#, c-format
2093msgid "" 2334msgid ""
2094" UPTIME = Get the uptime of the machine.\n" 2335" UPTIME = Get the uptime of the machine.\n"
2095" No specific parameters. No warning or critical threshold\n" 2336" No specific parameters. No warning or critical threshold\n"
2096msgstr "" 2337msgstr ""
2097 2338
2098#: plugins/check_nt.c:659 2339#: plugins/check_nt.c:657
2099#, c-format 2340#, c-format
2100msgid "" 2341msgid ""
2101" USEDDISKSPACE = Size and percentage of disk use.\n" 2342" USEDDISKSPACE = Size and percentage of disk use.\n"
@@ -2103,14 +2344,14 @@ msgid ""
2103" Warning and critical thresholds can be specified with -w and -c.\n" 2344" Warning and critical thresholds can be specified with -w and -c.\n"
2104msgstr "" 2345msgstr ""
2105 2346
2106#: plugins/check_nt.c:663 2347#: plugins/check_nt.c:661
2107#, c-format 2348#, c-format
2108msgid "" 2349msgid ""
2109" MEMUSE = Memory use.\n" 2350" MEMUSE = Memory use.\n"
2110" Warning and critical thresholds can be specified with -w and -c.\n" 2351" Warning and critical thresholds can be specified with -w and -c.\n"
2111msgstr "" 2352msgstr ""
2112 2353
2113#: plugins/check_nt.c:666 2354#: plugins/check_nt.c:664
2114#, c-format 2355#, c-format
2115msgid "" 2356msgid ""
2116" SERVICESTATE = Check the state of one or several services.\n" 2357" SERVICESTATE = Check the state of one or several services.\n"
@@ -2120,14 +2361,14 @@ msgid ""
2120"\t\t in the returned string.\n" 2361"\t\t in the returned string.\n"
2121msgstr "" 2362msgstr ""
2122 2363
2123#: plugins/check_nt.c:672 2364#: plugins/check_nt.c:670
2124#, c-format 2365#, c-format
2125msgid "" 2366msgid ""
2126" PROCSTATE = Check if one or several process are running.\n" 2367" PROCSTATE = Check if one or several process are running.\n"
2127" Same syntax as SERVICESTATE.\n" 2368" Same syntax as SERVICESTATE.\n"
2128msgstr "" 2369msgstr ""
2129 2370
2130#: plugins/check_nt.c:675 2371#: plugins/check_nt.c:673
2131#, c-format 2372#, c-format
2132msgid "" 2373msgid ""
2133" COUNTER = Check any performance counter of Windows NT/2000.\n" 2374" COUNTER = Check any performance counter of Windows NT/2000.\n"
@@ -2141,7 +2382,7 @@ msgid ""
2141" \"%%.f %%%% paging file used.\"\n" 2382" \"%%.f %%%% paging file used.\"\n"
2142msgstr "" 2383msgstr ""
2143 2384
2144#: plugins/check_nt.c:685 2385#: plugins/check_nt.c:683
2145#, c-format 2386#, c-format
2146msgid "" 2387msgid ""
2147"Notes:\n" 2388"Notes:\n"
@@ -2328,7 +2569,12 @@ msgstr ""
2328msgid "Nothing to check!\n" 2569msgid "Nothing to check!\n"
2329msgstr "" 2570msgstr ""
2330 2571
2331#: plugins/check_nwstat.c:910 2572#: plugins/check_nwstat.c:780 plugins/check_overcr.c:342
2573#, fuzzy
2574msgid "Server port an integer\n"
2575msgstr "skip lines muss ein Integer sein"
2576
2577#: plugins/check_nwstat.c:908
2332#, c-format 2578#, c-format
2333msgid "" 2579msgid ""
2334"This plugin attempts to contact the MRTGEXT NLM running on a\n" 2580"This plugin attempts to contact the MRTGEXT NLM running on a\n"
@@ -2336,7 +2582,7 @@ msgid ""
2336"\n" 2582"\n"
2337msgstr "" 2583msgstr ""
2338 2584
2339#: plugins/check_nwstat.c:920 2585#: plugins/check_nwstat.c:918
2340#, c-format 2586#, c-format
2341msgid "" 2587msgid ""
2342" -v, --variable=STRING\n" 2588" -v, --variable=STRING\n"
@@ -2349,7 +2595,7 @@ msgid ""
2349" UPTIME = server uptime\n" 2595" UPTIME = server uptime\n"
2350msgstr "" 2596msgstr ""
2351 2597
2352#: plugins/check_nwstat.c:930 2598#: plugins/check_nwstat.c:928
2353#, c-format 2599#, c-format
2354msgid "" 2600msgid ""
2355" LTCH = percent long term cache hits\n" 2601" LTCH = percent long term cache hits\n"
@@ -2359,7 +2605,7 @@ msgid ""
2359" TCB = dirty cache buffers as a percentage of the original\n" 2605" TCB = dirty cache buffers as a percentage of the original\n"
2360msgstr "" 2606msgstr ""
2361 2607
2362#: plugins/check_nwstat.c:937 2608#: plugins/check_nwstat.c:935
2363#, c-format 2609#, c-format
2364msgid "" 2610msgid ""
2365" OFILES = number of open files\n" 2611" OFILES = number of open files\n"
@@ -2371,7 +2617,7 @@ msgid ""
2371" VKNP<vol> = KB of not yet purgeable space on volume <vol>\n" 2617" VKNP<vol> = KB of not yet purgeable space on volume <vol>\n"
2372msgstr "" 2618msgstr ""
2373 2619
2374#: plugins/check_nwstat.c:946 2620#: plugins/check_nwstat.c:944
2375#, c-format 2621#, c-format
2376msgid "" 2622msgid ""
2377" LRUM = LRU sitting time in minutes\n" 2623" LRUM = LRU sitting time in minutes\n"
@@ -2384,7 +2630,7 @@ msgid ""
2384" SAPENTRIES<n> = number of entries in the SAP table for SAP type <n>\n" 2630" SAPENTRIES<n> = number of entries in the SAP table for SAP type <n>\n"
2385msgstr "" 2631msgstr ""
2386 2632
2387#: plugins/check_nwstat.c:956 2633#: plugins/check_nwstat.c:954
2388#, c-format 2634#, c-format
2389msgid "" 2635msgid ""
2390" TSYNC = timesync status \n" 2636" TSYNC = timesync status \n"
@@ -2394,7 +2640,7 @@ msgid ""
2394" (e.g. \"NLM:TSANDS.NLM\")\n" 2640" (e.g. \"NLM:TSANDS.NLM\")\n"
2395msgstr "" 2641msgstr ""
2396 2642
2397#: plugins/check_nwstat.c:963 2643#: plugins/check_nwstat.c:961
2398#, c-format 2644#, c-format
2399msgid "" 2645msgid ""
2400" -w, --warning=INTEGER\n" 2646" -w, --warning=INTEGER\n"
@@ -2405,7 +2651,7 @@ msgid ""
2405" Include server version string in results\n" 2651" Include server version string in results\n"
2406msgstr "" 2652msgstr ""
2407 2653
2408#: plugins/check_nwstat.c:973 2654#: plugins/check_nwstat.c:971
2409#, c-format 2655#, c-format
2410msgid "" 2656msgid ""
2411"\n" 2657"\n"
@@ -2471,7 +2717,7 @@ msgstr ""
2471msgid "Uptime %s - Up %d days %d hours %d minutes" 2717msgid "Uptime %s - Up %d days %d hours %d minutes"
2472msgstr "" 2718msgstr ""
2473 2719
2474#: plugins/check_overcr.c:418 2720#: plugins/check_overcr.c:406
2475#, c-format 2721#, c-format
2476msgid "" 2722msgid ""
2477"This plugin attempts to contact the Over-CR collector daemon running on the\n" 2723"This plugin attempts to contact the Over-CR collector daemon running on the\n"
@@ -2479,7 +2725,7 @@ msgid ""
2479"\n" 2725"\n"
2480msgstr "" 2726msgstr ""
2481 2727
2482#: plugins/check_overcr.c:428 2728#: plugins/check_overcr.c:416
2483#, c-format 2729#, c-format
2484msgid "" 2730msgid ""
2485"-v, --variable=STRING\n" 2731"-v, --variable=STRING\n"
@@ -2493,7 +2739,7 @@ msgid ""
2493" UPTIME = system uptime in seconds\n" 2739" UPTIME = system uptime in seconds\n"
2494msgstr "" 2740msgstr ""
2495 2741
2496#: plugins/check_overcr.c:439 2742#: plugins/check_overcr.c:427
2497#, c-format 2743#, c-format
2498msgid "" 2744msgid ""
2499" -w, --warning=INTEGER\n" 2745" -w, --warning=INTEGER\n"
@@ -2502,7 +2748,7 @@ msgid ""
2502" Threshold which will result in a critical status\n" 2748" Threshold which will result in a critical status\n"
2503msgstr "" 2749msgstr ""
2504 2750
2505#: plugins/check_overcr.c:447 2751#: plugins/check_overcr.c:435
2506#, c-format 2752#, c-format
2507msgid "" 2753msgid ""
2508"Notes:\n" 2754"Notes:\n"
@@ -2511,7 +2757,7 @@ msgid ""
2511"\n" 2757"\n"
2512msgstr "" 2758msgstr ""
2513 2759
2514#: plugins/check_overcr.c:452 2760#: plugins/check_overcr.c:440
2515#, c-format 2761#, c-format
2516msgid "" 2762msgid ""
2517" - This plugin requres that Eric Molitors' Over-CR collector daemon be\n" 2763" - This plugin requres that Eric Molitors' Over-CR collector daemon be\n"
@@ -2531,27 +2777,33 @@ msgstr ""
2531msgid " %s - database %s (%d sec.)|%s\n" 2777msgid " %s - database %s (%d sec.)|%s\n"
2532msgstr "" 2778msgstr ""
2533 2779
2534#: plugins/check_pgsql.c:229 plugins/check_pgsql.c:235 plugins/check_tcp.c:494 2780#: plugins/check_pgsql.c:227 plugins/check_tcp.c:492 plugins/check_time.c:265
2535#: plugins/check_time.c:267 plugins/check_time.c:279 plugins/check_udp.c:168 2781#: plugins/check_time.c:277 plugins/check_udp.c:166 plugins/check_users.c:152
2536msgid "Critical threshold must be a positive integer" 2782msgid "Critical threshold must be a positive integer"
2537msgstr "Critical threshold muss ein positiver Integer sein" 2783msgstr "Critical threshold muss ein positiver Integer sein"
2538 2784
2539#: plugins/check_pgsql.c:253 2785#: plugins/check_pgsql.c:233 plugins/check_tcp.c:502 plugins/check_time.c:246
2786#: plugins/check_time.c:270 plugins/check_udp.c:173 plugins/check_users.c:158
2787#: plugins/check_users.c:168 plugins/check_users.c:175
2788msgid "Warning threshold must be a positive integer"
2789msgstr "Warning threshold muss ein positiver Integer sein"
2790
2791#: plugins/check_pgsql.c:251
2540msgid "Database name is not valid" 2792msgid "Database name is not valid"
2541msgstr "" 2793msgstr ""
2542 2794
2543#: plugins/check_pgsql.c:259 2795#: plugins/check_pgsql.c:257
2544msgid "User name is not valid" 2796msgid "User name is not valid"
2545msgstr "" 2797msgstr ""
2546 2798
2547#: plugins/check_pgsql.c:396 2799#: plugins/check_pgsql.c:394
2548#, c-format 2800#, c-format
2549msgid "" 2801msgid ""
2550"Test whether a PostgreSQL Database is accepting connections.\n" 2802"Test whether a PostgreSQL Database is accepting connections.\n"
2551"\n" 2803"\n"
2552msgstr "" 2804msgstr ""
2553 2805
2554#: plugins/check_pgsql.c:406 2806#: plugins/check_pgsql.c:404
2555#, c-format 2807#, c-format
2556msgid "" 2808msgid ""
2557" -d, --database=STRING\n" 2809" -d, --database=STRING\n"
@@ -2562,7 +2814,7 @@ msgid ""
2562" Password (BIG SECURITY ISSUE)\n" 2814" Password (BIG SECURITY ISSUE)\n"
2563msgstr "" 2815msgstr ""
2564 2816
2565#: plugins/check_pgsql.c:420 2817#: plugins/check_pgsql.c:418
2566#, c-format 2818#, c-format
2567msgid "" 2819msgid ""
2568"\n" 2820"\n"
@@ -2575,7 +2827,7 @@ msgid ""
2575"PostgreSQL DBMS.\n" 2827"PostgreSQL DBMS.\n"
2576msgstr "" 2828msgstr ""
2577 2829
2578#: plugins/check_pgsql.c:427 2830#: plugins/check_pgsql.c:425
2579#, c-format 2831#, c-format
2580msgid "" 2832msgid ""
2581"\n" 2833"\n"
@@ -2584,7 +2836,7 @@ msgid ""
2584"connections (start the postmaster with the -i option).\n" 2836"connections (start the postmaster with the -i option).\n"
2585msgstr "" 2837msgstr ""
2586 2838
2587#: plugins/check_pgsql.c:431 2839#: plugins/check_pgsql.c:429
2588#, c-format 2840#, c-format
2589msgid "" 2841msgid ""
2590"\n" 2842"\n"
@@ -2608,114 +2860,114 @@ msgstr ""
2608msgid "PING %s - %sPacket loss = %d%%, RTA = %2.2f ms" 2860msgid "PING %s - %sPacket loss = %d%%, RTA = %2.2f ms"
2609msgstr "" 2861msgstr ""
2610 2862
2611#: plugins/check_ping.c:232 2863#: plugins/check_ping.c:230
2612msgid "Could not realloc() addresses\n" 2864msgid "Could not realloc() addresses\n"
2613msgstr "" 2865msgstr ""
2614 2866
2615#: plugins/check_ping.c:247 plugins/check_ping.c:327 2867#: plugins/check_ping.c:245 plugins/check_ping.c:325
2616#, c-format 2868#, c-format
2617msgid "<max_packets> (%s) must be a non-negative number\n" 2869msgid "<max_packets> (%s) must be a non-negative number\n"
2618msgstr "" 2870msgstr ""
2619 2871
2620#: plugins/check_ping.c:281 2872#: plugins/check_ping.c:279
2621#, c-format 2873#, c-format
2622msgid "<wpl> (%s) must be an integer percentage\n" 2874msgid "<wpl> (%s) must be an integer percentage\n"
2623msgstr "" 2875msgstr ""
2624 2876
2625#: plugins/check_ping.c:292 2877#: plugins/check_ping.c:290
2626#, c-format 2878#, c-format
2627msgid "<cpl> (%s) must be an integer percentage\n" 2879msgid "<cpl> (%s) must be an integer percentage\n"
2628msgstr "" 2880msgstr ""
2629 2881
2630#: plugins/check_ping.c:303 2882#: plugins/check_ping.c:301
2631#, c-format 2883#, c-format
2632msgid "<wrta> (%s) must be a non-negative number\n" 2884msgid "<wrta> (%s) must be a non-negative number\n"
2633msgstr "" 2885msgstr ""
2634 2886
2635#: plugins/check_ping.c:314 2887#: plugins/check_ping.c:312
2636#, c-format 2888#, c-format
2637msgid "<crta> (%s) must be a non-negative number\n" 2889msgid "<crta> (%s) must be a non-negative number\n"
2638msgstr "" 2890msgstr ""
2639 2891
2640#: plugins/check_ping.c:347 2892#: plugins/check_ping.c:345
2641#, c-format 2893#, c-format
2642msgid "" 2894msgid ""
2643"%s: Warning threshold must be integer or percentage!\n" 2895"%s: Warning threshold must be integer or percentage!\n"
2644"\n" 2896"\n"
2645msgstr "" 2897msgstr ""
2646 2898
2647#: plugins/check_ping.c:360 2899#: plugins/check_ping.c:358
2648#, c-format 2900#, c-format
2649msgid "<wrta> was not set\n" 2901msgid "<wrta> was not set\n"
2650msgstr "" 2902msgstr ""
2651 2903
2652#: plugins/check_ping.c:364 2904#: plugins/check_ping.c:362
2653#, c-format 2905#, c-format
2654msgid "<crta> was not set\n" 2906msgid "<crta> was not set\n"
2655msgstr "" 2907msgstr ""
2656 2908
2657#: plugins/check_ping.c:368 2909#: plugins/check_ping.c:366
2658#, c-format 2910#, c-format
2659msgid "<wpl> was not set\n" 2911msgid "<wpl> was not set\n"
2660msgstr "" 2912msgstr ""
2661 2913
2662#: plugins/check_ping.c:372 2914#: plugins/check_ping.c:370
2663#, c-format 2915#, c-format
2664msgid "<cpl> was not set\n" 2916msgid "<cpl> was not set\n"
2665msgstr "" 2917msgstr ""
2666 2918
2667#: plugins/check_ping.c:376 2919#: plugins/check_ping.c:374
2668#, c-format 2920#, c-format
2669msgid "<wrta> (%f) cannot be larger than <crta> (%f)\n" 2921msgid "<wrta> (%f) cannot be larger than <crta> (%f)\n"
2670msgstr "" 2922msgstr ""
2671 2923
2672#: plugins/check_ping.c:380 2924#: plugins/check_ping.c:378
2673#, c-format 2925#, c-format
2674msgid "<wpl> (%d) cannot be larger than <cpl> (%d)\n" 2926msgid "<wpl> (%d) cannot be larger than <cpl> (%d)\n"
2675msgstr "" 2927msgstr ""
2676 2928
2677#: plugins/check_ping.c:408 2929#: plugins/check_ping.c:406
2678#, c-format 2930#, c-format
2679msgid "Cannot open pipe: %s" 2931msgid "Cannot open pipe: %s"
2680msgstr "" 2932msgstr ""
2681 2933
2682#: plugins/check_ping.c:412 2934#: plugins/check_ping.c:410
2683#, c-format 2935#, c-format
2684msgid "Cannot open stderr for %s\n" 2936msgid "Cannot open stderr for %s\n"
2685msgstr "" 2937msgstr ""
2686 2938
2687#: plugins/check_ping.c:467 2939#: plugins/check_ping.c:465
2688#, c-format 2940#, c-format
2689msgid "CRITICAL - Network unreachable (%s)" 2941msgid "CRITICAL - Network unreachable (%s)"
2690msgstr "CRITICAL - Netzwerk nicht erreichbar (%s)" 2942msgstr "CRITICAL - Netzwerk nicht erreichbar (%s)"
2691 2943
2692#: plugins/check_ping.c:469 2944#: plugins/check_ping.c:467
2693#, c-format 2945#, c-format
2694msgid "CRITICAL - Host Unreachable (%s)" 2946msgid "CRITICAL - Host Unreachable (%s)"
2695msgstr "" 2947msgstr ""
2696 2948
2697#: plugins/check_ping.c:471 2949#: plugins/check_ping.c:469
2698#, c-format 2950#, c-format
2699msgid "CRITICAL - Host not found (%s)" 2951msgid "CRITICAL - Host not found (%s)"
2700msgstr "" 2952msgstr ""
2701 2953
2702#: plugins/check_ping.c:473 2954#: plugins/check_ping.c:471
2703#, c-format 2955#, c-format
2704msgid "CRITICAL - Time to live exceeded (%s)" 2956msgid "CRITICAL - Time to live exceeded (%s)"
2705msgstr "" 2957msgstr ""
2706 2958
2707#: plugins/check_ping.c:480 2959#: plugins/check_ping.c:478
2708msgid "Unable to realloc warn_text" 2960msgid "Unable to realloc warn_text"
2709msgstr "" 2961msgstr ""
2710 2962
2711#: plugins/check_ping.c:497 2963#: plugins/check_ping.c:495
2712#, c-format 2964#, c-format
2713msgid "" 2965msgid ""
2714"Use ping to check connection statistics for a remote host.\n" 2966"Use ping to check connection statistics for a remote host.\n"
2715"\n" 2967"\n"
2716msgstr "" 2968msgstr ""
2717 2969
2718#: plugins/check_ping.c:505 2970#: plugins/check_ping.c:503
2719#, c-format 2971#, c-format
2720msgid "" 2972msgid ""
2721"-H, --hostname=HOST\n" 2973"-H, --hostname=HOST\n"
@@ -2730,7 +2982,7 @@ msgid ""
2730" show HTML in the plugin output (obsoleted by urlize)\n" 2982" show HTML in the plugin output (obsoleted by urlize)\n"
2731msgstr "" 2983msgstr ""
2732 2984
2733#: plugins/check_ping.c:520 2985#: plugins/check_ping.c:518
2734#, c-format 2986#, c-format
2735msgid "" 2987msgid ""
2736"THRESHOLD is <rta>,<pl>%% where <rta> is the round trip average travel\n" 2988"THRESHOLD is <rta>,<pl>%% where <rta> is the round trip average travel\n"
@@ -2739,7 +2991,7 @@ msgid ""
2739"\n" 2991"\n"
2740msgstr "" 2992msgstr ""
2741 2993
2742#: plugins/check_ping.c:525 2994#: plugins/check_ping.c:523
2743#, c-format 2995#, c-format
2744msgid "" 2996msgid ""
2745"This plugin uses the ping command to probe the specified host for packet " 2997"This plugin uses the ping command to probe the specified host for packet "
@@ -2804,109 +3056,95 @@ msgstr[1] ""
2804msgid " with %s" 3056msgid " with %s"
2805msgstr "" 3057msgstr ""
2806 3058
2807#: plugins/check_procs.c:371 3059#: plugins/check_procs.c:369
2808msgid "" 3060#, fuzzy
2809"Critical Process Count must be an integer!\n" 3061msgid "Critical Process Count must be an integer!"
2810"\n" 3062msgstr "Critical threshold muss ein Integer sein"
2811msgstr ""
2812 3063
2813#: plugins/check_procs.c:383 3064#: plugins/check_procs.c:381
2814msgid "" 3065#, fuzzy
2815"Warning Process Count must be an integer!\n" 3066msgid "Warning Process Count must be an integer!"
2816"\n" 3067msgstr "Warning threshold Integer sein"
2817msgstr ""
2818 3068
2819#: plugins/check_procs.c:391 3069#: plugins/check_procs.c:389
2820#, c-format 3070#, fuzzy
2821msgid "" 3071msgid "Parent Process ID must be an integer!"
2822"%s: Parent Process ID must be an integer!\n" 3072msgstr "Argument für check_dummy muss ein Integer sein"
2823"\n"
2824msgstr ""
2825 3073
2826#: plugins/check_procs.c:397 plugins/check_procs.c:502 3074#: plugins/check_procs.c:395 plugins/check_procs.c:497
2827#, c-format 3075#, c-format
2828msgid "%s%sSTATE = %s" 3076msgid "%s%sSTATE = %s"
2829msgstr "" 3077msgstr ""
2830 3078
2831#: plugins/check_procs.c:406 3079#: plugins/check_procs.c:404
2832#, c-format 3080#, fuzzy, c-format
2833msgid "UID %s was not found\n" 3081msgid "UID %s was not found"
2834msgstr "" 3082msgstr "%s [%s nicht gefunden]"
2835 3083
2836#: plugins/check_procs.c:412 3084#: plugins/check_procs.c:410
2837#, c-format 3085#, fuzzy, c-format
2838msgid "User name %s was not found\n" 3086msgid "User name %s was not found"
2839msgstr "" 3087msgstr "%s [%s nicht gefunden]"
2840 3088
2841#: plugins/check_procs.c:417 3089#: plugins/check_procs.c:415
2842#, c-format 3090#, c-format
2843msgid "%s%sUID = %d (%s)" 3091msgid "%s%sUID = %d (%s)"
2844msgstr "" 3092msgstr ""
2845 3093
2846#: plugins/check_procs.c:427 3094#: plugins/check_procs.c:425
2847#, c-format 3095#, c-format
2848msgid "%s%scommand name '%s'" 3096msgid "%s%scommand name '%s'"
2849msgstr "" 3097msgstr ""
2850 3098
2851#: plugins/check_procs.c:437 3099#: plugins/check_procs.c:435
2852#, c-format 3100#, c-format
2853msgid "%s%sargs '%s'" 3101msgid "%s%sargs '%s'"
2854msgstr "" 3102msgstr ""
2855 3103
2856#: plugins/check_procs.c:442 3104#: plugins/check_procs.c:440
2857#, c-format 3105#, c-format
2858msgid "%s%sRSS >= %d" 3106msgid "%s%sRSS >= %d"
2859msgstr "" 3107msgstr ""
2860 3108
2861#: plugins/check_procs.c:446 3109#: plugins/check_procs.c:444
2862#, c-format 3110#, fuzzy
2863msgid "" 3111msgid "RSS must be an integer!"
2864"%s: RSS must be an integer!\n" 3112msgstr "skip lines muss ein Integer sein"
2865"\n"
2866msgstr ""
2867 3113
2868#: plugins/check_procs.c:449 3114#: plugins/check_procs.c:447
2869#, c-format 3115#, c-format
2870msgid "%s%sVSZ >= %d" 3116msgid "%s%sVSZ >= %d"
2871msgstr "" 3117msgstr ""
2872 3118
2873#: plugins/check_procs.c:453 3119#: plugins/check_procs.c:451
2874#, c-format 3120#, fuzzy
2875msgid "" 3121msgid "VSZ must be an integer!"
2876"%s: VSZ must be an integer!\n" 3122msgstr "skip lines muss ein Integer sein"
2877"\n"
2878msgstr ""
2879 3123
2880#: plugins/check_procs.c:457 3124#: plugins/check_procs.c:455
2881#, c-format 3125#, c-format
2882msgid "%s%sPCPU >= %.2f" 3126msgid "%s%sPCPU >= %.2f"
2883msgstr "" 3127msgstr ""
2884 3128
2885#: plugins/check_procs.c:461 3129#: plugins/check_procs.c:459
2886#, c-format 3130msgid "PCPU must be a float!"
2887msgid ""
2888"%s: PCPU must be a float!\n"
2889"\n"
2890msgstr "" 3131msgstr ""
2891 3132
2892#: plugins/check_procs.c:485 3133#: plugins/check_procs.c:483
2893#, c-format 3134msgid "Metric must be one of PROCS, VSZ, RSS, CPU, ELAPSED!"
2894msgid ""
2895"%s: metric must be one of PROCS, VSZ, RSS, CPU, ELAPSED!\n"
2896"\n"
2897msgstr "" 3135msgstr ""
2898 3136
2899#: plugins/check_procs.c:521 3137#: plugins/check_procs.c:516
2900#, c-format 3138#, c-format
2901msgid "wmax (%d) cannot be greater than cmax (%d)\n" 3139msgid "wmax (%d) cannot be greater than cmax (%d)\n"
2902msgstr "" 3140msgstr ""
2903 3141
2904#: plugins/check_procs.c:525 3142#: plugins/check_procs.c:520
2905#, c-format 3143#, c-format
2906msgid "wmin (%d) cannot be less than cmin (%d)\n" 3144msgid "wmin (%d) cannot be less than cmin (%d)\n"
2907msgstr "" 3145msgstr ""
2908 3146
2909#: plugins/check_procs.c:665 3147#: plugins/check_procs.c:657
2910#, c-format 3148#, c-format
2911msgid "" 3149msgid ""
2912"Checks all processes and generates WARNING or CRITICAL states if the " 3150"Checks all processes and generates WARNING or CRITICAL states if the "
@@ -2918,7 +3156,7 @@ msgid ""
2918"\n" 3156"\n"
2919msgstr "" 3157msgstr ""
2920 3158
2921#: plugins/check_procs.c:672 3159#: plugins/check_procs.c:664
2922#, c-format 3160#, c-format
2923msgid "" 3161msgid ""
2924"\n" 3162"\n"
@@ -2929,7 +3167,7 @@ msgid ""
2929" Generate critical state if metric is outside this range\n" 3167" Generate critical state if metric is outside this range\n"
2930msgstr "" 3168msgstr ""
2931 3169
2932#: plugins/check_procs.c:679 3170#: plugins/check_procs.c:671
2933#, c-format 3171#, c-format
2934msgid "" 3172msgid ""
2935"\n" 3173"\n"
@@ -2942,19 +3180,19 @@ msgid ""
2942" CPU - percentage cpu\n" 3180" CPU - percentage cpu\n"
2943msgstr "" 3181msgstr ""
2944 3182
2945#: plugins/check_procs.c:689 3183#: plugins/check_procs.c:681
2946#, c-format 3184#, c-format
2947msgid " ELAPSED - time elapsed in seconds\n" 3185msgid " ELAPSED - time elapsed in seconds\n"
2948msgstr "" 3186msgstr ""
2949 3187
2950#: plugins/check_procs.c:694 3188#: plugins/check_procs.c:686
2951#, c-format 3189#, c-format
2952msgid "" 3190msgid ""
2953" -v, --verbose\n" 3191" -v, --verbose\n"
2954" Extra information. Up to 3 verbosity levels\n" 3192" Extra information. Up to 3 verbosity levels\n"
2955msgstr "" 3193msgstr ""
2956 3194
2957#: plugins/check_procs.c:698 3195#: plugins/check_procs.c:690
2958#, c-format 3196#, c-format
2959msgid "" 3197msgid ""
2960"\n" 3198"\n"
@@ -2971,7 +3209,7 @@ msgid ""
2971" Only scan for processes with rss higher than indicated.\n" 3209" Only scan for processes with rss higher than indicated.\n"
2972msgstr "" 3210msgstr ""
2973 3211
2974#: plugins/check_procs.c:711 3212#: plugins/check_procs.c:703
2975#, c-format 3213#, c-format
2976msgid "" 3214msgid ""
2977" -P, --pcpu=PCPU\n" 3215" -P, --pcpu=PCPU\n"
@@ -2984,7 +3222,7 @@ msgid ""
2984" Only scan for exact matches of COMMAND (without path).\n" 3222" Only scan for exact matches of COMMAND (without path).\n"
2985msgstr "" 3223msgstr ""
2986 3224
2987#: plugins/check_procs.c:721 3225#: plugins/check_procs.c:713
2988#, c-format 3226#, c-format
2989msgid "" 3227msgid ""
2990"\n" 3228"\n"
@@ -2994,7 +3232,7 @@ msgid ""
2994"\n" 3232"\n"
2995msgstr "" 3233msgstr ""
2996 3234
2997#: plugins/check_procs.c:726 3235#: plugins/check_procs.c:718
2998#, c-format 3236#, c-format
2999msgid "" 3237msgid ""
3000"This plugin checks the number of currently running processes and\n" 3238"This plugin checks the number of currently running processes and\n"
@@ -3005,7 +3243,7 @@ msgid ""
3005"\n" 3243"\n"
3006msgstr "" 3244msgstr ""
3007 3245
3008#: plugins/check_procs.c:733 3246#: plugins/check_procs.c:725
3009#, c-format 3247#, c-format
3010msgid "" 3248msgid ""
3011"Examples:\n" 3249"Examples:\n"
@@ -3048,18 +3286,18 @@ msgstr ""
3048msgid "Auth OK" 3286msgid "Auth OK"
3049msgstr "" 3287msgstr ""
3050 3288
3051#: plugins/check_radius.c:202 plugins/check_radius.c:264 3289#: plugins/check_radius.c:202 plugins/check_radius.c:262
3052msgid "Number of retries must be a positive integer" 3290msgid "Number of retries must be a positive integer"
3053msgstr "" 3291msgstr ""
3054 3292
3055#: plugins/check_radius.c:290 3293#: plugins/check_radius.c:288
3056#, c-format 3294#, c-format
3057msgid "" 3295msgid ""
3058"Tests to see if a radius server is accepting connections.\n" 3296"Tests to see if a radius server is accepting connections.\n"
3059"\n" 3297"\n"
3060msgstr "" 3298msgstr ""
3061 3299
3062#: plugins/check_radius.c:298 3300#: plugins/check_radius.c:296
3063#, c-format 3301#, c-format
3064msgid "" 3302msgid ""
3065" -u, --username=STRING\n" 3303" -u, --username=STRING\n"
@@ -3076,7 +3314,7 @@ msgid ""
3076" Number of times to retry a failed connection\n" 3314" Number of times to retry a failed connection\n"
3077msgstr "" 3315msgstr ""
3078 3316
3079#: plugins/check_radius.c:314 3317#: plugins/check_radius.c:312
3080#, c-format 3318#, c-format
3081msgid "" 3319msgid ""
3082"\n" 3320"\n"
@@ -3088,7 +3326,7 @@ msgid ""
3088"\n" 3326"\n"
3089msgstr "" 3327msgstr ""
3090 3328
3091#: plugins/check_radius.c:321 3329#: plugins/check_radius.c:319
3092#, c-format 3330#, c-format
3093msgid "" 3331msgid ""
3094"The password option presents a substantial security issue because the\n" 3332"The password option presents a substantial security issue because the\n"
@@ -3129,30 +3367,27 @@ msgstr ""
3129msgid "REAL %s - %d second response time\n" 3367msgid "REAL %s - %d second response time\n"
3130msgstr "" 3368msgstr ""
3131 3369
3132#: plugins/check_real.c:324 plugins/check_smtp.c:343 3370#: plugins/check_real.c:324 plugins/check_smtp.c:343 plugins/check_ups.c:522
3133msgid "Warning time must be a positive integer" 3371msgid "Warning time must be a positive integer"
3134msgstr "Warnung time muss ein positiver Integer sein" 3372msgstr "Warnung time muss ein positiver Integer sein"
3135 3373
3136#: plugins/check_real.c:333 3374#: plugins/check_real.c:333 plugins/check_smtp.c:334 plugins/check_ups.c:513
3137msgid "Critical time must be a nonnegative integer" 3375msgid "Critical time must be a positive integer"
3138msgstr "Critical time muss ein positiver Integer sein" 3376msgstr "Critical time muss ein positiver Integer sein"
3139 3377
3140#: plugins/check_real.c:344 3378#: plugins/check_real.c:369
3141msgid "Time interval must be a nonnegative integer" 3379#, fuzzy
3142msgstr "Time interval muss ein positiver Integer sein" 3380msgid "You must provide a server to check"
3143 3381msgstr "%s: Hostname muss angegeben werden\n"
3144#: plugins/check_real.c:371
3145msgid "You must provide a server to check\n"
3146msgstr ""
3147 3382
3148#: plugins/check_real.c:403 3383#: plugins/check_real.c:401
3149#, c-format 3384#, c-format
3150msgid "" 3385msgid ""
3151"This plugin tests the REAL service on the specified host.\n" 3386"This plugin tests the REAL service on the specified host.\n"
3152"\n" 3387"\n"
3153msgstr "" 3388msgstr ""
3154 3389
3155#: plugins/check_real.c:411 3390#: plugins/check_real.c:409
3156#, c-format 3391#, c-format
3157msgid "" 3392msgid ""
3158" -u, --url=STRING\n" 3393" -u, --url=STRING\n"
@@ -3161,7 +3396,7 @@ msgid ""
3161" String to expect in first line of server response (default: %s)\n" 3396" String to expect in first line of server response (default: %s)\n"
3162msgstr "" 3397msgstr ""
3163 3398
3164#: plugins/check_real.c:424 3399#: plugins/check_real.c:422
3165#, c-format 3400#, c-format
3166msgid "" 3401msgid ""
3167"This plugin will attempt to open an RTSP connection with the host.\n" 3402"This plugin will attempt to open an RTSP connection with the host.\n"
@@ -3186,7 +3421,7 @@ msgstr ""
3186msgid "Invalid SMTP response received from host on port %d\n" 3421msgid "Invalid SMTP response received from host on port %d\n"
3187msgstr "" 3422msgstr ""
3188 3423
3189#: plugins/check_smtp.c:182 plugins/check_snmp.c:510 3424#: plugins/check_smtp.c:182 plugins/check_snmp.c:508
3190#, c-format 3425#, c-format
3191msgid "Could Not Compile Regular Expression" 3426msgid "Could Not Compile Regular Expression"
3192msgstr "" 3427msgstr ""
@@ -3206,27 +3441,19 @@ msgstr ""
3206msgid "SMTP %s - %.3f sec. response time%s%s|%s\n" 3441msgid "SMTP %s - %.3f sec. response time%s%s|%s\n"
3207msgstr "" 3442msgstr ""
3208 3443
3209#: plugins/check_smtp.c:313 plugins/check_smtp.c:323 plugins/check_snmp.c:566 3444#: plugins/check_smtp.c:313 plugins/check_smtp.c:323 plugins/check_snmp.c:564
3210#, c-format 3445#, c-format
3211msgid "Could not realloc() units [%d]\n" 3446msgid "Could not realloc() units [%d]\n"
3212msgstr "" 3447msgstr ""
3213 3448
3214#: plugins/check_smtp.c:334 3449#: plugins/check_smtp.c:424
3215msgid "Critical time must be a positive integer"
3216msgstr "Critical time muss ein positiver Integer sein"
3217
3218#: plugins/check_smtp.c:354
3219msgid "Time interval must be a positive integer"
3220msgstr "Time interval muss ein positiver Integer sein"
3221
3222#: plugins/check_smtp.c:426
3223#, c-format 3450#, c-format
3224msgid "" 3451msgid ""
3225"This plugin will attempt to open an SMTP connection with the host.\n" 3452"This plugin will attempt to open an SMTP connection with the host.\n"
3226"\n" 3453"\n"
3227msgstr "" 3454msgstr ""
3228 3455
3229#: plugins/check_smtp.c:436 3456#: plugins/check_smtp.c:434
3230#, c-format 3457#, c-format
3231msgid "" 3458msgid ""
3232" -e, --expect=STRING\n" 3459" -e, --expect=STRING\n"
@@ -3241,7 +3468,7 @@ msgid ""
3241" FROM-address to include in MAIL command, required by Exchange 2000\n" 3468" FROM-address to include in MAIL command, required by Exchange 2000\n"
3242msgstr "" 3469msgstr ""
3243 3470
3244#: plugins/check_smtp.c:455 3471#: plugins/check_smtp.c:453
3245#, c-format 3472#, c-format
3246msgid "" 3473msgid ""
3247"\n" 3474"\n"
@@ -3251,7 +3478,11 @@ msgid ""
3251"STATE_WARNING return values.\n" 3478"STATE_WARNING return values.\n"
3252msgstr "" 3479msgstr ""
3253 3480
3254#: plugins/check_snmp.c:284 plugins/check_snmp.c:516 3481#: plugins/check_snmp.c:254
3482msgid "No valid data returned"
3483msgstr ""
3484
3485#: plugins/check_snmp.c:284 plugins/check_snmp.c:514
3255#, c-format 3486#, c-format
3256msgid "%s UNKNOWN: call for regex which was not a compiled option" 3487msgid "%s UNKNOWN: call for regex which was not a compiled option"
3257msgstr "" 3488msgstr ""
@@ -3263,54 +3494,58 @@ msgid ""
3263"CMD: %s\n" 3494"CMD: %s\n"
3264msgstr "" 3495msgstr ""
3265 3496
3266#: plugins/check_snmp.c:455 3497#: plugins/check_snmp.c:453
3267#, c-format 3498#, c-format
3268msgid "Invalid critical threshold: %s\n" 3499msgid "Invalid critical threshold: %s\n"
3269msgstr "" 3500msgstr ""
3270 3501
3271#: plugins/check_snmp.c:466 3502#: plugins/check_snmp.c:464
3272#, c-format 3503#, c-format
3273msgid "Invalid warning threshold: %s\n" 3504msgid "Invalid warning threshold: %s\n"
3274msgstr "" 3505msgstr ""
3275 3506
3276#: plugins/check_snmp.c:536 3507#: plugins/check_snmp.c:534
3277#, c-format 3508#, c-format
3278msgid "Could not realloc() labels[%d]" 3509msgid "Could not realloc() labels[%d]"
3279msgstr "" 3510msgstr ""
3280 3511
3281#: plugins/check_snmp.c:548 3512#: plugins/check_snmp.c:546
3282msgid "Could not realloc() labels\n" 3513msgid "Could not realloc() labels\n"
3283msgstr "" 3514msgstr ""
3284 3515
3285#: plugins/check_snmp.c:578 3516#: plugins/check_snmp.c:576
3286msgid "Could not realloc() units\n" 3517msgid "Could not realloc() units\n"
3287msgstr "" 3518msgstr ""
3288 3519
3289#: plugins/check_snmp.c:651 3520#: plugins/check_snmp.c:649
3290#, c-format 3521#, c-format
3291msgid "" 3522msgid ""
3292"Missing secname (%s) or authpassword (%s) ! \n" 3523"Missing secname (%s) or authpassword (%s) ! \n"
3293")" 3524")"
3294msgstr "" 3525msgstr ""
3295 3526
3296#: plugins/check_snmp.c:659 3527#: plugins/check_snmp.c:657
3297#, c-format 3528#, c-format
3298msgid "Missing secname (%s), authpassword (%s), or privpasswd (%s)! \n" 3529msgid "Missing secname (%s), authpassword (%s), or privpasswd (%s)! \n"
3299msgstr "" 3530msgstr ""
3300 3531
3301#: plugins/check_snmp.c:668 3532#: plugins/check_snmp.c:666
3302#, c-format 3533#, c-format
3303msgid "Invalid SNMP version: %s\n" 3534msgid "Invalid SNMP version: %s\n"
3304msgstr "" 3535msgstr ""
3305 3536
3306#: plugins/check_snmp.c:847 3537#: plugins/check_snmp.c:796
3538msgid "Unbalanced quotes\n"
3539msgstr ""
3540
3541#: plugins/check_snmp.c:845
3307#, c-format 3542#, c-format
3308msgid "" 3543msgid ""
3309"Check status of remote machines and obtain sustem information via SNMP\n" 3544"Check status of remote machines and obtain sustem information via SNMP\n"
3310"\n" 3545"\n"
3311msgstr "" 3546msgstr ""
3312 3547
3313#: plugins/check_snmp.c:857 3548#: plugins/check_snmp.c:855
3314#, c-format 3549#, c-format
3315msgid "" 3550msgid ""
3316" -P, --protocol=[1|3]\n" 3551" -P, --protocol=[1|3]\n"
@@ -3321,7 +3556,7 @@ msgid ""
3321" SNMPv3 auth proto\n" 3556" SNMPv3 auth proto\n"
3322msgstr "" 3557msgstr ""
3323 3558
3324#: plugins/check_snmp.c:866 3559#: plugins/check_snmp.c:864
3325#, c-format 3560#, c-format
3326msgid "" 3561msgid ""
3327" -C, --community=STRING\n" 3562" -C, --community=STRING\n"
@@ -3335,7 +3570,7 @@ msgid ""
3335" SNMPv3 crypt passwd (DES)\n" 3570" SNMPv3 crypt passwd (DES)\n"
3336msgstr "" 3571msgstr ""
3337 3572
3338#: plugins/check_snmp.c:878 3573#: plugins/check_snmp.c:876
3339#, c-format 3574#, c-format
3340msgid "" 3575msgid ""
3341" -o, --oid=OID(s)\n" 3576" -o, --oid=OID(s)\n"
@@ -3348,7 +3583,7 @@ msgid ""
3348" to be the data that should be used in the evaluation.\n" 3583" to be the data that should be used in the evaluation.\n"
3349msgstr "" 3584msgstr ""
3350 3585
3351#: plugins/check_snmp.c:888 3586#: plugins/check_snmp.c:886
3352#, c-format 3587#, c-format
3353msgid "" 3588msgid ""
3354" -w, --warning=INTEGER_RANGE(s)\n" 3589" -w, --warning=INTEGER_RANGE(s)\n"
@@ -3357,7 +3592,7 @@ msgid ""
3357" Range(s) which will not result in a CRITICAL status\n" 3592" Range(s) which will not result in a CRITICAL status\n"
3358msgstr "" 3593msgstr ""
3359 3594
3360#: plugins/check_snmp.c:895 3595#: plugins/check_snmp.c:893
3361#, c-format 3596#, c-format
3362msgid "" 3597msgid ""
3363" -s, --string=STRING\n" 3598" -s, --string=STRING\n"
@@ -3372,7 +3607,7 @@ msgid ""
3372" Prefix label for output from plugin (default -s 'SNMP')\n" 3607" Prefix label for output from plugin (default -s 'SNMP')\n"
3373msgstr "" 3608msgstr ""
3374 3609
3375#: plugins/check_snmp.c:906 3610#: plugins/check_snmp.c:904
3376#, c-format 3611#, c-format
3377msgid "" 3612msgid ""
3378" -u, --units=STRING\n" 3613" -u, --units=STRING\n"
@@ -3381,7 +3616,7 @@ msgid ""
3381" Separates output on multiple OID requests\n" 3616" Separates output on multiple OID requests\n"
3382msgstr "" 3617msgstr ""
3383 3618
3384#: plugins/check_snmp.c:916 3619#: plugins/check_snmp.c:914
3385#, c-format 3620#, c-format
3386msgid "" 3621msgid ""
3387"\n" 3622"\n"
@@ -3392,7 +3627,7 @@ msgid ""
3392" http://net-snmp.sourceforge.net before you can use this plugin.\n" 3627" http://net-snmp.sourceforge.net before you can use this plugin.\n"
3393msgstr "" 3628msgstr ""
3394 3629
3395#: plugins/check_snmp.c:921 3630#: plugins/check_snmp.c:919
3396#, c-format 3631#, c-format
3397msgid "" 3632msgid ""
3398"- Multiple OIDs may be indicated by a comma- or space-delimited list (lists " 3633"- Multiple OIDs may be indicated by a comma- or space-delimited list (lists "
@@ -3400,7 +3635,7 @@ msgid ""
3400" internal spaces must be quoted) [max 8 OIDs]\n" 3635" internal spaces must be quoted) [max 8 OIDs]\n"
3401msgstr "" 3636msgstr ""
3402 3637
3403#: plugins/check_snmp.c:925 3638#: plugins/check_snmp.c:923
3404#, c-format 3639#, c-format
3405msgid "" 3640msgid ""
3406"- Ranges are inclusive and are indicated with colons. When specified as\n" 3641"- Ranges are inclusive and are indicated with colons. When specified as\n"
@@ -3410,7 +3645,7 @@ msgid ""
3410" returned if the result is outside the specified range.\n" 3645" returned if the result is outside the specified range.\n"
3411msgstr "" 3646msgstr ""
3412 3647
3413#: plugins/check_snmp.c:931 3648#: plugins/check_snmp.c:929
3414#, c-format 3649#, c-format
3415msgid "" 3650msgid ""
3416"- If specified in the order 'max:min' a non-OK state will be returned if " 3651"- If specified in the order 'max:min' a non-OK state will be returned if "
@@ -3418,7 +3653,7 @@ msgid ""
3418" result is within the (inclusive) range.\n" 3653" result is within the (inclusive) range.\n"
3419msgstr "" 3654msgstr ""
3420 3655
3421#: plugins/check_snmp.c:935 3656#: plugins/check_snmp.c:933
3422#, c-format 3657#, c-format
3423msgid "" 3658msgid ""
3424"- Upper or lower bounds may be omitted to skip checking the respective " 3659"- Upper or lower bounds may be omitted to skip checking the respective "
@@ -3432,29 +3667,34 @@ msgid ""
3432" returned from the SNMP query is an unsigned integer.\n" 3667" returned from the SNMP query is an unsigned integer.\n"
3433msgstr "" 3668msgstr ""
3434 3669
3435#: plugins/check_ssh.c:221 3670#: plugins/check_ssh.c:152
3671#, fuzzy
3672msgid "Port number must be a positive integer"
3673msgstr "Port muss ein positiver Integer sein"
3674
3675#: plugins/check_ssh.c:217
3436#, c-format 3676#, c-format
3437msgid "Server answer: %s" 3677msgid "Server answer: %s"
3438msgstr "" 3678msgstr ""
3439 3679
3440#: plugins/check_ssh.c:239 3680#: plugins/check_ssh.c:235
3441#, c-format 3681#, c-format
3442msgid "SSH WARNING - %s (protocol %s) version mismatch, expected '%s'\n" 3682msgid "SSH WARNING - %s (protocol %s) version mismatch, expected '%s'\n"
3443msgstr "" 3683msgstr ""
3444 3684
3445#: plugins/check_ssh.c:245 3685#: plugins/check_ssh.c:241
3446#, c-format 3686#, c-format
3447msgid "SSH OK - %s (protocol %s)\n" 3687msgid "SSH OK - %s (protocol %s)\n"
3448msgstr "" 3688msgstr ""
3449 3689
3450#: plugins/check_ssh.c:264 3690#: plugins/check_ssh.c:260
3451#, c-format 3691#, c-format
3452msgid "" 3692msgid ""
3453"Try to connect to an SSH server at specified server and port\n" 3693"Try to connect to an SSH server at specified server and port\n"
3454"\n" 3694"\n"
3455msgstr "" 3695msgstr ""
3456 3696
3457#: plugins/check_ssh.c:276 3697#: plugins/check_ssh.c:272
3458#, c-format 3698#, c-format
3459msgid "" 3699msgid ""
3460" -r, --remote-version=STRING\n" 3700" -r, --remote-version=STRING\n"
@@ -3482,35 +3722,35 @@ msgstr ""
3482msgid "total=%llu, free=%llu\n" 3722msgid "total=%llu, free=%llu\n"
3483msgstr "" 3723msgstr ""
3484 3724
3725#: plugins/check_swap.c:242 plugins/check_swap.c:281
3726msgid "swapctl failed: "
3727msgstr ""
3728
3485#: plugins/check_swap.c:314 3729#: plugins/check_swap.c:314
3486#, c-format 3730#, c-format
3487msgid " %d%% free (%llu MB out of %llu MB)" 3731msgid " %d%% free (%llu MB out of %llu MB)"
3488msgstr "" 3732msgstr ""
3489 3733
3490#: plugins/check_swap.c:391
3491msgid "Warning threshold must be integer or percentage!\n"
3492msgstr "Warning threshold muss ein Integer oder ein Prozentwert sein!\n"
3493
3494#: plugins/check_swap.c:408 3734#: plugins/check_swap.c:408
3495msgid "Critical threshold must be integer or percentage!\n" 3735msgid "Critical threshold must be integer or percentage!\n"
3496msgstr "Critical threshold muss ein Integer oder ein Prozentwert sein!\n" 3736msgstr "Critical threshold muss ein Integer oder ein Prozentwert sein!\n"
3497 3737
3498#: plugins/check_swap.c:464 3738#: plugins/check_swap.c:462
3499msgid "Warning percentage should be more than critical percentage\n" 3739msgid "Warning percentage should be more than critical percentage\n"
3500msgstr "" 3740msgstr ""
3501 3741
3502#: plugins/check_swap.c:468 3742#: plugins/check_swap.c:466
3503msgid "Warning free space should be more than critical free space\n" 3743msgid "Warning free space should be more than critical free space\n"
3504msgstr "" 3744msgstr ""
3505 3745
3506#: plugins/check_swap.c:482 3746#: plugins/check_swap.c:480
3507#, c-format 3747#, c-format
3508msgid "" 3748msgid ""
3509"Check swap space on local machine.\n" 3749"Check swap space on local machine.\n"
3510"\n" 3750"\n"
3511msgstr "" 3751msgstr ""
3512 3752
3513#: plugins/check_swap.c:488 3753#: plugins/check_swap.c:486
3514#, c-format 3754#, c-format
3515msgid "" 3755msgid ""
3516"\n" 3756"\n"
@@ -3530,7 +3770,7 @@ msgid ""
3530" Verbose output. Up to 3 levels\n" 3770" Verbose output. Up to 3 levels\n"
3531msgstr "" 3771msgstr ""
3532 3772
3533#: plugins/check_swap.c:502 3773#: plugins/check_swap.c:500
3534#, c-format 3774#, c-format
3535msgid "" 3775msgid ""
3536"\n" 3776"\n"
@@ -3539,7 +3779,7 @@ msgid ""
3539"real memory\n" 3779"real memory\n"
3540msgstr "" 3780msgstr ""
3541 3781
3542#: plugins/check_swap.c:506 3782#: plugins/check_swap.c:504
3543#, c-format 3783#, c-format
3544msgid "" 3784msgid ""
3545"\n" 3785"\n"
@@ -3550,6 +3790,11 @@ msgstr ""
3550msgid "CRITICAL - Generic check_tcp called with unknown service\n" 3790msgid "CRITICAL - Generic check_tcp called with unknown service\n"
3551msgstr "" 3791msgstr ""
3552 3792
3793#: plugins/check_tcp.c:262
3794#, fuzzy
3795msgid "CRITICAL - Could not make SSL connection\n"
3796msgstr "HTTP CRITICAL - Konnte keine SSL Verbindung herstellen\n"
3797
3553#: plugins/check_tcp.c:335 3798#: plugins/check_tcp.c:335
3554#, fuzzy, c-format 3799#, fuzzy, c-format
3555msgid "Unexpected response from host: %s\n" 3800msgid "Unexpected response from host: %s\n"
@@ -3560,49 +3805,73 @@ msgstr "Keine Antwort vom Host \n"
3560msgid "%s %s%s - %.3f second response time on port %d" 3805msgid "%s %s%s - %.3f second response time on port %d"
3561msgstr "" 3806msgstr ""
3562 3807
3563#: plugins/check_tcp.c:504 plugins/check_time.c:248 plugins/check_time.c:272 3808#: plugins/check_tcp.c:437
3564#: plugins/check_udp.c:175 3809msgid "No arguments found"
3565msgid "Warning threshold must be a positive integer" 3810msgstr ""
3566msgstr "Warning threshold muss ein positiver Integer sein"
3567 3811
3568#: plugins/check_tcp.c:543 3812#: plugins/check_tcp.c:541
3569msgid "Maxbytes must be a positive integer" 3813msgid "Maxbytes must be a positive integer"
3570msgstr "Maxbytes muss ein positiver Integer sein" 3814msgstr "Maxbytes muss ein positiver Integer sein"
3571 3815
3572#: plugins/check_tcp.c:557 3816#: plugins/check_tcp.c:555
3573msgid "Refuse must be one of ok, warn, crit" 3817msgid "Refuse must be one of ok, warn, crit"
3574msgstr "" 3818msgstr ""
3575 3819
3576#: plugins/check_tcp.c:567 3820#: plugins/check_tcp.c:565
3577msgid "Mismatch must be one of ok, warn, crit" 3821msgid "Mismatch must be one of ok, warn, crit"
3578msgstr "" 3822msgstr ""
3579 3823
3580#: plugins/check_tcp.c:573 3824#: plugins/check_tcp.c:571
3581msgid "Delay must be a positive integer" 3825msgid "Delay must be a positive integer"
3582msgstr "Delay muss ein positiver Integer sein" 3826msgstr "Delay muss ein positiver Integer sein"
3583 3827
3584#: plugins/check_tcp.c:593 3828#: plugins/check_tcp.c:584
3585msgid "You must provide a server address\n" 3829msgid "SSL support not available. Install OpenSSL and recompile."
3586msgstr "" 3830msgstr ""
3587 3831
3588#: plugins/check_tcp.c:613 3832#: plugins/check_tcp.c:591
3833#, fuzzy
3834msgid "You must provide a server address"
3835msgstr "%s: Hostname muss angegeben werden\n"
3836
3837#: plugins/check_tcp.c:611
3589#, c-format 3838#, c-format
3590msgid "CRITICAL - Cannot create SSL context.\n" 3839msgid "CRITICAL - Cannot create SSL context.\n"
3591msgstr "" 3840msgstr ""
3592 3841
3593#: plugins/check_tcp.c:636 3842#: plugins/check_tcp.c:634
3594#, c-format 3843#, c-format
3595msgid "CRITICAL - Cannot make SSL connection " 3844msgid "CRITICAL - Cannot make SSL connection "
3596msgstr "" 3845msgstr ""
3597 3846
3598#: plugins/check_tcp.c:763 3847#: plugins/check_tcp.c:711
3848#, c-format
3849msgid "Certificate expires in %d day(s) (%s).\n"
3850msgstr ""
3851
3852#: plugins/check_tcp.c:715
3853#, fuzzy, c-format
3854msgid "Certificate expired on %s.\n"
3855msgstr "Clientzertifikat benötigt\n"
3856
3857#: plugins/check_tcp.c:720
3858#, fuzzy, c-format
3859msgid "Certificate expires today (%s).\n"
3860msgstr "Clientzertifikat benötigt\n"
3861
3862#: plugins/check_tcp.c:724
3863#, c-format
3864msgid "Certificate will expire on %s.\n"
3865msgstr ""
3866
3867#: plugins/check_tcp.c:761
3599#, c-format 3868#, c-format
3600msgid "" 3869msgid ""
3601"This plugin tests %s connections with the specified host.\n" 3870"This plugin tests %s connections with the specified host.\n"
3602"\n" 3871"\n"
3603msgstr "" 3872msgstr ""
3604 3873
3605#: plugins/check_tcp.c:774 3874#: plugins/check_tcp.c:772
3606#, c-format 3875#, c-format
3607msgid "" 3876msgid ""
3608" -s, --send=STRING\n" 3877" -s, --send=STRING\n"
@@ -3613,7 +3882,7 @@ msgid ""
3613" String to send server to initiate a clean close of the connection\n" 3882" String to send server to initiate a clean close of the connection\n"
3614msgstr "" 3883msgstr ""
3615 3884
3616#: plugins/check_tcp.c:782 3885#: plugins/check_tcp.c:780
3617#, c-format 3886#, c-format
3618msgid "" 3887msgid ""
3619" -r, --refuse=ok|warn|crit\n" 3888" -r, --refuse=ok|warn|crit\n"
@@ -3629,7 +3898,7 @@ msgid ""
3629" Seconds to wait between sending string and polling for response\n" 3898" Seconds to wait between sending string and polling for response\n"
3630msgstr "" 3899msgstr ""
3631 3900
3632#: plugins/check_tcp.c:795 3901#: plugins/check_tcp.c:793
3633#, c-format 3902#, c-format
3634msgid "" 3903msgid ""
3635" -D, --certificate=INTEGER\n" 3904" -D, --certificate=INTEGER\n"
@@ -3663,26 +3932,22 @@ msgstr ""
3663msgid "TIME %s - %lu second time difference|%s %s\n" 3932msgid "TIME %s - %lu second time difference|%s %s\n"
3664msgstr "" 3933msgstr ""
3665 3934
3666#: plugins/check_time.c:244 3935#: plugins/check_time.c:242
3667msgid "Warning thresholds must be a positive integer" 3936msgid "Warning thresholds must be a positive integer"
3668msgstr "Warning thresholds muss ein positiver Integer sein" 3937msgstr "Warning thresholds muss ein positiver Integer sein"
3669 3938
3670#: plugins/check_time.c:263 3939#: plugins/check_time.c:261
3671msgid "Critical thresholds must be a positive integer" 3940msgid "Critical thresholds must be a positive integer"
3672msgstr "Critical thresholds muss ein positiver Integer sein" 3941msgstr "Critical thresholds muss ein positiver Integer sein"
3673 3942
3674#: plugins/check_time.c:309 plugins/check_udp.c:209 3943#: plugins/check_time.c:327
3675msgid "Hostname was not supplied"
3676msgstr ""
3677
3678#: plugins/check_time.c:329
3679#, c-format 3944#, c-format
3680msgid "" 3945msgid ""
3681"This plugin will check the time on the specified host.\n" 3946"This plugin will check the time on the specified host.\n"
3682"\n" 3947"\n"
3683msgstr "" 3948msgstr ""
3684 3949
3685#: plugins/check_time.c:337 3950#: plugins/check_time.c:335
3686#, c-format 3951#, c-format
3687msgid "" 3952msgid ""
3688" -u, --udp\n" 3953" -u, --udp\n"
@@ -3697,6 +3962,16 @@ msgid ""
3697" Response time (sec.) necessary to result in critical status\n" 3962" Response time (sec.) necessary to result in critical status\n"
3698msgstr "" 3963msgstr ""
3699 3964
3965#: plugins/check_udp.c:70
3966#, fuzzy, c-format
3967msgid "No response from host on port %d\n"
3968msgstr "Ungültige HTTP Antwort von Host erhalten auf Port %d\n"
3969
3970#: plugins/check_udp.c:79
3971#, fuzzy, c-format
3972msgid "Invalid response received from host on port %d\n"
3973msgstr "Ungültige HTTP Antwort von Host erhalten auf Port %d\n"
3974
3700#: plugins/check_udp.c:95 3975#: plugins/check_udp.c:95
3701#, c-format 3976#, c-format
3702msgid "Connection %s on port %d - %d second response time\n" 3977msgid "Connection %s on port %d - %d second response time\n"
@@ -3710,14 +3985,14 @@ msgstr ""
3710msgid "problem" 3985msgid "problem"
3711msgstr "" 3986msgstr ""
3712 3987
3713#: plugins/check_udp.c:227 3988#: plugins/check_udp.c:225
3714#, c-format 3989#, c-format
3715msgid "" 3990msgid ""
3716"\tThis plugin tests an UDP connection with the specified host.\n" 3991"\tThis plugin tests an UDP connection with the specified host.\n"
3717"\n" 3992"\n"
3718msgstr "" 3993msgstr ""
3719 3994
3720#: plugins/check_udp.c:236 3995#: plugins/check_udp.c:234
3721#, c-format 3996#, c-format
3722msgid "" 3997msgid ""
3723" -e, --expect=STRING <optional>\n" 3998" -e, --expect=STRING <optional>\n"
@@ -3726,7 +4001,7 @@ msgid ""
3726" String to send to the server when initiating the connection\n" 4001" String to send to the server when initiating the connection\n"
3727msgstr "" 4002msgstr ""
3728 4003
3729#: plugins/check_udp.c:248 4004#: plugins/check_udp.c:246
3730#, c-format 4005#, c-format
3731msgid "" 4006msgid ""
3732"This plugin will attempt to connect to the specified port on the host.\n" 4007"This plugin will attempt to connect to the specified port on the host.\n"
@@ -3735,7 +4010,98 @@ msgid ""
3735"\n" 4010"\n"
3736msgstr "" 4011msgstr ""
3737 4012
3738#: plugins/check_ups.c:597 4013#: plugins/check_ups.c:136
4014msgid "On Battery, Low Battery"
4015msgstr ""
4016
4017#: plugins/check_ups.c:141
4018msgid "Online"
4019msgstr ""
4020
4021#: plugins/check_ups.c:144
4022msgid "On Battery"
4023msgstr ""
4024
4025#: plugins/check_ups.c:148
4026msgid ", Low Battery"
4027msgstr ""
4028
4029#: plugins/check_ups.c:152
4030msgid ", Calibrating"
4031msgstr ""
4032
4033#: plugins/check_ups.c:155
4034msgid ", Replace Battery"
4035msgstr ""
4036
4037#: plugins/check_ups.c:159
4038msgid ", On Bypass"
4039msgstr ""
4040
4041#: plugins/check_ups.c:162
4042msgid ", Overload"
4043msgstr ""
4044
4045#: plugins/check_ups.c:165
4046msgid ", Trimming"
4047msgstr ""
4048
4049#: plugins/check_ups.c:168
4050msgid ", Boosting"
4051msgstr ""
4052
4053#: plugins/check_ups.c:171
4054msgid ", Charging"
4055msgstr ""
4056
4057#: plugins/check_ups.c:174
4058msgid ", Discharging"
4059msgstr ""
4060
4061#: plugins/check_ups.c:177
4062msgid ", Unknown"
4063msgstr ""
4064
4065#: plugins/check_ups.c:314
4066#, fuzzy
4067msgid "UPS does not support any available options\n"
4068msgstr "IPv6 Unterstützung nicht vorhanden"
4069
4070#: plugins/check_ups.c:338 plugins/check_ups.c:398
4071#, fuzzy, c-format
4072msgid "Invalid response received from host\n"
4073msgstr "Ungültige HTTP Antwort von Host empfangen\n"
4074
4075#: plugins/check_ups.c:406
4076#, c-format
4077msgid "CRITICAL - no such ups '%s' on that host\n"
4078msgstr ""
4079
4080#: plugins/check_ups.c:416
4081#, fuzzy, c-format
4082msgid "CRITICAL - UPS data is stale\n"
4083msgstr "CRITICAL - Serverdatum \"%100s\" konnte nicht verarbeitet werden"
4084
4085#: plugins/check_ups.c:421
4086#, fuzzy, c-format
4087msgid "Unknown error: %s\n"
4088msgstr "Papierfehler"
4089
4090#: plugins/check_ups.c:428
4091#, c-format
4092msgid "Error: unable to parse variable\n"
4093msgstr ""
4094
4095#: plugins/check_ups.c:535
4096msgid "Unrecognized UPS variable"
4097msgstr ""
4098
4099#: plugins/check_ups.c:573
4100#, c-format
4101msgid "Error : no ups indicated\n"
4102msgstr ""
4103
4104#: plugins/check_ups.c:593
3739#, c-format 4105#, c-format
3740msgid "" 4106msgid ""
3741"This plugin tests the UPS service on the specified host.\n" 4107"This plugin tests the UPS service on the specified host.\n"
@@ -3744,21 +4110,21 @@ msgid ""
3744"\n" 4110"\n"
3745msgstr "" 4111msgstr ""
3746 4112
3747#: plugins/check_ups.c:607 4113#: plugins/check_ups.c:603
3748#, c-format 4114#, c-format
3749msgid "" 4115msgid ""
3750" -u, --ups=STRING\n" 4116" -u, --ups=STRING\n"
3751" Name of UPS\n" 4117" Name of UPS\n"
3752msgstr "" 4118msgstr ""
3753 4119
3754#: plugins/check_ups.c:611 4120#: plugins/check_ups.c:607
3755#, c-format 4121#, c-format
3756msgid "" 4122msgid ""
3757" -T, --temperature\n" 4123" -T, --temperature\n"
3758" Output of temperatures in Celsius\n" 4124" Output of temperatures in Celsius\n"
3759msgstr "" 4125msgstr ""
3760 4126
3761#: plugins/check_ups.c:621 4127#: plugins/check_ups.c:617
3762#, c-format 4128#, c-format
3763msgid "" 4129msgid ""
3764"This plugin attempts to determine the status of a UPS (Uninterruptible " 4130"This plugin attempts to determine the status of a UPS (Uninterruptible "
@@ -3772,7 +4138,7 @@ msgid ""
3772"\n" 4138"\n"
3773msgstr "" 4139msgstr ""
3774 4140
3775#: plugins/check_ups.c:628 4141#: plugins/check_ups.c:624
3776#, c-format 4142#, c-format
3777msgid "" 4143msgid ""
3778"You may also specify a variable to check [such as temperature, utility " 4144"You may also specify a variable to check [such as temperature, utility "
@@ -3785,7 +4151,7 @@ msgid ""
3785"\n" 4151"\n"
3786msgstr "" 4152msgstr ""
3787 4153
3788#: plugins/check_ups.c:634 4154#: plugins/check_ups.c:630
3789#, c-format 4155#, c-format
3790msgid "" 4156msgid ""
3791"Notes:\n" 4157"Notes:\n"
@@ -3807,16 +4173,7 @@ msgstr ""
3807msgid "USERS %s - %d users currently logged in |%s\n" 4173msgid "USERS %s - %d users currently logged in |%s\n"
3808msgstr "" 4174msgstr ""
3809 4175
3810#: plugins/check_users.c:154 4176#: plugins/check_users.c:193
3811msgid "Critical threshold must be a positive integer\n"
3812msgstr "Critical threshold muss ein positiver Integer sein\n"
3813
3814#: plugins/check_users.c:160 plugins/check_users.c:170
3815#: plugins/check_users.c:177
3816msgid "Warning threshold must be a positive integer\n"
3817msgstr "Warning threshold muss ein positiver Integer sein\n"
3818
3819#: plugins/check_users.c:195
3820#, c-format 4177#, c-format
3821msgid "" 4178msgid ""
3822"This plugin checks the number of users currently logged in on the local\n" 4179"This plugin checks the number of users currently logged in on the local\n"
@@ -3824,7 +4181,7 @@ msgid ""
3824"specified.\n" 4181"specified.\n"
3825msgstr "" 4182msgstr ""
3826 4183
3827#: plugins/check_users.c:203 4184#: plugins/check_users.c:201
3828#, c-format 4185#, c-format
3829msgid "" 4186msgid ""
3830" -w, --warning=INTEGER\n" 4187" -w, --warning=INTEGER\n"
@@ -3833,79 +4190,79 @@ msgid ""
3833" Set CRITICAL status if more than INTEGER users are logged in\n" 4190" Set CRITICAL status if more than INTEGER users are logged in\n"
3834msgstr "" 4191msgstr ""
3835 4192
3836#: plugins/check_ide_smart.c:227 4193#: plugins/check_ide_smart.c:225
3837#, c-format 4194#, c-format
3838msgid "CRITICAL - Couldn't open device: %s\n" 4195msgid "CRITICAL - Couldn't open device: %s\n"
3839msgstr "CRITICAL - Device konnte nicht geöffnet werden: %s\n" 4196msgstr "CRITICAL - Device konnte nicht geöffnet werden: %s\n"
3840 4197
3841#: plugins/check_ide_smart.c:232 4198#: plugins/check_ide_smart.c:230
3842#, c-format 4199#, c-format
3843msgid "CRITICAL - SMART_CMD_ENABLE\n" 4200msgid "CRITICAL - SMART_CMD_ENABLE\n"
3844msgstr "" 4201msgstr ""
3845 4202
3846#: plugins/check_ide_smart.c:294 4203#: plugins/check_ide_smart.c:292
3847#, c-format 4204#, c-format
3848msgid "CRITICAL - SMART_READ_VALUES: %s\n" 4205msgid "CRITICAL - SMART_READ_VALUES: %s\n"
3849msgstr "" 4206msgstr ""
3850 4207
3851#: plugins/check_ide_smart.c:363 4208#: plugins/check_ide_smart.c:361
3852#, c-format 4209#, c-format
3853msgid "CRITICAL - %d Harddrive PreFailure%cDetected! %d/%d tests failed.\n" 4210msgid "CRITICAL - %d Harddrive PreFailure%cDetected! %d/%d tests failed.\n"
3854msgstr "" 4211msgstr ""
3855 4212
3856#: plugins/check_ide_smart.c:370 4213#: plugins/check_ide_smart.c:368
3857#, c-format 4214#, c-format
3858msgid "WARNING - %d Harddrive Advisor%s Detected. %d/%d tests failed.\n" 4215msgid "WARNING - %d Harddrive Advisor%s Detected. %d/%d tests failed.\n"
3859msgstr "" 4216msgstr ""
3860 4217
3861#: plugins/check_ide_smart.c:377 4218#: plugins/check_ide_smart.c:375
3862#, c-format 4219#, c-format
3863msgid "OK - Operational (%d/%d tests passed)\n" 4220msgid "OK - Operational (%d/%d tests passed)\n"
3864msgstr "" 4221msgstr ""
3865 4222
3866#: plugins/check_ide_smart.c:380 4223#: plugins/check_ide_smart.c:378
3867#, c-format 4224#, c-format
3868msgid "ERROR - Status '%d' uknown. %d/%d tests passed\n" 4225msgid "ERROR - Status '%d' uknown. %d/%d tests passed\n"
3869msgstr "" 4226msgstr ""
3870 4227
3871#: plugins/check_ide_smart.c:413 4228#: plugins/check_ide_smart.c:411
3872#, c-format 4229#, c-format
3873msgid "OffLineStatus=%d {%s}, AutoOffLine=%s, OffLineTimeout=%d minutes\n" 4230msgid "OffLineStatus=%d {%s}, AutoOffLine=%s, OffLineTimeout=%d minutes\n"
3874msgstr "" 4231msgstr ""
3875 4232
3876#: plugins/check_ide_smart.c:419 4233#: plugins/check_ide_smart.c:417
3877#, c-format 4234#, c-format
3878msgid "OffLineCapability=%d {%s %s %s}\n" 4235msgid "OffLineCapability=%d {%s %s %s}\n"
3879msgstr "" 4236msgstr ""
3880 4237
3881#: plugins/check_ide_smart.c:425 4238#: plugins/check_ide_smart.c:423
3882#, c-format 4239#, c-format
3883msgid "SmartRevision=%d, CheckSum=%d, SmartCapability=%d {%s %s}\n" 4240msgid "SmartRevision=%d, CheckSum=%d, SmartCapability=%d {%s %s}\n"
3884msgstr "" 4241msgstr ""
3885 4242
3886#: plugins/check_ide_smart.c:464 4243#: plugins/check_ide_smart.c:462
3887#, c-format 4244#, c-format
3888msgid "CRITICAL - %s: %s\n" 4245msgid "CRITICAL - %s: %s\n"
3889msgstr "" 4246msgstr ""
3890 4247
3891#: plugins/check_ide_smart.c:483 4248#: plugins/check_ide_smart.c:481
3892#, c-format 4249#, c-format
3893msgid "CRITICAL - SMART_READ_THRESHOLDS: %s\n" 4250msgid "CRITICAL - SMART_READ_THRESHOLDS: %s\n"
3894msgstr "" 4251msgstr ""
3895 4252
3896#: plugins/negate.c:244 4253#: plugins/negate.c:242
3897#, c-format 4254#, c-format
3898msgid "" 4255msgid ""
3899"Negates the status of a plugin (returns OK for CRITICAL, and vice-versa).\n" 4256"Negates the status of a plugin (returns OK for CRITICAL, and vice-versa).\n"
3900"\n" 4257"\n"
3901msgstr "" 4258msgstr ""
3902 4259
3903#: plugins/negate.c:253 4260#: plugins/negate.c:251
3904#, c-format 4261#, c-format
3905msgid " [keep timeout than the plugin timeout to retain CRITICAL status]\n" 4262msgid " [keep timeout than the plugin timeout to retain CRITICAL status]\n"
3906msgstr "" 4263msgstr ""
3907 4264
3908#: plugins/negate.c:256 4265#: plugins/negate.c:254
3909#, c-format 4266#, c-format
3910msgid "" 4267msgid ""
3911" negate \"/usr/local/nagios/libexec/check_ping -H host\"\n" 4268" negate \"/usr/local/nagios/libexec/check_ping -H host\"\n"
@@ -3914,7 +4271,7 @@ msgid ""
3914" Use single quotes if you need to retain spaces\n" 4271" Use single quotes if you need to retain spaces\n"
3915msgstr "" 4272msgstr ""
3916 4273
3917#: plugins/negate.c:262 4274#: plugins/negate.c:260
3918#, c-format 4275#, c-format
3919msgid "" 4276msgid ""
3920"This plugin is a wrapper to take the output of another plugin and invert " 4277"This plugin is a wrapper to take the output of another plugin and invert "
@@ -3926,14 +4283,63 @@ msgid ""
3926"Otherwise, the output state of the wrapped plugin is unchanged.\n" 4283"Otherwise, the output state of the wrapped plugin is unchanged.\n"
3927msgstr "" 4284msgstr ""
3928 4285
3929#: plugins/urlize.c:108 4286#: plugins/netutils.c:48
4287#, fuzzy, c-format
4288msgid "CRITICAL - Socket timeout after %d seconds\n"
4289msgstr "CRITICAL - Dokumentendatum ist %d Sekunden in der Zukunft\n"
4290
4291#: plugins/netutils.c:50
4292#, fuzzy, c-format
4293msgid "CRITICAL - Abnormal timeout after %d seconds\n"
4294msgstr "CRITICAL - Dokumentendatum ist %d Sekunden in der Zukunft\n"
4295
4296#: plugins/netutils.c:109 plugins/netutils.c:318
4297#, c-format
4298msgid "Send failed\n"
4299msgstr ""
4300
4301#: plugins/netutils.c:126 plugins/netutils.c:333
4302#, fuzzy, c-format
4303msgid "No data was received from host!\n"
4304msgstr "Keine Daten empfangen %s\n"
4305
4306#: plugins/netutils.c:242
4307#, c-format
4308msgid "Socket creation failed\n"
4309msgstr ""
4310
4311#: plugins/netutils.c:342
4312#, c-format
4313msgid "Receive failed\n"
4314msgstr ""
4315
4316#: plugins/popen.c:117
4317#, fuzzy, c-format
4318msgid "Could not malloc argv array in popen()\n"
4319msgstr "Konnte addr nicht zuweisen\n"
4320
4321#: plugins/popen.c:127
4322#, fuzzy, c-format
4323msgid "CRITICAL - You need more args!!!\n"
4324msgstr "CRITICAL - Fehler: %s\n"
4325
4326#: plugins/popen.c:248 plugins/utils.c:136
4327#, fuzzy, c-format
4328msgid "CRITICAL - Plugin timed out after %d seconds\n"
4329msgstr "CRITICAL - Dokumentendatum ist %d Sekunden in der Zukunft\n"
4330
4331#: plugins/popen.c:264
4332msgid "sysconf error for _SC_OPEN_MAX"
4333msgstr ""
4334
4335#: plugins/urlize.c:106
3930#, c-format 4336#, c-format
3931msgid "" 4337msgid ""
3932"%s UNKNOWN - No data received from host\n" 4338"%s UNKNOWN - No data received from host\n"
3933"CMD: %s</A>\n" 4339"CMD: %s</A>\n"
3934msgstr "" 4340msgstr ""
3935 4341
3936#: plugins/urlize.c:135 4342#: plugins/urlize.c:133
3937#, c-format 4343#, c-format
3938msgid "" 4344msgid ""
3939"\n" 4345"\n"
@@ -3944,7 +4350,7 @@ msgid ""
3944"\n" 4350"\n"
3945msgstr "" 4351msgstr ""
3946 4352
3947#: plugins/urlize.c:143 4353#: plugins/urlize.c:141
3948#, c-format 4354#, c-format
3949msgid "" 4355msgid ""
3950"\n" 4356"\n"
@@ -3962,6 +4368,48 @@ msgid ""
3962" urlize http://example.com/ \"check_http -H example.com -r 'two words'\"\n" 4368" urlize http://example.com/ \"check_http -H example.com -r 'two words'\"\n"
3963msgstr "" 4369msgstr ""
3964 4370
4371#: plugins/utils.c:433
4372#, fuzzy
4373msgid "failed realloc in strpcpy\n"
4374msgstr "konnte keinen Speicher für '%s' reservieren\n"
4375
4376#: plugins/utils.c:475
4377#, fuzzy
4378msgid "failed malloc in strscat\n"
4379msgstr "konnte keinen Speicher für '%s' reservieren\n"
4380
4381#~ msgid ""
4382#~ "Hostname was not supplied\n"
4383#~ "\n"
4384#~ msgstr ""
4385#~ "Kein Hostname angegeben\n"
4386#~ "\n"
4387
4388#~ msgid ""
4389#~ "%s: Unknown argument: %s\n"
4390#~ "\n"
4391#~ msgstr ""
4392#~ "%s: Unbekanntes Argument: %s\n"
4393#~ "\n"
4394
4395#~ msgid "Critical time must be a nonnegative integer"
4396#~ msgstr "Critical time muss ein positiver Integer sein"
4397
4398#~ msgid "Time interval must be a nonnegative integer"
4399#~ msgstr "Time interval muss ein positiver Integer sein"
4400
4401#~ msgid "Time interval must be a positive integer"
4402#~ msgstr "Time interval muss ein positiver Integer sein"
4403
4404#~ msgid "Warning threshold must be integer or percentage!\n"
4405#~ msgstr "Warning threshold muss ein Integer oder ein Prozentwert sein!\n"
4406
4407#~ msgid "Critical threshold must be a positive integer\n"
4408#~ msgstr "Critical threshold muss ein positiver Integer sein\n"
4409
4410#~ msgid "Warning threshold must be a positive integer\n"
4411#~ msgstr "Warning threshold muss ein positiver Integer sein\n"
4412
3965#~ msgid "check_http: invalid option - SSL is not available\n" 4413#~ msgid "check_http: invalid option - SSL is not available\n"
3966#~ msgstr "check_http: ungültige Option - SSL ist nicht verfügbar\n" 4414#~ msgstr "check_http: ungültige Option - SSL ist nicht verfügbar\n"
3967 4415
diff --git a/po/fr.po b/po/fr.po
index 69b81bb..47f7bc1 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -9,7 +9,7 @@ msgid ""
9msgstr "" 9msgstr ""
10"Project-Id-Version: fr\n" 10"Project-Id-Version: fr\n"
11"Report-Msgid-Bugs-To: \n" 11"Report-Msgid-Bugs-To: \n"
12"POT-Creation-Date: 2004-12-25 16:26+0100\n" 12"POT-Creation-Date: 2004-12-26 00:06+0100\n"
13"PO-Revision-Date: 2004-12-20 21:03+0100\n" 13"PO-Revision-Date: 2004-12-20 21:03+0100\n"
14"Last-Translator: Benoit Mortier <benoit.mortier@opensides.be>\n" 14"Last-Translator: Benoit Mortier <benoit.mortier@opensides.be>\n"
15"Language-Team: Français <benoit.mortier@opensides.be>\n" 15"Language-Team: Français <benoit.mortier@opensides.be>\n"
@@ -20,7 +20,7 @@ msgstr ""
20"X-Generator: KBabel 1.3.1\n" 20"X-Generator: KBabel 1.3.1\n"
21 21
22#: plugins/check_by_ssh.c:72 plugins/check_dhcp.c:251 plugins/check_dig.c:72 22#: plugins/check_by_ssh.c:72 plugins/check_dhcp.c:251 plugins/check_dig.c:72
23#: plugins/check_disk.c:167 plugins/check_dns.c:75 plugins/check_dummy.c:44 23#: plugins/check_disk.c:167 plugins/check_dns.c:75 plugins/check_dummy.c:43
24#: plugins/check_fping.c:73 plugins/check_game.c:69 plugins/check_hpjd.c:89 24#: plugins/check_fping.c:73 plugins/check_game.c:69 plugins/check_hpjd.c:89
25#: plugins/check_http.c:149 plugins/check_ldap.c:92 plugins/check_load.c:78 25#: plugins/check_http.c:149 plugins/check_ldap.c:92 plugins/check_load.c:78
26#: plugins/check_mrtgtraf.c:66 plugins/check_mysql.c:63 26#: plugins/check_mrtgtraf.c:66 plugins/check_mysql.c:63
@@ -44,7 +44,7 @@ msgstr "impossible d'obtenir le signal SIGALRM"
44#: plugins/check_fping.c:87 plugins/check_game.c:86 plugins/check_hpjd.c:114 44#: plugins/check_fping.c:87 plugins/check_game.c:86 plugins/check_hpjd.c:114
45#: plugins/check_nagios.c:103 plugins/check_procs.c:137 45#: plugins/check_nagios.c:103 plugins/check_procs.c:137
46#: plugins/check_snmp.c:172 plugins/check_swap.c:151 plugins/check_users.c:59 46#: plugins/check_snmp.c:172 plugins/check_swap.c:151 plugins/check_users.c:59
47#: plugins/negate.c:97 plugins/urlize.c:90 47#: plugins/negate.c:97 plugins/urlize.c:88
48#, c-format 48#, c-format
49msgid "Could not open pipe: %s\n" 49msgid "Could not open pipe: %s\n"
50msgstr "Impossible d'ouvrir le pipe: %s\n" 50msgstr "Impossible d'ouvrir le pipe: %s\n"
@@ -53,7 +53,7 @@ msgstr "Impossible d'ouvrir le pipe: %s\n"
53#: plugins/check_fping.c:93 plugins/check_hpjd.c:120 plugins/check_load.c:115 53#: plugins/check_fping.c:93 plugins/check_hpjd.c:120 plugins/check_load.c:115
54#: plugins/check_nagios.c:109 plugins/check_procs.c:143 54#: plugins/check_nagios.c:109 plugins/check_procs.c:143
55#: plugins/check_snmp.c:178 plugins/check_swap.c:157 plugins/check_users.c:65 55#: plugins/check_snmp.c:178 plugins/check_swap.c:157 plugins/check_users.c:65
56#: plugins/negate.c:102 plugins/urlize.c:96 56#: plugins/negate.c:102 plugins/urlize.c:94
57#, c-format 57#, c-format
58msgid "Could not open stderr for %s\n" 58msgid "Could not open stderr for %s\n"
59msgstr "Impossible d'ouvrir stderr pour %s\n" 59msgstr "Impossible d'ouvrir stderr pour %s\n"
@@ -63,41 +63,55 @@ msgstr "Impossible d'ouvrir stderr pour %s\n"
63msgid "SSH WARNING: could not open %s\n" 63msgid "SSH WARNING: could not open %s\n"
64msgstr "SSH ALERTE: impossible d'ouvrir %s\n" 64msgstr "SSH ALERTE: impossible d'ouvrir %s\n"
65 65
66#: plugins/check_by_ssh.c:216 plugins/check_http.c:254 66#: plugins/check_by_ssh.c:216 plugins/check_dig.c:217 plugins/check_disk.c:441
67#: plugins/check_dns.c:315 plugins/check_fping.c:245 plugins/check_game.c:201
68#: plugins/check_hpjd.c:336 plugins/check_http.c:254 plugins/check_ldap.c:315
69#: plugins/check_load.c:227 plugins/check_mrtg.c:236
70#: plugins/check_mrtgtraf.c:263 plugins/check_mysql.c:214
71#: plugins/check_nagios.c:222 plugins/check_nt.c:490
72#: plugins/check_nwstat.c:763 plugins/check_overcr.c:327
73#: plugins/check_pgsql.c:212 plugins/check_ping.c:197
74#: plugins/check_procs.c:346 plugins/check_radius.c:221
75#: plugins/check_real.c:354 plugins/check_smtp.c:374 plugins/check_snmp.c:401
76#: plugins/check_ssh.c:113 plugins/check_swap.c:423 plugins/check_tcp.c:465
77#: plugins/check_time.c:219 plugins/check_udp.c:149 plugins/check_ups.c:484
78#: plugins/check_users.c:143 plugins/check_ide_smart.c:209
79#: plugins/negate.c:177 plugins/urlize.c:74
67#, fuzzy 80#, fuzzy
68msgid "Unknown argument" 81msgid "Unknown argument"
69msgstr "" 82msgstr ""
70"%s: Argument inconnu: %c\n" 83"%s: Argument inconnu: %c\n"
71"\n" 84"\n"
72 85
73#: plugins/check_by_ssh.c:228 plugins/check_dig.c:266 plugins/check_disk.c:308 86#: plugins/check_by_ssh.c:228 plugins/check_dig.c:264 plugins/check_disk.c:308
74#: plugins/check_http.c:266 plugins/check_ldap.c:268 plugins/check_pgsql.c:223 87#: plugins/check_http.c:266 plugins/check_ldap.c:268 plugins/check_pgsql.c:221
75#: plugins/check_procs.c:357 plugins/check_radius.c:198 88#: plugins/check_procs.c:355 plugins/check_radius.c:198
76#: plugins/check_radius.c:270 plugins/check_snmp.c:447 plugins/check_ssh.c:127 89#: plugins/check_radius.c:268 plugins/check_real.c:344
77#: plugins/check_tcp.c:519 plugins/check_time.c:292 plugins/check_udp.c:182 90#: plugins/check_smtp.c:354 plugins/check_snmp.c:445 plugins/check_ssh.c:125
78#: plugins/negate.c:190 91#: plugins/check_tcp.c:517 plugins/check_time.c:290 plugins/check_udp.c:180
92#: plugins/check_ups.c:542 plugins/negate.c:188
79msgid "Timeout interval must be a positive integer" 93msgid "Timeout interval must be a positive integer"
80msgstr "L'intervalle de temps doit être un entier positif" 94msgstr "L'intervalle de temps doit être un entier positif"
81 95
82#: plugins/check_by_ssh.c:234 plugins/check_by_ssh.c:293 96#: plugins/check_by_ssh.c:234 plugins/check_by_ssh.c:293
83#: plugins/check_dig.c:231 plugins/check_dig.c:288 plugins/check_dns.c:340 97#: plugins/check_dig.c:229 plugins/check_dig.c:286 plugins/check_dns.c:337
84#: plugins/check_dns.c:349 plugins/check_fping.c:259 plugins/check_hpjd.c:324 98#: plugins/check_dns.c:346 plugins/check_fping.c:257 plugins/check_hpjd.c:323
85#: plugins/check_hpjd.c:349 plugins/check_mysql.c:190 99#: plugins/check_hpjd.c:346 plugins/check_mysql.c:189
86#: plugins/check_mysql.c:230 plugins/check_pgsql.c:241 100#: plugins/check_mysql.c:227 plugins/check_pgsql.c:239
87#: plugins/check_ping.c:270 plugins/check_ping.c:393 101#: plugins/check_ping.c:268 plugins/check_ping.c:391
88#: plugins/check_radius.c:235 plugins/check_real.c:302 102#: plugins/check_radius.c:233 plugins/check_real.c:302
89#: plugins/check_real.c:366 plugins/check_smtp.c:292 plugins/check_smtp.c:386 103#: plugins/check_real.c:364 plugins/check_smtp.c:292 plugins/check_smtp.c:384
90#: plugins/check_ssh.c:146 plugins/check_tcp.c:489 plugins/check_time.c:230 104#: plugins/check_ssh.c:144 plugins/check_tcp.c:487 plugins/check_time.c:228
91#: plugins/check_time.c:305 plugins/check_udp.c:163 plugins/check_udp.c:204 105#: plugins/check_time.c:303 plugins/check_udp.c:161 plugins/check_udp.c:202
92#: plugins/check_ups.c:492 plugins/check_ups.c:561 106#: plugins/check_ups.c:490 plugins/check_ups.c:559
93msgid "Invalid hostname/address" 107msgid "Invalid hostname/address"
94msgstr "Adresse/Nom invalide" 108msgstr "Adresse/Nom invalide"
95 109
96#: plugins/check_by_ssh.c:239 plugins/check_dig.c:239 110#: plugins/check_by_ssh.c:239 plugins/check_dig.c:237
97#: plugins/check_pgsql.c:247 plugins/check_radius.c:207 111#: plugins/check_pgsql.c:245 plugins/check_radius.c:207
98#: plugins/check_radius.c:243 plugins/check_real.c:315 112#: plugins/check_radius.c:241 plugins/check_real.c:315
99#: plugins/check_smtp.c:299 plugins/check_tcp.c:525 plugins/check_time.c:286 113#: plugins/check_smtp.c:299 plugins/check_tcp.c:523 plugins/check_time.c:284
100#: plugins/check_udp.c:188 114#: plugins/check_udp.c:186 plugins/check_ups.c:504
101msgid "Port must be a positive integer" 115msgid "Port must be a positive integer"
102msgstr "Le numéro du port doit être un entier positif" 116msgstr "Le numéro du port doit être un entier positif"
103 117
@@ -509,6 +523,11 @@ msgid ""
509" Print version information\n" 523" Print version information\n"
510msgstr "" 524msgstr ""
511 525
526#: plugins/check_dig.c:84 plugins/check_dig.c:86
527#, c-format
528msgid "Looking for: '%s'\n"
529msgstr ""
530
512#: plugins/check_dig.c:130 531#: plugins/check_dig.c:130
513msgid "Server not found in ANSWER SECTION" 532msgid "Server not found in ANSWER SECTION"
514msgstr "Le serveur n'a pas été trouvé dans l'ANSWER SECTION" 533msgstr "Le serveur n'a pas été trouvé dans l'ANSWER SECTION"
@@ -531,34 +550,15 @@ msgstr " Probablement un hôte/domaine inexistant"
531msgid "%.3f seconds response time (%s)" 550msgid "%.3f seconds response time (%s)"
532msgstr "%.3f secondes de temps de réponse (%s)" 551msgstr "%.3f secondes de temps de réponse (%s)"
533 552
534#: plugins/check_dig.c:217 plugins/check_disk.c:441 plugins/check_dns.c:316 553#: plugins/check_dig.c:248
535#: plugins/check_fping.c:245 plugins/check_game.c:202 plugins/check_hpjd.c:337
536#: plugins/check_ldap.c:315 plugins/check_load.c:227 plugins/check_mrtg.c:236
537#: plugins/check_mrtgtraf.c:263 plugins/check_mysql.c:215
538#: plugins/check_overcr.c:335 plugins/check_pgsql.c:212
539#: plugins/check_ping.c:197 plugins/check_procs.c:346
540#: plugins/check_radius.c:221 plugins/check_real.c:354
541#: plugins/check_smtp.c:374 plugins/check_snmp.c:401 plugins/check_ssh.c:113
542#: plugins/check_swap.c:423 plugins/check_tcp.c:465 plugins/check_time.c:219
543#: plugins/check_udp.c:149 plugins/check_ups.c:484 plugins/check_users.c:143
544#: plugins/check_ide_smart.c:209 plugins/negate.c:177 plugins/urlize.c:74
545#, c-format
546msgid ""
547"%s: Unknown argument: %s\n"
548"\n"
549msgstr ""
550"%s: Argument inconnu: %s\n"
551"\n"
552
553#: plugins/check_dig.c:250
554msgid "Warning interval must be a positive integer" 554msgid "Warning interval must be a positive integer"
555msgstr "Attention l'intervalle doit être un entier positif" 555msgstr "Attention l'intervalle doit être un entier positif"
556 556
557#: plugins/check_dig.c:258 557#: plugins/check_dig.c:256
558msgid "Critical interval must be a positive integer" 558msgid "Critical interval must be a positive integer"
559msgstr "Critique l'intervalle doit être un entier positif" 559msgstr "Critique l'intervalle doit être un entier positif"
560 560
561#: plugins/check_dig.c:321 561#: plugins/check_dig.c:319
562#, c-format 562#, c-format
563msgid "" 563msgid ""
564"Test the DNS service on the specified host using dig\n" 564"Test the DNS service on the specified host using dig\n"
@@ -567,7 +567,7 @@ msgstr ""
567"Teste le service DNS sur l'hôte spécifié en utilisant dig\n" 567"Teste le service DNS sur l'hôte spécifié en utilisant dig\n"
568"\n" 568"\n"
569 569
570#: plugins/check_dig.c:329 570#: plugins/check_dig.c:327
571#, c-format 571#, c-format
572msgid "" 572msgid ""
573" -l, --lookup=STRING\n" 573" -l, --lookup=STRING\n"
@@ -576,7 +576,7 @@ msgstr ""
576" -l, --lookup=STRING\n" 576" -l, --lookup=STRING\n"
577" nom de machine à vérifier\n" 577" nom de machine à vérifier\n"
578 578
579#: plugins/check_dig.c:333 579#: plugins/check_dig.c:331
580#, c-format 580#, c-format
581msgid "" 581msgid ""
582" -T, --record_type=STRING\n" 582" -T, --record_type=STRING\n"
@@ -585,7 +585,7 @@ msgstr ""
585" -T, --record_type=STRING\n" 585" -T, --record_type=STRING\n"
586" type d'enregistrement à vérifier (défaut: A)\n" 586" type d'enregistrement à vérifier (défaut: A)\n"
587 587
588#: plugins/check_dig.c:337 588#: plugins/check_dig.c:335
589#, c-format 589#, c-format
590msgid "" 590msgid ""
591" -a, --expected_address=STRING\n" 591" -a, --expected_address=STRING\n"
@@ -612,7 +612,7 @@ msgstr ""
612msgid "%s [%s not found]" 612msgid "%s [%s not found]"
613msgstr "%s [%s non trouvé]" 613msgstr "%s [%s non trouvé]"
614 614
615#: plugins/check_disk.c:325 615#: plugins/check_disk.c:325 plugins/check_swap.c:391
616msgid "Warning threshold must be integer or percentage!" 616msgid "Warning threshold must be integer or percentage!"
617msgstr "Le seuil d'alerte doit être un entier positif!" 617msgstr "Le seuil d'alerte doit être un entier positif!"
618 618
@@ -630,12 +630,17 @@ msgstr "unité de type %s inconnue\n"
630msgid "failed allocating storage for '%s'\n" 630msgid "failed allocating storage for '%s'\n"
631msgstr "Impossible d'allouer de l'espace pour '%s'\n" 631msgstr "Impossible d'allouer de l'espace pour '%s'\n"
632 632
633#: plugins/check_disk.c:502 633#: plugins/check_disk.c:489
634#, fuzzy, c-format
635msgid " for %s\n"
636msgstr "Format: %s\n"
637
638#: plugins/check_disk.c:500
634#, c-format 639#, c-format
635msgid "INPUT ERROR: No thresholds specified" 640msgid "INPUT ERROR: No thresholds specified"
636msgstr "INPUT ERROR: Pas de seuil spécifié" 641msgstr "INPUT ERROR: Pas de seuil spécifié"
637 642
638#: plugins/check_disk.c:508 643#: plugins/check_disk.c:506
639#, c-format 644#, c-format
640msgid "" 645msgid ""
641"INPUT ERROR: C_DFP (%f) should be less than W_DFP (%.1f) and both should be " 646"INPUT ERROR: C_DFP (%f) should be less than W_DFP (%.1f) and both should be "
@@ -644,7 +649,7 @@ msgstr ""
644"INPUT ERROR: C_DFP (%f) doit être plus petit que W_DFP (%.1f) et les deux " 649"INPUT ERROR: C_DFP (%f) doit être plus petit que W_DFP (%.1f) et les deux "
645"doivent être entre 0 et 100 pourcent" 650"doivent être entre 0 et 100 pourcent"
646 651
647#: plugins/check_disk.c:515 652#: plugins/check_disk.c:513
648#, c-format 653#, c-format
649msgid "" 654msgid ""
650"INPUT ERROR: C_DF (%lu) should be less than W_DF (%lu) and both should be " 655"INPUT ERROR: C_DF (%lu) should be less than W_DF (%lu) and both should be "
@@ -653,7 +658,7 @@ msgstr ""
653"INPUT ERROR: C_DF (%lu) doit être plus petit que W_DF (%lu) et les deux " 658"INPUT ERROR: C_DF (%lu) doit être plus petit que W_DF (%lu) et les deux "
654"doivent être plus grands que zéro" 659"doivent être plus grands que zéro"
655 660
656#: plugins/check_disk.c:579 661#: plugins/check_disk.c:577
657#, c-format 662#, c-format
658msgid "" 663msgid ""
659"This plugin checks the amount of used disk space on a mounted file system\n" 664"This plugin checks the amount of used disk space on a mounted file system\n"
@@ -666,7 +671,7 @@ msgstr ""
666"valeurs fournies.\n" 671"valeurs fournies.\n"
667"\n" 672"\n"
668 673
669#: plugins/check_disk.c:587 674#: plugins/check_disk.c:585
670#, c-format 675#, c-format
671msgid "" 676msgid ""
672" -w, --warning=INTEGER\n" 677" -w, --warning=INTEGER\n"
@@ -695,7 +700,7 @@ msgstr ""
695" -C, --clear\n" 700" -C, --clear\n"
696" Remet à zéro\n" 701" Remet à zéro\n"
697 702
698#: plugins/check_disk.c:599 703#: plugins/check_disk.c:597
699#, c-format 704#, c-format
700msgid "" 705msgid ""
701" -u, --units=STRING\n" 706" -u, --units=STRING\n"
@@ -712,7 +717,7 @@ msgstr ""
712" -m, --megabytes\n" 717" -m, --megabytes\n"
713" Identique à '--units MB'\n" 718" Identique à '--units MB'\n"
714 719
715#: plugins/check_disk.c:607 720#: plugins/check_disk.c:605
716#, c-format 721#, c-format
717msgid "" 722msgid ""
718" -l, --local\n" 723" -l, --local\n"
@@ -742,7 +747,7 @@ msgstr ""
742" -e, --errors-only\n" 747" -e, --errors-only\n"
743" Affiche seulement les périphériques/points de montage avec des erreurs\n" 748" Affiche seulement les périphériques/points de montage avec des erreurs\n"
744 749
745#: plugins/check_disk.c:627 750#: plugins/check_disk.c:625
746msgid "" 751msgid ""
747"Examples:\n" 752"Examples:\n"
748" check_disk -w 10% -c 5% -p /tmp -p /var -C -w 100000 -c 50000 -p /\n" 753" check_disk -w 10% -c 5% -p /tmp -p /var -C -w 100000 -c 50000 -p /\n"
@@ -761,6 +766,10 @@ msgstr "Alerte erreur de plugin"
761msgid "DNS CRITICAL - '%s' returned empty host name string\n" 766msgid "DNS CRITICAL - '%s' returned empty host name string\n"
762msgstr "DNS CRITIQUE - '%s' à retourné un nom d'hôte vide\n" 767msgstr "DNS CRITIQUE - '%s' à retourné un nom d'hôte vide\n"
763 768
769#: plugins/check_dns.c:138
770msgid "Non-authoritative answer:"
771msgstr ""
772
764#: plugins/check_dns.c:171 773#: plugins/check_dns.c:171
765msgid "nslookup returned error status" 774msgid "nslookup returned error status"
766msgstr "nslookup à retourné une erreur" 775msgstr "nslookup à retourné une erreur"
@@ -780,7 +789,7 @@ msgstr "j'attendais %s mais j'ai reçu %s"
780msgid "server %s is not authoritative for %s" 789msgid "server %s is not authoritative for %s"
781msgstr "Le serveur %s est autoritaire pour %s" 790msgstr "Le serveur %s est autoritaire pour %s"
782 791
783#: plugins/check_dns.c:202 plugins/check_dummy.c:60 plugins/check_http.c:930 792#: plugins/check_dns.c:202 plugins/check_dummy.c:59 plugins/check_http.c:930
784#: plugins/check_http.c:1183 plugins/check_procs.c:279 793#: plugins/check_http.c:1183 plugins/check_procs.c:279
785#, c-format 794#, c-format
786msgid "OK" 795msgid "OK"
@@ -852,13 +861,13 @@ msgstr "Le réseau est injoignable\n"
852msgid "DNS failure for %s\n" 861msgid "DNS failure for %s\n"
853msgstr "DNS à échoué pour %s\n" 862msgstr "DNS à échoué pour %s\n"
854 863
855#: plugins/check_dns.c:333 plugins/check_dns.c:343 plugins/check_dns.c:352 864#: plugins/check_dns.c:330 plugins/check_dns.c:340 plugins/check_dns.c:349
856#: plugins/check_dns.c:357 plugins/check_dns.c:370 plugins/check_dns.c:381 865#: plugins/check_dns.c:354 plugins/check_dns.c:367 plugins/check_dns.c:378
857#: plugins/check_game.c:219 plugins/check_game.c:227 866#: plugins/check_game.c:216 plugins/check_game.c:224
858msgid "Input buffer overflow\n" 867msgid "Input buffer overflow\n"
859msgstr "Le tampon d'entrée a débordé\n" 868msgstr "Le tampon d'entrée a débordé\n"
860 869
861#: plugins/check_dns.c:377 870#: plugins/check_dns.c:374
862#, c-format 871#, c-format
863msgid "" 872msgid ""
864"Invalid hostname/address: %s\n" 873"Invalid hostname/address: %s\n"
@@ -867,7 +876,7 @@ msgstr ""
867"Adresse/Nom invalide: %s\n" 876"Adresse/Nom invalide: %s\n"
868"\n" 877"\n"
869 878
870#: plugins/check_dns.c:409 879#: plugins/check_dns.c:404
871#, c-format 880#, c-format
872msgid "" 881msgid ""
873"This plugin uses the nslookup program to obtain the IP address\n" 882"This plugin uses the nslookup program to obtain the IP address\n"
@@ -882,7 +891,7 @@ msgstr ""
882"dans /etc/resolv.conf sera utilisé.\n" 891"dans /etc/resolv.conf sera utilisé.\n"
883"\n" 892"\n"
884 893
885#: plugins/check_dns.c:419 894#: plugins/check_dns.c:414
886#, c-format 895#, c-format
887msgid "" 896msgid ""
888"-H, --hostname=HOST\n" 897"-H, --hostname=HOST\n"
@@ -903,31 +912,31 @@ msgstr ""
903"-A, --expect-authority\n" 912"-A, --expect-authority\n"
904" Serveur DNS qui doit normalement être autoritatif pour la recherche\n" 913" Serveur DNS qui doit normalement être autoritatif pour la recherche\n"
905 914
906#: plugins/check_dummy.c:54 915#: plugins/check_dummy.c:53
907msgid "Arguments to check_dummy must be an integer" 916msgid "Arguments to check_dummy must be an integer"
908msgstr "Les arguments pour check_dummy doivent être des entiers" 917msgstr "Les arguments pour check_dummy doivent être des entiers"
909 918
910#: plugins/check_dummy.c:63 plugins/check_http.c:932 plugins/check_procs.c:281 919#: plugins/check_dummy.c:62 plugins/check_http.c:932 plugins/check_procs.c:281
911#, c-format 920#, c-format
912msgid "WARNING" 921msgid "WARNING"
913msgstr "ALERTE" 922msgstr "ALERTE"
914 923
915#: plugins/check_dummy.c:66 plugins/check_http.c:934 plugins/check_procs.c:286 924#: plugins/check_dummy.c:65 plugins/check_http.c:934 plugins/check_procs.c:286
916#, c-format 925#, c-format
917msgid "CRITICAL" 926msgid "CRITICAL"
918msgstr "CRITIQUE" 927msgstr "CRITIQUE"
919 928
920#: plugins/check_dummy.c:69 plugins/check_http.c:928 929#: plugins/check_dummy.c:68 plugins/check_http.c:928
921#, c-format 930#, c-format
922msgid "UNKNOWN" 931msgid "UNKNOWN"
923msgstr "INCONNU" 932msgstr "INCONNU"
924 933
925#: plugins/check_dummy.c:72 934#: plugins/check_dummy.c:71
926#, c-format 935#, c-format
927msgid "Status %d is not a supported error state\n" 936msgid "Status %d is not a supported error state\n"
928msgstr "L'état %d n'est pas un état supporté\n" 937msgstr "L'état %d n'est pas un état supporté\n"
929 938
930#: plugins/check_dummy.c:94 939#: plugins/check_dummy.c:93
931#, c-format 940#, c-format
932msgid "" 941msgid ""
933"This plugin will simply return the state corresponding to the numeric value\n" 942"This plugin will simply return the state corresponding to the numeric value\n"
@@ -963,35 +972,31 @@ msgstr "FPING %s - %s (perte=%.0f%%, rta=%f ms)|%s %s\n"
963msgid "FPING %s - %s (loss=%.0f%% )|%s\n" 972msgid "FPING %s - %s (loss=%.0f%% )|%s\n"
964msgstr "FPING %s - %s (perte=%.0f%% )|%s\n" 973msgstr "FPING %s - %s (perte=%.0f%% )|%s\n"
965 974
966#: plugins/check_fping.c:293 975#: plugins/check_fping.c:291
967msgid "Packet size must be a positive integer" 976msgid "Packet size must be a positive integer"
968msgstr "La taille du paquet doit être un entier positif" 977msgstr "La taille du paquet doit être un entier positif"
969 978
970#: plugins/check_fping.c:299 979#: plugins/check_fping.c:297
971msgid "Packet count must be a positive integer" 980msgid "Packet count must be a positive integer"
972msgstr "Le nombre de paquets doit être un entier positif" 981msgstr "Le nombre de paquets doit être un entier positif"
973 982
974#: plugins/check_fping.c:306 983#: plugins/check_fping.c:303 plugins/check_time.c:307 plugins/check_udp.c:207
975msgid "" 984msgid "Hostname was not supplied"
976"Hostname was not supplied\n" 985msgstr "Le nom de l'hôte n'a pas été spécifié"
977"\n"
978msgstr ""
979"Le nom de l'hôte n'a pas été fourni\n"
980"\n"
981 986
982#: plugins/check_fping.c:327 987#: plugins/check_fping.c:323
983#, c-format 988#, c-format
984msgid "%s: Only one threshold may be packet loss (%s)\n" 989msgid "%s: Only one threshold may be packet loss (%s)\n"
985msgstr "" 990msgstr ""
986"%s: Seulement un seuil peut être utilisé pour les pertes de paquets (%s)\n" 991"%s: Seulement un seuil peut être utilisé pour les pertes de paquets (%s)\n"
987 992
988#: plugins/check_fping.c:331 993#: plugins/check_fping.c:327
989#, c-format 994#, c-format
990msgid "%s: Only one threshold must be packet loss (%s)\n" 995msgid "%s: Only one threshold must be packet loss (%s)\n"
991msgstr "" 996msgstr ""
992"%s: Seulement un seuil doit être utilisé pour les pertes de paquets (%s)\n" 997"%s: Seulement un seuil doit être utilisé pour les pertes de paquets (%s)\n"
993 998
994#: plugins/check_fping.c:364 999#: plugins/check_fping.c:359
995#, c-format 1000#, c-format
996msgid "" 1001msgid ""
997"This plugin will use the /bin/fping command to ping the specified host\n" 1002"This plugin will use the /bin/fping command to ping the specified host\n"
@@ -1005,7 +1010,7 @@ msgstr ""
1005"fping.\n" 1010"fping.\n"
1006"\n" 1011"\n"
1007 1012
1008#: plugins/check_fping.c:373 1013#: plugins/check_fping.c:368
1009#, c-format 1014#, c-format
1010msgid "" 1015msgid ""
1011" -H, --hostname=HOST\n" 1016" -H, --hostname=HOST\n"
@@ -1033,7 +1038,7 @@ msgstr ""
1033" -n, --number=INTEGER\n" 1038" -n, --number=INTEGER\n"
1034" Nombre de paquets ICMP à envoyer (défaut: %d)\n" 1039" Nombre de paquets ICMP à envoyer (défaut: %d)\n"
1035 1040
1036#: plugins/check_fping.c:389 1041#: plugins/check_fping.c:384
1037#, c-format 1042#, c-format
1038msgid "" 1043msgid ""
1039"\n" 1044"\n"
@@ -1051,12 +1056,27 @@ msgstr ""
1051msgid "CRITICAL - Host type parameter incorrect!\n" 1056msgid "CRITICAL - Host type parameter incorrect!\n"
1052msgstr "CRITIQUE - Argument de type hôte incorrect!\n" 1057msgstr "CRITIQUE - Argument de type hôte incorrect!\n"
1053 1058
1054#: plugins/check_game.c:305 1059#: plugins/check_game.c:126
1060#, fuzzy, c-format
1061msgid "CRITICAL - Host not found\n"
1062msgstr "CRITIQUE - Hôte non trouvé (%s)"
1063
1064#: plugins/check_game.c:130
1065#, fuzzy, c-format
1066msgid "CRITICAL - Game server down or unavailable\n"
1067msgstr "CRITIQUE - Date du serveur \"%100s\" illisible"
1068
1069#: plugins/check_game.c:134
1070#, fuzzy, c-format
1071msgid "CRITICAL - Game server timeout\n"
1072msgstr "CRITIQUE - Impossible d'obtenir le certificat du serveur.\n"
1073
1074#: plugins/check_game.c:300
1055#, c-format 1075#, c-format
1056msgid "This plugin tests game server connections with the specified host." 1076msgid "This plugin tests game server connections with the specified host."
1057msgstr "Le plugin teste la connection au serveur de jeux avec l'hôte spécifié." 1077msgstr "Le plugin teste la connection au serveur de jeux avec l'hôte spécifié."
1058 1078
1059#: plugins/check_game.c:311 1079#: plugins/check_game.c:306
1060#, c-format 1080#, c-format
1061msgid "" 1081msgid ""
1062"<game> = Game type that is recognised by qstat (without the leading " 1082"<game> = Game type that is recognised by qstat (without the leading "
@@ -1075,7 +1095,7 @@ msgstr ""
1075" [map_field] = Numéro du champ qui contient le nom de la carte\n" 1095" [map_field] = Numéro du champ qui contient le nom de la carte\n"
1076" [ping_field] = Numéro du champ qui contient le temp de ping\n" 1096" [ping_field] = Numéro du champ qui contient le temp de ping\n"
1077 1097
1078#: plugins/check_game.c:321 1098#: plugins/check_game.c:316
1079#, c-format 1099#, c-format
1080msgid "" 1100msgid ""
1081"\n" 1101"\n"
@@ -1144,7 +1164,7 @@ msgstr "Erreur de papier inconnue"
1144msgid "Printer ok - (%s)\n" 1164msgid "Printer ok - (%s)\n"
1145msgstr "Imprimante ok - (%s)\n" 1165msgstr "Imprimante ok - (%s)\n"
1146 1166
1147#: plugins/check_hpjd.c:381 1167#: plugins/check_hpjd.c:376
1148#, c-format 1168#, c-format
1149msgid "" 1169msgid ""
1150"This plugin tests the STATUS of an HP printer with a JetDirect card.\n" 1170"This plugin tests the STATUS of an HP printer with a JetDirect card.\n"
@@ -1155,7 +1175,7 @@ msgstr ""
1155"Net snmp doit être installé sur l'ordinateur qui execute le plugin.\n" 1175"Net snmp doit être installé sur l'ordinateur qui execute le plugin.\n"
1156"\n" 1176"\n"
1157 1177
1158#: plugins/check_hpjd.c:389 1178#: plugins/check_hpjd.c:384
1159#, c-format 1179#, c-format
1160msgid "" 1180msgid ""
1161" -C, --community=STRING\n" 1181" -C, --community=STRING\n"
@@ -1168,7 +1188,7 @@ msgstr ""
1168msgid "HTTP CRITICAL - Could not make SSL connection\n" 1188msgid "HTTP CRITICAL - Could not make SSL connection\n"
1169msgstr "HTTP CRITIQUE - Impossible d'établir une connection SSL\n" 1189msgstr "HTTP CRITIQUE - Impossible d'établir une connection SSL\n"
1170 1190
1171#: plugins/check_http.c:177 plugins/check_http.c:739 1191#: plugins/check_http.c:177 plugins/check_http.c:739 plugins/check_tcp.c:268
1172#, c-format 1192#, c-format
1173msgid "CRITICAL - Cannot retrieve server certificate.\n" 1193msgid "CRITICAL - Cannot retrieve server certificate.\n"
1174msgstr "CRITIQUE - Impossible d'obtenir le certificat du serveur.\n" 1194msgstr "CRITIQUE - Impossible d'obtenir le certificat du serveur.\n"
@@ -1186,7 +1206,7 @@ msgstr "Le seuil d'alerte doit être un entier positif"
1186msgid "Invalid option - SSL is not available" 1206msgid "Invalid option - SSL is not available"
1187msgstr "Option invalide - SSL n'est pas disponible\n" 1207msgstr "Option invalide - SSL n'est pas disponible\n"
1188 1208
1189#: plugins/check_http.c:309 1209#: plugins/check_http.c:309 plugins/check_tcp.c:576
1190msgid "Invalid certificate expiration period" 1210msgid "Invalid certificate expiration period"
1191msgstr "Période d'expiration du certificat invalide" 1211msgstr "Période d'expiration du certificat invalide"
1192 1212
@@ -1208,7 +1228,8 @@ msgstr "Demande d'utilisation d'un regex qui n'est pas prévu dans le programme"
1208msgid "Could Not Compile Regular Expression: %s" 1228msgid "Could Not Compile Regular Expression: %s"
1209msgstr "Impossible de compiler l'expression régulière: %s" 1229msgstr "Impossible de compiler l'expression régulière: %s"
1210 1230
1211#: plugins/check_http.c:404 plugins/check_smtp.c:364 plugins/check_tcp.c:484 1231#: plugins/check_http.c:404 plugins/check_smtp.c:364 plugins/check_ssh.c:136
1232#: plugins/check_tcp.c:482
1212msgid "IPv6 support not available" 1233msgid "IPv6 support not available"
1213msgstr "Support IPv6 non disponible" 1234msgstr "Support IPv6 non disponible"
1214 1235
@@ -1387,12 +1408,13 @@ msgstr "Échoué"
1387msgid "CRITICAL - Cannot create SSL context.\n" 1408msgid "CRITICAL - Cannot create SSL context.\n"
1388msgstr "CRITIQUE - Impossible de créer le contexte SSL.\n" 1409msgstr "CRITIQUE - Impossible de créer le contexte SSL.\n"
1389 1410
1390#: plugins/check_http.c:1214 plugins/check_tcp.c:642 1411#: plugins/check_http.c:1214 plugins/check_tcp.c:640
1391#, c-format 1412#, c-format
1392msgid "CRITICAL - Cannot initiate SSL handshake.\n" 1413msgid "CRITICAL - Cannot initiate SSL handshake.\n"
1393msgstr "CRITIQUE - Impossible d'initialiser la négociation SSL.\n" 1414msgstr "CRITIQUE - Impossible d'initialiser la négociation SSL.\n"
1394 1415
1395#: plugins/check_http.c:1244 plugins/check_http.c:1256 1416#: plugins/check_http.c:1244 plugins/check_http.c:1256 plugins/check_tcp.c:670
1417#: plugins/check_tcp.c:682
1396#, c-format 1418#, c-format
1397msgid "CRITICAL - Wrong time format in certificate.\n" 1419msgid "CRITICAL - Wrong time format in certificate.\n"
1398msgstr "CRITIQUE - Format de date incorrect dans le certificat.\n" 1420msgstr "CRITIQUE - Format de date incorrect dans le certificat.\n"
@@ -1606,6 +1628,193 @@ msgstr ""
1606"un état STATE_WARNING est renvoyé. un état STATE_CRITICAL est renvoyé quand " 1628"un état STATE_WARNING est renvoyé. un état STATE_CRITICAL est renvoyé quand "
1607"le certificat est expiré.\n" 1629"le certificat est expiré.\n"
1608 1630
1631#: plugins/check_icmp.c:313
1632#, c-format
1633msgid "Root access needed (for raw sockets)\n"
1634msgstr ""
1635
1636#: plugins/check_icmp.c:319
1637msgid "icmp: unknown protocol"
1638msgstr ""
1639
1640#: plugins/check_icmp.c:325
1641msgid "Can't create raw socket"
1642msgstr ""
1643
1644#: plugins/check_icmp.c:337
1645msgid "Unable to allocate memory for host name list\n"
1646msgstr ""
1647
1648#: plugins/check_icmp.c:362 plugins/check_icmp.c:367 plugins/check_icmp.c:546
1649#: plugins/check_icmp.c:551
1650#, fuzzy
1651msgid "Failed to allocate memory for hostname"
1652msgstr "Impossible d'allouer de l'espace pour '%s'\n"
1653
1654#: plugins/check_icmp.c:378 plugins/check_icmp.c:385
1655#, c-format
1656msgid "Illegal threshold pair specified for -%c"
1657msgstr ""
1658
1659#: plugins/check_icmp.c:392 plugins/check_icmp.c:399 plugins/check_icmp.c:421
1660#, c-format
1661msgid "Option -%c requires integer argument\n"
1662msgstr ""
1663
1664#: plugins/check_icmp.c:406 plugins/check_icmp.c:414
1665#, c-format
1666msgid "Option -%c requires positive non-zero integer argument\n"
1667msgstr ""
1668
1669#: plugins/check_icmp.c:470
1670#, c-format
1671msgid "Option flag -%c specified, but not recognized\n"
1672msgstr ""
1673
1674#: plugins/check_icmp.c:497
1675#, c-format
1676msgid "%s: these options are too risky for mere mortals.\n"
1677msgstr ""
1678
1679#: plugins/check_icmp.c:498
1680#, c-format
1681msgid "%s: You need i >= %u and r < %u\n"
1682msgstr ""
1683
1684#: plugins/check_icmp.c:500
1685#, c-format
1686msgid "Current settings; i = %d, r = %d\n"
1687msgstr ""
1688
1689#: plugins/check_icmp.c:506
1690#, c-format
1691msgid "%s: data size %u not valid, must be between %u and %u\n"
1692msgstr ""
1693
1694#: plugins/check_icmp.c:513
1695#, c-format
1696msgid "%s: backoff factor %.1f not valid, must be between %.1f and %.1f\n"
1697msgstr ""
1698
1699#: plugins/check_icmp.c:520
1700#, c-format
1701msgid "%s: count %u not valid, must be less than %u\n"
1702msgstr ""
1703
1704#: plugins/check_icmp.c:539
1705#, c-format
1706msgid "Generate flag requires command line parameters beyond switches\n"
1707msgstr ""
1708
1709#: plugins/check_icmp.c:568
1710#, c-format
1711msgid ""
1712"No hosts to work with!\n"
1713"\n"
1714msgstr ""
1715
1716#: plugins/check_icmp.c:574
1717msgid "Can't malloc array of hosts"
1718msgstr ""
1719
1720#: plugins/check_icmp.c:706
1721#, c-format
1722msgid "%s is down (lost 100%%)"
1723msgstr ""
1724
1725#: plugins/check_icmp.c:757
1726#, fuzzy, c-format
1727msgid "No hostaddress specified.\n"
1728msgstr "Pas de compteur spécifié"
1729
1730#: plugins/check_icmp.c:768
1731#, c-format
1732msgid "OK - All %d hosts are alive\n"
1733msgstr ""
1734
1735#: plugins/check_icmp.c:771
1736#, fuzzy, c-format
1737msgid "CRITICAL - %d of %d hosts are alive\n"
1738msgstr "CRITIQUE - Date du serveur \"%100s\" illisible"
1739
1740#: plugins/check_icmp.c:787
1741msgid "Can't malloc ping packet"
1742msgstr ""
1743
1744#: plugins/check_icmp.c:811
1745#, c-format
1746msgid "%s error while sending ping: %s\n"
1747msgstr ""
1748
1749#: plugins/check_icmp.c:863
1750#, c-format
1751msgid "Received packet too short for ICMP (%d bytes from %s)\n"
1752msgstr ""
1753
1754#: plugins/check_icmp.c:906
1755#, c-format
1756msgid "%s : duplicate for [%d], %d bytes, %s ms"
1757msgstr ""
1758
1759#: plugins/check_icmp.c:916
1760#, c-format
1761msgid "%s : duplicate for [%d], %d bytes, %s ms\n"
1762msgstr ""
1763
1764#: plugins/check_icmp.c:945
1765#, c-format
1766msgid "ICMP Unreachable (Invalid Code) from %s for ICMP Echo sent to %s"
1767msgstr ""
1768
1769#: plugins/check_icmp.c:950 plugins/check_icmp.c:974
1770#, c-format
1771msgid "ICMP Unreachable from %s for ICMP Echo sent to %s"
1772msgstr ""
1773
1774#: plugins/check_icmp.c:1059
1775#, fuzzy, c-format
1776msgid "%s address not found\n"
1777msgstr "%s [%s non trouvé]"
1778
1779#: plugins/check_icmp.c:1067
1780#, fuzzy, c-format
1781msgid "%s has no address data\n"
1782msgstr "Le DNS %s n'a pas d'enregistrements\n"
1783
1784#: plugins/check_icmp.c:1100
1785msgid "Can't allocate some space for a string"
1786msgstr ""
1787
1788#: plugins/check_icmp.c:1119
1789msgid "Can't allocate HOST_ENTRY"
1790msgstr ""
1791
1792#: plugins/check_icmp.c:1132
1793msgid "Can't allocate resp_times array"
1794msgstr ""
1795
1796#: plugins/check_icmp.c:1196
1797#, fuzzy
1798msgid "malloc() failed!"
1799msgstr "La réception à échoué\n"
1800
1801#: plugins/check_icmp.c:1213
1802#, c-format
1803msgid "%s: %s : A network error occurred\n"
1804msgstr ""
1805
1806#: plugins/check_icmp.c:1279
1807msgid "select() in u_sleep:"
1808msgstr ""
1809
1810#: plugins/check_icmp.c:1309
1811msgid "select() in recvfrom_wto"
1812msgstr ""
1813
1814#: plugins/check_icmp.c:1316
1815msgid "recvfrom"
1816msgstr ""
1817
1609#: plugins/check_icmp.c:1371 1818#: plugins/check_icmp.c:1371
1610#, fuzzy, c-format 1819#, fuzzy, c-format
1611msgid "" 1820msgid ""
@@ -1649,6 +1858,26 @@ msgstr "Impossible de se connecter au serveur port %i\n"
1649msgid "Could not set protocol version %d\n" 1858msgid "Could not set protocol version %d\n"
1650msgstr "Impossible d'utiliser le protocole version %d\n" 1859msgstr "Impossible d'utiliser le protocole version %d\n"
1651 1860
1861#: plugins/check_ldap.c:137
1862#, fuzzy, c-format
1863msgid "Could not init TLS at port %i!\n"
1864msgstr "Impossible de se connecter au serveur port %i\n"
1865
1866#: plugins/check_ldap.c:141
1867#, c-format
1868msgid "TLS not supported by the libraries!\n"
1869msgstr ""
1870
1871#: plugins/check_ldap.c:160
1872#, fuzzy, c-format
1873msgid "Could not init startTLS at port %i!\n"
1874msgstr "Impossible de se connecter au serveur port %i\n"
1875
1876#: plugins/check_ldap.c:164
1877#, c-format
1878msgid "startTLS not supported by the library, needs LDAPv3!\n"
1879msgstr ""
1880
1652#: plugins/check_ldap.c:174 1881#: plugins/check_ldap.c:174
1653#, c-format 1882#, c-format
1654msgid "Could not bind to the ldap-server\n" 1883msgid "Could not bind to the ldap-server\n"
@@ -1664,19 +1893,21 @@ msgstr "Impossible de chercher/trouver les objectclasses dans %s\n"
1664msgid "LDAP %s - %.3f seconds response time|%s\n" 1893msgid "LDAP %s - %.3f seconds response time|%s\n"
1665msgstr "LDAP %s - %.3f secondes de temps de réponse|%s\n" 1894msgstr "LDAP %s - %.3f secondes de temps de réponse|%s\n"
1666 1895
1667#: plugins/check_ldap.c:311 plugins/check_ping.c:221 plugins/check_ssh.c:138 1896#: plugins/check_ldap.c:311 plugins/check_ping.c:219
1668msgid "IPv6 support not available\n" 1897msgid "IPv6 support not available\n"
1669msgstr "Support IPv6 non disponible\n" 1898msgstr "Support IPv6 non disponible\n"
1670 1899
1671#: plugins/check_ldap.c:335 1900#: plugins/check_ldap.c:334
1672msgid "please specify the host name\n" 1901#, fuzzy
1902msgid "Please specify the host name\n"
1673msgstr "Veuillez spécifier le nom de l'hôte\n" 1903msgstr "Veuillez spécifier le nom de l'hôte\n"
1674 1904
1675#: plugins/check_ldap.c:338 1905#: plugins/check_ldap.c:337
1676msgid "please specify the LDAP base\n" 1906#, fuzzy
1907msgid "Please specify the LDAP base\n"
1677msgstr "Veuillez spécifier la base LDAP\n" 1908msgstr "Veuillez spécifier la base LDAP\n"
1678 1909
1679#: plugins/check_ldap.c:365 1910#: plugins/check_ldap.c:362
1680#, c-format 1911#, c-format
1681msgid "" 1912msgid ""
1682" -a [--attr]\n" 1913" -a [--attr]\n"
@@ -1697,7 +1928,7 @@ msgstr ""
1697" -P [--pass]\n" 1928" -P [--pass]\n"
1698" mot de passe ldap (si nécessaire)\n" 1929" mot de passe ldap (si nécessaire)\n"
1699 1930
1700#: plugins/check_ldap.c:376 1931#: plugins/check_ldap.c:373
1701#, c-format 1932#, c-format
1702msgid "" 1933msgid ""
1703" -2 [--ver2]\n" 1934" -2 [--ver2]\n"
@@ -1745,38 +1976,38 @@ msgstr "Le seuil d'alerte doit être un nombre à virgule flottante!\n"
1745msgid "Critical threshold must be float or float triplet!\n" 1976msgid "Critical threshold must be float or float triplet!\n"
1746msgstr "Le seuil critique doit être un nombre à virgule flottante!\n" 1977msgstr "Le seuil critique doit être un nombre à virgule flottante!\n"
1747 1978
1748#: plugins/check_load.c:273 1979#: plugins/check_load.c:271
1749msgid "Warning threshold for 1-minute load average is not specified\n" 1980msgid "Warning threshold for 1-minute load average is not specified\n"
1750msgstr "" 1981msgstr ""
1751"Le seuil d'alerte pour la charge système après 1 minute n'est pas spécifié\n" 1982"Le seuil d'alerte pour la charge système après 1 minute n'est pas spécifié\n"
1752 1983
1753#: plugins/check_load.c:275 1984#: plugins/check_load.c:273
1754msgid "Warning threshold for 5-minute load average is not specified\n" 1985msgid "Warning threshold for 5-minute load average is not specified\n"
1755msgstr "" 1986msgstr ""
1756"Le seuil d'alerte pour la charge système après 5 minutes n'est pas spécifié\n" 1987"Le seuil d'alerte pour la charge système après 5 minutes n'est pas spécifié\n"
1757 1988
1758#: plugins/check_load.c:277 1989#: plugins/check_load.c:275
1759msgid "Warning threshold for 15-minute load average is not specified\n" 1990msgid "Warning threshold for 15-minute load average is not specified\n"
1760msgstr "" 1991msgstr ""
1761"Le seuil d'alerte pour la charge système après 15 minutes n'est pas " 1992"Le seuil d'alerte pour la charge système après 15 minutes n'est pas "
1762"spécifié\n" 1993"spécifié\n"
1763 1994
1764#: plugins/check_load.c:279 1995#: plugins/check_load.c:277
1765msgid "Critical threshold for 1-minute load average is not specified\n" 1996msgid "Critical threshold for 1-minute load average is not specified\n"
1766msgstr "" 1997msgstr ""
1767"Le seuil critique pour la charge système après 1 minute n'est pas spécifié\n" 1998"Le seuil critique pour la charge système après 1 minute n'est pas spécifié\n"
1768 1999
1769#: plugins/check_load.c:281 2000#: plugins/check_load.c:279
1770msgid "Critical threshold for 5-minute load average is not specified\n" 2001msgid "Critical threshold for 5-minute load average is not specified\n"
1771msgstr "" 2002msgstr ""
1772"Le seuil critique pour la charge système après 5 minutes n'est pas spécifié\n" 2003"Le seuil critique pour la charge système après 5 minutes n'est pas spécifié\n"
1773 2004
1774#: plugins/check_load.c:283 2005#: plugins/check_load.c:281
1775msgid "Critical threshold for 15-minute load average is not specified\n" 2006msgid "Critical threshold for 15-minute load average is not specified\n"
1776msgstr "" 2007msgstr ""
1777"Le seuil critique pour la charge système après 15 minute n'est pas spécifié\n" 2008"Le seuil critique pour la charge système après 15 minute n'est pas spécifié\n"
1778 2009
1779#: plugins/check_load.c:285 2010#: plugins/check_load.c:283
1780msgid "" 2011msgid ""
1781"Parameter inconsistency: 1-minute \"warning load\" greater than \"critical " 2012"Parameter inconsistency: 1-minute \"warning load\" greater than \"critical "
1782"load\".\n" 2013"load\".\n"
@@ -1784,7 +2015,7 @@ msgstr ""
1784"Arguments Incorrects: 1-minute \"warning load\" est plus grand que " 2015"Arguments Incorrects: 1-minute \"warning load\" est plus grand que "
1785"\"critical load\".\n" 2016"\"critical load\".\n"
1786 2017
1787#: plugins/check_load.c:287 2018#: plugins/check_load.c:285
1788msgid "" 2019msgid ""
1789"Parameter inconsistency: 5-minute \"warning load\" greater than \"critical " 2020"Parameter inconsistency: 5-minute \"warning load\" greater than \"critical "
1790"load\".\n" 2021"load\".\n"
@@ -1792,7 +2023,7 @@ msgstr ""
1792"Arguments Incorrects: 5-minute \"warning load\" est plus grand que " 2023"Arguments Incorrects: 5-minute \"warning load\" est plus grand que "
1793"\"critical load\".\n" 2024"\"critical load\".\n"
1794 2025
1795#: plugins/check_load.c:289 2026#: plugins/check_load.c:287
1796msgid "" 2027msgid ""
1797"Parameter inconsistency: 15-minute \"warning load\" greater than \"critical " 2028"Parameter inconsistency: 15-minute \"warning load\" greater than \"critical "
1798"load\".\n" 2029"load\".\n"
@@ -1800,7 +2031,7 @@ msgstr ""
1800"Arguments Incorrects: 15-minute \"warning load\" est plus grand que " 2031"Arguments Incorrects: 15-minute \"warning load\" est plus grand que "
1801"\"critical load\".\n" 2032"\"critical load\".\n"
1802 2033
1803#: plugins/check_load.c:303 2034#: plugins/check_load.c:301
1804#, c-format 2035#, c-format
1805msgid "" 2036msgid ""
1806"This plugin tests the current system load average.\n" 2037"This plugin tests the current system load average.\n"
@@ -1809,7 +2040,7 @@ msgstr ""
1809"Ce plugin teste la charge système actuelle.\n" 2040"Ce plugin teste la charge système actuelle.\n"
1810"\n" 2041"\n"
1811 2042
1812#: plugins/check_load.c:309 2043#: plugins/check_load.c:307
1813#, c-format 2044#, c-format
1814msgid "" 2045msgid ""
1815" -w, --warning=WLOAD1,WLOAD5,WLOAD15\n" 2046" -w, --warning=WLOAD1,WLOAD5,WLOAD15\n"
@@ -1861,7 +2092,7 @@ msgstr "Max"
1861msgid "Invalid variable number" 2092msgid "Invalid variable number"
1862msgstr "Numéro de la variable invalide" 2093msgstr "Numéro de la variable invalide"
1863 2094
1864#: plugins/check_mrtg.c:252 2095#: plugins/check_mrtg.c:250
1865#, c-format 2096#, c-format
1866msgid "" 2097msgid ""
1867"%s is not a valid expiration time\n" 2098"%s is not a valid expiration time\n"
@@ -1870,15 +2101,15 @@ msgstr ""
1870"%s n'est pas un temps d'expiration valide\n" 2101"%s n'est pas un temps d'expiration valide\n"
1871"Utilisez '%s -h' pour de l'aide supplémentaire\n" 2102"Utilisez '%s -h' pour de l'aide supplémentaire\n"
1872 2103
1873#: plugins/check_mrtg.c:269 2104#: plugins/check_mrtg.c:267
1874msgid "Invalid variable number\n" 2105msgid "Invalid variable number\n"
1875msgstr "Numéro de la variable invalide\n" 2106msgstr "Numéro de la variable invalide\n"
1876 2107
1877#: plugins/check_mrtg.c:296 2108#: plugins/check_mrtg.c:294
1878msgid "You must supply the variable number" 2109msgid "You must supply the variable number"
1879msgstr "Vous devez fournir le numéro de la variable" 2110msgstr "Vous devez fournir le numéro de la variable"
1880 2111
1881#: plugins/check_mrtg.c:317 2112#: plugins/check_mrtg.c:315
1882#, c-format 2113#, c-format
1883msgid "" 2114msgid ""
1884"This plugin will check either the average or maximum value of one of the\n" 2115"This plugin will check either the average or maximum value of one of the\n"
@@ -1889,7 +2120,7 @@ msgstr ""
1889"écrites dans un fichier de log MRTG.\n" 2120"écrites dans un fichier de log MRTG.\n"
1890"\n" 2121"\n"
1891 2122
1892#: plugins/check_mrtg.c:325 2123#: plugins/check_mrtg.c:323
1893#, c-format 2124#, c-format
1894msgid "" 2125msgid ""
1895" -F, --logfile=FILE\n" 2126" -F, --logfile=FILE\n"
@@ -1919,7 +2150,7 @@ msgstr ""
1919" -c, --critical=INTEGER\n" 2150" -c, --critical=INTEGER\n"
1920" Valeur d'intervalle qui doit déclencher un seuil CRITIQUE\n" 2151" Valeur d'intervalle qui doit déclencher un seuil CRITIQUE\n"
1921 2152
1922#: plugins/check_mrtg.c:339 2153#: plugins/check_mrtg.c:337
1923#, c-format 2154#, c-format
1924msgid "" 2155msgid ""
1925" -l, --label=STRING\n" 2156" -l, --label=STRING\n"
@@ -1935,7 +2166,7 @@ msgstr ""
1935" Label optionnel pour les données (Exemple: Paquets/Sec, Erreurs/Sec, \n" 2166" Label optionnel pour les données (Exemple: Paquets/Sec, Erreurs/Sec, \n"
1936" \"Bytes Par Secondes\", \"%% Utilisation\")\n" 2167" \"Bytes Par Secondes\", \"%% Utilisation\")\n"
1937 2168
1938#: plugins/check_mrtg.c:346 2169#: plugins/check_mrtg.c:344
1939#, c-format 2170#, c-format
1940msgid "" 2171msgid ""
1941"If the value exceeds the <vwl> threshold, a WARNING status is returned. If\n" 2172"If the value exceeds the <vwl> threshold, a WARNING status is returned. If\n"
@@ -1952,7 +2183,7 @@ msgstr ""
1952" un status ALERTE est renvoyé and un message d'alerte est affiché.\n" 2183" un status ALERTE est renvoyé and un message d'alerte est affiché.\n"
1953"\n" 2184"\n"
1954 2185
1955#: plugins/check_mrtg.c:352 2186#: plugins/check_mrtg.c:350
1956#, c-format 2187#, c-format
1957msgid "" 2188msgid ""
1958"This plugin is useful for monitoring MRTG data that does not correspond to\n" 2189"This plugin is useful for monitoring MRTG data that does not correspond to\n"
@@ -1965,7 +2196,7 @@ msgid ""
1965"\n" 2196"\n"
1966msgstr "" 2197msgstr ""
1967 2198
1968#: plugins/check_mrtg.c:359 2199#: plugins/check_mrtg.c:357
1969#, c-format 2200#, c-format
1970msgid "" 2201msgid ""
1971"Notes:\n" 2202"Notes:\n"
@@ -1996,7 +2227,7 @@ msgstr "%s. Entrée = %0.1f %s, %s. Sortie = %0.1f %s|%s %s\n"
1996msgid "Traffic %s - %s\n" 2227msgid "Traffic %s - %s\n"
1997msgstr "Trafic %s - %s\n" 2228msgstr "Trafic %s - %s\n"
1998 2229
1999#: plugins/check_mrtgtraf.c:324 2230#: plugins/check_mrtgtraf.c:320
2000#, c-format 2231#, c-format
2001msgid "" 2232msgid ""
2002"\n" 2233"\n"
@@ -2009,7 +2240,7 @@ msgid ""
2009"\n" 2240"\n"
2010msgstr "" 2241msgstr ""
2011 2242
2012#: plugins/check_mrtgtraf.c:336 2243#: plugins/check_mrtgtraf.c:332
2013#, c-format 2244#, c-format
2014msgid "" 2245msgid ""
2015" -F, --filename=STRING\n" 2246" -F, --filename=STRING\n"
@@ -2034,7 +2265,7 @@ msgstr ""
2034" -c, --critical\n" 2265" -c, --critical\n"
2035" Seuil Critique \"<incoming>,<outgoing>\"\n" 2266" Seuil Critique \"<incoming>,<outgoing>\"\n"
2036 2267
2037#: plugins/check_mrtgtraf.c:348 2268#: plugins/check_mrtgtraf.c:344
2038#, c-format 2269#, c-format
2039msgid "" 2270msgid ""
2040"Notes:\n" 2271"Notes:\n"
@@ -2047,12 +2278,32 @@ msgid ""
2047" for future enhancements of this plugin.\n" 2278" for future enhancements of this plugin.\n"
2048msgstr "" 2279msgstr ""
2049 2280
2050#: plugins/check_mysql.c:279 2281#: plugins/check_mysql.c:101
2282#, fuzzy, c-format
2283msgid "slave query error: %s\n"
2284msgstr "Erreur d'exécution: %s\n"
2285
2286#: plugins/check_mysql.c:107
2287#, c-format
2288msgid "slave store_result error: %s\n"
2289msgstr ""
2290
2291#: plugins/check_mysql.c:114
2292#, c-format
2293msgid "slave fetch row error: %s\n"
2294msgstr ""
2295
2296#: plugins/check_mysql.c:119
2297#, c-format
2298msgid "Slave running: %s"
2299msgstr ""
2300
2301#: plugins/check_mysql.c:274
2051#, c-format 2302#, c-format
2052msgid "This program tests connections to a mysql server\n" 2303msgid "This program tests connections to a mysql server\n"
2053msgstr "Ce plugin teste une connection vers un serveur mysql\n" 2304msgstr "Ce plugin teste une connection vers un serveur mysql\n"
2054 2305
2055#: plugins/check_mysql.c:287 2306#: plugins/check_mysql.c:282
2056#, c-format 2307#, c-format
2057msgid "" 2308msgid ""
2058" -d, --database=STRING\n" 2309" -d, --database=STRING\n"
@@ -2078,7 +2329,7 @@ msgstr ""
2078" -S, --check-slave\n" 2329" -S, --check-slave\n"
2079" Vérifier si le processus esclave fonctionne correctement.\n" 2330" Vérifier si le processus esclave fonctionne correctement.\n"
2080 2331
2081#: plugins/check_mysql.c:299 2332#: plugins/check_mysql.c:294
2082#, c-format 2333#, c-format
2083msgid "" 2334msgid ""
2084"\n" 2335"\n"
@@ -2094,6 +2345,11 @@ msgstr ""
2094msgid "CRITICAL - Cannot open status log for reading!\n" 2345msgid "CRITICAL - Cannot open status log for reading!\n"
2095msgstr "CRITIQUE - Impossible d'ouvrir le status log en lecture!\n" 2346msgstr "CRITIQUE - Impossible d'ouvrir le status log en lecture!\n"
2096 2347
2348#: plugins/check_nagios.c:98
2349#, fuzzy, c-format
2350msgid "command: %s\n"
2351msgstr "Commande: %s\n"
2352
2097#: plugins/check_nagios.c:140 2353#: plugins/check_nagios.c:140
2098#, c-format 2354#, c-format
2099msgid "Found process: %s %s\n" 2355msgid "Found process: %s %s\n"
@@ -2111,43 +2367,24 @@ msgstr ""
2111"Nagios %s: à trouvé %d processus%s, status log mis à jour %d secondes%s " 2367"Nagios %s: à trouvé %d processus%s, status log mis à jour %d secondes%s "
2112"auparavant\n" 2368"auparavant\n"
2113 2369
2114#: plugins/check_nagios.c:209 plugins/check_nagios.c:243 2370#: plugins/check_nagios.c:209 plugins/check_nagios.c:240
2115#, c-format 2371#, fuzzy
2116msgid "" 2372msgid "Expiration time must be an integer (seconds)\n"
2117"Expiration time must be an integer (seconds)\n"
2118"Type '%s -h' for additional help\n"
2119msgstr "" 2373msgstr ""
2120"Le délai d'expiration doit être un entier (en secondes)\n" 2374"Le délai d'expiration doit être un entier (en secondes)\n"
2121"Tapez '%s -h' pour de l'aide additionelle\n" 2375"Tapez '%s -h' pour de l'aide additionelle\n"
2122 2376
2123#: plugins/check_nagios.c:223 2377#: plugins/check_nagios.c:251
2124#, c-format 2378#, fuzzy
2125msgid "" 2379msgid "You must provide the status_log\n"
2126"%s: Unknown argument: %c\n" 2380msgstr "%s: Vous devez fournir un nom d'hôte\n"
2127"\n"
2128msgstr ""
2129"%s: Argument inconnu: %c\n"
2130"\n"
2131
2132#: plugins/check_nagios.c:255
2133#, c-format
2134msgid ""
2135"You must provide the status_log\n"
2136"Type '%s -h' for additional help\n"
2137msgstr ""
2138"Vous devez fournir le fichier status_log\n"
2139"Tapez '%s -h' pour de l'aide additionelle\n"
2140 2381
2141#: plugins/check_nagios.c:259 2382#: plugins/check_nagios.c:254
2142#, c-format 2383#, fuzzy
2143msgid "" 2384msgid "You must provide a process string\n"
2144"You must provide a process string\n" 2385msgstr "%s: Vous devez fournir un nom d'hôte\n"
2145"Type '%s -h' for additional help\n"
2146msgstr ""
2147"Vous devez fournir le nom du processus\n"
2148"Tapez '%s -h' pour de l'aide additionelle\n"
2149 2386
2150#: plugins/check_nagios.c:274 2387#: plugins/check_nagios.c:268
2151#, fuzzy, c-format 2388#, fuzzy, c-format
2152msgid "" 2389msgid ""
2153"This plugin checks the status of the Nagios process on the local\n" 2390"This plugin checks the status of the Nagios process on the local\n"
@@ -2165,7 +2402,7 @@ msgstr ""
2165"l'option <process_string>.\n" 2402"l'option <process_string>.\n"
2166"\n" 2403"\n"
2167 2404
2168#: plugins/check_nagios.c:284 2405#: plugins/check_nagios.c:278
2169#, fuzzy, c-format 2406#, fuzzy, c-format
2170msgid "" 2407msgid ""
2171" -F, --filename=FILE\n" 2408" -F, --filename=FILE\n"
@@ -2183,7 +2420,7 @@ msgstr ""
2183"-C, --command=STRING\n" 2420"-C, --command=STRING\n"
2184" Commande à chercher dans la table des processus\n" 2421" Commande à chercher dans la table des processus\n"
2185 2422
2186#: plugins/check_nagios.c:292 2423#: plugins/check_nagios.c:286
2187#, fuzzy, c-format 2424#, fuzzy, c-format
2188msgid "" 2425msgid ""
2189"Example:\n" 2426"Example:\n"
@@ -2286,21 +2523,22 @@ msgstr "Pas de compteur spécifié"
2286msgid "Please specify a variable to check" 2523msgid "Please specify a variable to check"
2287msgstr "Veuillez préciser une variable a vérifier" 2524msgstr "Veuillez préciser une variable a vérifier"
2288 2525
2289#: plugins/check_nt.c:510 plugins/check_nwstat.c:782 2526#: plugins/check_nt.c:508
2290#: plugins/check_overcr.c:352 2527#, fuzzy
2291#, c-format 2528msgid "Server port must be an integer\n"
2292msgid ""
2293"Server port an integer (seconds)\n"
2294"Type '%s -h' for additional help\n"
2295msgstr "" 2529msgstr ""
2296"Le port du server doit être un entier (secondes)\n" 2530"Le port du server doit être un entier (secondes)\n"
2297"Tapez '%s -h' pour de l'aide additionelle\n" 2531"Tapez '%s -h' pour de l'aide additionelle\n"
2298 2532
2299#: plugins/check_nt.c:563 2533#: plugins/check_nt.c:561
2300msgid "None" 2534msgid "None"
2301msgstr "Aucun" 2535msgstr "Aucun"
2302 2536
2303#: plugins/check_nt.c:620 2537#: plugins/check_nt.c:574
2538msgid "could not fetch information from server\n"
2539msgstr ""
2540
2541#: plugins/check_nt.c:618
2304#, c-format 2542#, c-format
2305msgid "" 2543msgid ""
2306"This plugin collects data from the NSClient service running on a\n" 2544"This plugin collects data from the NSClient service running on a\n"
@@ -2311,7 +2549,7 @@ msgstr ""
2311"Windows NT/2000/XP server.\n" 2549"Windows NT/2000/XP server.\n"
2312"\n" 2550"\n"
2313 2551
2314#: plugins/check_nt.c:625 2552#: plugins/check_nt.c:623
2315#, c-format 2553#, c-format
2316msgid "" 2554msgid ""
2317"\n" 2555"\n"
@@ -2334,7 +2572,7 @@ msgid ""
2334" Print version information\n" 2572" Print version information\n"
2335msgstr "" 2573msgstr ""
2336 2574
2337#: plugins/check_nt.c:643 2575#: plugins/check_nt.c:641
2338#, c-format 2576#, c-format
2339msgid "" 2577msgid ""
2340"-v, --variable=STRING\n" 2578"-v, --variable=STRING\n"
@@ -2343,7 +2581,7 @@ msgstr ""
2343"-v, --variable=STRING\n" 2581"-v, --variable=STRING\n"
2344" Variable à vérifier. Les variables valides sont:\n" 2582" Variable à vérifier. Les variables valides sont:\n"
2345 2583
2346#: plugins/check_nt.c:646 2584#: plugins/check_nt.c:644
2347#, c-format 2585#, c-format
2348msgid "" 2586msgid ""
2349" CLIENTVERSION = Get the NSClient version\n" 2587" CLIENTVERSION = Get the NSClient version\n"
@@ -2352,7 +2590,7 @@ msgstr ""
2352" CLIENTVERSION = Obtenir la version de NSClient\n" 2590" CLIENTVERSION = Obtenir la version de NSClient\n"
2353" si l'argument -l <version> est spécifié, une alerte sera renvoyée.\n" 2591" si l'argument -l <version> est spécifié, une alerte sera renvoyée.\n"
2354 2592
2355#: plugins/check_nt.c:649 2593#: plugins/check_nt.c:647
2356#, c-format 2594#, c-format
2357msgid "" 2595msgid ""
2358" CPULOAD = Average CPU load on last x minutes.\n" 2596" CPULOAD = Average CPU load on last x minutes.\n"
@@ -2364,7 +2602,7 @@ msgid ""
2364" ie: -l 60,90,95,120,90,95\n" 2602" ie: -l 60,90,95,120,90,95\n"
2365msgstr "" 2603msgstr ""
2366 2604
2367#: plugins/check_nt.c:656 2605#: plugins/check_nt.c:654
2368#, c-format 2606#, c-format
2369msgid "" 2607msgid ""
2370" UPTIME = Get the uptime of the machine.\n" 2608" UPTIME = Get the uptime of the machine.\n"
@@ -2373,7 +2611,7 @@ msgstr ""
2373" UPTIME = Obtenir la durée de bon fonctionnement de la machine.\n" 2611" UPTIME = Obtenir la durée de bon fonctionnement de la machine.\n"
2374" Pas d'argument spécifique. Pas de seuil d'alerte ou critique\n" 2612" Pas d'argument spécifique. Pas de seuil d'alerte ou critique\n"
2375 2613
2376#: plugins/check_nt.c:659 2614#: plugins/check_nt.c:657
2377#, c-format 2615#, c-format
2378msgid "" 2616msgid ""
2379" USEDDISKSPACE = Size and percentage of disk use.\n" 2617" USEDDISKSPACE = Size and percentage of disk use.\n"
@@ -2381,7 +2619,7 @@ msgid ""
2381" Warning and critical thresholds can be specified with -w and -c.\n" 2619" Warning and critical thresholds can be specified with -w and -c.\n"
2382msgstr "" 2620msgstr ""
2383 2621
2384#: plugins/check_nt.c:663 2622#: plugins/check_nt.c:661
2385#, c-format 2623#, c-format
2386msgid "" 2624msgid ""
2387" MEMUSE = Memory use.\n" 2625" MEMUSE = Memory use.\n"
@@ -2390,7 +2628,7 @@ msgstr ""
2390" MEMUSE = Utilisation mémoire.\n" 2628" MEMUSE = Utilisation mémoire.\n"
2391" Les seuil d'alerte et critiques peuvent être spécifiés avec -w et -c.\n" 2629" Les seuil d'alerte et critiques peuvent être spécifiés avec -w et -c.\n"
2392 2630
2393#: plugins/check_nt.c:666 2631#: plugins/check_nt.c:664
2394#, c-format 2632#, c-format
2395msgid "" 2633msgid ""
2396" SERVICESTATE = Check the state of one or several services.\n" 2634" SERVICESTATE = Check the state of one or several services.\n"
@@ -2400,7 +2638,7 @@ msgid ""
2400"\t\t in the returned string.\n" 2638"\t\t in the returned string.\n"
2401msgstr "" 2639msgstr ""
2402 2640
2403#: plugins/check_nt.c:672 2641#: plugins/check_nt.c:670
2404#, c-format 2642#, c-format
2405msgid "" 2643msgid ""
2406" PROCSTATE = Check if one or several process are running.\n" 2644" PROCSTATE = Check if one or several process are running.\n"
@@ -2409,7 +2647,7 @@ msgstr ""
2409" PROCSTATE = Vérifie si un ou plusieurs processus sont démarrés.\n" 2647" PROCSTATE = Vérifie si un ou plusieurs processus sont démarrés.\n"
2410" même syntaxe que SERVICESTATE.\n" 2648" même syntaxe que SERVICESTATE.\n"
2411 2649
2412#: plugins/check_nt.c:675 2650#: plugins/check_nt.c:673
2413#, c-format 2651#, c-format
2414msgid "" 2652msgid ""
2415" COUNTER = Check any performance counter of Windows NT/2000.\n" 2653" COUNTER = Check any performance counter of Windows NT/2000.\n"
@@ -2423,7 +2661,7 @@ msgid ""
2423" \"%%.f %%%% paging file used.\"\n" 2661" \"%%.f %%%% paging file used.\"\n"
2424msgstr "" 2662msgstr ""
2425 2663
2426#: plugins/check_nt.c:685 2664#: plugins/check_nt.c:683
2427#, c-format 2665#, c-format
2428msgid "" 2666msgid ""
2429"Notes:\n" 2667"Notes:\n"
@@ -2615,7 +2853,14 @@ msgstr "Le Module %s n'est pas chargé"
2615msgid "Nothing to check!\n" 2853msgid "Nothing to check!\n"
2616msgstr "Rien à vérifier!\n" 2854msgstr "Rien à vérifier!\n"
2617 2855
2618#: plugins/check_nwstat.c:910 2856#: plugins/check_nwstat.c:780 plugins/check_overcr.c:342
2857#, fuzzy
2858msgid "Server port an integer\n"
2859msgstr ""
2860"Le port du server doit être un entier (secondes)\n"
2861"Tapez '%s -h' pour de l'aide additionelle\n"
2862
2863#: plugins/check_nwstat.c:908
2619#, c-format 2864#, c-format
2620msgid "" 2865msgid ""
2621"This plugin attempts to contact the MRTGEXT NLM running on a\n" 2866"This plugin attempts to contact the MRTGEXT NLM running on a\n"
@@ -2626,7 +2871,7 @@ msgstr ""
2626"un serveur Novell pour récupèrer l'information système demandée.\n" 2871"un serveur Novell pour récupèrer l'information système demandée.\n"
2627"\n" 2872"\n"
2628 2873
2629#: plugins/check_nwstat.c:920 2874#: plugins/check_nwstat.c:918
2630#, fuzzy, c-format 2875#, fuzzy, c-format
2631msgid "" 2876msgid ""
2632" -v, --variable=STRING\n" 2877" -v, --variable=STRING\n"
@@ -2647,7 +2892,7 @@ msgstr ""
2647" ABENDS = number of abended threads (NW 5.x only)\n" 2892" ABENDS = number of abended threads (NW 5.x only)\n"
2648" UPTIME = server uptime\n" 2893" UPTIME = server uptime\n"
2649 2894
2650#: plugins/check_nwstat.c:930 2895#: plugins/check_nwstat.c:928
2651#, fuzzy, c-format 2896#, fuzzy, c-format
2652msgid "" 2897msgid ""
2653" LTCH = percent long term cache hits\n" 2898" LTCH = percent long term cache hits\n"
@@ -2662,7 +2907,7 @@ msgstr ""
2662" DCB = buffers cache sales en pourcentage du total\n" 2907" DCB = buffers cache sales en pourcentage du total\n"
2663" TCB = buffers cache sales en pourcentage de l'original\n" 2908" TCB = buffers cache sales en pourcentage de l'original\n"
2664 2909
2665#: plugins/check_nwstat.c:937 2910#: plugins/check_nwstat.c:935
2666#, c-format 2911#, c-format
2667msgid "" 2912msgid ""
2668" OFILES = number of open files\n" 2913" OFILES = number of open files\n"
@@ -2681,7 +2926,7 @@ msgstr ""
2681" VPNP<vol> = pourcentage de place non libérable sur le volume <vol>\n" 2926" VPNP<vol> = pourcentage de place non libérable sur le volume <vol>\n"
2682" VKNP<vol> = KB de place non libérable sur le volume <vol>\n" 2927" VKNP<vol> = KB de place non libérable sur le volume <vol>\n"
2683 2928
2684#: plugins/check_nwstat.c:946 2929#: plugins/check_nwstat.c:944
2685#, c-format 2930#, c-format
2686msgid "" 2931msgid ""
2687" LRUM = LRU sitting time in minutes\n" 2932" LRUM = LRU sitting time in minutes\n"
@@ -2694,7 +2939,7 @@ msgid ""
2694" SAPENTRIES<n> = number of entries in the SAP table for SAP type <n>\n" 2939" SAPENTRIES<n> = number of entries in the SAP table for SAP type <n>\n"
2695msgstr "" 2940msgstr ""
2696 2941
2697#: plugins/check_nwstat.c:956 2942#: plugins/check_nwstat.c:954
2698#, c-format 2943#, c-format
2699msgid "" 2944msgid ""
2700" TSYNC = timesync status \n" 2945" TSYNC = timesync status \n"
@@ -2704,7 +2949,7 @@ msgid ""
2704" (e.g. \"NLM:TSANDS.NLM\")\n" 2949" (e.g. \"NLM:TSANDS.NLM\")\n"
2705msgstr "" 2950msgstr ""
2706 2951
2707#: plugins/check_nwstat.c:963 2952#: plugins/check_nwstat.c:961
2708#, c-format 2953#, c-format
2709msgid "" 2954msgid ""
2710" -w, --warning=INTEGER\n" 2955" -w, --warning=INTEGER\n"
@@ -2715,7 +2960,7 @@ msgid ""
2715" Include server version string in results\n" 2960" Include server version string in results\n"
2716msgstr "" 2961msgstr ""
2717 2962
2718#: plugins/check_nwstat.c:973 2963#: plugins/check_nwstat.c:971
2719#, c-format 2964#, c-format
2720msgid "" 2965msgid ""
2721"\n" 2966"\n"
@@ -2782,7 +3027,7 @@ msgstr "Processus %s - %d instances%s de %s demarrées"
2782msgid "Uptime %s - Up %d days %d hours %d minutes" 3027msgid "Uptime %s - Up %d days %d hours %d minutes"
2783msgstr "Temps de fonctionnement %s - Up %d jours %d heures %d minutes" 3028msgstr "Temps de fonctionnement %s - Up %d jours %d heures %d minutes"
2784 3029
2785#: plugins/check_overcr.c:418 3030#: plugins/check_overcr.c:406
2786#, c-format 3031#, c-format
2787msgid "" 3032msgid ""
2788"This plugin attempts to contact the Over-CR collector daemon running on the\n" 3033"This plugin attempts to contact the Over-CR collector daemon running on the\n"
@@ -2793,7 +3038,7 @@ msgstr ""
2793"distant afin de récupèrer les informations système demandées.\n" 3038"distant afin de récupèrer les informations système demandées.\n"
2794"\n" 3039"\n"
2795 3040
2796#: plugins/check_overcr.c:428 3041#: plugins/check_overcr.c:416
2797#, c-format 3042#, c-format
2798msgid "" 3043msgid ""
2799"-v, --variable=STRING\n" 3044"-v, --variable=STRING\n"
@@ -2807,7 +3052,7 @@ msgid ""
2807" UPTIME = system uptime in seconds\n" 3052" UPTIME = system uptime in seconds\n"
2808msgstr "" 3053msgstr ""
2809 3054
2810#: plugins/check_overcr.c:439 3055#: plugins/check_overcr.c:427
2811#, c-format 3056#, c-format
2812msgid "" 3057msgid ""
2813" -w, --warning=INTEGER\n" 3058" -w, --warning=INTEGER\n"
@@ -2816,7 +3061,7 @@ msgid ""
2816" Threshold which will result in a critical status\n" 3061" Threshold which will result in a critical status\n"
2817msgstr "" 3062msgstr ""
2818 3063
2819#: plugins/check_overcr.c:447 3064#: plugins/check_overcr.c:435
2820#, c-format 3065#, c-format
2821msgid "" 3066msgid ""
2822"Notes:\n" 3067"Notes:\n"
@@ -2830,7 +3075,7 @@ msgstr ""
2830" grand que le seuil d'alerte SAUF pour l'option uptime\n" 3075" grand que le seuil d'alerte SAUF pour l'option uptime\n"
2831"\n" 3076"\n"
2832 3077
2833#: plugins/check_overcr.c:452 3078#: plugins/check_overcr.c:440
2834#, c-format 3079#, c-format
2835msgid "" 3080msgid ""
2836" - This plugin requres that Eric Molitors' Over-CR collector daemon be\n" 3081" - This plugin requres that Eric Molitors' Over-CR collector daemon be\n"
@@ -2855,20 +3100,26 @@ msgstr "CRITIQUE - pas de connection à '%s' (%s).\n"
2855msgid " %s - database %s (%d sec.)|%s\n" 3100msgid " %s - database %s (%d sec.)|%s\n"
2856msgstr " %s - base de données %s (%d sec.)|%s\n" 3101msgstr " %s - base de données %s (%d sec.)|%s\n"
2857 3102
2858#: plugins/check_pgsql.c:229 plugins/check_pgsql.c:235 plugins/check_tcp.c:494 3103#: plugins/check_pgsql.c:227 plugins/check_tcp.c:492 plugins/check_time.c:265
2859#: plugins/check_time.c:267 plugins/check_time.c:279 plugins/check_udp.c:168 3104#: plugins/check_time.c:277 plugins/check_udp.c:166 plugins/check_users.c:152
2860msgid "Critical threshold must be a positive integer" 3105msgid "Critical threshold must be a positive integer"
2861msgstr "Le seuil critique doit être un entier positif" 3106msgstr "Le seuil critique doit être un entier positif"
2862 3107
2863#: plugins/check_pgsql.c:253 3108#: plugins/check_pgsql.c:233 plugins/check_tcp.c:502 plugins/check_time.c:246
3109#: plugins/check_time.c:270 plugins/check_udp.c:173 plugins/check_users.c:158
3110#: plugins/check_users.c:168 plugins/check_users.c:175
3111msgid "Warning threshold must be a positive integer"
3112msgstr "Attention l'intervalle doit être un entier positif"
3113
3114#: plugins/check_pgsql.c:251
2864msgid "Database name is not valid" 3115msgid "Database name is not valid"
2865msgstr "Le nom de la base de données est invalide" 3116msgstr "Le nom de la base de données est invalide"
2866 3117
2867#: plugins/check_pgsql.c:259 3118#: plugins/check_pgsql.c:257
2868msgid "User name is not valid" 3119msgid "User name is not valid"
2869msgstr "Le nom de l'utilisateur est invalide" 3120msgstr "Le nom de l'utilisateur est invalide"
2870 3121
2871#: plugins/check_pgsql.c:396 3122#: plugins/check_pgsql.c:394
2872#, c-format 3123#, c-format
2873msgid "" 3124msgid ""
2874"Test whether a PostgreSQL Database is accepting connections.\n" 3125"Test whether a PostgreSQL Database is accepting connections.\n"
@@ -2877,7 +3128,7 @@ msgstr ""
2877"Teste si une base de données Postgresql accepte les connections.\n" 3128"Teste si une base de données Postgresql accepte les connections.\n"
2878"\n" 3129"\n"
2879 3130
2880#: plugins/check_pgsql.c:406 3131#: plugins/check_pgsql.c:404
2881#, c-format 3132#, c-format
2882msgid "" 3133msgid ""
2883" -d, --database=STRING\n" 3134" -d, --database=STRING\n"
@@ -2894,7 +3145,7 @@ msgstr ""
2894" -p, --password = STRING\n" 3145" -p, --password = STRING\n"
2895" mot de passe (GROS PROBLEME DE SECURITE)\n" 3146" mot de passe (GROS PROBLEME DE SECURITE)\n"
2896 3147
2897#: plugins/check_pgsql.c:420 3148#: plugins/check_pgsql.c:418
2898#, c-format 3149#, c-format
2899msgid "" 3150msgid ""
2900"\n" 3151"\n"
@@ -2907,7 +3158,7 @@ msgid ""
2907"PostgreSQL DBMS.\n" 3158"PostgreSQL DBMS.\n"
2908msgstr "" 3159msgstr ""
2909 3160
2910#: plugins/check_pgsql.c:427 3161#: plugins/check_pgsql.c:425
2911#, c-format 3162#, c-format
2912msgid "" 3163msgid ""
2913"\n" 3164"\n"
@@ -2921,7 +3172,7 @@ msgstr ""
2921"accepte \n" 3172"accepte \n"
2922"les connections TCP/IP (démarrez le postmaster avec l'option -i).\n" 3173"les connections TCP/IP (démarrez le postmaster avec l'option -i).\n"
2923 3174
2924#: plugins/check_pgsql.c:431 3175#: plugins/check_pgsql.c:429
2925#, c-format 3176#, c-format
2926msgid "" 3177msgid ""
2927"\n" 3178"\n"
@@ -2945,107 +3196,107 @@ msgstr "PING %s - %sPaquets perdus = %d%%"
2945msgid "PING %s - %sPacket loss = %d%%, RTA = %2.2f ms" 3196msgid "PING %s - %sPacket loss = %d%%, RTA = %2.2f ms"
2946msgstr "PING %s - %sPaquets perdus = %d%%, RTA = %2.2f ms" 3197msgstr "PING %s - %sPaquets perdus = %d%%, RTA = %2.2f ms"
2947 3198
2948#: plugins/check_ping.c:232 3199#: plugins/check_ping.c:230
2949msgid "Could not realloc() addresses\n" 3200msgid "Could not realloc() addresses\n"
2950msgstr "Impossible de réallouer les adresses\n" 3201msgstr "Impossible de réallouer les adresses\n"
2951 3202
2952#: plugins/check_ping.c:247 plugins/check_ping.c:327 3203#: plugins/check_ping.c:245 plugins/check_ping.c:325
2953#, c-format 3204#, c-format
2954msgid "<max_packets> (%s) must be a non-negative number\n" 3205msgid "<max_packets> (%s) must be a non-negative number\n"
2955msgstr "<max_packets> (%s) doit être un nombre positif\n" 3206msgstr "<max_packets> (%s) doit être un nombre positif\n"
2956 3207
2957#: plugins/check_ping.c:281 3208#: plugins/check_ping.c:279
2958#, c-format 3209#, c-format
2959msgid "<wpl> (%s) must be an integer percentage\n" 3210msgid "<wpl> (%s) must be an integer percentage\n"
2960msgstr "<wpl> (%s) doit être un pourcentage entier\n" 3211msgstr "<wpl> (%s) doit être un pourcentage entier\n"
2961 3212
2962#: plugins/check_ping.c:292 3213#: plugins/check_ping.c:290
2963#, c-format 3214#, c-format
2964msgid "<cpl> (%s) must be an integer percentage\n" 3215msgid "<cpl> (%s) must be an integer percentage\n"
2965msgstr "<cpl> (%s) doit être un pourcentage entier\n" 3216msgstr "<cpl> (%s) doit être un pourcentage entier\n"
2966 3217
2967#: plugins/check_ping.c:303 3218#: plugins/check_ping.c:301
2968#, c-format 3219#, c-format
2969msgid "<wrta> (%s) must be a non-negative number\n" 3220msgid "<wrta> (%s) must be a non-negative number\n"
2970msgstr "<wrta> (%s) doit être un entier positif\n" 3221msgstr "<wrta> (%s) doit être un entier positif\n"
2971 3222
2972#: plugins/check_ping.c:314 3223#: plugins/check_ping.c:312
2973#, c-format 3224#, c-format
2974msgid "<crta> (%s) must be a non-negative number\n" 3225msgid "<crta> (%s) must be a non-negative number\n"
2975msgstr "<crta> (%s) doit être un entier positif\n" 3226msgstr "<crta> (%s) doit être un entier positif\n"
2976 3227
2977#: plugins/check_ping.c:347 3228#: plugins/check_ping.c:345
2978#, c-format 3229#, c-format
2979msgid "" 3230msgid ""
2980"%s: Warning threshold must be integer or percentage!\n" 3231"%s: Warning threshold must be integer or percentage!\n"
2981"\n" 3232"\n"
2982msgstr "%s: Le seuil d'alerte doit être un entier ou un pourcentage!\n" 3233msgstr "%s: Le seuil d'alerte doit être un entier ou un pourcentage!\n"
2983 3234
2984#: plugins/check_ping.c:360 3235#: plugins/check_ping.c:358
2985#, c-format 3236#, c-format
2986msgid "<wrta> was not set\n" 3237msgid "<wrta> was not set\n"
2987msgstr "<wrta> n'a pas été indiqué\n" 3238msgstr "<wrta> n'a pas été indiqué\n"
2988 3239
2989#: plugins/check_ping.c:364 3240#: plugins/check_ping.c:362
2990#, c-format 3241#, c-format
2991msgid "<crta> was not set\n" 3242msgid "<crta> was not set\n"
2992msgstr "<crta> n'a pas été indiqué\n" 3243msgstr "<crta> n'a pas été indiqué\n"
2993 3244
2994#: plugins/check_ping.c:368 3245#: plugins/check_ping.c:366
2995#, c-format 3246#, c-format
2996msgid "<wpl> was not set\n" 3247msgid "<wpl> was not set\n"
2997msgstr " <wpl> n'a pas été indiqué\n" 3248msgstr " <wpl> n'a pas été indiqué\n"
2998 3249
2999#: plugins/check_ping.c:372 3250#: plugins/check_ping.c:370
3000#, c-format 3251#, c-format
3001msgid "<cpl> was not set\n" 3252msgid "<cpl> was not set\n"
3002msgstr "<cpl> n'a pas été indiqué\n" 3253msgstr "<cpl> n'a pas été indiqué\n"
3003 3254
3004#: plugins/check_ping.c:376 3255#: plugins/check_ping.c:374
3005#, c-format 3256#, c-format
3006msgid "<wrta> (%f) cannot be larger than <crta> (%f)\n" 3257msgid "<wrta> (%f) cannot be larger than <crta> (%f)\n"
3007msgstr "<wrta> (%f) ne peut pas être plus large que <crta> (%f)\n" 3258msgstr "<wrta> (%f) ne peut pas être plus large que <crta> (%f)\n"
3008 3259
3009#: plugins/check_ping.c:380 3260#: plugins/check_ping.c:378
3010#, c-format 3261#, c-format
3011msgid "<wpl> (%d) cannot be larger than <cpl> (%d)\n" 3262msgid "<wpl> (%d) cannot be larger than <cpl> (%d)\n"
3012msgstr "<wpl> (%d) ne peut pas être plus large que <cpl> (%d)\n" 3263msgstr "<wpl> (%d) ne peut pas être plus large que <cpl> (%d)\n"
3013 3264
3014#: plugins/check_ping.c:408 3265#: plugins/check_ping.c:406
3015#, c-format 3266#, c-format
3016msgid "Cannot open pipe: %s" 3267msgid "Cannot open pipe: %s"
3017msgstr "" 3268msgstr ""
3018 3269
3019#: plugins/check_ping.c:412 3270#: plugins/check_ping.c:410
3020#, c-format 3271#, c-format
3021msgid "Cannot open stderr for %s\n" 3272msgid "Cannot open stderr for %s\n"
3022msgstr "Impossible d'ouvrir stderr pour %s\n" 3273msgstr "Impossible d'ouvrir stderr pour %s\n"
3023 3274
3024#: plugins/check_ping.c:467 3275#: plugins/check_ping.c:465
3025#, c-format 3276#, c-format
3026msgid "CRITICAL - Network unreachable (%s)" 3277msgid "CRITICAL - Network unreachable (%s)"
3027msgstr "CRITIQUE - Le réseau est injoignable (%s)" 3278msgstr "CRITIQUE - Le réseau est injoignable (%s)"
3028 3279
3029#: plugins/check_ping.c:469 3280#: plugins/check_ping.c:467
3030#, c-format 3281#, c-format
3031msgid "CRITICAL - Host Unreachable (%s)" 3282msgid "CRITICAL - Host Unreachable (%s)"
3032msgstr "CRITIQUE - Hôte injoignable (%s)" 3283msgstr "CRITIQUE - Hôte injoignable (%s)"
3033 3284
3034#: plugins/check_ping.c:471 3285#: plugins/check_ping.c:469
3035#, c-format 3286#, c-format
3036msgid "CRITICAL - Host not found (%s)" 3287msgid "CRITICAL - Host not found (%s)"
3037msgstr "CRITIQUE - Hôte non trouvé (%s)" 3288msgstr "CRITIQUE - Hôte non trouvé (%s)"
3038 3289
3039#: plugins/check_ping.c:473 3290#: plugins/check_ping.c:471
3040#, c-format 3291#, c-format
3041msgid "CRITICAL - Time to live exceeded (%s)" 3292msgid "CRITICAL - Time to live exceeded (%s)"
3042msgstr "CRITIQUE - La durée de vie du paquet est dépassée (%s)" 3293msgstr "CRITIQUE - La durée de vie du paquet est dépassée (%s)"
3043 3294
3044#: plugins/check_ping.c:480 3295#: plugins/check_ping.c:478
3045msgid "Unable to realloc warn_text" 3296msgid "Unable to realloc warn_text"
3046msgstr "Impossible de réallouer le texte d'avertissement" 3297msgstr "Impossible de réallouer le texte d'avertissement"
3047 3298
3048#: plugins/check_ping.c:497 3299#: plugins/check_ping.c:495
3049#, c-format 3300#, c-format
3050msgid "" 3301msgid ""
3051"Use ping to check connection statistics for a remote host.\n" 3302"Use ping to check connection statistics for a remote host.\n"
@@ -3055,7 +3306,7 @@ msgstr ""
3055"distant.\n" 3306"distant.\n"
3056"\n" 3307"\n"
3057 3308
3058#: plugins/check_ping.c:505 3309#: plugins/check_ping.c:503
3059#, c-format 3310#, c-format
3060msgid "" 3311msgid ""
3061"-H, --hostname=HOST\n" 3312"-H, --hostname=HOST\n"
@@ -3070,7 +3321,7 @@ msgid ""
3070" show HTML in the plugin output (obsoleted by urlize)\n" 3321" show HTML in the plugin output (obsoleted by urlize)\n"
3071msgstr "" 3322msgstr ""
3072 3323
3073#: plugins/check_ping.c:520 3324#: plugins/check_ping.c:518
3074#, c-format 3325#, c-format
3075msgid "" 3326msgid ""
3076"THRESHOLD is <rta>,<pl>%% where <rta> is the round trip average travel\n" 3327"THRESHOLD is <rta>,<pl>%% where <rta> is the round trip average travel\n"
@@ -3079,7 +3330,7 @@ msgid ""
3079"\n" 3330"\n"
3080msgstr "" 3331msgstr ""
3081 3332
3082#: plugins/check_ping.c:525 3333#: plugins/check_ping.c:523
3083#, c-format 3334#, c-format
3084msgid "" 3335msgid ""
3085"This plugin uses the ping command to probe the specified host for packet " 3336"This plugin uses the ping command to probe the specified host for packet "
@@ -3144,123 +3395,111 @@ msgstr[1] "%d processus"
3144msgid " with %s" 3395msgid " with %s"
3145msgstr "avec %s" 3396msgstr "avec %s"
3146 3397
3147#: plugins/check_procs.c:371 3398#: plugins/check_procs.c:369
3148msgid "" 3399#, fuzzy
3149"Critical Process Count must be an integer!\n" 3400msgid "Critical Process Count must be an integer!"
3150"\n"
3151msgstr "" 3401msgstr ""
3152"Critique Le total des processus doit être un entier!\n" 3402"Critique Le total des processus doit être un entier!\n"
3153"\n" 3403"\n"
3154 3404
3155#: plugins/check_procs.c:383 3405#: plugins/check_procs.c:381
3156msgid "" 3406#, fuzzy
3157"Warning Process Count must be an integer!\n" 3407msgid "Warning Process Count must be an integer!"
3158"\n"
3159msgstr "" 3408msgstr ""
3160"Alerte Le total des processus doit être un entier!\n" 3409"Alerte Le total des processus doit être un entier!\n"
3161"\n" 3410"\n"
3162 3411
3163#: plugins/check_procs.c:391 3412#: plugins/check_procs.c:389
3164#, c-format 3413#, fuzzy
3165msgid "" 3414msgid "Parent Process ID must be an integer!"
3166"%s: Parent Process ID must be an integer!\n"
3167"\n"
3168msgstr "" 3415msgstr ""
3169"%s: L'id du processus parent doit être un entier!\n" 3416"%s: L'id du processus parent doit être un entier!\n"
3170"\n" 3417"\n"
3171 3418
3172#: plugins/check_procs.c:397 plugins/check_procs.c:502 3419#: plugins/check_procs.c:395 plugins/check_procs.c:497
3173#, c-format 3420#, c-format
3174msgid "%s%sSTATE = %s" 3421msgid "%s%sSTATE = %s"
3175msgstr "%s%sETAT = %s" 3422msgstr "%s%sETAT = %s"
3176 3423
3177#: plugins/check_procs.c:406 3424#: plugins/check_procs.c:404
3178#, c-format 3425#, fuzzy, c-format
3179msgid "UID %s was not found\n" 3426msgid "UID %s was not found"
3180msgstr "UID %s n'a pas été trouvé\n" 3427msgstr "UID %s n'a pas été trouvé\n"
3181 3428
3182#: plugins/check_procs.c:412 3429#: plugins/check_procs.c:410
3183#, c-format 3430#, fuzzy, c-format
3184msgid "User name %s was not found\n" 3431msgid "User name %s was not found"
3185msgstr "L'utilisateur %s n'a pas été trouvé\n" 3432msgstr "L'utilisateur %s n'a pas été trouvé\n"
3186 3433
3187#: plugins/check_procs.c:417 3434#: plugins/check_procs.c:415
3188#, c-format 3435#, c-format
3189msgid "%s%sUID = %d (%s)" 3436msgid "%s%sUID = %d (%s)"
3190msgstr "%s%sUID = %d (%s)" 3437msgstr "%s%sUID = %d (%s)"
3191 3438
3192#: plugins/check_procs.c:427 3439#: plugins/check_procs.c:425
3193#, c-format 3440#, c-format
3194msgid "%s%scommand name '%s'" 3441msgid "%s%scommand name '%s'"
3195msgstr "%s%snom de la commande '%s'" 3442msgstr "%s%snom de la commande '%s'"
3196 3443
3197#: plugins/check_procs.c:437 3444#: plugins/check_procs.c:435
3198#, c-format 3445#, c-format
3199msgid "%s%sargs '%s'" 3446msgid "%s%sargs '%s'"
3200msgstr "%s%sarguments '%s'" 3447msgstr "%s%sarguments '%s'"
3201 3448
3202#: plugins/check_procs.c:442 3449#: plugins/check_procs.c:440
3203#, c-format 3450#, c-format
3204msgid "%s%sRSS >= %d" 3451msgid "%s%sRSS >= %d"
3205msgstr "" 3452msgstr ""
3206 3453
3207#: plugins/check_procs.c:446 3454#: plugins/check_procs.c:444
3208#, c-format 3455#, fuzzy
3209msgid "" 3456msgid "RSS must be an integer!"
3210"%s: RSS must be an integer!\n"
3211"\n"
3212msgstr "" 3457msgstr ""
3213"%s: RSS doit être un entier!\n" 3458"%s: RSS doit être un entier!\n"
3214"\n" 3459"\n"
3215 3460
3216#: plugins/check_procs.c:449 3461#: plugins/check_procs.c:447
3217#, c-format 3462#, c-format
3218msgid "%s%sVSZ >= %d" 3463msgid "%s%sVSZ >= %d"
3219msgstr "" 3464msgstr ""
3220 3465
3221#: plugins/check_procs.c:453 3466#: plugins/check_procs.c:451
3222#, c-format 3467#, fuzzy
3223msgid "" 3468msgid "VSZ must be an integer!"
3224"%s: VSZ must be an integer!\n"
3225"\n"
3226msgstr "" 3469msgstr ""
3227"%s: VSZ doit être un entier!\n" 3470"%s: VSZ doit être un entier!\n"
3228"\n" 3471"\n"
3229 3472
3230#: plugins/check_procs.c:457 3473#: plugins/check_procs.c:455
3231#, c-format 3474#, c-format
3232msgid "%s%sPCPU >= %.2f" 3475msgid "%s%sPCPU >= %.2f"
3233msgstr "" 3476msgstr ""
3234 3477
3235#: plugins/check_procs.c:461 3478#: plugins/check_procs.c:459
3236#, c-format 3479#, fuzzy
3237msgid "" 3480msgid "PCPU must be a float!"
3238"%s: PCPU must be a float!\n"
3239"\n"
3240msgstr "" 3481msgstr ""
3241"%s: PCPU doit être un nombre en virgule flottante!\n" 3482"%s: PCPU doit être un nombre en virgule flottante!\n"
3242"\n" 3483"\n"
3243 3484
3244#: plugins/check_procs.c:485 3485#: plugins/check_procs.c:483
3245#, fuzzy, c-format 3486#, fuzzy
3246msgid "" 3487msgid "Metric must be one of PROCS, VSZ, RSS, CPU, ELAPSED!"
3247"%s: metric must be one of PROCS, VSZ, RSS, CPU, ELAPSED!\n"
3248"\n"
3249msgstr "" 3488msgstr ""
3250"%s: metric doivent être un de PROCS, VSZ, RSS, CPU, ELAPSED!\n" 3489"%s: metric doivent être un de PROCS, VSZ, RSS, CPU, ELAPSED!\n"
3251"\n" 3490"\n"
3252 3491
3253#: plugins/check_procs.c:521 3492#: plugins/check_procs.c:516
3254#, c-format 3493#, c-format
3255msgid "wmax (%d) cannot be greater than cmax (%d)\n" 3494msgid "wmax (%d) cannot be greater than cmax (%d)\n"
3256msgstr "wmax (%d) ne peut pas être plus grand que cmax (%d)\n" 3495msgstr "wmax (%d) ne peut pas être plus grand que cmax (%d)\n"
3257 3496
3258#: plugins/check_procs.c:525 3497#: plugins/check_procs.c:520
3259#, c-format 3498#, c-format
3260msgid "wmin (%d) cannot be less than cmin (%d)\n" 3499msgid "wmin (%d) cannot be less than cmin (%d)\n"
3261msgstr "wmin (%d) ne peut pas être plus petit que cmin (%d)\n" 3500msgstr "wmin (%d) ne peut pas être plus petit que cmin (%d)\n"
3262 3501
3263#: plugins/check_procs.c:665 3502#: plugins/check_procs.c:657
3264#, c-format 3503#, c-format
3265msgid "" 3504msgid ""
3266"Checks all processes and generates WARNING or CRITICAL states if the " 3505"Checks all processes and generates WARNING or CRITICAL states if the "
@@ -3278,7 +3517,7 @@ msgstr ""
3278"nombres de processus. Des filtres de recherches peuvent être utilisés pour \n" 3517"nombres de processus. Des filtres de recherches peuvent être utilisés pour \n"
3279"limiter la recherche.\n" 3518"limiter la recherche.\n"
3280 3519
3281#: plugins/check_procs.c:672 3520#: plugins/check_procs.c:664
3282#, c-format 3521#, c-format
3283msgid "" 3522msgid ""
3284"\n" 3523"\n"
@@ -3289,7 +3528,7 @@ msgid ""
3289" Generate critical state if metric is outside this range\n" 3528" Generate critical state if metric is outside this range\n"
3290msgstr "" 3529msgstr ""
3291 3530
3292#: plugins/check_procs.c:679 3531#: plugins/check_procs.c:671
3293#, c-format 3532#, c-format
3294msgid "" 3533msgid ""
3295"\n" 3534"\n"
@@ -3302,12 +3541,12 @@ msgid ""
3302" CPU - percentage cpu\n" 3541" CPU - percentage cpu\n"
3303msgstr "" 3542msgstr ""
3304 3543
3305#: plugins/check_procs.c:689 3544#: plugins/check_procs.c:681
3306#, c-format 3545#, c-format
3307msgid " ELAPSED - time elapsed in seconds\n" 3546msgid " ELAPSED - time elapsed in seconds\n"
3308msgstr " ELAPSED - temps écoulé en secondes\n" 3547msgstr " ELAPSED - temps écoulé en secondes\n"
3309 3548
3310#: plugins/check_procs.c:694 3549#: plugins/check_procs.c:686
3311#, c-format 3550#, c-format
3312msgid "" 3551msgid ""
3313" -v, --verbose\n" 3552" -v, --verbose\n"
@@ -3316,7 +3555,7 @@ msgstr ""
3316" -v, --verbose\n" 3555" -v, --verbose\n"
3317" Extra information. Jusqu'a 3 niveaux de verbosité\n" 3556" Extra information. Jusqu'a 3 niveaux de verbosité\n"
3318 3557
3319#: plugins/check_procs.c:698 3558#: plugins/check_procs.c:690
3320#, c-format 3559#, c-format
3321msgid "" 3560msgid ""
3322"\n" 3561"\n"
@@ -3333,7 +3572,7 @@ msgid ""
3333" Only scan for processes with rss higher than indicated.\n" 3572" Only scan for processes with rss higher than indicated.\n"
3334msgstr "" 3573msgstr ""
3335 3574
3336#: plugins/check_procs.c:711 3575#: plugins/check_procs.c:703
3337#, c-format 3576#, c-format
3338msgid "" 3577msgid ""
3339" -P, --pcpu=PCPU\n" 3578" -P, --pcpu=PCPU\n"
@@ -3346,7 +3585,7 @@ msgid ""
3346" Only scan for exact matches of COMMAND (without path).\n" 3585" Only scan for exact matches of COMMAND (without path).\n"
3347msgstr "" 3586msgstr ""
3348 3587
3349#: plugins/check_procs.c:721 3588#: plugins/check_procs.c:713
3350#, c-format 3589#, c-format
3351msgid "" 3590msgid ""
3352"\n" 3591"\n"
@@ -3356,7 +3595,7 @@ msgid ""
3356"\n" 3595"\n"
3357msgstr "" 3596msgstr ""
3358 3597
3359#: plugins/check_procs.c:726 3598#: plugins/check_procs.c:718
3360#, c-format 3599#, c-format
3361msgid "" 3600msgid ""
3362"This plugin checks the number of currently running processes and\n" 3601"This plugin checks the number of currently running processes and\n"
@@ -3367,7 +3606,7 @@ msgid ""
3367"\n" 3606"\n"
3368msgstr "" 3607msgstr ""
3369 3608
3370#: plugins/check_procs.c:733 3609#: plugins/check_procs.c:725
3371#, c-format 3610#, c-format
3372msgid "" 3611msgid ""
3373"Examples:\n" 3612"Examples:\n"
@@ -3425,11 +3664,11 @@ msgstr "L'authentification à échoué"
3425msgid "Auth OK" 3664msgid "Auth OK"
3426msgstr "L'authentification à réussi" 3665msgstr "L'authentification à réussi"
3427 3666
3428#: plugins/check_radius.c:202 plugins/check_radius.c:264 3667#: plugins/check_radius.c:202 plugins/check_radius.c:262
3429msgid "Number of retries must be a positive integer" 3668msgid "Number of retries must be a positive integer"
3430msgstr "Le nombre d'essai doit être un entier positif" 3669msgstr "Le nombre d'essai doit être un entier positif"
3431 3670
3432#: plugins/check_radius.c:290 3671#: plugins/check_radius.c:288
3433#, c-format 3672#, c-format
3434msgid "" 3673msgid ""
3435"Tests to see if a radius server is accepting connections.\n" 3674"Tests to see if a radius server is accepting connections.\n"
@@ -3438,7 +3677,7 @@ msgstr ""
3438"Teste si un serveur radius accepte les connections.\n" 3677"Teste si un serveur radius accepte les connections.\n"
3439"\n" 3678"\n"
3440 3679
3441#: plugins/check_radius.c:298 3680#: plugins/check_radius.c:296
3442#, c-format 3681#, c-format
3443msgid "" 3682msgid ""
3444" -u, --username=STRING\n" 3683" -u, --username=STRING\n"
@@ -3455,7 +3694,7 @@ msgid ""
3455" Number of times to retry a failed connection\n" 3694" Number of times to retry a failed connection\n"
3456msgstr "" 3695msgstr ""
3457 3696
3458#: plugins/check_radius.c:314 3697#: plugins/check_radius.c:312
3459#, c-format 3698#, c-format
3460msgid "" 3699msgid ""
3461"\n" 3700"\n"
@@ -3476,7 +3715,7 @@ msgstr ""
3476"radius.\n" 3715"radius.\n"
3477"\n" 3716"\n"
3478 3717
3479#: plugins/check_radius.c:321 3718#: plugins/check_radius.c:319
3480#, c-format 3719#, c-format
3481msgid "" 3720msgid ""
3482"The password option presents a substantial security issue because the\n" 3721"The password option presents a substantial security issue because the\n"
@@ -3517,24 +3756,20 @@ msgstr "Pas de données reçues de l'hôte\n"
3517msgid "REAL %s - %d second response time\n" 3756msgid "REAL %s - %d second response time\n"
3518msgstr "REAL %s - %d secondes de temps de réponse\n" 3757msgstr "REAL %s - %d secondes de temps de réponse\n"
3519 3758
3520#: plugins/check_real.c:324 plugins/check_smtp.c:343 3759#: plugins/check_real.c:324 plugins/check_smtp.c:343 plugins/check_ups.c:522
3521msgid "Warning time must be a positive integer" 3760msgid "Warning time must be a positive integer"
3522msgstr "Le temps d'alerte doit être un entier positif" 3761msgstr "Le temps d'alerte doit être un entier positif"
3523 3762
3524#: plugins/check_real.c:333 3763#: plugins/check_real.c:333 plugins/check_smtp.c:334 plugins/check_ups.c:513
3525#, fuzzy 3764msgid "Critical time must be a positive integer"
3526msgid "Critical time must be a nonnegative integer" 3765msgstr "Critique le temps doit être un entier positif"
3527msgstr "Le temps critique doit être un entier positif"
3528
3529#: plugins/check_real.c:344
3530msgid "Time interval must be a nonnegative integer"
3531msgstr "L'intervalle de temps doit être un entier positif"
3532 3766
3533#: plugins/check_real.c:371 3767#: plugins/check_real.c:369
3534msgid "You must provide a server to check\n" 3768#, fuzzy
3769msgid "You must provide a server to check"
3535msgstr "Vous devez fournir un serveur à vérifier\n" 3770msgstr "Vous devez fournir un serveur à vérifier\n"
3536 3771
3537#: plugins/check_real.c:403 3772#: plugins/check_real.c:401
3538#, c-format 3773#, c-format
3539msgid "" 3774msgid ""
3540"This plugin tests the REAL service on the specified host.\n" 3775"This plugin tests the REAL service on the specified host.\n"
@@ -3543,7 +3778,7 @@ msgstr ""
3543"Ce plugin teste le service REAL sur l'hôte spécifié.\n" 3778"Ce plugin teste le service REAL sur l'hôte spécifié.\n"
3544"\n" 3779"\n"
3545 3780
3546#: plugins/check_real.c:411 3781#: plugins/check_real.c:409
3547#, c-format 3782#, c-format
3548msgid "" 3783msgid ""
3549" -u, --url=STRING\n" 3784" -u, --url=STRING\n"
@@ -3557,7 +3792,7 @@ msgstr ""
3557" Texte attendu dans la première ligne de réponse venant du server (défaut: " 3792" Texte attendu dans la première ligne de réponse venant du server (défaut: "
3558"%s)\n" 3793"%s)\n"
3559 3794
3560#: plugins/check_real.c:424 3795#: plugins/check_real.c:422
3561#, c-format 3796#, c-format
3562msgid "" 3797msgid ""
3563"This plugin will attempt to open an RTSP connection with the host.\n" 3798"This plugin will attempt to open an RTSP connection with the host.\n"
@@ -3582,7 +3817,7 @@ msgstr "Réponse SMTP invalide reçue de l'hôte\n"
3582msgid "Invalid SMTP response received from host on port %d\n" 3817msgid "Invalid SMTP response received from host on port %d\n"
3583msgstr "Réponse SMTP invalide reçue de l'hôte sur le port %d\n" 3818msgstr "Réponse SMTP invalide reçue de l'hôte sur le port %d\n"
3584 3819
3585#: plugins/check_smtp.c:182 plugins/check_snmp.c:510 3820#: plugins/check_smtp.c:182 plugins/check_snmp.c:508
3586#, c-format 3821#, c-format
3587msgid "Could Not Compile Regular Expression" 3822msgid "Could Not Compile Regular Expression"
3588msgstr "Impossible de compiler l'expression régulière" 3823msgstr "Impossible de compiler l'expression régulière"
@@ -3602,20 +3837,12 @@ msgstr "Erreur d'exécution: %s\n"
3602msgid "SMTP %s - %.3f sec. response time%s%s|%s\n" 3837msgid "SMTP %s - %.3f sec. response time%s%s|%s\n"
3603msgstr "SMTP %s - %.3f sec. de temps de réponse%s%s|%s\n" 3838msgstr "SMTP %s - %.3f sec. de temps de réponse%s%s|%s\n"
3604 3839
3605#: plugins/check_smtp.c:313 plugins/check_smtp.c:323 plugins/check_snmp.c:566 3840#: plugins/check_smtp.c:313 plugins/check_smtp.c:323 plugins/check_snmp.c:564
3606#, c-format 3841#, c-format
3607msgid "Could not realloc() units [%d]\n" 3842msgid "Could not realloc() units [%d]\n"
3608msgstr "Impossible de réallouer des unités [%d]\n" 3843msgstr "Impossible de réallouer des unités [%d]\n"
3609 3844
3610#: plugins/check_smtp.c:334 3845#: plugins/check_smtp.c:424
3611msgid "Critical time must be a positive integer"
3612msgstr "Critique le temps doit être un entier positif"
3613
3614#: plugins/check_smtp.c:354
3615msgid "Time interval must be a positive integer"
3616msgstr "L'intervalle de temps doit être un entier positif"
3617
3618#: plugins/check_smtp.c:426
3619#, c-format 3846#, c-format
3620msgid "" 3847msgid ""
3621"This plugin will attempt to open an SMTP connection with the host.\n" 3848"This plugin will attempt to open an SMTP connection with the host.\n"
@@ -3624,7 +3851,7 @@ msgstr ""
3624"Ce plugin va essayer d'ouvrir un connection SMTP avec l'hôte.\n" 3851"Ce plugin va essayer d'ouvrir un connection SMTP avec l'hôte.\n"
3625"\n" 3852"\n"
3626 3853
3627#: plugins/check_smtp.c:436 3854#: plugins/check_smtp.c:434
3628#, c-format 3855#, c-format
3629msgid "" 3856msgid ""
3630" -e, --expect=STRING\n" 3857" -e, --expect=STRING\n"
@@ -3639,7 +3866,7 @@ msgid ""
3639" FROM-address to include in MAIL command, required by Exchange 2000\n" 3866" FROM-address to include in MAIL command, required by Exchange 2000\n"
3640msgstr "" 3867msgstr ""
3641 3868
3642#: plugins/check_smtp.c:455 3869#: plugins/check_smtp.c:453
3643#, c-format 3870#, c-format
3644msgid "" 3871msgid ""
3645"\n" 3872"\n"
@@ -3649,7 +3876,11 @@ msgid ""
3649"STATE_WARNING return values.\n" 3876"STATE_WARNING return values.\n"
3650msgstr "" 3877msgstr ""
3651 3878
3652#: plugins/check_snmp.c:284 plugins/check_snmp.c:516 3879#: plugins/check_snmp.c:254
3880msgid "No valid data returned"
3881msgstr ""
3882
3883#: plugins/check_snmp.c:284 plugins/check_snmp.c:514
3653#, c-format 3884#, c-format
3654msgid "%s UNKNOWN: call for regex which was not a compiled option" 3885msgid "%s UNKNOWN: call for regex which was not a compiled option"
3655msgstr "" 3886msgstr ""
@@ -3661,30 +3892,30 @@ msgid ""
3661"CMD: %s\n" 3892"CMD: %s\n"
3662msgstr "" 3893msgstr ""
3663 3894
3664#: plugins/check_snmp.c:455 3895#: plugins/check_snmp.c:453
3665#, c-format 3896#, c-format
3666msgid "Invalid critical threshold: %s\n" 3897msgid "Invalid critical threshold: %s\n"
3667msgstr "Seuil critique invalide: %s\n" 3898msgstr "Seuil critique invalide: %s\n"
3668 3899
3669#: plugins/check_snmp.c:466 3900#: plugins/check_snmp.c:464
3670#, c-format 3901#, c-format
3671msgid "Invalid warning threshold: %s\n" 3902msgid "Invalid warning threshold: %s\n"
3672msgstr "Seuil d'alerte invalide: %s\n" 3903msgstr "Seuil d'alerte invalide: %s\n"
3673 3904
3674#: plugins/check_snmp.c:536 3905#: plugins/check_snmp.c:534
3675#, c-format 3906#, c-format
3676msgid "Could not realloc() labels[%d]" 3907msgid "Could not realloc() labels[%d]"
3677msgstr "" 3908msgstr ""
3678 3909
3679#: plugins/check_snmp.c:548 3910#: plugins/check_snmp.c:546
3680msgid "Could not realloc() labels\n" 3911msgid "Could not realloc() labels\n"
3681msgstr "" 3912msgstr ""
3682 3913
3683#: plugins/check_snmp.c:578 3914#: plugins/check_snmp.c:576
3684msgid "Could not realloc() units\n" 3915msgid "Could not realloc() units\n"
3685msgstr "Impossible de réallouer des unités\n" 3916msgstr "Impossible de réallouer des unités\n"
3686 3917
3687#: plugins/check_snmp.c:651 3918#: plugins/check_snmp.c:649
3688#, fuzzy, c-format 3919#, fuzzy, c-format
3689msgid "" 3920msgid ""
3690"Missing secname (%s) or authpassword (%s) ! \n" 3921"Missing secname (%s) or authpassword (%s) ! \n"
@@ -3693,17 +3924,21 @@ msgstr ""
3693"Manque secname (%s) ou mot de passe (%s) ! \n" 3924"Manque secname (%s) ou mot de passe (%s) ! \n"
3694")" 3925")"
3695 3926
3696#: plugins/check_snmp.c:659 3927#: plugins/check_snmp.c:657
3697#, c-format 3928#, c-format
3698msgid "Missing secname (%s), authpassword (%s), or privpasswd (%s)! \n" 3929msgid "Missing secname (%s), authpassword (%s), or privpasswd (%s)! \n"
3699msgstr "" 3930msgstr ""
3700 3931
3701#: plugins/check_snmp.c:668 3932#: plugins/check_snmp.c:666
3702#, c-format 3933#, c-format
3703msgid "Invalid SNMP version: %s\n" 3934msgid "Invalid SNMP version: %s\n"
3704msgstr "Version de SNMP invalide: %s\n" 3935msgstr "Version de SNMP invalide: %s\n"
3705 3936
3706#: plugins/check_snmp.c:847 3937#: plugins/check_snmp.c:796
3938msgid "Unbalanced quotes\n"
3939msgstr ""
3940
3941#: plugins/check_snmp.c:845
3707#, c-format 3942#, c-format
3708msgid "" 3943msgid ""
3709"Check status of remote machines and obtain sustem information via SNMP\n" 3944"Check status of remote machines and obtain sustem information via SNMP\n"
@@ -3713,7 +3948,7 @@ msgstr ""
3713"SNMP\n" 3948"SNMP\n"
3714"\n" 3949"\n"
3715 3950
3716#: plugins/check_snmp.c:857 3951#: plugins/check_snmp.c:855
3717#, c-format 3952#, c-format
3718msgid "" 3953msgid ""
3719" -P, --protocol=[1|3]\n" 3954" -P, --protocol=[1|3]\n"
@@ -3730,7 +3965,7 @@ msgstr ""
3730" -a, --authproto=[MD5|SHA]\n" 3965" -a, --authproto=[MD5|SHA]\n"
3731" Protocole d'authenfication SNMPv3\n" 3966" Protocole d'authenfication SNMPv3\n"
3732 3967
3733#: plugins/check_snmp.c:866 3968#: plugins/check_snmp.c:864
3734#, c-format 3969#, c-format
3735msgid "" 3970msgid ""
3736" -C, --community=STRING\n" 3971" -C, --community=STRING\n"
@@ -3744,7 +3979,7 @@ msgid ""
3744" SNMPv3 crypt passwd (DES)\n" 3979" SNMPv3 crypt passwd (DES)\n"
3745msgstr "" 3980msgstr ""
3746 3981
3747#: plugins/check_snmp.c:878 3982#: plugins/check_snmp.c:876
3748#, c-format 3983#, c-format
3749msgid "" 3984msgid ""
3750" -o, --oid=OID(s)\n" 3985" -o, --oid=OID(s)\n"
@@ -3757,7 +3992,7 @@ msgid ""
3757" to be the data that should be used in the evaluation.\n" 3992" to be the data that should be used in the evaluation.\n"
3758msgstr "" 3993msgstr ""
3759 3994
3760#: plugins/check_snmp.c:888 3995#: plugins/check_snmp.c:886
3761#, c-format 3996#, c-format
3762msgid "" 3997msgid ""
3763" -w, --warning=INTEGER_RANGE(s)\n" 3998" -w, --warning=INTEGER_RANGE(s)\n"
@@ -3766,7 +4001,7 @@ msgid ""
3766" Range(s) which will not result in a CRITICAL status\n" 4001" Range(s) which will not result in a CRITICAL status\n"
3767msgstr "" 4002msgstr ""
3768 4003
3769#: plugins/check_snmp.c:895 4004#: plugins/check_snmp.c:893
3770#, c-format 4005#, c-format
3771msgid "" 4006msgid ""
3772" -s, --string=STRING\n" 4007" -s, --string=STRING\n"
@@ -3781,7 +4016,7 @@ msgid ""
3781" Prefix label for output from plugin (default -s 'SNMP')\n" 4016" Prefix label for output from plugin (default -s 'SNMP')\n"
3782msgstr "" 4017msgstr ""
3783 4018
3784#: plugins/check_snmp.c:906 4019#: plugins/check_snmp.c:904
3785#, c-format 4020#, c-format
3786msgid "" 4021msgid ""
3787" -u, --units=STRING\n" 4022" -u, --units=STRING\n"
@@ -3790,7 +4025,7 @@ msgid ""
3790" Separates output on multiple OID requests\n" 4025" Separates output on multiple OID requests\n"
3791msgstr "" 4026msgstr ""
3792 4027
3793#: plugins/check_snmp.c:916 4028#: plugins/check_snmp.c:914
3794#, c-format 4029#, c-format
3795msgid "" 4030msgid ""
3796"\n" 4031"\n"
@@ -3806,7 +4041,7 @@ msgstr ""
3806"Si vous n'avez pas ce logiciel installé, vous devez le télécharger depuis \n" 4041"Si vous n'avez pas ce logiciel installé, vous devez le télécharger depuis \n"
3807"http://net-snmp.sourceforge.net avant de pouvoir utiliser ce plugin.\n" 4042"http://net-snmp.sourceforge.net avant de pouvoir utiliser ce plugin.\n"
3808 4043
3809#: plugins/check_snmp.c:921 4044#: plugins/check_snmp.c:919
3810#, c-format 4045#, c-format
3811msgid "" 4046msgid ""
3812"- Multiple OIDs may be indicated by a comma- or space-delimited list (lists " 4047"- Multiple OIDs may be indicated by a comma- or space-delimited list (lists "
@@ -3814,7 +4049,7 @@ msgid ""
3814" internal spaces must be quoted) [max 8 OIDs]\n" 4049" internal spaces must be quoted) [max 8 OIDs]\n"
3815msgstr "" 4050msgstr ""
3816 4051
3817#: plugins/check_snmp.c:925 4052#: plugins/check_snmp.c:923
3818#, c-format 4053#, c-format
3819msgid "" 4054msgid ""
3820"- Ranges are inclusive and are indicated with colons. When specified as\n" 4055"- Ranges are inclusive and are indicated with colons. When specified as\n"
@@ -3824,7 +4059,7 @@ msgid ""
3824" returned if the result is outside the specified range.\n" 4059" returned if the result is outside the specified range.\n"
3825msgstr "" 4060msgstr ""
3826 4061
3827#: plugins/check_snmp.c:931 4062#: plugins/check_snmp.c:929
3828#, c-format 4063#, c-format
3829msgid "" 4064msgid ""
3830"- If specified in the order 'max:min' a non-OK state will be returned if " 4065"- If specified in the order 'max:min' a non-OK state will be returned if "
@@ -3832,7 +4067,7 @@ msgid ""
3832" result is within the (inclusive) range.\n" 4067" result is within the (inclusive) range.\n"
3833msgstr "" 4068msgstr ""
3834 4069
3835#: plugins/check_snmp.c:935 4070#: plugins/check_snmp.c:933
3836#, c-format 4071#, c-format
3837msgid "" 4072msgid ""
3838"- Upper or lower bounds may be omitted to skip checking the respective " 4073"- Upper or lower bounds may be omitted to skip checking the respective "
@@ -3846,22 +4081,27 @@ msgid ""
3846" returned from the SNMP query is an unsigned integer.\n" 4081" returned from the SNMP query is an unsigned integer.\n"
3847msgstr "" 4082msgstr ""
3848 4083
3849#: plugins/check_ssh.c:221 4084#: plugins/check_ssh.c:152
4085#, fuzzy
4086msgid "Port number must be a positive integer"
4087msgstr "Le numéro du port doit être un entier positif"
4088
4089#: plugins/check_ssh.c:217
3850#, c-format 4090#, c-format
3851msgid "Server answer: %s" 4091msgid "Server answer: %s"
3852msgstr "Réponse du serveur: %s" 4092msgstr "Réponse du serveur: %s"
3853 4093
3854#: plugins/check_ssh.c:239 4094#: plugins/check_ssh.c:235
3855#, c-format 4095#, c-format
3856msgid "SSH WARNING - %s (protocol %s) version mismatch, expected '%s'\n" 4096msgid "SSH WARNING - %s (protocol %s) version mismatch, expected '%s'\n"
3857msgstr "SSH ALERTE - %s (protocole %s) différence de version, attendu'%s'\n" 4097msgstr "SSH ALERTE - %s (protocole %s) différence de version, attendu'%s'\n"
3858 4098
3859#: plugins/check_ssh.c:245 4099#: plugins/check_ssh.c:241
3860#, c-format 4100#, c-format
3861msgid "SSH OK - %s (protocol %s)\n" 4101msgid "SSH OK - %s (protocol %s)\n"
3862msgstr "SSH OK - %s (protocole %s)\n" 4102msgstr "SSH OK - %s (protocole %s)\n"
3863 4103
3864#: plugins/check_ssh.c:264 4104#: plugins/check_ssh.c:260
3865#, c-format 4105#, c-format
3866msgid "" 4106msgid ""
3867"Try to connect to an SSH server at specified server and port\n" 4107"Try to connect to an SSH server at specified server and port\n"
@@ -3870,7 +4110,7 @@ msgstr ""
3870"Essaye de se connecter à un serveur SSH précisé à un port précis\n" 4110"Essaye de se connecter à un serveur SSH précisé à un port précis\n"
3871"\n" 4111"\n"
3872 4112
3873#: plugins/check_ssh.c:276 4113#: plugins/check_ssh.c:272
3874#, c-format 4114#, c-format
3875msgid "" 4115msgid ""
3876" -r, --remote-version=STRING\n" 4116" -r, --remote-version=STRING\n"
@@ -3901,28 +4141,28 @@ msgstr "total=%d, utilisé=%d, libre=%d\n"
3901msgid "total=%llu, free=%llu\n" 4141msgid "total=%llu, free=%llu\n"
3902msgstr "total=%llu, libre=%llu\n" 4142msgstr "total=%llu, libre=%llu\n"
3903 4143
4144#: plugins/check_swap.c:242 plugins/check_swap.c:281
4145msgid "swapctl failed: "
4146msgstr ""
4147
3904#: plugins/check_swap.c:314 4148#: plugins/check_swap.c:314
3905#, c-format 4149#, c-format
3906msgid " %d%% free (%llu MB out of %llu MB)" 4150msgid " %d%% free (%llu MB out of %llu MB)"
3907msgstr " %d%% libre (%llu MB sur un total de %llu MB)" 4151msgstr " %d%% libre (%llu MB sur un total de %llu MB)"
3908 4152
3909#: plugins/check_swap.c:391
3910msgid "Warning threshold must be integer or percentage!\n"
3911msgstr ""
3912
3913#: plugins/check_swap.c:408 4153#: plugins/check_swap.c:408
3914msgid "Critical threshold must be integer or percentage!\n" 4154msgid "Critical threshold must be integer or percentage!\n"
3915msgstr "" 4155msgstr ""
3916 4156
3917#: plugins/check_swap.c:464 4157#: plugins/check_swap.c:462
3918msgid "Warning percentage should be more than critical percentage\n" 4158msgid "Warning percentage should be more than critical percentage\n"
3919msgstr "" 4159msgstr ""
3920 4160
3921#: plugins/check_swap.c:468 4161#: plugins/check_swap.c:466
3922msgid "Warning free space should be more than critical free space\n" 4162msgid "Warning free space should be more than critical free space\n"
3923msgstr "" 4163msgstr ""
3924 4164
3925#: plugins/check_swap.c:482 4165#: plugins/check_swap.c:480
3926#, fuzzy, c-format 4166#, fuzzy, c-format
3927msgid "" 4167msgid ""
3928"Check swap space on local machine.\n" 4168"Check swap space on local machine.\n"
@@ -3931,7 +4171,7 @@ msgstr ""
3931"Vérifie l'espace swap sur la machine locale\n" 4171"Vérifie l'espace swap sur la machine locale\n"
3932"\n" 4172"\n"
3933 4173
3934#: plugins/check_swap.c:488 4174#: plugins/check_swap.c:486
3935#, c-format 4175#, c-format
3936msgid "" 4176msgid ""
3937"\n" 4177"\n"
@@ -3951,7 +4191,7 @@ msgid ""
3951" Verbose output. Up to 3 levels\n" 4191" Verbose output. Up to 3 levels\n"
3952msgstr "" 4192msgstr ""
3953 4193
3954#: plugins/check_swap.c:502 4194#: plugins/check_swap.c:500
3955#, c-format 4195#, c-format
3956msgid "" 4196msgid ""
3957"\n" 4197"\n"
@@ -3966,7 +4206,7 @@ msgstr ""
3966"mémoire\n" 4206"mémoire\n"
3967" vive\n" 4207" vive\n"
3968 4208
3969#: plugins/check_swap.c:506 4209#: plugins/check_swap.c:504
3970#, c-format 4210#, c-format
3971msgid "" 4211msgid ""
3972"\n" 4212"\n"
@@ -3980,6 +4220,11 @@ msgstr ""
3980msgid "CRITICAL - Generic check_tcp called with unknown service\n" 4220msgid "CRITICAL - Generic check_tcp called with unknown service\n"
3981msgstr "CRITIQUE -check_tcp utilisé avec un service inconnu\n" 4221msgstr "CRITIQUE -check_tcp utilisé avec un service inconnu\n"
3982 4222
4223#: plugins/check_tcp.c:262
4224#, fuzzy
4225msgid "CRITICAL - Could not make SSL connection\n"
4226msgstr "HTTP CRITIQUE - Impossible d'établir une connection SSL\n"
4227
3983#: plugins/check_tcp.c:335 4228#: plugins/check_tcp.c:335
3984#, c-format 4229#, c-format
3985msgid "Unexpected response from host: %s\n" 4230msgid "Unexpected response from host: %s\n"
@@ -3990,43 +4235,67 @@ msgstr "Réponse invalide de l'hôte: %s\n"
3990msgid "%s %s%s - %.3f second response time on port %d" 4235msgid "%s %s%s - %.3f second response time on port %d"
3991msgstr "%s %s%s - %.3f secondes de temps de réponse sur le port %d" 4236msgstr "%s %s%s - %.3f secondes de temps de réponse sur le port %d"
3992 4237
3993#: plugins/check_tcp.c:504 plugins/check_time.c:248 plugins/check_time.c:272 4238#: plugins/check_tcp.c:437
3994#: plugins/check_udp.c:175 4239msgid "No arguments found"
3995msgid "Warning threshold must be a positive integer" 4240msgstr ""
3996msgstr "Attention l'intervalle doit être un entier positif"
3997 4241
3998#: plugins/check_tcp.c:543 4242#: plugins/check_tcp.c:541
3999msgid "Maxbytes must be a positive integer" 4243msgid "Maxbytes must be a positive integer"
4000msgstr "Maxbytes doit être un entier positif" 4244msgstr "Maxbytes doit être un entier positif"
4001 4245
4002#: plugins/check_tcp.c:557 4246#: plugins/check_tcp.c:555
4003msgid "Refuse must be one of ok, warn, crit" 4247msgid "Refuse must be one of ok, warn, crit"
4004msgstr "Refuse doit être parmis ok, warn, crit" 4248msgstr "Refuse doit être parmis ok, warn, crit"
4005 4249
4006#: plugins/check_tcp.c:567 4250#: plugins/check_tcp.c:565
4007#, fuzzy 4251#, fuzzy
4008msgid "Mismatch must be one of ok, warn, crit" 4252msgid "Mismatch must be one of ok, warn, crit"
4009msgstr "Mismatch doit être parmis ok, warn, crit" 4253msgstr "Mismatch doit être parmis ok, warn, crit"
4010 4254
4011#: plugins/check_tcp.c:573 4255#: plugins/check_tcp.c:571
4012msgid "Delay must be a positive integer" 4256msgid "Delay must be a positive integer"
4013msgstr "Le delai doit être un entier positif" 4257msgstr "Le delai doit être un entier positif"
4014 4258
4015#: plugins/check_tcp.c:593 4259#: plugins/check_tcp.c:584
4016msgid "You must provide a server address\n" 4260msgid "SSL support not available. Install OpenSSL and recompile."
4261msgstr ""
4262
4263#: plugins/check_tcp.c:591
4264#, fuzzy
4265msgid "You must provide a server address"
4017msgstr "Vous devez fournir une adresse serveur\n" 4266msgstr "Vous devez fournir une adresse serveur\n"
4018 4267
4019#: plugins/check_tcp.c:613 4268#: plugins/check_tcp.c:611
4020#, c-format 4269#, c-format
4021msgid "CRITICAL - Cannot create SSL context.\n" 4270msgid "CRITICAL - Cannot create SSL context.\n"
4022msgstr "CRITIQUE - Impossible de créer le contexte SSL.\n" 4271msgstr "CRITIQUE - Impossible de créer le contexte SSL.\n"
4023 4272
4024#: plugins/check_tcp.c:636 4273#: plugins/check_tcp.c:634
4025#, c-format 4274#, c-format
4026msgid "CRITICAL - Cannot make SSL connection " 4275msgid "CRITICAL - Cannot make SSL connection "
4027msgstr "CRITIQUE - Impossible d'établir une connection SSL" 4276msgstr "CRITIQUE - Impossible d'établir une connection SSL"
4028 4277
4029#: plugins/check_tcp.c:763 4278#: plugins/check_tcp.c:711
4279#, fuzzy, c-format
4280msgid "Certificate expires in %d day(s) (%s).\n"
4281msgstr "ALERTE - Le certificat expire dans %d jour(s) (%s).\n"
4282
4283#: plugins/check_tcp.c:715
4284#, fuzzy, c-format
4285msgid "Certificate expired on %s.\n"
4286msgstr "CRITIQUE - Le certificat à expiré le %s.\n"
4287
4288#: plugins/check_tcp.c:720
4289#, fuzzy, c-format
4290msgid "Certificate expires today (%s).\n"
4291msgstr "ALERTE - Le certificat expires aujourd'hui (%s).\n"
4292
4293#: plugins/check_tcp.c:724
4294#, fuzzy, c-format
4295msgid "Certificate will expire on %s.\n"
4296msgstr "OK - Le certificat expirera le %s.\n"
4297
4298#: plugins/check_tcp.c:761
4030#, c-format 4299#, c-format
4031msgid "" 4300msgid ""
4032"This plugin tests %s connections with the specified host.\n" 4301"This plugin tests %s connections with the specified host.\n"
@@ -4035,7 +4304,7 @@ msgstr ""
4035"Le plugin teste %s connections avec l'hôte spécifié\n" 4304"Le plugin teste %s connections avec l'hôte spécifié\n"
4036"\n" 4305"\n"
4037 4306
4038#: plugins/check_tcp.c:774 4307#: plugins/check_tcp.c:772
4039#, c-format 4308#, c-format
4040msgid "" 4309msgid ""
4041" -s, --send=STRING\n" 4310" -s, --send=STRING\n"
@@ -4046,7 +4315,7 @@ msgid ""
4046" String to send server to initiate a clean close of the connection\n" 4315" String to send server to initiate a clean close of the connection\n"
4047msgstr "" 4316msgstr ""
4048 4317
4049#: plugins/check_tcp.c:782 4318#: plugins/check_tcp.c:780
4050#, c-format 4319#, c-format
4051msgid "" 4320msgid ""
4052" -r, --refuse=ok|warn|crit\n" 4321" -r, --refuse=ok|warn|crit\n"
@@ -4062,7 +4331,7 @@ msgid ""
4062" Seconds to wait between sending string and polling for response\n" 4331" Seconds to wait between sending string and polling for response\n"
4063msgstr "" 4332msgstr ""
4064 4333
4065#: plugins/check_tcp.c:795 4334#: plugins/check_tcp.c:793
4066#, c-format 4335#, c-format
4067msgid "" 4336msgid ""
4068" -D, --certificate=INTEGER\n" 4337" -D, --certificate=INTEGER\n"
@@ -4102,19 +4371,15 @@ msgstr "TIME %s - %d secondes de temps de réponse|%s\n"
4102msgid "TIME %s - %lu second time difference|%s %s\n" 4371msgid "TIME %s - %lu second time difference|%s %s\n"
4103msgstr "TIME %s - %lu secondes de différence|%s %s\n" 4372msgstr "TIME %s - %lu secondes de différence|%s %s\n"
4104 4373
4105#: plugins/check_time.c:244 4374#: plugins/check_time.c:242
4106msgid "Warning thresholds must be a positive integer" 4375msgid "Warning thresholds must be a positive integer"
4107msgstr "Alerte les seuils doivent être un entier positif" 4376msgstr "Alerte les seuils doivent être un entier positif"
4108 4377
4109#: plugins/check_time.c:263 4378#: plugins/check_time.c:261
4110msgid "Critical thresholds must be a positive integer" 4379msgid "Critical thresholds must be a positive integer"
4111msgstr "Critique les seuils doivent être un entier positif" 4380msgstr "Critique les seuils doivent être un entier positif"
4112 4381
4113#: plugins/check_time.c:309 plugins/check_udp.c:209 4382#: plugins/check_time.c:327
4114msgid "Hostname was not supplied"
4115msgstr "Le nom de l'hôte n'a pas été spécifié"
4116
4117#: plugins/check_time.c:329
4118#, c-format 4383#, c-format
4119msgid "" 4384msgid ""
4120"This plugin will check the time on the specified host.\n" 4385"This plugin will check the time on the specified host.\n"
@@ -4123,7 +4388,7 @@ msgstr ""
4123"Ce plugin va vérifier l'heure sur l'hôte spécifié.\n" 4388"Ce plugin va vérifier l'heure sur l'hôte spécifié.\n"
4124"\n" 4389"\n"
4125 4390
4126#: plugins/check_time.c:337 4391#: plugins/check_time.c:335
4127#, c-format 4392#, c-format
4128msgid "" 4393msgid ""
4129" -u, --udp\n" 4394" -u, --udp\n"
@@ -4138,6 +4403,16 @@ msgid ""
4138" Response time (sec.) necessary to result in critical status\n" 4403" Response time (sec.) necessary to result in critical status\n"
4139msgstr "" 4404msgstr ""
4140 4405
4406#: plugins/check_udp.c:70
4407#, fuzzy, c-format
4408msgid "No response from host on port %d\n"
4409msgstr "Réponse SMTP invalide reçue de l'hôte sur le port %d\n"
4410
4411#: plugins/check_udp.c:79
4412#, fuzzy, c-format
4413msgid "Invalid response received from host on port %d\n"
4414msgstr "Réponse HTTP invalide reçue de l'hôte sur le port %d\n"
4415
4141#: plugins/check_udp.c:95 4416#: plugins/check_udp.c:95
4142#, c-format 4417#, c-format
4143msgid "Connection %s on port %d - %d second response time\n" 4418msgid "Connection %s on port %d - %d second response time\n"
@@ -4151,7 +4426,7 @@ msgstr "accepté"
4151msgid "problem" 4426msgid "problem"
4152msgstr "problème" 4427msgstr "problème"
4153 4428
4154#: plugins/check_udp.c:227 4429#: plugins/check_udp.c:225
4155#, c-format 4430#, c-format
4156msgid "" 4431msgid ""
4157"\tThis plugin tests an UDP connection with the specified host.\n" 4432"\tThis plugin tests an UDP connection with the specified host.\n"
@@ -4160,7 +4435,7 @@ msgstr ""
4160"Ce plugin teste un connection UDP avec l'hôte spécifié.\n" 4435"Ce plugin teste un connection UDP avec l'hôte spécifié.\n"
4161"\n" 4436"\n"
4162 4437
4163#: plugins/check_udp.c:236 4438#: plugins/check_udp.c:234
4164#, c-format 4439#, c-format
4165msgid "" 4440msgid ""
4166" -e, --expect=STRING <optional>\n" 4441" -e, --expect=STRING <optional>\n"
@@ -4169,7 +4444,7 @@ msgid ""
4169" String to send to the server when initiating the connection\n" 4444" String to send to the server when initiating the connection\n"
4170msgstr "" 4445msgstr ""
4171 4446
4172#: plugins/check_udp.c:248 4447#: plugins/check_udp.c:246
4173#, c-format 4448#, c-format
4174msgid "" 4449msgid ""
4175"This plugin will attempt to connect to the specified port on the host.\n" 4450"This plugin will attempt to connect to the specified port on the host.\n"
@@ -4178,7 +4453,98 @@ msgid ""
4178"\n" 4453"\n"
4179msgstr "" 4454msgstr ""
4180 4455
4181#: plugins/check_ups.c:597 4456#: plugins/check_ups.c:136
4457msgid "On Battery, Low Battery"
4458msgstr ""
4459
4460#: plugins/check_ups.c:141
4461msgid "Online"
4462msgstr ""
4463
4464#: plugins/check_ups.c:144
4465msgid "On Battery"
4466msgstr ""
4467
4468#: plugins/check_ups.c:148
4469msgid ", Low Battery"
4470msgstr ""
4471
4472#: plugins/check_ups.c:152
4473msgid ", Calibrating"
4474msgstr ""
4475
4476#: plugins/check_ups.c:155
4477msgid ", Replace Battery"
4478msgstr ""
4479
4480#: plugins/check_ups.c:159
4481msgid ", On Bypass"
4482msgstr ""
4483
4484#: plugins/check_ups.c:162
4485msgid ", Overload"
4486msgstr ""
4487
4488#: plugins/check_ups.c:165
4489msgid ", Trimming"
4490msgstr ""
4491
4492#: plugins/check_ups.c:168
4493msgid ", Boosting"
4494msgstr ""
4495
4496#: plugins/check_ups.c:171
4497msgid ", Charging"
4498msgstr ""
4499
4500#: plugins/check_ups.c:174
4501msgid ", Discharging"
4502msgstr ""
4503
4504#: plugins/check_ups.c:177
4505msgid ", Unknown"
4506msgstr ""
4507
4508#: plugins/check_ups.c:314
4509#, fuzzy
4510msgid "UPS does not support any available options\n"
4511msgstr "Support IPv6 non disponible\n"
4512
4513#: plugins/check_ups.c:338 plugins/check_ups.c:398
4514#, fuzzy, c-format
4515msgid "Invalid response received from host\n"
4516msgstr "Réponse SMTP invalide reçue de l'hôte\n"
4517
4518#: plugins/check_ups.c:406
4519#, fuzzy, c-format
4520msgid "CRITICAL - no such ups '%s' on that host\n"
4521msgstr "CRITIQUE: Le volume '%s' n'existe pas!"
4522
4523#: plugins/check_ups.c:416
4524#, fuzzy, c-format
4525msgid "CRITICAL - UPS data is stale\n"
4526msgstr "CRITIQUE - Date du serveur \"%100s\" illisible"
4527
4528#: plugins/check_ups.c:421
4529#, fuzzy, c-format
4530msgid "Unknown error: %s\n"
4531msgstr "Erreur de papier inconnue"
4532
4533#: plugins/check_ups.c:428
4534#, c-format
4535msgid "Error: unable to parse variable\n"
4536msgstr ""
4537
4538#: plugins/check_ups.c:535
4539msgid "Unrecognized UPS variable"
4540msgstr ""
4541
4542#: plugins/check_ups.c:573
4543#, c-format
4544msgid "Error : no ups indicated\n"
4545msgstr ""
4546
4547#: plugins/check_ups.c:593
4182#, c-format 4548#, c-format
4183msgid "" 4549msgid ""
4184"This plugin tests the UPS service on the specified host.\n" 4550"This plugin tests the UPS service on the specified host.\n"
@@ -4192,7 +4558,7 @@ msgstr ""
4192"l'hôte pour que ce plugin fonctionne.\n" 4558"l'hôte pour que ce plugin fonctionne.\n"
4193"\n" 4559"\n"
4194 4560
4195#: plugins/check_ups.c:607 4561#: plugins/check_ups.c:603
4196#, c-format 4562#, c-format
4197msgid "" 4563msgid ""
4198" -u, --ups=STRING\n" 4564" -u, --ups=STRING\n"
@@ -4201,7 +4567,7 @@ msgstr ""
4201" -u, --ups=STRING\n" 4567" -u, --ups=STRING\n"
4202" Nom de l'UPS\n" 4568" Nom de l'UPS\n"
4203 4569
4204#: plugins/check_ups.c:611 4570#: plugins/check_ups.c:607
4205#, c-format 4571#, c-format
4206msgid "" 4572msgid ""
4207" -T, --temperature\n" 4573" -T, --temperature\n"
@@ -4210,7 +4576,7 @@ msgstr ""
4210" -T, --temperature\n" 4576" -T, --temperature\n"
4211" Affichage des températures en Celsius\n" 4577" Affichage des températures en Celsius\n"
4212 4578
4213#: plugins/check_ups.c:621 4579#: plugins/check_ups.c:617
4214#, c-format 4580#, c-format
4215msgid "" 4581msgid ""
4216"This plugin attempts to determine the status of a UPS (Uninterruptible " 4582"This plugin attempts to determine the status of a UPS (Uninterruptible "
@@ -4224,7 +4590,7 @@ msgid ""
4224"\n" 4590"\n"
4225msgstr "" 4591msgstr ""
4226 4592
4227#: plugins/check_ups.c:628 4593#: plugins/check_ups.c:624
4228#, c-format 4594#, c-format
4229msgid "" 4595msgid ""
4230"You may also specify a variable to check [such as temperature, utility " 4596"You may also specify a variable to check [such as temperature, utility "
@@ -4237,7 +4603,7 @@ msgid ""
4237"\n" 4603"\n"
4238msgstr "" 4604msgstr ""
4239 4605
4240#: plugins/check_ups.c:634 4606#: plugins/check_ups.c:630
4241#, c-format 4607#, c-format
4242msgid "" 4608msgid ""
4243"Notes:\n" 4609"Notes:\n"
@@ -4259,16 +4625,7 @@ msgstr "# utilisateurs=%d"
4259msgid "USERS %s - %d users currently logged in |%s\n" 4625msgid "USERS %s - %d users currently logged in |%s\n"
4260msgstr "UTILISATEURS %s - %d utilisateurs actuellement connectés sur |%s\n" 4626msgstr "UTILISATEURS %s - %d utilisateurs actuellement connectés sur |%s\n"
4261 4627
4262#: plugins/check_users.c:154 4628#: plugins/check_users.c:193
4263msgid "Critical threshold must be a positive integer\n"
4264msgstr "Critique le seuil doit être un entier positif\n"
4265
4266#: plugins/check_users.c:160 plugins/check_users.c:170
4267#: plugins/check_users.c:177
4268msgid "Warning threshold must be a positive integer\n"
4269msgstr "Alerte le seuil doit être un entier positif\n"
4270
4271#: plugins/check_users.c:195
4272#, c-format 4629#, c-format
4273msgid "" 4630msgid ""
4274"This plugin checks the number of users currently logged in on the local\n" 4631"This plugin checks the number of users currently logged in on the local\n"
@@ -4279,7 +4636,7 @@ msgstr ""
4279"sytème\n" 4636"sytème\n"
4280"local et génère une erreur si le nombre excède le seuil spécifié.\n" 4637"local et génère une erreur si le nombre excède le seuil spécifié.\n"
4281 4638
4282#: plugins/check_users.c:203 4639#: plugins/check_users.c:201
4283#, c-format 4640#, c-format
4284msgid "" 4641msgid ""
4285" -w, --warning=INTEGER\n" 4642" -w, --warning=INTEGER\n"
@@ -4288,70 +4645,70 @@ msgid ""
4288" Set CRITICAL status if more than INTEGER users are logged in\n" 4645" Set CRITICAL status if more than INTEGER users are logged in\n"
4289msgstr "" 4646msgstr ""
4290 4647
4291#: plugins/check_ide_smart.c:227 4648#: plugins/check_ide_smart.c:225
4292#, c-format 4649#, c-format
4293msgid "CRITICAL - Couldn't open device: %s\n" 4650msgid "CRITICAL - Couldn't open device: %s\n"
4294msgstr "Critique - Impossible d'ouvrir le périphérique: %s\n" 4651msgstr "Critique - Impossible d'ouvrir le périphérique: %s\n"
4295 4652
4296#: plugins/check_ide_smart.c:232 4653#: plugins/check_ide_smart.c:230
4297#, c-format 4654#, c-format
4298msgid "CRITICAL - SMART_CMD_ENABLE\n" 4655msgid "CRITICAL - SMART_CMD_ENABLE\n"
4299msgstr "CRITIQUE - SMART_CMD_ENABLE\n" 4656msgstr "CRITIQUE - SMART_CMD_ENABLE\n"
4300 4657
4301#: plugins/check_ide_smart.c:294 4658#: plugins/check_ide_smart.c:292
4302#, c-format 4659#, c-format
4303msgid "CRITICAL - SMART_READ_VALUES: %s\n" 4660msgid "CRITICAL - SMART_READ_VALUES: %s\n"
4304msgstr "CRITIQUE - SMART_READ_VALUES: %s\n" 4661msgstr "CRITIQUE - SMART_READ_VALUES: %s\n"
4305 4662
4306#: plugins/check_ide_smart.c:363 4663#: plugins/check_ide_smart.c:361
4307#, c-format 4664#, c-format
4308msgid "CRITICAL - %d Harddrive PreFailure%cDetected! %d/%d tests failed.\n" 4665msgid "CRITICAL - %d Harddrive PreFailure%cDetected! %d/%d tests failed.\n"
4309msgstr "" 4666msgstr ""
4310"CRITIQUE - %d État de pré-panne %c Détecté! %d/%d les tests on échoués.\n" 4667"CRITIQUE - %d État de pré-panne %c Détecté! %d/%d les tests on échoués.\n"
4311 4668
4312#: plugins/check_ide_smart.c:370 4669#: plugins/check_ide_smart.c:368
4313#, c-format 4670#, c-format
4314msgid "WARNING - %d Harddrive Advisor%s Detected. %d/%d tests failed.\n" 4671msgid "WARNING - %d Harddrive Advisor%s Detected. %d/%d tests failed.\n"
4315msgstr "" 4672msgstr ""
4316"ALERTE - %d État de pré-panne %s Détecté! %d/%d les tests on échoués.\n" 4673"ALERTE - %d État de pré-panne %s Détecté! %d/%d les tests on échoués.\n"
4317 4674
4318#: plugins/check_ide_smart.c:377 4675#: plugins/check_ide_smart.c:375
4319#, c-format 4676#, c-format
4320msgid "OK - Operational (%d/%d tests passed)\n" 4677msgid "OK - Operational (%d/%d tests passed)\n"
4321msgstr "OK - En fonctionnement (%d/%d les tests on été réussi)\n" 4678msgstr "OK - En fonctionnement (%d/%d les tests on été réussi)\n"
4322 4679
4323#: plugins/check_ide_smart.c:380 4680#: plugins/check_ide_smart.c:378
4324#, c-format 4681#, c-format
4325msgid "ERROR - Status '%d' uknown. %d/%d tests passed\n" 4682msgid "ERROR - Status '%d' uknown. %d/%d tests passed\n"
4326msgstr "ERREUR - État '%d' inconnu. %d/%d les tests on réussi\n" 4683msgstr "ERREUR - État '%d' inconnu. %d/%d les tests on réussi\n"
4327 4684
4328#: plugins/check_ide_smart.c:413 4685#: plugins/check_ide_smart.c:411
4329#, fuzzy, c-format 4686#, fuzzy, c-format
4330msgid "OffLineStatus=%d {%s}, AutoOffLine=%s, OffLineTimeout=%d minutes\n" 4687msgid "OffLineStatus=%d {%s}, AutoOffLine=%s, OffLineTimeout=%d minutes\n"
4331msgstr "" 4688msgstr ""
4332"Etat Hors Ligne=%d {%s}, Hors Ligne Auto=%s, OffLineTimeout=%d minutes\n" 4689"Etat Hors Ligne=%d {%s}, Hors Ligne Auto=%s, OffLineTimeout=%d minutes\n"
4333 4690
4334#: plugins/check_ide_smart.c:419 4691#: plugins/check_ide_smart.c:417
4335#, c-format 4692#, c-format
4336msgid "OffLineCapability=%d {%s %s %s}\n" 4693msgid "OffLineCapability=%d {%s %s %s}\n"
4337msgstr "" 4694msgstr ""
4338 4695
4339#: plugins/check_ide_smart.c:425 4696#: plugins/check_ide_smart.c:423
4340#, c-format 4697#, c-format
4341msgid "SmartRevision=%d, CheckSum=%d, SmartCapability=%d {%s %s}\n" 4698msgid "SmartRevision=%d, CheckSum=%d, SmartCapability=%d {%s %s}\n"
4342msgstr "Revision Smart=%d, Somme de contrôle=%d, Capacité Smart=%d {%s %s}\n" 4699msgstr "Revision Smart=%d, Somme de contrôle=%d, Capacité Smart=%d {%s %s}\n"
4343 4700
4344#: plugins/check_ide_smart.c:464 4701#: plugins/check_ide_smart.c:462
4345#, c-format 4702#, c-format
4346msgid "CRITICAL - %s: %s\n" 4703msgid "CRITICAL - %s: %s\n"
4347msgstr "CRITIQUE - %s: %s\n" 4704msgstr "CRITIQUE - %s: %s\n"
4348 4705
4349#: plugins/check_ide_smart.c:483 4706#: plugins/check_ide_smart.c:481
4350#, c-format 4707#, c-format
4351msgid "CRITICAL - SMART_READ_THRESHOLDS: %s\n" 4708msgid "CRITICAL - SMART_READ_THRESHOLDS: %s\n"
4352msgstr "CRITIQUE - SMART_READ_THRESHOLDS: %s\n" 4709msgstr "CRITIQUE - SMART_READ_THRESHOLDS: %s\n"
4353 4710
4354#: plugins/negate.c:244 4711#: plugins/negate.c:242
4355#, c-format 4712#, c-format
4356msgid "" 4713msgid ""
4357"Negates the status of a plugin (returns OK for CRITICAL, and vice-versa).\n" 4714"Negates the status of a plugin (returns OK for CRITICAL, and vice-versa).\n"
@@ -4360,12 +4717,12 @@ msgstr ""
4360"Inverse le status d'un plugin (retourne OK pour CRITIQUE, et vice-versa).\n" 4717"Inverse le status d'un plugin (retourne OK pour CRITIQUE, et vice-versa).\n"
4361"\n" 4718"\n"
4362 4719
4363#: plugins/negate.c:253 4720#: plugins/negate.c:251
4364#, c-format 4721#, c-format
4365msgid " [keep timeout than the plugin timeout to retain CRITICAL status]\n" 4722msgid " [keep timeout than the plugin timeout to retain CRITICAL status]\n"
4366msgstr "" 4723msgstr ""
4367 4724
4368#: plugins/negate.c:256 4725#: plugins/negate.c:254
4369#, c-format 4726#, c-format
4370msgid "" 4727msgid ""
4371" negate \"/usr/local/nagios/libexec/check_ping -H host\"\n" 4728" negate \"/usr/local/nagios/libexec/check_ping -H host\"\n"
@@ -4374,7 +4731,7 @@ msgid ""
4374" Use single quotes if you need to retain spaces\n" 4731" Use single quotes if you need to retain spaces\n"
4375msgstr "" 4732msgstr ""
4376 4733
4377#: plugins/negate.c:262 4734#: plugins/negate.c:260
4378#, c-format 4735#, c-format
4379msgid "" 4736msgid ""
4380"This plugin is a wrapper to take the output of another plugin and invert " 4737"This plugin is a wrapper to take the output of another plugin and invert "
@@ -4386,7 +4743,56 @@ msgid ""
4386"Otherwise, the output state of the wrapped plugin is unchanged.\n" 4743"Otherwise, the output state of the wrapped plugin is unchanged.\n"
4387msgstr "" 4744msgstr ""
4388 4745
4389#: plugins/urlize.c:108 4746#: plugins/netutils.c:48
4747#, fuzzy, c-format
4748msgid "CRITICAL - Socket timeout after %d seconds\n"
4749msgstr "CRITIQUE - La date du document est %d secondes dans le futur\n"
4750
4751#: plugins/netutils.c:50
4752#, fuzzy, c-format
4753msgid "CRITICAL - Abnormal timeout after %d seconds\n"
4754msgstr "CRITIQUE - La date du document est %d secondes dans le futur\n"
4755
4756#: plugins/netutils.c:109 plugins/netutils.c:318
4757#, fuzzy, c-format
4758msgid "Send failed\n"
4759msgstr "La réception à échoué\n"
4760
4761#: plugins/netutils.c:126 plugins/netutils.c:333
4762#, fuzzy, c-format
4763msgid "No data was received from host!\n"
4764msgstr "Pas de données reçues de l'hôte\n"
4765
4766#: plugins/netutils.c:242
4767#, c-format
4768msgid "Socket creation failed\n"
4769msgstr ""
4770
4771#: plugins/netutils.c:342
4772#, fuzzy, c-format
4773msgid "Receive failed\n"
4774msgstr "La réception à échoué\n"
4775
4776#: plugins/popen.c:117
4777#, fuzzy, c-format
4778msgid "Could not malloc argv array in popen()\n"
4779msgstr "Impossible d'allouer une adresse\n"
4780
4781#: plugins/popen.c:127
4782#, fuzzy, c-format
4783msgid "CRITICAL - You need more args!!!\n"
4784msgstr "CRITIQUE - Erreur d'exécution: %s\n"
4785
4786#: plugins/popen.c:248 plugins/utils.c:136
4787#, fuzzy, c-format
4788msgid "CRITICAL - Plugin timed out after %d seconds\n"
4789msgstr "CRITIQUE - La date du document est %d secondes dans le futur\n"
4790
4791#: plugins/popen.c:264
4792msgid "sysconf error for _SC_OPEN_MAX"
4793msgstr ""
4794
4795#: plugins/urlize.c:106
4390#, c-format 4796#, c-format
4391msgid "" 4797msgid ""
4392"%s UNKNOWN - No data received from host\n" 4798"%s UNKNOWN - No data received from host\n"
@@ -4395,7 +4801,7 @@ msgstr ""
4395"%s INCONNU - Pas de données reçues de l'hôte\n" 4801"%s INCONNU - Pas de données reçues de l'hôte\n"
4396"CMD: %s</A>\n" 4802"CMD: %s</A>\n"
4397 4803
4398#: plugins/urlize.c:135 4804#: plugins/urlize.c:133
4399#, c-format 4805#, c-format
4400msgid "" 4806msgid ""
4401"\n" 4807"\n"
@@ -4406,7 +4812,7 @@ msgid ""
4406"\n" 4812"\n"
4407msgstr "" 4813msgstr ""
4408 4814
4409#: plugins/urlize.c:143 4815#: plugins/urlize.c:141
4410#, c-format 4816#, c-format
4411msgid "" 4817msgid ""
4412"\n" 4818"\n"
@@ -4424,5 +4830,79 @@ msgid ""
4424" urlize http://example.com/ \"check_http -H example.com -r 'two words'\"\n" 4830" urlize http://example.com/ \"check_http -H example.com -r 'two words'\"\n"
4425msgstr "" 4831msgstr ""
4426 4832
4833#: plugins/utils.c:433
4834#, fuzzy
4835msgid "failed realloc in strpcpy\n"
4836msgstr "Impossible d'allouer de l'espace pour '%s'\n"
4837
4838#: plugins/utils.c:475
4839#, fuzzy
4840msgid "failed malloc in strscat\n"
4841msgstr "Impossible d'allouer de l'espace pour '%s'\n"
4842
4843#~ msgid ""
4844#~ "Expiration time must be an integer (seconds)\n"
4845#~ "Type '%s -h' for additional help\n"
4846#~ msgstr ""
4847#~ "Le délai d'expiration doit être un entier (en secondes)\n"
4848#~ "Tapez '%s -h' pour de l'aide additionelle\n"
4849
4850#, fuzzy
4851#~ msgid "Server port an integer (seconds)\n"
4852#~ msgstr ""
4853#~ "Le port du server doit être un entier (secondes)\n"
4854#~ "Tapez '%s -h' pour de l'aide additionelle\n"
4855
4856#~ msgid ""
4857#~ "Hostname was not supplied\n"
4858#~ "\n"
4859#~ msgstr ""
4860#~ "Le nom de l'hôte n'a pas été fourni\n"
4861#~ "\n"
4862
4863#~ msgid ""
4864#~ "%s: Unknown argument: %s\n"
4865#~ "\n"
4866#~ msgstr ""
4867#~ "%s: Argument inconnu: %s\n"
4868#~ "\n"
4869
4870#~ msgid ""
4871#~ "%s: Unknown argument: %c\n"
4872#~ "\n"
4873#~ msgstr ""
4874#~ "%s: Argument inconnu: %c\n"
4875#~ "\n"
4876
4877#~ msgid ""
4878#~ "You must provide the status_log\n"
4879#~ "Type '%s -h' for additional help\n"
4880#~ msgstr ""
4881#~ "Vous devez fournir le fichier status_log\n"
4882#~ "Tapez '%s -h' pour de l'aide additionelle\n"
4883
4884#~ msgid ""
4885#~ "You must provide a process string\n"
4886#~ "Type '%s -h' for additional help\n"
4887#~ msgstr ""
4888#~ "Vous devez fournir le nom du processus\n"
4889#~ "Tapez '%s -h' pour de l'aide additionelle\n"
4890
4891#, fuzzy
4892#~ msgid "Critical time must be a nonnegative integer"
4893#~ msgstr "Le temps critique doit être un entier positif"
4894
4895#~ msgid "Time interval must be a nonnegative integer"
4896#~ msgstr "L'intervalle de temps doit être un entier positif"
4897
4898#~ msgid "Time interval must be a positive integer"
4899#~ msgstr "L'intervalle de temps doit être un entier positif"
4900
4901#~ msgid "Critical threshold must be a positive integer\n"
4902#~ msgstr "Critique le seuil doit être un entier positif\n"
4903
4904#~ msgid "Warning threshold must be a positive integer\n"
4905#~ msgstr "Alerte le seuil doit être un entier positif\n"
4906
4427#~ msgid "check_http: invalid option - SSL is not available\n" 4907#~ msgid "check_http: invalid option - SSL is not available\n"
4428#~ msgstr "check_http: option invalide - SSL n'est pas disponible\n" 4908#~ msgstr "check_http: option invalide - SSL n'est pas disponible\n"
diff --git a/po/nagios-plugins.pot b/po/nagios-plugins.pot
index f9d0d57..04b97a3 100644
--- a/po/nagios-plugins.pot
+++ b/po/nagios-plugins.pot
@@ -8,7 +8,7 @@ msgid ""
8msgstr "" 8msgstr ""
9"Project-Id-Version: PACKAGE VERSION\n" 9"Project-Id-Version: PACKAGE VERSION\n"
10"Report-Msgid-Bugs-To: \n" 10"Report-Msgid-Bugs-To: \n"
11"POT-Creation-Date: 2004-12-25 16:26+0100\n" 11"POT-Creation-Date: 2004-12-26 00:06+0100\n"
12"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" 13"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14"Language-Team: LANGUAGE <LL@li.org>\n" 14"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18,7 +18,7 @@ msgstr ""
18"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" 18"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
19 19
20#: plugins/check_by_ssh.c:72 plugins/check_dhcp.c:251 plugins/check_dig.c:72 20#: plugins/check_by_ssh.c:72 plugins/check_dhcp.c:251 plugins/check_dig.c:72
21#: plugins/check_disk.c:167 plugins/check_dns.c:75 plugins/check_dummy.c:44 21#: plugins/check_disk.c:167 plugins/check_dns.c:75 plugins/check_dummy.c:43
22#: plugins/check_fping.c:73 plugins/check_game.c:69 plugins/check_hpjd.c:89 22#: plugins/check_fping.c:73 plugins/check_game.c:69 plugins/check_hpjd.c:89
23#: plugins/check_http.c:149 plugins/check_ldap.c:92 plugins/check_load.c:78 23#: plugins/check_http.c:149 plugins/check_ldap.c:92 plugins/check_load.c:78
24#: plugins/check_mrtgtraf.c:66 plugins/check_mysql.c:63 24#: plugins/check_mrtgtraf.c:66 plugins/check_mysql.c:63
@@ -42,7 +42,7 @@ msgstr ""
42#: plugins/check_fping.c:87 plugins/check_game.c:86 plugins/check_hpjd.c:114 42#: plugins/check_fping.c:87 plugins/check_game.c:86 plugins/check_hpjd.c:114
43#: plugins/check_nagios.c:103 plugins/check_procs.c:137 43#: plugins/check_nagios.c:103 plugins/check_procs.c:137
44#: plugins/check_snmp.c:172 plugins/check_swap.c:151 plugins/check_users.c:59 44#: plugins/check_snmp.c:172 plugins/check_swap.c:151 plugins/check_users.c:59
45#: plugins/negate.c:97 plugins/urlize.c:90 45#: plugins/negate.c:97 plugins/urlize.c:88
46#, c-format 46#, c-format
47msgid "Could not open pipe: %s\n" 47msgid "Could not open pipe: %s\n"
48msgstr "" 48msgstr ""
@@ -51,7 +51,7 @@ msgstr ""
51#: plugins/check_fping.c:93 plugins/check_hpjd.c:120 plugins/check_load.c:115 51#: plugins/check_fping.c:93 plugins/check_hpjd.c:120 plugins/check_load.c:115
52#: plugins/check_nagios.c:109 plugins/check_procs.c:143 52#: plugins/check_nagios.c:109 plugins/check_procs.c:143
53#: plugins/check_snmp.c:178 plugins/check_swap.c:157 plugins/check_users.c:65 53#: plugins/check_snmp.c:178 plugins/check_swap.c:157 plugins/check_users.c:65
54#: plugins/negate.c:102 plugins/urlize.c:96 54#: plugins/negate.c:102 plugins/urlize.c:94
55#, c-format 55#, c-format
56msgid "Could not open stderr for %s\n" 56msgid "Could not open stderr for %s\n"
57msgstr "" 57msgstr ""
@@ -61,38 +61,52 @@ msgstr ""
61msgid "SSH WARNING: could not open %s\n" 61msgid "SSH WARNING: could not open %s\n"
62msgstr "" 62msgstr ""
63 63
64#: plugins/check_by_ssh.c:216 plugins/check_http.c:254 64#: plugins/check_by_ssh.c:216 plugins/check_dig.c:217 plugins/check_disk.c:441
65#: plugins/check_dns.c:315 plugins/check_fping.c:245 plugins/check_game.c:201
66#: plugins/check_hpjd.c:336 plugins/check_http.c:254 plugins/check_ldap.c:315
67#: plugins/check_load.c:227 plugins/check_mrtg.c:236
68#: plugins/check_mrtgtraf.c:263 plugins/check_mysql.c:214
69#: plugins/check_nagios.c:222 plugins/check_nt.c:490
70#: plugins/check_nwstat.c:763 plugins/check_overcr.c:327
71#: plugins/check_pgsql.c:212 plugins/check_ping.c:197
72#: plugins/check_procs.c:346 plugins/check_radius.c:221
73#: plugins/check_real.c:354 plugins/check_smtp.c:374 plugins/check_snmp.c:401
74#: plugins/check_ssh.c:113 plugins/check_swap.c:423 plugins/check_tcp.c:465
75#: plugins/check_time.c:219 plugins/check_udp.c:149 plugins/check_ups.c:484
76#: plugins/check_users.c:143 plugins/check_ide_smart.c:209
77#: plugins/negate.c:177 plugins/urlize.c:74
65msgid "Unknown argument" 78msgid "Unknown argument"
66msgstr "" 79msgstr ""
67 80
68#: plugins/check_by_ssh.c:228 plugins/check_dig.c:266 plugins/check_disk.c:308 81#: plugins/check_by_ssh.c:228 plugins/check_dig.c:264 plugins/check_disk.c:308
69#: plugins/check_http.c:266 plugins/check_ldap.c:268 plugins/check_pgsql.c:223 82#: plugins/check_http.c:266 plugins/check_ldap.c:268 plugins/check_pgsql.c:221
70#: plugins/check_procs.c:357 plugins/check_radius.c:198 83#: plugins/check_procs.c:355 plugins/check_radius.c:198
71#: plugins/check_radius.c:270 plugins/check_snmp.c:447 plugins/check_ssh.c:127 84#: plugins/check_radius.c:268 plugins/check_real.c:344
72#: plugins/check_tcp.c:519 plugins/check_time.c:292 plugins/check_udp.c:182 85#: plugins/check_smtp.c:354 plugins/check_snmp.c:445 plugins/check_ssh.c:125
73#: plugins/negate.c:190 86#: plugins/check_tcp.c:517 plugins/check_time.c:290 plugins/check_udp.c:180
87#: plugins/check_ups.c:542 plugins/negate.c:188
74msgid "Timeout interval must be a positive integer" 88msgid "Timeout interval must be a positive integer"
75msgstr "" 89msgstr ""
76 90
77#: plugins/check_by_ssh.c:234 plugins/check_by_ssh.c:293 91#: plugins/check_by_ssh.c:234 plugins/check_by_ssh.c:293
78#: plugins/check_dig.c:231 plugins/check_dig.c:288 plugins/check_dns.c:340 92#: plugins/check_dig.c:229 plugins/check_dig.c:286 plugins/check_dns.c:337
79#: plugins/check_dns.c:349 plugins/check_fping.c:259 plugins/check_hpjd.c:324 93#: plugins/check_dns.c:346 plugins/check_fping.c:257 plugins/check_hpjd.c:323
80#: plugins/check_hpjd.c:349 plugins/check_mysql.c:190 94#: plugins/check_hpjd.c:346 plugins/check_mysql.c:189
81#: plugins/check_mysql.c:230 plugins/check_pgsql.c:241 95#: plugins/check_mysql.c:227 plugins/check_pgsql.c:239
82#: plugins/check_ping.c:270 plugins/check_ping.c:393 96#: plugins/check_ping.c:268 plugins/check_ping.c:391
83#: plugins/check_radius.c:235 plugins/check_real.c:302 97#: plugins/check_radius.c:233 plugins/check_real.c:302
84#: plugins/check_real.c:366 plugins/check_smtp.c:292 plugins/check_smtp.c:386 98#: plugins/check_real.c:364 plugins/check_smtp.c:292 plugins/check_smtp.c:384
85#: plugins/check_ssh.c:146 plugins/check_tcp.c:489 plugins/check_time.c:230 99#: plugins/check_ssh.c:144 plugins/check_tcp.c:487 plugins/check_time.c:228
86#: plugins/check_time.c:305 plugins/check_udp.c:163 plugins/check_udp.c:204 100#: plugins/check_time.c:303 plugins/check_udp.c:161 plugins/check_udp.c:202
87#: plugins/check_ups.c:492 plugins/check_ups.c:561 101#: plugins/check_ups.c:490 plugins/check_ups.c:559
88msgid "Invalid hostname/address" 102msgid "Invalid hostname/address"
89msgstr "" 103msgstr ""
90 104
91#: plugins/check_by_ssh.c:239 plugins/check_dig.c:239 105#: plugins/check_by_ssh.c:239 plugins/check_dig.c:237
92#: plugins/check_pgsql.c:247 plugins/check_radius.c:207 106#: plugins/check_pgsql.c:245 plugins/check_radius.c:207
93#: plugins/check_radius.c:243 plugins/check_real.c:315 107#: plugins/check_radius.c:241 plugins/check_real.c:315
94#: plugins/check_smtp.c:299 plugins/check_tcp.c:525 plugins/check_time.c:286 108#: plugins/check_smtp.c:299 plugins/check_tcp.c:523 plugins/check_time.c:284
95#: plugins/check_udp.c:188 109#: plugins/check_udp.c:186 plugins/check_ups.c:504
96msgid "Port must be a positive integer" 110msgid "Port must be a positive integer"
97msgstr "" 111msgstr ""
98 112
@@ -461,6 +475,11 @@ msgid ""
461" Print version information\n" 475" Print version information\n"
462msgstr "" 476msgstr ""
463 477
478#: plugins/check_dig.c:84 plugins/check_dig.c:86
479#, c-format
480msgid "Looking for: '%s'\n"
481msgstr ""
482
464#: plugins/check_dig.c:130 483#: plugins/check_dig.c:130
465msgid "Server not found in ANSWER SECTION" 484msgid "Server not found in ANSWER SECTION"
466msgstr "" 485msgstr ""
@@ -483,53 +502,36 @@ msgstr ""
483msgid "%.3f seconds response time (%s)" 502msgid "%.3f seconds response time (%s)"
484msgstr "" 503msgstr ""
485 504
486#: plugins/check_dig.c:217 plugins/check_disk.c:441 plugins/check_dns.c:316 505#: plugins/check_dig.c:248
487#: plugins/check_fping.c:245 plugins/check_game.c:202 plugins/check_hpjd.c:337
488#: plugins/check_ldap.c:315 plugins/check_load.c:227 plugins/check_mrtg.c:236
489#: plugins/check_mrtgtraf.c:263 plugins/check_mysql.c:215
490#: plugins/check_overcr.c:335 plugins/check_pgsql.c:212
491#: plugins/check_ping.c:197 plugins/check_procs.c:346
492#: plugins/check_radius.c:221 plugins/check_real.c:354
493#: plugins/check_smtp.c:374 plugins/check_snmp.c:401 plugins/check_ssh.c:113
494#: plugins/check_swap.c:423 plugins/check_tcp.c:465 plugins/check_time.c:219
495#: plugins/check_udp.c:149 plugins/check_ups.c:484 plugins/check_users.c:143
496#: plugins/check_ide_smart.c:209 plugins/negate.c:177 plugins/urlize.c:74
497#, c-format
498msgid ""
499"%s: Unknown argument: %s\n"
500"\n"
501msgstr ""
502
503#: plugins/check_dig.c:250
504msgid "Warning interval must be a positive integer" 506msgid "Warning interval must be a positive integer"
505msgstr "" 507msgstr ""
506 508
507#: plugins/check_dig.c:258 509#: plugins/check_dig.c:256
508msgid "Critical interval must be a positive integer" 510msgid "Critical interval must be a positive integer"
509msgstr "" 511msgstr ""
510 512
511#: plugins/check_dig.c:321 513#: plugins/check_dig.c:319
512#, c-format 514#, c-format
513msgid "" 515msgid ""
514"Test the DNS service on the specified host using dig\n" 516"Test the DNS service on the specified host using dig\n"
515"\n" 517"\n"
516msgstr "" 518msgstr ""
517 519
518#: plugins/check_dig.c:329 520#: plugins/check_dig.c:327
519#, c-format 521#, c-format
520msgid "" 522msgid ""
521" -l, --lookup=STRING\n" 523" -l, --lookup=STRING\n"
522" machine name to lookup\n" 524" machine name to lookup\n"
523msgstr "" 525msgstr ""
524 526
525#: plugins/check_dig.c:333 527#: plugins/check_dig.c:331
526#, c-format 528#, c-format
527msgid "" 529msgid ""
528" -T, --record_type=STRING\n" 530" -T, --record_type=STRING\n"
529" record type to lookup (default: A)\n" 531" record type to lookup (default: A)\n"
530msgstr "" 532msgstr ""
531 533
532#: plugins/check_dig.c:337 534#: plugins/check_dig.c:335
533#, c-format 535#, c-format
534msgid "" 536msgid ""
535" -a, --expected_address=STRING\n" 537" -a, --expected_address=STRING\n"
@@ -550,7 +552,7 @@ msgstr ""
550msgid "%s [%s not found]" 552msgid "%s [%s not found]"
551msgstr "" 553msgstr ""
552 554
553#: plugins/check_disk.c:325 555#: plugins/check_disk.c:325 plugins/check_swap.c:391
554msgid "Warning threshold must be integer or percentage!" 556msgid "Warning threshold must be integer or percentage!"
555msgstr "" 557msgstr ""
556 558
@@ -568,26 +570,31 @@ msgstr ""
568msgid "failed allocating storage for '%s'\n" 570msgid "failed allocating storage for '%s'\n"
569msgstr "" 571msgstr ""
570 572
571#: plugins/check_disk.c:502 573#: plugins/check_disk.c:489
574#, c-format
575msgid " for %s\n"
576msgstr ""
577
578#: plugins/check_disk.c:500
572#, c-format 579#, c-format
573msgid "INPUT ERROR: No thresholds specified" 580msgid "INPUT ERROR: No thresholds specified"
574msgstr "" 581msgstr ""
575 582
576#: plugins/check_disk.c:508 583#: plugins/check_disk.c:506
577#, c-format 584#, c-format
578msgid "" 585msgid ""
579"INPUT ERROR: C_DFP (%f) should be less than W_DFP (%.1f) and both should be " 586"INPUT ERROR: C_DFP (%f) should be less than W_DFP (%.1f) and both should be "
580"between zero and 100 percent, inclusive" 587"between zero and 100 percent, inclusive"
581msgstr "" 588msgstr ""
582 589
583#: plugins/check_disk.c:515 590#: plugins/check_disk.c:513
584#, c-format 591#, c-format
585msgid "" 592msgid ""
586"INPUT ERROR: C_DF (%lu) should be less than W_DF (%lu) and both should be " 593"INPUT ERROR: C_DF (%lu) should be less than W_DF (%lu) and both should be "
587"greater than zero" 594"greater than zero"
588msgstr "" 595msgstr ""
589 596
590#: plugins/check_disk.c:579 597#: plugins/check_disk.c:577
591#, c-format 598#, c-format
592msgid "" 599msgid ""
593"This plugin checks the amount of used disk space on a mounted file system\n" 600"This plugin checks the amount of used disk space on a mounted file system\n"
@@ -596,7 +603,7 @@ msgid ""
596"\n" 603"\n"
597msgstr "" 604msgstr ""
598 605
599#: plugins/check_disk.c:587 606#: plugins/check_disk.c:585
600#, c-format 607#, c-format
601msgid "" 608msgid ""
602" -w, --warning=INTEGER\n" 609" -w, --warning=INTEGER\n"
@@ -611,7 +618,7 @@ msgid ""
611" Clear thresholds\n" 618" Clear thresholds\n"
612msgstr "" 619msgstr ""
613 620
614#: plugins/check_disk.c:599 621#: plugins/check_disk.c:597
615#, c-format 622#, c-format
616msgid "" 623msgid ""
617" -u, --units=STRING\n" 624" -u, --units=STRING\n"
@@ -622,7 +629,7 @@ msgid ""
622" Same as '--units MB'\n" 629" Same as '--units MB'\n"
623msgstr "" 630msgstr ""
624 631
625#: plugins/check_disk.c:607 632#: plugins/check_disk.c:605
626#, c-format 633#, c-format
627msgid "" 634msgid ""
628" -l, --local\n" 635" -l, --local\n"
@@ -639,7 +646,7 @@ msgid ""
639" Display only devices/mountpoints with errors\n" 646" Display only devices/mountpoints with errors\n"
640msgstr "" 647msgstr ""
641 648
642#: plugins/check_disk.c:627 649#: plugins/check_disk.c:625
643msgid "" 650msgid ""
644"Examples:\n" 651"Examples:\n"
645" check_disk -w 10% -c 5% -p /tmp -p /var -C -w 100000 -c 50000 -p /\n" 652" check_disk -w 10% -c 5% -p /tmp -p /var -C -w 100000 -c 50000 -p /\n"
@@ -655,6 +662,10 @@ msgstr ""
655msgid "DNS CRITICAL - '%s' returned empty host name string\n" 662msgid "DNS CRITICAL - '%s' returned empty host name string\n"
656msgstr "" 663msgstr ""
657 664
665#: plugins/check_dns.c:138
666msgid "Non-authoritative answer:"
667msgstr ""
668
658#: plugins/check_dns.c:171 669#: plugins/check_dns.c:171
659msgid "nslookup returned error status" 670msgid "nslookup returned error status"
660msgstr "" 671msgstr ""
@@ -674,7 +685,7 @@ msgstr ""
674msgid "server %s is not authoritative for %s" 685msgid "server %s is not authoritative for %s"
675msgstr "" 686msgstr ""
676 687
677#: plugins/check_dns.c:202 plugins/check_dummy.c:60 plugins/check_http.c:930 688#: plugins/check_dns.c:202 plugins/check_dummy.c:59 plugins/check_http.c:930
678#: plugins/check_http.c:1183 plugins/check_procs.c:279 689#: plugins/check_http.c:1183 plugins/check_procs.c:279
679#, c-format 690#, c-format
680msgid "OK" 691msgid "OK"
@@ -746,20 +757,20 @@ msgstr ""
746msgid "DNS failure for %s\n" 757msgid "DNS failure for %s\n"
747msgstr "" 758msgstr ""
748 759
749#: plugins/check_dns.c:333 plugins/check_dns.c:343 plugins/check_dns.c:352 760#: plugins/check_dns.c:330 plugins/check_dns.c:340 plugins/check_dns.c:349
750#: plugins/check_dns.c:357 plugins/check_dns.c:370 plugins/check_dns.c:381 761#: plugins/check_dns.c:354 plugins/check_dns.c:367 plugins/check_dns.c:378
751#: plugins/check_game.c:219 plugins/check_game.c:227 762#: plugins/check_game.c:216 plugins/check_game.c:224
752msgid "Input buffer overflow\n" 763msgid "Input buffer overflow\n"
753msgstr "" 764msgstr ""
754 765
755#: plugins/check_dns.c:377 766#: plugins/check_dns.c:374
756#, c-format 767#, c-format
757msgid "" 768msgid ""
758"Invalid hostname/address: %s\n" 769"Invalid hostname/address: %s\n"
759"\n" 770"\n"
760msgstr "" 771msgstr ""
761 772
762#: plugins/check_dns.c:409 773#: plugins/check_dns.c:404
763#, c-format 774#, c-format
764msgid "" 775msgid ""
765"This plugin uses the nslookup program to obtain the IP address\n" 776"This plugin uses the nslookup program to obtain the IP address\n"
@@ -769,7 +780,7 @@ msgid ""
769"\n" 780"\n"
770msgstr "" 781msgstr ""
771 782
772#: plugins/check_dns.c:419 783#: plugins/check_dns.c:414
773#, c-format 784#, c-format
774msgid "" 785msgid ""
775"-H, --hostname=HOST\n" 786"-H, --hostname=HOST\n"
@@ -782,31 +793,31 @@ msgid ""
782" Optionally expect the DNS server to be authoritative for the lookup\n" 793" Optionally expect the DNS server to be authoritative for the lookup\n"
783msgstr "" 794msgstr ""
784 795
785#: plugins/check_dummy.c:54 796#: plugins/check_dummy.c:53
786msgid "Arguments to check_dummy must be an integer" 797msgid "Arguments to check_dummy must be an integer"
787msgstr "" 798msgstr ""
788 799
789#: plugins/check_dummy.c:63 plugins/check_http.c:932 plugins/check_procs.c:281 800#: plugins/check_dummy.c:62 plugins/check_http.c:932 plugins/check_procs.c:281
790#, c-format 801#, c-format
791msgid "WARNING" 802msgid "WARNING"
792msgstr "" 803msgstr ""
793 804
794#: plugins/check_dummy.c:66 plugins/check_http.c:934 plugins/check_procs.c:286 805#: plugins/check_dummy.c:65 plugins/check_http.c:934 plugins/check_procs.c:286
795#, c-format 806#, c-format
796msgid "CRITICAL" 807msgid "CRITICAL"
797msgstr "" 808msgstr ""
798 809
799#: plugins/check_dummy.c:69 plugins/check_http.c:928 810#: plugins/check_dummy.c:68 plugins/check_http.c:928
800#, c-format 811#, c-format
801msgid "UNKNOWN" 812msgid "UNKNOWN"
802msgstr "" 813msgstr ""
803 814
804#: plugins/check_dummy.c:72 815#: plugins/check_dummy.c:71
805#, c-format 816#, c-format
806msgid "Status %d is not a supported error state\n" 817msgid "Status %d is not a supported error state\n"
807msgstr "" 818msgstr ""
808 819
809#: plugins/check_dummy.c:94 820#: plugins/check_dummy.c:93
810#, c-format 821#, c-format
811msgid "" 822msgid ""
812"This plugin will simply return the state corresponding to the numeric value\n" 823"This plugin will simply return the state corresponding to the numeric value\n"
@@ -839,31 +850,29 @@ msgstr ""
839msgid "FPING %s - %s (loss=%.0f%% )|%s\n" 850msgid "FPING %s - %s (loss=%.0f%% )|%s\n"
840msgstr "" 851msgstr ""
841 852
842#: plugins/check_fping.c:293 853#: plugins/check_fping.c:291
843msgid "Packet size must be a positive integer" 854msgid "Packet size must be a positive integer"
844msgstr "" 855msgstr ""
845 856
846#: plugins/check_fping.c:299 857#: plugins/check_fping.c:297
847msgid "Packet count must be a positive integer" 858msgid "Packet count must be a positive integer"
848msgstr "" 859msgstr ""
849 860
850#: plugins/check_fping.c:306 861#: plugins/check_fping.c:303 plugins/check_time.c:307 plugins/check_udp.c:207
851msgid "" 862msgid "Hostname was not supplied"
852"Hostname was not supplied\n"
853"\n"
854msgstr "" 863msgstr ""
855 864
856#: plugins/check_fping.c:327 865#: plugins/check_fping.c:323
857#, c-format 866#, c-format
858msgid "%s: Only one threshold may be packet loss (%s)\n" 867msgid "%s: Only one threshold may be packet loss (%s)\n"
859msgstr "" 868msgstr ""
860 869
861#: plugins/check_fping.c:331 870#: plugins/check_fping.c:327
862#, c-format 871#, c-format
863msgid "%s: Only one threshold must be packet loss (%s)\n" 872msgid "%s: Only one threshold must be packet loss (%s)\n"
864msgstr "" 873msgstr ""
865 874
866#: plugins/check_fping.c:364 875#: plugins/check_fping.c:359
867#, c-format 876#, c-format
868msgid "" 877msgid ""
869"This plugin will use the /bin/fping command to ping the specified host\n" 878"This plugin will use the /bin/fping command to ping the specified host\n"
@@ -872,7 +881,7 @@ msgid ""
872"\n" 881"\n"
873msgstr "" 882msgstr ""
874 883
875#: plugins/check_fping.c:373 884#: plugins/check_fping.c:368
876#, c-format 885#, c-format
877msgid "" 886msgid ""
878" -H, --hostname=HOST\n" 887" -H, --hostname=HOST\n"
@@ -888,7 +897,7 @@ msgid ""
888" Number of ICMP packets to send (default: %d)\n" 897" Number of ICMP packets to send (default: %d)\n"
889msgstr "" 898msgstr ""
890 899
891#: plugins/check_fping.c:389 900#: plugins/check_fping.c:384
892#, c-format 901#, c-format
893msgid "" 902msgid ""
894"\n" 903"\n"
@@ -902,12 +911,27 @@ msgstr ""
902msgid "CRITICAL - Host type parameter incorrect!\n" 911msgid "CRITICAL - Host type parameter incorrect!\n"
903msgstr "" 912msgstr ""
904 913
905#: plugins/check_game.c:305 914#: plugins/check_game.c:126
915#, c-format
916msgid "CRITICAL - Host not found\n"
917msgstr ""
918
919#: plugins/check_game.c:130
920#, c-format
921msgid "CRITICAL - Game server down or unavailable\n"
922msgstr ""
923
924#: plugins/check_game.c:134
925#, c-format
926msgid "CRITICAL - Game server timeout\n"
927msgstr ""
928
929#: plugins/check_game.c:300
906#, c-format 930#, c-format
907msgid "This plugin tests game server connections with the specified host." 931msgid "This plugin tests game server connections with the specified host."
908msgstr "" 932msgstr ""
909 933
910#: plugins/check_game.c:311 934#: plugins/check_game.c:306
911#, c-format 935#, c-format
912msgid "" 936msgid ""
913"<game> = Game type that is recognised by qstat (without the leading " 937"<game> = Game type that is recognised by qstat (without the leading "
@@ -919,7 +943,7 @@ msgid ""
919" [ping_field] = Field number in raw qstat output that contains ping time\n" 943" [ping_field] = Field number in raw qstat output that contains ping time\n"
920msgstr "" 944msgstr ""
921 945
922#: plugins/check_game.c:321 946#: plugins/check_game.c:316
923#, c-format 947#, c-format
924msgid "" 948msgid ""
925"\n" 949"\n"
@@ -981,7 +1005,7 @@ msgstr ""
981msgid "Printer ok - (%s)\n" 1005msgid "Printer ok - (%s)\n"
982msgstr "" 1006msgstr ""
983 1007
984#: plugins/check_hpjd.c:381 1008#: plugins/check_hpjd.c:376
985#, c-format 1009#, c-format
986msgid "" 1010msgid ""
987"This plugin tests the STATUS of an HP printer with a JetDirect card.\n" 1011"This plugin tests the STATUS of an HP printer with a JetDirect card.\n"
@@ -989,7 +1013,7 @@ msgid ""
989"\n" 1013"\n"
990msgstr "" 1014msgstr ""
991 1015
992#: plugins/check_hpjd.c:389 1016#: plugins/check_hpjd.c:384
993#, c-format 1017#, c-format
994msgid "" 1018msgid ""
995" -C, --community=STRING\n" 1019" -C, --community=STRING\n"
@@ -1000,7 +1024,7 @@ msgstr ""
1000msgid "HTTP CRITICAL - Could not make SSL connection\n" 1024msgid "HTTP CRITICAL - Could not make SSL connection\n"
1001msgstr "" 1025msgstr ""
1002 1026
1003#: plugins/check_http.c:177 plugins/check_http.c:739 1027#: plugins/check_http.c:177 plugins/check_http.c:739 plugins/check_tcp.c:268
1004#, c-format 1028#, c-format
1005msgid "CRITICAL - Cannot retrieve server certificate.\n" 1029msgid "CRITICAL - Cannot retrieve server certificate.\n"
1006msgstr "" 1030msgstr ""
@@ -1017,7 +1041,7 @@ msgstr ""
1017msgid "Invalid option - SSL is not available" 1041msgid "Invalid option - SSL is not available"
1018msgstr "" 1042msgstr ""
1019 1043
1020#: plugins/check_http.c:309 1044#: plugins/check_http.c:309 plugins/check_tcp.c:576
1021msgid "Invalid certificate expiration period" 1045msgid "Invalid certificate expiration period"
1022msgstr "" 1046msgstr ""
1023 1047
@@ -1039,7 +1063,8 @@ msgstr ""
1039msgid "Could Not Compile Regular Expression: %s" 1063msgid "Could Not Compile Regular Expression: %s"
1040msgstr "" 1064msgstr ""
1041 1065
1042#: plugins/check_http.c:404 plugins/check_smtp.c:364 plugins/check_tcp.c:484 1066#: plugins/check_http.c:404 plugins/check_smtp.c:364 plugins/check_ssh.c:136
1067#: plugins/check_tcp.c:482
1043msgid "IPv6 support not available" 1068msgid "IPv6 support not available"
1044msgstr "" 1069msgstr ""
1045 1070
@@ -1217,12 +1242,13 @@ msgstr ""
1217msgid "CRITICAL - Cannot create SSL context.\n" 1242msgid "CRITICAL - Cannot create SSL context.\n"
1218msgstr "" 1243msgstr ""
1219 1244
1220#: plugins/check_http.c:1214 plugins/check_tcp.c:642 1245#: plugins/check_http.c:1214 plugins/check_tcp.c:640
1221#, c-format 1246#, c-format
1222msgid "CRITICAL - Cannot initiate SSL handshake.\n" 1247msgid "CRITICAL - Cannot initiate SSL handshake.\n"
1223msgstr "" 1248msgstr ""
1224 1249
1225#: plugins/check_http.c:1244 plugins/check_http.c:1256 1250#: plugins/check_http.c:1244 plugins/check_http.c:1256 plugins/check_tcp.c:670
1251#: plugins/check_tcp.c:682
1226#, c-format 1252#, c-format
1227msgid "CRITICAL - Wrong time format in certificate.\n" 1253msgid "CRITICAL - Wrong time format in certificate.\n"
1228msgstr "" 1254msgstr ""
@@ -1386,6 +1412,191 @@ msgid ""
1386"the certificate is expired.\n" 1412"the certificate is expired.\n"
1387msgstr "" 1413msgstr ""
1388 1414
1415#: plugins/check_icmp.c:313
1416#, c-format
1417msgid "Root access needed (for raw sockets)\n"
1418msgstr ""
1419
1420#: plugins/check_icmp.c:319
1421msgid "icmp: unknown protocol"
1422msgstr ""
1423
1424#: plugins/check_icmp.c:325
1425msgid "Can't create raw socket"
1426msgstr ""
1427
1428#: plugins/check_icmp.c:337
1429msgid "Unable to allocate memory for host name list\n"
1430msgstr ""
1431
1432#: plugins/check_icmp.c:362 plugins/check_icmp.c:367 plugins/check_icmp.c:546
1433#: plugins/check_icmp.c:551
1434msgid "Failed to allocate memory for hostname"
1435msgstr ""
1436
1437#: plugins/check_icmp.c:378 plugins/check_icmp.c:385
1438#, c-format
1439msgid "Illegal threshold pair specified for -%c"
1440msgstr ""
1441
1442#: plugins/check_icmp.c:392 plugins/check_icmp.c:399 plugins/check_icmp.c:421
1443#, c-format
1444msgid "Option -%c requires integer argument\n"
1445msgstr ""
1446
1447#: plugins/check_icmp.c:406 plugins/check_icmp.c:414
1448#, c-format
1449msgid "Option -%c requires positive non-zero integer argument\n"
1450msgstr ""
1451
1452#: plugins/check_icmp.c:470
1453#, c-format
1454msgid "Option flag -%c specified, but not recognized\n"
1455msgstr ""
1456
1457#: plugins/check_icmp.c:497
1458#, c-format
1459msgid "%s: these options are too risky for mere mortals.\n"
1460msgstr ""
1461
1462#: plugins/check_icmp.c:498
1463#, c-format
1464msgid "%s: You need i >= %u and r < %u\n"
1465msgstr ""
1466
1467#: plugins/check_icmp.c:500
1468#, c-format
1469msgid "Current settings; i = %d, r = %d\n"
1470msgstr ""
1471
1472#: plugins/check_icmp.c:506
1473#, c-format
1474msgid "%s: data size %u not valid, must be between %u and %u\n"
1475msgstr ""
1476
1477#: plugins/check_icmp.c:513
1478#, c-format
1479msgid "%s: backoff factor %.1f not valid, must be between %.1f and %.1f\n"
1480msgstr ""
1481
1482#: plugins/check_icmp.c:520
1483#, c-format
1484msgid "%s: count %u not valid, must be less than %u\n"
1485msgstr ""
1486
1487#: plugins/check_icmp.c:539
1488#, c-format
1489msgid "Generate flag requires command line parameters beyond switches\n"
1490msgstr ""
1491
1492#: plugins/check_icmp.c:568
1493#, c-format
1494msgid ""
1495"No hosts to work with!\n"
1496"\n"
1497msgstr ""
1498
1499#: plugins/check_icmp.c:574
1500msgid "Can't malloc array of hosts"
1501msgstr ""
1502
1503#: plugins/check_icmp.c:706
1504#, c-format
1505msgid "%s is down (lost 100%%)"
1506msgstr ""
1507
1508#: plugins/check_icmp.c:757
1509#, c-format
1510msgid "No hostaddress specified.\n"
1511msgstr ""
1512
1513#: plugins/check_icmp.c:768
1514#, c-format
1515msgid "OK - All %d hosts are alive\n"
1516msgstr ""
1517
1518#: plugins/check_icmp.c:771
1519#, c-format
1520msgid "CRITICAL - %d of %d hosts are alive\n"
1521msgstr ""
1522
1523#: plugins/check_icmp.c:787
1524msgid "Can't malloc ping packet"
1525msgstr ""
1526
1527#: plugins/check_icmp.c:811
1528#, c-format
1529msgid "%s error while sending ping: %s\n"
1530msgstr ""
1531
1532#: plugins/check_icmp.c:863
1533#, c-format
1534msgid "Received packet too short for ICMP (%d bytes from %s)\n"
1535msgstr ""
1536
1537#: plugins/check_icmp.c:906
1538#, c-format
1539msgid "%s : duplicate for [%d], %d bytes, %s ms"
1540msgstr ""
1541
1542#: plugins/check_icmp.c:916
1543#, c-format
1544msgid "%s : duplicate for [%d], %d bytes, %s ms\n"
1545msgstr ""
1546
1547#: plugins/check_icmp.c:945
1548#, c-format
1549msgid "ICMP Unreachable (Invalid Code) from %s for ICMP Echo sent to %s"
1550msgstr ""
1551
1552#: plugins/check_icmp.c:950 plugins/check_icmp.c:974
1553#, c-format
1554msgid "ICMP Unreachable from %s for ICMP Echo sent to %s"
1555msgstr ""
1556
1557#: plugins/check_icmp.c:1059
1558#, c-format
1559msgid "%s address not found\n"
1560msgstr ""
1561
1562#: plugins/check_icmp.c:1067
1563#, c-format
1564msgid "%s has no address data\n"
1565msgstr ""
1566
1567#: plugins/check_icmp.c:1100
1568msgid "Can't allocate some space for a string"
1569msgstr ""
1570
1571#: plugins/check_icmp.c:1119
1572msgid "Can't allocate HOST_ENTRY"
1573msgstr ""
1574
1575#: plugins/check_icmp.c:1132
1576msgid "Can't allocate resp_times array"
1577msgstr ""
1578
1579#: plugins/check_icmp.c:1196
1580msgid "malloc() failed!"
1581msgstr ""
1582
1583#: plugins/check_icmp.c:1213
1584#, c-format
1585msgid "%s: %s : A network error occurred\n"
1586msgstr ""
1587
1588#: plugins/check_icmp.c:1279
1589msgid "select() in u_sleep:"
1590msgstr ""
1591
1592#: plugins/check_icmp.c:1309
1593msgid "select() in recvfrom_wto"
1594msgstr ""
1595
1596#: plugins/check_icmp.c:1316
1597msgid "recvfrom"
1598msgstr ""
1599
1389#: plugins/check_icmp.c:1371 1600#: plugins/check_icmp.c:1371
1390#, c-format 1601#, c-format
1391msgid "" 1602msgid ""
@@ -1427,6 +1638,26 @@ msgstr ""
1427msgid "Could not set protocol version %d\n" 1638msgid "Could not set protocol version %d\n"
1428msgstr "" 1639msgstr ""
1429 1640
1641#: plugins/check_ldap.c:137
1642#, c-format
1643msgid "Could not init TLS at port %i!\n"
1644msgstr ""
1645
1646#: plugins/check_ldap.c:141
1647#, c-format
1648msgid "TLS not supported by the libraries!\n"
1649msgstr ""
1650
1651#: plugins/check_ldap.c:160
1652#, c-format
1653msgid "Could not init startTLS at port %i!\n"
1654msgstr ""
1655
1656#: plugins/check_ldap.c:164
1657#, c-format
1658msgid "startTLS not supported by the library, needs LDAPv3!\n"
1659msgstr ""
1660
1430#: plugins/check_ldap.c:174 1661#: plugins/check_ldap.c:174
1431#, c-format 1662#, c-format
1432msgid "Could not bind to the ldap-server\n" 1663msgid "Could not bind to the ldap-server\n"
@@ -1442,19 +1673,19 @@ msgstr ""
1442msgid "LDAP %s - %.3f seconds response time|%s\n" 1673msgid "LDAP %s - %.3f seconds response time|%s\n"
1443msgstr "" 1674msgstr ""
1444 1675
1445#: plugins/check_ldap.c:311 plugins/check_ping.c:221 plugins/check_ssh.c:138 1676#: plugins/check_ldap.c:311 plugins/check_ping.c:219
1446msgid "IPv6 support not available\n" 1677msgid "IPv6 support not available\n"
1447msgstr "" 1678msgstr ""
1448 1679
1449#: plugins/check_ldap.c:335 1680#: plugins/check_ldap.c:334
1450msgid "please specify the host name\n" 1681msgid "Please specify the host name\n"
1451msgstr "" 1682msgstr ""
1452 1683
1453#: plugins/check_ldap.c:338 1684#: plugins/check_ldap.c:337
1454msgid "please specify the LDAP base\n" 1685msgid "Please specify the LDAP base\n"
1455msgstr "" 1686msgstr ""
1456 1687
1457#: plugins/check_ldap.c:365 1688#: plugins/check_ldap.c:362
1458#, c-format 1689#, c-format
1459msgid "" 1690msgid ""
1460" -a [--attr]\n" 1691" -a [--attr]\n"
@@ -1467,7 +1698,7 @@ msgid ""
1467" ldap password (if required)\n" 1698" ldap password (if required)\n"
1468msgstr "" 1699msgstr ""
1469 1700
1470#: plugins/check_ldap.c:376 1701#: plugins/check_ldap.c:373
1471#, c-format 1702#, c-format
1472msgid "" 1703msgid ""
1473" -2 [--ver2]\n" 1704" -2 [--ver2]\n"
@@ -1510,56 +1741,56 @@ msgstr ""
1510msgid "Critical threshold must be float or float triplet!\n" 1741msgid "Critical threshold must be float or float triplet!\n"
1511msgstr "" 1742msgstr ""
1512 1743
1513#: plugins/check_load.c:273 1744#: plugins/check_load.c:271
1514msgid "Warning threshold for 1-minute load average is not specified\n" 1745msgid "Warning threshold for 1-minute load average is not specified\n"
1515msgstr "" 1746msgstr ""
1516 1747
1517#: plugins/check_load.c:275 1748#: plugins/check_load.c:273
1518msgid "Warning threshold for 5-minute load average is not specified\n" 1749msgid "Warning threshold for 5-minute load average is not specified\n"
1519msgstr "" 1750msgstr ""
1520 1751
1521#: plugins/check_load.c:277 1752#: plugins/check_load.c:275
1522msgid "Warning threshold for 15-minute load average is not specified\n" 1753msgid "Warning threshold for 15-minute load average is not specified\n"
1523msgstr "" 1754msgstr ""
1524 1755
1525#: plugins/check_load.c:279 1756#: plugins/check_load.c:277
1526msgid "Critical threshold for 1-minute load average is not specified\n" 1757msgid "Critical threshold for 1-minute load average is not specified\n"
1527msgstr "" 1758msgstr ""
1528 1759
1529#: plugins/check_load.c:281 1760#: plugins/check_load.c:279
1530msgid "Critical threshold for 5-minute load average is not specified\n" 1761msgid "Critical threshold for 5-minute load average is not specified\n"
1531msgstr "" 1762msgstr ""
1532 1763
1533#: plugins/check_load.c:283 1764#: plugins/check_load.c:281
1534msgid "Critical threshold for 15-minute load average is not specified\n" 1765msgid "Critical threshold for 15-minute load average is not specified\n"
1535msgstr "" 1766msgstr ""
1536 1767
1537#: plugins/check_load.c:285 1768#: plugins/check_load.c:283
1538msgid "" 1769msgid ""
1539"Parameter inconsistency: 1-minute \"warning load\" greater than \"critical " 1770"Parameter inconsistency: 1-minute \"warning load\" greater than \"critical "
1540"load\".\n" 1771"load\".\n"
1541msgstr "" 1772msgstr ""
1542 1773
1543#: plugins/check_load.c:287 1774#: plugins/check_load.c:285
1544msgid "" 1775msgid ""
1545"Parameter inconsistency: 5-minute \"warning load\" greater than \"critical " 1776"Parameter inconsistency: 5-minute \"warning load\" greater than \"critical "
1546"load\".\n" 1777"load\".\n"
1547msgstr "" 1778msgstr ""
1548 1779
1549#: plugins/check_load.c:289 1780#: plugins/check_load.c:287
1550msgid "" 1781msgid ""
1551"Parameter inconsistency: 15-minute \"warning load\" greater than \"critical " 1782"Parameter inconsistency: 15-minute \"warning load\" greater than \"critical "
1552"load\".\n" 1783"load\".\n"
1553msgstr "" 1784msgstr ""
1554 1785
1555#: plugins/check_load.c:303 1786#: plugins/check_load.c:301
1556#, c-format 1787#, c-format
1557msgid "" 1788msgid ""
1558"This plugin tests the current system load average.\n" 1789"This plugin tests the current system load average.\n"
1559"\n" 1790"\n"
1560msgstr "" 1791msgstr ""
1561 1792
1562#: plugins/check_load.c:309 1793#: plugins/check_load.c:307
1563#, c-format 1794#, c-format
1564msgid "" 1795msgid ""
1565" -w, --warning=WLOAD1,WLOAD5,WLOAD15\n" 1796" -w, --warning=WLOAD1,WLOAD5,WLOAD15\n"
@@ -1603,22 +1834,22 @@ msgstr ""
1603msgid "Invalid variable number" 1834msgid "Invalid variable number"
1604msgstr "" 1835msgstr ""
1605 1836
1606#: plugins/check_mrtg.c:252 1837#: plugins/check_mrtg.c:250
1607#, c-format 1838#, c-format
1608msgid "" 1839msgid ""
1609"%s is not a valid expiration time\n" 1840"%s is not a valid expiration time\n"
1610"Use '%s -h' for additional help\n" 1841"Use '%s -h' for additional help\n"
1611msgstr "" 1842msgstr ""
1612 1843
1613#: plugins/check_mrtg.c:269 1844#: plugins/check_mrtg.c:267
1614msgid "Invalid variable number\n" 1845msgid "Invalid variable number\n"
1615msgstr "" 1846msgstr ""
1616 1847
1617#: plugins/check_mrtg.c:296 1848#: plugins/check_mrtg.c:294
1618msgid "You must supply the variable number" 1849msgid "You must supply the variable number"
1619msgstr "" 1850msgstr ""
1620 1851
1621#: plugins/check_mrtg.c:317 1852#: plugins/check_mrtg.c:315
1622#, c-format 1853#, c-format
1623msgid "" 1854msgid ""
1624"This plugin will check either the average or maximum value of one of the\n" 1855"This plugin will check either the average or maximum value of one of the\n"
@@ -1626,7 +1857,7 @@ msgid ""
1626"\n" 1857"\n"
1627msgstr "" 1858msgstr ""
1628 1859
1629#: plugins/check_mrtg.c:325 1860#: plugins/check_mrtg.c:323
1630#, c-format 1861#, c-format
1631msgid "" 1862msgid ""
1632" -F, --logfile=FILE\n" 1863" -F, --logfile=FILE\n"
@@ -1643,7 +1874,7 @@ msgid ""
1643" Threshold value for data to result in CRITICAL status\n" 1874" Threshold value for data to result in CRITICAL status\n"
1644msgstr "" 1875msgstr ""
1645 1876
1646#: plugins/check_mrtg.c:339 1877#: plugins/check_mrtg.c:337
1647#, c-format 1878#, c-format
1648msgid "" 1879msgid ""
1649" -l, --label=STRING\n" 1880" -l, --label=STRING\n"
@@ -1653,7 +1884,7 @@ msgid ""
1653" \"Bytes Per Second\", \"%% Utilization\")\n" 1884" \"Bytes Per Second\", \"%% Utilization\")\n"
1654msgstr "" 1885msgstr ""
1655 1886
1656#: plugins/check_mrtg.c:346 1887#: plugins/check_mrtg.c:344
1657#, c-format 1888#, c-format
1658msgid "" 1889msgid ""
1659"If the value exceeds the <vwl> threshold, a WARNING status is returned. If\n" 1890"If the value exceeds the <vwl> threshold, a WARNING status is returned. If\n"
@@ -1663,7 +1894,7 @@ msgid ""
1663"\n" 1894"\n"
1664msgstr "" 1895msgstr ""
1665 1896
1666#: plugins/check_mrtg.c:352 1897#: plugins/check_mrtg.c:350
1667#, c-format 1898#, c-format
1668msgid "" 1899msgid ""
1669"This plugin is useful for monitoring MRTG data that does not correspond to\n" 1900"This plugin is useful for monitoring MRTG data that does not correspond to\n"
@@ -1676,7 +1907,7 @@ msgid ""
1676"\n" 1907"\n"
1677msgstr "" 1908msgstr ""
1678 1909
1679#: plugins/check_mrtg.c:359 1910#: plugins/check_mrtg.c:357
1680#, c-format 1911#, c-format
1681msgid "" 1912msgid ""
1682"Notes:\n" 1913"Notes:\n"
@@ -1707,7 +1938,7 @@ msgstr ""
1707msgid "Traffic %s - %s\n" 1938msgid "Traffic %s - %s\n"
1708msgstr "" 1939msgstr ""
1709 1940
1710#: plugins/check_mrtgtraf.c:324 1941#: plugins/check_mrtgtraf.c:320
1711#, c-format 1942#, c-format
1712msgid "" 1943msgid ""
1713"\n" 1944"\n"
@@ -1720,7 +1951,7 @@ msgid ""
1720"\n" 1951"\n"
1721msgstr "" 1952msgstr ""
1722 1953
1723#: plugins/check_mrtgtraf.c:336 1954#: plugins/check_mrtgtraf.c:332
1724#, c-format 1955#, c-format
1725msgid "" 1956msgid ""
1726" -F, --filename=STRING\n" 1957" -F, --filename=STRING\n"
@@ -1735,7 +1966,7 @@ msgid ""
1735" Critical threshold pair \"<incoming>,<outgoing>\"\n" 1966" Critical threshold pair \"<incoming>,<outgoing>\"\n"
1736msgstr "" 1967msgstr ""
1737 1968
1738#: plugins/check_mrtgtraf.c:348 1969#: plugins/check_mrtgtraf.c:344
1739#, c-format 1970#, c-format
1740msgid "" 1971msgid ""
1741"Notes:\n" 1972"Notes:\n"
@@ -1748,12 +1979,32 @@ msgid ""
1748" for future enhancements of this plugin.\n" 1979" for future enhancements of this plugin.\n"
1749msgstr "" 1980msgstr ""
1750 1981
1751#: plugins/check_mysql.c:279 1982#: plugins/check_mysql.c:101
1983#, c-format
1984msgid "slave query error: %s\n"
1985msgstr ""
1986
1987#: plugins/check_mysql.c:107
1988#, c-format
1989msgid "slave store_result error: %s\n"
1990msgstr ""
1991
1992#: plugins/check_mysql.c:114
1993#, c-format
1994msgid "slave fetch row error: %s\n"
1995msgstr ""
1996
1997#: plugins/check_mysql.c:119
1998#, c-format
1999msgid "Slave running: %s"
2000msgstr ""
2001
2002#: plugins/check_mysql.c:274
1752#, c-format 2003#, c-format
1753msgid "This program tests connections to a mysql server\n" 2004msgid "This program tests connections to a mysql server\n"
1754msgstr "" 2005msgstr ""
1755 2006
1756#: plugins/check_mysql.c:287 2007#: plugins/check_mysql.c:282
1757#, c-format 2008#, c-format
1758msgid "" 2009msgid ""
1759" -d, --database=STRING\n" 2010" -d, --database=STRING\n"
@@ -1768,7 +2019,7 @@ msgid ""
1768" Check if the slave thread is running properly.\n" 2019" Check if the slave thread is running properly.\n"
1769msgstr "" 2020msgstr ""
1770 2021
1771#: plugins/check_mysql.c:299 2022#: plugins/check_mysql.c:294
1772#, c-format 2023#, c-format
1773msgid "" 2024msgid ""
1774"\n" 2025"\n"
@@ -1781,6 +2032,11 @@ msgstr ""
1781msgid "CRITICAL - Cannot open status log for reading!\n" 2032msgid "CRITICAL - Cannot open status log for reading!\n"
1782msgstr "" 2033msgstr ""
1783 2034
2035#: plugins/check_nagios.c:98
2036#, c-format
2037msgid "command: %s\n"
2038msgstr ""
2039
1784#: plugins/check_nagios.c:140 2040#: plugins/check_nagios.c:140
1785#, c-format 2041#, c-format
1786msgid "Found process: %s %s\n" 2042msgid "Found process: %s %s\n"
@@ -1796,35 +2052,19 @@ msgstr ""
1796msgid "Nagios %s: located %d process%s, status log updated %d second%s ago\n" 2052msgid "Nagios %s: located %d process%s, status log updated %d second%s ago\n"
1797msgstr "" 2053msgstr ""
1798 2054
1799#: plugins/check_nagios.c:209 plugins/check_nagios.c:243 2055#: plugins/check_nagios.c:209 plugins/check_nagios.c:240
1800#, c-format 2056msgid "Expiration time must be an integer (seconds)\n"
1801msgid ""
1802"Expiration time must be an integer (seconds)\n"
1803"Type '%s -h' for additional help\n"
1804msgstr "" 2057msgstr ""
1805 2058
1806#: plugins/check_nagios.c:223 2059#: plugins/check_nagios.c:251
1807#, c-format 2060msgid "You must provide the status_log\n"
1808msgid ""
1809"%s: Unknown argument: %c\n"
1810"\n"
1811msgstr "" 2061msgstr ""
1812 2062
1813#: plugins/check_nagios.c:255 2063#: plugins/check_nagios.c:254
1814#, c-format 2064msgid "You must provide a process string\n"
1815msgid ""
1816"You must provide the status_log\n"
1817"Type '%s -h' for additional help\n"
1818msgstr ""
1819
1820#: plugins/check_nagios.c:259
1821#, c-format
1822msgid ""
1823"You must provide a process string\n"
1824"Type '%s -h' for additional help\n"
1825msgstr "" 2065msgstr ""
1826 2066
1827#: plugins/check_nagios.c:274 2067#: plugins/check_nagios.c:268
1828#, c-format 2068#, c-format
1829msgid "" 2069msgid ""
1830"This plugin checks the status of the Nagios process on the local\n" 2070"This plugin checks the status of the Nagios process on the local\n"
@@ -1835,7 +2075,7 @@ msgid ""
1835"\n" 2075"\n"
1836msgstr "" 2076msgstr ""
1837 2077
1838#: plugins/check_nagios.c:284 2078#: plugins/check_nagios.c:278
1839#, c-format 2079#, c-format
1840msgid "" 2080msgid ""
1841" -F, --filename=FILE\n" 2081" -F, --filename=FILE\n"
@@ -1846,7 +2086,7 @@ msgid ""
1846" Substring to search for in process arguments\n" 2086" Substring to search for in process arguments\n"
1847msgstr "" 2087msgstr ""
1848 2088
1849#: plugins/check_nagios.c:292 2089#: plugins/check_nagios.c:286
1850#, c-format 2090#, c-format
1851msgid "" 2091msgid ""
1852"Example:\n" 2092"Example:\n"
@@ -1943,19 +2183,19 @@ msgstr ""
1943msgid "Please specify a variable to check" 2183msgid "Please specify a variable to check"
1944msgstr "" 2184msgstr ""
1945 2185
1946#: plugins/check_nt.c:510 plugins/check_nwstat.c:782 2186#: plugins/check_nt.c:508
1947#: plugins/check_overcr.c:352 2187msgid "Server port must be an integer\n"
1948#, c-format
1949msgid ""
1950"Server port an integer (seconds)\n"
1951"Type '%s -h' for additional help\n"
1952msgstr "" 2188msgstr ""
1953 2189
1954#: plugins/check_nt.c:563 2190#: plugins/check_nt.c:561
1955msgid "None" 2191msgid "None"
1956msgstr "" 2192msgstr ""
1957 2193
1958#: plugins/check_nt.c:620 2194#: plugins/check_nt.c:574
2195msgid "could not fetch information from server\n"
2196msgstr ""
2197
2198#: plugins/check_nt.c:618
1959#, c-format 2199#, c-format
1960msgid "" 2200msgid ""
1961"This plugin collects data from the NSClient service running on a\n" 2201"This plugin collects data from the NSClient service running on a\n"
@@ -1963,7 +2203,7 @@ msgid ""
1963"\n" 2203"\n"
1964msgstr "" 2204msgstr ""
1965 2205
1966#: plugins/check_nt.c:625 2206#: plugins/check_nt.c:623
1967#, c-format 2207#, c-format
1968msgid "" 2208msgid ""
1969"\n" 2209"\n"
@@ -1986,21 +2226,21 @@ msgid ""
1986" Print version information\n" 2226" Print version information\n"
1987msgstr "" 2227msgstr ""
1988 2228
1989#: plugins/check_nt.c:643 2229#: plugins/check_nt.c:641
1990#, c-format 2230#, c-format
1991msgid "" 2231msgid ""
1992"-v, --variable=STRING\n" 2232"-v, --variable=STRING\n"
1993" Variable to check. Valid variables are:\n" 2233" Variable to check. Valid variables are:\n"
1994msgstr "" 2234msgstr ""
1995 2235
1996#: plugins/check_nt.c:646 2236#: plugins/check_nt.c:644
1997#, c-format 2237#, c-format
1998msgid "" 2238msgid ""
1999" CLIENTVERSION = Get the NSClient version\n" 2239" CLIENTVERSION = Get the NSClient version\n"
2000" If -l <version> is specified, will return warning if versions differ.\n" 2240" If -l <version> is specified, will return warning if versions differ.\n"
2001msgstr "" 2241msgstr ""
2002 2242
2003#: plugins/check_nt.c:649 2243#: plugins/check_nt.c:647
2004#, c-format 2244#, c-format
2005msgid "" 2245msgid ""
2006" CPULOAD = Average CPU load on last x minutes.\n" 2246" CPULOAD = Average CPU load on last x minutes.\n"
@@ -2012,14 +2252,14 @@ msgid ""
2012" ie: -l 60,90,95,120,90,95\n" 2252" ie: -l 60,90,95,120,90,95\n"
2013msgstr "" 2253msgstr ""
2014 2254
2015#: plugins/check_nt.c:656 2255#: plugins/check_nt.c:654
2016#, c-format 2256#, c-format
2017msgid "" 2257msgid ""
2018" UPTIME = Get the uptime of the machine.\n" 2258" UPTIME = Get the uptime of the machine.\n"
2019" No specific parameters. No warning or critical threshold\n" 2259" No specific parameters. No warning or critical threshold\n"
2020msgstr "" 2260msgstr ""
2021 2261
2022#: plugins/check_nt.c:659 2262#: plugins/check_nt.c:657
2023#, c-format 2263#, c-format
2024msgid "" 2264msgid ""
2025" USEDDISKSPACE = Size and percentage of disk use.\n" 2265" USEDDISKSPACE = Size and percentage of disk use.\n"
@@ -2027,14 +2267,14 @@ msgid ""
2027" Warning and critical thresholds can be specified with -w and -c.\n" 2267" Warning and critical thresholds can be specified with -w and -c.\n"
2028msgstr "" 2268msgstr ""
2029 2269
2030#: plugins/check_nt.c:663 2270#: plugins/check_nt.c:661
2031#, c-format 2271#, c-format
2032msgid "" 2272msgid ""
2033" MEMUSE = Memory use.\n" 2273" MEMUSE = Memory use.\n"
2034" Warning and critical thresholds can be specified with -w and -c.\n" 2274" Warning and critical thresholds can be specified with -w and -c.\n"
2035msgstr "" 2275msgstr ""
2036 2276
2037#: plugins/check_nt.c:666 2277#: plugins/check_nt.c:664
2038#, c-format 2278#, c-format
2039msgid "" 2279msgid ""
2040" SERVICESTATE = Check the state of one or several services.\n" 2280" SERVICESTATE = Check the state of one or several services.\n"
@@ -2044,14 +2284,14 @@ msgid ""
2044"\t\t in the returned string.\n" 2284"\t\t in the returned string.\n"
2045msgstr "" 2285msgstr ""
2046 2286
2047#: plugins/check_nt.c:672 2287#: plugins/check_nt.c:670
2048#, c-format 2288#, c-format
2049msgid "" 2289msgid ""
2050" PROCSTATE = Check if one or several process are running.\n" 2290" PROCSTATE = Check if one or several process are running.\n"
2051" Same syntax as SERVICESTATE.\n" 2291" Same syntax as SERVICESTATE.\n"
2052msgstr "" 2292msgstr ""
2053 2293
2054#: plugins/check_nt.c:675 2294#: plugins/check_nt.c:673
2055#, c-format 2295#, c-format
2056msgid "" 2296msgid ""
2057" COUNTER = Check any performance counter of Windows NT/2000.\n" 2297" COUNTER = Check any performance counter of Windows NT/2000.\n"
@@ -2065,7 +2305,7 @@ msgid ""
2065" \"%%.f %%%% paging file used.\"\n" 2305" \"%%.f %%%% paging file used.\"\n"
2066msgstr "" 2306msgstr ""
2067 2307
2068#: plugins/check_nt.c:685 2308#: plugins/check_nt.c:683
2069#, c-format 2309#, c-format
2070msgid "" 2310msgid ""
2071"Notes:\n" 2311"Notes:\n"
@@ -2252,7 +2492,11 @@ msgstr ""
2252msgid "Nothing to check!\n" 2492msgid "Nothing to check!\n"
2253msgstr "" 2493msgstr ""
2254 2494
2255#: plugins/check_nwstat.c:910 2495#: plugins/check_nwstat.c:780 plugins/check_overcr.c:342
2496msgid "Server port an integer\n"
2497msgstr ""
2498
2499#: plugins/check_nwstat.c:908
2256#, c-format 2500#, c-format
2257msgid "" 2501msgid ""
2258"This plugin attempts to contact the MRTGEXT NLM running on a\n" 2502"This plugin attempts to contact the MRTGEXT NLM running on a\n"
@@ -2260,7 +2504,7 @@ msgid ""
2260"\n" 2504"\n"
2261msgstr "" 2505msgstr ""
2262 2506
2263#: plugins/check_nwstat.c:920 2507#: plugins/check_nwstat.c:918
2264#, c-format 2508#, c-format
2265msgid "" 2509msgid ""
2266" -v, --variable=STRING\n" 2510" -v, --variable=STRING\n"
@@ -2273,7 +2517,7 @@ msgid ""
2273" UPTIME = server uptime\n" 2517" UPTIME = server uptime\n"
2274msgstr "" 2518msgstr ""
2275 2519
2276#: plugins/check_nwstat.c:930 2520#: plugins/check_nwstat.c:928
2277#, c-format 2521#, c-format
2278msgid "" 2522msgid ""
2279" LTCH = percent long term cache hits\n" 2523" LTCH = percent long term cache hits\n"
@@ -2283,7 +2527,7 @@ msgid ""
2283" TCB = dirty cache buffers as a percentage of the original\n" 2527" TCB = dirty cache buffers as a percentage of the original\n"
2284msgstr "" 2528msgstr ""
2285 2529
2286#: plugins/check_nwstat.c:937 2530#: plugins/check_nwstat.c:935
2287#, c-format 2531#, c-format
2288msgid "" 2532msgid ""
2289" OFILES = number of open files\n" 2533" OFILES = number of open files\n"
@@ -2295,7 +2539,7 @@ msgid ""
2295" VKNP<vol> = KB of not yet purgeable space on volume <vol>\n" 2539" VKNP<vol> = KB of not yet purgeable space on volume <vol>\n"
2296msgstr "" 2540msgstr ""
2297 2541
2298#: plugins/check_nwstat.c:946 2542#: plugins/check_nwstat.c:944
2299#, c-format 2543#, c-format
2300msgid "" 2544msgid ""
2301" LRUM = LRU sitting time in minutes\n" 2545" LRUM = LRU sitting time in minutes\n"
@@ -2308,7 +2552,7 @@ msgid ""
2308" SAPENTRIES<n> = number of entries in the SAP table for SAP type <n>\n" 2552" SAPENTRIES<n> = number of entries in the SAP table for SAP type <n>\n"
2309msgstr "" 2553msgstr ""
2310 2554
2311#: plugins/check_nwstat.c:956 2555#: plugins/check_nwstat.c:954
2312#, c-format 2556#, c-format
2313msgid "" 2557msgid ""
2314" TSYNC = timesync status \n" 2558" TSYNC = timesync status \n"
@@ -2318,7 +2562,7 @@ msgid ""
2318" (e.g. \"NLM:TSANDS.NLM\")\n" 2562" (e.g. \"NLM:TSANDS.NLM\")\n"
2319msgstr "" 2563msgstr ""
2320 2564
2321#: plugins/check_nwstat.c:963 2565#: plugins/check_nwstat.c:961
2322#, c-format 2566#, c-format
2323msgid "" 2567msgid ""
2324" -w, --warning=INTEGER\n" 2568" -w, --warning=INTEGER\n"
@@ -2329,7 +2573,7 @@ msgid ""
2329" Include server version string in results\n" 2573" Include server version string in results\n"
2330msgstr "" 2574msgstr ""
2331 2575
2332#: plugins/check_nwstat.c:973 2576#: plugins/check_nwstat.c:971
2333#, c-format 2577#, c-format
2334msgid "" 2578msgid ""
2335"\n" 2579"\n"
@@ -2395,7 +2639,7 @@ msgstr ""
2395msgid "Uptime %s - Up %d days %d hours %d minutes" 2639msgid "Uptime %s - Up %d days %d hours %d minutes"
2396msgstr "" 2640msgstr ""
2397 2641
2398#: plugins/check_overcr.c:418 2642#: plugins/check_overcr.c:406
2399#, c-format 2643#, c-format
2400msgid "" 2644msgid ""
2401"This plugin attempts to contact the Over-CR collector daemon running on the\n" 2645"This plugin attempts to contact the Over-CR collector daemon running on the\n"
@@ -2403,7 +2647,7 @@ msgid ""
2403"\n" 2647"\n"
2404msgstr "" 2648msgstr ""
2405 2649
2406#: plugins/check_overcr.c:428 2650#: plugins/check_overcr.c:416
2407#, c-format 2651#, c-format
2408msgid "" 2652msgid ""
2409"-v, --variable=STRING\n" 2653"-v, --variable=STRING\n"
@@ -2417,7 +2661,7 @@ msgid ""
2417" UPTIME = system uptime in seconds\n" 2661" UPTIME = system uptime in seconds\n"
2418msgstr "" 2662msgstr ""
2419 2663
2420#: plugins/check_overcr.c:439 2664#: plugins/check_overcr.c:427
2421#, c-format 2665#, c-format
2422msgid "" 2666msgid ""
2423" -w, --warning=INTEGER\n" 2667" -w, --warning=INTEGER\n"
@@ -2426,7 +2670,7 @@ msgid ""
2426" Threshold which will result in a critical status\n" 2670" Threshold which will result in a critical status\n"
2427msgstr "" 2671msgstr ""
2428 2672
2429#: plugins/check_overcr.c:447 2673#: plugins/check_overcr.c:435
2430#, c-format 2674#, c-format
2431msgid "" 2675msgid ""
2432"Notes:\n" 2676"Notes:\n"
@@ -2435,7 +2679,7 @@ msgid ""
2435"\n" 2679"\n"
2436msgstr "" 2680msgstr ""
2437 2681
2438#: plugins/check_overcr.c:452 2682#: plugins/check_overcr.c:440
2439#, c-format 2683#, c-format
2440msgid "" 2684msgid ""
2441" - This plugin requres that Eric Molitors' Over-CR collector daemon be\n" 2685" - This plugin requres that Eric Molitors' Over-CR collector daemon be\n"
@@ -2455,27 +2699,33 @@ msgstr ""
2455msgid " %s - database %s (%d sec.)|%s\n" 2699msgid " %s - database %s (%d sec.)|%s\n"
2456msgstr "" 2700msgstr ""
2457 2701
2458#: plugins/check_pgsql.c:229 plugins/check_pgsql.c:235 plugins/check_tcp.c:494 2702#: plugins/check_pgsql.c:227 plugins/check_tcp.c:492 plugins/check_time.c:265
2459#: plugins/check_time.c:267 plugins/check_time.c:279 plugins/check_udp.c:168 2703#: plugins/check_time.c:277 plugins/check_udp.c:166 plugins/check_users.c:152
2460msgid "Critical threshold must be a positive integer" 2704msgid "Critical threshold must be a positive integer"
2461msgstr "" 2705msgstr ""
2462 2706
2463#: plugins/check_pgsql.c:253 2707#: plugins/check_pgsql.c:233 plugins/check_tcp.c:502 plugins/check_time.c:246
2708#: plugins/check_time.c:270 plugins/check_udp.c:173 plugins/check_users.c:158
2709#: plugins/check_users.c:168 plugins/check_users.c:175
2710msgid "Warning threshold must be a positive integer"
2711msgstr ""
2712
2713#: plugins/check_pgsql.c:251
2464msgid "Database name is not valid" 2714msgid "Database name is not valid"
2465msgstr "" 2715msgstr ""
2466 2716
2467#: plugins/check_pgsql.c:259 2717#: plugins/check_pgsql.c:257
2468msgid "User name is not valid" 2718msgid "User name is not valid"
2469msgstr "" 2719msgstr ""
2470 2720
2471#: plugins/check_pgsql.c:396 2721#: plugins/check_pgsql.c:394
2472#, c-format 2722#, c-format
2473msgid "" 2723msgid ""
2474"Test whether a PostgreSQL Database is accepting connections.\n" 2724"Test whether a PostgreSQL Database is accepting connections.\n"
2475"\n" 2725"\n"
2476msgstr "" 2726msgstr ""
2477 2727
2478#: plugins/check_pgsql.c:406 2728#: plugins/check_pgsql.c:404
2479#, c-format 2729#, c-format
2480msgid "" 2730msgid ""
2481" -d, --database=STRING\n" 2731" -d, --database=STRING\n"
@@ -2486,7 +2736,7 @@ msgid ""
2486" Password (BIG SECURITY ISSUE)\n" 2736" Password (BIG SECURITY ISSUE)\n"
2487msgstr "" 2737msgstr ""
2488 2738
2489#: plugins/check_pgsql.c:420 2739#: plugins/check_pgsql.c:418
2490#, c-format 2740#, c-format
2491msgid "" 2741msgid ""
2492"\n" 2742"\n"
@@ -2499,7 +2749,7 @@ msgid ""
2499"PostgreSQL DBMS.\n" 2749"PostgreSQL DBMS.\n"
2500msgstr "" 2750msgstr ""
2501 2751
2502#: plugins/check_pgsql.c:427 2752#: plugins/check_pgsql.c:425
2503#, c-format 2753#, c-format
2504msgid "" 2754msgid ""
2505"\n" 2755"\n"
@@ -2508,7 +2758,7 @@ msgid ""
2508"connections (start the postmaster with the -i option).\n" 2758"connections (start the postmaster with the -i option).\n"
2509msgstr "" 2759msgstr ""
2510 2760
2511#: plugins/check_pgsql.c:431 2761#: plugins/check_pgsql.c:429
2512#, c-format 2762#, c-format
2513msgid "" 2763msgid ""
2514"\n" 2764"\n"
@@ -2532,114 +2782,114 @@ msgstr ""
2532msgid "PING %s - %sPacket loss = %d%%, RTA = %2.2f ms" 2782msgid "PING %s - %sPacket loss = %d%%, RTA = %2.2f ms"
2533msgstr "" 2783msgstr ""
2534 2784
2535#: plugins/check_ping.c:232 2785#: plugins/check_ping.c:230
2536msgid "Could not realloc() addresses\n" 2786msgid "Could not realloc() addresses\n"
2537msgstr "" 2787msgstr ""
2538 2788
2539#: plugins/check_ping.c:247 plugins/check_ping.c:327 2789#: plugins/check_ping.c:245 plugins/check_ping.c:325
2540#, c-format 2790#, c-format
2541msgid "<max_packets> (%s) must be a non-negative number\n" 2791msgid "<max_packets> (%s) must be a non-negative number\n"
2542msgstr "" 2792msgstr ""
2543 2793
2544#: plugins/check_ping.c:281 2794#: plugins/check_ping.c:279
2545#, c-format 2795#, c-format
2546msgid "<wpl> (%s) must be an integer percentage\n" 2796msgid "<wpl> (%s) must be an integer percentage\n"
2547msgstr "" 2797msgstr ""
2548 2798
2549#: plugins/check_ping.c:292 2799#: plugins/check_ping.c:290
2550#, c-format 2800#, c-format
2551msgid "<cpl> (%s) must be an integer percentage\n" 2801msgid "<cpl> (%s) must be an integer percentage\n"
2552msgstr "" 2802msgstr ""
2553 2803
2554#: plugins/check_ping.c:303 2804#: plugins/check_ping.c:301
2555#, c-format 2805#, c-format
2556msgid "<wrta> (%s) must be a non-negative number\n" 2806msgid "<wrta> (%s) must be a non-negative number\n"
2557msgstr "" 2807msgstr ""
2558 2808
2559#: plugins/check_ping.c:314 2809#: plugins/check_ping.c:312
2560#, c-format 2810#, c-format
2561msgid "<crta> (%s) must be a non-negative number\n" 2811msgid "<crta> (%s) must be a non-negative number\n"
2562msgstr "" 2812msgstr ""
2563 2813
2564#: plugins/check_ping.c:347 2814#: plugins/check_ping.c:345
2565#, c-format 2815#, c-format
2566msgid "" 2816msgid ""
2567"%s: Warning threshold must be integer or percentage!\n" 2817"%s: Warning threshold must be integer or percentage!\n"
2568"\n" 2818"\n"
2569msgstr "" 2819msgstr ""
2570 2820
2571#: plugins/check_ping.c:360 2821#: plugins/check_ping.c:358
2572#, c-format 2822#, c-format
2573msgid "<wrta> was not set\n" 2823msgid "<wrta> was not set\n"
2574msgstr "" 2824msgstr ""
2575 2825
2576#: plugins/check_ping.c:364 2826#: plugins/check_ping.c:362
2577#, c-format 2827#, c-format
2578msgid "<crta> was not set\n" 2828msgid "<crta> was not set\n"
2579msgstr "" 2829msgstr ""
2580 2830
2581#: plugins/check_ping.c:368 2831#: plugins/check_ping.c:366
2582#, c-format 2832#, c-format
2583msgid "<wpl> was not set\n" 2833msgid "<wpl> was not set\n"
2584msgstr "" 2834msgstr ""
2585 2835
2586#: plugins/check_ping.c:372 2836#: plugins/check_ping.c:370
2587#, c-format 2837#, c-format
2588msgid "<cpl> was not set\n" 2838msgid "<cpl> was not set\n"
2589msgstr "" 2839msgstr ""
2590 2840
2591#: plugins/check_ping.c:376 2841#: plugins/check_ping.c:374
2592#, c-format 2842#, c-format
2593msgid "<wrta> (%f) cannot be larger than <crta> (%f)\n" 2843msgid "<wrta> (%f) cannot be larger than <crta> (%f)\n"
2594msgstr "" 2844msgstr ""
2595 2845
2596#: plugins/check_ping.c:380 2846#: plugins/check_ping.c:378
2597#, c-format 2847#, c-format
2598msgid "<wpl> (%d) cannot be larger than <cpl> (%d)\n" 2848msgid "<wpl> (%d) cannot be larger than <cpl> (%d)\n"
2599msgstr "" 2849msgstr ""
2600 2850
2601#: plugins/check_ping.c:408 2851#: plugins/check_ping.c:406
2602#, c-format 2852#, c-format
2603msgid "Cannot open pipe: %s" 2853msgid "Cannot open pipe: %s"
2604msgstr "" 2854msgstr ""
2605 2855
2606#: plugins/check_ping.c:412 2856#: plugins/check_ping.c:410
2607#, c-format 2857#, c-format
2608msgid "Cannot open stderr for %s\n" 2858msgid "Cannot open stderr for %s\n"
2609msgstr "" 2859msgstr ""
2610 2860
2611#: plugins/check_ping.c:467 2861#: plugins/check_ping.c:465
2612#, c-format 2862#, c-format
2613msgid "CRITICAL - Network unreachable (%s)" 2863msgid "CRITICAL - Network unreachable (%s)"
2614msgstr "" 2864msgstr ""
2615 2865
2616#: plugins/check_ping.c:469 2866#: plugins/check_ping.c:467
2617#, c-format 2867#, c-format
2618msgid "CRITICAL - Host Unreachable (%s)" 2868msgid "CRITICAL - Host Unreachable (%s)"
2619msgstr "" 2869msgstr ""
2620 2870
2621#: plugins/check_ping.c:471 2871#: plugins/check_ping.c:469
2622#, c-format 2872#, c-format
2623msgid "CRITICAL - Host not found (%s)" 2873msgid "CRITICAL - Host not found (%s)"
2624msgstr "" 2874msgstr ""
2625 2875
2626#: plugins/check_ping.c:473 2876#: plugins/check_ping.c:471
2627#, c-format 2877#, c-format
2628msgid "CRITICAL - Time to live exceeded (%s)" 2878msgid "CRITICAL - Time to live exceeded (%s)"
2629msgstr "" 2879msgstr ""
2630 2880
2631#: plugins/check_ping.c:480 2881#: plugins/check_ping.c:478
2632msgid "Unable to realloc warn_text" 2882msgid "Unable to realloc warn_text"
2633msgstr "" 2883msgstr ""
2634 2884
2635#: plugins/check_ping.c:497 2885#: plugins/check_ping.c:495
2636#, c-format 2886#, c-format
2637msgid "" 2887msgid ""
2638"Use ping to check connection statistics for a remote host.\n" 2888"Use ping to check connection statistics for a remote host.\n"
2639"\n" 2889"\n"
2640msgstr "" 2890msgstr ""
2641 2891
2642#: plugins/check_ping.c:505 2892#: plugins/check_ping.c:503
2643#, c-format 2893#, c-format
2644msgid "" 2894msgid ""
2645"-H, --hostname=HOST\n" 2895"-H, --hostname=HOST\n"
@@ -2654,7 +2904,7 @@ msgid ""
2654" show HTML in the plugin output (obsoleted by urlize)\n" 2904" show HTML in the plugin output (obsoleted by urlize)\n"
2655msgstr "" 2905msgstr ""
2656 2906
2657#: plugins/check_ping.c:520 2907#: plugins/check_ping.c:518
2658#, c-format 2908#, c-format
2659msgid "" 2909msgid ""
2660"THRESHOLD is <rta>,<pl>%% where <rta> is the round trip average travel\n" 2910"THRESHOLD is <rta>,<pl>%% where <rta> is the round trip average travel\n"
@@ -2663,7 +2913,7 @@ msgid ""
2663"\n" 2913"\n"
2664msgstr "" 2914msgstr ""
2665 2915
2666#: plugins/check_ping.c:525 2916#: plugins/check_ping.c:523
2667#, c-format 2917#, c-format
2668msgid "" 2918msgid ""
2669"This plugin uses the ping command to probe the specified host for packet " 2919"This plugin uses the ping command to probe the specified host for packet "
@@ -2728,109 +2978,90 @@ msgstr[1] ""
2728msgid " with %s" 2978msgid " with %s"
2729msgstr "" 2979msgstr ""
2730 2980
2731#: plugins/check_procs.c:371 2981#: plugins/check_procs.c:369
2732msgid "" 2982msgid "Critical Process Count must be an integer!"
2733"Critical Process Count must be an integer!\n"
2734"\n"
2735msgstr "" 2983msgstr ""
2736 2984
2737#: plugins/check_procs.c:383 2985#: plugins/check_procs.c:381
2738msgid "" 2986msgid "Warning Process Count must be an integer!"
2739"Warning Process Count must be an integer!\n"
2740"\n"
2741msgstr "" 2987msgstr ""
2742 2988
2743#: plugins/check_procs.c:391 2989#: plugins/check_procs.c:389
2744#, c-format 2990msgid "Parent Process ID must be an integer!"
2745msgid ""
2746"%s: Parent Process ID must be an integer!\n"
2747"\n"
2748msgstr "" 2991msgstr ""
2749 2992
2750#: plugins/check_procs.c:397 plugins/check_procs.c:502 2993#: plugins/check_procs.c:395 plugins/check_procs.c:497
2751#, c-format 2994#, c-format
2752msgid "%s%sSTATE = %s" 2995msgid "%s%sSTATE = %s"
2753msgstr "" 2996msgstr ""
2754 2997
2755#: plugins/check_procs.c:406 2998#: plugins/check_procs.c:404
2756#, c-format 2999#, c-format
2757msgid "UID %s was not found\n" 3000msgid "UID %s was not found"
2758msgstr "" 3001msgstr ""
2759 3002
2760#: plugins/check_procs.c:412 3003#: plugins/check_procs.c:410
2761#, c-format 3004#, c-format
2762msgid "User name %s was not found\n" 3005msgid "User name %s was not found"
2763msgstr "" 3006msgstr ""
2764 3007
2765#: plugins/check_procs.c:417 3008#: plugins/check_procs.c:415
2766#, c-format 3009#, c-format
2767msgid "%s%sUID = %d (%s)" 3010msgid "%s%sUID = %d (%s)"
2768msgstr "" 3011msgstr ""
2769 3012
2770#: plugins/check_procs.c:427 3013#: plugins/check_procs.c:425
2771#, c-format 3014#, c-format
2772msgid "%s%scommand name '%s'" 3015msgid "%s%scommand name '%s'"
2773msgstr "" 3016msgstr ""
2774 3017
2775#: plugins/check_procs.c:437 3018#: plugins/check_procs.c:435
2776#, c-format 3019#, c-format
2777msgid "%s%sargs '%s'" 3020msgid "%s%sargs '%s'"
2778msgstr "" 3021msgstr ""
2779 3022
2780#: plugins/check_procs.c:442 3023#: plugins/check_procs.c:440
2781#, c-format 3024#, c-format
2782msgid "%s%sRSS >= %d" 3025msgid "%s%sRSS >= %d"
2783msgstr "" 3026msgstr ""
2784 3027
2785#: plugins/check_procs.c:446 3028#: plugins/check_procs.c:444
2786#, c-format 3029msgid "RSS must be an integer!"
2787msgid ""
2788"%s: RSS must be an integer!\n"
2789"\n"
2790msgstr "" 3030msgstr ""
2791 3031
2792#: plugins/check_procs.c:449 3032#: plugins/check_procs.c:447
2793#, c-format 3033#, c-format
2794msgid "%s%sVSZ >= %d" 3034msgid "%s%sVSZ >= %d"
2795msgstr "" 3035msgstr ""
2796 3036
2797#: plugins/check_procs.c:453 3037#: plugins/check_procs.c:451
2798#, c-format 3038msgid "VSZ must be an integer!"
2799msgid ""
2800"%s: VSZ must be an integer!\n"
2801"\n"
2802msgstr "" 3039msgstr ""
2803 3040
2804#: plugins/check_procs.c:457 3041#: plugins/check_procs.c:455
2805#, c-format 3042#, c-format
2806msgid "%s%sPCPU >= %.2f" 3043msgid "%s%sPCPU >= %.2f"
2807msgstr "" 3044msgstr ""
2808 3045
2809#: plugins/check_procs.c:461 3046#: plugins/check_procs.c:459
2810#, c-format 3047msgid "PCPU must be a float!"
2811msgid ""
2812"%s: PCPU must be a float!\n"
2813"\n"
2814msgstr "" 3048msgstr ""
2815 3049
2816#: plugins/check_procs.c:485 3050#: plugins/check_procs.c:483
2817#, c-format 3051msgid "Metric must be one of PROCS, VSZ, RSS, CPU, ELAPSED!"
2818msgid ""
2819"%s: metric must be one of PROCS, VSZ, RSS, CPU, ELAPSED!\n"
2820"\n"
2821msgstr "" 3052msgstr ""
2822 3053
2823#: plugins/check_procs.c:521 3054#: plugins/check_procs.c:516
2824#, c-format 3055#, c-format
2825msgid "wmax (%d) cannot be greater than cmax (%d)\n" 3056msgid "wmax (%d) cannot be greater than cmax (%d)\n"
2826msgstr "" 3057msgstr ""
2827 3058
2828#: plugins/check_procs.c:525 3059#: plugins/check_procs.c:520
2829#, c-format 3060#, c-format
2830msgid "wmin (%d) cannot be less than cmin (%d)\n" 3061msgid "wmin (%d) cannot be less than cmin (%d)\n"
2831msgstr "" 3062msgstr ""
2832 3063
2833#: plugins/check_procs.c:665 3064#: plugins/check_procs.c:657
2834#, c-format 3065#, c-format
2835msgid "" 3066msgid ""
2836"Checks all processes and generates WARNING or CRITICAL states if the " 3067"Checks all processes and generates WARNING or CRITICAL states if the "
@@ -2842,7 +3073,7 @@ msgid ""
2842"\n" 3073"\n"
2843msgstr "" 3074msgstr ""
2844 3075
2845#: plugins/check_procs.c:672 3076#: plugins/check_procs.c:664
2846#, c-format 3077#, c-format
2847msgid "" 3078msgid ""
2848"\n" 3079"\n"
@@ -2853,7 +3084,7 @@ msgid ""
2853" Generate critical state if metric is outside this range\n" 3084" Generate critical state if metric is outside this range\n"
2854msgstr "" 3085msgstr ""
2855 3086
2856#: plugins/check_procs.c:679 3087#: plugins/check_procs.c:671
2857#, c-format 3088#, c-format
2858msgid "" 3089msgid ""
2859"\n" 3090"\n"
@@ -2866,19 +3097,19 @@ msgid ""
2866" CPU - percentage cpu\n" 3097" CPU - percentage cpu\n"
2867msgstr "" 3098msgstr ""
2868 3099
2869#: plugins/check_procs.c:689 3100#: plugins/check_procs.c:681
2870#, c-format 3101#, c-format
2871msgid " ELAPSED - time elapsed in seconds\n" 3102msgid " ELAPSED - time elapsed in seconds\n"
2872msgstr "" 3103msgstr ""
2873 3104
2874#: plugins/check_procs.c:694 3105#: plugins/check_procs.c:686
2875#, c-format 3106#, c-format
2876msgid "" 3107msgid ""
2877" -v, --verbose\n" 3108" -v, --verbose\n"
2878" Extra information. Up to 3 verbosity levels\n" 3109" Extra information. Up to 3 verbosity levels\n"
2879msgstr "" 3110msgstr ""
2880 3111
2881#: plugins/check_procs.c:698 3112#: plugins/check_procs.c:690
2882#, c-format 3113#, c-format
2883msgid "" 3114msgid ""
2884"\n" 3115"\n"
@@ -2895,7 +3126,7 @@ msgid ""
2895" Only scan for processes with rss higher than indicated.\n" 3126" Only scan for processes with rss higher than indicated.\n"
2896msgstr "" 3127msgstr ""
2897 3128
2898#: plugins/check_procs.c:711 3129#: plugins/check_procs.c:703
2899#, c-format 3130#, c-format
2900msgid "" 3131msgid ""
2901" -P, --pcpu=PCPU\n" 3132" -P, --pcpu=PCPU\n"
@@ -2908,7 +3139,7 @@ msgid ""
2908" Only scan for exact matches of COMMAND (without path).\n" 3139" Only scan for exact matches of COMMAND (without path).\n"
2909msgstr "" 3140msgstr ""
2910 3141
2911#: plugins/check_procs.c:721 3142#: plugins/check_procs.c:713
2912#, c-format 3143#, c-format
2913msgid "" 3144msgid ""
2914"\n" 3145"\n"
@@ -2918,7 +3149,7 @@ msgid ""
2918"\n" 3149"\n"
2919msgstr "" 3150msgstr ""
2920 3151
2921#: plugins/check_procs.c:726 3152#: plugins/check_procs.c:718
2922#, c-format 3153#, c-format
2923msgid "" 3154msgid ""
2924"This plugin checks the number of currently running processes and\n" 3155"This plugin checks the number of currently running processes and\n"
@@ -2929,7 +3160,7 @@ msgid ""
2929"\n" 3160"\n"
2930msgstr "" 3161msgstr ""
2931 3162
2932#: plugins/check_procs.c:733 3163#: plugins/check_procs.c:725
2933#, c-format 3164#, c-format
2934msgid "" 3165msgid ""
2935"Examples:\n" 3166"Examples:\n"
@@ -2972,18 +3203,18 @@ msgstr ""
2972msgid "Auth OK" 3203msgid "Auth OK"
2973msgstr "" 3204msgstr ""
2974 3205
2975#: plugins/check_radius.c:202 plugins/check_radius.c:264 3206#: plugins/check_radius.c:202 plugins/check_radius.c:262
2976msgid "Number of retries must be a positive integer" 3207msgid "Number of retries must be a positive integer"
2977msgstr "" 3208msgstr ""
2978 3209
2979#: plugins/check_radius.c:290 3210#: plugins/check_radius.c:288
2980#, c-format 3211#, c-format
2981msgid "" 3212msgid ""
2982"Tests to see if a radius server is accepting connections.\n" 3213"Tests to see if a radius server is accepting connections.\n"
2983"\n" 3214"\n"
2984msgstr "" 3215msgstr ""
2985 3216
2986#: plugins/check_radius.c:298 3217#: plugins/check_radius.c:296
2987#, c-format 3218#, c-format
2988msgid "" 3219msgid ""
2989" -u, --username=STRING\n" 3220" -u, --username=STRING\n"
@@ -3000,7 +3231,7 @@ msgid ""
3000" Number of times to retry a failed connection\n" 3231" Number of times to retry a failed connection\n"
3001msgstr "" 3232msgstr ""
3002 3233
3003#: plugins/check_radius.c:314 3234#: plugins/check_radius.c:312
3004#, c-format 3235#, c-format
3005msgid "" 3236msgid ""
3006"\n" 3237"\n"
@@ -3012,7 +3243,7 @@ msgid ""
3012"\n" 3243"\n"
3013msgstr "" 3244msgstr ""
3014 3245
3015#: plugins/check_radius.c:321 3246#: plugins/check_radius.c:319
3016#, c-format 3247#, c-format
3017msgid "" 3248msgid ""
3018"The password option presents a substantial security issue because the\n" 3249"The password option presents a substantial security issue because the\n"
@@ -3053,30 +3284,26 @@ msgstr ""
3053msgid "REAL %s - %d second response time\n" 3284msgid "REAL %s - %d second response time\n"
3054msgstr "" 3285msgstr ""
3055 3286
3056#: plugins/check_real.c:324 plugins/check_smtp.c:343 3287#: plugins/check_real.c:324 plugins/check_smtp.c:343 plugins/check_ups.c:522
3057msgid "Warning time must be a positive integer" 3288msgid "Warning time must be a positive integer"
3058msgstr "" 3289msgstr ""
3059 3290
3060#: plugins/check_real.c:333 3291#: plugins/check_real.c:333 plugins/check_smtp.c:334 plugins/check_ups.c:513
3061msgid "Critical time must be a nonnegative integer" 3292msgid "Critical time must be a positive integer"
3062msgstr ""
3063
3064#: plugins/check_real.c:344
3065msgid "Time interval must be a nonnegative integer"
3066msgstr "" 3293msgstr ""
3067 3294
3068#: plugins/check_real.c:371 3295#: plugins/check_real.c:369
3069msgid "You must provide a server to check\n" 3296msgid "You must provide a server to check"
3070msgstr "" 3297msgstr ""
3071 3298
3072#: plugins/check_real.c:403 3299#: plugins/check_real.c:401
3073#, c-format 3300#, c-format
3074msgid "" 3301msgid ""
3075"This plugin tests the REAL service on the specified host.\n" 3302"This plugin tests the REAL service on the specified host.\n"
3076"\n" 3303"\n"
3077msgstr "" 3304msgstr ""
3078 3305
3079#: plugins/check_real.c:411 3306#: plugins/check_real.c:409
3080#, c-format 3307#, c-format
3081msgid "" 3308msgid ""
3082" -u, --url=STRING\n" 3309" -u, --url=STRING\n"
@@ -3085,7 +3312,7 @@ msgid ""
3085" String to expect in first line of server response (default: %s)\n" 3312" String to expect in first line of server response (default: %s)\n"
3086msgstr "" 3313msgstr ""
3087 3314
3088#: plugins/check_real.c:424 3315#: plugins/check_real.c:422
3089#, c-format 3316#, c-format
3090msgid "" 3317msgid ""
3091"This plugin will attempt to open an RTSP connection with the host.\n" 3318"This plugin will attempt to open an RTSP connection with the host.\n"
@@ -3110,7 +3337,7 @@ msgstr ""
3110msgid "Invalid SMTP response received from host on port %d\n" 3337msgid "Invalid SMTP response received from host on port %d\n"
3111msgstr "" 3338msgstr ""
3112 3339
3113#: plugins/check_smtp.c:182 plugins/check_snmp.c:510 3340#: plugins/check_smtp.c:182 plugins/check_snmp.c:508
3114#, c-format 3341#, c-format
3115msgid "Could Not Compile Regular Expression" 3342msgid "Could Not Compile Regular Expression"
3116msgstr "" 3343msgstr ""
@@ -3130,27 +3357,19 @@ msgstr ""
3130msgid "SMTP %s - %.3f sec. response time%s%s|%s\n" 3357msgid "SMTP %s - %.3f sec. response time%s%s|%s\n"
3131msgstr "" 3358msgstr ""
3132 3359
3133#: plugins/check_smtp.c:313 plugins/check_smtp.c:323 plugins/check_snmp.c:566 3360#: plugins/check_smtp.c:313 plugins/check_smtp.c:323 plugins/check_snmp.c:564
3134#, c-format 3361#, c-format
3135msgid "Could not realloc() units [%d]\n" 3362msgid "Could not realloc() units [%d]\n"
3136msgstr "" 3363msgstr ""
3137 3364
3138#: plugins/check_smtp.c:334 3365#: plugins/check_smtp.c:424
3139msgid "Critical time must be a positive integer"
3140msgstr ""
3141
3142#: plugins/check_smtp.c:354
3143msgid "Time interval must be a positive integer"
3144msgstr ""
3145
3146#: plugins/check_smtp.c:426
3147#, c-format 3366#, c-format
3148msgid "" 3367msgid ""
3149"This plugin will attempt to open an SMTP connection with the host.\n" 3368"This plugin will attempt to open an SMTP connection with the host.\n"
3150"\n" 3369"\n"
3151msgstr "" 3370msgstr ""
3152 3371
3153#: plugins/check_smtp.c:436 3372#: plugins/check_smtp.c:434
3154#, c-format 3373#, c-format
3155msgid "" 3374msgid ""
3156" -e, --expect=STRING\n" 3375" -e, --expect=STRING\n"
@@ -3165,7 +3384,7 @@ msgid ""
3165" FROM-address to include in MAIL command, required by Exchange 2000\n" 3384" FROM-address to include in MAIL command, required by Exchange 2000\n"
3166msgstr "" 3385msgstr ""
3167 3386
3168#: plugins/check_smtp.c:455 3387#: plugins/check_smtp.c:453
3169#, c-format 3388#, c-format
3170msgid "" 3389msgid ""
3171"\n" 3390"\n"
@@ -3175,7 +3394,11 @@ msgid ""
3175"STATE_WARNING return values.\n" 3394"STATE_WARNING return values.\n"
3176msgstr "" 3395msgstr ""
3177 3396
3178#: plugins/check_snmp.c:284 plugins/check_snmp.c:516 3397#: plugins/check_snmp.c:254
3398msgid "No valid data returned"
3399msgstr ""
3400
3401#: plugins/check_snmp.c:284 plugins/check_snmp.c:514
3179#, c-format 3402#, c-format
3180msgid "%s UNKNOWN: call for regex which was not a compiled option" 3403msgid "%s UNKNOWN: call for regex which was not a compiled option"
3181msgstr "" 3404msgstr ""
@@ -3187,54 +3410,58 @@ msgid ""
3187"CMD: %s\n" 3410"CMD: %s\n"
3188msgstr "" 3411msgstr ""
3189 3412
3190#: plugins/check_snmp.c:455 3413#: plugins/check_snmp.c:453
3191#, c-format 3414#, c-format
3192msgid "Invalid critical threshold: %s\n" 3415msgid "Invalid critical threshold: %s\n"
3193msgstr "" 3416msgstr ""
3194 3417
3195#: plugins/check_snmp.c:466 3418#: plugins/check_snmp.c:464
3196#, c-format 3419#, c-format
3197msgid "Invalid warning threshold: %s\n" 3420msgid "Invalid warning threshold: %s\n"
3198msgstr "" 3421msgstr ""
3199 3422
3200#: plugins/check_snmp.c:536 3423#: plugins/check_snmp.c:534
3201#, c-format 3424#, c-format
3202msgid "Could not realloc() labels[%d]" 3425msgid "Could not realloc() labels[%d]"
3203msgstr "" 3426msgstr ""
3204 3427
3205#: plugins/check_snmp.c:548 3428#: plugins/check_snmp.c:546
3206msgid "Could not realloc() labels\n" 3429msgid "Could not realloc() labels\n"
3207msgstr "" 3430msgstr ""
3208 3431
3209#: plugins/check_snmp.c:578 3432#: plugins/check_snmp.c:576
3210msgid "Could not realloc() units\n" 3433msgid "Could not realloc() units\n"
3211msgstr "" 3434msgstr ""
3212 3435
3213#: plugins/check_snmp.c:651 3436#: plugins/check_snmp.c:649
3214#, c-format 3437#, c-format
3215msgid "" 3438msgid ""
3216"Missing secname (%s) or authpassword (%s) ! \n" 3439"Missing secname (%s) or authpassword (%s) ! \n"
3217")" 3440")"
3218msgstr "" 3441msgstr ""
3219 3442
3220#: plugins/check_snmp.c:659 3443#: plugins/check_snmp.c:657
3221#, c-format 3444#, c-format
3222msgid "Missing secname (%s), authpassword (%s), or privpasswd (%s)! \n" 3445msgid "Missing secname (%s), authpassword (%s), or privpasswd (%s)! \n"
3223msgstr "" 3446msgstr ""
3224 3447
3225#: plugins/check_snmp.c:668 3448#: plugins/check_snmp.c:666
3226#, c-format 3449#, c-format
3227msgid "Invalid SNMP version: %s\n" 3450msgid "Invalid SNMP version: %s\n"
3228msgstr "" 3451msgstr ""
3229 3452
3230#: plugins/check_snmp.c:847 3453#: plugins/check_snmp.c:796
3454msgid "Unbalanced quotes\n"
3455msgstr ""
3456
3457#: plugins/check_snmp.c:845
3231#, c-format 3458#, c-format
3232msgid "" 3459msgid ""
3233"Check status of remote machines and obtain sustem information via SNMP\n" 3460"Check status of remote machines and obtain sustem information via SNMP\n"
3234"\n" 3461"\n"
3235msgstr "" 3462msgstr ""
3236 3463
3237#: plugins/check_snmp.c:857 3464#: plugins/check_snmp.c:855
3238#, c-format 3465#, c-format
3239msgid "" 3466msgid ""
3240" -P, --protocol=[1|3]\n" 3467" -P, --protocol=[1|3]\n"
@@ -3245,7 +3472,7 @@ msgid ""
3245" SNMPv3 auth proto\n" 3472" SNMPv3 auth proto\n"
3246msgstr "" 3473msgstr ""
3247 3474
3248#: plugins/check_snmp.c:866 3475#: plugins/check_snmp.c:864
3249#, c-format 3476#, c-format
3250msgid "" 3477msgid ""
3251" -C, --community=STRING\n" 3478" -C, --community=STRING\n"
@@ -3259,7 +3486,7 @@ msgid ""
3259" SNMPv3 crypt passwd (DES)\n" 3486" SNMPv3 crypt passwd (DES)\n"
3260msgstr "" 3487msgstr ""
3261 3488
3262#: plugins/check_snmp.c:878 3489#: plugins/check_snmp.c:876
3263#, c-format 3490#, c-format
3264msgid "" 3491msgid ""
3265" -o, --oid=OID(s)\n" 3492" -o, --oid=OID(s)\n"
@@ -3272,7 +3499,7 @@ msgid ""
3272" to be the data that should be used in the evaluation.\n" 3499" to be the data that should be used in the evaluation.\n"
3273msgstr "" 3500msgstr ""
3274 3501
3275#: plugins/check_snmp.c:888 3502#: plugins/check_snmp.c:886
3276#, c-format 3503#, c-format
3277msgid "" 3504msgid ""
3278" -w, --warning=INTEGER_RANGE(s)\n" 3505" -w, --warning=INTEGER_RANGE(s)\n"
@@ -3281,7 +3508,7 @@ msgid ""
3281" Range(s) which will not result in a CRITICAL status\n" 3508" Range(s) which will not result in a CRITICAL status\n"
3282msgstr "" 3509msgstr ""
3283 3510
3284#: plugins/check_snmp.c:895 3511#: plugins/check_snmp.c:893
3285#, c-format 3512#, c-format
3286msgid "" 3513msgid ""
3287" -s, --string=STRING\n" 3514" -s, --string=STRING\n"
@@ -3296,7 +3523,7 @@ msgid ""
3296" Prefix label for output from plugin (default -s 'SNMP')\n" 3523" Prefix label for output from plugin (default -s 'SNMP')\n"
3297msgstr "" 3524msgstr ""
3298 3525
3299#: plugins/check_snmp.c:906 3526#: plugins/check_snmp.c:904
3300#, c-format 3527#, c-format
3301msgid "" 3528msgid ""
3302" -u, --units=STRING\n" 3529" -u, --units=STRING\n"
@@ -3305,7 +3532,7 @@ msgid ""
3305" Separates output on multiple OID requests\n" 3532" Separates output on multiple OID requests\n"
3306msgstr "" 3533msgstr ""
3307 3534
3308#: plugins/check_snmp.c:916 3535#: plugins/check_snmp.c:914
3309#, c-format 3536#, c-format
3310msgid "" 3537msgid ""
3311"\n" 3538"\n"
@@ -3316,7 +3543,7 @@ msgid ""
3316" http://net-snmp.sourceforge.net before you can use this plugin.\n" 3543" http://net-snmp.sourceforge.net before you can use this plugin.\n"
3317msgstr "" 3544msgstr ""
3318 3545
3319#: plugins/check_snmp.c:921 3546#: plugins/check_snmp.c:919
3320#, c-format 3547#, c-format
3321msgid "" 3548msgid ""
3322"- Multiple OIDs may be indicated by a comma- or space-delimited list (lists " 3549"- Multiple OIDs may be indicated by a comma- or space-delimited list (lists "
@@ -3324,7 +3551,7 @@ msgid ""
3324" internal spaces must be quoted) [max 8 OIDs]\n" 3551" internal spaces must be quoted) [max 8 OIDs]\n"
3325msgstr "" 3552msgstr ""
3326 3553
3327#: plugins/check_snmp.c:925 3554#: plugins/check_snmp.c:923
3328#, c-format 3555#, c-format
3329msgid "" 3556msgid ""
3330"- Ranges are inclusive and are indicated with colons. When specified as\n" 3557"- Ranges are inclusive and are indicated with colons. When specified as\n"
@@ -3334,7 +3561,7 @@ msgid ""
3334" returned if the result is outside the specified range.\n" 3561" returned if the result is outside the specified range.\n"
3335msgstr "" 3562msgstr ""
3336 3563
3337#: plugins/check_snmp.c:931 3564#: plugins/check_snmp.c:929
3338#, c-format 3565#, c-format
3339msgid "" 3566msgid ""
3340"- If specified in the order 'max:min' a non-OK state will be returned if " 3567"- If specified in the order 'max:min' a non-OK state will be returned if "
@@ -3342,7 +3569,7 @@ msgid ""
3342" result is within the (inclusive) range.\n" 3569" result is within the (inclusive) range.\n"
3343msgstr "" 3570msgstr ""
3344 3571
3345#: plugins/check_snmp.c:935 3572#: plugins/check_snmp.c:933
3346#, c-format 3573#, c-format
3347msgid "" 3574msgid ""
3348"- Upper or lower bounds may be omitted to skip checking the respective " 3575"- Upper or lower bounds may be omitted to skip checking the respective "
@@ -3356,29 +3583,33 @@ msgid ""
3356" returned from the SNMP query is an unsigned integer.\n" 3583" returned from the SNMP query is an unsigned integer.\n"
3357msgstr "" 3584msgstr ""
3358 3585
3359#: plugins/check_ssh.c:221 3586#: plugins/check_ssh.c:152
3587msgid "Port number must be a positive integer"
3588msgstr ""
3589
3590#: plugins/check_ssh.c:217
3360#, c-format 3591#, c-format
3361msgid "Server answer: %s" 3592msgid "Server answer: %s"
3362msgstr "" 3593msgstr ""
3363 3594
3364#: plugins/check_ssh.c:239 3595#: plugins/check_ssh.c:235
3365#, c-format 3596#, c-format
3366msgid "SSH WARNING - %s (protocol %s) version mismatch, expected '%s'\n" 3597msgid "SSH WARNING - %s (protocol %s) version mismatch, expected '%s'\n"
3367msgstr "" 3598msgstr ""
3368 3599
3369#: plugins/check_ssh.c:245 3600#: plugins/check_ssh.c:241
3370#, c-format 3601#, c-format
3371msgid "SSH OK - %s (protocol %s)\n" 3602msgid "SSH OK - %s (protocol %s)\n"
3372msgstr "" 3603msgstr ""
3373 3604
3374#: plugins/check_ssh.c:264 3605#: plugins/check_ssh.c:260
3375#, c-format 3606#, c-format
3376msgid "" 3607msgid ""
3377"Try to connect to an SSH server at specified server and port\n" 3608"Try to connect to an SSH server at specified server and port\n"
3378"\n" 3609"\n"
3379msgstr "" 3610msgstr ""
3380 3611
3381#: plugins/check_ssh.c:276 3612#: plugins/check_ssh.c:272
3382#, c-format 3613#, c-format
3383msgid "" 3614msgid ""
3384" -r, --remote-version=STRING\n" 3615" -r, --remote-version=STRING\n"
@@ -3406,35 +3637,35 @@ msgstr ""
3406msgid "total=%llu, free=%llu\n" 3637msgid "total=%llu, free=%llu\n"
3407msgstr "" 3638msgstr ""
3408 3639
3640#: plugins/check_swap.c:242 plugins/check_swap.c:281
3641msgid "swapctl failed: "
3642msgstr ""
3643
3409#: plugins/check_swap.c:314 3644#: plugins/check_swap.c:314
3410#, c-format 3645#, c-format
3411msgid " %d%% free (%llu MB out of %llu MB)" 3646msgid " %d%% free (%llu MB out of %llu MB)"
3412msgstr "" 3647msgstr ""
3413 3648
3414#: plugins/check_swap.c:391
3415msgid "Warning threshold must be integer or percentage!\n"
3416msgstr ""
3417
3418#: plugins/check_swap.c:408 3649#: plugins/check_swap.c:408
3419msgid "Critical threshold must be integer or percentage!\n" 3650msgid "Critical threshold must be integer or percentage!\n"
3420msgstr "" 3651msgstr ""
3421 3652
3422#: plugins/check_swap.c:464 3653#: plugins/check_swap.c:462
3423msgid "Warning percentage should be more than critical percentage\n" 3654msgid "Warning percentage should be more than critical percentage\n"
3424msgstr "" 3655msgstr ""
3425 3656
3426#: plugins/check_swap.c:468 3657#: plugins/check_swap.c:466
3427msgid "Warning free space should be more than critical free space\n" 3658msgid "Warning free space should be more than critical free space\n"
3428msgstr "" 3659msgstr ""
3429 3660
3430#: plugins/check_swap.c:482 3661#: plugins/check_swap.c:480
3431#, c-format 3662#, c-format
3432msgid "" 3663msgid ""
3433"Check swap space on local machine.\n" 3664"Check swap space on local machine.\n"
3434"\n" 3665"\n"
3435msgstr "" 3666msgstr ""
3436 3667
3437#: plugins/check_swap.c:488 3668#: plugins/check_swap.c:486
3438#, c-format 3669#, c-format
3439msgid "" 3670msgid ""
3440"\n" 3671"\n"
@@ -3454,7 +3685,7 @@ msgid ""
3454" Verbose output. Up to 3 levels\n" 3685" Verbose output. Up to 3 levels\n"
3455msgstr "" 3686msgstr ""
3456 3687
3457#: plugins/check_swap.c:502 3688#: plugins/check_swap.c:500
3458#, c-format 3689#, c-format
3459msgid "" 3690msgid ""
3460"\n" 3691"\n"
@@ -3463,7 +3694,7 @@ msgid ""
3463"real memory\n" 3694"real memory\n"
3464msgstr "" 3695msgstr ""
3465 3696
3466#: plugins/check_swap.c:506 3697#: plugins/check_swap.c:504
3467#, c-format 3698#, c-format
3468msgid "" 3699msgid ""
3469"\n" 3700"\n"
@@ -3474,6 +3705,10 @@ msgstr ""
3474msgid "CRITICAL - Generic check_tcp called with unknown service\n" 3705msgid "CRITICAL - Generic check_tcp called with unknown service\n"
3475msgstr "" 3706msgstr ""
3476 3707
3708#: plugins/check_tcp.c:262
3709msgid "CRITICAL - Could not make SSL connection\n"
3710msgstr ""
3711
3477#: plugins/check_tcp.c:335 3712#: plugins/check_tcp.c:335
3478#, c-format 3713#, c-format
3479msgid "Unexpected response from host: %s\n" 3714msgid "Unexpected response from host: %s\n"
@@ -3484,49 +3719,72 @@ msgstr ""
3484msgid "%s %s%s - %.3f second response time on port %d" 3719msgid "%s %s%s - %.3f second response time on port %d"
3485msgstr "" 3720msgstr ""
3486 3721
3487#: plugins/check_tcp.c:504 plugins/check_time.c:248 plugins/check_time.c:272 3722#: plugins/check_tcp.c:437
3488#: plugins/check_udp.c:175 3723msgid "No arguments found"
3489msgid "Warning threshold must be a positive integer"
3490msgstr "" 3724msgstr ""
3491 3725
3492#: plugins/check_tcp.c:543 3726#: plugins/check_tcp.c:541
3493msgid "Maxbytes must be a positive integer" 3727msgid "Maxbytes must be a positive integer"
3494msgstr "" 3728msgstr ""
3495 3729
3496#: plugins/check_tcp.c:557 3730#: plugins/check_tcp.c:555
3497msgid "Refuse must be one of ok, warn, crit" 3731msgid "Refuse must be one of ok, warn, crit"
3498msgstr "" 3732msgstr ""
3499 3733
3500#: plugins/check_tcp.c:567 3734#: plugins/check_tcp.c:565
3501msgid "Mismatch must be one of ok, warn, crit" 3735msgid "Mismatch must be one of ok, warn, crit"
3502msgstr "" 3736msgstr ""
3503 3737
3504#: plugins/check_tcp.c:573 3738#: plugins/check_tcp.c:571
3505msgid "Delay must be a positive integer" 3739msgid "Delay must be a positive integer"
3506msgstr "" 3740msgstr ""
3507 3741
3508#: plugins/check_tcp.c:593 3742#: plugins/check_tcp.c:584
3509msgid "You must provide a server address\n" 3743msgid "SSL support not available. Install OpenSSL and recompile."
3510msgstr "" 3744msgstr ""
3511 3745
3512#: plugins/check_tcp.c:613 3746#: plugins/check_tcp.c:591
3747msgid "You must provide a server address"
3748msgstr ""
3749
3750#: plugins/check_tcp.c:611
3513#, c-format 3751#, c-format
3514msgid "CRITICAL - Cannot create SSL context.\n" 3752msgid "CRITICAL - Cannot create SSL context.\n"
3515msgstr "" 3753msgstr ""
3516 3754
3517#: plugins/check_tcp.c:636 3755#: plugins/check_tcp.c:634
3518#, c-format 3756#, c-format
3519msgid "CRITICAL - Cannot make SSL connection " 3757msgid "CRITICAL - Cannot make SSL connection "
3520msgstr "" 3758msgstr ""
3521 3759
3522#: plugins/check_tcp.c:763 3760#: plugins/check_tcp.c:711
3761#, c-format
3762msgid "Certificate expires in %d day(s) (%s).\n"
3763msgstr ""
3764
3765#: plugins/check_tcp.c:715
3766#, c-format
3767msgid "Certificate expired on %s.\n"
3768msgstr ""
3769
3770#: plugins/check_tcp.c:720
3771#, c-format
3772msgid "Certificate expires today (%s).\n"
3773msgstr ""
3774
3775#: plugins/check_tcp.c:724
3776#, c-format
3777msgid "Certificate will expire on %s.\n"
3778msgstr ""
3779
3780#: plugins/check_tcp.c:761
3523#, c-format 3781#, c-format
3524msgid "" 3782msgid ""
3525"This plugin tests %s connections with the specified host.\n" 3783"This plugin tests %s connections with the specified host.\n"
3526"\n" 3784"\n"
3527msgstr "" 3785msgstr ""
3528 3786
3529#: plugins/check_tcp.c:774 3787#: plugins/check_tcp.c:772
3530#, c-format 3788#, c-format
3531msgid "" 3789msgid ""
3532" -s, --send=STRING\n" 3790" -s, --send=STRING\n"
@@ -3537,7 +3795,7 @@ msgid ""
3537" String to send server to initiate a clean close of the connection\n" 3795" String to send server to initiate a clean close of the connection\n"
3538msgstr "" 3796msgstr ""
3539 3797
3540#: plugins/check_tcp.c:782 3798#: plugins/check_tcp.c:780
3541#, c-format 3799#, c-format
3542msgid "" 3800msgid ""
3543" -r, --refuse=ok|warn|crit\n" 3801" -r, --refuse=ok|warn|crit\n"
@@ -3553,7 +3811,7 @@ msgid ""
3553" Seconds to wait between sending string and polling for response\n" 3811" Seconds to wait between sending string and polling for response\n"
3554msgstr "" 3812msgstr ""
3555 3813
3556#: plugins/check_tcp.c:795 3814#: plugins/check_tcp.c:793
3557#, c-format 3815#, c-format
3558msgid "" 3816msgid ""
3559" -D, --certificate=INTEGER\n" 3817" -D, --certificate=INTEGER\n"
@@ -3587,26 +3845,22 @@ msgstr ""
3587msgid "TIME %s - %lu second time difference|%s %s\n" 3845msgid "TIME %s - %lu second time difference|%s %s\n"
3588msgstr "" 3846msgstr ""
3589 3847
3590#: plugins/check_time.c:244 3848#: plugins/check_time.c:242
3591msgid "Warning thresholds must be a positive integer" 3849msgid "Warning thresholds must be a positive integer"
3592msgstr "" 3850msgstr ""
3593 3851
3594#: plugins/check_time.c:263 3852#: plugins/check_time.c:261
3595msgid "Critical thresholds must be a positive integer" 3853msgid "Critical thresholds must be a positive integer"
3596msgstr "" 3854msgstr ""
3597 3855
3598#: plugins/check_time.c:309 plugins/check_udp.c:209 3856#: plugins/check_time.c:327
3599msgid "Hostname was not supplied"
3600msgstr ""
3601
3602#: plugins/check_time.c:329
3603#, c-format 3857#, c-format
3604msgid "" 3858msgid ""
3605"This plugin will check the time on the specified host.\n" 3859"This plugin will check the time on the specified host.\n"
3606"\n" 3860"\n"
3607msgstr "" 3861msgstr ""
3608 3862
3609#: plugins/check_time.c:337 3863#: plugins/check_time.c:335
3610#, c-format 3864#, c-format
3611msgid "" 3865msgid ""
3612" -u, --udp\n" 3866" -u, --udp\n"
@@ -3621,6 +3875,16 @@ msgid ""
3621" Response time (sec.) necessary to result in critical status\n" 3875" Response time (sec.) necessary to result in critical status\n"
3622msgstr "" 3876msgstr ""
3623 3877
3878#: plugins/check_udp.c:70
3879#, c-format
3880msgid "No response from host on port %d\n"
3881msgstr ""
3882
3883#: plugins/check_udp.c:79
3884#, c-format
3885msgid "Invalid response received from host on port %d\n"
3886msgstr ""
3887
3624#: plugins/check_udp.c:95 3888#: plugins/check_udp.c:95
3625#, c-format 3889#, c-format
3626msgid "Connection %s on port %d - %d second response time\n" 3890msgid "Connection %s on port %d - %d second response time\n"
@@ -3634,14 +3898,14 @@ msgstr ""
3634msgid "problem" 3898msgid "problem"
3635msgstr "" 3899msgstr ""
3636 3900
3637#: plugins/check_udp.c:227 3901#: plugins/check_udp.c:225
3638#, c-format 3902#, c-format
3639msgid "" 3903msgid ""
3640"\tThis plugin tests an UDP connection with the specified host.\n" 3904"\tThis plugin tests an UDP connection with the specified host.\n"
3641"\n" 3905"\n"
3642msgstr "" 3906msgstr ""
3643 3907
3644#: plugins/check_udp.c:236 3908#: plugins/check_udp.c:234
3645#, c-format 3909#, c-format
3646msgid "" 3910msgid ""
3647" -e, --expect=STRING <optional>\n" 3911" -e, --expect=STRING <optional>\n"
@@ -3650,7 +3914,7 @@ msgid ""
3650" String to send to the server when initiating the connection\n" 3914" String to send to the server when initiating the connection\n"
3651msgstr "" 3915msgstr ""
3652 3916
3653#: plugins/check_udp.c:248 3917#: plugins/check_udp.c:246
3654#, c-format 3918#, c-format
3655msgid "" 3919msgid ""
3656"This plugin will attempt to connect to the specified port on the host.\n" 3920"This plugin will attempt to connect to the specified port on the host.\n"
@@ -3659,7 +3923,97 @@ msgid ""
3659"\n" 3923"\n"
3660msgstr "" 3924msgstr ""
3661 3925
3662#: plugins/check_ups.c:597 3926#: plugins/check_ups.c:136
3927msgid "On Battery, Low Battery"
3928msgstr ""
3929
3930#: plugins/check_ups.c:141
3931msgid "Online"
3932msgstr ""
3933
3934#: plugins/check_ups.c:144
3935msgid "On Battery"
3936msgstr ""
3937
3938#: plugins/check_ups.c:148
3939msgid ", Low Battery"
3940msgstr ""
3941
3942#: plugins/check_ups.c:152
3943msgid ", Calibrating"
3944msgstr ""
3945
3946#: plugins/check_ups.c:155
3947msgid ", Replace Battery"
3948msgstr ""
3949
3950#: plugins/check_ups.c:159
3951msgid ", On Bypass"
3952msgstr ""
3953
3954#: plugins/check_ups.c:162
3955msgid ", Overload"
3956msgstr ""
3957
3958#: plugins/check_ups.c:165
3959msgid ", Trimming"
3960msgstr ""
3961
3962#: plugins/check_ups.c:168
3963msgid ", Boosting"
3964msgstr ""
3965
3966#: plugins/check_ups.c:171
3967msgid ", Charging"
3968msgstr ""
3969
3970#: plugins/check_ups.c:174
3971msgid ", Discharging"
3972msgstr ""
3973
3974#: plugins/check_ups.c:177
3975msgid ", Unknown"
3976msgstr ""
3977
3978#: plugins/check_ups.c:314
3979msgid "UPS does not support any available options\n"
3980msgstr ""
3981
3982#: plugins/check_ups.c:338 plugins/check_ups.c:398
3983#, c-format
3984msgid "Invalid response received from host\n"
3985msgstr ""
3986
3987#: plugins/check_ups.c:406
3988#, c-format
3989msgid "CRITICAL - no such ups '%s' on that host\n"
3990msgstr ""
3991
3992#: plugins/check_ups.c:416
3993#, c-format
3994msgid "CRITICAL - UPS data is stale\n"
3995msgstr ""
3996
3997#: plugins/check_ups.c:421
3998#, c-format
3999msgid "Unknown error: %s\n"
4000msgstr ""
4001
4002#: plugins/check_ups.c:428
4003#, c-format
4004msgid "Error: unable to parse variable\n"
4005msgstr ""
4006
4007#: plugins/check_ups.c:535
4008msgid "Unrecognized UPS variable"
4009msgstr ""
4010
4011#: plugins/check_ups.c:573
4012#, c-format
4013msgid "Error : no ups indicated\n"
4014msgstr ""
4015
4016#: plugins/check_ups.c:593
3663#, c-format 4017#, c-format
3664msgid "" 4018msgid ""
3665"This plugin tests the UPS service on the specified host.\n" 4019"This plugin tests the UPS service on the specified host.\n"
@@ -3668,21 +4022,21 @@ msgid ""
3668"\n" 4022"\n"
3669msgstr "" 4023msgstr ""
3670 4024
3671#: plugins/check_ups.c:607 4025#: plugins/check_ups.c:603
3672#, c-format 4026#, c-format
3673msgid "" 4027msgid ""
3674" -u, --ups=STRING\n" 4028" -u, --ups=STRING\n"
3675" Name of UPS\n" 4029" Name of UPS\n"
3676msgstr "" 4030msgstr ""
3677 4031
3678#: plugins/check_ups.c:611 4032#: plugins/check_ups.c:607
3679#, c-format 4033#, c-format
3680msgid "" 4034msgid ""
3681" -T, --temperature\n" 4035" -T, --temperature\n"
3682" Output of temperatures in Celsius\n" 4036" Output of temperatures in Celsius\n"
3683msgstr "" 4037msgstr ""
3684 4038
3685#: plugins/check_ups.c:621 4039#: plugins/check_ups.c:617
3686#, c-format 4040#, c-format
3687msgid "" 4041msgid ""
3688"This plugin attempts to determine the status of a UPS (Uninterruptible " 4042"This plugin attempts to determine the status of a UPS (Uninterruptible "
@@ -3696,7 +4050,7 @@ msgid ""
3696"\n" 4050"\n"
3697msgstr "" 4051msgstr ""
3698 4052
3699#: plugins/check_ups.c:628 4053#: plugins/check_ups.c:624
3700#, c-format 4054#, c-format
3701msgid "" 4055msgid ""
3702"You may also specify a variable to check [such as temperature, utility " 4056"You may also specify a variable to check [such as temperature, utility "
@@ -3709,7 +4063,7 @@ msgid ""
3709"\n" 4063"\n"
3710msgstr "" 4064msgstr ""
3711 4065
3712#: plugins/check_ups.c:634 4066#: plugins/check_ups.c:630
3713#, c-format 4067#, c-format
3714msgid "" 4068msgid ""
3715"Notes:\n" 4069"Notes:\n"
@@ -3731,16 +4085,7 @@ msgstr ""
3731msgid "USERS %s - %d users currently logged in |%s\n" 4085msgid "USERS %s - %d users currently logged in |%s\n"
3732msgstr "" 4086msgstr ""
3733 4087
3734#: plugins/check_users.c:154 4088#: plugins/check_users.c:193
3735msgid "Critical threshold must be a positive integer\n"
3736msgstr ""
3737
3738#: plugins/check_users.c:160 plugins/check_users.c:170
3739#: plugins/check_users.c:177
3740msgid "Warning threshold must be a positive integer\n"
3741msgstr ""
3742
3743#: plugins/check_users.c:195
3744#, c-format 4089#, c-format
3745msgid "" 4090msgid ""
3746"This plugin checks the number of users currently logged in on the local\n" 4091"This plugin checks the number of users currently logged in on the local\n"
@@ -3748,7 +4093,7 @@ msgid ""
3748"specified.\n" 4093"specified.\n"
3749msgstr "" 4094msgstr ""
3750 4095
3751#: plugins/check_users.c:203 4096#: plugins/check_users.c:201
3752#, c-format 4097#, c-format
3753msgid "" 4098msgid ""
3754" -w, --warning=INTEGER\n" 4099" -w, --warning=INTEGER\n"
@@ -3757,79 +4102,79 @@ msgid ""
3757" Set CRITICAL status if more than INTEGER users are logged in\n" 4102" Set CRITICAL status if more than INTEGER users are logged in\n"
3758msgstr "" 4103msgstr ""
3759 4104
3760#: plugins/check_ide_smart.c:227 4105#: plugins/check_ide_smart.c:225
3761#, c-format 4106#, c-format
3762msgid "CRITICAL - Couldn't open device: %s\n" 4107msgid "CRITICAL - Couldn't open device: %s\n"
3763msgstr "" 4108msgstr ""
3764 4109
3765#: plugins/check_ide_smart.c:232 4110#: plugins/check_ide_smart.c:230
3766#, c-format 4111#, c-format
3767msgid "CRITICAL - SMART_CMD_ENABLE\n" 4112msgid "CRITICAL - SMART_CMD_ENABLE\n"
3768msgstr "" 4113msgstr ""
3769 4114
3770#: plugins/check_ide_smart.c:294 4115#: plugins/check_ide_smart.c:292
3771#, c-format 4116#, c-format
3772msgid "CRITICAL - SMART_READ_VALUES: %s\n" 4117msgid "CRITICAL - SMART_READ_VALUES: %s\n"
3773msgstr "" 4118msgstr ""
3774 4119
3775#: plugins/check_ide_smart.c:363 4120#: plugins/check_ide_smart.c:361
3776#, c-format 4121#, c-format
3777msgid "CRITICAL - %d Harddrive PreFailure%cDetected! %d/%d tests failed.\n" 4122msgid "CRITICAL - %d Harddrive PreFailure%cDetected! %d/%d tests failed.\n"
3778msgstr "" 4123msgstr ""
3779 4124
3780#: plugins/check_ide_smart.c:370 4125#: plugins/check_ide_smart.c:368
3781#, c-format 4126#, c-format
3782msgid "WARNING - %d Harddrive Advisor%s Detected. %d/%d tests failed.\n" 4127msgid "WARNING - %d Harddrive Advisor%s Detected. %d/%d tests failed.\n"
3783msgstr "" 4128msgstr ""
3784 4129
3785#: plugins/check_ide_smart.c:377 4130#: plugins/check_ide_smart.c:375
3786#, c-format 4131#, c-format
3787msgid "OK - Operational (%d/%d tests passed)\n" 4132msgid "OK - Operational (%d/%d tests passed)\n"
3788msgstr "" 4133msgstr ""
3789 4134
3790#: plugins/check_ide_smart.c:380 4135#: plugins/check_ide_smart.c:378
3791#, c-format 4136#, c-format
3792msgid "ERROR - Status '%d' uknown. %d/%d tests passed\n" 4137msgid "ERROR - Status '%d' uknown. %d/%d tests passed\n"
3793msgstr "" 4138msgstr ""
3794 4139
3795#: plugins/check_ide_smart.c:413 4140#: plugins/check_ide_smart.c:411
3796#, c-format 4141#, c-format
3797msgid "OffLineStatus=%d {%s}, AutoOffLine=%s, OffLineTimeout=%d minutes\n" 4142msgid "OffLineStatus=%d {%s}, AutoOffLine=%s, OffLineTimeout=%d minutes\n"
3798msgstr "" 4143msgstr ""
3799 4144
3800#: plugins/check_ide_smart.c:419 4145#: plugins/check_ide_smart.c:417
3801#, c-format 4146#, c-format
3802msgid "OffLineCapability=%d {%s %s %s}\n" 4147msgid "OffLineCapability=%d {%s %s %s}\n"
3803msgstr "" 4148msgstr ""
3804 4149
3805#: plugins/check_ide_smart.c:425 4150#: plugins/check_ide_smart.c:423
3806#, c-format 4151#, c-format
3807msgid "SmartRevision=%d, CheckSum=%d, SmartCapability=%d {%s %s}\n" 4152msgid "SmartRevision=%d, CheckSum=%d, SmartCapability=%d {%s %s}\n"
3808msgstr "" 4153msgstr ""
3809 4154
3810#: plugins/check_ide_smart.c:464 4155#: plugins/check_ide_smart.c:462
3811#, c-format 4156#, c-format
3812msgid "CRITICAL - %s: %s\n" 4157msgid "CRITICAL - %s: %s\n"
3813msgstr "" 4158msgstr ""
3814 4159
3815#: plugins/check_ide_smart.c:483 4160#: plugins/check_ide_smart.c:481
3816#, c-format 4161#, c-format
3817msgid "CRITICAL - SMART_READ_THRESHOLDS: %s\n" 4162msgid "CRITICAL - SMART_READ_THRESHOLDS: %s\n"
3818msgstr "" 4163msgstr ""
3819 4164
3820#: plugins/negate.c:244 4165#: plugins/negate.c:242
3821#, c-format 4166#, c-format
3822msgid "" 4167msgid ""
3823"Negates the status of a plugin (returns OK for CRITICAL, and vice-versa).\n" 4168"Negates the status of a plugin (returns OK for CRITICAL, and vice-versa).\n"
3824"\n" 4169"\n"
3825msgstr "" 4170msgstr ""
3826 4171
3827#: plugins/negate.c:253 4172#: plugins/negate.c:251
3828#, c-format 4173#, c-format
3829msgid " [keep timeout than the plugin timeout to retain CRITICAL status]\n" 4174msgid " [keep timeout than the plugin timeout to retain CRITICAL status]\n"
3830msgstr "" 4175msgstr ""
3831 4176
3832#: plugins/negate.c:256 4177#: plugins/negate.c:254
3833#, c-format 4178#, c-format
3834msgid "" 4179msgid ""
3835" negate \"/usr/local/nagios/libexec/check_ping -H host\"\n" 4180" negate \"/usr/local/nagios/libexec/check_ping -H host\"\n"
@@ -3838,7 +4183,7 @@ msgid ""
3838" Use single quotes if you need to retain spaces\n" 4183" Use single quotes if you need to retain spaces\n"
3839msgstr "" 4184msgstr ""
3840 4185
3841#: plugins/negate.c:262 4186#: plugins/negate.c:260
3842#, c-format 4187#, c-format
3843msgid "" 4188msgid ""
3844"This plugin is a wrapper to take the output of another plugin and invert " 4189"This plugin is a wrapper to take the output of another plugin and invert "
@@ -3850,14 +4195,63 @@ msgid ""
3850"Otherwise, the output state of the wrapped plugin is unchanged.\n" 4195"Otherwise, the output state of the wrapped plugin is unchanged.\n"
3851msgstr "" 4196msgstr ""
3852 4197
3853#: plugins/urlize.c:108 4198#: plugins/netutils.c:48
4199#, c-format
4200msgid "CRITICAL - Socket timeout after %d seconds\n"
4201msgstr ""
4202
4203#: plugins/netutils.c:50
4204#, c-format
4205msgid "CRITICAL - Abnormal timeout after %d seconds\n"
4206msgstr ""
4207
4208#: plugins/netutils.c:109 plugins/netutils.c:318
4209#, c-format
4210msgid "Send failed\n"
4211msgstr ""
4212
4213#: plugins/netutils.c:126 plugins/netutils.c:333
4214#, c-format
4215msgid "No data was received from host!\n"
4216msgstr ""
4217
4218#: plugins/netutils.c:242
4219#, c-format
4220msgid "Socket creation failed\n"
4221msgstr ""
4222
4223#: plugins/netutils.c:342
4224#, c-format
4225msgid "Receive failed\n"
4226msgstr ""
4227
4228#: plugins/popen.c:117
4229#, c-format
4230msgid "Could not malloc argv array in popen()\n"
4231msgstr ""
4232
4233#: plugins/popen.c:127
4234#, c-format
4235msgid "CRITICAL - You need more args!!!\n"
4236msgstr ""
4237
4238#: plugins/popen.c:248 plugins/utils.c:136
4239#, c-format
4240msgid "CRITICAL - Plugin timed out after %d seconds\n"
4241msgstr ""
4242
4243#: plugins/popen.c:264
4244msgid "sysconf error for _SC_OPEN_MAX"
4245msgstr ""
4246
4247#: plugins/urlize.c:106
3854#, c-format 4248#, c-format
3855msgid "" 4249msgid ""
3856"%s UNKNOWN - No data received from host\n" 4250"%s UNKNOWN - No data received from host\n"
3857"CMD: %s</A>\n" 4251"CMD: %s</A>\n"
3858msgstr "" 4252msgstr ""
3859 4253
3860#: plugins/urlize.c:135 4254#: plugins/urlize.c:133
3861#, c-format 4255#, c-format
3862msgid "" 4256msgid ""
3863"\n" 4257"\n"
@@ -3868,7 +4262,7 @@ msgid ""
3868"\n" 4262"\n"
3869msgstr "" 4263msgstr ""
3870 4264
3871#: plugins/urlize.c:143 4265#: plugins/urlize.c:141
3872#, c-format 4266#, c-format
3873msgid "" 4267msgid ""
3874"\n" 4268"\n"
@@ -3885,3 +4279,11 @@ msgid ""
3885"\n" 4279"\n"
3886" urlize http://example.com/ \"check_http -H example.com -r 'two words'\"\n" 4280" urlize http://example.com/ \"check_http -H example.com -r 'two words'\"\n"
3887msgstr "" 4281msgstr ""
4282
4283#: plugins/utils.c:433
4284msgid "failed realloc in strpcpy\n"
4285msgstr ""
4286
4287#: plugins/utils.c:475
4288msgid "failed malloc in strscat\n"
4289msgstr ""