summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--COPYING6
-rw-r--r--plugins/check_dhcp.c25
-rw-r--r--po/de.po282
-rw-r--r--po/fr.po209
4 files changed, 312 insertions, 210 deletions
diff --git a/COPYING b/COPYING
index d60c31a..60549be 100644
--- a/COPYING
+++ b/COPYING
@@ -2,7 +2,7 @@
2 Version 2, June 1991 2 Version 2, June 1991
3 3
4 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 4 Copyright (C) 1989, 1991 Free Software Foundation, Inc.
5 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 5 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
6 Everyone is permitted to copy and distribute verbatim copies 6 Everyone is permitted to copy and distribute verbatim copies
7 of this license document, but changing it is not allowed. 7 of this license document, but changing it is not allowed.
8 8
@@ -291,7 +291,7 @@ convey the exclusion of warranty; and each file should have at least
291the "copyright" line and a pointer to where the full notice is found. 291the "copyright" line and a pointer to where the full notice is found.
292 292
293 <one line to give the program's name and a brief idea of what it does.> 293 <one line to give the program's name and a brief idea of what it does.>
294 Copyright (C) <year> <name of author> 294 Copyright (C) 19yy <name of author>
295 295
296 This program is free software; you can redistribute it and/or modify 296 This program is free software; you can redistribute it and/or modify
297 it under the terms of the GNU General Public License as published by 297 it under the terms of the GNU General Public License as published by
@@ -313,7 +313,7 @@ Also add information on how to contact you by electronic and paper mail.
313If the program is interactive, make it output a short notice like this 313If the program is interactive, make it output a short notice like this
314when it starts in an interactive mode: 314when it starts in an interactive mode:
315 315
316 Gnomovision version 69, Copyright (C) year name of author 316 Gnomovision version 69, Copyright (C) 19yy name of author
317 Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 317 Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
318 This is free software, and you are welcome to redistribute it 318 This is free software, and you are welcome to redistribute it
319 under certain conditions; type `show c' for details. 319 under certain conditions; type `show c' for details.
diff --git a/plugins/check_dhcp.c b/plugins/check_dhcp.c
index 5c3c199..f668a88 100644
--- a/plugins/check_dhcp.c
+++ b/plugins/check_dhcp.c
@@ -55,7 +55,7 @@
55#include <sys/sysctl.h> 55#include <sys/sysctl.h>
56#include <net/if_dl.h> 56#include <net/if_dl.h>
57 57
58#elif defined(__sun__) || defined(__solaris__) 58#elif defined(__sun__) || defined(__solaris__) || defined(__hpux__)
59 59
60#define INSAP 22 60#define INSAP 22
61#define OUTSAP 24 61#define OUTSAP 24
@@ -367,13 +367,30 @@ int get_hardware_address(int sock,char *interface_name){
367 exit(STATE_UNKNOWN); 367 exit(STATE_UNKNOWN);
368 } 368 }
369 369
370#elif defined(__hpux__)
371
372 /* Martin Kompf again
373 *
374 * Nagios plugins thank you sincerely
375 */
376
377 long stat;
378 char dev[20] = "/dev/dlpi" ;
379 int unit = 0;
380
381 stat = mac_addr_dlpi(dev, unit, client_hardware_address);
382 if (stat != 0) {
383 printf("Error: can't read MAC address from DLPI streams interface for device %s unit %d.\n", dev, unit);
384 exit(STATE_UNKNOWN);
385 }
386
370#else 387#else
371 printf("Error: can't get MAC address for this architcture.\n"); 388 printf("Error: can't get MAC address for this architecture.\n");
372 exit(STATE_UNKNOWN); 389 exit(STATE_UNKNOWN);
373#endif 390#endif
374 391
375 if (verbose) { 392 if (verbose) {
376 printf( "Hadrware address: "); 393 printf( "Hardware address: ");
377 for (i=0; i<6; ++i) 394 for (i=0; i<6; ++i)
378 printf("%2.2x", client_hardware_address[i]); 395 printf("%2.2x", client_hardware_address[i]);
379 printf( "\n"); 396 printf( "\n");
@@ -1137,7 +1154,7 @@ int validate_arguments(void){
1137 return OK; 1154 return OK;
1138 } 1155 }
1139 1156
1140#if defined(__sun__) || defined(__solaris__) 1157#if defined(__sun__) || defined(__solaris__) || defined(__hpux__)
1141 1158
1142 1159
1143/* 1160/*
diff --git a/po/de.po b/po/de.po
index 2b98a5e..38ba7ec 100644
--- a/po/de.po
+++ b/po/de.po
@@ -9,20 +9,19 @@ msgid ""
9msgstr "" 9msgstr ""
10"Project-Id-Version: de\n" 10"Project-Id-Version: de\n"
11"Report-Msgid-Bugs-To: \n" 11"Report-Msgid-Bugs-To: \n"
12"POT-Creation-Date: 2004-12-05 02:57+0100\n" 12"POT-Creation-Date: 2004-12-20 19:49+1100\n"
13"PO-Revision-Date: 2004-12-18 19:02+0100\n" 13"PO-Revision-Date: 2004-12-18 19:02+0100\n"
14"Last-Translator: \n" 14"Last-Translator: \n"
15"Language-Team: <en@li.org>\n" 15"Language-Team: <en@li.org>\n"
16"MIME-Version: 1.0\n" 16"MIME-Version: 1.0\n"
17"Content-Type: text/plain; charset=ISO-8859-1\n" 17"Content-Type: text/plain; charset=ISO-8859-1\n"
18"Content-Transfer-Encoding: 8bit\n" 18"Content-Transfer-Encoding: 8bit\n"
19"Plural-Forms: nplurals=2; plural=(n > 1);" 19"Plural-Forms: nplurals=2; plural=(n > 1);X-Generator: KBabel 1.3.1\n"
20"X-Generator: KBabel 1.3.1\n"
21 20
22#: plugins/check_by_ssh.c:72 plugins/check_dig.c:72 plugins/check_disk.c:167 21#: plugins/check_by_ssh.c:72 plugins/check_dig.c:72 plugins/check_disk.c:167
23#: plugins/check_dns.c:75 plugins/check_dummy.c:44 plugins/check_fping.c:73 22#: plugins/check_dns.c:75 plugins/check_dummy.c:44 plugins/check_fping.c:73
24#: plugins/check_game.c:69 plugins/check_hpjd.c:89 plugins/check_http.c:149 23#: plugins/check_game.c:69 plugins/check_hpjd.c:89 plugins/check_http.c:149
25#: plugins/check_ldap.c:78 plugins/check_load.c:78 plugins/check_mrtgtraf.c:66 24#: plugins/check_ldap.c:92 plugins/check_load.c:78 plugins/check_mrtgtraf.c:66
26#: plugins/check_mysql.c:63 plugins/check_nagios.c:70 plugins/check_nt.c:120 25#: plugins/check_mysql.c:63 plugins/check_nagios.c:70 plugins/check_nt.c:120
27#: plugins/check_nwstat.c:125 plugins/check_overcr.c:89 26#: plugins/check_nwstat.c:125 plugins/check_overcr.c:89
28#: plugins/check_pgsql.c:140 plugins/check_ping.c:82 plugins/check_procs.c:124 27#: plugins/check_pgsql.c:140 plugins/check_ping.c:82 plugins/check_procs.c:124
@@ -63,15 +62,15 @@ msgid "SSH WARNING: could not open %s\n"
63msgstr "SSH WARNING: Konnte %s nicht öffnen\n" 62msgstr "SSH WARNING: Konnte %s nicht öffnen\n"
64 63
65#: plugins/check_by_ssh.c:216 plugins/check_dig.c:217 plugins/check_disk.c:441 64#: plugins/check_by_ssh.c:216 plugins/check_dig.c:217 plugins/check_disk.c:441
66#: plugins/check_dns.c:303 plugins/check_fping.c:245 plugins/check_game.c:202 65#: plugins/check_dns.c:315 plugins/check_fping.c:245 plugins/check_game.c:202
67#: plugins/check_hpjd.c:337 plugins/check_http.c:254 plugins/check_ldap.c:249 66#: plugins/check_hpjd.c:337 plugins/check_http.c:254 plugins/check_ldap.c:315
68#: plugins/check_load.c:227 plugins/check_mrtg.c:236 67#: plugins/check_load.c:227 plugins/check_mrtg.c:236
69#: plugins/check_mrtgtraf.c:263 plugins/check_mysql.c:215 68#: plugins/check_mrtgtraf.c:263 plugins/check_mysql.c:215
70#: plugins/check_overcr.c:335 plugins/check_pgsql.c:212 69#: plugins/check_overcr.c:335 plugins/check_pgsql.c:212
71#: plugins/check_ping.c:197 plugins/check_procs.c:346 70#: plugins/check_ping.c:197 plugins/check_procs.c:346
72#: plugins/check_radius.c:221 plugins/check_real.c:354 71#: plugins/check_radius.c:221 plugins/check_real.c:354
73#: plugins/check_smtp.c:374 plugins/check_snmp.c:401 plugins/check_ssh.c:113 72#: plugins/check_smtp.c:374 plugins/check_snmp.c:401 plugins/check_ssh.c:113
74#: plugins/check_swap.c:423 plugins/check_tcp.c:458 plugins/check_time.c:219 73#: plugins/check_swap.c:423 plugins/check_tcp.c:465 plugins/check_time.c:219
75#: plugins/check_udp.c:149 plugins/check_ups.c:484 plugins/check_users.c:143 74#: plugins/check_udp.c:149 plugins/check_ups.c:484 plugins/check_users.c:143
76#: plugins/check_ide_smart.c:209 plugins/negate.c:177 plugins/urlize.c:74 75#: plugins/check_ide_smart.c:209 plugins/negate.c:177 plugins/urlize.c:74
77#, c-format 76#, c-format
@@ -83,32 +82,32 @@ msgstr ""
83"\n" 82"\n"
84 83
85#: plugins/check_by_ssh.c:230 plugins/check_dig.c:266 plugins/check_disk.c:308 84#: plugins/check_by_ssh.c:230 plugins/check_dig.c:266 plugins/check_disk.c:308
86#: plugins/check_http.c:268 plugins/check_ldap.c:202 plugins/check_pgsql.c:223 85#: plugins/check_http.c:268 plugins/check_ldap.c:268 plugins/check_pgsql.c:223
87#: plugins/check_procs.c:357 plugins/check_radius.c:198 86#: plugins/check_procs.c:357 plugins/check_radius.c:198
88#: plugins/check_radius.c:270 plugins/check_snmp.c:447 plugins/check_ssh.c:127 87#: plugins/check_radius.c:270 plugins/check_snmp.c:447 plugins/check_ssh.c:127
89#: plugins/check_tcp.c:512 plugins/check_time.c:292 plugins/check_udp.c:182 88#: plugins/check_tcp.c:519 plugins/check_time.c:292 plugins/check_udp.c:182
90#: plugins/negate.c:190 89#: plugins/negate.c:190
91msgid "Timeout interval must be a positive integer" 90msgid "Timeout interval must be a positive integer"
92msgstr "Timeout interval muss ein positiver Integer sein" 91msgstr "Timeout interval muss ein positiver Integer sein"
93 92
94#: plugins/check_by_ssh.c:236 plugins/check_by_ssh.c:295 93#: plugins/check_by_ssh.c:236 plugins/check_by_ssh.c:295
95#: plugins/check_dig.c:231 plugins/check_dig.c:288 plugins/check_dns.c:327 94#: plugins/check_dig.c:231 plugins/check_dig.c:288 plugins/check_dns.c:339
96#: plugins/check_dns.c:336 plugins/check_fping.c:259 plugins/check_hpjd.c:324 95#: plugins/check_dns.c:348 plugins/check_fping.c:259 plugins/check_hpjd.c:324
97#: plugins/check_hpjd.c:349 plugins/check_mysql.c:190 96#: plugins/check_hpjd.c:349 plugins/check_mysql.c:190
98#: plugins/check_mysql.c:230 plugins/check_pgsql.c:241 97#: plugins/check_mysql.c:230 plugins/check_pgsql.c:241
99#: plugins/check_ping.c:270 plugins/check_ping.c:393 98#: plugins/check_ping.c:270 plugins/check_ping.c:393
100#: plugins/check_radius.c:235 plugins/check_real.c:302 99#: plugins/check_radius.c:235 plugins/check_real.c:302
101#: plugins/check_real.c:366 plugins/check_smtp.c:292 plugins/check_smtp.c:386 100#: plugins/check_real.c:366 plugins/check_smtp.c:292 plugins/check_smtp.c:386
102#: plugins/check_ssh.c:146 plugins/check_time.c:230 plugins/check_time.c:305 101#: plugins/check_ssh.c:146 plugins/check_tcp.c:489 plugins/check_time.c:230
103#: plugins/check_udp.c:163 plugins/check_udp.c:204 plugins/check_ups.c:492 102#: plugins/check_time.c:305 plugins/check_udp.c:163 plugins/check_udp.c:204
104#: plugins/check_ups.c:561 103#: plugins/check_ups.c:492 plugins/check_ups.c:561
105msgid "Invalid hostname/address" 104msgid "Invalid hostname/address"
106msgstr "Ungültige(r) Hostname/Adresse" 105msgstr "Ungültige(r) Hostname/Adresse"
107 106
108#: plugins/check_by_ssh.c:241 plugins/check_dig.c:239 107#: plugins/check_by_ssh.c:241 plugins/check_dig.c:239
109#: plugins/check_pgsql.c:247 plugins/check_radius.c:207 108#: plugins/check_pgsql.c:247 plugins/check_radius.c:207
110#: plugins/check_radius.c:243 plugins/check_real.c:315 109#: plugins/check_radius.c:243 plugins/check_real.c:315
111#: plugins/check_smtp.c:299 plugins/check_tcp.c:518 plugins/check_time.c:286 110#: plugins/check_smtp.c:299 plugins/check_tcp.c:525 plugins/check_time.c:286
112#: plugins/check_udp.c:188 111#: plugins/check_udp.c:188
113msgid "Port must be a positive integer" 112msgid "Port must be a positive integer"
114msgstr "Port muss ein positiver Integer sein" 113msgstr "Port muss ein positiver Integer sein"
@@ -128,15 +127,19 @@ msgstr "Kein remotecm"
128 127
129#: plugins/check_by_ssh.c:327 128#: plugins/check_by_ssh.c:327
130#, c-format 129#, c-format
131msgid "%s: In passive mode, you must provide a service name for each command.\n" 130msgid ""
132msgstr "%s: Im passive mode muss ein Servicename für jeden Befehl angegeben werden.\n" 131"%s: In passive mode, you must provide a service name for each command.\n"
132msgstr ""
133"%s: Im passive mode muss ein Servicename für jeden Befehl angegeben werden.\n"
133 134
134#: plugins/check_by_ssh.c:330 135#: plugins/check_by_ssh.c:330
135#, c-format 136#, c-format
136msgid "" 137msgid ""
137"%s: In passive mode, you must provide the host short name from the nagios " 138"%s: In passive mode, you must provide the host short name from the nagios "
138"configs.\n" 139"configs.\n"
139msgstr "%s: Im passive mode muss der \"host short name\" aus der Nagios Konfiguration angegeben werden\n" 140msgstr ""
141"%s: Im passive mode muss der \"host short name\" aus der Nagios "
142"Konfiguration angegeben werden\n"
140 143
141#: plugins/check_by_ssh.c:344 144#: plugins/check_by_ssh.c:344
142#, c-format 145#, c-format
@@ -164,7 +167,8 @@ msgstr ""
164" -2, --proto2\n" 167" -2, --proto2\n"
165" ssh anweisen Protokoll 2 zu verwenden\n" 168" ssh anweisen Protokoll 2 zu verwenden\n"
166" -S, --skiplines=n\n" 169" -S, --skiplines=n\n"
167" Ignoriere die ersten n Zeilen auf STDERR (um Logon Banner zu unterdrücken)\n" 170" Ignoriere die ersten n Zeilen auf STDERR (um Logon Banner zu "
171"unterdrücken)\n"
168" -f\n" 172" -f\n"
169" ssh anweisen fork zu nutzen statt ein tty zu erzeugen\n" 173" ssh anweisen fork zu nutzen statt ein tty zu erzeugen\n"
170 174
@@ -219,18 +223,6 @@ msgid ""
219"options)\n" 223"options)\n"
220msgstr "" 224msgstr ""
221 225
222#: plugins/check_by_ssh.c:396
223#, c-format
224msgid ""
225"\n"
226"$ check_by_ssh -H localhost -n lh -s c1:c2:c3 \\\n"
227" -C uptime -C uptime -C uptime -O /tmp/foo\n"
228"$ cat /tmp/foo\n"
229"[1080933700] PROCESS_SERVICE_CHECK_RESULT;flint;c1;0; up 2 days...\n"
230"[1080933700] PROCESS_SERVICE_CHECK_RESULT;flint;c2;0; up 2 days...\n"
231"[1080933700] PROCESS_SERVICE_CHECK_RESULT;flint;c3;0; up 2 days...\n"
232msgstr ""
233
234#: plugins/check_dig.c:130 226#: plugins/check_dig.c:130
235msgid "Server not found in ANSWER SECTION" 227msgid "Server not found in ANSWER SECTION"
236msgstr "Server nicht gefunden in ANSWER SECTION" 228msgstr "Server nicht gefunden in ANSWER SECTION"
@@ -243,8 +235,8 @@ msgstr "Keine ANSWER SECTION gefunden"
243msgid "dig returned an error status" 235msgid "dig returned an error status"
244msgstr "dig hat einen Fehler zurückgegeben" 236msgstr "dig hat einen Fehler zurückgegeben"
245 237
246#: plugins/check_dig.c:162 plugins/check_dns.c:205 plugins/check_dns.c:208 238#: plugins/check_dig.c:162 plugins/check_dns.c:209 plugins/check_dns.c:212
247#: plugins/check_dns.c:211 239#: plugins/check_dns.c:215
248msgid " Probably a non-existent host/domain" 240msgid " Probably a non-existent host/domain"
249msgstr "nicht existierender Host/Domain" 241msgstr "nicht existierender Host/Domain"
250 242
@@ -414,92 +406,104 @@ msgstr "Warnung Plugin Fehler"
414msgid "DNS CRITICAL - '%s' returned empty host name string\n" 406msgid "DNS CRITICAL - '%s' returned empty host name string\n"
415msgstr "DNS CRITICAL - '%s' hat einen leeren Hostnamen zurückgegeben\n" 407msgstr "DNS CRITICAL - '%s' hat einen leeren Hostnamen zurückgegeben\n"
416 408
417#: plugins/check_dns.c:167 409#: plugins/check_dns.c:171
418msgid "nslookup returned error status" 410msgid "nslookup returned error status"
419msgstr "nslookup hat einen Fehler zurückgegeben" 411msgstr "nslookup hat einen Fehler zurückgegeben"
420 412
421#: plugins/check_dns.c:174 413#: plugins/check_dns.c:178
422#, c-format 414#, c-format
423msgid "DNS CRITICAL - '%s' output parsing exited with no address\n" 415msgid "DNS CRITICAL - '%s' output parsing exited with no address\n"
424msgstr "DNS CRITICAL - '%s' Ausgabeverarbeitung hat keine Adresse ergeben\n" 416msgstr "DNS CRITICAL - '%s' Ausgabeverarbeitung hat keine Adresse ergeben\n"
425 417
426#: plugins/check_dns.c:180 418#: plugins/check_dns.c:184
427#, c-format 419#, c-format
428msgid "expected %s but got %s" 420msgid "expected %s but got %s"
429msgstr "Erwartet: %s aber: %s erhalten" 421msgstr "Erwartet: %s aber: %s erhalten"
430 422
431#: plugins/check_dns.c:186 423#: plugins/check_dns.c:190
432#, c-format 424#, c-format
433msgid "server %s is not authoritative for %s" 425msgid "server %s is not authoritative for %s"
434msgstr "Server %s ist nicht authoritativ für %s" 426msgstr "Server %s ist nicht authoritativ für %s"
435 427
436#: plugins/check_dns.c:198 plugins/check_dummy.c:60 plugins/check_http.c:932 428#: plugins/check_dns.c:202 plugins/check_dummy.c:60 plugins/check_http.c:932
437#: plugins/check_http.c:1185 plugins/check_procs.c:279 429#: plugins/check_http.c:1185 plugins/check_procs.c:279
438#, c-format 430#, c-format
439msgid "OK" 431msgid "OK"
440msgstr "OK" 432msgstr "OK"
441 433
442#: plugins/check_dns.c:199 434#: plugins/check_dns.c:203
443#, c-format 435#, fuzzy, c-format
444msgid "%.3f seconds response time " 436msgid "%.3f second response time "
445msgstr "%.3f Sekunde Antwortzeit " 437msgid_plural "%.3f seconds response time "
438msgstr[0] "%.3f Sekunde Antwortzeit "
439msgstr[1] "%.3f Sekunde Antwortzeit "
446 440
447#: plugins/check_dns.c:200 441#: plugins/check_dns.c:204
448#, c-format 442#, c-format
449msgid "%s returns %s" 443msgid "%s returns %s"
450msgstr "%s hat %s zurückgegeben" 444msgstr "%s hat %s zurückgegeben"
451 445
452#: plugins/check_dns.c:204 446#: plugins/check_dns.c:208
453#, c-format 447#, c-format
454msgid "DNS WARNING - %s\n" 448msgid "DNS WARNING - %s\n"
455msgstr "DNS WARNING - %s\n" 449msgstr "DNS WARNING - %s\n"
456 450
457#: plugins/check_dns.c:207 451#: plugins/check_dns.c:211
458#, c-format 452#, c-format
459msgid "DNS CRITICAL - %s\n" 453msgid "DNS CRITICAL - %s\n"
460msgstr "DNS CRITICAL - %s\n" 454msgstr "DNS CRITICAL - %s\n"
461 455
462#: plugins/check_dns.c:210 456#: plugins/check_dns.c:214
463#, c-format 457#, c-format
464msgid "DNS UNKNOW - %s\n" 458msgid "DNS UNKNOW - %s\n"
465msgstr "DNS UNKNOW - %s\n" 459msgstr "DNS UNKNOW - %s\n"
466 460
467#: plugins/check_dns.c:230 461#: plugins/check_dns.c:234
468#, c-format 462#, c-format
469msgid "No response from DNS %s\n" 463msgid "No response from DNS %s\n"
470msgstr "Keine Antwort von DNS %s\n" 464msgstr "Keine Antwort von DNS %s\n"
471 465
472#: plugins/check_dns.c:234 466#: plugins/check_dns.c:238
473#, c-format 467#, c-format
474msgid "DNS %s has no records\n" 468msgid "DNS %s has no records\n"
475msgstr "Nameserver %s hat keine Datensätze\n" 469msgstr "Nameserver %s hat keine Datensätze\n"
476 470
477#: plugins/check_dns.c:241 471#: plugins/check_dns.c:245
478#, c-format 472#, c-format
479msgid "Connection to DNS %s was refused\n" 473msgid "Connection to DNS %s was refused\n"
480msgstr "Verbindung zum Nameserver %s wurde verweigert\n" 474msgstr "Verbindung zum Nameserver %s wurde verweigert\n"
481 475
482#: plugins/check_dns.c:247 476#: plugins/check_dns.c:249
477#, c-format
478msgid "Query was refused by DNS server at %s\n"
479msgstr ""
480
481#: plugins/check_dns.c:253
482#, c-format
483msgid "No information returned by DNS server at %s\n"
484msgstr ""
485
486#: plugins/check_dns.c:259
483#, c-format 487#, c-format
484msgid "Domain %s was not found by the server\n" 488msgid "Domain %s was not found by the server\n"
485msgstr "Domäne %s wurde vom Server nicht gefunden\n" 489msgstr "Domäne %s wurde vom Server nicht gefunden\n"
486 490
487#: plugins/check_dns.c:251 491#: plugins/check_dns.c:263
488msgid "Network is unreachable\n" 492msgid "Network is unreachable\n"
489msgstr "Netzwerk nicht erreichbar\n" 493msgstr "Netzwerk nicht erreichbar\n"
490 494
491#: plugins/check_dns.c:255 495#: plugins/check_dns.c:267
492#, c-format 496#, c-format
493msgid "DNS failure for %s\n" 497msgid "DNS failure for %s\n"
494msgstr "DNS Fehler für %s\n" 498msgstr "DNS Fehler für %s\n"
495 499
496#: plugins/check_dns.c:320 plugins/check_dns.c:330 plugins/check_dns.c:339 500#: plugins/check_dns.c:332 plugins/check_dns.c:342 plugins/check_dns.c:351
497#: plugins/check_dns.c:344 plugins/check_dns.c:357 plugins/check_dns.c:368 501#: plugins/check_dns.c:356 plugins/check_dns.c:369 plugins/check_dns.c:380
498#: plugins/check_game.c:219 plugins/check_game.c:227 502#: plugins/check_game.c:219 plugins/check_game.c:227
499msgid "Input buffer overflow\n" 503msgid "Input buffer overflow\n"
500msgstr "Eingabe-Pufferüberlauf\n" 504msgstr "Eingabe-Pufferüberlauf\n"
501 505
502#: plugins/check_dns.c:364 506#: plugins/check_dns.c:376
503#, c-format 507#, c-format
504msgid "" 508msgid ""
505"Invalid hostname/address: %s\n" 509"Invalid hostname/address: %s\n"
@@ -508,7 +512,7 @@ msgstr ""
508"Ungültige(r) Name/Adresse: %s\n" 512"Ungültige(r) Name/Adresse: %s\n"
509"\n" 513"\n"
510 514
511#: plugins/check_dns.c:396 515#: plugins/check_dns.c:408
512#, c-format 516#, c-format
513msgid "" 517msgid ""
514"This plugin uses the nslookup program to obtain the IP address\n" 518"This plugin uses the nslookup program to obtain the IP address\n"
@@ -523,7 +527,7 @@ msgstr ""
523"/etc/resolv.conf genutzt.\n" 527"/etc/resolv.conf genutzt.\n"
524"\n" 528"\n"
525 529
526#: plugins/check_dns.c:406 530#: plugins/check_dns.c:418
527#, c-format 531#, c-format
528msgid "" 532msgid ""
529"-H, --hostname=HOST\n" 533"-H, --hostname=HOST\n"
@@ -744,7 +748,8 @@ msgid ""
744"Net-snmp must be installed on the computer running the plugin.\n" 748"Net-snmp must be installed on the computer running the plugin.\n"
745"\n" 749"\n"
746msgstr "" 750msgstr ""
747"Dieses Plugin testet den STATUS eines HP Druckers mit einer JetDirect Karte.\n" 751"Dieses Plugin testet den STATUS eines HP Druckers mit einer JetDirect "
752"Karte.\n"
748"Net-snmp muss auf dem ausführenden Computer installiert sein.\n" 753"Net-snmp muss auf dem ausführenden Computer installiert sein.\n"
749"\n" 754"\n"
750 755
@@ -802,7 +807,7 @@ msgstr ""
802msgid "Could Not Compile Regular Expression: %s" 807msgid "Could Not Compile Regular Expression: %s"
803msgstr "" 808msgstr ""
804 809
805#: plugins/check_http.c:406 plugins/check_smtp.c:364 plugins/check_tcp.c:477 810#: plugins/check_http.c:406 plugins/check_smtp.c:364 plugins/check_tcp.c:484
806msgid "IPv6 support not available" 811msgid "IPv6 support not available"
807msgstr "IPv6 Unterstützung nicht vorhanden" 812msgstr "IPv6 Unterstützung nicht vorhanden"
808 813
@@ -980,7 +985,7 @@ msgstr "Fehlgeschlagen"
980msgid "CRITICAL - Cannot create SSL context.\n" 985msgid "CRITICAL - Cannot create SSL context.\n"
981msgstr "CRITICAL - Konnte SSL Kontext nicht erzeugen.\n" 986msgstr "CRITICAL - Konnte SSL Kontext nicht erzeugen.\n"
982 987
983#: plugins/check_http.c:1216 plugins/check_tcp.c:624 988#: plugins/check_http.c:1216 plugins/check_tcp.c:642
984#, c-format 989#, c-format
985msgid "CRITICAL - Cannot initiate SSL handshake.\n" 990msgid "CRITICAL - Cannot initiate SSL handshake.\n"
986msgstr "CRITICAL - Konnte SSL Handshake nicht starten.\n" 991msgstr "CRITICAL - Konnte SSL Handshake nicht starten.\n"
@@ -1149,57 +1154,44 @@ msgid ""
1149"the certificate is expired.\n" 1154"the certificate is expired.\n"
1150msgstr "" 1155msgstr ""
1151 1156
1152#: plugins/check_http.c:1493 1157#: plugins/check_ldap.c:112
1153#, c-format
1154msgid ""
1155"Usage: %s -H <vhost> | -I <IP-address>) [-u <uri>] [-p <port>]\n"
1156" [-w <warn time>] [-c <critical time>] [-t <timeout>] [-L]\n"
1157" [-a auth] [-f <ok | warn | critcal | follow>] [-e "
1158"<expect>]\n"
1159" [-s string] [-l] [-r <regex> | -R <case-insensitive "
1160"regex>]\n"
1161" [-P string] [-m min_pg_size] [-4|-6] [-N] [-M <age>]\n"
1162" [-A string] [-k string]\n"
1163msgstr ""
1164
1165#: plugins/check_ldap.c:92
1166#, c-format 1158#, c-format
1167msgid "Could not connect to the server at port %i\n" 1159msgid "Could not connect to the server at port %i\n"
1168msgstr "" 1160msgstr ""
1169 1161
1170#: plugins/check_ldap.c:100 1162#: plugins/check_ldap.c:121
1171#, c-format 1163#, c-format
1172msgid "Could not set protocol version %d\n" 1164msgid "Could not set protocol version %d\n"
1173msgstr "" 1165msgstr ""
1174 1166
1175#: plugins/check_ldap.c:108 1167#: plugins/check_ldap.c:174
1176#, c-format 1168#, c-format
1177msgid "Could not bind to the ldap-server\n" 1169msgid "Could not bind to the ldap-server\n"
1178msgstr "" 1170msgstr ""
1179 1171
1180#: plugins/check_ldap.c:116 1172#: plugins/check_ldap.c:182
1181#, c-format 1173#, c-format
1182msgid "Could not search/find objectclasses in %s\n" 1174msgid "Could not search/find objectclasses in %s\n"
1183msgstr "" 1175msgstr ""
1184 1176
1185#: plugins/check_ldap.c:139 1177#: plugins/check_ldap.c:205
1186#, c-format 1178#, c-format
1187msgid "LDAP %s - %.3f seconds response time|%s\n" 1179msgid "LDAP %s - %.3f seconds response time|%s\n"
1188msgstr "" 1180msgstr ""
1189 1181
1190#: plugins/check_ldap.c:245 plugins/check_ping.c:221 plugins/check_ssh.c:138 1182#: plugins/check_ldap.c:311 plugins/check_ping.c:221 plugins/check_ssh.c:138
1191msgid "IPv6 support not available\n" 1183msgid "IPv6 support not available\n"
1192msgstr "" 1184msgstr ""
1193 1185
1194#: plugins/check_ldap.c:269 1186#: plugins/check_ldap.c:335
1195msgid "please specify the host name\n" 1187msgid "please specify the host name\n"
1196msgstr "" 1188msgstr ""
1197 1189
1198#: plugins/check_ldap.c:272 1190#: plugins/check_ldap.c:338
1199msgid "please specify the LDAP base\n" 1191msgid "please specify the LDAP base\n"
1200msgstr "" 1192msgstr ""
1201 1193
1202#: plugins/check_ldap.c:299 1194#: plugins/check_ldap.c:365
1203#, c-format 1195#, c-format
1204msgid "" 1196msgid ""
1205" -a [--attr]\n" 1197" -a [--attr]\n"
@@ -1212,7 +1204,7 @@ msgid ""
1212" ldap password (if required)\n" 1204" ldap password (if required)\n"
1213msgstr "" 1205msgstr ""
1214 1206
1215#: plugins/check_ldap.c:310 1207#: plugins/check_ldap.c:376
1216#, c-format 1208#, c-format
1217msgid "" 1209msgid ""
1218" -2 [--ver2]\n" 1210" -2 [--ver2]\n"
@@ -1662,7 +1654,8 @@ msgstr ""
1662 1654
1663#: plugins/check_nt.c:270 1655#: plugins/check_nt.c:270
1664#, c-format 1656#, c-format
1665msgid "Memory usage: total:%.2f Mb - used: %.2f Mb (%.0f%%) - free: %.2f Mb (%.0f%%)" 1657msgid ""
1658"Memory usage: total:%.2f Mb - used: %.2f Mb (%.0f%%) - free: %.2f Mb (%.0f%%)"
1666msgstr "" 1659msgstr ""
1667 1660
1668#: plugins/check_nt.c:273 1661#: plugins/check_nt.c:273
@@ -2201,7 +2194,7 @@ msgstr ""
2201msgid " %s - database %s (%d sec.)|%s\n" 2194msgid " %s - database %s (%d sec.)|%s\n"
2202msgstr "" 2195msgstr ""
2203 2196
2204#: plugins/check_pgsql.c:229 plugins/check_pgsql.c:235 plugins/check_tcp.c:487 2197#: plugins/check_pgsql.c:229 plugins/check_pgsql.c:235 plugins/check_tcp.c:494
2205#: plugins/check_time.c:267 plugins/check_time.c:279 plugins/check_udp.c:168 2198#: plugins/check_time.c:267 plugins/check_time.c:279 plugins/check_udp.c:168
2206msgid "Critical threshold must be a positive integer" 2199msgid "Critical threshold must be a positive integer"
2207msgstr "Critical threshold muss ein positiver Integer sein" 2200msgstr "Critical threshold muss ein positiver Integer sein"
@@ -2221,6 +2214,49 @@ msgid ""
2221"\n" 2214"\n"
2222msgstr "" 2215msgstr ""
2223 2216
2217#: plugins/check_pgsql.c:406
2218#, c-format
2219msgid ""
2220" -d, --database=STRING\n"
2221" Database to check (default: %s)\n"
2222" -l, --logname = STRING\n"
2223" Login name of user\n"
2224" -p, --password = STRING\n"
2225" Password (BIG SECURITY ISSUE)\n"
2226msgstr ""
2227
2228#: plugins/check_pgsql.c:420
2229#, c-format
2230msgid ""
2231"\n"
2232"All parameters are optional.\n"
2233"\n"
2234"This plugin tests a PostgreSQL DBMS to determine whether it is active and\n"
2235"accepting queries. In its current operation, it simply connects to the\n"
2236"specified database, and then disconnects. If no database is specified, it\n"
2237"connects to the template1 database, which is present in every functioning \n"
2238"PostgreSQL DBMS.\n"
2239msgstr ""
2240
2241#: plugins/check_pgsql.c:427
2242#, c-format
2243msgid ""
2244"\n"
2245"The plugin will connect to a local postmaster if no host is specified. To\n"
2246"connect to a remote host, be sure that the remote postmaster accepts TCP/IP\n"
2247"connections (start the postmaster with the -i option).\n"
2248msgstr ""
2249
2250#: plugins/check_pgsql.c:431
2251#, c-format
2252msgid ""
2253"\n"
2254"Typically, the nagios user (unless the --logname option is used) should be\n"
2255"able to connect to the database without a password. The plugin can also "
2256"send\n"
2257"a password, but no effort is made to obsure or encrypt the password.\n"
2258msgstr ""
2259
2224#: plugins/check_ping.c:123 2260#: plugins/check_ping.c:123
2225msgid "CRITICAL - Could not interpret output from ping command\n" 2261msgid "CRITICAL - Could not interpret output from ping command\n"
2226msgstr "" 2262msgstr ""
@@ -2420,12 +2456,11 @@ msgid "%d crit, %d warn out of "
2420msgstr "" 2456msgstr ""
2421 2457
2422#: plugins/check_procs.c:291 2458#: plugins/check_procs.c:291
2423msgid "process" 2459#, c-format
2424msgstr "" 2460msgid "%d process"
2425 2461msgid_plural "%d processes"
2426#: plugins/check_procs.c:291 2462msgstr[0] ""
2427msgid "processes" 2463msgstr[1] ""
2428msgstr ""
2429 2464
2430#: plugins/check_procs.c:294 2465#: plugins/check_procs.c:294
2431#, c-format 2466#, c-format
@@ -2921,6 +2956,11 @@ msgid ""
2921")" 2956")"
2922msgstr "" 2957msgstr ""
2923 2958
2959#: plugins/check_snmp.c:659
2960#, c-format
2961msgid "Missing secname (%s), authpassword (%s), or privpasswd (%s)! \n"
2962msgstr ""
2963
2924#: plugins/check_snmp.c:668 2964#: plugins/check_snmp.c:668
2925#, c-format 2965#, c-format
2926msgid "Invalid SNMP version: %s\n" 2966msgid "Invalid SNMP version: %s\n"
@@ -3174,57 +3214,58 @@ msgid "CRITICAL - Generic check_tcp called with unknown service\n"
3174msgstr "" 3214msgstr ""
3175 3215
3176#: plugins/check_tcp.c:335 3216#: plugins/check_tcp.c:335
3177msgid "Invalid response from host\n" 3217#, fuzzy, c-format
3178msgstr "" 3218msgid "Unexpected response from host: %s\n"
3219msgstr "Keine Antwort von DNS %s\n"
3179 3220
3180#: plugins/check_tcp.c:374 3221#: plugins/check_tcp.c:380
3181#, c-format 3222#, c-format
3182msgid "%s %s%s - %.3f second response time on port %d" 3223msgid "%s %s%s - %.3f second response time on port %d"
3183msgstr "" 3224msgstr ""
3184 3225
3185#: plugins/check_tcp.c:482 3226#: plugins/check_tcp.c:504 plugins/check_time.c:248 plugins/check_time.c:272
3186msgid "invalid hostname/address"
3187msgstr "Ungültige(r) Hostname/Adresse"
3188
3189#: plugins/check_tcp.c:497 plugins/check_time.c:248 plugins/check_time.c:272
3190#: plugins/check_udp.c:175 3227#: plugins/check_udp.c:175
3191msgid "Warning threshold must be a positive integer" 3228msgid "Warning threshold must be a positive integer"
3192msgstr "Warning threshold muss ein positiver Integer sein" 3229msgstr "Warning threshold muss ein positiver Integer sein"
3193 3230
3194#: plugins/check_tcp.c:535 3231#: plugins/check_tcp.c:543
3195msgid "Maxbytes must be a positive integer" 3232msgid "Maxbytes must be a positive integer"
3196msgstr "Maxbytes muss ein positiver Integer sein" 3233msgstr "Maxbytes muss ein positiver Integer sein"
3197 3234
3198#: plugins/check_tcp.c:549 3235#: plugins/check_tcp.c:557
3199msgid "Refuse must be one of ok, warn, crit" 3236msgid "Refuse must be one of ok, warn, crit"
3200msgstr "" 3237msgstr ""
3201 3238
3202#: plugins/check_tcp.c:555 3239#: plugins/check_tcp.c:567
3240msgid "Mismatch must be one of ok, warn, crit"
3241msgstr ""
3242
3243#: plugins/check_tcp.c:573
3203msgid "Delay must be a positive integer" 3244msgid "Delay must be a positive integer"
3204msgstr "Delay muss ein positiver Integer sein" 3245msgstr "Delay muss ein positiver Integer sein"
3205 3246
3206#: plugins/check_tcp.c:575 3247#: plugins/check_tcp.c:593
3207msgid "You must provide a server address\n" 3248msgid "You must provide a server address\n"
3208msgstr "" 3249msgstr ""
3209 3250
3210#: plugins/check_tcp.c:595 3251#: plugins/check_tcp.c:613
3211#, c-format 3252#, c-format
3212msgid "CRITICAL - Cannot create SSL context.\n" 3253msgid "CRITICAL - Cannot create SSL context.\n"
3213msgstr "" 3254msgstr ""
3214 3255
3215#: plugins/check_tcp.c:618 3256#: plugins/check_tcp.c:636
3216#, c-format 3257#, c-format
3217msgid "CRITICAL - Cannot make SSL connection " 3258msgid "CRITICAL - Cannot make SSL connection "
3218msgstr "" 3259msgstr ""
3219 3260
3220#: plugins/check_tcp.c:745 3261#: plugins/check_tcp.c:763
3221#, c-format 3262#, c-format
3222msgid "" 3263msgid ""
3223"This plugin tests %s connections with the specified host.\n" 3264"This plugin tests %s connections with the specified host.\n"
3224"\n" 3265"\n"
3225msgstr "" 3266msgstr ""
3226 3267
3227#: plugins/check_tcp.c:756 3268#: plugins/check_tcp.c:774
3228#, c-format 3269#, c-format
3229msgid "" 3270msgid ""
3230" -s, --send=STRING\n" 3271" -s, --send=STRING\n"
@@ -3235,11 +3276,14 @@ msgid ""
3235" String to send server to initiate a clean close of the connection\n" 3276" String to send server to initiate a clean close of the connection\n"
3236msgstr "" 3277msgstr ""
3237 3278
3238#: plugins/check_tcp.c:764 3279#: plugins/check_tcp.c:782
3239#, c-format 3280#, c-format
3240msgid "" 3281msgid ""
3241" -r, --refuse=ok|warn|crit\n" 3282" -r, --refuse=ok|warn|crit\n"
3242" Accept tcp refusals with states ok, warn, crit (default: crit)\n" 3283" Accept tcp refusals with states ok, warn, crit (default: crit)\n"
3284" -M, --mismatch=ok|warn|crit\n"
3285" Accept expected string mismatches with states ok, warn, crit (default: "
3286"warn)\n"
3243" -j, --jail\n" 3287" -j, --jail\n"
3244" Hide output from TCP socket\n" 3288" Hide output from TCP socket\n"
3245" -m, --maxbytes=INTEGER\n" 3289" -m, --maxbytes=INTEGER\n"
@@ -3248,7 +3292,7 @@ msgid ""
3248" Seconds to wait between sending string and polling for response\n" 3292" Seconds to wait between sending string and polling for response\n"
3249msgstr "" 3293msgstr ""
3250 3294
3251#: plugins/check_tcp.c:775 3295#: plugins/check_tcp.c:795
3252#, c-format 3296#, c-format
3253msgid "" 3297msgid ""
3254" -D, --certificate=INTEGER\n" 3298" -D, --certificate=INTEGER\n"
@@ -3512,24 +3556,6 @@ msgstr ""
3512msgid "CRITICAL - SMART_READ_THRESHOLDS: %s\n" 3556msgid "CRITICAL - SMART_READ_THRESHOLDS: %s\n"
3513msgstr "" 3557msgstr ""
3514 3558
3515#: plugins/check_ide_smart.c:501
3516#, c-format
3517msgid ""
3518"Usage: %s [DEVICE] [OPTION]\n"
3519" -d, --device=DEVICE\n"
3520" Select device DEVICE\n"
3521" -i, --immediate\n"
3522" Perform immediately offline tests\n"
3523" -q, --quiet-check\n"
3524" Returns the number of failed tests\n"
3525" -1, --auto-on\n"
3526" Turn on automatic offline tests\n"
3527" -0, --auto-off\n"
3528" Turn off automatic offline tests\n"
3529" -n, --net-saint\n"
3530" Output suitable for Net Saint\n"
3531msgstr ""
3532
3533#: plugins/negate.c:244 3559#: plugins/negate.c:244
3534#, c-format 3560#, c-format
3535msgid "" 3561msgid ""
@@ -3599,3 +3625,5 @@ msgid ""
3599" urlize http://example.com/ \"check_http -H example.com -r 'two words'\"\n" 3625" urlize http://example.com/ \"check_http -H example.com -r 'two words'\"\n"
3600msgstr "" 3626msgstr ""
3601 3627
3628#~ msgid "invalid hostname/address"
3629#~ msgstr "Ungültige(r) Hostname/Adresse"
diff --git a/po/fr.po b/po/fr.po
index 40b8237..900ffb2 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-14 23:06+0100\n" 12"POT-Creation-Date: 2004-12-20 19:49+1100\n"
13"PO-Revision-Date: 2004-12-15 01:05+0100\n" 13"PO-Revision-Date: 2004-12-15 01:05+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 <fr@li.org>\n" 15"Language-Team: Français <fr@li.org>\n"
@@ -44,8 +44,7 @@ msgstr "impossible d'obtenir le signal SIGALRM"
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:90
47#, c-format 47#, fuzzy, c-format
48#, fuzzy
49msgid "Could not open pipe: %s\n" 48msgid "Could not open pipe: %s\n"
50msgstr "Impossible d'ouvrir le pipe: %s\n" 49msgstr "Impossible d'ouvrir le pipe: %s\n"
51 50
@@ -129,8 +128,10 @@ msgstr "Pas de commande distante"
129 128
130#: plugins/check_by_ssh.c:327 129#: plugins/check_by_ssh.c:327
131#, c-format 130#, c-format
132msgid "%s: In passive mode, you must provide a service name for each command.\n" 131msgid ""
133msgstr "%s: En mode passif, vous devez fournir un service pour chaque commande.\n" 132"%s: In passive mode, you must provide a service name for each command.\n"
133msgstr ""
134"%s: En mode passif, vous devez fournir un service pour chaque commande.\n"
134 135
135#: plugins/check_by_ssh.c:330 136#: plugins/check_by_ssh.c:330
136#, c-format 137#, c-format
@@ -214,11 +215,13 @@ msgid ""
214"execute additional commands as proxy\n" 215"execute additional commands as proxy\n"
215msgstr "" 216msgstr ""
216"\n" 217"\n"
217"L'utilisation la plus courantes est de se référer à une identité locale avec\n" 218"L'utilisation la plus courantes est de se référer à une identité locale "
219"avec\n"
218"l'option -i. Dans ce mode, l'identité doit avoir une phrase nulle\n" 220"l'option -i. Dans ce mode, l'identité doit avoir une phrase nulle\n"
219"et la clef publique doit être listée dans les authorized_keys\n" 221"et la clef publique doit être listée dans les authorized_keys\n"
220"sur l'hôte distant. Habituellement la clef sera restreinte a l'exécution\n" 222"sur l'hôte distant. Habituellement la clef sera restreinte a l'exécution\n"
221"d'une seule commande sur l'hĂ´te distant. Si le serveur SSH lit les arguments,\n" 223"d'une seule commande sur l'hĂ´te distant. Si le serveur SSH lit les "
224"arguments,\n"
222"le programme distantpeut être un agent qui peu exécuter des commandes\n" 225"le programme distantpeut être un agent qui peu exécuter des commandes\n"
223"supplémentaires comme un proxy\n" 226"supplémentaires comme un proxy\n"
224 227
@@ -231,8 +234,10 @@ msgid ""
231"options)\n" 234"options)\n"
232msgstr "" 235msgstr ""
233"\n" 236"\n"
234"Pour utiliser le mode passif, utilisez plusieurs fois l'option '-C',and les options\n" 237"Pour utiliser le mode passif, utilisez plusieurs fois l'option '-C',and les "
235"-O, -s, n (l'ordre des services doit correspondre les différentes options '-C'\n" 238"options\n"
239"-O, -s, n (l'ordre des services doit correspondre les différentes options '-"
240"C'\n"
236 241
237#: plugins/check_dig.c:130 242#: plugins/check_dig.c:130
238msgid "Server not found in ANSWER SECTION" 243msgid "Server not found in ANSWER SECTION"
@@ -310,8 +315,8 @@ msgid ""
310"lu warn%%:%.0f%% crit%%:%.0f%%" 315"lu warn%%:%.0f%% crit%%:%.0f%%"
311msgstr "" 316msgstr ""
312"%s\n" 317"%s\n"
313"%.0f de %.0f %s (%.0f%%) libre sur %s (type %s monté sur %s) alerte:%lu crit:%" 318"%.0f de %.0f %s (%.0f%%) libre sur %s (type %s monté sur %s) alerte:%lu crit:"
314"lu alerte%%:%.0f%% crit%%:%.0f%%" 319"%lu alerte%%:%.0f%% crit%%:%.0f%%"
315 320
316#: plugins/check_disk.c:233 321#: plugins/check_disk.c:233
317#, c-format 322#, c-format
@@ -441,7 +446,8 @@ msgstr ""
441" -x, --exclude_device=PATH <STRING>\n" 446" -x, --exclude_device=PATH <STRING>\n"
442" Ignorer le périphérique (marche seulement si -p est spécifié)\n" 447" Ignorer le périphérique (marche seulement si -p est spécifié)\n"
443" -X, --exclude-type=TYPE <STRING>\n" 448" -X, --exclude-type=TYPE <STRING>\n"
444" Ignorer tout les types de systèmes de fichier spécifiés (peut être répété)\n" 449" Ignorer tout les types de systèmes de fichier spécifiés (peut être "
450"répété)\n"
445" -M, --mountpoint\n" 451" -M, --mountpoint\n"
446" Affiche seulement les points de montage au lieu de la partition\n" 452" Affiche seulement les points de montage au lieu de la partition\n"
447" -e, --errors-only\n" 453" -e, --errors-only\n"
@@ -687,12 +693,14 @@ msgstr ""
687#: plugins/check_fping.c:327 693#: plugins/check_fping.c:327
688#, c-format 694#, c-format
689msgid "%s: Only one threshold may be packet loss (%s)\n" 695msgid "%s: Only one threshold may be packet loss (%s)\n"
690msgstr "%s: Seulement un seuil peut être utilisé pour les pertes de paquets (%s)\n" 696msgstr ""
697"%s: Seulement un seuil peut être utilisé pour les pertes de paquets (%s)\n"
691 698
692#: plugins/check_fping.c:331 699#: plugins/check_fping.c:331
693#, c-format 700#, c-format
694msgid "%s: Only one threshold must be packet loss (%s)\n" 701msgid "%s: Only one threshold must be packet loss (%s)\n"
695msgstr "%s: Seulement un seuil doit être utilisé pour les pertes de paquets (%s)\n" 702msgstr ""
703"%s: Seulement un seuil doit être utilisé pour les pertes de paquets (%s)\n"
696 704
697#: plugins/check_fping.c:364 705#: plugins/check_fping.c:364
698#, c-format 706#, c-format
@@ -704,7 +712,8 @@ msgid ""
704msgstr "" 712msgstr ""
705"Ce plugin va utiliser la commande /bin/fping pour pinger l'hĂ´te\n" 713"Ce plugin va utiliser la commande /bin/fping pour pinger l'hĂ´te\n"
706"spécifié pour une vérification rapide.\n" 714"spécifié pour une vérification rapide.\n"
707"Veuillez noter qu'il est nécessaire de mettre le flag suid sur le fichier fping.\n" 715"Veuillez noter qu'il est nécessaire de mettre le flag suid sur le fichier "
716"fping.\n"
708"\n" 717"\n"
709 718
710#: plugins/check_fping.c:373 719#: plugins/check_fping.c:373
@@ -755,8 +764,7 @@ msgid "This plugin tests game server connections with the specified host."
755msgstr "Le plugin teste la connection au serveur de jeux avec l'hôte spécifié." 764msgstr "Le plugin teste la connection au serveur de jeux avec l'hôte spécifié."
756 765
757#: plugins/check_game.c:311 766#: plugins/check_game.c:311
758#, c-format 767#, fuzzy, c-format
759#, fuzzy
760msgid "" 768msgid ""
761"<game> = Game type that is recognised by qstat (without the leading " 769"<game> = Game type that is recognised by qstat (without the leading "
762"dash)\n" 770"dash)\n"
@@ -766,7 +774,8 @@ msgid ""
766" [map_field] = Field number in raw qstat output that contains map name\n" 774" [map_field] = Field number in raw qstat output that contains map name\n"
767" [ping_field] = Field number in raw qstat output that contains ping time\n" 775" [ping_field] = Field number in raw qstat output that contains ping time\n"
768msgstr "" 776msgstr ""
769"<game> = Type de jeux qui est reconnu par qstat (sans le tiret de début)\n" 777"<game> = Type de jeux qui est reconnu par qstat (sans le tiret de "
778"début)\n"
770"<ip_address> = L'adresse IP de l'hĂ´te qui herberge le serveur de jeu\n" 779"<ip_address> = L'adresse IP de l'hĂ´te qui herberge le serveur de jeu\n"
771" [port] = Port optionnel sur lequel se connecter\n" 780" [port] = Port optionnel sur lequel se connecter\n"
772" [game_field] = Numéro du champ qui contient le nom du jeu\n" 781" [game_field] = Numéro du champ qui contient le nom du jeu\n"
@@ -787,9 +796,11 @@ msgid ""
787msgstr "" 796msgstr ""
788"\n" 797"\n"
789"Notes:\n" 798"Notes:\n"
790"- Ce plugin utilise la commande 'qstat', l'outil populaire pour vérifier l'état des serveurs de jeux.\n" 799"- Ce plugin utilise la commande 'qstat', l'outil populaire pour vérifier "
800"l'Ă©tat des serveurs de jeux.\n"
791" Si vous ne l'avez pas installé, vous pourrez le télécharger depuis\n" 801" Si vous ne l'avez pas installé, vous pourrez le télécharger depuis\n"
792" http://www.activesw.com/people/steve/qstat.html avant de pouvoir utiliser ce plugin.\n" 802" http://www.activesw.com/people/steve/qstat.html avant de pouvoir utiliser "
803"ce plugin.\n"
793 804
794#: plugins/check_hpjd.c:224 805#: plugins/check_hpjd.c:224
795msgid "Paper Jam" 806msgid "Paper Jam"
@@ -1064,7 +1075,8 @@ msgstr "INCONNU - Impossible de définir l'endroit de la relocation - %s%s\n"
1064#: plugins/check_http.c:1129 1075#: plugins/check_http.c:1129
1065#, c-format 1076#, c-format
1066msgid "WARNING - maximum redirection depth %d exceeded - %s://%s:%d%s%s\n" 1077msgid "WARNING - maximum redirection depth %d exceeded - %s://%s:%d%s%s\n"
1067msgstr "ALERTE - le niveau maximum de redirection %d à été dépassé - %s://%s:%d%s%s\n" 1078msgstr ""
1079"ALERTE - le niveau maximum de redirection %d à été dépassé - %s://%s:%d%s%s\n"
1068 1080
1069#: plugins/check_http.c:1137 1081#: plugins/check_http.c:1137
1070#, c-format 1082#, c-format
@@ -1125,8 +1137,11 @@ msgid ""
1125"\n" 1137"\n"
1126msgstr "" 1138msgstr ""
1127"Ce plugin teste le service HHTP sur l'hôte spécifié. Il peut tester \n" 1139"Ce plugin teste le service HHTP sur l'hôte spécifié. Il peut tester \n"
1128"la version normale (http) et la version sécurisée (https), suivre des redirections,\n chercher pour des chaînes de caractères et des expressions régulières, \n" 1140"la version normale (http) et la version sécurisée (https), suivre des "
1129"vérifier les temps de connection, et avertir lors de l'expiration des certificats.\n" 1141"redirections,\n"
1142" chercher pour des chaînes de caractères et des expressions régulières, \n"
1143"vérifier les temps de connection, et avertir lors de l'expiration des "
1144"certificats.\n"
1130"\n" 1145"\n"
1131 1146
1132#: plugins/check_http.c:1383 1147#: plugins/check_http.c:1383
@@ -1249,8 +1264,7 @@ msgstr ""
1249"est toujours valide pour le nombre de jours spécifiés.\n" 1264"est toujours valide pour le nombre de jours spécifiés.\n"
1250 1265
1251#: plugins/check_http.c:1469 1266#: plugins/check_http.c:1469
1252#, c-format 1267#, fuzzy, c-format
1253#, fuzzy
1254msgid "" 1268msgid ""
1255"\n" 1269"\n"
1256"CHECK CONTENT: check_http -w 5 -c 10 --ssl www.verisign.com\n" 1270"CHECK CONTENT: check_http -w 5 -c 10 --ssl www.verisign.com\n"
@@ -1265,8 +1279,10 @@ msgstr ""
1265"\n" 1279"\n"
1266"CHECK CONTENT: check_http -w 5 -c 10 --ssl www.verisign.com\n" 1280"CHECK CONTENT: check_http -w 5 -c 10 --ssl www.verisign.com\n"
1267"\n" 1281"\n"
1268"Quand le server 'www.verisign.com' renvoie son contenu dans les 5 secondes,un\n" 1282"Quand le server 'www.verisign.com' renvoie son contenu dans les 5 secondes,"
1269"STATE_OK sera renvoyé. Quand le server renvoie son contenu, mais dépasse les\n" 1283"un\n"
1284"STATE_OK sera renvoyé. Quand le server renvoie son contenu, mais dépasse "
1285"les\n"
1270"5 secondes, un STATE_WARNING sera retourné. Qaund une erreur se produit un\n" 1286"5 secondes, un STATE_WARNING sera retourné. Qaund une erreur se produit un\n"
1271"STATE_CRITICAL sera retourné.\n" 1287"STATE_CRITICAL sera retourné.\n"
1272"\n" 1288"\n"
@@ -1286,9 +1302,12 @@ msgid ""
1286msgstr "" 1302msgstr ""
1287"CHECK CERTIFICATE: check_http www.verisign.com -C 14\n" 1303"CHECK CERTIFICATE: check_http www.verisign.com -C 14\n"
1288"\n" 1304"\n"
1289"Quand le certificat de 'www.verisign.com' est valide pour plus de 14 jours, un\n" 1305"Quand le certificat de 'www.verisign.com' est valide pour plus de 14 jours, "
1290"état STATE_OK est renvoyé. Quand le certificat est valide pour moins de 14 jours\n" 1306"un\n"
1291"un état STATE_WARNING est renvoyé. un état STATE_CRITICAL est renvoyé quand le certificat est expiré.\n" 1307"état STATE_OK est renvoyé. Quand le certificat est valide pour moins de 14 "
1308"jours\n"
1309"un état STATE_WARNING est renvoyé. un état STATE_CRITICAL est renvoyé quand "
1310"le certificat est expiré.\n"
1292 1311
1293#: plugins/check_ldap.c:112 1312#: plugins/check_ldap.c:112
1294#, c-format 1313#, c-format
@@ -1398,45 +1417,58 @@ msgstr "Le seuil critique doit ĂŞtre un nombre Ă  virgule flottante!\n"
1398 1417
1399#: plugins/check_load.c:273 1418#: plugins/check_load.c:273
1400msgid "Warning threshold for 1-minute load average is not specified\n" 1419msgid "Warning threshold for 1-minute load average is not specified\n"
1401msgstr "Le seuil d'alerte pour la charge système après 1 minute n'est pas spécifié\n" 1420msgstr ""
1421"Le seuil d'alerte pour la charge système après 1 minute n'est pas spécifié\n"
1402 1422
1403#: plugins/check_load.c:275 1423#: plugins/check_load.c:275
1404msgid "Warning threshold for 5-minute load average is not specified\n" 1424msgid "Warning threshold for 5-minute load average is not specified\n"
1405msgstr "Le seuil d'alerte pour la charge système après 5 minutes n'est pas spécifié\n" 1425msgstr ""
1426"Le seuil d'alerte pour la charge système après 5 minutes n'est pas spécifié\n"
1406 1427
1407#: plugins/check_load.c:277 1428#: plugins/check_load.c:277
1408msgid "Warning threshold for 15-minute load average is not specified\n" 1429msgid "Warning threshold for 15-minute load average is not specified\n"
1409msgstr "Le seuil d'alerte pour la charge système après 15 minutes n'est pas spécifié\n" 1430msgstr ""
1431"Le seuil d'alerte pour la charge système après 15 minutes n'est pas "
1432"spécifié\n"
1410 1433
1411#: plugins/check_load.c:279 1434#: plugins/check_load.c:279
1412msgid "Critical threshold for 1-minute load average is not specified\n" 1435msgid "Critical threshold for 1-minute load average is not specified\n"
1413msgstr "Le seuil critique pour la charge système après 1 minute n'est pas spécifié\n" 1436msgstr ""
1437"Le seuil critique pour la charge système après 1 minute n'est pas spécifié\n"
1414 1438
1415#: plugins/check_load.c:281 1439#: plugins/check_load.c:281
1416msgid "Critical threshold for 5-minute load average is not specified\n" 1440msgid "Critical threshold for 5-minute load average is not specified\n"
1417msgstr "Le seuil critique pour la charge système après 5 minutes n'est pas spécifié\n" 1441msgstr ""
1442"Le seuil critique pour la charge système après 5 minutes n'est pas spécifié\n"
1418 1443
1419#: plugins/check_load.c:283 1444#: plugins/check_load.c:283
1420msgid "Critical threshold for 15-minute load average is not specified\n" 1445msgid "Critical threshold for 15-minute load average is not specified\n"
1421msgstr "Le seuil critique pour la charge système après 15 minute n'est pas spécifié\n" 1446msgstr ""
1447"Le seuil critique pour la charge système après 15 minute n'est pas spécifié\n"
1422 1448
1423#: plugins/check_load.c:285 1449#: plugins/check_load.c:285
1424msgid "" 1450msgid ""
1425"Parameter inconsistency: 1-minute \"warning load\" greater than \"critical " 1451"Parameter inconsistency: 1-minute \"warning load\" greater than \"critical "
1426"load\".\n" 1452"load\".\n"
1427msgstr "Arguments Incorrects: 1-minute \"warning load\" est plus grand que \"critical load\".\n" 1453msgstr ""
1454"Arguments Incorrects: 1-minute \"warning load\" est plus grand que "
1455"\"critical load\".\n"
1428 1456
1429#: plugins/check_load.c:287 1457#: plugins/check_load.c:287
1430msgid "" 1458msgid ""
1431"Parameter inconsistency: 5-minute \"warning load\" greater than \"critical " 1459"Parameter inconsistency: 5-minute \"warning load\" greater than \"critical "
1432"load\".\n" 1460"load\".\n"
1433msgstr "Arguments Incorrects: 5-minute \"warning load\" est plus grand que \"critical load\".\n" 1461msgstr ""
1462"Arguments Incorrects: 5-minute \"warning load\" est plus grand que "
1463"\"critical load\".\n"
1434 1464
1435#: plugins/check_load.c:289 1465#: plugins/check_load.c:289
1436msgid "" 1466msgid ""
1437"Parameter inconsistency: 15-minute \"warning load\" greater than \"critical " 1467"Parameter inconsistency: 15-minute \"warning load\" greater than \"critical "
1438"load\".\n" 1468"load\".\n"
1439msgstr "Arguments Incorrects: 15-minute \"warning load\" est plus grand que \"critical load\".\n" 1469msgstr ""
1470"Arguments Incorrects: 15-minute \"warning load\" est plus grand que "
1471"\"critical load\".\n"
1440 1472
1441#: plugins/check_load.c:303 1473#: plugins/check_load.c:303
1442#, c-format 1474#, c-format
@@ -1567,7 +1599,8 @@ msgid ""
1567" \"Bytes Per Second\", \"%% Utilization\")\n" 1599" \"Bytes Per Second\", \"%% Utilization\")\n"
1568msgstr "" 1600msgstr ""
1569" -l, --label=STRING\n" 1601" -l, --label=STRING\n"
1570" Label de type pour les données (Exemples: Conns, \"Charge processeur\", Entrée, Sortie)\n" 1602" Label de type pour les données (Exemples: Conns, \"Charge processeur\", "
1603"Entrée, Sortie)\n"
1571" -u, --units=STRING\n" 1604" -u, --units=STRING\n"
1572" Label optionnel pour les données (Exemple: Paquets/Sec, Erreurs/Sec, \n" 1605" Label optionnel pour les données (Exemple: Paquets/Sec, Erreurs/Sec, \n"
1573" \"Bytes Par Secondes\", \"%% Utilisation\")\n" 1606" \"Bytes Par Secondes\", \"%% Utilisation\")\n"
@@ -1581,8 +1614,10 @@ msgid ""
1581"status is returned and a warning message is printed.\n" 1614"status is returned and a warning message is printed.\n"
1582"\n" 1615"\n"
1583msgstr "" 1616msgstr ""
1584"Si la valeur dépasse le seuil défini dans <vwl>, un status ALERTE sera renvoyé.\n" 1617"Si la valeur dépasse le seuil défini dans <vwl>, un status ALERTE sera "
1585"Si la valeur dépasse le seuil défini dans <vcl>, un status CRITIQUE sera renvoyé\n" 1618"renvoyé.\n"
1619"Si la valeur dépasse le seuil défini dans <vcl>, un status CRITIQUE sera "
1620"renvoyé\n"
1586"Si les données dans le fichier de log sont plus vieux que <expire_minutes>, " 1621"Si les données dans le fichier de log sont plus vieux que <expire_minutes>, "
1587"un status ALERTE est renvoyé and un message d'alerte est affiché.\n" 1622"un status ALERTE est renvoyé and un message d'alerte est affiché.\n"
1588"\n" 1623"\n"
@@ -1795,8 +1830,12 @@ msgid ""
1795"by the <process_string> argument.\n" 1830"by the <process_string> argument.\n"
1796"\n" 1831"\n"
1797msgstr "" 1832msgstr ""
1798"Ce plugin essaye de vérifier l'état des processus Nagios sur la machine locale\n" 1833"Ce plugin essaye de vérifier l'état des processus Nagios sur la machine "
1799"Le plugin vérifiera si le Nagios status log n'est pa plus vieux que le nombre de minutes spécifiées par l'option <expire_minutes>. Il utilise la commande /bin/ps pour vérifier un processus dont le nom est donné par l'option <process_string>.\n" 1834"locale\n"
1835"Le plugin vérifiera si le Nagios status log n'est pa plus vieux que le "
1836"nombre de minutes spécifiées par l'option <expire_minutes>. Il utilise la "
1837"commande /bin/ps pour vérifier un processus dont le nom est donné par "
1838"l'option <process_string>.\n"
1800"\n" 1839"\n"
1801 1840
1802#: plugins/check_nagios.c:285 1841#: plugins/check_nagios.c:285
@@ -1812,7 +1851,8 @@ msgstr ""
1812"-F, --filename=FILE\n" 1851"-F, --filename=FILE\n"
1813" Nom du fichier de log Ă  verifier\n" 1852" Nom du fichier de log Ă  verifier\n"
1814"-e, --expires=INTEGER\n" 1853"-e, --expires=INTEGER\n"
1815" Nombre de secondes après lesquelles le fichier de log est considère trop ancien\n" 1854" Nombre de secondes après lesquelles le fichier de log est considère trop "
1855"ancien\n"
1816"-C, --command=STRING\n" 1856"-C, --command=STRING\n"
1817" Commande Ă  chercher dans la table des processus\n" 1857" Commande Ă  chercher dans la table des processus\n"
1818 1858
@@ -1870,7 +1910,8 @@ msgstr "Argument -l erroné"
1870#: plugins/check_nt.c:219 1910#: plugins/check_nt.c:219
1871#, c-format 1911#, c-format
1872msgid "%s:\\ - total: %.2f Gb - used: %.2f Gb (%.0f%%) - free %.2f Gb (%.0f%%)" 1912msgid "%s:\\ - total: %.2f Gb - used: %.2f Gb (%.0f%%) - free %.2f Gb (%.0f%%)"
1873msgstr "%s:\\ - total: %.2f Gb - utilisé: %.2f Gb (%.0f%%) - libre %.2f Gb (%.0f%%)" 1913msgstr ""
1914"%s:\\ - total: %.2f Gb - utilisé: %.2f Gb (%.0f%%) - libre %.2f Gb (%.0f%%)"
1874 1915
1875#: plugins/check_nt.c:222 1916#: plugins/check_nt.c:222
1876#, c-format 1917#, c-format
@@ -1887,10 +1928,11 @@ msgstr "Pas de service/processus spécifié"
1887 1928
1888#: plugins/check_nt.c:270 1929#: plugins/check_nt.c:270
1889#, c-format 1930#, c-format
1890msgid "Memory usage: total:%.2f Mb - used: %.2f Mb (%.0f%%) - free: %.2f Mb (%.0f%%)" 1931msgid ""
1932"Memory usage: total:%.2f Mb - used: %.2f Mb (%.0f%%) - free: %.2f Mb (%.0f%%)"
1891msgstr "" 1933msgstr ""
1892"Mémoire utilisée: total:%.2f Mb - utilisée: %.2f Mb (%.0f%%) - libre: %.2f Mb " 1934"Mémoire utilisée: total:%.2f Mb - utilisée: %.2f Mb (%.0f%%) - libre: %.2f "
1893"(%.0f%%)" 1935"Mb (%.0f%%)"
1894 1936
1895#: plugins/check_nt.c:273 1937#: plugins/check_nt.c:273
1896#, c-format 1938#, c-format
@@ -2063,7 +2105,8 @@ msgid ""
2063" - Critical thresholds should be lower than warning thresholds\n" 2105" - Critical thresholds should be lower than warning thresholds\n"
2064msgstr "" 2106msgstr ""
2065"Notes:\n" 2107"Notes:\n"
2066" - Le service NSClient doit tourner sur le serveur Ă  surveiller pour obtenir des informations\n" 2108" - Le service NSClient doit tourner sur le serveur Ă  surveiller pour obtenir "
2109"des informations\n"
2067" (http://nsclient.ready2run.nl).\n" 2110" (http://nsclient.ready2run.nl).\n"
2068" - Les seuil critiques doivent ĂŞtre plus bas que les seuils d'alertes\n" 2111" - Les seuil critiques doivent ĂŞtre plus bas que les seuils d'alertes\n"
2069 2112
@@ -2256,8 +2299,7 @@ msgstr ""
2256"\n" 2299"\n"
2257 2300
2258#: plugins/check_nwstat.c:920 2301#: plugins/check_nwstat.c:920
2259#, c-format 2302#, fuzzy, c-format
2260#, fuzzy
2261msgid "" 2303msgid ""
2262" -v, --variable=STRING\n" 2304" -v, --variable=STRING\n"
2263" Variable to check. Valid variables include:\n" 2305" Variable to check. Valid variables include:\n"
@@ -2278,8 +2320,7 @@ msgstr ""
2278" UPTIME = server uptime\n" 2320" UPTIME = server uptime\n"
2279 2321
2280#: plugins/check_nwstat.c:930 2322#: plugins/check_nwstat.c:930
2281#, c-format 2323#, fuzzy, c-format
2282#, fuzzy
2283msgid "" 2324msgid ""
2284" LTCH = percent long term cache hits\n" 2325" LTCH = percent long term cache hits\n"
2285" CBUFF = current number of cache buffers\n" 2326" CBUFF = current number of cache buffers\n"
@@ -2361,7 +2402,8 @@ msgstr ""
2361 2402
2362#: plugins/check_overcr.c:110 2403#: plugins/check_overcr.c:110
2363msgid "Unknown error fetching load data\n" 2404msgid "Unknown error fetching load data\n"
2364msgstr "Erreur inconnue lors de la récupération des données de charge système\n" 2405msgstr ""
2406"Erreur inconnue lors de la récupération des données de charge système\n"
2365 2407
2366#: plugins/check_overcr.c:114 2408#: plugins/check_overcr.c:114
2367msgid "Invalid response from server - no load information\n" 2409msgid "Invalid response from server - no load information\n"
@@ -2455,7 +2497,9 @@ msgid ""
2455"\n" 2497"\n"
2456msgstr "" 2498msgstr ""
2457"Notes:\n" 2499"Notes:\n"
2458" - Pour toutes les options disponibles, le seuil critique doit toujours ĂŞtre plus\n grand que le seuil d'alerte SAUF pour l'option uptime\n" 2500" - Pour toutes les options disponibles, le seuil critique doit toujours ĂŞtre "
2501"plus\n"
2502" grand que le seuil d'alerte SAUF pour l'option uptime\n"
2459"\n" 2503"\n"
2460 2504
2461#: plugins/check_overcr.c:452 2505#: plugins/check_overcr.c:452
@@ -2545,7 +2589,8 @@ msgid ""
2545msgstr "" 2589msgstr ""
2546"\n" 2590"\n"
2547"Ce plugin va se connecter à une base de données locale si aucun hôte n'est \n" 2591"Ce plugin va se connecter à une base de données locale si aucun hôte n'est \n"
2548"spécifié. Pour se connecter à un ahôte distant, assurez vous que celui ci accepte \n" 2592"spécifié. Pour se connecter à un ahôte distant, assurez vous que celui ci "
2593"accepte \n"
2549"les connections TCP/IP (démarrez le postmaster avec l'option -i).\n" 2594"les connections TCP/IP (démarrez le postmaster avec l'option -i).\n"
2550 2595
2551#: plugins/check_pgsql.c:431 2596#: plugins/check_pgsql.c:431
@@ -2678,7 +2723,8 @@ msgid ""
2678"Use ping to check connection statistics for a remote host.\n" 2723"Use ping to check connection statistics for a remote host.\n"
2679"\n" 2724"\n"
2680msgstr "" 2725msgstr ""
2681"Utilise ping pour verifier les statistiques de connections d'un hĂ´te distant.\n" 2726"Utilise ping pour verifier les statistiques de connections d'un hĂ´te "
2727"distant.\n"
2682"\n" 2728"\n"
2683 2729
2684#: plugins/check_ping.c:505 2730#: plugins/check_ping.c:505
@@ -2868,8 +2914,7 @@ msgstr ""
2868"\n" 2914"\n"
2869 2915
2870#: plugins/check_procs.c:485 2916#: plugins/check_procs.c:485
2871#, c-format 2917#, fuzzy, c-format
2872#, fuzzy
2873msgid "" 2918msgid ""
2874"%s: metric must be one of PROCS, VSZ, RSS, CPU, ELAPSED!\n" 2919"%s: metric must be one of PROCS, VSZ, RSS, CPU, ELAPSED!\n"
2875"\n" 2920"\n"
@@ -2898,8 +2943,10 @@ msgid ""
2898"check.\n" 2943"check.\n"
2899"\n" 2944"\n"
2900msgstr "" 2945msgstr ""
2901"Vérifie tout les processus et génère un état ALERTE ou CRITIQUE si les mesures\n" 2946"Vérifie tout les processus et génère un état ALERTE ou CRITIQUE si les "
2902"spécifiées sont au dela des seuils précisés. Les mesures par défaut sont le \n" 2947"mesures\n"
2948"spécifiées sont au dela des seuils précisés. Les mesures par défaut sont "
2949"le \n"
2903"nombres de processus. Des filtres de recherches peuvent être utilisés pour \n" 2950"nombres de processus. Des filtres de recherches peuvent être utilisés pour \n"
2904"limiter la recherche.\n" 2951"limiter la recherche.\n"
2905 2952
@@ -3310,8 +3357,7 @@ msgid "Could not realloc() units\n"
3310msgstr "Impossible de réallouer des unités\n" 3357msgstr "Impossible de réallouer des unités\n"
3311 3358
3312#: plugins/check_snmp.c:651 3359#: plugins/check_snmp.c:651
3313#, c-format 3360#, fuzzy, c-format
3314#, fuzzy
3315msgid "" 3361msgid ""
3316"Missing secname (%s) or authpassword (%s) ! \n" 3362"Missing secname (%s) or authpassword (%s) ! \n"
3317")" 3363")"
@@ -3335,7 +3381,8 @@ msgid ""
3335"Check status of remote machines and obtain sustem information via SNMP\n" 3381"Check status of remote machines and obtain sustem information via SNMP\n"
3336"\n" 3382"\n"
3337msgstr "" 3383msgstr ""
3338"Verifie l'état des machines distantes et obtient l'information système via SNMP\n" 3384"Verifie l'état des machines distantes et obtient l'information système via "
3385"SNMP\n"
3339"\n" 3386"\n"
3340 3387
3341#: plugins/check_snmp.c:857 3388#: plugins/check_snmp.c:857
@@ -3426,7 +3473,8 @@ msgid ""
3426" http://net-snmp.sourceforge.net before you can use this plugin.\n" 3473" http://net-snmp.sourceforge.net before you can use this plugin.\n"
3427msgstr "" 3474msgstr ""
3428"\n" 3475"\n"
3429"- Ce plugin utilise la commande 'snmpget' inclus dans la distribution NET-SNMP\n" 3476"- Ce plugin utilise la commande 'snmpget' inclus dans la distribution NET-"
3477"SNMP\n"
3430"Si vous n'avez pas ce logiciel installé, vous devez le télécharger depuis \n" 3478"Si vous n'avez pas ce logiciel installé, vous devez le télécharger depuis \n"
3431"http://net-snmp.sourceforge.net avant de pouvoir utiliser ce plugin.\n" 3479"http://net-snmp.sourceforge.net avant de pouvoir utiliser ce plugin.\n"
3432 3480
@@ -3502,7 +3550,8 @@ msgid ""
3502"OpenSSH_3.9p1)\n" 3550"OpenSSH_3.9p1)\n"
3503msgstr "" 3551msgstr ""
3504" -r, --remote-version=STRING\n" 3552" -r, --remote-version=STRING\n"
3505" Etat d'alerte si la chaîne ne correspond pas à la version précisée (ex: OpenSSH_3.9p1)\n" 3553" Etat d'alerte si la chaîne ne correspond pas à la version précisée (ex: "
3554"OpenSSH_3.9p1)\n"
3506 3555
3507#: plugins/check_swap.c:145 3556#: plugins/check_swap.c:145
3508#, c-format 3557#, c-format
@@ -3583,8 +3632,11 @@ msgid ""
3583"real memory\n" 3632"real memory\n"
3584msgstr "" 3633msgstr ""
3585"\n" 3634"\n"
3586"Sur Solaris, si -a est spécifié, utilisez swap -l, au sinon utilisez swap -s.\n" 3635"Sur Solaris, si -a est spécifié, utilisez swap -l, au sinon utilisez swap -"
3587"Il aura des différences car swap -s compte la swap allouée et inclus la mémoire\n vive\n" 3636"s.\n"
3637"Il aura des différences car swap -s compte la swap allouée et inclus la "
3638"mémoire\n"
3639" vive\n"
3588 3640
3589#: plugins/check_swap.c:506 3641#: plugins/check_swap.c:506
3590#, c-format 3642#, c-format
@@ -3593,7 +3645,8 @@ msgid ""
3593"On AIX, if -a is specified, uses lsps -a, otherwise uses lsps -s.\n" 3645"On AIX, if -a is specified, uses lsps -a, otherwise uses lsps -s.\n"
3594msgstr "" 3646msgstr ""
3595"\n" 3647"\n"
3596"Sur AIX, si -a est spécifié, utilisez lsps -a, au sinon utilisez uses lsps -s.\n" 3648"Sur AIX, si -a est spécifié, utilisez lsps -a, au sinon utilisez uses lsps -"
3649"s.\n"
3597 3650
3598#: plugins/check_tcp.c:233 3651#: plugins/check_tcp.c:233
3599msgid "CRITICAL - Generic check_tcp called with unknown service\n" 3652msgid "CRITICAL - Generic check_tcp called with unknown service\n"
@@ -3806,7 +3859,8 @@ msgid ""
3806"\n" 3859"\n"
3807msgstr "" 3860msgstr ""
3808"Ce plugin teste le service UPS sur l'hôte spécifié.\n" 3861"Ce plugin teste le service UPS sur l'hôte spécifié.\n"
3809"Le logiciel Network UPS Tools de www.networkupstools.org doit fonctionner sur \n" 3862"Le logiciel Network UPS Tools de www.networkupstools.org doit fonctionner "
3863"sur \n"
3810"l'hĂ´te pour que ce plugin fonctionne.\n" 3864"l'hĂ´te pour que ce plugin fonctionne.\n"
3811"\n" 3865"\n"
3812 3866
@@ -3893,7 +3947,8 @@ msgid ""
3893"system and generates an error if the number exceeds the thresholds " 3947"system and generates an error if the number exceeds the thresholds "
3894"specified.\n" 3948"specified.\n"
3895msgstr "" 3949msgstr ""
3896"Ce plugin vérifie le nombre d'utilisateurs actuellement conncté sur le sytème\n" 3950"Ce plugin vérifie le nombre d'utilisateurs actuellement conncté sur le "
3951"sytème\n"
3897"local et génère une erreur si le nombre excède le seuil spécifié.\n" 3952"local et génère une erreur si le nombre excède le seuil spécifié.\n"
3898 3953
3899#: plugins/check_users.c:203 3954#: plugins/check_users.c:203
@@ -3923,12 +3978,14 @@ msgstr "CRITIQUE - SMART_READ_VALUES: %s\n"
3923#: plugins/check_ide_smart.c:363 3978#: plugins/check_ide_smart.c:363
3924#, c-format 3979#, c-format
3925msgid "CRITICAL - %d Harddrive PreFailure%cDetected! %d/%d tests failed.\n" 3980msgid "CRITICAL - %d Harddrive PreFailure%cDetected! %d/%d tests failed.\n"
3926msgstr "CRITIQUE - %d État de pré-panne %c Détecté! %d/%d les tests on échoués.\n" 3981msgstr ""
3982"CRITIQUE - %d État de pré-panne %c Détecté! %d/%d les tests on échoués.\n"
3927 3983
3928#: plugins/check_ide_smart.c:370 3984#: plugins/check_ide_smart.c:370
3929#, c-format 3985#, c-format
3930msgid "WARNING - %d Harddrive Advisor%s Detected. %d/%d tests failed.\n" 3986msgid "WARNING - %d Harddrive Advisor%s Detected. %d/%d tests failed.\n"
3931msgstr "ALERTE - %d État de pré-panne %s Détecté! %d/%d les tests on échoués.\n" 3987msgstr ""
3988"ALERTE - %d État de pré-panne %s Détecté! %d/%d les tests on échoués.\n"
3932 3989
3933#: plugins/check_ide_smart.c:377 3990#: plugins/check_ide_smart.c:377
3934#, c-format 3991#, c-format
@@ -3943,7 +4000,8 @@ msgstr "ERREUR - État '%d' inconnu. %d/%d les tests on réussi\n"
3943#: plugins/check_ide_smart.c:413 4000#: plugins/check_ide_smart.c:413
3944#, fuzzy, c-format 4001#, fuzzy, c-format
3945msgid "OffLineStatus=%d {%s}, AutoOffLine=%s, OffLineTimeout=%d minutes\n" 4002msgid "OffLineStatus=%d {%s}, AutoOffLine=%s, OffLineTimeout=%d minutes\n"
3946msgstr "Etat Hors Ligne=%d {%s}, Hors Ligne Auto=%s, OffLineTimeout=%d minutes\n" 4003msgstr ""
4004"Etat Hors Ligne=%d {%s}, Hors Ligne Auto=%s, OffLineTimeout=%d minutes\n"
3947 4005
3948#: plugins/check_ide_smart.c:419 4006#: plugins/check_ide_smart.c:419
3949#, c-format 4007#, c-format
@@ -4037,4 +4095,3 @@ msgid ""
4037"\n" 4095"\n"
4038" urlize http://example.com/ \"check_http -H example.com -r 'two words'\"\n" 4096" urlize http://example.com/ \"check_http -H example.com -r 'two words'\"\n"
4039msgstr "" 4097msgstr ""
4040