diff options
author | Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com> | 2023-09-07 14:08:21 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-07 14:08:21 (GMT) |
commit | 128910f79a92655bba65fffa426e1d8498bdeae3 (patch) | |
tree | eb44d60d0e27445ce7c2eb2a1d960053bd2e29c4 | |
parent | a6802bd5f50a5c12ed5bafa4fe9ee14fede7c1e1 (diff) | |
parent | 15d7ca8eb1edec26a44d361b57e53831f5c765f7 (diff) | |
download | monitoring-plugins-128910f79a92655bba65fffa426e1d8498bdeae3.tar.gz |
Merge branch 'master' into patch-chunk-nobodyrefs/pull/1901/head
-rw-r--r-- | .github/NPTest.cache | 5 | ||||
-rwxr-xr-x | .github/prepare_debian.sh | 13 | ||||
-rw-r--r-- | .github/workflows/codeql-analysis.yml | 2 | ||||
-rw-r--r-- | .github/workflows/test.yml | 8 | ||||
-rw-r--r-- | configure.ac | 19 | ||||
-rw-r--r-- | plugins/Makefile.am | 2 | ||||
-rw-r--r-- | plugins/check_radius.c | 2 | ||||
-rw-r--r-- | plugins/check_smtp.c | 57 | ||||
-rw-r--r-- | plugins/check_snmp.c | 63 | ||||
-rw-r--r-- | plugins/check_users.c | 37 | ||||
-rw-r--r-- | plugins/t/check_smtp.t | 40 | ||||
-rw-r--r-- | plugins/t/check_snmp.t | 68 | ||||
-rw-r--r-- | po/Makevars | 2 | ||||
-rw-r--r-- | po/de.po | 1544 | ||||
-rw-r--r-- | po/fr.po | 1544 | ||||
-rw-r--r-- | po/monitoring-plugins.pot | 1541 |
16 files changed, 272 insertions, 4675 deletions
diff --git a/.github/NPTest.cache b/.github/NPTest.cache index 232305a..d488d1b 100644 --- a/.github/NPTest.cache +++ b/.github/NPTest.cache | |||
@@ -25,8 +25,9 @@ | |||
25 | 'NP_HOST_TCP_POP' => 'pop.web.de', | 25 | 'NP_HOST_TCP_POP' => 'pop.web.de', |
26 | 'NP_HOST_TCP_PROXY' => 'localhost', | 26 | 'NP_HOST_TCP_PROXY' => 'localhost', |
27 | 'NP_HOST_TCP_SMTP' => 'localhost', | 27 | 'NP_HOST_TCP_SMTP' => 'localhost', |
28 | 'NP_HOST_TCP_SMTP_NOTLS' => '', | 28 | 'NP_HOST_TCP_SMTP_NOSTARTTLS' => '', |
29 | 'NP_HOST_TCP_SMTP_TLS' => '', | 29 | 'NP_HOST_TCP_SMTP_STARTTLS' => 'localhost', |
30 | 'NP_HOST_TCP_SMTP_TLS' => 'localhost', | ||
30 | 'NP_HOST_TLS_CERT' => 'localhost', | 31 | 'NP_HOST_TLS_CERT' => 'localhost', |
31 | 'NP_HOST_TLS_HTTP' => 'localhost', | 32 | 'NP_HOST_TLS_HTTP' => 'localhost', |
32 | 'NP_HOST_UDP_TIME' => 'none', | 33 | 'NP_HOST_UDP_TIME' => 'none', |
diff --git a/.github/prepare_debian.sh b/.github/prepare_debian.sh index 7f5592b..dcf778b 100755 --- a/.github/prepare_debian.sh +++ b/.github/prepare_debian.sh | |||
@@ -108,12 +108,7 @@ ssh -tt localhost </dev/null >/dev/null 2>/dev/null & | |||
108 | disown %1 | 108 | disown %1 |
109 | 109 | ||
110 | # snmpd | 110 | # snmpd |
111 | for DIR in /usr/share/snmp/mibs /usr/share/mibs; do | 111 | service snmpd stop |
112 | rm -f $DIR/ietf/SNMPv2-PDU \ | ||
113 | $DIR/ietf/IPSEC-SPD-MIB \ | ||
114 | $DIR/ietf/IPATM-IPMC-MIB \ | ||
115 | $DIR/iana/IANA-IPPM-METRICS-REGISTRY-MIB | ||
116 | done | ||
117 | mkdir -p /var/lib/snmp/mib_indexes | 112 | mkdir -p /var/lib/snmp/mib_indexes |
118 | sed -e 's/^agentaddress.*/agentaddress 127.0.0.1/' -i /etc/snmp/snmpd.conf | 113 | sed -e 's/^agentaddress.*/agentaddress 127.0.0.1/' -i /etc/snmp/snmpd.conf |
119 | service snmpd start | 114 | service snmpd start |
@@ -121,7 +116,11 @@ service snmpd start | |||
121 | # start cron, will be used by check_nagios | 116 | # start cron, will be used by check_nagios |
122 | cron | 117 | cron |
123 | 118 | ||
124 | # start postfix | 119 | # postfix |
120 | cat <<EOD >> /etc/postfix/master.cf | ||
121 | smtps inet n - n - - smtpd | ||
122 | -o smtpd_tls_wrappermode=yes | ||
123 | EOD | ||
125 | service postfix start | 124 | service postfix start |
126 | 125 | ||
127 | # start ftpd | 126 | # start ftpd |
diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 43b35d3..0317c8c 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml | |||
@@ -40,7 +40,7 @@ jobs: | |||
40 | 40 | ||
41 | steps: | 41 | steps: |
42 | - name: Checkout repository | 42 | - name: Checkout repository |
43 | uses: actions/checkout@v3 | 43 | uses: actions/checkout@v4 |
44 | 44 | ||
45 | # Initializes the CodeQL tools for scanning. | 45 | # Initializes the CodeQL tools for scanning. |
46 | - name: Initialize CodeQL | 46 | - name: Initialize CodeQL |
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9c84acc..77b09f4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml | |||
@@ -16,9 +16,9 @@ jobs: | |||
16 | runs-on: ubuntu-latest | 16 | runs-on: ubuntu-latest |
17 | steps: | 17 | steps: |
18 | - name: Checkout | 18 | - name: Checkout |
19 | uses: actions/checkout@v3 | 19 | uses: actions/checkout@v4 |
20 | - name: Codespell | 20 | - name: Codespell |
21 | uses: codespell-project/actions-codespell@master | 21 | uses: codespell-project/actions-codespell@v2 |
22 | with: | 22 | with: |
23 | skip: "./.git,./.gitignore,./ABOUT-NLS,*.po,./gl,./po,./tools/squid.conf,./build-aux/ltmain.sh" | 23 | skip: "./.git,./.gitignore,./ABOUT-NLS,*.po,./gl,./po,./tools/squid.conf,./build-aux/ltmain.sh" |
24 | ignore_words_list: allright,gord,didi,hda,nd,alis,clen,scrit,ser,fot,te,parm,isnt,consol,oneliners | 24 | ignore_words_list: allright,gord,didi,hda,nd,alis,clen,scrit,ser,fot,te,parm,isnt,consol,oneliners |
@@ -31,7 +31,7 @@ jobs: | |||
31 | # runs-on: ubuntu-latest | 31 | # runs-on: ubuntu-latest |
32 | # steps: | 32 | # steps: |
33 | # - name: Checkout | 33 | # - name: Checkout |
34 | # uses: actions/checkout@v3 | 34 | # uses: actions/checkout@v4 |
35 | # - name: Lint Code Base | 35 | # - name: Lint Code Base |
36 | # uses: github/super-linter@v5.0.0 | 36 | # uses: github/super-linter@v5.0.0 |
37 | # env: | 37 | # env: |
@@ -57,7 +57,7 @@ jobs: | |||
57 | #... | 57 | #... |
58 | steps: | 58 | steps: |
59 | - name: Git clone repository | 59 | - name: Git clone repository |
60 | uses: actions/checkout@v3 | 60 | uses: actions/checkout@v4 |
61 | #- name: Setup tmate session, see https://github.com/marketplace/actions/debugging-with-tmate | 61 | #- name: Setup tmate session, see https://github.com/marketplace/actions/debugging-with-tmate |
62 | # uses: mxschmitt/action-tmate@v3 | 62 | # uses: mxschmitt/action-tmate@v3 |
63 | - name: Run the tests on ${{ matrix.distro }} | 63 | - name: Run the tests on ${{ matrix.distro }} |
diff --git a/configure.ac b/configure.ac index 069cc62..a294b00 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -328,6 +328,25 @@ AS_IF([test "x$with_ldap" != "xno"], [ | |||
328 | LIBS="$_SAVEDLIBS" | 328 | LIBS="$_SAVEDLIBS" |
329 | ]) | 329 | ]) |
330 | 330 | ||
331 | |||
332 | AC_ARG_WITH([systemd], [AS_HELP_STRING([--without-systemd], [Skips systemd support])]) | ||
333 | |||
334 | dnl Check for libsystemd | ||
335 | AS_IF([test "x$with_systemd" != "xno"], [ | ||
336 | _SAVEDLIBS="$LIBS" | ||
337 | AC_CHECK_LIB(systemd,sd_get_sessions,,,-lsystemd) | ||
338 | if test "$ac_cv_lib_systemd_sd_get_sessions" = "yes"; then | ||
339 | SYSTEMDLIBS="-lsystemd" | ||
340 | SYSTEMDINCLUDE="" | ||
341 | AC_SUBST(SYSTEMDLIBS) | ||
342 | AC_SUBST(SYSTEMDINCLUDE) | ||
343 | else | ||
344 | AC_MSG_WARN([Skipping systemd support]) | ||
345 | fi | ||
346 | LIBS="$_SAVEDLIBS" | ||
347 | ]) | ||
348 | |||
349 | |||
331 | dnl Check for headers used by check_ide_smart | 350 | dnl Check for headers used by check_ide_smart |
332 | case $host in | 351 | case $host in |
333 | *linux*) | 352 | *linux*) |
diff --git a/plugins/Makefile.am b/plugins/Makefile.am index ab59eb7..49086b7 100644 --- a/plugins/Makefile.am +++ b/plugins/Makefile.am | |||
@@ -112,7 +112,7 @@ check_tcp_LDADD = $(SSLOBJS) | |||
112 | check_time_LDADD = $(NETLIBS) | 112 | check_time_LDADD = $(NETLIBS) |
113 | check_ntp_time_LDADD = $(NETLIBS) $(MATHLIBS) | 113 | check_ntp_time_LDADD = $(NETLIBS) $(MATHLIBS) |
114 | check_ups_LDADD = $(NETLIBS) | 114 | check_ups_LDADD = $(NETLIBS) |
115 | check_users_LDADD = $(BASEOBJS) $(WTSAPI32LIBS) | 115 | check_users_LDADD = $(BASEOBJS) $(WTSAPI32LIBS) $(SYSTEMDLIBS) |
116 | check_by_ssh_LDADD = $(NETLIBS) | 116 | check_by_ssh_LDADD = $(NETLIBS) |
117 | check_ide_smart_LDADD = $(BASEOBJS) | 117 | check_ide_smart_LDADD = $(BASEOBJS) |
118 | negate_LDADD = $(BASEOBJS) | 118 | negate_LDADD = $(BASEOBJS) |
diff --git a/plugins/check_radius.c b/plugins/check_radius.c index 984aa37..b1b4938 100644 --- a/plugins/check_radius.c +++ b/plugins/check_radius.c | |||
@@ -381,7 +381,7 @@ print_help (void) | |||
381 | printf ("\n"); | 381 | printf ("\n"); |
382 | printf ("%s\n", _("This plugin tests a RADIUS server to see if it is accepting connections.")); | 382 | printf ("%s\n", _("This plugin tests a RADIUS server to see if it is accepting connections.")); |
383 | printf ("%s\n", _("The server to test must be specified in the invocation, as well as a user")); | 383 | printf ("%s\n", _("The server to test must be specified in the invocation, as well as a user")); |
384 | printf ("%s\n", _("name and password. A configuration file may also be present. The format of")); | 384 | printf ("%s\n", _("name and password. A configuration file must be present. The format of")); |
385 | printf ("%s\n", _("the configuration file is described in the radiusclient library sources.")); | 385 | printf ("%s\n", _("the configuration file is described in the radiusclient library sources.")); |
386 | printf ("%s\n", _("The password option presents a substantial security issue because the")); | 386 | printf ("%s\n", _("The password option presents a substantial security issue because the")); |
387 | printf ("%s\n", _("password can possibly be determined by careful watching of the command line")); | 387 | printf ("%s\n", _("password can possibly be determined by careful watching of the command line")); |
diff --git a/plugins/check_smtp.c b/plugins/check_smtp.c index 996bd87..fc0ae2c 100644 --- a/plugins/check_smtp.c +++ b/plugins/check_smtp.c | |||
@@ -42,15 +42,16 @@ const char *email = "devel@monitoring-plugins.org"; | |||
42 | #ifdef HAVE_SSL | 42 | #ifdef HAVE_SSL |
43 | int check_cert = FALSE; | 43 | int check_cert = FALSE; |
44 | int days_till_exp_warn, days_till_exp_crit; | 44 | int days_till_exp_warn, days_till_exp_crit; |
45 | # define my_recv(buf, len) ((use_ssl && ssl_established) ? np_net_ssl_read(buf, len) : read(sd, buf, len)) | 45 | # define my_recv(buf, len) (((use_starttls || use_ssl) && ssl_established) ? np_net_ssl_read(buf, len) : read(sd, buf, len)) |
46 | # define my_send(buf, len) ((use_ssl && ssl_established) ? np_net_ssl_write(buf, len) : send(sd, buf, len, 0)) | 46 | # define my_send(buf, len) (((use_starttls || use_ssl) && ssl_established) ? np_net_ssl_write(buf, len) : send(sd, buf, len, 0)) |
47 | #else /* ifndef HAVE_SSL */ | 47 | #else /* ifndef HAVE_SSL */ |
48 | # define my_recv(buf, len) read(sd, buf, len) | 48 | # define my_recv(buf, len) read(sd, buf, len) |
49 | # define my_send(buf, len) send(sd, buf, len, 0) | 49 | # define my_send(buf, len) send(sd, buf, len, 0) |
50 | #endif | 50 | #endif |
51 | 51 | ||
52 | enum { | 52 | enum { |
53 | SMTP_PORT = 25 | 53 | SMTP_PORT = 25, |
54 | SMTPS_PORT = 465 | ||
54 | }; | 55 | }; |
55 | #define PROXY_PREFIX "PROXY TCP4 0.0.0.0 0.0.0.0 25 25\r\n" | 56 | #define PROXY_PREFIX "PROXY TCP4 0.0.0.0 0.0.0.0 25 25\r\n" |
56 | #define SMTP_EXPECT "220" | 57 | #define SMTP_EXPECT "220" |
@@ -83,6 +84,7 @@ int eflags = 0; | |||
83 | int errcode, excode; | 84 | int errcode, excode; |
84 | 85 | ||
85 | int server_port = SMTP_PORT; | 86 | int server_port = SMTP_PORT; |
87 | int server_port_option = 0; | ||
86 | char *server_address = NULL; | 88 | char *server_address = NULL; |
87 | char *server_expect = NULL; | 89 | char *server_expect = NULL; |
88 | char *mail_command = NULL; | 90 | char *mail_command = NULL; |
@@ -103,6 +105,7 @@ double critical_time = 0; | |||
103 | int check_critical_time = FALSE; | 105 | int check_critical_time = FALSE; |
104 | int verbose = 0; | 106 | int verbose = 0; |
105 | int use_ssl = FALSE; | 107 | int use_ssl = FALSE; |
108 | int use_starttls = FALSE; | ||
106 | int use_sni = FALSE; | 109 | int use_sni = FALSE; |
107 | short use_proxy_prefix = FALSE; | 110 | short use_proxy_prefix = FALSE; |
108 | short use_ehlo = FALSE; | 111 | short use_ehlo = FALSE; |
@@ -186,14 +189,27 @@ main (int argc, char **argv) | |||
186 | result = my_tcp_connect (server_address, server_port, &sd); | 189 | result = my_tcp_connect (server_address, server_port, &sd); |
187 | 190 | ||
188 | if (result == STATE_OK) { /* we connected */ | 191 | if (result == STATE_OK) { /* we connected */ |
189 | |||
190 | /* If requested, send PROXY header */ | 192 | /* If requested, send PROXY header */ |
191 | if (use_proxy_prefix) { | 193 | if (use_proxy_prefix) { |
192 | if (verbose) | 194 | if (verbose) |
193 | printf ("Sending header %s\n", PROXY_PREFIX); | 195 | printf ("Sending header %s\n", PROXY_PREFIX); |
194 | send(sd, PROXY_PREFIX, strlen(PROXY_PREFIX), 0); | 196 | my_send(PROXY_PREFIX, strlen(PROXY_PREFIX)); |
195 | } | 197 | } |
196 | 198 | ||
199 | #ifdef HAVE_SSL | ||
200 | if (use_ssl) { | ||
201 | result = np_net_ssl_init_with_hostname(sd, (use_sni ? server_address : NULL)); | ||
202 | if (result != STATE_OK) { | ||
203 | printf (_("CRITICAL - Cannot create SSL context.\n")); | ||
204 | close(sd); | ||
205 | np_net_ssl_cleanup(); | ||
206 | return STATE_CRITICAL; | ||
207 | } else { | ||
208 | ssl_established = 1; | ||
209 | } | ||
210 | } | ||
211 | #endif | ||
212 | |||
197 | /* watch for the SMTP connection string and */ | 213 | /* watch for the SMTP connection string and */ |
198 | /* return a WARNING status if we couldn't read any data */ | 214 | /* return a WARNING status if we couldn't read any data */ |
199 | if (recvlines(buffer, MAX_INPUT_BUFFER) <= 0) { | 215 | if (recvlines(buffer, MAX_INPUT_BUFFER) <= 0) { |
@@ -205,7 +221,7 @@ main (int argc, char **argv) | |||
205 | xasprintf(&server_response, "%s", buffer); | 221 | xasprintf(&server_response, "%s", buffer); |
206 | 222 | ||
207 | /* send the HELO/EHLO command */ | 223 | /* send the HELO/EHLO command */ |
208 | send(sd, helocmd, strlen(helocmd), 0); | 224 | my_send(helocmd, strlen(helocmd)); |
209 | 225 | ||
210 | /* allow for response to helo command to reach us */ | 226 | /* allow for response to helo command to reach us */ |
211 | if (recvlines(buffer, MAX_INPUT_BUFFER) <= 0) { | 227 | if (recvlines(buffer, MAX_INPUT_BUFFER) <= 0) { |
@@ -218,14 +234,14 @@ main (int argc, char **argv) | |||
218 | } | 234 | } |
219 | } | 235 | } |
220 | 236 | ||
221 | if(use_ssl && ! supports_tls){ | 237 | if(use_starttls && ! supports_tls){ |
222 | printf(_("WARNING - TLS not supported by server\n")); | 238 | printf(_("WARNING - TLS not supported by server\n")); |
223 | smtp_quit(); | 239 | smtp_quit(); |
224 | return STATE_WARNING; | 240 | return STATE_WARNING; |
225 | } | 241 | } |
226 | 242 | ||
227 | #ifdef HAVE_SSL | 243 | #ifdef HAVE_SSL |
228 | if(use_ssl) { | 244 | if(use_starttls) { |
229 | /* send the STARTTLS command */ | 245 | /* send the STARTTLS command */ |
230 | send(sd, SMTP_STARTTLS, strlen(SMTP_STARTTLS), 0); | 246 | send(sd, SMTP_STARTTLS, strlen(SMTP_STARTTLS), 0); |
231 | 247 | ||
@@ -489,6 +505,8 @@ process_arguments (int argc, char **argv) | |||
489 | {"use-ipv6", no_argument, 0, '6'}, | 505 | {"use-ipv6", no_argument, 0, '6'}, |
490 | {"help", no_argument, 0, 'h'}, | 506 | {"help", no_argument, 0, 'h'}, |
491 | {"lmtp", no_argument, 0, 'L'}, | 507 | {"lmtp", no_argument, 0, 'L'}, |
508 | {"ssl", no_argument, 0, 's'}, | ||
509 | {"tls", no_argument, 0, 's'}, | ||
492 | {"starttls",no_argument,0,'S'}, | 510 | {"starttls",no_argument,0,'S'}, |
493 | {"sni", no_argument, 0, SNI_OPTION}, | 511 | {"sni", no_argument, 0, SNI_OPTION}, |
494 | {"certificate",required_argument,0,'D'}, | 512 | {"certificate",required_argument,0,'D'}, |
@@ -510,7 +528,7 @@ process_arguments (int argc, char **argv) | |||
510 | } | 528 | } |
511 | 529 | ||
512 | while (1) { | 530 | while (1) { |
513 | c = getopt_long (argc, argv, "+hVv46Lrt:p:f:e:c:w:H:C:R:SD:F:A:U:P:q", | 531 | c = getopt_long (argc, argv, "+hVv46Lrt:p:f:e:c:w:H:C:R:sSD:F:A:U:P:q", |
514 | longopts, &option); | 532 | longopts, &option); |
515 | 533 | ||
516 | if (c == -1 || c == EOF) | 534 | if (c == -1 || c == EOF) |
@@ -527,7 +545,7 @@ process_arguments (int argc, char **argv) | |||
527 | break; | 545 | break; |
528 | case 'p': /* port */ | 546 | case 'p': /* port */ |
529 | if (is_intpos (optarg)) | 547 | if (is_intpos (optarg)) |
530 | server_port = atoi (optarg); | 548 | server_port_option = atoi (optarg); |
531 | else | 549 | else |
532 | usage4 (_("Port must be a positive integer")); | 550 | usage4 (_("Port must be a positive integer")); |
533 | break; | 551 | break; |
@@ -632,10 +650,14 @@ process_arguments (int argc, char **argv) | |||
632 | #else | 650 | #else |
633 | usage (_("SSL support not available - install OpenSSL and recompile")); | 651 | usage (_("SSL support not available - install OpenSSL and recompile")); |
634 | #endif | 652 | #endif |
635 | // fall through | 653 | case 's': |
654 | /* ssl */ | ||
655 | use_ssl = TRUE; | ||
656 | server_port = SMTPS_PORT; | ||
657 | break; | ||
636 | case 'S': | 658 | case 'S': |
637 | /* starttls */ | 659 | /* starttls */ |
638 | use_ssl = TRUE; | 660 | use_starttls = TRUE; |
639 | use_ehlo = TRUE; | 661 | use_ehlo = TRUE; |
640 | break; | 662 | break; |
641 | case SNI_OPTION: | 663 | case SNI_OPTION: |
@@ -694,6 +716,14 @@ process_arguments (int argc, char **argv) | |||
694 | if (from_arg==NULL) | 716 | if (from_arg==NULL) |
695 | from_arg = strdup(" "); | 717 | from_arg = strdup(" "); |
696 | 718 | ||
719 | if (use_starttls && use_ssl) { | ||
720 | usage4 (_("Set either -s/--ssl/--tls or -S/--starttls")); | ||
721 | } | ||
722 | |||
723 | if (server_port_option != 0) { | ||
724 | server_port = server_port_option; | ||
725 | } | ||
726 | |||
697 | return validate_arguments (); | 727 | return validate_arguments (); |
698 | } | 728 | } |
699 | 729 | ||
@@ -851,6 +881,9 @@ print_help (void) | |||
851 | #ifdef HAVE_SSL | 881 | #ifdef HAVE_SSL |
852 | printf (" %s\n", "-D, --certificate=INTEGER[,INTEGER]"); | 882 | printf (" %s\n", "-D, --certificate=INTEGER[,INTEGER]"); |
853 | printf (" %s\n", _("Minimum number of days a certificate has to be valid.")); | 883 | printf (" %s\n", _("Minimum number of days a certificate has to be valid.")); |
884 | printf (" %s\n", "-s, --ssl, --tls"); | ||
885 | printf (" %s\n", _("Use SSL/TLS for the connection.")); | ||
886 | printf (_(" Sets default port to %d.\n"), SMTPS_PORT); | ||
854 | printf (" %s\n", "-S, --starttls"); | 887 | printf (" %s\n", "-S, --starttls"); |
855 | printf (" %s\n", _("Use STARTTLS for the connection.")); | 888 | printf (" %s\n", _("Use STARTTLS for the connection.")); |
856 | printf (" %s\n", "--sni"); | 889 | printf (" %s\n", "--sni"); |
diff --git a/plugins/check_snmp.c b/plugins/check_snmp.c index 04dc6c6..2acada2 100644 --- a/plugins/check_snmp.c +++ b/plugins/check_snmp.c | |||
@@ -65,6 +65,7 @@ const char *email = "devel@monitoring-plugins.org"; | |||
65 | #define L_RATE_MULTIPLIER CHAR_MAX+2 | 65 | #define L_RATE_MULTIPLIER CHAR_MAX+2 |
66 | #define L_INVERT_SEARCH CHAR_MAX+3 | 66 | #define L_INVERT_SEARCH CHAR_MAX+3 |
67 | #define L_OFFSET CHAR_MAX+4 | 67 | #define L_OFFSET CHAR_MAX+4 |
68 | #define L_IGNORE_MIB_PARSING_ERRORS CHAR_MAX+5 | ||
68 | 69 | ||
69 | /* Gobble to string - stop incrementing c when c[0] match one of the | 70 | /* Gobble to string - stop incrementing c when c[0] match one of the |
70 | * characters in s */ | 71 | * characters in s */ |
@@ -159,6 +160,7 @@ char* ip_version = ""; | |||
159 | double multiplier = 1.0; | 160 | double multiplier = 1.0; |
160 | char *fmtstr = ""; | 161 | char *fmtstr = ""; |
161 | char buffer[DEFAULT_BUFFER_SIZE]; | 162 | char buffer[DEFAULT_BUFFER_SIZE]; |
163 | bool ignore_mib_parsing_errors = false; | ||
162 | 164 | ||
163 | static char *fix_snmp_range(char *th) | 165 | static char *fix_snmp_range(char *th) |
164 | { | 166 | { |
@@ -306,42 +308,55 @@ main (int argc, char **argv) | |||
306 | } | 308 | } |
307 | 309 | ||
308 | /* 10 arguments to pass before context and authpriv options + 1 for host and numoids. Add one for terminating NULL */ | 310 | /* 10 arguments to pass before context and authpriv options + 1 for host and numoids. Add one for terminating NULL */ |
309 | command_line = calloc (10 + numcontext + numauthpriv + 1 + numoids + 1, sizeof (char *)); | 311 | |
310 | command_line[0] = snmpcmd; | 312 | unsigned index = 0; |
311 | command_line[1] = strdup ("-Le"); | 313 | command_line = calloc (11 + numcontext + numauthpriv + 1 + numoids + 1, sizeof (char *)); |
312 | command_line[2] = strdup ("-t"); | 314 | |
313 | xasprintf (&command_line[3], "%d", timeout_interval); | 315 | command_line[index++] = snmpcmd; |
314 | command_line[4] = strdup ("-r"); | 316 | command_line[index++] = strdup ("-Le"); |
315 | xasprintf (&command_line[5], "%d", retries); | 317 | command_line[index++] = strdup ("-t"); |
316 | command_line[6] = strdup ("-m"); | 318 | xasprintf (&command_line[index++], "%d", timeout_interval); |
317 | command_line[7] = strdup (miblist); | 319 | command_line[index++] = strdup ("-r"); |
318 | command_line[8] = "-v"; | 320 | xasprintf (&command_line[index++], "%d", retries); |
319 | command_line[9] = strdup (proto); | 321 | command_line[index++] = strdup ("-m"); |
322 | command_line[index++] = strdup (miblist); | ||
323 | command_line[index++] = "-v"; | ||
324 | command_line[index++] = strdup (proto); | ||
325 | |||
326 | xasprintf(&cl_hidden_auth, "%s -Le -t %d -r %d -m %s -v %s", | ||
327 | snmpcmd, timeout_interval, retries, strlen(miblist) ? miblist : "''", proto); | ||
328 | |||
329 | if (ignore_mib_parsing_errors) { | ||
330 | command_line[index++] = "-Pe"; | ||
331 | xasprintf(&cl_hidden_auth, "%s -Pe", cl_hidden_auth); | ||
332 | } | ||
333 | |||
320 | 334 | ||
321 | for (i = 0; i < numcontext; i++) { | 335 | for (i = 0; i < numcontext; i++) { |
322 | command_line[10 + i] = contextargs[i]; | 336 | command_line[index++] = contextargs[i]; |
323 | } | 337 | } |
324 | 338 | ||
325 | for (i = 0; i < numauthpriv; i++) { | 339 | for (i = 0; i < numauthpriv; i++) { |
326 | command_line[10 + numcontext + i] = authpriv[i]; | 340 | command_line[index++] = authpriv[i]; |
327 | } | 341 | } |
328 | 342 | ||
329 | xasprintf (&command_line[10 + numcontext + numauthpriv], "%s:%s", server_address, port); | 343 | xasprintf (&command_line[index++], "%s:%s", server_address, port); |
330 | 344 | ||
331 | /* This is just for display purposes, so it can remain a string */ | 345 | xasprintf(&cl_hidden_auth, "%s [context] [authpriv] %s:%s", |
332 | xasprintf(&cl_hidden_auth, "%s -Le -t %d -r %d -m %s -v %s %s %s %s:%s", | 346 | cl_hidden_auth, |
333 | snmpcmd, timeout_interval, retries, strlen(miblist) ? miblist : "''", proto, "[context]", "[authpriv]", | 347 | server_address, |
334 | server_address, port); | 348 | port); |
335 | 349 | ||
336 | for (i = 0; i < numoids; i++) { | 350 | for (i = 0; i < numoids; i++) { |
337 | command_line[10 + numcontext + numauthpriv + 1 + i] = oids[i]; | 351 | command_line[index++] = oids[i]; |
338 | xasprintf(&cl_hidden_auth, "%s %s", cl_hidden_auth, oids[i]); | 352 | xasprintf(&cl_hidden_auth, "%s %s", cl_hidden_auth, oids[i]); |
339 | } | 353 | } |
340 | 354 | ||
341 | command_line[10 + numcontext + numauthpriv + 1 + numoids] = NULL; | 355 | command_line[index++] = NULL; |
342 | 356 | ||
343 | if (verbose) | 357 | if (verbose) { |
344 | printf ("%s\n", cl_hidden_auth); | 358 | printf ("%s\n", cl_hidden_auth); |
359 | } | ||
345 | 360 | ||
346 | /* Set signal handling and alarm */ | 361 | /* Set signal handling and alarm */ |
347 | if (signal (SIGALRM, runcmd_timeout_alarm_handler) == SIG_ERR) { | 362 | if (signal (SIGALRM, runcmd_timeout_alarm_handler) == SIG_ERR) { |
@@ -708,6 +723,7 @@ process_arguments (int argc, char **argv) | |||
708 | {"ipv6", no_argument, 0, '6'}, | 723 | {"ipv6", no_argument, 0, '6'}, |
709 | {"multiplier", required_argument, 0, 'M'}, | 724 | {"multiplier", required_argument, 0, 'M'}, |
710 | {"fmtstr", required_argument, 0, 'f'}, | 725 | {"fmtstr", required_argument, 0, 'f'}, |
726 | {"ignore-mib-parsing-errors", no_argument, false, L_IGNORE_MIB_PARSING_ERRORS}, | ||
711 | {0, 0, 0, 0} | 727 | {0, 0, 0, 0} |
712 | }; | 728 | }; |
713 | 729 | ||
@@ -974,6 +990,8 @@ process_arguments (int argc, char **argv) | |||
974 | fmtstr=optarg; | 990 | fmtstr=optarg; |
975 | } | 991 | } |
976 | break; | 992 | break; |
993 | case L_IGNORE_MIB_PARSING_ERRORS: | ||
994 | ignore_mib_parsing_errors = true; | ||
977 | } | 995 | } |
978 | } | 996 | } |
979 | 997 | ||
@@ -1307,6 +1325,9 @@ print_help (void) | |||
1307 | printf (" %s\n", "-O, --perf-oids"); | 1325 | printf (" %s\n", "-O, --perf-oids"); |
1308 | printf (" %s\n", _("Label performance data with OIDs instead of --label's")); | 1326 | printf (" %s\n", _("Label performance data with OIDs instead of --label's")); |
1309 | 1327 | ||
1328 | printf (" %s\n", "--ignore-mib-parsing-errors"); | ||
1329 | printf (" %s\n", _("Tell snmpget to not print errors encountered when parsing MIB files")); | ||
1330 | |||
1310 | printf (UT_VERBOSE); | 1331 | printf (UT_VERBOSE); |
1311 | 1332 | ||
1312 | printf ("\n"); | 1333 | printf ("\n"); |
diff --git a/plugins/check_users.c b/plugins/check_users.c index f6f4b36..2a9ee98 100644 --- a/plugins/check_users.c +++ b/plugins/check_users.c | |||
@@ -1,33 +1,33 @@ | |||
1 | /***************************************************************************** | 1 | /***************************************************************************** |
2 | * | 2 | * |
3 | * Monitoring check_users plugin | 3 | * Monitoring check_users plugin |
4 | * | 4 | * |
5 | * License: GPL | 5 | * License: GPL |
6 | * Copyright (c) 2000-2012 Monitoring Plugins Development Team | 6 | * Copyright (c) 2000-2012 Monitoring Plugins Development Team |
7 | * | 7 | * |
8 | * Description: | 8 | * Description: |
9 | * | 9 | * |
10 | * This file contains the check_users plugin | 10 | * This file contains the check_users plugin |
11 | * | 11 | * |
12 | * This plugin checks the number of users currently logged in on the local | 12 | * This plugin checks the number of users currently logged in on the local |
13 | * system and generates an error if the number exceeds the thresholds | 13 | * system and generates an error if the number exceeds the thresholds |
14 | * specified. | 14 | * specified. |
15 | * | 15 | * |
16 | * | 16 | * |
17 | * This program is free software: you can redistribute it and/or modify | 17 | * This program is free software: you can redistribute it and/or modify |
18 | * it under the terms of the GNU General Public License as published by | 18 | * it under the terms of the GNU General Public License as published by |
19 | * the Free Software Foundation, either version 3 of the License, or | 19 | * the Free Software Foundation, either version 3 of the License, or |
20 | * (at your option) any later version. | 20 | * (at your option) any later version. |
21 | * | 21 | * |
22 | * This program is distributed in the hope that it will be useful, | 22 | * This program is distributed in the hope that it will be useful, |
23 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | 23 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
24 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 24 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
25 | * GNU General Public License for more details. | 25 | * GNU General Public License for more details. |
26 | * | 26 | * |
27 | * You should have received a copy of the GNU General Public License | 27 | * You should have received a copy of the GNU General Public License |
28 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | 28 | * along with this program. If not, see <http://www.gnu.org/licenses/>. |
29 | * | 29 | * |
30 | * | 30 | * |
31 | *****************************************************************************/ | 31 | *****************************************************************************/ |
32 | 32 | ||
33 | const char *progname = "check_users"; | 33 | const char *progname = "check_users"; |
@@ -48,6 +48,11 @@ const char *email = "devel@monitoring-plugins.org"; | |||
48 | # include "popen.h" | 48 | # include "popen.h" |
49 | #endif | 49 | #endif |
50 | 50 | ||
51 | #ifdef HAVE_LIBSYSTEMD | ||
52 | #include <systemd/sd-daemon.h> | ||
53 | #include <systemd/sd-login.h> | ||
54 | #endif | ||
55 | |||
51 | #define possibly_set(a,b) ((a) == 0 ? (b) : 0) | 56 | #define possibly_set(a,b) ((a) == 0 ? (b) : 0) |
52 | 57 | ||
53 | int process_arguments (int, char **); | 58 | int process_arguments (int, char **); |
@@ -85,6 +90,11 @@ main (int argc, char **argv) | |||
85 | 90 | ||
86 | users = 0; | 91 | users = 0; |
87 | 92 | ||
93 | #ifdef HAVE_LIBSYSTEMD | ||
94 | if (sd_booted () > 0) | ||
95 | users = sd_get_sessions (NULL); | ||
96 | else { | ||
97 | #endif | ||
88 | #if HAVE_WTSAPI32_H | 98 | #if HAVE_WTSAPI32_H |
89 | if (!WTSEnumerateSessions(WTS_CURRENT_SERVER_HANDLE, | 99 | if (!WTSEnumerateSessions(WTS_CURRENT_SERVER_HANDLE, |
90 | 0, 1, &wtsinfo, &wtscount)) { | 100 | 0, 1, &wtsinfo, &wtscount)) { |
@@ -156,6 +166,9 @@ main (int argc, char **argv) | |||
156 | if (spclose (child_process)) | 166 | if (spclose (child_process)) |
157 | result = possibly_set (result, STATE_UNKNOWN); | 167 | result = possibly_set (result, STATE_UNKNOWN); |
158 | #endif | 168 | #endif |
169 | #ifdef HAVE_LIBSYSTEMD | ||
170 | } | ||
171 | #endif | ||
159 | 172 | ||
160 | /* check the user count against warning and critical thresholds */ | 173 | /* check the user count against warning and critical thresholds */ |
161 | result = get_status((double)users, thlds); | 174 | result = get_status((double)users, thlds); |
@@ -163,7 +176,7 @@ main (int argc, char **argv) | |||
163 | if (result == STATE_UNKNOWN) | 176 | if (result == STATE_UNKNOWN) |
164 | printf ("%s\n", _("Unable to read output")); | 177 | printf ("%s\n", _("Unable to read output")); |
165 | else { | 178 | else { |
166 | printf (_("USERS %s - %d users currently logged in |%s\n"), | 179 | printf (_("USERS %s - %d users currently logged in |%s\n"), |
167 | state_text(result), users, | 180 | state_text(result), users, |
168 | sperfdata_int("users", users, "", warning_range, | 181 | sperfdata_int("users", users, "", warning_range, |
169 | critical_range, TRUE, 0, FALSE, 0)); | 182 | critical_range, TRUE, 0, FALSE, 0)); |
diff --git a/plugins/t/check_smtp.t b/plugins/t/check_smtp.t index aa6dae4..1a1ebe3 100644 --- a/plugins/t/check_smtp.t +++ b/plugins/t/check_smtp.t | |||
@@ -8,12 +8,14 @@ use strict; | |||
8 | use Test::More; | 8 | use Test::More; |
9 | use NPTest; | 9 | use NPTest; |
10 | 10 | ||
11 | my $host_tcp_smtp = getTestParameter( "NP_HOST_TCP_SMTP", | 11 | my $host_tcp_smtp = getTestParameter( "NP_HOST_TCP_SMTP", |
12 | "A host providing an SMTP Service (a mail server)", "mailhost"); | 12 | "A host providing an SMTP Service (a mail server)", "mailhost"); |
13 | my $host_tcp_smtp_tls = getTestParameter( "NP_HOST_TCP_SMTP_TLS", | 13 | my $host_tcp_smtp_starttls = getTestParameter( "NP_HOST_TCP_SMTP_STARTTLS", |
14 | "A host providing SMTP with STARTTLS", $host_tcp_smtp); | ||
15 | my $host_tcp_smtp_nostarttls = getTestParameter( "NP_HOST_TCP_SMTP_NOSTARTTLS", | ||
16 | "A host providing SMTP without STARTTLS", ""); | ||
17 | my $host_tcp_smtp_tls = getTestParameter( "NP_HOST_TCP_SMTP_TLS", | ||
14 | "A host providing SMTP with TLS", $host_tcp_smtp); | 18 | "A host providing SMTP with TLS", $host_tcp_smtp); |
15 | my $host_tcp_smtp_notls = getTestParameter( "NP_HOST_TCP_SMTP_NOTLS", | ||
16 | "A host providing SMTP without TLS", ""); | ||
17 | 19 | ||
18 | my $host_nonresponsive = getTestParameter( "NP_HOST_NONRESPONSIVE", | 20 | my $host_nonresponsive = getTestParameter( "NP_HOST_NONRESPONSIVE", |
19 | "The hostname of system not responsive to network requests", "10.0.0.1" ); | 21 | "The hostname of system not responsive to network requests", "10.0.0.1" ); |
@@ -22,7 +24,7 @@ my $hostname_invalid = getTestParameter( "NP_HOSTNAME_INVALID", | |||
22 | "An invalid (not known to DNS) hostname", "nosuchhost" ); | 24 | "An invalid (not known to DNS) hostname", "nosuchhost" ); |
23 | my $res; | 25 | my $res; |
24 | 26 | ||
25 | plan tests => 10; | 27 | plan tests => 16; |
26 | 28 | ||
27 | SKIP: { | 29 | SKIP: { |
28 | skip "No SMTP server defined", 4 unless $host_tcp_smtp; | 30 | skip "No SMTP server defined", 4 unless $host_tcp_smtp; |
@@ -42,22 +44,38 @@ SKIP: { | |||
42 | local $TODO = "Output is over two lines"; | 44 | local $TODO = "Output is over two lines"; |
43 | like ( $res->output, qr/^SMTP WARNING/, "Correct error message" ); | 45 | like ( $res->output, qr/^SMTP WARNING/, "Correct error message" ); |
44 | } | 46 | } |
47 | |||
48 | $res = NPTest->testCmd( "./check_smtp -H $host_tcp_smtp --ssl -p 25" ); | ||
49 | is ($res->return_code, 2, "Check rc of connecting to $host_tcp_smtp with TLS on standard SMTP port" ); | ||
50 | like ($res->output, qr/^CRITICAL - Cannot make SSL connection\./, "Check output of connecting to $host_tcp_smtp with TLS on standard SMTP port"); | ||
45 | } | 51 | } |
46 | 52 | ||
47 | SKIP: { | 53 | SKIP: { |
48 | skip "No SMTP server with TLS defined", 1 unless $host_tcp_smtp_tls; | 54 | skip "No SMTP server with STARTTLS defined", 1 unless $host_tcp_smtp_starttls; |
49 | # SSL connection for TLS | 55 | # SSL connection for STARTTLS |
50 | $res = NPTest->testCmd( "./check_smtp -H $host_tcp_smtp_tls -p 25 -S" ); | 56 | $res = NPTest->testCmd( "./check_smtp -H $host_tcp_smtp_starttls -p 25 -S" ); |
51 | is ($res->return_code, 0, "OK, with STARTTLS" ); | 57 | is ($res->return_code, 0, "OK, with STARTTLS" ); |
52 | } | 58 | } |
53 | 59 | ||
54 | SKIP: { | 60 | SKIP: { |
55 | skip "No SMTP server without TLS defined", 2 unless $host_tcp_smtp_notls; | 61 | skip "No SMTP server without STARTTLS defined", 2 unless $host_tcp_smtp_nostarttls; |
56 | $res = NPTest->testCmd( "./check_smtp -H $host_tcp_smtp_notls -p 25 -S" ); | 62 | $res = NPTest->testCmd( "./check_smtp -H $host_tcp_smtp_nostarttls -p 25 -S" ); |
57 | is ($res->return_code, 1, "OK, got warning from server without TLS"); | 63 | is ($res->return_code, 1, "OK, got warning from server without STARTTLS"); |
58 | is ($res->output, "WARNING - TLS not supported by server", "Right error message" ); | 64 | is ($res->output, "WARNING - TLS not supported by server", "Right error message" ); |
59 | } | 65 | } |
60 | 66 | ||
67 | SKIP: { | ||
68 | skip "No SMTP server with TLS defined", 1 unless $host_tcp_smtp_tls; | ||
69 | $res = NPTest->testCmd( "./check_smtp -H $host_tcp_smtp_tls --ssl" ); | ||
70 | is ($res->return_code, 0, "Check rc of connecting to $host_tcp_smtp_tls with TLS" ); | ||
71 | like ($res->output, qr/^SMTP OK - /, "Check output of connecting to $host_tcp_smtp_tls with TLS" ); | ||
72 | |||
73 | my $unused_port = 4465; | ||
74 | $res = NPTest->testCmd( "./check_smtp -H $host_tcp_smtp_tls -p $unused_port --ssl" ); | ||
75 | is ($res->return_code, 2, "Check rc of connecting to $host_tcp_smtp_tls with TLS on unused port $unused_port" ); | ||
76 | like ($res->output, qr/^connect to address $host_tcp_smtp_tls and port $unused_port: Connection refused/, "Check output of connecting to $host_tcp_smtp_tls with TLS on unused port $unused_port"); | ||
77 | } | ||
78 | |||
61 | $res = NPTest->testCmd( "./check_smtp $host_nonresponsive" ); | 79 | $res = NPTest->testCmd( "./check_smtp $host_nonresponsive" ); |
62 | is ($res->return_code, 2, "CRITICAL - host non responding" ); | 80 | is ($res->return_code, 2, "CRITICAL - host non responding" ); |
63 | 81 | ||
diff --git a/plugins/t/check_snmp.t b/plugins/t/check_snmp.t index f2f218f..576cc50 100644 --- a/plugins/t/check_snmp.t +++ b/plugins/t/check_snmp.t | |||
@@ -26,22 +26,22 @@ $res = NPTest->testCmd( "./check_snmp -t 1" ); | |||
26 | is( $res->return_code, 3, "No host name" ); | 26 | is( $res->return_code, 3, "No host name" ); |
27 | is( $res->output, "No host specified" ); | 27 | is( $res->output, "No host specified" ); |
28 | 28 | ||
29 | $res = NPTest->testCmd( "./check_snmp -H fakehostname" ); | 29 | $res = NPTest->testCmd( "./check_snmp -H fakehostname --ignore-mib-parsing-errors" ); |
30 | is( $res->return_code, 3, "No OIDs specified" ); | 30 | is( $res->return_code, 3, "No OIDs specified" ); |
31 | is( $res->output, "No OIDs specified" ); | 31 | is( $res->output, "No OIDs specified" ); |
32 | 32 | ||
33 | $res = NPTest->testCmd( "./check_snmp -H fakehost -o oids -P 3 -U not_a_user --seclevel=rubbish" ); | 33 | $res = NPTest->testCmd( "./check_snmp -H fakehost --ignore-mib-parsing-errors -o oids -P 3 -U not_a_user --seclevel=rubbish" ); |
34 | is( $res->return_code, 3, "Invalid seclevel" ); | 34 | is( $res->return_code, 3, "Invalid seclevel" ); |
35 | like( $res->output, "/check_snmp: Invalid seclevel - rubbish/" ); | 35 | like( $res->output, "/check_snmp: Invalid seclevel - rubbish/" ); |
36 | 36 | ||
37 | $res = NPTest->testCmd( "./check_snmp -H fakehost -o oids -P 3c" ); | 37 | $res = NPTest->testCmd( "./check_snmp -H fakehost --ignore-mib-parsing-errors -o oids -P 3c" ); |
38 | is( $res->return_code, 3, "Invalid protocol" ); | 38 | is( $res->return_code, 3, "Invalid protocol" ); |
39 | like( $res->output, "/check_snmp: Invalid SNMP version - 3c/" ); | 39 | like( $res->output, "/check_snmp: Invalid SNMP version - 3c/" ); |
40 | 40 | ||
41 | SKIP: { | 41 | SKIP: { |
42 | skip "no snmp host defined", 50 if ( ! $host_snmp ); | 42 | skip "no snmp host defined", 50 if ( ! $host_snmp ); |
43 | 43 | ||
44 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp -C $snmp_community -o system.sysUpTime.0 -w 1: -c 1:"); | 44 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp --ignore-mib-parsing-errors -C $snmp_community -o system.sysUpTime.0 -w 1: -c 1:"); |
45 | cmp_ok( $res->return_code, '==', 0, "Exit OK when querying uptime" ); | 45 | cmp_ok( $res->return_code, '==', 0, "Exit OK when querying uptime" ); |
46 | like($res->output, '/^SNMP OK - (\d+)/', "String contains SNMP OK"); | 46 | like($res->output, '/^SNMP OK - (\d+)/', "String contains SNMP OK"); |
47 | $res->output =~ /^SNMP OK - (\d+)/; | 47 | $res->output =~ /^SNMP OK - (\d+)/; |
@@ -51,111 +51,111 @@ SKIP: { | |||
51 | 51 | ||
52 | 52 | ||
53 | # some more threshold tests | 53 | # some more threshold tests |
54 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp -C $snmp_community -o system.sysUpTime.0 -c 1"); | 54 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp --ignore-mib-parsing-errors -C $snmp_community -o system.sysUpTime.0 -c 1"); |
55 | cmp_ok( $res->return_code, '==', 2, "Threshold test -c 1" ); | 55 | cmp_ok( $res->return_code, '==', 2, "Threshold test -c 1" ); |
56 | 56 | ||
57 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp -C $snmp_community -o system.sysUpTime.0 -c 1:"); | 57 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp --ignore-mib-parsing-errors -C $snmp_community -o system.sysUpTime.0 -c 1:"); |
58 | cmp_ok( $res->return_code, '==', 0, "Threshold test -c 1:" ); | 58 | cmp_ok( $res->return_code, '==', 0, "Threshold test -c 1:" ); |
59 | 59 | ||
60 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp -C $snmp_community -o system.sysUpTime.0 -c ~:1"); | 60 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp --ignore-mib-parsing-errors -C $snmp_community -o system.sysUpTime.0 -c ~:1"); |
61 | cmp_ok( $res->return_code, '==', 2, "Threshold test -c ~:1" ); | 61 | cmp_ok( $res->return_code, '==', 2, "Threshold test -c ~:1" ); |
62 | 62 | ||
63 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp -C $snmp_community -o system.sysUpTime.0 -c 1:10"); | 63 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp --ignore-mib-parsing-errors -C $snmp_community -o system.sysUpTime.0 -c 1:10"); |
64 | cmp_ok( $res->return_code, '==', 2, "Threshold test -c 1:10" ); | 64 | cmp_ok( $res->return_code, '==', 2, "Threshold test -c 1:10" ); |
65 | 65 | ||
66 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp -C $snmp_community -o system.sysUpTime.0 -c \@1:10"); | 66 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp --ignore-mib-parsing-errors -C $snmp_community -o system.sysUpTime.0 -c \@1:10"); |
67 | cmp_ok( $res->return_code, '==', 0, "Threshold test -c \@1:10" ); | 67 | cmp_ok( $res->return_code, '==', 0, "Threshold test -c \@1:10" ); |
68 | 68 | ||
69 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp -C $snmp_community -o system.sysUpTime.0 -c 10:1"); | 69 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp --ignore-mib-parsing-errors -C $snmp_community -o system.sysUpTime.0 -c 10:1"); |
70 | cmp_ok( $res->return_code, '==', 0, "Threshold test -c 10:1" ); | 70 | cmp_ok( $res->return_code, '==', 0, "Threshold test -c 10:1" ); |
71 | 71 | ||
72 | 72 | ||
73 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp -C $snmp_community -o .1.3.6.1.2.1.1.3.0 -w 1: -c 1:"); | 73 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp --ignore-mib-parsing-errors -C $snmp_community -o .1.3.6.1.2.1.1.3.0 -w 1: -c 1:"); |
74 | cmp_ok( $res->return_code, '==', 0, "Test with numeric OID (no mibs loaded)" ); | 74 | cmp_ok( $res->return_code, '==', 0, "Test with numeric OID (no mibs loaded)" ); |
75 | like($res->output, '/^SNMP OK - \d+/', "String contains SNMP OK"); | 75 | like($res->output, '/^SNMP OK - \d+/', "String contains SNMP OK"); |
76 | 76 | ||
77 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp -C $snmp_community -o system.sysDescr.0"); | 77 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp --ignore-mib-parsing-errors -C $snmp_community -o system.sysDescr.0"); |
78 | cmp_ok( $res->return_code, '==', 0, "Exit OK when querying sysDescr" ); | 78 | cmp_ok( $res->return_code, '==', 0, "Exit OK when querying sysDescr" ); |
79 | unlike($res->perf_output, '/sysDescr/', "Perfdata doesn't contain string values"); | 79 | unlike($res->perf_output, '/sysDescr/', "Perfdata doesn't contain string values"); |
80 | 80 | ||
81 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp -C $snmp_community -o system.sysDescr.0,system.sysDescr.0"); | 81 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp --ignore-mib-parsing-errors -C $snmp_community -o system.sysDescr.0,system.sysDescr.0"); |
82 | cmp_ok( $res->return_code, '==', 0, "Exit OK when querying two string OIDs, comma-separated" ); | 82 | cmp_ok( $res->return_code, '==', 0, "Exit OK when querying two string OIDs, comma-separated" ); |
83 | like($res->output, '/^SNMP OK - /', "String contains SNMP OK"); | 83 | like($res->output, '/^SNMP OK - /', "String contains SNMP OK"); |
84 | 84 | ||
85 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp -C $snmp_community -o system.sysDescr.0 -o system.sysDescr.0"); | 85 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp --ignore-mib-parsing-errors -C $snmp_community -o system.sysDescr.0 -o system.sysDescr.0"); |
86 | cmp_ok( $res->return_code, '==', 0, "Exit OK when querying two string OIDs, repeated option" ); | 86 | cmp_ok( $res->return_code, '==', 0, "Exit OK when querying two string OIDs, repeated option" ); |
87 | like($res->output, '/^SNMP OK - /', "String contains SNMP OK"); | 87 | like($res->output, '/^SNMP OK - /', "String contains SNMP OK"); |
88 | 88 | ||
89 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp -C $snmp_community -o host.hrSWRun.hrSWRunTable.hrSWRunEntry.hrSWRunIndex.1 -w 1:1 -c 1:1"); | 89 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp --ignore-mib-parsing-errors -C $snmp_community -o host.hrSWRun.hrSWRunTable.hrSWRunEntry.hrSWRunIndex.1 -w 1:1 -c 1:1"); |
90 | cmp_ok( $res->return_code, '==', 0, "Exit OK when querying hrSWRunIndex.1" ); | 90 | cmp_ok( $res->return_code, '==', 0, "Exit OK when querying hrSWRunIndex.1" ); |
91 | like($res->output, '/^SNMP OK - 1\s.*$/', "String fits SNMP OK and output format"); | 91 | like($res->output, '/^SNMP OK - 1\s.*$/', "String fits SNMP OK and output format"); |
92 | 92 | ||
93 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp -C $snmp_community -o host.hrSWRun.hrSWRunTable.hrSWRunEntry.hrSWRunIndex.1 -w 0 -c 1:"); | 93 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp --ignore-mib-parsing-errors -C $snmp_community -o host.hrSWRun.hrSWRunTable.hrSWRunEntry.hrSWRunIndex.1 -w 0 -c 1:"); |
94 | cmp_ok( $res->return_code, '==', 1, "Exit WARNING when querying hrSWRunIndex.1 and warn-th doesn't apply " ); | 94 | cmp_ok( $res->return_code, '==', 1, "Exit WARNING when querying hrSWRunIndex.1 and warn-th doesn't apply " ); |
95 | like($res->output, '/^SNMP WARNING - \*1\*\s.*$/', "String matches SNMP WARNING and output format"); | 95 | like($res->output, '/^SNMP WARNING - \*1\*\s.*$/', "String matches SNMP WARNING and output format"); |
96 | 96 | ||
97 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp -C $snmp_community -o host.hrSWRun.hrSWRunTable.hrSWRunEntry.hrSWRunIndex.1 -w :0 -c 0"); | 97 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp --ignore-mib-parsing-errors -C $snmp_community -o host.hrSWRun.hrSWRunTable.hrSWRunEntry.hrSWRunIndex.1 -w :0 -c 0"); |
98 | cmp_ok( $res->return_code, '==', 2, "Exit CRITICAL when querying hrSWRunIndex.1 and crit-th doesn't apply" ); | 98 | cmp_ok( $res->return_code, '==', 2, "Exit CRITICAL when querying hrSWRunIndex.1 and crit-th doesn't apply" ); |
99 | like($res->output, '/^SNMP CRITICAL - \*1\*\s.*$/', "String matches SNMP CRITICAL and output format"); | 99 | like($res->output, '/^SNMP CRITICAL - \*1\*\s.*$/', "String matches SNMP CRITICAL and output format"); |
100 | 100 | ||
101 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp -C $snmp_community -o ifIndex.2,ifIndex.1 -w 1:2 -c 1:2"); | 101 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp --ignore-mib-parsing-errors -C $snmp_community -o ifIndex.2,ifIndex.1 -w 1:2 -c 1:2"); |
102 | cmp_ok( $res->return_code, '==', 0, "Checking two OIDs at once" ); | 102 | cmp_ok( $res->return_code, '==', 0, "Checking two OIDs at once" ); |
103 | like($res->output, "/^SNMP OK - 2 1/", "Got two values back" ); | 103 | like($res->output, "/^SNMP OK - 2 1/", "Got two values back" ); |
104 | like( $res->perf_output, "/ifIndex.2=2/", "Got 1st perf data" ); | 104 | like( $res->perf_output, "/ifIndex.2=2/", "Got 1st perf data" ); |
105 | like( $res->perf_output, "/ifIndex.1=1/", "Got 2nd perf data" ); | 105 | like( $res->perf_output, "/ifIndex.1=1/", "Got 2nd perf data" ); |
106 | 106 | ||
107 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp -C $snmp_community -o ifIndex.2,ifIndex.1 -w 1:2,1:2 -c 2:2,2:2"); | 107 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp --ignore-mib-parsing-errors -C $snmp_community -o ifIndex.2,ifIndex.1 -w 1:2,1:2 -c 2:2,2:2"); |
108 | cmp_ok( $res->return_code, '==', 2, "Checking critical threshold is passed if any one value crosses" ); | 108 | cmp_ok( $res->return_code, '==', 2, "Checking critical threshold is passed if any one value crosses" ); |
109 | like($res->output, "/^SNMP CRITICAL - 2 *1*/", "Got two values back" ); | 109 | like($res->output, "/^SNMP CRITICAL - 2 *1*/", "Got two values back" ); |
110 | like( $res->perf_output, "/ifIndex.2=2/", "Got 1st perf data" ); | 110 | like( $res->perf_output, "/ifIndex.2=2/", "Got 1st perf data" ); |
111 | like( $res->perf_output, "/ifIndex.1=1/", "Got 2nd perf data" ); | 111 | like( $res->perf_output, "/ifIndex.1=1/", "Got 2nd perf data" ); |
112 | 112 | ||
113 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp -C $snmp_community -o host.hrStorage.hrMemorySize.0,host.hrSystem.hrSystemProcesses.0 -w 1:,1: -c 1:,1:"); | 113 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp --ignore-mib-parsing-errors -C $snmp_community -o host.hrStorage.hrMemorySize.0,host.hrSystem.hrSystemProcesses.0 -w 1:,1: -c 1:,1:"); |
114 | cmp_ok( $res->return_code, '==', 0, "Exit OK when querying hrMemorySize and hrSystemProcesses"); | 114 | cmp_ok( $res->return_code, '==', 0, "Exit OK when querying hrMemorySize and hrSystemProcesses"); |
115 | like($res->output, '/^SNMP OK - \d+ \d+/', "String contains hrMemorySize and hrSystemProcesses"); | 115 | like($res->output, '/^SNMP OK - \d+ \d+/', "String contains hrMemorySize and hrSystemProcesses"); |
116 | 116 | ||
117 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp -C $snmp_community -o host.hrSWRun.hrSWRunTable.hrSWRunEntry.hrSWRunIndex.1 -w \@:0 -c \@0"); | 117 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp --ignore-mib-parsing-errors -C $snmp_community -o host.hrSWRun.hrSWRunTable.hrSWRunEntry.hrSWRunIndex.1 -w \@:0 -c \@0"); |
118 | cmp_ok( $res->return_code, '==', 0, "Exit OK with inside-range thresholds"); | 118 | cmp_ok( $res->return_code, '==', 0, "Exit OK with inside-range thresholds"); |
119 | like($res->output, '/^SNMP OK - 1\s.*$/', "String matches SNMP OK and output format"); | 119 | like($res->output, '/^SNMP OK - 1\s.*$/', "String matches SNMP OK and output format"); |
120 | 120 | ||
121 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp -C $snmp_community -o enterprises.ucdavis.laTable.laEntry.laLoad.3"); | 121 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp --ignore-mib-parsing-errors -C $snmp_community -o enterprises.ucdavis.laTable.laEntry.laLoad.3"); |
122 | $res->output =~ m/^SNMP OK - (\d+\.\d{2})\s.*$/; | 122 | $res->output =~ m/^SNMP OK - (\d+\.\d{2})\s.*$/; |
123 | my $lower = $1 - 0.05; | 123 | my $lower = $1 - 0.05; |
124 | my $higher = $1 + 0.05; | 124 | my $higher = $1 + 0.05; |
125 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp -C $snmp_community -o enterprises.ucdavis.laTable.laEntry.laLoad.3 -w $lower -c $higher"); | 125 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp --ignore-mib-parsing-errors -C $snmp_community -o enterprises.ucdavis.laTable.laEntry.laLoad.3 -w $lower -c $higher"); |
126 | cmp_ok( $res->return_code, '==', 1, "Exit WARNING with fractionnal arguments"); | 126 | cmp_ok( $res->return_code, '==', 1, "Exit WARNING with fractionnal arguments"); |
127 | 127 | ||
128 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp -C $snmp_community -o system.sysUpTime.0,host.hrSWRun.hrSWRunTable.hrSWRunEntry.hrSWRunIndex.1 -w ,:0 -c ,:2"); | 128 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp --ignore-mib-parsing-errors -C $snmp_community -o system.sysUpTime.0,host.hrSWRun.hrSWRunTable.hrSWRunEntry.hrSWRunIndex.1 -w ,:0 -c ,:2"); |
129 | cmp_ok( $res->return_code, '==', 1, "Exit WARNING on 2nd threshold"); | 129 | cmp_ok( $res->return_code, '==', 1, "Exit WARNING on 2nd threshold"); |
130 | like($res->output, '/^SNMP WARNING - Timeticks:\s\(\d+\)\s+(?:\d+ days?,\s+)?\d+:\d+:\d+\.\d+\s+\*1\*\s.*$/', "First OID returned as string, 2nd checked for thresholds"); | 130 | like($res->output, '/^SNMP WARNING - Timeticks:\s\(\d+\)\s+(?:\d+ days?,\s+)?\d+:\d+:\d+\.\d+\s+\*1\*\s.*$/', "First OID returned as string, 2nd checked for thresholds"); |
131 | 131 | ||
132 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp -C $snmp_community -o host.hrSWRun.hrSWRunTable.hrSWRunEntry.hrSWRunIndex.1 -w '' -c ''"); | 132 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp --ignore-mib-parsing-errors -C $snmp_community -o host.hrSWRun.hrSWRunTable.hrSWRunEntry.hrSWRunIndex.1 -w '' -c ''"); |
133 | cmp_ok( $res->return_code, '==', 0, "Empty thresholds doesn't crash"); | 133 | cmp_ok( $res->return_code, '==', 0, "Empty thresholds doesn't crash"); |
134 | 134 | ||
135 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp -C $snmp_community -o host.hrStorage.hrMemorySize.0,host.hrSystem.hrSystemProcesses.0 -w ,,1 -c ,,2"); | 135 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp --ignore-mib-parsing-errors -C $snmp_community -o host.hrStorage.hrMemorySize.0,host.hrSystem.hrSystemProcesses.0 -w ,,1 -c ,,2"); |
136 | cmp_ok( $res->return_code, '==', 0, "Skipping first two thresholds on 2 OID check"); | 136 | cmp_ok( $res->return_code, '==', 0, "Skipping first two thresholds on 2 OID check"); |
137 | like($res->output, '/^SNMP OK - \d+ \w+ \d+\s.*$/', "Skipping first two thresholds, result printed rather than parsed"); | 137 | like($res->output, '/^SNMP OK - \d+ \w+ \d+\s.*$/', "Skipping first two thresholds, result printed rather than parsed"); |
138 | 138 | ||
139 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp -C $snmp_community -o host.hrStorage.hrMemorySize.0,host.hrSystem.hrSystemProcesses.0 -w ,, -c ,,"); | 139 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp --ignore-mib-parsing-errors -C $snmp_community -o host.hrStorage.hrMemorySize.0,host.hrSystem.hrSystemProcesses.0 -w ,, -c ,,"); |
140 | cmp_ok( $res->return_code, '==', 0, "Skipping all thresholds"); | 140 | cmp_ok( $res->return_code, '==', 0, "Skipping all thresholds"); |
141 | like($res->output, '/^SNMP OK - \d+ \w+ \d+\s.*$/', "Skipping all thresholds, result printed rather than parsed"); | 141 | like($res->output, '/^SNMP OK - \d+ \w+ \d+\s.*$/', "Skipping all thresholds, result printed rather than parsed"); |
142 | 142 | ||
143 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp -C $snmp_community -o system.sysUpTime.0 -c 1000000000000: -u '1/100 sec'"); | 143 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp --ignore-mib-parsing-errors -C $snmp_community -o system.sysUpTime.0 -c 1000000000000: -u '1/100 sec'"); |
144 | cmp_ok( $res->return_code, '==', 2, "Timetick used as a threshold"); | 144 | cmp_ok( $res->return_code, '==', 2, "Timetick used as a threshold"); |
145 | like($res->output, '/^SNMP CRITICAL - \*\d+\* 1\/100 sec.*$/', "Timetick used as a threshold, parsed as numeric"); | 145 | like($res->output, '/^SNMP CRITICAL - \*\d+\* 1\/100 sec.*$/', "Timetick used as a threshold, parsed as numeric"); |
146 | 146 | ||
147 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp -C $snmp_community -o system.sysUpTime.0"); | 147 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp --ignore-mib-parsing-errors -C $snmp_community -o system.sysUpTime.0"); |
148 | cmp_ok( $res->return_code, '==', 0, "Timetick used as a string"); | 148 | cmp_ok( $res->return_code, '==', 0, "Timetick used as a string"); |
149 | like($res->output, '/^SNMP OK - Timeticks:\s\(\d+\)\s+(?:\d+ days?,\s+)?\d+:\d+:\d+\.\d+\s.*$/', "Timetick used as a string, result printed rather than parsed"); | 149 | like($res->output, '/^SNMP OK - Timeticks:\s\(\d+\)\s+(?:\d+ days?,\s+)?\d+:\d+:\d+\.\d+\s.*$/', "Timetick used as a string, result printed rather than parsed"); |
150 | 150 | ||
151 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp -C $snmp_community -o HOST-RESOURCES-MIB::hrSWRunName.1"); | 151 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp --ignore-mib-parsing-errors -C $snmp_community -o HOST-RESOURCES-MIB::hrSWRunName.1"); |
152 | cmp_ok( $res->return_code, '==', 0, "snmp response without datatype"); | 152 | cmp_ok( $res->return_code, '==', 0, "snmp response without datatype"); |
153 | like( $res->output, '/^SNMP OK - "(systemd|init)" \| $/', "snmp response without datatype" ); | 153 | like( $res->output, '/^SNMP OK - "(systemd|init)" \| $/', "snmp response without datatype" ); |
154 | } | 154 | } |
155 | 155 | ||
156 | SKIP: { | 156 | SKIP: { |
157 | skip "no SNMP user defined", 1 if ( ! $user_snmp ); | 157 | skip "no SNMP user defined", 1 if ( ! $user_snmp ); |
158 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp -o HOST-RESOURCES-MIB::hrSystemUptime.0 -P 3 -U $user_snmp -L noAuthNoPriv"); | 158 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp --ignore-mib-parsing-errors -o HOST-RESOURCES-MIB::hrSystemUptime.0 -P 3 -U $user_snmp -L noAuthNoPriv"); |
159 | like( $res->output, '/^SNMP OK - Timeticks:\s\(\d+\)\s+(?:\d+ days?,\s+)?\d+:\d+:\d+\.\d+\s.*$/', "noAuthNoPriv security level works properly" ); | 159 | like( $res->output, '/^SNMP OK - Timeticks:\s\(\d+\)\s+(?:\d+ days?,\s+)?\d+:\d+:\d+\.\d+\s.*$/', "noAuthNoPriv security level works properly" ); |
160 | } | 160 | } |
161 | 161 | ||
@@ -163,14 +163,14 @@ SKIP: { | |||
163 | # the tests can run on hosts w/o snmp host/community in NPTest.cache. Execution will fail anyway | 163 | # the tests can run on hosts w/o snmp host/community in NPTest.cache. Execution will fail anyway |
164 | SKIP: { | 164 | SKIP: { |
165 | skip "no non responsive host defined", 2 if ( ! $host_nonresponsive ); | 165 | skip "no non responsive host defined", 2 if ( ! $host_nonresponsive ); |
166 | $res = NPTest->testCmd( "./check_snmp -H $host_nonresponsive -C np_foobar -o system.sysUpTime.0 -w 1: -c 1:"); | 166 | $res = NPTest->testCmd( "./check_snmp -H $host_nonresponsive --ignore-mib-parsing-errors -C np_foobar -o system.sysUpTime.0 -w 1: -c 1:"); |
167 | cmp_ok( $res->return_code, '==', 2, "Exit CRITICAL with non responsive host" ); | 167 | cmp_ok( $res->return_code, '==', 2, "Exit CRITICAL with non responsive host" ); |
168 | like($res->output, '/Plugin timed out while executing system call/', "String matches timeout problem"); | 168 | like($res->output, '/Plugin timed out while executing system call/', "String matches timeout problem"); |
169 | } | 169 | } |
170 | 170 | ||
171 | SKIP: { | 171 | SKIP: { |
172 | skip "no non invalid host defined", 2 if ( ! $hostname_invalid ); | 172 | skip "no non invalid host defined", 2 if ( ! $hostname_invalid ); |
173 | $res = NPTest->testCmd( "./check_snmp -H $hostname_invalid -C np_foobar -o system.sysUpTime.0 -w 1: -c 1:"); | 173 | $res = NPTest->testCmd( "./check_snmp -H $hostname_invalid --ignore-mib-parsing-errors -C np_foobar -o system.sysUpTime.0 -w 1: -c 1:"); |
174 | cmp_ok( $res->return_code, '==', 3, "Exit UNKNOWN with non responsive host" ); | 174 | cmp_ok( $res->return_code, '==', 3, "Exit UNKNOWN with non responsive host" ); |
175 | like($res->output, '/External command error: .*(nosuchhost|Name or service not known|Unknown host)/', "String matches invalid host"); | 175 | like($res->output, '/External command error: .*(nosuchhost|Name or service not known|Unknown host).*/s', "String matches invalid host"); |
176 | } | 176 | } |
diff --git a/po/Makevars b/po/Makevars index 1bf1e0d..b35f5ad 100644 --- a/po/Makevars +++ b/po/Makevars | |||
@@ -8,7 +8,7 @@ subdir = po | |||
8 | top_builddir = .. | 8 | top_builddir = .. |
9 | 9 | ||
10 | # These options get passed to xgettext. | 10 | # These options get passed to xgettext. |
11 | XGETTEXT_OPTIONS = --keyword=_ --keyword=N_ --flag=error:3:c-format --flag=error_at_line:5:c-format --flag=asprintf:2:c-format --flag=vasprintf:2:c-format | 11 | XGETTEXT_OPTIONS = --keyword=_ --keyword=N_ --flag=error:3:c-format --flag=error_at_line:5:c-format --flag=asprintf:2:c-format --flag=vasprintf:2:c-format --no-location |
12 | 12 | ||
13 | # This is the copyright holder that gets inserted into the header of the | 13 | # This is the copyright holder that gets inserted into the header of the |
14 | # $(DOMAIN).pot file. Set this to the copyright holder of the surrounding | 14 | # $(DOMAIN).pot file. Set this to the copyright holder of the surrounding |
@@ -9,7 +9,7 @@ msgid "" | |||
9 | msgstr "" | 9 | msgstr "" |
10 | "Project-Id-Version: nagiosplug\n" | 10 | "Project-Id-Version: nagiosplug\n" |
11 | "Report-Msgid-Bugs-To: devel@monitoring-plugins.org\n" | 11 | "Report-Msgid-Bugs-To: devel@monitoring-plugins.org\n" |
12 | "POT-Creation-Date: 2023-07-11 16:07+0200\n" | 12 | "POT-Creation-Date: 2023-09-05 00:31+0200\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,104 +19,67 @@ msgstr "" | |||
19 | "Content-Transfer-Encoding: 8bit\n" | 19 | "Content-Transfer-Encoding: 8bit\n" |
20 | "Plural-Forms: nplurals=2; plural=(n > 1);X-Generator: KBabel 1.3.1\n" | 20 | "Plural-Forms: nplurals=2; plural=(n > 1);X-Generator: KBabel 1.3.1\n" |
21 | 21 | ||
22 | #: plugins/check_by_ssh.c:88 plugins/check_cluster.c:76 plugins/check_dig.c:91 | ||
23 | #: plugins/check_disk.c:206 plugins/check_dns.c:106 plugins/check_dummy.c:52 | ||
24 | #: plugins/check_fping.c:95 plugins/check_game.c:82 plugins/check_hpjd.c:105 | ||
25 | #: plugins/check_http.c:174 plugins/check_ldap.c:118 plugins/check_load.c:128 | ||
26 | #: plugins/check_mrtgtraf.c:83 plugins/check_mysql.c:124 | ||
27 | #: plugins/check_nagios.c:91 plugins/check_nt.c:127 plugins/check_ntp.c:780 | ||
28 | #: plugins/check_ntp_peer.c:575 plugins/check_ntp_time.c:557 | ||
29 | #: plugins/check_nwstat.c:173 plugins/check_overcr.c:102 | ||
30 | #: plugins/check_pgsql.c:174 plugins/check_ping.c:97 plugins/check_procs.c:176 | ||
31 | #: plugins/check_radius.c:176 plugins/check_real.c:80 plugins/check_smtp.c:146 | ||
32 | #: plugins/check_snmp.c:248 plugins/check_ssh.c:74 plugins/check_swap.c:115 | ||
33 | #: plugins/check_tcp.c:222 plugins/check_time.c:78 plugins/check_ups.c:122 | ||
34 | #: plugins/check_users.c:84 plugins/negate.c:210 plugins-root/check_dhcp.c:270 | ||
35 | msgid "Could not parse arguments" | 22 | msgid "Could not parse arguments" |
36 | msgstr "Argumente konnten nicht ausgewertet werden" | 23 | msgstr "Argumente konnten nicht ausgewertet werden" |
37 | 24 | ||
38 | #: plugins/check_by_ssh.c:92 plugins/check_dig.c:85 plugins/check_dns.c:99 | ||
39 | #: plugins/check_nagios.c:95 plugins/check_pgsql.c:180 plugins/check_ping.c:101 | ||
40 | #: plugins/check_procs.c:192 plugins/check_snmp.c:348 plugins/negate.c:78 | ||
41 | msgid "Cannot catch SIGALRM" | 25 | msgid "Cannot catch SIGALRM" |
42 | msgstr "Konnte SIGALRM nicht erhalten" | 26 | msgstr "Konnte SIGALRM nicht erhalten" |
43 | 27 | ||
44 | #: plugins/check_by_ssh.c:107 | ||
45 | #, c-format | 28 | #, c-format |
46 | msgid "SSH connection failed: %s\n" | 29 | msgid "SSH connection failed: %s\n" |
47 | msgstr "" | 30 | msgstr "" |
48 | 31 | ||
49 | #: plugins/check_by_ssh.c:126 | ||
50 | #, c-format | 32 | #, c-format |
51 | msgid "Remote command execution failed: %s\n" | 33 | msgid "Remote command execution failed: %s\n" |
52 | msgstr "" | 34 | msgstr "" |
53 | 35 | ||
54 | #: plugins/check_by_ssh.c:141 | ||
55 | #, c-format | 36 | #, c-format |
56 | msgid "%s - check_by_ssh: Remote command '%s' returned status %d\n" | 37 | msgid "%s - check_by_ssh: Remote command '%s' returned status %d\n" |
57 | msgstr "" | 38 | msgstr "" |
58 | 39 | ||
59 | #: plugins/check_by_ssh.c:153 | ||
60 | #, c-format | 40 | #, c-format |
61 | msgid "SSH WARNING: could not open %s\n" | 41 | msgid "SSH WARNING: could not open %s\n" |
62 | msgstr "SSH WARNING: Konnte %s nicht öffnen\n" | 42 | msgstr "SSH WARNING: Konnte %s nicht öffnen\n" |
63 | 43 | ||
64 | #: plugins/check_by_ssh.c:162 | ||
65 | #, c-format | 44 | #, c-format |
66 | msgid "%s: Error parsing output\n" | 45 | msgid "%s: Error parsing output\n" |
67 | msgstr "" | 46 | msgstr "" |
68 | 47 | ||
69 | #: plugins/check_by_ssh.c:242 plugins/check_disk.c:568 plugins/check_http.c:292 | ||
70 | #: plugins/check_ldap.c:334 plugins/check_pgsql.c:314 plugins/check_procs.c:461 | ||
71 | #: plugins/check_radius.c:323 plugins/check_real.c:357 plugins/check_smtp.c:607 | ||
72 | #: plugins/check_snmp.c:789 plugins/check_ssh.c:140 plugins/check_tcp.c:519 | ||
73 | #: plugins/check_time.c:302 plugins/check_ups.c:559 plugins/negate.c:160 | ||
74 | msgid "Timeout interval must be a positive integer" | 48 | msgid "Timeout interval must be a positive integer" |
75 | msgstr "Timeout interval muss ein positiver Integer sein" | 49 | msgstr "Timeout interval muss ein positiver Integer sein" |
76 | 50 | ||
77 | #: plugins/check_by_ssh.c:254 plugins/check_pgsql.c:344 | ||
78 | #: plugins/check_radius.c:287 plugins/check_real.c:328 plugins/check_smtp.c:532 | ||
79 | #: plugins/check_tcp.c:525 plugins/check_time.c:296 plugins/check_ups.c:521 | ||
80 | msgid "Port must be a positive integer" | 51 | msgid "Port must be a positive integer" |
81 | msgstr "Port muss ein positiver Integer sein" | 52 | msgstr "Port muss ein positiver Integer sein" |
82 | 53 | ||
83 | #: plugins/check_by_ssh.c:315 | ||
84 | #, fuzzy | 54 | #, fuzzy |
85 | msgid "skip-stdout argument must be an integer" | 55 | msgid "skip-stdout argument must be an integer" |
86 | msgstr "skip-stdout argument muss ein Integer sein" | 56 | msgstr "skip-stdout argument muss ein Integer sein" |
87 | 57 | ||
88 | #: plugins/check_by_ssh.c:323 | ||
89 | #, fuzzy | 58 | #, fuzzy |
90 | msgid "skip-stderr argument must be an integer" | 59 | msgid "skip-stderr argument must be an integer" |
91 | msgstr "skip-stderr argument muss ein Integer sein" | 60 | msgstr "skip-stderr argument muss ein Integer sein" |
92 | 61 | ||
93 | #: plugins/check_by_ssh.c:349 | ||
94 | #, c-format | 62 | #, c-format |
95 | msgid "%s: You must provide a host name\n" | 63 | msgid "%s: You must provide a host name\n" |
96 | msgstr "%s: Hostname muss angegeben werden\n" | 64 | msgstr "%s: Hostname muss angegeben werden\n" |
97 | 65 | ||
98 | #: plugins/check_by_ssh.c:366 | ||
99 | msgid "No remotecmd" | 66 | msgid "No remotecmd" |
100 | msgstr "Kein remotecm" | 67 | msgstr "Kein remotecm" |
101 | 68 | ||
102 | #: plugins/check_by_ssh.c:380 | ||
103 | #, c-format | 69 | #, c-format |
104 | msgid "%s: Argument limit of %d exceeded\n" | 70 | msgid "%s: Argument limit of %d exceeded\n" |
105 | msgstr "" | 71 | msgstr "" |
106 | 72 | ||
107 | #: plugins/check_by_ssh.c:383 | ||
108 | #, fuzzy | 73 | #, fuzzy |
109 | msgid "Can not (re)allocate 'commargv' buffer\n" | 74 | msgid "Can not (re)allocate 'commargv' buffer\n" |
110 | msgstr "Konnte·url·nicht·zuweisen\n" | 75 | msgstr "Konnte·url·nicht·zuweisen\n" |
111 | 76 | ||
112 | #: plugins/check_by_ssh.c:397 | ||
113 | #, c-format | 77 | #, c-format |
114 | msgid "" | 78 | msgid "" |
115 | "%s: In passive mode, you must provide a service name for each command.\n" | 79 | "%s: In passive mode, you must provide a service name for each command.\n" |
116 | msgstr "" | 80 | msgstr "" |
117 | "%s: Im passive mode muss ein Servicename für jeden Befehl angegeben werden.\n" | 81 | "%s: Im passive mode muss ein Servicename für jeden Befehl angegeben werden.\n" |
118 | 82 | ||
119 | #: plugins/check_by_ssh.c:400 | ||
120 | #, fuzzy, c-format | 83 | #, fuzzy, c-format |
121 | msgid "" | 84 | msgid "" |
122 | "%s: In passive mode, you must provide the host short name from the " | 85 | "%s: In passive mode, you must provide the host short name from the " |
@@ -125,270 +88,188 @@ msgstr "" | |||
125 | "%s: Im passive mode muss der \"host short name\" aus der Nagios " | 88 | "%s: Im passive mode muss der \"host short name\" aus der Nagios " |
126 | "Konfiguration angegeben werden\n" | 89 | "Konfiguration angegeben werden\n" |
127 | 90 | ||
128 | #: plugins/check_by_ssh.c:414 | ||
129 | #, fuzzy, c-format | 91 | #, fuzzy, c-format |
130 | msgid "This plugin uses SSH to execute commands on a remote host" | 92 | msgid "This plugin uses SSH to execute commands on a remote host" |
131 | msgstr "" | 93 | msgstr "" |
132 | "Dieses Plugin nutzt SSH um Befehle auf dem entfernten Rechner auszuführen\n" | 94 | "Dieses Plugin nutzt SSH um Befehle auf dem entfernten Rechner auszuführen\n" |
133 | "\n" | 95 | "\n" |
134 | 96 | ||
135 | #: plugins/check_by_ssh.c:429 | ||
136 | msgid "tell ssh to use Protocol 1 [optional]" | 97 | msgid "tell ssh to use Protocol 1 [optional]" |
137 | msgstr "" | 98 | msgstr "" |
138 | 99 | ||
139 | #: plugins/check_by_ssh.c:431 | ||
140 | msgid "tell ssh to use Protocol 2 [optional]" | 100 | msgid "tell ssh to use Protocol 2 [optional]" |
141 | msgstr "" | 101 | msgstr "" |
142 | 102 | ||
143 | #: plugins/check_by_ssh.c:433 | ||
144 | msgid "Ignore all or (if specified) first n lines on STDOUT [optional]" | 103 | msgid "Ignore all or (if specified) first n lines on STDOUT [optional]" |
145 | msgstr "" | 104 | msgstr "" |
146 | 105 | ||
147 | #: plugins/check_by_ssh.c:435 | ||
148 | msgid "Ignore all or (if specified) first n lines on STDERR [optional]" | 106 | msgid "Ignore all or (if specified) first n lines on STDERR [optional]" |
149 | msgstr "" | 107 | msgstr "" |
150 | 108 | ||
151 | #: plugins/check_by_ssh.c:437 | ||
152 | msgid "Exit with an warning, if there is an output on STDERR" | 109 | msgid "Exit with an warning, if there is an output on STDERR" |
153 | msgstr "" | 110 | msgstr "" |
154 | 111 | ||
155 | #: plugins/check_by_ssh.c:439 | ||
156 | msgid "" | 112 | msgid "" |
157 | "tells ssh to fork rather than create a tty [optional]. This will always " | 113 | "tells ssh to fork rather than create a tty [optional]. This will always " |
158 | "return OK if ssh is executed" | 114 | "return OK if ssh is executed" |
159 | msgstr "" | 115 | msgstr "" |
160 | 116 | ||
161 | #: plugins/check_by_ssh.c:441 | ||
162 | msgid "command to execute on the remote machine" | 117 | msgid "command to execute on the remote machine" |
163 | msgstr "" | 118 | msgstr "" |
164 | 119 | ||
165 | #: plugins/check_by_ssh.c:443 | ||
166 | msgid "SSH user name on remote host [optional]" | 120 | msgid "SSH user name on remote host [optional]" |
167 | msgstr "" | 121 | msgstr "" |
168 | 122 | ||
169 | #: plugins/check_by_ssh.c:445 | ||
170 | msgid "identity of an authorized key [optional]" | 123 | msgid "identity of an authorized key [optional]" |
171 | msgstr "" | 124 | msgstr "" |
172 | 125 | ||
173 | #: plugins/check_by_ssh.c:447 | ||
174 | msgid "external command file for monitoring [optional]" | 126 | msgid "external command file for monitoring [optional]" |
175 | msgstr "" | 127 | msgstr "" |
176 | 128 | ||
177 | #: plugins/check_by_ssh.c:449 | ||
178 | msgid "list of monitoring service names, separated by ':' [optional]" | 129 | msgid "list of monitoring service names, separated by ':' [optional]" |
179 | msgstr "" | 130 | msgstr "" |
180 | 131 | ||
181 | #: plugins/check_by_ssh.c:451 | ||
182 | msgid "short name of host in the monitoring configuration [optional]" | 132 | msgid "short name of host in the monitoring configuration [optional]" |
183 | msgstr "" | 133 | msgstr "" |
184 | 134 | ||
185 | #: plugins/check_by_ssh.c:453 | ||
186 | msgid "Call ssh with '-o OPTION' (may be used multiple times) [optional]" | 135 | msgid "Call ssh with '-o OPTION' (may be used multiple times) [optional]" |
187 | msgstr "" | 136 | msgstr "" |
188 | 137 | ||
189 | #: plugins/check_by_ssh.c:455 | ||
190 | msgid "Tell ssh to use this configfile [optional]" | 138 | msgid "Tell ssh to use this configfile [optional]" |
191 | msgstr "" | 139 | msgstr "" |
192 | 140 | ||
193 | #: plugins/check_by_ssh.c:457 | ||
194 | msgid "Tell ssh to suppress warning and diagnostic messages [optional]" | 141 | msgid "Tell ssh to suppress warning and diagnostic messages [optional]" |
195 | msgstr "" | 142 | msgstr "" |
196 | 143 | ||
197 | #: plugins/check_by_ssh.c:461 | ||
198 | msgid "Make connection problems return UNKNOWN instead of CRITICAL" | 144 | msgid "Make connection problems return UNKNOWN instead of CRITICAL" |
199 | msgstr "" | 145 | msgstr "" |
200 | 146 | ||
201 | #: plugins/check_by_ssh.c:464 | ||
202 | msgid "The most common mode of use is to refer to a local identity file with" | 147 | msgid "The most common mode of use is to refer to a local identity file with" |
203 | msgstr "" | 148 | msgstr "" |
204 | 149 | ||
205 | #: plugins/check_by_ssh.c:465 | ||
206 | msgid "the '-i' option. In this mode, the identity pair should have a null" | 150 | msgid "the '-i' option. In this mode, the identity pair should have a null" |
207 | msgstr "" | 151 | msgstr "" |
208 | 152 | ||
209 | #: plugins/check_by_ssh.c:466 | ||
210 | msgid "passphrase and the public key should be listed in the authorized_keys" | 153 | msgid "passphrase and the public key should be listed in the authorized_keys" |
211 | msgstr "" | 154 | msgstr "" |
212 | 155 | ||
213 | #: plugins/check_by_ssh.c:467 | ||
214 | msgid "file of the remote host. Usually the key will be restricted to running" | 156 | msgid "file of the remote host. Usually the key will be restricted to running" |
215 | msgstr "" | 157 | msgstr "" |
216 | 158 | ||
217 | #: plugins/check_by_ssh.c:468 | ||
218 | msgid "only one command on the remote server. If the remote SSH server tracks" | 159 | msgid "only one command on the remote server. If the remote SSH server tracks" |
219 | msgstr "" | 160 | msgstr "" |
220 | 161 | ||
221 | #: plugins/check_by_ssh.c:469 | ||
222 | msgid "invocation arguments, the one remote program may be an agent that can" | 162 | msgid "invocation arguments, the one remote program may be an agent that can" |
223 | msgstr "" | 163 | msgstr "" |
224 | 164 | ||
225 | #: plugins/check_by_ssh.c:470 | ||
226 | msgid "execute additional commands as proxy" | 165 | msgid "execute additional commands as proxy" |
227 | msgstr "" | 166 | msgstr "" |
228 | 167 | ||
229 | #: plugins/check_by_ssh.c:472 | ||
230 | msgid "To use passive mode, provide multiple '-C' options, and provide" | 168 | msgid "To use passive mode, provide multiple '-C' options, and provide" |
231 | msgstr "" | 169 | msgstr "" |
232 | 170 | ||
233 | #: plugins/check_by_ssh.c:473 | ||
234 | msgid "" | 171 | msgid "" |
235 | "all of -O, -s, and -n options (servicelist order must match '-C'options)" | 172 | "all of -O, -s, and -n options (servicelist order must match '-C'options)" |
236 | msgstr "" | 173 | msgstr "" |
237 | 174 | ||
238 | #: plugins/check_by_ssh.c:475 plugins/check_cluster.c:271 | ||
239 | #: plugins/check_dig.c:364 plugins/check_disk.c:1015 plugins/check_http.c:1846 | ||
240 | #: plugins/check_nagios.c:312 plugins/check_ntp.c:879 | ||
241 | #: plugins/check_ntp_peer.c:733 plugins/check_ntp_time.c:642 | ||
242 | #: plugins/check_procs.c:806 plugins/negate.c:249 plugins/urlize.c:179 | ||
243 | msgid "Examples:" | 175 | msgid "Examples:" |
244 | msgstr "" | 176 | msgstr "" |
245 | 177 | ||
246 | #: plugins/check_by_ssh.c:490 plugins/check_cluster.c:284 | ||
247 | #: plugins/check_dig.c:376 plugins/check_disk.c:1032 plugins/check_dns.c:617 | ||
248 | #: plugins/check_dummy.c:122 plugins/check_fping.c:525 plugins/check_game.c:331 | ||
249 | #: plugins/check_hpjd.c:440 plugins/check_http.c:1884 plugins/check_ldap.c:511 | ||
250 | #: plugins/check_load.c:372 plugins/check_mrtg.c:382 plugins/check_mysql.c:587 | ||
251 | #: plugins/check_nagios.c:323 plugins/check_nt.c:797 plugins/check_ntp.c:898 | ||
252 | #: plugins/check_ntp_peer.c:753 plugins/check_ntp_time.c:651 | ||
253 | #: plugins/check_nwstat.c:1685 plugins/check_overcr.c:467 | ||
254 | #: plugins/check_pgsql.c:551 plugins/check_ping.c:617 plugins/check_procs.c:829 | ||
255 | #: plugins/check_radius.c:400 plugins/check_real.c:452 plugins/check_smtp.c:891 | ||
256 | #: plugins/check_snmp.c:1347 plugins/check_ssh.c:325 plugins/check_swap.c:607 | ||
257 | #: plugins/check_tcp.c:710 plugins/check_time.c:371 plugins/check_ups.c:663 | ||
258 | #: plugins/check_users.c:262 plugins/check_ide_smart.c:606 plugins/negate.c:273 | ||
259 | #: plugins/urlize.c:196 plugins-root/check_dhcp.c:1390 | ||
260 | #: plugins-root/check_icmp.c:1633 | ||
261 | msgid "Usage:" | 178 | msgid "Usage:" |
262 | msgstr "" | 179 | msgstr "" |
263 | 180 | ||
264 | #: plugins/check_cluster.c:240 | ||
265 | #, c-format | 181 | #, c-format |
266 | msgid "Host/Service Cluster Plugin for Monitoring" | 182 | msgid "Host/Service Cluster Plugin for Monitoring" |
267 | msgstr "" | 183 | msgstr "" |
268 | 184 | ||
269 | #: plugins/check_cluster.c:246 plugins/check_nt.c:697 | ||
270 | msgid "Options:" | 185 | msgid "Options:" |
271 | msgstr "" | 186 | msgstr "" |
272 | 187 | ||
273 | #: plugins/check_cluster.c:249 | ||
274 | msgid "Check service cluster status" | 188 | msgid "Check service cluster status" |
275 | msgstr "" | 189 | msgstr "" |
276 | 190 | ||
277 | #: plugins/check_cluster.c:251 | ||
278 | msgid "Check host cluster status" | 191 | msgid "Check host cluster status" |
279 | msgstr "" | 192 | msgstr "" |
280 | 193 | ||
281 | #: plugins/check_cluster.c:253 | ||
282 | msgid "Optional prepended text output (i.e. \"Host cluster\")" | 194 | msgid "Optional prepended text output (i.e. \"Host cluster\")" |
283 | msgstr "" | 195 | msgstr "" |
284 | 196 | ||
285 | #: plugins/check_cluster.c:255 plugins/check_cluster.c:258 | ||
286 | msgid "Specifies the range of hosts or services in cluster that must be in a" | 197 | msgid "Specifies the range of hosts or services in cluster that must be in a" |
287 | msgstr "" | 198 | msgstr "" |
288 | 199 | ||
289 | #: plugins/check_cluster.c:256 | ||
290 | msgid "non-OK state in order to return a WARNING status level" | 200 | msgid "non-OK state in order to return a WARNING status level" |
291 | msgstr "" | 201 | msgstr "" |
292 | 202 | ||
293 | #: plugins/check_cluster.c:259 | ||
294 | msgid "non-OK state in order to return a CRITICAL status level" | 203 | msgid "non-OK state in order to return a CRITICAL status level" |
295 | msgstr "" | 204 | msgstr "" |
296 | 205 | ||
297 | #: plugins/check_cluster.c:261 | ||
298 | msgid "The status codes of the hosts or services in the cluster, separated by" | 206 | msgid "The status codes of the hosts or services in the cluster, separated by" |
299 | msgstr "" | 207 | msgstr "" |
300 | 208 | ||
301 | #: plugins/check_cluster.c:262 | ||
302 | msgid "commas" | 209 | msgid "commas" |
303 | msgstr "" | 210 | msgstr "" |
304 | 211 | ||
305 | #: plugins/check_cluster.c:267 plugins/check_game.c:318 | ||
306 | #: plugins/check_http.c:1828 plugins/check_ldap.c:497 plugins/check_mrtg.c:363 | ||
307 | #: plugins/check_mrtgtraf.c:361 plugins/check_mysql.c:576 | ||
308 | #: plugins/check_nt.c:781 plugins/check_ntp.c:875 plugins/check_ntp_peer.c:724 | ||
309 | #: plugins/check_ntp_time.c:633 plugins/check_nwstat.c:1670 | ||
310 | #: plugins/check_overcr.c:456 plugins/check_snmp.c:1318 | ||
311 | #: plugins/check_swap.c:596 plugins/check_ups.c:645 | ||
312 | #: plugins/check_ide_smart.c:580 plugins/negate.c:255 | ||
313 | #: plugins-root/check_icmp.c:1608 | ||
314 | msgid "Notes:" | 212 | msgid "Notes:" |
315 | msgstr "" | 213 | msgstr "" |
316 | 214 | ||
317 | #: plugins/check_cluster.c:273 | ||
318 | msgid "" | 215 | msgid "" |
319 | "Will alert critical if there are 3 or more service data points in a non-OK" | 216 | "Will alert critical if there are 3 or more service data points in a non-OK" |
320 | msgstr "" | 217 | msgstr "" |
321 | 218 | ||
322 | #: plugins/check_cluster.c:274 plugins/check_ups.c:642 | ||
323 | msgid "state." | 219 | msgid "state." |
324 | msgstr "" | 220 | msgstr "" |
325 | 221 | ||
326 | #: plugins/check_dig.c:106 plugins/check_dig.c:108 | ||
327 | #, c-format | 222 | #, c-format |
328 | msgid "Looking for: '%s'\n" | 223 | msgid "Looking for: '%s'\n" |
329 | msgstr "" | 224 | msgstr "" |
330 | 225 | ||
331 | #: plugins/check_dig.c:115 | ||
332 | msgid "dig returned an error status" | 226 | msgid "dig returned an error status" |
333 | msgstr "dig hat einen Fehler zurückgegeben" | 227 | msgstr "dig hat einen Fehler zurückgegeben" |
334 | 228 | ||
335 | #: plugins/check_dig.c:140 | ||
336 | msgid "Server not found in ANSWER SECTION" | 229 | msgid "Server not found in ANSWER SECTION" |
337 | msgstr "Server nicht gefunden in ANSWER SECTION" | 230 | msgstr "Server nicht gefunden in ANSWER SECTION" |
338 | 231 | ||
339 | #: plugins/check_dig.c:150 | ||
340 | msgid "No ANSWER SECTION found" | 232 | msgid "No ANSWER SECTION found" |
341 | msgstr "Keine ANSWER SECTION gefunden" | 233 | msgstr "Keine ANSWER SECTION gefunden" |
342 | 234 | ||
343 | #: plugins/check_dig.c:177 | ||
344 | #, fuzzy | 235 | #, fuzzy |
345 | msgid "Probably a non-existent host/domain" | 236 | msgid "Probably a non-existent host/domain" |
346 | msgstr "nicht existierender Host/Domain" | 237 | msgstr "nicht existierender Host/Domain" |
347 | 238 | ||
348 | #: plugins/check_dig.c:239 | ||
349 | #, fuzzy, c-format | 239 | #, fuzzy, c-format |
350 | msgid "Port must be a positive integer - %s" | 240 | msgid "Port must be a positive integer - %s" |
351 | msgstr "Port muss ein positiver Integer sein - %s" | 241 | msgstr "Port muss ein positiver Integer sein - %s" |
352 | 242 | ||
353 | #: plugins/check_dig.c:250 | ||
354 | #, fuzzy, c-format | 243 | #, fuzzy, c-format |
355 | msgid "Warning interval must be a positive integer - %s" | 244 | msgid "Warning interval must be a positive integer - %s" |
356 | msgstr "Warning interval muss ein positiver Integer sein - %s" | 245 | msgstr "Warning interval muss ein positiver Integer sein - %s" |
357 | 246 | ||
358 | #: plugins/check_dig.c:258 | ||
359 | #, fuzzy, c-format | 247 | #, fuzzy, c-format |
360 | msgid "Critical interval must be a positive integer - %s" | 248 | msgid "Critical interval must be a positive integer - %s" |
361 | msgstr "Critical interval muss ein positiver Integer sein - %s" | 249 | msgstr "Critical interval muss ein positiver Integer sein - %s" |
362 | 250 | ||
363 | #: plugins/check_dig.c:266 | ||
364 | #, fuzzy, c-format | 251 | #, fuzzy, c-format |
365 | msgid "Timeout interval must be a positive integer - %s" | 252 | msgid "Timeout interval must be a positive integer - %s" |
366 | msgstr "Timeout interval muss ein positiver Integer sein - %s" | 253 | msgstr "Timeout interval muss ein positiver Integer sein - %s" |
367 | 254 | ||
368 | #: plugins/check_dig.c:334 | ||
369 | #, fuzzy, c-format | 255 | #, fuzzy, c-format |
370 | msgid "This plugin tests the DNS service on the specified host using dig" | 256 | msgid "This plugin tests the DNS service on the specified host using dig" |
371 | msgstr "Testet den DNS Dienst auf dem angegebenen Host mit dig" | 257 | msgstr "Testet den DNS Dienst auf dem angegebenen Host mit dig" |
372 | 258 | ||
373 | #: plugins/check_dig.c:347 | ||
374 | msgid "Force dig to only use IPv4 query transport" | 259 | msgid "Force dig to only use IPv4 query transport" |
375 | msgstr "" | 260 | msgstr "" |
376 | 261 | ||
377 | #: plugins/check_dig.c:349 | ||
378 | msgid "Force dig to only use IPv6 query transport" | 262 | msgid "Force dig to only use IPv6 query transport" |
379 | msgstr "" | 263 | msgstr "" |
380 | 264 | ||
381 | #: plugins/check_dig.c:351 | ||
382 | #, fuzzy | 265 | #, fuzzy |
383 | msgid "Machine name to lookup" | 266 | msgid "Machine name to lookup" |
384 | msgstr "zu prüfender Hostname" | 267 | msgstr "zu prüfender Hostname" |
385 | 268 | ||
386 | #: plugins/check_dig.c:353 | ||
387 | #, fuzzy | 269 | #, fuzzy |
388 | msgid "Record type to lookup (default: A)" | 270 | msgid "Record type to lookup (default: A)" |
389 | msgstr "abzufragender Datensatztyp (Default: A)" | 271 | msgstr "abzufragender Datensatztyp (Default: A)" |
390 | 272 | ||
391 | #: plugins/check_dig.c:355 | ||
392 | #, fuzzy | 273 | #, fuzzy |
393 | msgid "" | 274 | msgid "" |
394 | "An address expected to be in the answer section. If not set, uses whatever" | 275 | "An address expected to be in the answer section. If not set, uses whatever" |
@@ -396,95 +277,69 @@ msgstr "" | |||
396 | "Adresse die in der ANSWER SECTION erwartet wird.wenn nicht gesetzt, " | 277 | "Adresse die in der ANSWER SECTION erwartet wird.wenn nicht gesetzt, " |
397 | "ubernommen aus -l" | 278 | "ubernommen aus -l" |
398 | 279 | ||
399 | #: plugins/check_dig.c:356 | ||
400 | msgid "was in -l" | 280 | msgid "was in -l" |
401 | msgstr "" | 281 | msgstr "" |
402 | 282 | ||
403 | #: plugins/check_dig.c:358 | ||
404 | msgid "Pass STRING as argument(s) to dig" | 283 | msgid "Pass STRING as argument(s) to dig" |
405 | msgstr "" | 284 | msgstr "" |
406 | 285 | ||
407 | #: plugins/check_disk.c:241 | ||
408 | #, fuzzy, c-format | 286 | #, fuzzy, c-format |
409 | msgid "DISK %s: %s not found\n" | 287 | msgid "DISK %s: %s not found\n" |
410 | msgstr "%s [%s nicht gefunden]" | 288 | msgstr "%s [%s nicht gefunden]" |
411 | 289 | ||
412 | #: plugins/check_disk.c:241 plugins/check_disk.c:1050 plugins/check_dns.c:295 | ||
413 | #: plugins/check_dummy.c:74 plugins/check_mysql.c:313 | ||
414 | #: plugins/check_nagios.c:104 plugins/check_nagios.c:168 | ||
415 | #: plugins/check_nagios.c:172 plugins/check_pgsql.c:575 | ||
416 | #: plugins/check_pgsql.c:592 plugins/check_pgsql.c:601 | ||
417 | #: plugins/check_pgsql.c:616 plugins/check_procs.c:374 | ||
418 | #, c-format | 290 | #, c-format |
419 | msgid "CRITICAL" | 291 | msgid "CRITICAL" |
420 | msgstr "CRITICAL" | 292 | msgstr "CRITICAL" |
421 | 293 | ||
422 | #: plugins/check_disk.c:660 | ||
423 | #, c-format | 294 | #, c-format |
424 | msgid "unit type %s not known\n" | 295 | msgid "unit type %s not known\n" |
425 | msgstr "unbekannter unit type: %s\n" | 296 | msgstr "unbekannter unit type: %s\n" |
426 | 297 | ||
427 | #: plugins/check_disk.c:663 | ||
428 | #, c-format | 298 | #, c-format |
429 | msgid "failed allocating storage for '%s'\n" | 299 | msgid "failed allocating storage for '%s'\n" |
430 | msgstr "konnte keinen Speicher für '%s' reservieren\n" | 300 | msgstr "konnte keinen Speicher für '%s' reservieren\n" |
431 | 301 | ||
432 | #: plugins/check_disk.c:691 plugins/check_disk.c:739 plugins/check_disk.c:747 | ||
433 | #: plugins/check_disk.c:755 plugins/check_disk.c:759 plugins/check_disk.c:804 | ||
434 | #: plugins/check_disk.c:810 plugins/check_disk.c:833 plugins/check_dummy.c:77 | ||
435 | #: plugins/check_dummy.c:80 plugins/check_pgsql.c:617 plugins/check_procs.c:547 | ||
436 | #, c-format | 302 | #, c-format |
437 | msgid "UNKNOWN" | 303 | msgid "UNKNOWN" |
438 | msgstr "UNKNOWN" | 304 | msgstr "UNKNOWN" |
439 | 305 | ||
440 | #: plugins/check_disk.c:691 | ||
441 | msgid "Must set a threshold value before using -p\n" | 306 | msgid "Must set a threshold value before using -p\n" |
442 | msgstr "" | 307 | msgstr "" |
443 | 308 | ||
444 | #: plugins/check_disk.c:739 | ||
445 | msgid "Must set -E before selecting paths\n" | 309 | msgid "Must set -E before selecting paths\n" |
446 | msgstr "" | 310 | msgstr "" |
447 | 311 | ||
448 | #: plugins/check_disk.c:747 | ||
449 | msgid "Must set group value before selecting paths\n" | 312 | msgid "Must set group value before selecting paths\n" |
450 | msgstr "" | 313 | msgstr "" |
451 | 314 | ||
452 | #: plugins/check_disk.c:755 | ||
453 | msgid "" | 315 | msgid "" |
454 | "Paths need to be selected before using -i/-I. Use -A to select all paths " | 316 | "Paths need to be selected before using -i/-I. Use -A to select all paths " |
455 | "explicitly" | 317 | "explicitly" |
456 | msgstr "" | 318 | msgstr "" |
457 | 319 | ||
458 | #: plugins/check_disk.c:759 plugins/check_disk.c:810 plugins/check_procs.c:547 | ||
459 | msgid "Could not compile regular expression" | 320 | msgid "Could not compile regular expression" |
460 | msgstr "" | 321 | msgstr "" |
461 | 322 | ||
462 | #: plugins/check_disk.c:804 | ||
463 | msgid "Must set a threshold value before using -r/-R\n" | 323 | msgid "Must set a threshold value before using -r/-R\n" |
464 | msgstr "" | 324 | msgstr "" |
465 | 325 | ||
466 | #: plugins/check_disk.c:834 | ||
467 | msgid "Regular expression did not match any path or disk" | 326 | msgid "Regular expression did not match any path or disk" |
468 | msgstr "" | 327 | msgstr "" |
469 | 328 | ||
470 | #: plugins/check_disk.c:880 | ||
471 | #, fuzzy | 329 | #, fuzzy |
472 | msgid "Unknown argument" | 330 | msgid "Unknown argument" |
473 | msgstr "Unbekanntes Argument" | 331 | msgstr "Unbekanntes Argument" |
474 | 332 | ||
475 | #: plugins/check_disk.c:914 | ||
476 | #, c-format | 333 | #, c-format |
477 | msgid " for %s\n" | 334 | msgid " for %s\n" |
478 | msgstr "" | 335 | msgstr "" |
479 | 336 | ||
480 | #: plugins/check_disk.c:943 | ||
481 | #, fuzzy | 337 | #, fuzzy |
482 | msgid "" | 338 | msgid "" |
483 | "This plugin checks the amount of used disk space on a mounted file system" | 339 | "This plugin checks the amount of used disk space on a mounted file system" |
484 | msgstr "" | 340 | msgstr "" |
485 | "Dieses Plugin prüft den freien Speicher auf einem gemounteten Filesystem" | 341 | "Dieses Plugin prüft den freien Speicher auf einem gemounteten Filesystem" |
486 | 342 | ||
487 | #: plugins/check_disk.c:944 | ||
488 | #, fuzzy | 343 | #, fuzzy |
489 | msgid "" | 344 | msgid "" |
490 | "and generates an alert if free space is less than one of the threshold values" | 345 | "and generates an alert if free space is less than one of the threshold values" |
@@ -492,702 +347,536 @@ msgstr "" | |||
492 | "und erzeugt einen Alarm wenn einer der angegebenen Schwellwerte " | 347 | "und erzeugt einen Alarm wenn einer der angegebenen Schwellwerte " |
493 | "unterschritten wird." | 348 | "unterschritten wird." |
494 | 349 | ||
495 | #: plugins/check_disk.c:954 | ||
496 | msgid "Exit with WARNING status if less than INTEGER units of disk are free" | 350 | msgid "Exit with WARNING status if less than INTEGER units of disk are free" |
497 | msgstr "" | 351 | msgstr "" |
498 | 352 | ||
499 | #: plugins/check_disk.c:956 | ||
500 | msgid "Exit with WARNING status if less than PERCENT of disk space is free" | 353 | msgid "Exit with WARNING status if less than PERCENT of disk space is free" |
501 | msgstr "" | 354 | msgstr "" |
502 | 355 | ||
503 | #: plugins/check_disk.c:958 | ||
504 | msgid "Exit with CRITICAL status if less than INTEGER units of disk are free" | 356 | msgid "Exit with CRITICAL status if less than INTEGER units of disk are free" |
505 | msgstr "" | 357 | msgstr "" |
506 | 358 | ||
507 | #: plugins/check_disk.c:960 | ||
508 | msgid "Exit with CRITICAL status if less than PERCENT of disk space is free" | 359 | msgid "Exit with CRITICAL status if less than PERCENT of disk space is free" |
509 | msgstr "" | 360 | msgstr "" |
510 | 361 | ||
511 | #: plugins/check_disk.c:962 | ||
512 | msgid "Exit with WARNING status if less than PERCENT of inode space is free" | 362 | msgid "Exit with WARNING status if less than PERCENT of inode space is free" |
513 | msgstr "" | 363 | msgstr "" |
514 | 364 | ||
515 | #: plugins/check_disk.c:964 | ||
516 | msgid "Exit with CRITICAL status if less than PERCENT of inode space is free" | 365 | msgid "Exit with CRITICAL status if less than PERCENT of inode space is free" |
517 | msgstr "" | 366 | msgstr "" |
518 | 367 | ||
519 | #: plugins/check_disk.c:966 | ||
520 | msgid "" | 368 | msgid "" |
521 | "Mount point or block device as emitted by the mount(8) command (may be " | 369 | "Mount point or block device as emitted by the mount(8) command (may be " |
522 | "repeated)" | 370 | "repeated)" |
523 | msgstr "" | 371 | msgstr "" |
524 | 372 | ||
525 | #: plugins/check_disk.c:968 | ||
526 | msgid "Ignore device (only works if -p unspecified)" | 373 | msgid "Ignore device (only works if -p unspecified)" |
527 | msgstr "" | 374 | msgstr "" |
528 | 375 | ||
529 | #: plugins/check_disk.c:970 | ||
530 | msgid "Clear thresholds" | 376 | msgid "Clear thresholds" |
531 | msgstr "" | 377 | msgstr "" |
532 | 378 | ||
533 | #: plugins/check_disk.c:972 | ||
534 | msgid "For paths or partitions specified with -p, only check for exact paths" | 379 | msgid "For paths or partitions specified with -p, only check for exact paths" |
535 | msgstr "" | 380 | msgstr "" |
536 | 381 | ||
537 | #: plugins/check_disk.c:974 | ||
538 | msgid "Display only devices/mountpoints with errors" | 382 | msgid "Display only devices/mountpoints with errors" |
539 | msgstr "" | 383 | msgstr "" |
540 | 384 | ||
541 | #: plugins/check_disk.c:976 | ||
542 | msgid "Don't account root-reserved blocks into freespace in perfdata" | 385 | msgid "Don't account root-reserved blocks into freespace in perfdata" |
543 | msgstr "" | 386 | msgstr "" |
544 | 387 | ||
545 | #: plugins/check_disk.c:978 | ||
546 | msgid "Display inode usage in perfdata" | 388 | msgid "Display inode usage in perfdata" |
547 | msgstr "" | 389 | msgstr "" |
548 | 390 | ||
549 | #: plugins/check_disk.c:980 | ||
550 | msgid "" | 391 | msgid "" |
551 | "Group paths. Thresholds apply to (free-)space of all partitions together" | 392 | "Group paths. Thresholds apply to (free-)space of all partitions together" |
552 | msgstr "" | 393 | msgstr "" |
553 | 394 | ||
554 | #: plugins/check_disk.c:982 | ||
555 | msgid "Same as '--units kB'" | 395 | msgid "Same as '--units kB'" |
556 | msgstr "" | 396 | msgstr "" |
557 | 397 | ||
558 | #: plugins/check_disk.c:984 | ||
559 | msgid "Only check local filesystems" | 398 | msgid "Only check local filesystems" |
560 | msgstr "" | 399 | msgstr "" |
561 | 400 | ||
562 | #: plugins/check_disk.c:986 | ||
563 | msgid "" | 401 | msgid "" |
564 | "Only check local filesystems against thresholds. Yet call stat on remote " | 402 | "Only check local filesystems against thresholds. Yet call stat on remote " |
565 | "filesystems" | 403 | "filesystems" |
566 | msgstr "" | 404 | msgstr "" |
567 | 405 | ||
568 | #: plugins/check_disk.c:987 | ||
569 | msgid "to test if they are accessible (e.g. to detect Stale NFS Handles)" | 406 | msgid "to test if they are accessible (e.g. to detect Stale NFS Handles)" |
570 | msgstr "" | 407 | msgstr "" |
571 | 408 | ||
572 | #: plugins/check_disk.c:989 | ||
573 | msgid "Display the (block) device instead of the mount point" | 409 | msgid "Display the (block) device instead of the mount point" |
574 | msgstr "" | 410 | msgstr "" |
575 | 411 | ||
576 | #: plugins/check_disk.c:991 | ||
577 | msgid "Same as '--units MB'" | 412 | msgid "Same as '--units MB'" |
578 | msgstr "" | 413 | msgstr "" |
579 | 414 | ||
580 | #: plugins/check_disk.c:993 | ||
581 | msgid "Explicitly select all paths. This is equivalent to -R '.*'" | 415 | msgid "Explicitly select all paths. This is equivalent to -R '.*'" |
582 | msgstr "" | 416 | msgstr "" |
583 | 417 | ||
584 | #: plugins/check_disk.c:995 | ||
585 | msgid "" | 418 | msgid "" |
586 | "Case insensitive regular expression for path/partition (may be repeated)" | 419 | "Case insensitive regular expression for path/partition (may be repeated)" |
587 | msgstr "" | 420 | msgstr "" |
588 | 421 | ||
589 | #: plugins/check_disk.c:997 | ||
590 | msgid "Regular expression for path or partition (may be repeated)" | 422 | msgid "Regular expression for path or partition (may be repeated)" |
591 | msgstr "" | 423 | msgstr "" |
592 | 424 | ||
593 | #: plugins/check_disk.c:999 | ||
594 | msgid "" | 425 | msgid "" |
595 | "Regular expression to ignore selected path/partition (case insensitive) (may " | 426 | "Regular expression to ignore selected path/partition (case insensitive) (may " |
596 | "be repeated)" | 427 | "be repeated)" |
597 | msgstr "" | 428 | msgstr "" |
598 | 429 | ||
599 | #: plugins/check_disk.c:1001 | ||
600 | msgid "" | 430 | msgid "" |
601 | "Regular expression to ignore selected path or partition (may be repeated)" | 431 | "Regular expression to ignore selected path or partition (may be repeated)" |
602 | msgstr "" | 432 | msgstr "" |
603 | 433 | ||
604 | #: plugins/check_disk.c:1003 | ||
605 | msgid "" | 434 | msgid "" |
606 | "Return OK if no filesystem matches, filesystem does not exist or is " | 435 | "Return OK if no filesystem matches, filesystem does not exist or is " |
607 | "inaccessible." | 436 | "inaccessible." |
608 | msgstr "" | 437 | msgstr "" |
609 | 438 | ||
610 | #: plugins/check_disk.c:1004 | ||
611 | msgid "(Provide this option before -p / -r / --ereg-path if used)" | 439 | msgid "(Provide this option before -p / -r / --ereg-path if used)" |
612 | msgstr "" | 440 | msgstr "" |
613 | 441 | ||
614 | #: plugins/check_disk.c:1007 | ||
615 | msgid "Choose bytes, kB, MB, GB, TB (default: MB)" | 442 | msgid "Choose bytes, kB, MB, GB, TB (default: MB)" |
616 | msgstr "" | 443 | msgstr "" |
617 | 444 | ||
618 | #: plugins/check_disk.c:1010 | ||
619 | msgid "Ignore all filesystems of indicated type (may be repeated)" | 445 | msgid "Ignore all filesystems of indicated type (may be repeated)" |
620 | msgstr "" | 446 | msgstr "" |
621 | 447 | ||
622 | #: plugins/check_disk.c:1012 | ||
623 | msgid "Check only filesystems of indicated type (may be repeated)" | 448 | msgid "Check only filesystems of indicated type (may be repeated)" |
624 | msgstr "" | 449 | msgstr "" |
625 | 450 | ||
626 | #: plugins/check_disk.c:1017 | ||
627 | msgid "Checks /tmp and /var at 10% and 5%, and / at 100MB and 50MB" | 451 | msgid "Checks /tmp and /var at 10% and 5%, and / at 100MB and 50MB" |
628 | msgstr "" | 452 | msgstr "" |
629 | 453 | ||
630 | #: plugins/check_disk.c:1019 | ||
631 | msgid "" | 454 | msgid "" |
632 | "Checks all filesystems not matching -r at 100M and 50M. The fs matching the -" | 455 | "Checks all filesystems not matching -r at 100M and 50M. The fs matching the -" |
633 | "r regex" | 456 | "r regex" |
634 | msgstr "" | 457 | msgstr "" |
635 | 458 | ||
636 | #: plugins/check_disk.c:1020 | ||
637 | msgid "" | 459 | msgid "" |
638 | "are grouped which means the freespace thresholds are applied to all disks " | 460 | "are grouped which means the freespace thresholds are applied to all disks " |
639 | "together" | 461 | "together" |
640 | msgstr "" | 462 | msgstr "" |
641 | 463 | ||
642 | #: plugins/check_disk.c:1022 | ||
643 | msgid "" | 464 | msgid "" |
644 | "Checks /foo for 1000M/500M and /bar for 5/3%. All remaining volumes use " | 465 | "Checks /foo for 1000M/500M and /bar for 5/3%. All remaining volumes use " |
645 | "100M/50M" | 466 | "100M/50M" |
646 | msgstr "" | 467 | msgstr "" |
647 | 468 | ||
648 | #: plugins/check_disk.c:1051 | ||
649 | #, c-format | 469 | #, c-format |
650 | msgid "%s %s: %s\n" | 470 | msgid "%s %s: %s\n" |
651 | msgstr "" | 471 | msgstr "" |
652 | 472 | ||
653 | #: plugins/check_disk.c:1051 | ||
654 | msgid "is not accessible" | 473 | msgid "is not accessible" |
655 | msgstr "" | 474 | msgstr "" |
656 | 475 | ||
657 | #: plugins/check_dns.c:120 | ||
658 | #, fuzzy | 476 | #, fuzzy |
659 | msgid "nslookup returned an error status" | 477 | msgid "nslookup returned an error status" |
660 | msgstr "nslookup hat einen Fehler zurückgegeben" | 478 | msgstr "nslookup hat einen Fehler zurückgegeben" |
661 | 479 | ||
662 | #: plugins/check_dns.c:138 | ||
663 | msgid "Warning plugin error" | 480 | msgid "Warning plugin error" |
664 | msgstr "Warnung Plugin Fehler" | 481 | msgstr "Warnung Plugin Fehler" |
665 | 482 | ||
666 | #: plugins/check_dns.c:156 | ||
667 | #, fuzzy, c-format | 483 | #, fuzzy, c-format |
668 | msgid "DNS CRITICAL - '%s' returned empty server string\n" | 484 | msgid "DNS CRITICAL - '%s' returned empty server string\n" |
669 | msgstr "DNS CRITICAL - '%s' hat einen leeren Hostnamen zurückgegeben\n" | 485 | msgstr "DNS CRITICAL - '%s' hat einen leeren Hostnamen zurückgegeben\n" |
670 | 486 | ||
671 | #: plugins/check_dns.c:161 | ||
672 | #, fuzzy, c-format | 487 | #, fuzzy, c-format |
673 | msgid "DNS CRITICAL - No response from DNS %s\n" | 488 | msgid "DNS CRITICAL - No response from DNS %s\n" |
674 | msgstr "Keine Antwort von DNS %s\n" | 489 | msgstr "Keine Antwort von DNS %s\n" |
675 | 490 | ||
676 | #: plugins/check_dns.c:180 | ||
677 | #, c-format | 491 | #, c-format |
678 | msgid "DNS CRITICAL - '%s' returned empty host name string\n" | 492 | msgid "DNS CRITICAL - '%s' returned empty host name string\n" |
679 | msgstr "DNS CRITICAL - '%s' hat einen leeren Hostnamen zurückgegeben\n" | 493 | msgstr "DNS CRITICAL - '%s' hat einen leeren Hostnamen zurückgegeben\n" |
680 | 494 | ||
681 | #: plugins/check_dns.c:186 | ||
682 | msgid "Non-authoritative answer:" | 495 | msgid "Non-authoritative answer:" |
683 | msgstr "" | 496 | msgstr "" |
684 | 497 | ||
685 | #: plugins/check_dns.c:215 | ||
686 | #, fuzzy, c-format | 498 | #, fuzzy, c-format |
687 | msgid "Domain '%s' was not found by the server\n" | 499 | msgid "Domain '%s' was not found by the server\n" |
688 | msgstr "Domäne %s wurde vom Server nicht gefunden\n" | 500 | msgstr "Domäne %s wurde vom Server nicht gefunden\n" |
689 | 501 | ||
690 | #: plugins/check_dns.c:234 | ||
691 | #, fuzzy, c-format | 502 | #, fuzzy, c-format |
692 | msgid "DNS CRITICAL - '%s' msg parsing exited with no address\n" | 503 | msgid "DNS CRITICAL - '%s' msg parsing exited with no address\n" |
693 | msgstr "DNS CRITICAL - '%s' Ausgabeverarbeitung hat keine Adresse ergeben\n" | 504 | msgstr "DNS CRITICAL - '%s' Ausgabeverarbeitung hat keine Adresse ergeben\n" |
694 | 505 | ||
695 | #: plugins/check_dns.c:265 | ||
696 | #, fuzzy, c-format | 506 | #, fuzzy, c-format |
697 | msgid "expected '%s' but got '%s'" | 507 | msgid "expected '%s' but got '%s'" |
698 | msgstr "Erwartet: %s aber: %s erhalten" | 508 | msgstr "Erwartet: %s aber: %s erhalten" |
699 | 509 | ||
700 | #: plugins/check_dns.c:272 | ||
701 | #, fuzzy, c-format | 510 | #, fuzzy, c-format |
702 | msgid "Domain '%s' was found by the server: '%s'\n" | 511 | msgid "Domain '%s' was found by the server: '%s'\n" |
703 | msgstr "Domäne %s wurde vom Server nicht gefunden\n" | 512 | msgstr "Domäne %s wurde vom Server nicht gefunden\n" |
704 | 513 | ||
705 | #: plugins/check_dns.c:282 | ||
706 | #, c-format | 514 | #, c-format |
707 | msgid "server %s is not authoritative for %s" | 515 | msgid "server %s is not authoritative for %s" |
708 | msgstr "Server %s ist nicht autoritativ für %s" | 516 | msgstr "Server %s ist nicht autoritativ für %s" |
709 | 517 | ||
710 | #: plugins/check_dns.c:291 plugins/check_dummy.c:68 plugins/check_nagios.c:182 | ||
711 | #: plugins/check_pgsql.c:612 plugins/check_procs.c:367 | ||
712 | #, c-format | 518 | #, c-format |
713 | msgid "OK" | 519 | msgid "OK" |
714 | msgstr "OK" | 520 | msgstr "OK" |
715 | 521 | ||
716 | #: plugins/check_dns.c:293 plugins/check_dummy.c:71 plugins/check_mysql.c:310 | ||
717 | #: plugins/check_nagios.c:182 plugins/check_pgsql.c:581 | ||
718 | #: plugins/check_pgsql.c:586 plugins/check_pgsql.c:614 | ||
719 | #: plugins/check_procs.c:369 | ||
720 | #, c-format | 522 | #, c-format |
721 | msgid "WARNING" | 523 | msgid "WARNING" |
722 | msgstr "WARNING" | 524 | msgstr "WARNING" |
723 | 525 | ||
724 | #: plugins/check_dns.c:297 | ||
725 | #, fuzzy, c-format | 526 | #, fuzzy, c-format |
726 | msgid "%.3f second response time" | 527 | msgid "%.3f second response time" |
727 | msgid_plural "%.3f seconds response time" | 528 | msgid_plural "%.3f seconds response time" |
728 | msgstr[0] "%.3f Sekunden Antwortzeit " | 529 | msgstr[0] "%.3f Sekunden Antwortzeit " |
729 | msgstr[1] "%.3f Sekunden Antwortzeit " | 530 | msgstr[1] "%.3f Sekunden Antwortzeit " |
730 | 531 | ||
731 | #: plugins/check_dns.c:298 | ||
732 | #, fuzzy, c-format | 532 | #, fuzzy, c-format |
733 | msgid ". %s returns %s" | 533 | msgid ". %s returns %s" |
734 | msgstr "%s hat %s zurückgegeben" | 534 | msgstr "%s hat %s zurückgegeben" |
735 | 535 | ||
736 | #: plugins/check_dns.c:318 | ||
737 | #, c-format | 536 | #, c-format |
738 | msgid "DNS WARNING - %s\n" | 537 | msgid "DNS WARNING - %s\n" |
739 | msgstr "DNS WARNING - %s\n" | 538 | msgstr "DNS WARNING - %s\n" |
740 | 539 | ||
741 | #: plugins/check_dns.c:319 plugins/check_dns.c:322 plugins/check_dns.c:325 | ||
742 | msgid " Probably a non-existent host/domain" | 540 | msgid " Probably a non-existent host/domain" |
743 | msgstr "nicht existierender Host/Domain" | 541 | msgstr "nicht existierender Host/Domain" |
744 | 542 | ||
745 | #: plugins/check_dns.c:321 | ||
746 | #, c-format | 543 | #, c-format |
747 | msgid "DNS CRITICAL - %s\n" | 544 | msgid "DNS CRITICAL - %s\n" |
748 | msgstr "DNS CRITICAL - %s\n" | 545 | msgstr "DNS CRITICAL - %s\n" |
749 | 546 | ||
750 | #: plugins/check_dns.c:324 | ||
751 | #, fuzzy, c-format | 547 | #, fuzzy, c-format |
752 | msgid "DNS UNKNOWN - %s\n" | 548 | msgid "DNS UNKNOWN - %s\n" |
753 | msgstr "DNS UNKNOWN - %s\n" | 549 | msgstr "DNS UNKNOWN - %s\n" |
754 | 550 | ||
755 | #: plugins/check_dns.c:368 | ||
756 | msgid "Note: nslookup is deprecated and may be removed from future releases." | 551 | msgid "Note: nslookup is deprecated and may be removed from future releases." |
757 | msgstr "" | 552 | msgstr "" |
758 | 553 | ||
759 | #: plugins/check_dns.c:369 | ||
760 | msgid "Consider using the `dig' or `host' programs instead. Run nslookup with" | 554 | msgid "Consider using the `dig' or `host' programs instead. Run nslookup with" |
761 | msgstr "" | 555 | msgstr "" |
762 | 556 | ||
763 | #: plugins/check_dns.c:370 | ||
764 | msgid "the `-sil[ent]' option to prevent this message from appearing." | 557 | msgid "the `-sil[ent]' option to prevent this message from appearing." |
765 | msgstr "" | 558 | msgstr "" |
766 | 559 | ||
767 | #: plugins/check_dns.c:375 plugins/check_dns.c:377 | ||
768 | #, c-format | 560 | #, c-format |
769 | msgid "No response from DNS %s\n" | 561 | msgid "No response from DNS %s\n" |
770 | msgstr "Keine Antwort von DNS %s\n" | 562 | msgstr "Keine Antwort von DNS %s\n" |
771 | 563 | ||
772 | #: plugins/check_dns.c:381 | ||
773 | #, c-format | 564 | #, c-format |
774 | msgid "DNS %s has no records\n" | 565 | msgid "DNS %s has no records\n" |
775 | msgstr "Nameserver %s hat keine Datensätze\n" | 566 | msgstr "Nameserver %s hat keine Datensätze\n" |
776 | 567 | ||
777 | #: plugins/check_dns.c:389 | ||
778 | #, c-format | 568 | #, c-format |
779 | msgid "Connection to DNS %s was refused\n" | 569 | msgid "Connection to DNS %s was refused\n" |
780 | msgstr "Verbindung zum Nameserver %s wurde verweigert\n" | 570 | msgstr "Verbindung zum Nameserver %s wurde verweigert\n" |
781 | 571 | ||
782 | #: plugins/check_dns.c:393 | ||
783 | #, c-format | 572 | #, c-format |
784 | msgid "Query was refused by DNS server at %s\n" | 573 | msgid "Query was refused by DNS server at %s\n" |
785 | msgstr "" | 574 | msgstr "" |
786 | 575 | ||
787 | #: plugins/check_dns.c:397 | ||
788 | #, c-format | 576 | #, c-format |
789 | msgid "No information returned by DNS server at %s\n" | 577 | msgid "No information returned by DNS server at %s\n" |
790 | msgstr "" | 578 | msgstr "" |
791 | 579 | ||
792 | #: plugins/check_dns.c:401 | ||
793 | msgid "Network is unreachable\n" | 580 | msgid "Network is unreachable\n" |
794 | msgstr "Netzwerk nicht erreichbar\n" | 581 | msgstr "Netzwerk nicht erreichbar\n" |
795 | 582 | ||
796 | #: plugins/check_dns.c:405 | ||
797 | #, c-format | 583 | #, c-format |
798 | msgid "DNS failure for %s\n" | 584 | msgid "DNS failure for %s\n" |
799 | msgstr "DNS Fehler für %s\n" | 585 | msgstr "DNS Fehler für %s\n" |
800 | 586 | ||
801 | #: plugins/check_dns.c:471 plugins/check_dns.c:479 plugins/check_dns.c:486 | ||
802 | #: plugins/check_dns.c:491 plugins/check_dns.c:533 plugins/check_dns.c:541 | ||
803 | #: plugins/check_game.c:211 plugins/check_game.c:219 | ||
804 | msgid "Input buffer overflow\n" | 587 | msgid "Input buffer overflow\n" |
805 | msgstr "Eingabe-Pufferüberlauf\n" | 588 | msgstr "Eingabe-Pufferüberlauf\n" |
806 | 589 | ||
807 | #: plugins/check_dns.c:576 | ||
808 | msgid "" | 590 | msgid "" |
809 | "This plugin uses the nslookup program to obtain the IP address for the given " | 591 | "This plugin uses the nslookup program to obtain the IP address for the given " |
810 | "host/domain query." | 592 | "host/domain query." |
811 | msgstr "" | 593 | msgstr "" |
812 | 594 | ||
813 | #: plugins/check_dns.c:577 | ||
814 | msgid "An optional DNS server to use may be specified." | 595 | msgid "An optional DNS server to use may be specified." |
815 | msgstr "" | 596 | msgstr "" |
816 | 597 | ||
817 | #: plugins/check_dns.c:578 | ||
818 | msgid "" | 598 | msgid "" |
819 | "If no DNS server is specified, the default server(s) specified in /etc/" | 599 | "If no DNS server is specified, the default server(s) specified in /etc/" |
820 | "resolv.conf will be used." | 600 | "resolv.conf will be used." |
821 | msgstr "" | 601 | msgstr "" |
822 | 602 | ||
823 | #: plugins/check_dns.c:588 | ||
824 | msgid "The name or address you want to query" | 603 | msgid "The name or address you want to query" |
825 | msgstr "" | 604 | msgstr "" |
826 | 605 | ||
827 | #: plugins/check_dns.c:590 | ||
828 | msgid "Optional DNS server you want to use for the lookup" | 606 | msgid "Optional DNS server you want to use for the lookup" |
829 | msgstr "" | 607 | msgstr "" |
830 | 608 | ||
831 | #: plugins/check_dns.c:592 | ||
832 | msgid "" | 609 | msgid "" |
833 | "Optional IP-ADDRESS/CIDR you expect the DNS server to return. HOST must end" | 610 | "Optional IP-ADDRESS/CIDR you expect the DNS server to return. HOST must end" |
834 | msgstr "" | 611 | msgstr "" |
835 | 612 | ||
836 | #: plugins/check_dns.c:593 | ||
837 | msgid "" | 613 | msgid "" |
838 | "with a dot (.). This option can be repeated multiple times (Returns OK if any" | 614 | "with a dot (.). This option can be repeated multiple times (Returns OK if any" |
839 | msgstr "" | 615 | msgstr "" |
840 | 616 | ||
841 | #: plugins/check_dns.c:594 | ||
842 | msgid "value matches)." | 617 | msgid "value matches)." |
843 | msgstr "" | 618 | msgstr "" |
844 | 619 | ||
845 | #: plugins/check_dns.c:596 | ||
846 | msgid "" | 620 | msgid "" |
847 | "Expect the DNS server to return NXDOMAIN (i.e. the domain was not found)" | 621 | "Expect the DNS server to return NXDOMAIN (i.e. the domain was not found)" |
848 | msgstr "" | 622 | msgstr "" |
849 | 623 | ||
850 | #: plugins/check_dns.c:597 | ||
851 | msgid "Cannot be used together with -a" | 624 | msgid "Cannot be used together with -a" |
852 | msgstr "" | 625 | msgstr "" |
853 | 626 | ||
854 | #: plugins/check_dns.c:599 | ||
855 | msgid "Optionally expect the DNS server to be authoritative for the lookup" | 627 | msgid "Optionally expect the DNS server to be authoritative for the lookup" |
856 | msgstr "" | 628 | msgstr "" |
857 | 629 | ||
858 | #: plugins/check_dns.c:601 | ||
859 | msgid "Return warning if elapsed time exceeds value. Default off" | 630 | msgid "Return warning if elapsed time exceeds value. Default off" |
860 | msgstr "" | 631 | msgstr "" |
861 | 632 | ||
862 | #: plugins/check_dns.c:603 | ||
863 | msgid "Return critical if elapsed time exceeds value. Default off" | 633 | msgid "Return critical if elapsed time exceeds value. Default off" |
864 | msgstr "" | 634 | msgstr "" |
865 | 635 | ||
866 | #: plugins/check_dns.c:605 | ||
867 | msgid "" | 636 | msgid "" |
868 | "Return critical if the list of expected addresses does not match all " | 637 | "Return critical if the list of expected addresses does not match all " |
869 | "addresses" | 638 | "addresses" |
870 | msgstr "" | 639 | msgstr "" |
871 | 640 | ||
872 | #: plugins/check_dns.c:606 | ||
873 | msgid "returned. Default off" | 641 | msgid "returned. Default off" |
874 | msgstr "" | 642 | msgstr "" |
875 | 643 | ||
876 | #: plugins/check_dummy.c:62 | ||
877 | msgid "Arguments to check_dummy must be an integer" | 644 | msgid "Arguments to check_dummy must be an integer" |
878 | msgstr "Argument für check_dummy muss ein Integer sein" | 645 | msgstr "Argument für check_dummy muss ein Integer sein" |
879 | 646 | ||
880 | #: plugins/check_dummy.c:82 | ||
881 | #, c-format | 647 | #, c-format |
882 | msgid "Status %d is not a supported error state\n" | 648 | msgid "Status %d is not a supported error state\n" |
883 | msgstr "Status %d ist kein bekannter Fehlerstatus\n" | 649 | msgstr "Status %d ist kein bekannter Fehlerstatus\n" |
884 | 650 | ||
885 | #: plugins/check_dummy.c:104 | ||
886 | msgid "" | 651 | msgid "" |
887 | "This plugin will simply return the state corresponding to the numeric value" | 652 | "This plugin will simply return the state corresponding to the numeric value" |
888 | msgstr "" | 653 | msgstr "" |
889 | 654 | ||
890 | #: plugins/check_dummy.c:106 | ||
891 | msgid "of the <state> argument with optional text" | 655 | msgid "of the <state> argument with optional text" |
892 | msgstr "" | 656 | msgstr "" |
893 | 657 | ||
894 | #: plugins/check_fping.c:127 plugins/check_hpjd.c:134 plugins/check_ping.c:444 | ||
895 | #: plugins/check_swap.c:193 plugins/check_users.c:130 plugins/urlize.c:109 | ||
896 | #, c-format | 658 | #, c-format |
897 | msgid "Could not open pipe: %s\n" | 659 | msgid "Could not open pipe: %s\n" |
898 | msgstr "Pipe: %s konnte nicht geöffnet werden\n" | 660 | msgstr "Pipe: %s konnte nicht geöffnet werden\n" |
899 | 661 | ||
900 | #: plugins/check_fping.c:133 plugins/check_hpjd.c:140 plugins/check_load.c:159 | ||
901 | #: plugins/check_swap.c:199 plugins/check_users.c:136 plugins/urlize.c:115 | ||
902 | #, c-format | 662 | #, c-format |
903 | msgid "Could not open stderr for %s\n" | 663 | msgid "Could not open stderr for %s\n" |
904 | msgstr "Konnte stderr nicht öffnen für: %s\n" | 664 | msgstr "Konnte stderr nicht öffnen für: %s\n" |
905 | 665 | ||
906 | #: plugins/check_fping.c:161 | ||
907 | #, fuzzy | 666 | #, fuzzy |
908 | msgid "FPING UNKNOWN - IP address not found\n" | 667 | msgid "FPING UNKNOWN - IP address not found\n" |
909 | msgstr "FPING UNKNOWN - %s nicht gefunden\n" | 668 | msgstr "FPING UNKNOWN - %s nicht gefunden\n" |
910 | 669 | ||
911 | #: plugins/check_fping.c:164 | ||
912 | msgid "FPING UNKNOWN - invalid commandline argument\n" | 670 | msgid "FPING UNKNOWN - invalid commandline argument\n" |
913 | msgstr "" | 671 | msgstr "" |
914 | 672 | ||
915 | #: plugins/check_fping.c:167 | ||
916 | #, fuzzy | 673 | #, fuzzy |
917 | msgid "FPING UNKNOWN - failed system call\n" | 674 | msgid "FPING UNKNOWN - failed system call\n" |
918 | msgstr "FPING UNKNOWN - %s nicht gefunden\n" | 675 | msgstr "FPING UNKNOWN - %s nicht gefunden\n" |
919 | 676 | ||
920 | #: plugins/check_fping.c:194 | ||
921 | #, fuzzy, c-format | 677 | #, fuzzy, c-format |
922 | msgid "FPING %s - %s (rta=%f ms)|%s\n" | 678 | msgid "FPING %s - %s (rta=%f ms)|%s\n" |
923 | msgstr "FPING %s - %s (verloren=%.0f%% )|%s\n" | 679 | msgstr "FPING %s - %s (verloren=%.0f%% )|%s\n" |
924 | 680 | ||
925 | #: plugins/check_fping.c:202 | ||
926 | #, c-format | 681 | #, c-format |
927 | msgid "FPING UNKNOWN - %s not found\n" | 682 | msgid "FPING UNKNOWN - %s not found\n" |
928 | msgstr "FPING UNKNOWN - %s nicht gefunden\n" | 683 | msgstr "FPING UNKNOWN - %s nicht gefunden\n" |
929 | 684 | ||
930 | #: plugins/check_fping.c:206 | ||
931 | #, c-format | 685 | #, c-format |
932 | msgid "FPING CRITICAL - %s is unreachable\n" | 686 | msgid "FPING CRITICAL - %s is unreachable\n" |
933 | msgstr "FPING CRITICAL - %s ist nicht erreichbar\n" | 687 | msgstr "FPING CRITICAL - %s ist nicht erreichbar\n" |
934 | 688 | ||
935 | #: plugins/check_fping.c:211 | ||
936 | #, fuzzy, c-format | 689 | #, fuzzy, c-format |
937 | msgid "FPING UNKNOWN - %s parameter error\n" | 690 | msgid "FPING UNKNOWN - %s parameter error\n" |
938 | msgstr "FPING UNKNOWN - %s nicht gefunden\n" | 691 | msgstr "FPING UNKNOWN - %s nicht gefunden\n" |
939 | 692 | ||
940 | #: plugins/check_fping.c:215 plugins/check_fping.c:255 | ||
941 | #, c-format | 693 | #, c-format |
942 | msgid "FPING CRITICAL - %s is down\n" | 694 | msgid "FPING CRITICAL - %s is down\n" |
943 | msgstr "FPING CRITICAL - %s ist down\n" | 695 | msgstr "FPING CRITICAL - %s ist down\n" |
944 | 696 | ||
945 | #: plugins/check_fping.c:242 | ||
946 | #, c-format | 697 | #, c-format |
947 | msgid "FPING %s - %s (loss=%.0f%%, rta=%f ms)|%s %s\n" | 698 | msgid "FPING %s - %s (loss=%.0f%%, rta=%f ms)|%s %s\n" |
948 | msgstr "FPING %s - %s (verloren=%.0f%%, rta=%f ms)|%s %s\n" | 699 | msgstr "FPING %s - %s (verloren=%.0f%%, rta=%f ms)|%s %s\n" |
949 | 700 | ||
950 | #: plugins/check_fping.c:268 | ||
951 | #, c-format | 701 | #, c-format |
952 | msgid "FPING %s - %s (loss=%.0f%% )|%s\n" | 702 | msgid "FPING %s - %s (loss=%.0f%% )|%s\n" |
953 | msgstr "FPING %s - %s (verloren=%.0f%% )|%s\n" | 703 | msgstr "FPING %s - %s (verloren=%.0f%% )|%s\n" |
954 | 704 | ||
955 | #: plugins/check_fping.c:345 plugins/check_fping.c:351 plugins/check_hpjd.c:345 | ||
956 | #: plugins/check_hpjd.c:377 plugins/check_mysql.c:389 plugins/check_mysql.c:476 | ||
957 | #: plugins/check_ntp.c:719 plugins/check_ntp_peer.c:497 | ||
958 | #: plugins/check_ntp_time.c:498 plugins/check_pgsql.c:338 | ||
959 | #: plugins/check_ping.c:301 plugins/check_ping.c:424 plugins/check_radius.c:279 | ||
960 | #: plugins/check_real.c:315 plugins/check_real.c:377 plugins/check_smtp.c:525 | ||
961 | #: plugins/check_smtp.c:681 plugins/check_ssh.c:162 plugins/check_time.c:240 | ||
962 | #: plugins/check_time.c:315 plugins/check_ups.c:507 plugins/check_ups.c:576 | ||
963 | msgid "Invalid hostname/address" | 705 | msgid "Invalid hostname/address" |
964 | msgstr "Ungültige(r) Hostname/Adresse" | 706 | msgstr "Ungültige(r) Hostname/Adresse" |
965 | 707 | ||
966 | #: plugins/check_fping.c:365 plugins/check_ldap.c:400 plugins/check_ping.c:252 | ||
967 | #: plugins-root/check_icmp.c:474 | ||
968 | msgid "IPv6 support not available\n" | 708 | msgid "IPv6 support not available\n" |
969 | msgstr "" | 709 | msgstr "" |
970 | 710 | ||
971 | #: plugins/check_fping.c:398 | ||
972 | msgid "Packet size must be a positive integer" | 711 | msgid "Packet size must be a positive integer" |
973 | msgstr "Paketgröße muss ein positiver Integer sein" | 712 | msgstr "Paketgröße muss ein positiver Integer sein" |
974 | 713 | ||
975 | #: plugins/check_fping.c:404 | ||
976 | msgid "Packet count must be a positive integer" | 714 | msgid "Packet count must be a positive integer" |
977 | msgstr "Paketanzahl muss ein positiver Integer sein" | 715 | msgstr "Paketanzahl muss ein positiver Integer sein" |
978 | 716 | ||
979 | #: plugins/check_fping.c:410 | ||
980 | #, fuzzy | 717 | #, fuzzy |
981 | msgid "Target timeout must be a positive integer" | 718 | msgid "Target timeout must be a positive integer" |
982 | msgstr "Warnung time muss ein positiver Integer sein" | 719 | msgstr "Warnung time muss ein positiver Integer sein" |
983 | 720 | ||
984 | #: plugins/check_fping.c:416 | ||
985 | #, fuzzy | 721 | #, fuzzy |
986 | msgid "Interval must be a positive integer" | 722 | msgid "Interval must be a positive integer" |
987 | msgstr "Timeout interval muss ein positiver Integer sein" | 723 | msgstr "Timeout interval muss ein positiver Integer sein" |
988 | 724 | ||
989 | #: plugins/check_fping.c:422 plugins/check_ntp.c:743 | ||
990 | #: plugins/check_ntp_peer.c:524 plugins/check_ntp_time.c:528 | ||
991 | #: plugins/check_radius.c:329 plugins/check_time.c:319 | ||
992 | msgid "Hostname was not supplied" | 725 | msgid "Hostname was not supplied" |
993 | msgstr "" | 726 | msgstr "" |
994 | 727 | ||
995 | #: plugins/check_fping.c:442 | ||
996 | #, c-format | 728 | #, c-format |
997 | msgid "%s: Only one threshold may be packet loss (%s)\n" | 729 | msgid "%s: Only one threshold may be packet loss (%s)\n" |
998 | msgstr "%s: Nur ein Wert darf für packet loss angegeben werden (%s)\n" | 730 | msgstr "%s: Nur ein Wert darf für packet loss angegeben werden (%s)\n" |
999 | 731 | ||
1000 | #: plugins/check_fping.c:446 | ||
1001 | #, c-format | 732 | #, c-format |
1002 | msgid "%s: Only one threshold must be packet loss (%s)\n" | 733 | msgid "%s: Only one threshold must be packet loss (%s)\n" |
1003 | msgstr "%s: Nur ein Wert darf für packet loss angegeben werden (%s)\n" | 734 | msgstr "%s: Nur ein Wert darf für packet loss angegeben werden (%s)\n" |
1004 | 735 | ||
1005 | #: plugins/check_fping.c:476 | ||
1006 | msgid "" | 736 | msgid "" |
1007 | "This plugin will use the fping command to ping the specified host for a fast " | 737 | "This plugin will use the fping command to ping the specified host for a fast " |
1008 | "check" | 738 | "check" |
1009 | msgstr "" | 739 | msgstr "" |
1010 | 740 | ||
1011 | #: plugins/check_fping.c:478 | ||
1012 | msgid "Note that it is necessary to set the suid flag on fping." | 741 | msgid "Note that it is necessary to set the suid flag on fping." |
1013 | msgstr "" | 742 | msgstr "" |
1014 | 743 | ||
1015 | #: plugins/check_fping.c:490 | ||
1016 | msgid "" | 744 | msgid "" |
1017 | "name or IP Address of host to ping (IP Address bypasses name lookup, " | 745 | "name or IP Address of host to ping (IP Address bypasses name lookup, " |
1018 | "reducing system load)" | 746 | "reducing system load)" |
1019 | msgstr "" | 747 | msgstr "" |
1020 | 748 | ||
1021 | #: plugins/check_fping.c:492 plugins/check_ping.c:589 | ||
1022 | #, fuzzy | 749 | #, fuzzy |
1023 | msgid "warning threshold pair" | 750 | msgid "warning threshold pair" |
1024 | msgstr "Warning threshold Integer sein" | 751 | msgstr "Warning threshold Integer sein" |
1025 | 752 | ||
1026 | #: plugins/check_fping.c:494 plugins/check_ping.c:591 | ||
1027 | #, fuzzy | 753 | #, fuzzy |
1028 | msgid "critical threshold pair" | 754 | msgid "critical threshold pair" |
1029 | msgstr "Critical threshold muss ein Integer sein" | 755 | msgstr "Critical threshold muss ein Integer sein" |
1030 | 756 | ||
1031 | #: plugins/check_fping.c:496 | ||
1032 | msgid "Return OK after first successful reply" | 757 | msgid "Return OK after first successful reply" |
1033 | msgstr "" | 758 | msgstr "" |
1034 | 759 | ||
1035 | #: plugins/check_fping.c:498 | ||
1036 | msgid "size of ICMP packet" | 760 | msgid "size of ICMP packet" |
1037 | msgstr "" | 761 | msgstr "" |
1038 | 762 | ||
1039 | #: plugins/check_fping.c:500 | ||
1040 | msgid "number of ICMP packets to send" | 763 | msgid "number of ICMP packets to send" |
1041 | msgstr "" | 764 | msgstr "" |
1042 | 765 | ||
1043 | #: plugins/check_fping.c:502 | ||
1044 | msgid "Target timeout (ms)" | 766 | msgid "Target timeout (ms)" |
1045 | msgstr "" | 767 | msgstr "" |
1046 | 768 | ||
1047 | #: plugins/check_fping.c:504 | ||
1048 | msgid "Interval (ms) between sending packets" | 769 | msgid "Interval (ms) between sending packets" |
1049 | msgstr "" | 770 | msgstr "" |
1050 | 771 | ||
1051 | #: plugins/check_fping.c:506 | ||
1052 | msgid "name or IP Address of sourceip" | 772 | msgid "name or IP Address of sourceip" |
1053 | msgstr "" | 773 | msgstr "" |
1054 | 774 | ||
1055 | #: plugins/check_fping.c:508 | ||
1056 | msgid "source interface name" | 775 | msgid "source interface name" |
1057 | msgstr "" | 776 | msgstr "" |
1058 | 777 | ||
1059 | #: plugins/check_fping.c:511 | ||
1060 | #, c-format | 778 | #, c-format |
1061 | msgid "" | 779 | msgid "" |
1062 | "THRESHOLD is <rta>,<pl>%% where <rta> is the round trip average travel time " | 780 | "THRESHOLD is <rta>,<pl>%% where <rta> is the round trip average travel time " |
1063 | "(ms)" | 781 | "(ms)" |
1064 | msgstr "" | 782 | msgstr "" |
1065 | 783 | ||
1066 | #: plugins/check_fping.c:512 | ||
1067 | msgid "" | 784 | msgid "" |
1068 | "which triggers a WARNING or CRITICAL state, and <pl> is the percentage of" | 785 | "which triggers a WARNING or CRITICAL state, and <pl> is the percentage of" |
1069 | msgstr "" | 786 | msgstr "" |
1070 | 787 | ||
1071 | #: plugins/check_fping.c:513 | ||
1072 | msgid "packet loss to trigger an alarm state." | 788 | msgid "packet loss to trigger an alarm state." |
1073 | msgstr "" | 789 | msgstr "" |
1074 | 790 | ||
1075 | #: plugins/check_fping.c:516 | ||
1076 | msgid "IPv4 is used by default. Specify -6 to use IPv6." | 791 | msgid "IPv4 is used by default. Specify -6 to use IPv6." |
1077 | msgstr "" | 792 | msgstr "" |
1078 | 793 | ||
1079 | #: plugins/check_game.c:111 | ||
1080 | #, c-format | 794 | #, c-format |
1081 | msgid "CRITICAL - Host type parameter incorrect!\n" | 795 | msgid "CRITICAL - Host type parameter incorrect!\n" |
1082 | msgstr "CRITICAL - Host type parameter unkorrekt!\n" | 796 | msgstr "CRITICAL - Host type parameter unkorrekt!\n" |
1083 | 797 | ||
1084 | #: plugins/check_game.c:126 | ||
1085 | #, fuzzy, c-format | 798 | #, fuzzy, c-format |
1086 | msgid "CRITICAL - Host not found\n" | 799 | msgid "CRITICAL - Host not found\n" |
1087 | msgstr "CRITICAL - Text nicht gefunden%s|%s %s\n" | 800 | msgstr "CRITICAL - Text nicht gefunden%s|%s %s\n" |
1088 | 801 | ||
1089 | #: plugins/check_game.c:130 | ||
1090 | #, fuzzy, c-format | 802 | #, fuzzy, c-format |
1091 | msgid "CRITICAL - Game server down or unavailable\n" | 803 | msgid "CRITICAL - Game server down or unavailable\n" |
1092 | msgstr "CRITICAL - Serverdatum \"%100s\" konnte nicht verarbeitet werden" | 804 | msgstr "CRITICAL - Serverdatum \"%100s\" konnte nicht verarbeitet werden" |
1093 | 805 | ||
1094 | #: plugins/check_game.c:134 | ||
1095 | #, fuzzy, c-format | 806 | #, fuzzy, c-format |
1096 | msgid "CRITICAL - Game server timeout\n" | 807 | msgid "CRITICAL - Game server timeout\n" |
1097 | msgstr "CRITICAL - Konnte kein Serverzertifikat erhalten\n" | 808 | msgstr "CRITICAL - Konnte kein Serverzertifikat erhalten\n" |
1098 | 809 | ||
1099 | #: plugins/check_game.c:297 | ||
1100 | #, c-format | 810 | #, c-format |
1101 | msgid "This plugin tests game server connections with the specified host." | 811 | msgid "This plugin tests game server connections with the specified host." |
1102 | msgstr "Dieses plugin testet Gameserververbindungen zum angegebenen Host." | 812 | msgstr "Dieses plugin testet Gameserververbindungen zum angegebenen Host." |
1103 | 813 | ||
1104 | #: plugins/check_game.c:307 | ||
1105 | msgid "Optional port of which to connect" | 814 | msgid "Optional port of which to connect" |
1106 | msgstr "" | 815 | msgstr "" |
1107 | 816 | ||
1108 | #: plugins/check_game.c:309 | ||
1109 | msgid "Field number in raw qstat output that contains game name" | 817 | msgid "Field number in raw qstat output that contains game name" |
1110 | msgstr "" | 818 | msgstr "" |
1111 | 819 | ||
1112 | #: plugins/check_game.c:311 | ||
1113 | msgid "Field number in raw qstat output that contains map name" | 820 | msgid "Field number in raw qstat output that contains map name" |
1114 | msgstr "" | 821 | msgstr "" |
1115 | 822 | ||
1116 | #: plugins/check_game.c:313 | ||
1117 | msgid "Field number in raw qstat output that contains ping time" | 823 | msgid "Field number in raw qstat output that contains ping time" |
1118 | msgstr "" | 824 | msgstr "" |
1119 | 825 | ||
1120 | #: plugins/check_game.c:319 | ||
1121 | #, fuzzy | 826 | #, fuzzy |
1122 | msgid "" | 827 | msgid "" |
1123 | "This plugin uses the 'qstat' command, the popular game server status query " | 828 | "This plugin uses the 'qstat' command, the popular game server status query " |
1124 | "tool." | 829 | "tool." |
1125 | msgstr "Dieses plugin testet Gameserververbindungen zum angegebenen Host." | 830 | msgstr "Dieses plugin testet Gameserververbindungen zum angegebenen Host." |
1126 | 831 | ||
1127 | #: plugins/check_game.c:320 | ||
1128 | msgid "" | 832 | msgid "" |
1129 | "If you don't have the package installed, you will need to download it from" | 833 | "If you don't have the package installed, you will need to download it from" |
1130 | msgstr "" | 834 | msgstr "" |
1131 | 835 | ||
1132 | #: plugins/check_game.c:321 | ||
1133 | msgid "https://github.com/multiplay/qstat before you can use this plugin." | 836 | msgid "https://github.com/multiplay/qstat before you can use this plugin." |
1134 | msgstr "" | 837 | msgstr "" |
1135 | 838 | ||
1136 | #: plugins/check_hpjd.c:245 | ||
1137 | msgid "Paper Jam" | 839 | msgid "Paper Jam" |
1138 | msgstr "Papierstau" | 840 | msgstr "Papierstau" |
1139 | 841 | ||
1140 | #: plugins/check_hpjd.c:250 | ||
1141 | msgid "Out of Paper" | 842 | msgid "Out of Paper" |
1142 | msgstr "Kein Papier" | 843 | msgstr "Kein Papier" |
1143 | 844 | ||
1144 | #: plugins/check_hpjd.c:255 | ||
1145 | msgid "Printer Offline" | 845 | msgid "Printer Offline" |
1146 | msgstr "Drucker ausgeschaltet" | 846 | msgstr "Drucker ausgeschaltet" |
1147 | 847 | ||
1148 | #: plugins/check_hpjd.c:260 | ||
1149 | msgid "Peripheral Error" | 848 | msgid "Peripheral Error" |
1150 | msgstr "Peripheriefehler" | 849 | msgstr "Peripheriefehler" |
1151 | 850 | ||
1152 | #: plugins/check_hpjd.c:264 | ||
1153 | msgid "Intervention Required" | 851 | msgid "Intervention Required" |
1154 | msgstr "Eingriff benötigt" | 852 | msgstr "Eingriff benötigt" |
1155 | 853 | ||
1156 | #: plugins/check_hpjd.c:268 | ||
1157 | msgid "Toner Low" | 854 | msgid "Toner Low" |
1158 | msgstr "Wenig Toner" | 855 | msgstr "Wenig Toner" |
1159 | 856 | ||
1160 | #: plugins/check_hpjd.c:272 | ||
1161 | msgid "Insufficient Memory" | 857 | msgid "Insufficient Memory" |
1162 | msgstr "Nicht genügend Speicher" | 858 | msgstr "Nicht genügend Speicher" |
1163 | 859 | ||
1164 | #: plugins/check_hpjd.c:276 | ||
1165 | msgid "A Door is Open" | 860 | msgid "A Door is Open" |
1166 | msgstr "Eine Abdeckung ist offen" | 861 | msgstr "Eine Abdeckung ist offen" |
1167 | 862 | ||
1168 | #: plugins/check_hpjd.c:280 | ||
1169 | msgid "Output Tray is Full" | 863 | msgid "Output Tray is Full" |
1170 | msgstr "Ausgabeschacht ist voll" | 864 | msgstr "Ausgabeschacht ist voll" |
1171 | 865 | ||
1172 | #: plugins/check_hpjd.c:284 | ||
1173 | msgid "Data too Slow for Engine" | 866 | msgid "Data too Slow for Engine" |
1174 | msgstr "" | 867 | msgstr "" |
1175 | 868 | ||
1176 | #: plugins/check_hpjd.c:288 | ||
1177 | msgid "Unknown Paper Error" | 869 | msgid "Unknown Paper Error" |
1178 | msgstr "Papierfehler" | 870 | msgstr "Papierfehler" |
1179 | 871 | ||
1180 | #: plugins/check_hpjd.c:293 | ||
1181 | #, c-format | 872 | #, c-format |
1182 | msgid "Printer ok - (%s)\n" | 873 | msgid "Printer ok - (%s)\n" |
1183 | msgstr "Printer ok - (%s)\n" | 874 | msgstr "Printer ok - (%s)\n" |
1184 | 875 | ||
1185 | #: plugins/check_hpjd.c:353 | ||
1186 | #, fuzzy | 876 | #, fuzzy |
1187 | msgid "Port must be a positive short integer" | 877 | msgid "Port must be a positive short integer" |
1188 | msgstr "Port muss ein positiver Integer sein" | 878 | msgstr "Port muss ein positiver Integer sein" |
1189 | 879 | ||
1190 | #: plugins/check_hpjd.c:411 | ||
1191 | #, fuzzy | 880 | #, fuzzy |
1192 | msgid "This plugin tests the STATUS of an HP printer with a JetDirect card." | 881 | msgid "This plugin tests the STATUS of an HP printer with a JetDirect card." |
1193 | msgstr "" | 882 | msgstr "" |
@@ -1196,7 +885,6 @@ msgstr "" | |||
1196 | "Net-snmp muss auf dem ausführenden Computer installiert sein.\n" | 885 | "Net-snmp muss auf dem ausführenden Computer installiert sein.\n" |
1197 | "\n" | 886 | "\n" |
1198 | 887 | ||
1199 | #: plugins/check_hpjd.c:412 | ||
1200 | #, fuzzy | 888 | #, fuzzy |
1201 | msgid "Net-snmp must be installed on the computer running the plugin." | 889 | msgid "Net-snmp must be installed on the computer running the plugin." |
1202 | msgstr "" | 890 | msgstr "" |
@@ -1205,1299 +893,1011 @@ msgstr "" | |||
1205 | "Net-snmp muss auf dem ausführenden Computer installiert sein.\n" | 893 | "Net-snmp muss auf dem ausführenden Computer installiert sein.\n" |
1206 | "\n" | 894 | "\n" |
1207 | 895 | ||
1208 | #: plugins/check_hpjd.c:422 | ||
1209 | msgid "The SNMP community name " | 896 | msgid "The SNMP community name " |
1210 | msgstr "" | 897 | msgstr "" |
1211 | 898 | ||
1212 | #: plugins/check_hpjd.c:423 plugins/check_hpjd.c:427 | ||
1213 | #, c-format | 899 | #, c-format |
1214 | msgid "(default=%s)" | 900 | msgid "(default=%s)" |
1215 | msgstr "" | 901 | msgstr "" |
1216 | 902 | ||
1217 | #: plugins/check_hpjd.c:426 | ||
1218 | msgid "Specify the port to check " | 903 | msgid "Specify the port to check " |
1219 | msgstr "" | 904 | msgstr "" |
1220 | 905 | ||
1221 | #: plugins/check_hpjd.c:430 | ||
1222 | msgid "Disable paper check " | 906 | msgid "Disable paper check " |
1223 | msgstr "" | 907 | msgstr "" |
1224 | 908 | ||
1225 | #: plugins/check_http.c:196 | ||
1226 | msgid "file does not exist or is not readable" | 909 | msgid "file does not exist or is not readable" |
1227 | msgstr "" | 910 | msgstr "" |
1228 | 911 | ||
1229 | #: plugins/check_http.c:324 plugins/check_http.c:329 plugins/check_http.c:335 | ||
1230 | #: plugins/check_smtp.c:621 plugins/check_tcp.c:590 plugins/check_tcp.c:595 | ||
1231 | #: plugins/check_tcp.c:601 | ||
1232 | msgid "Invalid certificate expiration period" | 912 | msgid "Invalid certificate expiration period" |
1233 | msgstr "Ungültiger Zertifikatsablauftermin" | 913 | msgstr "Ungültiger Zertifikatsablauftermin" |
1234 | 914 | ||
1235 | #: plugins/check_http.c:378 | ||
1236 | msgid "" | 915 | msgid "" |
1237 | "Invalid option - Valid SSL/TLS versions: 2, 3, 1, 1.1, 1.2 (with optional " | 916 | "Invalid option - Valid SSL/TLS versions: 2, 3, 1, 1.1, 1.2 (with optional " |
1238 | "'+' suffix)" | 917 | "'+' suffix)" |
1239 | msgstr "" | 918 | msgstr "" |
1240 | 919 | ||
1241 | #: plugins/check_http.c:384 plugins/check_tcp.c:614 plugins/check_tcp.c:623 | ||
1242 | #, fuzzy | 920 | #, fuzzy |
1243 | msgid "Invalid option - SSL is not available" | 921 | msgid "Invalid option - SSL is not available" |
1244 | msgstr "Ungültige Option - SSL ist nicht verfügbar\n" | 922 | msgstr "Ungültige Option - SSL ist nicht verfügbar\n" |
1245 | 923 | ||
1246 | #: plugins/check_http.c:392 | ||
1247 | msgid "Invalid max_redirs count" | 924 | msgid "Invalid max_redirs count" |
1248 | msgstr "" | 925 | msgstr "" |
1249 | 926 | ||
1250 | #: plugins/check_http.c:412 | ||
1251 | msgid "Invalid onredirect option" | 927 | msgid "Invalid onredirect option" |
1252 | msgstr "" | 928 | msgstr "" |
1253 | 929 | ||
1254 | #: plugins/check_http.c:414 | ||
1255 | #, c-format | 930 | #, c-format |
1256 | msgid "option f:%d \n" | 931 | msgid "option f:%d \n" |
1257 | msgstr "Option f:%d \n" | 932 | msgstr "Option f:%d \n" |
1258 | 933 | ||
1259 | #: plugins/check_http.c:449 | ||
1260 | msgid "Invalid port number" | 934 | msgid "Invalid port number" |
1261 | msgstr "Ungültige Portnummer" | 935 | msgstr "Ungültige Portnummer" |
1262 | 936 | ||
1263 | #: plugins/check_http.c:508 | ||
1264 | #, c-format | 937 | #, c-format |
1265 | msgid "Could Not Compile Regular Expression: %s" | 938 | msgid "Could Not Compile Regular Expression: %s" |
1266 | msgstr "" | 939 | msgstr "" |
1267 | 940 | ||
1268 | #: plugins/check_http.c:522 plugins/check_ntp.c:732 | ||
1269 | #: plugins/check_ntp_peer.c:513 plugins/check_ntp_time.c:517 | ||
1270 | #: plugins/check_smtp.c:661 plugins/check_ssh.c:151 plugins/check_tcp.c:491 | ||
1271 | msgid "IPv6 support not available" | 941 | msgid "IPv6 support not available" |
1272 | msgstr "IPv6 Unterstützung nicht vorhanden" | 942 | msgstr "IPv6 Unterstützung nicht vorhanden" |
1273 | 943 | ||
1274 | #: plugins/check_http.c:590 plugins/check_ping.c:428 | ||
1275 | msgid "You must specify a server address or host name" | 944 | msgid "You must specify a server address or host name" |
1276 | msgstr "Hostname oder Serveradresse muss angegeben werden" | 945 | msgstr "Hostname oder Serveradresse muss angegeben werden" |
1277 | 946 | ||
1278 | #: plugins/check_http.c:607 | ||
1279 | msgid "" | 947 | msgid "" |
1280 | "If you use a client certificate you must also specify a private key file" | 948 | "If you use a client certificate you must also specify a private key file" |
1281 | msgstr "" | 949 | msgstr "" |
1282 | 950 | ||
1283 | #: plugins/check_http.c:734 plugins/check_http.c:902 | ||
1284 | #, fuzzy | 951 | #, fuzzy |
1285 | msgid "HTTP UNKNOWN - Memory allocation error\n" | 952 | msgid "HTTP UNKNOWN - Memory allocation error\n" |
1286 | msgstr "HTTP UNKNOWN - Konnte·url·nicht·zuweisen\n" | 953 | msgstr "HTTP UNKNOWN - Konnte·url·nicht·zuweisen\n" |
1287 | 954 | ||
1288 | #: plugins/check_http.c:806 | ||
1289 | #, fuzzy, c-format | 955 | #, fuzzy, c-format |
1290 | msgid "%sServer date unknown, " | 956 | msgid "%sServer date unknown, " |
1291 | msgstr "HTTP UNKNOWN - Serverdatum unbekannt\n" | 957 | msgstr "HTTP UNKNOWN - Serverdatum unbekannt\n" |
1292 | 958 | ||
1293 | #: plugins/check_http.c:809 | ||
1294 | #, fuzzy, c-format | 959 | #, fuzzy, c-format |
1295 | msgid "%sDocument modification date unknown, " | 960 | msgid "%sDocument modification date unknown, " |
1296 | msgstr "HTTP CRITICAL - Datum der letzten Änderung unbekannt\n" | 961 | msgstr "HTTP CRITICAL - Datum der letzten Änderung unbekannt\n" |
1297 | 962 | ||
1298 | #: plugins/check_http.c:816 | ||
1299 | #, fuzzy, c-format | 963 | #, fuzzy, c-format |
1300 | msgid "%sServer date \"%100s\" unparsable, " | 964 | msgid "%sServer date \"%100s\" unparsable, " |
1301 | msgstr "HTTP CRITICAL - Serverdatum \"%100s\" konnte nicht verarbeitet werden" | 965 | msgstr "HTTP CRITICAL - Serverdatum \"%100s\" konnte nicht verarbeitet werden" |
1302 | 966 | ||
1303 | #: plugins/check_http.c:819 | ||
1304 | #, fuzzy, c-format | 967 | #, fuzzy, c-format |
1305 | msgid "%sDocument date \"%100s\" unparsable, " | 968 | msgid "%sDocument date \"%100s\" unparsable, " |
1306 | msgstr "" | 969 | msgstr "" |
1307 | "HTTP CRITICAL - Dokumentendatum \"%100s\" konnte nicht verarbeitet werden" | 970 | "HTTP CRITICAL - Dokumentendatum \"%100s\" konnte nicht verarbeitet werden" |
1308 | 971 | ||
1309 | #: plugins/check_http.c:822 | ||
1310 | #, fuzzy, c-format | 972 | #, fuzzy, c-format |
1311 | msgid "%sDocument is %d seconds in the future, " | 973 | msgid "%sDocument is %d seconds in the future, " |
1312 | msgstr "HTTP CRITICAL - Dokumentendatum ist %d Sekunden in der Zukunft\n" | 974 | msgstr "HTTP CRITICAL - Dokumentendatum ist %d Sekunden in der Zukunft\n" |
1313 | 975 | ||
1314 | #: plugins/check_http.c:827 | ||
1315 | #, fuzzy, c-format | 976 | #, fuzzy, c-format |
1316 | msgid "%sLast modified %.1f days ago, " | 977 | msgid "%sLast modified %.1f days ago, " |
1317 | msgstr "HTTP CRITICAL - Letzte Änderung vor %.1f Tagen\n" | 978 | msgstr "HTTP CRITICAL - Letzte Änderung vor %.1f Tagen\n" |
1318 | 979 | ||
1319 | #: plugins/check_http.c:830 | ||
1320 | #, fuzzy, c-format | 980 | #, fuzzy, c-format |
1321 | msgid "%sLast modified %d:%02d:%02d ago, " | 981 | msgid "%sLast modified %d:%02d:%02d ago, " |
1322 | msgstr "HTTP CRITICAL - Letzte Änderung vor %d:%02d:%02d \n" | 982 | msgstr "HTTP CRITICAL - Letzte Änderung vor %d:%02d:%02d \n" |
1323 | 983 | ||
1324 | #: plugins/check_http.c:944 | ||
1325 | msgid "HTTP CRITICAL - Unable to open TCP socket\n" | 984 | msgid "HTTP CRITICAL - Unable to open TCP socket\n" |
1326 | msgstr "HTTP CRITICAL - Konnte TCP socket nicht öffnen\n" | 985 | msgstr "HTTP CRITICAL - Konnte TCP socket nicht öffnen\n" |
1327 | 986 | ||
1328 | #: plugins/check_http.c:1104 | ||
1329 | #, fuzzy | 987 | #, fuzzy |
1330 | msgid "HTTP UNKNOWN - Could not allocate memory for full_page\n" | 988 | msgid "HTTP UNKNOWN - Could not allocate memory for full_page\n" |
1331 | msgstr "HTTP UNKNOWN - Konnte·url·nicht·zuweisen\n" | 989 | msgstr "HTTP UNKNOWN - Konnte·url·nicht·zuweisen\n" |
1332 | 990 | ||
1333 | #: plugins/check_http.c:1121 | ||
1334 | msgid "HTTP CRITICAL - Error on receive\n" | 991 | msgid "HTTP CRITICAL - Error on receive\n" |
1335 | msgstr "HTTP CRITICAL - Fehler beim Empfangen\n" | 992 | msgstr "HTTP CRITICAL - Fehler beim Empfangen\n" |
1336 | 993 | ||
1337 | #: plugins/check_http.c:1126 | ||
1338 | #, fuzzy | 994 | #, fuzzy |
1339 | msgid "HTTP CRITICAL - No data received from host\n" | 995 | msgid "HTTP CRITICAL - No data received from host\n" |
1340 | msgstr "HTTP CRITICAL - Keine Daten empfangen\n" | 996 | msgstr "HTTP CRITICAL - Keine Daten empfangen\n" |
1341 | 997 | ||
1342 | #: plugins/check_http.c:1177 | ||
1343 | #, fuzzy, c-format | 998 | #, fuzzy, c-format |
1344 | msgid "Invalid HTTP response received from host: %s\n" | 999 | msgid "Invalid HTTP response received from host: %s\n" |
1345 | msgstr "Ungültige HTTP Antwort von Host empfangen\n" | 1000 | msgstr "Ungültige HTTP Antwort von Host empfangen\n" |
1346 | 1001 | ||
1347 | #: plugins/check_http.c:1181 | ||
1348 | #, fuzzy, c-format | 1002 | #, fuzzy, c-format |
1349 | msgid "Invalid HTTP response received from host on port %d: %s\n" | 1003 | msgid "Invalid HTTP response received from host on port %d: %s\n" |
1350 | msgstr "Ungültige HTTP Antwort von Host erhalten auf Port %d\n" | 1004 | msgstr "Ungültige HTTP Antwort von Host erhalten auf Port %d\n" |
1351 | 1005 | ||
1352 | #: plugins/check_http.c:1184 plugins/check_http.c:1377 | ||
1353 | #, c-format | 1006 | #, c-format |
1354 | msgid "" | 1007 | msgid "" |
1355 | "%s\n" | 1008 | "%s\n" |
1356 | "%s" | 1009 | "%s" |
1357 | msgstr "" | 1010 | msgstr "" |
1358 | 1011 | ||
1359 | #: plugins/check_http.c:1192 | ||
1360 | #, fuzzy, c-format | 1012 | #, fuzzy, c-format |
1361 | msgid "Status line output matched \"%s\" - " | 1013 | msgid "Status line output matched \"%s\" - " |
1362 | msgstr "HTTP OK: Statusausgabe passt auf \"%s\"\n" | 1014 | msgstr "HTTP OK: Statusausgabe passt auf \"%s\"\n" |
1363 | 1015 | ||
1364 | #: plugins/check_http.c:1203 | ||
1365 | #, c-format | 1016 | #, c-format |
1366 | msgid "HTTP CRITICAL: Invalid Status Line (%s)\n" | 1017 | msgid "HTTP CRITICAL: Invalid Status Line (%s)\n" |
1367 | msgstr "HTTP CRITICAL: Ungültige Statusmeldung (%s)\n" | 1018 | msgstr "HTTP CRITICAL: Ungültige Statusmeldung (%s)\n" |
1368 | 1019 | ||
1369 | #: plugins/check_http.c:1210 | ||
1370 | #, c-format | 1020 | #, c-format |
1371 | msgid "HTTP CRITICAL: Invalid Status (%s)\n" | 1021 | msgid "HTTP CRITICAL: Invalid Status (%s)\n" |
1372 | msgstr "HTTP CRITICAL: Ungültiger Status (%s)\n" | 1022 | msgstr "HTTP CRITICAL: Ungültiger Status (%s)\n" |
1373 | 1023 | ||
1374 | #: plugins/check_http.c:1214 plugins/check_http.c:1219 | ||
1375 | #: plugins/check_http.c:1229 plugins/check_http.c:1233 | ||
1376 | #, c-format | 1024 | #, c-format |
1377 | msgid "%s - " | 1025 | msgid "%s - " |
1378 | msgstr "" | 1026 | msgstr "" |
1379 | 1027 | ||
1380 | #: plugins/check_http.c:1261 | ||
1381 | #, fuzzy, c-format | 1028 | #, fuzzy, c-format |
1382 | msgid "%sheader '%s' not found on '%s://%s:%d%s', " | 1029 | msgid "%sheader '%s' not found on '%s://%s:%d%s', " |
1383 | msgstr "CRITICAL - Muster nicht gefunden%s|%s %s\n" | 1030 | msgstr "CRITICAL - Muster nicht gefunden%s|%s %s\n" |
1384 | 1031 | ||
1385 | #: plugins/check_http.c:1304 | ||
1386 | #, fuzzy, c-format | 1032 | #, fuzzy, c-format |
1387 | msgid "%sstring '%s' not found on '%s://%s:%d%s', " | 1033 | msgid "%sstring '%s' not found on '%s://%s:%d%s', " |
1388 | msgstr "CRITICAL - Muster nicht gefunden%s|%s %s\n" | 1034 | msgstr "CRITICAL - Muster nicht gefunden%s|%s %s\n" |
1389 | 1035 | ||
1390 | #: plugins/check_http.c:1318 | ||
1391 | #, fuzzy, c-format | 1036 | #, fuzzy, c-format |
1392 | msgid "%spattern not found, " | 1037 | msgid "%spattern not found, " |
1393 | msgstr "CRITICAL - Muster nicht gefunden%s|%s %s\n" | 1038 | msgstr "CRITICAL - Muster nicht gefunden%s|%s %s\n" |
1394 | 1039 | ||
1395 | #: plugins/check_http.c:1320 | ||
1396 | #, fuzzy, c-format | 1040 | #, fuzzy, c-format |
1397 | msgid "%spattern found, " | 1041 | msgid "%spattern found, " |
1398 | msgstr "CRITICAL - Muster nicht gefunden%s|%s %s\n" | 1042 | msgstr "CRITICAL - Muster nicht gefunden%s|%s %s\n" |
1399 | 1043 | ||
1400 | #: plugins/check_http.c:1326 | ||
1401 | #, fuzzy, c-format | 1044 | #, fuzzy, c-format |
1402 | msgid "%sExecute Error: %s, " | 1045 | msgid "%sExecute Error: %s, " |
1403 | msgstr "HTTP CRITICAL - Fehler: %s\n" | 1046 | msgstr "HTTP CRITICAL - Fehler: %s\n" |
1404 | 1047 | ||
1405 | #: plugins/check_http.c:1342 | ||
1406 | #, fuzzy, c-format | 1048 | #, fuzzy, c-format |
1407 | msgid "%spage size %d too large, " | 1049 | msgid "%spage size %d too large, " |
1408 | msgstr "HTTP WARNING: Seitengröße %d zu klein%s|%s\n" | 1050 | msgstr "HTTP WARNING: Seitengröße %d zu klein%s|%s\n" |
1409 | 1051 | ||
1410 | #: plugins/check_http.c:1345 | ||
1411 | #, fuzzy, c-format | 1052 | #, fuzzy, c-format |
1412 | msgid "%spage size %d too small, " | 1053 | msgid "%spage size %d too small, " |
1413 | msgstr "HTTP WARNING: Seitengröße %d zu klein%s|%s\n" | 1054 | msgstr "HTTP WARNING: Seitengröße %d zu klein%s|%s\n" |
1414 | 1055 | ||
1415 | #: plugins/check_http.c:1358 | ||
1416 | #, fuzzy, c-format | 1056 | #, fuzzy, c-format |
1417 | msgid "%s - %d bytes in %.3f second response time %s|%s %s %s %s %s %s %s" | 1057 | msgid "%s - %d bytes in %.3f second response time %s|%s %s %s %s %s %s %s" |
1418 | msgstr " - %s - %.3f Sekunden Antwortzeit %s%s|%s %s\n" | 1058 | msgstr " - %s - %.3f Sekunden Antwortzeit %s%s|%s %s\n" |
1419 | 1059 | ||
1420 | #: plugins/check_http.c:1370 | ||
1421 | #, fuzzy, c-format | 1060 | #, fuzzy, c-format |
1422 | msgid "%s - %d bytes in %.3f second response time %s|%s %s" | 1061 | msgid "%s - %d bytes in %.3f second response time %s|%s %s" |
1423 | msgstr " - %s - %.3f Sekunden Antwortzeit %s%s|%s %s\n" | 1062 | msgstr " - %s - %.3f Sekunden Antwortzeit %s%s|%s %s\n" |
1424 | 1063 | ||
1425 | #: plugins/check_http.c:1500 | ||
1426 | msgid "HTTP UNKNOWN - Could not allocate addr\n" | 1064 | msgid "HTTP UNKNOWN - Could not allocate addr\n" |
1427 | msgstr "HTTP UNKNOWN - Konnte addr nicht zuweisen\n" | 1065 | msgstr "HTTP UNKNOWN - Konnte addr nicht zuweisen\n" |
1428 | 1066 | ||
1429 | #: plugins/check_http.c:1505 plugins/check_http.c:1536 | ||
1430 | #, fuzzy | 1067 | #, fuzzy |
1431 | msgid "HTTP UNKNOWN - Could not allocate URL\n" | 1068 | msgid "HTTP UNKNOWN - Could not allocate URL\n" |
1432 | msgstr "HTTP UNKNOWN - Konnte·url·nicht·zuweisen\n" | 1069 | msgstr "HTTP UNKNOWN - Konnte·url·nicht·zuweisen\n" |
1433 | 1070 | ||
1434 | #: plugins/check_http.c:1514 | ||
1435 | #, c-format | 1071 | #, c-format |
1436 | msgid "HTTP UNKNOWN - Could not find redirect location - %s%s\n" | 1072 | msgid "HTTP UNKNOWN - Could not find redirect location - %s%s\n" |
1437 | msgstr "" | 1073 | msgstr "" |
1438 | 1074 | ||
1439 | #: plugins/check_http.c:1529 | ||
1440 | #, fuzzy, c-format | 1075 | #, fuzzy, c-format |
1441 | msgid "HTTP UNKNOWN - Empty redirect location%s\n" | 1076 | msgid "HTTP UNKNOWN - Empty redirect location%s\n" |
1442 | msgstr "HTTP UNKNOWN - Serverdatum unbekannt\n" | 1077 | msgstr "HTTP UNKNOWN - Serverdatum unbekannt\n" |
1443 | 1078 | ||
1444 | #: plugins/check_http.c:1591 | ||
1445 | #, c-format | 1079 | #, c-format |
1446 | msgid "HTTP UNKNOWN - Could not parse redirect location - %s%s\n" | 1080 | msgid "HTTP UNKNOWN - Could not parse redirect location - %s%s\n" |
1447 | msgstr "" | 1081 | msgstr "" |
1448 | 1082 | ||
1449 | #: plugins/check_http.c:1601 | ||
1450 | #, fuzzy, c-format | 1083 | #, fuzzy, c-format |
1451 | msgid "HTTP WARNING - maximum redirection depth %d exceeded - %s://%s:%d%s%s\n" | 1084 | msgid "HTTP WARNING - maximum redirection depth %d exceeded - %s://%s:%d%s%s\n" |
1452 | msgstr "HTTP WARNING - Umleitung verursacht eine Schleife - %s://%s:%d%s%s\n" | 1085 | msgstr "HTTP WARNING - Umleitung verursacht eine Schleife - %s://%s:%d%s%s\n" |
1453 | 1086 | ||
1454 | #: plugins/check_http.c:1609 | ||
1455 | #, fuzzy, c-format | 1087 | #, fuzzy, c-format |
1456 | msgid "HTTP CRITICAL - redirection creates an infinite loop - %s://%s:%d%s%s\n" | 1088 | msgid "HTTP CRITICAL - redirection creates an infinite loop - %s://%s:%d%s%s\n" |
1457 | msgstr "HTTP WARNING - Umleitung verursacht eine Schleife - %s://%s:%d%s%s\n" | 1089 | msgstr "HTTP WARNING - Umleitung verursacht eine Schleife - %s://%s:%d%s%s\n" |
1458 | 1090 | ||
1459 | #: plugins/check_http.c:1630 | ||
1460 | #, fuzzy, c-format | 1091 | #, fuzzy, c-format |
1461 | msgid "HTTP UNKNOWN - Redirection to port above %d - %s://%s:%d%s%s\n" | 1092 | msgid "HTTP UNKNOWN - Redirection to port above %d - %s://%s:%d%s%s\n" |
1462 | msgstr "HTTP WARNING - Umleitung verursacht eine Schleife - %s://%s:%d%s%s\n" | 1093 | msgstr "HTTP WARNING - Umleitung verursacht eine Schleife - %s://%s:%d%s%s\n" |
1463 | 1094 | ||
1464 | #: plugins/check_http.c:1638 | ||
1465 | #, c-format | 1095 | #, c-format |
1466 | msgid "Redirection to %s://%s:%d%s\n" | 1096 | msgid "Redirection to %s://%s:%d%s\n" |
1467 | msgstr "" | 1097 | msgstr "" |
1468 | 1098 | ||
1469 | #: plugins/check_http.c:1713 | ||
1470 | #, fuzzy | 1099 | #, fuzzy |
1471 | msgid "This plugin tests the HTTP service on the specified host. It can test" | 1100 | msgid "This plugin tests the HTTP service on the specified host. It can test" |
1472 | msgstr "" | 1101 | msgstr "" |
1473 | "Testet den DNS Dienst auf dem angegebenen Host mit dig\n" | 1102 | "Testet den DNS Dienst auf dem angegebenen Host mit dig\n" |
1474 | "\n" | 1103 | "\n" |
1475 | 1104 | ||
1476 | #: plugins/check_http.c:1714 | ||
1477 | msgid "normal (http) and secure (https) servers, follow redirects, search for" | 1105 | msgid "normal (http) and secure (https) servers, follow redirects, search for" |
1478 | msgstr "" | 1106 | msgstr "" |
1479 | 1107 | ||
1480 | #: plugins/check_http.c:1715 | ||
1481 | msgid "strings and regular expressions, check connection times, and report on" | 1108 | msgid "strings and regular expressions, check connection times, and report on" |
1482 | msgstr "" | 1109 | msgstr "" |
1483 | 1110 | ||
1484 | #: plugins/check_http.c:1716 | ||
1485 | #, fuzzy | 1111 | #, fuzzy |
1486 | msgid "certificate expiration times." | 1112 | msgid "certificate expiration times." |
1487 | msgstr "Clientzertifikat benötigt\n" | 1113 | msgstr "Clientzertifikat benötigt\n" |
1488 | 1114 | ||
1489 | #: plugins/check_http.c:1723 | ||
1490 | #, c-format | 1115 | #, c-format |
1491 | msgid "In the first form, make an HTTP request." | 1116 | msgid "In the first form, make an HTTP request." |
1492 | msgstr "" | 1117 | msgstr "" |
1493 | 1118 | ||
1494 | #: plugins/check_http.c:1724 | ||
1495 | #, c-format | 1119 | #, c-format |
1496 | msgid "" | 1120 | msgid "" |
1497 | "In the second form, connect to the server and check the TLS certificate." | 1121 | "In the second form, connect to the server and check the TLS certificate." |
1498 | msgstr "" | 1122 | msgstr "" |
1499 | 1123 | ||
1500 | #: plugins/check_http.c:1726 | ||
1501 | #, c-format | 1124 | #, c-format |
1502 | msgid "NOTE: One or both of -H and -I must be specified" | 1125 | msgid "NOTE: One or both of -H and -I must be specified" |
1503 | msgstr "" | 1126 | msgstr "" |
1504 | 1127 | ||
1505 | #: plugins/check_http.c:1734 | ||
1506 | msgid "Host name argument for servers using host headers (virtual host)" | 1128 | msgid "Host name argument for servers using host headers (virtual host)" |
1507 | msgstr "" | 1129 | msgstr "" |
1508 | 1130 | ||
1509 | #: plugins/check_http.c:1735 | ||
1510 | msgid "Append a port to include it in the header (eg: example.com:5000)" | 1131 | msgid "Append a port to include it in the header (eg: example.com:5000)" |
1511 | msgstr "" | 1132 | msgstr "" |
1512 | 1133 | ||
1513 | #: plugins/check_http.c:1737 | ||
1514 | msgid "" | 1134 | msgid "" |
1515 | "IP address or name (use numeric address if possible to bypass DNS lookup)." | 1135 | "IP address or name (use numeric address if possible to bypass DNS lookup)." |
1516 | msgstr "" | 1136 | msgstr "" |
1517 | 1137 | ||
1518 | #: plugins/check_http.c:1739 | ||
1519 | msgid "Port number (default: " | 1138 | msgid "Port number (default: " |
1520 | msgstr "" | 1139 | msgstr "" |
1521 | 1140 | ||
1522 | #: plugins/check_http.c:1746 | ||
1523 | msgid "" | 1141 | msgid "" |
1524 | "Connect via SSL. Port defaults to 443. VERSION is optional, and prevents" | 1142 | "Connect via SSL. Port defaults to 443. VERSION is optional, and prevents" |
1525 | msgstr "" | 1143 | msgstr "" |
1526 | 1144 | ||
1527 | #: plugins/check_http.c:1747 | ||
1528 | msgid "auto-negotiation (2 = SSLv2, 3 = SSLv3, 1 = TLSv1, 1.1 = TLSv1.1," | 1145 | msgid "auto-negotiation (2 = SSLv2, 3 = SSLv3, 1 = TLSv1, 1.1 = TLSv1.1," |
1529 | msgstr "" | 1146 | msgstr "" |
1530 | 1147 | ||
1531 | #: plugins/check_http.c:1748 | ||
1532 | msgid "1.2 = TLSv1.2). With a '+' suffix, newer versions are also accepted." | 1148 | msgid "1.2 = TLSv1.2). With a '+' suffix, newer versions are also accepted." |
1533 | msgstr "" | 1149 | msgstr "" |
1534 | 1150 | ||
1535 | #: plugins/check_http.c:1750 plugins/check_smtp.c:857 | ||
1536 | msgid "Enable SSL/TLS hostname extension support (SNI)" | 1151 | msgid "Enable SSL/TLS hostname extension support (SNI)" |
1537 | msgstr "" | 1152 | msgstr "" |
1538 | 1153 | ||
1539 | #: plugins/check_http.c:1752 | ||
1540 | msgid "" | 1154 | msgid "" |
1541 | "Minimum number of days a certificate has to be valid. Port defaults to 443" | 1155 | "Minimum number of days a certificate has to be valid. Port defaults to 443" |
1542 | msgstr "" | 1156 | msgstr "" |
1543 | 1157 | ||
1544 | #: plugins/check_http.c:1753 | ||
1545 | msgid "" | 1158 | msgid "" |
1546 | "(when this option is used the URL is not checked by default. You can use" | 1159 | "(when this option is used the URL is not checked by default. You can use" |
1547 | msgstr "" | 1160 | msgstr "" |
1548 | 1161 | ||
1549 | #: plugins/check_http.c:1754 | ||
1550 | msgid " --continue-after-certificate to override this behavior)" | 1162 | msgid " --continue-after-certificate to override this behavior)" |
1551 | msgstr "" | 1163 | msgstr "" |
1552 | 1164 | ||
1553 | #: plugins/check_http.c:1756 | ||
1554 | msgid "" | 1165 | msgid "" |
1555 | "Allows the HTTP check to continue after performing the certificate check." | 1166 | "Allows the HTTP check to continue after performing the certificate check." |
1556 | msgstr "" | 1167 | msgstr "" |
1557 | 1168 | ||
1558 | #: plugins/check_http.c:1757 | ||
1559 | msgid "Does nothing unless -C is used." | 1169 | msgid "Does nothing unless -C is used." |
1560 | msgstr "" | 1170 | msgstr "" |
1561 | 1171 | ||
1562 | #: plugins/check_http.c:1759 | ||
1563 | msgid "Name of file that contains the client certificate (PEM format)" | 1172 | msgid "Name of file that contains the client certificate (PEM format)" |
1564 | msgstr "" | 1173 | msgstr "" |
1565 | 1174 | ||
1566 | #: plugins/check_http.c:1760 | ||
1567 | msgid "to be used in establishing the SSL session" | 1175 | msgid "to be used in establishing the SSL session" |
1568 | msgstr "" | 1176 | msgstr "" |
1569 | 1177 | ||
1570 | #: plugins/check_http.c:1762 | ||
1571 | msgid "Name of file containing the private key (PEM format)" | 1178 | msgid "Name of file containing the private key (PEM format)" |
1572 | msgstr "" | 1179 | msgstr "" |
1573 | 1180 | ||
1574 | #: plugins/check_http.c:1763 | ||
1575 | msgid "matching the client certificate" | 1181 | msgid "matching the client certificate" |
1576 | msgstr "" | 1182 | msgstr "" |
1577 | 1183 | ||
1578 | #: plugins/check_http.c:1767 | ||
1579 | msgid "Comma-delimited list of strings, at least one of them is expected in" | 1184 | msgid "Comma-delimited list of strings, at least one of them is expected in" |
1580 | msgstr "" | 1185 | msgstr "" |
1581 | 1186 | ||
1582 | #: plugins/check_http.c:1768 | ||
1583 | msgid "the first (status) line of the server response (default: " | 1187 | msgid "the first (status) line of the server response (default: " |
1584 | msgstr "" | 1188 | msgstr "" |
1585 | 1189 | ||
1586 | #: plugins/check_http.c:1770 | ||
1587 | msgid "" | 1190 | msgid "" |
1588 | "If specified skips all other status line logic (ex: 3xx, 4xx, 5xx processing)" | 1191 | "If specified skips all other status line logic (ex: 3xx, 4xx, 5xx processing)" |
1589 | msgstr "" | 1192 | msgstr "" |
1590 | 1193 | ||
1591 | #: plugins/check_http.c:1772 | ||
1592 | msgid "String to expect in the response headers" | 1194 | msgid "String to expect in the response headers" |
1593 | msgstr "" | 1195 | msgstr "" |
1594 | 1196 | ||
1595 | #: plugins/check_http.c:1774 | ||
1596 | msgid "String to expect in the content" | 1197 | msgid "String to expect in the content" |
1597 | msgstr "" | 1198 | msgstr "" |
1598 | 1199 | ||
1599 | #: plugins/check_http.c:1776 | ||
1600 | msgid "URL to GET or POST (default: /)" | 1200 | msgid "URL to GET or POST (default: /)" |
1601 | msgstr "" | 1201 | msgstr "" |
1602 | 1202 | ||
1603 | #: plugins/check_http.c:1778 | ||
1604 | msgid "URL encoded http POST data" | 1203 | msgid "URL encoded http POST data" |
1605 | msgstr "" | 1204 | msgstr "" |
1606 | 1205 | ||
1607 | #: plugins/check_http.c:1780 | ||
1608 | msgid "Set HTTP method." | 1206 | msgid "Set HTTP method." |
1609 | msgstr "" | 1207 | msgstr "" |
1610 | 1208 | ||
1611 | #: plugins/check_http.c:1782 | ||
1612 | msgid "Don't wait for document body: stop reading after headers." | 1209 | msgid "Don't wait for document body: stop reading after headers." |
1613 | msgstr "" | 1210 | msgstr "" |
1614 | 1211 | ||
1615 | #: plugins/check_http.c:1783 | ||
1616 | msgid "(Note that this still does an HTTP GET or POST, not a HEAD.)" | 1212 | msgid "(Note that this still does an HTTP GET or POST, not a HEAD.)" |
1617 | msgstr "" | 1213 | msgstr "" |
1618 | 1214 | ||
1619 | #: plugins/check_http.c:1785 | ||
1620 | msgid "Warn if document is more than SECONDS old. the number can also be of" | 1215 | msgid "Warn if document is more than SECONDS old. the number can also be of" |
1621 | msgstr "" | 1216 | msgstr "" |
1622 | 1217 | ||
1623 | #: plugins/check_http.c:1786 | ||
1624 | msgid "the form \"10m\" for minutes, \"10h\" for hours, or \"10d\" for days." | 1218 | msgid "the form \"10m\" for minutes, \"10h\" for hours, or \"10d\" for days." |
1625 | msgstr "" | 1219 | msgstr "" |
1626 | 1220 | ||
1627 | #: plugins/check_http.c:1788 | ||
1628 | msgid "specify Content-Type header media type when POSTing\n" | 1221 | msgid "specify Content-Type header media type when POSTing\n" |
1629 | msgstr "" | 1222 | msgstr "" |
1630 | 1223 | ||
1631 | #: plugins/check_http.c:1791 | ||
1632 | msgid "Allow regex to span newlines (must precede -r or -R)" | 1224 | msgid "Allow regex to span newlines (must precede -r or -R)" |
1633 | msgstr "" | 1225 | msgstr "" |
1634 | 1226 | ||
1635 | #: plugins/check_http.c:1793 | ||
1636 | msgid "Search page for regex STRING" | 1227 | msgid "Search page for regex STRING" |
1637 | msgstr "" | 1228 | msgstr "" |
1638 | 1229 | ||
1639 | #: plugins/check_http.c:1795 | ||
1640 | msgid "Search page for case-insensitive regex STRING" | 1230 | msgid "Search page for case-insensitive regex STRING" |
1641 | msgstr "" | 1231 | msgstr "" |
1642 | 1232 | ||
1643 | #: plugins/check_http.c:1797 | ||
1644 | msgid "Return CRITICAL if found, OK if not\n" | 1233 | msgid "Return CRITICAL if found, OK if not\n" |
1645 | msgstr "" | 1234 | msgstr "" |
1646 | 1235 | ||
1647 | #: plugins/check_http.c:1800 | ||
1648 | msgid "Username:password on sites with basic authentication" | 1236 | msgid "Username:password on sites with basic authentication" |
1649 | msgstr "" | 1237 | msgstr "" |
1650 | 1238 | ||
1651 | #: plugins/check_http.c:1802 | ||
1652 | msgid "Username:password on proxy-servers with basic authentication" | 1239 | msgid "Username:password on proxy-servers with basic authentication" |
1653 | msgstr "" | 1240 | msgstr "" |
1654 | 1241 | ||
1655 | #: plugins/check_http.c:1804 | ||
1656 | msgid "String to be sent in http header as \"User Agent\"" | 1242 | msgid "String to be sent in http header as \"User Agent\"" |
1657 | msgstr "" | 1243 | msgstr "" |
1658 | 1244 | ||
1659 | #: plugins/check_http.c:1806 | ||
1660 | msgid "" | 1245 | msgid "" |
1661 | "Any other tags to be sent in http header. Use multiple times for additional " | 1246 | "Any other tags to be sent in http header. Use multiple times for additional " |
1662 | "headers" | 1247 | "headers" |
1663 | msgstr "" | 1248 | msgstr "" |
1664 | 1249 | ||
1665 | #: plugins/check_http.c:1808 | ||
1666 | msgid "Print additional performance data" | 1250 | msgid "Print additional performance data" |
1667 | msgstr "" | 1251 | msgstr "" |
1668 | 1252 | ||
1669 | #: plugins/check_http.c:1810 | ||
1670 | msgid "Print body content below status line" | 1253 | msgid "Print body content below status line" |
1671 | msgstr "" | 1254 | msgstr "" |
1672 | 1255 | ||
1673 | #: plugins/check_http.c:1812 | ||
1674 | msgid "Wrap output in HTML link (obsoleted by urlize)" | 1256 | msgid "Wrap output in HTML link (obsoleted by urlize)" |
1675 | msgstr "" | 1257 | msgstr "" |
1676 | 1258 | ||
1677 | #: plugins/check_http.c:1814 | ||
1678 | msgid "How to handle redirected pages. sticky is like follow but stick to the" | 1259 | msgid "How to handle redirected pages. sticky is like follow but stick to the" |
1679 | msgstr "" | 1260 | msgstr "" |
1680 | 1261 | ||
1681 | #: plugins/check_http.c:1815 | ||
1682 | msgid "specified IP address. stickyport also ensures port stays the same." | 1262 | msgid "specified IP address. stickyport also ensures port stays the same." |
1683 | msgstr "" | 1263 | msgstr "" |
1684 | 1264 | ||
1685 | #: plugins/check_http.c:1817 | ||
1686 | #, fuzzy | 1265 | #, fuzzy |
1687 | msgid "Maximal number of redirects (default: " | 1266 | msgid "Maximal number of redirects (default: " |
1688 | msgstr "Ungültige Portnummer" | 1267 | msgstr "Ungültige Portnummer" |
1689 | 1268 | ||
1690 | #: plugins/check_http.c:1820 | ||
1691 | msgid "Minimum page size required (bytes) : Maximum page size required (bytes)" | 1269 | msgid "Minimum page size required (bytes) : Maximum page size required (bytes)" |
1692 | msgstr "" | 1270 | msgstr "" |
1693 | 1271 | ||
1694 | #: plugins/check_http.c:1829 | ||
1695 | #, fuzzy | 1272 | #, fuzzy |
1696 | msgid "This plugin will attempt to open an HTTP connection with the host." | 1273 | msgid "This plugin will attempt to open an HTTP connection with the host." |
1697 | msgstr "Dieses plugin testet Gameserververbindungen zum angegebenen Host." | 1274 | msgstr "Dieses plugin testet Gameserververbindungen zum angegebenen Host." |
1698 | 1275 | ||
1699 | #: plugins/check_http.c:1830 | ||
1700 | msgid "" | 1276 | msgid "" |
1701 | "Successful connects return STATE_OK, refusals and timeouts return " | 1277 | "Successful connects return STATE_OK, refusals and timeouts return " |
1702 | "STATE_CRITICAL" | 1278 | "STATE_CRITICAL" |
1703 | msgstr "" | 1279 | msgstr "" |
1704 | 1280 | ||
1705 | #: plugins/check_http.c:1831 | ||
1706 | msgid "" | 1281 | msgid "" |
1707 | "other errors return STATE_UNKNOWN. Successful connects, but incorrect " | 1282 | "other errors return STATE_UNKNOWN. Successful connects, but incorrect " |
1708 | "response" | 1283 | "response" |
1709 | msgstr "" | 1284 | msgstr "" |
1710 | 1285 | ||
1711 | #: plugins/check_http.c:1832 | ||
1712 | msgid "" | 1286 | msgid "" |
1713 | "messages from the host result in STATE_WARNING return values. If you are" | 1287 | "messages from the host result in STATE_WARNING return values. If you are" |
1714 | msgstr "" | 1288 | msgstr "" |
1715 | 1289 | ||
1716 | #: plugins/check_http.c:1833 | ||
1717 | msgid "" | 1290 | msgid "" |
1718 | "checking a virtual server that uses 'host headers' you must supply the FQDN" | 1291 | "checking a virtual server that uses 'host headers' you must supply the FQDN" |
1719 | msgstr "" | 1292 | msgstr "" |
1720 | 1293 | ||
1721 | #: plugins/check_http.c:1834 | ||
1722 | msgid "(fully qualified domain name) as the [host_name] argument." | 1294 | msgid "(fully qualified domain name) as the [host_name] argument." |
1723 | msgstr "" | 1295 | msgstr "" |
1724 | 1296 | ||
1725 | #: plugins/check_http.c:1838 | ||
1726 | msgid "This plugin can also check whether an SSL enabled web server is able to" | 1297 | msgid "This plugin can also check whether an SSL enabled web server is able to" |
1727 | msgstr "" | 1298 | msgstr "" |
1728 | 1299 | ||
1729 | #: plugins/check_http.c:1839 | ||
1730 | msgid "serve content (optionally within a specified time) or whether the X509 " | 1300 | msgid "serve content (optionally within a specified time) or whether the X509 " |
1731 | msgstr "" | 1301 | msgstr "" |
1732 | 1302 | ||
1733 | #: plugins/check_http.c:1840 | ||
1734 | msgid "certificate is still valid for the specified number of days." | 1303 | msgid "certificate is still valid for the specified number of days." |
1735 | msgstr "" | 1304 | msgstr "" |
1736 | 1305 | ||
1737 | #: plugins/check_http.c:1842 | ||
1738 | #, fuzzy | 1306 | #, fuzzy |
1739 | msgid "Please note that this plugin does not check if the presented server" | 1307 | msgid "Please note that this plugin does not check if the presented server" |
1740 | msgstr "" | 1308 | msgstr "" |
1741 | "Testet den DNS Dienst auf dem angegebenen Host mit dig\n" | 1309 | "Testet den DNS Dienst auf dem angegebenen Host mit dig\n" |
1742 | "\n" | 1310 | "\n" |
1743 | 1311 | ||
1744 | #: plugins/check_http.c:1843 | ||
1745 | msgid "certificate matches the hostname of the server, or if the certificate" | 1312 | msgid "certificate matches the hostname of the server, or if the certificate" |
1746 | msgstr "" | 1313 | msgstr "" |
1747 | 1314 | ||
1748 | #: plugins/check_http.c:1844 | ||
1749 | msgid "has a valid chain of trust to one of the locally installed CAs." | 1315 | msgid "has a valid chain of trust to one of the locally installed CAs." |
1750 | msgstr "" | 1316 | msgstr "" |
1751 | 1317 | ||
1752 | #: plugins/check_http.c:1848 | ||
1753 | msgid "" | 1318 | msgid "" |
1754 | "When the 'www.verisign.com' server returns its content within 5 seconds," | 1319 | "When the 'www.verisign.com' server returns its content within 5 seconds," |
1755 | msgstr "" | 1320 | msgstr "" |
1756 | 1321 | ||
1757 | #: plugins/check_http.c:1849 plugins/check_http.c:1868 | ||
1758 | msgid "" | 1322 | msgid "" |
1759 | "a STATE_OK will be returned. When the server returns its content but exceeds" | 1323 | "a STATE_OK will be returned. When the server returns its content but exceeds" |
1760 | msgstr "" | 1324 | msgstr "" |
1761 | 1325 | ||
1762 | #: plugins/check_http.c:1850 plugins/check_http.c:1869 | ||
1763 | msgid "" | 1326 | msgid "" |
1764 | "the 5-second threshold, a STATE_WARNING will be returned. When an error " | 1327 | "the 5-second threshold, a STATE_WARNING will be returned. When an error " |
1765 | "occurs," | 1328 | "occurs," |
1766 | msgstr "" | 1329 | msgstr "" |
1767 | 1330 | ||
1768 | #: plugins/check_http.c:1851 | ||
1769 | msgid "a STATE_CRITICAL will be returned." | 1331 | msgid "a STATE_CRITICAL will be returned." |
1770 | msgstr "" | 1332 | msgstr "" |
1771 | 1333 | ||
1772 | #: plugins/check_http.c:1854 | ||
1773 | msgid "" | 1334 | msgid "" |
1774 | "When the certificate of 'www.verisign.com' is valid for more than 14 days," | 1335 | "When the certificate of 'www.verisign.com' is valid for more than 14 days," |
1775 | msgstr "" | 1336 | msgstr "" |
1776 | 1337 | ||
1777 | #: plugins/check_http.c:1855 plugins/check_http.c:1861 | ||
1778 | msgid "" | 1338 | msgid "" |
1779 | "a STATE_OK is returned. When the certificate is still valid, but for less " | 1339 | "a STATE_OK is returned. When the certificate is still valid, but for less " |
1780 | "than" | 1340 | "than" |
1781 | msgstr "" | 1341 | msgstr "" |
1782 | 1342 | ||
1783 | #: plugins/check_http.c:1856 | ||
1784 | msgid "" | 1343 | msgid "" |
1785 | "14 days, a STATE_WARNING is returned. A STATE_CRITICAL will be returned when" | 1344 | "14 days, a STATE_WARNING is returned. A STATE_CRITICAL will be returned when" |
1786 | msgstr "" | 1345 | msgstr "" |
1787 | 1346 | ||
1788 | #: plugins/check_http.c:1857 | ||
1789 | #, fuzzy | 1347 | #, fuzzy |
1790 | msgid "the certificate is expired." | 1348 | msgid "the certificate is expired." |
1791 | msgstr "Clientzertifikat benötigt\n" | 1349 | msgstr "Clientzertifikat benötigt\n" |
1792 | 1350 | ||
1793 | #: plugins/check_http.c:1860 | ||
1794 | msgid "" | 1351 | msgid "" |
1795 | "When the certificate of 'www.verisign.com' is valid for more than 30 days," | 1352 | "When the certificate of 'www.verisign.com' is valid for more than 30 days," |
1796 | msgstr "" | 1353 | msgstr "" |
1797 | 1354 | ||
1798 | #: plugins/check_http.c:1862 | ||
1799 | msgid "30 days, but more than 14 days, a STATE_WARNING is returned." | 1355 | msgid "30 days, but more than 14 days, a STATE_WARNING is returned." |
1800 | msgstr "" | 1356 | msgstr "" |
1801 | 1357 | ||
1802 | #: plugins/check_http.c:1863 | ||
1803 | msgid "" | 1358 | msgid "" |
1804 | "A STATE_CRITICAL will be returned when certificate expires in less than 14 " | 1359 | "A STATE_CRITICAL will be returned when certificate expires in less than 14 " |
1805 | "days" | 1360 | "days" |
1806 | msgstr "" | 1361 | msgstr "" |
1807 | 1362 | ||
1808 | #: plugins/check_http.c:1866 | ||
1809 | msgid "" | 1363 | msgid "" |
1810 | "check_http -I 192.168.100.35 -p 80 -u https://www.verisign.com/ -S -j " | 1364 | "check_http -I 192.168.100.35 -p 80 -u https://www.verisign.com/ -S -j " |
1811 | "CONNECT -H www.verisign.com " | 1365 | "CONNECT -H www.verisign.com " |
1812 | msgstr "" | 1366 | msgstr "" |
1813 | 1367 | ||
1814 | #: plugins/check_http.c:1867 | ||
1815 | msgid "" | 1368 | msgid "" |
1816 | "all these options are needed: -I <proxy> -p <proxy-port> -u <check-url> -" | 1369 | "all these options are needed: -I <proxy> -p <proxy-port> -u <check-url> -" |
1817 | "S(sl) -j CONNECT -H <webserver>" | 1370 | "S(sl) -j CONNECT -H <webserver>" |
1818 | msgstr "" | 1371 | msgstr "" |
1819 | 1372 | ||
1820 | #: plugins/check_http.c:1870 | ||
1821 | msgid "" | 1373 | msgid "" |
1822 | "a STATE_CRITICAL will be returned. By adding a colon to the method you can " | 1374 | "a STATE_CRITICAL will be returned. By adding a colon to the method you can " |
1823 | "set the method used" | 1375 | "set the method used" |
1824 | msgstr "" | 1376 | msgstr "" |
1825 | 1377 | ||
1826 | #: plugins/check_http.c:1871 | ||
1827 | msgid "inside the proxied connection: -j CONNECT:POST" | 1378 | msgid "inside the proxied connection: -j CONNECT:POST" |
1828 | msgstr "" | 1379 | msgstr "" |
1829 | 1380 | ||
1830 | #: plugins/check_ldap.c:142 | ||
1831 | #, c-format | 1381 | #, c-format |
1832 | msgid "Could not connect to the server at port %i\n" | 1382 | msgid "Could not connect to the server at port %i\n" |
1833 | msgstr "" | 1383 | msgstr "" |
1834 | 1384 | ||
1835 | #: plugins/check_ldap.c:151 | ||
1836 | #, c-format | 1385 | #, c-format |
1837 | msgid "Could not set protocol version %d\n" | 1386 | msgid "Could not set protocol version %d\n" |
1838 | msgstr "" | 1387 | msgstr "" |
1839 | 1388 | ||
1840 | #: plugins/check_ldap.c:166 | ||
1841 | #, fuzzy, c-format | 1389 | #, fuzzy, c-format |
1842 | msgid "Could not init TLS at port %i!\n" | 1390 | msgid "Could not init TLS at port %i!\n" |
1843 | msgstr "Konnte stderr nicht öffnen für: %s\n" | 1391 | msgstr "Konnte stderr nicht öffnen für: %s\n" |
1844 | 1392 | ||
1845 | #: plugins/check_ldap.c:170 | ||
1846 | #, c-format | 1393 | #, c-format |
1847 | msgid "TLS not supported by the libraries!\n" | 1394 | msgid "TLS not supported by the libraries!\n" |
1848 | msgstr "" | 1395 | msgstr "" |
1849 | 1396 | ||
1850 | #: plugins/check_ldap.c:190 | ||
1851 | #, fuzzy, c-format | 1397 | #, fuzzy, c-format |
1852 | msgid "Could not init startTLS at port %i!\n" | 1398 | msgid "Could not init startTLS at port %i!\n" |
1853 | msgstr "Konnte stderr nicht öffnen für: %s\n" | 1399 | msgstr "Konnte stderr nicht öffnen für: %s\n" |
1854 | 1400 | ||
1855 | #: plugins/check_ldap.c:194 | ||
1856 | #, c-format | 1401 | #, c-format |
1857 | msgid "startTLS not supported by the library, needs LDAPv3!\n" | 1402 | msgid "startTLS not supported by the library, needs LDAPv3!\n" |
1858 | msgstr "" | 1403 | msgstr "" |
1859 | 1404 | ||
1860 | #: plugins/check_ldap.c:204 | ||
1861 | #, c-format | 1405 | #, c-format |
1862 | msgid "Could not bind to the LDAP server\n" | 1406 | msgid "Could not bind to the LDAP server\n" |
1863 | msgstr "" | 1407 | msgstr "" |
1864 | 1408 | ||
1865 | #: plugins/check_ldap.c:213 | ||
1866 | #, c-format | 1409 | #, c-format |
1867 | msgid "Could not search/find objectclasses in %s\n" | 1410 | msgid "Could not search/find objectclasses in %s\n" |
1868 | msgstr "" | 1411 | msgstr "" |
1869 | 1412 | ||
1870 | #: plugins/check_ldap.c:252 | ||
1871 | #, fuzzy, c-format | 1413 | #, fuzzy, c-format |
1872 | msgid "LDAP %s - found %d entries in %.3f seconds|%s %s\n" | 1414 | msgid "LDAP %s - found %d entries in %.3f seconds|%s %s\n" |
1873 | msgstr "HTTP OK %s - %.3f Sekunde Antwortzeit %s%s|%s %s\n" | 1415 | msgstr "HTTP OK %s - %.3f Sekunde Antwortzeit %s%s|%s %s\n" |
1874 | 1416 | ||
1875 | #: plugins/check_ldap.c:265 | ||
1876 | #, c-format | 1417 | #, c-format |
1877 | msgid "LDAP %s - %.3f seconds response time|%s\n" | 1418 | msgid "LDAP %s - %.3f seconds response time|%s\n" |
1878 | msgstr "" | 1419 | msgstr "" |
1879 | 1420 | ||
1880 | #: plugins/check_ldap.c:386 plugins/check_ldap.c:394 | ||
1881 | #, c-format | 1421 | #, c-format |
1882 | msgid "%s cannot be combined with %s" | 1422 | msgid "%s cannot be combined with %s" |
1883 | msgstr "" | 1423 | msgstr "" |
1884 | 1424 | ||
1885 | #: plugins/check_ldap.c:426 | ||
1886 | msgid "Please specify the host name\n" | 1425 | msgid "Please specify the host name\n" |
1887 | msgstr "" | 1426 | msgstr "" |
1888 | 1427 | ||
1889 | #: plugins/check_ldap.c:429 | ||
1890 | msgid "Please specify the LDAP base\n" | 1428 | msgid "Please specify the LDAP base\n" |
1891 | msgstr "" | 1429 | msgstr "" |
1892 | 1430 | ||
1893 | #: plugins/check_ldap.c:465 | ||
1894 | msgid "ldap attribute to search (default: \"(objectclass=*)\"" | 1431 | msgid "ldap attribute to search (default: \"(objectclass=*)\"" |
1895 | msgstr "" | 1432 | msgstr "" |
1896 | 1433 | ||
1897 | #: plugins/check_ldap.c:467 | ||
1898 | msgid "ldap base (eg. ou=my unit, o=my org, c=at" | 1434 | msgid "ldap base (eg. ou=my unit, o=my org, c=at" |
1899 | msgstr "" | 1435 | msgstr "" |
1900 | 1436 | ||
1901 | #: plugins/check_ldap.c:469 | ||
1902 | msgid "ldap bind DN (if required)" | 1437 | msgid "ldap bind DN (if required)" |
1903 | msgstr "" | 1438 | msgstr "" |
1904 | 1439 | ||
1905 | #: plugins/check_ldap.c:471 | ||
1906 | msgid "" | 1440 | msgid "" |
1907 | "ldap password (if required, or set the password through environment variable " | 1441 | "ldap password (if required, or set the password through environment variable " |
1908 | "'LDAP_PASSWORD')" | 1442 | "'LDAP_PASSWORD')" |
1909 | msgstr "" | 1443 | msgstr "" |
1910 | 1444 | ||
1911 | #: plugins/check_ldap.c:473 | ||
1912 | msgid "use starttls mechanism introduced in protocol version 3" | 1445 | msgid "use starttls mechanism introduced in protocol version 3" |
1913 | msgstr "" | 1446 | msgstr "" |
1914 | 1447 | ||
1915 | #: plugins/check_ldap.c:475 | ||
1916 | msgid "use ldaps (ldap v2 ssl method). this also sets the default port to" | 1448 | msgid "use ldaps (ldap v2 ssl method). this also sets the default port to" |
1917 | msgstr "" | 1449 | msgstr "" |
1918 | 1450 | ||
1919 | #: plugins/check_ldap.c:479 | ||
1920 | msgid "use ldap protocol version 2" | 1451 | msgid "use ldap protocol version 2" |
1921 | msgstr "" | 1452 | msgstr "" |
1922 | 1453 | ||
1923 | #: plugins/check_ldap.c:481 | ||
1924 | msgid "use ldap protocol version 3" | 1454 | msgid "use ldap protocol version 3" |
1925 | msgstr "" | 1455 | msgstr "" |
1926 | 1456 | ||
1927 | #: plugins/check_ldap.c:482 | ||
1928 | msgid "default protocol version:" | 1457 | msgid "default protocol version:" |
1929 | msgstr "" | 1458 | msgstr "" |
1930 | 1459 | ||
1931 | #: plugins/check_ldap.c:488 | ||
1932 | msgid "Number of found entries to result in warning status" | 1460 | msgid "Number of found entries to result in warning status" |
1933 | msgstr "" | 1461 | msgstr "" |
1934 | 1462 | ||
1935 | #: plugins/check_ldap.c:490 | ||
1936 | msgid "Number of found entries to result in critical status" | 1463 | msgid "Number of found entries to result in critical status" |
1937 | msgstr "" | 1464 | msgstr "" |
1938 | 1465 | ||
1939 | #: plugins/check_ldap.c:498 | ||
1940 | msgid "If this plugin is called via 'check_ldaps', method 'STARTTLS' will be" | 1466 | msgid "If this plugin is called via 'check_ldaps', method 'STARTTLS' will be" |
1941 | msgstr "" | 1467 | msgstr "" |
1942 | 1468 | ||
1943 | #: plugins/check_ldap.c:499 | ||
1944 | #, c-format | 1469 | #, c-format |
1945 | msgid "" | 1470 | msgid "" |
1946 | " implied (using default port %i) unless --port=636 is specified. In that " | 1471 | " implied (using default port %i) unless --port=636 is specified. In that " |
1947 | "case\n" | 1472 | "case\n" |
1948 | msgstr "" | 1473 | msgstr "" |
1949 | 1474 | ||
1950 | #: plugins/check_ldap.c:500 | ||
1951 | msgid "'SSL on connect' will be used no matter how the plugin was called." | 1475 | msgid "'SSL on connect' will be used no matter how the plugin was called." |
1952 | msgstr "" | 1476 | msgstr "" |
1953 | 1477 | ||
1954 | #: plugins/check_ldap.c:501 | ||
1955 | msgid "" | 1478 | msgid "" |
1956 | "This detection is deprecated, please use 'check_ldap' with the '--starttls' " | 1479 | "This detection is deprecated, please use 'check_ldap' with the '--starttls' " |
1957 | "or '--ssl' flags" | 1480 | "or '--ssl' flags" |
1958 | msgstr "" | 1481 | msgstr "" |
1959 | 1482 | ||
1960 | #: plugins/check_ldap.c:502 | ||
1961 | msgid "to define the behaviour explicitly instead." | 1483 | msgid "to define the behaviour explicitly instead." |
1962 | msgstr "" | 1484 | msgstr "" |
1963 | 1485 | ||
1964 | #: plugins/check_ldap.c:503 | ||
1965 | msgid "The parameters --warn-entries and --crit-entries are optional." | 1486 | msgid "The parameters --warn-entries and --crit-entries are optional." |
1966 | msgstr "" | 1487 | msgstr "" |
1967 | 1488 | ||
1968 | #: plugins/check_load.c:93 | ||
1969 | msgid "Warning threshold must be float or float triplet!\n" | 1489 | msgid "Warning threshold must be float or float triplet!\n" |
1970 | msgstr "" | 1490 | msgstr "" |
1971 | 1491 | ||
1972 | #: plugins/check_load.c:138 plugins/check_load.c:154 | ||
1973 | #, c-format | 1492 | #, c-format |
1974 | msgid "Error opening %s\n" | 1493 | msgid "Error opening %s\n" |
1975 | msgstr "" | 1494 | msgstr "" |
1976 | 1495 | ||
1977 | #: plugins/check_load.c:169 | ||
1978 | #, fuzzy, c-format | 1496 | #, fuzzy, c-format |
1979 | msgid "could not parse load from uptime %s: %d\n" | 1497 | msgid "could not parse load from uptime %s: %d\n" |
1980 | msgstr "Argumente konnten nicht ausgewertet werden" | 1498 | msgstr "Argumente konnten nicht ausgewertet werden" |
1981 | 1499 | ||
1982 | #: plugins/check_load.c:175 | ||
1983 | #, c-format | 1500 | #, c-format |
1984 | msgid "Error code %d returned in %s\n" | 1501 | msgid "Error code %d returned in %s\n" |
1985 | msgstr "" | 1502 | msgstr "" |
1986 | 1503 | ||
1987 | #: plugins/check_load.c:183 | ||
1988 | #, c-format | 1504 | #, c-format |
1989 | msgid "Error in getloadavg()\n" | 1505 | msgid "Error in getloadavg()\n" |
1990 | msgstr "" | 1506 | msgstr "" |
1991 | 1507 | ||
1992 | #: plugins/check_load.c:186 plugins/check_load.c:188 | ||
1993 | #, c-format | 1508 | #, c-format |
1994 | msgid "Error processing %s\n" | 1509 | msgid "Error processing %s\n" |
1995 | msgstr "" | 1510 | msgstr "" |
1996 | 1511 | ||
1997 | #: plugins/check_load.c:197 plugins/check_load.c:212 | ||
1998 | #, c-format | 1512 | #, c-format |
1999 | msgid "load average: %.2f, %.2f, %.2f" | 1513 | msgid "load average: %.2f, %.2f, %.2f" |
2000 | msgstr "" | 1514 | msgstr "" |
2001 | 1515 | ||
2002 | #: plugins/check_load.c:327 | ||
2003 | #, fuzzy, c-format | 1516 | #, fuzzy, c-format |
2004 | msgid "Critical threshold for %d-minute load average is not specified\n" | 1517 | msgid "Critical threshold for %d-minute load average is not specified\n" |
2005 | msgstr "Critical threshold muss ein positiver Integer sein\n" | 1518 | msgstr "Critical threshold muss ein positiver Integer sein\n" |
2006 | 1519 | ||
2007 | #: plugins/check_load.c:329 | ||
2008 | #, fuzzy, c-format | 1520 | #, fuzzy, c-format |
2009 | msgid "Warning threshold for %d-minute load average is not specified\n" | 1521 | msgid "Warning threshold for %d-minute load average is not specified\n" |
2010 | msgstr "Warning threshold muss ein positiver Integer sein\n" | 1522 | msgstr "Warning threshold muss ein positiver Integer sein\n" |
2011 | 1523 | ||
2012 | #: plugins/check_load.c:331 | ||
2013 | #, c-format | 1524 | #, c-format |
2014 | msgid "" | 1525 | msgid "" |
2015 | "Parameter inconsistency: %d-minute \"warning load\" is greater than " | 1526 | "Parameter inconsistency: %d-minute \"warning load\" is greater than " |
2016 | "\"critical load\"\n" | 1527 | "\"critical load\"\n" |
2017 | msgstr "" | 1528 | msgstr "" |
2018 | 1529 | ||
2019 | #: plugins/check_load.c:346 | ||
2020 | #, c-format | 1530 | #, c-format |
2021 | msgid "This plugin tests the current system load average." | 1531 | msgid "This plugin tests the current system load average." |
2022 | msgstr "" | 1532 | msgstr "" |
2023 | 1533 | ||
2024 | #: plugins/check_load.c:356 | ||
2025 | msgid "Exit with WARNING status if load average exceeds WLOADn" | 1534 | msgid "Exit with WARNING status if load average exceeds WLOADn" |
2026 | msgstr "" | 1535 | msgstr "" |
2027 | 1536 | ||
2028 | #: plugins/check_load.c:358 | ||
2029 | msgid "Exit with CRITICAL status if load average exceed CLOADn" | 1537 | msgid "Exit with CRITICAL status if load average exceed CLOADn" |
2030 | msgstr "" | 1538 | msgstr "" |
2031 | 1539 | ||
2032 | #: plugins/check_load.c:359 | ||
2033 | msgid "the load average format is the same used by \"uptime\" and \"w\"" | 1540 | msgid "the load average format is the same used by \"uptime\" and \"w\"" |
2034 | msgstr "" | 1541 | msgstr "" |
2035 | 1542 | ||
2036 | #: plugins/check_load.c:361 | ||
2037 | msgid "Divide the load averages by the number of CPUs (when possible)" | 1543 | msgid "Divide the load averages by the number of CPUs (when possible)" |
2038 | msgstr "" | 1544 | msgstr "" |
2039 | 1545 | ||
2040 | #: plugins/check_load.c:363 | ||
2041 | msgid "Number of processes to show when printing the top consuming processes." | 1546 | msgid "Number of processes to show when printing the top consuming processes." |
2042 | msgstr "" | 1547 | msgstr "" |
2043 | 1548 | ||
2044 | #: plugins/check_load.c:364 | ||
2045 | msgid "NUMBER_OF_PROCS=0 disables this feature. Default value is 0" | 1549 | msgid "NUMBER_OF_PROCS=0 disables this feature. Default value is 0" |
2046 | msgstr "" | 1550 | msgstr "" |
2047 | 1551 | ||
2048 | #: plugins/check_load.c:401 | ||
2049 | #, c-format | 1552 | #, c-format |
2050 | msgid "'%s' exited with non-zero status.\n" | 1553 | msgid "'%s' exited with non-zero status.\n" |
2051 | msgstr "" | 1554 | msgstr "" |
2052 | 1555 | ||
2053 | #: plugins/check_load.c:405 | ||
2054 | #, c-format | 1556 | #, c-format |
2055 | msgid "some error occurred getting procs list.\n" | 1557 | msgid "some error occurred getting procs list.\n" |
2056 | msgstr "" | 1558 | msgstr "" |
2057 | 1559 | ||
2058 | #: plugins/check_mrtg.c:75 | ||
2059 | msgid "Could not parse arguments\n" | 1560 | msgid "Could not parse arguments\n" |
2060 | msgstr "" | 1561 | msgstr "" |
2061 | 1562 | ||
2062 | #: plugins/check_mrtg.c:80 | ||
2063 | #, c-format | 1563 | #, c-format |
2064 | msgid "Unable to open MRTG log file\n" | 1564 | msgid "Unable to open MRTG log file\n" |
2065 | msgstr "" | 1565 | msgstr "" |
2066 | 1566 | ||
2067 | #: plugins/check_mrtg.c:127 | ||
2068 | #, c-format | 1567 | #, c-format |
2069 | msgid "Unable to process MRTG log file\n" | 1568 | msgid "Unable to process MRTG log file\n" |
2070 | msgstr "" | 1569 | msgstr "" |
2071 | 1570 | ||
2072 | #: plugins/check_mrtg.c:135 plugins/check_mrtgtraf.c:136 | ||
2073 | #, c-format | 1571 | #, c-format |
2074 | msgid "MRTG data has expired (%d minutes old)\n" | 1572 | msgid "MRTG data has expired (%d minutes old)\n" |
2075 | msgstr "" | 1573 | msgstr "" |
2076 | 1574 | ||
2077 | #: plugins/check_mrtg.c:152 plugins/check_mrtgtraf.c:195 | ||
2078 | #: plugins/check_mrtgtraf.c:196 | ||
2079 | msgid "Avg" | 1575 | msgid "Avg" |
2080 | msgstr "" | 1576 | msgstr "" |
2081 | 1577 | ||
2082 | #: plugins/check_mrtg.c:152 plugins/check_mrtgtraf.c:195 | ||
2083 | #: plugins/check_mrtgtraf.c:196 | ||
2084 | msgid "Max" | 1578 | msgid "Max" |
2085 | msgstr "" | 1579 | msgstr "" |
2086 | 1580 | ||
2087 | #: plugins/check_mrtg.c:221 | ||
2088 | msgid "Invalid variable number" | 1581 | msgid "Invalid variable number" |
2089 | msgstr "" | 1582 | msgstr "" |
2090 | 1583 | ||
2091 | #: plugins/check_mrtg.c:256 | ||
2092 | #, c-format | 1584 | #, c-format |
2093 | msgid "" | 1585 | msgid "" |
2094 | "%s is not a valid expiration time\n" | 1586 | "%s is not a valid expiration time\n" |
2095 | "Use '%s -h' for additional help\n" | 1587 | "Use '%s -h' for additional help\n" |
2096 | msgstr "" | 1588 | msgstr "" |
2097 | 1589 | ||
2098 | #: plugins/check_mrtg.c:273 | ||
2099 | msgid "Invalid variable number\n" | 1590 | msgid "Invalid variable number\n" |
2100 | msgstr "" | 1591 | msgstr "" |
2101 | 1592 | ||
2102 | #: plugins/check_mrtg.c:300 | ||
2103 | msgid "You must supply the variable number" | 1593 | msgid "You must supply the variable number" |
2104 | msgstr "" | 1594 | msgstr "" |
2105 | 1595 | ||
2106 | #: plugins/check_mrtg.c:321 | ||
2107 | msgid "" | 1596 | msgid "" |
2108 | "This plugin will check either the average or maximum value of one of the" | 1597 | "This plugin will check either the average or maximum value of one of the" |
2109 | msgstr "" | 1598 | msgstr "" |
2110 | 1599 | ||
2111 | #: plugins/check_mrtg.c:322 | ||
2112 | #, fuzzy | 1600 | #, fuzzy |
2113 | msgid "two variables recorded in an MRTG log file." | 1601 | msgid "two variables recorded in an MRTG log file." |
2114 | msgstr "Konnte MRTG Logfile nicht öffnen" | 1602 | msgstr "Konnte MRTG Logfile nicht öffnen" |
2115 | 1603 | ||
2116 | #: plugins/check_mrtg.c:332 | ||
2117 | msgid "The MRTG log file containing the data you want to monitor" | 1604 | msgid "The MRTG log file containing the data you want to monitor" |
2118 | msgstr "" | 1605 | msgstr "" |
2119 | 1606 | ||
2120 | #: plugins/check_mrtg.c:334 | ||
2121 | msgid "Minutes before MRTG data is considered to be too old" | 1607 | msgid "Minutes before MRTG data is considered to be too old" |
2122 | msgstr "" | 1608 | msgstr "" |
2123 | 1609 | ||
2124 | #: plugins/check_mrtg.c:336 | ||
2125 | msgid "Should we check average or maximum values?" | 1610 | msgid "Should we check average or maximum values?" |
2126 | msgstr "" | 1611 | msgstr "" |
2127 | 1612 | ||
2128 | #: plugins/check_mrtg.c:338 | ||
2129 | msgid "Which variable set should we inspect? (1 or 2)" | 1613 | msgid "Which variable set should we inspect? (1 or 2)" |
2130 | msgstr "" | 1614 | msgstr "" |
2131 | 1615 | ||
2132 | #: plugins/check_mrtg.c:340 | ||
2133 | msgid "Threshold value for data to result in WARNING status" | 1616 | msgid "Threshold value for data to result in WARNING status" |
2134 | msgstr "" | 1617 | msgstr "" |
2135 | 1618 | ||
2136 | #: plugins/check_mrtg.c:342 | ||
2137 | msgid "Threshold value for data to result in CRITICAL status" | 1619 | msgid "Threshold value for data to result in CRITICAL status" |
2138 | msgstr "" | 1620 | msgstr "" |
2139 | 1621 | ||
2140 | #: plugins/check_mrtg.c:344 | ||
2141 | msgid "Type label for data (Examples: Conns, \"Processor Load\", In, Out)" | 1622 | msgid "Type label for data (Examples: Conns, \"Processor Load\", In, Out)" |
2142 | msgstr "" | 1623 | msgstr "" |
2143 | 1624 | ||
2144 | #: plugins/check_mrtg.c:346 | ||
2145 | msgid "Option units label for data (Example: Packets/Sec, Errors/Sec," | 1625 | msgid "Option units label for data (Example: Packets/Sec, Errors/Sec," |
2146 | msgstr "" | 1626 | msgstr "" |
2147 | 1627 | ||
2148 | #: plugins/check_mrtg.c:347 | ||
2149 | #, c-format | 1628 | #, c-format |
2150 | msgid "\"Bytes Per Second\", \"%% Utilization\")" | 1629 | msgid "\"Bytes Per Second\", \"%% Utilization\")" |
2151 | msgstr "" | 1630 | msgstr "" |
2152 | 1631 | ||
2153 | #: plugins/check_mrtg.c:350 | ||
2154 | msgid "" | 1632 | msgid "" |
2155 | "If the value exceeds the <vwl> threshold, a WARNING status is returned. If" | 1633 | "If the value exceeds the <vwl> threshold, a WARNING status is returned. If" |
2156 | msgstr "" | 1634 | msgstr "" |
2157 | 1635 | ||
2158 | #: plugins/check_mrtg.c:351 | ||
2159 | msgid "" | 1636 | msgid "" |
2160 | "the value exceeds the <vcl> threshold, a CRITICAL status is returned. If" | 1637 | "the value exceeds the <vcl> threshold, a CRITICAL status is returned. If" |
2161 | msgstr "" | 1638 | msgstr "" |
2162 | 1639 | ||
2163 | #: plugins/check_mrtg.c:352 | ||
2164 | msgid "the data in the log file is older than <expire_minutes> old, a WARNING" | 1640 | msgid "the data in the log file is older than <expire_minutes> old, a WARNING" |
2165 | msgstr "" | 1641 | msgstr "" |
2166 | 1642 | ||
2167 | #: plugins/check_mrtg.c:353 | ||
2168 | msgid "status is returned and a warning message is printed." | 1643 | msgid "status is returned and a warning message is printed." |
2169 | msgstr "" | 1644 | msgstr "" |
2170 | 1645 | ||
2171 | #: plugins/check_mrtg.c:356 | ||
2172 | msgid "" | 1646 | msgid "" |
2173 | "This plugin is useful for monitoring MRTG data that does not correspond to" | 1647 | "This plugin is useful for monitoring MRTG data that does not correspond to" |
2174 | msgstr "" | 1648 | msgstr "" |
2175 | 1649 | ||
2176 | #: plugins/check_mrtg.c:357 | ||
2177 | msgid "" | 1650 | msgid "" |
2178 | "bandwidth usage. (Use the check_mrtgtraf plugin for monitoring bandwidth)." | 1651 | "bandwidth usage. (Use the check_mrtgtraf plugin for monitoring bandwidth)." |
2179 | msgstr "" | 1652 | msgstr "" |
2180 | 1653 | ||
2181 | #: plugins/check_mrtg.c:358 | ||
2182 | msgid "" | 1654 | msgid "" |
2183 | "It can be used to monitor any kind of data that MRTG is monitoring - errors," | 1655 | "It can be used to monitor any kind of data that MRTG is monitoring - errors," |
2184 | msgstr "" | 1656 | msgstr "" |
2185 | 1657 | ||
2186 | #: plugins/check_mrtg.c:359 | ||
2187 | msgid "" | 1658 | msgid "" |
2188 | "packets/sec, etc. I use MRTG in conjunction with the Novell NLM that allows" | 1659 | "packets/sec, etc. I use MRTG in conjunction with the Novell NLM that allows" |
2189 | msgstr "" | 1660 | msgstr "" |
2190 | 1661 | ||
2191 | #: plugins/check_mrtg.c:360 | ||
2192 | msgid "" | 1662 | msgid "" |
2193 | "me to track processor utilization, user connections, drive space, etc and" | 1663 | "me to track processor utilization, user connections, drive space, etc and" |
2194 | msgstr "" | 1664 | msgstr "" |
2195 | 1665 | ||
2196 | #: plugins/check_mrtg.c:361 | ||
2197 | msgid "this plugin works well for monitoring that kind of data as well." | 1666 | msgid "this plugin works well for monitoring that kind of data as well." |
2198 | msgstr "" | 1667 | msgstr "" |
2199 | 1668 | ||
2200 | #: plugins/check_mrtg.c:364 | ||
2201 | msgid "" | 1669 | msgid "" |
2202 | "- This plugin only monitors one of the two variables stored in the MRTG log" | 1670 | "- This plugin only monitors one of the two variables stored in the MRTG log" |
2203 | msgstr "" | 1671 | msgstr "" |
2204 | 1672 | ||
2205 | #: plugins/check_mrtg.c:365 | ||
2206 | msgid "file. If you want to monitor both values you will have to define two" | 1673 | msgid "file. If you want to monitor both values you will have to define two" |
2207 | msgstr "" | 1674 | msgstr "" |
2208 | 1675 | ||
2209 | #: plugins/check_mrtg.c:366 | ||
2210 | msgid "commands with different values for the <variable> argument. Of course," | 1676 | msgid "commands with different values for the <variable> argument. Of course," |
2211 | msgstr "" | 1677 | msgstr "" |
2212 | 1678 | ||
2213 | #: plugins/check_mrtg.c:367 | ||
2214 | msgid "you can always hack the code to make this plugin work for you..." | 1679 | msgid "you can always hack the code to make this plugin work for you..." |
2215 | msgstr "" | 1680 | msgstr "" |
2216 | 1681 | ||
2217 | #: plugins/check_mrtg.c:368 | ||
2218 | msgid "" | 1682 | msgid "" |
2219 | "- MRTG stands for the Multi Router Traffic Grapher. It can be downloaded " | 1683 | "- MRTG stands for the Multi Router Traffic Grapher. It can be downloaded " |
2220 | "from" | 1684 | "from" |
2221 | msgstr "" | 1685 | msgstr "" |
2222 | 1686 | ||
2223 | #: plugins/check_mrtgtraf.c:88 | ||
2224 | msgid "Unable to open MRTG log file" | 1687 | msgid "Unable to open MRTG log file" |
2225 | msgstr "Konnte MRTG Logfile nicht öffnen" | 1688 | msgstr "Konnte MRTG Logfile nicht öffnen" |
2226 | 1689 | ||
2227 | #: plugins/check_mrtgtraf.c:130 | ||
2228 | msgid "Unable to process MRTG log file" | 1690 | msgid "Unable to process MRTG log file" |
2229 | msgstr "" | 1691 | msgstr "" |
2230 | 1692 | ||
2231 | #: plugins/check_mrtgtraf.c:194 | ||
2232 | #, c-format | 1693 | #, c-format |
2233 | msgid "%s. In = %0.1f %s/s, %s. Out = %0.1f %s/s|%s %s\n" | 1694 | msgid "%s. In = %0.1f %s/s, %s. Out = %0.1f %s/s|%s %s\n" |
2234 | msgstr "" | 1695 | msgstr "" |
2235 | 1696 | ||
2236 | #: plugins/check_mrtgtraf.c:207 | ||
2237 | #, c-format | 1697 | #, c-format |
2238 | msgid "Traffic %s - %s\n" | 1698 | msgid "Traffic %s - %s\n" |
2239 | msgstr "" | 1699 | msgstr "" |
2240 | 1700 | ||
2241 | #: plugins/check_mrtgtraf.c:335 | ||
2242 | msgid "" | 1701 | msgid "" |
2243 | "This plugin will check the incoming/outgoing transfer rates of a router," | 1702 | "This plugin will check the incoming/outgoing transfer rates of a router," |
2244 | msgstr "" | 1703 | msgstr "" |
2245 | 1704 | ||
2246 | #: plugins/check_mrtgtraf.c:336 | ||
2247 | msgid "switch, etc recorded in an MRTG log. If the newest log entry is older" | 1705 | msgid "switch, etc recorded in an MRTG log. If the newest log entry is older" |
2248 | msgstr "" | 1706 | msgstr "" |
2249 | 1707 | ||
2250 | #: plugins/check_mrtgtraf.c:337 | ||
2251 | msgid "than <expire_minutes>, a WARNING status is returned. If either the" | 1708 | msgid "than <expire_minutes>, a WARNING status is returned. If either the" |
2252 | msgstr "" | 1709 | msgstr "" |
2253 | 1710 | ||
2254 | #: plugins/check_mrtgtraf.c:338 | ||
2255 | msgid "incoming or outgoing rates exceed the <icl> or <ocl> thresholds (in" | 1711 | msgid "incoming or outgoing rates exceed the <icl> or <ocl> thresholds (in" |
2256 | msgstr "" | 1712 | msgstr "" |
2257 | 1713 | ||
2258 | #: plugins/check_mrtgtraf.c:339 | ||
2259 | msgid "Bytes/sec), a CRITICAL status results. If either of the rates exceed" | 1714 | msgid "Bytes/sec), a CRITICAL status results. If either of the rates exceed" |
2260 | msgstr "" | 1715 | msgstr "" |
2261 | 1716 | ||
2262 | #: plugins/check_mrtgtraf.c:340 | ||
2263 | msgid "the <iwl> or <owl> thresholds (in Bytes/sec), a WARNING status results." | 1717 | msgid "the <iwl> or <owl> thresholds (in Bytes/sec), a WARNING status results." |
2264 | msgstr "" | 1718 | msgstr "" |
2265 | 1719 | ||
2266 | #: plugins/check_mrtgtraf.c:350 | ||
2267 | msgid "File to read log from" | 1720 | msgid "File to read log from" |
2268 | msgstr "" | 1721 | msgstr "" |
2269 | 1722 | ||
2270 | #: plugins/check_mrtgtraf.c:352 | ||
2271 | msgid "Minutes after which log expires" | 1723 | msgid "Minutes after which log expires" |
2272 | msgstr "" | 1724 | msgstr "" |
2273 | 1725 | ||
2274 | #: plugins/check_mrtgtraf.c:354 | ||
2275 | msgid "Test average or maximum" | 1726 | msgid "Test average or maximum" |
2276 | msgstr "" | 1727 | msgstr "" |
2277 | 1728 | ||
2278 | #: plugins/check_mrtgtraf.c:356 | ||
2279 | #, fuzzy | 1729 | #, fuzzy |
2280 | msgid "Warning threshold pair <incoming>,<outgoing>" | 1730 | msgid "Warning threshold pair <incoming>,<outgoing>" |
2281 | msgstr "Warning threshold Integer sein" | 1731 | msgstr "Warning threshold Integer sein" |
2282 | 1732 | ||
2283 | #: plugins/check_mrtgtraf.c:358 | ||
2284 | #, fuzzy | 1733 | #, fuzzy |
2285 | msgid "Critical threshold pair <incoming>,<outgoing>" | 1734 | msgid "Critical threshold pair <incoming>,<outgoing>" |
2286 | msgstr "Critical threshold muss ein Integer sein" | 1735 | msgstr "Critical threshold muss ein Integer sein" |
2287 | 1736 | ||
2288 | #: plugins/check_mrtgtraf.c:362 | ||
2289 | msgid "" | 1737 | msgid "" |
2290 | "- MRTG stands for Multi Router Traffic Grapher. It can be downloaded from" | 1738 | "- MRTG stands for Multi Router Traffic Grapher. It can be downloaded from" |
2291 | msgstr "" | 1739 | msgstr "" |
2292 | 1740 | ||
2293 | #: plugins/check_mrtgtraf.c:364 | ||
2294 | msgid "- While MRTG can monitor things other than traffic rates, this" | 1741 | msgid "- While MRTG can monitor things other than traffic rates, this" |
2295 | msgstr "" | 1742 | msgstr "" |
2296 | 1743 | ||
2297 | #: plugins/check_mrtgtraf.c:365 | ||
2298 | msgid " plugin probably won't work with much else without modification." | 1744 | msgid " plugin probably won't work with much else without modification." |
2299 | msgstr "" | 1745 | msgstr "" |
2300 | 1746 | ||
2301 | #: plugins/check_mrtgtraf.c:366 | ||
2302 | msgid "- The calculated i/o rates are a little off from what MRTG actually" | 1747 | msgid "- The calculated i/o rates are a little off from what MRTG actually" |
2303 | msgstr "" | 1748 | msgstr "" |
2304 | 1749 | ||
2305 | #: plugins/check_mrtgtraf.c:367 | ||
2306 | msgid " reports. I'm not sure why this is right now, but will look into it" | 1750 | msgid " reports. I'm not sure why this is right now, but will look into it" |
2307 | msgstr "" | 1751 | msgstr "" |
2308 | 1752 | ||
2309 | #: plugins/check_mrtgtraf.c:368 | ||
2310 | msgid " for future enhancements of this plugin." | 1753 | msgid " for future enhancements of this plugin." |
2311 | msgstr "" | 1754 | msgstr "" |
2312 | 1755 | ||
2313 | #: plugins/check_mrtgtraf.c:378 | ||
2314 | #, c-format | 1756 | #, c-format |
2315 | msgid "Usage" | 1757 | msgid "Usage" |
2316 | msgstr "" | 1758 | msgstr "" |
2317 | 1759 | ||
2318 | #: plugins/check_mysql.c:185 | ||
2319 | #, c-format | 1760 | #, c-format |
2320 | msgid "status store_result error: %s\n" | 1761 | msgid "status store_result error: %s\n" |
2321 | msgstr "" | 1762 | msgstr "" |
2322 | 1763 | ||
2323 | #: plugins/check_mysql.c:216 | ||
2324 | #, c-format | 1764 | #, c-format |
2325 | msgid "slave query error: %s\n" | 1765 | msgid "slave query error: %s\n" |
2326 | msgstr "" | 1766 | msgstr "" |
2327 | 1767 | ||
2328 | #: plugins/check_mysql.c:223 | ||
2329 | #, c-format | 1768 | #, c-format |
2330 | msgid "slave store_result error: %s\n" | 1769 | msgid "slave store_result error: %s\n" |
2331 | msgstr "" | 1770 | msgstr "" |
2332 | 1771 | ||
2333 | #: plugins/check_mysql.c:229 | ||
2334 | msgid "No slaves defined" | 1772 | msgid "No slaves defined" |
2335 | msgstr "" | 1773 | msgstr "" |
2336 | 1774 | ||
2337 | #: plugins/check_mysql.c:237 | ||
2338 | #, c-format | 1775 | #, c-format |
2339 | msgid "slave fetch row error: %s\n" | 1776 | msgid "slave fetch row error: %s\n" |
2340 | msgstr "" | 1777 | msgstr "" |
2341 | 1778 | ||
2342 | #: plugins/check_mysql.c:242 | ||
2343 | #, c-format | 1779 | #, c-format |
2344 | msgid "Slave running: %s" | 1780 | msgid "Slave running: %s" |
2345 | msgstr "" | 1781 | msgstr "" |
2346 | 1782 | ||
2347 | #: plugins/check_mysql.c:520 | ||
2348 | msgid "This program tests connections to a MySQL server" | 1783 | msgid "This program tests connections to a MySQL server" |
2349 | msgstr "" | 1784 | msgstr "" |
2350 | 1785 | ||
2351 | #: plugins/check_mysql.c:531 | ||
2352 | msgid "Ignore authentication failure and check for mysql connectivity only" | 1786 | msgid "Ignore authentication failure and check for mysql connectivity only" |
2353 | msgstr "" | 1787 | msgstr "" |
2354 | 1788 | ||
2355 | #: plugins/check_mysql.c:534 | ||
2356 | msgid "Use the specified socket (has no effect if -H is used)" | 1789 | msgid "Use the specified socket (has no effect if -H is used)" |
2357 | msgstr "" | 1790 | msgstr "" |
2358 | 1791 | ||
2359 | #: plugins/check_mysql.c:537 | ||
2360 | msgid "Check database with indicated name" | 1792 | msgid "Check database with indicated name" |
2361 | msgstr "" | 1793 | msgstr "" |
2362 | 1794 | ||
2363 | #: plugins/check_mysql.c:539 | ||
2364 | msgid "Read from the specified client options file" | 1795 | msgid "Read from the specified client options file" |
2365 | msgstr "" | 1796 | msgstr "" |
2366 | 1797 | ||
2367 | #: plugins/check_mysql.c:541 | ||
2368 | msgid "Use a client options group" | 1798 | msgid "Use a client options group" |
2369 | msgstr "" | 1799 | msgstr "" |
2370 | 1800 | ||
2371 | #: plugins/check_mysql.c:543 | ||
2372 | msgid "Connect using the indicated username" | 1801 | msgid "Connect using the indicated username" |
2373 | msgstr "" | 1802 | msgstr "" |
2374 | 1803 | ||
2375 | #: plugins/check_mysql.c:545 | ||
2376 | msgid "Use the indicated password to authenticate the connection" | 1804 | msgid "Use the indicated password to authenticate the connection" |
2377 | msgstr "" | 1805 | msgstr "" |
2378 | 1806 | ||
2379 | #: plugins/check_mysql.c:546 | ||
2380 | msgid "IMPORTANT: THIS FORM OF AUTHENTICATION IS NOT SECURE!!!" | 1807 | msgid "IMPORTANT: THIS FORM OF AUTHENTICATION IS NOT SECURE!!!" |
2381 | msgstr "" | 1808 | msgstr "" |
2382 | 1809 | ||
2383 | #: plugins/check_mysql.c:547 | ||
2384 | msgid "Your clear-text password could be visible as a process table entry" | 1810 | msgid "Your clear-text password could be visible as a process table entry" |
2385 | msgstr "" | 1811 | msgstr "" |
2386 | 1812 | ||
2387 | #: plugins/check_mysql.c:549 | ||
2388 | msgid "Check if the slave thread is running properly." | 1813 | msgid "Check if the slave thread is running properly." |
2389 | msgstr "" | 1814 | msgstr "" |
2390 | 1815 | ||
2391 | #: plugins/check_mysql.c:551 | ||
2392 | msgid "Exit with WARNING status if slave server is more than INTEGER seconds" | 1816 | msgid "Exit with WARNING status if slave server is more than INTEGER seconds" |
2393 | msgstr "" | 1817 | msgstr "" |
2394 | 1818 | ||
2395 | #: plugins/check_mysql.c:552 plugins/check_mysql.c:555 | ||
2396 | msgid "behind master" | 1819 | msgid "behind master" |
2397 | msgstr "" | 1820 | msgstr "" |
2398 | 1821 | ||
2399 | #: plugins/check_mysql.c:554 | ||
2400 | msgid "Exit with CRITICAL status if slave server is more then INTEGER seconds" | 1822 | msgid "Exit with CRITICAL status if slave server is more then INTEGER seconds" |
2401 | msgstr "" | 1823 | msgstr "" |
2402 | 1824 | ||
2403 | #: plugins/check_mysql.c:557 | ||
2404 | msgid "Use ssl encryption" | 1825 | msgid "Use ssl encryption" |
2405 | msgstr "" | 1826 | msgstr "" |
2406 | 1827 | ||
2407 | #: plugins/check_mysql.c:559 | ||
2408 | msgid "Path to CA signing the cert" | 1828 | msgid "Path to CA signing the cert" |
2409 | msgstr "" | 1829 | msgstr "" |
2410 | 1830 | ||
2411 | #: plugins/check_mysql.c:561 | ||
2412 | msgid "Path to SSL certificate" | 1831 | msgid "Path to SSL certificate" |
2413 | msgstr "" | 1832 | msgstr "" |
2414 | 1833 | ||
2415 | #: plugins/check_mysql.c:563 | ||
2416 | msgid "Path to private SSL key" | 1834 | msgid "Path to private SSL key" |
2417 | msgstr "" | 1835 | msgstr "" |
2418 | 1836 | ||
2419 | #: plugins/check_mysql.c:565 | ||
2420 | msgid "Path to CA directory" | 1837 | msgid "Path to CA directory" |
2421 | msgstr "" | 1838 | msgstr "" |
2422 | 1839 | ||
2423 | #: plugins/check_mysql.c:567 | ||
2424 | msgid "List of valid SSL ciphers" | 1840 | msgid "List of valid SSL ciphers" |
2425 | msgstr "" | 1841 | msgstr "" |
2426 | 1842 | ||
2427 | #: plugins/check_mysql.c:571 | ||
2428 | msgid "" | 1843 | msgid "" |
2429 | "There are no required arguments. By default, the local database is checked" | 1844 | "There are no required arguments. By default, the local database is checked" |
2430 | msgstr "" | 1845 | msgstr "" |
2431 | 1846 | ||
2432 | #: plugins/check_mysql.c:572 | ||
2433 | msgid "" | 1847 | msgid "" |
2434 | "using the default unix socket. You can force TCP on localhost by using an" | 1848 | "using the default unix socket. You can force TCP on localhost by using an" |
2435 | msgstr "" | 1849 | msgstr "" |
2436 | 1850 | ||
2437 | #: plugins/check_mysql.c:573 | ||
2438 | msgid "IP address or FQDN ('localhost' will use the socket as well)." | 1851 | msgid "IP address or FQDN ('localhost' will use the socket as well)." |
2439 | msgstr "" | 1852 | msgstr "" |
2440 | 1853 | ||
2441 | #: plugins/check_mysql.c:577 | ||
2442 | msgid "You must specify -p with an empty string to force an empty password," | 1854 | msgid "You must specify -p with an empty string to force an empty password," |
2443 | msgstr "" | 1855 | msgstr "" |
2444 | 1856 | ||
2445 | #: plugins/check_mysql.c:578 | ||
2446 | msgid "overriding any my.cnf settings." | 1857 | msgid "overriding any my.cnf settings." |
2447 | msgstr "" | 1858 | msgstr "" |
2448 | 1859 | ||
2449 | #: plugins/check_nagios.c:104 | ||
2450 | msgid "Cannot open status log for reading!" | 1860 | msgid "Cannot open status log for reading!" |
2451 | msgstr "" | 1861 | msgstr "" |
2452 | 1862 | ||
2453 | #: plugins/check_nagios.c:154 | ||
2454 | #, c-format | 1863 | #, c-format |
2455 | msgid "Found process: %s %s\n" | 1864 | msgid "Found process: %s %s\n" |
2456 | msgstr "" | 1865 | msgstr "" |
2457 | 1866 | ||
2458 | #: plugins/check_nagios.c:168 | ||
2459 | msgid "Could not locate a running Nagios process!" | 1867 | msgid "Could not locate a running Nagios process!" |
2460 | msgstr "" | 1868 | msgstr "" |
2461 | 1869 | ||
2462 | #: plugins/check_nagios.c:172 | ||
2463 | msgid "Cannot parse Nagios log file for valid time" | 1870 | msgid "Cannot parse Nagios log file for valid time" |
2464 | msgstr "" | 1871 | msgstr "" |
2465 | 1872 | ||
2466 | #: plugins/check_nagios.c:183 plugins/check_procs.c:379 | ||
2467 | #, c-format | 1873 | #, c-format |
2468 | msgid "%d process" | 1874 | msgid "%d process" |
2469 | msgid_plural "%d processes" | 1875 | msgid_plural "%d processes" |
2470 | msgstr[0] "" | 1876 | msgstr[0] "" |
2471 | msgstr[1] "" | 1877 | msgstr[1] "" |
2472 | 1878 | ||
2473 | #: plugins/check_nagios.c:186 | ||
2474 | #, c-format | 1879 | #, c-format |
2475 | msgid "status log updated %d second ago" | 1880 | msgid "status log updated %d second ago" |
2476 | msgid_plural "status log updated %d seconds ago" | 1881 | msgid_plural "status log updated %d seconds ago" |
2477 | msgstr[0] "" | 1882 | msgstr[0] "" |
2478 | msgstr[1] "" | 1883 | msgstr[1] "" |
2479 | 1884 | ||
2480 | #: plugins/check_nagios.c:224 plugins/check_nagios.c:253 | ||
2481 | #, fuzzy | 1885 | #, fuzzy |
2482 | msgid "Expiration time must be an integer (seconds)\n" | 1886 | msgid "Expiration time must be an integer (seconds)\n" |
2483 | msgstr "skip lines muss ein Integer sein" | 1887 | msgstr "skip lines muss ein Integer sein" |
2484 | 1888 | ||
2485 | #: plugins/check_nagios.c:260 | ||
2486 | #, fuzzy | 1889 | #, fuzzy |
2487 | msgid "Timeout must be an integer (seconds)\n" | 1890 | msgid "Timeout must be an integer (seconds)\n" |
2488 | msgstr "skip lines muss ein Integer sein" | 1891 | msgstr "skip lines muss ein Integer sein" |
2489 | 1892 | ||
2490 | #: plugins/check_nagios.c:272 | ||
2491 | #, fuzzy | 1893 | #, fuzzy |
2492 | msgid "You must provide the status_log\n" | 1894 | msgid "You must provide the status_log\n" |
2493 | msgstr "%s: Hostname muss angegeben werden\n" | 1895 | msgstr "%s: Hostname muss angegeben werden\n" |
2494 | 1896 | ||
2495 | #: plugins/check_nagios.c:275 | ||
2496 | #, fuzzy | 1897 | #, fuzzy |
2497 | msgid "You must provide a process string\n" | 1898 | msgid "You must provide a process string\n" |
2498 | msgstr "%s: Hostname muss angegeben werden\n" | 1899 | msgstr "%s: Hostname muss angegeben werden\n" |
2499 | 1900 | ||
2500 | #: plugins/check_nagios.c:289 | ||
2501 | #, fuzzy | 1901 | #, fuzzy |
2502 | msgid "" | 1902 | msgid "" |
2503 | "This plugin checks the status of the Nagios process on the local machine" | 1903 | "This plugin checks the status of the Nagios process on the local machine" |
@@ -2507,576 +1907,435 @@ msgstr "" | |||
2507 | "unterschritten wird.\n" | 1907 | "unterschritten wird.\n" |
2508 | "\n" | 1908 | "\n" |
2509 | 1909 | ||
2510 | #: plugins/check_nagios.c:290 | ||
2511 | msgid "" | 1910 | msgid "" |
2512 | "The plugin will check to make sure the Nagios status log is no older than" | 1911 | "The plugin will check to make sure the Nagios status log is no older than" |
2513 | msgstr "" | 1912 | msgstr "" |
2514 | 1913 | ||
2515 | #: plugins/check_nagios.c:291 | ||
2516 | msgid "the number of minutes specified by the expires option." | 1914 | msgid "the number of minutes specified by the expires option." |
2517 | msgstr "" | 1915 | msgstr "" |
2518 | 1916 | ||
2519 | #: plugins/check_nagios.c:292 | ||
2520 | msgid "" | 1917 | msgid "" |
2521 | "It also checks the process table for a process matching the command argument." | 1918 | "It also checks the process table for a process matching the command argument." |
2522 | msgstr "" | 1919 | msgstr "" |
2523 | 1920 | ||
2524 | #: plugins/check_nagios.c:302 | ||
2525 | msgid "Name of the log file to check" | 1921 | msgid "Name of the log file to check" |
2526 | msgstr "" | 1922 | msgstr "" |
2527 | 1923 | ||
2528 | #: plugins/check_nagios.c:304 | ||
2529 | msgid "Minutes aging after which logfile is considered stale" | 1924 | msgid "Minutes aging after which logfile is considered stale" |
2530 | msgstr "" | 1925 | msgstr "" |
2531 | 1926 | ||
2532 | #: plugins/check_nagios.c:306 | ||
2533 | msgid "Substring to search for in process arguments" | 1927 | msgid "Substring to search for in process arguments" |
2534 | msgstr "" | 1928 | msgstr "" |
2535 | 1929 | ||
2536 | #: plugins/check_nagios.c:308 | ||
2537 | msgid "Timeout for the plugin in seconds" | 1930 | msgid "Timeout for the plugin in seconds" |
2538 | msgstr "" | 1931 | msgstr "" |
2539 | 1932 | ||
2540 | #: plugins/check_nt.c:142 | ||
2541 | #, c-format | 1933 | #, c-format |
2542 | msgid "Wrong client version - running: %s, required: %s" | 1934 | msgid "Wrong client version - running: %s, required: %s" |
2543 | msgstr "" | 1935 | msgstr "" |
2544 | 1936 | ||
2545 | #: plugins/check_nt.c:153 plugins/check_nt.c:239 | ||
2546 | msgid "missing -l parameters" | 1937 | msgid "missing -l parameters" |
2547 | msgstr "" | 1938 | msgstr "" |
2548 | 1939 | ||
2549 | #: plugins/check_nt.c:155 | ||
2550 | msgid "wrong -l parameter." | 1940 | msgid "wrong -l parameter." |
2551 | msgstr "" | 1941 | msgstr "" |
2552 | 1942 | ||
2553 | #: plugins/check_nt.c:159 | ||
2554 | msgid "CPU Load" | 1943 | msgid "CPU Load" |
2555 | msgstr "" | 1944 | msgstr "" |
2556 | 1945 | ||
2557 | #: plugins/check_nt.c:182 | ||
2558 | #, c-format | 1946 | #, c-format |
2559 | msgid " %lu%% (%lu min average)" | 1947 | msgid " %lu%% (%lu min average)" |
2560 | msgstr "" | 1948 | msgstr "" |
2561 | 1949 | ||
2562 | #: plugins/check_nt.c:184 | ||
2563 | #, c-format | 1950 | #, c-format |
2564 | msgid " '%lu min avg Load'=%lu%%;%lu;%lu;0;100" | 1951 | msgid " '%lu min avg Load'=%lu%%;%lu;%lu;0;100" |
2565 | msgstr "" | 1952 | msgstr "" |
2566 | 1953 | ||
2567 | #: plugins/check_nt.c:194 | ||
2568 | msgid "not enough values for -l parameters" | 1954 | msgid "not enough values for -l parameters" |
2569 | msgstr "" | 1955 | msgstr "" |
2570 | 1956 | ||
2571 | #: plugins/check_nt.c:208 plugins/check_nt.c:241 | ||
2572 | msgid "wrong -l argument" | 1957 | msgid "wrong -l argument" |
2573 | msgstr "" | 1958 | msgstr "" |
2574 | 1959 | ||
2575 | #: plugins/check_nt.c:225 | ||
2576 | #, c-format | 1960 | #, c-format |
2577 | msgid "System Uptime - %u day(s) %u hour(s) %u minute(s) |uptime=%lu" | 1961 | msgid "System Uptime - %u day(s) %u hour(s) %u minute(s) |uptime=%lu" |
2578 | msgstr "" | 1962 | msgstr "" |
2579 | 1963 | ||
2580 | #: plugins/check_nt.c:257 | ||
2581 | #, c-format | 1964 | #, c-format |
2582 | msgid "%s:\\ - total: %.2f Gb - used: %.2f Gb (%.0f%%) - free %.2f Gb (%.0f%%)" | 1965 | msgid "%s:\\ - total: %.2f Gb - used: %.2f Gb (%.0f%%) - free %.2f Gb (%.0f%%)" |
2583 | msgstr "" | 1966 | msgstr "" |
2584 | 1967 | ||
2585 | #: plugins/check_nt.c:260 | ||
2586 | #, c-format | 1968 | #, c-format |
2587 | msgid "'%s:\\ Used Space'=%.2fGb;%.2f;%.2f;0.00;%.2f" | 1969 | msgid "'%s:\\ Used Space'=%.2fGb;%.2f;%.2f;0.00;%.2f" |
2588 | msgstr "" | 1970 | msgstr "" |
2589 | 1971 | ||
2590 | #: plugins/check_nt.c:274 | ||
2591 | msgid "Free disk space : Invalid drive" | 1972 | msgid "Free disk space : Invalid drive" |
2592 | msgstr "" | 1973 | msgstr "" |
2593 | 1974 | ||
2594 | #: plugins/check_nt.c:284 | ||
2595 | msgid "No service/process specified" | 1975 | msgid "No service/process specified" |
2596 | msgstr "" | 1976 | msgstr "" |
2597 | 1977 | ||
2598 | #: plugins/check_nt.c:292 plugins/check_nt.c:305 plugins/check_nt.c:309 | ||
2599 | #: plugins/check_nt.c:643 | ||
2600 | msgid "could not fetch information from server\n" | 1978 | msgid "could not fetch information from server\n" |
2601 | msgstr "" | 1979 | msgstr "" |
2602 | 1980 | ||
2603 | #: plugins/check_nt.c:317 | ||
2604 | #, c-format | 1981 | #, c-format |
2605 | msgid "" | 1982 | msgid "" |
2606 | "Memory usage: total:%.2f MB - used: %.2f MB (%.0f%%) - free: %.2f MB (%.0f%%)" | 1983 | "Memory usage: total:%.2f MB - used: %.2f MB (%.0f%%) - free: %.2f MB (%.0f%%)" |
2607 | msgstr "" | 1984 | msgstr "" |
2608 | 1985 | ||
2609 | #: plugins/check_nt.c:320 | ||
2610 | #, c-format | 1986 | #, c-format |
2611 | msgid "'Memory usage'=%.2fMB;%.2f;%.2f;0.00;%.2f" | 1987 | msgid "'Memory usage'=%.2fMB;%.2f;%.2f;0.00;%.2f" |
2612 | msgstr "" | 1988 | msgstr "" |
2613 | 1989 | ||
2614 | #: plugins/check_nt.c:356 plugins/check_nt.c:441 plugins/check_nt.c:471 | ||
2615 | msgid "No counter specified" | 1990 | msgid "No counter specified" |
2616 | msgstr "" | 1991 | msgstr "" |
2617 | 1992 | ||
2618 | #: plugins/check_nt.c:388 | ||
2619 | msgid "Minimum value contains non-numbers" | 1993 | msgid "Minimum value contains non-numbers" |
2620 | msgstr "" | 1994 | msgstr "" |
2621 | 1995 | ||
2622 | #: plugins/check_nt.c:392 | ||
2623 | msgid "Maximum value contains non-numbers" | 1996 | msgid "Maximum value contains non-numbers" |
2624 | msgstr "" | 1997 | msgstr "" |
2625 | 1998 | ||
2626 | #: plugins/check_nt.c:399 | ||
2627 | msgid "No unit counter specified" | 1999 | msgid "No unit counter specified" |
2628 | msgstr "" | 2000 | msgstr "" |
2629 | 2001 | ||
2630 | #: plugins/check_nt.c:486 | ||
2631 | msgid "Please specify a variable to check" | 2002 | msgid "Please specify a variable to check" |
2632 | msgstr "" | 2003 | msgstr "" |
2633 | 2004 | ||
2634 | #: plugins/check_nt.c:570 | ||
2635 | #, fuzzy | 2005 | #, fuzzy |
2636 | msgid "Server port must be an integer\n" | 2006 | msgid "Server port must be an integer\n" |
2637 | msgstr "skip lines muss ein Integer sein" | 2007 | msgstr "skip lines muss ein Integer sein" |
2638 | 2008 | ||
2639 | #: plugins/check_nt.c:624 | ||
2640 | #, fuzzy | 2009 | #, fuzzy |
2641 | msgid "You must provide a server address or host name" | 2010 | msgid "You must provide a server address or host name" |
2642 | msgstr "Hostname oder Serveradresse muss angegeben werden" | 2011 | msgstr "Hostname oder Serveradresse muss angegeben werden" |
2643 | 2012 | ||
2644 | #: plugins/check_nt.c:630 | ||
2645 | msgid "None" | 2013 | msgid "None" |
2646 | msgstr "" | 2014 | msgstr "" |
2647 | 2015 | ||
2648 | #: plugins/check_nt.c:687 | ||
2649 | msgid "This plugin collects data from the NSClient service running on a" | 2016 | msgid "This plugin collects data from the NSClient service running on a" |
2650 | msgstr "" | 2017 | msgstr "" |
2651 | 2018 | ||
2652 | #: plugins/check_nt.c:688 | ||
2653 | msgid "Windows NT/2000/XP/2003 server." | 2019 | msgid "Windows NT/2000/XP/2003 server." |
2654 | msgstr "" | 2020 | msgstr "" |
2655 | 2021 | ||
2656 | #: plugins/check_nt.c:699 | ||
2657 | msgid "Name of the host to check" | 2022 | msgid "Name of the host to check" |
2658 | msgstr "" | 2023 | msgstr "" |
2659 | 2024 | ||
2660 | #: plugins/check_nt.c:701 | ||
2661 | #, fuzzy | 2025 | #, fuzzy |
2662 | msgid "Optional port number (default: " | 2026 | msgid "Optional port number (default: " |
2663 | msgstr "Ungültige Portnummer" | 2027 | msgstr "Ungültige Portnummer" |
2664 | 2028 | ||
2665 | #: plugins/check_nt.c:704 | ||
2666 | msgid "Password needed for the request" | 2029 | msgid "Password needed for the request" |
2667 | msgstr "" | 2030 | msgstr "" |
2668 | 2031 | ||
2669 | #: plugins/check_nt.c:706 plugins/check_nwstat.c:1661 | ||
2670 | #: plugins/check_overcr.c:432 | ||
2671 | msgid "Threshold which will result in a warning status" | 2032 | msgid "Threshold which will result in a warning status" |
2672 | msgstr "" | 2033 | msgstr "" |
2673 | 2034 | ||
2674 | #: plugins/check_nt.c:708 plugins/check_nwstat.c:1663 | ||
2675 | #: plugins/check_overcr.c:434 | ||
2676 | msgid "Threshold which will result in a critical status" | 2035 | msgid "Threshold which will result in a critical status" |
2677 | msgstr "" | 2036 | msgstr "" |
2678 | 2037 | ||
2679 | #: plugins/check_nt.c:710 | ||
2680 | msgid "Seconds before connection attempt times out (default: " | 2038 | msgid "Seconds before connection attempt times out (default: " |
2681 | msgstr "" | 2039 | msgstr "" |
2682 | 2040 | ||
2683 | #: plugins/check_nt.c:712 | ||
2684 | msgid "Parameters passed to specified check (see below)" | 2041 | msgid "Parameters passed to specified check (see below)" |
2685 | msgstr "" | 2042 | msgstr "" |
2686 | 2043 | ||
2687 | #: plugins/check_nt.c:714 | ||
2688 | msgid "Display options (currently only SHOWALL works)" | 2044 | msgid "Display options (currently only SHOWALL works)" |
2689 | msgstr "" | 2045 | msgstr "" |
2690 | 2046 | ||
2691 | #: plugins/check_nt.c:716 | ||
2692 | msgid "Return UNKNOWN on timeouts" | 2047 | msgid "Return UNKNOWN on timeouts" |
2693 | msgstr "" | 2048 | msgstr "" |
2694 | 2049 | ||
2695 | #: plugins/check_nt.c:719 | ||
2696 | msgid "Print this help screen" | 2050 | msgid "Print this help screen" |
2697 | msgstr "" | 2051 | msgstr "" |
2698 | 2052 | ||
2699 | #: plugins/check_nt.c:721 | ||
2700 | msgid "Print version information" | 2053 | msgid "Print version information" |
2701 | msgstr "" | 2054 | msgstr "" |
2702 | 2055 | ||
2703 | #: plugins/check_nt.c:723 | ||
2704 | msgid "Variable to check" | 2056 | msgid "Variable to check" |
2705 | msgstr "" | 2057 | msgstr "" |
2706 | 2058 | ||
2707 | #: plugins/check_nt.c:724 | ||
2708 | msgid "Valid variables are:" | 2059 | msgid "Valid variables are:" |
2709 | msgstr "" | 2060 | msgstr "" |
2710 | 2061 | ||
2711 | #: plugins/check_nt.c:726 | ||
2712 | msgid "Get the NSClient version" | 2062 | msgid "Get the NSClient version" |
2713 | msgstr "" | 2063 | msgstr "" |
2714 | 2064 | ||
2715 | #: plugins/check_nt.c:727 | ||
2716 | msgid "If -l <version> is specified, will return warning if versions differ." | 2065 | msgid "If -l <version> is specified, will return warning if versions differ." |
2717 | msgstr "" | 2066 | msgstr "" |
2718 | 2067 | ||
2719 | #: plugins/check_nt.c:729 | ||
2720 | msgid "Average CPU load on last x minutes." | 2068 | msgid "Average CPU load on last x minutes." |
2721 | msgstr "" | 2069 | msgstr "" |
2722 | 2070 | ||
2723 | #: plugins/check_nt.c:730 | ||
2724 | msgid "Request a -l parameter with the following syntax:" | 2071 | msgid "Request a -l parameter with the following syntax:" |
2725 | msgstr "" | 2072 | msgstr "" |
2726 | 2073 | ||
2727 | #: plugins/check_nt.c:731 | ||
2728 | msgid "-l <minutes range>,<warning threshold>,<critical threshold>." | 2074 | msgid "-l <minutes range>,<warning threshold>,<critical threshold>." |
2729 | msgstr "" | 2075 | msgstr "" |
2730 | 2076 | ||
2731 | #: plugins/check_nt.c:732 | ||
2732 | msgid "<minute range> should be less than 24*60." | 2077 | msgid "<minute range> should be less than 24*60." |
2733 | msgstr "" | 2078 | msgstr "" |
2734 | 2079 | ||
2735 | #: plugins/check_nt.c:733 | ||
2736 | msgid "" | 2080 | msgid "" |
2737 | "Thresholds are percentage and up to 10 requests can be done in one shot." | 2081 | "Thresholds are percentage and up to 10 requests can be done in one shot." |
2738 | msgstr "" | 2082 | msgstr "" |
2739 | 2083 | ||
2740 | #: plugins/check_nt.c:736 | ||
2741 | msgid "Get the uptime of the machine." | 2084 | msgid "Get the uptime of the machine." |
2742 | msgstr "" | 2085 | msgstr "" |
2743 | 2086 | ||
2744 | #: plugins/check_nt.c:737 | ||
2745 | msgid "-l <unit> " | 2087 | msgid "-l <unit> " |
2746 | msgstr "" | 2088 | msgstr "" |
2747 | 2089 | ||
2748 | #: plugins/check_nt.c:738 | ||
2749 | msgid "<unit> = seconds, minutes, hours, or days. (default: minutes)" | 2090 | msgid "<unit> = seconds, minutes, hours, or days. (default: minutes)" |
2750 | msgstr "" | 2091 | msgstr "" |
2751 | 2092 | ||
2752 | #: plugins/check_nt.c:739 | ||
2753 | #, fuzzy | 2093 | #, fuzzy |
2754 | msgid "Thresholds will use the unit specified above." | 2094 | msgid "Thresholds will use the unit specified above." |
2755 | msgstr "" | 2095 | msgstr "" |
2756 | "Testet den DNS Dienst auf dem angegebenen Host mit dig\n" | 2096 | "Testet den DNS Dienst auf dem angegebenen Host mit dig\n" |
2757 | "\n" | 2097 | "\n" |
2758 | 2098 | ||
2759 | #: plugins/check_nt.c:741 | ||
2760 | msgid "Size and percentage of disk use." | 2099 | msgid "Size and percentage of disk use." |
2761 | msgstr "" | 2100 | msgstr "" |
2762 | 2101 | ||
2763 | #: plugins/check_nt.c:742 | ||
2764 | msgid "Request a -l parameter containing the drive letter only." | 2102 | msgid "Request a -l parameter containing the drive letter only." |
2765 | msgstr "" | 2103 | msgstr "" |
2766 | 2104 | ||
2767 | #: plugins/check_nt.c:743 plugins/check_nt.c:746 | ||
2768 | msgid "Warning and critical thresholds can be specified with -w and -c." | 2105 | msgid "Warning and critical thresholds can be specified with -w and -c." |
2769 | msgstr "" | 2106 | msgstr "" |
2770 | 2107 | ||
2771 | #: plugins/check_nt.c:745 | ||
2772 | msgid "Memory use." | 2108 | msgid "Memory use." |
2773 | msgstr "" | 2109 | msgstr "" |
2774 | 2110 | ||
2775 | #: plugins/check_nt.c:748 | ||
2776 | msgid "Check the state of one or several services." | 2111 | msgid "Check the state of one or several services." |
2777 | msgstr "" | 2112 | msgstr "" |
2778 | 2113 | ||
2779 | #: plugins/check_nt.c:749 plugins/check_nt.c:758 | ||
2780 | msgid "Request a -l parameters with the following syntax:" | 2114 | msgid "Request a -l parameters with the following syntax:" |
2781 | msgstr "" | 2115 | msgstr "" |
2782 | 2116 | ||
2783 | #: plugins/check_nt.c:750 | ||
2784 | msgid "-l <service1>,<service2>,<service3>,..." | 2117 | msgid "-l <service1>,<service2>,<service3>,..." |
2785 | msgstr "" | 2118 | msgstr "" |
2786 | 2119 | ||
2787 | #: plugins/check_nt.c:751 | ||
2788 | msgid "You can specify -d SHOWALL in case you want to see working services" | 2120 | msgid "You can specify -d SHOWALL in case you want to see working services" |
2789 | msgstr "" | 2121 | msgstr "" |
2790 | 2122 | ||
2791 | #: plugins/check_nt.c:752 | ||
2792 | msgid "in the returned string." | 2123 | msgid "in the returned string." |
2793 | msgstr "" | 2124 | msgstr "" |
2794 | 2125 | ||
2795 | #: plugins/check_nt.c:754 | ||
2796 | msgid "Check if one or several process are running." | 2126 | msgid "Check if one or several process are running." |
2797 | msgstr "" | 2127 | msgstr "" |
2798 | 2128 | ||
2799 | #: plugins/check_nt.c:755 | ||
2800 | msgid "Same syntax as SERVICESTATE." | 2129 | msgid "Same syntax as SERVICESTATE." |
2801 | msgstr "" | 2130 | msgstr "" |
2802 | 2131 | ||
2803 | #: plugins/check_nt.c:757 | ||
2804 | msgid "Check any performance counter of Windows NT/2000." | 2132 | msgid "Check any performance counter of Windows NT/2000." |
2805 | msgstr "" | 2133 | msgstr "" |
2806 | 2134 | ||
2807 | #: plugins/check_nt.c:759 | ||
2808 | msgid "-l \"\\\\<performance object>\\\\counter\",\"<description>" | 2135 | msgid "-l \"\\\\<performance object>\\\\counter\",\"<description>" |
2809 | msgstr "" | 2136 | msgstr "" |
2810 | 2137 | ||
2811 | #: plugins/check_nt.c:760 | ||
2812 | msgid "The <description> parameter is optional and is given to a printf " | 2138 | msgid "The <description> parameter is optional and is given to a printf " |
2813 | msgstr "" | 2139 | msgstr "" |
2814 | 2140 | ||
2815 | #: plugins/check_nt.c:761 | ||
2816 | msgid "output command which requires a float parameter." | 2141 | msgid "output command which requires a float parameter." |
2817 | msgstr "" | 2142 | msgstr "" |
2818 | 2143 | ||
2819 | #: plugins/check_nt.c:762 | ||
2820 | #, c-format | 2144 | #, c-format |
2821 | msgid "If <description> does not include \"%%\", it is used as a label." | 2145 | msgid "If <description> does not include \"%%\", it is used as a label." |
2822 | msgstr "" | 2146 | msgstr "" |
2823 | 2147 | ||
2824 | #: plugins/check_nt.c:763 plugins/check_nt.c:778 | ||
2825 | msgid "Some examples:" | 2148 | msgid "Some examples:" |
2826 | msgstr "" | 2149 | msgstr "" |
2827 | 2150 | ||
2828 | #: plugins/check_nt.c:767 | ||
2829 | msgid "Check any performance counter object of Windows NT/2000." | 2151 | msgid "Check any performance counter object of Windows NT/2000." |
2830 | msgstr "" | 2152 | msgstr "" |
2831 | 2153 | ||
2832 | #: plugins/check_nt.c:768 | ||
2833 | msgid "" | 2154 | msgid "" |
2834 | "Syntax: check_nt -H <hostname> -p <port> -v INSTANCES -l <counter object>" | 2155 | "Syntax: check_nt -H <hostname> -p <port> -v INSTANCES -l <counter object>" |
2835 | msgstr "" | 2156 | msgstr "" |
2836 | 2157 | ||
2837 | #: plugins/check_nt.c:769 | ||
2838 | msgid "<counter object> is a Windows Perfmon Counter object (eg. Process)," | 2158 | msgid "<counter object> is a Windows Perfmon Counter object (eg. Process)," |
2839 | msgstr "" | 2159 | msgstr "" |
2840 | 2160 | ||
2841 | #: plugins/check_nt.c:770 | ||
2842 | msgid "if it is two words, it should be enclosed in quotes" | 2161 | msgid "if it is two words, it should be enclosed in quotes" |
2843 | msgstr "" | 2162 | msgstr "" |
2844 | 2163 | ||
2845 | #: plugins/check_nt.c:771 | ||
2846 | msgid "The returned results will be a comma-separated list of instances on " | 2164 | msgid "The returned results will be a comma-separated list of instances on " |
2847 | msgstr "" | 2165 | msgstr "" |
2848 | 2166 | ||
2849 | #: plugins/check_nt.c:772 | ||
2850 | msgid " the selected computer for that object." | 2167 | msgid " the selected computer for that object." |
2851 | msgstr "" | 2168 | msgstr "" |
2852 | 2169 | ||
2853 | #: plugins/check_nt.c:773 | ||
2854 | msgid "" | 2170 | msgid "" |
2855 | "The purpose of this is to be run from command line to determine what " | 2171 | "The purpose of this is to be run from command line to determine what " |
2856 | "instances" | 2172 | "instances" |
2857 | msgstr "" | 2173 | msgstr "" |
2858 | 2174 | ||
2859 | #: plugins/check_nt.c:774 | ||
2860 | msgid "" | 2175 | msgid "" |
2861 | " are available for monitoring without having to log onto the Windows server" | 2176 | " are available for monitoring without having to log onto the Windows server" |
2862 | msgstr "" | 2177 | msgstr "" |
2863 | 2178 | ||
2864 | #: plugins/check_nt.c:775 | ||
2865 | msgid " to run Perfmon directly." | 2179 | msgid " to run Perfmon directly." |
2866 | msgstr "" | 2180 | msgstr "" |
2867 | 2181 | ||
2868 | #: plugins/check_nt.c:776 | ||
2869 | msgid "" | 2182 | msgid "" |
2870 | "It can also be used in scripts that automatically create the monitoring " | 2183 | "It can also be used in scripts that automatically create the monitoring " |
2871 | "service" | 2184 | "service" |
2872 | msgstr "" | 2185 | msgstr "" |
2873 | 2186 | ||
2874 | #: plugins/check_nt.c:777 | ||
2875 | msgid " configuration files." | 2187 | msgid " configuration files." |
2876 | msgstr "" | 2188 | msgstr "" |
2877 | 2189 | ||
2878 | #: plugins/check_nt.c:779 | ||
2879 | msgid "check_nt -H 192.168.1.1 -p 1248 -v INSTANCES -l Process" | 2190 | msgid "check_nt -H 192.168.1.1 -p 1248 -v INSTANCES -l Process" |
2880 | msgstr "" | 2191 | msgstr "" |
2881 | 2192 | ||
2882 | #: plugins/check_nt.c:782 | ||
2883 | msgid "" | 2193 | msgid "" |
2884 | "- The NSClient service should be running on the server to get any information" | 2194 | "- The NSClient service should be running on the server to get any information" |
2885 | msgstr "" | 2195 | msgstr "" |
2886 | 2196 | ||
2887 | #: plugins/check_nt.c:784 | ||
2888 | msgid "- Critical thresholds should be lower than warning thresholds" | 2197 | msgid "- Critical thresholds should be lower than warning thresholds" |
2889 | msgstr "" | 2198 | msgstr "" |
2890 | 2199 | ||
2891 | #: plugins/check_nt.c:785 | ||
2892 | msgid "- Default port 1248 is sometimes in use by other services. The error" | 2200 | msgid "- Default port 1248 is sometimes in use by other services. The error" |
2893 | msgstr "" | 2201 | msgstr "" |
2894 | 2202 | ||
2895 | #: plugins/check_nt.c:786 | ||
2896 | msgid "" | 2203 | msgid "" |
2897 | "output when this happens contains \"Cannot map xxxxx to protocol number\"." | 2204 | "output when this happens contains \"Cannot map xxxxx to protocol number\"." |
2898 | msgstr "" | 2205 | msgstr "" |
2899 | 2206 | ||
2900 | #: plugins/check_nt.c:787 | ||
2901 | msgid "One fix for this is to change the port to something else on check_nt " | 2207 | msgid "One fix for this is to change the port to something else on check_nt " |
2902 | msgstr "" | 2208 | msgstr "" |
2903 | 2209 | ||
2904 | #: plugins/check_nt.c:788 | ||
2905 | msgid "and on the client service it's connecting to." | 2210 | msgid "and on the client service it's connecting to." |
2906 | msgstr "" | 2211 | msgstr "" |
2907 | 2212 | ||
2908 | #: plugins/check_ntp.c:629 | ||
2909 | #, c-format | 2213 | #, c-format |
2910 | msgid "jitter response too large (%lu bytes)\n" | 2214 | msgid "jitter response too large (%lu bytes)\n" |
2911 | msgstr "" | 2215 | msgstr "" |
2912 | 2216 | ||
2913 | #: plugins/check_ntp.c:817 plugins/check_ntp_peer.c:619 | ||
2914 | #: plugins/check_ntp_time.c:576 | ||
2915 | msgid "NTP CRITICAL:" | 2217 | msgid "NTP CRITICAL:" |
2916 | msgstr "NTP CRITICAL:" | 2218 | msgstr "NTP CRITICAL:" |
2917 | 2219 | ||
2918 | #: plugins/check_ntp.c:820 plugins/check_ntp_peer.c:622 | ||
2919 | #: plugins/check_ntp_time.c:579 | ||
2920 | msgid "NTP WARNING:" | 2220 | msgid "NTP WARNING:" |
2921 | msgstr "NTP WARNING:" | 2221 | msgstr "NTP WARNING:" |
2922 | 2222 | ||
2923 | #: plugins/check_ntp.c:823 plugins/check_ntp_peer.c:625 | ||
2924 | #: plugins/check_ntp_time.c:582 | ||
2925 | msgid "NTP OK:" | 2223 | msgid "NTP OK:" |
2926 | msgstr "NTP OK:" | 2224 | msgstr "NTP OK:" |
2927 | 2225 | ||
2928 | #: plugins/check_ntp.c:826 plugins/check_ntp_peer.c:628 | ||
2929 | #: plugins/check_ntp_time.c:585 | ||
2930 | msgid "NTP UNKNOWN:" | 2226 | msgid "NTP UNKNOWN:" |
2931 | msgstr "NTP UNKNOWN:" | 2227 | msgstr "NTP UNKNOWN:" |
2932 | 2228 | ||
2933 | #: plugins/check_ntp.c:830 plugins/check_ntp_peer.c:637 | ||
2934 | #: plugins/check_ntp_time.c:589 | ||
2935 | msgid "Offset unknown" | 2229 | msgid "Offset unknown" |
2936 | msgstr "" | 2230 | msgstr "" |
2937 | 2231 | ||
2938 | #: plugins/check_ntp.c:833 plugins/check_ntp_peer.c:640 | ||
2939 | #: plugins/check_ntp_peer.c:642 plugins/check_ntp_peer.c:644 | ||
2940 | #: plugins/check_ntp_time.c:592 | ||
2941 | msgid "Offset" | 2232 | msgid "Offset" |
2942 | msgstr "" | 2233 | msgstr "" |
2943 | 2234 | ||
2944 | #: plugins/check_ntp.c:854 plugins/check_ntp_peer.c:690 | ||
2945 | #, fuzzy | 2235 | #, fuzzy |
2946 | msgid "This plugin checks the selected ntp server" | 2236 | msgid "This plugin checks the selected ntp server" |
2947 | msgstr "" | 2237 | msgstr "" |
2948 | "Testet den DNS Dienst auf dem angegebenen Host mit dig\n" | 2238 | "Testet den DNS Dienst auf dem angegebenen Host mit dig\n" |
2949 | "\n" | 2239 | "\n" |
2950 | 2240 | ||
2951 | #: plugins/check_ntp.c:864 plugins/check_ntp_peer.c:702 | ||
2952 | #: plugins/check_ntp_time.c:619 | ||
2953 | msgid "Offset to result in warning status (seconds)" | 2241 | msgid "Offset to result in warning status (seconds)" |
2954 | msgstr "" | 2242 | msgstr "" |
2955 | 2243 | ||
2956 | #: plugins/check_ntp.c:866 plugins/check_ntp_peer.c:704 | ||
2957 | #: plugins/check_ntp_time.c:621 | ||
2958 | msgid "Offset to result in critical status (seconds)" | 2244 | msgid "Offset to result in critical status (seconds)" |
2959 | msgstr "" | 2245 | msgstr "" |
2960 | 2246 | ||
2961 | #: plugins/check_ntp.c:868 plugins/check_ntp_peer.c:710 | ||
2962 | #, fuzzy | 2247 | #, fuzzy |
2963 | msgid "Warning threshold for jitter" | 2248 | msgid "Warning threshold for jitter" |
2964 | msgstr "Warning threshold Integer sein" | 2249 | msgstr "Warning threshold Integer sein" |
2965 | 2250 | ||
2966 | #: plugins/check_ntp.c:870 plugins/check_ntp_peer.c:712 | ||
2967 | #, fuzzy | 2251 | #, fuzzy |
2968 | msgid "Critical threshold for jitter" | 2252 | msgid "Critical threshold for jitter" |
2969 | msgstr "Critical threshold muss ein Integer sein" | 2253 | msgstr "Critical threshold muss ein Integer sein" |
2970 | 2254 | ||
2971 | #: plugins/check_ntp.c:880 | ||
2972 | msgid "Normal offset check:" | 2255 | msgid "Normal offset check:" |
2973 | msgstr "" | 2256 | msgstr "" |
2974 | 2257 | ||
2975 | #: plugins/check_ntp.c:883 plugins/check_ntp_peer.c:737 | ||
2976 | msgid "" | 2258 | msgid "" |
2977 | "Check jitter too, avoiding critical notifications if jitter isn't available" | 2259 | "Check jitter too, avoiding critical notifications if jitter isn't available" |
2978 | msgstr "" | 2260 | msgstr "" |
2979 | 2261 | ||
2980 | #: plugins/check_ntp.c:884 plugins/check_ntp_peer.c:738 | ||
2981 | msgid "(See Notes above for more details on thresholds formats):" | 2262 | msgid "(See Notes above for more details on thresholds formats):" |
2982 | msgstr "" | 2263 | msgstr "" |
2983 | 2264 | ||
2984 | #: plugins/check_ntp.c:889 plugins/check_ntp.c:896 | ||
2985 | msgid "WARNING: check_ntp is deprecated. Please use check_ntp_peer or" | 2265 | msgid "WARNING: check_ntp is deprecated. Please use check_ntp_peer or" |
2986 | msgstr "" | 2266 | msgstr "" |
2987 | 2267 | ||
2988 | #: plugins/check_ntp.c:890 plugins/check_ntp.c:897 | ||
2989 | msgid "check_ntp_time instead." | 2268 | msgid "check_ntp_time instead." |
2990 | msgstr "" | 2269 | msgstr "" |
2991 | 2270 | ||
2992 | #: plugins/check_ntp_peer.c:632 | ||
2993 | msgid "Server not synchronized" | 2271 | msgid "Server not synchronized" |
2994 | msgstr "" | 2272 | msgstr "" |
2995 | 2273 | ||
2996 | #: plugins/check_ntp_peer.c:634 | ||
2997 | msgid "Server has the LI_ALARM bit set" | 2274 | msgid "Server has the LI_ALARM bit set" |
2998 | msgstr "" | 2275 | msgstr "" |
2999 | 2276 | ||
3000 | #: plugins/check_ntp_peer.c:700 | ||
3001 | msgid "" | 2277 | msgid "" |
3002 | "Returns UNKNOWN instead of CRITICAL or WARNING if server isn't synchronized" | 2278 | "Returns UNKNOWN instead of CRITICAL or WARNING if server isn't synchronized" |
3003 | msgstr "" | 2279 | msgstr "" |
3004 | 2280 | ||
3005 | #: plugins/check_ntp_peer.c:706 | ||
3006 | #, fuzzy | 2281 | #, fuzzy |
3007 | msgid "Warning threshold for stratum of server's synchronization peer" | 2282 | msgid "Warning threshold for stratum of server's synchronization peer" |
3008 | msgstr "Warning threshold Integer sein" | 2283 | msgstr "Warning threshold Integer sein" |
3009 | 2284 | ||
3010 | #: plugins/check_ntp_peer.c:708 | ||
3011 | #, fuzzy | 2285 | #, fuzzy |
3012 | msgid "Critical threshold for stratum of server's synchronization peer" | 2286 | msgid "Critical threshold for stratum of server's synchronization peer" |
3013 | msgstr "Critical threshold muss ein Integer sein" | 2287 | msgstr "Critical threshold muss ein Integer sein" |
3014 | 2288 | ||
3015 | #: plugins/check_ntp_peer.c:714 | ||
3016 | #, fuzzy | 2289 | #, fuzzy |
3017 | msgid "Warning threshold for number of usable time sources (\"truechimers\")" | 2290 | msgid "Warning threshold for number of usable time sources (\"truechimers\")" |
3018 | msgstr "Warning threshold muss ein positiver Integer sein\n" | 2291 | msgstr "Warning threshold muss ein positiver Integer sein\n" |
3019 | 2292 | ||
3020 | #: plugins/check_ntp_peer.c:716 | ||
3021 | #, fuzzy | 2293 | #, fuzzy |
3022 | msgid "Critical threshold for number of usable time sources (\"truechimers\")" | 2294 | msgid "Critical threshold for number of usable time sources (\"truechimers\")" |
3023 | msgstr "Critical threshold muss ein positiver Integer sein\n" | 2295 | msgstr "Critical threshold muss ein positiver Integer sein\n" |
3024 | 2296 | ||
3025 | #: plugins/check_ntp_peer.c:721 | ||
3026 | msgid "This plugin checks an NTP server independent of any commandline" | 2297 | msgid "This plugin checks an NTP server independent of any commandline" |
3027 | msgstr "" | 2298 | msgstr "" |
3028 | 2299 | ||
3029 | #: plugins/check_ntp_peer.c:722 | ||
3030 | msgid "programs or external libraries." | 2300 | msgid "programs or external libraries." |
3031 | msgstr "" | 2301 | msgstr "" |
3032 | 2302 | ||
3033 | #: plugins/check_ntp_peer.c:725 | ||
3034 | #, fuzzy | 2303 | #, fuzzy |
3035 | msgid "Use this plugin to check the health of an NTP server. It supports" | 2304 | msgid "Use this plugin to check the health of an NTP server. It supports" |
3036 | msgstr "" | 2305 | msgstr "" |
3037 | "Testet den DNS Dienst auf dem angegebenen Host mit dig\n" | 2306 | "Testet den DNS Dienst auf dem angegebenen Host mit dig\n" |
3038 | "\n" | 2307 | "\n" |
3039 | 2308 | ||
3040 | #: plugins/check_ntp_peer.c:726 | ||
3041 | msgid "checking the offset with the sync peer, the jitter and stratum. This" | 2309 | msgid "checking the offset with the sync peer, the jitter and stratum. This" |
3042 | msgstr "" | 2310 | msgstr "" |
3043 | 2311 | ||
3044 | #: plugins/check_ntp_peer.c:727 | ||
3045 | msgid "plugin will not check the clock offset between the local host and NTP" | 2312 | msgid "plugin will not check the clock offset between the local host and NTP" |
3046 | msgstr "" | 2313 | msgstr "" |
3047 | 2314 | ||
3048 | #: plugins/check_ntp_peer.c:728 | ||
3049 | msgid "server; please use check_ntp_time for that purpose." | 2315 | msgid "server; please use check_ntp_time for that purpose." |
3050 | msgstr "" | 2316 | msgstr "" |
3051 | 2317 | ||
3052 | #: plugins/check_ntp_peer.c:734 | ||
3053 | msgid "Simple NTP server check:" | 2318 | msgid "Simple NTP server check:" |
3054 | msgstr "" | 2319 | msgstr "" |
3055 | 2320 | ||
3056 | #: plugins/check_ntp_peer.c:741 | ||
3057 | msgid "Only check the number of usable time sources (\"truechimers\"):" | 2321 | msgid "Only check the number of usable time sources (\"truechimers\"):" |
3058 | msgstr "" | 2322 | msgstr "" |
3059 | 2323 | ||
3060 | #: plugins/check_ntp_peer.c:744 | ||
3061 | msgid "Check only stratum:" | 2324 | msgid "Check only stratum:" |
3062 | msgstr "" | 2325 | msgstr "" |
3063 | 2326 | ||
3064 | #: plugins/check_ntp_time.c:607 | ||
3065 | #, fuzzy | 2327 | #, fuzzy |
3066 | msgid "This plugin checks the clock offset with the ntp server" | 2328 | msgid "This plugin checks the clock offset with the ntp server" |
3067 | msgstr "" | 2329 | msgstr "" |
3068 | "Testet den DNS Dienst auf dem angegebenen Host mit dig\n" | 2330 | "Testet den DNS Dienst auf dem angegebenen Host mit dig\n" |
3069 | "\n" | 2331 | "\n" |
3070 | 2332 | ||
3071 | #: plugins/check_ntp_time.c:617 | ||
3072 | msgid "Returns UNKNOWN instead of CRITICAL if offset cannot be found" | 2333 | msgid "Returns UNKNOWN instead of CRITICAL if offset cannot be found" |
3073 | msgstr "" | 2334 | msgstr "" |
3074 | 2335 | ||
3075 | #: plugins/check_ntp_time.c:623 | ||
3076 | msgid "Expected offset of the ntp server relative to local server (seconds)" | 2336 | msgid "Expected offset of the ntp server relative to local server (seconds)" |
3077 | msgstr "" | 2337 | msgstr "" |
3078 | 2338 | ||
3079 | #: plugins/check_ntp_time.c:628 | ||
3080 | #, fuzzy | 2339 | #, fuzzy |
3081 | msgid "This plugin checks the clock offset between the local host and a" | 2340 | msgid "This plugin checks the clock offset between the local host and a" |
3082 | msgstr "" | 2341 | msgstr "" |
@@ -3085,1227 +2344,940 @@ msgstr "" | |||
3085 | "unterschritten wird.\n" | 2344 | "unterschritten wird.\n" |
3086 | "\n" | 2345 | "\n" |
3087 | 2346 | ||
3088 | #: plugins/check_ntp_time.c:629 | ||
3089 | msgid "remote NTP server. It is independent of any commandline programs or" | 2347 | msgid "remote NTP server. It is independent of any commandline programs or" |
3090 | msgstr "" | 2348 | msgstr "" |
3091 | 2349 | ||
3092 | #: plugins/check_ntp_time.c:630 | ||
3093 | msgid "external libraries." | 2350 | msgid "external libraries." |
3094 | msgstr "" | 2351 | msgstr "" |
3095 | 2352 | ||
3096 | #: plugins/check_ntp_time.c:634 | ||
3097 | msgid "If you'd rather want to monitor an NTP server, please use" | 2353 | msgid "If you'd rather want to monitor an NTP server, please use" |
3098 | msgstr "" | 2354 | msgstr "" |
3099 | 2355 | ||
3100 | #: plugins/check_ntp_time.c:635 | ||
3101 | msgid "check_ntp_peer." | 2356 | msgid "check_ntp_peer." |
3102 | msgstr "" | 2357 | msgstr "" |
3103 | 2358 | ||
3104 | #: plugins/check_ntp_time.c:636 | ||
3105 | msgid "--time-offset is useful for compensating for servers with known" | 2359 | msgid "--time-offset is useful for compensating for servers with known" |
3106 | msgstr "" | 2360 | msgstr "" |
3107 | 2361 | ||
3108 | #: plugins/check_ntp_time.c:637 | ||
3109 | msgid "and expected clock skew." | 2362 | msgid "and expected clock skew." |
3110 | msgstr "" | 2363 | msgstr "" |
3111 | 2364 | ||
3112 | #: plugins/check_nwstat.c:194 | ||
3113 | #, c-format | 2365 | #, c-format |
3114 | msgid "NetWare %s: " | 2366 | msgid "NetWare %s: " |
3115 | msgstr "" | 2367 | msgstr "" |
3116 | 2368 | ||
3117 | #: plugins/check_nwstat.c:232 | ||
3118 | #, c-format | 2369 | #, c-format |
3119 | msgid "Up %s," | 2370 | msgid "Up %s," |
3120 | msgstr "" | 2371 | msgstr "" |
3121 | 2372 | ||
3122 | #: plugins/check_nwstat.c:240 | ||
3123 | #, c-format | 2373 | #, c-format |
3124 | msgid "Load %s - %s %s-min load average = %lu%%|load%s=%lu;%lu;%lu;0;100" | 2374 | msgid "Load %s - %s %s-min load average = %lu%%|load%s=%lu;%lu;%lu;0;100" |
3125 | msgstr "" | 2375 | msgstr "" |
3126 | 2376 | ||
3127 | #: plugins/check_nwstat.c:268 | ||
3128 | #, c-format | 2377 | #, c-format |
3129 | msgid "Conns %s - %lu current connections|Conns=%lu;%lu;%lu;;" | 2378 | msgid "Conns %s - %lu current connections|Conns=%lu;%lu;%lu;;" |
3130 | msgstr "" | 2379 | msgstr "" |
3131 | 2380 | ||
3132 | #: plugins/check_nwstat.c:293 | ||
3133 | #, c-format | 2381 | #, c-format |
3134 | msgid "%s: Long term cache hits = %lu%%" | 2382 | msgid "%s: Long term cache hits = %lu%%" |
3135 | msgstr "" | 2383 | msgstr "" |
3136 | 2384 | ||
3137 | #: plugins/check_nwstat.c:315 | ||
3138 | #, c-format | 2385 | #, c-format |
3139 | msgid "%s: Total cache buffers = %lu|Cachebuffers=%lu;%lu;%lu;;" | 2386 | msgid "%s: Total cache buffers = %lu|Cachebuffers=%lu;%lu;%lu;;" |
3140 | msgstr "" | 2387 | msgstr "" |
3141 | 2388 | ||
3142 | #: plugins/check_nwstat.c:340 | ||
3143 | #, c-format | 2389 | #, c-format |
3144 | msgid "%s: Dirty cache buffers = %lu|Dirty-Cache-Buffers=%lu;%lu;%lu;;" | 2390 | msgid "%s: Dirty cache buffers = %lu|Dirty-Cache-Buffers=%lu;%lu;%lu;;" |
3145 | msgstr "" | 2391 | msgstr "" |
3146 | 2392 | ||
3147 | #: plugins/check_nwstat.c:365 | ||
3148 | #, c-format | 2393 | #, c-format |
3149 | msgid "%s: LRU sitting time = %lu minutes" | 2394 | msgid "%s: LRU sitting time = %lu minutes" |
3150 | msgstr "" | 2395 | msgstr "" |
3151 | 2396 | ||
3152 | #: plugins/check_nwstat.c:382 plugins/check_nwstat.c:410 | ||
3153 | #: plugins/check_nwstat.c:437 plugins/check_nwstat.c:470 | ||
3154 | #: plugins/check_nwstat.c:650 plugins/check_nwstat.c:676 | ||
3155 | #: plugins/check_nwstat.c:707 plugins/check_nwstat.c:753 | ||
3156 | #: plugins/check_nwstat.c:777 | ||
3157 | #, c-format | 2397 | #, c-format |
3158 | msgid "CRITICAL - Volume '%s' does not exist!" | 2398 | msgid "CRITICAL - Volume '%s' does not exist!" |
3159 | msgstr "" | 2399 | msgstr "" |
3160 | 2400 | ||
3161 | #: plugins/check_nwstat.c:391 | ||
3162 | #, c-format | 2401 | #, c-format |
3163 | msgid "%s%lu KB free on volume %s|KBFree%s=%lu;%lu;%lu;;" | 2402 | msgid "%s%lu KB free on volume %s|KBFree%s=%lu;%lu;%lu;;" |
3164 | msgstr "" | 2403 | msgstr "" |
3165 | 2404 | ||
3166 | #: plugins/check_nwstat.c:392 plugins/check_nwstat.c:420 | ||
3167 | #: plugins/check_nwstat.c:447 plugins/check_nwstat.c:659 | ||
3168 | #: plugins/check_nwstat.c:685 plugins/check_nwstat.c:761 | ||
3169 | msgid "Only " | 2405 | msgid "Only " |
3170 | msgstr "" | 2406 | msgstr "" |
3171 | 2407 | ||
3172 | #: plugins/check_nwstat.c:419 | ||
3173 | #, c-format | 2408 | #, c-format |
3174 | msgid "%s%lu MB free on volume %s|MBFree%s=%lu;%lu;%lu;;" | 2409 | msgid "%s%lu MB free on volume %s|MBFree%s=%lu;%lu;%lu;;" |
3175 | msgstr "" | 2410 | msgstr "" |
3176 | 2411 | ||
3177 | #: plugins/check_nwstat.c:446 | ||
3178 | #, c-format | 2412 | #, c-format |
3179 | msgid "%s%lu MB used on volume %s|MBUsed%s=%lu;%lu;%lu;;" | 2413 | msgid "%s%lu MB used on volume %s|MBUsed%s=%lu;%lu;%lu;;" |
3180 | msgstr "" | 2414 | msgstr "" |
3181 | 2415 | ||
3182 | #: plugins/check_nwstat.c:494 | ||
3183 | #, c-format | 2416 | #, c-format |
3184 | msgid "" | 2417 | msgid "" |
3185 | "%lu MB (%lu%%) free on volume %s - total %lu MB|FreeMB%s=%lu;%lu;%lu;0;100" | 2418 | "%lu MB (%lu%%) free on volume %s - total %lu MB|FreeMB%s=%lu;%lu;%lu;0;100" |
3186 | msgstr "" | 2419 | msgstr "" |
3187 | 2420 | ||
3188 | #: plugins/check_nwstat.c:528 | ||
3189 | #, c-format | 2421 | #, c-format |
3190 | msgid "Directory Services Database is %s (DS version %s)" | 2422 | msgid "Directory Services Database is %s (DS version %s)" |
3191 | msgstr "" | 2423 | msgstr "" |
3192 | 2424 | ||
3193 | #: plugins/check_nwstat.c:545 | ||
3194 | #, c-format | 2425 | #, c-format |
3195 | msgid "Logins are %s" | 2426 | msgid "Logins are %s" |
3196 | msgstr "" | 2427 | msgstr "" |
3197 | 2428 | ||
3198 | #: plugins/check_nwstat.c:545 | ||
3199 | msgid "enabled" | 2429 | msgid "enabled" |
3200 | msgstr "" | 2430 | msgstr "" |
3201 | 2431 | ||
3202 | #: plugins/check_nwstat.c:545 | ||
3203 | msgid "disabled" | 2432 | msgid "disabled" |
3204 | msgstr "" | 2433 | msgstr "" |
3205 | 2434 | ||
3206 | #: plugins/check_nwstat.c:560 | ||
3207 | #, fuzzy | 2435 | #, fuzzy |
3208 | msgid "CRITICAL - NRM Status is bad!" | 2436 | msgid "CRITICAL - NRM Status is bad!" |
3209 | msgstr "CRITICAL - Serverdatum \"%100s\" konnte nicht verarbeitet werden" | 2437 | msgstr "CRITICAL - Serverdatum \"%100s\" konnte nicht verarbeitet werden" |
3210 | 2438 | ||
3211 | #: plugins/check_nwstat.c:565 | ||
3212 | msgid "Warning - NRM Status is suspect!" | 2439 | msgid "Warning - NRM Status is suspect!" |
3213 | msgstr "" | 2440 | msgstr "" |
3214 | 2441 | ||
3215 | #: plugins/check_nwstat.c:568 | ||
3216 | msgid "OK - NRM Status is good!" | 2442 | msgid "OK - NRM Status is good!" |
3217 | msgstr "" | 2443 | msgstr "" |
3218 | 2444 | ||
3219 | #: plugins/check_nwstat.c:610 | ||
3220 | #, c-format | 2445 | #, c-format |
3221 | msgid "%lu of %lu (%lu%%) packet receive buffers used" | 2446 | msgid "%lu of %lu (%lu%%) packet receive buffers used" |
3222 | msgstr "" | 2447 | msgstr "" |
3223 | 2448 | ||
3224 | #: plugins/check_nwstat.c:634 | ||
3225 | #, c-format | 2449 | #, c-format |
3226 | msgid "%lu entries in SAP table" | 2450 | msgid "%lu entries in SAP table" |
3227 | msgstr "" | 2451 | msgstr "" |
3228 | 2452 | ||
3229 | #: plugins/check_nwstat.c:636 | ||
3230 | #, c-format | 2453 | #, c-format |
3231 | msgid "%lu entries in SAP table for SAP type %d" | 2454 | msgid "%lu entries in SAP table for SAP type %d" |
3232 | msgstr "" | 2455 | msgstr "" |
3233 | 2456 | ||
3234 | #: plugins/check_nwstat.c:658 | ||
3235 | #, c-format | 2457 | #, c-format |
3236 | msgid "%s%lu KB purgeable on volume %s|Purge%s=%lu;%lu;%lu;;" | 2458 | msgid "%s%lu KB purgeable on volume %s|Purge%s=%lu;%lu;%lu;;" |
3237 | msgstr "" | 2459 | msgstr "" |
3238 | 2460 | ||
3239 | #: plugins/check_nwstat.c:684 | ||
3240 | #, c-format | 2461 | #, c-format |
3241 | msgid "%s%lu MB purgeable on volume %s|Purge%s=%lu;%lu;%lu;;" | 2462 | msgid "%s%lu MB purgeable on volume %s|Purge%s=%lu;%lu;%lu;;" |
3242 | msgstr "" | 2463 | msgstr "" |
3243 | 2464 | ||
3244 | #: plugins/check_nwstat.c:730 | ||
3245 | #, c-format | 2465 | #, c-format |
3246 | msgid "%lu MB (%lu%%) purgeable on volume %s|Purgeable%s=%lu;%lu;%lu;0;100" | 2466 | msgid "%lu MB (%lu%%) purgeable on volume %s|Purgeable%s=%lu;%lu;%lu;0;100" |
3247 | msgstr "" | 2467 | msgstr "" |
3248 | 2468 | ||
3249 | #: plugins/check_nwstat.c:761 | ||
3250 | #, c-format | 2469 | #, c-format |
3251 | msgid "%s%lu KB not yet purgeable on volume %s" | 2470 | msgid "%s%lu KB not yet purgeable on volume %s" |
3252 | msgstr "" | 2471 | msgstr "" |
3253 | 2472 | ||
3254 | #: plugins/check_nwstat.c:800 | ||
3255 | #, c-format | 2473 | #, c-format |
3256 | msgid "%lu MB (%lu%%) not yet purgeable on volume %s" | 2474 | msgid "%lu MB (%lu%%) not yet purgeable on volume %s" |
3257 | msgstr "" | 2475 | msgstr "" |
3258 | 2476 | ||
3259 | #: plugins/check_nwstat.c:821 | ||
3260 | #, c-format | 2477 | #, c-format |
3261 | msgid "%lu open files|Openfiles=%lu;%lu;%lu;0,0" | 2478 | msgid "%lu open files|Openfiles=%lu;%lu;%lu;0,0" |
3262 | msgstr "" | 2479 | msgstr "" |
3263 | 2480 | ||
3264 | #: plugins/check_nwstat.c:846 | ||
3265 | #, c-format | 2481 | #, c-format |
3266 | msgid "%lu abended threads|Abends=%lu;%lu;%lu;;" | 2482 | msgid "%lu abended threads|Abends=%lu;%lu;%lu;;" |
3267 | msgstr "" | 2483 | msgstr "" |
3268 | 2484 | ||
3269 | #: plugins/check_nwstat.c:881 | ||
3270 | #, c-format | 2485 | #, c-format |
3271 | msgid "%lu current service processes (%lu max)|Processes=%lu;%lu;%lu;0;%lu" | 2486 | msgid "%lu current service processes (%lu max)|Processes=%lu;%lu;%lu;0;%lu" |
3272 | msgstr "" | 2487 | msgstr "" |
3273 | 2488 | ||
3274 | #: plugins/check_nwstat.c:904 | ||
3275 | msgid "CRITICAL - Time not in sync with network!" | 2489 | msgid "CRITICAL - Time not in sync with network!" |
3276 | msgstr "" | 2490 | msgstr "" |
3277 | 2491 | ||
3278 | #: plugins/check_nwstat.c:907 | ||
3279 | msgid "OK - Time in sync with network!" | 2492 | msgid "OK - Time in sync with network!" |
3280 | msgstr "" | 2493 | msgstr "" |
3281 | 2494 | ||
3282 | #: plugins/check_nwstat.c:930 | ||
3283 | #, c-format | 2495 | #, c-format |
3284 | msgid "LRU sitting time = %lu seconds" | 2496 | msgid "LRU sitting time = %lu seconds" |
3285 | msgstr "" | 2497 | msgstr "" |
3286 | 2498 | ||
3287 | #: plugins/check_nwstat.c:949 | ||
3288 | #, c-format | 2499 | #, c-format |
3289 | msgid "Dirty cache buffers = %lu%% of the total|DCB=%lu;%lu;%lu;0;100" | 2500 | msgid "Dirty cache buffers = %lu%% of the total|DCB=%lu;%lu;%lu;0;100" |
3290 | msgstr "" | 2501 | msgstr "" |
3291 | 2502 | ||
3292 | #: plugins/check_nwstat.c:971 | ||
3293 | #, c-format | 2503 | #, c-format |
3294 | msgid "Total cache buffers = %lu%% of the original|TCB=%lu;%lu;%lu;0;100" | 2504 | msgid "Total cache buffers = %lu%% of the original|TCB=%lu;%lu;%lu;0;100" |
3295 | msgstr "" | 2505 | msgstr "" |
3296 | 2506 | ||
3297 | #: plugins/check_nwstat.c:989 | ||
3298 | #, c-format | 2507 | #, c-format |
3299 | msgid "NDS Version %s" | 2508 | msgid "NDS Version %s" |
3300 | msgstr "" | 2509 | msgstr "" |
3301 | 2510 | ||
3302 | #: plugins/check_nwstat.c:1005 | ||
3303 | #, c-format | 2511 | #, c-format |
3304 | msgid "Up %s" | 2512 | msgid "Up %s" |
3305 | msgstr "" | 2513 | msgstr "" |
3306 | 2514 | ||
3307 | #: plugins/check_nwstat.c:1019 | ||
3308 | #, c-format | 2515 | #, c-format |
3309 | msgid "Module %s version %s is loaded" | 2516 | msgid "Module %s version %s is loaded" |
3310 | msgstr "" | 2517 | msgstr "" |
3311 | 2518 | ||
3312 | #: plugins/check_nwstat.c:1022 | ||
3313 | #, c-format | 2519 | #, c-format |
3314 | msgid "Module %s is not loaded" | 2520 | msgid "Module %s is not loaded" |
3315 | msgstr "" | 2521 | msgstr "" |
3316 | 2522 | ||
3317 | #: plugins/check_nwstat.c:1033 plugins/check_nwstat.c:1059 | ||
3318 | #: plugins/check_nwstat.c:1085 plugins/check_nwstat.c:1111 | ||
3319 | #: plugins/check_nwstat.c:1137 plugins/check_nwstat.c:1163 | ||
3320 | #: plugins/check_nwstat.c:1189 plugins/check_nwstat.c:1215 | ||
3321 | #: plugins/check_nwstat.c:1241 plugins/check_nwstat.c:1267 | ||
3322 | #, fuzzy, c-format | 2523 | #, fuzzy, c-format |
3323 | msgid "CRITICAL - Value '%s' does not exist!" | 2524 | msgid "CRITICAL - Value '%s' does not exist!" |
3324 | msgstr "%s [%s nicht gefunden]" | 2525 | msgstr "%s [%s nicht gefunden]" |
3325 | 2526 | ||
3326 | #: plugins/check_nwstat.c:1042 plugins/check_nwstat.c:1068 | ||
3327 | #: plugins/check_nwstat.c:1094 plugins/check_nwstat.c:1120 | ||
3328 | #: plugins/check_nwstat.c:1146 plugins/check_nwstat.c:1172 | ||
3329 | #: plugins/check_nwstat.c:1198 plugins/check_nwstat.c:1224 | ||
3330 | #: plugins/check_nwstat.c:1250 plugins/check_nwstat.c:1276 | ||
3331 | #, c-format | 2527 | #, c-format |
3332 | msgid "%s is %lu|%s=%lu;%lu;%lu;;" | 2528 | msgid "%s is %lu|%s=%lu;%lu;%lu;;" |
3333 | msgstr "" | 2529 | msgstr "" |
3334 | 2530 | ||
3335 | #: plugins/check_nwstat.c:1289 plugins/check_overcr.c:285 | ||
3336 | msgid "Nothing to check!\n" | 2531 | msgid "Nothing to check!\n" |
3337 | msgstr "" | 2532 | msgstr "" |
3338 | 2533 | ||
3339 | #: plugins/check_nwstat.c:1371 plugins/check_overcr.c:355 | ||
3340 | #, fuzzy | 2534 | #, fuzzy |
3341 | msgid "Server port an integer\n" | 2535 | msgid "Server port an integer\n" |
3342 | msgstr "skip lines muss ein Integer sein" | 2536 | msgstr "skip lines muss ein Integer sein" |
3343 | 2537 | ||
3344 | #: plugins/check_nwstat.c:1601 | ||
3345 | msgid "This plugin attempts to contact the MRTGEXT NLM running on a" | 2538 | msgid "This plugin attempts to contact the MRTGEXT NLM running on a" |
3346 | msgstr "" | 2539 | msgstr "" |
3347 | 2540 | ||
3348 | #: plugins/check_nwstat.c:1602 | ||
3349 | msgid "Novell server to gather the requested system information." | 2541 | msgid "Novell server to gather the requested system information." |
3350 | msgstr "" | 2542 | msgstr "" |
3351 | 2543 | ||
3352 | #: plugins/check_nwstat.c:1614 plugins/check_overcr.c:436 | ||
3353 | msgid "Variable to check. Valid variables include:" | 2544 | msgid "Variable to check. Valid variables include:" |
3354 | msgstr "" | 2545 | msgstr "" |
3355 | 2546 | ||
3356 | #: plugins/check_nwstat.c:1615 | ||
3357 | msgid "LOAD1 = 1 minute average CPU load" | 2547 | msgid "LOAD1 = 1 minute average CPU load" |
3358 | msgstr "" | 2548 | msgstr "" |
3359 | 2549 | ||
3360 | #: plugins/check_nwstat.c:1616 | ||
3361 | msgid "LOAD5 = 5 minute average CPU load" | 2550 | msgid "LOAD5 = 5 minute average CPU load" |
3362 | msgstr "" | 2551 | msgstr "" |
3363 | 2552 | ||
3364 | #: plugins/check_nwstat.c:1617 | ||
3365 | msgid "LOAD15 = 15 minute average CPU load" | 2553 | msgid "LOAD15 = 15 minute average CPU load" |
3366 | msgstr "" | 2554 | msgstr "" |
3367 | 2555 | ||
3368 | #: plugins/check_nwstat.c:1618 | ||
3369 | msgid "CSPROCS = number of current service processes (NW 5.x only)" | 2556 | msgid "CSPROCS = number of current service processes (NW 5.x only)" |
3370 | msgstr "" | 2557 | msgstr "" |
3371 | 2558 | ||
3372 | #: plugins/check_nwstat.c:1619 | ||
3373 | msgid "ABENDS = number of abended threads (NW 5.x only)" | 2559 | msgid "ABENDS = number of abended threads (NW 5.x only)" |
3374 | msgstr "" | 2560 | msgstr "" |
3375 | 2561 | ||
3376 | #: plugins/check_nwstat.c:1620 | ||
3377 | msgid "UPTIME = server uptime" | 2562 | msgid "UPTIME = server uptime" |
3378 | msgstr "" | 2563 | msgstr "" |
3379 | 2564 | ||
3380 | #: plugins/check_nwstat.c:1621 | ||
3381 | msgid "LTCH = percent long term cache hits" | 2565 | msgid "LTCH = percent long term cache hits" |
3382 | msgstr "" | 2566 | msgstr "" |
3383 | 2567 | ||
3384 | #: plugins/check_nwstat.c:1622 | ||
3385 | msgid "CBUFF = current number of cache buffers" | 2568 | msgid "CBUFF = current number of cache buffers" |
3386 | msgstr "" | 2569 | msgstr "" |
3387 | 2570 | ||
3388 | #: plugins/check_nwstat.c:1623 | ||
3389 | msgid "CDBUFF = current number of dirty cache buffers" | 2571 | msgid "CDBUFF = current number of dirty cache buffers" |
3390 | msgstr "" | 2572 | msgstr "" |
3391 | 2573 | ||
3392 | #: plugins/check_nwstat.c:1624 | ||
3393 | msgid "DCB = dirty cache buffers as a percentage of the total" | 2574 | msgid "DCB = dirty cache buffers as a percentage of the total" |
3394 | msgstr "" | 2575 | msgstr "" |
3395 | 2576 | ||
3396 | #: plugins/check_nwstat.c:1625 | ||
3397 | msgid "TCB = dirty cache buffers as a percentage of the original" | 2577 | msgid "TCB = dirty cache buffers as a percentage of the original" |
3398 | msgstr "" | 2578 | msgstr "" |
3399 | 2579 | ||
3400 | #: plugins/check_nwstat.c:1626 | ||
3401 | msgid "OFILES = number of open files" | 2580 | msgid "OFILES = number of open files" |
3402 | msgstr "" | 2581 | msgstr "" |
3403 | 2582 | ||
3404 | #: plugins/check_nwstat.c:1627 | ||
3405 | msgid " VMF<vol> = MB of free space on Volume <vol>" | 2583 | msgid " VMF<vol> = MB of free space on Volume <vol>" |
3406 | msgstr "" | 2584 | msgstr "" |
3407 | 2585 | ||
3408 | #: plugins/check_nwstat.c:1628 | ||
3409 | msgid " VMU<vol> = MB used space on Volume <vol>" | 2586 | msgid " VMU<vol> = MB used space on Volume <vol>" |
3410 | msgstr "" | 2587 | msgstr "" |
3411 | 2588 | ||
3412 | #: plugins/check_nwstat.c:1629 | ||
3413 | msgid " VMP<vol> = MB of purgeable space on Volume <vol>" | 2589 | msgid " VMP<vol> = MB of purgeable space on Volume <vol>" |
3414 | msgstr "" | 2590 | msgstr "" |
3415 | 2591 | ||
3416 | #: plugins/check_nwstat.c:1630 | ||
3417 | msgid " VPF<vol> = percent free space on volume <vol>" | 2592 | msgid " VPF<vol> = percent free space on volume <vol>" |
3418 | msgstr "" | 2593 | msgstr "" |
3419 | 2594 | ||
3420 | #: plugins/check_nwstat.c:1631 | ||
3421 | msgid " VKF<vol> = KB of free space on volume <vol>" | 2595 | msgid " VKF<vol> = KB of free space on volume <vol>" |
3422 | msgstr "" | 2596 | msgstr "" |
3423 | 2597 | ||
3424 | #: plugins/check_nwstat.c:1632 | ||
3425 | msgid " VPP<vol> = percent purgeable space on volume <vol>" | 2598 | msgid " VPP<vol> = percent purgeable space on volume <vol>" |
3426 | msgstr "" | 2599 | msgstr "" |
3427 | 2600 | ||
3428 | #: plugins/check_nwstat.c:1633 | ||
3429 | msgid " VKP<vol> = KB of purgeable space on volume <vol>" | 2601 | msgid " VKP<vol> = KB of purgeable space on volume <vol>" |
3430 | msgstr "" | 2602 | msgstr "" |
3431 | 2603 | ||
3432 | #: plugins/check_nwstat.c:1634 | ||
3433 | msgid " VPNP<vol> = percent not yet purgeable space on volume <vol>" | 2604 | msgid " VPNP<vol> = percent not yet purgeable space on volume <vol>" |
3434 | msgstr "" | 2605 | msgstr "" |
3435 | 2606 | ||
3436 | #: plugins/check_nwstat.c:1635 | ||
3437 | msgid " VKNP<vol> = KB of not yet purgeable space on volume <vol>" | 2607 | msgid " VKNP<vol> = KB of not yet purgeable space on volume <vol>" |
3438 | msgstr "" | 2608 | msgstr "" |
3439 | 2609 | ||
3440 | #: plugins/check_nwstat.c:1636 | ||
3441 | msgid " LRUM = LRU sitting time in minutes" | 2610 | msgid " LRUM = LRU sitting time in minutes" |
3442 | msgstr "" | 2611 | msgstr "" |
3443 | 2612 | ||
3444 | #: plugins/check_nwstat.c:1637 | ||
3445 | msgid " LRUS = LRU sitting time in seconds" | 2613 | msgid " LRUS = LRU sitting time in seconds" |
3446 | msgstr "" | 2614 | msgstr "" |
3447 | 2615 | ||
3448 | #: plugins/check_nwstat.c:1638 | ||
3449 | msgid " DSDB = check to see if DS Database is open" | 2616 | msgid " DSDB = check to see if DS Database is open" |
3450 | msgstr "" | 2617 | msgstr "" |
3451 | 2618 | ||
3452 | #: plugins/check_nwstat.c:1639 | ||
3453 | msgid " DSVER = NDS version" | 2619 | msgid " DSVER = NDS version" |
3454 | msgstr "" | 2620 | msgstr "" |
3455 | 2621 | ||
3456 | #: plugins/check_nwstat.c:1640 | ||
3457 | msgid " UPRB = used packet receive buffers" | 2622 | msgid " UPRB = used packet receive buffers" |
3458 | msgstr "" | 2623 | msgstr "" |
3459 | 2624 | ||
3460 | #: plugins/check_nwstat.c:1641 | ||
3461 | msgid " PUPRB = percent (of max) used packet receive buffers" | 2625 | msgid " PUPRB = percent (of max) used packet receive buffers" |
3462 | msgstr "" | 2626 | msgstr "" |
3463 | 2627 | ||
3464 | #: plugins/check_nwstat.c:1642 | ||
3465 | msgid " SAPENTRIES = number of entries in the SAP table" | 2628 | msgid " SAPENTRIES = number of entries in the SAP table" |
3466 | msgstr "" | 2629 | msgstr "" |
3467 | 2630 | ||
3468 | #: plugins/check_nwstat.c:1643 | ||
3469 | msgid " SAPENTRIES<n> = number of entries in the SAP table for SAP type <n>" | 2631 | msgid " SAPENTRIES<n> = number of entries in the SAP table for SAP type <n>" |
3470 | msgstr "" | 2632 | msgstr "" |
3471 | 2633 | ||
3472 | #: plugins/check_nwstat.c:1644 | ||
3473 | msgid " TSYNC = timesync status" | 2634 | msgid " TSYNC = timesync status" |
3474 | msgstr "" | 2635 | msgstr "" |
3475 | 2636 | ||
3476 | #: plugins/check_nwstat.c:1645 | ||
3477 | msgid " LOGINS = check to see if logins are enabled" | 2637 | msgid " LOGINS = check to see if logins are enabled" |
3478 | msgstr "" | 2638 | msgstr "" |
3479 | 2639 | ||
3480 | #: plugins/check_nwstat.c:1646 | ||
3481 | msgid " CONNS = number of currently licensed connections" | 2640 | msgid " CONNS = number of currently licensed connections" |
3482 | msgstr "" | 2641 | msgstr "" |
3483 | 2642 | ||
3484 | #: plugins/check_nwstat.c:1647 | ||
3485 | msgid " NRMH\t= NRM Summary Status" | 2643 | msgid " NRMH\t= NRM Summary Status" |
3486 | msgstr "" | 2644 | msgstr "" |
3487 | 2645 | ||
3488 | #: plugins/check_nwstat.c:1648 | ||
3489 | msgid " NRMP<stat> = Returns the current value for a NRM health item" | 2646 | msgid " NRMP<stat> = Returns the current value for a NRM health item" |
3490 | msgstr "" | 2647 | msgstr "" |
3491 | 2648 | ||
3492 | #: plugins/check_nwstat.c:1649 | ||
3493 | msgid " NRMM<stat> = Returns the current memory stats from NRM" | 2649 | msgid " NRMM<stat> = Returns the current memory stats from NRM" |
3494 | msgstr "" | 2650 | msgstr "" |
3495 | 2651 | ||
3496 | #: plugins/check_nwstat.c:1650 | ||
3497 | msgid " NRMS<stat> = Returns the current Swapfile stats from NRM" | 2652 | msgid " NRMS<stat> = Returns the current Swapfile stats from NRM" |
3498 | msgstr "" | 2653 | msgstr "" |
3499 | 2654 | ||
3500 | #: plugins/check_nwstat.c:1651 | ||
3501 | msgid " NSS1<stat> = Statistics from _Admin:Manage_NSS\\GeneralStats.xml" | 2655 | msgid " NSS1<stat> = Statistics from _Admin:Manage_NSS\\GeneralStats.xml" |
3502 | msgstr "" | 2656 | msgstr "" |
3503 | 2657 | ||
3504 | #: plugins/check_nwstat.c:1652 | ||
3505 | msgid " NSS3<stat> = Statistics from _Admin:Manage_NSS\\NameCache.xml" | 2658 | msgid " NSS3<stat> = Statistics from _Admin:Manage_NSS\\NameCache.xml" |
3506 | msgstr "" | 2659 | msgstr "" |
3507 | 2660 | ||
3508 | #: plugins/check_nwstat.c:1653 | ||
3509 | msgid " NSS4<stat> = Statistics from _Admin:Manage_NSS\\FileStats.xml" | 2661 | msgid " NSS4<stat> = Statistics from _Admin:Manage_NSS\\FileStats.xml" |
3510 | msgstr "" | 2662 | msgstr "" |
3511 | 2663 | ||
3512 | #: plugins/check_nwstat.c:1654 | ||
3513 | msgid " NSS5<stat> = Statistics from _Admin:Manage_NSS\\ObjectCache.xml" | 2664 | msgid " NSS5<stat> = Statistics from _Admin:Manage_NSS\\ObjectCache.xml" |
3514 | msgstr "" | 2665 | msgstr "" |
3515 | 2666 | ||
3516 | #: plugins/check_nwstat.c:1655 | ||
3517 | msgid " NSS6<stat> = Statistics from _Admin:Manage_NSS\\Thread.xml" | 2667 | msgid " NSS6<stat> = Statistics from _Admin:Manage_NSS\\Thread.xml" |
3518 | msgstr "" | 2668 | msgstr "" |
3519 | 2669 | ||
3520 | #: plugins/check_nwstat.c:1656 | ||
3521 | msgid "" | 2670 | msgid "" |
3522 | " NSS7<stat> = Statistics from _Admin:Manage_NSS\\AuthorizationCache.xml" | 2671 | " NSS7<stat> = Statistics from _Admin:Manage_NSS\\AuthorizationCache.xml" |
3523 | msgstr "" | 2672 | msgstr "" |
3524 | 2673 | ||
3525 | #: plugins/check_nwstat.c:1657 | ||
3526 | msgid " NLM:<nlm> = check if NLM is loaded and report version" | 2674 | msgid " NLM:<nlm> = check if NLM is loaded and report version" |
3527 | msgstr "" | 2675 | msgstr "" |
3528 | 2676 | ||
3529 | #: plugins/check_nwstat.c:1658 | ||
3530 | msgid " (e.g. NLM:TSANDS.NLM)" | 2677 | msgid " (e.g. NLM:TSANDS.NLM)" |
3531 | msgstr "" | 2678 | msgstr "" |
3532 | 2679 | ||
3533 | #: plugins/check_nwstat.c:1665 | ||
3534 | msgid "Include server version string in results" | 2680 | msgid "Include server version string in results" |
3535 | msgstr "" | 2681 | msgstr "" |
3536 | 2682 | ||
3537 | #: plugins/check_nwstat.c:1671 | ||
3538 | msgid "- This plugin requires that the MRTGEXT.NLM file from James Drews' MRTG" | 2683 | msgid "- This plugin requires that the MRTGEXT.NLM file from James Drews' MRTG" |
3539 | msgstr "" | 2684 | msgstr "" |
3540 | 2685 | ||
3541 | #: plugins/check_nwstat.c:1672 | ||
3542 | msgid "" | 2686 | msgid "" |
3543 | " extension for NetWare be loaded on the Novell servers you wish to check." | 2687 | " extension for NetWare be loaded on the Novell servers you wish to check." |
3544 | msgstr "" | 2688 | msgstr "" |
3545 | 2689 | ||
3546 | #: plugins/check_nwstat.c:1673 | ||
3547 | msgid " (available from http://www.engr.wisc.edu/~drews/mrtg/)" | 2690 | msgid " (available from http://www.engr.wisc.edu/~drews/mrtg/)" |
3548 | msgstr "" | 2691 | msgstr "" |
3549 | 2692 | ||
3550 | #: plugins/check_nwstat.c:1674 | ||
3551 | msgid "" | 2693 | msgid "" |
3552 | "- Values for critical thresholds should be lower than warning thresholds" | 2694 | "- Values for critical thresholds should be lower than warning thresholds" |
3553 | msgstr "" | 2695 | msgstr "" |
3554 | 2696 | ||
3555 | #: plugins/check_nwstat.c:1675 | ||
3556 | msgid "" | 2697 | msgid "" |
3557 | " when the following variables are checked: VPF, VKF, LTCH, CBUFF, DCB, " | 2698 | " when the following variables are checked: VPF, VKF, LTCH, CBUFF, DCB, " |
3558 | msgstr "" | 2699 | msgstr "" |
3559 | 2700 | ||
3560 | #: plugins/check_nwstat.c:1676 | ||
3561 | msgid " TCB, LRUS and LRUM." | 2701 | msgid " TCB, LRUS and LRUM." |
3562 | msgstr "" | 2702 | msgstr "" |
3563 | 2703 | ||
3564 | #: plugins/check_overcr.c:123 | ||
3565 | msgid "Unknown error fetching load data\n" | 2704 | msgid "Unknown error fetching load data\n" |
3566 | msgstr "" | 2705 | msgstr "" |
3567 | 2706 | ||
3568 | #: plugins/check_overcr.c:127 | ||
3569 | msgid "Invalid response from server - no load information\n" | 2707 | msgid "Invalid response from server - no load information\n" |
3570 | msgstr "" | 2708 | msgstr "" |
3571 | 2709 | ||
3572 | #: plugins/check_overcr.c:133 | ||
3573 | msgid "Invalid response from server after load 1\n" | 2710 | msgid "Invalid response from server after load 1\n" |
3574 | msgstr "" | 2711 | msgstr "" |
3575 | 2712 | ||
3576 | #: plugins/check_overcr.c:139 | ||
3577 | msgid "Invalid response from server after load 5\n" | 2713 | msgid "Invalid response from server after load 5\n" |
3578 | msgstr "" | 2714 | msgstr "" |
3579 | 2715 | ||
3580 | #: plugins/check_overcr.c:164 | ||
3581 | #, c-format | 2716 | #, c-format |
3582 | msgid "Load %s - %s-min load average = %0.2f" | 2717 | msgid "Load %s - %s-min load average = %0.2f" |
3583 | msgstr "" | 2718 | msgstr "" |
3584 | 2719 | ||
3585 | #: plugins/check_overcr.c:174 | ||
3586 | msgid "Unknown error fetching disk data\n" | 2720 | msgid "Unknown error fetching disk data\n" |
3587 | msgstr "" | 2721 | msgstr "" |
3588 | 2722 | ||
3589 | #: plugins/check_overcr.c:184 plugins/check_overcr.c:236 | ||
3590 | #: plugins/check_overcr.c:240 | ||
3591 | msgid "Invalid response from server\n" | 2723 | msgid "Invalid response from server\n" |
3592 | msgstr "" | 2724 | msgstr "" |
3593 | 2725 | ||
3594 | #: plugins/check_overcr.c:211 | ||
3595 | msgid "Unknown error fetching network status\n" | 2726 | msgid "Unknown error fetching network status\n" |
3596 | msgstr "" | 2727 | msgstr "" |
3597 | 2728 | ||
3598 | #: plugins/check_overcr.c:221 | ||
3599 | #, c-format | 2729 | #, c-format |
3600 | msgid "Net %s - %d connection%s on port %d" | 2730 | msgid "Net %s - %d connection%s on port %d" |
3601 | msgstr "" | 2731 | msgstr "" |
3602 | 2732 | ||
3603 | #: plugins/check_overcr.c:232 | ||
3604 | msgid "Unknown error fetching process status\n" | 2733 | msgid "Unknown error fetching process status\n" |
3605 | msgstr "" | 2734 | msgstr "" |
3606 | 2735 | ||
3607 | #: plugins/check_overcr.c:250 | ||
3608 | #, c-format | 2736 | #, c-format |
3609 | msgid "Process %s - %d instance%s of %s running" | 2737 | msgid "Process %s - %d instance%s of %s running" |
3610 | msgstr "" | 2738 | msgstr "" |
3611 | 2739 | ||
3612 | #: plugins/check_overcr.c:277 | ||
3613 | #, c-format | 2740 | #, c-format |
3614 | msgid "Uptime %s - Up %d days %d hours %d minutes" | 2741 | msgid "Uptime %s - Up %d days %d hours %d minutes" |
3615 | msgstr "" | 2742 | msgstr "" |
3616 | 2743 | ||
3617 | #: plugins/check_overcr.c:419 | ||
3618 | msgid "" | 2744 | msgid "" |
3619 | "This plugin attempts to contact the Over-CR collector daemon running on the" | 2745 | "This plugin attempts to contact the Over-CR collector daemon running on the" |
3620 | msgstr "" | 2746 | msgstr "" |
3621 | 2747 | ||
3622 | #: plugins/check_overcr.c:420 | ||
3623 | msgid "remote UNIX server in order to gather the requested system information." | 2748 | msgid "remote UNIX server in order to gather the requested system information." |
3624 | msgstr "" | 2749 | msgstr "" |
3625 | 2750 | ||
3626 | #: plugins/check_overcr.c:437 | ||
3627 | msgid "LOAD1 = 1 minute average CPU load" | 2751 | msgid "LOAD1 = 1 minute average CPU load" |
3628 | msgstr "" | 2752 | msgstr "" |
3629 | 2753 | ||
3630 | #: plugins/check_overcr.c:438 | ||
3631 | msgid "LOAD5 = 5 minute average CPU load" | 2754 | msgid "LOAD5 = 5 minute average CPU load" |
3632 | msgstr "" | 2755 | msgstr "" |
3633 | 2756 | ||
3634 | #: plugins/check_overcr.c:439 | ||
3635 | msgid "LOAD15 = 15 minute average CPU load" | 2757 | msgid "LOAD15 = 15 minute average CPU load" |
3636 | msgstr "" | 2758 | msgstr "" |
3637 | 2759 | ||
3638 | #: plugins/check_overcr.c:440 | ||
3639 | msgid "DPU<filesys> = percent used disk space on filesystem <filesys>" | 2760 | msgid "DPU<filesys> = percent used disk space on filesystem <filesys>" |
3640 | msgstr "" | 2761 | msgstr "" |
3641 | 2762 | ||
3642 | #: plugins/check_overcr.c:441 | ||
3643 | msgid "PROC<process> = number of running processes with name <process>" | 2763 | msgid "PROC<process> = number of running processes with name <process>" |
3644 | msgstr "" | 2764 | msgstr "" |
3645 | 2765 | ||
3646 | #: plugins/check_overcr.c:442 | ||
3647 | msgid "NET<port> = number of active connections on TCP port <port>" | 2766 | msgid "NET<port> = number of active connections on TCP port <port>" |
3648 | msgstr "" | 2767 | msgstr "" |
3649 | 2768 | ||
3650 | #: plugins/check_overcr.c:443 | ||
3651 | msgid "UPTIME = system uptime in seconds" | 2769 | msgid "UPTIME = system uptime in seconds" |
3652 | msgstr "" | 2770 | msgstr "" |
3653 | 2771 | ||
3654 | #: plugins/check_overcr.c:450 | ||
3655 | msgid "This plugin requires that Eric Molitors' Over-CR collector daemon be" | 2772 | msgid "This plugin requires that Eric Molitors' Over-CR collector daemon be" |
3656 | msgstr "" | 2773 | msgstr "" |
3657 | 2774 | ||
3658 | #: plugins/check_overcr.c:451 | ||
3659 | msgid "running on the remote server." | 2775 | msgid "running on the remote server." |
3660 | msgstr "" | 2776 | msgstr "" |
3661 | 2777 | ||
3662 | #: plugins/check_overcr.c:452 | ||
3663 | msgid "Over-CR can be downloaded from http://www.molitor.org/overcr" | 2778 | msgid "Over-CR can be downloaded from http://www.molitor.org/overcr" |
3664 | msgstr "" | 2779 | msgstr "" |
3665 | 2780 | ||
3666 | #: plugins/check_overcr.c:453 | ||
3667 | msgid "This plugin was tested with version 0.99.53 of the Over-CR collector" | 2781 | msgid "This plugin was tested with version 0.99.53 of the Over-CR collector" |
3668 | msgstr "" | 2782 | msgstr "" |
3669 | 2783 | ||
3670 | #: plugins/check_overcr.c:457 | ||
3671 | msgid "" | 2784 | msgid "" |
3672 | "For the available options, the critical threshold value should always be" | 2785 | "For the available options, the critical threshold value should always be" |
3673 | msgstr "" | 2786 | msgstr "" |
3674 | 2787 | ||
3675 | #: plugins/check_overcr.c:458 | ||
3676 | msgid "" | 2788 | msgid "" |
3677 | "higher than the warning threshold value, EXCEPT with the uptime variable" | 2789 | "higher than the warning threshold value, EXCEPT with the uptime variable" |
3678 | msgstr "" | 2790 | msgstr "" |
3679 | 2791 | ||
3680 | #: plugins/check_pgsql.c:224 | ||
3681 | #, c-format | 2792 | #, c-format |
3682 | msgid "CRITICAL - no connection to '%s' (%s).\n" | 2793 | msgid "CRITICAL - no connection to '%s' (%s).\n" |
3683 | msgstr "" | 2794 | msgstr "" |
3684 | 2795 | ||
3685 | #: plugins/check_pgsql.c:252 | ||
3686 | #, c-format | 2796 | #, c-format |
3687 | msgid " %s - database %s (%f sec.)|%s\n" | 2797 | msgid " %s - database %s (%f sec.)|%s\n" |
3688 | msgstr "" | 2798 | msgstr "" |
3689 | 2799 | ||
3690 | #: plugins/check_pgsql.c:320 plugins/check_time.c:277 plugins/check_time.c:289 | ||
3691 | #: plugins/check_users.c:228 | ||
3692 | msgid "Critical threshold must be a positive integer" | 2800 | msgid "Critical threshold must be a positive integer" |
3693 | msgstr "Critical threshold muss ein positiver Integer sein" | 2801 | msgstr "Critical threshold muss ein positiver Integer sein" |
3694 | 2802 | ||
3695 | #: plugins/check_pgsql.c:326 plugins/check_time.c:258 plugins/check_time.c:282 | ||
3696 | #: plugins/check_users.c:226 | ||
3697 | msgid "Warning threshold must be a positive integer" | 2803 | msgid "Warning threshold must be a positive integer" |
3698 | msgstr "Warning threshold muss ein positiver Integer sein" | 2804 | msgstr "Warning threshold muss ein positiver Integer sein" |
3699 | 2805 | ||
3700 | #: plugins/check_pgsql.c:350 | ||
3701 | msgid "Database name exceeds the maximum length" | 2806 | msgid "Database name exceeds the maximum length" |
3702 | msgstr "" | 2807 | msgstr "" |
3703 | 2808 | ||
3704 | #: plugins/check_pgsql.c:356 | ||
3705 | msgid "User name is not valid" | 2809 | msgid "User name is not valid" |
3706 | msgstr "" | 2810 | msgstr "" |
3707 | 2811 | ||
3708 | #: plugins/check_pgsql.c:471 | ||
3709 | #, c-format | 2812 | #, c-format |
3710 | msgid "Test whether a PostgreSQL Database is accepting connections." | 2813 | msgid "Test whether a PostgreSQL Database is accepting connections." |
3711 | msgstr "" | 2814 | msgstr "" |
3712 | 2815 | ||
3713 | #: plugins/check_pgsql.c:483 | ||
3714 | msgid "Database to check " | 2816 | msgid "Database to check " |
3715 | msgstr "" | 2817 | msgstr "" |
3716 | 2818 | ||
3717 | #: plugins/check_pgsql.c:484 | ||
3718 | #, c-format | 2819 | #, c-format |
3719 | msgid "(default: %s)\n" | 2820 | msgid "(default: %s)\n" |
3720 | msgstr "" | 2821 | msgstr "" |
3721 | 2822 | ||
3722 | #: plugins/check_pgsql.c:486 | ||
3723 | msgid "Login name of user" | 2823 | msgid "Login name of user" |
3724 | msgstr "" | 2824 | msgstr "" |
3725 | 2825 | ||
3726 | #: plugins/check_pgsql.c:488 | ||
3727 | msgid "Password (BIG SECURITY ISSUE)" | 2826 | msgid "Password (BIG SECURITY ISSUE)" |
3728 | msgstr "" | 2827 | msgstr "" |
3729 | 2828 | ||
3730 | #: plugins/check_pgsql.c:490 | ||
3731 | msgid "Connection parameters (keyword = value), see below" | 2829 | msgid "Connection parameters (keyword = value), see below" |
3732 | msgstr "" | 2830 | msgstr "" |
3733 | 2831 | ||
3734 | #: plugins/check_pgsql.c:497 | ||
3735 | msgid "SQL query to run. Only first column in first row will be read" | 2832 | msgid "SQL query to run. Only first column in first row will be read" |
3736 | msgstr "" | 2833 | msgstr "" |
3737 | 2834 | ||
3738 | #: plugins/check_pgsql.c:499 | ||
3739 | msgid "A name for the query, this string is used instead of the query" | 2835 | msgid "A name for the query, this string is used instead of the query" |
3740 | msgstr "" | 2836 | msgstr "" |
3741 | 2837 | ||
3742 | #: plugins/check_pgsql.c:500 | ||
3743 | msgid "in the long output of the plugin" | 2838 | msgid "in the long output of the plugin" |
3744 | msgstr "" | 2839 | msgstr "" |
3745 | 2840 | ||
3746 | #: plugins/check_pgsql.c:502 | ||
3747 | msgid "SQL query value to result in warning status (double)" | 2841 | msgid "SQL query value to result in warning status (double)" |
3748 | msgstr "" | 2842 | msgstr "" |
3749 | 2843 | ||
3750 | #: plugins/check_pgsql.c:504 | ||
3751 | msgid "SQL query value to result in critical status (double)" | 2844 | msgid "SQL query value to result in critical status (double)" |
3752 | msgstr "" | 2845 | msgstr "" |
3753 | 2846 | ||
3754 | #: plugins/check_pgsql.c:509 | ||
3755 | msgid "All parameters are optional." | 2847 | msgid "All parameters are optional." |
3756 | msgstr "" | 2848 | msgstr "" |
3757 | 2849 | ||
3758 | #: plugins/check_pgsql.c:510 | ||
3759 | msgid "" | 2850 | msgid "" |
3760 | "This plugin tests a PostgreSQL DBMS to determine whether it is active and" | 2851 | "This plugin tests a PostgreSQL DBMS to determine whether it is active and" |
3761 | msgstr "" | 2852 | msgstr "" |
3762 | 2853 | ||
3763 | #: plugins/check_pgsql.c:511 | ||
3764 | msgid "accepting queries. In its current operation, it simply connects to the" | 2854 | msgid "accepting queries. In its current operation, it simply connects to the" |
3765 | msgstr "" | 2855 | msgstr "" |
3766 | 2856 | ||
3767 | #: plugins/check_pgsql.c:512 | ||
3768 | msgid "" | 2857 | msgid "" |
3769 | "specified database, and then disconnects. If no database is specified, it" | 2858 | "specified database, and then disconnects. If no database is specified, it" |
3770 | msgstr "" | 2859 | msgstr "" |
3771 | 2860 | ||
3772 | #: plugins/check_pgsql.c:513 | ||
3773 | msgid "" | 2861 | msgid "" |
3774 | "connects to the template1 database, which is present in every functioning" | 2862 | "connects to the template1 database, which is present in every functioning" |
3775 | msgstr "" | 2863 | msgstr "" |
3776 | 2864 | ||
3777 | #: plugins/check_pgsql.c:514 | ||
3778 | msgid "PostgreSQL DBMS." | 2865 | msgid "PostgreSQL DBMS." |
3779 | msgstr "" | 2866 | msgstr "" |
3780 | 2867 | ||
3781 | #: plugins/check_pgsql.c:516 | ||
3782 | msgid "If a query is specified using the -q option, it will be executed after" | 2868 | msgid "If a query is specified using the -q option, it will be executed after" |
3783 | msgstr "" | 2869 | msgstr "" |
3784 | 2870 | ||
3785 | #: plugins/check_pgsql.c:517 | ||
3786 | msgid "connecting to the server. The result from the query has to be numeric." | 2871 | msgid "connecting to the server. The result from the query has to be numeric." |
3787 | msgstr "" | 2872 | msgstr "" |
3788 | 2873 | ||
3789 | #: plugins/check_pgsql.c:518 | ||
3790 | msgid "" | 2874 | msgid "" |
3791 | "Multiple SQL commands, separated by semicolon, are allowed but the result " | 2875 | "Multiple SQL commands, separated by semicolon, are allowed but the result " |
3792 | msgstr "" | 2876 | msgstr "" |
3793 | 2877 | ||
3794 | #: plugins/check_pgsql.c:519 | ||
3795 | msgid "of the last command is taken into account only. The value of the first" | 2878 | msgid "of the last command is taken into account only. The value of the first" |
3796 | msgstr "" | 2879 | msgstr "" |
3797 | 2880 | ||
3798 | #: plugins/check_pgsql.c:520 | ||
3799 | msgid "" | 2881 | msgid "" |
3800 | "column in the first row is used as the check result. If a second column is" | 2882 | "column in the first row is used as the check result. If a second column is" |
3801 | msgstr "" | 2883 | msgstr "" |
3802 | 2884 | ||
3803 | #: plugins/check_pgsql.c:521 | ||
3804 | msgid "present in the result set, this is added to the plugin output with a" | 2885 | msgid "present in the result set, this is added to the plugin output with a" |
3805 | msgstr "" | 2886 | msgstr "" |
3806 | 2887 | ||
3807 | #: plugins/check_pgsql.c:522 | ||
3808 | msgid "" | 2888 | msgid "" |
3809 | "prefix of \"Extra Info:\". This information can be displayed in the system" | 2889 | "prefix of \"Extra Info:\". This information can be displayed in the system" |
3810 | msgstr "" | 2890 | msgstr "" |
3811 | 2891 | ||
3812 | #: plugins/check_pgsql.c:523 | ||
3813 | msgid "executing the plugin." | 2892 | msgid "executing the plugin." |
3814 | msgstr "" | 2893 | msgstr "" |
3815 | 2894 | ||
3816 | #: plugins/check_pgsql.c:525 | ||
3817 | msgid "" | 2895 | msgid "" |
3818 | "See the chapter \"Monitoring Database Activity\" of the PostgreSQL manual" | 2896 | "See the chapter \"Monitoring Database Activity\" of the PostgreSQL manual" |
3819 | msgstr "" | 2897 | msgstr "" |
3820 | 2898 | ||
3821 | #: plugins/check_pgsql.c:526 | ||
3822 | msgid "" | 2899 | msgid "" |
3823 | "for details about how to access internal statistics of the database server." | 2900 | "for details about how to access internal statistics of the database server." |
3824 | msgstr "" | 2901 | msgstr "" |
3825 | 2902 | ||
3826 | #: plugins/check_pgsql.c:528 | ||
3827 | msgid "" | 2903 | msgid "" |
3828 | "For a list of available connection parameters which may be used with the -o" | 2904 | "For a list of available connection parameters which may be used with the -o" |
3829 | msgstr "" | 2905 | msgstr "" |
3830 | 2906 | ||
3831 | #: plugins/check_pgsql.c:529 | ||
3832 | msgid "" | 2907 | msgid "" |
3833 | "command line option, see the documentation for PQconnectdb() in the chapter" | 2908 | "command line option, see the documentation for PQconnectdb() in the chapter" |
3834 | msgstr "" | 2909 | msgstr "" |
3835 | 2910 | ||
3836 | #: plugins/check_pgsql.c:530 | ||
3837 | msgid "" | 2911 | msgid "" |
3838 | "\"libpq - C Library\" of the PostgreSQL manual. For example, this may be" | 2912 | "\"libpq - C Library\" of the PostgreSQL manual. For example, this may be" |
3839 | msgstr "" | 2913 | msgstr "" |
3840 | 2914 | ||
3841 | #: plugins/check_pgsql.c:531 | ||
3842 | msgid "" | 2915 | msgid "" |
3843 | "used to specify a service name in pg_service.conf to be used for additional" | 2916 | "used to specify a service name in pg_service.conf to be used for additional" |
3844 | msgstr "" | 2917 | msgstr "" |
3845 | 2918 | ||
3846 | #: plugins/check_pgsql.c:532 | ||
3847 | msgid "connection parameters: -o 'service=<name>' or to specify the SSL mode:" | 2919 | msgid "connection parameters: -o 'service=<name>' or to specify the SSL mode:" |
3848 | msgstr "" | 2920 | msgstr "" |
3849 | 2921 | ||
3850 | #: plugins/check_pgsql.c:533 | ||
3851 | msgid "-o 'sslmode=require'." | 2922 | msgid "-o 'sslmode=require'." |
3852 | msgstr "" | 2923 | msgstr "" |
3853 | 2924 | ||
3854 | #: plugins/check_pgsql.c:535 | ||
3855 | msgid "" | 2925 | msgid "" |
3856 | "The plugin will connect to a local postmaster if no host is specified. To" | 2926 | "The plugin will connect to a local postmaster if no host is specified. To" |
3857 | msgstr "" | 2927 | msgstr "" |
3858 | 2928 | ||
3859 | #: plugins/check_pgsql.c:536 | ||
3860 | msgid "" | 2929 | msgid "" |
3861 | "connect to a remote host, be sure that the remote postmaster accepts TCP/IP" | 2930 | "connect to a remote host, be sure that the remote postmaster accepts TCP/IP" |
3862 | msgstr "" | 2931 | msgstr "" |
3863 | 2932 | ||
3864 | #: plugins/check_pgsql.c:537 | ||
3865 | msgid "connections (start the postmaster with the -i option)." | 2933 | msgid "connections (start the postmaster with the -i option)." |
3866 | msgstr "" | 2934 | msgstr "" |
3867 | 2935 | ||
3868 | #: plugins/check_pgsql.c:539 | ||
3869 | msgid "" | 2936 | msgid "" |
3870 | "Typically, the monitoring user (unless the --logname option is used) should " | 2937 | "Typically, the monitoring user (unless the --logname option is used) should " |
3871 | "be" | 2938 | "be" |
3872 | msgstr "" | 2939 | msgstr "" |
3873 | 2940 | ||
3874 | #: plugins/check_pgsql.c:540 | ||
3875 | msgid "" | 2941 | msgid "" |
3876 | "able to connect to the database without a password. The plugin can also send" | 2942 | "able to connect to the database without a password. The plugin can also send" |
3877 | msgstr "" | 2943 | msgstr "" |
3878 | 2944 | ||
3879 | #: plugins/check_pgsql.c:541 | ||
3880 | msgid "a password, but no effort is made to obscure or encrypt the password." | 2945 | msgid "a password, but no effort is made to obscure or encrypt the password." |
3881 | msgstr "" | 2946 | msgstr "" |
3882 | 2947 | ||
3883 | #: plugins/check_pgsql.c:575 | ||
3884 | #, c-format | 2948 | #, c-format |
3885 | msgid "QUERY %s - %s: %s.\n" | 2949 | msgid "QUERY %s - %s: %s.\n" |
3886 | msgstr "" | 2950 | msgstr "" |
3887 | 2951 | ||
3888 | #: plugins/check_pgsql.c:575 | ||
3889 | msgid "Error with query" | 2952 | msgid "Error with query" |
3890 | msgstr "" | 2953 | msgstr "" |
3891 | 2954 | ||
3892 | #: plugins/check_pgsql.c:581 | ||
3893 | msgid "No rows returned" | 2955 | msgid "No rows returned" |
3894 | msgstr "" | 2956 | msgstr "" |
3895 | 2957 | ||
3896 | #: plugins/check_pgsql.c:586 | ||
3897 | msgid "No columns returned" | 2958 | msgid "No columns returned" |
3898 | msgstr "" | 2959 | msgstr "" |
3899 | 2960 | ||
3900 | #: plugins/check_pgsql.c:592 | ||
3901 | #, fuzzy | 2961 | #, fuzzy |
3902 | msgid "No data returned" | 2962 | msgid "No data returned" |
3903 | msgstr "Keine Daten empfangen %s\n" | 2963 | msgstr "Keine Daten empfangen %s\n" |
3904 | 2964 | ||
3905 | #: plugins/check_pgsql.c:601 | ||
3906 | msgid "Is not a numeric" | 2965 | msgid "Is not a numeric" |
3907 | msgstr "" | 2966 | msgstr "" |
3908 | 2967 | ||
3909 | #: plugins/check_pgsql.c:619 | ||
3910 | #, fuzzy, c-format | 2968 | #, fuzzy, c-format |
3911 | msgid "%s returned %f" | 2969 | msgid "%s returned %f" |
3912 | msgstr "%s hat %s zurückgegeben" | 2970 | msgstr "%s hat %s zurückgegeben" |
3913 | 2971 | ||
3914 | #: plugins/check_pgsql.c:622 | ||
3915 | #, fuzzy, c-format | 2972 | #, fuzzy, c-format |
3916 | msgid "'%s' returned %f" | 2973 | msgid "'%s' returned %f" |
3917 | msgstr "%s hat %s zurückgegeben" | 2974 | msgstr "%s hat %s zurückgegeben" |
3918 | 2975 | ||
3919 | #: plugins/check_ping.c:143 | ||
3920 | msgid "CRITICAL - Could not interpret output from ping command\n" | 2976 | msgid "CRITICAL - Could not interpret output from ping command\n" |
3921 | msgstr "" | 2977 | msgstr "" |
3922 | 2978 | ||
3923 | #: plugins/check_ping.c:159 | ||
3924 | #, c-format | 2979 | #, c-format |
3925 | msgid "PING %s - %sPacket loss = %d%%" | 2980 | msgid "PING %s - %sPacket loss = %d%%" |
3926 | msgstr "" | 2981 | msgstr "" |
3927 | 2982 | ||
3928 | #: plugins/check_ping.c:162 | ||
3929 | #, c-format | 2983 | #, c-format |
3930 | msgid "PING %s - %sPacket loss = %d%%, RTA = %2.2f ms" | 2984 | msgid "PING %s - %sPacket loss = %d%%, RTA = %2.2f ms" |
3931 | msgstr "" | 2985 | msgstr "" |
3932 | 2986 | ||
3933 | #: plugins/check_ping.c:263 | ||
3934 | msgid "Could not realloc() addresses\n" | 2987 | msgid "Could not realloc() addresses\n" |
3935 | msgstr "" | 2988 | msgstr "" |
3936 | 2989 | ||
3937 | #: plugins/check_ping.c:278 plugins/check_ping.c:358 | ||
3938 | #, c-format | 2990 | #, c-format |
3939 | msgid "<max_packets> (%s) must be a non-negative number\n" | 2991 | msgid "<max_packets> (%s) must be a non-negative number\n" |
3940 | msgstr "" | 2992 | msgstr "" |
3941 | 2993 | ||
3942 | #: plugins/check_ping.c:312 | ||
3943 | #, c-format | 2994 | #, c-format |
3944 | msgid "<wpl> (%s) must be an integer percentage\n" | 2995 | msgid "<wpl> (%s) must be an integer percentage\n" |
3945 | msgstr "" | 2996 | msgstr "" |
3946 | 2997 | ||
3947 | #: plugins/check_ping.c:323 | ||
3948 | #, c-format | 2998 | #, c-format |
3949 | msgid "<cpl> (%s) must be an integer percentage\n" | 2999 | msgid "<cpl> (%s) must be an integer percentage\n" |
3950 | msgstr "" | 3000 | msgstr "" |
3951 | 3001 | ||
3952 | #: plugins/check_ping.c:334 | ||
3953 | #, c-format | 3002 | #, c-format |
3954 | msgid "<wrta> (%s) must be a non-negative number\n" | 3003 | msgid "<wrta> (%s) must be a non-negative number\n" |
3955 | msgstr "" | 3004 | msgstr "" |
3956 | 3005 | ||
3957 | #: plugins/check_ping.c:345 | ||
3958 | #, c-format | 3006 | #, c-format |
3959 | msgid "<crta> (%s) must be a non-negative number\n" | 3007 | msgid "<crta> (%s) must be a non-negative number\n" |
3960 | msgstr "" | 3008 | msgstr "" |
3961 | 3009 | ||
3962 | #: plugins/check_ping.c:378 | ||
3963 | #, c-format | 3010 | #, c-format |
3964 | msgid "" | 3011 | msgid "" |
3965 | "%s: Warning threshold must be integer or percentage!\n" | 3012 | "%s: Warning threshold must be integer or percentage!\n" |
3966 | "\n" | 3013 | "\n" |
3967 | msgstr "" | 3014 | msgstr "" |
3968 | 3015 | ||
3969 | #: plugins/check_ping.c:391 | ||
3970 | #, c-format | 3016 | #, c-format |
3971 | msgid "<wrta> was not set\n" | 3017 | msgid "<wrta> was not set\n" |
3972 | msgstr "" | 3018 | msgstr "" |
3973 | 3019 | ||
3974 | #: plugins/check_ping.c:395 | ||
3975 | #, c-format | 3020 | #, c-format |
3976 | msgid "<crta> was not set\n" | 3021 | msgid "<crta> was not set\n" |
3977 | msgstr "" | 3022 | msgstr "" |
3978 | 3023 | ||
3979 | #: plugins/check_ping.c:399 | ||
3980 | #, c-format | 3024 | #, c-format |
3981 | msgid "<wpl> was not set\n" | 3025 | msgid "<wpl> was not set\n" |
3982 | msgstr "" | 3026 | msgstr "" |
3983 | 3027 | ||
3984 | #: plugins/check_ping.c:403 | ||
3985 | #, c-format | 3028 | #, c-format |
3986 | msgid "<cpl> was not set\n" | 3029 | msgid "<cpl> was not set\n" |
3987 | msgstr "" | 3030 | msgstr "" |
3988 | 3031 | ||
3989 | #: plugins/check_ping.c:407 | ||
3990 | #, c-format | 3032 | #, c-format |
3991 | msgid "<wrta> (%f) cannot be larger than <crta> (%f)\n" | 3033 | msgid "<wrta> (%f) cannot be larger than <crta> (%f)\n" |
3992 | msgstr "" | 3034 | msgstr "" |
3993 | 3035 | ||
3994 | #: plugins/check_ping.c:411 | ||
3995 | #, c-format | 3036 | #, c-format |
3996 | msgid "<wpl> (%d) cannot be larger than <cpl> (%d)\n" | 3037 | msgid "<wpl> (%d) cannot be larger than <cpl> (%d)\n" |
3997 | msgstr "" | 3038 | msgstr "" |
3998 | 3039 | ||
3999 | #: plugins/check_ping.c:448 | ||
4000 | #, c-format | 3040 | #, c-format |
4001 | msgid "Cannot open stderr for %s\n" | 3041 | msgid "Cannot open stderr for %s\n" |
4002 | msgstr "" | 3042 | msgstr "" |
4003 | 3043 | ||
4004 | #: plugins/check_ping.c:505 plugins/check_ping.c:507 | ||
4005 | msgid "System call sent warnings to stderr " | 3044 | msgid "System call sent warnings to stderr " |
4006 | msgstr "" | 3045 | msgstr "" |
4007 | 3046 | ||
4008 | #: plugins/check_ping.c:533 | ||
4009 | #, fuzzy, c-format | 3047 | #, fuzzy, c-format |
4010 | msgid "CRITICAL - Network Unreachable (%s)\n" | 3048 | msgid "CRITICAL - Network Unreachable (%s)\n" |
4011 | msgstr "CRITICAL - Netzwerk nicht erreichbar (%s)" | 3049 | msgstr "CRITICAL - Netzwerk nicht erreichbar (%s)" |
4012 | 3050 | ||
4013 | #: plugins/check_ping.c:535 | ||
4014 | #, fuzzy, c-format | 3051 | #, fuzzy, c-format |
4015 | msgid "CRITICAL - Host Unreachable (%s)\n" | 3052 | msgid "CRITICAL - Host Unreachable (%s)\n" |
4016 | msgstr "CRITICAL - Netzwerk nicht erreichbar (%s)" | 3053 | msgstr "CRITICAL - Netzwerk nicht erreichbar (%s)" |
4017 | 3054 | ||
4018 | #: plugins/check_ping.c:537 | ||
4019 | #, fuzzy, c-format | 3055 | #, fuzzy, c-format |
4020 | msgid "CRITICAL - Bogus ICMP: Port Unreachable (%s)\n" | 3056 | msgid "CRITICAL - Bogus ICMP: Port Unreachable (%s)\n" |
4021 | msgstr "CRITICAL - Netzwerk nicht erreichbar (%s)" | 3057 | msgstr "CRITICAL - Netzwerk nicht erreichbar (%s)" |
4022 | 3058 | ||
4023 | #: plugins/check_ping.c:539 | ||
4024 | #, fuzzy, c-format | 3059 | #, fuzzy, c-format |
4025 | msgid "CRITICAL - Bogus ICMP: Protocol Unreachable (%s)\n" | 3060 | msgid "CRITICAL - Bogus ICMP: Protocol Unreachable (%s)\n" |
4026 | msgstr "CRITICAL - Netzwerk nicht erreichbar (%s)" | 3061 | msgstr "CRITICAL - Netzwerk nicht erreichbar (%s)" |
4027 | 3062 | ||
4028 | #: plugins/check_ping.c:541 | ||
4029 | #, fuzzy, c-format | 3063 | #, fuzzy, c-format |
4030 | msgid "CRITICAL - Network Prohibited (%s)\n" | 3064 | msgid "CRITICAL - Network Prohibited (%s)\n" |
4031 | msgstr "CRITICAL - Netzwerk nicht erreichbar (%s)" | 3065 | msgstr "CRITICAL - Netzwerk nicht erreichbar (%s)" |
4032 | 3066 | ||
4033 | #: plugins/check_ping.c:543 | ||
4034 | #, fuzzy, c-format | 3067 | #, fuzzy, c-format |
4035 | msgid "CRITICAL - Host Prohibited (%s)\n" | 3068 | msgid "CRITICAL - Host Prohibited (%s)\n" |
4036 | msgstr "CRITICAL - Netzwerk nicht erreichbar (%s)" | 3069 | msgstr "CRITICAL - Netzwerk nicht erreichbar (%s)" |
4037 | 3070 | ||
4038 | #: plugins/check_ping.c:545 | ||
4039 | #, fuzzy, c-format | 3071 | #, fuzzy, c-format |
4040 | msgid "CRITICAL - Packet Filtered (%s)\n" | 3072 | msgid "CRITICAL - Packet Filtered (%s)\n" |
4041 | msgstr "CRITICAL - Netzwerk nicht erreichbar (%s)" | 3073 | msgstr "CRITICAL - Netzwerk nicht erreichbar (%s)" |
4042 | 3074 | ||
4043 | #: plugins/check_ping.c:547 | ||
4044 | #, fuzzy, c-format | 3075 | #, fuzzy, c-format |
4045 | msgid "CRITICAL - Host not found (%s)\n" | 3076 | msgid "CRITICAL - Host not found (%s)\n" |
4046 | msgstr "CRITICAL - Text nicht gefunden%s|%s %s\n" | 3077 | msgstr "CRITICAL - Text nicht gefunden%s|%s %s\n" |
4047 | 3078 | ||
4048 | #: plugins/check_ping.c:549 | ||
4049 | #, fuzzy, c-format | 3079 | #, fuzzy, c-format |
4050 | msgid "CRITICAL - Time to live exceeded (%s)\n" | 3080 | msgid "CRITICAL - Time to live exceeded (%s)\n" |
4051 | msgstr "CRITICAL - Netzwerk nicht erreichbar (%s)" | 3081 | msgstr "CRITICAL - Netzwerk nicht erreichbar (%s)" |
4052 | 3082 | ||
4053 | #: plugins/check_ping.c:551 | ||
4054 | #, fuzzy, c-format | 3083 | #, fuzzy, c-format |
4055 | msgid "CRITICAL - Destination Unreachable (%s)\n" | 3084 | msgid "CRITICAL - Destination Unreachable (%s)\n" |
4056 | msgstr "CRITICAL - Netzwerk nicht erreichbar (%s)" | 3085 | msgstr "CRITICAL - Netzwerk nicht erreichbar (%s)" |
4057 | 3086 | ||
4058 | #: plugins/check_ping.c:558 | ||
4059 | msgid "Unable to realloc warn_text\n" | 3087 | msgid "Unable to realloc warn_text\n" |
4060 | msgstr "" | 3088 | msgstr "" |
4061 | 3089 | ||
4062 | #: plugins/check_ping.c:575 | ||
4063 | #, c-format | 3090 | #, c-format |
4064 | msgid "Use ping to check connection statistics for a remote host." | 3091 | msgid "Use ping to check connection statistics for a remote host." |
4065 | msgstr "" | 3092 | msgstr "" |
4066 | 3093 | ||
4067 | #: plugins/check_ping.c:587 | ||
4068 | msgid "host to ping" | 3094 | msgid "host to ping" |
4069 | msgstr "" | 3095 | msgstr "" |
4070 | 3096 | ||
4071 | #: plugins/check_ping.c:593 | ||
4072 | msgid "number of ICMP ECHO packets to send" | 3097 | msgid "number of ICMP ECHO packets to send" |
4073 | msgstr "" | 3098 | msgstr "" |
4074 | 3099 | ||
4075 | #: plugins/check_ping.c:594 | ||
4076 | #, c-format | 3100 | #, c-format |
4077 | msgid "(Default: %d)\n" | 3101 | msgid "(Default: %d)\n" |
4078 | msgstr "" | 3102 | msgstr "" |
4079 | 3103 | ||
4080 | #: plugins/check_ping.c:596 | ||
4081 | msgid "show HTML in the plugin output (obsoleted by urlize)" | 3104 | msgid "show HTML in the plugin output (obsoleted by urlize)" |
4082 | msgstr "" | 3105 | msgstr "" |
4083 | 3106 | ||
4084 | #: plugins/check_ping.c:601 | ||
4085 | msgid "THRESHOLD is <rta>,<pl>% where <rta> is the round trip average travel" | 3107 | msgid "THRESHOLD is <rta>,<pl>% where <rta> is the round trip average travel" |
4086 | msgstr "" | 3108 | msgstr "" |
4087 | 3109 | ||
4088 | #: plugins/check_ping.c:602 | ||
4089 | msgid "time (ms) which triggers a WARNING or CRITICAL state, and <pl> is the" | 3110 | msgid "time (ms) which triggers a WARNING or CRITICAL state, and <pl> is the" |
4090 | msgstr "" | 3111 | msgstr "" |
4091 | 3112 | ||
4092 | #: plugins/check_ping.c:603 | ||
4093 | msgid "percentage of packet loss to trigger an alarm state." | 3113 | msgid "percentage of packet loss to trigger an alarm state." |
4094 | msgstr "" | 3114 | msgstr "" |
4095 | 3115 | ||
4096 | #: plugins/check_ping.c:606 | ||
4097 | #, fuzzy | 3116 | #, fuzzy |
4098 | msgid "" | 3117 | msgid "" |
4099 | "This plugin uses the ping command to probe the specified host for packet loss" | 3118 | "This plugin uses the ping command to probe the specified host for packet loss" |
4100 | msgstr "Dieses plugin testet Gameserververbindungen zum angegebenen Host." | 3119 | msgstr "Dieses plugin testet Gameserververbindungen zum angegebenen Host." |
4101 | 3120 | ||
4102 | #: plugins/check_ping.c:607 | ||
4103 | msgid "" | 3121 | msgid "" |
4104 | "(percentage) and round trip average (milliseconds). It can produce HTML " | 3122 | "(percentage) and round trip average (milliseconds). It can produce HTML " |
4105 | "output" | 3123 | "output" |
4106 | msgstr "" | 3124 | msgstr "" |
4107 | 3125 | ||
4108 | #: plugins/check_ping.c:608 | ||
4109 | msgid "" | 3126 | msgid "" |
4110 | "linking to a traceroute CGI contributed by Ian Cass. The CGI can be found in" | 3127 | "linking to a traceroute CGI contributed by Ian Cass. The CGI can be found in" |
4111 | msgstr "" | 3128 | msgstr "" |
4112 | 3129 | ||
4113 | #: plugins/check_ping.c:609 | ||
4114 | msgid "the contrib area of the downloads section at http://www.nagios.org/" | 3130 | msgid "the contrib area of the downloads section at http://www.nagios.org/" |
4115 | msgstr "" | 3131 | msgstr "" |
4116 | 3132 | ||
4117 | #: plugins/check_procs.c:197 | ||
4118 | #, c-format | 3133 | #, c-format |
4119 | msgid "CMD: %s\n" | 3134 | msgid "CMD: %s\n" |
4120 | msgstr "" | 3135 | msgstr "" |
4121 | 3136 | ||
4122 | #: plugins/check_procs.c:202 | ||
4123 | msgid "System call sent warnings to stderr" | 3137 | msgid "System call sent warnings to stderr" |
4124 | msgstr "" | 3138 | msgstr "" |
4125 | 3139 | ||
4126 | #: plugins/check_procs.c:349 | ||
4127 | #, c-format | 3140 | #, c-format |
4128 | msgid "Not parseable: %s" | 3141 | msgid "Not parseable: %s" |
4129 | msgstr "" | 3142 | msgstr "" |
4130 | 3143 | ||
4131 | #: plugins/check_procs.c:354 | ||
4132 | #, c-format | 3144 | #, c-format |
4133 | msgid "Unable to read output\n" | 3145 | msgid "Unable to read output\n" |
4134 | msgstr "" | 3146 | msgstr "" |
4135 | 3147 | ||
4136 | #: plugins/check_procs.c:371 | ||
4137 | #, c-format | 3148 | #, c-format |
4138 | msgid "%d warn out of " | 3149 | msgid "%d warn out of " |
4139 | msgstr "" | 3150 | msgstr "" |
4140 | 3151 | ||
4141 | #: plugins/check_procs.c:376 | ||
4142 | #, c-format | 3152 | #, c-format |
4143 | msgid "%d crit, %d warn out of " | 3153 | msgid "%d crit, %d warn out of " |
4144 | msgstr "" | 3154 | msgstr "" |
4145 | 3155 | ||
4146 | #: plugins/check_procs.c:382 | ||
4147 | #, c-format | 3156 | #, c-format |
4148 | msgid " with %s" | 3157 | msgid " with %s" |
4149 | msgstr "" | 3158 | msgstr "" |
4150 | 3159 | ||
4151 | #: plugins/check_procs.c:477 | ||
4152 | #, fuzzy | 3160 | #, fuzzy |
4153 | msgid "Parent Process ID must be an integer!" | 3161 | msgid "Parent Process ID must be an integer!" |
4154 | msgstr "Argument für check_dummy muss ein Integer sein" | 3162 | msgstr "Argument für check_dummy muss ein Integer sein" |
4155 | 3163 | ||
4156 | #: plugins/check_procs.c:483 plugins/check_procs.c:627 | ||
4157 | #, c-format | 3164 | #, c-format |
4158 | msgid "%s%sSTATE = %s" | 3165 | msgid "%s%sSTATE = %s" |
4159 | msgstr "" | 3166 | msgstr "" |
4160 | 3167 | ||
4161 | #: plugins/check_procs.c:492 | ||
4162 | #, fuzzy | 3168 | #, fuzzy |
4163 | msgid "UID was not found" | 3169 | msgid "UID was not found" |
4164 | msgstr "%s [%s nicht gefunden]" | 3170 | msgstr "%s [%s nicht gefunden]" |
4165 | 3171 | ||
4166 | #: plugins/check_procs.c:498 | ||
4167 | #, fuzzy | 3172 | #, fuzzy |
4168 | msgid "User name was not found" | 3173 | msgid "User name was not found" |
4169 | msgstr "%s [%s nicht gefunden]" | 3174 | msgstr "%s [%s nicht gefunden]" |
4170 | 3175 | ||
4171 | #: plugins/check_procs.c:513 | ||
4172 | #, c-format | 3176 | #, c-format |
4173 | msgid "%s%scommand name '%s'" | 3177 | msgid "%s%scommand name '%s'" |
4174 | msgstr "" | 3178 | msgstr "" |
4175 | 3179 | ||
4176 | #: plugins/check_procs.c:522 | ||
4177 | #, c-format | 3180 | #, c-format |
4178 | msgid "%s%sexclude progs '%s'" | 3181 | msgid "%s%sexclude progs '%s'" |
4179 | msgstr "" | 3182 | msgstr "" |
4180 | 3183 | ||
4181 | #: plugins/check_procs.c:565 | ||
4182 | #, fuzzy | 3184 | #, fuzzy |
4183 | msgid "RSS must be an integer!" | 3185 | msgid "RSS must be an integer!" |
4184 | msgstr "skip lines muss ein Integer sein" | 3186 | msgstr "skip lines muss ein Integer sein" |
4185 | 3187 | ||
4186 | #: plugins/check_procs.c:572 | ||
4187 | #, fuzzy | 3188 | #, fuzzy |
4188 | msgid "VSZ must be an integer!" | 3189 | msgid "VSZ must be an integer!" |
4189 | msgstr "skip lines muss ein Integer sein" | 3190 | msgstr "skip lines muss ein Integer sein" |
4190 | 3191 | ||
4191 | #: plugins/check_procs.c:580 | ||
4192 | msgid "PCPU must be a float!" | 3192 | msgid "PCPU must be a float!" |
4193 | msgstr "" | 3193 | msgstr "" |
4194 | 3194 | ||
4195 | #: plugins/check_procs.c:604 | ||
4196 | msgid "Metric must be one of PROCS, VSZ, RSS, CPU, ELAPSED!" | 3195 | msgid "Metric must be one of PROCS, VSZ, RSS, CPU, ELAPSED!" |
4197 | msgstr "" | 3196 | msgstr "" |
4198 | 3197 | ||
4199 | #: plugins/check_procs.c:735 | ||
4200 | msgid "" | 3198 | msgid "" |
4201 | "Checks all processes and generates WARNING or CRITICAL states if the " | 3199 | "Checks all processes and generates WARNING or CRITICAL states if the " |
4202 | "specified" | 3200 | "specified" |
4203 | msgstr "" | 3201 | msgstr "" |
4204 | 3202 | ||
4205 | #: plugins/check_procs.c:736 | ||
4206 | msgid "" | 3203 | msgid "" |
4207 | "metric is outside the required threshold ranges. The metric defaults to " | 3204 | "metric is outside the required threshold ranges. The metric defaults to " |
4208 | "number" | 3205 | "number" |
4209 | msgstr "" | 3206 | msgstr "" |
4210 | 3207 | ||
4211 | #: plugins/check_procs.c:737 | ||
4212 | msgid "" | 3208 | msgid "" |
4213 | "of processes. Search filters can be applied to limit the processes to check." | 3209 | "of processes. Search filters can be applied to limit the processes to check." |
4214 | msgstr "" | 3210 | msgstr "" |
4215 | 3211 | ||
4216 | #: plugins/check_procs.c:746 | ||
4217 | msgid "Generate warning state if metric is outside this range" | 3212 | msgid "Generate warning state if metric is outside this range" |
4218 | msgstr "" | 3213 | msgstr "" |
4219 | 3214 | ||
4220 | #: plugins/check_procs.c:748 | ||
4221 | msgid "Generate critical state if metric is outside this range" | 3215 | msgid "Generate critical state if metric is outside this range" |
4222 | msgstr "" | 3216 | msgstr "" |
4223 | 3217 | ||
4224 | #: plugins/check_procs.c:750 | ||
4225 | msgid "Check thresholds against metric. Valid types:" | 3218 | msgid "Check thresholds against metric. Valid types:" |
4226 | msgstr "" | 3219 | msgstr "" |
4227 | 3220 | ||
4228 | #: plugins/check_procs.c:751 | ||
4229 | msgid "PROCS - number of processes (default)" | 3221 | msgid "PROCS - number of processes (default)" |
4230 | msgstr "" | 3222 | msgstr "" |
4231 | 3223 | ||
4232 | #: plugins/check_procs.c:752 | ||
4233 | msgid "VSZ - virtual memory size" | 3224 | msgid "VSZ - virtual memory size" |
4234 | msgstr "" | 3225 | msgstr "" |
4235 | 3226 | ||
4236 | #: plugins/check_procs.c:753 | ||
4237 | msgid "RSS - resident set memory size" | 3227 | msgid "RSS - resident set memory size" |
4238 | msgstr "" | 3228 | msgstr "" |
4239 | 3229 | ||
4240 | #: plugins/check_procs.c:754 | ||
4241 | msgid "CPU - percentage CPU" | 3230 | msgid "CPU - percentage CPU" |
4242 | msgstr "" | 3231 | msgstr "" |
4243 | 3232 | ||
4244 | #: plugins/check_procs.c:757 | ||
4245 | msgid "ELAPSED - time elapsed in seconds" | 3233 | msgid "ELAPSED - time elapsed in seconds" |
4246 | msgstr "" | 3234 | msgstr "" |
4247 | 3235 | ||
4248 | #: plugins/check_procs.c:762 | ||
4249 | msgid "Extra information. Up to 3 verbosity levels" | 3236 | msgid "Extra information. Up to 3 verbosity levels" |
4250 | msgstr "" | 3237 | msgstr "" |
4251 | 3238 | ||
4252 | #: plugins/check_procs.c:765 | ||
4253 | msgid "Filter own process the traditional way by PID instead of /proc/pid/exe" | 3239 | msgid "Filter own process the traditional way by PID instead of /proc/pid/exe" |
4254 | msgstr "" | 3240 | msgstr "" |
4255 | 3241 | ||
4256 | #: plugins/check_procs.c:770 | ||
4257 | msgid "Only scan for processes that have, in the output of `ps`, one or" | 3242 | msgid "Only scan for processes that have, in the output of `ps`, one or" |
4258 | msgstr "" | 3243 | msgstr "" |
4259 | 3244 | ||
4260 | #: plugins/check_procs.c:771 | ||
4261 | msgid "more of the status flags you specify (for example R, Z, S, RS," | 3245 | msgid "more of the status flags you specify (for example R, Z, S, RS," |
4262 | msgstr "" | 3246 | msgstr "" |
4263 | 3247 | ||
4264 | #: plugins/check_procs.c:772 | ||
4265 | msgid "RSZDT, plus others based on the output of your 'ps' command)." | 3248 | msgid "RSZDT, plus others based on the output of your 'ps' command)." |
4266 | msgstr "" | 3249 | msgstr "" |
4267 | 3250 | ||
4268 | #: plugins/check_procs.c:774 | ||
4269 | msgid "Only scan for children of the parent process ID indicated." | 3251 | msgid "Only scan for children of the parent process ID indicated." |
4270 | msgstr "" | 3252 | msgstr "" |
4271 | 3253 | ||
4272 | #: plugins/check_procs.c:776 | ||
4273 | msgid "Only scan for processes with VSZ higher than indicated." | 3254 | msgid "Only scan for processes with VSZ higher than indicated." |
4274 | msgstr "" | 3255 | msgstr "" |
4275 | 3256 | ||
4276 | #: plugins/check_procs.c:778 | ||
4277 | msgid "Only scan for processes with RSS higher than indicated." | 3257 | msgid "Only scan for processes with RSS higher than indicated." |
4278 | msgstr "" | 3258 | msgstr "" |
4279 | 3259 | ||
4280 | #: plugins/check_procs.c:780 | ||
4281 | msgid "Only scan for processes with PCPU higher than indicated." | 3260 | msgid "Only scan for processes with PCPU higher than indicated." |
4282 | msgstr "" | 3261 | msgstr "" |
4283 | 3262 | ||
4284 | #: plugins/check_procs.c:782 | ||
4285 | msgid "Only scan for processes with user name or ID indicated." | 3263 | msgid "Only scan for processes with user name or ID indicated." |
4286 | msgstr "" | 3264 | msgstr "" |
4287 | 3265 | ||
4288 | #: plugins/check_procs.c:784 | ||
4289 | msgid "Only scan for processes with args that contain STRING." | 3266 | msgid "Only scan for processes with args that contain STRING." |
4290 | msgstr "" | 3267 | msgstr "" |
4291 | 3268 | ||
4292 | #: plugins/check_procs.c:786 | ||
4293 | msgid "Only scan for processes with args that contain the regex STRING." | 3269 | msgid "Only scan for processes with args that contain the regex STRING." |
4294 | msgstr "" | 3270 | msgstr "" |
4295 | 3271 | ||
4296 | #: plugins/check_procs.c:788 | ||
4297 | msgid "Only scan for exact matches of COMMAND (without path)." | 3272 | msgid "Only scan for exact matches of COMMAND (without path)." |
4298 | msgstr "" | 3273 | msgstr "" |
4299 | 3274 | ||
4300 | #: plugins/check_procs.c:790 | ||
4301 | msgid "Exclude processes which match this comma separated list" | 3275 | msgid "Exclude processes which match this comma separated list" |
4302 | msgstr "" | 3276 | msgstr "" |
4303 | 3277 | ||
4304 | #: plugins/check_procs.c:792 | ||
4305 | msgid "Only scan for non kernel threads (works on Linux only)." | 3278 | msgid "Only scan for non kernel threads (works on Linux only)." |
4306 | msgstr "" | 3279 | msgstr "" |
4307 | 3280 | ||
4308 | #: plugins/check_procs.c:794 | ||
4309 | #, c-format | 3281 | #, c-format |
4310 | msgid "" | 3282 | msgid "" |
4311 | "\n" | 3283 | "\n" |
@@ -4315,7 +3287,6 @@ msgid "" | |||
4315 | "\n" | 3287 | "\n" |
4316 | msgstr "" | 3288 | msgstr "" |
4317 | 3289 | ||
4318 | #: plugins/check_procs.c:799 | ||
4319 | #, c-format | 3290 | #, c-format |
4320 | msgid "" | 3291 | msgid "" |
4321 | "This plugin checks the number of currently running processes and\n" | 3292 | "This plugin checks the number of currently running processes and\n" |
@@ -4326,1265 +3297,993 @@ msgid "" | |||
4326 | "\n" | 3297 | "\n" |
4327 | msgstr "" | 3298 | msgstr "" |
4328 | 3299 | ||
4329 | #: plugins/check_procs.c:808 | ||
4330 | msgid "Warning if not two processes with command name portsentry." | 3300 | msgid "Warning if not two processes with command name portsentry." |
4331 | msgstr "" | 3301 | msgstr "" |
4332 | 3302 | ||
4333 | #: plugins/check_procs.c:809 | ||
4334 | msgid "Critical if < 2 or > 1024 processes" | 3303 | msgid "Critical if < 2 or > 1024 processes" |
4335 | msgstr "" | 3304 | msgstr "" |
4336 | 3305 | ||
4337 | #: plugins/check_procs.c:811 | ||
4338 | msgid "Critical if not at least 1 process with command sshd" | 3306 | msgid "Critical if not at least 1 process with command sshd" |
4339 | msgstr "" | 3307 | msgstr "" |
4340 | 3308 | ||
4341 | #: plugins/check_procs.c:813 | ||
4342 | msgid "Warning if > 1024 processes with command name sshd." | 3309 | msgid "Warning if > 1024 processes with command name sshd." |
4343 | msgstr "" | 3310 | msgstr "" |
4344 | 3311 | ||
4345 | #: plugins/check_procs.c:814 | ||
4346 | msgid "Critical if < 1 processes with command name sshd." | 3312 | msgid "Critical if < 1 processes with command name sshd." |
4347 | msgstr "" | 3313 | msgstr "" |
4348 | 3314 | ||
4349 | #: plugins/check_procs.c:816 | ||
4350 | msgid "Warning alert if > 10 processes with command arguments containing" | 3315 | msgid "Warning alert if > 10 processes with command arguments containing" |
4351 | msgstr "" | 3316 | msgstr "" |
4352 | 3317 | ||
4353 | #: plugins/check_procs.c:817 | ||
4354 | msgid "'/usr/local/bin/perl' and owned by root" | 3318 | msgid "'/usr/local/bin/perl' and owned by root" |
4355 | msgstr "" | 3319 | msgstr "" |
4356 | 3320 | ||
4357 | #: plugins/check_procs.c:819 | ||
4358 | msgid "Alert if VSZ of any processes over 50K or 100K" | 3321 | msgid "Alert if VSZ of any processes over 50K or 100K" |
4359 | msgstr "" | 3322 | msgstr "" |
4360 | 3323 | ||
4361 | #: plugins/check_procs.c:821 | ||
4362 | msgid "Alert if CPU of any processes over 10% or 20%" | 3324 | msgid "Alert if CPU of any processes over 10% or 20%" |
4363 | msgstr "" | 3325 | msgstr "" |
4364 | 3326 | ||
4365 | #: plugins/check_radius.c:181 | ||
4366 | msgid "Config file error\n" | 3327 | msgid "Config file error\n" |
4367 | msgstr "" | 3328 | msgstr "" |
4368 | 3329 | ||
4369 | #: plugins/check_radius.c:190 | ||
4370 | #, fuzzy | 3330 | #, fuzzy |
4371 | msgid "Out of Memory?\n" | 3331 | msgid "Out of Memory?\n" |
4372 | msgstr "Kein Papier" | 3332 | msgstr "Kein Papier" |
4373 | 3333 | ||
4374 | #: plugins/check_radius.c:194 | ||
4375 | #, fuzzy | 3334 | #, fuzzy |
4376 | msgid "Invalid NAS-Identifier\n" | 3335 | msgid "Invalid NAS-Identifier\n" |
4377 | msgstr "Ungültige(r) Hostname/Adresse" | 3336 | msgstr "Ungültige(r) Hostname/Adresse" |
4378 | 3337 | ||
4379 | #: plugins/check_radius.c:199 plugins/check_smtp.c:156 | ||
4380 | #, c-format | 3338 | #, c-format |
4381 | msgid "gethostname() failed!\n" | 3339 | msgid "gethostname() failed!\n" |
4382 | msgstr "" | 3340 | msgstr "" |
4383 | 3341 | ||
4384 | #: plugins/check_radius.c:203 plugins/check_radius.c:206 | ||
4385 | #, fuzzy | 3342 | #, fuzzy |
4386 | msgid "Invalid NAS-IP-Address\n" | 3343 | msgid "Invalid NAS-IP-Address\n" |
4387 | msgstr "Ungültige(r) Hostname/Adresse" | 3344 | msgstr "Ungültige(r) Hostname/Adresse" |
4388 | 3345 | ||
4389 | #: plugins/check_radius.c:217 | ||
4390 | msgid "Timeout\n" | 3346 | msgid "Timeout\n" |
4391 | msgstr "" | 3347 | msgstr "" |
4392 | 3348 | ||
4393 | #: plugins/check_radius.c:219 | ||
4394 | msgid "Auth Error\n" | 3349 | msgid "Auth Error\n" |
4395 | msgstr "" | 3350 | msgstr "" |
4396 | 3351 | ||
4397 | #: plugins/check_radius.c:221 | ||
4398 | #, fuzzy | 3352 | #, fuzzy |
4399 | msgid "Auth Failed\n" | 3353 | msgid "Auth Failed\n" |
4400 | msgstr "Fehlgeschlagen" | 3354 | msgstr "Fehlgeschlagen" |
4401 | 3355 | ||
4402 | #: plugins/check_radius.c:223 | ||
4403 | msgid "Bad Response\n" | 3356 | msgid "Bad Response\n" |
4404 | msgstr "" | 3357 | msgstr "" |
4405 | 3358 | ||
4406 | #: plugins/check_radius.c:227 | ||
4407 | msgid "Auth OK\n" | 3359 | msgid "Auth OK\n" |
4408 | msgstr "" | 3360 | msgstr "" |
4409 | 3361 | ||
4410 | #: plugins/check_radius.c:228 | ||
4411 | #, fuzzy, c-format | 3362 | #, fuzzy, c-format |
4412 | msgid "Unexpected result code %d" | 3363 | msgid "Unexpected result code %d" |
4413 | msgstr "Erwartet: %s aber: %s erhalten" | 3364 | msgstr "Erwartet: %s aber: %s erhalten" |
4414 | 3365 | ||
4415 | #: plugins/check_radius.c:317 | ||
4416 | msgid "Number of retries must be a positive integer" | 3366 | msgid "Number of retries must be a positive integer" |
4417 | msgstr "" | 3367 | msgstr "" |
4418 | 3368 | ||
4419 | #: plugins/check_radius.c:331 | ||
4420 | msgid "User not specified" | 3369 | msgid "User not specified" |
4421 | msgstr "" | 3370 | msgstr "" |
4422 | 3371 | ||
4423 | #: plugins/check_radius.c:333 | ||
4424 | msgid "Password not specified" | 3372 | msgid "Password not specified" |
4425 | msgstr "" | 3373 | msgstr "" |
4426 | 3374 | ||
4427 | #: plugins/check_radius.c:335 | ||
4428 | msgid "Configuration file not specified" | 3375 | msgid "Configuration file not specified" |
4429 | msgstr "" | 3376 | msgstr "" |
4430 | 3377 | ||
4431 | #: plugins/check_radius.c:353 | ||
4432 | #, fuzzy | 3378 | #, fuzzy |
4433 | msgid "Tests to see if a RADIUS server is accepting connections." | 3379 | msgid "Tests to see if a RADIUS server is accepting connections." |
4434 | msgstr "Dieses plugin testet Gameserververbindungen zum angegebenen Host." | 3380 | msgstr "Dieses plugin testet Gameserververbindungen zum angegebenen Host." |
4435 | 3381 | ||
4436 | #: plugins/check_radius.c:365 | ||
4437 | msgid "The user to authenticate" | 3382 | msgid "The user to authenticate" |
4438 | msgstr "" | 3383 | msgstr "" |
4439 | 3384 | ||
4440 | #: plugins/check_radius.c:367 | ||
4441 | msgid "Password for authentication (SECURITY RISK)" | 3385 | msgid "Password for authentication (SECURITY RISK)" |
4442 | msgstr "" | 3386 | msgstr "" |
4443 | 3387 | ||
4444 | #: plugins/check_radius.c:369 | ||
4445 | msgid "NAS identifier" | 3388 | msgid "NAS identifier" |
4446 | msgstr "" | 3389 | msgstr "" |
4447 | 3390 | ||
4448 | #: plugins/check_radius.c:371 | ||
4449 | msgid "NAS IP Address" | 3391 | msgid "NAS IP Address" |
4450 | msgstr "" | 3392 | msgstr "" |
4451 | 3393 | ||
4452 | #: plugins/check_radius.c:373 | ||
4453 | msgid "Configuration file" | 3394 | msgid "Configuration file" |
4454 | msgstr "" | 3395 | msgstr "" |
4455 | 3396 | ||
4456 | #: plugins/check_radius.c:375 | ||
4457 | msgid "Response string to expect from the server" | 3397 | msgid "Response string to expect from the server" |
4458 | msgstr "" | 3398 | msgstr "" |
4459 | 3399 | ||
4460 | #: plugins/check_radius.c:377 | ||
4461 | msgid "Number of times to retry a failed connection" | 3400 | msgid "Number of times to retry a failed connection" |
4462 | msgstr "" | 3401 | msgstr "" |
4463 | 3402 | ||
4464 | #: plugins/check_radius.c:382 | ||
4465 | #, fuzzy | 3403 | #, fuzzy |
4466 | msgid "" | 3404 | msgid "" |
4467 | "This plugin tests a RADIUS server to see if it is accepting connections." | 3405 | "This plugin tests a RADIUS server to see if it is accepting connections." |
4468 | msgstr "Dieses plugin testet Gameserververbindungen zum angegebenen Host." | 3406 | msgstr "Dieses plugin testet Gameserververbindungen zum angegebenen Host." |
4469 | 3407 | ||
4470 | #: plugins/check_radius.c:383 | ||
4471 | msgid "" | 3408 | msgid "" |
4472 | "The server to test must be specified in the invocation, as well as a user" | 3409 | "The server to test must be specified in the invocation, as well as a user" |
4473 | msgstr "" | 3410 | msgstr "" |
4474 | 3411 | ||
4475 | #: plugins/check_radius.c:384 | 3412 | msgid "name and password. A configuration file must be present. The format of" |
4476 | msgid "" | ||
4477 | "name and password. A configuration file may also be present. The format of" | ||
4478 | msgstr "" | 3413 | msgstr "" |
4479 | 3414 | ||
4480 | #: plugins/check_radius.c:385 | ||
4481 | msgid "" | 3415 | msgid "" |
4482 | "the configuration file is described in the radiusclient library sources." | 3416 | "the configuration file is described in the radiusclient library sources." |
4483 | msgstr "" | 3417 | msgstr "" |
4484 | 3418 | ||
4485 | #: plugins/check_radius.c:386 | ||
4486 | msgid "The password option presents a substantial security issue because the" | 3419 | msgid "The password option presents a substantial security issue because the" |
4487 | msgstr "" | 3420 | msgstr "" |
4488 | 3421 | ||
4489 | #: plugins/check_radius.c:387 | ||
4490 | msgid "" | 3422 | msgid "" |
4491 | "password can possibly be determined by careful watching of the command line" | 3423 | "password can possibly be determined by careful watching of the command line" |
4492 | msgstr "" | 3424 | msgstr "" |
4493 | 3425 | ||
4494 | #: plugins/check_radius.c:388 | ||
4495 | msgid "in a process listing. This risk is exacerbated because the plugin will" | 3426 | msgid "in a process listing. This risk is exacerbated because the plugin will" |
4496 | msgstr "" | 3427 | msgstr "" |
4497 | 3428 | ||
4498 | #: plugins/check_radius.c:389 | ||
4499 | msgid "" | 3429 | msgid "" |
4500 | "typically be executed at regular predictable intervals. Please be sure that" | 3430 | "typically be executed at regular predictable intervals. Please be sure that" |
4501 | msgstr "" | 3431 | msgstr "" |
4502 | 3432 | ||
4503 | #: plugins/check_radius.c:390 | ||
4504 | msgid "the password used does not allow access to sensitive system resources." | 3433 | msgid "the password used does not allow access to sensitive system resources." |
4505 | msgstr "" | 3434 | msgstr "" |
4506 | 3435 | ||
4507 | #: plugins/check_real.c:91 | ||
4508 | #, c-format | 3436 | #, c-format |
4509 | msgid "Unable to connect to %s on port %d\n" | 3437 | msgid "Unable to connect to %s on port %d\n" |
4510 | msgstr "" | 3438 | msgstr "" |
4511 | 3439 | ||
4512 | #: plugins/check_real.c:113 | ||
4513 | #, c-format | 3440 | #, c-format |
4514 | msgid "No data received from %s\n" | 3441 | msgid "No data received from %s\n" |
4515 | msgstr "" | 3442 | msgstr "" |
4516 | 3443 | ||
4517 | #: plugins/check_real.c:118 plugins/check_real.c:192 | ||
4518 | #, fuzzy | 3444 | #, fuzzy |
4519 | msgid "Invalid REAL response received from host" | 3445 | msgid "Invalid REAL response received from host" |
4520 | msgstr "Ungültige HTTP Antwort von Host empfangen\n" | 3446 | msgstr "Ungültige HTTP Antwort von Host empfangen\n" |
4521 | 3447 | ||
4522 | #: plugins/check_real.c:120 plugins/check_real.c:194 | ||
4523 | #, c-format | 3448 | #, c-format |
4524 | msgid "Invalid REAL response received from host on port %d\n" | 3449 | msgid "Invalid REAL response received from host on port %d\n" |
4525 | msgstr "" | 3450 | msgstr "" |
4526 | 3451 | ||
4527 | #: plugins/check_real.c:185 plugins/check_tcp.c:315 | ||
4528 | #, c-format | 3452 | #, c-format |
4529 | msgid "No data received from host\n" | 3453 | msgid "No data received from host\n" |
4530 | msgstr "" | 3454 | msgstr "" |
4531 | 3455 | ||
4532 | #: plugins/check_real.c:248 | ||
4533 | #, c-format | 3456 | #, c-format |
4534 | msgid "REAL %s - %d second response time\n" | 3457 | msgid "REAL %s - %d second response time\n" |
4535 | msgstr "" | 3458 | msgstr "" |
4536 | 3459 | ||
4537 | #: plugins/check_real.c:337 plugins/check_ups.c:539 | ||
4538 | msgid "Warning time must be a positive integer" | 3460 | msgid "Warning time must be a positive integer" |
4539 | msgstr "Warnung time muss ein positiver Integer sein" | 3461 | msgstr "Warnung time muss ein positiver Integer sein" |
4540 | 3462 | ||
4541 | #: plugins/check_real.c:346 plugins/check_ups.c:530 | ||
4542 | msgid "Critical time must be a positive integer" | 3463 | msgid "Critical time must be a positive integer" |
4543 | msgstr "Critical time muss ein positiver Integer sein" | 3464 | msgstr "Critical time muss ein positiver Integer sein" |
4544 | 3465 | ||
4545 | #: plugins/check_real.c:382 | ||
4546 | #, fuzzy | 3466 | #, fuzzy |
4547 | msgid "You must provide a server to check" | 3467 | msgid "You must provide a server to check" |
4548 | msgstr "%s: Hostname muss angegeben werden\n" | 3468 | msgstr "%s: Hostname muss angegeben werden\n" |
4549 | 3469 | ||
4550 | #: plugins/check_real.c:414 | ||
4551 | #, fuzzy | 3470 | #, fuzzy |
4552 | msgid "This plugin tests the REAL service on the specified host." | 3471 | msgid "This plugin tests the REAL service on the specified host." |
4553 | msgstr "" | 3472 | msgstr "" |
4554 | "Testet den DNS Dienst auf dem angegebenen Host mit dig\n" | 3473 | "Testet den DNS Dienst auf dem angegebenen Host mit dig\n" |
4555 | "\n" | 3474 | "\n" |
4556 | 3475 | ||
4557 | #: plugins/check_real.c:426 | ||
4558 | msgid "Connect to this url" | 3476 | msgid "Connect to this url" |
4559 | msgstr "" | 3477 | msgstr "" |
4560 | 3478 | ||
4561 | #: plugins/check_real.c:428 | ||
4562 | #, c-format | 3479 | #, c-format |
4563 | msgid "String to expect in first line of server response (default: %s)\n" | 3480 | msgid "String to expect in first line of server response (default: %s)\n" |
4564 | msgstr "" | 3481 | msgstr "" |
4565 | 3482 | ||
4566 | #: plugins/check_real.c:438 | ||
4567 | #, fuzzy | 3483 | #, fuzzy |
4568 | msgid "This plugin will attempt to open an RTSP connection with the host." | 3484 | msgid "This plugin will attempt to open an RTSP connection with the host." |
4569 | msgstr "Dieses plugin testet Gameserververbindungen zum angegebenen Host." | 3485 | msgstr "Dieses plugin testet Gameserververbindungen zum angegebenen Host." |
4570 | 3486 | ||
4571 | #: plugins/check_real.c:439 plugins/check_smtp.c:878 | ||
4572 | msgid "Successful connects return STATE_OK, refusals and timeouts return" | 3487 | msgid "Successful connects return STATE_OK, refusals and timeouts return" |
4573 | msgstr "" | 3488 | msgstr "" |
4574 | 3489 | ||
4575 | #: plugins/check_real.c:440 | ||
4576 | msgid "" | 3490 | msgid "" |
4577 | "STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful connects," | 3491 | "STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful connects," |
4578 | msgstr "" | 3492 | msgstr "" |
4579 | 3493 | ||
4580 | #: plugins/check_real.c:441 | ||
4581 | msgid "" | 3494 | msgid "" |
4582 | "but incorrect response messages from the host result in STATE_WARNING return" | 3495 | "but incorrect response messages from the host result in STATE_WARNING return" |
4583 | msgstr "" | 3496 | msgstr "" |
4584 | 3497 | ||
4585 | #: plugins/check_real.c:442 | ||
4586 | msgid "values." | 3498 | msgid "values." |
4587 | msgstr "" | 3499 | msgstr "" |
4588 | 3500 | ||
4589 | #: plugins/check_smtp.c:152 plugins/check_swap.c:283 plugins/check_swap.c:289 | ||
4590 | #, c-format | 3501 | #, c-format |
4591 | msgid "malloc() failed!\n" | 3502 | msgid "malloc() failed!\n" |
4592 | msgstr "" | 3503 | msgstr "" |
4593 | 3504 | ||
4594 | #: plugins/check_smtp.c:200 plugins/check_smtp.c:212 | ||
4595 | #, c-format | 3505 | #, c-format |
4596 | msgid "recv() failed\n" | 3506 | msgid "CRITICAL - Cannot create SSL context.\n" |
4597 | msgstr "" | 3507 | msgstr "" |
4598 | 3508 | ||
4599 | #: plugins/check_smtp.c:222 | ||
4600 | #, c-format | 3509 | #, c-format |
4601 | msgid "WARNING - TLS not supported by server\n" | 3510 | msgid "recv() failed\n" |
4602 | msgstr "" | 3511 | msgstr "" |
4603 | 3512 | ||
4604 | #: plugins/check_smtp.c:234 | ||
4605 | #, c-format | 3513 | #, c-format |
4606 | msgid "Server does not support STARTTLS\n" | 3514 | msgid "WARNING - TLS not supported by server\n" |
4607 | msgstr "" | 3515 | msgstr "" |
4608 | 3516 | ||
4609 | #: plugins/check_smtp.c:240 | ||
4610 | #, c-format | 3517 | #, c-format |
4611 | msgid "CRITICAL - Cannot create SSL context.\n" | 3518 | msgid "Server does not support STARTTLS\n" |
4612 | msgstr "" | 3519 | msgstr "" |
4613 | 3520 | ||
4614 | #: plugins/check_smtp.c:260 | ||
4615 | msgid "SMTP UNKNOWN - Cannot send EHLO command via TLS." | 3521 | msgid "SMTP UNKNOWN - Cannot send EHLO command via TLS." |
4616 | msgstr "" | 3522 | msgstr "" |
4617 | 3523 | ||
4618 | #: plugins/check_smtp.c:265 | ||
4619 | #, c-format | 3524 | #, c-format |
4620 | msgid "sent %s" | 3525 | msgid "sent %s" |
4621 | msgstr "" | 3526 | msgstr "" |
4622 | 3527 | ||
4623 | #: plugins/check_smtp.c:267 | ||
4624 | msgid "SMTP UNKNOWN - Cannot read EHLO response via TLS." | 3528 | msgid "SMTP UNKNOWN - Cannot read EHLO response via TLS." |
4625 | msgstr "" | 3529 | msgstr "" |
4626 | 3530 | ||
4627 | #: plugins/check_smtp.c:297 | ||
4628 | #, fuzzy, c-format | 3531 | #, fuzzy, c-format |
4629 | msgid "Invalid SMTP response received from host: %s\n" | 3532 | msgid "Invalid SMTP response received from host: %s\n" |
4630 | msgstr "Ungültige HTTP Antwort von Host empfangen\n" | 3533 | msgstr "Ungültige HTTP Antwort von Host empfangen\n" |
4631 | 3534 | ||
4632 | #: plugins/check_smtp.c:299 | ||
4633 | #, fuzzy, c-format | 3535 | #, fuzzy, c-format |
4634 | msgid "Invalid SMTP response received from host on port %d: %s\n" | 3536 | msgid "Invalid SMTP response received from host on port %d: %s\n" |
4635 | msgstr "Ungültige HTTP Antwort von Host erhalten auf Port %d\n" | 3537 | msgstr "Ungültige HTTP Antwort von Host erhalten auf Port %d\n" |
4636 | 3538 | ||
4637 | #: plugins/check_smtp.c:322 plugins/check_snmp.c:866 | ||
4638 | #, c-format | 3539 | #, c-format |
4639 | msgid "Could Not Compile Regular Expression" | 3540 | msgid "Could Not Compile Regular Expression" |
4640 | msgstr "" | 3541 | msgstr "" |
4641 | 3542 | ||
4642 | #: plugins/check_smtp.c:331 | ||
4643 | #, c-format | 3543 | #, c-format |
4644 | msgid "SMTP %s - Invalid response '%s' to command '%s'\n" | 3544 | msgid "SMTP %s - Invalid response '%s' to command '%s'\n" |
4645 | msgstr "" | 3545 | msgstr "" |
4646 | 3546 | ||
4647 | #: plugins/check_smtp.c:335 plugins/check_snmp.c:540 | ||
4648 | #, c-format | 3547 | #, c-format |
4649 | msgid "Execute Error: %s\n" | 3548 | msgid "Execute Error: %s\n" |
4650 | msgstr "" | 3549 | msgstr "" |
4651 | 3550 | ||
4652 | #: plugins/check_smtp.c:349 | ||
4653 | msgid "no authuser specified, " | 3551 | msgid "no authuser specified, " |
4654 | msgstr "" | 3552 | msgstr "" |
4655 | 3553 | ||
4656 | #: plugins/check_smtp.c:354 | ||
4657 | msgid "no authpass specified, " | 3554 | msgid "no authpass specified, " |
4658 | msgstr "" | 3555 | msgstr "" |
4659 | 3556 | ||
4660 | #: plugins/check_smtp.c:361 plugins/check_smtp.c:382 plugins/check_smtp.c:402 | ||
4661 | #: plugins/check_smtp.c:728 | ||
4662 | #, c-format | 3557 | #, c-format |
4663 | msgid "sent %s\n" | 3558 | msgid "sent %s\n" |
4664 | msgstr "" | 3559 | msgstr "" |
4665 | 3560 | ||
4666 | #: plugins/check_smtp.c:364 | ||
4667 | #, fuzzy | 3561 | #, fuzzy |
4668 | msgid "recv() failed after AUTH LOGIN, " | 3562 | msgid "recv() failed after AUTH LOGIN, " |
4669 | msgstr "Ungültige HTTP Antwort von Host empfangen\n" | 3563 | msgstr "Ungültige HTTP Antwort von Host empfangen\n" |
4670 | 3564 | ||
4671 | #: plugins/check_smtp.c:369 plugins/check_smtp.c:390 plugins/check_smtp.c:410 | ||
4672 | #: plugins/check_smtp.c:739 | ||
4673 | #, fuzzy, c-format | 3565 | #, fuzzy, c-format |
4674 | msgid "received %s\n" | 3566 | msgid "received %s\n" |
4675 | msgstr "Keine Daten empfangen %s\n" | 3567 | msgstr "Keine Daten empfangen %s\n" |
4676 | 3568 | ||
4677 | #: plugins/check_smtp.c:373 | ||
4678 | #, fuzzy | 3569 | #, fuzzy |
4679 | msgid "invalid response received after AUTH LOGIN, " | 3570 | msgid "invalid response received after AUTH LOGIN, " |
4680 | msgstr "Ungültige HTTP Antwort von Host empfangen\n" | 3571 | msgstr "Ungültige HTTP Antwort von Host empfangen\n" |
4681 | 3572 | ||
4682 | #: plugins/check_smtp.c:386 | ||
4683 | msgid "recv() failed after sending authuser, " | 3573 | msgid "recv() failed after sending authuser, " |
4684 | msgstr "" | 3574 | msgstr "" |
4685 | 3575 | ||
4686 | #: plugins/check_smtp.c:394 | ||
4687 | #, fuzzy | 3576 | #, fuzzy |
4688 | msgid "invalid response received after authuser, " | 3577 | msgid "invalid response received after authuser, " |
4689 | msgstr "Ungültige HTTP Antwort von Host empfangen\n" | 3578 | msgstr "Ungültige HTTP Antwort von Host empfangen\n" |
4690 | 3579 | ||
4691 | #: plugins/check_smtp.c:406 | ||
4692 | msgid "recv() failed after sending authpass, " | 3580 | msgid "recv() failed after sending authpass, " |
4693 | msgstr "" | 3581 | msgstr "" |
4694 | 3582 | ||
4695 | #: plugins/check_smtp.c:414 | ||
4696 | #, fuzzy | 3583 | #, fuzzy |
4697 | msgid "invalid response received after authpass, " | 3584 | msgid "invalid response received after authpass, " |
4698 | msgstr "Ungültige HTTP Antwort von Host empfangen\n" | 3585 | msgstr "Ungültige HTTP Antwort von Host empfangen\n" |
4699 | 3586 | ||
4700 | #: plugins/check_smtp.c:421 | ||
4701 | msgid "only authtype LOGIN is supported, " | 3587 | msgid "only authtype LOGIN is supported, " |
4702 | msgstr "" | 3588 | msgstr "" |
4703 | 3589 | ||
4704 | #: plugins/check_smtp.c:445 | ||
4705 | #, fuzzy, c-format | 3590 | #, fuzzy, c-format |
4706 | msgid "SMTP %s - %s%.3f sec. response time%s%s|%s\n" | 3591 | msgid "SMTP %s - %s%.3f sec. response time%s%s|%s\n" |
4707 | msgstr " - %s - %.3f Sekunden Antwortzeit %s%s|%s %s\n" | 3592 | msgstr " - %s - %.3f Sekunden Antwortzeit %s%s|%s %s\n" |
4708 | 3593 | ||
4709 | #: plugins/check_smtp.c:562 plugins/check_smtp.c:574 | ||
4710 | #, c-format | 3594 | #, c-format |
4711 | msgid "Could not realloc() units [%d]\n" | 3595 | msgid "Could not realloc() units [%d]\n" |
4712 | msgstr "" | 3596 | msgstr "" |
4713 | 3597 | ||
4714 | #: plugins/check_smtp.c:582 | ||
4715 | #, fuzzy | 3598 | #, fuzzy |
4716 | msgid "Critical time must be a positive" | 3599 | msgid "Critical time must be a positive" |
4717 | msgstr "Critical time muss ein positiver Integer sein" | 3600 | msgstr "Critical time muss ein positiver Integer sein" |
4718 | 3601 | ||
4719 | #: plugins/check_smtp.c:590 | ||
4720 | #, fuzzy | 3602 | #, fuzzy |
4721 | msgid "Warning time must be a positive" | 3603 | msgid "Warning time must be a positive" |
4722 | msgstr "Warnung time muss ein positiver Integer sein" | 3604 | msgstr "Warnung time muss ein positiver Integer sein" |
4723 | 3605 | ||
4724 | #: plugins/check_smtp.c:633 plugins/check_smtp.c:645 | ||
4725 | msgid "SSL support not available - install OpenSSL and recompile" | 3606 | msgid "SSL support not available - install OpenSSL and recompile" |
4726 | msgstr "" | 3607 | msgstr "" |
4727 | 3608 | ||
4728 | #: plugins/check_smtp.c:719 plugins/check_smtp.c:724 | 3609 | msgid "Set either -s/--ssl/--tls or -S/--starttls" |
3610 | msgstr "Setze entweder -s/--ssl/--tls oder -S/--starttls" | ||
3611 | |||
4729 | #, c-format | 3612 | #, c-format |
4730 | msgid "Connection closed by server before sending QUIT command\n" | 3613 | msgid "Connection closed by server before sending QUIT command\n" |
4731 | msgstr "" | 3614 | msgstr "" |
4732 | 3615 | ||
4733 | #: plugins/check_smtp.c:734 | ||
4734 | #, fuzzy, c-format | 3616 | #, fuzzy, c-format |
4735 | msgid "recv() failed after QUIT." | 3617 | msgid "recv() failed after QUIT." |
4736 | msgstr "Ungültige HTTP Antwort von Host empfangen\n" | 3618 | msgstr "Ungültige HTTP Antwort von Host empfangen\n" |
4737 | 3619 | ||
4738 | #: plugins/check_smtp.c:736 | ||
4739 | #, c-format | 3620 | #, c-format |
4740 | msgid "Connection reset by peer." | 3621 | msgid "Connection reset by peer." |
4741 | msgstr "" | 3622 | msgstr "" |
4742 | 3623 | ||
4743 | #: plugins/check_smtp.c:826 | ||
4744 | #, fuzzy | 3624 | #, fuzzy |
4745 | msgid "This plugin will attempt to open an SMTP connection with the host." | 3625 | msgid "This plugin will attempt to open an SMTP connection with the host." |
4746 | msgstr "Dieses plugin testet Gameserververbindungen zum angegebenen Host." | 3626 | msgstr "Dieses plugin testet Gameserververbindungen zum angegebenen Host." |
4747 | 3627 | ||
4748 | #: plugins/check_smtp.c:840 | ||
4749 | #, c-format | 3628 | #, c-format |
4750 | msgid " String to expect in first line of server response (default: '%s')\n" | 3629 | msgid " String to expect in first line of server response (default: '%s')\n" |
4751 | msgstr "" | 3630 | msgstr "" |
4752 | 3631 | ||
4753 | #: plugins/check_smtp.c:842 | ||
4754 | msgid "SMTP command (may be used repeatedly)" | 3632 | msgid "SMTP command (may be used repeatedly)" |
4755 | msgstr "" | 3633 | msgstr "" |
4756 | 3634 | ||
4757 | #: plugins/check_smtp.c:844 | ||
4758 | msgid "Expected response to command (may be used repeatedly)" | 3635 | msgid "Expected response to command (may be used repeatedly)" |
4759 | msgstr "" | 3636 | msgstr "" |
4760 | 3637 | ||
4761 | #: plugins/check_smtp.c:846 | ||
4762 | msgid "FROM-address to include in MAIL command, required by Exchange 2000" | 3638 | msgid "FROM-address to include in MAIL command, required by Exchange 2000" |
4763 | msgstr "" | 3639 | msgstr "" |
4764 | 3640 | ||
4765 | #: plugins/check_smtp.c:848 | ||
4766 | msgid "FQDN used for HELO" | 3641 | msgid "FQDN used for HELO" |
4767 | msgstr "" | 3642 | msgstr "" |
4768 | 3643 | ||
4769 | #: plugins/check_smtp.c:850 | ||
4770 | msgid "Use PROXY protocol prefix for the connection." | 3644 | msgid "Use PROXY protocol prefix for the connection." |
4771 | msgstr "Benutze PROXY-Protokoll-Präfix für die Verbindung." | 3645 | msgstr "Benutze PROXY-Protokoll-Präfix für die Verbindung." |
4772 | 3646 | ||
4773 | #: plugins/check_smtp.c:853 plugins/check_tcp.c:689 | ||
4774 | msgid "Minimum number of days a certificate has to be valid." | 3647 | msgid "Minimum number of days a certificate has to be valid." |
4775 | msgstr "" | 3648 | msgstr "" |
4776 | 3649 | ||
4777 | #: plugins/check_smtp.c:855 | 3650 | #, fuzzy |
3651 | msgid "Use SSL/TLS for the connection." | ||
3652 | msgstr "Benutze SSL/TLS für die Verbindung." | ||
3653 | |||
3654 | #, c-format | ||
3655 | msgid " Sets default port to %d.\n" | ||
3656 | msgstr " Setze den Default-Port auf %d.\n" | ||
3657 | |||
4778 | msgid "Use STARTTLS for the connection." | 3658 | msgid "Use STARTTLS for the connection." |
4779 | msgstr "" | 3659 | msgstr "Benutze STARTTLS für die Verbindung." |
4780 | 3660 | ||
4781 | #: plugins/check_smtp.c:861 | ||
4782 | msgid "SMTP AUTH type to check (default none, only LOGIN supported)" | 3661 | msgid "SMTP AUTH type to check (default none, only LOGIN supported)" |
4783 | msgstr "" | 3662 | msgstr "" |
4784 | 3663 | ||
4785 | #: plugins/check_smtp.c:863 | ||
4786 | msgid "SMTP AUTH username" | 3664 | msgid "SMTP AUTH username" |
4787 | msgstr "" | 3665 | msgstr "" |
4788 | 3666 | ||
4789 | #: plugins/check_smtp.c:865 | ||
4790 | msgid "SMTP AUTH password" | 3667 | msgid "SMTP AUTH password" |
4791 | msgstr "" | 3668 | msgstr "" |
4792 | 3669 | ||
4793 | #: plugins/check_smtp.c:867 | ||
4794 | msgid "Send LHLO instead of HELO/EHLO" | 3670 | msgid "Send LHLO instead of HELO/EHLO" |
4795 | msgstr "" | 3671 | msgstr "" |
4796 | 3672 | ||
4797 | #: plugins/check_smtp.c:869 | ||
4798 | msgid "Ignore failure when sending QUIT command to server" | 3673 | msgid "Ignore failure when sending QUIT command to server" |
4799 | msgstr "" | 3674 | msgstr "" |
4800 | 3675 | ||
4801 | #: plugins/check_smtp.c:879 | ||
4802 | msgid "STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful" | 3676 | msgid "STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful" |
4803 | msgstr "" | 3677 | msgstr "" |
4804 | 3678 | ||
4805 | #: plugins/check_smtp.c:880 | ||
4806 | msgid "connects, but incorrect response messages from the host result in" | 3679 | msgid "connects, but incorrect response messages from the host result in" |
4807 | msgstr "" | 3680 | msgstr "" |
4808 | 3681 | ||
4809 | #: plugins/check_smtp.c:881 | ||
4810 | msgid "STATE_WARNING return values." | 3682 | msgid "STATE_WARNING return values." |
4811 | msgstr "" | 3683 | msgstr "" |
4812 | 3684 | ||
4813 | #: plugins/check_snmp.c:177 plugins/check_snmp.c:626 | ||
4814 | msgid "Cannot malloc" | 3685 | msgid "Cannot malloc" |
4815 | msgstr "" | 3686 | msgstr "" |
4816 | 3687 | ||
4817 | #: plugins/check_snmp.c:368 | ||
4818 | #, fuzzy, c-format | 3688 | #, fuzzy, c-format |
4819 | msgid "External command error: %s\n" | 3689 | msgid "External command error: %s\n" |
4820 | msgstr "Papierfehler" | 3690 | msgstr "Papierfehler" |
4821 | 3691 | ||
4822 | #: plugins/check_snmp.c:373 | ||
4823 | #, c-format | 3692 | #, c-format |
4824 | msgid "External command error with no output (return code: %d)\n" | 3693 | msgid "External command error with no output (return code: %d)\n" |
4825 | msgstr "" | 3694 | msgstr "" |
4826 | 3695 | ||
4827 | #: plugins/check_snmp.c:486 plugins/check_snmp.c:488 plugins/check_snmp.c:490 | ||
4828 | #: plugins/check_snmp.c:492 | ||
4829 | #, fuzzy, c-format | 3696 | #, fuzzy, c-format |
4830 | msgid "No valid data returned (%s)\n" | 3697 | msgid "No valid data returned (%s)\n" |
4831 | msgstr "Keine Daten empfangen %s\n" | 3698 | msgstr "Keine Daten empfangen %s\n" |
4832 | 3699 | ||
4833 | #: plugins/check_snmp.c:504 | ||
4834 | msgid "Time duration between plugin calls is invalid" | 3700 | msgid "Time duration between plugin calls is invalid" |
4835 | msgstr "" | 3701 | msgstr "" |
4836 | 3702 | ||
4837 | #: plugins/check_snmp.c:632 | ||
4838 | msgid "Cannot asprintf()" | 3703 | msgid "Cannot asprintf()" |
4839 | msgstr "" | 3704 | msgstr "" |
4840 | 3705 | ||
4841 | #: plugins/check_snmp.c:638 | ||
4842 | msgid "Cannot realloc()" | 3706 | msgid "Cannot realloc()" |
4843 | msgstr "" | 3707 | msgstr "" |
4844 | 3708 | ||
4845 | #: plugins/check_snmp.c:654 | ||
4846 | msgid "No previous data to calculate rate - assume okay" | 3709 | msgid "No previous data to calculate rate - assume okay" |
4847 | msgstr "" | 3710 | msgstr "" |
4848 | 3711 | ||
4849 | #: plugins/check_snmp.c:804 | ||
4850 | #, fuzzy | 3712 | #, fuzzy |
4851 | msgid "Retries interval must be a positive integer" | 3713 | msgid "Retries interval must be a positive integer" |
4852 | msgstr "Time interval muss ein positiver Integer sein" | 3714 | msgstr "Time interval muss ein positiver Integer sein" |
4853 | 3715 | ||
4854 | #: plugins/check_snmp.c:841 | ||
4855 | #, fuzzy | 3716 | #, fuzzy |
4856 | msgid "Exit status must be a positive integer" | 3717 | msgid "Exit status must be a positive integer" |
4857 | msgstr "Maxbytes muss ein positiver Integer sein" | 3718 | msgstr "Maxbytes muss ein positiver Integer sein" |
4858 | 3719 | ||
4859 | #: plugins/check_snmp.c:891 | ||
4860 | #, fuzzy, c-format | 3720 | #, fuzzy, c-format |
4861 | msgid "Could not reallocate labels[%d]" | 3721 | msgid "Could not reallocate labels[%d]" |
4862 | msgstr "Konnte addr nicht zuweisen\n" | 3722 | msgstr "Konnte addr nicht zuweisen\n" |
4863 | 3723 | ||
4864 | #: plugins/check_snmp.c:904 | ||
4865 | #, fuzzy | 3724 | #, fuzzy |
4866 | msgid "Could not reallocate labels\n" | 3725 | msgid "Could not reallocate labels\n" |
4867 | msgstr "Konnte·url·nicht·zuweisen\n" | 3726 | msgstr "Konnte·url·nicht·zuweisen\n" |
4868 | 3727 | ||
4869 | #: plugins/check_snmp.c:920 | ||
4870 | #, fuzzy, c-format | 3728 | #, fuzzy, c-format |
4871 | msgid "Could not reallocate units [%d]\n" | 3729 | msgid "Could not reallocate units [%d]\n" |
4872 | msgstr "Konnte·url·nicht·zuweisen\n" | 3730 | msgstr "Konnte·url·nicht·zuweisen\n" |
4873 | 3731 | ||
4874 | #: plugins/check_snmp.c:932 | ||
4875 | msgid "Could not realloc() units\n" | 3732 | msgid "Could not realloc() units\n" |
4876 | msgstr "" | 3733 | msgstr "" |
4877 | 3734 | ||
4878 | #: plugins/check_snmp.c:949 | ||
4879 | #, fuzzy | 3735 | #, fuzzy |
4880 | msgid "Rate multiplier must be a positive integer" | 3736 | msgid "Rate multiplier must be a positive integer" |
4881 | msgstr "Paketgröße muss ein positiver Integer sein" | 3737 | msgstr "Paketgröße muss ein positiver Integer sein" |
4882 | 3738 | ||
4883 | #: plugins/check_snmp.c:1024 | ||
4884 | #, fuzzy | 3739 | #, fuzzy |
4885 | msgid "No host specified\n" | 3740 | msgid "No host specified\n" |
4886 | msgstr "" | 3741 | msgstr "" |
4887 | "Kein Hostname angegeben\n" | 3742 | "Kein Hostname angegeben\n" |
4888 | "\n" | 3743 | "\n" |
4889 | 3744 | ||
4890 | #: plugins/check_snmp.c:1028 | ||
4891 | #, fuzzy | 3745 | #, fuzzy |
4892 | msgid "No OIDs specified\n" | 3746 | msgid "No OIDs specified\n" |
4893 | msgstr "" | 3747 | msgstr "" |
4894 | "Kein Hostname angegeben\n" | 3748 | "Kein Hostname angegeben\n" |
4895 | "\n" | 3749 | "\n" |
4896 | 3750 | ||
4897 | #: plugins/check_snmp.c:1051 plugins/check_snmp.c:1069 | ||
4898 | #: plugins/check_snmp.c:1087 | ||
4899 | #, c-format | 3751 | #, c-format |
4900 | msgid "Required parameter: %s\n" | 3752 | msgid "Required parameter: %s\n" |
4901 | msgstr "" | 3753 | msgstr "" |
4902 | 3754 | ||
4903 | #: plugins/check_snmp.c:1062 | ||
4904 | msgid "Invalid seclevel" | 3755 | msgid "Invalid seclevel" |
4905 | msgstr "" | 3756 | msgstr "" |
4906 | 3757 | ||
4907 | #: plugins/check_snmp.c:1108 | ||
4908 | msgid "Invalid SNMP version" | 3758 | msgid "Invalid SNMP version" |
4909 | msgstr "" | 3759 | msgstr "" |
4910 | 3760 | ||
4911 | #: plugins/check_snmp.c:1125 | ||
4912 | msgid "Unbalanced quotes\n" | 3761 | msgid "Unbalanced quotes\n" |
4913 | msgstr "" | 3762 | msgstr "" |
4914 | 3763 | ||
4915 | #: plugins/check_snmp.c:1183 | ||
4916 | #, c-format | 3764 | #, c-format |
4917 | msgid "multiplier set (%.1f), but input is not a number: %s" | 3765 | msgid "multiplier set (%.1f), but input is not a number: %s" |
4918 | msgstr "" | 3766 | msgstr "" |
4919 | 3767 | ||
4920 | #: plugins/check_snmp.c:1212 | ||
4921 | msgid "Check status of remote machines and obtain system information via SNMP" | 3768 | msgid "Check status of remote machines and obtain system information via SNMP" |
4922 | msgstr "" | 3769 | msgstr "" |
4923 | 3770 | ||
4924 | #: plugins/check_snmp.c:1226 | ||
4925 | msgid "Use SNMP GETNEXT instead of SNMP GET" | 3771 | msgid "Use SNMP GETNEXT instead of SNMP GET" |
4926 | msgstr "" | 3772 | msgstr "" |
4927 | 3773 | ||
4928 | #: plugins/check_snmp.c:1228 | ||
4929 | msgid "SNMP protocol version" | 3774 | msgid "SNMP protocol version" |
4930 | msgstr "" | 3775 | msgstr "" |
4931 | 3776 | ||
4932 | #: plugins/check_snmp.c:1230 | ||
4933 | msgid "SNMPv3 context" | 3777 | msgid "SNMPv3 context" |
4934 | msgstr "" | 3778 | msgstr "" |
4935 | 3779 | ||
4936 | #: plugins/check_snmp.c:1232 | ||
4937 | msgid "SNMPv3 securityLevel" | 3780 | msgid "SNMPv3 securityLevel" |
4938 | msgstr "" | 3781 | msgstr "" |
4939 | 3782 | ||
4940 | #: plugins/check_snmp.c:1234 | ||
4941 | msgid "SNMPv3 auth proto" | 3783 | msgid "SNMPv3 auth proto" |
4942 | msgstr "" | 3784 | msgstr "" |
4943 | 3785 | ||
4944 | #: plugins/check_snmp.c:1236 | ||
4945 | msgid "SNMPv3 priv proto (default DES)" | 3786 | msgid "SNMPv3 priv proto (default DES)" |
4946 | msgstr "" | 3787 | msgstr "" |
4947 | 3788 | ||
4948 | #: plugins/check_snmp.c:1240 | ||
4949 | msgid "Optional community string for SNMP communication" | 3789 | msgid "Optional community string for SNMP communication" |
4950 | msgstr "" | 3790 | msgstr "" |
4951 | 3791 | ||
4952 | #: plugins/check_snmp.c:1241 | ||
4953 | msgid "default is" | 3792 | msgid "default is" |
4954 | msgstr "" | 3793 | msgstr "" |
4955 | 3794 | ||
4956 | #: plugins/check_snmp.c:1243 | ||
4957 | msgid "SNMPv3 username" | 3795 | msgid "SNMPv3 username" |
4958 | msgstr "" | 3796 | msgstr "" |
4959 | 3797 | ||
4960 | #: plugins/check_snmp.c:1245 | ||
4961 | msgid "SNMPv3 authentication password" | 3798 | msgid "SNMPv3 authentication password" |
4962 | msgstr "" | 3799 | msgstr "" |
4963 | 3800 | ||
4964 | #: plugins/check_snmp.c:1247 | ||
4965 | msgid "SNMPv3 privacy password" | 3801 | msgid "SNMPv3 privacy password" |
4966 | msgstr "" | 3802 | msgstr "" |
4967 | 3803 | ||
4968 | #: plugins/check_snmp.c:1251 | ||
4969 | msgid "Object identifier(s) or SNMP variables whose value you wish to query" | 3804 | msgid "Object identifier(s) or SNMP variables whose value you wish to query" |
4970 | msgstr "" | 3805 | msgstr "" |
4971 | 3806 | ||
4972 | #: plugins/check_snmp.c:1253 | ||
4973 | msgid "" | 3807 | msgid "" |
4974 | "List of MIBS to be loaded (default = none if using numeric OIDs or 'ALL'" | 3808 | "List of MIBS to be loaded (default = none if using numeric OIDs or 'ALL'" |
4975 | msgstr "" | 3809 | msgstr "" |
4976 | 3810 | ||
4977 | #: plugins/check_snmp.c:1254 | ||
4978 | msgid "for symbolic OIDs.)" | 3811 | msgid "for symbolic OIDs.)" |
4979 | msgstr "" | 3812 | msgstr "" |
4980 | 3813 | ||
4981 | #: plugins/check_snmp.c:1256 | ||
4982 | msgid "Delimiter to use when parsing returned data. Default is" | 3814 | msgid "Delimiter to use when parsing returned data. Default is" |
4983 | msgstr "" | 3815 | msgstr "" |
4984 | 3816 | ||
4985 | #: plugins/check_snmp.c:1257 | ||
4986 | msgid "Any data on the right hand side of the delimiter is considered" | 3817 | msgid "Any data on the right hand side of the delimiter is considered" |
4987 | msgstr "" | 3818 | msgstr "" |
4988 | 3819 | ||
4989 | #: plugins/check_snmp.c:1258 | ||
4990 | msgid "to be the data that should be used in the evaluation." | 3820 | msgid "to be the data that should be used in the evaluation." |
4991 | msgstr "" | 3821 | msgstr "" |
4992 | 3822 | ||
4993 | #: plugins/check_snmp.c:1260 | ||
4994 | msgid "If the check returns a 0 length string or NULL value" | 3823 | msgid "If the check returns a 0 length string or NULL value" |
4995 | msgstr "" | 3824 | msgstr "" |
4996 | 3825 | ||
4997 | #: plugins/check_snmp.c:1261 | ||
4998 | msgid "This option allows you to choose what status you want it to exit" | 3826 | msgid "This option allows you to choose what status you want it to exit" |
4999 | msgstr "" | 3827 | msgstr "" |
5000 | 3828 | ||
5001 | #: plugins/check_snmp.c:1262 | ||
5002 | msgid "Excluding this option renders the default exit of 3(STATE_UNKNOWN)" | 3829 | msgid "Excluding this option renders the default exit of 3(STATE_UNKNOWN)" |
5003 | msgstr "" | 3830 | msgstr "" |
5004 | 3831 | ||
5005 | #: plugins/check_snmp.c:1263 | ||
5006 | msgid "0 = OK" | 3832 | msgid "0 = OK" |
5007 | msgstr "" | 3833 | msgstr "" |
5008 | 3834 | ||
5009 | #: plugins/check_snmp.c:1264 | ||
5010 | #, fuzzy | 3835 | #, fuzzy |
5011 | msgid "1 = WARNING" | 3836 | msgid "1 = WARNING" |
5012 | msgstr "WARNING" | 3837 | msgstr "WARNING" |
5013 | 3838 | ||
5014 | #: plugins/check_snmp.c:1265 | ||
5015 | #, fuzzy | 3839 | #, fuzzy |
5016 | msgid "2 = CRITICAL" | 3840 | msgid "2 = CRITICAL" |
5017 | msgstr "CRITICAL" | 3841 | msgstr "CRITICAL" |
5018 | 3842 | ||
5019 | #: plugins/check_snmp.c:1266 | ||
5020 | #, fuzzy | 3843 | #, fuzzy |
5021 | msgid "3 = UNKNOWN" | 3844 | msgid "3 = UNKNOWN" |
5022 | msgstr "UNKNOWN" | 3845 | msgstr "UNKNOWN" |
5023 | 3846 | ||
5024 | #: plugins/check_snmp.c:1270 | ||
5025 | #, fuzzy | 3847 | #, fuzzy |
5026 | msgid "Warning threshold range(s)" | 3848 | msgid "Warning threshold range(s)" |
5027 | msgstr "Warning threshold Integer sein" | 3849 | msgstr "Warning threshold Integer sein" |
5028 | 3850 | ||
5029 | #: plugins/check_snmp.c:1272 | ||
5030 | #, fuzzy | 3851 | #, fuzzy |
5031 | msgid "Critical threshold range(s)" | 3852 | msgid "Critical threshold range(s)" |
5032 | msgstr "Critical threshold muss ein Integer sein" | 3853 | msgstr "Critical threshold muss ein Integer sein" |
5033 | 3854 | ||
5034 | #: plugins/check_snmp.c:1274 | ||
5035 | msgid "Enable rate calculation. See 'Rate Calculation' below" | 3855 | msgid "Enable rate calculation. See 'Rate Calculation' below" |
5036 | msgstr "" | 3856 | msgstr "" |
5037 | 3857 | ||
5038 | #: plugins/check_snmp.c:1276 | ||
5039 | msgid "" | 3858 | msgid "" |
5040 | "Converts rate per second. For example, set to 60 to convert to per minute" | 3859 | "Converts rate per second. For example, set to 60 to convert to per minute" |
5041 | msgstr "" | 3860 | msgstr "" |
5042 | 3861 | ||
5043 | #: plugins/check_snmp.c:1278 | ||
5044 | msgid "Add/subtract the specified OFFSET to numeric sensor data" | 3862 | msgid "Add/subtract the specified OFFSET to numeric sensor data" |
5045 | msgstr "" | 3863 | msgstr "" |
5046 | 3864 | ||
5047 | #: plugins/check_snmp.c:1282 | ||
5048 | msgid "Return OK state (for that OID) if STRING is an exact match" | 3865 | msgid "Return OK state (for that OID) if STRING is an exact match" |
5049 | msgstr "" | 3866 | msgstr "" |
5050 | 3867 | ||
5051 | #: plugins/check_snmp.c:1284 | ||
5052 | msgid "" | 3868 | msgid "" |
5053 | "Return OK state (for that OID) if extended regular expression REGEX matches" | 3869 | "Return OK state (for that OID) if extended regular expression REGEX matches" |
5054 | msgstr "" | 3870 | msgstr "" |
5055 | 3871 | ||
5056 | #: plugins/check_snmp.c:1286 | ||
5057 | msgid "" | 3872 | msgid "" |
5058 | "Return OK state (for that OID) if case-insensitive extended REGEX matches" | 3873 | "Return OK state (for that OID) if case-insensitive extended REGEX matches" |
5059 | msgstr "" | 3874 | msgstr "" |
5060 | 3875 | ||
5061 | #: plugins/check_snmp.c:1288 | ||
5062 | msgid "Invert search result (CRITICAL if found)" | 3876 | msgid "Invert search result (CRITICAL if found)" |
5063 | msgstr "" | 3877 | msgstr "" |
5064 | 3878 | ||
5065 | #: plugins/check_snmp.c:1292 | ||
5066 | msgid "Prefix label for output from plugin" | 3879 | msgid "Prefix label for output from plugin" |
5067 | msgstr "" | 3880 | msgstr "" |
5068 | 3881 | ||
5069 | #: plugins/check_snmp.c:1294 | ||
5070 | msgid "Units label(s) for output data (e.g., 'sec.')." | 3882 | msgid "Units label(s) for output data (e.g., 'sec.')." |
5071 | msgstr "" | 3883 | msgstr "" |
5072 | 3884 | ||
5073 | #: plugins/check_snmp.c:1296 | ||
5074 | msgid "Separates output on multiple OID requests" | 3885 | msgid "Separates output on multiple OID requests" |
5075 | msgstr "" | 3886 | msgstr "" |
5076 | 3887 | ||
5077 | #: plugins/check_snmp.c:1298 | ||
5078 | msgid "Multiplies current value, 0 < n < 1 works as divider, defaults to 1" | 3888 | msgid "Multiplies current value, 0 < n < 1 works as divider, defaults to 1" |
5079 | msgstr "" | 3889 | msgstr "" |
5080 | 3890 | ||
5081 | #: plugins/check_snmp.c:1300 | ||
5082 | msgid "C-style format string for float values (see option -M)" | 3891 | msgid "C-style format string for float values (see option -M)" |
5083 | msgstr "" | 3892 | msgstr "" |
5084 | 3893 | ||
5085 | #: plugins/check_snmp.c:1303 | ||
5086 | msgid "" | 3894 | msgid "" |
5087 | "NOTE the final timeout value is calculated using this formula: " | 3895 | "NOTE the final timeout value is calculated using this formula: " |
5088 | "timeout_interval * retries + 5" | 3896 | "timeout_interval * retries + 5" |
5089 | msgstr "" | 3897 | msgstr "" |
5090 | 3898 | ||
5091 | #: plugins/check_snmp.c:1305 | ||
5092 | msgid "Number of retries to be used in the requests, default: " | 3899 | msgid "Number of retries to be used in the requests, default: " |
5093 | msgstr "" | 3900 | msgstr "" |
5094 | 3901 | ||
5095 | #: plugins/check_snmp.c:1308 | ||
5096 | msgid "Label performance data with OIDs instead of --label's" | 3902 | msgid "Label performance data with OIDs instead of --label's" |
5097 | msgstr "" | 3903 | msgstr "" |
5098 | 3904 | ||
5099 | #: plugins/check_snmp.c:1313 | 3905 | msgid "Tell snmpget to not print errors encountered when parsing MIB files" |
3906 | msgstr "" | ||
3907 | |||
5100 | msgid "" | 3908 | msgid "" |
5101 | "This plugin uses the 'snmpget' command included with the NET-SNMP package." | 3909 | "This plugin uses the 'snmpget' command included with the NET-SNMP package." |
5102 | msgstr "" | 3910 | msgstr "" |
5103 | 3911 | ||
5104 | #: plugins/check_snmp.c:1314 | ||
5105 | msgid "" | 3912 | msgid "" |
5106 | "if you don't have the package installed, you will need to download it from" | 3913 | "if you don't have the package installed, you will need to download it from" |
5107 | msgstr "" | 3914 | msgstr "" |
5108 | 3915 | ||
5109 | #: plugins/check_snmp.c:1315 | ||
5110 | msgid "http://net-snmp.sourceforge.net before you can use this plugin." | 3916 | msgid "http://net-snmp.sourceforge.net before you can use this plugin." |
5111 | msgstr "" | 3917 | msgstr "" |
5112 | 3918 | ||
5113 | #: plugins/check_snmp.c:1319 | ||
5114 | msgid "" | 3919 | msgid "" |
5115 | "- Multiple OIDs (and labels) may be indicated by a comma or space-delimited " | 3920 | "- Multiple OIDs (and labels) may be indicated by a comma or space-delimited " |
5116 | msgstr "" | 3921 | msgstr "" |
5117 | 3922 | ||
5118 | #: plugins/check_snmp.c:1320 | ||
5119 | msgid "list (lists with internal spaces must be quoted)." | 3923 | msgid "list (lists with internal spaces must be quoted)." |
5120 | msgstr "" | 3924 | msgstr "" |
5121 | 3925 | ||
5122 | #: plugins/check_snmp.c:1324 | ||
5123 | msgid "" | 3926 | msgid "" |
5124 | "- When checking multiple OIDs, separate ranges by commas like '-w " | 3927 | "- When checking multiple OIDs, separate ranges by commas like '-w " |
5125 | "1:10,1:,:20'" | 3928 | "1:10,1:,:20'" |
5126 | msgstr "" | 3929 | msgstr "" |
5127 | 3930 | ||
5128 | #: plugins/check_snmp.c:1325 | ||
5129 | msgid "- Note that only one string and one regex may be checked at present" | 3931 | msgid "- Note that only one string and one regex may be checked at present" |
5130 | msgstr "" | 3932 | msgstr "" |
5131 | 3933 | ||
5132 | #: plugins/check_snmp.c:1326 | ||
5133 | msgid "" | 3934 | msgid "" |
5134 | "- All evaluation methods other than PR, STR, and SUBSTR expect that the value" | 3935 | "- All evaluation methods other than PR, STR, and SUBSTR expect that the value" |
5135 | msgstr "" | 3936 | msgstr "" |
5136 | 3937 | ||
5137 | #: plugins/check_snmp.c:1327 | ||
5138 | msgid "returned from the SNMP query is an unsigned integer." | 3938 | msgid "returned from the SNMP query is an unsigned integer." |
5139 | msgstr "" | 3939 | msgstr "" |
5140 | 3940 | ||
5141 | #: plugins/check_snmp.c:1330 | ||
5142 | msgid "Rate Calculation:" | 3941 | msgid "Rate Calculation:" |
5143 | msgstr "" | 3942 | msgstr "" |
5144 | 3943 | ||
5145 | #: plugins/check_snmp.c:1331 | ||
5146 | msgid "In many places, SNMP returns counters that are only meaningful when" | 3944 | msgid "In many places, SNMP returns counters that are only meaningful when" |
5147 | msgstr "" | 3945 | msgstr "" |
5148 | 3946 | ||
5149 | #: plugins/check_snmp.c:1332 | ||
5150 | msgid "calculating the counter difference since the last check. check_snmp" | 3947 | msgid "calculating the counter difference since the last check. check_snmp" |
5151 | msgstr "" | 3948 | msgstr "" |
5152 | 3949 | ||
5153 | #: plugins/check_snmp.c:1333 | ||
5154 | msgid "saves the last state information in a file so that the rate per second" | 3950 | msgid "saves the last state information in a file so that the rate per second" |
5155 | msgstr "" | 3951 | msgstr "" |
5156 | 3952 | ||
5157 | #: plugins/check_snmp.c:1334 | ||
5158 | msgid "can be calculated. Use the --rate option to save state information." | 3953 | msgid "can be calculated. Use the --rate option to save state information." |
5159 | msgstr "" | 3954 | msgstr "" |
5160 | 3955 | ||
5161 | #: plugins/check_snmp.c:1335 | ||
5162 | msgid "" | 3956 | msgid "" |
5163 | "On the first run, there will be no prior state - this will return with OK." | 3957 | "On the first run, there will be no prior state - this will return with OK." |
5164 | msgstr "" | 3958 | msgstr "" |
5165 | 3959 | ||
5166 | #: plugins/check_snmp.c:1336 | ||
5167 | msgid "The state is uniquely determined by the arguments to the plugin, so" | 3960 | msgid "The state is uniquely determined by the arguments to the plugin, so" |
5168 | msgstr "" | 3961 | msgstr "" |
5169 | 3962 | ||
5170 | #: plugins/check_snmp.c:1337 | ||
5171 | msgid "changing the arguments will create a new state file." | 3963 | msgid "changing the arguments will create a new state file." |
5172 | msgstr "" | 3964 | msgstr "" |
5173 | 3965 | ||
5174 | #: plugins/check_ssh.c:170 | ||
5175 | #, fuzzy | 3966 | #, fuzzy |
5176 | msgid "Port number must be a positive integer" | 3967 | msgid "Port number must be a positive integer" |
5177 | msgstr "Port muss ein positiver Integer sein" | 3968 | msgstr "Port muss ein positiver Integer sein" |
5178 | 3969 | ||
5179 | #: plugins/check_ssh.c:237 | ||
5180 | #, c-format | 3970 | #, c-format |
5181 | msgid "Server answer: %s" | 3971 | msgid "Server answer: %s" |
5182 | msgstr "" | 3972 | msgstr "" |
5183 | 3973 | ||
5184 | #: plugins/check_ssh.c:256 | ||
5185 | #, c-format | 3974 | #, c-format |
5186 | msgid "SSH CRITICAL - %s (protocol %s) version mismatch, expected '%s'\n" | 3975 | msgid "SSH CRITICAL - %s (protocol %s) version mismatch, expected '%s'\n" |
5187 | msgstr "" | 3976 | msgstr "" |
5188 | 3977 | ||
5189 | #: plugins/check_ssh.c:264 | ||
5190 | #, c-format | 3978 | #, c-format |
5191 | msgid "" | 3979 | msgid "" |
5192 | "SSH CRITICAL - %s (protocol %s) protocol version mismatch, expected '%s'\n" | 3980 | "SSH CRITICAL - %s (protocol %s) protocol version mismatch, expected '%s'\n" |
5193 | msgstr "" | 3981 | msgstr "" |
5194 | 3982 | ||
5195 | #: plugins/check_ssh.c:273 | ||
5196 | #, c-format | 3983 | #, c-format |
5197 | msgid "SSH OK - %s (protocol %s) | %s\n" | 3984 | msgid "SSH OK - %s (protocol %s) | %s\n" |
5198 | msgstr "" | 3985 | msgstr "" |
5199 | 3986 | ||
5200 | #: plugins/check_ssh.c:294 | ||
5201 | msgid "Try to connect to an SSH server at specified server and port" | 3987 | msgid "Try to connect to an SSH server at specified server and port" |
5202 | msgstr "" | 3988 | msgstr "" |
5203 | 3989 | ||
5204 | #: plugins/check_ssh.c:310 | ||
5205 | msgid "" | 3990 | msgid "" |
5206 | "Alert if string doesn't match expected server version (ex: OpenSSH_3.9p1)" | 3991 | "Alert if string doesn't match expected server version (ex: OpenSSH_3.9p1)" |
5207 | msgstr "" | 3992 | msgstr "" |
5208 | 3993 | ||
5209 | #: plugins/check_ssh.c:313 | ||
5210 | msgid "Alert if protocol doesn't match expected protocol version (ex: 2.0)" | 3994 | msgid "Alert if protocol doesn't match expected protocol version (ex: 2.0)" |
5211 | msgstr "" | 3995 | msgstr "" |
5212 | 3996 | ||
5213 | #: plugins/check_swap.c:187 | ||
5214 | #, c-format | 3997 | #, c-format |
5215 | msgid "Command: %s\n" | 3998 | msgid "Command: %s\n" |
5216 | msgstr "" | 3999 | msgstr "" |
5217 | 4000 | ||
5218 | #: plugins/check_swap.c:189 | ||
5219 | #, c-format | 4001 | #, c-format |
5220 | msgid "Format: %s\n" | 4002 | msgid "Format: %s\n" |
5221 | msgstr "" | 4003 | msgstr "" |
5222 | 4004 | ||
5223 | #: plugins/check_swap.c:225 | ||
5224 | #, c-format | 4005 | #, c-format |
5225 | msgid "total=%.0f, used=%.0f, free=%.0f\n" | 4006 | msgid "total=%.0f, used=%.0f, free=%.0f\n" |
5226 | msgstr "" | 4007 | msgstr "" |
5227 | 4008 | ||
5228 | #: plugins/check_swap.c:239 | ||
5229 | #, c-format | 4009 | #, c-format |
5230 | msgid "total=%.0f, free=%.0f\n" | 4010 | msgid "total=%.0f, free=%.0f\n" |
5231 | msgstr "" | 4011 | msgstr "" |
5232 | 4012 | ||
5233 | #: plugins/check_swap.c:271 | ||
5234 | msgid "Error getting swap devices\n" | 4013 | msgid "Error getting swap devices\n" |
5235 | msgstr "" | 4014 | msgstr "" |
5236 | 4015 | ||
5237 | #: plugins/check_swap.c:274 | ||
5238 | msgid "SWAP OK: No swap devices defined\n" | 4016 | msgid "SWAP OK: No swap devices defined\n" |
5239 | msgstr "" | 4017 | msgstr "" |
5240 | 4018 | ||
5241 | #: plugins/check_swap.c:295 plugins/check_swap.c:337 | ||
5242 | msgid "swapctl failed: " | 4019 | msgid "swapctl failed: " |
5243 | msgstr "" | 4020 | msgstr "" |
5244 | 4021 | ||
5245 | #: plugins/check_swap.c:296 plugins/check_swap.c:338 | ||
5246 | msgid "Error in swapctl call\n" | 4022 | msgid "Error in swapctl call\n" |
5247 | msgstr "" | 4023 | msgstr "" |
5248 | 4024 | ||
5249 | #: plugins/check_swap.c:376 | ||
5250 | #, c-format | 4025 | #, c-format |
5251 | msgid "SWAP %s - %d%% free (%dMB out of %dMB) %s|" | 4026 | msgid "SWAP %s - %d%% free (%dMB out of %dMB) %s|" |
5252 | msgstr "" | 4027 | msgstr "" |
5253 | 4028 | ||
5254 | #: plugins/check_swap.c:472 | ||
5255 | #, fuzzy | 4029 | #, fuzzy |
5256 | msgid "Warning threshold percentage must be <= 100!" | 4030 | msgid "Warning threshold percentage must be <= 100!" |
5257 | msgstr "Warning threshold Integer sein" | 4031 | msgstr "Warning threshold Integer sein" |
5258 | 4032 | ||
5259 | #: plugins/check_swap.c:482 | ||
5260 | #, fuzzy | 4033 | #, fuzzy |
5261 | msgid "Warning threshold be positive integer or percentage!" | 4034 | msgid "Warning threshold be positive integer or percentage!" |
5262 | msgstr "Warning threshold muss ein Integer oder ein Prozentwert sein" | 4035 | msgstr "Warning threshold muss ein Integer oder ein Prozentwert sein" |
5263 | 4036 | ||
5264 | #: plugins/check_swap.c:502 | ||
5265 | #, fuzzy | 4037 | #, fuzzy |
5266 | msgid "Critical threshold percentage must be <= 100!" | 4038 | msgid "Critical threshold percentage must be <= 100!" |
5267 | msgstr "Critical threshold muss ein Integer sein" | 4039 | msgstr "Critical threshold muss ein Integer sein" |
5268 | 4040 | ||
5269 | #: plugins/check_swap.c:512 | ||
5270 | #, fuzzy | 4041 | #, fuzzy |
5271 | msgid "Critical threshold be positive integer or percentage!" | 4042 | msgid "Critical threshold be positive integer or percentage!" |
5272 | msgstr "Critical threshold muss ein Integer oder ein Prozentwert sein!" | 4043 | msgstr "Critical threshold muss ein Integer oder ein Prozentwert sein!" |
5273 | 4044 | ||
5274 | #: plugins/check_swap.c:521 | ||
5275 | msgid "" | 4045 | msgid "" |
5276 | "no-swap result must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) " | 4046 | "no-swap result must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) " |
5277 | "or integer (0-3)." | 4047 | "or integer (0-3)." |
5278 | msgstr "" | 4048 | msgstr "" |
5279 | 4049 | ||
5280 | #: plugins/check_swap.c:558 | ||
5281 | #, fuzzy | 4050 | #, fuzzy |
5282 | msgid "Warning should be more than critical" | 4051 | msgid "Warning should be more than critical" |
5283 | msgstr "Warning threshold muss ein Integer oder ein Prozentwert sein" | 4052 | msgstr "Warning threshold muss ein Integer oder ein Prozentwert sein" |
5284 | 4053 | ||
5285 | #: plugins/check_swap.c:572 | ||
5286 | msgid "Check swap space on local machine." | 4054 | msgid "Check swap space on local machine." |
5287 | msgstr "" | 4055 | msgstr "" |
5288 | 4056 | ||
5289 | #: plugins/check_swap.c:582 | ||
5290 | msgid "" | 4057 | msgid "" |
5291 | "Exit with WARNING status if less than INTEGER bytes of swap space are free" | 4058 | "Exit with WARNING status if less than INTEGER bytes of swap space are free" |
5292 | msgstr "" | 4059 | msgstr "" |
5293 | 4060 | ||
5294 | #: plugins/check_swap.c:584 | ||
5295 | msgid "Exit with WARNING status if less than PERCENT of swap space is free" | 4061 | msgid "Exit with WARNING status if less than PERCENT of swap space is free" |
5296 | msgstr "" | 4062 | msgstr "" |
5297 | 4063 | ||
5298 | #: plugins/check_swap.c:586 | ||
5299 | msgid "" | 4064 | msgid "" |
5300 | "Exit with CRITICAL status if less than INTEGER bytes of swap space are free" | 4065 | "Exit with CRITICAL status if less than INTEGER bytes of swap space are free" |
5301 | msgstr "" | 4066 | msgstr "" |
5302 | 4067 | ||
5303 | #: plugins/check_swap.c:588 | ||
5304 | msgid "Exit with CRITICAL status if less than PERCENT of swap space is free" | 4068 | msgid "Exit with CRITICAL status if less than PERCENT of swap space is free" |
5305 | msgstr "" | 4069 | msgstr "" |
5306 | 4070 | ||
5307 | #: plugins/check_swap.c:590 | ||
5308 | msgid "Conduct comparisons for all swap partitions, one by one" | 4071 | msgid "Conduct comparisons for all swap partitions, one by one" |
5309 | msgstr "" | 4072 | msgstr "" |
5310 | 4073 | ||
5311 | #: plugins/check_swap.c:592 | ||
5312 | msgid "" | 4074 | msgid "" |
5313 | "Resulting state when there is no swap regardless of thresholds. Default:" | 4075 | "Resulting state when there is no swap regardless of thresholds. Default:" |
5314 | msgstr "" | 4076 | msgstr "" |
5315 | 4077 | ||
5316 | #: plugins/check_swap.c:597 | ||
5317 | msgid "" | 4078 | msgid "" |
5318 | "Both INTEGER and PERCENT thresholds can be specified, they are all checked." | 4079 | "Both INTEGER and PERCENT thresholds can be specified, they are all checked." |
5319 | msgstr "" | 4080 | msgstr "" |
5320 | 4081 | ||
5321 | #: plugins/check_swap.c:598 | ||
5322 | msgid "On AIX, if -a is specified, uses lsps -a, otherwise uses lsps -s." | 4082 | msgid "On AIX, if -a is specified, uses lsps -a, otherwise uses lsps -s." |
5323 | msgstr "" | 4083 | msgstr "" |
5324 | 4084 | ||
5325 | #: plugins/check_tcp.c:210 | ||
5326 | msgid "CRITICAL - Generic check_tcp called with unknown service\n" | 4085 | msgid "CRITICAL - Generic check_tcp called with unknown service\n" |
5327 | msgstr "" | 4086 | msgstr "" |
5328 | 4087 | ||
5329 | #: plugins/check_tcp.c:234 | ||
5330 | msgid "With UDP checks, a send/expect string must be specified." | 4088 | msgid "With UDP checks, a send/expect string must be specified." |
5331 | msgstr "" | 4089 | msgstr "" |
5332 | 4090 | ||
5333 | #: plugins/check_tcp.c:445 | ||
5334 | msgid "No arguments found" | 4091 | msgid "No arguments found" |
5335 | msgstr "" | 4092 | msgstr "" |
5336 | 4093 | ||
5337 | #: plugins/check_tcp.c:548 | ||
5338 | msgid "Maxbytes must be a positive integer" | 4094 | msgid "Maxbytes must be a positive integer" |
5339 | msgstr "Maxbytes muss ein positiver Integer sein" | 4095 | msgstr "Maxbytes muss ein positiver Integer sein" |
5340 | 4096 | ||
5341 | #: plugins/check_tcp.c:566 | ||
5342 | msgid "Refuse must be one of ok, warn, crit" | 4097 | msgid "Refuse must be one of ok, warn, crit" |
5343 | msgstr "" | 4098 | msgstr "" |
5344 | 4099 | ||
5345 | #: plugins/check_tcp.c:576 | ||
5346 | msgid "Mismatch must be one of ok, warn, crit" | 4100 | msgid "Mismatch must be one of ok, warn, crit" |
5347 | msgstr "" | 4101 | msgstr "" |
5348 | 4102 | ||
5349 | #: plugins/check_tcp.c:582 | ||
5350 | msgid "Delay must be a positive integer" | 4103 | msgid "Delay must be a positive integer" |
5351 | msgstr "Delay muss ein positiver Integer sein" | 4104 | msgstr "Delay muss ein positiver Integer sein" |
5352 | 4105 | ||
5353 | #: plugins/check_tcp.c:637 | ||
5354 | #, fuzzy | 4106 | #, fuzzy |
5355 | msgid "You must provide a server address" | 4107 | msgid "You must provide a server address" |
5356 | msgstr "%s: Hostname muss angegeben werden\n" | 4108 | msgstr "%s: Hostname muss angegeben werden\n" |
5357 | 4109 | ||
5358 | #: plugins/check_tcp.c:639 | ||
5359 | #, fuzzy | 4110 | #, fuzzy |
5360 | msgid "Invalid hostname, address or socket" | 4111 | msgid "Invalid hostname, address or socket" |
5361 | msgstr "Ungültige(r) Hostname/Adresse" | 4112 | msgstr "Ungültige(r) Hostname/Adresse" |
5362 | 4113 | ||
5363 | #: plugins/check_tcp.c:653 | ||
5364 | #, fuzzy, c-format | 4114 | #, fuzzy, c-format |
5365 | msgid "" | 4115 | msgid "" |
5366 | "This plugin tests %s connections with the specified host (or unix socket).\n" | 4116 | "This plugin tests %s connections with the specified host (or unix socket).\n" |
5367 | "\n" | 4117 | "\n" |
5368 | msgstr "Dieses plugin testet Gameserververbindungen zum angegebenen Host." | 4118 | msgstr "Dieses plugin testet Gameserververbindungen zum angegebenen Host." |
5369 | 4119 | ||
5370 | #: plugins/check_tcp.c:666 | ||
5371 | msgid "" | 4120 | msgid "" |
5372 | "Can use \\n, \\r, \\t or \\\\ in send or quit string. Must come before send " | 4121 | "Can use \\n, \\r, \\t or \\\\ in send or quit string. Must come before send " |
5373 | "or quit option" | 4122 | "or quit option" |
5374 | msgstr "" | 4123 | msgstr "" |
5375 | 4124 | ||
5376 | #: plugins/check_tcp.c:667 | ||
5377 | msgid "Default: nothing added to send, \\r\\n added to end of quit" | 4125 | msgid "Default: nothing added to send, \\r\\n added to end of quit" |
5378 | msgstr "" | 4126 | msgstr "" |
5379 | 4127 | ||
5380 | #: plugins/check_tcp.c:669 | ||
5381 | msgid "String to send to the server" | 4128 | msgid "String to send to the server" |
5382 | msgstr "" | 4129 | msgstr "" |
5383 | 4130 | ||
5384 | #: plugins/check_tcp.c:671 | ||
5385 | msgid "String to expect in server response" | 4131 | msgid "String to expect in server response" |
5386 | msgstr "" | 4132 | msgstr "" |
5387 | 4133 | ||
5388 | #: plugins/check_tcp.c:671 | ||
5389 | msgid "(may be repeated)" | 4134 | msgid "(may be repeated)" |
5390 | msgstr "" | 4135 | msgstr "" |
5391 | 4136 | ||
5392 | #: plugins/check_tcp.c:673 | ||
5393 | msgid "All expect strings need to occur in server response. Default is any" | 4137 | msgid "All expect strings need to occur in server response. Default is any" |
5394 | msgstr "" | 4138 | msgstr "" |
5395 | 4139 | ||
5396 | #: plugins/check_tcp.c:675 | ||
5397 | msgid "String to send server to initiate a clean close of the connection" | 4140 | msgid "String to send server to initiate a clean close of the connection" |
5398 | msgstr "" | 4141 | msgstr "" |
5399 | 4142 | ||
5400 | #: plugins/check_tcp.c:677 | ||
5401 | msgid "Accept TCP refusals with states ok, warn, crit (default: crit)" | 4143 | msgid "Accept TCP refusals with states ok, warn, crit (default: crit)" |
5402 | msgstr "" | 4144 | msgstr "" |
5403 | 4145 | ||
5404 | #: plugins/check_tcp.c:679 | ||
5405 | msgid "" | 4146 | msgid "" |
5406 | "Accept expected string mismatches with states ok, warn, crit (default: warn)" | 4147 | "Accept expected string mismatches with states ok, warn, crit (default: warn)" |
5407 | msgstr "" | 4148 | msgstr "" |
5408 | 4149 | ||
5409 | #: plugins/check_tcp.c:681 | ||
5410 | #, fuzzy | 4150 | #, fuzzy |
5411 | msgid "Hide output from TCP socket" | 4151 | msgid "Hide output from TCP socket" |
5412 | msgstr "Konnte TCP socket nicht öffnen\n" | 4152 | msgstr "Konnte TCP socket nicht öffnen\n" |
5413 | 4153 | ||
5414 | #: plugins/check_tcp.c:683 | ||
5415 | msgid "Close connection once more than this number of bytes are received" | 4154 | msgid "Close connection once more than this number of bytes are received" |
5416 | msgstr "" | 4155 | msgstr "" |
5417 | 4156 | ||
5418 | #: plugins/check_tcp.c:685 | ||
5419 | msgid "Seconds to wait between sending string and polling for response" | 4157 | msgid "Seconds to wait between sending string and polling for response" |
5420 | msgstr "" | 4158 | msgstr "" |
5421 | 4159 | ||
5422 | #: plugins/check_tcp.c:690 | ||
5423 | msgid "1st is #days for warning, 2nd is critical (if not specified - 0)." | 4160 | msgid "1st is #days for warning, 2nd is critical (if not specified - 0)." |
5424 | msgstr "" | 4161 | msgstr "" |
5425 | 4162 | ||
5426 | #: plugins/check_tcp.c:692 | ||
5427 | msgid "Use SSL for the connection." | 4163 | msgid "Use SSL for the connection." |
5428 | msgstr "" | 4164 | msgstr "" |
5429 | 4165 | ||
5430 | #: plugins/check_tcp.c:694 | ||
5431 | msgid "SSL server_name" | 4166 | msgid "SSL server_name" |
5432 | msgstr "" | 4167 | msgstr "" |
5433 | 4168 | ||
5434 | #: plugins/check_time.c:102 | ||
5435 | #, c-format | 4169 | #, c-format |
5436 | msgid "TIME UNKNOWN - could not connect to server %s, port %d\n" | 4170 | msgid "TIME UNKNOWN - could not connect to server %s, port %d\n" |
5437 | msgstr "" | 4171 | msgstr "" |
5438 | 4172 | ||
5439 | #: plugins/check_time.c:115 | ||
5440 | #, c-format | 4173 | #, c-format |
5441 | msgid "TIME UNKNOWN - could not send UDP request to server %s, port %d\n" | 4174 | msgid "TIME UNKNOWN - could not send UDP request to server %s, port %d\n" |
5442 | msgstr "" | 4175 | msgstr "" |
5443 | 4176 | ||
5444 | #: plugins/check_time.c:139 | ||
5445 | #, c-format | 4177 | #, c-format |
5446 | msgid "TIME UNKNOWN - no data received from server %s, port %d\n" | 4178 | msgid "TIME UNKNOWN - no data received from server %s, port %d\n" |
5447 | msgstr "" | 4179 | msgstr "" |
5448 | 4180 | ||
5449 | #: plugins/check_time.c:152 | ||
5450 | #, c-format | 4181 | #, c-format |
5451 | msgid "TIME %s - %d second response time|%s\n" | 4182 | msgid "TIME %s - %d second response time|%s\n" |
5452 | msgstr "" | 4183 | msgstr "" |
5453 | 4184 | ||
5454 | #: plugins/check_time.c:170 | ||
5455 | #, c-format | 4185 | #, c-format |
5456 | msgid "TIME %s - %lu second time difference|%s %s\n" | 4186 | msgid "TIME %s - %lu second time difference|%s %s\n" |
5457 | msgstr "" | 4187 | msgstr "" |
5458 | 4188 | ||
5459 | #: plugins/check_time.c:254 | ||
5460 | msgid "Warning thresholds must be a positive integer" | 4189 | msgid "Warning thresholds must be a positive integer" |
5461 | msgstr "Warning thresholds muss ein positiver Integer sein" | 4190 | msgstr "Warning thresholds muss ein positiver Integer sein" |
5462 | 4191 | ||
5463 | #: plugins/check_time.c:273 | ||
5464 | msgid "Critical thresholds must be a positive integer" | 4192 | msgid "Critical thresholds must be a positive integer" |
5465 | msgstr "Critical thresholds muss ein positiver Integer sein" | 4193 | msgstr "Critical thresholds muss ein positiver Integer sein" |
5466 | 4194 | ||
5467 | #: plugins/check_time.c:339 | ||
5468 | #, fuzzy | 4195 | #, fuzzy |
5469 | msgid "This plugin will check the time on the specified host." | 4196 | msgid "This plugin will check the time on the specified host." |
5470 | msgstr "" | 4197 | msgstr "" |
5471 | "Testet den DNS Dienst auf dem angegebenen Host mit dig\n" | 4198 | "Testet den DNS Dienst auf dem angegebenen Host mit dig\n" |
5472 | "\n" | 4199 | "\n" |
5473 | 4200 | ||
5474 | #: plugins/check_time.c:351 | ||
5475 | msgid "Use UDP to connect, not TCP" | 4201 | msgid "Use UDP to connect, not TCP" |
5476 | msgstr "" | 4202 | msgstr "" |
5477 | 4203 | ||
5478 | #: plugins/check_time.c:353 | ||
5479 | msgid "Time difference (sec.) necessary to result in a warning status" | 4204 | msgid "Time difference (sec.) necessary to result in a warning status" |
5480 | msgstr "" | 4205 | msgstr "" |
5481 | 4206 | ||
5482 | #: plugins/check_time.c:355 | ||
5483 | msgid "Time difference (sec.) necessary to result in a critical status" | 4207 | msgid "Time difference (sec.) necessary to result in a critical status" |
5484 | msgstr "" | 4208 | msgstr "" |
5485 | 4209 | ||
5486 | #: plugins/check_time.c:357 | ||
5487 | msgid "Response time (sec.) necessary to result in warning status" | 4210 | msgid "Response time (sec.) necessary to result in warning status" |
5488 | msgstr "" | 4211 | msgstr "" |
5489 | 4212 | ||
5490 | #: plugins/check_time.c:359 | ||
5491 | msgid "Response time (sec.) necessary to result in critical status" | 4213 | msgid "Response time (sec.) necessary to result in critical status" |
5492 | msgstr "" | 4214 | msgstr "" |
5493 | 4215 | ||
5494 | #: plugins/check_ups.c:144 | ||
5495 | msgid "On Battery, Low Battery" | 4216 | msgid "On Battery, Low Battery" |
5496 | msgstr "" | 4217 | msgstr "" |
5497 | 4218 | ||
5498 | #: plugins/check_ups.c:149 | ||
5499 | msgid "Online" | 4219 | msgid "Online" |
5500 | msgstr "" | 4220 | msgstr "" |
5501 | 4221 | ||
5502 | #: plugins/check_ups.c:152 | ||
5503 | msgid "On Battery" | 4222 | msgid "On Battery" |
5504 | msgstr "" | 4223 | msgstr "" |
5505 | 4224 | ||
5506 | #: plugins/check_ups.c:156 | ||
5507 | msgid ", Low Battery" | 4225 | msgid ", Low Battery" |
5508 | msgstr "" | 4226 | msgstr "" |
5509 | 4227 | ||
5510 | #: plugins/check_ups.c:160 | ||
5511 | msgid ", Calibrating" | 4228 | msgid ", Calibrating" |
5512 | msgstr "" | 4229 | msgstr "" |
5513 | 4230 | ||
5514 | #: plugins/check_ups.c:163 | ||
5515 | msgid ", Replace Battery" | 4231 | msgid ", Replace Battery" |
5516 | msgstr "" | 4232 | msgstr "" |
5517 | 4233 | ||
5518 | #: plugins/check_ups.c:167 | ||
5519 | msgid ", On Bypass" | 4234 | msgid ", On Bypass" |
5520 | msgstr "" | 4235 | msgstr "" |
5521 | 4236 | ||
5522 | #: plugins/check_ups.c:170 | ||
5523 | msgid ", Overload" | 4237 | msgid ", Overload" |
5524 | msgstr "" | 4238 | msgstr "" |
5525 | 4239 | ||
5526 | #: plugins/check_ups.c:173 | ||
5527 | msgid ", Trimming" | 4240 | msgid ", Trimming" |
5528 | msgstr "" | 4241 | msgstr "" |
5529 | 4242 | ||
5530 | #: plugins/check_ups.c:176 | ||
5531 | msgid ", Boosting" | 4243 | msgid ", Boosting" |
5532 | msgstr "" | 4244 | msgstr "" |
5533 | 4245 | ||
5534 | #: plugins/check_ups.c:179 | ||
5535 | msgid ", Charging" | 4246 | msgid ", Charging" |
5536 | msgstr "" | 4247 | msgstr "" |
5537 | 4248 | ||
5538 | #: plugins/check_ups.c:182 | ||
5539 | msgid ", Discharging" | 4249 | msgid ", Discharging" |
5540 | msgstr "" | 4250 | msgstr "" |
5541 | 4251 | ||
5542 | #: plugins/check_ups.c:185 | ||
5543 | msgid ", Unknown" | 4252 | msgid ", Unknown" |
5544 | msgstr "" | 4253 | msgstr "" |
5545 | 4254 | ||
5546 | #: plugins/check_ups.c:324 | ||
5547 | #, fuzzy | 4255 | #, fuzzy |
5548 | msgid "UPS does not support any available options\n" | 4256 | msgid "UPS does not support any available options\n" |
5549 | msgstr "IPv6 Unterstützung nicht vorhanden" | 4257 | msgstr "IPv6 Unterstützung nicht vorhanden" |
5550 | 4258 | ||
5551 | #: plugins/check_ups.c:348 plugins/check_ups.c:414 | ||
5552 | #, fuzzy | 4259 | #, fuzzy |
5553 | msgid "Invalid response received from host" | 4260 | msgid "Invalid response received from host" |
5554 | msgstr "Ungültige HTTP Antwort von Host empfangen\n" | 4261 | msgstr "Ungültige HTTP Antwort von Host empfangen\n" |
5555 | 4262 | ||
5556 | #: plugins/check_ups.c:406 | ||
5557 | msgid "UPS name to long for buffer" | 4263 | msgid "UPS name to long for buffer" |
5558 | msgstr "" | 4264 | msgstr "" |
5559 | 4265 | ||
5560 | #: plugins/check_ups.c:423 | ||
5561 | #, fuzzy, c-format | 4266 | #, fuzzy, c-format |
5562 | msgid "CRITICAL - no such UPS '%s' on that host\n" | 4267 | msgid "CRITICAL - no such UPS '%s' on that host\n" |
5563 | msgstr "%s [%s nicht gefunden]" | 4268 | msgstr "%s [%s nicht gefunden]" |
5564 | 4269 | ||
5565 | #: plugins/check_ups.c:433 | ||
5566 | #, fuzzy | 4270 | #, fuzzy |
5567 | msgid "CRITICAL - UPS data is stale" | 4271 | msgid "CRITICAL - UPS data is stale" |
5568 | msgstr "CRITICAL - Serverdatum \"%100s\" konnte nicht verarbeitet werden" | 4272 | msgstr "CRITICAL - Serverdatum \"%100s\" konnte nicht verarbeitet werden" |
5569 | 4273 | ||
5570 | #: plugins/check_ups.c:438 | ||
5571 | #, fuzzy, c-format | 4274 | #, fuzzy, c-format |
5572 | msgid "Unknown error: %s\n" | 4275 | msgid "Unknown error: %s\n" |
5573 | msgstr "Papierfehler" | 4276 | msgstr "Papierfehler" |
5574 | 4277 | ||
5575 | #: plugins/check_ups.c:445 | ||
5576 | msgid "Error: unable to parse variable" | 4278 | msgid "Error: unable to parse variable" |
5577 | msgstr "" | 4279 | msgstr "" |
5578 | 4280 | ||
5579 | #: plugins/check_ups.c:552 | ||
5580 | msgid "Unrecognized UPS variable" | 4281 | msgid "Unrecognized UPS variable" |
5581 | msgstr "" | 4282 | msgstr "" |
5582 | 4283 | ||
5583 | #: plugins/check_ups.c:590 | ||
5584 | msgid "Error : no UPS indicated" | 4284 | msgid "Error : no UPS indicated" |
5585 | msgstr "" | 4285 | msgstr "" |
5586 | 4286 | ||
5587 | #: plugins/check_ups.c:610 | ||
5588 | #, fuzzy | 4287 | #, fuzzy |
5589 | msgid "" | 4288 | msgid "" |
5590 | "This plugin tests the UPS service on the specified host. Network UPS Tools" | 4289 | "This plugin tests the UPS service on the specified host. Network UPS Tools" |
@@ -5592,102 +4291,81 @@ msgstr "" | |||
5592 | "Testet den DNS Dienst auf dem angegebenen Host mit dig\n" | 4291 | "Testet den DNS Dienst auf dem angegebenen Host mit dig\n" |
5593 | "\n" | 4292 | "\n" |
5594 | 4293 | ||
5595 | #: plugins/check_ups.c:611 | ||
5596 | msgid "from www.networkupstools.org must be running for this plugin to work." | 4294 | msgid "from www.networkupstools.org must be running for this plugin to work." |
5597 | msgstr "" | 4295 | msgstr "" |
5598 | 4296 | ||
5599 | #: plugins/check_ups.c:623 | ||
5600 | msgid "Name of UPS" | 4297 | msgid "Name of UPS" |
5601 | msgstr "" | 4298 | msgstr "" |
5602 | 4299 | ||
5603 | #: plugins/check_ups.c:625 | ||
5604 | msgid "Output of temperatures in Celsius" | 4300 | msgid "Output of temperatures in Celsius" |
5605 | msgstr "" | 4301 | msgstr "" |
5606 | 4302 | ||
5607 | #: plugins/check_ups.c:627 | ||
5608 | msgid "Valid values for STRING are" | 4303 | msgid "Valid values for STRING are" |
5609 | msgstr "" | 4304 | msgstr "" |
5610 | 4305 | ||
5611 | #: plugins/check_ups.c:638 | ||
5612 | msgid "" | 4306 | msgid "" |
5613 | "This plugin attempts to determine the status of a UPS (Uninterruptible Power" | 4307 | "This plugin attempts to determine the status of a UPS (Uninterruptible Power" |
5614 | msgstr "" | 4308 | msgstr "" |
5615 | 4309 | ||
5616 | #: plugins/check_ups.c:639 | ||
5617 | msgid "" | 4310 | msgid "" |
5618 | "Supply) on a local or remote host. If the UPS is online or calibrating, the" | 4311 | "Supply) on a local or remote host. If the UPS is online or calibrating, the" |
5619 | msgstr "" | 4312 | msgstr "" |
5620 | 4313 | ||
5621 | #: plugins/check_ups.c:640 | ||
5622 | msgid "" | 4314 | msgid "" |
5623 | "plugin will return an OK state. If the battery is on it will return a WARNING" | 4315 | "plugin will return an OK state. If the battery is on it will return a WARNING" |
5624 | msgstr "" | 4316 | msgstr "" |
5625 | 4317 | ||
5626 | #: plugins/check_ups.c:641 | ||
5627 | msgid "" | 4318 | msgid "" |
5628 | "state. If the UPS is off or has a low battery the plugin will return a " | 4319 | "state. If the UPS is off or has a low battery the plugin will return a " |
5629 | "CRITICAL" | 4320 | "CRITICAL" |
5630 | msgstr "" | 4321 | msgstr "" |
5631 | 4322 | ||
5632 | #: plugins/check_ups.c:646 | ||
5633 | msgid "" | 4323 | msgid "" |
5634 | "You may also specify a variable to check (such as temperature, utility " | 4324 | "You may also specify a variable to check (such as temperature, utility " |
5635 | "voltage," | 4325 | "voltage," |
5636 | msgstr "" | 4326 | msgstr "" |
5637 | 4327 | ||
5638 | #: plugins/check_ups.c:647 | ||
5639 | msgid "" | 4328 | msgid "" |
5640 | "battery load, etc.) as well as warning and critical thresholds for the value" | 4329 | "battery load, etc.) as well as warning and critical thresholds for the value" |
5641 | msgstr "" | 4330 | msgstr "" |
5642 | 4331 | ||
5643 | #: plugins/check_ups.c:648 | ||
5644 | msgid "" | 4332 | msgid "" |
5645 | "of that variable. If the remote host has multiple UPS that are being " | 4333 | "of that variable. If the remote host has multiple UPS that are being " |
5646 | "monitored" | 4334 | "monitored" |
5647 | msgstr "" | 4335 | msgstr "" |
5648 | 4336 | ||
5649 | #: plugins/check_ups.c:649 | ||
5650 | msgid "you will have to use the --ups option to specify which UPS to check." | 4337 | msgid "you will have to use the --ups option to specify which UPS to check." |
5651 | msgstr "" | 4338 | msgstr "" |
5652 | 4339 | ||
5653 | #: plugins/check_ups.c:651 | ||
5654 | msgid "" | 4340 | msgid "" |
5655 | "This plugin requires that the UPSD daemon distributed with Russell Kroll's" | 4341 | "This plugin requires that the UPSD daemon distributed with Russell Kroll's" |
5656 | msgstr "" | 4342 | msgstr "" |
5657 | 4343 | ||
5658 | #: plugins/check_ups.c:652 | ||
5659 | msgid "" | 4344 | msgid "" |
5660 | "Network UPS Tools be installed on the remote host. If you do not have the" | 4345 | "Network UPS Tools be installed on the remote host. If you do not have the" |
5661 | msgstr "" | 4346 | msgstr "" |
5662 | 4347 | ||
5663 | #: plugins/check_ups.c:653 | ||
5664 | msgid "package installed on your system, you can download it from" | 4348 | msgid "package installed on your system, you can download it from" |
5665 | msgstr "" | 4349 | msgstr "" |
5666 | 4350 | ||
5667 | #: plugins/check_ups.c:654 | ||
5668 | msgid "http://www.networkupstools.org" | 4351 | msgid "http://www.networkupstools.org" |
5669 | msgstr "" | 4352 | msgstr "" |
5670 | 4353 | ||
5671 | #: plugins/check_users.c:91 | ||
5672 | #, fuzzy, c-format | 4354 | #, fuzzy, c-format |
5673 | msgid "Could not enumerate RD sessions: %d\n" | 4355 | msgid "Could not enumerate RD sessions: %d\n" |
5674 | msgstr "Konnte·url·nicht·zuweisen\n" | 4356 | msgstr "Konnte·url·nicht·zuweisen\n" |
5675 | 4357 | ||
5676 | #: plugins/check_users.c:146 | ||
5677 | #, c-format | 4358 | #, c-format |
5678 | msgid "# users=%d" | 4359 | msgid "# users=%d" |
5679 | msgstr "" | 4360 | msgstr "" |
5680 | 4361 | ||
5681 | #: plugins/check_users.c:164 | ||
5682 | msgid "Unable to read output" | 4362 | msgid "Unable to read output" |
5683 | msgstr "" | 4363 | msgstr "" |
5684 | 4364 | ||
5685 | #: plugins/check_users.c:166 | ||
5686 | #, c-format | 4365 | #, c-format |
5687 | msgid "USERS %s - %d users currently logged in |%s\n" | 4366 | msgid "USERS %s - %d users currently logged in |%s\n" |
5688 | msgstr "" | 4367 | msgstr "" |
5689 | 4368 | ||
5690 | #: plugins/check_users.c:241 | ||
5691 | #, fuzzy | 4369 | #, fuzzy |
5692 | msgid "This plugin checks the number of users currently logged in on the local" | 4370 | msgid "This plugin checks the number of users currently logged in on the local" |
5693 | msgstr "" | 4371 | msgstr "" |
@@ -5696,411 +4374,326 @@ msgstr "" | |||
5696 | "unterschritten wird.\n" | 4374 | "unterschritten wird.\n" |
5697 | "\n" | 4375 | "\n" |
5698 | 4376 | ||
5699 | #: plugins/check_users.c:242 | ||
5700 | msgid "" | 4377 | msgid "" |
5701 | "system and generates an error if the number exceeds the thresholds specified." | 4378 | "system and generates an error if the number exceeds the thresholds specified." |
5702 | msgstr "" | 4379 | msgstr "" |
5703 | 4380 | ||
5704 | #: plugins/check_users.c:252 | ||
5705 | msgid "Set WARNING status if more than INTEGER users are logged in" | 4381 | msgid "Set WARNING status if more than INTEGER users are logged in" |
5706 | msgstr "" | 4382 | msgstr "" |
5707 | 4383 | ||
5708 | #: plugins/check_users.c:254 | ||
5709 | msgid "Set CRITICAL status if more than INTEGER users are logged in" | 4384 | msgid "Set CRITICAL status if more than INTEGER users are logged in" |
5710 | msgstr "" | 4385 | msgstr "" |
5711 | 4386 | ||
5712 | #: plugins/check_ide_smart.c:218 | ||
5713 | msgid "" | 4387 | msgid "" |
5714 | "DEPRECATION WARNING: the -q switch (quiet output) is no longer \"quiet\"." | 4388 | "DEPRECATION WARNING: the -q switch (quiet output) is no longer \"quiet\"." |
5715 | msgstr "" | 4389 | msgstr "" |
5716 | 4390 | ||
5717 | #: plugins/check_ide_smart.c:219 | ||
5718 | msgid "Nagios-compatible output is now always returned." | 4391 | msgid "Nagios-compatible output is now always returned." |
5719 | msgstr "" | 4392 | msgstr "" |
5720 | 4393 | ||
5721 | #: plugins/check_ide_smart.c:224 | ||
5722 | msgid "SMART commands are broken and have been disabled (See Notes in --help)." | 4394 | msgid "SMART commands are broken and have been disabled (See Notes in --help)." |
5723 | msgstr "" | 4395 | msgstr "" |
5724 | 4396 | ||
5725 | #: plugins/check_ide_smart.c:228 | ||
5726 | msgid "" | 4397 | msgid "" |
5727 | "DEPRECATION WARNING: the -n switch (Nagios-compatible output) is now the" | 4398 | "DEPRECATION WARNING: the -n switch (Nagios-compatible output) is now the" |
5728 | msgstr "" | 4399 | msgstr "" |
5729 | 4400 | ||
5730 | #: plugins/check_ide_smart.c:229 | ||
5731 | msgid "default and will be removed from future releases." | 4401 | msgid "default and will be removed from future releases." |
5732 | msgstr "" | 4402 | msgstr "" |
5733 | 4403 | ||
5734 | #: plugins/check_ide_smart.c:257 | ||
5735 | #, fuzzy, c-format | 4404 | #, fuzzy, c-format |
5736 | msgid "CRITICAL - Couldn't open device %s: %s\n" | 4405 | msgid "CRITICAL - Couldn't open device %s: %s\n" |
5737 | msgstr "CRITICAL - Device konnte nicht geöffnet werden: %s\n" | 4406 | msgstr "CRITICAL - Device konnte nicht geöffnet werden: %s\n" |
5738 | 4407 | ||
5739 | #: plugins/check_ide_smart.c:262 | ||
5740 | #, c-format | 4408 | #, c-format |
5741 | msgid "CRITICAL - SMART_CMD_ENABLE\n" | 4409 | msgid "CRITICAL - SMART_CMD_ENABLE\n" |
5742 | msgstr "" | 4410 | msgstr "" |
5743 | 4411 | ||
5744 | #: plugins/check_ide_smart.c:303 plugins/check_ide_smart.c:330 | ||
5745 | #, c-format | 4412 | #, c-format |
5746 | msgid "CRITICAL - SMART_READ_VALUES: %s\n" | 4413 | msgid "CRITICAL - SMART_READ_VALUES: %s\n" |
5747 | msgstr "" | 4414 | msgstr "" |
5748 | 4415 | ||
5749 | #: plugins/check_ide_smart.c:376 | ||
5750 | #, c-format | 4416 | #, c-format |
5751 | msgid "CRITICAL - %d Harddrive PreFailure%cDetected! %d/%d tests failed.\n" | 4417 | msgid "CRITICAL - %d Harddrive PreFailure%cDetected! %d/%d tests failed.\n" |
5752 | msgstr "" | 4418 | msgstr "" |
5753 | 4419 | ||
5754 | #: plugins/check_ide_smart.c:384 | ||
5755 | #, c-format | 4420 | #, c-format |
5756 | msgid "WARNING - %d Harddrive Advisor%s Detected. %d/%d tests failed.\n" | 4421 | msgid "WARNING - %d Harddrive Advisor%s Detected. %d/%d tests failed.\n" |
5757 | msgstr "" | 4422 | msgstr "" |
5758 | 4423 | ||
5759 | #: plugins/check_ide_smart.c:392 | ||
5760 | #, c-format | 4424 | #, c-format |
5761 | msgid "OK - Operational (%d/%d tests passed)\n" | 4425 | msgid "OK - Operational (%d/%d tests passed)\n" |
5762 | msgstr "" | 4426 | msgstr "" |
5763 | 4427 | ||
5764 | #: plugins/check_ide_smart.c:396 | ||
5765 | #, c-format | 4428 | #, c-format |
5766 | msgid "ERROR - Status '%d' unknown. %d/%d tests passed\n" | 4429 | msgid "ERROR - Status '%d' unknown. %d/%d tests passed\n" |
5767 | msgstr "" | 4430 | msgstr "" |
5768 | 4431 | ||
5769 | #: plugins/check_ide_smart.c:429 | ||
5770 | #, c-format | 4432 | #, c-format |
5771 | msgid "OffLineStatus=%d {%s}, AutoOffLine=%s, OffLineTimeout=%d minutes\n" | 4433 | msgid "OffLineStatus=%d {%s}, AutoOffLine=%s, OffLineTimeout=%d minutes\n" |
5772 | msgstr "" | 4434 | msgstr "" |
5773 | 4435 | ||
5774 | #: plugins/check_ide_smart.c:435 | ||
5775 | #, c-format | 4436 | #, c-format |
5776 | msgid "OffLineCapability=%d {%s %s %s}\n" | 4437 | msgid "OffLineCapability=%d {%s %s %s}\n" |
5777 | msgstr "" | 4438 | msgstr "" |
5778 | 4439 | ||
5779 | #: plugins/check_ide_smart.c:441 | ||
5780 | #, c-format | 4440 | #, c-format |
5781 | msgid "SmartRevision=%d, CheckSum=%d, SmartCapability=%d {%s %s}\n" | 4441 | msgid "SmartRevision=%d, CheckSum=%d, SmartCapability=%d {%s %s}\n" |
5782 | msgstr "" | 4442 | msgstr "" |
5783 | 4443 | ||
5784 | #: plugins/check_ide_smart.c:463 plugins/check_ide_smart.c:492 | ||
5785 | #, c-format | 4444 | #, c-format |
5786 | msgid "CRITICAL - %s: %s\n" | 4445 | msgid "CRITICAL - %s: %s\n" |
5787 | msgstr "" | 4446 | msgstr "" |
5788 | 4447 | ||
5789 | #: plugins/check_ide_smart.c:467 plugins/check_ide_smart.c:496 | ||
5790 | #, c-format | 4448 | #, c-format |
5791 | msgid "OK - Command sent (%s)\n" | 4449 | msgid "OK - Command sent (%s)\n" |
5792 | msgstr "" | 4450 | msgstr "" |
5793 | 4451 | ||
5794 | #: plugins/check_ide_smart.c:517 plugins/check_ide_smart.c:544 | ||
5795 | #, c-format | 4452 | #, c-format |
5796 | msgid "CRITICAL - SMART_READ_THRESHOLDS: %s\n" | 4453 | msgid "CRITICAL - SMART_READ_THRESHOLDS: %s\n" |
5797 | msgstr "" | 4454 | msgstr "" |
5798 | 4455 | ||
5799 | #: plugins/check_ide_smart.c:563 | ||
5800 | #, c-format | 4456 | #, c-format |
5801 | msgid "" | 4457 | msgid "" |
5802 | "This plugin checks a local hard drive with the (Linux specific) SMART " | 4458 | "This plugin checks a local hard drive with the (Linux specific) SMART " |
5803 | "interface [http://smartlinux.sourceforge.net/smart/index.php]." | 4459 | "interface [http://smartlinux.sourceforge.net/smart/index.php]." |
5804 | msgstr "" | 4460 | msgstr "" |
5805 | 4461 | ||
5806 | #: plugins/check_ide_smart.c:573 | ||
5807 | msgid "Select device DEVICE" | 4462 | msgid "Select device DEVICE" |
5808 | msgstr "" | 4463 | msgstr "" |
5809 | 4464 | ||
5810 | #: plugins/check_ide_smart.c:574 | ||
5811 | msgid "" | 4465 | msgid "" |
5812 | "Note: if the device is specified without this option, any further option will" | 4466 | "Note: if the device is specified without this option, any further option will" |
5813 | msgstr "" | 4467 | msgstr "" |
5814 | 4468 | ||
5815 | #: plugins/check_ide_smart.c:575 | ||
5816 | msgid "be ignored." | 4469 | msgid "be ignored." |
5817 | msgstr "" | 4470 | msgstr "" |
5818 | 4471 | ||
5819 | #: plugins/check_ide_smart.c:581 | ||
5820 | msgid "" | 4472 | msgid "" |
5821 | "The SMART command modes (-i/--immediate, -0/--auto-off and -1/--auto-on) were" | 4473 | "The SMART command modes (-i/--immediate, -0/--auto-off and -1/--auto-on) were" |
5822 | msgstr "" | 4474 | msgstr "" |
5823 | 4475 | ||
5824 | #: plugins/check_ide_smart.c:582 | ||
5825 | msgid "" | 4476 | msgid "" |
5826 | "broken in an underhand manner and have been disabled. You can use smartctl" | 4477 | "broken in an underhand manner and have been disabled. You can use smartctl" |
5827 | msgstr "" | 4478 | msgstr "" |
5828 | 4479 | ||
5829 | #: plugins/check_ide_smart.c:583 | ||
5830 | msgid "instead:" | 4480 | msgid "instead:" |
5831 | msgstr "" | 4481 | msgstr "" |
5832 | 4482 | ||
5833 | #: plugins/check_ide_smart.c:584 | ||
5834 | msgid "-0/--auto-off: use \"smartctl --offlineauto=off\"" | 4483 | msgid "-0/--auto-off: use \"smartctl --offlineauto=off\"" |
5835 | msgstr "" | 4484 | msgstr "" |
5836 | 4485 | ||
5837 | #: plugins/check_ide_smart.c:585 | ||
5838 | msgid "-1/--auto-on: use \"smartctl --offlineauto=on\"" | 4486 | msgid "-1/--auto-on: use \"smartctl --offlineauto=on\"" |
5839 | msgstr "" | 4487 | msgstr "" |
5840 | 4488 | ||
5841 | #: plugins/check_ide_smart.c:586 | ||
5842 | msgid "-i/--immediate: use \"smartctl --test=offline\"" | 4489 | msgid "-i/--immediate: use \"smartctl --test=offline\"" |
5843 | msgstr "" | 4490 | msgstr "" |
5844 | 4491 | ||
5845 | #: plugins/negate.c:96 | ||
5846 | #, fuzzy | 4492 | #, fuzzy |
5847 | msgid "No data returned from command\n" | 4493 | msgid "No data returned from command\n" |
5848 | msgstr "Keine Daten empfangen %s\n" | 4494 | msgstr "Keine Daten empfangen %s\n" |
5849 | 4495 | ||
5850 | #: plugins/negate.c:166 | ||
5851 | msgid "" | 4496 | msgid "" |
5852 | "Timeout result must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) " | 4497 | "Timeout result must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) " |
5853 | "or integer (0-3)." | 4498 | "or integer (0-3)." |
5854 | msgstr "" | 4499 | msgstr "" |
5855 | 4500 | ||
5856 | #: plugins/negate.c:170 | ||
5857 | msgid "" | 4501 | msgid "" |
5858 | "Ok must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or integer " | 4502 | "Ok must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or integer " |
5859 | "(0-3)." | 4503 | "(0-3)." |
5860 | msgstr "" | 4504 | msgstr "" |
5861 | 4505 | ||
5862 | #: plugins/negate.c:176 | ||
5863 | msgid "" | 4506 | msgid "" |
5864 | "Warning must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or " | 4507 | "Warning must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or " |
5865 | "integer (0-3)." | 4508 | "integer (0-3)." |
5866 | msgstr "" | 4509 | msgstr "" |
5867 | 4510 | ||
5868 | #: plugins/negate.c:181 | ||
5869 | msgid "" | 4511 | msgid "" |
5870 | "Critical must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or " | 4512 | "Critical must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or " |
5871 | "integer (0-3)." | 4513 | "integer (0-3)." |
5872 | msgstr "" | 4514 | msgstr "" |
5873 | 4515 | ||
5874 | #: plugins/negate.c:186 | ||
5875 | msgid "" | 4516 | msgid "" |
5876 | "Unknown must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or " | 4517 | "Unknown must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or " |
5877 | "integer (0-3)." | 4518 | "integer (0-3)." |
5878 | msgstr "" | 4519 | msgstr "" |
5879 | 4520 | ||
5880 | #: plugins/negate.c:213 | ||
5881 | msgid "Require path to command" | 4521 | msgid "Require path to command" |
5882 | msgstr "" | 4522 | msgstr "" |
5883 | 4523 | ||
5884 | #: plugins/negate.c:224 | ||
5885 | msgid "" | 4524 | msgid "" |
5886 | "Negates the status of a plugin (returns OK for CRITICAL and vice-versa)." | 4525 | "Negates the status of a plugin (returns OK for CRITICAL and vice-versa)." |
5887 | msgstr "" | 4526 | msgstr "" |
5888 | 4527 | ||
5889 | #: plugins/negate.c:225 | ||
5890 | msgid "Additional switches can be used to control which state becomes what." | 4528 | msgid "Additional switches can be used to control which state becomes what." |
5891 | msgstr "" | 4529 | msgstr "" |
5892 | 4530 | ||
5893 | #: plugins/negate.c:234 | ||
5894 | msgid "Keep timeout longer than the plugin timeout to retain CRITICAL status." | 4531 | msgid "Keep timeout longer than the plugin timeout to retain CRITICAL status." |
5895 | msgstr "" | 4532 | msgstr "" |
5896 | 4533 | ||
5897 | #: plugins/negate.c:236 | ||
5898 | msgid "Custom result on Negate timeouts; see below for STATUS definition\n" | 4534 | msgid "Custom result on Negate timeouts; see below for STATUS definition\n" |
5899 | msgstr "" | 4535 | msgstr "" |
5900 | 4536 | ||
5901 | #: plugins/negate.c:242 | ||
5902 | #, c-format | 4537 | #, c-format |
5903 | msgid "" | 4538 | msgid "" |
5904 | " STATUS can be 'OK', 'WARNING', 'CRITICAL' or 'UNKNOWN' without single\n" | 4539 | " STATUS can be 'OK', 'WARNING', 'CRITICAL' or 'UNKNOWN' without single\n" |
5905 | msgstr "" | 4540 | msgstr "" |
5906 | 4541 | ||
5907 | #: plugins/negate.c:243 | ||
5908 | #, c-format | 4542 | #, c-format |
5909 | msgid "" | 4543 | msgid "" |
5910 | " quotes. Numeric values are accepted. If nothing is specified, permutes\n" | 4544 | " quotes. Numeric values are accepted. If nothing is specified, permutes\n" |
5911 | msgstr "" | 4545 | msgstr "" |
5912 | 4546 | ||
5913 | #: plugins/negate.c:244 | ||
5914 | #, c-format | 4547 | #, c-format |
5915 | msgid " OK and CRITICAL.\n" | 4548 | msgid " OK and CRITICAL.\n" |
5916 | msgstr "" | 4549 | msgstr "" |
5917 | 4550 | ||
5918 | #: plugins/negate.c:246 | ||
5919 | #, c-format | 4551 | #, c-format |
5920 | msgid "" | 4552 | msgid "" |
5921 | " Substitute output text as well. Will only substitute text in CAPITALS\n" | 4553 | " Substitute output text as well. Will only substitute text in CAPITALS\n" |
5922 | msgstr "" | 4554 | msgstr "" |
5923 | 4555 | ||
5924 | #: plugins/negate.c:251 | ||
5925 | msgid "Run check_ping and invert result. Must use full path to plugin" | 4556 | msgid "Run check_ping and invert result. Must use full path to plugin" |
5926 | msgstr "" | 4557 | msgstr "" |
5927 | 4558 | ||
5928 | #: plugins/negate.c:253 | ||
5929 | msgid "This will return OK instead of WARNING and UNKNOWN instead of CRITICAL" | 4559 | msgid "This will return OK instead of WARNING and UNKNOWN instead of CRITICAL" |
5930 | msgstr "" | 4560 | msgstr "" |
5931 | 4561 | ||
5932 | #: plugins/negate.c:256 | ||
5933 | msgid "" | 4562 | msgid "" |
5934 | "This plugin is a wrapper to take the output of another plugin and invert it." | 4563 | "This plugin is a wrapper to take the output of another plugin and invert it." |
5935 | msgstr "" | 4564 | msgstr "" |
5936 | 4565 | ||
5937 | #: plugins/negate.c:257 | ||
5938 | msgid "The full path of the plugin must be provided." | 4566 | msgid "The full path of the plugin must be provided." |
5939 | msgstr "" | 4567 | msgstr "" |
5940 | 4568 | ||
5941 | #: plugins/negate.c:258 | ||
5942 | msgid "If the wrapped plugin returns OK, the wrapper will return CRITICAL." | 4569 | msgid "If the wrapped plugin returns OK, the wrapper will return CRITICAL." |
5943 | msgstr "" | 4570 | msgstr "" |
5944 | 4571 | ||
5945 | #: plugins/negate.c:259 | ||
5946 | msgid "If the wrapped plugin returns CRITICAL, the wrapper will return OK." | 4572 | msgid "If the wrapped plugin returns CRITICAL, the wrapper will return OK." |
5947 | msgstr "" | 4573 | msgstr "" |
5948 | 4574 | ||
5949 | #: plugins/negate.c:260 | ||
5950 | msgid "Otherwise, the output state of the wrapped plugin is unchanged." | 4575 | msgid "Otherwise, the output state of the wrapped plugin is unchanged." |
5951 | msgstr "" | 4576 | msgstr "" |
5952 | 4577 | ||
5953 | #: plugins/negate.c:262 | ||
5954 | msgid "" | 4578 | msgid "" |
5955 | "Using timeout-result, it is possible to override the timeout behaviour or a" | 4579 | "Using timeout-result, it is possible to override the timeout behaviour or a" |
5956 | msgstr "" | 4580 | msgstr "" |
5957 | 4581 | ||
5958 | #: plugins/negate.c:263 | ||
5959 | msgid "plugin by setting the negate timeout a bit lower." | 4582 | msgid "plugin by setting the negate timeout a bit lower." |
5960 | msgstr "" | 4583 | msgstr "" |
5961 | 4584 | ||
5962 | #: plugins/netutils.c:49 | ||
5963 | #, fuzzy, c-format | 4585 | #, fuzzy, c-format |
5964 | msgid "%s - Socket timeout after %d seconds\n" | 4586 | msgid "%s - Socket timeout after %d seconds\n" |
5965 | msgstr "CRITICAL - Dokumentendatum ist %d Sekunden in der Zukunft\n" | 4587 | msgstr "CRITICAL - Dokumentendatum ist %d Sekunden in der Zukunft\n" |
5966 | 4588 | ||
5967 | #: plugins/netutils.c:51 | ||
5968 | #, fuzzy, c-format | 4589 | #, fuzzy, c-format |
5969 | msgid "%s - Abnormal timeout after %d seconds\n" | 4590 | msgid "%s - Abnormal timeout after %d seconds\n" |
5970 | msgstr "CRITICAL - Dokumentendatum ist %d Sekunden in der Zukunft\n" | 4591 | msgstr "CRITICAL - Dokumentendatum ist %d Sekunden in der Zukunft\n" |
5971 | 4592 | ||
5972 | #: plugins/netutils.c:79 plugins/netutils.c:292 | ||
5973 | msgid "Send failed" | 4593 | msgid "Send failed" |
5974 | msgstr "" | 4594 | msgstr "" |
5975 | 4595 | ||
5976 | #: plugins/netutils.c:96 plugins/netutils.c:307 | ||
5977 | #, fuzzy | 4596 | #, fuzzy |
5978 | msgid "No data was received from host!" | 4597 | msgid "No data was received from host!" |
5979 | msgstr "Keine Daten empfangen %s\n" | 4598 | msgstr "Keine Daten empfangen %s\n" |
5980 | 4599 | ||
5981 | #: plugins/netutils.c:209 plugins/netutils.c:245 | ||
5982 | msgid "Socket creation failed" | 4600 | msgid "Socket creation failed" |
5983 | msgstr "" | 4601 | msgstr "" |
5984 | 4602 | ||
5985 | #: plugins/netutils.c:238 | ||
5986 | msgid "Supplied path too long unix domain socket" | 4603 | msgid "Supplied path too long unix domain socket" |
5987 | msgstr "" | 4604 | msgstr "" |
5988 | 4605 | ||
5989 | #: plugins/netutils.c:316 | ||
5990 | msgid "Receive failed" | 4606 | msgid "Receive failed" |
5991 | msgstr "" | 4607 | msgstr "" |
5992 | 4608 | ||
5993 | #: plugins/netutils.c:342 plugins-root/check_dhcp.c:1310 | ||
5994 | #, fuzzy, c-format | 4609 | #, fuzzy, c-format |
5995 | msgid "Invalid hostname/address - %s" | 4610 | msgid "Invalid hostname/address - %s" |
5996 | msgstr "" | 4611 | msgstr "" |
5997 | "Ungültige(r) Name/Adresse: %s\n" | 4612 | "Ungültige(r) Name/Adresse: %s\n" |
5998 | "\n" | 4613 | "\n" |
5999 | 4614 | ||
6000 | #: plugins/popen.c:133 | ||
6001 | #, fuzzy | 4615 | #, fuzzy |
6002 | msgid "Could not malloc argv array in popen()" | 4616 | msgid "Could not malloc argv array in popen()" |
6003 | msgstr "Konnte addr nicht zuweisen\n" | 4617 | msgstr "Konnte addr nicht zuweisen\n" |
6004 | 4618 | ||
6005 | #: plugins/popen.c:143 | ||
6006 | #, fuzzy | 4619 | #, fuzzy |
6007 | msgid "CRITICAL - You need more args!!!" | 4620 | msgid "CRITICAL - You need more args!!!" |
6008 | msgstr "CRITICAL - Fehler: %s\n" | 4621 | msgstr "CRITICAL - Fehler: %s\n" |
6009 | 4622 | ||
6010 | #: plugins/popen.c:201 | ||
6011 | #, fuzzy | 4623 | #, fuzzy |
6012 | msgid "Cannot catch SIGCHLD" | 4624 | msgid "Cannot catch SIGCHLD" |
6013 | msgstr "Konnte SIGALRM nicht erhalten" | 4625 | msgstr "Konnte SIGALRM nicht erhalten" |
6014 | 4626 | ||
6015 | #: plugins/popen.c:287 | ||
6016 | #, fuzzy, c-format | 4627 | #, fuzzy, c-format |
6017 | msgid "CRITICAL - Plugin timed out after %d seconds\n" | 4628 | msgid "CRITICAL - Plugin timed out after %d seconds\n" |
6018 | msgstr "CRITICAL - Dokumentendatum ist %d Sekunden in der Zukunft\n" | 4629 | msgstr "CRITICAL - Dokumentendatum ist %d Sekunden in der Zukunft\n" |
6019 | 4630 | ||
6020 | #: plugins/popen.c:290 | ||
6021 | msgid "CRITICAL - popen timeout received, but no child process" | 4631 | msgid "CRITICAL - popen timeout received, but no child process" |
6022 | msgstr "" | 4632 | msgstr "" |
6023 | 4633 | ||
6024 | #: plugins/urlize.c:129 | ||
6025 | #, c-format | 4634 | #, c-format |
6026 | msgid "" | 4635 | msgid "" |
6027 | "%s UNKNOWN - No data received from host\n" | 4636 | "%s UNKNOWN - No data received from host\n" |
6028 | "CMD: %s</A>\n" | 4637 | "CMD: %s</A>\n" |
6029 | msgstr "" | 4638 | msgstr "" |
6030 | 4639 | ||
6031 | #: plugins/urlize.c:168 | ||
6032 | msgid "" | 4640 | msgid "" |
6033 | "This plugin wraps the text output of another command (plugin) in HTML <A>" | 4641 | "This plugin wraps the text output of another command (plugin) in HTML <A>" |
6034 | msgstr "" | 4642 | msgstr "" |
6035 | 4643 | ||
6036 | #: plugins/urlize.c:169 | ||
6037 | msgid "" | 4644 | msgid "" |
6038 | "tags, thus displaying the child plugin's output as a clickable link in " | 4645 | "tags, thus displaying the child plugin's output as a clickable link in " |
6039 | "compatible" | 4646 | "compatible" |
6040 | msgstr "" | 4647 | msgstr "" |
6041 | 4648 | ||
6042 | #: plugins/urlize.c:170 | ||
6043 | msgid "" | 4649 | msgid "" |
6044 | "monitoring status screen. This plugin returns the status of the invoked " | 4650 | "monitoring status screen. This plugin returns the status of the invoked " |
6045 | "plugin." | 4651 | "plugin." |
6046 | msgstr "" | 4652 | msgstr "" |
6047 | 4653 | ||
6048 | #: plugins/urlize.c:180 | ||
6049 | msgid "" | 4654 | msgid "" |
6050 | "Pay close attention to quoting to ensure that the shell passes the expected" | 4655 | "Pay close attention to quoting to ensure that the shell passes the expected" |
6051 | msgstr "" | 4656 | msgstr "" |
6052 | 4657 | ||
6053 | #: plugins/urlize.c:181 | ||
6054 | msgid "data to the plugin. For example, in:" | 4658 | msgid "data to the plugin. For example, in:" |
6055 | msgstr "" | 4659 | msgstr "" |
6056 | 4660 | ||
6057 | #: plugins/urlize.c:182 | ||
6058 | msgid "urlize http://example.com/ check_http -H example.com -r 'two words'" | 4661 | msgid "urlize http://example.com/ check_http -H example.com -r 'two words'" |
6059 | msgstr "" | 4662 | msgstr "" |
6060 | 4663 | ||
6061 | #: plugins/urlize.c:183 | ||
6062 | msgid "the shell will remove the single quotes and urlize will see:" | 4664 | msgid "the shell will remove the single quotes and urlize will see:" |
6063 | msgstr "" | 4665 | msgstr "" |
6064 | 4666 | ||
6065 | #: plugins/urlize.c:184 | ||
6066 | msgid "urlize http://example.com/ check_http -H example.com -r two words" | 4667 | msgid "urlize http://example.com/ check_http -H example.com -r two words" |
6067 | msgstr "" | 4668 | msgstr "" |
6068 | 4669 | ||
6069 | #: plugins/urlize.c:185 | ||
6070 | msgid "You probably want:" | 4670 | msgid "You probably want:" |
6071 | msgstr "" | 4671 | msgstr "" |
6072 | 4672 | ||
6073 | #: plugins/urlize.c:186 | ||
6074 | msgid "urlize http://example.com/ \"check_http -H example.com -r 'two words'\"" | 4673 | msgid "urlize http://example.com/ \"check_http -H example.com -r 'two words'\"" |
6075 | msgstr "" | 4674 | msgstr "" |
6076 | 4675 | ||
6077 | #: plugins/utils.c:479 | ||
6078 | #, fuzzy | 4676 | #, fuzzy |
6079 | msgid "failed realloc in strpcpy\n" | 4677 | msgid "failed realloc in strpcpy\n" |
6080 | msgstr "konnte keinen Speicher für '%s' reservieren\n" | 4678 | msgstr "konnte keinen Speicher für '%s' reservieren\n" |
6081 | 4679 | ||
6082 | #: plugins/utils.c:521 | ||
6083 | #, fuzzy | 4680 | #, fuzzy |
6084 | msgid "failed malloc in strscat\n" | 4681 | msgid "failed malloc in strscat\n" |
6085 | msgstr "konnte keinen Speicher für '%s' reservieren\n" | 4682 | msgstr "konnte keinen Speicher für '%s' reservieren\n" |
6086 | 4683 | ||
6087 | #: plugins/utils.c:541 | ||
6088 | #, fuzzy | 4684 | #, fuzzy |
6089 | msgid "failed malloc in xvasprintf\n" | 4685 | msgid "failed malloc in xvasprintf\n" |
6090 | msgstr "konnte keinen Speicher für '%s' reservieren\n" | 4686 | msgstr "konnte keinen Speicher für '%s' reservieren\n" |
6091 | 4687 | ||
6092 | #: plugins/utils.c:819 | ||
6093 | msgid "sysconf error for _SC_OPEN_MAX\n" | 4688 | msgid "sysconf error for _SC_OPEN_MAX\n" |
6094 | msgstr "" | 4689 | msgstr "" |
6095 | 4690 | ||
6096 | #: plugins/utils.h:127 | ||
6097 | #, c-format | 4691 | #, c-format |
6098 | msgid "" | 4692 | msgid "" |
6099 | " %s (-h | --help) for detailed help\n" | 4693 | " %s (-h | --help) for detailed help\n" |
6100 | " %s (-V | --version) for version information\n" | 4694 | " %s (-V | --version) for version information\n" |
6101 | msgstr "" | 4695 | msgstr "" |
6102 | 4696 | ||
6103 | #: plugins/utils.h:131 | ||
6104 | msgid "" | 4697 | msgid "" |
6105 | "\n" | 4698 | "\n" |
6106 | "Options:\n" | 4699 | "Options:\n" |
@@ -6110,7 +4703,6 @@ msgid "" | |||
6110 | " Print version information\n" | 4703 | " Print version information\n" |
6111 | msgstr "" | 4704 | msgstr "" |
6112 | 4705 | ||
6113 | #: plugins/utils.h:138 | ||
6114 | #, c-format | 4706 | #, c-format |
6115 | msgid "" | 4707 | msgid "" |
6116 | " -H, --hostname=ADDRESS\n" | 4708 | " -H, --hostname=ADDRESS\n" |
@@ -6119,7 +4711,6 @@ msgid "" | |||
6119 | " Port number (default: %s)\n" | 4711 | " Port number (default: %s)\n" |
6120 | msgstr "" | 4712 | msgstr "" |
6121 | 4713 | ||
6122 | #: plugins/utils.h:144 | ||
6123 | msgid "" | 4714 | msgid "" |
6124 | " -4, --use-ipv4\n" | 4715 | " -4, --use-ipv4\n" |
6125 | " Use IPv4 connection\n" | 4716 | " Use IPv4 connection\n" |
@@ -6127,14 +4718,12 @@ msgid "" | |||
6127 | " Use IPv6 connection\n" | 4718 | " Use IPv6 connection\n" |
6128 | msgstr "" | 4719 | msgstr "" |
6129 | 4720 | ||
6130 | #: plugins/utils.h:150 | ||
6131 | msgid "" | 4721 | msgid "" |
6132 | " -v, --verbose\n" | 4722 | " -v, --verbose\n" |
6133 | " Show details for command-line debugging (output may be truncated by\n" | 4723 | " Show details for command-line debugging (output may be truncated by\n" |
6134 | " the monitoring system)\n" | 4724 | " the monitoring system)\n" |
6135 | msgstr "" | 4725 | msgstr "" |
6136 | 4726 | ||
6137 | #: plugins/utils.h:155 | ||
6138 | msgid "" | 4727 | msgid "" |
6139 | " -w, --warning=DOUBLE\n" | 4728 | " -w, --warning=DOUBLE\n" |
6140 | " Response time to result in warning status (seconds)\n" | 4729 | " Response time to result in warning status (seconds)\n" |
@@ -6142,7 +4731,6 @@ msgid "" | |||
6142 | " Response time to result in critical status (seconds)\n" | 4731 | " Response time to result in critical status (seconds)\n" |
6143 | msgstr "" | 4732 | msgstr "" |
6144 | 4733 | ||
6145 | #: plugins/utils.h:161 | ||
6146 | msgid "" | 4734 | msgid "" |
6147 | " -w, --warning=RANGE\n" | 4735 | " -w, --warning=RANGE\n" |
6148 | " Warning range (format: start:end). Alert if outside this range\n" | 4736 | " Warning range (format: start:end). Alert if outside this range\n" |
@@ -6150,21 +4738,18 @@ msgid "" | |||
6150 | " Critical range\n" | 4738 | " Critical range\n" |
6151 | msgstr "" | 4739 | msgstr "" |
6152 | 4740 | ||
6153 | #: plugins/utils.h:167 | ||
6154 | #, c-format | 4741 | #, c-format |
6155 | msgid "" | 4742 | msgid "" |
6156 | " -t, --timeout=INTEGER\n" | 4743 | " -t, --timeout=INTEGER\n" |
6157 | " Seconds before connection times out (default: %d)\n" | 4744 | " Seconds before connection times out (default: %d)\n" |
6158 | msgstr "" | 4745 | msgstr "" |
6159 | 4746 | ||
6160 | #: plugins/utils.h:171 | ||
6161 | #, c-format | 4747 | #, c-format |
6162 | msgid "" | 4748 | msgid "" |
6163 | " -t, --timeout=INTEGER\n" | 4749 | " -t, --timeout=INTEGER\n" |
6164 | " Seconds before plugin times out (default: %d)\n" | 4750 | " Seconds before plugin times out (default: %d)\n" |
6165 | msgstr "" | 4751 | msgstr "" |
6166 | 4752 | ||
6167 | #: plugins/utils.h:176 | ||
6168 | msgid "" | 4753 | msgid "" |
6169 | " --extra-opts=[section][@file]\n" | 4754 | " --extra-opts=[section][@file]\n" |
6170 | " Read options from an ini file. See\n" | 4755 | " Read options from an ini file. See\n" |
@@ -6172,14 +4757,12 @@ msgid "" | |||
6172 | " for usage and examples.\n" | 4757 | " for usage and examples.\n" |
6173 | msgstr "" | 4758 | msgstr "" |
6174 | 4759 | ||
6175 | #: plugins/utils.h:185 | ||
6176 | msgid "" | 4760 | msgid "" |
6177 | " See:\n" | 4761 | " See:\n" |
6178 | " https://www.monitoring-plugins.org/doc/guidelines.html#THRESHOLDFORMAT\n" | 4762 | " https://www.monitoring-plugins.org/doc/guidelines.html#THRESHOLDFORMAT\n" |
6179 | " for THRESHOLD format and examples.\n" | 4763 | " for THRESHOLD format and examples.\n" |
6180 | msgstr "" | 4764 | msgstr "" |
6181 | 4765 | ||
6182 | #: plugins/utils.h:190 | ||
6183 | msgid "" | 4766 | msgid "" |
6184 | "\n" | 4767 | "\n" |
6185 | "Send email to help@monitoring-plugins.org if you have questions regarding\n" | 4768 | "Send email to help@monitoring-plugins.org if you have questions regarding\n" |
@@ -6188,7 +4771,6 @@ msgid "" | |||
6188 | "\n" | 4771 | "\n" |
6189 | msgstr "" | 4772 | msgstr "" |
6190 | 4773 | ||
6191 | #: plugins/utils.h:195 | ||
6192 | msgid "" | 4774 | msgid "" |
6193 | "\n" | 4775 | "\n" |
6194 | "The Monitoring Plugins come with ABSOLUTELY NO WARRANTY. You may " | 4776 | "The Monitoring Plugins come with ABSOLUTELY NO WARRANTY. You may " |
@@ -6197,410 +4779,326 @@ msgid "" | |||
6197 | "For more information about these matters, see the file named COPYING.\n" | 4779 | "For more information about these matters, see the file named COPYING.\n" |
6198 | msgstr "" | 4780 | msgstr "" |
6199 | 4781 | ||
6200 | #: plugins-root/check_dhcp.c:317 | ||
6201 | #, c-format | 4782 | #, c-format |
6202 | msgid "Error: Could not get hardware address of interface '%s'\n" | 4783 | msgid "Error: Could not get hardware address of interface '%s'\n" |
6203 | msgstr "" | 4784 | msgstr "" |
6204 | 4785 | ||
6205 | #: plugins-root/check_dhcp.c:340 | ||
6206 | #, c-format | 4786 | #, c-format |
6207 | msgid "Error: if_nametoindex error - %s.\n" | 4787 | msgid "Error: if_nametoindex error - %s.\n" |
6208 | msgstr "" | 4788 | msgstr "" |
6209 | 4789 | ||
6210 | #: plugins-root/check_dhcp.c:345 | ||
6211 | #, c-format | 4790 | #, c-format |
6212 | msgid "Error: Couldn't get hardware address from %s. sysctl 1 error - %s.\n" | 4791 | msgid "Error: Couldn't get hardware address from %s. sysctl 1 error - %s.\n" |
6213 | msgstr "" | 4792 | msgstr "" |
6214 | 4793 | ||
6215 | #: plugins-root/check_dhcp.c:350 | ||
6216 | #, c-format | 4794 | #, c-format |
6217 | msgid "" | 4795 | msgid "" |
6218 | "Error: Couldn't get hardware address from interface %s. malloc error - %s.\n" | 4796 | "Error: Couldn't get hardware address from interface %s. malloc error - %s.\n" |
6219 | msgstr "" | 4797 | msgstr "" |
6220 | 4798 | ||
6221 | #: plugins-root/check_dhcp.c:355 | ||
6222 | #, c-format | 4799 | #, c-format |
6223 | msgid "Error: Couldn't get hardware address from %s. sysctl 2 error - %s.\n" | 4800 | msgid "Error: Couldn't get hardware address from %s. sysctl 2 error - %s.\n" |
6224 | msgstr "" | 4801 | msgstr "" |
6225 | 4802 | ||
6226 | #: plugins-root/check_dhcp.c:386 | ||
6227 | #, c-format | 4803 | #, c-format |
6228 | msgid "" | 4804 | msgid "" |
6229 | "Error: can't find unit number in interface_name (%s) - expecting TypeNumber " | 4805 | "Error: can't find unit number in interface_name (%s) - expecting TypeNumber " |
6230 | "eg lnc0.\n" | 4806 | "eg lnc0.\n" |
6231 | msgstr "" | 4807 | msgstr "" |
6232 | 4808 | ||
6233 | #: plugins-root/check_dhcp.c:391 plugins-root/check_dhcp.c:403 | ||
6234 | #, c-format | 4809 | #, c-format |
6235 | msgid "" | 4810 | msgid "" |
6236 | "Error: can't read MAC address from DLPI streams interface for device %s unit " | 4811 | "Error: can't read MAC address from DLPI streams interface for device %s unit " |
6237 | "%d.\n" | 4812 | "%d.\n" |
6238 | msgstr "" | 4813 | msgstr "" |
6239 | 4814 | ||
6240 | #: plugins-root/check_dhcp.c:409 | ||
6241 | #, c-format | 4815 | #, c-format |
6242 | msgid "" | 4816 | msgid "" |
6243 | "Error: can't get MAC address for this architecture. Use the --mac option.\n" | 4817 | "Error: can't get MAC address for this architecture. Use the --mac option.\n" |
6244 | msgstr "" | 4818 | msgstr "" |
6245 | 4819 | ||
6246 | #: plugins-root/check_dhcp.c:428 | ||
6247 | #, c-format | 4820 | #, c-format |
6248 | msgid "Error: Cannot determine IP address of interface %s\n" | 4821 | msgid "Error: Cannot determine IP address of interface %s\n" |
6249 | msgstr "" | 4822 | msgstr "" |
6250 | 4823 | ||
6251 | #: plugins-root/check_dhcp.c:436 | ||
6252 | #, c-format | 4824 | #, c-format |
6253 | msgid "Error: Cannot get interface IP address on this platform.\n" | 4825 | msgid "Error: Cannot get interface IP address on this platform.\n" |
6254 | msgstr "" | 4826 | msgstr "" |
6255 | 4827 | ||
6256 | #: plugins-root/check_dhcp.c:441 | ||
6257 | #, c-format | 4828 | #, c-format |
6258 | msgid "Pretending to be relay client %s\n" | 4829 | msgid "Pretending to be relay client %s\n" |
6259 | msgstr "" | 4830 | msgstr "" |
6260 | 4831 | ||
6261 | #: plugins-root/check_dhcp.c:521 | ||
6262 | #, c-format | 4832 | #, c-format |
6263 | msgid "DHCPDISCOVER to %s port %d\n" | 4833 | msgid "DHCPDISCOVER to %s port %d\n" |
6264 | msgstr "" | 4834 | msgstr "" |
6265 | 4835 | ||
6266 | #: plugins-root/check_dhcp.c:573 | ||
6267 | #, c-format | 4836 | #, c-format |
6268 | msgid "Result=ERROR\n" | 4837 | msgid "Result=ERROR\n" |
6269 | msgstr "" | 4838 | msgstr "" |
6270 | 4839 | ||
6271 | #: plugins-root/check_dhcp.c:579 | ||
6272 | #, c-format | 4840 | #, c-format |
6273 | msgid "Result=OK\n" | 4841 | msgid "Result=OK\n" |
6274 | msgstr "" | 4842 | msgstr "" |
6275 | 4843 | ||
6276 | #: plugins-root/check_dhcp.c:589 | ||
6277 | #, c-format | 4844 | #, c-format |
6278 | msgid "DHCPOFFER from IP address %s" | 4845 | msgid "DHCPOFFER from IP address %s" |
6279 | msgstr "" | 4846 | msgstr "" |
6280 | 4847 | ||
6281 | #: plugins-root/check_dhcp.c:590 | ||
6282 | #, c-format | 4848 | #, c-format |
6283 | msgid " via %s\n" | 4849 | msgid " via %s\n" |
6284 | msgstr "" | 4850 | msgstr "" |
6285 | 4851 | ||
6286 | #: plugins-root/check_dhcp.c:597 | ||
6287 | #, c-format | 4852 | #, c-format |
6288 | msgid "" | 4853 | msgid "" |
6289 | "DHCPOFFER XID (%u) did not match DHCPDISCOVER XID (%u) - ignoring packet\n" | 4854 | "DHCPOFFER XID (%u) did not match DHCPDISCOVER XID (%u) - ignoring packet\n" |
6290 | msgstr "" | 4855 | msgstr "" |
6291 | 4856 | ||
6292 | #: plugins-root/check_dhcp.c:619 | ||
6293 | #, c-format | 4857 | #, c-format |
6294 | msgid "DHCPOFFER hardware address did not match our own - ignoring packet\n" | 4858 | msgid "DHCPOFFER hardware address did not match our own - ignoring packet\n" |
6295 | msgstr "" | 4859 | msgstr "" |
6296 | 4860 | ||
6297 | #: plugins-root/check_dhcp.c:637 | ||
6298 | #, c-format | 4861 | #, c-format |
6299 | msgid "Total responses seen on the wire: %d\n" | 4862 | msgid "Total responses seen on the wire: %d\n" |
6300 | msgstr "" | 4863 | msgstr "" |
6301 | 4864 | ||
6302 | #: plugins-root/check_dhcp.c:638 | ||
6303 | #, fuzzy, c-format | 4865 | #, fuzzy, c-format |
6304 | msgid "Valid responses for this machine: %d\n" | 4866 | msgid "Valid responses for this machine: %d\n" |
6305 | msgstr "Keine Antwort vom Host \n" | 4867 | msgstr "Keine Antwort vom Host \n" |
6306 | 4868 | ||
6307 | #: plugins-root/check_dhcp.c:653 | ||
6308 | #, c-format | 4869 | #, c-format |
6309 | msgid "send_dhcp_packet result: %d\n" | 4870 | msgid "send_dhcp_packet result: %d\n" |
6310 | msgstr "" | 4871 | msgstr "" |
6311 | 4872 | ||
6312 | #: plugins-root/check_dhcp.c:686 | ||
6313 | #, fuzzy, c-format | 4873 | #, fuzzy, c-format |
6314 | msgid "No (more) data received (nfound: %d)\n" | 4874 | msgid "No (more) data received (nfound: %d)\n" |
6315 | msgstr "Keine Daten empfangen %s\n" | 4875 | msgstr "Keine Daten empfangen %s\n" |
6316 | 4876 | ||
6317 | #: plugins-root/check_dhcp.c:699 | ||
6318 | #, c-format | 4877 | #, c-format |
6319 | msgid "recvfrom() failed, " | 4878 | msgid "recvfrom() failed, " |
6320 | msgstr "" | 4879 | msgstr "" |
6321 | 4880 | ||
6322 | #: plugins-root/check_dhcp.c:706 | ||
6323 | #, c-format | 4881 | #, c-format |
6324 | msgid "receive_dhcp_packet() result: %d\n" | 4882 | msgid "receive_dhcp_packet() result: %d\n" |
6325 | msgstr "" | 4883 | msgstr "" |
6326 | 4884 | ||
6327 | #: plugins-root/check_dhcp.c:707 | ||
6328 | #, c-format | 4885 | #, c-format |
6329 | msgid "receive_dhcp_packet() source: %s\n" | 4886 | msgid "receive_dhcp_packet() source: %s\n" |
6330 | msgstr "" | 4887 | msgstr "" |
6331 | 4888 | ||
6332 | #: plugins-root/check_dhcp.c:737 | ||
6333 | #, c-format | 4889 | #, c-format |
6334 | msgid "Error: Could not create socket!\n" | 4890 | msgid "Error: Could not create socket!\n" |
6335 | msgstr "" | 4891 | msgstr "" |
6336 | 4892 | ||
6337 | #: plugins-root/check_dhcp.c:747 | ||
6338 | #, c-format | 4893 | #, c-format |
6339 | msgid "Error: Could not set reuse address option on DHCP socket!\n" | 4894 | msgid "Error: Could not set reuse address option on DHCP socket!\n" |
6340 | msgstr "" | 4895 | msgstr "" |
6341 | 4896 | ||
6342 | #: plugins-root/check_dhcp.c:753 | ||
6343 | #, c-format | 4897 | #, c-format |
6344 | msgid "Error: Could not set broadcast option on DHCP socket!\n" | 4898 | msgid "Error: Could not set broadcast option on DHCP socket!\n" |
6345 | msgstr "" | 4899 | msgstr "" |
6346 | 4900 | ||
6347 | #: plugins-root/check_dhcp.c:762 | ||
6348 | #, c-format | 4901 | #, c-format |
6349 | msgid "" | 4902 | msgid "" |
6350 | "Error: Could not bind socket to interface %s. Check your privileges...\n" | 4903 | "Error: Could not bind socket to interface %s. Check your privileges...\n" |
6351 | msgstr "" | 4904 | msgstr "" |
6352 | 4905 | ||
6353 | #: plugins-root/check_dhcp.c:773 | ||
6354 | #, c-format | 4906 | #, c-format |
6355 | msgid "" | 4907 | msgid "" |
6356 | "Error: Could not bind to DHCP socket (port %d)! Check your privileges...\n" | 4908 | "Error: Could not bind to DHCP socket (port %d)! Check your privileges...\n" |
6357 | msgstr "" | 4909 | msgstr "" |
6358 | 4910 | ||
6359 | #: plugins-root/check_dhcp.c:807 | ||
6360 | #, c-format | 4911 | #, c-format |
6361 | msgid "Requested server address: %s\n" | 4912 | msgid "Requested server address: %s\n" |
6362 | msgstr "" | 4913 | msgstr "" |
6363 | 4914 | ||
6364 | #: plugins-root/check_dhcp.c:869 | ||
6365 | #, c-format | 4915 | #, c-format |
6366 | msgid "Lease Time: Infinite\n" | 4916 | msgid "Lease Time: Infinite\n" |
6367 | msgstr "" | 4917 | msgstr "" |
6368 | 4918 | ||
6369 | #: plugins-root/check_dhcp.c:871 | ||
6370 | #, c-format | 4919 | #, c-format |
6371 | msgid "Lease Time: %lu seconds\n" | 4920 | msgid "Lease Time: %lu seconds\n" |
6372 | msgstr "" | 4921 | msgstr "" |
6373 | 4922 | ||
6374 | #: plugins-root/check_dhcp.c:873 | ||
6375 | #, c-format | 4923 | #, c-format |
6376 | msgid "Renewal Time: Infinite\n" | 4924 | msgid "Renewal Time: Infinite\n" |
6377 | msgstr "" | 4925 | msgstr "" |
6378 | 4926 | ||
6379 | #: plugins-root/check_dhcp.c:875 | ||
6380 | #, c-format | 4927 | #, c-format |
6381 | msgid "Renewal Time: %lu seconds\n" | 4928 | msgid "Renewal Time: %lu seconds\n" |
6382 | msgstr "" | 4929 | msgstr "" |
6383 | 4930 | ||
6384 | #: plugins-root/check_dhcp.c:877 | ||
6385 | #, c-format | 4931 | #, c-format |
6386 | msgid "Rebinding Time: Infinite\n" | 4932 | msgid "Rebinding Time: Infinite\n" |
6387 | msgstr "" | 4933 | msgstr "" |
6388 | 4934 | ||
6389 | #: plugins-root/check_dhcp.c:878 | ||
6390 | #, c-format | 4935 | #, c-format |
6391 | msgid "Rebinding Time: %lu seconds\n" | 4936 | msgid "Rebinding Time: %lu seconds\n" |
6392 | msgstr "" | 4937 | msgstr "" |
6393 | 4938 | ||
6394 | #: plugins-root/check_dhcp.c:906 | ||
6395 | #, c-format | 4939 | #, c-format |
6396 | msgid "Added offer from server @ %s" | 4940 | msgid "Added offer from server @ %s" |
6397 | msgstr "" | 4941 | msgstr "" |
6398 | 4942 | ||
6399 | #: plugins-root/check_dhcp.c:907 | ||
6400 | #, c-format | 4943 | #, c-format |
6401 | msgid " of IP address %s\n" | 4944 | msgid " of IP address %s\n" |
6402 | msgstr "" | 4945 | msgstr "" |
6403 | 4946 | ||
6404 | #: plugins-root/check_dhcp.c:974 | ||
6405 | #, c-format | 4947 | #, c-format |
6406 | msgid "DHCP Server Match: Offerer=%s" | 4948 | msgid "DHCP Server Match: Offerer=%s" |
6407 | msgstr "" | 4949 | msgstr "" |
6408 | 4950 | ||
6409 | #: plugins-root/check_dhcp.c:975 | ||
6410 | #, c-format | 4951 | #, c-format |
6411 | msgid " Requested=%s" | 4952 | msgid " Requested=%s" |
6412 | msgstr "" | 4953 | msgstr "" |
6413 | 4954 | ||
6414 | #: plugins-root/check_dhcp.c:977 | ||
6415 | #, c-format | 4955 | #, c-format |
6416 | msgid " (duplicate)" | 4956 | msgid " (duplicate)" |
6417 | msgstr "" | 4957 | msgstr "" |
6418 | 4958 | ||
6419 | #: plugins-root/check_dhcp.c:978 | ||
6420 | #, c-format | 4959 | #, c-format |
6421 | msgid "\n" | 4960 | msgid "\n" |
6422 | msgstr "" | 4961 | msgstr "" |
6423 | 4962 | ||
6424 | #: plugins-root/check_dhcp.c:1026 | ||
6425 | #, c-format | 4963 | #, c-format |
6426 | msgid "No DHCPOFFERs were received.\n" | 4964 | msgid "No DHCPOFFERs were received.\n" |
6427 | msgstr "" | 4965 | msgstr "" |
6428 | 4966 | ||
6429 | #: plugins-root/check_dhcp.c:1030 | ||
6430 | #, c-format | 4967 | #, c-format |
6431 | msgid "Received %d DHCPOFFER(s)" | 4968 | msgid "Received %d DHCPOFFER(s)" |
6432 | msgstr "" | 4969 | msgstr "" |
6433 | 4970 | ||
6434 | #: plugins-root/check_dhcp.c:1033 | ||
6435 | #, c-format | 4971 | #, c-format |
6436 | msgid ", %s%d of %d requested servers responded" | 4972 | msgid ", %s%d of %d requested servers responded" |
6437 | msgstr "" | 4973 | msgstr "" |
6438 | 4974 | ||
6439 | #: plugins-root/check_dhcp.c:1036 | ||
6440 | #, c-format | 4975 | #, c-format |
6441 | msgid ", requested address (%s) was %soffered" | 4976 | msgid ", requested address (%s) was %soffered" |
6442 | msgstr "" | 4977 | msgstr "" |
6443 | 4978 | ||
6444 | #: plugins-root/check_dhcp.c:1036 | ||
6445 | msgid "not " | 4979 | msgid "not " |
6446 | msgstr "" | 4980 | msgstr "" |
6447 | 4981 | ||
6448 | #: plugins-root/check_dhcp.c:1038 | ||
6449 | #, c-format | 4982 | #, c-format |
6450 | msgid ", max lease time = " | 4983 | msgid ", max lease time = " |
6451 | msgstr "" | 4984 | msgstr "" |
6452 | 4985 | ||
6453 | #: plugins-root/check_dhcp.c:1040 | ||
6454 | #, c-format | 4986 | #, c-format |
6455 | msgid "Infinity" | 4987 | msgid "Infinity" |
6456 | msgstr "" | 4988 | msgstr "" |
6457 | 4989 | ||
6458 | #: plugins-root/check_dhcp.c:1160 | ||
6459 | msgid "Got unexpected non-option argument" | 4990 | msgid "Got unexpected non-option argument" |
6460 | msgstr "" | 4991 | msgstr "" |
6461 | 4992 | ||
6462 | #: plugins-root/check_dhcp.c:1202 | ||
6463 | #, c-format | 4993 | #, c-format |
6464 | msgid "Error: DLPI stream API failed to get MAC in check_ctrl: %s.\n" | 4994 | msgid "Error: DLPI stream API failed to get MAC in check_ctrl: %s.\n" |
6465 | msgstr "" | 4995 | msgstr "" |
6466 | 4996 | ||
6467 | #: plugins-root/check_dhcp.c:1214 | ||
6468 | #, c-format | 4997 | #, c-format |
6469 | msgid "Error: DLPI stream API failed to get MAC in put_ctrl/putmsg(): %s.\n" | 4998 | msgid "Error: DLPI stream API failed to get MAC in put_ctrl/putmsg(): %s.\n" |
6470 | msgstr "" | 4999 | msgstr "" |
6471 | 5000 | ||
6472 | #: plugins-root/check_dhcp.c:1227 | ||
6473 | #, c-format | 5001 | #, c-format |
6474 | msgid "Error: DLPI stream API failed to get MAC in put_both/putmsg().\n" | 5002 | msgid "Error: DLPI stream API failed to get MAC in put_both/putmsg().\n" |
6475 | msgstr "" | 5003 | msgstr "" |
6476 | 5004 | ||
6477 | #: plugins-root/check_dhcp.c:1239 | ||
6478 | #, c-format | 5005 | #, c-format |
6479 | msgid "" | 5006 | msgid "" |
6480 | "Error: DLPI stream API failed to get MAC in dl_attach_req/open(%s..): %s.\n" | 5007 | "Error: DLPI stream API failed to get MAC in dl_attach_req/open(%s..): %s.\n" |
6481 | msgstr "" | 5008 | msgstr "" |
6482 | 5009 | ||
6483 | #: plugins-root/check_dhcp.c:1263 | ||
6484 | #, c-format | 5010 | #, c-format |
6485 | msgid "Error: DLPI stream API failed to get MAC in dl_bind/check_ctrl(): %s.\n" | 5011 | msgid "Error: DLPI stream API failed to get MAC in dl_bind/check_ctrl(): %s.\n" |
6486 | msgstr "" | 5012 | msgstr "" |
6487 | 5013 | ||
6488 | #: plugins-root/check_dhcp.c:1342 | ||
6489 | #, c-format | 5014 | #, c-format |
6490 | msgid "Hardware address: " | 5015 | msgid "Hardware address: " |
6491 | msgstr "" | 5016 | msgstr "" |
6492 | 5017 | ||
6493 | #: plugins-root/check_dhcp.c:1358 | ||
6494 | msgid "This plugin tests the availability of DHCP servers on a network." | 5018 | msgid "This plugin tests the availability of DHCP servers on a network." |
6495 | msgstr "" | 5019 | msgstr "" |
6496 | 5020 | ||
6497 | #: plugins-root/check_dhcp.c:1370 | ||
6498 | msgid "IP address of DHCP server that we must hear from" | 5021 | msgid "IP address of DHCP server that we must hear from" |
6499 | msgstr "" | 5022 | msgstr "" |
6500 | 5023 | ||
6501 | #: plugins-root/check_dhcp.c:1372 | ||
6502 | msgid "IP address that should be offered by at least one DHCP server" | 5024 | msgid "IP address that should be offered by at least one DHCP server" |
6503 | msgstr "" | 5025 | msgstr "" |
6504 | 5026 | ||
6505 | #: plugins-root/check_dhcp.c:1374 | ||
6506 | msgid "Seconds to wait for DHCPOFFER before timeout occurs" | 5027 | msgid "Seconds to wait for DHCPOFFER before timeout occurs" |
6507 | msgstr "" | 5028 | msgstr "" |
6508 | 5029 | ||
6509 | #: plugins-root/check_dhcp.c:1376 | ||
6510 | msgid "Interface to to use for listening (i.e. eth0)" | 5030 | msgid "Interface to to use for listening (i.e. eth0)" |
6511 | msgstr "" | 5031 | msgstr "" |
6512 | 5032 | ||
6513 | #: plugins-root/check_dhcp.c:1378 | ||
6514 | msgid "MAC address to use in the DHCP request" | 5033 | msgid "MAC address to use in the DHCP request" |
6515 | msgstr "" | 5034 | msgstr "" |
6516 | 5035 | ||
6517 | #: plugins-root/check_dhcp.c:1380 | ||
6518 | msgid "Unicast testing: mimic a DHCP relay, requires -s" | 5036 | msgid "Unicast testing: mimic a DHCP relay, requires -s" |
6519 | msgstr "" | 5037 | msgstr "" |
6520 | 5038 | ||
6521 | #: plugins-root/check_icmp.c:1572 | ||
6522 | msgid "specify a target" | 5039 | msgid "specify a target" |
6523 | msgstr "" | 5040 | msgstr "" |
6524 | 5041 | ||
6525 | #: plugins-root/check_icmp.c:1574 | ||
6526 | msgid "Use IPv4 (default) or IPv6 to communicate with the targets" | 5042 | msgid "Use IPv4 (default) or IPv6 to communicate with the targets" |
6527 | msgstr "" | 5043 | msgstr "" |
6528 | 5044 | ||
6529 | #: plugins-root/check_icmp.c:1576 | ||
6530 | #, fuzzy | 5045 | #, fuzzy |
6531 | msgid "warning threshold (currently " | 5046 | msgid "warning threshold (currently " |
6532 | msgstr "Warning threshold Integer sein" | 5047 | msgstr "Warning threshold Integer sein" |
6533 | 5048 | ||
6534 | #: plugins-root/check_icmp.c:1579 | ||
6535 | #, fuzzy | 5049 | #, fuzzy |
6536 | msgid "critical threshold (currently " | 5050 | msgid "critical threshold (currently " |
6537 | msgstr "Critical threshold muss ein Integer sein" | 5051 | msgstr "Critical threshold muss ein Integer sein" |
6538 | 5052 | ||
6539 | #: plugins-root/check_icmp.c:1582 | ||
6540 | #, fuzzy | 5053 | #, fuzzy |
6541 | msgid "specify a source IP address or device name" | 5054 | msgid "specify a source IP address or device name" |
6542 | msgstr "Hostname oder Serveradresse muss angegeben werden" | 5055 | msgstr "Hostname oder Serveradresse muss angegeben werden" |
6543 | 5056 | ||
6544 | #: plugins-root/check_icmp.c:1584 | ||
6545 | msgid "number of packets to send (currently " | 5057 | msgid "number of packets to send (currently " |
6546 | msgstr "" | 5058 | msgstr "" |
6547 | 5059 | ||
6548 | #: plugins-root/check_icmp.c:1587 | ||
6549 | msgid "max packet interval (currently " | 5060 | msgid "max packet interval (currently " |
6550 | msgstr "" | 5061 | msgstr "" |
6551 | 5062 | ||
6552 | #: plugins-root/check_icmp.c:1590 | ||
6553 | msgid "max target interval (currently " | 5063 | msgid "max target interval (currently " |
6554 | msgstr "" | 5064 | msgstr "" |
6555 | 5065 | ||
6556 | #: plugins-root/check_icmp.c:1593 | ||
6557 | msgid "number of alive hosts required for success" | 5066 | msgid "number of alive hosts required for success" |
6558 | msgstr "" | 5067 | msgstr "" |
6559 | 5068 | ||
6560 | #: plugins-root/check_icmp.c:1596 | ||
6561 | msgid "TTL on outgoing packets (currently " | 5069 | msgid "TTL on outgoing packets (currently " |
6562 | msgstr "" | 5070 | msgstr "" |
6563 | 5071 | ||
6564 | #: plugins-root/check_icmp.c:1599 | ||
6565 | msgid "timeout value (seconds, currently " | 5072 | msgid "timeout value (seconds, currently " |
6566 | msgstr "" | 5073 | msgstr "" |
6567 | 5074 | ||
6568 | #: plugins-root/check_icmp.c:1602 | ||
6569 | msgid "Number of icmp data bytes to send" | 5075 | msgid "Number of icmp data bytes to send" |
6570 | msgstr "" | 5076 | msgstr "" |
6571 | 5077 | ||
6572 | #: plugins-root/check_icmp.c:1603 | ||
6573 | msgid "Packet size will be data bytes + icmp header (currently" | 5078 | msgid "Packet size will be data bytes + icmp header (currently" |
6574 | msgstr "" | 5079 | msgstr "" |
6575 | 5080 | ||
6576 | #: plugins-root/check_icmp.c:1605 | ||
6577 | msgid "verbose" | 5081 | msgid "verbose" |
6578 | msgstr "" | 5082 | msgstr "" |
6579 | 5083 | ||
6580 | #: plugins-root/check_icmp.c:1609 | ||
6581 | msgid "The -H switch is optional. Naming a host (or several) to check is not." | 5084 | msgid "The -H switch is optional. Naming a host (or several) to check is not." |
6582 | msgstr "" | 5085 | msgstr "" |
6583 | 5086 | ||
6584 | #: plugins-root/check_icmp.c:1611 | ||
6585 | msgid "" | 5087 | msgid "" |
6586 | "Threshold format for -w and -c is 200.25,60% for 200.25 msec RTA and 60%" | 5088 | "Threshold format for -w and -c is 200.25,60% for 200.25 msec RTA and 60%" |
6587 | msgstr "" | 5089 | msgstr "" |
6588 | 5090 | ||
6589 | #: plugins-root/check_icmp.c:1612 | ||
6590 | msgid "packet loss. The default values should work well for most users." | 5091 | msgid "packet loss. The default values should work well for most users." |
6591 | msgstr "" | 5092 | msgstr "" |
6592 | 5093 | ||
6593 | #: plugins-root/check_icmp.c:1613 | ||
6594 | msgid "" | 5094 | msgid "" |
6595 | "You can specify different RTA factors using the standardized abbreviations" | 5095 | "You can specify different RTA factors using the standardized abbreviations" |
6596 | msgstr "" | 5096 | msgstr "" |
6597 | 5097 | ||
6598 | #: plugins-root/check_icmp.c:1614 | ||
6599 | msgid "" | 5098 | msgid "" |
6600 | "us (microseconds), ms (milliseconds, default) or just plain s for seconds." | 5099 | "us (microseconds), ms (milliseconds, default) or just plain s for seconds." |
6601 | msgstr "" | 5100 | msgstr "" |
6602 | 5101 | ||
6603 | #: plugins-root/check_icmp.c:1620 | ||
6604 | msgid "The -v switch can be specified several times for increased verbosity." | 5102 | msgid "The -v switch can be specified several times for increased verbosity." |
6605 | msgstr "" | 5103 | msgstr "" |
6606 | 5104 | ||
@@ -10,7 +10,7 @@ msgid "" | |||
10 | msgstr "" | 10 | msgstr "" |
11 | "Project-Id-Version: fr\n" | 11 | "Project-Id-Version: fr\n" |
12 | "Report-Msgid-Bugs-To: devel@monitoring-plugins.org\n" | 12 | "Report-Msgid-Bugs-To: devel@monitoring-plugins.org\n" |
13 | "POT-Creation-Date: 2023-07-11 16:07+0200\n" | 13 | "POT-Creation-Date: 2023-09-05 00:31+0200\n" |
14 | "PO-Revision-Date: 2010-04-21 23:38-0400\n" | 14 | "PO-Revision-Date: 2010-04-21 23:38-0400\n" |
15 | "Last-Translator: Thomas Guyot-Sionnest <dermoth@aei.ca>\n" | 15 | "Last-Translator: Thomas Guyot-Sionnest <dermoth@aei.ca>\n" |
16 | "Language-Team: Nagios Plugin Development Mailing List <nagiosplug-" | 16 | "Language-Team: Nagios Plugin Development Mailing List <nagiosplug-" |
@@ -22,101 +22,64 @@ msgstr "" | |||
22 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | 22 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" |
23 | "X-Generator: KBabel 1.11.4\n" | 23 | "X-Generator: KBabel 1.11.4\n" |
24 | 24 | ||
25 | #: plugins/check_by_ssh.c:88 plugins/check_cluster.c:76 plugins/check_dig.c:91 | ||
26 | #: plugins/check_disk.c:206 plugins/check_dns.c:106 plugins/check_dummy.c:52 | ||
27 | #: plugins/check_fping.c:95 plugins/check_game.c:82 plugins/check_hpjd.c:105 | ||
28 | #: plugins/check_http.c:174 plugins/check_ldap.c:118 plugins/check_load.c:128 | ||
29 | #: plugins/check_mrtgtraf.c:83 plugins/check_mysql.c:124 | ||
30 | #: plugins/check_nagios.c:91 plugins/check_nt.c:127 plugins/check_ntp.c:780 | ||
31 | #: plugins/check_ntp_peer.c:575 plugins/check_ntp_time.c:557 | ||
32 | #: plugins/check_nwstat.c:173 plugins/check_overcr.c:102 | ||
33 | #: plugins/check_pgsql.c:174 plugins/check_ping.c:97 plugins/check_procs.c:176 | ||
34 | #: plugins/check_radius.c:176 plugins/check_real.c:80 plugins/check_smtp.c:146 | ||
35 | #: plugins/check_snmp.c:248 plugins/check_ssh.c:74 plugins/check_swap.c:115 | ||
36 | #: plugins/check_tcp.c:222 plugins/check_time.c:78 plugins/check_ups.c:122 | ||
37 | #: plugins/check_users.c:84 plugins/negate.c:210 plugins-root/check_dhcp.c:270 | ||
38 | msgid "Could not parse arguments" | 25 | msgid "Could not parse arguments" |
39 | msgstr "Impossible de décomposer les arguments" | 26 | msgstr "Impossible de décomposer les arguments" |
40 | 27 | ||
41 | #: plugins/check_by_ssh.c:92 plugins/check_dig.c:85 plugins/check_dns.c:99 | ||
42 | #: plugins/check_nagios.c:95 plugins/check_pgsql.c:180 plugins/check_ping.c:101 | ||
43 | #: plugins/check_procs.c:192 plugins/check_snmp.c:348 plugins/negate.c:78 | ||
44 | msgid "Cannot catch SIGALRM" | 28 | msgid "Cannot catch SIGALRM" |
45 | msgstr "Impossible d'obtenir le signal SIGALRM" | 29 | msgstr "Impossible d'obtenir le signal SIGALRM" |
46 | 30 | ||
47 | #: plugins/check_by_ssh.c:107 | ||
48 | #, fuzzy, c-format | 31 | #, fuzzy, c-format |
49 | msgid "SSH connection failed: %s\n" | 32 | msgid "SSH connection failed: %s\n" |
50 | msgstr "L'exécution de la commande à distance %s à échoué\n" | 33 | msgstr "L'exécution de la commande à distance %s à échoué\n" |
51 | 34 | ||
52 | #: plugins/check_by_ssh.c:126 | ||
53 | #, c-format | 35 | #, c-format |
54 | msgid "Remote command execution failed: %s\n" | 36 | msgid "Remote command execution failed: %s\n" |
55 | msgstr "L'exécution de la commande à distance %s à échoué\n" | 37 | msgstr "L'exécution de la commande à distance %s à échoué\n" |
56 | 38 | ||
57 | #: plugins/check_by_ssh.c:141 | ||
58 | #, c-format | 39 | #, c-format |
59 | msgid "%s - check_by_ssh: Remote command '%s' returned status %d\n" | 40 | msgid "%s - check_by_ssh: Remote command '%s' returned status %d\n" |
60 | msgstr "" | 41 | msgstr "" |
61 | 42 | ||
62 | #: plugins/check_by_ssh.c:153 | ||
63 | #, c-format | 43 | #, c-format |
64 | msgid "SSH WARNING: could not open %s\n" | 44 | msgid "SSH WARNING: could not open %s\n" |
65 | msgstr "SSH AVERTISSEMENT: impossible d'ouvrir %s\n" | 45 | msgstr "SSH AVERTISSEMENT: impossible d'ouvrir %s\n" |
66 | 46 | ||
67 | #: plugins/check_by_ssh.c:162 | ||
68 | #, c-format | 47 | #, c-format |
69 | msgid "%s: Error parsing output\n" | 48 | msgid "%s: Error parsing output\n" |
70 | msgstr "%s: Erreur d'analyse du résultat\n" | 49 | msgstr "%s: Erreur d'analyse du résultat\n" |
71 | 50 | ||
72 | #: plugins/check_by_ssh.c:242 plugins/check_disk.c:568 plugins/check_http.c:292 | ||
73 | #: plugins/check_ldap.c:334 plugins/check_pgsql.c:314 plugins/check_procs.c:461 | ||
74 | #: plugins/check_radius.c:323 plugins/check_real.c:357 plugins/check_smtp.c:607 | ||
75 | #: plugins/check_snmp.c:789 plugins/check_ssh.c:140 plugins/check_tcp.c:519 | ||
76 | #: plugins/check_time.c:302 plugins/check_ups.c:559 plugins/negate.c:160 | ||
77 | msgid "Timeout interval must be a positive integer" | 51 | msgid "Timeout interval must be a positive integer" |
78 | msgstr "Le délai d'attente doit être un entier positif" | 52 | msgstr "Le délai d'attente doit être un entier positif" |
79 | 53 | ||
80 | #: plugins/check_by_ssh.c:254 plugins/check_pgsql.c:344 | ||
81 | #: plugins/check_radius.c:287 plugins/check_real.c:328 plugins/check_smtp.c:532 | ||
82 | #: plugins/check_tcp.c:525 plugins/check_time.c:296 plugins/check_ups.c:521 | ||
83 | msgid "Port must be a positive integer" | 54 | msgid "Port must be a positive integer" |
84 | msgstr "Le numéro du port doit être un entier positif" | 55 | msgstr "Le numéro du port doit être un entier positif" |
85 | 56 | ||
86 | #: plugins/check_by_ssh.c:315 | ||
87 | msgid "skip-stdout argument must be an integer" | 57 | msgid "skip-stdout argument must be an integer" |
88 | msgstr "Le nombres de lignes à sauter (skip-stdout) doit être un entier" | 58 | msgstr "Le nombres de lignes à sauter (skip-stdout) doit être un entier" |
89 | 59 | ||
90 | #: plugins/check_by_ssh.c:323 | ||
91 | msgid "skip-stderr argument must be an integer" | 60 | msgid "skip-stderr argument must be an integer" |
92 | msgstr "Le nombres de lignes à sauter (skip-stderr) doit être un entier" | 61 | msgstr "Le nombres de lignes à sauter (skip-stderr) doit être un entier" |
93 | 62 | ||
94 | #: plugins/check_by_ssh.c:349 | ||
95 | #, c-format | 63 | #, c-format |
96 | msgid "%s: You must provide a host name\n" | 64 | msgid "%s: You must provide a host name\n" |
97 | msgstr "%s: Vous devez fournir un nom d'hôte\n" | 65 | msgstr "%s: Vous devez fournir un nom d'hôte\n" |
98 | 66 | ||
99 | #: plugins/check_by_ssh.c:366 | ||
100 | msgid "No remotecmd" | 67 | msgid "No remotecmd" |
101 | msgstr "Pas de commande distante" | 68 | msgstr "Pas de commande distante" |
102 | 69 | ||
103 | #: plugins/check_by_ssh.c:380 | ||
104 | #, c-format | 70 | #, c-format |
105 | msgid "%s: Argument limit of %d exceeded\n" | 71 | msgid "%s: Argument limit of %d exceeded\n" |
106 | msgstr "" | 72 | msgstr "" |
107 | 73 | ||
108 | #: plugins/check_by_ssh.c:383 | ||
109 | msgid "Can not (re)allocate 'commargv' buffer\n" | 74 | msgid "Can not (re)allocate 'commargv' buffer\n" |
110 | msgstr "Impossible de réallouer le tampon 'commargv'\n" | 75 | msgstr "Impossible de réallouer le tampon 'commargv'\n" |
111 | 76 | ||
112 | #: plugins/check_by_ssh.c:397 | ||
113 | #, c-format | 77 | #, c-format |
114 | msgid "" | 78 | msgid "" |
115 | "%s: In passive mode, you must provide a service name for each command.\n" | 79 | "%s: In passive mode, you must provide a service name for each command.\n" |
116 | msgstr "" | 80 | msgstr "" |
117 | "%s: En mode passif, vous devez fournir un service pour chaque commande.\n" | 81 | "%s: En mode passif, vous devez fournir un service pour chaque commande.\n" |
118 | 82 | ||
119 | #: plugins/check_by_ssh.c:400 | ||
120 | #, fuzzy, c-format | 83 | #, fuzzy, c-format |
121 | msgid "" | 84 | msgid "" |
122 | "%s: In passive mode, you must provide the host short name from the " | 85 | "%s: In passive mode, you must provide the host short name from the " |
@@ -125,485 +88,353 @@ msgstr "" | |||
125 | "%s: En mode passif, vous devez fournir le nom court du hôte mentionné dans " | 88 | "%s: En mode passif, vous devez fournir le nom court du hôte mentionné dans " |
126 | "la configuration de nagios.\n" | 89 | "la configuration de nagios.\n" |
127 | 90 | ||
128 | #: plugins/check_by_ssh.c:414 | ||
129 | #, c-format | 91 | #, c-format |
130 | msgid "This plugin uses SSH to execute commands on a remote host" | 92 | msgid "This plugin uses SSH to execute commands on a remote host" |
131 | msgstr "Ce plugin utilise SSH pour exécuter des commandes sur un hôte distant" | 93 | msgstr "Ce plugin utilise SSH pour exécuter des commandes sur un hôte distant" |
132 | 94 | ||
133 | #: plugins/check_by_ssh.c:429 | ||
134 | msgid "tell ssh to use Protocol 1 [optional]" | 95 | msgid "tell ssh to use Protocol 1 [optional]" |
135 | msgstr "dire à ssh d'utiliser le protocole version 1 [optionnel]" | 96 | msgstr "dire à ssh d'utiliser le protocole version 1 [optionnel]" |
136 | 97 | ||
137 | #: plugins/check_by_ssh.c:431 | ||
138 | msgid "tell ssh to use Protocol 2 [optional]" | 98 | msgid "tell ssh to use Protocol 2 [optional]" |
139 | msgstr "dire à ssh d'utiliser le protocole 2 [optionnel]" | 99 | msgstr "dire à ssh d'utiliser le protocole 2 [optionnel]" |
140 | 100 | ||
141 | #: plugins/check_by_ssh.c:433 | ||
142 | msgid "Ignore all or (if specified) first n lines on STDOUT [optional]" | 101 | msgid "Ignore all or (if specified) first n lines on STDOUT [optional]" |
143 | msgstr "" | 102 | msgstr "" |
144 | 103 | ||
145 | #: plugins/check_by_ssh.c:435 | ||
146 | msgid "Ignore all or (if specified) first n lines on STDERR [optional]" | 104 | msgid "Ignore all or (if specified) first n lines on STDERR [optional]" |
147 | msgstr "" | 105 | msgstr "" |
148 | 106 | ||
149 | #: plugins/check_by_ssh.c:437 | ||
150 | msgid "Exit with an warning, if there is an output on STDERR" | 107 | msgid "Exit with an warning, if there is an output on STDERR" |
151 | msgstr "" | 108 | msgstr "" |
152 | 109 | ||
153 | #: plugins/check_by_ssh.c:439 | ||
154 | msgid "" | 110 | msgid "" |
155 | "tells ssh to fork rather than create a tty [optional]. This will always " | 111 | "tells ssh to fork rather than create a tty [optional]. This will always " |
156 | "return OK if ssh is executed" | 112 | "return OK if ssh is executed" |
157 | msgstr "" | 113 | msgstr "" |
158 | 114 | ||
159 | #: plugins/check_by_ssh.c:441 | ||
160 | msgid "command to execute on the remote machine" | 115 | msgid "command to execute on the remote machine" |
161 | msgstr "commande à exécuter sur la machine distante" | 116 | msgstr "commande à exécuter sur la machine distante" |
162 | 117 | ||
163 | #: plugins/check_by_ssh.c:443 | ||
164 | msgid "SSH user name on remote host [optional]" | 118 | msgid "SSH user name on remote host [optional]" |
165 | msgstr "Nom d'utilisateur ssh sur la machine distante [optionnel]" | 119 | msgstr "Nom d'utilisateur ssh sur la machine distante [optionnel]" |
166 | 120 | ||
167 | #: plugins/check_by_ssh.c:445 | ||
168 | msgid "identity of an authorized key [optional]" | 121 | msgid "identity of an authorized key [optional]" |
169 | msgstr "Identité de la clé autorisée [optionnel]" | 122 | msgstr "Identité de la clé autorisée [optionnel]" |
170 | 123 | ||
171 | #: plugins/check_by_ssh.c:447 | ||
172 | #, fuzzy | 124 | #, fuzzy |
173 | msgid "external command file for monitoring [optional]" | 125 | msgid "external command file for monitoring [optional]" |
174 | msgstr "commande externe pour nagios [optionnel]" | 126 | msgstr "commande externe pour nagios [optionnel]" |
175 | 127 | ||
176 | #: plugins/check_by_ssh.c:449 | ||
177 | #, fuzzy | 128 | #, fuzzy |
178 | msgid "list of monitoring service names, separated by ':' [optional]" | 129 | msgid "list of monitoring service names, separated by ':' [optional]" |
179 | msgstr "liste des services nagios, séparés par ':' [optionnel] " | 130 | msgstr "liste des services nagios, séparés par ':' [optionnel] " |
180 | 131 | ||
181 | #: plugins/check_by_ssh.c:451 | ||
182 | #, fuzzy | 132 | #, fuzzy |
183 | msgid "short name of host in the monitoring configuration [optional]" | 133 | msgid "short name of host in the monitoring configuration [optional]" |
184 | msgstr "nom court de l'hôte dans la configuration nagios [optionnel]" | 134 | msgstr "nom court de l'hôte dans la configuration nagios [optionnel]" |
185 | 135 | ||
186 | #: plugins/check_by_ssh.c:453 | ||
187 | msgid "Call ssh with '-o OPTION' (may be used multiple times) [optional]" | 136 | msgid "Call ssh with '-o OPTION' (may be used multiple times) [optional]" |
188 | msgstr "" | 137 | msgstr "" |
189 | "appelle ssh avec '-o OPTION' (peut être utilisé plusieurs fois) [optionnel]" | 138 | "appelle ssh avec '-o OPTION' (peut être utilisé plusieurs fois) [optionnel]" |
190 | 139 | ||
191 | #: plugins/check_by_ssh.c:455 | ||
192 | #, fuzzy | 140 | #, fuzzy |
193 | msgid "Tell ssh to use this configfile [optional]" | 141 | msgid "Tell ssh to use this configfile [optional]" |
194 | msgstr "dire à ssh d'utiliser le protocole version 1 [optionnel]" | 142 | msgstr "dire à ssh d'utiliser le protocole version 1 [optionnel]" |
195 | 143 | ||
196 | #: plugins/check_by_ssh.c:457 | ||
197 | msgid "Tell ssh to suppress warning and diagnostic messages [optional]" | 144 | msgid "Tell ssh to suppress warning and diagnostic messages [optional]" |
198 | msgstr "" | 145 | msgstr "" |
199 | "dire à ssh de supprimer les messages d'erreurs et de diagnostic [optionnel]" | 146 | "dire à ssh de supprimer les messages d'erreurs et de diagnostic [optionnel]" |
200 | 147 | ||
201 | #: plugins/check_by_ssh.c:461 | ||
202 | msgid "Make connection problems return UNKNOWN instead of CRITICAL" | 148 | msgid "Make connection problems return UNKNOWN instead of CRITICAL" |
203 | msgstr "" | 149 | msgstr "" |
204 | 150 | ||
205 | #: plugins/check_by_ssh.c:464 | ||
206 | msgid "The most common mode of use is to refer to a local identity file with" | 151 | msgid "The most common mode of use is to refer to a local identity file with" |
207 | msgstr "" | 152 | msgstr "" |
208 | 153 | ||
209 | #: plugins/check_by_ssh.c:465 | ||
210 | msgid "the '-i' option. In this mode, the identity pair should have a null" | 154 | msgid "the '-i' option. In this mode, the identity pair should have a null" |
211 | msgstr "" | 155 | msgstr "" |
212 | 156 | ||
213 | #: plugins/check_by_ssh.c:466 | ||
214 | msgid "passphrase and the public key should be listed in the authorized_keys" | 157 | msgid "passphrase and the public key should be listed in the authorized_keys" |
215 | msgstr "" | 158 | msgstr "" |
216 | 159 | ||
217 | #: plugins/check_by_ssh.c:467 | ||
218 | msgid "file of the remote host. Usually the key will be restricted to running" | 160 | msgid "file of the remote host. Usually the key will be restricted to running" |
219 | msgstr "" | 161 | msgstr "" |
220 | 162 | ||
221 | #: plugins/check_by_ssh.c:468 | ||
222 | msgid "only one command on the remote server. If the remote SSH server tracks" | 163 | msgid "only one command on the remote server. If the remote SSH server tracks" |
223 | msgstr "" | 164 | msgstr "" |
224 | 165 | ||
225 | #: plugins/check_by_ssh.c:469 | ||
226 | msgid "invocation arguments, the one remote program may be an agent that can" | 166 | msgid "invocation arguments, the one remote program may be an agent that can" |
227 | msgstr "" | 167 | msgstr "" |
228 | 168 | ||
229 | #: plugins/check_by_ssh.c:470 | ||
230 | msgid "execute additional commands as proxy" | 169 | msgid "execute additional commands as proxy" |
231 | msgstr "" | 170 | msgstr "" |
232 | 171 | ||
233 | #: plugins/check_by_ssh.c:472 | ||
234 | msgid "To use passive mode, provide multiple '-C' options, and provide" | 172 | msgid "To use passive mode, provide multiple '-C' options, and provide" |
235 | msgstr "Pour utiliser le mode passif, utilisez plusieurs fois l'option '-C',et" | 173 | msgstr "Pour utiliser le mode passif, utilisez plusieurs fois l'option '-C',et" |
236 | 174 | ||
237 | #: plugins/check_by_ssh.c:473 | ||
238 | msgid "" | 175 | msgid "" |
239 | "all of -O, -s, and -n options (servicelist order must match '-C'options)" | 176 | "all of -O, -s, and -n options (servicelist order must match '-C'options)" |
240 | msgstr "" | 177 | msgstr "" |
241 | "et les options -O, -s, n (l'ordre des services doit correspondre aux " | 178 | "et les options -O, -s, n (l'ordre des services doit correspondre aux " |
242 | "multiples options '-C)" | 179 | "multiples options '-C)" |
243 | 180 | ||
244 | #: plugins/check_by_ssh.c:475 plugins/check_cluster.c:271 | ||
245 | #: plugins/check_dig.c:364 plugins/check_disk.c:1015 plugins/check_http.c:1846 | ||
246 | #: plugins/check_nagios.c:312 plugins/check_ntp.c:879 | ||
247 | #: plugins/check_ntp_peer.c:733 plugins/check_ntp_time.c:642 | ||
248 | #: plugins/check_procs.c:806 plugins/negate.c:249 plugins/urlize.c:179 | ||
249 | msgid "Examples:" | 181 | msgid "Examples:" |
250 | msgstr "Exemples:" | 182 | msgstr "Exemples:" |
251 | 183 | ||
252 | #: plugins/check_by_ssh.c:490 plugins/check_cluster.c:284 | ||
253 | #: plugins/check_dig.c:376 plugins/check_disk.c:1032 plugins/check_dns.c:617 | ||
254 | #: plugins/check_dummy.c:122 plugins/check_fping.c:525 plugins/check_game.c:331 | ||
255 | #: plugins/check_hpjd.c:440 plugins/check_http.c:1884 plugins/check_ldap.c:511 | ||
256 | #: plugins/check_load.c:372 plugins/check_mrtg.c:382 plugins/check_mysql.c:587 | ||
257 | #: plugins/check_nagios.c:323 plugins/check_nt.c:797 plugins/check_ntp.c:898 | ||
258 | #: plugins/check_ntp_peer.c:753 plugins/check_ntp_time.c:651 | ||
259 | #: plugins/check_nwstat.c:1685 plugins/check_overcr.c:467 | ||
260 | #: plugins/check_pgsql.c:551 plugins/check_ping.c:617 plugins/check_procs.c:829 | ||
261 | #: plugins/check_radius.c:400 plugins/check_real.c:452 plugins/check_smtp.c:891 | ||
262 | #: plugins/check_snmp.c:1347 plugins/check_ssh.c:325 plugins/check_swap.c:607 | ||
263 | #: plugins/check_tcp.c:710 plugins/check_time.c:371 plugins/check_ups.c:663 | ||
264 | #: plugins/check_users.c:262 plugins/check_ide_smart.c:606 plugins/negate.c:273 | ||
265 | #: plugins/urlize.c:196 plugins-root/check_dhcp.c:1390 | ||
266 | #: plugins-root/check_icmp.c:1633 | ||
267 | msgid "Usage:" | 184 | msgid "Usage:" |
268 | msgstr "Utilisation:" | 185 | msgstr "Utilisation:" |
269 | 186 | ||
270 | #: plugins/check_cluster.c:240 | ||
271 | #, fuzzy, c-format | 187 | #, fuzzy, c-format |
272 | msgid "Host/Service Cluster Plugin for Monitoring" | 188 | msgid "Host/Service Cluster Plugin for Monitoring" |
273 | msgstr "Plugin de Cluster d'Hôte/Service pour Nagios 2" | 189 | msgstr "Plugin de Cluster d'Hôte/Service pour Nagios 2" |
274 | 190 | ||
275 | #: plugins/check_cluster.c:246 plugins/check_nt.c:697 | ||
276 | msgid "Options:" | 191 | msgid "Options:" |
277 | msgstr "Options:" | 192 | msgstr "Options:" |
278 | 193 | ||
279 | #: plugins/check_cluster.c:249 | ||
280 | msgid "Check service cluster status" | 194 | msgid "Check service cluster status" |
281 | msgstr "Vérifie l'état d'un cluster de services" | 195 | msgstr "Vérifie l'état d'un cluster de services" |
282 | 196 | ||
283 | #: plugins/check_cluster.c:251 | ||
284 | msgid "Check host cluster status" | 197 | msgid "Check host cluster status" |
285 | msgstr "Vérifie l'état d'un cluster d'hôtes" | 198 | msgstr "Vérifie l'état d'un cluster d'hôtes" |
286 | 199 | ||
287 | #: plugins/check_cluster.c:253 | ||
288 | msgid "Optional prepended text output (i.e. \"Host cluster\")" | 200 | msgid "Optional prepended text output (i.e. \"Host cluster\")" |
289 | msgstr "Texte optionnel accolé à la sortie (i.e. \"Cluster d'hôtes\")" | 201 | msgstr "Texte optionnel accolé à la sortie (i.e. \"Cluster d'hôtes\")" |
290 | 202 | ||
291 | #: plugins/check_cluster.c:255 plugins/check_cluster.c:258 | ||
292 | msgid "Specifies the range of hosts or services in cluster that must be in a" | 203 | msgid "Specifies the range of hosts or services in cluster that must be in a" |
293 | msgstr "Défini le nombre d'hôtes ou de services du cluster qui doivent être" | 204 | msgstr "Défini le nombre d'hôtes ou de services du cluster qui doivent être" |
294 | 205 | ||
295 | #: plugins/check_cluster.c:256 | ||
296 | msgid "non-OK state in order to return a WARNING status level" | 206 | msgid "non-OK state in order to return a WARNING status level" |
297 | msgstr "dans un état non-OK pour retourner un état AVERTISSEMENT" | 207 | msgstr "dans un état non-OK pour retourner un état AVERTISSEMENT" |
298 | 208 | ||
299 | #: plugins/check_cluster.c:259 | ||
300 | msgid "non-OK state in order to return a CRITICAL status level" | 209 | msgid "non-OK state in order to return a CRITICAL status level" |
301 | msgstr "dans un état non-OK pour retourner un état CRITIQUE" | 210 | msgstr "dans un état non-OK pour retourner un état CRITIQUE" |
302 | 211 | ||
303 | #: plugins/check_cluster.c:261 | ||
304 | msgid "The status codes of the hosts or services in the cluster, separated by" | 212 | msgid "The status codes of the hosts or services in the cluster, separated by" |
305 | msgstr "Les codes d'état des hôtes ou des services du cluster, séparés par des" | 213 | msgstr "Les codes d'état des hôtes ou des services du cluster, séparés par des" |
306 | 214 | ||
307 | #: plugins/check_cluster.c:262 | ||
308 | msgid "commas" | 215 | msgid "commas" |
309 | msgstr "virgules" | 216 | msgstr "virgules" |
310 | 217 | ||
311 | #: plugins/check_cluster.c:267 plugins/check_game.c:318 | ||
312 | #: plugins/check_http.c:1828 plugins/check_ldap.c:497 plugins/check_mrtg.c:363 | ||
313 | #: plugins/check_mrtgtraf.c:361 plugins/check_mysql.c:576 | ||
314 | #: plugins/check_nt.c:781 plugins/check_ntp.c:875 plugins/check_ntp_peer.c:724 | ||
315 | #: plugins/check_ntp_time.c:633 plugins/check_nwstat.c:1670 | ||
316 | #: plugins/check_overcr.c:456 plugins/check_snmp.c:1318 | ||
317 | #: plugins/check_swap.c:596 plugins/check_ups.c:645 | ||
318 | #: plugins/check_ide_smart.c:580 plugins/negate.c:255 | ||
319 | #: plugins-root/check_icmp.c:1608 | ||
320 | msgid "Notes:" | 218 | msgid "Notes:" |
321 | msgstr "Notes:" | 219 | msgstr "Notes:" |
322 | 220 | ||
323 | #: plugins/check_cluster.c:273 | ||
324 | msgid "" | 221 | msgid "" |
325 | "Will alert critical if there are 3 or more service data points in a non-OK" | 222 | "Will alert critical if there are 3 or more service data points in a non-OK" |
326 | msgstr "" | 223 | msgstr "" |
327 | 224 | ||
328 | #: plugins/check_cluster.c:274 plugins/check_ups.c:642 | ||
329 | msgid "state." | 225 | msgid "state." |
330 | msgstr "" | 226 | msgstr "" |
331 | 227 | ||
332 | #: plugins/check_dig.c:106 plugins/check_dig.c:108 | ||
333 | #, c-format | 228 | #, c-format |
334 | msgid "Looking for: '%s'\n" | 229 | msgid "Looking for: '%s'\n" |
335 | msgstr "Recherche de: '%s'\n" | 230 | msgstr "Recherche de: '%s'\n" |
336 | 231 | ||
337 | #: plugins/check_dig.c:115 | ||
338 | msgid "dig returned an error status" | 232 | msgid "dig returned an error status" |
339 | msgstr "dig à renvoyé un état d'erreur" | 233 | msgstr "dig à renvoyé un état d'erreur" |
340 | 234 | ||
341 | #: plugins/check_dig.c:140 | ||
342 | msgid "Server not found in ANSWER SECTION" | 235 | msgid "Server not found in ANSWER SECTION" |
343 | msgstr "Le serveur n'a pas été trouvé dans l'ANSWER SECTION" | 236 | msgstr "Le serveur n'a pas été trouvé dans l'ANSWER SECTION" |
344 | 237 | ||
345 | #: plugins/check_dig.c:150 | ||
346 | msgid "No ANSWER SECTION found" | 238 | msgid "No ANSWER SECTION found" |
347 | msgstr "Pas d' ANSWER SECTION trouvé" | 239 | msgstr "Pas d' ANSWER SECTION trouvé" |
348 | 240 | ||
349 | #: plugins/check_dig.c:177 | ||
350 | msgid "Probably a non-existent host/domain" | 241 | msgid "Probably a non-existent host/domain" |
351 | msgstr "Probablement un hôte/domaine inexistant" | 242 | msgstr "Probablement un hôte/domaine inexistant" |
352 | 243 | ||
353 | #: plugins/check_dig.c:239 | ||
354 | #, c-format | 244 | #, c-format |
355 | msgid "Port must be a positive integer - %s" | 245 | msgid "Port must be a positive integer - %s" |
356 | msgstr "Le numéro du port doit être un entier positif - %s" | 246 | msgstr "Le numéro du port doit être un entier positif - %s" |
357 | 247 | ||
358 | #: plugins/check_dig.c:250 | ||
359 | #, c-format | 248 | #, c-format |
360 | msgid "Warning interval must be a positive integer - %s" | 249 | msgid "Warning interval must be a positive integer - %s" |
361 | msgstr "Le seuil d'avertissement doit être un entier positif - %s" | 250 | msgstr "Le seuil d'avertissement doit être un entier positif - %s" |
362 | 251 | ||
363 | #: plugins/check_dig.c:258 | ||
364 | #, c-format | 252 | #, c-format |
365 | msgid "Critical interval must be a positive integer - %s" | 253 | msgid "Critical interval must be a positive integer - %s" |
366 | msgstr "Le seuil critique doit être un entier positif - %s" | 254 | msgstr "Le seuil critique doit être un entier positif - %s" |
367 | 255 | ||
368 | #: plugins/check_dig.c:266 | ||
369 | #, c-format | 256 | #, c-format |
370 | msgid "Timeout interval must be a positive integer - %s" | 257 | msgid "Timeout interval must be a positive integer - %s" |
371 | msgstr "Le délai d'attente doit être un entier positif - %s" | 258 | msgstr "Le délai d'attente doit être un entier positif - %s" |
372 | 259 | ||
373 | #: plugins/check_dig.c:334 | ||
374 | #, fuzzy, c-format | 260 | #, fuzzy, c-format |
375 | msgid "This plugin tests the DNS service on the specified host using dig" | 261 | msgid "This plugin tests the DNS service on the specified host using dig" |
376 | msgstr "Ce plugin teste le service DNS sur l'hôte spécifié en utilisant dig" | 262 | msgstr "Ce plugin teste le service DNS sur l'hôte spécifié en utilisant dig" |
377 | 263 | ||
378 | #: plugins/check_dig.c:347 | ||
379 | msgid "Force dig to only use IPv4 query transport" | 264 | msgid "Force dig to only use IPv4 query transport" |
380 | msgstr "" | 265 | msgstr "" |
381 | 266 | ||
382 | #: plugins/check_dig.c:349 | ||
383 | msgid "Force dig to only use IPv6 query transport" | 267 | msgid "Force dig to only use IPv6 query transport" |
384 | msgstr "" | 268 | msgstr "" |
385 | 269 | ||
386 | #: plugins/check_dig.c:351 | ||
387 | msgid "Machine name to lookup" | 270 | msgid "Machine name to lookup" |
388 | msgstr "Nom de machine à rechercher" | 271 | msgstr "Nom de machine à rechercher" |
389 | 272 | ||
390 | #: plugins/check_dig.c:353 | ||
391 | msgid "Record type to lookup (default: A)" | 273 | msgid "Record type to lookup (default: A)" |
392 | msgstr "Type d'enregistrement à rechercher (par défaut: A)" | 274 | msgstr "Type d'enregistrement à rechercher (par défaut: A)" |
393 | 275 | ||
394 | #: plugins/check_dig.c:355 | ||
395 | msgid "" | 276 | msgid "" |
396 | "An address expected to be in the answer section. If not set, uses whatever" | 277 | "An address expected to be in the answer section. If not set, uses whatever" |
397 | msgstr "" | 278 | msgstr "" |
398 | "Une adresse qui devrait se trouver dans la section réponce. Si omit, utilise" | 279 | "Une adresse qui devrait se trouver dans la section réponce. Si omit, utilise" |
399 | 280 | ||
400 | #: plugins/check_dig.c:356 | ||
401 | msgid "was in -l" | 281 | msgid "was in -l" |
402 | msgstr "ce qui est passé au paramètre -l" | 282 | msgstr "ce qui est passé au paramètre -l" |
403 | 283 | ||
404 | #: plugins/check_dig.c:358 | ||
405 | msgid "Pass STRING as argument(s) to dig" | 284 | msgid "Pass STRING as argument(s) to dig" |
406 | msgstr "" | 285 | msgstr "" |
407 | 286 | ||
408 | #: plugins/check_disk.c:241 | ||
409 | #, c-format | 287 | #, c-format |
410 | msgid "DISK %s: %s not found\n" | 288 | msgid "DISK %s: %s not found\n" |
411 | msgstr "DISK %s: %s non trouvé\n" | 289 | msgstr "DISK %s: %s non trouvé\n" |
412 | 290 | ||
413 | #: plugins/check_disk.c:241 plugins/check_disk.c:1050 plugins/check_dns.c:295 | ||
414 | #: plugins/check_dummy.c:74 plugins/check_mysql.c:313 | ||
415 | #: plugins/check_nagios.c:104 plugins/check_nagios.c:168 | ||
416 | #: plugins/check_nagios.c:172 plugins/check_pgsql.c:575 | ||
417 | #: plugins/check_pgsql.c:592 plugins/check_pgsql.c:601 | ||
418 | #: plugins/check_pgsql.c:616 plugins/check_procs.c:374 | ||
419 | #, c-format | 291 | #, c-format |
420 | msgid "CRITICAL" | 292 | msgid "CRITICAL" |
421 | msgstr "CRITIQUE" | 293 | msgstr "CRITIQUE" |
422 | 294 | ||
423 | #: plugins/check_disk.c:660 | ||
424 | #, c-format | 295 | #, c-format |
425 | msgid "unit type %s not known\n" | 296 | msgid "unit type %s not known\n" |
426 | msgstr "unité de type %s inconnue\n" | 297 | msgstr "unité de type %s inconnue\n" |
427 | 298 | ||
428 | #: plugins/check_disk.c:663 | ||
429 | #, c-format | 299 | #, c-format |
430 | msgid "failed allocating storage for '%s'\n" | 300 | msgid "failed allocating storage for '%s'\n" |
431 | msgstr "Impossible d'allouer de l'espace pour '%s'\n" | 301 | msgstr "Impossible d'allouer de l'espace pour '%s'\n" |
432 | 302 | ||
433 | #: plugins/check_disk.c:691 plugins/check_disk.c:739 plugins/check_disk.c:747 | ||
434 | #: plugins/check_disk.c:755 plugins/check_disk.c:759 plugins/check_disk.c:804 | ||
435 | #: plugins/check_disk.c:810 plugins/check_disk.c:833 plugins/check_dummy.c:77 | ||
436 | #: plugins/check_dummy.c:80 plugins/check_pgsql.c:617 plugins/check_procs.c:547 | ||
437 | #, c-format | 303 | #, c-format |
438 | msgid "UNKNOWN" | 304 | msgid "UNKNOWN" |
439 | msgstr "INCONNU" | 305 | msgstr "INCONNU" |
440 | 306 | ||
441 | #: plugins/check_disk.c:691 | ||
442 | msgid "Must set a threshold value before using -p\n" | 307 | msgid "Must set a threshold value before using -p\n" |
443 | msgstr "" | 308 | msgstr "" |
444 | 309 | ||
445 | #: plugins/check_disk.c:739 | ||
446 | msgid "Must set -E before selecting paths\n" | 310 | msgid "Must set -E before selecting paths\n" |
447 | msgstr "" | 311 | msgstr "" |
448 | 312 | ||
449 | #: plugins/check_disk.c:747 | ||
450 | msgid "Must set group value before selecting paths\n" | 313 | msgid "Must set group value before selecting paths\n" |
451 | msgstr "" | 314 | msgstr "" |
452 | 315 | ||
453 | #: plugins/check_disk.c:755 | ||
454 | msgid "" | 316 | msgid "" |
455 | "Paths need to be selected before using -i/-I. Use -A to select all paths " | 317 | "Paths need to be selected before using -i/-I. Use -A to select all paths " |
456 | "explicitly" | 318 | "explicitly" |
457 | msgstr "" | 319 | msgstr "" |
458 | 320 | ||
459 | #: plugins/check_disk.c:759 plugins/check_disk.c:810 plugins/check_procs.c:547 | ||
460 | msgid "Could not compile regular expression" | 321 | msgid "Could not compile regular expression" |
461 | msgstr "Impossible de compiler l'expression rationnelle" | 322 | msgstr "Impossible de compiler l'expression rationnelle" |
462 | 323 | ||
463 | #: plugins/check_disk.c:804 | ||
464 | msgid "Must set a threshold value before using -r/-R\n" | 324 | msgid "Must set a threshold value before using -r/-R\n" |
465 | msgstr "" | 325 | msgstr "" |
466 | 326 | ||
467 | #: plugins/check_disk.c:834 | ||
468 | msgid "Regular expression did not match any path or disk" | 327 | msgid "Regular expression did not match any path or disk" |
469 | msgstr "" | 328 | msgstr "" |
470 | 329 | ||
471 | #: plugins/check_disk.c:880 | ||
472 | msgid "Unknown argument" | 330 | msgid "Unknown argument" |
473 | msgstr "Argument inconnu" | 331 | msgstr "Argument inconnu" |
474 | 332 | ||
475 | #: plugins/check_disk.c:914 | ||
476 | #, c-format | 333 | #, c-format |
477 | msgid " for %s\n" | 334 | msgid " for %s\n" |
478 | msgstr " pour %s\n" | 335 | msgstr " pour %s\n" |
479 | 336 | ||
480 | #: plugins/check_disk.c:943 | ||
481 | msgid "" | 337 | msgid "" |
482 | "This plugin checks the amount of used disk space on a mounted file system" | 338 | "This plugin checks the amount of used disk space on a mounted file system" |
483 | msgstr "Ce plugin vérifie la place utilisé sur un système de fichier monté" | 339 | msgstr "Ce plugin vérifie la place utilisé sur un système de fichier monté" |
484 | 340 | ||
485 | #: plugins/check_disk.c:944 | ||
486 | msgid "" | 341 | msgid "" |
487 | "and generates an alert if free space is less than one of the threshold values" | 342 | "and generates an alert if free space is less than one of the threshold values" |
488 | msgstr "" | 343 | msgstr "" |
489 | "et génère une alerte si la place disponible est plus petite qu'un des seuils " | 344 | "et génère une alerte si la place disponible est plus petite qu'un des seuils " |
490 | "fourni" | 345 | "fourni" |
491 | 346 | ||
492 | #: plugins/check_disk.c:954 | ||
493 | msgid "Exit with WARNING status if less than INTEGER units of disk are free" | 347 | msgid "Exit with WARNING status if less than INTEGER units of disk are free" |
494 | msgstr "" | 348 | msgstr "" |
495 | "Sortir avec un résultat AVERTISSEMENT si moins de X unités de disques sont " | 349 | "Sortir avec un résultat AVERTISSEMENT si moins de X unités de disques sont " |
496 | "libres" | 350 | "libres" |
497 | 351 | ||
498 | #: plugins/check_disk.c:956 | ||
499 | msgid "Exit with WARNING status if less than PERCENT of disk space is free" | 352 | msgid "Exit with WARNING status if less than PERCENT of disk space is free" |
500 | msgstr "" | 353 | msgstr "" |
501 | "Sortir avec un résultat AVERTISSEMENT si moins de X pour-cent du disque est " | 354 | "Sortir avec un résultat AVERTISSEMENT si moins de X pour-cent du disque est " |
502 | "libre" | 355 | "libre" |
503 | 356 | ||
504 | #: plugins/check_disk.c:958 | ||
505 | msgid "Exit with CRITICAL status if less than INTEGER units of disk are free" | 357 | msgid "Exit with CRITICAL status if less than INTEGER units of disk are free" |
506 | msgstr "" | 358 | msgstr "" |
507 | "Sortir avec un résultat CRITIQUE si moins de X unités du disque sont libres" | 359 | "Sortir avec un résultat CRITIQUE si moins de X unités du disque sont libres" |
508 | 360 | ||
509 | #: plugins/check_disk.c:960 | ||
510 | #, fuzzy | 361 | #, fuzzy |
511 | msgid "Exit with CRITICAL status if less than PERCENT of disk space is free" | 362 | msgid "Exit with CRITICAL status if less than PERCENT of disk space is free" |
512 | msgstr "" | 363 | msgstr "" |
513 | "Sortir avec un résultat CRITIQUE si moins de X pour-cent du disque est libre" | 364 | "Sortir avec un résultat CRITIQUE si moins de X pour-cent du disque est libre" |
514 | 365 | ||
515 | #: plugins/check_disk.c:962 | ||
516 | msgid "Exit with WARNING status if less than PERCENT of inode space is free" | 366 | msgid "Exit with WARNING status if less than PERCENT of inode space is free" |
517 | msgstr "" | 367 | msgstr "" |
518 | "Sortir avec un résultat AVERTISSEMENT si moins de X pour-cent des inodes " | 368 | "Sortir avec un résultat AVERTISSEMENT si moins de X pour-cent des inodes " |
519 | "sont libres" | 369 | "sont libres" |
520 | 370 | ||
521 | #: plugins/check_disk.c:964 | ||
522 | msgid "Exit with CRITICAL status if less than PERCENT of inode space is free" | 371 | msgid "Exit with CRITICAL status if less than PERCENT of inode space is free" |
523 | msgstr "" | 372 | msgstr "" |
524 | "Sortir avec un résultat CRITIQUE si moins de X pour-cent des inodes sont " | 373 | "Sortir avec un résultat CRITIQUE si moins de X pour-cent des inodes sont " |
525 | "libres" | 374 | "libres" |
526 | 375 | ||
527 | #: plugins/check_disk.c:966 | ||
528 | msgid "" | 376 | msgid "" |
529 | "Mount point or block device as emitted by the mount(8) command (may be " | 377 | "Mount point or block device as emitted by the mount(8) command (may be " |
530 | "repeated)" | 378 | "repeated)" |
531 | msgstr "" | 379 | msgstr "" |
532 | 380 | ||
533 | #: plugins/check_disk.c:968 | ||
534 | msgid "Ignore device (only works if -p unspecified)" | 381 | msgid "Ignore device (only works if -p unspecified)" |
535 | msgstr "Ignorer le périphérique (marche seulement lorsque -p est utilisé)" | 382 | msgstr "Ignorer le périphérique (marche seulement lorsque -p est utilisé)" |
536 | 383 | ||
537 | #: plugins/check_disk.c:970 | ||
538 | msgid "Clear thresholds" | 384 | msgid "Clear thresholds" |
539 | msgstr "Effacer les seuils" | 385 | msgstr "Effacer les seuils" |
540 | 386 | ||
541 | #: plugins/check_disk.c:972 | ||
542 | msgid "For paths or partitions specified with -p, only check for exact paths" | 387 | msgid "For paths or partitions specified with -p, only check for exact paths" |
543 | msgstr "" | 388 | msgstr "" |
544 | 389 | ||
545 | #: plugins/check_disk.c:974 | ||
546 | msgid "Display only devices/mountpoints with errors" | 390 | msgid "Display only devices/mountpoints with errors" |
547 | msgstr "Afficher seulement les périphériques/point de montage avec des erreurs" | 391 | msgstr "Afficher seulement les périphériques/point de montage avec des erreurs" |
548 | 392 | ||
549 | #: plugins/check_disk.c:976 | ||
550 | msgid "Don't account root-reserved blocks into freespace in perfdata" | 393 | msgid "Don't account root-reserved blocks into freespace in perfdata" |
551 | msgstr "" | 394 | msgstr "" |
552 | 395 | ||
553 | #: plugins/check_disk.c:978 | ||
554 | msgid "Display inode usage in perfdata" | 396 | msgid "Display inode usage in perfdata" |
555 | msgstr "" | 397 | msgstr "" |
556 | 398 | ||
557 | #: plugins/check_disk.c:980 | ||
558 | msgid "" | 399 | msgid "" |
559 | "Group paths. Thresholds apply to (free-)space of all partitions together" | 400 | "Group paths. Thresholds apply to (free-)space of all partitions together" |
560 | msgstr "" | 401 | msgstr "" |
561 | 402 | ||
562 | #: plugins/check_disk.c:982 | ||
563 | msgid "Same as '--units kB'" | 403 | msgid "Same as '--units kB'" |
564 | msgstr "Pareil à '--units kB'" | 404 | msgstr "Pareil à '--units kB'" |
565 | 405 | ||
566 | #: plugins/check_disk.c:984 | ||
567 | msgid "Only check local filesystems" | 406 | msgid "Only check local filesystems" |
568 | msgstr "Vérifier seulement les systèmes de fichiers locaux" | 407 | msgstr "Vérifier seulement les systèmes de fichiers locaux" |
569 | 408 | ||
570 | #: plugins/check_disk.c:986 | ||
571 | msgid "" | 409 | msgid "" |
572 | "Only check local filesystems against thresholds. Yet call stat on remote " | 410 | "Only check local filesystems against thresholds. Yet call stat on remote " |
573 | "filesystems" | 411 | "filesystems" |
574 | msgstr "" | 412 | msgstr "" |
575 | 413 | ||
576 | #: plugins/check_disk.c:987 | ||
577 | msgid "to test if they are accessible (e.g. to detect Stale NFS Handles)" | 414 | msgid "to test if they are accessible (e.g. to detect Stale NFS Handles)" |
578 | msgstr "" | 415 | msgstr "" |
579 | 416 | ||
580 | #: plugins/check_disk.c:989 | ||
581 | #, fuzzy | 417 | #, fuzzy |
582 | msgid "Display the (block) device instead of the mount point" | 418 | msgid "Display the (block) device instead of the mount point" |
583 | msgstr "Afficher le point de montage au lieu de la partition" | 419 | msgstr "Afficher le point de montage au lieu de la partition" |
584 | 420 | ||
585 | #: plugins/check_disk.c:991 | ||
586 | msgid "Same as '--units MB'" | 421 | msgid "Same as '--units MB'" |
587 | msgstr "Pareil à '--units MB'" | 422 | msgstr "Pareil à '--units MB'" |
588 | 423 | ||
589 | #: plugins/check_disk.c:993 | ||
590 | msgid "Explicitly select all paths. This is equivalent to -R '.*'" | 424 | msgid "Explicitly select all paths. This is equivalent to -R '.*'" |
591 | msgstr "" | 425 | msgstr "" |
592 | 426 | ||
593 | #: plugins/check_disk.c:995 | ||
594 | msgid "" | 427 | msgid "" |
595 | "Case insensitive regular expression for path/partition (may be repeated)" | 428 | "Case insensitive regular expression for path/partition (may be repeated)" |
596 | msgstr "" | 429 | msgstr "" |
597 | "Expression rationnelle indépendante de la case pour un répertoire ou une " | 430 | "Expression rationnelle indépendante de la case pour un répertoire ou une " |
598 | "partition (peut être utilisé plusieurs fois)" | 431 | "partition (peut être utilisé plusieurs fois)" |
599 | 432 | ||
600 | #: plugins/check_disk.c:997 | ||
601 | msgid "Regular expression for path or partition (may be repeated)" | 433 | msgid "Regular expression for path or partition (may be repeated)" |
602 | msgstr "" | 434 | msgstr "" |
603 | "Expression rationnelle pour un répertoire ou une partition (peut être " | 435 | "Expression rationnelle pour un répertoire ou une partition (peut être " |
604 | "utilisé plusieurs fois)" | 436 | "utilisé plusieurs fois)" |
605 | 437 | ||
606 | #: plugins/check_disk.c:999 | ||
607 | msgid "" | 438 | msgid "" |
608 | "Regular expression to ignore selected path/partition (case insensitive) (may " | 439 | "Regular expression to ignore selected path/partition (case insensitive) (may " |
609 | "be repeated)" | 440 | "be repeated)" |
@@ -611,225 +442,176 @@ msgstr "" | |||
611 | "Expression rationnelle pour ignorer un répertoire ou une partition (peut " | 442 | "Expression rationnelle pour ignorer un répertoire ou une partition (peut " |
612 | "être utilisé plusieurs fois)" | 443 | "être utilisé plusieurs fois)" |
613 | 444 | ||
614 | #: plugins/check_disk.c:1001 | ||
615 | msgid "" | 445 | msgid "" |
616 | "Regular expression to ignore selected path or partition (may be repeated)" | 446 | "Regular expression to ignore selected path or partition (may be repeated)" |
617 | msgstr "" | 447 | msgstr "" |
618 | "Expression rationnelle pour ignorer un répertoire ou une partition (peut " | 448 | "Expression rationnelle pour ignorer un répertoire ou une partition (peut " |
619 | "être utilisé plusieurs fois)" | 449 | "être utilisé plusieurs fois)" |
620 | 450 | ||
621 | #: plugins/check_disk.c:1003 | ||
622 | msgid "" | 451 | msgid "" |
623 | "Return OK if no filesystem matches, filesystem does not exist or is " | 452 | "Return OK if no filesystem matches, filesystem does not exist or is " |
624 | "inaccessible." | 453 | "inaccessible." |
625 | msgstr "" | 454 | msgstr "" |
626 | 455 | ||
627 | #: plugins/check_disk.c:1004 | ||
628 | msgid "(Provide this option before -p / -r / --ereg-path if used)" | 456 | msgid "(Provide this option before -p / -r / --ereg-path if used)" |
629 | msgstr "" | 457 | msgstr "" |
630 | 458 | ||
631 | #: plugins/check_disk.c:1007 | ||
632 | msgid "Choose bytes, kB, MB, GB, TB (default: MB)" | 459 | msgid "Choose bytes, kB, MB, GB, TB (default: MB)" |
633 | msgstr "Choisissez octets, kb, MB, GB, TB (par défaut: MB)" | 460 | msgstr "Choisissez octets, kb, MB, GB, TB (par défaut: MB)" |
634 | 461 | ||
635 | #: plugins/check_disk.c:1010 | ||
636 | msgid "Ignore all filesystems of indicated type (may be repeated)" | 462 | msgid "Ignore all filesystems of indicated type (may be repeated)" |
637 | msgstr "" | 463 | msgstr "" |
638 | "Ignorer tout les systèmes de fichiers qui correspondent au type indiqué " | 464 | "Ignorer tout les systèmes de fichiers qui correspondent au type indiqué " |
639 | "(peut être utilisé plusieurs fois)" | 465 | "(peut être utilisé plusieurs fois)" |
640 | 466 | ||
641 | #: plugins/check_disk.c:1012 | ||
642 | #, fuzzy | 467 | #, fuzzy |
643 | msgid "Check only filesystems of indicated type (may be repeated)" | 468 | msgid "Check only filesystems of indicated type (may be repeated)" |
644 | msgstr "" | 469 | msgstr "" |
645 | "Ignorer tout les systèmes de fichiers qui correspondent au type indiqué " | 470 | "Ignorer tout les systèmes de fichiers qui correspondent au type indiqué " |
646 | "(peut être utilisé plusieurs fois)" | 471 | "(peut être utilisé plusieurs fois)" |
647 | 472 | ||
648 | #: plugins/check_disk.c:1017 | ||
649 | msgid "Checks /tmp and /var at 10% and 5%, and / at 100MB and 50MB" | 473 | msgid "Checks /tmp and /var at 10% and 5%, and / at 100MB and 50MB" |
650 | msgstr "Vérifie /tmp à 10% et /var à 5% et / à 100MB et 50MB" | 474 | msgstr "Vérifie /tmp à 10% et /var à 5% et / à 100MB et 50MB" |
651 | 475 | ||
652 | #: plugins/check_disk.c:1019 | ||
653 | msgid "" | 476 | msgid "" |
654 | "Checks all filesystems not matching -r at 100M and 50M. The fs matching the -" | 477 | "Checks all filesystems not matching -r at 100M and 50M. The fs matching the -" |
655 | "r regex" | 478 | "r regex" |
656 | msgstr "" | 479 | msgstr "" |
657 | 480 | ||
658 | #: plugins/check_disk.c:1020 | ||
659 | msgid "" | 481 | msgid "" |
660 | "are grouped which means the freespace thresholds are applied to all disks " | 482 | "are grouped which means the freespace thresholds are applied to all disks " |
661 | "together" | 483 | "together" |
662 | msgstr "" | 484 | msgstr "" |
663 | 485 | ||
664 | #: plugins/check_disk.c:1022 | ||
665 | msgid "" | 486 | msgid "" |
666 | "Checks /foo for 1000M/500M and /bar for 5/3%. All remaining volumes use " | 487 | "Checks /foo for 1000M/500M and /bar for 5/3%. All remaining volumes use " |
667 | "100M/50M" | 488 | "100M/50M" |
668 | msgstr "" | 489 | msgstr "" |
669 | 490 | ||
670 | #: plugins/check_disk.c:1051 | ||
671 | #, c-format | 491 | #, c-format |
672 | msgid "%s %s: %s\n" | 492 | msgid "%s %s: %s\n" |
673 | msgstr "" | 493 | msgstr "" |
674 | 494 | ||
675 | #: plugins/check_disk.c:1051 | ||
676 | msgid "is not accessible" | 495 | msgid "is not accessible" |
677 | msgstr "" | 496 | msgstr "" |
678 | 497 | ||
679 | #: plugins/check_dns.c:120 | ||
680 | msgid "nslookup returned an error status" | 498 | msgid "nslookup returned an error status" |
681 | msgstr "nslookup à retourné un code d'erreur" | 499 | msgstr "nslookup à retourné un code d'erreur" |
682 | 500 | ||
683 | #: plugins/check_dns.c:138 | ||
684 | msgid "Warning plugin error" | 501 | msgid "Warning plugin error" |
685 | msgstr "Alerte erreur de plugin" | 502 | msgstr "Alerte erreur de plugin" |
686 | 503 | ||
687 | #: plugins/check_dns.c:156 | ||
688 | #, fuzzy, c-format | 504 | #, fuzzy, c-format |
689 | msgid "DNS CRITICAL - '%s' returned empty server string\n" | 505 | msgid "DNS CRITICAL - '%s' returned empty server string\n" |
690 | msgstr "DNS CRITIQUE - '%s' à retourné un nom d'hôte vide\n" | 506 | msgstr "DNS CRITIQUE - '%s' à retourné un nom d'hôte vide\n" |
691 | 507 | ||
692 | #: plugins/check_dns.c:161 | ||
693 | #, fuzzy, c-format | 508 | #, fuzzy, c-format |
694 | msgid "DNS CRITICAL - No response from DNS %s\n" | 509 | msgid "DNS CRITICAL - No response from DNS %s\n" |
695 | msgstr "Pas de réponse du DNS %s\n" | 510 | msgstr "Pas de réponse du DNS %s\n" |
696 | 511 | ||
697 | #: plugins/check_dns.c:180 | ||
698 | #, c-format | 512 | #, c-format |
699 | msgid "DNS CRITICAL - '%s' returned empty host name string\n" | 513 | msgid "DNS CRITICAL - '%s' returned empty host name string\n" |
700 | msgstr "DNS CRITIQUE - '%s' à retourné un nom d'hôte vide\n" | 514 | msgstr "DNS CRITIQUE - '%s' à retourné un nom d'hôte vide\n" |
701 | 515 | ||
702 | #: plugins/check_dns.c:186 | ||
703 | msgid "Non-authoritative answer:" | 516 | msgid "Non-authoritative answer:" |
704 | msgstr "Réponse non autoritative:" | 517 | msgstr "Réponse non autoritative:" |
705 | 518 | ||
706 | #: plugins/check_dns.c:215 | ||
707 | #, fuzzy, c-format | 519 | #, fuzzy, c-format |
708 | msgid "Domain '%s' was not found by the server\n" | 520 | msgid "Domain '%s' was not found by the server\n" |
709 | msgstr "Le domaine %s n'a pas été trouvé par le serveur\n" | 521 | msgstr "Le domaine %s n'a pas été trouvé par le serveur\n" |
710 | 522 | ||
711 | #: plugins/check_dns.c:234 | ||
712 | #, c-format | 523 | #, c-format |
713 | msgid "DNS CRITICAL - '%s' msg parsing exited with no address\n" | 524 | msgid "DNS CRITICAL - '%s' msg parsing exited with no address\n" |
714 | msgstr "DNS CRITIQUE - '%s' n'a pas retourné d'adresse\n" | 525 | msgstr "DNS CRITIQUE - '%s' n'a pas retourné d'adresse\n" |
715 | 526 | ||
716 | #: plugins/check_dns.c:265 | ||
717 | #, c-format | 527 | #, c-format |
718 | msgid "expected '%s' but got '%s'" | 528 | msgid "expected '%s' but got '%s'" |
719 | msgstr "j'attendais '%s' mais j'ai reçu '%s'" | 529 | msgstr "j'attendais '%s' mais j'ai reçu '%s'" |
720 | 530 | ||
721 | #: plugins/check_dns.c:272 | ||
722 | #, fuzzy, c-format | 531 | #, fuzzy, c-format |
723 | msgid "Domain '%s' was found by the server: '%s'\n" | 532 | msgid "Domain '%s' was found by the server: '%s'\n" |
724 | msgstr "Le domaine %s n'a pas été trouvé par le serveur\n" | 533 | msgstr "Le domaine %s n'a pas été trouvé par le serveur\n" |
725 | 534 | ||
726 | #: plugins/check_dns.c:282 | ||
727 | #, c-format | 535 | #, c-format |
728 | msgid "server %s is not authoritative for %s" | 536 | msgid "server %s is not authoritative for %s" |
729 | msgstr "serveur %s n'est pas autoritaire pour %s" | 537 | msgstr "serveur %s n'est pas autoritaire pour %s" |
730 | 538 | ||
731 | #: plugins/check_dns.c:291 plugins/check_dummy.c:68 plugins/check_nagios.c:182 | ||
732 | #: plugins/check_pgsql.c:612 plugins/check_procs.c:367 | ||
733 | #, c-format | 539 | #, c-format |
734 | msgid "OK" | 540 | msgid "OK" |
735 | msgstr "OK" | 541 | msgstr "OK" |
736 | 542 | ||
737 | #: plugins/check_dns.c:293 plugins/check_dummy.c:71 plugins/check_mysql.c:310 | ||
738 | #: plugins/check_nagios.c:182 plugins/check_pgsql.c:581 | ||
739 | #: plugins/check_pgsql.c:586 plugins/check_pgsql.c:614 | ||
740 | #: plugins/check_procs.c:369 | ||
741 | #, c-format | 543 | #, c-format |
742 | msgid "WARNING" | 544 | msgid "WARNING" |
743 | msgstr "AVERTISSEMENT" | 545 | msgstr "AVERTISSEMENT" |
744 | 546 | ||
745 | #: plugins/check_dns.c:297 | ||
746 | #, c-format | 547 | #, c-format |
747 | msgid "%.3f second response time" | 548 | msgid "%.3f second response time" |
748 | msgid_plural "%.3f seconds response time" | 549 | msgid_plural "%.3f seconds response time" |
749 | msgstr[0] "%.3f secondes de temps de réponse " | 550 | msgstr[0] "%.3f secondes de temps de réponse " |
750 | msgstr[1] "%.3f secondes de temps de réponse " | 551 | msgstr[1] "%.3f secondes de temps de réponse " |
751 | 552 | ||
752 | #: plugins/check_dns.c:298 | ||
753 | #, c-format | 553 | #, c-format |
754 | msgid ". %s returns %s" | 554 | msgid ". %s returns %s" |
755 | msgstr ". %s renvoie %s" | 555 | msgstr ". %s renvoie %s" |
756 | 556 | ||
757 | #: plugins/check_dns.c:318 | ||
758 | #, c-format | 557 | #, c-format |
759 | msgid "DNS WARNING - %s\n" | 558 | msgid "DNS WARNING - %s\n" |
760 | msgstr "DNS AVERTISSEMENT - %s\n" | 559 | msgstr "DNS AVERTISSEMENT - %s\n" |
761 | 560 | ||
762 | #: plugins/check_dns.c:319 plugins/check_dns.c:322 plugins/check_dns.c:325 | ||
763 | msgid " Probably a non-existent host/domain" | 561 | msgid " Probably a non-existent host/domain" |
764 | msgstr " Probablement un hôte/domaine inexistant" | 562 | msgstr " Probablement un hôte/domaine inexistant" |
765 | 563 | ||
766 | #: plugins/check_dns.c:321 | ||
767 | #, c-format | 564 | #, c-format |
768 | msgid "DNS CRITICAL - %s\n" | 565 | msgid "DNS CRITICAL - %s\n" |
769 | msgstr "DNS CRITIQUE - %s\n" | 566 | msgstr "DNS CRITIQUE - %s\n" |
770 | 567 | ||
771 | #: plugins/check_dns.c:324 | ||
772 | #, c-format | 568 | #, c-format |
773 | msgid "DNS UNKNOWN - %s\n" | 569 | msgid "DNS UNKNOWN - %s\n" |
774 | msgstr "DNS INCONNU - %s\n" | 570 | msgstr "DNS INCONNU - %s\n" |
775 | 571 | ||
776 | #: plugins/check_dns.c:368 | ||
777 | msgid "Note: nslookup is deprecated and may be removed from future releases." | 572 | msgid "Note: nslookup is deprecated and may be removed from future releases." |
778 | msgstr "" | 573 | msgstr "" |
779 | "Note: nslookup est obsolète et pourra être retiré dans les prochaines " | 574 | "Note: nslookup est obsolète et pourra être retiré dans les prochaines " |
780 | "versions." | 575 | "versions." |
781 | 576 | ||
782 | #: plugins/check_dns.c:369 | ||
783 | msgid "Consider using the `dig' or `host' programs instead. Run nslookup with" | 577 | msgid "Consider using the `dig' or `host' programs instead. Run nslookup with" |
784 | msgstr "" | 578 | msgstr "" |
785 | "Veuillez utiliser le programme 'dig' ou 'host' Ã la place. Faire fonctionner " | 579 | "Veuillez utiliser le programme 'dig' ou 'host' Ã la place. Faire fonctionner " |
786 | "nslookup avec" | 580 | "nslookup avec" |
787 | 581 | ||
788 | #: plugins/check_dns.c:370 | ||
789 | msgid "the `-sil[ent]' option to prevent this message from appearing." | 582 | msgid "the `-sil[ent]' option to prevent this message from appearing." |
790 | msgstr "L'option '-sil[ent]' empêche l'apparition de ce message." | 583 | msgstr "L'option '-sil[ent]' empêche l'apparition de ce message." |
791 | 584 | ||
792 | #: plugins/check_dns.c:375 plugins/check_dns.c:377 | ||
793 | #, c-format | 585 | #, c-format |
794 | msgid "No response from DNS %s\n" | 586 | msgid "No response from DNS %s\n" |
795 | msgstr "Pas de réponse du DNS %s\n" | 587 | msgstr "Pas de réponse du DNS %s\n" |
796 | 588 | ||
797 | #: plugins/check_dns.c:381 | ||
798 | #, c-format | 589 | #, c-format |
799 | msgid "DNS %s has no records\n" | 590 | msgid "DNS %s has no records\n" |
800 | msgstr "Le DNS %s n'a pas d'enregistrements\n" | 591 | msgstr "Le DNS %s n'a pas d'enregistrements\n" |
801 | 592 | ||
802 | #: plugins/check_dns.c:389 | ||
803 | #, c-format | 593 | #, c-format |
804 | msgid "Connection to DNS %s was refused\n" | 594 | msgid "Connection to DNS %s was refused\n" |
805 | msgstr "La connexion au DNS %s à été refusée\n" | 595 | msgstr "La connexion au DNS %s à été refusée\n" |
806 | 596 | ||
807 | #: plugins/check_dns.c:393 | ||
808 | #, c-format | 597 | #, c-format |
809 | msgid "Query was refused by DNS server at %s\n" | 598 | msgid "Query was refused by DNS server at %s\n" |
810 | msgstr "La requête à été refusée par le serveur DNS %s\n" | 599 | msgstr "La requête à été refusée par le serveur DNS %s\n" |
811 | 600 | ||
812 | #: plugins/check_dns.c:397 | ||
813 | #, c-format | 601 | #, c-format |
814 | msgid "No information returned by DNS server at %s\n" | 602 | msgid "No information returned by DNS server at %s\n" |
815 | msgstr "Pas d'information renvoyée par le serveur DNS %s\n" | 603 | msgstr "Pas d'information renvoyée par le serveur DNS %s\n" |
816 | 604 | ||
817 | #: plugins/check_dns.c:401 | ||
818 | msgid "Network is unreachable\n" | 605 | msgid "Network is unreachable\n" |
819 | msgstr "Le réseau est inaccessible\n" | 606 | msgstr "Le réseau est inaccessible\n" |
820 | 607 | ||
821 | #: plugins/check_dns.c:405 | ||
822 | #, c-format | 608 | #, c-format |
823 | msgid "DNS failure for %s\n" | 609 | msgid "DNS failure for %s\n" |
824 | msgstr "DNS à échoué pour %s\n" | 610 | msgstr "DNS à échoué pour %s\n" |
825 | 611 | ||
826 | #: plugins/check_dns.c:471 plugins/check_dns.c:479 plugins/check_dns.c:486 | ||
827 | #: plugins/check_dns.c:491 plugins/check_dns.c:533 plugins/check_dns.c:541 | ||
828 | #: plugins/check_game.c:211 plugins/check_game.c:219 | ||
829 | msgid "Input buffer overflow\n" | 612 | msgid "Input buffer overflow\n" |
830 | msgstr "Le tampon d'entrée a débordé\n" | 613 | msgstr "Le tampon d'entrée a débordé\n" |
831 | 614 | ||
832 | #: plugins/check_dns.c:576 | ||
833 | msgid "" | 615 | msgid "" |
834 | "This plugin uses the nslookup program to obtain the IP address for the given " | 616 | "This plugin uses the nslookup program to obtain the IP address for the given " |
835 | "host/domain query." | 617 | "host/domain query." |
@@ -837,11 +619,9 @@ msgstr "" | |||
837 | "Ce plugin utilise le programme nslookup pour obtenir l'adresse IP de l'hôte/" | 619 | "Ce plugin utilise le programme nslookup pour obtenir l'adresse IP de l'hôte/" |
838 | "domaine à interroger." | 620 | "domaine à interroger." |
839 | 621 | ||
840 | #: plugins/check_dns.c:577 | ||
841 | msgid "An optional DNS server to use may be specified." | 622 | msgid "An optional DNS server to use may be specified." |
842 | msgstr "Un serveur DNS à utiliser peut être indiqué." | 623 | msgstr "Un serveur DNS à utiliser peut être indiqué." |
843 | 624 | ||
844 | #: plugins/check_dns.c:578 | ||
845 | msgid "" | 625 | msgid "" |
846 | "If no DNS server is specified, the default server(s) specified in /etc/" | 626 | "If no DNS server is specified, the default server(s) specified in /etc/" |
847 | "resolv.conf will be used." | 627 | "resolv.conf will be used." |
@@ -849,210 +629,158 @@ msgstr "" | |||
849 | "Si aucun serveur DNS n'est spécifié, les serveurs spécifiés dans /etc/resolv." | 629 | "Si aucun serveur DNS n'est spécifié, les serveurs spécifiés dans /etc/resolv." |
850 | "conf seront utilisé." | 630 | "conf seront utilisé." |
851 | 631 | ||
852 | #: plugins/check_dns.c:588 | ||
853 | msgid "The name or address you want to query" | 632 | msgid "The name or address you want to query" |
854 | msgstr "Le nom ou l'adresse que vous voulez interroger" | 633 | msgstr "Le nom ou l'adresse que vous voulez interroger" |
855 | 634 | ||
856 | #: plugins/check_dns.c:590 | ||
857 | msgid "Optional DNS server you want to use for the lookup" | 635 | msgid "Optional DNS server you want to use for the lookup" |
858 | msgstr "Serveur DNS que vous voulez utiliser pour la recherche" | 636 | msgstr "Serveur DNS que vous voulez utiliser pour la recherche" |
859 | 637 | ||
860 | #: plugins/check_dns.c:592 | ||
861 | #, fuzzy | 638 | #, fuzzy |
862 | msgid "" | 639 | msgid "" |
863 | "Optional IP-ADDRESS/CIDR you expect the DNS server to return. HOST must end" | 640 | "Optional IP-ADDRESS/CIDR you expect the DNS server to return. HOST must end" |
864 | msgstr "" | 641 | msgstr "" |
865 | "Adresse IP que le serveur DNS doit retourner. Les hôtes doivent se terminer " | 642 | "Adresse IP que le serveur DNS doit retourner. Les hôtes doivent se terminer " |
866 | 643 | ||
867 | #: plugins/check_dns.c:593 | ||
868 | #, fuzzy | 644 | #, fuzzy |
869 | msgid "" | 645 | msgid "" |
870 | "with a dot (.). This option can be repeated multiple times (Returns OK if any" | 646 | "with a dot (.). This option can be repeated multiple times (Returns OK if any" |
871 | msgstr "avec un point (.). Cette option peut être répétée (Retourne OK si une" | 647 | msgstr "avec un point (.). Cette option peut être répétée (Retourne OK si une" |
872 | 648 | ||
873 | #: plugins/check_dns.c:594 | ||
874 | msgid "value matches)." | 649 | msgid "value matches)." |
875 | msgstr "" | 650 | msgstr "" |
876 | 651 | ||
877 | #: plugins/check_dns.c:596 | ||
878 | msgid "" | 652 | msgid "" |
879 | "Expect the DNS server to return NXDOMAIN (i.e. the domain was not found)" | 653 | "Expect the DNS server to return NXDOMAIN (i.e. the domain was not found)" |
880 | msgstr "" | 654 | msgstr "" |
881 | 655 | ||
882 | #: plugins/check_dns.c:597 | ||
883 | msgid "Cannot be used together with -a" | 656 | msgid "Cannot be used together with -a" |
884 | msgstr "" | 657 | msgstr "" |
885 | 658 | ||
886 | #: plugins/check_dns.c:599 | ||
887 | msgid "Optionally expect the DNS server to be authoritative for the lookup" | 659 | msgid "Optionally expect the DNS server to be authoritative for the lookup" |
888 | msgstr "Serveur DNS qui doit normalement être autoritaire pour la recherche" | 660 | msgstr "Serveur DNS qui doit normalement être autoritaire pour la recherche" |
889 | 661 | ||
890 | #: plugins/check_dns.c:601 | ||
891 | msgid "Return warning if elapsed time exceeds value. Default off" | 662 | msgid "Return warning if elapsed time exceeds value. Default off" |
892 | msgstr "" | 663 | msgstr "" |
893 | "Renvoie une alerte si le temps écoulé dépasse la valeur indiquée. Désactivé " | 664 | "Renvoie une alerte si le temps écoulé dépasse la valeur indiquée. Désactivé " |
894 | "par défaut" | 665 | "par défaut" |
895 | 666 | ||
896 | #: plugins/check_dns.c:603 | ||
897 | msgid "Return critical if elapsed time exceeds value. Default off" | 667 | msgid "Return critical if elapsed time exceeds value. Default off" |
898 | msgstr "" | 668 | msgstr "" |
899 | "Renvoie critique si le temps utilisé dépasse la valeur indiquée. Désactivé " | 669 | "Renvoie critique si le temps utilisé dépasse la valeur indiquée. Désactivé " |
900 | "par défaut" | 670 | "par défaut" |
901 | 671 | ||
902 | #: plugins/check_dns.c:605 | ||
903 | msgid "" | 672 | msgid "" |
904 | "Return critical if the list of expected addresses does not match all " | 673 | "Return critical if the list of expected addresses does not match all " |
905 | "addresses" | 674 | "addresses" |
906 | msgstr "" | 675 | msgstr "" |
907 | 676 | ||
908 | #: plugins/check_dns.c:606 | ||
909 | msgid "returned. Default off" | 677 | msgid "returned. Default off" |
910 | msgstr "" | 678 | msgstr "" |
911 | 679 | ||
912 | #: plugins/check_dummy.c:62 | ||
913 | msgid "Arguments to check_dummy must be an integer" | 680 | msgid "Arguments to check_dummy must be an integer" |
914 | msgstr "Les arguments pour check_dummy doivent être des entiers" | 681 | msgstr "Les arguments pour check_dummy doivent être des entiers" |
915 | 682 | ||
916 | #: plugins/check_dummy.c:82 | ||
917 | #, c-format | 683 | #, c-format |
918 | msgid "Status %d is not a supported error state\n" | 684 | msgid "Status %d is not a supported error state\n" |
919 | msgstr "Le résultat %d n'est pas un résultat supporté\n" | 685 | msgstr "Le résultat %d n'est pas un résultat supporté\n" |
920 | 686 | ||
921 | #: plugins/check_dummy.c:104 | ||
922 | msgid "" | 687 | msgid "" |
923 | "This plugin will simply return the state corresponding to the numeric value" | 688 | "This plugin will simply return the state corresponding to the numeric value" |
924 | msgstr "" | 689 | msgstr "" |
925 | "Ce plugin renverra simplement l'état correspondant à la valeur numérique" | 690 | "Ce plugin renverra simplement l'état correspondant à la valeur numérique" |
926 | 691 | ||
927 | #: plugins/check_dummy.c:106 | ||
928 | msgid "of the <state> argument with optional text" | 692 | msgid "of the <state> argument with optional text" |
929 | msgstr "du paramètre <state> avec un texte optionnel" | 693 | msgstr "du paramètre <state> avec un texte optionnel" |
930 | 694 | ||
931 | #: plugins/check_fping.c:127 plugins/check_hpjd.c:134 plugins/check_ping.c:444 | ||
932 | #: plugins/check_swap.c:193 plugins/check_users.c:130 plugins/urlize.c:109 | ||
933 | #, c-format | 695 | #, c-format |
934 | msgid "Could not open pipe: %s\n" | 696 | msgid "Could not open pipe: %s\n" |
935 | msgstr "Impossible d'ouvrir le pipe: %s\n" | 697 | msgstr "Impossible d'ouvrir le pipe: %s\n" |
936 | 698 | ||
937 | #: plugins/check_fping.c:133 plugins/check_hpjd.c:140 plugins/check_load.c:159 | ||
938 | #: plugins/check_swap.c:199 plugins/check_users.c:136 plugins/urlize.c:115 | ||
939 | #, c-format | 699 | #, c-format |
940 | msgid "Could not open stderr for %s\n" | 700 | msgid "Could not open stderr for %s\n" |
941 | msgstr "Impossible d'ouvrir la sortie d'erreur standard pour %s\n" | 701 | msgstr "Impossible d'ouvrir la sortie d'erreur standard pour %s\n" |
942 | 702 | ||
943 | #: plugins/check_fping.c:161 | ||
944 | #, fuzzy | 703 | #, fuzzy |
945 | msgid "FPING UNKNOWN - IP address not found\n" | 704 | msgid "FPING UNKNOWN - IP address not found\n" |
946 | msgstr "PING INCONNU - Hôte non trouvé (%s)\n" | 705 | msgstr "PING INCONNU - Hôte non trouvé (%s)\n" |
947 | 706 | ||
948 | #: plugins/check_fping.c:164 | ||
949 | msgid "FPING UNKNOWN - invalid commandline argument\n" | 707 | msgid "FPING UNKNOWN - invalid commandline argument\n" |
950 | msgstr "" | 708 | msgstr "" |
951 | 709 | ||
952 | #: plugins/check_fping.c:167 | ||
953 | #, fuzzy | 710 | #, fuzzy |
954 | msgid "FPING UNKNOWN - failed system call\n" | 711 | msgid "FPING UNKNOWN - failed system call\n" |
955 | msgstr "PING INCONNU - Hôte non trouvé (%s)\n" | 712 | msgstr "PING INCONNU - Hôte non trouvé (%s)\n" |
956 | 713 | ||
957 | #: plugins/check_fping.c:194 | ||
958 | #, fuzzy, c-format | 714 | #, fuzzy, c-format |
959 | msgid "FPING %s - %s (rta=%f ms)|%s\n" | 715 | msgid "FPING %s - %s (rta=%f ms)|%s\n" |
960 | msgstr "FPING %s - %s (perte=%.0f%% )|%s\n" | 716 | msgstr "FPING %s - %s (perte=%.0f%% )|%s\n" |
961 | 717 | ||
962 | #: plugins/check_fping.c:202 | ||
963 | #, c-format | 718 | #, c-format |
964 | msgid "FPING UNKNOWN - %s not found\n" | 719 | msgid "FPING UNKNOWN - %s not found\n" |
965 | msgstr "PING INCONNU - Hôte non trouvé (%s)\n" | 720 | msgstr "PING INCONNU - Hôte non trouvé (%s)\n" |
966 | 721 | ||
967 | #: plugins/check_fping.c:206 | ||
968 | #, c-format | 722 | #, c-format |
969 | msgid "FPING CRITICAL - %s is unreachable\n" | 723 | msgid "FPING CRITICAL - %s is unreachable\n" |
970 | msgstr "PING CRITIQUE - Hôte inaccessible (%s)\n" | 724 | msgstr "PING CRITIQUE - Hôte inaccessible (%s)\n" |
971 | 725 | ||
972 | #: plugins/check_fping.c:211 | ||
973 | #, fuzzy, c-format | 726 | #, fuzzy, c-format |
974 | msgid "FPING UNKNOWN - %s parameter error\n" | 727 | msgid "FPING UNKNOWN - %s parameter error\n" |
975 | msgstr "PING INCONNU - Hôte non trouvé (%s)\n" | 728 | msgstr "PING INCONNU - Hôte non trouvé (%s)\n" |
976 | 729 | ||
977 | #: plugins/check_fping.c:215 plugins/check_fping.c:255 | ||
978 | #, c-format | 730 | #, c-format |
979 | msgid "FPING CRITICAL - %s is down\n" | 731 | msgid "FPING CRITICAL - %s is down\n" |
980 | msgstr "FPING CRITIQUE - %s est en panne\n" | 732 | msgstr "FPING CRITIQUE - %s est en panne\n" |
981 | 733 | ||
982 | #: plugins/check_fping.c:242 | ||
983 | #, c-format | 734 | #, c-format |
984 | msgid "FPING %s - %s (loss=%.0f%%, rta=%f ms)|%s %s\n" | 735 | msgid "FPING %s - %s (loss=%.0f%%, rta=%f ms)|%s %s\n" |
985 | msgstr "FPING %s - %s (perte=%.0f%%, rta=%f ms)|%s %s\n" | 736 | msgstr "FPING %s - %s (perte=%.0f%%, rta=%f ms)|%s %s\n" |
986 | 737 | ||
987 | #: plugins/check_fping.c:268 | ||
988 | #, c-format | 738 | #, c-format |
989 | msgid "FPING %s - %s (loss=%.0f%% )|%s\n" | 739 | msgid "FPING %s - %s (loss=%.0f%% )|%s\n" |
990 | msgstr "FPING %s - %s (perte=%.0f%% )|%s\n" | 740 | msgstr "FPING %s - %s (perte=%.0f%% )|%s\n" |
991 | 741 | ||
992 | #: plugins/check_fping.c:345 plugins/check_fping.c:351 plugins/check_hpjd.c:345 | ||
993 | #: plugins/check_hpjd.c:377 plugins/check_mysql.c:389 plugins/check_mysql.c:476 | ||
994 | #: plugins/check_ntp.c:719 plugins/check_ntp_peer.c:497 | ||
995 | #: plugins/check_ntp_time.c:498 plugins/check_pgsql.c:338 | ||
996 | #: plugins/check_ping.c:301 plugins/check_ping.c:424 plugins/check_radius.c:279 | ||
997 | #: plugins/check_real.c:315 plugins/check_real.c:377 plugins/check_smtp.c:525 | ||
998 | #: plugins/check_smtp.c:681 plugins/check_ssh.c:162 plugins/check_time.c:240 | ||
999 | #: plugins/check_time.c:315 plugins/check_ups.c:507 plugins/check_ups.c:576 | ||
1000 | msgid "Invalid hostname/address" | 742 | msgid "Invalid hostname/address" |
1001 | msgstr "Adresse/Nom d'hôte invalide" | 743 | msgstr "Adresse/Nom d'hôte invalide" |
1002 | 744 | ||
1003 | #: plugins/check_fping.c:365 plugins/check_ldap.c:400 plugins/check_ping.c:252 | ||
1004 | #: plugins-root/check_icmp.c:474 | ||
1005 | msgid "IPv6 support not available\n" | 745 | msgid "IPv6 support not available\n" |
1006 | msgstr "Support IPv6 non disponible\n" | 746 | msgstr "Support IPv6 non disponible\n" |
1007 | 747 | ||
1008 | #: plugins/check_fping.c:398 | ||
1009 | msgid "Packet size must be a positive integer" | 748 | msgid "Packet size must be a positive integer" |
1010 | msgstr "La taille du paquet doit être un entier positif" | 749 | msgstr "La taille du paquet doit être un entier positif" |
1011 | 750 | ||
1012 | #: plugins/check_fping.c:404 | ||
1013 | msgid "Packet count must be a positive integer" | 751 | msgid "Packet count must be a positive integer" |
1014 | msgstr "Le nombre de paquets doit être un entier positif" | 752 | msgstr "Le nombre de paquets doit être un entier positif" |
1015 | 753 | ||
1016 | #: plugins/check_fping.c:410 | ||
1017 | msgid "Target timeout must be a positive integer" | 754 | msgid "Target timeout must be a positive integer" |
1018 | msgstr "Le seuil d'avertissement doit être un entier positif" | 755 | msgstr "Le seuil d'avertissement doit être un entier positif" |
1019 | 756 | ||
1020 | #: plugins/check_fping.c:416 | ||
1021 | msgid "Interval must be a positive integer" | 757 | msgid "Interval must be a positive integer" |
1022 | msgstr "Le délai d'attente doit être un entier positif" | 758 | msgstr "Le délai d'attente doit être un entier positif" |
1023 | 759 | ||
1024 | #: plugins/check_fping.c:422 plugins/check_ntp.c:743 | ||
1025 | #: plugins/check_ntp_peer.c:524 plugins/check_ntp_time.c:528 | ||
1026 | #: plugins/check_radius.c:329 plugins/check_time.c:319 | ||
1027 | msgid "Hostname was not supplied" | 760 | msgid "Hostname was not supplied" |
1028 | msgstr "Le nom de l'hôte n'a pas été spécifié" | 761 | msgstr "Le nom de l'hôte n'a pas été spécifié" |
1029 | 762 | ||
1030 | #: plugins/check_fping.c:442 | ||
1031 | #, c-format | 763 | #, c-format |
1032 | msgid "%s: Only one threshold may be packet loss (%s)\n" | 764 | msgid "%s: Only one threshold may be packet loss (%s)\n" |
1033 | msgstr "" | 765 | msgstr "" |
1034 | "%s: Seulement un seuil peut être utilisé pour les pertes de paquets (%s)\n" | 766 | "%s: Seulement un seuil peut être utilisé pour les pertes de paquets (%s)\n" |
1035 | 767 | ||
1036 | #: plugins/check_fping.c:446 | ||
1037 | #, c-format | 768 | #, c-format |
1038 | msgid "%s: Only one threshold must be packet loss (%s)\n" | 769 | msgid "%s: Only one threshold must be packet loss (%s)\n" |
1039 | msgstr "" | 770 | msgstr "" |
1040 | "%s: Seulement un seuil doit être utilisé pour les pertes de paquets (%s)\n" | 771 | "%s: Seulement un seuil doit être utilisé pour les pertes de paquets (%s)\n" |
1041 | 772 | ||
1042 | #: plugins/check_fping.c:476 | ||
1043 | msgid "" | 773 | msgid "" |
1044 | "This plugin will use the fping command to ping the specified host for a fast " | 774 | "This plugin will use the fping command to ping the specified host for a fast " |
1045 | "check" | 775 | "check" |
1046 | msgstr "" | 776 | msgstr "" |
1047 | "Ce plugin va utiliser la commande fping pour pinger l'hôte de manière rapide." | 777 | "Ce plugin va utiliser la commande fping pour pinger l'hôte de manière rapide." |
1048 | 778 | ||
1049 | #: plugins/check_fping.c:478 | ||
1050 | msgid "Note that it is necessary to set the suid flag on fping." | 779 | msgid "Note that it is necessary to set the suid flag on fping." |
1051 | msgstr "" | 780 | msgstr "" |
1052 | "Veuillez noter qu'il est nécessaire de mettre le bit suid sur le programme " | 781 | "Veuillez noter qu'il est nécessaire de mettre le bit suid sur le programme " |
1053 | "fping." | 782 | "fping." |
1054 | 783 | ||
1055 | #: plugins/check_fping.c:490 | ||
1056 | msgid "" | 784 | msgid "" |
1057 | "name or IP Address of host to ping (IP Address bypasses name lookup, " | 785 | "name or IP Address of host to ping (IP Address bypasses name lookup, " |
1058 | "reducing system load)" | 786 | "reducing system load)" |
@@ -1060,43 +788,33 @@ msgstr "" | |||
1060 | "nom ou adresse IP des hôtes à pinger (l'indication d'un adresse IP évite une " | 788 | "nom ou adresse IP des hôtes à pinger (l'indication d'un adresse IP évite une " |
1061 | "recherche sur le nom, ce qui réduit la charge système)" | 789 | "recherche sur le nom, ce qui réduit la charge système)" |
1062 | 790 | ||
1063 | #: plugins/check_fping.c:492 plugins/check_ping.c:589 | ||
1064 | msgid "warning threshold pair" | 791 | msgid "warning threshold pair" |
1065 | msgstr "Valeurs pour le seuil d'avertissement" | 792 | msgstr "Valeurs pour le seuil d'avertissement" |
1066 | 793 | ||
1067 | #: plugins/check_fping.c:494 plugins/check_ping.c:591 | ||
1068 | msgid "critical threshold pair" | 794 | msgid "critical threshold pair" |
1069 | msgstr "Valeurs pour le seuil critique" | 795 | msgstr "Valeurs pour le seuil critique" |
1070 | 796 | ||
1071 | #: plugins/check_fping.c:496 | ||
1072 | msgid "Return OK after first successful reply" | 797 | msgid "Return OK after first successful reply" |
1073 | msgstr "" | 798 | msgstr "" |
1074 | 799 | ||
1075 | #: plugins/check_fping.c:498 | ||
1076 | msgid "size of ICMP packet" | 800 | msgid "size of ICMP packet" |
1077 | msgstr "taille du paquet ICMP" | 801 | msgstr "taille du paquet ICMP" |
1078 | 802 | ||
1079 | #: plugins/check_fping.c:500 | ||
1080 | msgid "number of ICMP packets to send" | 803 | msgid "number of ICMP packets to send" |
1081 | msgstr "nombre de paquets ICMP Ã envoyer" | 804 | msgstr "nombre de paquets ICMP Ã envoyer" |
1082 | 805 | ||
1083 | #: plugins/check_fping.c:502 | ||
1084 | msgid "Target timeout (ms)" | 806 | msgid "Target timeout (ms)" |
1085 | msgstr "" | 807 | msgstr "" |
1086 | 808 | ||
1087 | #: plugins/check_fping.c:504 | ||
1088 | msgid "Interval (ms) between sending packets" | 809 | msgid "Interval (ms) between sending packets" |
1089 | msgstr "" | 810 | msgstr "" |
1090 | 811 | ||
1091 | #: plugins/check_fping.c:506 | ||
1092 | msgid "name or IP Address of sourceip" | 812 | msgid "name or IP Address of sourceip" |
1093 | msgstr "" | 813 | msgstr "" |
1094 | 814 | ||
1095 | #: plugins/check_fping.c:508 | ||
1096 | msgid "source interface name" | 815 | msgid "source interface name" |
1097 | msgstr "" | 816 | msgstr "" |
1098 | 817 | ||
1099 | #: plugins/check_fping.c:511 | ||
1100 | #, c-format | 818 | #, c-format |
1101 | msgid "" | 819 | msgid "" |
1102 | "THRESHOLD is <rta>,<pl>%% where <rta> is the round trip average travel time " | 820 | "THRESHOLD is <rta>,<pl>%% where <rta> is the round trip average travel time " |
@@ -1105,63 +823,50 @@ msgstr "" | |||
1105 | "Le seuil est <rta>,<pl>%% ou <rta> est le temps moyen pour l'aller retour " | 823 | "Le seuil est <rta>,<pl>%% ou <rta> est le temps moyen pour l'aller retour " |
1106 | "(ms)" | 824 | "(ms)" |
1107 | 825 | ||
1108 | #: plugins/check_fping.c:512 | ||
1109 | msgid "" | 826 | msgid "" |
1110 | "which triggers a WARNING or CRITICAL state, and <pl> is the percentage of" | 827 | "which triggers a WARNING or CRITICAL state, and <pl> is the percentage of" |
1111 | msgstr "" | 828 | msgstr "" |
1112 | "qui déclenche résultat AVERTISSEMENT ou CRITIQUE, et <pl> est le pourcentage " | 829 | "qui déclenche résultat AVERTISSEMENT ou CRITIQUE, et <pl> est le pourcentage " |
1113 | "de" | 830 | "de" |
1114 | 831 | ||
1115 | #: plugins/check_fping.c:513 | ||
1116 | msgid "packet loss to trigger an alarm state." | 832 | msgid "packet loss to trigger an alarm state." |
1117 | msgstr "paquets perdu pour déclencher une alarme." | 833 | msgstr "paquets perdu pour déclencher une alarme." |
1118 | 834 | ||
1119 | #: plugins/check_fping.c:516 | ||
1120 | msgid "IPv4 is used by default. Specify -6 to use IPv6." | 835 | msgid "IPv4 is used by default. Specify -6 to use IPv6." |
1121 | msgstr "" | 836 | msgstr "" |
1122 | 837 | ||
1123 | #: plugins/check_game.c:111 | ||
1124 | #, c-format | 838 | #, c-format |
1125 | msgid "CRITICAL - Host type parameter incorrect!\n" | 839 | msgid "CRITICAL - Host type parameter incorrect!\n" |
1126 | msgstr "CRITIQUE - Argument de type hôte incorrect!\n" | 840 | msgstr "CRITIQUE - Argument de type hôte incorrect!\n" |
1127 | 841 | ||
1128 | #: plugins/check_game.c:126 | ||
1129 | #, c-format | 842 | #, c-format |
1130 | msgid "CRITICAL - Host not found\n" | 843 | msgid "CRITICAL - Host not found\n" |
1131 | msgstr "CRITIQUE - Hôte non trouvé\n" | 844 | msgstr "CRITIQUE - Hôte non trouvé\n" |
1132 | 845 | ||
1133 | #: plugins/check_game.c:130 | ||
1134 | #, c-format | 846 | #, c-format |
1135 | msgid "CRITICAL - Game server down or unavailable\n" | 847 | msgid "CRITICAL - Game server down or unavailable\n" |
1136 | msgstr "CRITIQUE - Serveur de jeux en panne ou non disponible\n" | 848 | msgstr "CRITIQUE - Serveur de jeux en panne ou non disponible\n" |
1137 | 849 | ||
1138 | #: plugins/check_game.c:134 | ||
1139 | #, c-format | 850 | #, c-format |
1140 | msgid "CRITICAL - Game server timeout\n" | 851 | msgid "CRITICAL - Game server timeout\n" |
1141 | msgstr "CRITIQUE - Temps d'attente pour le serveur de jeux dépassé\n" | 852 | msgstr "CRITIQUE - Temps d'attente pour le serveur de jeux dépassé\n" |
1142 | 853 | ||
1143 | #: plugins/check_game.c:297 | ||
1144 | #, c-format | 854 | #, c-format |
1145 | msgid "This plugin tests game server connections with the specified host." | 855 | msgid "This plugin tests game server connections with the specified host." |
1146 | msgstr "Le plugin teste la connexion au serveur de jeux avec l'hôte spécifié." | 856 | msgstr "Le plugin teste la connexion au serveur de jeux avec l'hôte spécifié." |
1147 | 857 | ||
1148 | #: plugins/check_game.c:307 | ||
1149 | msgid "Optional port of which to connect" | 858 | msgid "Optional port of which to connect" |
1150 | msgstr "" | 859 | msgstr "" |
1151 | 860 | ||
1152 | #: plugins/check_game.c:309 | ||
1153 | msgid "Field number in raw qstat output that contains game name" | 861 | msgid "Field number in raw qstat output that contains game name" |
1154 | msgstr "" | 862 | msgstr "" |
1155 | 863 | ||
1156 | #: plugins/check_game.c:311 | ||
1157 | msgid "Field number in raw qstat output that contains map name" | 864 | msgid "Field number in raw qstat output that contains map name" |
1158 | msgstr "" | 865 | msgstr "" |
1159 | 866 | ||
1160 | #: plugins/check_game.c:313 | ||
1161 | msgid "Field number in raw qstat output that contains ping time" | 867 | msgid "Field number in raw qstat output that contains ping time" |
1162 | msgstr "" | 868 | msgstr "" |
1163 | 869 | ||
1164 | #: plugins/check_game.c:319 | ||
1165 | msgid "" | 870 | msgid "" |
1166 | "This plugin uses the 'qstat' command, the popular game server status query " | 871 | "This plugin uses the 'qstat' command, the popular game server status query " |
1167 | "tool." | 872 | "tool." |
@@ -1169,900 +874,706 @@ msgstr "" | |||
1169 | "Ce plugin utilise la commande 'qstat', un programme répandu pour questioner " | 874 | "Ce plugin utilise la commande 'qstat', un programme répandu pour questioner " |
1170 | "les serveurs de jeux." | 875 | "les serveurs de jeux." |
1171 | 876 | ||
1172 | #: plugins/check_game.c:320 | ||
1173 | msgid "" | 877 | msgid "" |
1174 | "If you don't have the package installed, you will need to download it from" | 878 | "If you don't have the package installed, you will need to download it from" |
1175 | msgstr "" | 879 | msgstr "" |
1176 | "Si vous n'avez pas le programme installé, vous devrez le télécharger depuis" | 880 | "Si vous n'avez pas le programme installé, vous devrez le télécharger depuis" |
1177 | 881 | ||
1178 | #: plugins/check_game.c:321 | ||
1179 | #, fuzzy | 882 | #, fuzzy |
1180 | msgid "https://github.com/multiplay/qstat before you can use this plugin." | 883 | msgid "https://github.com/multiplay/qstat before you can use this plugin." |
1181 | msgstr "" | 884 | msgstr "" |
1182 | "http://www.activesw.com/people/steve/qstat.html avant de pouvoir utiliser ce " | 885 | "http://www.activesw.com/people/steve/qstat.html avant de pouvoir utiliser ce " |
1183 | "plugin." | 886 | "plugin." |
1184 | 887 | ||
1185 | #: plugins/check_hpjd.c:245 | ||
1186 | msgid "Paper Jam" | 888 | msgid "Paper Jam" |
1187 | msgstr "Bourrage Papier" | 889 | msgstr "Bourrage Papier" |
1188 | 890 | ||
1189 | #: plugins/check_hpjd.c:250 | ||
1190 | msgid "Out of Paper" | 891 | msgid "Out of Paper" |
1191 | msgstr "Plus de Papier" | 892 | msgstr "Plus de Papier" |
1192 | 893 | ||
1193 | #: plugins/check_hpjd.c:255 | ||
1194 | msgid "Printer Offline" | 894 | msgid "Printer Offline" |
1195 | msgstr "Imprimante hors ligne" | 895 | msgstr "Imprimante hors ligne" |
1196 | 896 | ||
1197 | #: plugins/check_hpjd.c:260 | ||
1198 | msgid "Peripheral Error" | 897 | msgid "Peripheral Error" |
1199 | msgstr "Erreur du périphérique" | 898 | msgstr "Erreur du périphérique" |
1200 | 899 | ||
1201 | #: plugins/check_hpjd.c:264 | ||
1202 | msgid "Intervention Required" | 900 | msgid "Intervention Required" |
1203 | msgstr "Intervention Requise" | 901 | msgstr "Intervention Requise" |
1204 | 902 | ||
1205 | #: plugins/check_hpjd.c:268 | ||
1206 | msgid "Toner Low" | 903 | msgid "Toner Low" |
1207 | msgstr "Toner Faible" | 904 | msgstr "Toner Faible" |
1208 | 905 | ||
1209 | #: plugins/check_hpjd.c:272 | ||
1210 | msgid "Insufficient Memory" | 906 | msgid "Insufficient Memory" |
1211 | msgstr "Mémoire Insuffisante" | 907 | msgstr "Mémoire Insuffisante" |
1212 | 908 | ||
1213 | #: plugins/check_hpjd.c:276 | ||
1214 | msgid "A Door is Open" | 909 | msgid "A Door is Open" |
1215 | msgstr "Une porte est ouverte" | 910 | msgstr "Une porte est ouverte" |
1216 | 911 | ||
1217 | #: plugins/check_hpjd.c:280 | ||
1218 | msgid "Output Tray is Full" | 912 | msgid "Output Tray is Full" |
1219 | msgstr "Le bac de sortie est plein" | 913 | msgstr "Le bac de sortie est plein" |
1220 | 914 | ||
1221 | #: plugins/check_hpjd.c:284 | ||
1222 | msgid "Data too Slow for Engine" | 915 | msgid "Data too Slow for Engine" |
1223 | msgstr "Le données arrivent trop lentement pour l'imprimante" | 916 | msgstr "Le données arrivent trop lentement pour l'imprimante" |
1224 | 917 | ||
1225 | #: plugins/check_hpjd.c:288 | ||
1226 | msgid "Unknown Paper Error" | 918 | msgid "Unknown Paper Error" |
1227 | msgstr "Erreur de papier inconnue" | 919 | msgstr "Erreur de papier inconnue" |
1228 | 920 | ||
1229 | #: plugins/check_hpjd.c:293 | ||
1230 | #, c-format | 921 | #, c-format |
1231 | msgid "Printer ok - (%s)\n" | 922 | msgid "Printer ok - (%s)\n" |
1232 | msgstr "Imprimante ok - (%s)\n" | 923 | msgstr "Imprimante ok - (%s)\n" |
1233 | 924 | ||
1234 | #: plugins/check_hpjd.c:353 | ||
1235 | #, fuzzy | 925 | #, fuzzy |
1236 | msgid "Port must be a positive short integer" | 926 | msgid "Port must be a positive short integer" |
1237 | msgstr "Le numéro du port doit être un entier positif" | 927 | msgstr "Le numéro du port doit être un entier positif" |
1238 | 928 | ||
1239 | #: plugins/check_hpjd.c:411 | ||
1240 | msgid "This plugin tests the STATUS of an HP printer with a JetDirect card." | 929 | msgid "This plugin tests the STATUS of an HP printer with a JetDirect card." |
1241 | msgstr "Ce plugin teste l'état d'une imprimante HP avec une carte JetDirect." | 930 | msgstr "Ce plugin teste l'état d'une imprimante HP avec une carte JetDirect." |
1242 | 931 | ||
1243 | #: plugins/check_hpjd.c:412 | ||
1244 | msgid "Net-snmp must be installed on the computer running the plugin." | 932 | msgid "Net-snmp must be installed on the computer running the plugin." |
1245 | msgstr "Net-snmp doit être installé sur l'ordinateur qui exécute le plugin." | 933 | msgstr "Net-snmp doit être installé sur l'ordinateur qui exécute le plugin." |
1246 | 934 | ||
1247 | #: plugins/check_hpjd.c:422 | ||
1248 | msgid "The SNMP community name " | 935 | msgid "The SNMP community name " |
1249 | msgstr "Le nom de la communauté SNMP " | 936 | msgstr "Le nom de la communauté SNMP " |
1250 | 937 | ||
1251 | #: plugins/check_hpjd.c:423 plugins/check_hpjd.c:427 | ||
1252 | #, c-format | 938 | #, c-format |
1253 | msgid "(default=%s)" | 939 | msgid "(default=%s)" |
1254 | msgstr "(défaut=%s)" | 940 | msgstr "(défaut=%s)" |
1255 | 941 | ||
1256 | #: plugins/check_hpjd.c:426 | ||
1257 | #, fuzzy | 942 | #, fuzzy |
1258 | msgid "Specify the port to check " | 943 | msgid "Specify the port to check " |
1259 | msgstr "Nom de l'hôte à vérifier" | 944 | msgstr "Nom de l'hôte à vérifier" |
1260 | 945 | ||
1261 | #: plugins/check_hpjd.c:430 | ||
1262 | #, fuzzy | 946 | #, fuzzy |
1263 | msgid "Disable paper check " | 947 | msgid "Disable paper check " |
1264 | msgstr "Variable a vérifier" | 948 | msgstr "Variable a vérifier" |
1265 | 949 | ||
1266 | #: plugins/check_http.c:196 | ||
1267 | msgid "file does not exist or is not readable" | 950 | msgid "file does not exist or is not readable" |
1268 | msgstr "" | 951 | msgstr "" |
1269 | 952 | ||
1270 | #: plugins/check_http.c:324 plugins/check_http.c:329 plugins/check_http.c:335 | ||
1271 | #: plugins/check_smtp.c:621 plugins/check_tcp.c:590 plugins/check_tcp.c:595 | ||
1272 | #: plugins/check_tcp.c:601 | ||
1273 | msgid "Invalid certificate expiration period" | 953 | msgid "Invalid certificate expiration period" |
1274 | msgstr "Période d'expiration du certificat invalide" | 954 | msgstr "Période d'expiration du certificat invalide" |
1275 | 955 | ||
1276 | #: plugins/check_http.c:378 | ||
1277 | msgid "" | 956 | msgid "" |
1278 | "Invalid option - Valid SSL/TLS versions: 2, 3, 1, 1.1, 1.2 (with optional " | 957 | "Invalid option - Valid SSL/TLS versions: 2, 3, 1, 1.1, 1.2 (with optional " |
1279 | "'+' suffix)" | 958 | "'+' suffix)" |
1280 | msgstr "" | 959 | msgstr "" |
1281 | 960 | ||
1282 | #: plugins/check_http.c:384 plugins/check_tcp.c:614 plugins/check_tcp.c:623 | ||
1283 | msgid "Invalid option - SSL is not available" | 961 | msgid "Invalid option - SSL is not available" |
1284 | msgstr "Option invalide - SSL n'est pas disponible" | 962 | msgstr "Option invalide - SSL n'est pas disponible" |
1285 | 963 | ||
1286 | #: plugins/check_http.c:392 | ||
1287 | msgid "Invalid max_redirs count" | 964 | msgid "Invalid max_redirs count" |
1288 | msgstr "" | 965 | msgstr "" |
1289 | 966 | ||
1290 | #: plugins/check_http.c:412 | ||
1291 | msgid "Invalid onredirect option" | 967 | msgid "Invalid onredirect option" |
1292 | msgstr "" | 968 | msgstr "" |
1293 | 969 | ||
1294 | #: plugins/check_http.c:414 | ||
1295 | #, c-format | 970 | #, c-format |
1296 | msgid "option f:%d \n" | 971 | msgid "option f:%d \n" |
1297 | msgstr "option f:%d \n" | 972 | msgstr "option f:%d \n" |
1298 | 973 | ||
1299 | #: plugins/check_http.c:449 | ||
1300 | msgid "Invalid port number" | 974 | msgid "Invalid port number" |
1301 | msgstr "Numéro de port invalide" | 975 | msgstr "Numéro de port invalide" |
1302 | 976 | ||
1303 | #: plugins/check_http.c:508 | ||
1304 | #, c-format | 977 | #, c-format |
1305 | msgid "Could Not Compile Regular Expression: %s" | 978 | msgid "Could Not Compile Regular Expression: %s" |
1306 | msgstr "Impossible de compiler l'expression rationnelle: %s" | 979 | msgstr "Impossible de compiler l'expression rationnelle: %s" |
1307 | 980 | ||
1308 | #: plugins/check_http.c:522 plugins/check_ntp.c:732 | ||
1309 | #: plugins/check_ntp_peer.c:513 plugins/check_ntp_time.c:517 | ||
1310 | #: plugins/check_smtp.c:661 plugins/check_ssh.c:151 plugins/check_tcp.c:491 | ||
1311 | msgid "IPv6 support not available" | 981 | msgid "IPv6 support not available" |
1312 | msgstr "Support IPv6 non disponible" | 982 | msgstr "Support IPv6 non disponible" |
1313 | 983 | ||
1314 | #: plugins/check_http.c:590 plugins/check_ping.c:428 | ||
1315 | msgid "You must specify a server address or host name" | 984 | msgid "You must specify a server address or host name" |
1316 | msgstr "Vous devez spécifier une adresse ou un nom d'hôte" | 985 | msgstr "Vous devez spécifier une adresse ou un nom d'hôte" |
1317 | 986 | ||
1318 | #: plugins/check_http.c:607 | ||
1319 | msgid "" | 987 | msgid "" |
1320 | "If you use a client certificate you must also specify a private key file" | 988 | "If you use a client certificate you must also specify a private key file" |
1321 | msgstr "" | 989 | msgstr "" |
1322 | 990 | ||
1323 | #: plugins/check_http.c:734 plugins/check_http.c:902 | ||
1324 | msgid "HTTP UNKNOWN - Memory allocation error\n" | 991 | msgid "HTTP UNKNOWN - Memory allocation error\n" |
1325 | msgstr "HTTP INCONNU - Impossible d'allouer la mémoire\n" | 992 | msgstr "HTTP INCONNU - Impossible d'allouer la mémoire\n" |
1326 | 993 | ||
1327 | #: plugins/check_http.c:806 | ||
1328 | #, c-format | 994 | #, c-format |
1329 | msgid "%sServer date unknown, " | 995 | msgid "%sServer date unknown, " |
1330 | msgstr "%sDate du serveur inconnue, " | 996 | msgstr "%sDate du serveur inconnue, " |
1331 | 997 | ||
1332 | #: plugins/check_http.c:809 | ||
1333 | #, c-format | 998 | #, c-format |
1334 | msgid "%sDocument modification date unknown, " | 999 | msgid "%sDocument modification date unknown, " |
1335 | msgstr "%sDate de modification du document inconnue, " | 1000 | msgstr "%sDate de modification du document inconnue, " |
1336 | 1001 | ||
1337 | #: plugins/check_http.c:816 | ||
1338 | #, c-format | 1002 | #, c-format |
1339 | msgid "%sServer date \"%100s\" unparsable, " | 1003 | msgid "%sServer date \"%100s\" unparsable, " |
1340 | msgstr "%sDate du serveur \"%100s\" illisible, " | 1004 | msgstr "%sDate du serveur \"%100s\" illisible, " |
1341 | 1005 | ||
1342 | #: plugins/check_http.c:819 | ||
1343 | #, c-format | 1006 | #, c-format |
1344 | msgid "%sDocument date \"%100s\" unparsable, " | 1007 | msgid "%sDocument date \"%100s\" unparsable, " |
1345 | msgstr "%sDate du document \"%100s\" illisible, " | 1008 | msgstr "%sDate du document \"%100s\" illisible, " |
1346 | 1009 | ||
1347 | #: plugins/check_http.c:822 | ||
1348 | #, c-format | 1010 | #, c-format |
1349 | msgid "%sDocument is %d seconds in the future, " | 1011 | msgid "%sDocument is %d seconds in the future, " |
1350 | msgstr "%sLa date du document est %d secondes dans le futur, " | 1012 | msgstr "%sLa date du document est %d secondes dans le futur, " |
1351 | 1013 | ||
1352 | #: plugins/check_http.c:827 | ||
1353 | #, c-format | 1014 | #, c-format |
1354 | msgid "%sLast modified %.1f days ago, " | 1015 | msgid "%sLast modified %.1f days ago, " |
1355 | msgstr "%sDernière modification %.1f jours auparavant, " | 1016 | msgstr "%sDernière modification %.1f jours auparavant, " |
1356 | 1017 | ||
1357 | #: plugins/check_http.c:830 | ||
1358 | #, c-format | 1018 | #, c-format |
1359 | msgid "%sLast modified %d:%02d:%02d ago, " | 1019 | msgid "%sLast modified %d:%02d:%02d ago, " |
1360 | msgstr "%sDernière modification %d:%02d:%02d auparavant, " | 1020 | msgstr "%sDernière modification %d:%02d:%02d auparavant, " |
1361 | 1021 | ||
1362 | #: plugins/check_http.c:944 | ||
1363 | msgid "HTTP CRITICAL - Unable to open TCP socket\n" | 1022 | msgid "HTTP CRITICAL - Unable to open TCP socket\n" |
1364 | msgstr "HTTP CRITIQUE - Impossible d'ouvrir un socket TCP\n" | 1023 | msgstr "HTTP CRITIQUE - Impossible d'ouvrir un socket TCP\n" |
1365 | 1024 | ||
1366 | #: plugins/check_http.c:1104 | ||
1367 | #, fuzzy | 1025 | #, fuzzy |
1368 | msgid "HTTP UNKNOWN - Could not allocate memory for full_page\n" | 1026 | msgid "HTTP UNKNOWN - Could not allocate memory for full_page\n" |
1369 | msgstr "HTTP INCONNU - Impossible d'allouer une adresse\n" | 1027 | msgstr "HTTP INCONNU - Impossible d'allouer une adresse\n" |
1370 | 1028 | ||
1371 | #: plugins/check_http.c:1121 | ||
1372 | msgid "HTTP CRITICAL - Error on receive\n" | 1029 | msgid "HTTP CRITICAL - Error on receive\n" |
1373 | msgstr "HTTP CRITIQUE - Erreur dans la réception\n" | 1030 | msgstr "HTTP CRITIQUE - Erreur dans la réception\n" |
1374 | 1031 | ||
1375 | #: plugins/check_http.c:1126 | ||
1376 | msgid "HTTP CRITICAL - No data received from host\n" | 1032 | msgid "HTTP CRITICAL - No data received from host\n" |
1377 | msgstr "HTTP CRITIQUE - Pas de données reçues de l'hôte\n" | 1033 | msgstr "HTTP CRITIQUE - Pas de données reçues de l'hôte\n" |
1378 | 1034 | ||
1379 | #: plugins/check_http.c:1177 | ||
1380 | #, c-format | 1035 | #, c-format |
1381 | msgid "Invalid HTTP response received from host: %s\n" | 1036 | msgid "Invalid HTTP response received from host: %s\n" |
1382 | msgstr "Réponse HTTP reçue de l'hôte invalide: %s\n" | 1037 | msgstr "Réponse HTTP reçue de l'hôte invalide: %s\n" |
1383 | 1038 | ||
1384 | #: plugins/check_http.c:1181 | ||
1385 | #, c-format | 1039 | #, c-format |
1386 | msgid "Invalid HTTP response received from host on port %d: %s\n" | 1040 | msgid "Invalid HTTP response received from host on port %d: %s\n" |
1387 | msgstr "Réponse HTTP reçue de l'hôte sur le port %d invalide: %s\n" | 1041 | msgstr "Réponse HTTP reçue de l'hôte sur le port %d invalide: %s\n" |
1388 | 1042 | ||
1389 | #: plugins/check_http.c:1184 plugins/check_http.c:1377 | ||
1390 | #, c-format | 1043 | #, c-format |
1391 | msgid "" | 1044 | msgid "" |
1392 | "%s\n" | 1045 | "%s\n" |
1393 | "%s" | 1046 | "%s" |
1394 | msgstr "" | 1047 | msgstr "" |
1395 | 1048 | ||
1396 | #: plugins/check_http.c:1192 | ||
1397 | #, c-format | 1049 | #, c-format |
1398 | msgid "Status line output matched \"%s\" - " | 1050 | msgid "Status line output matched \"%s\" - " |
1399 | msgstr "La ligne d'état correspond à \"%s\" - " | 1051 | msgstr "La ligne d'état correspond à \"%s\" - " |
1400 | 1052 | ||
1401 | #: plugins/check_http.c:1203 | ||
1402 | #, c-format | 1053 | #, c-format |
1403 | msgid "HTTP CRITICAL: Invalid Status Line (%s)\n" | 1054 | msgid "HTTP CRITICAL: Invalid Status Line (%s)\n" |
1404 | msgstr "HTTP CRITIQUE: Ligne d'état non valide (%s)\n" | 1055 | msgstr "HTTP CRITIQUE: Ligne d'état non valide (%s)\n" |
1405 | 1056 | ||
1406 | #: plugins/check_http.c:1210 | ||
1407 | #, c-format | 1057 | #, c-format |
1408 | msgid "HTTP CRITICAL: Invalid Status (%s)\n" | 1058 | msgid "HTTP CRITICAL: Invalid Status (%s)\n" |
1409 | msgstr "HTTP CRITIQUE: Etat Invalide (%s)\n" | 1059 | msgstr "HTTP CRITIQUE: Etat Invalide (%s)\n" |
1410 | 1060 | ||
1411 | #: plugins/check_http.c:1214 plugins/check_http.c:1219 | ||
1412 | #: plugins/check_http.c:1229 plugins/check_http.c:1233 | ||
1413 | #, c-format | 1061 | #, c-format |
1414 | msgid "%s - " | 1062 | msgid "%s - " |
1415 | msgstr "" | 1063 | msgstr "" |
1416 | 1064 | ||
1417 | #: plugins/check_http.c:1261 | ||
1418 | #, fuzzy, c-format | 1065 | #, fuzzy, c-format |
1419 | msgid "%sheader '%s' not found on '%s://%s:%d%s', " | 1066 | msgid "%sheader '%s' not found on '%s://%s:%d%s', " |
1420 | msgstr "%schaîne non trouvée, " | 1067 | msgstr "%schaîne non trouvée, " |
1421 | 1068 | ||
1422 | #: plugins/check_http.c:1304 | ||
1423 | #, fuzzy, c-format | 1069 | #, fuzzy, c-format |
1424 | msgid "%sstring '%s' not found on '%s://%s:%d%s', " | 1070 | msgid "%sstring '%s' not found on '%s://%s:%d%s', " |
1425 | msgstr "%schaîne non trouvée, " | 1071 | msgstr "%schaîne non trouvée, " |
1426 | 1072 | ||
1427 | #: plugins/check_http.c:1318 | ||
1428 | #, c-format | 1073 | #, c-format |
1429 | msgid "%spattern not found, " | 1074 | msgid "%spattern not found, " |
1430 | msgstr "%sexpression non trouvée, " | 1075 | msgstr "%sexpression non trouvée, " |
1431 | 1076 | ||
1432 | #: plugins/check_http.c:1320 | ||
1433 | #, c-format | 1077 | #, c-format |
1434 | msgid "%spattern found, " | 1078 | msgid "%spattern found, " |
1435 | msgstr "%sexpression trouvée, " | 1079 | msgstr "%sexpression trouvée, " |
1436 | 1080 | ||
1437 | #: plugins/check_http.c:1326 | ||
1438 | #, c-format | 1081 | #, c-format |
1439 | msgid "%sExecute Error: %s, " | 1082 | msgid "%sExecute Error: %s, " |
1440 | msgstr "%sErreur d'exécution: %s, " | 1083 | msgstr "%sErreur d'exécution: %s, " |
1441 | 1084 | ||
1442 | #: plugins/check_http.c:1342 | ||
1443 | #, c-format | 1085 | #, c-format |
1444 | msgid "%spage size %d too large, " | 1086 | msgid "%spage size %d too large, " |
1445 | msgstr "%sla taille de la page est trop grande (%d), " | 1087 | msgstr "%sla taille de la page est trop grande (%d), " |
1446 | 1088 | ||
1447 | #: plugins/check_http.c:1345 | ||
1448 | #, c-format | 1089 | #, c-format |
1449 | msgid "%spage size %d too small, " | 1090 | msgid "%spage size %d too small, " |
1450 | msgstr "%sla taille de la page est trop petite (%d), " | 1091 | msgstr "%sla taille de la page est trop petite (%d), " |
1451 | 1092 | ||
1452 | #: plugins/check_http.c:1358 | ||
1453 | #, fuzzy, c-format | 1093 | #, fuzzy, c-format |
1454 | msgid "%s - %d bytes in %.3f second response time %s|%s %s %s %s %s %s %s" | 1094 | msgid "%s - %d bytes in %.3f second response time %s|%s %s %s %s %s %s %s" |
1455 | msgstr "%s - %d octets en %.3f secondes de temps de réponse %s|%s %s" | 1095 | msgstr "%s - %d octets en %.3f secondes de temps de réponse %s|%s %s" |
1456 | 1096 | ||
1457 | #: plugins/check_http.c:1370 | ||
1458 | #, c-format | 1097 | #, c-format |
1459 | msgid "%s - %d bytes in %.3f second response time %s|%s %s" | 1098 | msgid "%s - %d bytes in %.3f second response time %s|%s %s" |
1460 | msgstr "%s - %d octets en %.3f secondes de temps de réponse %s|%s %s" | 1099 | msgstr "%s - %d octets en %.3f secondes de temps de réponse %s|%s %s" |
1461 | 1100 | ||
1462 | #: plugins/check_http.c:1500 | ||
1463 | msgid "HTTP UNKNOWN - Could not allocate addr\n" | 1101 | msgid "HTTP UNKNOWN - Could not allocate addr\n" |
1464 | msgstr "HTTP INCONNU - Impossible d'allouer une adresse\n" | 1102 | msgstr "HTTP INCONNU - Impossible d'allouer une adresse\n" |
1465 | 1103 | ||
1466 | #: plugins/check_http.c:1505 plugins/check_http.c:1536 | ||
1467 | msgid "HTTP UNKNOWN - Could not allocate URL\n" | 1104 | msgid "HTTP UNKNOWN - Could not allocate URL\n" |
1468 | msgstr "HTTP INCONNU - Impossible d'allouer l'URL\n" | 1105 | msgstr "HTTP INCONNU - Impossible d'allouer l'URL\n" |
1469 | 1106 | ||
1470 | #: plugins/check_http.c:1514 | ||
1471 | #, c-format | 1107 | #, c-format |
1472 | msgid "HTTP UNKNOWN - Could not find redirect location - %s%s\n" | 1108 | msgid "HTTP UNKNOWN - Could not find redirect location - %s%s\n" |
1473 | msgstr "" | 1109 | msgstr "" |
1474 | "HTTP INCONNU - Impossible de trouver l'endroit de la redirection - %s%s\n" | 1110 | "HTTP INCONNU - Impossible de trouver l'endroit de la redirection - %s%s\n" |
1475 | 1111 | ||
1476 | #: plugins/check_http.c:1529 | ||
1477 | #, c-format | 1112 | #, c-format |
1478 | msgid "HTTP UNKNOWN - Empty redirect location%s\n" | 1113 | msgid "HTTP UNKNOWN - Empty redirect location%s\n" |
1479 | msgstr "HTTP INCONNU - endroit de redirection vide%s\n" | 1114 | msgstr "HTTP INCONNU - endroit de redirection vide%s\n" |
1480 | 1115 | ||
1481 | #: plugins/check_http.c:1591 | ||
1482 | #, c-format | 1116 | #, c-format |
1483 | msgid "HTTP UNKNOWN - Could not parse redirect location - %s%s\n" | 1117 | msgid "HTTP UNKNOWN - Could not parse redirect location - %s%s\n" |
1484 | msgstr "" | 1118 | msgstr "" |
1485 | "HTTP INCONNU - Impossible de définir l'endroit de la redirection - %s%s\n" | 1119 | "HTTP INCONNU - Impossible de définir l'endroit de la redirection - %s%s\n" |
1486 | 1120 | ||
1487 | #: plugins/check_http.c:1601 | ||
1488 | #, c-format | 1121 | #, c-format |
1489 | msgid "HTTP WARNING - maximum redirection depth %d exceeded - %s://%s:%d%s%s\n" | 1122 | msgid "HTTP WARNING - maximum redirection depth %d exceeded - %s://%s:%d%s%s\n" |
1490 | msgstr "" | 1123 | msgstr "" |
1491 | "HTTP AVERTISSEMENT - le niveau maximum de redirection %d à été dépassé - " | 1124 | "HTTP AVERTISSEMENT - le niveau maximum de redirection %d à été dépassé - " |
1492 | "%s://%s:%d%s%s\n" | 1125 | "%s://%s:%d%s%s\n" |
1493 | 1126 | ||
1494 | #: plugins/check_http.c:1609 | ||
1495 | #, fuzzy, c-format | 1127 | #, fuzzy, c-format |
1496 | msgid "HTTP CRITICAL - redirection creates an infinite loop - %s://%s:%d%s%s\n" | 1128 | msgid "HTTP CRITICAL - redirection creates an infinite loop - %s://%s:%d%s%s\n" |
1497 | msgstr "" | 1129 | msgstr "" |
1498 | "HTTP AVERTISSEMENT - la redirection crée une boucle infinie - %s://%s:" | 1130 | "HTTP AVERTISSEMENT - la redirection crée une boucle infinie - %s://%s:" |
1499 | "%d%s%s\n" | 1131 | "%d%s%s\n" |
1500 | 1132 | ||
1501 | #: plugins/check_http.c:1630 | ||
1502 | #, c-format | 1133 | #, c-format |
1503 | msgid "HTTP UNKNOWN - Redirection to port above %d - %s://%s:%d%s%s\n" | 1134 | msgid "HTTP UNKNOWN - Redirection to port above %d - %s://%s:%d%s%s\n" |
1504 | msgstr "HTTP INCONNU - Redirection à un port supérieur à %d - %s://%s:%d%s%s\n" | 1135 | msgstr "HTTP INCONNU - Redirection à un port supérieur à %d - %s://%s:%d%s%s\n" |
1505 | 1136 | ||
1506 | #: plugins/check_http.c:1638 | ||
1507 | #, c-format | 1137 | #, c-format |
1508 | msgid "Redirection to %s://%s:%d%s\n" | 1138 | msgid "Redirection to %s://%s:%d%s\n" |
1509 | msgstr "Redirection vers %s://%s:%d%s\n" | 1139 | msgstr "Redirection vers %s://%s:%d%s\n" |
1510 | 1140 | ||
1511 | #: plugins/check_http.c:1713 | ||
1512 | msgid "This plugin tests the HTTP service on the specified host. It can test" | 1141 | msgid "This plugin tests the HTTP service on the specified host. It can test" |
1513 | msgstr "" | 1142 | msgstr "" |
1514 | "Ce plugin teste le service HTTP sur l'hôte spécifié. Il peut tester les" | 1143 | "Ce plugin teste le service HTTP sur l'hôte spécifié. Il peut tester les" |
1515 | 1144 | ||
1516 | #: plugins/check_http.c:1714 | ||
1517 | msgid "normal (http) and secure (https) servers, follow redirects, search for" | 1145 | msgid "normal (http) and secure (https) servers, follow redirects, search for" |
1518 | msgstr "" | 1146 | msgstr "" |
1519 | "serveurs normaux (http) et sécurisés (https), suivre les redirections, " | 1147 | "serveurs normaux (http) et sécurisés (https), suivre les redirections, " |
1520 | "rechercher des" | 1148 | "rechercher des" |
1521 | 1149 | ||
1522 | #: plugins/check_http.c:1715 | ||
1523 | msgid "strings and regular expressions, check connection times, and report on" | 1150 | msgid "strings and regular expressions, check connection times, and report on" |
1524 | msgstr "" | 1151 | msgstr "" |
1525 | "chaînes de caractères et expressions rationnelles, vérifier le temps de " | 1152 | "chaînes de caractères et expressions rationnelles, vérifier le temps de " |
1526 | "réponse" | 1153 | "réponse" |
1527 | 1154 | ||
1528 | #: plugins/check_http.c:1716 | ||
1529 | msgid "certificate expiration times." | 1155 | msgid "certificate expiration times." |
1530 | msgstr "et rapporter la date d'expiration du certificat." | 1156 | msgstr "et rapporter la date d'expiration du certificat." |
1531 | 1157 | ||
1532 | #: plugins/check_http.c:1723 | ||
1533 | #, c-format | 1158 | #, c-format |
1534 | msgid "In the first form, make an HTTP request." | 1159 | msgid "In the first form, make an HTTP request." |
1535 | msgstr "" | 1160 | msgstr "" |
1536 | 1161 | ||
1537 | #: plugins/check_http.c:1724 | ||
1538 | #, c-format | 1162 | #, c-format |
1539 | msgid "" | 1163 | msgid "" |
1540 | "In the second form, connect to the server and check the TLS certificate." | 1164 | "In the second form, connect to the server and check the TLS certificate." |
1541 | msgstr "" | 1165 | msgstr "" |
1542 | 1166 | ||
1543 | #: plugins/check_http.c:1726 | ||
1544 | #, c-format | 1167 | #, c-format |
1545 | msgid "NOTE: One or both of -H and -I must be specified" | 1168 | msgid "NOTE: One or both of -H and -I must be specified" |
1546 | msgstr "NOTE: les paramètres -H et -I peuvent être spécifiés" | 1169 | msgstr "NOTE: les paramètres -H et -I peuvent être spécifiés" |
1547 | 1170 | ||
1548 | #: plugins/check_http.c:1734 | ||
1549 | msgid "Host name argument for servers using host headers (virtual host)" | 1171 | msgid "Host name argument for servers using host headers (virtual host)" |
1550 | msgstr "" | 1172 | msgstr "" |
1551 | 1173 | ||
1552 | #: plugins/check_http.c:1735 | ||
1553 | msgid "Append a port to include it in the header (eg: example.com:5000)" | 1174 | msgid "Append a port to include it in the header (eg: example.com:5000)" |
1554 | msgstr "" | 1175 | msgstr "" |
1555 | 1176 | ||
1556 | #: plugins/check_http.c:1737 | ||
1557 | msgid "" | 1177 | msgid "" |
1558 | "IP address or name (use numeric address if possible to bypass DNS lookup)." | 1178 | "IP address or name (use numeric address if possible to bypass DNS lookup)." |
1559 | msgstr "" | 1179 | msgstr "" |
1560 | 1180 | ||
1561 | #: plugins/check_http.c:1739 | ||
1562 | msgid "Port number (default: " | 1181 | msgid "Port number (default: " |
1563 | msgstr "Numéro du port (défaut: " | 1182 | msgstr "Numéro du port (défaut: " |
1564 | 1183 | ||
1565 | #: plugins/check_http.c:1746 | ||
1566 | msgid "" | 1184 | msgid "" |
1567 | "Connect via SSL. Port defaults to 443. VERSION is optional, and prevents" | 1185 | "Connect via SSL. Port defaults to 443. VERSION is optional, and prevents" |
1568 | msgstr "" | 1186 | msgstr "" |
1569 | 1187 | ||
1570 | #: plugins/check_http.c:1747 | ||
1571 | msgid "auto-negotiation (2 = SSLv2, 3 = SSLv3, 1 = TLSv1, 1.1 = TLSv1.1," | 1188 | msgid "auto-negotiation (2 = SSLv2, 3 = SSLv3, 1 = TLSv1, 1.1 = TLSv1.1," |
1572 | msgstr "" | 1189 | msgstr "" |
1573 | 1190 | ||
1574 | #: plugins/check_http.c:1748 | ||
1575 | msgid "1.2 = TLSv1.2). With a '+' suffix, newer versions are also accepted." | 1191 | msgid "1.2 = TLSv1.2). With a '+' suffix, newer versions are also accepted." |
1576 | msgstr "" | 1192 | msgstr "" |
1577 | 1193 | ||
1578 | #: plugins/check_http.c:1750 plugins/check_smtp.c:857 | ||
1579 | msgid "Enable SSL/TLS hostname extension support (SNI)" | 1194 | msgid "Enable SSL/TLS hostname extension support (SNI)" |
1580 | msgstr "" | 1195 | msgstr "" |
1581 | 1196 | ||
1582 | #: plugins/check_http.c:1752 | ||
1583 | msgid "" | 1197 | msgid "" |
1584 | "Minimum number of days a certificate has to be valid. Port defaults to 443" | 1198 | "Minimum number of days a certificate has to be valid. Port defaults to 443" |
1585 | msgstr "" | 1199 | msgstr "" |
1586 | "Nombre de jours minimum pour que le certificat soit valide. Port par défaut " | 1200 | "Nombre de jours minimum pour que le certificat soit valide. Port par défaut " |
1587 | "443" | 1201 | "443" |
1588 | 1202 | ||
1589 | #: plugins/check_http.c:1753 | ||
1590 | msgid "" | 1203 | msgid "" |
1591 | "(when this option is used the URL is not checked by default. You can use" | 1204 | "(when this option is used the URL is not checked by default. You can use" |
1592 | msgstr "" | 1205 | msgstr "" |
1593 | 1206 | ||
1594 | #: plugins/check_http.c:1754 | ||
1595 | msgid " --continue-after-certificate to override this behavior)" | 1207 | msgid " --continue-after-certificate to override this behavior)" |
1596 | msgstr "" | 1208 | msgstr "" |
1597 | 1209 | ||
1598 | #: plugins/check_http.c:1756 | ||
1599 | msgid "" | 1210 | msgid "" |
1600 | "Allows the HTTP check to continue after performing the certificate check." | 1211 | "Allows the HTTP check to continue after performing the certificate check." |
1601 | msgstr "" | 1212 | msgstr "" |
1602 | 1213 | ||
1603 | #: plugins/check_http.c:1757 | ||
1604 | msgid "Does nothing unless -C is used." | 1214 | msgid "Does nothing unless -C is used." |
1605 | msgstr "" | 1215 | msgstr "" |
1606 | 1216 | ||
1607 | #: plugins/check_http.c:1759 | ||
1608 | msgid "Name of file that contains the client certificate (PEM format)" | 1217 | msgid "Name of file that contains the client certificate (PEM format)" |
1609 | msgstr "" | 1218 | msgstr "" |
1610 | 1219 | ||
1611 | #: plugins/check_http.c:1760 | ||
1612 | msgid "to be used in establishing the SSL session" | 1220 | msgid "to be used in establishing the SSL session" |
1613 | msgstr "" | 1221 | msgstr "" |
1614 | 1222 | ||
1615 | #: plugins/check_http.c:1762 | ||
1616 | msgid "Name of file containing the private key (PEM format)" | 1223 | msgid "Name of file containing the private key (PEM format)" |
1617 | msgstr "" | 1224 | msgstr "" |
1618 | 1225 | ||
1619 | #: plugins/check_http.c:1763 | ||
1620 | msgid "matching the client certificate" | 1226 | msgid "matching the client certificate" |
1621 | msgstr "" | 1227 | msgstr "" |
1622 | 1228 | ||
1623 | #: plugins/check_http.c:1767 | ||
1624 | msgid "Comma-delimited list of strings, at least one of them is expected in" | 1229 | msgid "Comma-delimited list of strings, at least one of them is expected in" |
1625 | msgstr "" | 1230 | msgstr "" |
1626 | "Liste the chaines de charactères séparées par des virgules, au moins une " | 1231 | "Liste the chaines de charactères séparées par des virgules, au moins une " |
1627 | "d'elles" | 1232 | "d'elles" |
1628 | 1233 | ||
1629 | #: plugins/check_http.c:1768 | ||
1630 | msgid "the first (status) line of the server response (default: " | 1234 | msgid "the first (status) line of the server response (default: " |
1631 | msgstr "est attendue dans la première ligne de réponse du serveur (défaut: " | 1235 | msgstr "est attendue dans la première ligne de réponse du serveur (défaut: " |
1632 | 1236 | ||
1633 | #: plugins/check_http.c:1770 | ||
1634 | msgid "" | 1237 | msgid "" |
1635 | "If specified skips all other status line logic (ex: 3xx, 4xx, 5xx processing)" | 1238 | "If specified skips all other status line logic (ex: 3xx, 4xx, 5xx processing)" |
1636 | msgstr "" | 1239 | msgstr "" |
1637 | "Si spécifié, surpasse toute autre logique de status (ex: 3xx, 4xx, 5xx)" | 1240 | "Si spécifié, surpasse toute autre logique de status (ex: 3xx, 4xx, 5xx)" |
1638 | 1241 | ||
1639 | #: plugins/check_http.c:1772 | ||
1640 | #, fuzzy | 1242 | #, fuzzy |
1641 | msgid "String to expect in the response headers" | 1243 | msgid "String to expect in the response headers" |
1642 | msgstr "Chaîne de caractères à attendre en réponse" | 1244 | msgstr "Chaîne de caractères à attendre en réponse" |
1643 | 1245 | ||
1644 | #: plugins/check_http.c:1774 | ||
1645 | msgid "String to expect in the content" | 1246 | msgid "String to expect in the content" |
1646 | msgstr "Chaîne de caractère attendue dans le contenu" | 1247 | msgstr "Chaîne de caractère attendue dans le contenu" |
1647 | 1248 | ||
1648 | #: plugins/check_http.c:1776 | ||
1649 | msgid "URL to GET or POST (default: /)" | 1249 | msgid "URL to GET or POST (default: /)" |
1650 | msgstr "URL pour le GET ou le POST (défaut: /)" | 1250 | msgstr "URL pour le GET ou le POST (défaut: /)" |
1651 | 1251 | ||
1652 | #: plugins/check_http.c:1778 | ||
1653 | msgid "URL encoded http POST data" | 1252 | msgid "URL encoded http POST data" |
1654 | msgstr "" | 1253 | msgstr "" |
1655 | 1254 | ||
1656 | #: plugins/check_http.c:1780 | ||
1657 | msgid "Set HTTP method." | 1255 | msgid "Set HTTP method." |
1658 | msgstr "" | 1256 | msgstr "" |
1659 | 1257 | ||
1660 | #: plugins/check_http.c:1782 | ||
1661 | msgid "Don't wait for document body: stop reading after headers." | 1258 | msgid "Don't wait for document body: stop reading after headers." |
1662 | msgstr "" | 1259 | msgstr "" |
1663 | "Ne pas attendre pour le corps du document: arrêter de lire après les entêtes" | 1260 | "Ne pas attendre pour le corps du document: arrêter de lire après les entêtes" |
1664 | 1261 | ||
1665 | #: plugins/check_http.c:1783 | ||
1666 | msgid "(Note that this still does an HTTP GET or POST, not a HEAD.)" | 1262 | msgid "(Note that this still does an HTTP GET or POST, not a HEAD.)" |
1667 | msgstr "(Veuillez noter qu'un HTTP GET ou POST est effectué, pas un HEAD.)" | 1263 | msgstr "(Veuillez noter qu'un HTTP GET ou POST est effectué, pas un HEAD.)" |
1668 | 1264 | ||
1669 | #: plugins/check_http.c:1785 | ||
1670 | msgid "Warn if document is more than SECONDS old. the number can also be of" | 1265 | msgid "Warn if document is more than SECONDS old. the number can also be of" |
1671 | msgstr "" | 1266 | msgstr "" |
1672 | 1267 | ||
1673 | #: plugins/check_http.c:1786 | ||
1674 | msgid "the form \"10m\" for minutes, \"10h\" for hours, or \"10d\" for days." | 1268 | msgid "the form \"10m\" for minutes, \"10h\" for hours, or \"10d\" for days." |
1675 | msgstr "" | 1269 | msgstr "" |
1676 | 1270 | ||
1677 | #: plugins/check_http.c:1788 | ||
1678 | msgid "specify Content-Type header media type when POSTing\n" | 1271 | msgid "specify Content-Type header media type when POSTing\n" |
1679 | msgstr "" | 1272 | msgstr "" |
1680 | 1273 | ||
1681 | #: plugins/check_http.c:1791 | ||
1682 | msgid "Allow regex to span newlines (must precede -r or -R)" | 1274 | msgid "Allow regex to span newlines (must precede -r or -R)" |
1683 | msgstr "" | 1275 | msgstr "" |
1684 | 1276 | ||
1685 | #: plugins/check_http.c:1793 | ||
1686 | msgid "Search page for regex STRING" | 1277 | msgid "Search page for regex STRING" |
1687 | msgstr "" | 1278 | msgstr "" |
1688 | 1279 | ||
1689 | #: plugins/check_http.c:1795 | ||
1690 | msgid "Search page for case-insensitive regex STRING" | 1280 | msgid "Search page for case-insensitive regex STRING" |
1691 | msgstr "" | 1281 | msgstr "" |
1692 | 1282 | ||
1693 | #: plugins/check_http.c:1797 | ||
1694 | msgid "Return CRITICAL if found, OK if not\n" | 1283 | msgid "Return CRITICAL if found, OK if not\n" |
1695 | msgstr "" | 1284 | msgstr "" |
1696 | 1285 | ||
1697 | #: plugins/check_http.c:1800 | ||
1698 | msgid "Username:password on sites with basic authentication" | 1286 | msgid "Username:password on sites with basic authentication" |
1699 | msgstr "" | 1287 | msgstr "" |
1700 | 1288 | ||
1701 | #: plugins/check_http.c:1802 | ||
1702 | msgid "Username:password on proxy-servers with basic authentication" | 1289 | msgid "Username:password on proxy-servers with basic authentication" |
1703 | msgstr "" | 1290 | msgstr "" |
1704 | 1291 | ||
1705 | #: plugins/check_http.c:1804 | ||
1706 | msgid "String to be sent in http header as \"User Agent\"" | 1292 | msgid "String to be sent in http header as \"User Agent\"" |
1707 | msgstr "" | 1293 | msgstr "" |
1708 | 1294 | ||
1709 | #: plugins/check_http.c:1806 | ||
1710 | msgid "" | 1295 | msgid "" |
1711 | "Any other tags to be sent in http header. Use multiple times for additional " | 1296 | "Any other tags to be sent in http header. Use multiple times for additional " |
1712 | "headers" | 1297 | "headers" |
1713 | msgstr "" | 1298 | msgstr "" |
1714 | 1299 | ||
1715 | #: plugins/check_http.c:1808 | ||
1716 | msgid "Print additional performance data" | 1300 | msgid "Print additional performance data" |
1717 | msgstr "" | 1301 | msgstr "" |
1718 | 1302 | ||
1719 | #: plugins/check_http.c:1810 | ||
1720 | msgid "Print body content below status line" | 1303 | msgid "Print body content below status line" |
1721 | msgstr "" | 1304 | msgstr "" |
1722 | 1305 | ||
1723 | #: plugins/check_http.c:1812 | ||
1724 | msgid "Wrap output in HTML link (obsoleted by urlize)" | 1306 | msgid "Wrap output in HTML link (obsoleted by urlize)" |
1725 | msgstr "" | 1307 | msgstr "" |
1726 | 1308 | ||
1727 | #: plugins/check_http.c:1814 | ||
1728 | msgid "How to handle redirected pages. sticky is like follow but stick to the" | 1309 | msgid "How to handle redirected pages. sticky is like follow but stick to the" |
1729 | msgstr "" | 1310 | msgstr "" |
1730 | 1311 | ||
1731 | #: plugins/check_http.c:1815 | ||
1732 | msgid "specified IP address. stickyport also ensures port stays the same." | 1312 | msgid "specified IP address. stickyport also ensures port stays the same." |
1733 | msgstr "" | 1313 | msgstr "" |
1734 | 1314 | ||
1735 | #: plugins/check_http.c:1817 | ||
1736 | #, fuzzy | 1315 | #, fuzzy |
1737 | msgid "Maximal number of redirects (default: " | 1316 | msgid "Maximal number of redirects (default: " |
1738 | msgstr "PROCS - nombre de processus (défaut)" | 1317 | msgstr "PROCS - nombre de processus (défaut)" |
1739 | 1318 | ||
1740 | #: plugins/check_http.c:1820 | ||
1741 | msgid "Minimum page size required (bytes) : Maximum page size required (bytes)" | 1319 | msgid "Minimum page size required (bytes) : Maximum page size required (bytes)" |
1742 | msgstr "" | 1320 | msgstr "" |
1743 | 1321 | ||
1744 | #: plugins/check_http.c:1829 | ||
1745 | msgid "This plugin will attempt to open an HTTP connection with the host." | 1322 | msgid "This plugin will attempt to open an HTTP connection with the host." |
1746 | msgstr "Ce plugin va essayer d'ouvrir un connexion SMTP avec l'hôte." | 1323 | msgstr "Ce plugin va essayer d'ouvrir un connexion SMTP avec l'hôte." |
1747 | 1324 | ||
1748 | #: plugins/check_http.c:1830 | ||
1749 | msgid "" | 1325 | msgid "" |
1750 | "Successful connects return STATE_OK, refusals and timeouts return " | 1326 | "Successful connects return STATE_OK, refusals and timeouts return " |
1751 | "STATE_CRITICAL" | 1327 | "STATE_CRITICAL" |
1752 | msgstr "" | 1328 | msgstr "" |
1753 | 1329 | ||
1754 | #: plugins/check_http.c:1831 | ||
1755 | msgid "" | 1330 | msgid "" |
1756 | "other errors return STATE_UNKNOWN. Successful connects, but incorrect " | 1331 | "other errors return STATE_UNKNOWN. Successful connects, but incorrect " |
1757 | "response" | 1332 | "response" |
1758 | msgstr "" | 1333 | msgstr "" |
1759 | 1334 | ||
1760 | #: plugins/check_http.c:1832 | ||
1761 | msgid "" | 1335 | msgid "" |
1762 | "messages from the host result in STATE_WARNING return values. If you are" | 1336 | "messages from the host result in STATE_WARNING return values. If you are" |
1763 | msgstr "" | 1337 | msgstr "" |
1764 | 1338 | ||
1765 | #: plugins/check_http.c:1833 | ||
1766 | msgid "" | 1339 | msgid "" |
1767 | "checking a virtual server that uses 'host headers' you must supply the FQDN" | 1340 | "checking a virtual server that uses 'host headers' you must supply the FQDN" |
1768 | msgstr "" | 1341 | msgstr "" |
1769 | 1342 | ||
1770 | #: plugins/check_http.c:1834 | ||
1771 | msgid "(fully qualified domain name) as the [host_name] argument." | 1343 | msgid "(fully qualified domain name) as the [host_name] argument." |
1772 | msgstr "" | 1344 | msgstr "" |
1773 | 1345 | ||
1774 | #: plugins/check_http.c:1838 | ||
1775 | msgid "This plugin can also check whether an SSL enabled web server is able to" | 1346 | msgid "This plugin can also check whether an SSL enabled web server is able to" |
1776 | msgstr "" | 1347 | msgstr "" |
1777 | 1348 | ||
1778 | #: plugins/check_http.c:1839 | ||
1779 | msgid "serve content (optionally within a specified time) or whether the X509 " | 1349 | msgid "serve content (optionally within a specified time) or whether the X509 " |
1780 | msgstr "" | 1350 | msgstr "" |
1781 | 1351 | ||
1782 | #: plugins/check_http.c:1840 | ||
1783 | msgid "certificate is still valid for the specified number of days." | 1352 | msgid "certificate is still valid for the specified number of days." |
1784 | msgstr "" | 1353 | msgstr "" |
1785 | 1354 | ||
1786 | #: plugins/check_http.c:1842 | ||
1787 | #, fuzzy | 1355 | #, fuzzy |
1788 | msgid "Please note that this plugin does not check if the presented server" | 1356 | msgid "Please note that this plugin does not check if the presented server" |
1789 | msgstr "Ce plugin vérifie le service ntp sur l'hôte" | 1357 | msgstr "Ce plugin vérifie le service ntp sur l'hôte" |
1790 | 1358 | ||
1791 | #: plugins/check_http.c:1843 | ||
1792 | msgid "certificate matches the hostname of the server, or if the certificate" | 1359 | msgid "certificate matches the hostname of the server, or if the certificate" |
1793 | msgstr "" | 1360 | msgstr "" |
1794 | 1361 | ||
1795 | #: plugins/check_http.c:1844 | ||
1796 | msgid "has a valid chain of trust to one of the locally installed CAs." | 1362 | msgid "has a valid chain of trust to one of the locally installed CAs." |
1797 | msgstr "" | 1363 | msgstr "" |
1798 | 1364 | ||
1799 | #: plugins/check_http.c:1848 | ||
1800 | msgid "" | 1365 | msgid "" |
1801 | "When the 'www.verisign.com' server returns its content within 5 seconds," | 1366 | "When the 'www.verisign.com' server returns its content within 5 seconds," |
1802 | msgstr "" | 1367 | msgstr "" |
1803 | 1368 | ||
1804 | #: plugins/check_http.c:1849 plugins/check_http.c:1868 | ||
1805 | msgid "" | 1369 | msgid "" |
1806 | "a STATE_OK will be returned. When the server returns its content but exceeds" | 1370 | "a STATE_OK will be returned. When the server returns its content but exceeds" |
1807 | msgstr "" | 1371 | msgstr "" |
1808 | 1372 | ||
1809 | #: plugins/check_http.c:1850 plugins/check_http.c:1869 | ||
1810 | msgid "" | 1373 | msgid "" |
1811 | "the 5-second threshold, a STATE_WARNING will be returned. When an error " | 1374 | "the 5-second threshold, a STATE_WARNING will be returned. When an error " |
1812 | "occurs," | 1375 | "occurs," |
1813 | msgstr "" | 1376 | msgstr "" |
1814 | 1377 | ||
1815 | #: plugins/check_http.c:1851 | ||
1816 | msgid "a STATE_CRITICAL will be returned." | 1378 | msgid "a STATE_CRITICAL will be returned." |
1817 | msgstr "" | 1379 | msgstr "" |
1818 | 1380 | ||
1819 | #: plugins/check_http.c:1854 | ||
1820 | msgid "" | 1381 | msgid "" |
1821 | "When the certificate of 'www.verisign.com' is valid for more than 14 days," | 1382 | "When the certificate of 'www.verisign.com' is valid for more than 14 days," |
1822 | msgstr "" | 1383 | msgstr "" |
1823 | 1384 | ||
1824 | #: plugins/check_http.c:1855 plugins/check_http.c:1861 | ||
1825 | msgid "" | 1385 | msgid "" |
1826 | "a STATE_OK is returned. When the certificate is still valid, but for less " | 1386 | "a STATE_OK is returned. When the certificate is still valid, but for less " |
1827 | "than" | 1387 | "than" |
1828 | msgstr "" | 1388 | msgstr "" |
1829 | 1389 | ||
1830 | #: plugins/check_http.c:1856 | ||
1831 | msgid "" | 1390 | msgid "" |
1832 | "14 days, a STATE_WARNING is returned. A STATE_CRITICAL will be returned when" | 1391 | "14 days, a STATE_WARNING is returned. A STATE_CRITICAL will be returned when" |
1833 | msgstr "" | 1392 | msgstr "" |
1834 | 1393 | ||
1835 | #: plugins/check_http.c:1857 | ||
1836 | msgid "the certificate is expired." | 1394 | msgid "the certificate is expired." |
1837 | msgstr "le certificat est expiré." | 1395 | msgstr "le certificat est expiré." |
1838 | 1396 | ||
1839 | #: plugins/check_http.c:1860 | ||
1840 | msgid "" | 1397 | msgid "" |
1841 | "When the certificate of 'www.verisign.com' is valid for more than 30 days," | 1398 | "When the certificate of 'www.verisign.com' is valid for more than 30 days," |
1842 | msgstr "" | 1399 | msgstr "" |
1843 | 1400 | ||
1844 | #: plugins/check_http.c:1862 | ||
1845 | msgid "30 days, but more than 14 days, a STATE_WARNING is returned." | 1401 | msgid "30 days, but more than 14 days, a STATE_WARNING is returned." |
1846 | msgstr "" | 1402 | msgstr "" |
1847 | 1403 | ||
1848 | #: plugins/check_http.c:1863 | ||
1849 | msgid "" | 1404 | msgid "" |
1850 | "A STATE_CRITICAL will be returned when certificate expires in less than 14 " | 1405 | "A STATE_CRITICAL will be returned when certificate expires in less than 14 " |
1851 | "days" | 1406 | "days" |
1852 | msgstr "" | 1407 | msgstr "" |
1853 | 1408 | ||
1854 | #: plugins/check_http.c:1866 | ||
1855 | msgid "" | 1409 | msgid "" |
1856 | "check_http -I 192.168.100.35 -p 80 -u https://www.verisign.com/ -S -j " | 1410 | "check_http -I 192.168.100.35 -p 80 -u https://www.verisign.com/ -S -j " |
1857 | "CONNECT -H www.verisign.com " | 1411 | "CONNECT -H www.verisign.com " |
1858 | msgstr "" | 1412 | msgstr "" |
1859 | 1413 | ||
1860 | #: plugins/check_http.c:1867 | ||
1861 | msgid "" | 1414 | msgid "" |
1862 | "all these options are needed: -I <proxy> -p <proxy-port> -u <check-url> -" | 1415 | "all these options are needed: -I <proxy> -p <proxy-port> -u <check-url> -" |
1863 | "S(sl) -j CONNECT -H <webserver>" | 1416 | "S(sl) -j CONNECT -H <webserver>" |
1864 | msgstr "" | 1417 | msgstr "" |
1865 | 1418 | ||
1866 | #: plugins/check_http.c:1870 | ||
1867 | msgid "" | 1419 | msgid "" |
1868 | "a STATE_CRITICAL will be returned. By adding a colon to the method you can " | 1420 | "a STATE_CRITICAL will be returned. By adding a colon to the method you can " |
1869 | "set the method used" | 1421 | "set the method used" |
1870 | msgstr "" | 1422 | msgstr "" |
1871 | 1423 | ||
1872 | #: plugins/check_http.c:1871 | ||
1873 | msgid "inside the proxied connection: -j CONNECT:POST" | 1424 | msgid "inside the proxied connection: -j CONNECT:POST" |
1874 | msgstr "" | 1425 | msgstr "" |
1875 | 1426 | ||
1876 | #: plugins/check_ldap.c:142 | ||
1877 | #, c-format | 1427 | #, c-format |
1878 | msgid "Could not connect to the server at port %i\n" | 1428 | msgid "Could not connect to the server at port %i\n" |
1879 | msgstr "Impossible de se connecter au serveur port %i\n" | 1429 | msgstr "Impossible de se connecter au serveur port %i\n" |
1880 | 1430 | ||
1881 | #: plugins/check_ldap.c:151 | ||
1882 | #, c-format | 1431 | #, c-format |
1883 | msgid "Could not set protocol version %d\n" | 1432 | msgid "Could not set protocol version %d\n" |
1884 | msgstr "Impossible d'utiliser le protocole version %d\n" | 1433 | msgstr "Impossible d'utiliser le protocole version %d\n" |
1885 | 1434 | ||
1886 | #: plugins/check_ldap.c:166 | ||
1887 | #, c-format | 1435 | #, c-format |
1888 | msgid "Could not init TLS at port %i!\n" | 1436 | msgid "Could not init TLS at port %i!\n" |
1889 | msgstr "Impossible d'initialiser TLS sur le port %i!\n" | 1437 | msgstr "Impossible d'initialiser TLS sur le port %i!\n" |
1890 | 1438 | ||
1891 | #: plugins/check_ldap.c:170 | ||
1892 | #, c-format | 1439 | #, c-format |
1893 | msgid "TLS not supported by the libraries!\n" | 1440 | msgid "TLS not supported by the libraries!\n" |
1894 | msgstr "TLS n'est pas supporté!\n" | 1441 | msgstr "TLS n'est pas supporté!\n" |
1895 | 1442 | ||
1896 | #: plugins/check_ldap.c:190 | ||
1897 | #, c-format | 1443 | #, c-format |
1898 | msgid "Could not init startTLS at port %i!\n" | 1444 | msgid "Could not init startTLS at port %i!\n" |
1899 | msgstr "Impossible d'initialiser startTLS sur le port %i!\n" | 1445 | msgstr "Impossible d'initialiser startTLS sur le port %i!\n" |
1900 | 1446 | ||
1901 | #: plugins/check_ldap.c:194 | ||
1902 | #, c-format | 1447 | #, c-format |
1903 | msgid "startTLS not supported by the library, needs LDAPv3!\n" | 1448 | msgid "startTLS not supported by the library, needs LDAPv3!\n" |
1904 | msgstr "" | 1449 | msgstr "" |
1905 | "startTLS n'est pas supporté par la librairie LDAP, j'ai besoin de LDAPv3!\n" | 1450 | "startTLS n'est pas supporté par la librairie LDAP, j'ai besoin de LDAPv3!\n" |
1906 | 1451 | ||
1907 | #: plugins/check_ldap.c:204 | ||
1908 | #, c-format | 1452 | #, c-format |
1909 | msgid "Could not bind to the LDAP server\n" | 1453 | msgid "Could not bind to the LDAP server\n" |
1910 | msgstr "Impossible de se connecter au serveur LDAP\n" | 1454 | msgstr "Impossible de se connecter au serveur LDAP\n" |
1911 | 1455 | ||
1912 | #: plugins/check_ldap.c:213 | ||
1913 | #, c-format | 1456 | #, c-format |
1914 | msgid "Could not search/find objectclasses in %s\n" | 1457 | msgid "Could not search/find objectclasses in %s\n" |
1915 | msgstr "Impossible de chercher/trouver les objectclasses dans %s\n" | 1458 | msgstr "Impossible de chercher/trouver les objectclasses dans %s\n" |
1916 | 1459 | ||
1917 | #: plugins/check_ldap.c:252 | ||
1918 | #, fuzzy, c-format | 1460 | #, fuzzy, c-format |
1919 | msgid "LDAP %s - found %d entries in %.3f seconds|%s %s\n" | 1461 | msgid "LDAP %s - found %d entries in %.3f seconds|%s %s\n" |
1920 | msgstr "%s - %d octets en %.3f secondes de temps de réponse %s|%s %s" | 1462 | msgstr "%s - %d octets en %.3f secondes de temps de réponse %s|%s %s" |
1921 | 1463 | ||
1922 | #: plugins/check_ldap.c:265 | ||
1923 | #, c-format | 1464 | #, c-format |
1924 | msgid "LDAP %s - %.3f seconds response time|%s\n" | 1465 | msgid "LDAP %s - %.3f seconds response time|%s\n" |
1925 | msgstr "LDAP %s - %.3f secondes de temps de réponse|%s\n" | 1466 | msgstr "LDAP %s - %.3f secondes de temps de réponse|%s\n" |
1926 | 1467 | ||
1927 | #: plugins/check_ldap.c:386 plugins/check_ldap.c:394 | ||
1928 | #, c-format | 1468 | #, c-format |
1929 | msgid "%s cannot be combined with %s" | 1469 | msgid "%s cannot be combined with %s" |
1930 | msgstr "" | 1470 | msgstr "" |
1931 | 1471 | ||
1932 | #: plugins/check_ldap.c:426 | ||
1933 | msgid "Please specify the host name\n" | 1472 | msgid "Please specify the host name\n" |
1934 | msgstr "Veuillez spécifier le nom de l'hôte\n" | 1473 | msgstr "Veuillez spécifier le nom de l'hôte\n" |
1935 | 1474 | ||
1936 | #: plugins/check_ldap.c:429 | ||
1937 | msgid "Please specify the LDAP base\n" | 1475 | msgid "Please specify the LDAP base\n" |
1938 | msgstr "Veuillez spécifier la base LDAP\n" | 1476 | msgstr "Veuillez spécifier la base LDAP\n" |
1939 | 1477 | ||
1940 | #: plugins/check_ldap.c:465 | ||
1941 | msgid "ldap attribute to search (default: \"(objectclass=*)\"" | 1478 | msgid "ldap attribute to search (default: \"(objectclass=*)\"" |
1942 | msgstr "" | 1479 | msgstr "" |
1943 | 1480 | ||
1944 | #: plugins/check_ldap.c:467 | ||
1945 | msgid "ldap base (eg. ou=my unit, o=my org, c=at" | 1481 | msgid "ldap base (eg. ou=my unit, o=my org, c=at" |
1946 | msgstr "" | 1482 | msgstr "" |
1947 | 1483 | ||
1948 | #: plugins/check_ldap.c:469 | ||
1949 | msgid "ldap bind DN (if required)" | 1484 | msgid "ldap bind DN (if required)" |
1950 | msgstr "" | 1485 | msgstr "" |
1951 | 1486 | ||
1952 | #: plugins/check_ldap.c:471 | ||
1953 | msgid "" | 1487 | msgid "" |
1954 | "ldap password (if required, or set the password through environment variable " | 1488 | "ldap password (if required, or set the password through environment variable " |
1955 | "'LDAP_PASSWORD')" | 1489 | "'LDAP_PASSWORD')" |
1956 | msgstr "" | 1490 | msgstr "" |
1957 | 1491 | ||
1958 | #: plugins/check_ldap.c:473 | ||
1959 | msgid "use starttls mechanism introduced in protocol version 3" | 1492 | msgid "use starttls mechanism introduced in protocol version 3" |
1960 | msgstr "utiliser le fonctionnement starttls du protocole version 3" | 1493 | msgstr "utiliser le fonctionnement starttls du protocole version 3" |
1961 | 1494 | ||
1962 | #: plugins/check_ldap.c:475 | ||
1963 | msgid "use ldaps (ldap v2 ssl method). this also sets the default port to" | 1495 | msgid "use ldaps (ldap v2 ssl method). this also sets the default port to" |
1964 | msgstr "" | 1496 | msgstr "" |
1965 | 1497 | ||
1966 | #: plugins/check_ldap.c:479 | ||
1967 | msgid "use ldap protocol version 2" | 1498 | msgid "use ldap protocol version 2" |
1968 | msgstr "utiliser le protocole ldap version 2" | 1499 | msgstr "utiliser le protocole ldap version 2" |
1969 | 1500 | ||
1970 | #: plugins/check_ldap.c:481 | ||
1971 | msgid "use ldap protocol version 3" | 1501 | msgid "use ldap protocol version 3" |
1972 | msgstr "utiliser le protocole ldap version 3" | 1502 | msgstr "utiliser le protocole ldap version 3" |
1973 | 1503 | ||
1974 | #: plugins/check_ldap.c:482 | ||
1975 | msgid "default protocol version:" | 1504 | msgid "default protocol version:" |
1976 | msgstr "version du protocole par défaut:" | 1505 | msgstr "version du protocole par défaut:" |
1977 | 1506 | ||
1978 | #: plugins/check_ldap.c:488 | ||
1979 | #, fuzzy | 1507 | #, fuzzy |
1980 | msgid "Number of found entries to result in warning status" | 1508 | msgid "Number of found entries to result in warning status" |
1981 | msgstr "Décalage résultant en un avertissement (secondes)" | 1509 | msgstr "Décalage résultant en un avertissement (secondes)" |
1982 | 1510 | ||
1983 | #: plugins/check_ldap.c:490 | ||
1984 | #, fuzzy | 1511 | #, fuzzy |
1985 | msgid "Number of found entries to result in critical status" | 1512 | msgid "Number of found entries to result in critical status" |
1986 | msgstr "Décalage résultant en un état critique (secondes)" | 1513 | msgstr "Décalage résultant en un état critique (secondes)" |
1987 | 1514 | ||
1988 | #: plugins/check_ldap.c:498 | ||
1989 | msgid "If this plugin is called via 'check_ldaps', method 'STARTTLS' will be" | 1515 | msgid "If this plugin is called via 'check_ldaps', method 'STARTTLS' will be" |
1990 | msgstr "" | 1516 | msgstr "" |
1991 | 1517 | ||
1992 | #: plugins/check_ldap.c:499 | ||
1993 | #, c-format | 1518 | #, c-format |
1994 | msgid "" | 1519 | msgid "" |
1995 | " implied (using default port %i) unless --port=636 is specified. In that " | 1520 | " implied (using default port %i) unless --port=636 is specified. In that " |
1996 | "case\n" | 1521 | "case\n" |
1997 | msgstr "" | 1522 | msgstr "" |
1998 | 1523 | ||
1999 | #: plugins/check_ldap.c:500 | ||
2000 | msgid "'SSL on connect' will be used no matter how the plugin was called." | 1524 | msgid "'SSL on connect' will be used no matter how the plugin was called." |
2001 | msgstr "" | 1525 | msgstr "" |
2002 | 1526 | ||
2003 | #: plugins/check_ldap.c:501 | ||
2004 | msgid "" | 1527 | msgid "" |
2005 | "This detection is deprecated, please use 'check_ldap' with the '--starttls' " | 1528 | "This detection is deprecated, please use 'check_ldap' with the '--starttls' " |
2006 | "or '--ssl' flags" | 1529 | "or '--ssl' flags" |
2007 | msgstr "" | 1530 | msgstr "" |
2008 | 1531 | ||
2009 | #: plugins/check_ldap.c:502 | ||
2010 | msgid "to define the behaviour explicitly instead." | 1532 | msgid "to define the behaviour explicitly instead." |
2011 | msgstr "" | 1533 | msgstr "" |
2012 | 1534 | ||
2013 | #: plugins/check_ldap.c:503 | ||
2014 | msgid "The parameters --warn-entries and --crit-entries are optional." | 1535 | msgid "The parameters --warn-entries and --crit-entries are optional." |
2015 | msgstr "" | 1536 | msgstr "" |
2016 | 1537 | ||
2017 | #: plugins/check_load.c:93 | ||
2018 | msgid "Warning threshold must be float or float triplet!\n" | 1538 | msgid "Warning threshold must be float or float triplet!\n" |
2019 | msgstr "Le seuil d'alerte doit être un nombre à virgule flottante!\n" | 1539 | msgstr "Le seuil d'alerte doit être un nombre à virgule flottante!\n" |
2020 | 1540 | ||
2021 | #: plugins/check_load.c:138 plugins/check_load.c:154 | ||
2022 | #, c-format | 1541 | #, c-format |
2023 | msgid "Error opening %s\n" | 1542 | msgid "Error opening %s\n" |
2024 | msgstr "Erreur à l'ouverture de %s\n" | 1543 | msgstr "Erreur à l'ouverture de %s\n" |
2025 | 1544 | ||
2026 | #: plugins/check_load.c:169 | ||
2027 | #, fuzzy, c-format | 1545 | #, fuzzy, c-format |
2028 | msgid "could not parse load from uptime %s: %d\n" | 1546 | msgid "could not parse load from uptime %s: %d\n" |
2029 | msgstr "Lecture des arguments impossible\n" | 1547 | msgstr "Lecture des arguments impossible\n" |
2030 | 1548 | ||
2031 | #: plugins/check_load.c:175 | ||
2032 | #, c-format | 1549 | #, c-format |
2033 | msgid "Error code %d returned in %s\n" | 1550 | msgid "Error code %d returned in %s\n" |
2034 | msgstr "Le code erreur %d à été retourné par %s\n" | 1551 | msgstr "Le code erreur %d à été retourné par %s\n" |
2035 | 1552 | ||
2036 | #: plugins/check_load.c:183 | ||
2037 | #, c-format | 1553 | #, c-format |
2038 | msgid "Error in getloadavg()\n" | 1554 | msgid "Error in getloadavg()\n" |
2039 | msgstr "Erreur dans la fonction getloadavg()\n" | 1555 | msgstr "Erreur dans la fonction getloadavg()\n" |
2040 | 1556 | ||
2041 | #: plugins/check_load.c:186 plugins/check_load.c:188 | ||
2042 | #, c-format | 1557 | #, c-format |
2043 | msgid "Error processing %s\n" | 1558 | msgid "Error processing %s\n" |
2044 | msgstr "Erreur lors de l'utilisation de %s\n" | 1559 | msgstr "Erreur lors de l'utilisation de %s\n" |
2045 | 1560 | ||
2046 | #: plugins/check_load.c:197 plugins/check_load.c:212 | ||
2047 | #, c-format | 1561 | #, c-format |
2048 | msgid "load average: %.2f, %.2f, %.2f" | 1562 | msgid "load average: %.2f, %.2f, %.2f" |
2049 | msgstr "Charge moyenne: %.2f, %.2f, %.2f" | 1563 | msgstr "Charge moyenne: %.2f, %.2f, %.2f" |
2050 | 1564 | ||
2051 | #: plugins/check_load.c:327 | ||
2052 | #, c-format | 1565 | #, c-format |
2053 | msgid "Critical threshold for %d-minute load average is not specified\n" | 1566 | msgid "Critical threshold for %d-minute load average is not specified\n" |
2054 | msgstr "" | 1567 | msgstr "" |
2055 | "Le seuil critique pour la charge système après %d minutes n'est pas " | 1568 | "Le seuil critique pour la charge système après %d minutes n'est pas " |
2056 | "spécifié\n" | 1569 | "spécifié\n" |
2057 | 1570 | ||
2058 | #: plugins/check_load.c:329 | ||
2059 | #, c-format | 1571 | #, c-format |
2060 | msgid "Warning threshold for %d-minute load average is not specified\n" | 1572 | msgid "Warning threshold for %d-minute load average is not specified\n" |
2061 | msgstr "" | 1573 | msgstr "" |
2062 | "Le seuil d'avertissement pour la charge système après %d minutes n'est pas " | 1574 | "Le seuil d'avertissement pour la charge système après %d minutes n'est pas " |
2063 | "spécifié\n" | 1575 | "spécifié\n" |
2064 | 1576 | ||
2065 | #: plugins/check_load.c:331 | ||
2066 | #, c-format | 1577 | #, c-format |
2067 | msgid "" | 1578 | msgid "" |
2068 | "Parameter inconsistency: %d-minute \"warning load\" is greater than " | 1579 | "Parameter inconsistency: %d-minute \"warning load\" is greater than " |
@@ -2071,80 +1582,61 @@ msgstr "" | |||
2071 | "Arguments Incorrects: %d-minute \"alerte charge système\" est plus grand que " | 1582 | "Arguments Incorrects: %d-minute \"alerte charge système\" est plus grand que " |
2072 | "\"alerte critique charge système\"\n" | 1583 | "\"alerte critique charge système\"\n" |
2073 | 1584 | ||
2074 | #: plugins/check_load.c:346 | ||
2075 | #, c-format | 1585 | #, c-format |
2076 | msgid "This plugin tests the current system load average." | 1586 | msgid "This plugin tests the current system load average." |
2077 | msgstr "Ce plugin teste la charge système actuelle." | 1587 | msgstr "Ce plugin teste la charge système actuelle." |
2078 | 1588 | ||
2079 | #: plugins/check_load.c:356 | ||
2080 | msgid "Exit with WARNING status if load average exceeds WLOADn" | 1589 | msgid "Exit with WARNING status if load average exceeds WLOADn" |
2081 | msgstr "" | 1590 | msgstr "" |
2082 | "Sortir avec un résultat AVERTISSEMENT si la charge moyenne dépasse WLOAD" | 1591 | "Sortir avec un résultat AVERTISSEMENT si la charge moyenne dépasse WLOAD" |
2083 | 1592 | ||
2084 | #: plugins/check_load.c:358 | ||
2085 | msgid "Exit with CRITICAL status if load average exceed CLOADn" | 1593 | msgid "Exit with CRITICAL status if load average exceed CLOADn" |
2086 | msgstr "Sortir avec un résultat CRITIQUE si la charge moyenne excède CLOAD" | 1594 | msgstr "Sortir avec un résultat CRITIQUE si la charge moyenne excède CLOAD" |
2087 | 1595 | ||
2088 | #: plugins/check_load.c:359 | ||
2089 | msgid "the load average format is the same used by \"uptime\" and \"w\"" | 1596 | msgid "the load average format is the same used by \"uptime\" and \"w\"" |
2090 | msgstr "" | 1597 | msgstr "" |
2091 | 1598 | ||
2092 | #: plugins/check_load.c:361 | ||
2093 | msgid "Divide the load averages by the number of CPUs (when possible)" | 1599 | msgid "Divide the load averages by the number of CPUs (when possible)" |
2094 | msgstr "" | 1600 | msgstr "" |
2095 | 1601 | ||
2096 | #: plugins/check_load.c:363 | ||
2097 | msgid "Number of processes to show when printing the top consuming processes." | 1602 | msgid "Number of processes to show when printing the top consuming processes." |
2098 | msgstr "" | 1603 | msgstr "" |
2099 | 1604 | ||
2100 | #: plugins/check_load.c:364 | ||
2101 | msgid "NUMBER_OF_PROCS=0 disables this feature. Default value is 0" | 1605 | msgid "NUMBER_OF_PROCS=0 disables this feature. Default value is 0" |
2102 | msgstr "" | 1606 | msgstr "" |
2103 | 1607 | ||
2104 | #: plugins/check_load.c:401 | ||
2105 | #, c-format | 1608 | #, c-format |
2106 | msgid "'%s' exited with non-zero status.\n" | 1609 | msgid "'%s' exited with non-zero status.\n" |
2107 | msgstr "" | 1610 | msgstr "" |
2108 | 1611 | ||
2109 | #: plugins/check_load.c:405 | ||
2110 | #, c-format | 1612 | #, c-format |
2111 | msgid "some error occurred getting procs list.\n" | 1613 | msgid "some error occurred getting procs list.\n" |
2112 | msgstr "" | 1614 | msgstr "" |
2113 | 1615 | ||
2114 | #: plugins/check_mrtg.c:75 | ||
2115 | msgid "Could not parse arguments\n" | 1616 | msgid "Could not parse arguments\n" |
2116 | msgstr "Lecture des arguments impossible\n" | 1617 | msgstr "Lecture des arguments impossible\n" |
2117 | 1618 | ||
2118 | #: plugins/check_mrtg.c:80 | ||
2119 | #, c-format | 1619 | #, c-format |
2120 | msgid "Unable to open MRTG log file\n" | 1620 | msgid "Unable to open MRTG log file\n" |
2121 | msgstr "Impossible d'ouvrir le fichier de log de MRTG\n" | 1621 | msgstr "Impossible d'ouvrir le fichier de log de MRTG\n" |
2122 | 1622 | ||
2123 | #: plugins/check_mrtg.c:127 | ||
2124 | #, c-format | 1623 | #, c-format |
2125 | msgid "Unable to process MRTG log file\n" | 1624 | msgid "Unable to process MRTG log file\n" |
2126 | msgstr "Impossible de traiter le fichier de log de MRTG\n" | 1625 | msgstr "Impossible de traiter le fichier de log de MRTG\n" |
2127 | 1626 | ||
2128 | #: plugins/check_mrtg.c:135 plugins/check_mrtgtraf.c:136 | ||
2129 | #, c-format | 1627 | #, c-format |
2130 | msgid "MRTG data has expired (%d minutes old)\n" | 1628 | msgid "MRTG data has expired (%d minutes old)\n" |
2131 | msgstr "Les données de MRTG on expirées (vieilles de %d minutes)\n" | 1629 | msgstr "Les données de MRTG on expirées (vieilles de %d minutes)\n" |
2132 | 1630 | ||
2133 | #: plugins/check_mrtg.c:152 plugins/check_mrtgtraf.c:195 | ||
2134 | #: plugins/check_mrtgtraf.c:196 | ||
2135 | msgid "Avg" | 1631 | msgid "Avg" |
2136 | msgstr "Moyenne" | 1632 | msgstr "Moyenne" |
2137 | 1633 | ||
2138 | #: plugins/check_mrtg.c:152 plugins/check_mrtgtraf.c:195 | ||
2139 | #: plugins/check_mrtgtraf.c:196 | ||
2140 | msgid "Max" | 1634 | msgid "Max" |
2141 | msgstr "Max" | 1635 | msgstr "Max" |
2142 | 1636 | ||
2143 | #: plugins/check_mrtg.c:221 | ||
2144 | msgid "Invalid variable number" | 1637 | msgid "Invalid variable number" |
2145 | msgstr "Numéro de la variable invalide" | 1638 | msgstr "Numéro de la variable invalide" |
2146 | 1639 | ||
2147 | #: plugins/check_mrtg.c:256 | ||
2148 | #, c-format | 1640 | #, c-format |
2149 | msgid "" | 1641 | msgid "" |
2150 | "%s is not a valid expiration time\n" | 1642 | "%s is not a valid expiration time\n" |
@@ -2153,509 +1645,394 @@ msgstr "" | |||
2153 | "%s n'est pas un temps d'expiration valide\n" | 1645 | "%s n'est pas un temps d'expiration valide\n" |
2154 | "Utilisez '%s -h' pour de l'aide supplémentaire\n" | 1646 | "Utilisez '%s -h' pour de l'aide supplémentaire\n" |
2155 | 1647 | ||
2156 | #: plugins/check_mrtg.c:273 | ||
2157 | msgid "Invalid variable number\n" | 1648 | msgid "Invalid variable number\n" |
2158 | msgstr "Numéro de la variable invalide\n" | 1649 | msgstr "Numéro de la variable invalide\n" |
2159 | 1650 | ||
2160 | #: plugins/check_mrtg.c:300 | ||
2161 | msgid "You must supply the variable number" | 1651 | msgid "You must supply the variable number" |
2162 | msgstr "Vous devez fournir le numéro de la variable" | 1652 | msgstr "Vous devez fournir le numéro de la variable" |
2163 | 1653 | ||
2164 | #: plugins/check_mrtg.c:321 | ||
2165 | msgid "" | 1654 | msgid "" |
2166 | "This plugin will check either the average or maximum value of one of the" | 1655 | "This plugin will check either the average or maximum value of one of the" |
2167 | msgstr "Ce plugin va vérifier la moyenne ou le maximum d'une " | 1656 | msgstr "Ce plugin va vérifier la moyenne ou le maximum d'une " |
2168 | 1657 | ||
2169 | #: plugins/check_mrtg.c:322 | ||
2170 | msgid "two variables recorded in an MRTG log file." | 1658 | msgid "two variables recorded in an MRTG log file." |
2171 | msgstr "deux variables du fichier de log de MRTG." | 1659 | msgstr "deux variables du fichier de log de MRTG." |
2172 | 1660 | ||
2173 | #: plugins/check_mrtg.c:332 | ||
2174 | msgid "The MRTG log file containing the data you want to monitor" | 1661 | msgid "The MRTG log file containing the data you want to monitor" |
2175 | msgstr "" | 1662 | msgstr "" |
2176 | 1663 | ||
2177 | #: plugins/check_mrtg.c:334 | ||
2178 | msgid "Minutes before MRTG data is considered to be too old" | 1664 | msgid "Minutes before MRTG data is considered to be too old" |
2179 | msgstr "" | 1665 | msgstr "" |
2180 | 1666 | ||
2181 | #: plugins/check_mrtg.c:336 | ||
2182 | msgid "Should we check average or maximum values?" | 1667 | msgid "Should we check average or maximum values?" |
2183 | msgstr "" | 1668 | msgstr "" |
2184 | 1669 | ||
2185 | #: plugins/check_mrtg.c:338 | ||
2186 | msgid "Which variable set should we inspect? (1 or 2)" | 1670 | msgid "Which variable set should we inspect? (1 or 2)" |
2187 | msgstr "" | 1671 | msgstr "" |
2188 | 1672 | ||
2189 | #: plugins/check_mrtg.c:340 | ||
2190 | msgid "Threshold value for data to result in WARNING status" | 1673 | msgid "Threshold value for data to result in WARNING status" |
2191 | msgstr "" | 1674 | msgstr "" |
2192 | 1675 | ||
2193 | #: plugins/check_mrtg.c:342 | ||
2194 | msgid "Threshold value for data to result in CRITICAL status" | 1676 | msgid "Threshold value for data to result in CRITICAL status" |
2195 | msgstr "" | 1677 | msgstr "" |
2196 | 1678 | ||
2197 | #: plugins/check_mrtg.c:344 | ||
2198 | msgid "Type label for data (Examples: Conns, \"Processor Load\", In, Out)" | 1679 | msgid "Type label for data (Examples: Conns, \"Processor Load\", In, Out)" |
2199 | msgstr "" | 1680 | msgstr "" |
2200 | 1681 | ||
2201 | #: plugins/check_mrtg.c:346 | ||
2202 | msgid "Option units label for data (Example: Packets/Sec, Errors/Sec," | 1682 | msgid "Option units label for data (Example: Packets/Sec, Errors/Sec," |
2203 | msgstr "" | 1683 | msgstr "" |
2204 | 1684 | ||
2205 | #: plugins/check_mrtg.c:347 | ||
2206 | #, c-format | 1685 | #, c-format |
2207 | msgid "\"Bytes Per Second\", \"%% Utilization\")" | 1686 | msgid "\"Bytes Per Second\", \"%% Utilization\")" |
2208 | msgstr "" | 1687 | msgstr "" |
2209 | 1688 | ||
2210 | #: plugins/check_mrtg.c:350 | ||
2211 | msgid "" | 1689 | msgid "" |
2212 | "If the value exceeds the <vwl> threshold, a WARNING status is returned. If" | 1690 | "If the value exceeds the <vwl> threshold, a WARNING status is returned. If" |
2213 | msgstr "" | 1691 | msgstr "" |
2214 | 1692 | ||
2215 | #: plugins/check_mrtg.c:351 | ||
2216 | msgid "" | 1693 | msgid "" |
2217 | "the value exceeds the <vcl> threshold, a CRITICAL status is returned. If" | 1694 | "the value exceeds the <vcl> threshold, a CRITICAL status is returned. If" |
2218 | msgstr "" | 1695 | msgstr "" |
2219 | 1696 | ||
2220 | #: plugins/check_mrtg.c:352 | ||
2221 | msgid "the data in the log file is older than <expire_minutes> old, a WARNING" | 1697 | msgid "the data in the log file is older than <expire_minutes> old, a WARNING" |
2222 | msgstr "" | 1698 | msgstr "" |
2223 | 1699 | ||
2224 | #: plugins/check_mrtg.c:353 | ||
2225 | msgid "status is returned and a warning message is printed." | 1700 | msgid "status is returned and a warning message is printed." |
2226 | msgstr "" | 1701 | msgstr "" |
2227 | 1702 | ||
2228 | #: plugins/check_mrtg.c:356 | ||
2229 | msgid "" | 1703 | msgid "" |
2230 | "This plugin is useful for monitoring MRTG data that does not correspond to" | 1704 | "This plugin is useful for monitoring MRTG data that does not correspond to" |
2231 | msgstr "" | 1705 | msgstr "" |
2232 | 1706 | ||
2233 | #: plugins/check_mrtg.c:357 | ||
2234 | msgid "" | 1707 | msgid "" |
2235 | "bandwidth usage. (Use the check_mrtgtraf plugin for monitoring bandwidth)." | 1708 | "bandwidth usage. (Use the check_mrtgtraf plugin for monitoring bandwidth)." |
2236 | msgstr "" | 1709 | msgstr "" |
2237 | 1710 | ||
2238 | #: plugins/check_mrtg.c:358 | ||
2239 | msgid "" | 1711 | msgid "" |
2240 | "It can be used to monitor any kind of data that MRTG is monitoring - errors," | 1712 | "It can be used to monitor any kind of data that MRTG is monitoring - errors," |
2241 | msgstr "" | 1713 | msgstr "" |
2242 | 1714 | ||
2243 | #: plugins/check_mrtg.c:359 | ||
2244 | msgid "" | 1715 | msgid "" |
2245 | "packets/sec, etc. I use MRTG in conjunction with the Novell NLM that allows" | 1716 | "packets/sec, etc. I use MRTG in conjunction with the Novell NLM that allows" |
2246 | msgstr "" | 1717 | msgstr "" |
2247 | 1718 | ||
2248 | #: plugins/check_mrtg.c:360 | ||
2249 | msgid "" | 1719 | msgid "" |
2250 | "me to track processor utilization, user connections, drive space, etc and" | 1720 | "me to track processor utilization, user connections, drive space, etc and" |
2251 | msgstr "" | 1721 | msgstr "" |
2252 | 1722 | ||
2253 | #: plugins/check_mrtg.c:361 | ||
2254 | msgid "this plugin works well for monitoring that kind of data as well." | 1723 | msgid "this plugin works well for monitoring that kind of data as well." |
2255 | msgstr "" | 1724 | msgstr "" |
2256 | 1725 | ||
2257 | #: plugins/check_mrtg.c:364 | ||
2258 | msgid "" | 1726 | msgid "" |
2259 | "- This plugin only monitors one of the two variables stored in the MRTG log" | 1727 | "- This plugin only monitors one of the two variables stored in the MRTG log" |
2260 | msgstr "" | 1728 | msgstr "" |
2261 | "- Ce plugin vérifie seulement une ou deux variables écrites dans un fichier " | 1729 | "- Ce plugin vérifie seulement une ou deux variables écrites dans un fichier " |
2262 | "de log MRTG" | 1730 | "de log MRTG" |
2263 | 1731 | ||
2264 | #: plugins/check_mrtg.c:365 | ||
2265 | msgid "file. If you want to monitor both values you will have to define two" | 1732 | msgid "file. If you want to monitor both values you will have to define two" |
2266 | msgstr "" | 1733 | msgstr "" |
2267 | 1734 | ||
2268 | #: plugins/check_mrtg.c:366 | ||
2269 | msgid "commands with different values for the <variable> argument. Of course," | 1735 | msgid "commands with different values for the <variable> argument. Of course," |
2270 | msgstr "" | 1736 | msgstr "" |
2271 | 1737 | ||
2272 | #: plugins/check_mrtg.c:367 | ||
2273 | msgid "you can always hack the code to make this plugin work for you..." | 1738 | msgid "you can always hack the code to make this plugin work for you..." |
2274 | msgstr "" | 1739 | msgstr "" |
2275 | 1740 | ||
2276 | #: plugins/check_mrtg.c:368 | ||
2277 | msgid "" | 1741 | msgid "" |
2278 | "- MRTG stands for the Multi Router Traffic Grapher. It can be downloaded " | 1742 | "- MRTG stands for the Multi Router Traffic Grapher. It can be downloaded " |
2279 | "from" | 1743 | "from" |
2280 | msgstr "" | 1744 | msgstr "" |
2281 | 1745 | ||
2282 | #: plugins/check_mrtgtraf.c:88 | ||
2283 | msgid "Unable to open MRTG log file" | 1746 | msgid "Unable to open MRTG log file" |
2284 | msgstr "Impossible d'ouvrir le fichier de log de MRTG" | 1747 | msgstr "Impossible d'ouvrir le fichier de log de MRTG" |
2285 | 1748 | ||
2286 | #: plugins/check_mrtgtraf.c:130 | ||
2287 | msgid "Unable to process MRTG log file" | 1749 | msgid "Unable to process MRTG log file" |
2288 | msgstr "Impossible de traiter le fichier de log de MRTG" | 1750 | msgstr "Impossible de traiter le fichier de log de MRTG" |
2289 | 1751 | ||
2290 | #: plugins/check_mrtgtraf.c:194 | ||
2291 | #, fuzzy, c-format | 1752 | #, fuzzy, c-format |
2292 | msgid "%s. In = %0.1f %s/s, %s. Out = %0.1f %s/s|%s %s\n" | 1753 | msgid "%s. In = %0.1f %s/s, %s. Out = %0.1f %s/s|%s %s\n" |
2293 | msgstr "%s. Entrée = %0.1f %s, %s. Sortie = %0.1f %s|%s %s\n" | 1754 | msgstr "%s. Entrée = %0.1f %s, %s. Sortie = %0.1f %s|%s %s\n" |
2294 | 1755 | ||
2295 | #: plugins/check_mrtgtraf.c:207 | ||
2296 | #, c-format | 1756 | #, c-format |
2297 | msgid "Traffic %s - %s\n" | 1757 | msgid "Traffic %s - %s\n" |
2298 | msgstr "Trafic %s - %s\n" | 1758 | msgstr "Trafic %s - %s\n" |
2299 | 1759 | ||
2300 | #: plugins/check_mrtgtraf.c:335 | ||
2301 | msgid "" | 1760 | msgid "" |
2302 | "This plugin will check the incoming/outgoing transfer rates of a router," | 1761 | "This plugin will check the incoming/outgoing transfer rates of a router," |
2303 | msgstr "" | 1762 | msgstr "" |
2304 | "Ce plugin va vérifier le taux de transfert en entrée/sortie d'un routeur," | 1763 | "Ce plugin va vérifier le taux de transfert en entrée/sortie d'un routeur," |
2305 | 1764 | ||
2306 | #: plugins/check_mrtgtraf.c:336 | ||
2307 | msgid "switch, etc recorded in an MRTG log. If the newest log entry is older" | 1765 | msgid "switch, etc recorded in an MRTG log. If the newest log entry is older" |
2308 | msgstr "" | 1766 | msgstr "" |
2309 | 1767 | ||
2310 | #: plugins/check_mrtgtraf.c:337 | ||
2311 | msgid "than <expire_minutes>, a WARNING status is returned. If either the" | 1768 | msgid "than <expire_minutes>, a WARNING status is returned. If either the" |
2312 | msgstr "" | 1769 | msgstr "" |
2313 | 1770 | ||
2314 | #: plugins/check_mrtgtraf.c:338 | ||
2315 | msgid "incoming or outgoing rates exceed the <icl> or <ocl> thresholds (in" | 1771 | msgid "incoming or outgoing rates exceed the <icl> or <ocl> thresholds (in" |
2316 | msgstr "" | 1772 | msgstr "" |
2317 | 1773 | ||
2318 | #: plugins/check_mrtgtraf.c:339 | ||
2319 | msgid "Bytes/sec), a CRITICAL status results. If either of the rates exceed" | 1774 | msgid "Bytes/sec), a CRITICAL status results. If either of the rates exceed" |
2320 | msgstr "" | 1775 | msgstr "" |
2321 | 1776 | ||
2322 | #: plugins/check_mrtgtraf.c:340 | ||
2323 | msgid "the <iwl> or <owl> thresholds (in Bytes/sec), a WARNING status results." | 1777 | msgid "the <iwl> or <owl> thresholds (in Bytes/sec), a WARNING status results." |
2324 | msgstr "" | 1778 | msgstr "" |
2325 | 1779 | ||
2326 | #: plugins/check_mrtgtraf.c:350 | ||
2327 | msgid "File to read log from" | 1780 | msgid "File to read log from" |
2328 | msgstr "" | 1781 | msgstr "" |
2329 | 1782 | ||
2330 | #: plugins/check_mrtgtraf.c:352 | ||
2331 | msgid "Minutes after which log expires" | 1783 | msgid "Minutes after which log expires" |
2332 | msgstr "" | 1784 | msgstr "" |
2333 | 1785 | ||
2334 | #: plugins/check_mrtgtraf.c:354 | ||
2335 | msgid "Test average or maximum" | 1786 | msgid "Test average or maximum" |
2336 | msgstr "" | 1787 | msgstr "" |
2337 | 1788 | ||
2338 | #: plugins/check_mrtgtraf.c:356 | ||
2339 | msgid "Warning threshold pair <incoming>,<outgoing>" | 1789 | msgid "Warning threshold pair <incoming>,<outgoing>" |
2340 | msgstr "Paire de seuils d'avertissement <entrant>,<sortant>" | 1790 | msgstr "Paire de seuils d'avertissement <entrant>,<sortant>" |
2341 | 1791 | ||
2342 | #: plugins/check_mrtgtraf.c:358 | ||
2343 | msgid "Critical threshold pair <incoming>,<outgoing>" | 1792 | msgid "Critical threshold pair <incoming>,<outgoing>" |
2344 | msgstr "Paire de seuils critique <entrant>,<sortant>" | 1793 | msgstr "Paire de seuils critique <entrant>,<sortant>" |
2345 | 1794 | ||
2346 | #: plugins/check_mrtgtraf.c:362 | ||
2347 | msgid "" | 1795 | msgid "" |
2348 | "- MRTG stands for Multi Router Traffic Grapher. It can be downloaded from" | 1796 | "- MRTG stands for Multi Router Traffic Grapher. It can be downloaded from" |
2349 | msgstr "" | 1797 | msgstr "" |
2350 | 1798 | ||
2351 | #: plugins/check_mrtgtraf.c:364 | ||
2352 | msgid "- While MRTG can monitor things other than traffic rates, this" | 1799 | msgid "- While MRTG can monitor things other than traffic rates, this" |
2353 | msgstr "" | 1800 | msgstr "" |
2354 | 1801 | ||
2355 | #: plugins/check_mrtgtraf.c:365 | ||
2356 | msgid " plugin probably won't work with much else without modification." | 1802 | msgid " plugin probably won't work with much else without modification." |
2357 | msgstr "" | 1803 | msgstr "" |
2358 | 1804 | ||
2359 | #: plugins/check_mrtgtraf.c:366 | ||
2360 | msgid "- The calculated i/o rates are a little off from what MRTG actually" | 1805 | msgid "- The calculated i/o rates are a little off from what MRTG actually" |
2361 | msgstr "" | 1806 | msgstr "" |
2362 | 1807 | ||
2363 | #: plugins/check_mrtgtraf.c:367 | ||
2364 | msgid " reports. I'm not sure why this is right now, but will look into it" | 1808 | msgid " reports. I'm not sure why this is right now, but will look into it" |
2365 | msgstr "" | 1809 | msgstr "" |
2366 | 1810 | ||
2367 | #: plugins/check_mrtgtraf.c:368 | ||
2368 | msgid " for future enhancements of this plugin." | 1811 | msgid " for future enhancements of this plugin." |
2369 | msgstr "" | 1812 | msgstr "" |
2370 | 1813 | ||
2371 | #: plugins/check_mrtgtraf.c:378 | ||
2372 | #, c-format | 1814 | #, c-format |
2373 | msgid "Usage" | 1815 | msgid "Usage" |
2374 | msgstr "Utilisation" | 1816 | msgstr "Utilisation" |
2375 | 1817 | ||
2376 | #: plugins/check_mysql.c:185 | ||
2377 | #, fuzzy, c-format | 1818 | #, fuzzy, c-format |
2378 | msgid "status store_result error: %s\n" | 1819 | msgid "status store_result error: %s\n" |
2379 | msgstr "erreur slave store_result: %s\n" | 1820 | msgstr "erreur slave store_result: %s\n" |
2380 | 1821 | ||
2381 | #: plugins/check_mysql.c:216 | ||
2382 | #, c-format | 1822 | #, c-format |
2383 | msgid "slave query error: %s\n" | 1823 | msgid "slave query error: %s\n" |
2384 | msgstr "erreur de requête de l'esclave: %s\n" | 1824 | msgstr "erreur de requête de l'esclave: %s\n" |
2385 | 1825 | ||
2386 | #: plugins/check_mysql.c:223 | ||
2387 | #, c-format | 1826 | #, c-format |
2388 | msgid "slave store_result error: %s\n" | 1827 | msgid "slave store_result error: %s\n" |
2389 | msgstr "erreur slave store_result: %s\n" | 1828 | msgstr "erreur slave store_result: %s\n" |
2390 | 1829 | ||
2391 | #: plugins/check_mysql.c:229 | ||
2392 | msgid "No slaves defined" | 1830 | msgid "No slaves defined" |
2393 | msgstr "Pas d'esclave spécifié" | 1831 | msgstr "Pas d'esclave spécifié" |
2394 | 1832 | ||
2395 | #: plugins/check_mysql.c:237 | ||
2396 | #, c-format | 1833 | #, c-format |
2397 | msgid "slave fetch row error: %s\n" | 1834 | msgid "slave fetch row error: %s\n" |
2398 | msgstr "erreur esclave lecture d'une ligne: %s\n" | 1835 | msgstr "erreur esclave lecture d'une ligne: %s\n" |
2399 | 1836 | ||
2400 | #: plugins/check_mysql.c:242 | ||
2401 | #, c-format | 1837 | #, c-format |
2402 | msgid "Slave running: %s" | 1838 | msgid "Slave running: %s" |
2403 | msgstr "L'esclave fonctionne: %s" | 1839 | msgstr "L'esclave fonctionne: %s" |
2404 | 1840 | ||
2405 | #: plugins/check_mysql.c:520 | ||
2406 | msgid "This program tests connections to a MySQL server" | 1841 | msgid "This program tests connections to a MySQL server" |
2407 | msgstr "Ce plugin teste une connexion vers un serveur MySQL" | 1842 | msgstr "Ce plugin teste une connexion vers un serveur MySQL" |
2408 | 1843 | ||
2409 | #: plugins/check_mysql.c:531 | ||
2410 | msgid "Ignore authentication failure and check for mysql connectivity only" | 1844 | msgid "Ignore authentication failure and check for mysql connectivity only" |
2411 | msgstr "" | 1845 | msgstr "" |
2412 | 1846 | ||
2413 | #: plugins/check_mysql.c:534 | ||
2414 | msgid "Use the specified socket (has no effect if -H is used)" | 1847 | msgid "Use the specified socket (has no effect if -H is used)" |
2415 | msgstr "" | 1848 | msgstr "" |
2416 | 1849 | ||
2417 | #: plugins/check_mysql.c:537 | ||
2418 | msgid "Check database with indicated name" | 1850 | msgid "Check database with indicated name" |
2419 | msgstr "" | 1851 | msgstr "" |
2420 | 1852 | ||
2421 | #: plugins/check_mysql.c:539 | ||
2422 | msgid "Read from the specified client options file" | 1853 | msgid "Read from the specified client options file" |
2423 | msgstr "" | 1854 | msgstr "" |
2424 | 1855 | ||
2425 | #: plugins/check_mysql.c:541 | ||
2426 | msgid "Use a client options group" | 1856 | msgid "Use a client options group" |
2427 | msgstr "" | 1857 | msgstr "" |
2428 | 1858 | ||
2429 | #: plugins/check_mysql.c:543 | ||
2430 | msgid "Connect using the indicated username" | 1859 | msgid "Connect using the indicated username" |
2431 | msgstr "" | 1860 | msgstr "" |
2432 | 1861 | ||
2433 | #: plugins/check_mysql.c:545 | ||
2434 | msgid "Use the indicated password to authenticate the connection" | 1862 | msgid "Use the indicated password to authenticate the connection" |
2435 | msgstr "" | 1863 | msgstr "" |
2436 | 1864 | ||
2437 | #: plugins/check_mysql.c:546 | ||
2438 | msgid "IMPORTANT: THIS FORM OF AUTHENTICATION IS NOT SECURE!!!" | 1865 | msgid "IMPORTANT: THIS FORM OF AUTHENTICATION IS NOT SECURE!!!" |
2439 | msgstr "" | 1866 | msgstr "" |
2440 | 1867 | ||
2441 | #: plugins/check_mysql.c:547 | ||
2442 | msgid "Your clear-text password could be visible as a process table entry" | 1868 | msgid "Your clear-text password could be visible as a process table entry" |
2443 | msgstr "" | 1869 | msgstr "" |
2444 | 1870 | ||
2445 | #: plugins/check_mysql.c:549 | ||
2446 | msgid "Check if the slave thread is running properly." | 1871 | msgid "Check if the slave thread is running properly." |
2447 | msgstr "" | 1872 | msgstr "" |
2448 | 1873 | ||
2449 | #: plugins/check_mysql.c:551 | ||
2450 | msgid "Exit with WARNING status if slave server is more than INTEGER seconds" | 1874 | msgid "Exit with WARNING status if slave server is more than INTEGER seconds" |
2451 | msgstr "" | 1875 | msgstr "" |
2452 | "Sortir avec un résultat AVERTISSEMENT si le serveur esclave est plus de X " | 1876 | "Sortir avec un résultat AVERTISSEMENT si le serveur esclave est plus de X " |
2453 | 1877 | ||
2454 | #: plugins/check_mysql.c:552 plugins/check_mysql.c:555 | ||
2455 | msgid "behind master" | 1878 | msgid "behind master" |
2456 | msgstr "secondes en retard sur le maître" | 1879 | msgstr "secondes en retard sur le maître" |
2457 | 1880 | ||
2458 | #: plugins/check_mysql.c:554 | ||
2459 | msgid "Exit with CRITICAL status if slave server is more then INTEGER seconds" | 1881 | msgid "Exit with CRITICAL status if slave server is more then INTEGER seconds" |
2460 | msgstr "Sortir avec un résultat CRITIQUE si le serveur esclave est plus de X " | 1882 | msgstr "Sortir avec un résultat CRITIQUE si le serveur esclave est plus de X " |
2461 | 1883 | ||
2462 | #: plugins/check_mysql.c:557 | ||
2463 | msgid "Use ssl encryption" | 1884 | msgid "Use ssl encryption" |
2464 | msgstr "" | 1885 | msgstr "" |
2465 | 1886 | ||
2466 | #: plugins/check_mysql.c:559 | ||
2467 | msgid "Path to CA signing the cert" | 1887 | msgid "Path to CA signing the cert" |
2468 | msgstr "" | 1888 | msgstr "" |
2469 | 1889 | ||
2470 | #: plugins/check_mysql.c:561 | ||
2471 | msgid "Path to SSL certificate" | 1890 | msgid "Path to SSL certificate" |
2472 | msgstr "" | 1891 | msgstr "" |
2473 | 1892 | ||
2474 | #: plugins/check_mysql.c:563 | ||
2475 | msgid "Path to private SSL key" | 1893 | msgid "Path to private SSL key" |
2476 | msgstr "" | 1894 | msgstr "" |
2477 | 1895 | ||
2478 | #: plugins/check_mysql.c:565 | ||
2479 | msgid "Path to CA directory" | 1896 | msgid "Path to CA directory" |
2480 | msgstr "" | 1897 | msgstr "" |
2481 | 1898 | ||
2482 | #: plugins/check_mysql.c:567 | ||
2483 | msgid "List of valid SSL ciphers" | 1899 | msgid "List of valid SSL ciphers" |
2484 | msgstr "" | 1900 | msgstr "" |
2485 | 1901 | ||
2486 | #: plugins/check_mysql.c:571 | ||
2487 | msgid "" | 1902 | msgid "" |
2488 | "There are no required arguments. By default, the local database is checked" | 1903 | "There are no required arguments. By default, the local database is checked" |
2489 | msgstr "" | 1904 | msgstr "" |
2490 | "Il n'y a pas d'arguments nécessaires. Par défaut la base de donnée locale " | 1905 | "Il n'y a pas d'arguments nécessaires. Par défaut la base de donnée locale " |
2491 | "est testée" | 1906 | "est testée" |
2492 | 1907 | ||
2493 | #: plugins/check_mysql.c:572 | ||
2494 | msgid "" | 1908 | msgid "" |
2495 | "using the default unix socket. You can force TCP on localhost by using an" | 1909 | "using the default unix socket. You can force TCP on localhost by using an" |
2496 | msgstr "" | 1910 | msgstr "" |
2497 | 1911 | ||
2498 | #: plugins/check_mysql.c:573 | ||
2499 | msgid "IP address or FQDN ('localhost' will use the socket as well)." | 1912 | msgid "IP address or FQDN ('localhost' will use the socket as well)." |
2500 | msgstr "" | 1913 | msgstr "" |
2501 | 1914 | ||
2502 | #: plugins/check_mysql.c:577 | ||
2503 | msgid "You must specify -p with an empty string to force an empty password," | 1915 | msgid "You must specify -p with an empty string to force an empty password," |
2504 | msgstr "" | 1916 | msgstr "" |
2505 | 1917 | ||
2506 | #: plugins/check_mysql.c:578 | ||
2507 | msgid "overriding any my.cnf settings." | 1918 | msgid "overriding any my.cnf settings." |
2508 | msgstr "" | 1919 | msgstr "" |
2509 | 1920 | ||
2510 | #: plugins/check_nagios.c:104 | ||
2511 | msgid "Cannot open status log for reading!" | 1921 | msgid "Cannot open status log for reading!" |
2512 | msgstr "Impossible d'ouvrir le fichier status log en lecture!" | 1922 | msgstr "Impossible d'ouvrir le fichier status log en lecture!" |
2513 | 1923 | ||
2514 | #: plugins/check_nagios.c:154 | ||
2515 | #, c-format | 1924 | #, c-format |
2516 | msgid "Found process: %s %s\n" | 1925 | msgid "Found process: %s %s\n" |
2517 | msgstr "Processus trouvé: %s %s\n" | 1926 | msgstr "Processus trouvé: %s %s\n" |
2518 | 1927 | ||
2519 | #: plugins/check_nagios.c:168 | ||
2520 | msgid "Could not locate a running Nagios process!" | 1928 | msgid "Could not locate a running Nagios process!" |
2521 | msgstr "Impossible de trouver un processus Nagios actif!" | 1929 | msgstr "Impossible de trouver un processus Nagios actif!" |
2522 | 1930 | ||
2523 | #: plugins/check_nagios.c:172 | ||
2524 | msgid "Cannot parse Nagios log file for valid time" | 1931 | msgid "Cannot parse Nagios log file for valid time" |
2525 | msgstr "" | 1932 | msgstr "" |
2526 | "Impossible de trouver une date/heure valide dans le fichier de log de Nagios" | 1933 | "Impossible de trouver une date/heure valide dans le fichier de log de Nagios" |
2527 | 1934 | ||
2528 | #: plugins/check_nagios.c:183 plugins/check_procs.c:379 | ||
2529 | #, c-format | 1935 | #, c-format |
2530 | msgid "%d process" | 1936 | msgid "%d process" |
2531 | msgid_plural "%d processes" | 1937 | msgid_plural "%d processes" |
2532 | msgstr[0] "%d processus" | 1938 | msgstr[0] "%d processus" |
2533 | msgstr[1] "%d processus" | 1939 | msgstr[1] "%d processus" |
2534 | 1940 | ||
2535 | #: plugins/check_nagios.c:186 | ||
2536 | #, c-format | 1941 | #, c-format |
2537 | msgid "status log updated %d second ago" | 1942 | msgid "status log updated %d second ago" |
2538 | msgid_plural "status log updated %d seconds ago" | 1943 | msgid_plural "status log updated %d seconds ago" |
2539 | msgstr[0] "status log mis à jour %d secondes auparavant" | 1944 | msgstr[0] "status log mis à jour %d secondes auparavant" |
2540 | msgstr[1] "status log mis à jour %d secondes auparavant" | 1945 | msgstr[1] "status log mis à jour %d secondes auparavant" |
2541 | 1946 | ||
2542 | #: plugins/check_nagios.c:224 plugins/check_nagios.c:253 | ||
2543 | msgid "Expiration time must be an integer (seconds)\n" | 1947 | msgid "Expiration time must be an integer (seconds)\n" |
2544 | msgstr "Le délai d'expiration doit être un entier (en secondes)\n" | 1948 | msgstr "Le délai d'expiration doit être un entier (en secondes)\n" |
2545 | 1949 | ||
2546 | #: plugins/check_nagios.c:260 | ||
2547 | #, fuzzy | 1950 | #, fuzzy |
2548 | msgid "Timeout must be an integer (seconds)\n" | 1951 | msgid "Timeout must be an integer (seconds)\n" |
2549 | msgstr "Le délai d'expiration doit être un entier (en secondes)\n" | 1952 | msgstr "Le délai d'expiration doit être un entier (en secondes)\n" |
2550 | 1953 | ||
2551 | #: plugins/check_nagios.c:272 | ||
2552 | msgid "You must provide the status_log\n" | 1954 | msgid "You must provide the status_log\n" |
2553 | msgstr "Vous devez fournir le status_log\n" | 1955 | msgstr "Vous devez fournir le status_log\n" |
2554 | 1956 | ||
2555 | #: plugins/check_nagios.c:275 | ||
2556 | msgid "You must provide a process string\n" | 1957 | msgid "You must provide a process string\n" |
2557 | msgstr "Vous devez fournir un nom de processus\n" | 1958 | msgstr "Vous devez fournir un nom de processus\n" |
2558 | 1959 | ||
2559 | #: plugins/check_nagios.c:289 | ||
2560 | msgid "" | 1960 | msgid "" |
2561 | "This plugin checks the status of the Nagios process on the local machine" | 1961 | "This plugin checks the status of the Nagios process on the local machine" |
2562 | msgstr "Ce plugin vérifie l'état du processus Nagios sur la machine locale." | 1962 | msgstr "Ce plugin vérifie l'état du processus Nagios sur la machine locale." |
2563 | 1963 | ||
2564 | #: plugins/check_nagios.c:290 | ||
2565 | msgid "" | 1964 | msgid "" |
2566 | "The plugin will check to make sure the Nagios status log is no older than" | 1965 | "The plugin will check to make sure the Nagios status log is no older than" |
2567 | msgstr "Ce plugin vérifie que le status log de Nagios n'est pas plus vieux que" | 1966 | msgstr "Ce plugin vérifie que le status log de Nagios n'est pas plus vieux que" |
2568 | 1967 | ||
2569 | #: plugins/check_nagios.c:291 | ||
2570 | msgid "the number of minutes specified by the expires option." | 1968 | msgid "the number of minutes specified by the expires option." |
2571 | msgstr "le nombre de minutes spécifies par l'option expire." | 1969 | msgstr "le nombre de minutes spécifies par l'option expire." |
2572 | 1970 | ||
2573 | #: plugins/check_nagios.c:292 | ||
2574 | msgid "" | 1971 | msgid "" |
2575 | "It also checks the process table for a process matching the command argument." | 1972 | "It also checks the process table for a process matching the command argument." |
2576 | msgstr "" | 1973 | msgstr "" |
2577 | 1974 | ||
2578 | #: plugins/check_nagios.c:302 | ||
2579 | msgid "Name of the log file to check" | 1975 | msgid "Name of the log file to check" |
2580 | msgstr "Nom du fichier log à vérifier" | 1976 | msgstr "Nom du fichier log à vérifier" |
2581 | 1977 | ||
2582 | #: plugins/check_nagios.c:304 | ||
2583 | msgid "Minutes aging after which logfile is considered stale" | 1978 | msgid "Minutes aging after which logfile is considered stale" |
2584 | msgstr "" | 1979 | msgstr "" |
2585 | 1980 | ||
2586 | #: plugins/check_nagios.c:306 | ||
2587 | msgid "Substring to search for in process arguments" | 1981 | msgid "Substring to search for in process arguments" |
2588 | msgstr "" | 1982 | msgstr "" |
2589 | 1983 | ||
2590 | #: plugins/check_nagios.c:308 | ||
2591 | msgid "Timeout for the plugin in seconds" | 1984 | msgid "Timeout for the plugin in seconds" |
2592 | msgstr "" | 1985 | msgstr "" |
2593 | 1986 | ||
2594 | #: plugins/check_nt.c:142 | ||
2595 | #, c-format | 1987 | #, c-format |
2596 | msgid "Wrong client version - running: %s, required: %s" | 1988 | msgid "Wrong client version - running: %s, required: %s" |
2597 | msgstr "Mauvaise version du client utilisée: %s, nécessaire: %s" | 1989 | msgstr "Mauvaise version du client utilisée: %s, nécessaire: %s" |
2598 | 1990 | ||
2599 | #: plugins/check_nt.c:153 plugins/check_nt.c:239 | ||
2600 | msgid "missing -l parameters" | 1991 | msgid "missing -l parameters" |
2601 | msgstr "Arguments -l manquants" | 1992 | msgstr "Arguments -l manquants" |
2602 | 1993 | ||
2603 | #: plugins/check_nt.c:155 | ||
2604 | msgid "wrong -l parameter." | 1994 | msgid "wrong -l parameter." |
2605 | msgstr "Arguments -l erronés." | 1995 | msgstr "Arguments -l erronés." |
2606 | 1996 | ||
2607 | #: plugins/check_nt.c:159 | ||
2608 | msgid "CPU Load" | 1997 | msgid "CPU Load" |
2609 | msgstr "Charge CPU" | 1998 | msgstr "Charge CPU" |
2610 | 1999 | ||
2611 | #: plugins/check_nt.c:182 | ||
2612 | #, c-format | 2000 | #, c-format |
2613 | msgid " %lu%% (%lu min average)" | 2001 | msgid " %lu%% (%lu min average)" |
2614 | msgstr " %lu%% (%lu moyenne minimale)" | 2002 | msgstr " %lu%% (%lu moyenne minimale)" |
2615 | 2003 | ||
2616 | #: plugins/check_nt.c:184 | ||
2617 | #, c-format | 2004 | #, c-format |
2618 | msgid " '%lu min avg Load'=%lu%%;%lu;%lu;0;100" | 2005 | msgid " '%lu min avg Load'=%lu%%;%lu;%lu;0;100" |
2619 | msgstr " '%lu Charge moyenne minimale'=%lu%%;%lu;%lu;0;100" | 2006 | msgstr " '%lu Charge moyenne minimale'=%lu%%;%lu;%lu;0;100" |
2620 | 2007 | ||
2621 | #: plugins/check_nt.c:194 | ||
2622 | msgid "not enough values for -l parameters" | 2008 | msgid "not enough values for -l parameters" |
2623 | msgstr "pas assez de valeur pour l'argument -l" | 2009 | msgstr "pas assez de valeur pour l'argument -l" |
2624 | 2010 | ||
2625 | #: plugins/check_nt.c:208 plugins/check_nt.c:241 | ||
2626 | msgid "wrong -l argument" | 2011 | msgid "wrong -l argument" |
2627 | msgstr "Argument -l erroné" | 2012 | msgstr "Argument -l erroné" |
2628 | 2013 | ||
2629 | #: plugins/check_nt.c:225 | ||
2630 | #, fuzzy, c-format | 2014 | #, fuzzy, c-format |
2631 | msgid "System Uptime - %u day(s) %u hour(s) %u minute(s) |uptime=%lu" | 2015 | msgid "System Uptime - %u day(s) %u hour(s) %u minute(s) |uptime=%lu" |
2632 | msgstr "Système démarré - %u jour(s) %u heure(s) %u minute(s)" | 2016 | msgstr "Système démarré - %u jour(s) %u heure(s) %u minute(s)" |
2633 | 2017 | ||
2634 | #: plugins/check_nt.c:257 | ||
2635 | #, c-format | 2018 | #, c-format |
2636 | msgid "%s:\\ - total: %.2f Gb - used: %.2f Gb (%.0f%%) - free %.2f Gb (%.0f%%)" | 2019 | msgid "%s:\\ - total: %.2f Gb - used: %.2f Gb (%.0f%%) - free %.2f Gb (%.0f%%)" |
2637 | msgstr "" | 2020 | msgstr "" |
2638 | "%s:\\ - total: %.2f Gb - utilisé: %.2f Gb (%.0f%%) - libre %.2f Gb (%.0f%%)" | 2021 | "%s:\\ - total: %.2f Gb - utilisé: %.2f Gb (%.0f%%) - libre %.2f Gb (%.0f%%)" |
2639 | 2022 | ||
2640 | #: plugins/check_nt.c:260 | ||
2641 | #, c-format | 2023 | #, c-format |
2642 | msgid "'%s:\\ Used Space'=%.2fGb;%.2f;%.2f;0.00;%.2f" | 2024 | msgid "'%s:\\ Used Space'=%.2fGb;%.2f;%.2f;0.00;%.2f" |
2643 | msgstr "'%s:\\ Espace Utilisé'=%.2fGb;%.2f;%.2f;0.00;%.2f" | 2025 | msgstr "'%s:\\ Espace Utilisé'=%.2fGb;%.2f;%.2f;0.00;%.2f" |
2644 | 2026 | ||
2645 | #: plugins/check_nt.c:274 | ||
2646 | msgid "Free disk space : Invalid drive" | 2027 | msgid "Free disk space : Invalid drive" |
2647 | msgstr "Espace disque libre : Lecteur invalide" | 2028 | msgstr "Espace disque libre : Lecteur invalide" |
2648 | 2029 | ||
2649 | #: plugins/check_nt.c:284 | ||
2650 | msgid "No service/process specified" | 2030 | msgid "No service/process specified" |
2651 | msgstr "Pas de service/processus spécifié" | 2031 | msgstr "Pas de service/processus spécifié" |
2652 | 2032 | ||
2653 | #: plugins/check_nt.c:292 plugins/check_nt.c:305 plugins/check_nt.c:309 | ||
2654 | #: plugins/check_nt.c:643 | ||
2655 | msgid "could not fetch information from server\n" | 2033 | msgid "could not fetch information from server\n" |
2656 | msgstr "Impossible d'obtenir l'information depuis le serveur\n" | 2034 | msgstr "Impossible d'obtenir l'information depuis le serveur\n" |
2657 | 2035 | ||
2658 | #: plugins/check_nt.c:317 | ||
2659 | #, fuzzy, c-format | 2036 | #, fuzzy, c-format |
2660 | msgid "" | 2037 | msgid "" |
2661 | "Memory usage: total:%.2f MB - used: %.2f MB (%.0f%%) - free: %.2f MB (%.0f%%)" | 2038 | "Memory usage: total:%.2f MB - used: %.2f MB (%.0f%%) - free: %.2f MB (%.0f%%)" |
@@ -2663,582 +2040,438 @@ msgstr "" | |||
2663 | "Mémoire utilisée: total:%.2f Mb - utilisée: %.2f Mb (%.0f%%) - libre: %.2f " | 2040 | "Mémoire utilisée: total:%.2f Mb - utilisée: %.2f Mb (%.0f%%) - libre: %.2f " |
2664 | "Mb (%.0f%%)" | 2041 | "Mb (%.0f%%)" |
2665 | 2042 | ||
2666 | #: plugins/check_nt.c:320 | ||
2667 | #, fuzzy, c-format | 2043 | #, fuzzy, c-format |
2668 | msgid "'Memory usage'=%.2fMB;%.2f;%.2f;0.00;%.2f" | 2044 | msgid "'Memory usage'=%.2fMB;%.2f;%.2f;0.00;%.2f" |
2669 | msgstr "'Mémoire utilisée'=%.2fMb;%.2f;%.2f;0.00;%.2f" | 2045 | msgstr "'Mémoire utilisée'=%.2fMb;%.2f;%.2f;0.00;%.2f" |
2670 | 2046 | ||
2671 | #: plugins/check_nt.c:356 plugins/check_nt.c:441 plugins/check_nt.c:471 | ||
2672 | msgid "No counter specified" | 2047 | msgid "No counter specified" |
2673 | msgstr "Pas de compteur spécifié" | 2048 | msgstr "Pas de compteur spécifié" |
2674 | 2049 | ||
2675 | #: plugins/check_nt.c:388 | ||
2676 | msgid "Minimum value contains non-numbers" | 2050 | msgid "Minimum value contains non-numbers" |
2677 | msgstr "La valeur minimum contient des caractères non numériques" | 2051 | msgstr "La valeur minimum contient des caractères non numériques" |
2678 | 2052 | ||
2679 | #: plugins/check_nt.c:392 | ||
2680 | msgid "Maximum value contains non-numbers" | 2053 | msgid "Maximum value contains non-numbers" |
2681 | msgstr "La valeur maximum contient des caractères non numériques" | 2054 | msgstr "La valeur maximum contient des caractères non numériques" |
2682 | 2055 | ||
2683 | #: plugins/check_nt.c:399 | ||
2684 | msgid "No unit counter specified" | 2056 | msgid "No unit counter specified" |
2685 | msgstr "Pas de compteur spécifié" | 2057 | msgstr "Pas de compteur spécifié" |
2686 | 2058 | ||
2687 | #: plugins/check_nt.c:486 | ||
2688 | msgid "Please specify a variable to check" | 2059 | msgid "Please specify a variable to check" |
2689 | msgstr "Veuillez préciser une variable a vérifier" | 2060 | msgstr "Veuillez préciser une variable a vérifier" |
2690 | 2061 | ||
2691 | #: plugins/check_nt.c:570 | ||
2692 | msgid "Server port must be an integer\n" | 2062 | msgid "Server port must be an integer\n" |
2693 | msgstr "Le port du serveur doit être un nombre entier\n" | 2063 | msgstr "Le port du serveur doit être un nombre entier\n" |
2694 | 2064 | ||
2695 | #: plugins/check_nt.c:624 | ||
2696 | msgid "You must provide a server address or host name" | 2065 | msgid "You must provide a server address or host name" |
2697 | msgstr "Vous devez spécifier une adresse ou un nom d'hôte" | 2066 | msgstr "Vous devez spécifier une adresse ou un nom d'hôte" |
2698 | 2067 | ||
2699 | #: plugins/check_nt.c:630 | ||
2700 | msgid "None" | 2068 | msgid "None" |
2701 | msgstr "Aucun" | 2069 | msgstr "Aucun" |
2702 | 2070 | ||
2703 | #: plugins/check_nt.c:687 | ||
2704 | msgid "This plugin collects data from the NSClient service running on a" | 2071 | msgid "This plugin collects data from the NSClient service running on a" |
2705 | msgstr "" | 2072 | msgstr "" |
2706 | "Ce plugin collecte les données depuis le service NSClient tournant sur un" | 2073 | "Ce plugin collecte les données depuis le service NSClient tournant sur un" |
2707 | 2074 | ||
2708 | #: plugins/check_nt.c:688 | ||
2709 | msgid "Windows NT/2000/XP/2003 server." | 2075 | msgid "Windows NT/2000/XP/2003 server." |
2710 | msgstr "Serveur Windows NT/2000/XP/2003." | 2076 | msgstr "Serveur Windows NT/2000/XP/2003." |
2711 | 2077 | ||
2712 | #: plugins/check_nt.c:699 | ||
2713 | msgid "Name of the host to check" | 2078 | msgid "Name of the host to check" |
2714 | msgstr "Nom de l'hôte à vérifier" | 2079 | msgstr "Nom de l'hôte à vérifier" |
2715 | 2080 | ||
2716 | #: plugins/check_nt.c:701 | ||
2717 | msgid "Optional port number (default: " | 2081 | msgid "Optional port number (default: " |
2718 | msgstr "Numéro de port optionnel (défaut: " | 2082 | msgstr "Numéro de port optionnel (défaut: " |
2719 | 2083 | ||
2720 | #: plugins/check_nt.c:704 | ||
2721 | msgid "Password needed for the request" | 2084 | msgid "Password needed for the request" |
2722 | msgstr "Mot de passe nécessaire pour la requête" | 2085 | msgstr "Mot de passe nécessaire pour la requête" |
2723 | 2086 | ||
2724 | #: plugins/check_nt.c:706 plugins/check_nwstat.c:1661 | ||
2725 | #: plugins/check_overcr.c:432 | ||
2726 | msgid "Threshold which will result in a warning status" | 2087 | msgid "Threshold which will result in a warning status" |
2727 | msgstr "" | 2088 | msgstr "" |
2728 | 2089 | ||
2729 | #: plugins/check_nt.c:708 plugins/check_nwstat.c:1663 | ||
2730 | #: plugins/check_overcr.c:434 | ||
2731 | msgid "Threshold which will result in a critical status" | 2090 | msgid "Threshold which will result in a critical status" |
2732 | msgstr "" | 2091 | msgstr "" |
2733 | 2092 | ||
2734 | #: plugins/check_nt.c:710 | ||
2735 | msgid "Seconds before connection attempt times out (default: " | 2093 | msgid "Seconds before connection attempt times out (default: " |
2736 | msgstr "" | 2094 | msgstr "" |
2737 | 2095 | ||
2738 | #: plugins/check_nt.c:712 | ||
2739 | msgid "Parameters passed to specified check (see below)" | 2096 | msgid "Parameters passed to specified check (see below)" |
2740 | msgstr "" | 2097 | msgstr "" |
2741 | 2098 | ||
2742 | #: plugins/check_nt.c:714 | ||
2743 | msgid "Display options (currently only SHOWALL works)" | 2099 | msgid "Display options (currently only SHOWALL works)" |
2744 | msgstr "" | 2100 | msgstr "" |
2745 | 2101 | ||
2746 | #: plugins/check_nt.c:716 | ||
2747 | msgid "Return UNKNOWN on timeouts" | 2102 | msgid "Return UNKNOWN on timeouts" |
2748 | msgstr "" | 2103 | msgstr "" |
2749 | 2104 | ||
2750 | #: plugins/check_nt.c:719 | ||
2751 | msgid "Print this help screen" | 2105 | msgid "Print this help screen" |
2752 | msgstr "Afficher l'écran d'aide" | 2106 | msgstr "Afficher l'écran d'aide" |
2753 | 2107 | ||
2754 | #: plugins/check_nt.c:721 | ||
2755 | msgid "Print version information" | 2108 | msgid "Print version information" |
2756 | msgstr "Afficher la version" | 2109 | msgstr "Afficher la version" |
2757 | 2110 | ||
2758 | #: plugins/check_nt.c:723 | ||
2759 | msgid "Variable to check" | 2111 | msgid "Variable to check" |
2760 | msgstr "Variable a vérifier" | 2112 | msgstr "Variable a vérifier" |
2761 | 2113 | ||
2762 | #: plugins/check_nt.c:724 | ||
2763 | msgid "Valid variables are:" | 2114 | msgid "Valid variables are:" |
2764 | msgstr "Les variables valides sont" | 2115 | msgstr "Les variables valides sont" |
2765 | 2116 | ||
2766 | #: plugins/check_nt.c:726 | ||
2767 | msgid "Get the NSClient version" | 2117 | msgid "Get the NSClient version" |
2768 | msgstr "Obtenir la version de NSClient" | 2118 | msgstr "Obtenir la version de NSClient" |
2769 | 2119 | ||
2770 | #: plugins/check_nt.c:727 | ||
2771 | msgid "If -l <version> is specified, will return warning if versions differ." | 2120 | msgid "If -l <version> is specified, will return warning if versions differ." |
2772 | msgstr "" | 2121 | msgstr "" |
2773 | "si l'argument -l <version> est spécifié, une alerte AVERTISSEMENT sera " | 2122 | "si l'argument -l <version> est spécifié, une alerte AVERTISSEMENT sera " |
2774 | "renvoyée, si les versions sont différentes." | 2123 | "renvoyée, si les versions sont différentes." |
2775 | 2124 | ||
2776 | #: plugins/check_nt.c:729 | ||
2777 | msgid "Average CPU load on last x minutes." | 2125 | msgid "Average CPU load on last x minutes." |
2778 | msgstr "Moyenne de la charge CPU sur les dernières x minutes." | 2126 | msgstr "Moyenne de la charge CPU sur les dernières x minutes." |
2779 | 2127 | ||
2780 | #: plugins/check_nt.c:730 | ||
2781 | msgid "Request a -l parameter with the following syntax:" | 2128 | msgid "Request a -l parameter with the following syntax:" |
2782 | msgstr "Demande un paramètre -l avec la syntaxe suivante:" | 2129 | msgstr "Demande un paramètre -l avec la syntaxe suivante:" |
2783 | 2130 | ||
2784 | #: plugins/check_nt.c:731 | ||
2785 | msgid "-l <minutes range>,<warning threshold>,<critical threshold>." | 2131 | msgid "-l <minutes range>,<warning threshold>,<critical threshold>." |
2786 | msgstr "-l <plage de minutes>,<seuil d'avertissement>,<seuil critique>." | 2132 | msgstr "-l <plage de minutes>,<seuil d'avertissement>,<seuil critique>." |
2787 | 2133 | ||
2788 | #: plugins/check_nt.c:732 | ||
2789 | msgid "<minute range> should be less than 24*60." | 2134 | msgid "<minute range> should be less than 24*60." |
2790 | msgstr "<plage de minutes> devrait être inférieur à 24*60." | 2135 | msgstr "<plage de minutes> devrait être inférieur à 24*60." |
2791 | 2136 | ||
2792 | #: plugins/check_nt.c:733 | ||
2793 | msgid "" | 2137 | msgid "" |
2794 | "Thresholds are percentage and up to 10 requests can be done in one shot." | 2138 | "Thresholds are percentage and up to 10 requests can be done in one shot." |
2795 | msgstr "" | 2139 | msgstr "" |
2796 | "Les seuils sonts en pourcentage et un maximum de 10 requêtes peuvent être " | 2140 | "Les seuils sonts en pourcentage et un maximum de 10 requêtes peuvent être " |
2797 | "effectuées à la fois." | 2141 | "effectuées à la fois." |
2798 | 2142 | ||
2799 | #: plugins/check_nt.c:736 | ||
2800 | msgid "Get the uptime of the machine." | 2143 | msgid "Get the uptime of the machine." |
2801 | msgstr "Obtenir le temps de service de la machine." | 2144 | msgstr "Obtenir le temps de service de la machine." |
2802 | 2145 | ||
2803 | #: plugins/check_nt.c:737 | ||
2804 | msgid "-l <unit> " | 2146 | msgid "-l <unit> " |
2805 | msgstr "" | 2147 | msgstr "" |
2806 | 2148 | ||
2807 | #: plugins/check_nt.c:738 | ||
2808 | msgid "<unit> = seconds, minutes, hours, or days. (default: minutes)" | 2149 | msgid "<unit> = seconds, minutes, hours, or days. (default: minutes)" |
2809 | msgstr "" | 2150 | msgstr "" |
2810 | 2151 | ||
2811 | #: plugins/check_nt.c:739 | ||
2812 | #, fuzzy | 2152 | #, fuzzy |
2813 | msgid "Thresholds will use the unit specified above." | 2153 | msgid "Thresholds will use the unit specified above." |
2814 | msgstr "Ce plugin va vérifier l'heure sur l'hôte spécifié." | 2154 | msgstr "Ce plugin va vérifier l'heure sur l'hôte spécifié." |
2815 | 2155 | ||
2816 | #: plugins/check_nt.c:741 | ||
2817 | msgid "Size and percentage of disk use." | 2156 | msgid "Size and percentage of disk use." |
2818 | msgstr "Taille et pourcentage de l'utilisation disque." | 2157 | msgstr "Taille et pourcentage de l'utilisation disque." |
2819 | 2158 | ||
2820 | #: plugins/check_nt.c:742 | ||
2821 | msgid "Request a -l parameter containing the drive letter only." | 2159 | msgid "Request a -l parameter containing the drive letter only." |
2822 | msgstr "Demande un paramètre -l contennant uniquement la lettre du lecteur." | 2160 | msgstr "Demande un paramètre -l contennant uniquement la lettre du lecteur." |
2823 | 2161 | ||
2824 | #: plugins/check_nt.c:743 plugins/check_nt.c:746 | ||
2825 | msgid "Warning and critical thresholds can be specified with -w and -c." | 2162 | msgid "Warning and critical thresholds can be specified with -w and -c." |
2826 | msgstr "Les seuils d'alerte et critiques peuvent être spécifiés avec -w et -c." | 2163 | msgstr "Les seuils d'alerte et critiques peuvent être spécifiés avec -w et -c." |
2827 | 2164 | ||
2828 | #: plugins/check_nt.c:745 | ||
2829 | msgid "Memory use." | 2165 | msgid "Memory use." |
2830 | msgstr "Mémoire utilisée." | 2166 | msgstr "Mémoire utilisée." |
2831 | 2167 | ||
2832 | #: plugins/check_nt.c:748 | ||
2833 | msgid "Check the state of one or several services." | 2168 | msgid "Check the state of one or several services." |
2834 | msgstr "Vérifier l'état d'un ou plusieurs services." | 2169 | msgstr "Vérifier l'état d'un ou plusieurs services." |
2835 | 2170 | ||
2836 | #: plugins/check_nt.c:749 plugins/check_nt.c:758 | ||
2837 | msgid "Request a -l parameters with the following syntax:" | 2171 | msgid "Request a -l parameters with the following syntax:" |
2838 | msgstr "Demande un paramètre -l avec la syntaxe suivante:" | 2172 | msgstr "Demande un paramètre -l avec la syntaxe suivante:" |
2839 | 2173 | ||
2840 | #: plugins/check_nt.c:750 | ||
2841 | msgid "-l <service1>,<service2>,<service3>,..." | 2174 | msgid "-l <service1>,<service2>,<service3>,..." |
2842 | msgstr "-l <service1>,<service2>,<service3>,..." | 2175 | msgstr "-l <service1>,<service2>,<service3>,..." |
2843 | 2176 | ||
2844 | #: plugins/check_nt.c:751 | ||
2845 | msgid "You can specify -d SHOWALL in case you want to see working services" | 2177 | msgid "You can specify -d SHOWALL in case you want to see working services" |
2846 | msgstr "Vous pouvez spécifier -d SHOWALL pour voir les services fonctionnant" | 2178 | msgstr "Vous pouvez spécifier -d SHOWALL pour voir les services fonctionnant" |
2847 | 2179 | ||
2848 | #: plugins/check_nt.c:752 | ||
2849 | msgid "in the returned string." | 2180 | msgid "in the returned string." |
2850 | msgstr "dans la chaîne de caractère renvoyée." | 2181 | msgstr "dans la chaîne de caractère renvoyée." |
2851 | 2182 | ||
2852 | #: plugins/check_nt.c:754 | ||
2853 | msgid "Check if one or several process are running." | 2183 | msgid "Check if one or several process are running." |
2854 | msgstr "Vérifie si un ou plusieurs processus sont démarrés." | 2184 | msgstr "Vérifie si un ou plusieurs processus sont démarrés." |
2855 | 2185 | ||
2856 | #: plugins/check_nt.c:755 | ||
2857 | msgid "Same syntax as SERVICESTATE." | 2186 | msgid "Same syntax as SERVICESTATE." |
2858 | msgstr "Même syntaxe que SERVICESTATE." | 2187 | msgstr "Même syntaxe que SERVICESTATE." |
2859 | 2188 | ||
2860 | #: plugins/check_nt.c:757 | ||
2861 | msgid "Check any performance counter of Windows NT/2000." | 2189 | msgid "Check any performance counter of Windows NT/2000." |
2862 | msgstr "Vérifier n'importe quel compteur de performance sur Windows NT/2000." | 2190 | msgstr "Vérifier n'importe quel compteur de performance sur Windows NT/2000." |
2863 | 2191 | ||
2864 | #: plugins/check_nt.c:759 | ||
2865 | msgid "-l \"\\\\<performance object>\\\\counter\",\"<description>" | 2192 | msgid "-l \"\\\\<performance object>\\\\counter\",\"<description>" |
2866 | msgstr "-l \"\\\\<catégorie>\\\\compteur\",\"<description>" | 2193 | msgstr "-l \"\\\\<catégorie>\\\\compteur\",\"<description>" |
2867 | 2194 | ||
2868 | #: plugins/check_nt.c:760 | ||
2869 | msgid "The <description> parameter is optional and is given to a printf " | 2195 | msgid "The <description> parameter is optional and is given to a printf " |
2870 | msgstr "Le paramètre <description> est optionnel et est passé à la fonction " | 2196 | msgstr "Le paramètre <description> est optionnel et est passé à la fonction " |
2871 | 2197 | ||
2872 | #: plugins/check_nt.c:761 | ||
2873 | msgid "output command which requires a float parameter." | 2198 | msgid "output command which requires a float parameter." |
2874 | msgstr "de sortie printf qui demande un paramètre de type float." | 2199 | msgstr "de sortie printf qui demande un paramètre de type float." |
2875 | 2200 | ||
2876 | #: plugins/check_nt.c:762 | ||
2877 | #, c-format | 2201 | #, c-format |
2878 | msgid "If <description> does not include \"%%\", it is used as a label." | 2202 | msgid "If <description> does not include \"%%\", it is used as a label." |
2879 | msgstr "Si <description> n'inclus pas \"%%\", il est utilisé comme étiquette." | 2203 | msgstr "Si <description> n'inclus pas \"%%\", il est utilisé comme étiquette." |
2880 | 2204 | ||
2881 | #: plugins/check_nt.c:763 plugins/check_nt.c:778 | ||
2882 | msgid "Some examples:" | 2205 | msgid "Some examples:" |
2883 | msgstr "Exemples:" | 2206 | msgstr "Exemples:" |
2884 | 2207 | ||
2885 | #: plugins/check_nt.c:767 | ||
2886 | msgid "Check any performance counter object of Windows NT/2000." | 2208 | msgid "Check any performance counter object of Windows NT/2000." |
2887 | msgstr "Vérifie n'importe quel compteur de performance de Windows NT/2000." | 2209 | msgstr "Vérifie n'importe quel compteur de performance de Windows NT/2000." |
2888 | 2210 | ||
2889 | #: plugins/check_nt.c:768 | ||
2890 | msgid "" | 2211 | msgid "" |
2891 | "Syntax: check_nt -H <hostname> -p <port> -v INSTANCES -l <counter object>" | 2212 | "Syntax: check_nt -H <hostname> -p <port> -v INSTANCES -l <counter object>" |
2892 | msgstr "" | 2213 | msgstr "" |
2893 | 2214 | ||
2894 | #: plugins/check_nt.c:769 | ||
2895 | msgid "<counter object> is a Windows Perfmon Counter object (eg. Process)," | 2215 | msgid "<counter object> is a Windows Perfmon Counter object (eg. Process)," |
2896 | msgstr "" | 2216 | msgstr "" |
2897 | 2217 | ||
2898 | #: plugins/check_nt.c:770 | ||
2899 | msgid "if it is two words, it should be enclosed in quotes" | 2218 | msgid "if it is two words, it should be enclosed in quotes" |
2900 | msgstr "" | 2219 | msgstr "" |
2901 | 2220 | ||
2902 | #: plugins/check_nt.c:771 | ||
2903 | msgid "The returned results will be a comma-separated list of instances on " | 2221 | msgid "The returned results will be a comma-separated list of instances on " |
2904 | msgstr "" | 2222 | msgstr "" |
2905 | 2223 | ||
2906 | #: plugins/check_nt.c:772 | ||
2907 | msgid " the selected computer for that object." | 2224 | msgid " the selected computer for that object." |
2908 | msgstr "" | 2225 | msgstr "" |
2909 | 2226 | ||
2910 | #: plugins/check_nt.c:773 | ||
2911 | msgid "" | 2227 | msgid "" |
2912 | "The purpose of this is to be run from command line to determine what " | 2228 | "The purpose of this is to be run from command line to determine what " |
2913 | "instances" | 2229 | "instances" |
2914 | msgstr "" | 2230 | msgstr "" |
2915 | 2231 | ||
2916 | #: plugins/check_nt.c:774 | ||
2917 | msgid "" | 2232 | msgid "" |
2918 | " are available for monitoring without having to log onto the Windows server" | 2233 | " are available for monitoring without having to log onto the Windows server" |
2919 | msgstr "" | 2234 | msgstr "" |
2920 | 2235 | ||
2921 | #: plugins/check_nt.c:775 | ||
2922 | msgid " to run Perfmon directly." | 2236 | msgid " to run Perfmon directly." |
2923 | msgstr "" | 2237 | msgstr "" |
2924 | 2238 | ||
2925 | #: plugins/check_nt.c:776 | ||
2926 | msgid "" | 2239 | msgid "" |
2927 | "It can also be used in scripts that automatically create the monitoring " | 2240 | "It can also be used in scripts that automatically create the monitoring " |
2928 | "service" | 2241 | "service" |
2929 | msgstr "" | 2242 | msgstr "" |
2930 | 2243 | ||
2931 | #: plugins/check_nt.c:777 | ||
2932 | msgid " configuration files." | 2244 | msgid " configuration files." |
2933 | msgstr "" | 2245 | msgstr "" |
2934 | 2246 | ||
2935 | #: plugins/check_nt.c:779 | ||
2936 | msgid "check_nt -H 192.168.1.1 -p 1248 -v INSTANCES -l Process" | 2247 | msgid "check_nt -H 192.168.1.1 -p 1248 -v INSTANCES -l Process" |
2937 | msgstr "" | 2248 | msgstr "" |
2938 | 2249 | ||
2939 | #: plugins/check_nt.c:782 | ||
2940 | msgid "" | 2250 | msgid "" |
2941 | "- The NSClient service should be running on the server to get any information" | 2251 | "- The NSClient service should be running on the server to get any information" |
2942 | msgstr "" | 2252 | msgstr "" |
2943 | "- Le service NSClient doit rouler sur le serveur pour obtenir les " | 2253 | "- Le service NSClient doit rouler sur le serveur pour obtenir les " |
2944 | "informations" | 2254 | "informations" |
2945 | 2255 | ||
2946 | #: plugins/check_nt.c:784 | ||
2947 | msgid "- Critical thresholds should be lower than warning thresholds" | 2256 | msgid "- Critical thresholds should be lower than warning thresholds" |
2948 | msgstr "" | 2257 | msgstr "" |
2949 | "- Les seuils critiques doivent être plus bas que les seuils d'avertissement" | 2258 | "- Les seuils critiques doivent être plus bas que les seuils d'avertissement" |
2950 | 2259 | ||
2951 | #: plugins/check_nt.c:785 | ||
2952 | msgid "- Default port 1248 is sometimes in use by other services. The error" | 2260 | msgid "- Default port 1248 is sometimes in use by other services. The error" |
2953 | msgstr "" | 2261 | msgstr "" |
2954 | "- Le port par défaut 1248 est parfois utilisé par d'autres services. L'erreur" | 2262 | "- Le port par défaut 1248 est parfois utilisé par d'autres services. L'erreur" |
2955 | 2263 | ||
2956 | #: plugins/check_nt.c:786 | ||
2957 | msgid "" | 2264 | msgid "" |
2958 | "output when this happens contains \"Cannot map xxxxx to protocol number\"." | 2265 | "output when this happens contains \"Cannot map xxxxx to protocol number\"." |
2959 | msgstr "qui en résulte contiens \"Cannot map xxxxx to protocol number\"." | 2266 | msgstr "qui en résulte contiens \"Cannot map xxxxx to protocol number\"." |
2960 | 2267 | ||
2961 | #: plugins/check_nt.c:787 | ||
2962 | msgid "One fix for this is to change the port to something else on check_nt " | 2268 | msgid "One fix for this is to change the port to something else on check_nt " |
2963 | msgstr "" | 2269 | msgstr "" |
2964 | "Une possibilité pour corriger ce problème est de changer le port dans " | 2270 | "Une possibilité pour corriger ce problème est de changer le port dans " |
2965 | "check_nt " | 2271 | "check_nt " |
2966 | 2272 | ||
2967 | #: plugins/check_nt.c:788 | ||
2968 | msgid "and on the client service it's connecting to." | 2273 | msgid "and on the client service it's connecting to." |
2969 | msgstr "et dans le service auquel il se connecte." | 2274 | msgstr "et dans le service auquel il se connecte." |
2970 | 2275 | ||
2971 | #: plugins/check_ntp.c:629 | ||
2972 | #, c-format | 2276 | #, c-format |
2973 | msgid "jitter response too large (%lu bytes)\n" | 2277 | msgid "jitter response too large (%lu bytes)\n" |
2974 | msgstr "" | 2278 | msgstr "" |
2975 | 2279 | ||
2976 | #: plugins/check_ntp.c:817 plugins/check_ntp_peer.c:619 | ||
2977 | #: plugins/check_ntp_time.c:576 | ||
2978 | msgid "NTP CRITICAL:" | 2280 | msgid "NTP CRITICAL:" |
2979 | msgstr "NTP CRITIQUE:" | 2281 | msgstr "NTP CRITIQUE:" |
2980 | 2282 | ||
2981 | #: plugins/check_ntp.c:820 plugins/check_ntp_peer.c:622 | ||
2982 | #: plugins/check_ntp_time.c:579 | ||
2983 | msgid "NTP WARNING:" | 2283 | msgid "NTP WARNING:" |
2984 | msgstr "NTP AVERTISSEMENT:" | 2284 | msgstr "NTP AVERTISSEMENT:" |
2985 | 2285 | ||
2986 | #: plugins/check_ntp.c:823 plugins/check_ntp_peer.c:625 | ||
2987 | #: plugins/check_ntp_time.c:582 | ||
2988 | msgid "NTP OK:" | 2286 | msgid "NTP OK:" |
2989 | msgstr "NTP OK:" | 2287 | msgstr "NTP OK:" |
2990 | 2288 | ||
2991 | #: plugins/check_ntp.c:826 plugins/check_ntp_peer.c:628 | ||
2992 | #: plugins/check_ntp_time.c:585 | ||
2993 | msgid "NTP UNKNOWN:" | 2289 | msgid "NTP UNKNOWN:" |
2994 | msgstr "NTP INCONNU:" | 2290 | msgstr "NTP INCONNU:" |
2995 | 2291 | ||
2996 | #: plugins/check_ntp.c:830 plugins/check_ntp_peer.c:637 | ||
2997 | #: plugins/check_ntp_time.c:589 | ||
2998 | msgid "Offset unknown" | 2292 | msgid "Offset unknown" |
2999 | msgstr "Décalage inconnu" | 2293 | msgstr "Décalage inconnu" |
3000 | 2294 | ||
3001 | #: plugins/check_ntp.c:833 plugins/check_ntp_peer.c:640 | ||
3002 | #: plugins/check_ntp_peer.c:642 plugins/check_ntp_peer.c:644 | ||
3003 | #: plugins/check_ntp_time.c:592 | ||
3004 | msgid "Offset" | 2295 | msgid "Offset" |
3005 | msgstr "Décalage" | 2296 | msgstr "Décalage" |
3006 | 2297 | ||
3007 | #: plugins/check_ntp.c:854 plugins/check_ntp_peer.c:690 | ||
3008 | msgid "This plugin checks the selected ntp server" | 2298 | msgid "This plugin checks the selected ntp server" |
3009 | msgstr "Ce plugin vérifie le service ntp sur l'hôte" | 2299 | msgstr "Ce plugin vérifie le service ntp sur l'hôte" |
3010 | 2300 | ||
3011 | #: plugins/check_ntp.c:864 plugins/check_ntp_peer.c:702 | ||
3012 | #: plugins/check_ntp_time.c:619 | ||
3013 | msgid "Offset to result in warning status (seconds)" | 2301 | msgid "Offset to result in warning status (seconds)" |
3014 | msgstr "Décalage résultant en un avertissement (secondes)" | 2302 | msgstr "Décalage résultant en un avertissement (secondes)" |
3015 | 2303 | ||
3016 | #: plugins/check_ntp.c:866 plugins/check_ntp_peer.c:704 | ||
3017 | #: plugins/check_ntp_time.c:621 | ||
3018 | msgid "Offset to result in critical status (seconds)" | 2304 | msgid "Offset to result in critical status (seconds)" |
3019 | msgstr "Décalage résultant en un état critique (secondes)" | 2305 | msgstr "Décalage résultant en un état critique (secondes)" |
3020 | 2306 | ||
3021 | #: plugins/check_ntp.c:868 plugins/check_ntp_peer.c:710 | ||
3022 | msgid "Warning threshold for jitter" | 2307 | msgid "Warning threshold for jitter" |
3023 | msgstr "Seuil d'avertissement pour la variation (jitter)" | 2308 | msgstr "Seuil d'avertissement pour la variation (jitter)" |
3024 | 2309 | ||
3025 | #: plugins/check_ntp.c:870 plugins/check_ntp_peer.c:712 | ||
3026 | msgid "Critical threshold for jitter" | 2310 | msgid "Critical threshold for jitter" |
3027 | msgstr "Seuil critique pour la variation (jitter)" | 2311 | msgstr "Seuil critique pour la variation (jitter)" |
3028 | 2312 | ||
3029 | #: plugins/check_ntp.c:880 | ||
3030 | msgid "Normal offset check:" | 2313 | msgid "Normal offset check:" |
3031 | msgstr "Vérification normale du décalage:" | 2314 | msgstr "Vérification normale du décalage:" |
3032 | 2315 | ||
3033 | #: plugins/check_ntp.c:883 plugins/check_ntp_peer.c:737 | ||
3034 | msgid "" | 2316 | msgid "" |
3035 | "Check jitter too, avoiding critical notifications if jitter isn't available" | 2317 | "Check jitter too, avoiding critical notifications if jitter isn't available" |
3036 | msgstr "" | 2318 | msgstr "" |
3037 | "Vérifier aussi la variation (jitter) en évitant les notifications s'il n'est " | 2319 | "Vérifier aussi la variation (jitter) en évitant les notifications s'il n'est " |
3038 | "pas dispoible" | 2320 | "pas dispoible" |
3039 | 2321 | ||
3040 | #: plugins/check_ntp.c:884 plugins/check_ntp_peer.c:738 | ||
3041 | msgid "(See Notes above for more details on thresholds formats):" | 2322 | msgid "(See Notes above for more details on thresholds formats):" |
3042 | msgstr "" | 2323 | msgstr "" |
3043 | "(Voir les Notes ci-dessus pour plus de détails sur le format des seuils)" | 2324 | "(Voir les Notes ci-dessus pour plus de détails sur le format des seuils)" |
3044 | 2325 | ||
3045 | #: plugins/check_ntp.c:889 plugins/check_ntp.c:896 | ||
3046 | msgid "WARNING: check_ntp is deprecated. Please use check_ntp_peer or" | 2326 | msgid "WARNING: check_ntp is deprecated. Please use check_ntp_peer or" |
3047 | msgstr "ATTENTION: check_ntp est périmé, utilisez plutôt check_ntp_peer" | 2327 | msgstr "ATTENTION: check_ntp est périmé, utilisez plutôt check_ntp_peer" |
3048 | 2328 | ||
3049 | #: plugins/check_ntp.c:890 plugins/check_ntp.c:897 | ||
3050 | msgid "check_ntp_time instead." | 2329 | msgid "check_ntp_time instead." |
3051 | msgstr "ou check_ntp_time." | 2330 | msgstr "ou check_ntp_time." |
3052 | 2331 | ||
3053 | #: plugins/check_ntp_peer.c:632 | ||
3054 | msgid "Server not synchronized" | 2332 | msgid "Server not synchronized" |
3055 | msgstr "Le serveur n'est pas synchronisé" | 2333 | msgstr "Le serveur n'est pas synchronisé" |
3056 | 2334 | ||
3057 | #: plugins/check_ntp_peer.c:634 | ||
3058 | msgid "Server has the LI_ALARM bit set" | 2335 | msgid "Server has the LI_ALARM bit set" |
3059 | msgstr "" | 2336 | msgstr "" |
3060 | 2337 | ||
3061 | #: plugins/check_ntp_peer.c:700 | ||
3062 | msgid "" | 2338 | msgid "" |
3063 | "Returns UNKNOWN instead of CRITICAL or WARNING if server isn't synchronized" | 2339 | "Returns UNKNOWN instead of CRITICAL or WARNING if server isn't synchronized" |
3064 | msgstr "" | 2340 | msgstr "" |
3065 | "Retourne INCONNU au lieu de CRITIQUE ou AVERTISSEMENT si le serveur n'est " | 2341 | "Retourne INCONNU au lieu de CRITIQUE ou AVERTISSEMENT si le serveur n'est " |
3066 | "pas synchronisé" | 2342 | "pas synchronisé" |
3067 | 2343 | ||
3068 | #: plugins/check_ntp_peer.c:706 | ||
3069 | #, fuzzy | 2344 | #, fuzzy |
3070 | msgid "Warning threshold for stratum of server's synchronization peer" | 2345 | msgid "Warning threshold for stratum of server's synchronization peer" |
3071 | msgstr "Seuil d'avertissement pour le stratum" | 2346 | msgstr "Seuil d'avertissement pour le stratum" |
3072 | 2347 | ||
3073 | #: plugins/check_ntp_peer.c:708 | ||
3074 | #, fuzzy | 2348 | #, fuzzy |
3075 | msgid "Critical threshold for stratum of server's synchronization peer" | 2349 | msgid "Critical threshold for stratum of server's synchronization peer" |
3076 | msgstr "Seuil critique pour le stratum" | 2350 | msgstr "Seuil critique pour le stratum" |
3077 | 2351 | ||
3078 | #: plugins/check_ntp_peer.c:714 | ||
3079 | msgid "Warning threshold for number of usable time sources (\"truechimers\")" | 2352 | msgid "Warning threshold for number of usable time sources (\"truechimers\")" |
3080 | msgstr "" | 2353 | msgstr "" |
3081 | "Seuil d'avertissement pour le nombre de sources de temps utilisable " | 2354 | "Seuil d'avertissement pour le nombre de sources de temps utilisable " |
3082 | "(\"truechimers\")" | 2355 | "(\"truechimers\")" |
3083 | 2356 | ||
3084 | #: plugins/check_ntp_peer.c:716 | ||
3085 | msgid "Critical threshold for number of usable time sources (\"truechimers\")" | 2357 | msgid "Critical threshold for number of usable time sources (\"truechimers\")" |
3086 | msgstr "" | 2358 | msgstr "" |
3087 | "Seuil critique pour le nombre de sources de temps utilisable " | 2359 | "Seuil critique pour le nombre de sources de temps utilisable " |
3088 | "(\"truechimers\")" | 2360 | "(\"truechimers\")" |
3089 | 2361 | ||
3090 | #: plugins/check_ntp_peer.c:721 | ||
3091 | msgid "This plugin checks an NTP server independent of any commandline" | 2362 | msgid "This plugin checks an NTP server independent of any commandline" |
3092 | msgstr "Ce plugin vérifie un serveur NTP sans recours aux programmes de" | 2363 | msgstr "Ce plugin vérifie un serveur NTP sans recours aux programmes de" |
3093 | 2364 | ||
3094 | #: plugins/check_ntp_peer.c:722 | ||
3095 | msgid "programs or external libraries." | 2365 | msgid "programs or external libraries." |
3096 | msgstr "la ligne de commande ou libraries externes" | 2366 | msgstr "la ligne de commande ou libraries externes" |
3097 | 2367 | ||
3098 | #: plugins/check_ntp_peer.c:725 | ||
3099 | msgid "Use this plugin to check the health of an NTP server. It supports" | 2368 | msgid "Use this plugin to check the health of an NTP server. It supports" |
3100 | msgstr "" | 2369 | msgstr "" |
3101 | "Utilisez ce plugin pour vérifier le service NTP sur l'hôte. Il supporte la" | 2370 | "Utilisez ce plugin pour vérifier le service NTP sur l'hôte. Il supporte la" |
3102 | 2371 | ||
3103 | #: plugins/check_ntp_peer.c:726 | ||
3104 | msgid "checking the offset with the sync peer, the jitter and stratum. This" | 2372 | msgid "checking the offset with the sync peer, the jitter and stratum. This" |
3105 | msgstr "" | 2373 | msgstr "" |
3106 | "vérification du décalage avec le pair se synchronisation, la variation " | 2374 | "vérification du décalage avec le pair se synchronisation, la variation " |
3107 | "(jitter) et le stratum." | 2375 | "(jitter) et le stratum." |
3108 | 2376 | ||
3109 | #: plugins/check_ntp_peer.c:727 | ||
3110 | msgid "plugin will not check the clock offset between the local host and NTP" | 2377 | msgid "plugin will not check the clock offset between the local host and NTP" |
3111 | msgstr "" | 2378 | msgstr "" |
3112 | "Ce plugin ne vérifie pas le décalage entre le serveur local et le serveur" | 2379 | "Ce plugin ne vérifie pas le décalage entre le serveur local et le serveur" |
3113 | 2380 | ||
3114 | #: plugins/check_ntp_peer.c:728 | ||
3115 | msgid "server; please use check_ntp_time for that purpose." | 2381 | msgid "server; please use check_ntp_time for that purpose." |
3116 | msgstr "NTP; utilisez plutôt check_ntp_time à cette fin." | 2382 | msgstr "NTP; utilisez plutôt check_ntp_time à cette fin." |
3117 | 2383 | ||
3118 | #: plugins/check_ntp_peer.c:734 | ||
3119 | msgid "Simple NTP server check:" | 2384 | msgid "Simple NTP server check:" |
3120 | msgstr "Vérification simple du serveur NTP:" | 2385 | msgstr "Vérification simple du serveur NTP:" |
3121 | 2386 | ||
3122 | #: plugins/check_ntp_peer.c:741 | ||
3123 | msgid "Only check the number of usable time sources (\"truechimers\"):" | 2387 | msgid "Only check the number of usable time sources (\"truechimers\"):" |
3124 | msgstr "" | 2388 | msgstr "" |
3125 | 2389 | ||
3126 | #: plugins/check_ntp_peer.c:744 | ||
3127 | msgid "Check only stratum:" | 2390 | msgid "Check only stratum:" |
3128 | msgstr "Vérification du stratum seulement:" | 2391 | msgstr "Vérification du stratum seulement:" |
3129 | 2392 | ||
3130 | #: plugins/check_ntp_time.c:607 | ||
3131 | msgid "This plugin checks the clock offset with the ntp server" | 2393 | msgid "This plugin checks the clock offset with the ntp server" |
3132 | msgstr "Ce plugin vérifie le décalage de l'horloge avec le serveur ntp" | 2394 | msgstr "Ce plugin vérifie le décalage de l'horloge avec le serveur ntp" |
3133 | 2395 | ||
3134 | #: plugins/check_ntp_time.c:617 | ||
3135 | msgid "Returns UNKNOWN instead of CRITICAL if offset cannot be found" | 2396 | msgid "Returns UNKNOWN instead of CRITICAL if offset cannot be found" |
3136 | msgstr "Retourne INCONNU au lieu de CRITIQUE si le décalage est inconnu" | 2397 | msgstr "Retourne INCONNU au lieu de CRITIQUE si le décalage est inconnu" |
3137 | 2398 | ||
3138 | #: plugins/check_ntp_time.c:623 | ||
3139 | msgid "Expected offset of the ntp server relative to local server (seconds)" | 2399 | msgid "Expected offset of the ntp server relative to local server (seconds)" |
3140 | msgstr "" | 2400 | msgstr "" |
3141 | 2401 | ||
3142 | #: plugins/check_ntp_time.c:628 | ||
3143 | msgid "This plugin checks the clock offset between the local host and a" | 2402 | msgid "This plugin checks the clock offset between the local host and a" |
3144 | msgstr "Ce plugin vérifie le décalage de l'horloge entre se serveur local et" | 2403 | msgstr "Ce plugin vérifie le décalage de l'horloge entre se serveur local et" |
3145 | 2404 | ||
3146 | #: plugins/check_ntp_time.c:629 | ||
3147 | msgid "remote NTP server. It is independent of any commandline programs or" | 2405 | msgid "remote NTP server. It is independent of any commandline programs or" |
3148 | msgstr "le serveur NTP distant. Il ne fait aucun recours aux programmes de" | 2406 | msgstr "le serveur NTP distant. Il ne fait aucun recours aux programmes de" |
3149 | 2407 | ||
3150 | #: plugins/check_ntp_time.c:630 | ||
3151 | msgid "external libraries." | 2408 | msgid "external libraries." |
3152 | msgstr "la ligne de commande ou libraries externes." | 2409 | msgstr "la ligne de commande ou libraries externes." |
3153 | 2410 | ||
3154 | #: plugins/check_ntp_time.c:634 | ||
3155 | msgid "If you'd rather want to monitor an NTP server, please use" | 2411 | msgid "If you'd rather want to monitor an NTP server, please use" |
3156 | msgstr "Si vous voulez plutôt surveiller un serveur NTP, veuillez" | 2412 | msgstr "Si vous voulez plutôt surveiller un serveur NTP, veuillez" |
3157 | 2413 | ||
3158 | #: plugins/check_ntp_time.c:635 | ||
3159 | msgid "check_ntp_peer." | 2414 | msgid "check_ntp_peer." |
3160 | msgstr "utiliser check_ntp_peer." | 2415 | msgstr "utiliser check_ntp_peer." |
3161 | 2416 | ||
3162 | #: plugins/check_ntp_time.c:636 | ||
3163 | msgid "--time-offset is useful for compensating for servers with known" | 2417 | msgid "--time-offset is useful for compensating for servers with known" |
3164 | msgstr "" | 2418 | msgstr "" |
3165 | 2419 | ||
3166 | #: plugins/check_ntp_time.c:637 | ||
3167 | msgid "and expected clock skew." | 2420 | msgid "and expected clock skew." |
3168 | msgstr "" | 2421 | msgstr "" |
3169 | 2422 | ||
3170 | #: plugins/check_nwstat.c:194 | ||
3171 | #, c-format | 2423 | #, c-format |
3172 | msgid "NetWare %s: " | 2424 | msgid "NetWare %s: " |
3173 | msgstr "NetWare %s: " | 2425 | msgstr "NetWare %s: " |
3174 | 2426 | ||
3175 | #: plugins/check_nwstat.c:232 | ||
3176 | #, c-format | 2427 | #, c-format |
3177 | msgid "Up %s," | 2428 | msgid "Up %s," |
3178 | msgstr "Démarré %s," | 2429 | msgstr "Démarré %s," |
3179 | 2430 | ||
3180 | #: plugins/check_nwstat.c:240 | ||
3181 | #, c-format | 2431 | #, c-format |
3182 | msgid "Load %s - %s %s-min load average = %lu%%|load%s=%lu;%lu;%lu;0;100" | 2432 | msgid "Load %s - %s %s-min load average = %lu%%|load%s=%lu;%lu;%lu;0;100" |
3183 | msgstr "" | 2433 | msgstr "" |
3184 | "Charge %s - %s %s charge système minimale = %lu%%|charge%s=%lu;%lu;%lu;0;100" | 2434 | "Charge %s - %s %s charge système minimale = %lu%%|charge%s=%lu;%lu;%lu;0;100" |
3185 | 2435 | ||
3186 | #: plugins/check_nwstat.c:268 | ||
3187 | #, c-format | 2436 | #, c-format |
3188 | msgid "Conns %s - %lu current connections|Conns=%lu;%lu;%lu;;" | 2437 | msgid "Conns %s - %lu current connections|Conns=%lu;%lu;%lu;;" |
3189 | msgstr "Conns %s - %lu connections actuelles|Conns=%lu;%lu;%lu;;" | 2438 | msgstr "Conns %s - %lu connections actuelles|Conns=%lu;%lu;%lu;;" |
3190 | 2439 | ||
3191 | #: plugins/check_nwstat.c:293 | ||
3192 | #, c-format | 2440 | #, c-format |
3193 | msgid "%s: Long term cache hits = %lu%%" | 2441 | msgid "%s: Long term cache hits = %lu%%" |
3194 | msgstr "%s: Accès cache longue durée = %lu%%" | 2442 | msgstr "%s: Accès cache longue durée = %lu%%" |
3195 | 2443 | ||
3196 | #: plugins/check_nwstat.c:315 | ||
3197 | #, c-format | 2444 | #, c-format |
3198 | msgid "%s: Total cache buffers = %lu|Cachebuffers=%lu;%lu;%lu;;" | 2445 | msgid "%s: Total cache buffers = %lu|Cachebuffers=%lu;%lu;%lu;;" |
3199 | msgstr "%s: Total des caches tampons= %lu|Caches Tampons=%lu,%lu;%lu;;" | 2446 | msgstr "%s: Total des caches tampons= %lu|Caches Tampons=%lu,%lu;%lu;;" |
3200 | 2447 | ||
3201 | #: plugins/check_nwstat.c:340 | ||
3202 | #, c-format | 2448 | #, c-format |
3203 | msgid "%s: Dirty cache buffers = %lu|Dirty-Cache-Buffers=%lu;%lu;%lu;;" | 2449 | msgid "%s: Dirty cache buffers = %lu|Dirty-Cache-Buffers=%lu;%lu;%lu;;" |
3204 | msgstr "%s: cache tampons sales = %lu|caches tampons sales=%lu;%lu;%lu;;" | 2450 | msgstr "%s: cache tampons sales = %lu|caches tampons sales=%lu;%lu;%lu;;" |
3205 | 2451 | ||
3206 | #: plugins/check_nwstat.c:365 | ||
3207 | #, c-format | 2452 | #, c-format |
3208 | msgid "%s: LRU sitting time = %lu minutes" | 2453 | msgid "%s: LRU sitting time = %lu minutes" |
3209 | msgstr "" | 2454 | msgstr "" |
3210 | 2455 | ||
3211 | #: plugins/check_nwstat.c:382 plugins/check_nwstat.c:410 | ||
3212 | #: plugins/check_nwstat.c:437 plugins/check_nwstat.c:470 | ||
3213 | #: plugins/check_nwstat.c:650 plugins/check_nwstat.c:676 | ||
3214 | #: plugins/check_nwstat.c:707 plugins/check_nwstat.c:753 | ||
3215 | #: plugins/check_nwstat.c:777 | ||
3216 | #, c-format | 2456 | #, c-format |
3217 | msgid "CRITICAL - Volume '%s' does not exist!" | 2457 | msgid "CRITICAL - Volume '%s' does not exist!" |
3218 | msgstr "CRITIQUE: Le volume '%s' n'existe pas!" | 2458 | msgstr "CRITIQUE: Le volume '%s' n'existe pas!" |
3219 | 2459 | ||
3220 | #: plugins/check_nwstat.c:391 | ||
3221 | #, c-format | 2460 | #, c-format |
3222 | msgid "%s%lu KB free on volume %s|KBFree%s=%lu;%lu;%lu;;" | 2461 | msgid "%s%lu KB free on volume %s|KBFree%s=%lu;%lu;%lu;;" |
3223 | msgstr "%s%lu KB libre sur le volume %s|KB libres%s=%lu;%lu;%lu;;" | 2462 | msgstr "%s%lu KB libre sur le volume %s|KB libres%s=%lu;%lu;%lu;;" |
3224 | 2463 | ||
3225 | #: plugins/check_nwstat.c:392 plugins/check_nwstat.c:420 | ||
3226 | #: plugins/check_nwstat.c:447 plugins/check_nwstat.c:659 | ||
3227 | #: plugins/check_nwstat.c:685 plugins/check_nwstat.c:761 | ||
3228 | msgid "Only " | 2464 | msgid "Only " |
3229 | msgstr "Seulement" | 2465 | msgstr "Seulement" |
3230 | 2466 | ||
3231 | #: plugins/check_nwstat.c:419 | ||
3232 | #, c-format | 2467 | #, c-format |
3233 | msgid "%s%lu MB free on volume %s|MBFree%s=%lu;%lu;%lu;;" | 2468 | msgid "%s%lu MB free on volume %s|MBFree%s=%lu;%lu;%lu;;" |
3234 | msgstr "%s%lu MB libre sur le volume %s|MBlibre%s=%lu;%lu;%lu;;" | 2469 | msgstr "%s%lu MB libre sur le volume %s|MBlibre%s=%lu;%lu;%lu;;" |
3235 | 2470 | ||
3236 | #: plugins/check_nwstat.c:446 | ||
3237 | #, c-format | 2471 | #, c-format |
3238 | msgid "%s%lu MB used on volume %s|MBUsed%s=%lu;%lu;%lu;;" | 2472 | msgid "%s%lu MB used on volume %s|MBUsed%s=%lu;%lu;%lu;;" |
3239 | msgstr "" | 2473 | msgstr "" |
3240 | 2474 | ||
3241 | #: plugins/check_nwstat.c:494 | ||
3242 | #, c-format | 2475 | #, c-format |
3243 | msgid "" | 2476 | msgid "" |
3244 | "%lu MB (%lu%%) free on volume %s - total %lu MB|FreeMB%s=%lu;%lu;%lu;0;100" | 2477 | "%lu MB (%lu%%) free on volume %s - total %lu MB|FreeMB%s=%lu;%lu;%lu;0;100" |
@@ -3246,1138 +2479,877 @@ msgstr "" | |||
3246 | "%lu MB (%lu%%) libre sur le volume %s - total %lu MB|MBlibre%s=%lu;%lu;" | 2479 | "%lu MB (%lu%%) libre sur le volume %s - total %lu MB|MBlibre%s=%lu;%lu;" |
3247 | "%lu;0;100" | 2480 | "%lu;0;100" |
3248 | 2481 | ||
3249 | #: plugins/check_nwstat.c:528 | ||
3250 | #, c-format | 2482 | #, c-format |
3251 | msgid "Directory Services Database is %s (DS version %s)" | 2483 | msgid "Directory Services Database is %s (DS version %s)" |
3252 | msgstr "La base de données Directory Services est %s (DS version %s)" | 2484 | msgstr "La base de données Directory Services est %s (DS version %s)" |
3253 | 2485 | ||
3254 | #: plugins/check_nwstat.c:545 | ||
3255 | #, c-format | 2486 | #, c-format |
3256 | msgid "Logins are %s" | 2487 | msgid "Logins are %s" |
3257 | msgstr "Les logins sont %s" | 2488 | msgstr "Les logins sont %s" |
3258 | 2489 | ||
3259 | #: plugins/check_nwstat.c:545 | ||
3260 | msgid "enabled" | 2490 | msgid "enabled" |
3261 | msgstr "activé" | 2491 | msgstr "activé" |
3262 | 2492 | ||
3263 | #: plugins/check_nwstat.c:545 | ||
3264 | msgid "disabled" | 2493 | msgid "disabled" |
3265 | msgstr "désactivé" | 2494 | msgstr "désactivé" |
3266 | 2495 | ||
3267 | #: plugins/check_nwstat.c:560 | ||
3268 | msgid "CRITICAL - NRM Status is bad!" | 2496 | msgid "CRITICAL - NRM Status is bad!" |
3269 | msgstr "CRITIQUE - le statut NRM est mauvais!" | 2497 | msgstr "CRITIQUE - le statut NRM est mauvais!" |
3270 | 2498 | ||
3271 | #: plugins/check_nwstat.c:565 | ||
3272 | msgid "Warning - NRM Status is suspect!" | 2499 | msgid "Warning - NRM Status is suspect!" |
3273 | msgstr "" | 2500 | msgstr "" |
3274 | 2501 | ||
3275 | #: plugins/check_nwstat.c:568 | ||
3276 | msgid "OK - NRM Status is good!" | 2502 | msgid "OK - NRM Status is good!" |
3277 | msgstr "OK - Le status du NRM est bon!" | 2503 | msgstr "OK - Le status du NRM est bon!" |
3278 | 2504 | ||
3279 | #: plugins/check_nwstat.c:610 | ||
3280 | #, c-format | 2505 | #, c-format |
3281 | msgid "%lu of %lu (%lu%%) packet receive buffers used" | 2506 | msgid "%lu of %lu (%lu%%) packet receive buffers used" |
3282 | msgstr "%lu de %lu (%lu%%) paquets du tampon de réception utilisés" | 2507 | msgstr "%lu de %lu (%lu%%) paquets du tampon de réception utilisés" |
3283 | 2508 | ||
3284 | #: plugins/check_nwstat.c:634 | ||
3285 | #, c-format | 2509 | #, c-format |
3286 | msgid "%lu entries in SAP table" | 2510 | msgid "%lu entries in SAP table" |
3287 | msgstr "%lu entrées dans la table SAP" | 2511 | msgstr "%lu entrées dans la table SAP" |
3288 | 2512 | ||
3289 | #: plugins/check_nwstat.c:636 | ||
3290 | #, c-format | 2513 | #, c-format |
3291 | msgid "%lu entries in SAP table for SAP type %d" | 2514 | msgid "%lu entries in SAP table for SAP type %d" |
3292 | msgstr "%lu entrées dans la table SAP pour le type SAP %d" | 2515 | msgstr "%lu entrées dans la table SAP pour le type SAP %d" |
3293 | 2516 | ||
3294 | #: plugins/check_nwstat.c:658 | ||
3295 | #, c-format | 2517 | #, c-format |
3296 | msgid "%s%lu KB purgeable on volume %s|Purge%s=%lu;%lu;%lu;;" | 2518 | msgid "%s%lu KB purgeable on volume %s|Purge%s=%lu;%lu;%lu;;" |
3297 | msgstr "%s%lu KB effaçables sur le volume %s|Purge%s=%lu;%lu;%lu;;" | 2519 | msgstr "%s%lu KB effaçables sur le volume %s|Purge%s=%lu;%lu;%lu;;" |
3298 | 2520 | ||
3299 | #: plugins/check_nwstat.c:684 | ||
3300 | #, c-format | 2521 | #, c-format |
3301 | msgid "%s%lu MB purgeable on volume %s|Purge%s=%lu;%lu;%lu;;" | 2522 | msgid "%s%lu MB purgeable on volume %s|Purge%s=%lu;%lu;%lu;;" |
3302 | msgstr "%s%lu KB effaçables sur le volume %s|Purge%s=%lu;%lu;%lu;;" | 2523 | msgstr "%s%lu KB effaçables sur le volume %s|Purge%s=%lu;%lu;%lu;;" |
3303 | 2524 | ||
3304 | #: plugins/check_nwstat.c:730 | ||
3305 | #, c-format | 2525 | #, c-format |
3306 | msgid "%lu MB (%lu%%) purgeable on volume %s|Purgeable%s=%lu;%lu;%lu;0;100" | 2526 | msgid "%lu MB (%lu%%) purgeable on volume %s|Purgeable%s=%lu;%lu;%lu;0;100" |
3307 | msgstr "" | 2527 | msgstr "" |
3308 | "%lu MB (%lu%%) effaçables sur le volume %s|Effacable%s=%lu;%lu;%lu;0;100" | 2528 | "%lu MB (%lu%%) effaçables sur le volume %s|Effacable%s=%lu;%lu;%lu;0;100" |
3309 | 2529 | ||
3310 | #: plugins/check_nwstat.c:761 | ||
3311 | #, c-format | 2530 | #, c-format |
3312 | msgid "%s%lu KB not yet purgeable on volume %s" | 2531 | msgid "%s%lu KB not yet purgeable on volume %s" |
3313 | msgstr "%s%lu KB pas encore effaçables sur le volume %s" | 2532 | msgstr "%s%lu KB pas encore effaçables sur le volume %s" |
3314 | 2533 | ||
3315 | #: plugins/check_nwstat.c:800 | ||
3316 | #, c-format | 2534 | #, c-format |
3317 | msgid "%lu MB (%lu%%) not yet purgeable on volume %s" | 2535 | msgid "%lu MB (%lu%%) not yet purgeable on volume %s" |
3318 | msgstr "%lu MB (%lu%%) pas encore effaçables sur le volume %s" | 2536 | msgstr "%lu MB (%lu%%) pas encore effaçables sur le volume %s" |
3319 | 2537 | ||
3320 | #: plugins/check_nwstat.c:821 | ||
3321 | #, c-format | 2538 | #, c-format |
3322 | msgid "%lu open files|Openfiles=%lu;%lu;%lu;0,0" | 2539 | msgid "%lu open files|Openfiles=%lu;%lu;%lu;0,0" |
3323 | msgstr "" | 2540 | msgstr "" |
3324 | 2541 | ||
3325 | #: plugins/check_nwstat.c:846 | ||
3326 | #, c-format | 2542 | #, c-format |
3327 | msgid "%lu abended threads|Abends=%lu;%lu;%lu;;" | 2543 | msgid "%lu abended threads|Abends=%lu;%lu;%lu;;" |
3328 | msgstr "%lu processus avortés|Avortés=%lu;%lu;%lu;;" | 2544 | msgstr "%lu processus avortés|Avortés=%lu;%lu;%lu;;" |
3329 | 2545 | ||
3330 | #: plugins/check_nwstat.c:881 | ||
3331 | #, c-format | 2546 | #, c-format |
3332 | msgid "%lu current service processes (%lu max)|Processes=%lu;%lu;%lu;0;%lu" | 2547 | msgid "%lu current service processes (%lu max)|Processes=%lu;%lu;%lu;0;%lu" |
3333 | msgstr "%lu processus services actuels (%lu max)|Processus=%lu;%lu;%lu;0;%lu" | 2548 | msgstr "%lu processus services actuels (%lu max)|Processus=%lu;%lu;%lu;0;%lu" |
3334 | 2549 | ||
3335 | #: plugins/check_nwstat.c:904 | ||
3336 | msgid "CRITICAL - Time not in sync with network!" | 2550 | msgid "CRITICAL - Time not in sync with network!" |
3337 | msgstr "CRITIQUE - Le temps n'est pas synchronisé avec le réseau!" | 2551 | msgstr "CRITIQUE - Le temps n'est pas synchronisé avec le réseau!" |
3338 | 2552 | ||
3339 | #: plugins/check_nwstat.c:907 | ||
3340 | msgid "OK - Time in sync with network!" | 2553 | msgid "OK - Time in sync with network!" |
3341 | msgstr "OK - Le temps est synchronisé avec le réseau!" | 2554 | msgstr "OK - Le temps est synchronisé avec le réseau!" |
3342 | 2555 | ||
3343 | #: plugins/check_nwstat.c:930 | ||
3344 | #, c-format | 2556 | #, c-format |
3345 | msgid "LRU sitting time = %lu seconds" | 2557 | msgid "LRU sitting time = %lu seconds" |
3346 | msgstr "LRU temps d'attente = %lu secondes" | 2558 | msgstr "LRU temps d'attente = %lu secondes" |
3347 | 2559 | ||
3348 | #: plugins/check_nwstat.c:949 | ||
3349 | #, c-format | 2560 | #, c-format |
3350 | msgid "Dirty cache buffers = %lu%% of the total|DCB=%lu;%lu;%lu;0;100" | 2561 | msgid "Dirty cache buffers = %lu%% of the total|DCB=%lu;%lu;%lu;0;100" |
3351 | msgstr "Buffers cache sales = %lu%% du total|DCB=%lu;%lu;%lu;0;100" | 2562 | msgstr "Buffers cache sales = %lu%% du total|DCB=%lu;%lu;%lu;0;100" |
3352 | 2563 | ||
3353 | #: plugins/check_nwstat.c:971 | ||
3354 | #, c-format | 2564 | #, c-format |
3355 | msgid "Total cache buffers = %lu%% of the original|TCB=%lu;%lu;%lu;0;100" | 2565 | msgid "Total cache buffers = %lu%% of the original|TCB=%lu;%lu;%lu;0;100" |
3356 | msgstr "cache tampons totaux= %lu%% de l'original|TCB=%lu;%lu;%lu;0;100" | 2566 | msgstr "cache tampons totaux= %lu%% de l'original|TCB=%lu;%lu;%lu;0;100" |
3357 | 2567 | ||
3358 | #: plugins/check_nwstat.c:989 | ||
3359 | #, c-format | 2568 | #, c-format |
3360 | msgid "NDS Version %s" | 2569 | msgid "NDS Version %s" |
3361 | msgstr "Version NDS %s" | 2570 | msgstr "Version NDS %s" |
3362 | 2571 | ||
3363 | #: plugins/check_nwstat.c:1005 | ||
3364 | #, c-format | 2572 | #, c-format |
3365 | msgid "Up %s" | 2573 | msgid "Up %s" |
3366 | msgstr "Démarré %s" | 2574 | msgstr "Démarré %s" |
3367 | 2575 | ||
3368 | #: plugins/check_nwstat.c:1019 | ||
3369 | #, c-format | 2576 | #, c-format |
3370 | msgid "Module %s version %s is loaded" | 2577 | msgid "Module %s version %s is loaded" |
3371 | msgstr "Le Module %s version %s est chargé" | 2578 | msgstr "Le Module %s version %s est chargé" |
3372 | 2579 | ||
3373 | #: plugins/check_nwstat.c:1022 | ||
3374 | #, c-format | 2580 | #, c-format |
3375 | msgid "Module %s is not loaded" | 2581 | msgid "Module %s is not loaded" |
3376 | msgstr "Le Module %s n'est pas chargé" | 2582 | msgstr "Le Module %s n'est pas chargé" |
3377 | 2583 | ||
3378 | #: plugins/check_nwstat.c:1033 plugins/check_nwstat.c:1059 | ||
3379 | #: plugins/check_nwstat.c:1085 plugins/check_nwstat.c:1111 | ||
3380 | #: plugins/check_nwstat.c:1137 plugins/check_nwstat.c:1163 | ||
3381 | #: plugins/check_nwstat.c:1189 plugins/check_nwstat.c:1215 | ||
3382 | #: plugins/check_nwstat.c:1241 plugins/check_nwstat.c:1267 | ||
3383 | #, c-format | 2584 | #, c-format |
3384 | msgid "CRITICAL - Value '%s' does not exist!" | 2585 | msgid "CRITICAL - Value '%s' does not exist!" |
3385 | msgstr "CRITIQUE: Le valeur '%s' n'existe pas!" | 2586 | msgstr "CRITIQUE: Le valeur '%s' n'existe pas!" |
3386 | 2587 | ||
3387 | #: plugins/check_nwstat.c:1042 plugins/check_nwstat.c:1068 | ||
3388 | #: plugins/check_nwstat.c:1094 plugins/check_nwstat.c:1120 | ||
3389 | #: plugins/check_nwstat.c:1146 plugins/check_nwstat.c:1172 | ||
3390 | #: plugins/check_nwstat.c:1198 plugins/check_nwstat.c:1224 | ||
3391 | #: plugins/check_nwstat.c:1250 plugins/check_nwstat.c:1276 | ||
3392 | #, c-format | 2588 | #, c-format |
3393 | msgid "%s is %lu|%s=%lu;%lu;%lu;;" | 2589 | msgid "%s is %lu|%s=%lu;%lu;%lu;;" |
3394 | msgstr "%s est %lu|%s=%lu;%lu;%lu;;" | 2590 | msgstr "%s est %lu|%s=%lu;%lu;%lu;;" |
3395 | 2591 | ||
3396 | #: plugins/check_nwstat.c:1289 plugins/check_overcr.c:285 | ||
3397 | msgid "Nothing to check!\n" | 2592 | msgid "Nothing to check!\n" |
3398 | msgstr "Rien à vérifier!\n" | 2593 | msgstr "Rien à vérifier!\n" |
3399 | 2594 | ||
3400 | #: plugins/check_nwstat.c:1371 plugins/check_overcr.c:355 | ||
3401 | msgid "Server port an integer\n" | 2595 | msgid "Server port an integer\n" |
3402 | msgstr "Le port du serveur doit être un nombre entier\n" | 2596 | msgstr "Le port du serveur doit être un nombre entier\n" |
3403 | 2597 | ||
3404 | #: plugins/check_nwstat.c:1601 | ||
3405 | msgid "This plugin attempts to contact the MRTGEXT NLM running on a" | 2598 | msgid "This plugin attempts to contact the MRTGEXT NLM running on a" |
3406 | msgstr "Ce plugin essaye de contacter le NLM MRTGEXT qui s'exécute sur" | 2599 | msgstr "Ce plugin essaye de contacter le NLM MRTGEXT qui s'exécute sur" |
3407 | 2600 | ||
3408 | #: plugins/check_nwstat.c:1602 | ||
3409 | msgid "Novell server to gather the requested system information." | 2601 | msgid "Novell server to gather the requested system information." |
3410 | msgstr "un serveur Novell pour récupérer l'information système demandée." | 2602 | msgstr "un serveur Novell pour récupérer l'information système demandée." |
3411 | 2603 | ||
3412 | #: plugins/check_nwstat.c:1614 plugins/check_overcr.c:436 | ||
3413 | msgid "Variable to check. Valid variables include:" | 2604 | msgid "Variable to check. Valid variables include:" |
3414 | msgstr "Variable à vérifier. Les variables valides sont:" | 2605 | msgstr "Variable à vérifier. Les variables valides sont:" |
3415 | 2606 | ||
3416 | #: plugins/check_nwstat.c:1615 | ||
3417 | msgid "LOAD1 = 1 minute average CPU load" | 2607 | msgid "LOAD1 = 1 minute average CPU load" |
3418 | msgstr "" | 2608 | msgstr "" |
3419 | 2609 | ||
3420 | #: plugins/check_nwstat.c:1616 | ||
3421 | msgid "LOAD5 = 5 minute average CPU load" | 2610 | msgid "LOAD5 = 5 minute average CPU load" |
3422 | msgstr "" | 2611 | msgstr "" |
3423 | 2612 | ||
3424 | #: plugins/check_nwstat.c:1617 | ||
3425 | msgid "LOAD15 = 15 minute average CPU load" | 2613 | msgid "LOAD15 = 15 minute average CPU load" |
3426 | msgstr "" | 2614 | msgstr "" |
3427 | 2615 | ||
3428 | #: plugins/check_nwstat.c:1618 | ||
3429 | msgid "CSPROCS = number of current service processes (NW 5.x only)" | 2616 | msgid "CSPROCS = number of current service processes (NW 5.x only)" |
3430 | msgstr "CSPROCS = nombres de processus services actuels (NW 5.x seulement)" | 2617 | msgstr "CSPROCS = nombres de processus services actuels (NW 5.x seulement)" |
3431 | 2618 | ||
3432 | #: plugins/check_nwstat.c:1619 | ||
3433 | msgid "ABENDS = number of abended threads (NW 5.x only)" | 2619 | msgid "ABENDS = number of abended threads (NW 5.x only)" |
3434 | msgstr "" | 2620 | msgstr "" |
3435 | 2621 | ||
3436 | #: plugins/check_nwstat.c:1620 | ||
3437 | msgid "UPTIME = server uptime" | 2622 | msgid "UPTIME = server uptime" |
3438 | msgstr "" | 2623 | msgstr "" |
3439 | 2624 | ||
3440 | #: plugins/check_nwstat.c:1621 | ||
3441 | msgid "LTCH = percent long term cache hits" | 2625 | msgid "LTCH = percent long term cache hits" |
3442 | msgstr "" | 2626 | msgstr "" |
3443 | 2627 | ||
3444 | #: plugins/check_nwstat.c:1622 | ||
3445 | msgid "CBUFF = current number of cache buffers" | 2628 | msgid "CBUFF = current number of cache buffers" |
3446 | msgstr "" | 2629 | msgstr "" |
3447 | 2630 | ||
3448 | #: plugins/check_nwstat.c:1623 | ||
3449 | msgid "CDBUFF = current number of dirty cache buffers" | 2631 | msgid "CDBUFF = current number of dirty cache buffers" |
3450 | msgstr "" | 2632 | msgstr "" |
3451 | 2633 | ||
3452 | #: plugins/check_nwstat.c:1624 | ||
3453 | msgid "DCB = dirty cache buffers as a percentage of the total" | 2634 | msgid "DCB = dirty cache buffers as a percentage of the total" |
3454 | msgstr "" | 2635 | msgstr "" |
3455 | 2636 | ||
3456 | #: plugins/check_nwstat.c:1625 | ||
3457 | msgid "TCB = dirty cache buffers as a percentage of the original" | 2637 | msgid "TCB = dirty cache buffers as a percentage of the original" |
3458 | msgstr "" | 2638 | msgstr "" |
3459 | 2639 | ||
3460 | #: plugins/check_nwstat.c:1626 | ||
3461 | msgid "OFILES = number of open files" | 2640 | msgid "OFILES = number of open files" |
3462 | msgstr "" | 2641 | msgstr "" |
3463 | 2642 | ||
3464 | #: plugins/check_nwstat.c:1627 | ||
3465 | msgid " VMF<vol> = MB of free space on Volume <vol>" | 2643 | msgid " VMF<vol> = MB of free space on Volume <vol>" |
3466 | msgstr "" | 2644 | msgstr "" |
3467 | 2645 | ||
3468 | #: plugins/check_nwstat.c:1628 | ||
3469 | msgid " VMU<vol> = MB used space on Volume <vol>" | 2646 | msgid " VMU<vol> = MB used space on Volume <vol>" |
3470 | msgstr "" | 2647 | msgstr "" |
3471 | 2648 | ||
3472 | #: plugins/check_nwstat.c:1629 | ||
3473 | msgid " VMP<vol> = MB of purgeable space on Volume <vol>" | 2649 | msgid " VMP<vol> = MB of purgeable space on Volume <vol>" |
3474 | msgstr "" | 2650 | msgstr "" |
3475 | 2651 | ||
3476 | #: plugins/check_nwstat.c:1630 | ||
3477 | msgid " VPF<vol> = percent free space on volume <vol>" | 2652 | msgid " VPF<vol> = percent free space on volume <vol>" |
3478 | msgstr "" | 2653 | msgstr "" |
3479 | 2654 | ||
3480 | #: plugins/check_nwstat.c:1631 | ||
3481 | msgid " VKF<vol> = KB of free space on volume <vol>" | 2655 | msgid " VKF<vol> = KB of free space on volume <vol>" |
3482 | msgstr "" | 2656 | msgstr "" |
3483 | 2657 | ||
3484 | #: plugins/check_nwstat.c:1632 | ||
3485 | msgid " VPP<vol> = percent purgeable space on volume <vol>" | 2658 | msgid " VPP<vol> = percent purgeable space on volume <vol>" |
3486 | msgstr "" | 2659 | msgstr "" |
3487 | 2660 | ||
3488 | #: plugins/check_nwstat.c:1633 | ||
3489 | msgid " VKP<vol> = KB of purgeable space on volume <vol>" | 2661 | msgid " VKP<vol> = KB of purgeable space on volume <vol>" |
3490 | msgstr "" | 2662 | msgstr "" |
3491 | 2663 | ||
3492 | #: plugins/check_nwstat.c:1634 | ||
3493 | msgid " VPNP<vol> = percent not yet purgeable space on volume <vol>" | 2664 | msgid " VPNP<vol> = percent not yet purgeable space on volume <vol>" |
3494 | msgstr "" | 2665 | msgstr "" |
3495 | 2666 | ||
3496 | #: plugins/check_nwstat.c:1635 | ||
3497 | msgid " VKNP<vol> = KB of not yet purgeable space on volume <vol>" | 2667 | msgid " VKNP<vol> = KB of not yet purgeable space on volume <vol>" |
3498 | msgstr "" | 2668 | msgstr "" |
3499 | 2669 | ||
3500 | #: plugins/check_nwstat.c:1636 | ||
3501 | msgid " LRUM = LRU sitting time in minutes" | 2670 | msgid " LRUM = LRU sitting time in minutes" |
3502 | msgstr "" | 2671 | msgstr "" |
3503 | 2672 | ||
3504 | #: plugins/check_nwstat.c:1637 | ||
3505 | msgid " LRUS = LRU sitting time in seconds" | 2673 | msgid " LRUS = LRU sitting time in seconds" |
3506 | msgstr " LRUS = LRU temps d'attente en secondes" | 2674 | msgstr " LRUS = LRU temps d'attente en secondes" |
3507 | 2675 | ||
3508 | #: plugins/check_nwstat.c:1638 | ||
3509 | msgid " DSDB = check to see if DS Database is open" | 2676 | msgid " DSDB = check to see if DS Database is open" |
3510 | msgstr "" | 2677 | msgstr "" |
3511 | 2678 | ||
3512 | #: plugins/check_nwstat.c:1639 | ||
3513 | msgid " DSVER = NDS version" | 2679 | msgid " DSVER = NDS version" |
3514 | msgstr "" | 2680 | msgstr "" |
3515 | 2681 | ||
3516 | #: plugins/check_nwstat.c:1640 | ||
3517 | msgid " UPRB = used packet receive buffers" | 2682 | msgid " UPRB = used packet receive buffers" |
3518 | msgstr " UPRB = paquets du tampon de réception utilisés" | 2683 | msgstr " UPRB = paquets du tampon de réception utilisés" |
3519 | 2684 | ||
3520 | #: plugins/check_nwstat.c:1641 | ||
3521 | msgid " PUPRB = percent (of max) used packet receive buffers" | 2685 | msgid " PUPRB = percent (of max) used packet receive buffers" |
3522 | msgstr "" | 2686 | msgstr "" |
3523 | 2687 | ||
3524 | #: plugins/check_nwstat.c:1642 | ||
3525 | msgid " SAPENTRIES = number of entries in the SAP table" | 2688 | msgid " SAPENTRIES = number of entries in the SAP table" |
3526 | msgstr "" | 2689 | msgstr "" |
3527 | 2690 | ||
3528 | #: plugins/check_nwstat.c:1643 | ||
3529 | msgid " SAPENTRIES<n> = number of entries in the SAP table for SAP type <n>" | 2691 | msgid " SAPENTRIES<n> = number of entries in the SAP table for SAP type <n>" |
3530 | msgstr " SAPENTRIES<n> = entrées dans la table SAP pour le type SAP <n>" | 2692 | msgstr " SAPENTRIES<n> = entrées dans la table SAP pour le type SAP <n>" |
3531 | 2693 | ||
3532 | #: plugins/check_nwstat.c:1644 | ||
3533 | msgid " TSYNC = timesync status" | 2694 | msgid " TSYNC = timesync status" |
3534 | msgstr "" | 2695 | msgstr "" |
3535 | 2696 | ||
3536 | #: plugins/check_nwstat.c:1645 | ||
3537 | msgid " LOGINS = check to see if logins are enabled" | 2697 | msgid " LOGINS = check to see if logins are enabled" |
3538 | msgstr "" | 2698 | msgstr "" |
3539 | 2699 | ||
3540 | #: plugins/check_nwstat.c:1646 | ||
3541 | msgid " CONNS = number of currently licensed connections" | 2700 | msgid " CONNS = number of currently licensed connections" |
3542 | msgstr "" | 2701 | msgstr "" |
3543 | 2702 | ||
3544 | #: plugins/check_nwstat.c:1647 | ||
3545 | msgid " NRMH\t= NRM Summary Status" | 2703 | msgid " NRMH\t= NRM Summary Status" |
3546 | msgstr "" | 2704 | msgstr "" |
3547 | 2705 | ||
3548 | #: plugins/check_nwstat.c:1648 | ||
3549 | msgid " NRMP<stat> = Returns the current value for a NRM health item" | 2706 | msgid " NRMP<stat> = Returns the current value for a NRM health item" |
3550 | msgstr "" | 2707 | msgstr "" |
3551 | 2708 | ||
3552 | #: plugins/check_nwstat.c:1649 | ||
3553 | msgid " NRMM<stat> = Returns the current memory stats from NRM" | 2709 | msgid " NRMM<stat> = Returns the current memory stats from NRM" |
3554 | msgstr "" | 2710 | msgstr "" |
3555 | 2711 | ||
3556 | #: plugins/check_nwstat.c:1650 | ||
3557 | msgid " NRMS<stat> = Returns the current Swapfile stats from NRM" | 2712 | msgid " NRMS<stat> = Returns the current Swapfile stats from NRM" |
3558 | msgstr "" | 2713 | msgstr "" |
3559 | 2714 | ||
3560 | #: plugins/check_nwstat.c:1651 | ||
3561 | msgid " NSS1<stat> = Statistics from _Admin:Manage_NSS\\GeneralStats.xml" | 2715 | msgid " NSS1<stat> = Statistics from _Admin:Manage_NSS\\GeneralStats.xml" |
3562 | msgstr "" | 2716 | msgstr "" |
3563 | 2717 | ||
3564 | #: plugins/check_nwstat.c:1652 | ||
3565 | msgid " NSS3<stat> = Statistics from _Admin:Manage_NSS\\NameCache.xml" | 2718 | msgid " NSS3<stat> = Statistics from _Admin:Manage_NSS\\NameCache.xml" |
3566 | msgstr "" | 2719 | msgstr "" |
3567 | 2720 | ||
3568 | #: plugins/check_nwstat.c:1653 | ||
3569 | msgid " NSS4<stat> = Statistics from _Admin:Manage_NSS\\FileStats.xml" | 2721 | msgid " NSS4<stat> = Statistics from _Admin:Manage_NSS\\FileStats.xml" |
3570 | msgstr "" | 2722 | msgstr "" |
3571 | 2723 | ||
3572 | #: plugins/check_nwstat.c:1654 | ||
3573 | msgid " NSS5<stat> = Statistics from _Admin:Manage_NSS\\ObjectCache.xml" | 2724 | msgid " NSS5<stat> = Statistics from _Admin:Manage_NSS\\ObjectCache.xml" |
3574 | msgstr "" | 2725 | msgstr "" |
3575 | 2726 | ||
3576 | #: plugins/check_nwstat.c:1655 | ||
3577 | msgid " NSS6<stat> = Statistics from _Admin:Manage_NSS\\Thread.xml" | 2727 | msgid " NSS6<stat> = Statistics from _Admin:Manage_NSS\\Thread.xml" |
3578 | msgstr "" | 2728 | msgstr "" |
3579 | 2729 | ||
3580 | #: plugins/check_nwstat.c:1656 | ||
3581 | msgid "" | 2730 | msgid "" |
3582 | " NSS7<stat> = Statistics from _Admin:Manage_NSS\\AuthorizationCache.xml" | 2731 | " NSS7<stat> = Statistics from _Admin:Manage_NSS\\AuthorizationCache.xml" |
3583 | msgstr "" | 2732 | msgstr "" |
3584 | 2733 | ||
3585 | #: plugins/check_nwstat.c:1657 | ||
3586 | msgid " NLM:<nlm> = check if NLM is loaded and report version" | 2734 | msgid " NLM:<nlm> = check if NLM is loaded and report version" |
3587 | msgstr "" | 2735 | msgstr "" |
3588 | 2736 | ||
3589 | #: plugins/check_nwstat.c:1658 | ||
3590 | msgid " (e.g. NLM:TSANDS.NLM)" | 2737 | msgid " (e.g. NLM:TSANDS.NLM)" |
3591 | msgstr "" | 2738 | msgstr "" |
3592 | 2739 | ||
3593 | #: plugins/check_nwstat.c:1665 | ||
3594 | msgid "Include server version string in results" | 2740 | msgid "Include server version string in results" |
3595 | msgstr "" | 2741 | msgstr "" |
3596 | 2742 | ||
3597 | #: plugins/check_nwstat.c:1671 | ||
3598 | msgid "- This plugin requires that the MRTGEXT.NLM file from James Drews' MRTG" | 2743 | msgid "- This plugin requires that the MRTGEXT.NLM file from James Drews' MRTG" |
3599 | msgstr "" | 2744 | msgstr "" |
3600 | 2745 | ||
3601 | #: plugins/check_nwstat.c:1672 | ||
3602 | msgid "" | 2746 | msgid "" |
3603 | " extension for NetWare be loaded on the Novell servers you wish to check." | 2747 | " extension for NetWare be loaded on the Novell servers you wish to check." |
3604 | msgstr "" | 2748 | msgstr "" |
3605 | 2749 | ||
3606 | #: plugins/check_nwstat.c:1673 | ||
3607 | msgid " (available from http://www.engr.wisc.edu/~drews/mrtg/)" | 2750 | msgid " (available from http://www.engr.wisc.edu/~drews/mrtg/)" |
3608 | msgstr " (disponible depuis http://www.engr.wisc.edu/~drews/mrtg/)" | 2751 | msgstr " (disponible depuis http://www.engr.wisc.edu/~drews/mrtg/)" |
3609 | 2752 | ||
3610 | #: plugins/check_nwstat.c:1674 | ||
3611 | msgid "" | 2753 | msgid "" |
3612 | "- Values for critical thresholds should be lower than warning thresholds" | 2754 | "- Values for critical thresholds should be lower than warning thresholds" |
3613 | msgstr "" | 2755 | msgstr "" |
3614 | 2756 | ||
3615 | #: plugins/check_nwstat.c:1675 | ||
3616 | msgid "" | 2757 | msgid "" |
3617 | " when the following variables are checked: VPF, VKF, LTCH, CBUFF, DCB, " | 2758 | " when the following variables are checked: VPF, VKF, LTCH, CBUFF, DCB, " |
3618 | msgstr "" | 2759 | msgstr "" |
3619 | 2760 | ||
3620 | #: plugins/check_nwstat.c:1676 | ||
3621 | msgid " TCB, LRUS and LRUM." | 2761 | msgid " TCB, LRUS and LRUM." |
3622 | msgstr "" | 2762 | msgstr "" |
3623 | 2763 | ||
3624 | #: plugins/check_overcr.c:123 | ||
3625 | msgid "Unknown error fetching load data\n" | 2764 | msgid "Unknown error fetching load data\n" |
3626 | msgstr "" | 2765 | msgstr "" |
3627 | "Erreur inconnue lors de la récupération des données de charge système\n" | 2766 | "Erreur inconnue lors de la récupération des données de charge système\n" |
3628 | 2767 | ||
3629 | #: plugins/check_overcr.c:127 | ||
3630 | msgid "Invalid response from server - no load information\n" | 2768 | msgid "Invalid response from server - no load information\n" |
3631 | msgstr "Réponse invalide du serveur - pas d'information de charge système\n" | 2769 | msgstr "Réponse invalide du serveur - pas d'information de charge système\n" |
3632 | 2770 | ||
3633 | #: plugins/check_overcr.c:133 | ||
3634 | msgid "Invalid response from server after load 1\n" | 2771 | msgid "Invalid response from server after load 1\n" |
3635 | msgstr "Réponse invalide du serveur après charge système à 1 minute\n" | 2772 | msgstr "Réponse invalide du serveur après charge système à 1 minute\n" |
3636 | 2773 | ||
3637 | #: plugins/check_overcr.c:139 | ||
3638 | msgid "Invalid response from server after load 5\n" | 2774 | msgid "Invalid response from server after load 5\n" |
3639 | msgstr "Réponse invalide du serveur après charge système à 5 minute\n" | 2775 | msgstr "Réponse invalide du serveur après charge système à 5 minute\n" |
3640 | 2776 | ||
3641 | #: plugins/check_overcr.c:164 | ||
3642 | #, c-format | 2777 | #, c-format |
3643 | msgid "Load %s - %s-min load average = %0.2f" | 2778 | msgid "Load %s - %s-min load average = %0.2f" |
3644 | msgstr "Charge %s - %s-moyenne minimale de charge système = %0.2f" | 2779 | msgstr "Charge %s - %s-moyenne minimale de charge système = %0.2f" |
3645 | 2780 | ||
3646 | #: plugins/check_overcr.c:174 | ||
3647 | msgid "Unknown error fetching disk data\n" | 2781 | msgid "Unknown error fetching disk data\n" |
3648 | msgstr "Erreur inconnue en récupérant les données des disques\n" | 2782 | msgstr "Erreur inconnue en récupérant les données des disques\n" |
3649 | 2783 | ||
3650 | #: plugins/check_overcr.c:184 plugins/check_overcr.c:236 | ||
3651 | #: plugins/check_overcr.c:240 | ||
3652 | msgid "Invalid response from server\n" | 2784 | msgid "Invalid response from server\n" |
3653 | msgstr "Réponse invalide reçue du serveur\n" | 2785 | msgstr "Réponse invalide reçue du serveur\n" |
3654 | 2786 | ||
3655 | #: plugins/check_overcr.c:211 | ||
3656 | msgid "Unknown error fetching network status\n" | 2787 | msgid "Unknown error fetching network status\n" |
3657 | msgstr "Erreur inconnue lors de la réception de l'état du réseau\n" | 2788 | msgstr "Erreur inconnue lors de la réception de l'état du réseau\n" |
3658 | 2789 | ||
3659 | #: plugins/check_overcr.c:221 | ||
3660 | #, c-format | 2790 | #, c-format |
3661 | msgid "Net %s - %d connection%s on port %d" | 2791 | msgid "Net %s - %d connection%s on port %d" |
3662 | msgstr "Net %s - %d connections%s sur le port %d" | 2792 | msgstr "Net %s - %d connections%s sur le port %d" |
3663 | 2793 | ||
3664 | #: plugins/check_overcr.c:232 | ||
3665 | msgid "Unknown error fetching process status\n" | 2794 | msgid "Unknown error fetching process status\n" |
3666 | msgstr "Erreur inconnue en récupérant l'état des processus\n" | 2795 | msgstr "Erreur inconnue en récupérant l'état des processus\n" |
3667 | 2796 | ||
3668 | #: plugins/check_overcr.c:250 | ||
3669 | #, c-format | 2797 | #, c-format |
3670 | msgid "Process %s - %d instance%s of %s running" | 2798 | msgid "Process %s - %d instance%s of %s running" |
3671 | msgstr "Processus %s - %d instances%s de %s démarrées" | 2799 | msgstr "Processus %s - %d instances%s de %s démarrées" |
3672 | 2800 | ||
3673 | #: plugins/check_overcr.c:277 | ||
3674 | #, c-format | 2801 | #, c-format |
3675 | msgid "Uptime %s - Up %d days %d hours %d minutes" | 2802 | msgid "Uptime %s - Up %d days %d hours %d minutes" |
3676 | msgstr "Temps de fonctionnement %s - Up %d jours %d heures %d minutes" | 2803 | msgstr "Temps de fonctionnement %s - Up %d jours %d heures %d minutes" |
3677 | 2804 | ||
3678 | #: plugins/check_overcr.c:419 | ||
3679 | msgid "" | 2805 | msgid "" |
3680 | "This plugin attempts to contact the Over-CR collector daemon running on the" | 2806 | "This plugin attempts to contact the Over-CR collector daemon running on the" |
3681 | msgstr "" | 2807 | msgstr "" |
3682 | "Ce plugin essaye de joindre le service Over CR tournant sur le serveur UNIX" | 2808 | "Ce plugin essaye de joindre le service Over CR tournant sur le serveur UNIX" |
3683 | 2809 | ||
3684 | #: plugins/check_overcr.c:420 | ||
3685 | msgid "remote UNIX server in order to gather the requested system information." | 2810 | msgid "remote UNIX server in order to gather the requested system information." |
3686 | msgstr "distant afin de récupérer les informations système demandées." | 2811 | msgstr "distant afin de récupérer les informations système demandées." |
3687 | 2812 | ||
3688 | #: plugins/check_overcr.c:437 | ||
3689 | msgid "LOAD1 = 1 minute average CPU load" | 2813 | msgid "LOAD1 = 1 minute average CPU load" |
3690 | msgstr "" | 2814 | msgstr "" |
3691 | 2815 | ||
3692 | #: plugins/check_overcr.c:438 | ||
3693 | msgid "LOAD5 = 5 minute average CPU load" | 2816 | msgid "LOAD5 = 5 minute average CPU load" |
3694 | msgstr "" | 2817 | msgstr "" |
3695 | 2818 | ||
3696 | #: plugins/check_overcr.c:439 | ||
3697 | msgid "LOAD15 = 15 minute average CPU load" | 2819 | msgid "LOAD15 = 15 minute average CPU load" |
3698 | msgstr "" | 2820 | msgstr "" |
3699 | 2821 | ||
3700 | #: plugins/check_overcr.c:440 | ||
3701 | msgid "DPU<filesys> = percent used disk space on filesystem <filesys>" | 2822 | msgid "DPU<filesys> = percent used disk space on filesystem <filesys>" |
3702 | msgstr "" | 2823 | msgstr "" |
3703 | 2824 | ||
3704 | #: plugins/check_overcr.c:441 | ||
3705 | msgid "PROC<process> = number of running processes with name <process>" | 2825 | msgid "PROC<process> = number of running processes with name <process>" |
3706 | msgstr "" | 2826 | msgstr "" |
3707 | 2827 | ||
3708 | #: plugins/check_overcr.c:442 | ||
3709 | msgid "NET<port> = number of active connections on TCP port <port>" | 2828 | msgid "NET<port> = number of active connections on TCP port <port>" |
3710 | msgstr "" | 2829 | msgstr "" |
3711 | 2830 | ||
3712 | #: plugins/check_overcr.c:443 | ||
3713 | msgid "UPTIME = system uptime in seconds" | 2831 | msgid "UPTIME = system uptime in seconds" |
3714 | msgstr "" | 2832 | msgstr "" |
3715 | 2833 | ||
3716 | #: plugins/check_overcr.c:450 | ||
3717 | msgid "This plugin requires that Eric Molitors' Over-CR collector daemon be" | 2834 | msgid "This plugin requires that Eric Molitors' Over-CR collector daemon be" |
3718 | msgstr "Ce plugin requiert que le daemon collecteur Over-CR d'Eric Molitors" | 2835 | msgstr "Ce plugin requiert que le daemon collecteur Over-CR d'Eric Molitors" |
3719 | 2836 | ||
3720 | #: plugins/check_overcr.c:451 | ||
3721 | msgid "running on the remote server." | 2837 | msgid "running on the remote server." |
3722 | msgstr "soit fonctionnel sur le serveur distant" | 2838 | msgstr "soit fonctionnel sur le serveur distant" |
3723 | 2839 | ||
3724 | #: plugins/check_overcr.c:452 | ||
3725 | msgid "Over-CR can be downloaded from http://www.molitor.org/overcr" | 2840 | msgid "Over-CR can be downloaded from http://www.molitor.org/overcr" |
3726 | msgstr "" | 2841 | msgstr "" |
3727 | 2842 | ||
3728 | #: plugins/check_overcr.c:453 | ||
3729 | msgid "This plugin was tested with version 0.99.53 of the Over-CR collector" | 2843 | msgid "This plugin was tested with version 0.99.53 of the Over-CR collector" |
3730 | msgstr "Ce plugin a été testé avec la version 0.99.53 su collecteur Over-CR" | 2844 | msgstr "Ce plugin a été testé avec la version 0.99.53 su collecteur Over-CR" |
3731 | 2845 | ||
3732 | #: plugins/check_overcr.c:457 | ||
3733 | msgid "" | 2846 | msgid "" |
3734 | "For the available options, the critical threshold value should always be" | 2847 | "For the available options, the critical threshold value should always be" |
3735 | msgstr "" | 2848 | msgstr "" |
3736 | "Pour toutes les options disponibles, le seuil critique doit toujours être" | 2849 | "Pour toutes les options disponibles, le seuil critique doit toujours être" |
3737 | 2850 | ||
3738 | #: plugins/check_overcr.c:458 | ||
3739 | msgid "" | 2851 | msgid "" |
3740 | "higher than the warning threshold value, EXCEPT with the uptime variable" | 2852 | "higher than the warning threshold value, EXCEPT with the uptime variable" |
3741 | msgstr "plus grand que le seuil d'alerte SAUF pour l'option uptime" | 2853 | msgstr "plus grand que le seuil d'alerte SAUF pour l'option uptime" |
3742 | 2854 | ||
3743 | #: plugins/check_pgsql.c:224 | ||
3744 | #, c-format | 2855 | #, c-format |
3745 | msgid "CRITICAL - no connection to '%s' (%s).\n" | 2856 | msgid "CRITICAL - no connection to '%s' (%s).\n" |
3746 | msgstr "CRITIQUE - pas de connexion à '%s' (%s).\n" | 2857 | msgstr "CRITIQUE - pas de connexion à '%s' (%s).\n" |
3747 | 2858 | ||
3748 | #: plugins/check_pgsql.c:252 | ||
3749 | #, fuzzy, c-format | 2859 | #, fuzzy, c-format |
3750 | msgid " %s - database %s (%f sec.)|%s\n" | 2860 | msgid " %s - database %s (%f sec.)|%s\n" |
3751 | msgstr " %s - base de données %s (%d sec.)|%s\n" | 2861 | msgstr " %s - base de données %s (%d sec.)|%s\n" |
3752 | 2862 | ||
3753 | #: plugins/check_pgsql.c:320 plugins/check_time.c:277 plugins/check_time.c:289 | ||
3754 | #: plugins/check_users.c:228 | ||
3755 | msgid "Critical threshold must be a positive integer" | 2863 | msgid "Critical threshold must be a positive integer" |
3756 | msgstr "Le seuil critique doit être un entier positif" | 2864 | msgstr "Le seuil critique doit être un entier positif" |
3757 | 2865 | ||
3758 | #: plugins/check_pgsql.c:326 plugins/check_time.c:258 plugins/check_time.c:282 | ||
3759 | #: plugins/check_users.c:226 | ||
3760 | msgid "Warning threshold must be a positive integer" | 2866 | msgid "Warning threshold must be a positive integer" |
3761 | msgstr "Le seuil d'avertissement doit être un entier positif" | 2867 | msgstr "Le seuil d'avertissement doit être un entier positif" |
3762 | 2868 | ||
3763 | #: plugins/check_pgsql.c:350 | ||
3764 | #, fuzzy | 2869 | #, fuzzy |
3765 | msgid "Database name exceeds the maximum length" | 2870 | msgid "Database name exceeds the maximum length" |
3766 | msgstr "Le nom de la base de données est invalide" | 2871 | msgstr "Le nom de la base de données est invalide" |
3767 | 2872 | ||
3768 | #: plugins/check_pgsql.c:356 | ||
3769 | msgid "User name is not valid" | 2873 | msgid "User name is not valid" |
3770 | msgstr "Le nom de l'utilisateur est invalide" | 2874 | msgstr "Le nom de l'utilisateur est invalide" |
3771 | 2875 | ||
3772 | #: plugins/check_pgsql.c:471 | ||
3773 | #, c-format | 2876 | #, c-format |
3774 | msgid "Test whether a PostgreSQL Database is accepting connections." | 2877 | msgid "Test whether a PostgreSQL Database is accepting connections." |
3775 | msgstr "Teste si une base de données Postgresql accepte les connections." | 2878 | msgstr "Teste si une base de données Postgresql accepte les connections." |
3776 | 2879 | ||
3777 | #: plugins/check_pgsql.c:483 | ||
3778 | msgid "Database to check " | 2880 | msgid "Database to check " |
3779 | msgstr "" | 2881 | msgstr "" |
3780 | 2882 | ||
3781 | #: plugins/check_pgsql.c:484 | ||
3782 | #, fuzzy, c-format | 2883 | #, fuzzy, c-format |
3783 | msgid "(default: %s)\n" | 2884 | msgid "(default: %s)\n" |
3784 | msgstr "(Défaut: %d)\n" | 2885 | msgstr "(Défaut: %d)\n" |
3785 | 2886 | ||
3786 | #: plugins/check_pgsql.c:486 | ||
3787 | msgid "Login name of user" | 2887 | msgid "Login name of user" |
3788 | msgstr "Le nom d'un utilisateur" | 2888 | msgstr "Le nom d'un utilisateur" |
3789 | 2889 | ||
3790 | #: plugins/check_pgsql.c:488 | ||
3791 | msgid "Password (BIG SECURITY ISSUE)" | 2890 | msgid "Password (BIG SECURITY ISSUE)" |
3792 | msgstr "" | 2891 | msgstr "" |
3793 | 2892 | ||
3794 | #: plugins/check_pgsql.c:490 | ||
3795 | msgid "Connection parameters (keyword = value), see below" | 2893 | msgid "Connection parameters (keyword = value), see below" |
3796 | msgstr "" | 2894 | msgstr "" |
3797 | 2895 | ||
3798 | #: plugins/check_pgsql.c:497 | ||
3799 | msgid "SQL query to run. Only first column in first row will be read" | 2896 | msgid "SQL query to run. Only first column in first row will be read" |
3800 | msgstr "" | 2897 | msgstr "" |
3801 | 2898 | ||
3802 | #: plugins/check_pgsql.c:499 | ||
3803 | msgid "A name for the query, this string is used instead of the query" | 2899 | msgid "A name for the query, this string is used instead of the query" |
3804 | msgstr "" | 2900 | msgstr "" |
3805 | 2901 | ||
3806 | #: plugins/check_pgsql.c:500 | ||
3807 | msgid "in the long output of the plugin" | 2902 | msgid "in the long output of the plugin" |
3808 | msgstr "" | 2903 | msgstr "" |
3809 | 2904 | ||
3810 | #: plugins/check_pgsql.c:502 | ||
3811 | #, fuzzy | 2905 | #, fuzzy |
3812 | msgid "SQL query value to result in warning status (double)" | 2906 | msgid "SQL query value to result in warning status (double)" |
3813 | msgstr "Décalage résultant en un avertissement (secondes)" | 2907 | msgstr "Décalage résultant en un avertissement (secondes)" |
3814 | 2908 | ||
3815 | #: plugins/check_pgsql.c:504 | ||
3816 | #, fuzzy | 2909 | #, fuzzy |
3817 | msgid "SQL query value to result in critical status (double)" | 2910 | msgid "SQL query value to result in critical status (double)" |
3818 | msgstr "Décalage résultant en un état critique (secondes)" | 2911 | msgstr "Décalage résultant en un état critique (secondes)" |
3819 | 2912 | ||
3820 | #: plugins/check_pgsql.c:509 | ||
3821 | msgid "All parameters are optional." | 2913 | msgid "All parameters are optional." |
3822 | msgstr "" | 2914 | msgstr "" |
3823 | 2915 | ||
3824 | #: plugins/check_pgsql.c:510 | ||
3825 | msgid "" | 2916 | msgid "" |
3826 | "This plugin tests a PostgreSQL DBMS to determine whether it is active and" | 2917 | "This plugin tests a PostgreSQL DBMS to determine whether it is active and" |
3827 | msgstr "" | 2918 | msgstr "" |
3828 | 2919 | ||
3829 | #: plugins/check_pgsql.c:511 | ||
3830 | msgid "accepting queries. In its current operation, it simply connects to the" | 2920 | msgid "accepting queries. In its current operation, it simply connects to the" |
3831 | msgstr "" | 2921 | msgstr "" |
3832 | 2922 | ||
3833 | #: plugins/check_pgsql.c:512 | ||
3834 | msgid "" | 2923 | msgid "" |
3835 | "specified database, and then disconnects. If no database is specified, it" | 2924 | "specified database, and then disconnects. If no database is specified, it" |
3836 | msgstr "" | 2925 | msgstr "" |
3837 | 2926 | ||
3838 | #: plugins/check_pgsql.c:513 | ||
3839 | msgid "" | 2927 | msgid "" |
3840 | "connects to the template1 database, which is present in every functioning" | 2928 | "connects to the template1 database, which is present in every functioning" |
3841 | msgstr "" | 2929 | msgstr "" |
3842 | 2930 | ||
3843 | #: plugins/check_pgsql.c:514 | ||
3844 | msgid "PostgreSQL DBMS." | 2931 | msgid "PostgreSQL DBMS." |
3845 | msgstr "" | 2932 | msgstr "" |
3846 | 2933 | ||
3847 | #: plugins/check_pgsql.c:516 | ||
3848 | msgid "If a query is specified using the -q option, it will be executed after" | 2934 | msgid "If a query is specified using the -q option, it will be executed after" |
3849 | msgstr "" | 2935 | msgstr "" |
3850 | 2936 | ||
3851 | #: plugins/check_pgsql.c:517 | ||
3852 | msgid "connecting to the server. The result from the query has to be numeric." | 2937 | msgid "connecting to the server. The result from the query has to be numeric." |
3853 | msgstr "" | 2938 | msgstr "" |
3854 | 2939 | ||
3855 | #: plugins/check_pgsql.c:518 | ||
3856 | msgid "" | 2940 | msgid "" |
3857 | "Multiple SQL commands, separated by semicolon, are allowed but the result " | 2941 | "Multiple SQL commands, separated by semicolon, are allowed but the result " |
3858 | msgstr "" | 2942 | msgstr "" |
3859 | 2943 | ||
3860 | #: plugins/check_pgsql.c:519 | ||
3861 | msgid "of the last command is taken into account only. The value of the first" | 2944 | msgid "of the last command is taken into account only. The value of the first" |
3862 | msgstr "" | 2945 | msgstr "" |
3863 | 2946 | ||
3864 | #: plugins/check_pgsql.c:520 | ||
3865 | msgid "" | 2947 | msgid "" |
3866 | "column in the first row is used as the check result. If a second column is" | 2948 | "column in the first row is used as the check result. If a second column is" |
3867 | msgstr "" | 2949 | msgstr "" |
3868 | 2950 | ||
3869 | #: plugins/check_pgsql.c:521 | ||
3870 | msgid "present in the result set, this is added to the plugin output with a" | 2951 | msgid "present in the result set, this is added to the plugin output with a" |
3871 | msgstr "" | 2952 | msgstr "" |
3872 | 2953 | ||
3873 | #: plugins/check_pgsql.c:522 | ||
3874 | msgid "" | 2954 | msgid "" |
3875 | "prefix of \"Extra Info:\". This information can be displayed in the system" | 2955 | "prefix of \"Extra Info:\". This information can be displayed in the system" |
3876 | msgstr "" | 2956 | msgstr "" |
3877 | 2957 | ||
3878 | #: plugins/check_pgsql.c:523 | ||
3879 | msgid "executing the plugin." | 2958 | msgid "executing the plugin." |
3880 | msgstr "" | 2959 | msgstr "" |
3881 | 2960 | ||
3882 | #: plugins/check_pgsql.c:525 | ||
3883 | msgid "" | 2961 | msgid "" |
3884 | "See the chapter \"Monitoring Database Activity\" of the PostgreSQL manual" | 2962 | "See the chapter \"Monitoring Database Activity\" of the PostgreSQL manual" |
3885 | msgstr "" | 2963 | msgstr "" |
3886 | 2964 | ||
3887 | #: plugins/check_pgsql.c:526 | ||
3888 | msgid "" | 2965 | msgid "" |
3889 | "for details about how to access internal statistics of the database server." | 2966 | "for details about how to access internal statistics of the database server." |
3890 | msgstr "" | 2967 | msgstr "" |
3891 | 2968 | ||
3892 | #: plugins/check_pgsql.c:528 | ||
3893 | msgid "" | 2969 | msgid "" |
3894 | "For a list of available connection parameters which may be used with the -o" | 2970 | "For a list of available connection parameters which may be used with the -o" |
3895 | msgstr "" | 2971 | msgstr "" |
3896 | 2972 | ||
3897 | #: plugins/check_pgsql.c:529 | ||
3898 | msgid "" | 2973 | msgid "" |
3899 | "command line option, see the documentation for PQconnectdb() in the chapter" | 2974 | "command line option, see the documentation for PQconnectdb() in the chapter" |
3900 | msgstr "" | 2975 | msgstr "" |
3901 | 2976 | ||
3902 | #: plugins/check_pgsql.c:530 | ||
3903 | msgid "" | 2977 | msgid "" |
3904 | "\"libpq - C Library\" of the PostgreSQL manual. For example, this may be" | 2978 | "\"libpq - C Library\" of the PostgreSQL manual. For example, this may be" |
3905 | msgstr "" | 2979 | msgstr "" |
3906 | 2980 | ||
3907 | #: plugins/check_pgsql.c:531 | ||
3908 | msgid "" | 2981 | msgid "" |
3909 | "used to specify a service name in pg_service.conf to be used for additional" | 2982 | "used to specify a service name in pg_service.conf to be used for additional" |
3910 | msgstr "" | 2983 | msgstr "" |
3911 | 2984 | ||
3912 | #: plugins/check_pgsql.c:532 | ||
3913 | msgid "connection parameters: -o 'service=<name>' or to specify the SSL mode:" | 2985 | msgid "connection parameters: -o 'service=<name>' or to specify the SSL mode:" |
3914 | msgstr "" | 2986 | msgstr "" |
3915 | 2987 | ||
3916 | #: plugins/check_pgsql.c:533 | ||
3917 | msgid "-o 'sslmode=require'." | 2988 | msgid "-o 'sslmode=require'." |
3918 | msgstr "" | 2989 | msgstr "" |
3919 | 2990 | ||
3920 | #: plugins/check_pgsql.c:535 | ||
3921 | msgid "" | 2991 | msgid "" |
3922 | "The plugin will connect to a local postmaster if no host is specified. To" | 2992 | "The plugin will connect to a local postmaster if no host is specified. To" |
3923 | msgstr "" | 2993 | msgstr "" |
3924 | "Ce plugin va se connecter sur un postmaster local si aucun hôte n'est " | 2994 | "Ce plugin va se connecter sur un postmaster local si aucun hôte n'est " |
3925 | "spécifié." | 2995 | "spécifié." |
3926 | 2996 | ||
3927 | #: plugins/check_pgsql.c:536 | ||
3928 | msgid "" | 2997 | msgid "" |
3929 | "connect to a remote host, be sure that the remote postmaster accepts TCP/IP" | 2998 | "connect to a remote host, be sure that the remote postmaster accepts TCP/IP" |
3930 | msgstr "" | 2999 | msgstr "" |
3931 | 3000 | ||
3932 | #: plugins/check_pgsql.c:537 | ||
3933 | msgid "connections (start the postmaster with the -i option)." | 3001 | msgid "connections (start the postmaster with the -i option)." |
3934 | msgstr "" | 3002 | msgstr "" |
3935 | 3003 | ||
3936 | #: plugins/check_pgsql.c:539 | ||
3937 | msgid "" | 3004 | msgid "" |
3938 | "Typically, the monitoring user (unless the --logname option is used) should " | 3005 | "Typically, the monitoring user (unless the --logname option is used) should " |
3939 | "be" | 3006 | "be" |
3940 | msgstr "" | 3007 | msgstr "" |
3941 | 3008 | ||
3942 | #: plugins/check_pgsql.c:540 | ||
3943 | msgid "" | 3009 | msgid "" |
3944 | "able to connect to the database without a password. The plugin can also send" | 3010 | "able to connect to the database without a password. The plugin can also send" |
3945 | msgstr "" | 3011 | msgstr "" |
3946 | 3012 | ||
3947 | #: plugins/check_pgsql.c:541 | ||
3948 | msgid "a password, but no effort is made to obscure or encrypt the password." | 3013 | msgid "a password, but no effort is made to obscure or encrypt the password." |
3949 | msgstr "" | 3014 | msgstr "" |
3950 | 3015 | ||
3951 | #: plugins/check_pgsql.c:575 | ||
3952 | #, c-format | 3016 | #, c-format |
3953 | msgid "QUERY %s - %s: %s.\n" | 3017 | msgid "QUERY %s - %s: %s.\n" |
3954 | msgstr "" | 3018 | msgstr "" |
3955 | 3019 | ||
3956 | #: plugins/check_pgsql.c:575 | ||
3957 | msgid "Error with query" | 3020 | msgid "Error with query" |
3958 | msgstr "" | 3021 | msgstr "" |
3959 | 3022 | ||
3960 | #: plugins/check_pgsql.c:581 | ||
3961 | #, fuzzy | 3023 | #, fuzzy |
3962 | msgid "No rows returned" | 3024 | msgid "No rows returned" |
3963 | msgstr "Pas de données valides reçues" | 3025 | msgstr "Pas de données valides reçues" |
3964 | 3026 | ||
3965 | #: plugins/check_pgsql.c:586 | ||
3966 | #, fuzzy | 3027 | #, fuzzy |
3967 | msgid "No columns returned" | 3028 | msgid "No columns returned" |
3968 | msgstr "Pas de données valides reçues" | 3029 | msgstr "Pas de données valides reçues" |
3969 | 3030 | ||
3970 | #: plugins/check_pgsql.c:592 | ||
3971 | #, fuzzy | 3031 | #, fuzzy |
3972 | msgid "No data returned" | 3032 | msgid "No data returned" |
3973 | msgstr "Pas de données valides reçues" | 3033 | msgstr "Pas de données valides reçues" |
3974 | 3034 | ||
3975 | #: plugins/check_pgsql.c:601 | ||
3976 | msgid "Is not a numeric" | 3035 | msgid "Is not a numeric" |
3977 | msgstr "" | 3036 | msgstr "" |
3978 | 3037 | ||
3979 | #: plugins/check_pgsql.c:619 | ||
3980 | #, fuzzy, c-format | 3038 | #, fuzzy, c-format |
3981 | msgid "%s returned %f" | 3039 | msgid "%s returned %f" |
3982 | msgstr ". %s renvoie %s" | 3040 | msgstr ". %s renvoie %s" |
3983 | 3041 | ||
3984 | #: plugins/check_pgsql.c:622 | ||
3985 | #, fuzzy, c-format | 3042 | #, fuzzy, c-format |
3986 | msgid "'%s' returned %f" | 3043 | msgid "'%s' returned %f" |
3987 | msgstr ". %s renvoie %s" | 3044 | msgstr ". %s renvoie %s" |
3988 | 3045 | ||
3989 | #: plugins/check_ping.c:143 | ||
3990 | msgid "CRITICAL - Could not interpret output from ping command\n" | 3046 | msgid "CRITICAL - Could not interpret output from ping command\n" |
3991 | msgstr "CRITIQUE - Impossible d'interpréter le réponse de la commande ping\n" | 3047 | msgstr "CRITIQUE - Impossible d'interpréter le réponse de la commande ping\n" |
3992 | 3048 | ||
3993 | #: plugins/check_ping.c:159 | ||
3994 | #, c-format | 3049 | #, c-format |
3995 | msgid "PING %s - %sPacket loss = %d%%" | 3050 | msgid "PING %s - %sPacket loss = %d%%" |
3996 | msgstr "PING %s - %s Paquets perdus = %d%%" | 3051 | msgstr "PING %s - %s Paquets perdus = %d%%" |
3997 | 3052 | ||
3998 | #: plugins/check_ping.c:162 | ||
3999 | #, c-format | 3053 | #, c-format |
4000 | msgid "PING %s - %sPacket loss = %d%%, RTA = %2.2f ms" | 3054 | msgid "PING %s - %sPacket loss = %d%%, RTA = %2.2f ms" |
4001 | msgstr "PING %s - %s Paquets perdus = %d%%, RTA = %2.2f ms" | 3055 | msgstr "PING %s - %s Paquets perdus = %d%%, RTA = %2.2f ms" |
4002 | 3056 | ||
4003 | #: plugins/check_ping.c:263 | ||
4004 | msgid "Could not realloc() addresses\n" | 3057 | msgid "Could not realloc() addresses\n" |
4005 | msgstr "Impossible de réallouer les adresses\n" | 3058 | msgstr "Impossible de réallouer les adresses\n" |
4006 | 3059 | ||
4007 | #: plugins/check_ping.c:278 plugins/check_ping.c:358 | ||
4008 | #, c-format | 3060 | #, c-format |
4009 | msgid "<max_packets> (%s) must be a non-negative number\n" | 3061 | msgid "<max_packets> (%s) must be a non-negative number\n" |
4010 | msgstr "<max_packets> (%s) doit être un nombre positif\n" | 3062 | msgstr "<max_packets> (%s) doit être un nombre positif\n" |
4011 | 3063 | ||
4012 | #: plugins/check_ping.c:312 | ||
4013 | #, c-format | 3064 | #, c-format |
4014 | msgid "<wpl> (%s) must be an integer percentage\n" | 3065 | msgid "<wpl> (%s) must be an integer percentage\n" |
4015 | msgstr "<wpl> (%s) doit être un pourcentage entier\n" | 3066 | msgstr "<wpl> (%s) doit être un pourcentage entier\n" |
4016 | 3067 | ||
4017 | #: plugins/check_ping.c:323 | ||
4018 | #, c-format | 3068 | #, c-format |
4019 | msgid "<cpl> (%s) must be an integer percentage\n" | 3069 | msgid "<cpl> (%s) must be an integer percentage\n" |
4020 | msgstr "<cpl> (%s) doit être un pourcentage entier\n" | 3070 | msgstr "<cpl> (%s) doit être un pourcentage entier\n" |
4021 | 3071 | ||
4022 | #: plugins/check_ping.c:334 | ||
4023 | #, c-format | 3072 | #, c-format |
4024 | msgid "<wrta> (%s) must be a non-negative number\n" | 3073 | msgid "<wrta> (%s) must be a non-negative number\n" |
4025 | msgstr "<wrta> (%s) doit être un nombre positif\n" | 3074 | msgstr "<wrta> (%s) doit être un nombre positif\n" |
4026 | 3075 | ||
4027 | #: plugins/check_ping.c:345 | ||
4028 | #, c-format | 3076 | #, c-format |
4029 | msgid "<crta> (%s) must be a non-negative number\n" | 3077 | msgid "<crta> (%s) must be a non-negative number\n" |
4030 | msgstr "<crta> (%s) doit être un nombre positif\n" | 3078 | msgstr "<crta> (%s) doit être un nombre positif\n" |
4031 | 3079 | ||
4032 | #: plugins/check_ping.c:378 | ||
4033 | #, c-format | 3080 | #, c-format |
4034 | msgid "" | 3081 | msgid "" |
4035 | "%s: Warning threshold must be integer or percentage!\n" | 3082 | "%s: Warning threshold must be integer or percentage!\n" |
4036 | "\n" | 3083 | "\n" |
4037 | msgstr "%s: Le seuil d'avertissement doit être un entier ou un pourcentage!\n" | 3084 | msgstr "%s: Le seuil d'avertissement doit être un entier ou un pourcentage!\n" |
4038 | 3085 | ||
4039 | #: plugins/check_ping.c:391 | ||
4040 | #, c-format | 3086 | #, c-format |
4041 | msgid "<wrta> was not set\n" | 3087 | msgid "<wrta> was not set\n" |
4042 | msgstr "<wrta> n'a pas été indiqué\n" | 3088 | msgstr "<wrta> n'a pas été indiqué\n" |
4043 | 3089 | ||
4044 | #: plugins/check_ping.c:395 | ||
4045 | #, c-format | 3090 | #, c-format |
4046 | msgid "<crta> was not set\n" | 3091 | msgid "<crta> was not set\n" |
4047 | msgstr "<crta> n'a pas été indiqué\n" | 3092 | msgstr "<crta> n'a pas été indiqué\n" |
4048 | 3093 | ||
4049 | #: plugins/check_ping.c:399 | ||
4050 | #, c-format | 3094 | #, c-format |
4051 | msgid "<wpl> was not set\n" | 3095 | msgid "<wpl> was not set\n" |
4052 | msgstr " <wpl> n'a pas été indiqué\n" | 3096 | msgstr " <wpl> n'a pas été indiqué\n" |
4053 | 3097 | ||
4054 | #: plugins/check_ping.c:403 | ||
4055 | #, c-format | 3098 | #, c-format |
4056 | msgid "<cpl> was not set\n" | 3099 | msgid "<cpl> was not set\n" |
4057 | msgstr "<cpl> n'a pas été indiqué\n" | 3100 | msgstr "<cpl> n'a pas été indiqué\n" |
4058 | 3101 | ||
4059 | #: plugins/check_ping.c:407 | ||
4060 | #, c-format | 3102 | #, c-format |
4061 | msgid "<wrta> (%f) cannot be larger than <crta> (%f)\n" | 3103 | msgid "<wrta> (%f) cannot be larger than <crta> (%f)\n" |
4062 | msgstr "<wrta> (%f) ne peut pas être plus large que <crta> (%f)\n" | 3104 | msgstr "<wrta> (%f) ne peut pas être plus large que <crta> (%f)\n" |
4063 | 3105 | ||
4064 | #: plugins/check_ping.c:411 | ||
4065 | #, c-format | 3106 | #, c-format |
4066 | msgid "<wpl> (%d) cannot be larger than <cpl> (%d)\n" | 3107 | msgid "<wpl> (%d) cannot be larger than <cpl> (%d)\n" |
4067 | msgstr "<wpl> (%d) ne peut pas être plus large que <cpl> (%d)\n" | 3108 | msgstr "<wpl> (%d) ne peut pas être plus large que <cpl> (%d)\n" |
4068 | 3109 | ||
4069 | #: plugins/check_ping.c:448 | ||
4070 | #, c-format | 3110 | #, c-format |
4071 | msgid "Cannot open stderr for %s\n" | 3111 | msgid "Cannot open stderr for %s\n" |
4072 | msgstr "Impossible d'ouvrir le canal d'erreur standard pour %s\n" | 3112 | msgstr "Impossible d'ouvrir le canal d'erreur standard pour %s\n" |
4073 | 3113 | ||
4074 | #: plugins/check_ping.c:505 plugins/check_ping.c:507 | ||
4075 | msgid "System call sent warnings to stderr " | 3114 | msgid "System call sent warnings to stderr " |
4076 | msgstr "" | 3115 | msgstr "" |
4077 | "Les appel système enverront leurs messages d'avertissement vers le canal " | 3116 | "Les appel système enverront leurs messages d'avertissement vers le canal " |
4078 | "d'erreur standard" | 3117 | "d'erreur standard" |
4079 | 3118 | ||
4080 | #: plugins/check_ping.c:533 | ||
4081 | #, fuzzy, c-format | 3119 | #, fuzzy, c-format |
4082 | msgid "CRITICAL - Network Unreachable (%s)\n" | 3120 | msgid "CRITICAL - Network Unreachable (%s)\n" |
4083 | msgstr "CRITIQUE - Le réseau est inaccessible (%s)" | 3121 | msgstr "CRITIQUE - Le réseau est inaccessible (%s)" |
4084 | 3122 | ||
4085 | #: plugins/check_ping.c:535 | ||
4086 | #, fuzzy, c-format | 3123 | #, fuzzy, c-format |
4087 | msgid "CRITICAL - Host Unreachable (%s)\n" | 3124 | msgid "CRITICAL - Host Unreachable (%s)\n" |
4088 | msgstr "CRITIQUE - Hôte inaccessible (%s)" | 3125 | msgstr "CRITIQUE - Hôte inaccessible (%s)" |
4089 | 3126 | ||
4090 | #: plugins/check_ping.c:537 | ||
4091 | #, fuzzy, c-format | 3127 | #, fuzzy, c-format |
4092 | msgid "CRITICAL - Bogus ICMP: Port Unreachable (%s)\n" | 3128 | msgid "CRITICAL - Bogus ICMP: Port Unreachable (%s)\n" |
4093 | msgstr "CRITIQUE - Paquet ICMP incorrect: Port inaccessible (%s)" | 3129 | msgstr "CRITIQUE - Paquet ICMP incorrect: Port inaccessible (%s)" |
4094 | 3130 | ||
4095 | #: plugins/check_ping.c:539 | ||
4096 | #, fuzzy, c-format | 3131 | #, fuzzy, c-format |
4097 | msgid "CRITICAL - Bogus ICMP: Protocol Unreachable (%s)\n" | 3132 | msgid "CRITICAL - Bogus ICMP: Protocol Unreachable (%s)\n" |
4098 | msgstr "CRITIQUE - Paquet ICMP incorrect: Protocole inaccessible (%s)" | 3133 | msgstr "CRITIQUE - Paquet ICMP incorrect: Protocole inaccessible (%s)" |
4099 | 3134 | ||
4100 | #: plugins/check_ping.c:541 | ||
4101 | #, fuzzy, c-format | 3135 | #, fuzzy, c-format |
4102 | msgid "CRITICAL - Network Prohibited (%s)\n" | 3136 | msgid "CRITICAL - Network Prohibited (%s)\n" |
4103 | msgstr "CRITIQUE - L'accès au réseau est interdit (%s)" | 3137 | msgstr "CRITIQUE - L'accès au réseau est interdit (%s)" |
4104 | 3138 | ||
4105 | #: plugins/check_ping.c:543 | ||
4106 | #, fuzzy, c-format | 3139 | #, fuzzy, c-format |
4107 | msgid "CRITICAL - Host Prohibited (%s)\n" | 3140 | msgid "CRITICAL - Host Prohibited (%s)\n" |
4108 | msgstr "CRITIQUE - L'accès a l'hôte est interdit (%s)" | 3141 | msgstr "CRITIQUE - L'accès a l'hôte est interdit (%s)" |
4109 | 3142 | ||
4110 | #: plugins/check_ping.c:545 | ||
4111 | #, fuzzy, c-format | 3143 | #, fuzzy, c-format |
4112 | msgid "CRITICAL - Packet Filtered (%s)\n" | 3144 | msgid "CRITICAL - Packet Filtered (%s)\n" |
4113 | msgstr "CRITIQUE - Paquet filtré (%s)" | 3145 | msgstr "CRITIQUE - Paquet filtré (%s)" |
4114 | 3146 | ||
4115 | #: plugins/check_ping.c:547 | ||
4116 | #, fuzzy, c-format | 3147 | #, fuzzy, c-format |
4117 | msgid "CRITICAL - Host not found (%s)\n" | 3148 | msgid "CRITICAL - Host not found (%s)\n" |
4118 | msgstr "CRITIQUE - Hôte non trouvé (%s)" | 3149 | msgstr "CRITIQUE - Hôte non trouvé (%s)" |
4119 | 3150 | ||
4120 | #: plugins/check_ping.c:549 | ||
4121 | #, fuzzy, c-format | 3151 | #, fuzzy, c-format |
4122 | msgid "CRITICAL - Time to live exceeded (%s)\n" | 3152 | msgid "CRITICAL - Time to live exceeded (%s)\n" |
4123 | msgstr "CRITIQUE - La durée de vie du paquet est dépassée (%s)" | 3153 | msgstr "CRITIQUE - La durée de vie du paquet est dépassée (%s)" |
4124 | 3154 | ||
4125 | #: plugins/check_ping.c:551 | ||
4126 | #, fuzzy, c-format | 3155 | #, fuzzy, c-format |
4127 | msgid "CRITICAL - Destination Unreachable (%s)\n" | 3156 | msgid "CRITICAL - Destination Unreachable (%s)\n" |
4128 | msgstr "CRITIQUE - Hôte inaccessible (%s)" | 3157 | msgstr "CRITIQUE - Hôte inaccessible (%s)" |
4129 | 3158 | ||
4130 | #: plugins/check_ping.c:558 | ||
4131 | #, fuzzy | 3159 | #, fuzzy |
4132 | msgid "Unable to realloc warn_text\n" | 3160 | msgid "Unable to realloc warn_text\n" |
4133 | msgstr "Impossible de réattribuer le texte d'avertissement" | 3161 | msgstr "Impossible de réattribuer le texte d'avertissement" |
4134 | 3162 | ||
4135 | #: plugins/check_ping.c:575 | ||
4136 | #, c-format | 3163 | #, c-format |
4137 | msgid "Use ping to check connection statistics for a remote host." | 3164 | msgid "Use ping to check connection statistics for a remote host." |
4138 | msgstr "" | 3165 | msgstr "" |
4139 | "Utilise ping pour vérifier les statistiques de connections d'un hôte distant." | 3166 | "Utilise ping pour vérifier les statistiques de connections d'un hôte distant." |
4140 | 3167 | ||
4141 | #: plugins/check_ping.c:587 | ||
4142 | msgid "host to ping" | 3168 | msgid "host to ping" |
4143 | msgstr "hôte à tester" | 3169 | msgstr "hôte à tester" |
4144 | 3170 | ||
4145 | #: plugins/check_ping.c:593 | ||
4146 | msgid "number of ICMP ECHO packets to send" | 3171 | msgid "number of ICMP ECHO packets to send" |
4147 | msgstr "nombre de paquets ICMP Ã envoyer" | 3172 | msgstr "nombre de paquets ICMP Ã envoyer" |
4148 | 3173 | ||
4149 | #: plugins/check_ping.c:594 | ||
4150 | #, c-format | 3174 | #, c-format |
4151 | msgid "(Default: %d)\n" | 3175 | msgid "(Default: %d)\n" |
4152 | msgstr "(Défaut: %d)\n" | 3176 | msgstr "(Défaut: %d)\n" |
4153 | 3177 | ||
4154 | #: plugins/check_ping.c:596 | ||
4155 | msgid "show HTML in the plugin output (obsoleted by urlize)" | 3178 | msgid "show HTML in the plugin output (obsoleted by urlize)" |
4156 | msgstr "" | 3179 | msgstr "" |
4157 | 3180 | ||
4158 | #: plugins/check_ping.c:601 | ||
4159 | msgid "THRESHOLD is <rta>,<pl>% where <rta> is the round trip average travel" | 3181 | msgid "THRESHOLD is <rta>,<pl>% where <rta> is the round trip average travel" |
4160 | msgstr "" | 3182 | msgstr "" |
4161 | "Le seuil est <rta>,<pl>% où <rta> est le temps moyen pour l'aller retour (ms)" | 3183 | "Le seuil est <rta>,<pl>% où <rta> est le temps moyen pour l'aller retour (ms)" |
4162 | 3184 | ||
4163 | #: plugins/check_ping.c:602 | ||
4164 | msgid "time (ms) which triggers a WARNING or CRITICAL state, and <pl> is the" | 3185 | msgid "time (ms) which triggers a WARNING or CRITICAL state, and <pl> is the" |
4165 | msgstr "qui déclenche un résultat AVERTISSEMENT ou CRITIQUE, et <pl> est le " | 3186 | msgstr "qui déclenche un résultat AVERTISSEMENT ou CRITIQUE, et <pl> est le " |
4166 | 3187 | ||
4167 | #: plugins/check_ping.c:603 | ||
4168 | msgid "percentage of packet loss to trigger an alarm state." | 3188 | msgid "percentage of packet loss to trigger an alarm state." |
4169 | msgstr "pourcentage de paquets perdus pour déclencher une alarme." | 3189 | msgstr "pourcentage de paquets perdus pour déclencher une alarme." |
4170 | 3190 | ||
4171 | #: plugins/check_ping.c:606 | ||
4172 | msgid "" | 3191 | msgid "" |
4173 | "This plugin uses the ping command to probe the specified host for packet loss" | 3192 | "This plugin uses the ping command to probe the specified host for packet loss" |
4174 | msgstr "" | 3193 | msgstr "" |
4175 | "Ce plugin utilise la commande ping pour vérifier l'hôte spécifié pour les " | 3194 | "Ce plugin utilise la commande ping pour vérifier l'hôte spécifié pour les " |
4176 | "pertes de paquets" | 3195 | "pertes de paquets" |
4177 | 3196 | ||
4178 | #: plugins/check_ping.c:607 | ||
4179 | msgid "" | 3197 | msgid "" |
4180 | "(percentage) and round trip average (milliseconds). It can produce HTML " | 3198 | "(percentage) and round trip average (milliseconds). It can produce HTML " |
4181 | "output" | 3199 | "output" |
4182 | msgstr "" | 3200 | msgstr "" |
4183 | 3201 | ||
4184 | #: plugins/check_ping.c:608 | ||
4185 | msgid "" | 3202 | msgid "" |
4186 | "linking to a traceroute CGI contributed by Ian Cass. The CGI can be found in" | 3203 | "linking to a traceroute CGI contributed by Ian Cass. The CGI can be found in" |
4187 | msgstr "" | 3204 | msgstr "" |
4188 | 3205 | ||
4189 | #: plugins/check_ping.c:609 | ||
4190 | msgid "the contrib area of the downloads section at http://www.nagios.org/" | 3206 | msgid "the contrib area of the downloads section at http://www.nagios.org/" |
4191 | msgstr "" | 3207 | msgstr "" |
4192 | 3208 | ||
4193 | #: plugins/check_procs.c:197 | ||
4194 | #, c-format | 3209 | #, c-format |
4195 | msgid "CMD: %s\n" | 3210 | msgid "CMD: %s\n" |
4196 | msgstr "Commande: %s\n" | 3211 | msgstr "Commande: %s\n" |
4197 | 3212 | ||
4198 | #: plugins/check_procs.c:202 | ||
4199 | msgid "System call sent warnings to stderr" | 3213 | msgid "System call sent warnings to stderr" |
4200 | msgstr "" | 3214 | msgstr "" |
4201 | "L'appel système à retourné des avertissement vers le canal d'erreur standard" | 3215 | "L'appel système à retourné des avertissement vers le canal d'erreur standard" |
4202 | 3216 | ||
4203 | #: plugins/check_procs.c:349 | ||
4204 | #, c-format | 3217 | #, c-format |
4205 | msgid "Not parseable: %s" | 3218 | msgid "Not parseable: %s" |
4206 | msgstr "Impossible de parcourir les arguments: %s" | 3219 | msgstr "Impossible de parcourir les arguments: %s" |
4207 | 3220 | ||
4208 | #: plugins/check_procs.c:354 | ||
4209 | #, c-format | 3221 | #, c-format |
4210 | msgid "Unable to read output\n" | 3222 | msgid "Unable to read output\n" |
4211 | msgstr "Impossible de lire les données en entrée\n" | 3223 | msgstr "Impossible de lire les données en entrée\n" |
4212 | 3224 | ||
4213 | #: plugins/check_procs.c:371 | ||
4214 | #, c-format | 3225 | #, c-format |
4215 | msgid "%d warn out of " | 3226 | msgid "%d warn out of " |
4216 | msgstr "%d avertissements sur" | 3227 | msgstr "%d avertissements sur" |
4217 | 3228 | ||
4218 | #: plugins/check_procs.c:376 | ||
4219 | #, c-format | 3229 | #, c-format |
4220 | msgid "%d crit, %d warn out of " | 3230 | msgid "%d crit, %d warn out of " |
4221 | msgstr "%d crit, %d alertes sur " | 3231 | msgstr "%d crit, %d alertes sur " |
4222 | 3232 | ||
4223 | #: plugins/check_procs.c:382 | ||
4224 | #, c-format | 3233 | #, c-format |
4225 | msgid " with %s" | 3234 | msgid " with %s" |
4226 | msgstr " avec %s" | 3235 | msgstr " avec %s" |
4227 | 3236 | ||
4228 | #: plugins/check_procs.c:477 | ||
4229 | msgid "Parent Process ID must be an integer!" | 3237 | msgid "Parent Process ID must be an integer!" |
4230 | msgstr "L'identifiant du processus parent doit être un entier!" | 3238 | msgstr "L'identifiant du processus parent doit être un entier!" |
4231 | 3239 | ||
4232 | #: plugins/check_procs.c:483 plugins/check_procs.c:627 | ||
4233 | #, c-format | 3240 | #, c-format |
4234 | msgid "%s%sSTATE = %s" | 3241 | msgid "%s%sSTATE = %s" |
4235 | msgstr "%s%sETAT = %s" | 3242 | msgstr "%s%sETAT = %s" |
4236 | 3243 | ||
4237 | #: plugins/check_procs.c:492 | ||
4238 | msgid "UID was not found" | 3244 | msgid "UID was not found" |
4239 | msgstr "L'UID n'a pas été trouvé" | 3245 | msgstr "L'UID n'a pas été trouvé" |
4240 | 3246 | ||
4241 | #: plugins/check_procs.c:498 | ||
4242 | msgid "User name was not found" | 3247 | msgid "User name was not found" |
4243 | msgstr "L'utilisateur n'a pas été trouvé" | 3248 | msgstr "L'utilisateur n'a pas été trouvé" |
4244 | 3249 | ||
4245 | #: plugins/check_procs.c:513 | ||
4246 | #, c-format | 3250 | #, c-format |
4247 | msgid "%s%scommand name '%s'" | 3251 | msgid "%s%scommand name '%s'" |
4248 | msgstr "%s%snom de la commande '%s'" | 3252 | msgstr "%s%snom de la commande '%s'" |
4249 | 3253 | ||
4250 | #: plugins/check_procs.c:522 | ||
4251 | #, c-format | 3254 | #, c-format |
4252 | msgid "%s%sexclude progs '%s'" | 3255 | msgid "%s%sexclude progs '%s'" |
4253 | msgstr "" | 3256 | msgstr "" |
4254 | 3257 | ||
4255 | #: plugins/check_procs.c:565 | ||
4256 | msgid "RSS must be an integer!" | 3258 | msgid "RSS must be an integer!" |
4257 | msgstr "RSS doit être un entier!" | 3259 | msgstr "RSS doit être un entier!" |
4258 | 3260 | ||
4259 | #: plugins/check_procs.c:572 | ||
4260 | msgid "VSZ must be an integer!" | 3261 | msgid "VSZ must be an integer!" |
4261 | msgstr "VSZ doit être un entier!" | 3262 | msgstr "VSZ doit être un entier!" |
4262 | 3263 | ||
4263 | #: plugins/check_procs.c:580 | ||
4264 | msgid "PCPU must be a float!" | 3264 | msgid "PCPU must be a float!" |
4265 | msgstr "PCPU doit être un nombre en virgule flottante!" | 3265 | msgstr "PCPU doit être un nombre en virgule flottante!" |
4266 | 3266 | ||
4267 | #: plugins/check_procs.c:604 | ||
4268 | msgid "Metric must be one of PROCS, VSZ, RSS, CPU, ELAPSED!" | 3267 | msgid "Metric must be one of PROCS, VSZ, RSS, CPU, ELAPSED!" |
4269 | msgstr "Metric doit être l'un des PROCS, VSZ, RSS, CPU, ELAPSED!" | 3268 | msgstr "Metric doit être l'un des PROCS, VSZ, RSS, CPU, ELAPSED!" |
4270 | 3269 | ||
4271 | #: plugins/check_procs.c:735 | ||
4272 | msgid "" | 3270 | msgid "" |
4273 | "Checks all processes and generates WARNING or CRITICAL states if the " | 3271 | "Checks all processes and generates WARNING or CRITICAL states if the " |
4274 | "specified" | 3272 | "specified" |
4275 | msgstr "" | 3273 | msgstr "" |
4276 | 3274 | ||
4277 | #: plugins/check_procs.c:736 | ||
4278 | msgid "" | 3275 | msgid "" |
4279 | "metric is outside the required threshold ranges. The metric defaults to " | 3276 | "metric is outside the required threshold ranges. The metric defaults to " |
4280 | "number" | 3277 | "number" |
4281 | msgstr "" | 3278 | msgstr "" |
4282 | 3279 | ||
4283 | #: plugins/check_procs.c:737 | ||
4284 | msgid "" | 3280 | msgid "" |
4285 | "of processes. Search filters can be applied to limit the processes to check." | 3281 | "of processes. Search filters can be applied to limit the processes to check." |
4286 | msgstr "" | 3282 | msgstr "" |
4287 | 3283 | ||
4288 | #: plugins/check_procs.c:746 | ||
4289 | msgid "Generate warning state if metric is outside this range" | 3284 | msgid "Generate warning state if metric is outside this range" |
4290 | msgstr "" | 3285 | msgstr "" |
4291 | 3286 | ||
4292 | #: plugins/check_procs.c:748 | ||
4293 | msgid "Generate critical state if metric is outside this range" | 3287 | msgid "Generate critical state if metric is outside this range" |
4294 | msgstr "" | 3288 | msgstr "" |
4295 | 3289 | ||
4296 | #: plugins/check_procs.c:750 | ||
4297 | msgid "Check thresholds against metric. Valid types:" | 3290 | msgid "Check thresholds against metric. Valid types:" |
4298 | msgstr "" | 3291 | msgstr "" |
4299 | 3292 | ||
4300 | #: plugins/check_procs.c:751 | ||
4301 | msgid "PROCS - number of processes (default)" | 3293 | msgid "PROCS - number of processes (default)" |
4302 | msgstr "PROCS - nombre de processus (défaut)" | 3294 | msgstr "PROCS - nombre de processus (défaut)" |
4303 | 3295 | ||
4304 | #: plugins/check_procs.c:752 | ||
4305 | msgid "VSZ - virtual memory size" | 3296 | msgid "VSZ - virtual memory size" |
4306 | msgstr "VSZ - taille mémoire virtuelle" | 3297 | msgstr "VSZ - taille mémoire virtuelle" |
4307 | 3298 | ||
4308 | #: plugins/check_procs.c:753 | ||
4309 | msgid "RSS - resident set memory size" | 3299 | msgid "RSS - resident set memory size" |
4310 | msgstr "" | 3300 | msgstr "" |
4311 | 3301 | ||
4312 | #: plugins/check_procs.c:754 | ||
4313 | msgid "CPU - percentage CPU" | 3302 | msgid "CPU - percentage CPU" |
4314 | msgstr "CPU - pourcentage du processeur" | 3303 | msgstr "CPU - pourcentage du processeur" |
4315 | 3304 | ||
4316 | #: plugins/check_procs.c:757 | ||
4317 | msgid "ELAPSED - time elapsed in seconds" | 3305 | msgid "ELAPSED - time elapsed in seconds" |
4318 | msgstr "ELAPSED - temps écoulé en secondes" | 3306 | msgstr "ELAPSED - temps écoulé en secondes" |
4319 | 3307 | ||
4320 | #: plugins/check_procs.c:762 | ||
4321 | msgid "Extra information. Up to 3 verbosity levels" | 3308 | msgid "Extra information. Up to 3 verbosity levels" |
4322 | msgstr "informations supplémentaires. Jusqu'à 3 niveaux de verbosité" | 3309 | msgstr "informations supplémentaires. Jusqu'à 3 niveaux de verbosité" |
4323 | 3310 | ||
4324 | #: plugins/check_procs.c:765 | ||
4325 | msgid "Filter own process the traditional way by PID instead of /proc/pid/exe" | 3311 | msgid "Filter own process the traditional way by PID instead of /proc/pid/exe" |
4326 | msgstr "" | 3312 | msgstr "" |
4327 | 3313 | ||
4328 | #: plugins/check_procs.c:770 | ||
4329 | msgid "Only scan for processes that have, in the output of `ps`, one or" | 3314 | msgid "Only scan for processes that have, in the output of `ps`, one or" |
4330 | msgstr "" | 3315 | msgstr "" |
4331 | 3316 | ||
4332 | #: plugins/check_procs.c:771 | ||
4333 | msgid "more of the status flags you specify (for example R, Z, S, RS," | 3317 | msgid "more of the status flags you specify (for example R, Z, S, RS," |
4334 | msgstr "" | 3318 | msgstr "" |
4335 | 3319 | ||
4336 | #: plugins/check_procs.c:772 | ||
4337 | msgid "RSZDT, plus others based on the output of your 'ps' command)." | 3320 | msgid "RSZDT, plus others based on the output of your 'ps' command)." |
4338 | msgstr "" | 3321 | msgstr "" |
4339 | 3322 | ||
4340 | #: plugins/check_procs.c:774 | ||
4341 | msgid "Only scan for children of the parent process ID indicated." | 3323 | msgid "Only scan for children of the parent process ID indicated." |
4342 | msgstr "" | 3324 | msgstr "" |
4343 | 3325 | ||
4344 | #: plugins/check_procs.c:776 | ||
4345 | msgid "Only scan for processes with VSZ higher than indicated." | 3326 | msgid "Only scan for processes with VSZ higher than indicated." |
4346 | msgstr "" | 3327 | msgstr "" |
4347 | 3328 | ||
4348 | #: plugins/check_procs.c:778 | ||
4349 | msgid "Only scan for processes with RSS higher than indicated." | 3329 | msgid "Only scan for processes with RSS higher than indicated." |
4350 | msgstr "" | 3330 | msgstr "" |
4351 | 3331 | ||
4352 | #: plugins/check_procs.c:780 | ||
4353 | msgid "Only scan for processes with PCPU higher than indicated." | 3332 | msgid "Only scan for processes with PCPU higher than indicated." |
4354 | msgstr "" | 3333 | msgstr "" |
4355 | 3334 | ||
4356 | #: plugins/check_procs.c:782 | ||
4357 | msgid "Only scan for processes with user name or ID indicated." | 3335 | msgid "Only scan for processes with user name or ID indicated." |
4358 | msgstr "" | 3336 | msgstr "" |
4359 | 3337 | ||
4360 | #: plugins/check_procs.c:784 | ||
4361 | msgid "Only scan for processes with args that contain STRING." | 3338 | msgid "Only scan for processes with args that contain STRING." |
4362 | msgstr "" | 3339 | msgstr "" |
4363 | 3340 | ||
4364 | #: plugins/check_procs.c:786 | ||
4365 | msgid "Only scan for processes with args that contain the regex STRING." | 3341 | msgid "Only scan for processes with args that contain the regex STRING." |
4366 | msgstr "" | 3342 | msgstr "" |
4367 | 3343 | ||
4368 | #: plugins/check_procs.c:788 | ||
4369 | msgid "Only scan for exact matches of COMMAND (without path)." | 3344 | msgid "Only scan for exact matches of COMMAND (without path)." |
4370 | msgstr "" | 3345 | msgstr "" |
4371 | 3346 | ||
4372 | #: plugins/check_procs.c:790 | ||
4373 | msgid "Exclude processes which match this comma separated list" | 3347 | msgid "Exclude processes which match this comma separated list" |
4374 | msgstr "" | 3348 | msgstr "" |
4375 | 3349 | ||
4376 | #: plugins/check_procs.c:792 | ||
4377 | msgid "Only scan for non kernel threads (works on Linux only)." | 3350 | msgid "Only scan for non kernel threads (works on Linux only)." |
4378 | msgstr "" | 3351 | msgstr "" |
4379 | 3352 | ||
4380 | #: plugins/check_procs.c:794 | ||
4381 | #, c-format | 3353 | #, c-format |
4382 | msgid "" | 3354 | msgid "" |
4383 | "\n" | 3355 | "\n" |
@@ -4392,7 +3364,6 @@ msgstr "" | |||
4392 | "est à l'intérieur du seuil\n" | 3364 | "est à l'intérieur du seuil\n" |
4393 | "\n" | 3365 | "\n" |
4394 | 3366 | ||
4395 | #: plugins/check_procs.c:799 | ||
4396 | #, c-format | 3367 | #, c-format |
4397 | msgid "" | 3368 | msgid "" |
4398 | "This plugin checks the number of currently running processes and\n" | 3369 | "This plugin checks the number of currently running processes and\n" |
@@ -4409,879 +3380,693 @@ msgstr "" | |||
4409 | "état actuel (ex: 'Z'), ou par le nombre de processus en cours d'exécution\n" | 3380 | "état actuel (ex: 'Z'), ou par le nombre de processus en cours d'exécution\n" |
4410 | "\n" | 3381 | "\n" |
4411 | 3382 | ||
4412 | #: plugins/check_procs.c:808 | ||
4413 | msgid "Warning if not two processes with command name portsentry." | 3383 | msgid "Warning if not two processes with command name portsentry." |
4414 | msgstr "" | 3384 | msgstr "" |
4415 | 3385 | ||
4416 | #: plugins/check_procs.c:809 | ||
4417 | msgid "Critical if < 2 or > 1024 processes" | 3386 | msgid "Critical if < 2 or > 1024 processes" |
4418 | msgstr "" | 3387 | msgstr "" |
4419 | 3388 | ||
4420 | #: plugins/check_procs.c:811 | ||
4421 | msgid "Critical if not at least 1 process with command sshd" | 3389 | msgid "Critical if not at least 1 process with command sshd" |
4422 | msgstr "" | 3390 | msgstr "" |
4423 | 3391 | ||
4424 | #: plugins/check_procs.c:813 | ||
4425 | msgid "Warning if > 1024 processes with command name sshd." | 3392 | msgid "Warning if > 1024 processes with command name sshd." |
4426 | msgstr "" | 3393 | msgstr "" |
4427 | 3394 | ||
4428 | #: plugins/check_procs.c:814 | ||
4429 | msgid "Critical if < 1 processes with command name sshd." | 3395 | msgid "Critical if < 1 processes with command name sshd." |
4430 | msgstr "" | 3396 | msgstr "" |
4431 | 3397 | ||
4432 | #: plugins/check_procs.c:816 | ||
4433 | msgid "Warning alert if > 10 processes with command arguments containing" | 3398 | msgid "Warning alert if > 10 processes with command arguments containing" |
4434 | msgstr "" | 3399 | msgstr "" |
4435 | 3400 | ||
4436 | #: plugins/check_procs.c:817 | ||
4437 | msgid "'/usr/local/bin/perl' and owned by root" | 3401 | msgid "'/usr/local/bin/perl' and owned by root" |
4438 | msgstr "" | 3402 | msgstr "" |
4439 | 3403 | ||
4440 | #: plugins/check_procs.c:819 | ||
4441 | msgid "Alert if VSZ of any processes over 50K or 100K" | 3404 | msgid "Alert if VSZ of any processes over 50K or 100K" |
4442 | msgstr "" | 3405 | msgstr "" |
4443 | 3406 | ||
4444 | #: plugins/check_procs.c:821 | ||
4445 | msgid "Alert if CPU of any processes over 10% or 20%" | 3407 | msgid "Alert if CPU of any processes over 10% or 20%" |
4446 | msgstr "" | 3408 | msgstr "" |
4447 | 3409 | ||
4448 | #: plugins/check_radius.c:181 | ||
4449 | #, fuzzy | 3410 | #, fuzzy |
4450 | msgid "Config file error\n" | 3411 | msgid "Config file error\n" |
4451 | msgstr "Erreur dans le fichier de configuration" | 3412 | msgstr "Erreur dans le fichier de configuration" |
4452 | 3413 | ||
4453 | #: plugins/check_radius.c:190 | ||
4454 | #, fuzzy | 3414 | #, fuzzy |
4455 | msgid "Out of Memory?\n" | 3415 | msgid "Out of Memory?\n" |
4456 | msgstr "Manque de Mémoire?" | 3416 | msgstr "Manque de Mémoire?" |
4457 | 3417 | ||
4458 | #: plugins/check_radius.c:194 | ||
4459 | #, fuzzy | 3418 | #, fuzzy |
4460 | msgid "Invalid NAS-Identifier\n" | 3419 | msgid "Invalid NAS-Identifier\n" |
4461 | msgstr "NAS-Identifier invalide" | 3420 | msgstr "NAS-Identifier invalide" |
4462 | 3421 | ||
4463 | #: plugins/check_radius.c:199 plugins/check_smtp.c:156 | ||
4464 | #, c-format | 3422 | #, c-format |
4465 | msgid "gethostname() failed!\n" | 3423 | msgid "gethostname() failed!\n" |
4466 | msgstr "La commande gethostname() à échoué\n" | 3424 | msgstr "La commande gethostname() à échoué\n" |
4467 | 3425 | ||
4468 | #: plugins/check_radius.c:203 plugins/check_radius.c:206 | ||
4469 | #, fuzzy | 3426 | #, fuzzy |
4470 | msgid "Invalid NAS-IP-Address\n" | 3427 | msgid "Invalid NAS-IP-Address\n" |
4471 | msgstr "NAS-IP-Address invalide" | 3428 | msgstr "NAS-IP-Address invalide" |
4472 | 3429 | ||
4473 | #: plugins/check_radius.c:217 | ||
4474 | #, fuzzy | 3430 | #, fuzzy |
4475 | msgid "Timeout\n" | 3431 | msgid "Timeout\n" |
4476 | msgstr "Temps dépassé" | 3432 | msgstr "Temps dépassé" |
4477 | 3433 | ||
4478 | #: plugins/check_radius.c:219 | ||
4479 | #, fuzzy | 3434 | #, fuzzy |
4480 | msgid "Auth Error\n" | 3435 | msgid "Auth Error\n" |
4481 | msgstr "Erreur d'authentification" | 3436 | msgstr "Erreur d'authentification" |
4482 | 3437 | ||
4483 | #: plugins/check_radius.c:221 | ||
4484 | #, fuzzy | 3438 | #, fuzzy |
4485 | msgid "Auth Failed\n" | 3439 | msgid "Auth Failed\n" |
4486 | msgstr "L'authentification à échoué" | 3440 | msgstr "L'authentification à échoué" |
4487 | 3441 | ||
4488 | #: plugins/check_radius.c:223 | ||
4489 | #, fuzzy | 3442 | #, fuzzy |
4490 | msgid "Bad Response\n" | 3443 | msgid "Bad Response\n" |
4491 | msgstr "Réponse invalide" | 3444 | msgstr "Réponse invalide" |
4492 | 3445 | ||
4493 | #: plugins/check_radius.c:227 | ||
4494 | #, fuzzy | 3446 | #, fuzzy |
4495 | msgid "Auth OK\n" | 3447 | msgid "Auth OK\n" |
4496 | msgstr "L'authentification à réussi" | 3448 | msgstr "L'authentification à réussi" |
4497 | 3449 | ||
4498 | #: plugins/check_radius.c:228 | ||
4499 | #, c-format | 3450 | #, c-format |
4500 | msgid "Unexpected result code %d" | 3451 | msgid "Unexpected result code %d" |
4501 | msgstr "Résultat inattendu: %d" | 3452 | msgstr "Résultat inattendu: %d" |
4502 | 3453 | ||
4503 | #: plugins/check_radius.c:317 | ||
4504 | msgid "Number of retries must be a positive integer" | 3454 | msgid "Number of retries must be a positive integer" |
4505 | msgstr "Le nombre d'essai doit être un entier positif" | 3455 | msgstr "Le nombre d'essai doit être un entier positif" |
4506 | 3456 | ||
4507 | #: plugins/check_radius.c:331 | ||
4508 | msgid "User not specified" | 3457 | msgid "User not specified" |
4509 | msgstr "L'utilisateur n'a pas été spécifié" | 3458 | msgstr "L'utilisateur n'a pas été spécifié" |
4510 | 3459 | ||
4511 | #: plugins/check_radius.c:333 | ||
4512 | msgid "Password not specified" | 3460 | msgid "Password not specified" |
4513 | msgstr "Le mot de passe n'a pas été spécifié" | 3461 | msgstr "Le mot de passe n'a pas été spécifié" |
4514 | 3462 | ||
4515 | #: plugins/check_radius.c:335 | ||
4516 | msgid "Configuration file not specified" | 3463 | msgid "Configuration file not specified" |
4517 | msgstr "Le fichier de configuration n'a pas été spécifié" | 3464 | msgstr "Le fichier de configuration n'a pas été spécifié" |
4518 | 3465 | ||
4519 | #: plugins/check_radius.c:353 | ||
4520 | msgid "Tests to see if a RADIUS server is accepting connections." | 3466 | msgid "Tests to see if a RADIUS server is accepting connections." |
4521 | msgstr "Teste si un serveur RADIUS accepte les connections." | 3467 | msgstr "Teste si un serveur RADIUS accepte les connections." |
4522 | 3468 | ||
4523 | #: plugins/check_radius.c:365 | ||
4524 | msgid "The user to authenticate" | 3469 | msgid "The user to authenticate" |
4525 | msgstr "" | 3470 | msgstr "" |
4526 | 3471 | ||
4527 | #: plugins/check_radius.c:367 | ||
4528 | msgid "Password for authentication (SECURITY RISK)" | 3472 | msgid "Password for authentication (SECURITY RISK)" |
4529 | msgstr "" | 3473 | msgstr "" |
4530 | 3474 | ||
4531 | #: plugins/check_radius.c:369 | ||
4532 | msgid "NAS identifier" | 3475 | msgid "NAS identifier" |
4533 | msgstr "" | 3476 | msgstr "" |
4534 | 3477 | ||
4535 | #: plugins/check_radius.c:371 | ||
4536 | msgid "NAS IP Address" | 3478 | msgid "NAS IP Address" |
4537 | msgstr "Adresse IP NAS" | 3479 | msgstr "Adresse IP NAS" |
4538 | 3480 | ||
4539 | #: plugins/check_radius.c:373 | ||
4540 | msgid "Configuration file" | 3481 | msgid "Configuration file" |
4541 | msgstr "Fichier de configuration" | 3482 | msgstr "Fichier de configuration" |
4542 | 3483 | ||
4543 | #: plugins/check_radius.c:375 | ||
4544 | msgid "Response string to expect from the server" | 3484 | msgid "Response string to expect from the server" |
4545 | msgstr "" | 3485 | msgstr "" |
4546 | 3486 | ||
4547 | #: plugins/check_radius.c:377 | ||
4548 | msgid "Number of times to retry a failed connection" | 3487 | msgid "Number of times to retry a failed connection" |
4549 | msgstr "" | 3488 | msgstr "" |
4550 | 3489 | ||
4551 | #: plugins/check_radius.c:382 | ||
4552 | msgid "" | 3490 | msgid "" |
4553 | "This plugin tests a RADIUS server to see if it is accepting connections." | 3491 | "This plugin tests a RADIUS server to see if it is accepting connections." |
4554 | msgstr "" | 3492 | msgstr "" |
4555 | "Ce plugin teste un serveur RADIUS afin de vérifier si il accepte les " | 3493 | "Ce plugin teste un serveur RADIUS afin de vérifier si il accepte les " |
4556 | "connections." | 3494 | "connections." |
4557 | 3495 | ||
4558 | #: plugins/check_radius.c:383 | ||
4559 | msgid "" | 3496 | msgid "" |
4560 | "The server to test must be specified in the invocation, as well as a user" | 3497 | "The server to test must be specified in the invocation, as well as a user" |
4561 | msgstr "" | 3498 | msgstr "" |
4562 | 3499 | ||
4563 | #: plugins/check_radius.c:384 | 3500 | msgid "name and password. A configuration file must be present. The format of" |
4564 | msgid "" | ||
4565 | "name and password. A configuration file may also be present. The format of" | ||
4566 | msgstr "" | 3501 | msgstr "" |
4567 | 3502 | ||
4568 | #: plugins/check_radius.c:385 | ||
4569 | msgid "" | 3503 | msgid "" |
4570 | "the configuration file is described in the radiusclient library sources." | 3504 | "the configuration file is described in the radiusclient library sources." |
4571 | msgstr "" | 3505 | msgstr "" |
4572 | 3506 | ||
4573 | #: plugins/check_radius.c:386 | ||
4574 | msgid "The password option presents a substantial security issue because the" | 3507 | msgid "The password option presents a substantial security issue because the" |
4575 | msgstr "" | 3508 | msgstr "" |
4576 | 3509 | ||
4577 | #: plugins/check_radius.c:387 | ||
4578 | msgid "" | 3510 | msgid "" |
4579 | "password can possibly be determined by careful watching of the command line" | 3511 | "password can possibly be determined by careful watching of the command line" |
4580 | msgstr "" | 3512 | msgstr "" |
4581 | 3513 | ||
4582 | #: plugins/check_radius.c:388 | ||
4583 | msgid "in a process listing. This risk is exacerbated because the plugin will" | 3514 | msgid "in a process listing. This risk is exacerbated because the plugin will" |
4584 | msgstr "" | 3515 | msgstr "" |
4585 | 3516 | ||
4586 | #: plugins/check_radius.c:389 | ||
4587 | msgid "" | 3517 | msgid "" |
4588 | "typically be executed at regular predictable intervals. Please be sure that" | 3518 | "typically be executed at regular predictable intervals. Please be sure that" |
4589 | msgstr "" | 3519 | msgstr "" |
4590 | 3520 | ||
4591 | #: plugins/check_radius.c:390 | ||
4592 | msgid "the password used does not allow access to sensitive system resources." | 3521 | msgid "the password used does not allow access to sensitive system resources." |
4593 | msgstr "" | 3522 | msgstr "" |
4594 | 3523 | ||
4595 | #: plugins/check_real.c:91 | ||
4596 | #, c-format | 3524 | #, c-format |
4597 | msgid "Unable to connect to %s on port %d\n" | 3525 | msgid "Unable to connect to %s on port %d\n" |
4598 | msgstr "Impossible de se connecter à %s sur le port %d\n" | 3526 | msgstr "Impossible de se connecter à %s sur le port %d\n" |
4599 | 3527 | ||
4600 | #: plugins/check_real.c:113 | ||
4601 | #, c-format | 3528 | #, c-format |
4602 | msgid "No data received from %s\n" | 3529 | msgid "No data received from %s\n" |
4603 | msgstr "Pas de données reçues de %s\n" | 3530 | msgstr "Pas de données reçues de %s\n" |
4604 | 3531 | ||
4605 | #: plugins/check_real.c:118 plugins/check_real.c:192 | ||
4606 | msgid "Invalid REAL response received from host" | 3532 | msgid "Invalid REAL response received from host" |
4607 | msgstr "Réponses REAL invalide reçue de l'hôte" | 3533 | msgstr "Réponses REAL invalide reçue de l'hôte" |
4608 | 3534 | ||
4609 | #: plugins/check_real.c:120 plugins/check_real.c:194 | ||
4610 | #, c-format | 3535 | #, c-format |
4611 | msgid "Invalid REAL response received from host on port %d\n" | 3536 | msgid "Invalid REAL response received from host on port %d\n" |
4612 | msgstr "Réponses REAL invalide reçue de l'hôte sur le port %d\n" | 3537 | msgstr "Réponses REAL invalide reçue de l'hôte sur le port %d\n" |
4613 | 3538 | ||
4614 | #: plugins/check_real.c:185 plugins/check_tcp.c:315 | ||
4615 | #, c-format | 3539 | #, c-format |
4616 | msgid "No data received from host\n" | 3540 | msgid "No data received from host\n" |
4617 | msgstr "Pas de données reçues de l'hôte\n" | 3541 | msgstr "Pas de données reçues de l'hôte\n" |
4618 | 3542 | ||
4619 | #: plugins/check_real.c:248 | ||
4620 | #, c-format | 3543 | #, c-format |
4621 | msgid "REAL %s - %d second response time\n" | 3544 | msgid "REAL %s - %d second response time\n" |
4622 | msgstr "REAL %s - %d secondes de temps de réponse\n" | 3545 | msgstr "REAL %s - %d secondes de temps de réponse\n" |
4623 | 3546 | ||
4624 | #: plugins/check_real.c:337 plugins/check_ups.c:539 | ||
4625 | msgid "Warning time must be a positive integer" | 3547 | msgid "Warning time must be a positive integer" |
4626 | msgstr "Le seuil d'avertissement doit être un entier positif" | 3548 | msgstr "Le seuil d'avertissement doit être un entier positif" |
4627 | 3549 | ||
4628 | #: plugins/check_real.c:346 plugins/check_ups.c:530 | ||
4629 | msgid "Critical time must be a positive integer" | 3550 | msgid "Critical time must be a positive integer" |
4630 | msgstr "Le seuil critique doit être un entier positif" | 3551 | msgstr "Le seuil critique doit être un entier positif" |
4631 | 3552 | ||
4632 | #: plugins/check_real.c:382 | ||
4633 | msgid "You must provide a server to check" | 3553 | msgid "You must provide a server to check" |
4634 | msgstr "Vous devez fournir un serveur à vérifier" | 3554 | msgstr "Vous devez fournir un serveur à vérifier" |
4635 | 3555 | ||
4636 | #: plugins/check_real.c:414 | ||
4637 | msgid "This plugin tests the REAL service on the specified host." | 3556 | msgid "This plugin tests the REAL service on the specified host." |
4638 | msgstr "Ce plugin teste le service REAL sur l'hôte spécifié." | 3557 | msgstr "Ce plugin teste le service REAL sur l'hôte spécifié." |
4639 | 3558 | ||
4640 | #: plugins/check_real.c:426 | ||
4641 | msgid "Connect to this url" | 3559 | msgid "Connect to this url" |
4642 | msgstr "" | 3560 | msgstr "" |
4643 | 3561 | ||
4644 | #: plugins/check_real.c:428 | ||
4645 | #, c-format | 3562 | #, c-format |
4646 | msgid "String to expect in first line of server response (default: %s)\n" | 3563 | msgid "String to expect in first line of server response (default: %s)\n" |
4647 | msgstr "" | 3564 | msgstr "" |
4648 | "Texte attendu dans la première ligne de réponse du serveur (défaut: %s)\n" | 3565 | "Texte attendu dans la première ligne de réponse du serveur (défaut: %s)\n" |
4649 | 3566 | ||
4650 | #: plugins/check_real.c:438 | ||
4651 | msgid "This plugin will attempt to open an RTSP connection with the host." | 3567 | msgid "This plugin will attempt to open an RTSP connection with the host." |
4652 | msgstr "Ce plugin va essayer d'ouvrir un connexion RTSP avec l'hôte." | 3568 | msgstr "Ce plugin va essayer d'ouvrir un connexion RTSP avec l'hôte." |
4653 | 3569 | ||
4654 | #: plugins/check_real.c:439 plugins/check_smtp.c:878 | ||
4655 | msgid "Successful connects return STATE_OK, refusals and timeouts return" | 3570 | msgid "Successful connects return STATE_OK, refusals and timeouts return" |
4656 | msgstr "" | 3571 | msgstr "" |
4657 | 3572 | ||
4658 | #: plugins/check_real.c:440 | ||
4659 | msgid "" | 3573 | msgid "" |
4660 | "STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful connects," | 3574 | "STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful connects," |
4661 | msgstr "" | 3575 | msgstr "" |
4662 | 3576 | ||
4663 | #: plugins/check_real.c:441 | ||
4664 | msgid "" | 3577 | msgid "" |
4665 | "but incorrect response messages from the host result in STATE_WARNING return" | 3578 | "but incorrect response messages from the host result in STATE_WARNING return" |
4666 | msgstr "" | 3579 | msgstr "" |
4667 | 3580 | ||
4668 | #: plugins/check_real.c:442 | ||
4669 | msgid "values." | 3581 | msgid "values." |
4670 | msgstr "" | 3582 | msgstr "" |
4671 | 3583 | ||
4672 | #: plugins/check_smtp.c:152 plugins/check_swap.c:283 plugins/check_swap.c:289 | ||
4673 | #, c-format | 3584 | #, c-format |
4674 | msgid "malloc() failed!\n" | 3585 | msgid "malloc() failed!\n" |
4675 | msgstr "l'allocation mémoire à échoué!\n" | 3586 | msgstr "l'allocation mémoire à échoué!\n" |
4676 | 3587 | ||
4677 | #: plugins/check_smtp.c:200 plugins/check_smtp.c:212 | 3588 | #, c-format |
3589 | msgid "CRITICAL - Cannot create SSL context.\n" | ||
3590 | msgstr "CRITIQUE - Impossible de créer le contexte SSL.\n" | ||
3591 | |||
4678 | #, c-format | 3592 | #, c-format |
4679 | msgid "recv() failed\n" | 3593 | msgid "recv() failed\n" |
4680 | msgstr "La commande recv() à échoué\n" | 3594 | msgstr "La commande recv() à échoué\n" |
4681 | 3595 | ||
4682 | #: plugins/check_smtp.c:222 | ||
4683 | #, c-format | 3596 | #, c-format |
4684 | msgid "WARNING - TLS not supported by server\n" | 3597 | msgid "WARNING - TLS not supported by server\n" |
4685 | msgstr "AVERTISSEMENT: - TLS n'est pas supporté par ce serveur\n" | 3598 | msgstr "AVERTISSEMENT: - TLS n'est pas supporté par ce serveur\n" |
4686 | 3599 | ||
4687 | #: plugins/check_smtp.c:234 | ||
4688 | #, c-format | 3600 | #, c-format |
4689 | msgid "Server does not support STARTTLS\n" | 3601 | msgid "Server does not support STARTTLS\n" |
4690 | msgstr "Le serveur ne supporte pas STARTTLS\n" | 3602 | msgstr "Le serveur ne supporte pas STARTTLS\n" |
4691 | 3603 | ||
4692 | #: plugins/check_smtp.c:240 | ||
4693 | #, c-format | ||
4694 | msgid "CRITICAL - Cannot create SSL context.\n" | ||
4695 | msgstr "CRITIQUE - Impossible de créer le contexte SSL.\n" | ||
4696 | |||
4697 | #: plugins/check_smtp.c:260 | ||
4698 | msgid "SMTP UNKNOWN - Cannot send EHLO command via TLS." | 3604 | msgid "SMTP UNKNOWN - Cannot send EHLO command via TLS." |
4699 | msgstr "" | 3605 | msgstr "" |
4700 | 3606 | ||
4701 | #: plugins/check_smtp.c:265 | ||
4702 | #, c-format | 3607 | #, c-format |
4703 | msgid "sent %s" | 3608 | msgid "sent %s" |
4704 | msgstr "envoyé %s" | 3609 | msgstr "envoyé %s" |
4705 | 3610 | ||
4706 | #: plugins/check_smtp.c:267 | ||
4707 | msgid "SMTP UNKNOWN - Cannot read EHLO response via TLS." | 3611 | msgid "SMTP UNKNOWN - Cannot read EHLO response via TLS." |
4708 | msgstr "" | 3612 | msgstr "" |
4709 | 3613 | ||
4710 | #: plugins/check_smtp.c:297 | ||
4711 | #, c-format | 3614 | #, c-format |
4712 | msgid "Invalid SMTP response received from host: %s\n" | 3615 | msgid "Invalid SMTP response received from host: %s\n" |
4713 | msgstr "Réponse SMTP reçue de l'hôte invalide: %s\n" | 3616 | msgstr "Réponse SMTP reçue de l'hôte invalide: %s\n" |
4714 | 3617 | ||
4715 | #: plugins/check_smtp.c:299 | ||
4716 | #, c-format | 3618 | #, c-format |
4717 | msgid "Invalid SMTP response received from host on port %d: %s\n" | 3619 | msgid "Invalid SMTP response received from host on port %d: %s\n" |
4718 | msgstr "Réponse SMTP reçue de l'hôte sur le port %d invalide: %s\n" | 3620 | msgstr "Réponse SMTP reçue de l'hôte sur le port %d invalide: %s\n" |
4719 | 3621 | ||
4720 | #: plugins/check_smtp.c:322 plugins/check_snmp.c:866 | ||
4721 | #, c-format | 3622 | #, c-format |
4722 | msgid "Could Not Compile Regular Expression" | 3623 | msgid "Could Not Compile Regular Expression" |
4723 | msgstr "Impossible de compiler l'expression rationnelle" | 3624 | msgstr "Impossible de compiler l'expression rationnelle" |
4724 | 3625 | ||
4725 | #: plugins/check_smtp.c:331 | ||
4726 | #, c-format | 3626 | #, c-format |
4727 | msgid "SMTP %s - Invalid response '%s' to command '%s'\n" | 3627 | msgid "SMTP %s - Invalid response '%s' to command '%s'\n" |
4728 | msgstr "SMTP %s - réponse invalide de '%s' à la commande '%s'\n" | 3628 | msgstr "SMTP %s - réponse invalide de '%s' à la commande '%s'\n" |
4729 | 3629 | ||
4730 | #: plugins/check_smtp.c:335 plugins/check_snmp.c:540 | ||
4731 | #, c-format | 3630 | #, c-format |
4732 | msgid "Execute Error: %s\n" | 3631 | msgid "Execute Error: %s\n" |
4733 | msgstr "Erreur d'exécution: %s\n" | 3632 | msgstr "Erreur d'exécution: %s\n" |
4734 | 3633 | ||
4735 | #: plugins/check_smtp.c:349 | ||
4736 | msgid "no authuser specified, " | 3634 | msgid "no authuser specified, " |
4737 | msgstr "Pas d'utilisateur pour l'authentification spécifié, " | 3635 | msgstr "Pas d'utilisateur pour l'authentification spécifié, " |
4738 | 3636 | ||
4739 | #: plugins/check_smtp.c:354 | ||
4740 | msgid "no authpass specified, " | 3637 | msgid "no authpass specified, " |
4741 | msgstr "pas de mot de passe spécifié, " | 3638 | msgstr "pas de mot de passe spécifié, " |
4742 | 3639 | ||
4743 | #: plugins/check_smtp.c:361 plugins/check_smtp.c:382 plugins/check_smtp.c:402 | ||
4744 | #: plugins/check_smtp.c:728 | ||
4745 | #, c-format | 3640 | #, c-format |
4746 | msgid "sent %s\n" | 3641 | msgid "sent %s\n" |
4747 | msgstr "envoyé %s\n" | 3642 | msgstr "envoyé %s\n" |
4748 | 3643 | ||
4749 | #: plugins/check_smtp.c:364 | ||
4750 | msgid "recv() failed after AUTH LOGIN, " | 3644 | msgid "recv() failed after AUTH LOGIN, " |
4751 | msgstr "recv() à échoué après AUTH LOGIN, " | 3645 | msgstr "recv() à échoué après AUTH LOGIN, " |
4752 | 3646 | ||
4753 | #: plugins/check_smtp.c:369 plugins/check_smtp.c:390 plugins/check_smtp.c:410 | ||
4754 | #: plugins/check_smtp.c:739 | ||
4755 | #, c-format | 3647 | #, c-format |
4756 | msgid "received %s\n" | 3648 | msgid "received %s\n" |
4757 | msgstr "reçu %s\n" | 3649 | msgstr "reçu %s\n" |
4758 | 3650 | ||
4759 | #: plugins/check_smtp.c:373 | ||
4760 | msgid "invalid response received after AUTH LOGIN, " | 3651 | msgid "invalid response received after AUTH LOGIN, " |
4761 | msgstr "Réponse invalide reçue après AUTH LOGIN, " | 3652 | msgstr "Réponse invalide reçue après AUTH LOGIN, " |
4762 | 3653 | ||
4763 | #: plugins/check_smtp.c:386 | ||
4764 | msgid "recv() failed after sending authuser, " | 3654 | msgid "recv() failed after sending authuser, " |
4765 | msgstr "La commande recv() a échoué après authuser, " | 3655 | msgstr "La commande recv() a échoué après authuser, " |
4766 | 3656 | ||
4767 | #: plugins/check_smtp.c:394 | ||
4768 | msgid "invalid response received after authuser, " | 3657 | msgid "invalid response received after authuser, " |
4769 | msgstr "Réponse invalide reçue après authuser, " | 3658 | msgstr "Réponse invalide reçue après authuser, " |
4770 | 3659 | ||
4771 | #: plugins/check_smtp.c:406 | ||
4772 | msgid "recv() failed after sending authpass, " | 3660 | msgid "recv() failed after sending authpass, " |
4773 | msgstr "la commande recv() à échoué après authpass, " | 3661 | msgstr "la commande recv() à échoué après authpass, " |
4774 | 3662 | ||
4775 | #: plugins/check_smtp.c:414 | ||
4776 | msgid "invalid response received after authpass, " | 3663 | msgid "invalid response received after authpass, " |
4777 | msgstr "Réponse invalide reçue après authpass, " | 3664 | msgstr "Réponse invalide reçue après authpass, " |
4778 | 3665 | ||
4779 | #: plugins/check_smtp.c:421 | ||
4780 | msgid "only authtype LOGIN is supported, " | 3666 | msgid "only authtype LOGIN is supported, " |
4781 | msgstr "seul la méthode d'authentification LOGIN est supportée, " | 3667 | msgstr "seul la méthode d'authentification LOGIN est supportée, " |
4782 | 3668 | ||
4783 | #: plugins/check_smtp.c:445 | ||
4784 | #, c-format | 3669 | #, c-format |
4785 | msgid "SMTP %s - %s%.3f sec. response time%s%s|%s\n" | 3670 | msgid "SMTP %s - %s%.3f sec. response time%s%s|%s\n" |
4786 | msgstr "SMTP %s - %s%.3f sec. de temps de réponse%s%s|%s\n" | 3671 | msgstr "SMTP %s - %s%.3f sec. de temps de réponse%s%s|%s\n" |
4787 | 3672 | ||
4788 | #: plugins/check_smtp.c:562 plugins/check_smtp.c:574 | ||
4789 | #, c-format | 3673 | #, c-format |
4790 | msgid "Could not realloc() units [%d]\n" | 3674 | msgid "Could not realloc() units [%d]\n" |
4791 | msgstr "Impossible de réallouer des unités [%d]\n" | 3675 | msgstr "Impossible de réallouer des unités [%d]\n" |
4792 | 3676 | ||
4793 | #: plugins/check_smtp.c:582 | ||
4794 | #, fuzzy | 3677 | #, fuzzy |
4795 | msgid "Critical time must be a positive" | 3678 | msgid "Critical time must be a positive" |
4796 | msgstr "Le seuil critique doit être un entier positif" | 3679 | msgstr "Le seuil critique doit être un entier positif" |
4797 | 3680 | ||
4798 | #: plugins/check_smtp.c:590 | ||
4799 | #, fuzzy | 3681 | #, fuzzy |
4800 | msgid "Warning time must be a positive" | 3682 | msgid "Warning time must be a positive" |
4801 | msgstr "Le seuil d'avertissement doit être un entier positif" | 3683 | msgstr "Le seuil d'avertissement doit être un entier positif" |
4802 | 3684 | ||
4803 | #: plugins/check_smtp.c:633 plugins/check_smtp.c:645 | ||
4804 | msgid "SSL support not available - install OpenSSL and recompile" | 3685 | msgid "SSL support not available - install OpenSSL and recompile" |
4805 | msgstr "SSL n'est pas disponible - installer OpenSSL et recompilez" | 3686 | msgstr "SSL n'est pas disponible - installer OpenSSL et recompilez" |
4806 | 3687 | ||
4807 | #: plugins/check_smtp.c:719 plugins/check_smtp.c:724 | 3688 | msgid "Set either -s/--ssl/--tls or -S/--starttls" |
3689 | msgstr "Définissez -s/--ssl/--tls ou -S/--starttls" | ||
3690 | |||
4808 | #, c-format | 3691 | #, c-format |
4809 | msgid "Connection closed by server before sending QUIT command\n" | 3692 | msgid "Connection closed by server before sending QUIT command\n" |
4810 | msgstr "" | 3693 | msgstr "" |
4811 | 3694 | ||
4812 | #: plugins/check_smtp.c:734 | ||
4813 | #, c-format | 3695 | #, c-format |
4814 | msgid "recv() failed after QUIT." | 3696 | msgid "recv() failed after QUIT." |
4815 | msgstr "recv() à échoué après QUIT." | 3697 | msgstr "recv() à échoué après QUIT." |
4816 | 3698 | ||
4817 | #: plugins/check_smtp.c:736 | ||
4818 | #, c-format | 3699 | #, c-format |
4819 | msgid "Connection reset by peer." | 3700 | msgid "Connection reset by peer." |
4820 | msgstr "" | 3701 | msgstr "" |
4821 | 3702 | ||
4822 | #: plugins/check_smtp.c:826 | ||
4823 | msgid "This plugin will attempt to open an SMTP connection with the host." | 3703 | msgid "This plugin will attempt to open an SMTP connection with the host." |
4824 | msgstr "Ce plugin va essayer d'ouvrir un connexion SMTP avec l'hôte." | 3704 | msgstr "Ce plugin va essayer d'ouvrir un connexion SMTP avec l'hôte." |
4825 | 3705 | ||
4826 | #: plugins/check_smtp.c:840 | ||
4827 | #, c-format | 3706 | #, c-format |
4828 | msgid " String to expect in first line of server response (default: '%s')\n" | 3707 | msgid " String to expect in first line of server response (default: '%s')\n" |
4829 | msgstr "" | 3708 | msgstr "" |
4830 | " Texte attendu dans la première ligne de réponse du serveur (défaut: " | 3709 | " Texte attendu dans la première ligne de réponse du serveur (défaut: " |
4831 | "'%s')\n" | 3710 | "'%s')\n" |
4832 | 3711 | ||
4833 | #: plugins/check_smtp.c:842 | ||
4834 | msgid "SMTP command (may be used repeatedly)" | 3712 | msgid "SMTP command (may be used repeatedly)" |
4835 | msgstr "Commande SMTP (peut être utilisé plusieurs fois)" | 3713 | msgstr "Commande SMTP (peut être utilisé plusieurs fois)" |
4836 | 3714 | ||
4837 | #: plugins/check_smtp.c:844 | ||
4838 | msgid "Expected response to command (may be used repeatedly)" | 3715 | msgid "Expected response to command (may be used repeatedly)" |
4839 | msgstr "" | 3716 | msgstr "" |
4840 | 3717 | ||
4841 | #: plugins/check_smtp.c:846 | ||
4842 | msgid "FROM-address to include in MAIL command, required by Exchange 2000" | 3718 | msgid "FROM-address to include in MAIL command, required by Exchange 2000" |
4843 | msgstr "" | 3719 | msgstr "" |
4844 | 3720 | ||
4845 | #: plugins/check_smtp.c:848 | ||
4846 | msgid "FQDN used for HELO" | 3721 | msgid "FQDN used for HELO" |
4847 | msgstr "" | 3722 | msgstr "" |
4848 | 3723 | ||
4849 | #: plugins/check_smtp.c:850 | ||
4850 | msgid "Use PROXY protocol prefix for the connection." | 3724 | msgid "Use PROXY protocol prefix for the connection." |
4851 | msgstr "Utiliser le préfixe du protocole PROXY pour la connexion." | 3725 | msgstr "Utiliser le préfixe du protocole PROXY pour la connexion." |
4852 | 3726 | ||
4853 | #: plugins/check_smtp.c:853 plugins/check_tcp.c:689 | ||
4854 | msgid "Minimum number of days a certificate has to be valid." | 3727 | msgid "Minimum number of days a certificate has to be valid." |
4855 | msgstr "Nombre de jours minimum pour que le certificat soit valide." | 3728 | msgstr "Nombre de jours minimum pour que le certificat soit valide." |
4856 | 3729 | ||
4857 | #: plugins/check_smtp.c:855 | 3730 | #, fuzzy |
3731 | msgid "Use SSL/TLS for the connection." | ||
3732 | msgstr "Utiliser SSL/TLS pour la connexion." | ||
3733 | |||
3734 | #, c-format | ||
3735 | msgid " Sets default port to %d.\n" | ||
3736 | msgstr " Définit le port par défaut à %d.\n" | ||
3737 | |||
4858 | msgid "Use STARTTLS for the connection." | 3738 | msgid "Use STARTTLS for the connection." |
4859 | msgstr "" | 3739 | msgstr "Utiliser STARTTLS pour la connexion." |
4860 | 3740 | ||
4861 | #: plugins/check_smtp.c:861 | ||
4862 | msgid "SMTP AUTH type to check (default none, only LOGIN supported)" | 3741 | msgid "SMTP AUTH type to check (default none, only LOGIN supported)" |
4863 | msgstr "" | 3742 | msgstr "" |
4864 | 3743 | ||
4865 | #: plugins/check_smtp.c:863 | ||
4866 | msgid "SMTP AUTH username" | 3744 | msgid "SMTP AUTH username" |
4867 | msgstr "" | 3745 | msgstr "" |
4868 | 3746 | ||
4869 | #: plugins/check_smtp.c:865 | ||
4870 | msgid "SMTP AUTH password" | 3747 | msgid "SMTP AUTH password" |
4871 | msgstr "" | 3748 | msgstr "" |
4872 | 3749 | ||
4873 | #: plugins/check_smtp.c:867 | ||
4874 | msgid "Send LHLO instead of HELO/EHLO" | 3750 | msgid "Send LHLO instead of HELO/EHLO" |
4875 | msgstr "" | 3751 | msgstr "" |
4876 | 3752 | ||
4877 | #: plugins/check_smtp.c:869 | ||
4878 | msgid "Ignore failure when sending QUIT command to server" | 3753 | msgid "Ignore failure when sending QUIT command to server" |
4879 | msgstr "" | 3754 | msgstr "" |
4880 | 3755 | ||
4881 | #: plugins/check_smtp.c:879 | ||
4882 | msgid "STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful" | 3756 | msgid "STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful" |
4883 | msgstr "" | 3757 | msgstr "" |
4884 | 3758 | ||
4885 | #: plugins/check_smtp.c:880 | ||
4886 | msgid "connects, but incorrect response messages from the host result in" | 3759 | msgid "connects, but incorrect response messages from the host result in" |
4887 | msgstr "" | 3760 | msgstr "" |
4888 | 3761 | ||
4889 | #: plugins/check_smtp.c:881 | ||
4890 | msgid "STATE_WARNING return values." | 3762 | msgid "STATE_WARNING return values." |
4891 | msgstr "" | 3763 | msgstr "" |
4892 | 3764 | ||
4893 | #: plugins/check_snmp.c:177 plugins/check_snmp.c:626 | ||
4894 | msgid "Cannot malloc" | 3765 | msgid "Cannot malloc" |
4895 | msgstr "" | 3766 | msgstr "" |
4896 | 3767 | ||
4897 | #: plugins/check_snmp.c:368 | ||
4898 | #, c-format | 3768 | #, c-format |
4899 | msgid "External command error: %s\n" | 3769 | msgid "External command error: %s\n" |
4900 | msgstr "Erreur d'exécution de commande externe: %s\n" | 3770 | msgstr "Erreur d'exécution de commande externe: %s\n" |
4901 | 3771 | ||
4902 | #: plugins/check_snmp.c:373 | ||
4903 | #, c-format | 3772 | #, c-format |
4904 | msgid "External command error with no output (return code: %d)\n" | 3773 | msgid "External command error with no output (return code: %d)\n" |
4905 | msgstr "" | 3774 | msgstr "" |
4906 | 3775 | ||
4907 | #: plugins/check_snmp.c:486 plugins/check_snmp.c:488 plugins/check_snmp.c:490 | ||
4908 | #: plugins/check_snmp.c:492 | ||
4909 | #, fuzzy, c-format | 3776 | #, fuzzy, c-format |
4910 | msgid "No valid data returned (%s)\n" | 3777 | msgid "No valid data returned (%s)\n" |
4911 | msgstr "Pas de données valides reçues" | 3778 | msgstr "Pas de données valides reçues" |
4912 | 3779 | ||
4913 | #: plugins/check_snmp.c:504 | ||
4914 | msgid "Time duration between plugin calls is invalid" | 3780 | msgid "Time duration between plugin calls is invalid" |
4915 | msgstr "" | 3781 | msgstr "" |
4916 | 3782 | ||
4917 | #: plugins/check_snmp.c:632 | ||
4918 | msgid "Cannot asprintf()" | 3783 | msgid "Cannot asprintf()" |
4919 | msgstr "" | 3784 | msgstr "" |
4920 | 3785 | ||
4921 | #: plugins/check_snmp.c:638 | ||
4922 | #, fuzzy | 3786 | #, fuzzy |
4923 | msgid "Cannot realloc()" | 3787 | msgid "Cannot realloc()" |
4924 | msgstr "Impossible de réallouer des unités\n" | 3788 | msgstr "Impossible de réallouer des unités\n" |
4925 | 3789 | ||
4926 | #: plugins/check_snmp.c:654 | ||
4927 | msgid "No previous data to calculate rate - assume okay" | 3790 | msgid "No previous data to calculate rate - assume okay" |
4928 | msgstr "" | 3791 | msgstr "" |
4929 | 3792 | ||
4930 | #: plugins/check_snmp.c:804 | ||
4931 | msgid "Retries interval must be a positive integer" | 3793 | msgid "Retries interval must be a positive integer" |
4932 | msgstr "L'intervalle pour les essais doit être un entier positif" | 3794 | msgstr "L'intervalle pour les essais doit être un entier positif" |
4933 | 3795 | ||
4934 | #: plugins/check_snmp.c:841 | ||
4935 | #, fuzzy | 3796 | #, fuzzy |
4936 | msgid "Exit status must be a positive integer" | 3797 | msgid "Exit status must be a positive integer" |
4937 | msgstr "Maxbytes doit être un entier positif" | 3798 | msgstr "Maxbytes doit être un entier positif" |
4938 | 3799 | ||
4939 | #: plugins/check_snmp.c:891 | ||
4940 | #, c-format | 3800 | #, c-format |
4941 | msgid "Could not reallocate labels[%d]" | 3801 | msgid "Could not reallocate labels[%d]" |
4942 | msgstr "Impossible de réallouer des labels[%d]" | 3802 | msgstr "Impossible de réallouer des labels[%d]" |
4943 | 3803 | ||
4944 | #: plugins/check_snmp.c:904 | ||
4945 | msgid "Could not reallocate labels\n" | 3804 | msgid "Could not reallocate labels\n" |
4946 | msgstr "Impossible de réallouer des labels\n" | 3805 | msgstr "Impossible de réallouer des labels\n" |
4947 | 3806 | ||
4948 | #: plugins/check_snmp.c:920 | ||
4949 | #, c-format | 3807 | #, c-format |
4950 | msgid "Could not reallocate units [%d]\n" | 3808 | msgid "Could not reallocate units [%d]\n" |
4951 | msgstr "Impossible de réallouer des unités [%d]\n" | 3809 | msgstr "Impossible de réallouer des unités [%d]\n" |
4952 | 3810 | ||
4953 | #: plugins/check_snmp.c:932 | ||
4954 | msgid "Could not realloc() units\n" | 3811 | msgid "Could not realloc() units\n" |
4955 | msgstr "Impossible de réallouer des unités\n" | 3812 | msgstr "Impossible de réallouer des unités\n" |
4956 | 3813 | ||
4957 | #: plugins/check_snmp.c:949 | ||
4958 | #, fuzzy | 3814 | #, fuzzy |
4959 | msgid "Rate multiplier must be a positive integer" | 3815 | msgid "Rate multiplier must be a positive integer" |
4960 | msgstr "La taille du paquet doit être un entier positif" | 3816 | msgstr "La taille du paquet doit être un entier positif" |
4961 | 3817 | ||
4962 | #: plugins/check_snmp.c:1024 | ||
4963 | msgid "No host specified\n" | 3818 | msgid "No host specified\n" |
4964 | msgstr "Pas d'hôte spécifié\n" | 3819 | msgstr "Pas d'hôte spécifié\n" |
4965 | 3820 | ||
4966 | #: plugins/check_snmp.c:1028 | ||
4967 | msgid "No OIDs specified\n" | 3821 | msgid "No OIDs specified\n" |
4968 | msgstr "Pas de compteur spécifié\n" | 3822 | msgstr "Pas de compteur spécifié\n" |
4969 | 3823 | ||
4970 | #: plugins/check_snmp.c:1051 plugins/check_snmp.c:1069 | ||
4971 | #: plugins/check_snmp.c:1087 | ||
4972 | #, c-format | 3824 | #, c-format |
4973 | msgid "Required parameter: %s\n" | 3825 | msgid "Required parameter: %s\n" |
4974 | msgstr "" | 3826 | msgstr "" |
4975 | 3827 | ||
4976 | #: plugins/check_snmp.c:1062 | ||
4977 | msgid "Invalid seclevel" | 3828 | msgid "Invalid seclevel" |
4978 | msgstr "" | 3829 | msgstr "" |
4979 | 3830 | ||
4980 | #: plugins/check_snmp.c:1108 | ||
4981 | msgid "Invalid SNMP version" | 3831 | msgid "Invalid SNMP version" |
4982 | msgstr "Version de SNMP invalide" | 3832 | msgstr "Version de SNMP invalide" |
4983 | 3833 | ||
4984 | #: plugins/check_snmp.c:1125 | ||
4985 | msgid "Unbalanced quotes\n" | 3834 | msgid "Unbalanced quotes\n" |
4986 | msgstr "Guillemets manquants\n" | 3835 | msgstr "Guillemets manquants\n" |
4987 | 3836 | ||
4988 | #: plugins/check_snmp.c:1183 | ||
4989 | #, c-format | 3837 | #, c-format |
4990 | msgid "multiplier set (%.1f), but input is not a number: %s" | 3838 | msgid "multiplier set (%.1f), but input is not a number: %s" |
4991 | msgstr "" | 3839 | msgstr "" |
4992 | 3840 | ||
4993 | #: plugins/check_snmp.c:1212 | ||
4994 | msgid "Check status of remote machines and obtain system information via SNMP" | 3841 | msgid "Check status of remote machines and obtain system information via SNMP" |
4995 | msgstr "" | 3842 | msgstr "" |
4996 | "Vérifie l'état des machines distantes et obtient l'information système via " | 3843 | "Vérifie l'état des machines distantes et obtient l'information système via " |
4997 | "SNMP" | 3844 | "SNMP" |
4998 | 3845 | ||
4999 | #: plugins/check_snmp.c:1226 | ||
5000 | msgid "Use SNMP GETNEXT instead of SNMP GET" | 3846 | msgid "Use SNMP GETNEXT instead of SNMP GET" |
5001 | msgstr "Utiliser SNMP GETNEXT au lieu de SNMP GET" | 3847 | msgstr "Utiliser SNMP GETNEXT au lieu de SNMP GET" |
5002 | 3848 | ||
5003 | #: plugins/check_snmp.c:1228 | ||
5004 | msgid "SNMP protocol version" | 3849 | msgid "SNMP protocol version" |
5005 | msgstr "Version du protocole SNMP" | 3850 | msgstr "Version du protocole SNMP" |
5006 | 3851 | ||
5007 | #: plugins/check_snmp.c:1230 | ||
5008 | #, fuzzy | 3852 | #, fuzzy |
5009 | msgid "SNMPv3 context" | 3853 | msgid "SNMPv3 context" |
5010 | msgstr "Nom d'utilisateur SNMPv3" | 3854 | msgstr "Nom d'utilisateur SNMPv3" |
5011 | 3855 | ||
5012 | #: plugins/check_snmp.c:1232 | ||
5013 | msgid "SNMPv3 securityLevel" | 3856 | msgid "SNMPv3 securityLevel" |
5014 | msgstr "Niveau de sécurité SNMPv3 (securityLevel)" | 3857 | msgstr "Niveau de sécurité SNMPv3 (securityLevel)" |
5015 | 3858 | ||
5016 | #: plugins/check_snmp.c:1234 | ||
5017 | msgid "SNMPv3 auth proto" | 3859 | msgid "SNMPv3 auth proto" |
5018 | msgstr "Protocole d'authentification SNMPv3" | 3860 | msgstr "Protocole d'authentification SNMPv3" |
5019 | 3861 | ||
5020 | #: plugins/check_snmp.c:1236 | ||
5021 | msgid "SNMPv3 priv proto (default DES)" | 3862 | msgid "SNMPv3 priv proto (default DES)" |
5022 | msgstr "" | 3863 | msgstr "" |
5023 | 3864 | ||
5024 | #: plugins/check_snmp.c:1240 | ||
5025 | msgid "Optional community string for SNMP communication" | 3865 | msgid "Optional community string for SNMP communication" |
5026 | msgstr "Communauté optionnelle pour la communication SNMP" | 3866 | msgstr "Communauté optionnelle pour la communication SNMP" |
5027 | 3867 | ||
5028 | #: plugins/check_snmp.c:1241 | ||
5029 | msgid "default is" | 3868 | msgid "default is" |
5030 | msgstr "défaut:" | 3869 | msgstr "défaut:" |
5031 | 3870 | ||
5032 | #: plugins/check_snmp.c:1243 | ||
5033 | msgid "SNMPv3 username" | 3871 | msgid "SNMPv3 username" |
5034 | msgstr "Nom d'utilisateur SNMPv3" | 3872 | msgstr "Nom d'utilisateur SNMPv3" |
5035 | 3873 | ||
5036 | #: plugins/check_snmp.c:1245 | ||
5037 | msgid "SNMPv3 authentication password" | 3874 | msgid "SNMPv3 authentication password" |
5038 | msgstr "Mot de passe d'authentification SNMPv3" | 3875 | msgstr "Mot de passe d'authentification SNMPv3" |
5039 | 3876 | ||
5040 | #: plugins/check_snmp.c:1247 | ||
5041 | msgid "SNMPv3 privacy password" | 3877 | msgid "SNMPv3 privacy password" |
5042 | msgstr "Mot de passe de confidentialité SNMPv3" | 3878 | msgstr "Mot de passe de confidentialité SNMPv3" |
5043 | 3879 | ||
5044 | #: plugins/check_snmp.c:1251 | ||
5045 | msgid "Object identifier(s) or SNMP variables whose value you wish to query" | 3880 | msgid "Object identifier(s) or SNMP variables whose value you wish to query" |
5046 | msgstr "" | 3881 | msgstr "" |
5047 | 3882 | ||
5048 | #: plugins/check_snmp.c:1253 | ||
5049 | msgid "" | 3883 | msgid "" |
5050 | "List of MIBS to be loaded (default = none if using numeric OIDs or 'ALL'" | 3884 | "List of MIBS to be loaded (default = none if using numeric OIDs or 'ALL'" |
5051 | msgstr "" | 3885 | msgstr "" |
5052 | 3886 | ||
5053 | #: plugins/check_snmp.c:1254 | ||
5054 | msgid "for symbolic OIDs.)" | 3887 | msgid "for symbolic OIDs.)" |
5055 | msgstr "" | 3888 | msgstr "" |
5056 | 3889 | ||
5057 | #: plugins/check_snmp.c:1256 | ||
5058 | msgid "Delimiter to use when parsing returned data. Default is" | 3890 | msgid "Delimiter to use when parsing returned data. Default is" |
5059 | msgstr "" | 3891 | msgstr "" |
5060 | 3892 | ||
5061 | #: plugins/check_snmp.c:1257 | ||
5062 | msgid "Any data on the right hand side of the delimiter is considered" | 3893 | msgid "Any data on the right hand side of the delimiter is considered" |
5063 | msgstr "" | 3894 | msgstr "" |
5064 | 3895 | ||
5065 | #: plugins/check_snmp.c:1258 | ||
5066 | msgid "to be the data that should be used in the evaluation." | 3896 | msgid "to be the data that should be used in the evaluation." |
5067 | msgstr "" | 3897 | msgstr "" |
5068 | 3898 | ||
5069 | #: plugins/check_snmp.c:1260 | ||
5070 | msgid "If the check returns a 0 length string or NULL value" | 3899 | msgid "If the check returns a 0 length string or NULL value" |
5071 | msgstr "" | 3900 | msgstr "" |
5072 | 3901 | ||
5073 | #: plugins/check_snmp.c:1261 | ||
5074 | msgid "This option allows you to choose what status you want it to exit" | 3902 | msgid "This option allows you to choose what status you want it to exit" |
5075 | msgstr "" | 3903 | msgstr "" |
5076 | 3904 | ||
5077 | #: plugins/check_snmp.c:1262 | ||
5078 | msgid "Excluding this option renders the default exit of 3(STATE_UNKNOWN)" | 3905 | msgid "Excluding this option renders the default exit of 3(STATE_UNKNOWN)" |
5079 | msgstr "" | 3906 | msgstr "" |
5080 | 3907 | ||
5081 | #: plugins/check_snmp.c:1263 | ||
5082 | msgid "0 = OK" | 3908 | msgid "0 = OK" |
5083 | msgstr "" | 3909 | msgstr "" |
5084 | 3910 | ||
5085 | #: plugins/check_snmp.c:1264 | ||
5086 | #, fuzzy | 3911 | #, fuzzy |
5087 | msgid "1 = WARNING" | 3912 | msgid "1 = WARNING" |
5088 | msgstr "AVERTISSEMENT" | 3913 | msgstr "AVERTISSEMENT" |
5089 | 3914 | ||
5090 | #: plugins/check_snmp.c:1265 | ||
5091 | #, fuzzy | 3915 | #, fuzzy |
5092 | msgid "2 = CRITICAL" | 3916 | msgid "2 = CRITICAL" |
5093 | msgstr "CRITIQUE" | 3917 | msgstr "CRITIQUE" |
5094 | 3918 | ||
5095 | #: plugins/check_snmp.c:1266 | ||
5096 | #, fuzzy | 3919 | #, fuzzy |
5097 | msgid "3 = UNKNOWN" | 3920 | msgid "3 = UNKNOWN" |
5098 | msgstr "INCONNU" | 3921 | msgstr "INCONNU" |
5099 | 3922 | ||
5100 | #: plugins/check_snmp.c:1270 | ||
5101 | msgid "Warning threshold range(s)" | 3923 | msgid "Warning threshold range(s)" |
5102 | msgstr "Valeurs pour le seuil d'avertissement" | 3924 | msgstr "Valeurs pour le seuil d'avertissement" |
5103 | 3925 | ||
5104 | #: plugins/check_snmp.c:1272 | ||
5105 | msgid "Critical threshold range(s)" | 3926 | msgid "Critical threshold range(s)" |
5106 | msgstr "Valeurs pour le seuil critique" | 3927 | msgstr "Valeurs pour le seuil critique" |
5107 | 3928 | ||
5108 | #: plugins/check_snmp.c:1274 | ||
5109 | msgid "Enable rate calculation. See 'Rate Calculation' below" | 3929 | msgid "Enable rate calculation. See 'Rate Calculation' below" |
5110 | msgstr "" | 3930 | msgstr "" |
5111 | 3931 | ||
5112 | #: plugins/check_snmp.c:1276 | ||
5113 | msgid "" | 3932 | msgid "" |
5114 | "Converts rate per second. For example, set to 60 to convert to per minute" | 3933 | "Converts rate per second. For example, set to 60 to convert to per minute" |
5115 | msgstr "" | 3934 | msgstr "" |
5116 | 3935 | ||
5117 | #: plugins/check_snmp.c:1278 | ||
5118 | msgid "Add/subtract the specified OFFSET to numeric sensor data" | 3936 | msgid "Add/subtract the specified OFFSET to numeric sensor data" |
5119 | msgstr "" | 3937 | msgstr "" |
5120 | 3938 | ||
5121 | #: plugins/check_snmp.c:1282 | ||
5122 | msgid "Return OK state (for that OID) if STRING is an exact match" | 3939 | msgid "Return OK state (for that OID) if STRING is an exact match" |
5123 | msgstr "" | 3940 | msgstr "" |
5124 | 3941 | ||
5125 | #: plugins/check_snmp.c:1284 | ||
5126 | msgid "" | 3942 | msgid "" |
5127 | "Return OK state (for that OID) if extended regular expression REGEX matches" | 3943 | "Return OK state (for that OID) if extended regular expression REGEX matches" |
5128 | msgstr "" | 3944 | msgstr "" |
5129 | 3945 | ||
5130 | #: plugins/check_snmp.c:1286 | ||
5131 | msgid "" | 3946 | msgid "" |
5132 | "Return OK state (for that OID) if case-insensitive extended REGEX matches" | 3947 | "Return OK state (for that OID) if case-insensitive extended REGEX matches" |
5133 | msgstr "" | 3948 | msgstr "" |
5134 | 3949 | ||
5135 | #: plugins/check_snmp.c:1288 | ||
5136 | msgid "Invert search result (CRITICAL if found)" | 3950 | msgid "Invert search result (CRITICAL if found)" |
5137 | msgstr "" | 3951 | msgstr "" |
5138 | 3952 | ||
5139 | #: plugins/check_snmp.c:1292 | ||
5140 | msgid "Prefix label for output from plugin" | 3953 | msgid "Prefix label for output from plugin" |
5141 | msgstr "" | 3954 | msgstr "" |
5142 | 3955 | ||
5143 | #: plugins/check_snmp.c:1294 | ||
5144 | msgid "Units label(s) for output data (e.g., 'sec.')." | 3956 | msgid "Units label(s) for output data (e.g., 'sec.')." |
5145 | msgstr "" | 3957 | msgstr "" |
5146 | 3958 | ||
5147 | #: plugins/check_snmp.c:1296 | ||
5148 | msgid "Separates output on multiple OID requests" | 3959 | msgid "Separates output on multiple OID requests" |
5149 | msgstr "" | 3960 | msgstr "" |
5150 | 3961 | ||
5151 | #: plugins/check_snmp.c:1298 | ||
5152 | msgid "Multiplies current value, 0 < n < 1 works as divider, defaults to 1" | 3962 | msgid "Multiplies current value, 0 < n < 1 works as divider, defaults to 1" |
5153 | msgstr "" | 3963 | msgstr "" |
5154 | 3964 | ||
5155 | #: plugins/check_snmp.c:1300 | ||
5156 | msgid "C-style format string for float values (see option -M)" | 3965 | msgid "C-style format string for float values (see option -M)" |
5157 | msgstr "" | 3966 | msgstr "" |
5158 | 3967 | ||
5159 | #: plugins/check_snmp.c:1303 | ||
5160 | msgid "" | 3968 | msgid "" |
5161 | "NOTE the final timeout value is calculated using this formula: " | 3969 | "NOTE the final timeout value is calculated using this formula: " |
5162 | "timeout_interval * retries + 5" | 3970 | "timeout_interval * retries + 5" |
5163 | msgstr "" | 3971 | msgstr "" |
5164 | 3972 | ||
5165 | #: plugins/check_snmp.c:1305 | ||
5166 | #, fuzzy | 3973 | #, fuzzy |
5167 | msgid "Number of retries to be used in the requests, default: " | 3974 | msgid "Number of retries to be used in the requests, default: " |
5168 | msgstr "Le nombre d'essai pour les requêtes" | 3975 | msgstr "Le nombre d'essai pour les requêtes" |
5169 | 3976 | ||
5170 | #: plugins/check_snmp.c:1308 | ||
5171 | msgid "Label performance data with OIDs instead of --label's" | 3977 | msgid "Label performance data with OIDs instead of --label's" |
5172 | msgstr "" | 3978 | msgstr "" |
5173 | 3979 | ||
5174 | #: plugins/check_snmp.c:1313 | 3980 | msgid "Tell snmpget to not print errors encountered when parsing MIB files" |
3981 | msgstr "" | ||
3982 | |||
5175 | msgid "" | 3983 | msgid "" |
5176 | "This plugin uses the 'snmpget' command included with the NET-SNMP package." | 3984 | "This plugin uses the 'snmpget' command included with the NET-SNMP package." |
5177 | msgstr "" | 3985 | msgstr "" |
5178 | 3986 | ||
5179 | #: plugins/check_snmp.c:1314 | ||
5180 | msgid "" | 3987 | msgid "" |
5181 | "if you don't have the package installed, you will need to download it from" | 3988 | "if you don't have the package installed, you will need to download it from" |
5182 | msgstr "" | 3989 | msgstr "" |
5183 | "Si vous n'avez pas le programme installé, vous devrez le télécharger depuis" | 3990 | "Si vous n'avez pas le programme installé, vous devrez le télécharger depuis" |
5184 | 3991 | ||
5185 | #: plugins/check_snmp.c:1315 | ||
5186 | msgid "http://net-snmp.sourceforge.net before you can use this plugin." | 3992 | msgid "http://net-snmp.sourceforge.net before you can use this plugin." |
5187 | msgstr "http://net-snmp.sourceforge.net avant de pouvoir utiliser ce plugin." | 3993 | msgstr "http://net-snmp.sourceforge.net avant de pouvoir utiliser ce plugin." |
5188 | 3994 | ||
5189 | #: plugins/check_snmp.c:1319 | ||
5190 | #, fuzzy | 3995 | #, fuzzy |
5191 | msgid "" | 3996 | msgid "" |
5192 | "- Multiple OIDs (and labels) may be indicated by a comma or space-delimited " | 3997 | "- Multiple OIDs (and labels) may be indicated by a comma or space-delimited " |
5193 | msgstr "" | 3998 | msgstr "" |
5194 | "- Des OIDs multiples peuvent être séparées par des virgules ou des espaces" | 3999 | "- Des OIDs multiples peuvent être séparées par des virgules ou des espaces" |
5195 | 4000 | ||
5196 | #: plugins/check_snmp.c:1320 | ||
5197 | #, fuzzy | 4001 | #, fuzzy |
5198 | msgid "list (lists with internal spaces must be quoted)." | 4002 | msgid "list (lists with internal spaces must be quoted)." |
5199 | msgstr "(Les liste avec espaces doivent être entre guillemets). Max:" | 4003 | msgstr "(Les liste avec espaces doivent être entre guillemets). Max:" |
5200 | 4004 | ||
5201 | #: plugins/check_snmp.c:1324 | ||
5202 | msgid "" | 4005 | msgid "" |
5203 | "- When checking multiple OIDs, separate ranges by commas like '-w " | 4006 | "- When checking multiple OIDs, separate ranges by commas like '-w " |
5204 | "1:10,1:,:20'" | 4007 | "1:10,1:,:20'" |
5205 | msgstr "" | 4008 | msgstr "" |
5206 | 4009 | ||
5207 | #: plugins/check_snmp.c:1325 | ||
5208 | msgid "- Note that only one string and one regex may be checked at present" | 4010 | msgid "- Note that only one string and one regex may be checked at present" |
5209 | msgstr "" | 4011 | msgstr "" |
5210 | 4012 | ||
5211 | #: plugins/check_snmp.c:1326 | ||
5212 | msgid "" | 4013 | msgid "" |
5213 | "- All evaluation methods other than PR, STR, and SUBSTR expect that the value" | 4014 | "- All evaluation methods other than PR, STR, and SUBSTR expect that the value" |
5214 | msgstr "" | 4015 | msgstr "" |
5215 | 4016 | ||
5216 | #: plugins/check_snmp.c:1327 | ||
5217 | msgid "returned from the SNMP query is an unsigned integer." | 4017 | msgid "returned from the SNMP query is an unsigned integer." |
5218 | msgstr "" | 4018 | msgstr "" |
5219 | 4019 | ||
5220 | #: plugins/check_snmp.c:1330 | ||
5221 | msgid "Rate Calculation:" | 4020 | msgid "Rate Calculation:" |
5222 | msgstr "" | 4021 | msgstr "" |
5223 | 4022 | ||
5224 | #: plugins/check_snmp.c:1331 | ||
5225 | msgid "In many places, SNMP returns counters that are only meaningful when" | 4023 | msgid "In many places, SNMP returns counters that are only meaningful when" |
5226 | msgstr "" | 4024 | msgstr "" |
5227 | 4025 | ||
5228 | #: plugins/check_snmp.c:1332 | ||
5229 | msgid "calculating the counter difference since the last check. check_snmp" | 4026 | msgid "calculating the counter difference since the last check. check_snmp" |
5230 | msgstr "" | 4027 | msgstr "" |
5231 | 4028 | ||
5232 | #: plugins/check_snmp.c:1333 | ||
5233 | msgid "saves the last state information in a file so that the rate per second" | 4029 | msgid "saves the last state information in a file so that the rate per second" |
5234 | msgstr "" | 4030 | msgstr "" |
5235 | 4031 | ||
5236 | #: plugins/check_snmp.c:1334 | ||
5237 | msgid "can be calculated. Use the --rate option to save state information." | 4032 | msgid "can be calculated. Use the --rate option to save state information." |
5238 | msgstr "" | 4033 | msgstr "" |
5239 | 4034 | ||
5240 | #: plugins/check_snmp.c:1335 | ||
5241 | msgid "" | 4035 | msgid "" |
5242 | "On the first run, there will be no prior state - this will return with OK." | 4036 | "On the first run, there will be no prior state - this will return with OK." |
5243 | msgstr "" | 4037 | msgstr "" |
5244 | 4038 | ||
5245 | #: plugins/check_snmp.c:1336 | ||
5246 | msgid "The state is uniquely determined by the arguments to the plugin, so" | 4039 | msgid "The state is uniquely determined by the arguments to the plugin, so" |
5247 | msgstr "" | 4040 | msgstr "" |
5248 | 4041 | ||
5249 | #: plugins/check_snmp.c:1337 | ||
5250 | msgid "changing the arguments will create a new state file." | 4042 | msgid "changing the arguments will create a new state file." |
5251 | msgstr "" | 4043 | msgstr "" |
5252 | 4044 | ||
5253 | #: plugins/check_ssh.c:170 | ||
5254 | msgid "Port number must be a positive integer" | 4045 | msgid "Port number must be a positive integer" |
5255 | msgstr "Le numéro du port doit être un nombre entier positif" | 4046 | msgstr "Le numéro du port doit être un nombre entier positif" |
5256 | 4047 | ||
5257 | #: plugins/check_ssh.c:237 | ||
5258 | #, c-format | 4048 | #, c-format |
5259 | msgid "Server answer: %s" | 4049 | msgid "Server answer: %s" |
5260 | msgstr "Réponse du serveur: %s" | 4050 | msgstr "Réponse du serveur: %s" |
5261 | 4051 | ||
5262 | #: plugins/check_ssh.c:256 | ||
5263 | #, fuzzy, c-format | 4052 | #, fuzzy, c-format |
5264 | msgid "SSH CRITICAL - %s (protocol %s) version mismatch, expected '%s'\n" | 4053 | msgid "SSH CRITICAL - %s (protocol %s) version mismatch, expected '%s'\n" |
5265 | msgstr "" | 4054 | msgstr "" |
5266 | "SSH AVERTISSEMENT - %s (protocole %s) différence de version, attendu'%s'\n" | 4055 | "SSH AVERTISSEMENT - %s (protocole %s) différence de version, attendu'%s'\n" |
5267 | 4056 | ||
5268 | #: plugins/check_ssh.c:264 | ||
5269 | #, fuzzy, c-format | 4057 | #, fuzzy, c-format |
5270 | msgid "" | 4058 | msgid "" |
5271 | "SSH CRITICAL - %s (protocol %s) protocol version mismatch, expected '%s'\n" | 4059 | "SSH CRITICAL - %s (protocol %s) protocol version mismatch, expected '%s'\n" |
5272 | msgstr "" | 4060 | msgstr "" |
5273 | "SSH AVERTISSEMENT - %s (protocole %s) différence de version, attendu'%s'\n" | 4061 | "SSH AVERTISSEMENT - %s (protocole %s) différence de version, attendu'%s'\n" |
5274 | 4062 | ||
5275 | #: plugins/check_ssh.c:273 | ||
5276 | #, fuzzy, c-format | 4063 | #, fuzzy, c-format |
5277 | msgid "SSH OK - %s (protocol %s) | %s\n" | 4064 | msgid "SSH OK - %s (protocol %s) | %s\n" |
5278 | msgstr "SSH OK - %s (protocole %s)\n" | 4065 | msgstr "SSH OK - %s (protocole %s)\n" |
5279 | 4066 | ||
5280 | #: plugins/check_ssh.c:294 | ||
5281 | msgid "Try to connect to an SSH server at specified server and port" | 4067 | msgid "Try to connect to an SSH server at specified server and port" |
5282 | msgstr "Essaye de se connecter à un serveur SSH précisé à un port précis" | 4068 | msgstr "Essaye de se connecter à un serveur SSH précisé à un port précis" |
5283 | 4069 | ||
5284 | #: plugins/check_ssh.c:310 | ||
5285 | #, fuzzy | 4070 | #, fuzzy |
5286 | msgid "" | 4071 | msgid "" |
5287 | "Alert if string doesn't match expected server version (ex: OpenSSH_3.9p1)" | 4072 | "Alert if string doesn't match expected server version (ex: OpenSSH_3.9p1)" |
@@ -5289,75 +4074,60 @@ msgstr "" | |||
5289 | "AVERTISSEMENT si la chaîne ne correspond pas à la version précisée (ex: " | 4074 | "AVERTISSEMENT si la chaîne ne correspond pas à la version précisée (ex: " |
5290 | "OpenSSH_3.9p1)" | 4075 | "OpenSSH_3.9p1)" |
5291 | 4076 | ||
5292 | #: plugins/check_ssh.c:313 | ||
5293 | #, fuzzy | 4077 | #, fuzzy |
5294 | msgid "Alert if protocol doesn't match expected protocol version (ex: 2.0)" | 4078 | msgid "Alert if protocol doesn't match expected protocol version (ex: 2.0)" |
5295 | msgstr "" | 4079 | msgstr "" |
5296 | "AVERTISSEMENT si la chaîne ne correspond pas à la version précisée (ex: " | 4080 | "AVERTISSEMENT si la chaîne ne correspond pas à la version précisée (ex: " |
5297 | "OpenSSH_3.9p1)" | 4081 | "OpenSSH_3.9p1)" |
5298 | 4082 | ||
5299 | #: plugins/check_swap.c:187 | ||
5300 | #, c-format | 4083 | #, c-format |
5301 | msgid "Command: %s\n" | 4084 | msgid "Command: %s\n" |
5302 | msgstr "Commande: %s\n" | 4085 | msgstr "Commande: %s\n" |
5303 | 4086 | ||
5304 | #: plugins/check_swap.c:189 | ||
5305 | #, c-format | 4087 | #, c-format |
5306 | msgid "Format: %s\n" | 4088 | msgid "Format: %s\n" |
5307 | msgstr "Format: %s\n" | 4089 | msgstr "Format: %s\n" |
5308 | 4090 | ||
5309 | #: plugins/check_swap.c:225 | ||
5310 | #, c-format | 4091 | #, c-format |
5311 | msgid "total=%.0f, used=%.0f, free=%.0f\n" | 4092 | msgid "total=%.0f, used=%.0f, free=%.0f\n" |
5312 | msgstr "total=%.0f, utilisé=%.0f, libre=%.0ff\n" | 4093 | msgstr "total=%.0f, utilisé=%.0f, libre=%.0ff\n" |
5313 | 4094 | ||
5314 | #: plugins/check_swap.c:239 | ||
5315 | #, c-format | 4095 | #, c-format |
5316 | msgid "total=%.0f, free=%.0f\n" | 4096 | msgid "total=%.0f, free=%.0f\n" |
5317 | msgstr "total=%.0f, libre=%.0f\n" | 4097 | msgstr "total=%.0f, libre=%.0f\n" |
5318 | 4098 | ||
5319 | #: plugins/check_swap.c:271 | ||
5320 | msgid "Error getting swap devices\n" | 4099 | msgid "Error getting swap devices\n" |
5321 | msgstr "" | 4100 | msgstr "" |
5322 | 4101 | ||
5323 | #: plugins/check_swap.c:274 | ||
5324 | msgid "SWAP OK: No swap devices defined\n" | 4102 | msgid "SWAP OK: No swap devices defined\n" |
5325 | msgstr "SWAP OK: Pas de périphériques swap définis\n" | 4103 | msgstr "SWAP OK: Pas de périphériques swap définis\n" |
5326 | 4104 | ||
5327 | #: plugins/check_swap.c:295 plugins/check_swap.c:337 | ||
5328 | msgid "swapctl failed: " | 4105 | msgid "swapctl failed: " |
5329 | msgstr "swapctl à échoué:" | 4106 | msgstr "swapctl à échoué:" |
5330 | 4107 | ||
5331 | #: plugins/check_swap.c:296 plugins/check_swap.c:338 | ||
5332 | msgid "Error in swapctl call\n" | 4108 | msgid "Error in swapctl call\n" |
5333 | msgstr "" | 4109 | msgstr "" |
5334 | 4110 | ||
5335 | #: plugins/check_swap.c:376 | ||
5336 | #, fuzzy, c-format | 4111 | #, fuzzy, c-format |
5337 | msgid "SWAP %s - %d%% free (%dMB out of %dMB) %s|" | 4112 | msgid "SWAP %s - %d%% free (%dMB out of %dMB) %s|" |
5338 | msgstr "SWAP %s - %d%% libre (%d MB sur un total de %d MB) %s|" | 4113 | msgstr "SWAP %s - %d%% libre (%d MB sur un total de %d MB) %s|" |
5339 | 4114 | ||
5340 | #: plugins/check_swap.c:472 | ||
5341 | #, fuzzy | 4115 | #, fuzzy |
5342 | msgid "Warning threshold percentage must be <= 100!" | 4116 | msgid "Warning threshold percentage must be <= 100!" |
5343 | msgstr "Le seuil d'avertissement doit être un entier positif" | 4117 | msgstr "Le seuil d'avertissement doit être un entier positif" |
5344 | 4118 | ||
5345 | #: plugins/check_swap.c:482 | ||
5346 | #, fuzzy | 4119 | #, fuzzy |
5347 | msgid "Warning threshold be positive integer or percentage!" | 4120 | msgid "Warning threshold be positive integer or percentage!" |
5348 | msgstr "Le seuil d'avertissement doit être un entier ou un pourcentage!" | 4121 | msgstr "Le seuil d'avertissement doit être un entier ou un pourcentage!" |
5349 | 4122 | ||
5350 | #: plugins/check_swap.c:502 | ||
5351 | #, fuzzy | 4123 | #, fuzzy |
5352 | msgid "Critical threshold percentage must be <= 100!" | 4124 | msgid "Critical threshold percentage must be <= 100!" |
5353 | msgstr "le seuil critique doit être un entier positif" | 4125 | msgstr "le seuil critique doit être un entier positif" |
5354 | 4126 | ||
5355 | #: plugins/check_swap.c:512 | ||
5356 | #, fuzzy | 4127 | #, fuzzy |
5357 | msgid "Critical threshold be positive integer or percentage!" | 4128 | msgid "Critical threshold be positive integer or percentage!" |
5358 | msgstr "Le seuil critique doit être un entier ou un pourcentage!" | 4129 | msgstr "Le seuil critique doit être un entier ou un pourcentage!" |
5359 | 4130 | ||
5360 | #: plugins/check_swap.c:521 | ||
5361 | #, fuzzy | 4131 | #, fuzzy |
5362 | msgid "" | 4132 | msgid "" |
5363 | "no-swap result must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) " | 4133 | "no-swap result must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) " |
@@ -5366,104 +4136,84 @@ msgstr "" | |||
5366 | "Le résultat de temps dépassé doit être un nom d'état valide (OK, WARNING, " | 4136 | "Le résultat de temps dépassé doit être un nom d'état valide (OK, WARNING, " |
5367 | "CRITICAL, UNKNOWN) ou un nombre entier (0-3)." | 4137 | "CRITICAL, UNKNOWN) ou un nombre entier (0-3)." |
5368 | 4138 | ||
5369 | #: plugins/check_swap.c:558 | ||
5370 | #, fuzzy | 4139 | #, fuzzy |
5371 | msgid "Warning should be more than critical" | 4140 | msgid "Warning should be more than critical" |
5372 | msgstr "" | 4141 | msgstr "" |
5373 | "Le pourcentage d'avertissement doit être plus important que le pourcentage " | 4142 | "Le pourcentage d'avertissement doit être plus important que le pourcentage " |
5374 | "critique" | 4143 | "critique" |
5375 | 4144 | ||
5376 | #: plugins/check_swap.c:572 | ||
5377 | msgid "Check swap space on local machine." | 4145 | msgid "Check swap space on local machine." |
5378 | msgstr "Vérifie l'espace swap sur la machine locale." | 4146 | msgstr "Vérifie l'espace swap sur la machine locale." |
5379 | 4147 | ||
5380 | #: plugins/check_swap.c:582 | ||
5381 | msgid "" | 4148 | msgid "" |
5382 | "Exit with WARNING status if less than INTEGER bytes of swap space are free" | 4149 | "Exit with WARNING status if less than INTEGER bytes of swap space are free" |
5383 | msgstr "" | 4150 | msgstr "" |
5384 | "Sortir avec un résultat AVERTISSEMENT si moins de X octets de mémoire " | 4151 | "Sortir avec un résultat AVERTISSEMENT si moins de X octets de mémoire " |
5385 | "virtuelle sont libres" | 4152 | "virtuelle sont libres" |
5386 | 4153 | ||
5387 | #: plugins/check_swap.c:584 | ||
5388 | msgid "Exit with WARNING status if less than PERCENT of swap space is free" | 4154 | msgid "Exit with WARNING status if less than PERCENT of swap space is free" |
5389 | msgstr "" | 4155 | msgstr "" |
5390 | "Sortir avec un résultat AVERTISSEMENT si moins de X pour cent de mémoire " | 4156 | "Sortir avec un résultat AVERTISSEMENT si moins de X pour cent de mémoire " |
5391 | "virtuelle est libre" | 4157 | "virtuelle est libre" |
5392 | 4158 | ||
5393 | #: plugins/check_swap.c:586 | ||
5394 | msgid "" | 4159 | msgid "" |
5395 | "Exit with CRITICAL status if less than INTEGER bytes of swap space are free" | 4160 | "Exit with CRITICAL status if less than INTEGER bytes of swap space are free" |
5396 | msgstr "" | 4161 | msgstr "" |
5397 | "Sortir avec un résultat CRITIQUE si moins de X octets de mémoire virtuelle " | 4162 | "Sortir avec un résultat CRITIQUE si moins de X octets de mémoire virtuelle " |
5398 | "sont libres" | 4163 | "sont libres" |
5399 | 4164 | ||
5400 | #: plugins/check_swap.c:588 | ||
5401 | msgid "Exit with CRITICAL status if less than PERCENT of swap space is free" | 4165 | msgid "Exit with CRITICAL status if less than PERCENT of swap space is free" |
5402 | msgstr "" | 4166 | msgstr "" |
5403 | "Sortir avec un résultat CRITIQUE si moins de X pour cent de mémoire " | 4167 | "Sortir avec un résultat CRITIQUE si moins de X pour cent de mémoire " |
5404 | "virtuelle est libre" | 4168 | "virtuelle est libre" |
5405 | 4169 | ||
5406 | #: plugins/check_swap.c:590 | ||
5407 | msgid "Conduct comparisons for all swap partitions, one by one" | 4170 | msgid "Conduct comparisons for all swap partitions, one by one" |
5408 | msgstr "Vérifier chacune des partitions de mémoire virtuelle séparément" | 4171 | msgstr "Vérifier chacune des partitions de mémoire virtuelle séparément" |
5409 | 4172 | ||
5410 | #: plugins/check_swap.c:592 | ||
5411 | msgid "" | 4173 | msgid "" |
5412 | "Resulting state when there is no swap regardless of thresholds. Default:" | 4174 | "Resulting state when there is no swap regardless of thresholds. Default:" |
5413 | msgstr "" | 4175 | msgstr "" |
5414 | 4176 | ||
5415 | #: plugins/check_swap.c:597 | ||
5416 | #, fuzzy | 4177 | #, fuzzy |
5417 | msgid "" | 4178 | msgid "" |
5418 | "Both INTEGER and PERCENT thresholds can be specified, they are all checked." | 4179 | "Both INTEGER and PERCENT thresholds can be specified, they are all checked." |
5419 | msgstr "Les seuils d'alerte et critiques peuvent être spécifiés avec -w et -c." | 4180 | msgstr "Les seuils d'alerte et critiques peuvent être spécifiés avec -w et -c." |
5420 | 4181 | ||
5421 | #: plugins/check_swap.c:598 | ||
5422 | msgid "On AIX, if -a is specified, uses lsps -a, otherwise uses lsps -s." | 4182 | msgid "On AIX, if -a is specified, uses lsps -a, otherwise uses lsps -s." |
5423 | msgstr "" | 4183 | msgstr "" |
5424 | "Sur AIX, si -a est spécifié, le plugin utilise lsps -a, sinon il utilise " | 4184 | "Sur AIX, si -a est spécifié, le plugin utilise lsps -a, sinon il utilise " |
5425 | "lsps -s." | 4185 | "lsps -s." |
5426 | 4186 | ||
5427 | #: plugins/check_tcp.c:210 | ||
5428 | msgid "CRITICAL - Generic check_tcp called with unknown service\n" | 4187 | msgid "CRITICAL - Generic check_tcp called with unknown service\n" |
5429 | msgstr "" | 4188 | msgstr "" |
5430 | "CRITIQUE -check_tcp version générique utilisé avec un service inconnu\n" | 4189 | "CRITIQUE -check_tcp version générique utilisé avec un service inconnu\n" |
5431 | 4190 | ||
5432 | #: plugins/check_tcp.c:234 | ||
5433 | msgid "With UDP checks, a send/expect string must be specified." | 4191 | msgid "With UDP checks, a send/expect string must be specified." |
5434 | msgstr "" | 4192 | msgstr "" |
5435 | "Avec la surveillance UDP, une chaîne d'envoi et un chaîne de réponse doit " | 4193 | "Avec la surveillance UDP, une chaîne d'envoi et un chaîne de réponse doit " |
5436 | "être spécifiée." | 4194 | "être spécifiée." |
5437 | 4195 | ||
5438 | #: plugins/check_tcp.c:445 | ||
5439 | msgid "No arguments found" | 4196 | msgid "No arguments found" |
5440 | msgstr "Pas de paramètres" | 4197 | msgstr "Pas de paramètres" |
5441 | 4198 | ||
5442 | #: plugins/check_tcp.c:548 | ||
5443 | msgid "Maxbytes must be a positive integer" | 4199 | msgid "Maxbytes must be a positive integer" |
5444 | msgstr "Maxbytes doit être un entier positif" | 4200 | msgstr "Maxbytes doit être un entier positif" |
5445 | 4201 | ||
5446 | #: plugins/check_tcp.c:566 | ||
5447 | msgid "Refuse must be one of ok, warn, crit" | 4202 | msgid "Refuse must be one of ok, warn, crit" |
5448 | msgstr "Refuse doit être parmis ok, warn, crit" | 4203 | msgstr "Refuse doit être parmis ok, warn, crit" |
5449 | 4204 | ||
5450 | #: plugins/check_tcp.c:576 | ||
5451 | msgid "Mismatch must be one of ok, warn, crit" | 4205 | msgid "Mismatch must be one of ok, warn, crit" |
5452 | msgstr "Mismatch doit être parmis ok, warn, crit" | 4206 | msgstr "Mismatch doit être parmis ok, warn, crit" |
5453 | 4207 | ||
5454 | #: plugins/check_tcp.c:582 | ||
5455 | msgid "Delay must be a positive integer" | 4208 | msgid "Delay must be a positive integer" |
5456 | msgstr "Delay doit être un entier positif" | 4209 | msgstr "Delay doit être un entier positif" |
5457 | 4210 | ||
5458 | #: plugins/check_tcp.c:637 | ||
5459 | msgid "You must provide a server address" | 4211 | msgid "You must provide a server address" |
5460 | msgstr "Vous devez fournir une adresse serveur" | 4212 | msgstr "Vous devez fournir une adresse serveur" |
5461 | 4213 | ||
5462 | #: plugins/check_tcp.c:639 | ||
5463 | msgid "Invalid hostname, address or socket" | 4214 | msgid "Invalid hostname, address or socket" |
5464 | msgstr "Adresse/Nom/Socket invalide" | 4215 | msgstr "Adresse/Nom/Socket invalide" |
5465 | 4216 | ||
5466 | #: plugins/check_tcp.c:653 | ||
5467 | #, c-format | 4217 | #, c-format |
5468 | msgid "" | 4218 | msgid "" |
5469 | "This plugin tests %s connections with the specified host (or unix socket).\n" | 4219 | "This plugin tests %s connections with the specified host (or unix socket).\n" |
@@ -5472,7 +4222,6 @@ msgstr "" | |||
5472 | "Ce plugin teste %s connections avec l'hôte spécifié (ou socket unix).\n" | 4222 | "Ce plugin teste %s connections avec l'hôte spécifié (ou socket unix).\n" |
5473 | "\n" | 4223 | "\n" |
5474 | 4224 | ||
5475 | #: plugins/check_tcp.c:666 | ||
5476 | #, fuzzy | 4225 | #, fuzzy |
5477 | msgid "" | 4226 | msgid "" |
5478 | "Can use \\n, \\r, \\t or \\\\ in send or quit string. Must come before send " | 4227 | "Can use \\n, \\r, \\t or \\\\ in send or quit string. Must come before send " |
@@ -5481,436 +4230,343 @@ msgstr "" | |||
5481 | "Permet d'utiliser \\n, \\r, \\t ou \\ dans la chaîne de caractères send ou " | 4230 | "Permet d'utiliser \\n, \\r, \\t ou \\ dans la chaîne de caractères send ou " |
5482 | "quit. Doit être placé avant ces dernières." | 4231 | "quit. Doit être placé avant ces dernières." |
5483 | 4232 | ||
5484 | #: plugins/check_tcp.c:667 | ||
5485 | msgid "Default: nothing added to send, \\r\\n added to end of quit" | 4233 | msgid "Default: nothing added to send, \\r\\n added to end of quit" |
5486 | msgstr "" | 4234 | msgstr "" |
5487 | "Par défaut: Rien n'est ajouté à send, \\r\\n est ajouté à la fin de quit" | 4235 | "Par défaut: Rien n'est ajouté à send, \\r\\n est ajouté à la fin de quit" |
5488 | 4236 | ||
5489 | #: plugins/check_tcp.c:669 | ||
5490 | msgid "String to send to the server" | 4237 | msgid "String to send to the server" |
5491 | msgstr "Chaîne de caractères à envoyer au serveur" | 4238 | msgstr "Chaîne de caractères à envoyer au serveur" |
5492 | 4239 | ||
5493 | #: plugins/check_tcp.c:671 | ||
5494 | msgid "String to expect in server response" | 4240 | msgid "String to expect in server response" |
5495 | msgstr "Chaîne de caractères à attendre en réponse" | 4241 | msgstr "Chaîne de caractères à attendre en réponse" |
5496 | 4242 | ||
5497 | #: plugins/check_tcp.c:671 | ||
5498 | msgid "(may be repeated)" | 4243 | msgid "(may be repeated)" |
5499 | msgstr "(peut être utilisé plusieurs fois)" | 4244 | msgstr "(peut être utilisé plusieurs fois)" |
5500 | 4245 | ||
5501 | #: plugins/check_tcp.c:673 | ||
5502 | msgid "All expect strings need to occur in server response. Default is any" | 4246 | msgid "All expect strings need to occur in server response. Default is any" |
5503 | msgstr "" | 4247 | msgstr "" |
5504 | "Toutes les chaînes attendus (expect) doivent être repérés dans la réponse. " | 4248 | "Toutes les chaînes attendus (expect) doivent être repérés dans la réponse. " |
5505 | "Par défaut, n'importe laquelle suffit." | 4249 | "Par défaut, n'importe laquelle suffit." |
5506 | 4250 | ||
5507 | #: plugins/check_tcp.c:675 | ||
5508 | msgid "String to send server to initiate a clean close of the connection" | 4251 | msgid "String to send server to initiate a clean close of the connection" |
5509 | msgstr "Chaîne de caractères à envoyer pour fermer gracieusement la connection" | 4252 | msgstr "Chaîne de caractères à envoyer pour fermer gracieusement la connection" |
5510 | 4253 | ||
5511 | #: plugins/check_tcp.c:677 | ||
5512 | msgid "Accept TCP refusals with states ok, warn, crit (default: crit)" | 4254 | msgid "Accept TCP refusals with states ok, warn, crit (default: crit)" |
5513 | msgstr "" | 4255 | msgstr "" |
5514 | 4256 | ||
5515 | #: plugins/check_tcp.c:679 | ||
5516 | msgid "" | 4257 | msgid "" |
5517 | "Accept expected string mismatches with states ok, warn, crit (default: warn)" | 4258 | "Accept expected string mismatches with states ok, warn, crit (default: warn)" |
5518 | msgstr "" | 4259 | msgstr "" |
5519 | 4260 | ||
5520 | #: plugins/check_tcp.c:681 | ||
5521 | msgid "Hide output from TCP socket" | 4261 | msgid "Hide output from TCP socket" |
5522 | msgstr "Cacher la réponse provenant du socket TCP" | 4262 | msgstr "Cacher la réponse provenant du socket TCP" |
5523 | 4263 | ||
5524 | #: plugins/check_tcp.c:683 | ||
5525 | msgid "Close connection once more than this number of bytes are received" | 4264 | msgid "Close connection once more than this number of bytes are received" |
5526 | msgstr "" | 4265 | msgstr "" |
5527 | 4266 | ||
5528 | #: plugins/check_tcp.c:685 | ||
5529 | msgid "Seconds to wait between sending string and polling for response" | 4267 | msgid "Seconds to wait between sending string and polling for response" |
5530 | msgstr "" | 4268 | msgstr "" |
5531 | 4269 | ||
5532 | #: plugins/check_tcp.c:690 | ||
5533 | msgid "1st is #days for warning, 2nd is critical (if not specified - 0)." | 4270 | msgid "1st is #days for warning, 2nd is critical (if not specified - 0)." |
5534 | msgstr "" | 4271 | msgstr "" |
5535 | 4272 | ||
5536 | #: plugins/check_tcp.c:692 | ||
5537 | msgid "Use SSL for the connection." | 4273 | msgid "Use SSL for the connection." |
5538 | msgstr "" | 4274 | msgstr "" |
5539 | 4275 | ||
5540 | #: plugins/check_tcp.c:694 | ||
5541 | #, fuzzy | 4276 | #, fuzzy |
5542 | msgid "SSL server_name" | 4277 | msgid "SSL server_name" |
5543 | msgstr "Nom d'utilisateur SNMPv3" | 4278 | msgstr "Nom d'utilisateur SNMPv3" |
5544 | 4279 | ||
5545 | #: plugins/check_time.c:102 | ||
5546 | #, c-format | 4280 | #, c-format |
5547 | msgid "TIME UNKNOWN - could not connect to server %s, port %d\n" | 4281 | msgid "TIME UNKNOWN - could not connect to server %s, port %d\n" |
5548 | msgstr "TEMPS INCONNU - impossible de se connecter au serveur %s, au port %d\n" | 4282 | msgstr "TEMPS INCONNU - impossible de se connecter au serveur %s, au port %d\n" |
5549 | 4283 | ||
5550 | #: plugins/check_time.c:115 | ||
5551 | #, c-format | 4284 | #, c-format |
5552 | msgid "TIME UNKNOWN - could not send UDP request to server %s, port %d\n" | 4285 | msgid "TIME UNKNOWN - could not send UDP request to server %s, port %d\n" |
5553 | msgstr "" | 4286 | msgstr "" |
5554 | "TEMPS INCONNU - impossible d'envoyer une requête UDP au serveur %s, au port " | 4287 | "TEMPS INCONNU - impossible d'envoyer une requête UDP au serveur %s, au port " |
5555 | "%d\n" | 4288 | "%d\n" |
5556 | 4289 | ||
5557 | #: plugins/check_time.c:139 | ||
5558 | #, c-format | 4290 | #, c-format |
5559 | msgid "TIME UNKNOWN - no data received from server %s, port %d\n" | 4291 | msgid "TIME UNKNOWN - no data received from server %s, port %d\n" |
5560 | msgstr "TEMPS INCONNU - pas de données reçues du serveur %s, du port %d\n" | 4292 | msgstr "TEMPS INCONNU - pas de données reçues du serveur %s, du port %d\n" |
5561 | 4293 | ||
5562 | #: plugins/check_time.c:152 | ||
5563 | #, c-format | 4294 | #, c-format |
5564 | msgid "TIME %s - %d second response time|%s\n" | 4295 | msgid "TIME %s - %d second response time|%s\n" |
5565 | msgstr "TEMPS %s - %d secondes de temps de réponse|%s\n" | 4296 | msgstr "TEMPS %s - %d secondes de temps de réponse|%s\n" |
5566 | 4297 | ||
5567 | #: plugins/check_time.c:170 | ||
5568 | #, c-format | 4298 | #, c-format |
5569 | msgid "TIME %s - %lu second time difference|%s %s\n" | 4299 | msgid "TIME %s - %lu second time difference|%s %s\n" |
5570 | msgstr "TEMPS %s - %lu secondes de différence|%s %s\n" | 4300 | msgstr "TEMPS %s - %lu secondes de différence|%s %s\n" |
5571 | 4301 | ||
5572 | #: plugins/check_time.c:254 | ||
5573 | msgid "Warning thresholds must be a positive integer" | 4302 | msgid "Warning thresholds must be a positive integer" |
5574 | msgstr "Les seuils d'avertissement doivent être un entier positif" | 4303 | msgstr "Les seuils d'avertissement doivent être un entier positif" |
5575 | 4304 | ||
5576 | #: plugins/check_time.c:273 | ||
5577 | msgid "Critical thresholds must be a positive integer" | 4305 | msgid "Critical thresholds must be a positive integer" |
5578 | msgstr "Les seuils critiques doivent être un entier positif" | 4306 | msgstr "Les seuils critiques doivent être un entier positif" |
5579 | 4307 | ||
5580 | #: plugins/check_time.c:339 | ||
5581 | msgid "This plugin will check the time on the specified host." | 4308 | msgid "This plugin will check the time on the specified host." |
5582 | msgstr "Ce plugin va vérifier l'heure sur l'hôte spécifié." | 4309 | msgstr "Ce plugin va vérifier l'heure sur l'hôte spécifié." |
5583 | 4310 | ||
5584 | #: plugins/check_time.c:351 | ||
5585 | msgid "Use UDP to connect, not TCP" | 4311 | msgid "Use UDP to connect, not TCP" |
5586 | msgstr "" | 4312 | msgstr "" |
5587 | 4313 | ||
5588 | #: plugins/check_time.c:353 | ||
5589 | msgid "Time difference (sec.) necessary to result in a warning status" | 4314 | msgid "Time difference (sec.) necessary to result in a warning status" |
5590 | msgstr "" | 4315 | msgstr "" |
5591 | 4316 | ||
5592 | #: plugins/check_time.c:355 | ||
5593 | msgid "Time difference (sec.) necessary to result in a critical status" | 4317 | msgid "Time difference (sec.) necessary to result in a critical status" |
5594 | msgstr "" | 4318 | msgstr "" |
5595 | 4319 | ||
5596 | #: plugins/check_time.c:357 | ||
5597 | msgid "Response time (sec.) necessary to result in warning status" | 4320 | msgid "Response time (sec.) necessary to result in warning status" |
5598 | msgstr "" | 4321 | msgstr "" |
5599 | 4322 | ||
5600 | #: plugins/check_time.c:359 | ||
5601 | msgid "Response time (sec.) necessary to result in critical status" | 4323 | msgid "Response time (sec.) necessary to result in critical status" |
5602 | msgstr "" | 4324 | msgstr "" |
5603 | 4325 | ||
5604 | #: plugins/check_ups.c:144 | ||
5605 | msgid "On Battery, Low Battery" | 4326 | msgid "On Battery, Low Battery" |
5606 | msgstr "Sur Batterie, Batterie faible" | 4327 | msgstr "Sur Batterie, Batterie faible" |
5607 | 4328 | ||
5608 | #: plugins/check_ups.c:149 | ||
5609 | msgid "Online" | 4329 | msgid "Online" |
5610 | msgstr "En marche" | 4330 | msgstr "En marche" |
5611 | 4331 | ||
5612 | #: plugins/check_ups.c:152 | ||
5613 | msgid "On Battery" | 4332 | msgid "On Battery" |
5614 | msgstr "Sur Batterie" | 4333 | msgstr "Sur Batterie" |
5615 | 4334 | ||
5616 | #: plugins/check_ups.c:156 | ||
5617 | msgid ", Low Battery" | 4335 | msgid ", Low Battery" |
5618 | msgstr ", Batterie faible" | 4336 | msgstr ", Batterie faible" |
5619 | 4337 | ||
5620 | #: plugins/check_ups.c:160 | ||
5621 | msgid ", Calibrating" | 4338 | msgid ", Calibrating" |
5622 | msgstr ", Calibration" | 4339 | msgstr ", Calibration" |
5623 | 4340 | ||
5624 | #: plugins/check_ups.c:163 | ||
5625 | msgid ", Replace Battery" | 4341 | msgid ", Replace Battery" |
5626 | msgstr ", Remplacer la batterie" | 4342 | msgstr ", Remplacer la batterie" |
5627 | 4343 | ||
5628 | #: plugins/check_ups.c:167 | ||
5629 | msgid ", On Bypass" | 4344 | msgid ", On Bypass" |
5630 | msgstr ", Sur Secteur" | 4345 | msgstr ", Sur Secteur" |
5631 | 4346 | ||
5632 | #: plugins/check_ups.c:170 | ||
5633 | msgid ", Overload" | 4347 | msgid ", Overload" |
5634 | msgstr ", Surcharge" | 4348 | msgstr ", Surcharge" |
5635 | 4349 | ||
5636 | #: plugins/check_ups.c:173 | ||
5637 | msgid ", Trimming" | 4350 | msgid ", Trimming" |
5638 | msgstr ", En Test" | 4351 | msgstr ", En Test" |
5639 | 4352 | ||
5640 | #: plugins/check_ups.c:176 | ||
5641 | msgid ", Boosting" | 4353 | msgid ", Boosting" |
5642 | msgstr "" | 4354 | msgstr "" |
5643 | 4355 | ||
5644 | #: plugins/check_ups.c:179 | ||
5645 | msgid ", Charging" | 4356 | msgid ", Charging" |
5646 | msgstr ", En charge" | 4357 | msgstr ", En charge" |
5647 | 4358 | ||
5648 | #: plugins/check_ups.c:182 | ||
5649 | msgid ", Discharging" | 4359 | msgid ", Discharging" |
5650 | msgstr ", Déchargement" | 4360 | msgstr ", Déchargement" |
5651 | 4361 | ||
5652 | #: plugins/check_ups.c:185 | ||
5653 | msgid ", Unknown" | 4362 | msgid ", Unknown" |
5654 | msgstr ", Inconnu" | 4363 | msgstr ", Inconnu" |
5655 | 4364 | ||
5656 | #: plugins/check_ups.c:324 | ||
5657 | msgid "UPS does not support any available options\n" | 4365 | msgid "UPS does not support any available options\n" |
5658 | msgstr "L'UPS ne supporte aucune des options disponibles\n" | 4366 | msgstr "L'UPS ne supporte aucune des options disponibles\n" |
5659 | 4367 | ||
5660 | #: plugins/check_ups.c:348 plugins/check_ups.c:414 | ||
5661 | msgid "Invalid response received from host" | 4368 | msgid "Invalid response received from host" |
5662 | msgstr "Réponse invalide reçue de l'hôte" | 4369 | msgstr "Réponse invalide reçue de l'hôte" |
5663 | 4370 | ||
5664 | #: plugins/check_ups.c:406 | ||
5665 | msgid "UPS name to long for buffer" | 4371 | msgid "UPS name to long for buffer" |
5666 | msgstr "" | 4372 | msgstr "" |
5667 | 4373 | ||
5668 | #: plugins/check_ups.c:423 | ||
5669 | #, c-format | 4374 | #, c-format |
5670 | msgid "CRITICAL - no such UPS '%s' on that host\n" | 4375 | msgid "CRITICAL - no such UPS '%s' on that host\n" |
5671 | msgstr "CRITIQUE - pas d'UPS '%s' sur cet hôte\n" | 4376 | msgstr "CRITIQUE - pas d'UPS '%s' sur cet hôte\n" |
5672 | 4377 | ||
5673 | #: plugins/check_ups.c:433 | ||
5674 | msgid "CRITICAL - UPS data is stale" | 4378 | msgid "CRITICAL - UPS data is stale" |
5675 | msgstr "CRITIQUE - les données de l'ups ne sont plus valables" | 4379 | msgstr "CRITIQUE - les données de l'ups ne sont plus valables" |
5676 | 4380 | ||
5677 | #: plugins/check_ups.c:438 | ||
5678 | #, c-format | 4381 | #, c-format |
5679 | msgid "Unknown error: %s\n" | 4382 | msgid "Unknown error: %s\n" |
5680 | msgstr "Erreur inconnue: %s\n" | 4383 | msgstr "Erreur inconnue: %s\n" |
5681 | 4384 | ||
5682 | #: plugins/check_ups.c:445 | ||
5683 | msgid "Error: unable to parse variable" | 4385 | msgid "Error: unable to parse variable" |
5684 | msgstr "Erreur: impossible de lire la variable" | 4386 | msgstr "Erreur: impossible de lire la variable" |
5685 | 4387 | ||
5686 | #: plugins/check_ups.c:552 | ||
5687 | msgid "Unrecognized UPS variable" | 4388 | msgid "Unrecognized UPS variable" |
5688 | msgstr "Variable d'UPS non reconnue" | 4389 | msgstr "Variable d'UPS non reconnue" |
5689 | 4390 | ||
5690 | #: plugins/check_ups.c:590 | ||
5691 | msgid "Error : no UPS indicated" | 4391 | msgid "Error : no UPS indicated" |
5692 | msgstr "Erreur: pas d'UPS indiqué" | 4392 | msgstr "Erreur: pas d'UPS indiqué" |
5693 | 4393 | ||
5694 | #: plugins/check_ups.c:610 | ||
5695 | msgid "" | 4394 | msgid "" |
5696 | "This plugin tests the UPS service on the specified host. Network UPS Tools" | 4395 | "This plugin tests the UPS service on the specified host. Network UPS Tools" |
5697 | msgstr "Ce plugin teste le service UPS sur l'hôte spécifié. Network UPS Tools" | 4396 | msgstr "Ce plugin teste le service UPS sur l'hôte spécifié. Network UPS Tools" |
5698 | 4397 | ||
5699 | #: plugins/check_ups.c:611 | ||
5700 | msgid "from www.networkupstools.org must be running for this plugin to work." | 4398 | msgid "from www.networkupstools.org must be running for this plugin to work." |
5701 | msgstr "" | 4399 | msgstr "" |
5702 | "de www.networkupstools.org doit s'exécuter sur l'hôte pour que ce plugin " | 4400 | "de www.networkupstools.org doit s'exécuter sur l'hôte pour que ce plugin " |
5703 | "fonctionne." | 4401 | "fonctionne." |
5704 | 4402 | ||
5705 | #: plugins/check_ups.c:623 | ||
5706 | msgid "Name of UPS" | 4403 | msgid "Name of UPS" |
5707 | msgstr "" | 4404 | msgstr "" |
5708 | 4405 | ||
5709 | #: plugins/check_ups.c:625 | ||
5710 | msgid "Output of temperatures in Celsius" | 4406 | msgid "Output of temperatures in Celsius" |
5711 | msgstr "Affichage des températures en Celsius" | 4407 | msgstr "Affichage des températures en Celsius" |
5712 | 4408 | ||
5713 | #: plugins/check_ups.c:627 | ||
5714 | msgid "Valid values for STRING are" | 4409 | msgid "Valid values for STRING are" |
5715 | msgstr "Les variables valides pour STRING sont" | 4410 | msgstr "Les variables valides pour STRING sont" |
5716 | 4411 | ||
5717 | #: plugins/check_ups.c:638 | ||
5718 | msgid "" | 4412 | msgid "" |
5719 | "This plugin attempts to determine the status of a UPS (Uninterruptible Power" | 4413 | "This plugin attempts to determine the status of a UPS (Uninterruptible Power" |
5720 | msgstr "" | 4414 | msgstr "" |
5721 | 4415 | ||
5722 | #: plugins/check_ups.c:639 | ||
5723 | msgid "" | 4416 | msgid "" |
5724 | "Supply) on a local or remote host. If the UPS is online or calibrating, the" | 4417 | "Supply) on a local or remote host. If the UPS is online or calibrating, the" |
5725 | msgstr "" | 4418 | msgstr "" |
5726 | 4419 | ||
5727 | #: plugins/check_ups.c:640 | ||
5728 | msgid "" | 4420 | msgid "" |
5729 | "plugin will return an OK state. If the battery is on it will return a WARNING" | 4421 | "plugin will return an OK state. If the battery is on it will return a WARNING" |
5730 | msgstr "" | 4422 | msgstr "" |
5731 | 4423 | ||
5732 | #: plugins/check_ups.c:641 | ||
5733 | msgid "" | 4424 | msgid "" |
5734 | "state. If the UPS is off or has a low battery the plugin will return a " | 4425 | "state. If the UPS is off or has a low battery the plugin will return a " |
5735 | "CRITICAL" | 4426 | "CRITICAL" |
5736 | msgstr "" | 4427 | msgstr "" |
5737 | 4428 | ||
5738 | #: plugins/check_ups.c:646 | ||
5739 | msgid "" | 4429 | msgid "" |
5740 | "You may also specify a variable to check (such as temperature, utility " | 4430 | "You may also specify a variable to check (such as temperature, utility " |
5741 | "voltage," | 4431 | "voltage," |
5742 | msgstr "" | 4432 | msgstr "" |
5743 | 4433 | ||
5744 | #: plugins/check_ups.c:647 | ||
5745 | msgid "" | 4434 | msgid "" |
5746 | "battery load, etc.) as well as warning and critical thresholds for the value" | 4435 | "battery load, etc.) as well as warning and critical thresholds for the value" |
5747 | msgstr "" | 4436 | msgstr "" |
5748 | 4437 | ||
5749 | #: plugins/check_ups.c:648 | ||
5750 | msgid "" | 4438 | msgid "" |
5751 | "of that variable. If the remote host has multiple UPS that are being " | 4439 | "of that variable. If the remote host has multiple UPS that are being " |
5752 | "monitored" | 4440 | "monitored" |
5753 | msgstr "" | 4441 | msgstr "" |
5754 | 4442 | ||
5755 | #: plugins/check_ups.c:649 | ||
5756 | msgid "you will have to use the --ups option to specify which UPS to check." | 4443 | msgid "you will have to use the --ups option to specify which UPS to check." |
5757 | msgstr "" | 4444 | msgstr "" |
5758 | 4445 | ||
5759 | #: plugins/check_ups.c:651 | ||
5760 | msgid "" | 4446 | msgid "" |
5761 | "This plugin requires that the UPSD daemon distributed with Russell Kroll's" | 4447 | "This plugin requires that the UPSD daemon distributed with Russell Kroll's" |
5762 | msgstr "" | 4448 | msgstr "" |
5763 | 4449 | ||
5764 | #: plugins/check_ups.c:652 | ||
5765 | msgid "" | 4450 | msgid "" |
5766 | "Network UPS Tools be installed on the remote host. If you do not have the" | 4451 | "Network UPS Tools be installed on the remote host. If you do not have the" |
5767 | msgstr "" | 4452 | msgstr "" |
5768 | 4453 | ||
5769 | #: plugins/check_ups.c:653 | ||
5770 | msgid "package installed on your system, you can download it from" | 4454 | msgid "package installed on your system, you can download it from" |
5771 | msgstr "" | 4455 | msgstr "" |
5772 | 4456 | ||
5773 | #: plugins/check_ups.c:654 | ||
5774 | msgid "http://www.networkupstools.org" | 4457 | msgid "http://www.networkupstools.org" |
5775 | msgstr "" | 4458 | msgstr "" |
5776 | 4459 | ||
5777 | #: plugins/check_users.c:91 | ||
5778 | #, fuzzy, c-format | 4460 | #, fuzzy, c-format |
5779 | msgid "Could not enumerate RD sessions: %d\n" | 4461 | msgid "Could not enumerate RD sessions: %d\n" |
5780 | msgstr "Impossible d'utiliser le protocole version %d\n" | 4462 | msgstr "Impossible d'utiliser le protocole version %d\n" |
5781 | 4463 | ||
5782 | #: plugins/check_users.c:146 | ||
5783 | #, c-format | 4464 | #, c-format |
5784 | msgid "# users=%d" | 4465 | msgid "# users=%d" |
5785 | msgstr "# utilisateurs=%d" | 4466 | msgstr "# utilisateurs=%d" |
5786 | 4467 | ||
5787 | #: plugins/check_users.c:164 | ||
5788 | msgid "Unable to read output" | 4468 | msgid "Unable to read output" |
5789 | msgstr "Impossible de lire les données en entrée" | 4469 | msgstr "Impossible de lire les données en entrée" |
5790 | 4470 | ||
5791 | #: plugins/check_users.c:166 | ||
5792 | #, c-format | 4471 | #, c-format |
5793 | msgid "USERS %s - %d users currently logged in |%s\n" | 4472 | msgid "USERS %s - %d users currently logged in |%s\n" |
5794 | msgstr "UTILISATEURS %s - %d utilisateurs actuellement connectés sur |%s\n" | 4473 | msgstr "UTILISATEURS %s - %d utilisateurs actuellement connectés sur |%s\n" |
5795 | 4474 | ||
5796 | #: plugins/check_users.c:241 | ||
5797 | msgid "This plugin checks the number of users currently logged in on the local" | 4475 | msgid "This plugin checks the number of users currently logged in on the local" |
5798 | msgstr "" | 4476 | msgstr "" |
5799 | "Ce plugin vérifie le nombre d'utilisateurs actuellement connecté sur le " | 4477 | "Ce plugin vérifie le nombre d'utilisateurs actuellement connecté sur le " |
5800 | "système local" | 4478 | "système local" |
5801 | 4479 | ||
5802 | #: plugins/check_users.c:242 | ||
5803 | msgid "" | 4480 | msgid "" |
5804 | "system and generates an error if the number exceeds the thresholds specified." | 4481 | "system and generates an error if the number exceeds the thresholds specified." |
5805 | msgstr "et génère une erreur si le nombre excède le seuil spécifié." | 4482 | msgstr "et génère une erreur si le nombre excède le seuil spécifié." |
5806 | 4483 | ||
5807 | #: plugins/check_users.c:252 | ||
5808 | msgid "Set WARNING status if more than INTEGER users are logged in" | 4484 | msgid "Set WARNING status if more than INTEGER users are logged in" |
5809 | msgstr "" | 4485 | msgstr "" |
5810 | "Sortir avec un résultat AVERTISSEMENT si plus de INTEGER utilisateurs sont " | 4486 | "Sortir avec un résultat AVERTISSEMENT si plus de INTEGER utilisateurs sont " |
5811 | "connectés" | 4487 | "connectés" |
5812 | 4488 | ||
5813 | #: plugins/check_users.c:254 | ||
5814 | msgid "Set CRITICAL status if more than INTEGER users are logged in" | 4489 | msgid "Set CRITICAL status if more than INTEGER users are logged in" |
5815 | msgstr "" | 4490 | msgstr "" |
5816 | "Sortir avec un résultat CRITIQUE si plus de INTEGER utilisateurs sont " | 4491 | "Sortir avec un résultat CRITIQUE si plus de INTEGER utilisateurs sont " |
5817 | "connectés" | 4492 | "connectés" |
5818 | 4493 | ||
5819 | #: plugins/check_ide_smart.c:218 | ||
5820 | msgid "" | 4494 | msgid "" |
5821 | "DEPRECATION WARNING: the -q switch (quiet output) is no longer \"quiet\"." | 4495 | "DEPRECATION WARNING: the -q switch (quiet output) is no longer \"quiet\"." |
5822 | msgstr "" | 4496 | msgstr "" |
5823 | 4497 | ||
5824 | #: plugins/check_ide_smart.c:219 | ||
5825 | msgid "Nagios-compatible output is now always returned." | 4498 | msgid "Nagios-compatible output is now always returned." |
5826 | msgstr "" | 4499 | msgstr "" |
5827 | 4500 | ||
5828 | #: plugins/check_ide_smart.c:224 | ||
5829 | msgid "SMART commands are broken and have been disabled (See Notes in --help)." | 4501 | msgid "SMART commands are broken and have been disabled (See Notes in --help)." |
5830 | msgstr "" | 4502 | msgstr "" |
5831 | 4503 | ||
5832 | #: plugins/check_ide_smart.c:228 | ||
5833 | msgid "" | 4504 | msgid "" |
5834 | "DEPRECATION WARNING: the -n switch (Nagios-compatible output) is now the" | 4505 | "DEPRECATION WARNING: the -n switch (Nagios-compatible output) is now the" |
5835 | msgstr "" | 4506 | msgstr "" |
5836 | 4507 | ||
5837 | #: plugins/check_ide_smart.c:229 | ||
5838 | #, fuzzy | 4508 | #, fuzzy |
5839 | msgid "default and will be removed from future releases." | 4509 | msgid "default and will be removed from future releases." |
5840 | msgstr "" | 4510 | msgstr "" |
5841 | "Note: nslookup est obsolète et pourra être retiré dans les prochaines " | 4511 | "Note: nslookup est obsolète et pourra être retiré dans les prochaines " |
5842 | "versions." | 4512 | "versions." |
5843 | 4513 | ||
5844 | #: plugins/check_ide_smart.c:257 | ||
5845 | #, c-format | 4514 | #, c-format |
5846 | msgid "CRITICAL - Couldn't open device %s: %s\n" | 4515 | msgid "CRITICAL - Couldn't open device %s: %s\n" |
5847 | msgstr "Critique - Impossible d'ouvrir le périphérique %s: %s\n" | 4516 | msgstr "Critique - Impossible d'ouvrir le périphérique %s: %s\n" |
5848 | 4517 | ||
5849 | #: plugins/check_ide_smart.c:262 | ||
5850 | #, c-format | 4518 | #, c-format |
5851 | msgid "CRITICAL - SMART_CMD_ENABLE\n" | 4519 | msgid "CRITICAL - SMART_CMD_ENABLE\n" |
5852 | msgstr "CRITIQUE - SMART_CMD_ENABLE\n" | 4520 | msgstr "CRITIQUE - SMART_CMD_ENABLE\n" |
5853 | 4521 | ||
5854 | #: plugins/check_ide_smart.c:303 plugins/check_ide_smart.c:330 | ||
5855 | #, c-format | 4522 | #, c-format |
5856 | msgid "CRITICAL - SMART_READ_VALUES: %s\n" | 4523 | msgid "CRITICAL - SMART_READ_VALUES: %s\n" |
5857 | msgstr "CRITIQUE - SMART_READ_VALUES: %s\n" | 4524 | msgstr "CRITIQUE - SMART_READ_VALUES: %s\n" |
5858 | 4525 | ||
5859 | #: plugins/check_ide_smart.c:376 | ||
5860 | #, c-format | 4526 | #, c-format |
5861 | msgid "CRITICAL - %d Harddrive PreFailure%cDetected! %d/%d tests failed.\n" | 4527 | msgid "CRITICAL - %d Harddrive PreFailure%cDetected! %d/%d tests failed.\n" |
5862 | msgstr "" | 4528 | msgstr "" |
5863 | "CRITIQUE - %d État de pré-panne %c Détecté! %d/%d les tests on échoués.\n" | 4529 | "CRITIQUE - %d État de pré-panne %c Détecté! %d/%d les tests on échoués.\n" |
5864 | 4530 | ||
5865 | #: plugins/check_ide_smart.c:384 | ||
5866 | #, c-format | 4531 | #, c-format |
5867 | msgid "WARNING - %d Harddrive Advisor%s Detected. %d/%d tests failed.\n" | 4532 | msgid "WARNING - %d Harddrive Advisor%s Detected. %d/%d tests failed.\n" |
5868 | msgstr "" | 4533 | msgstr "" |
5869 | "AVERTISSEMENT - %d État de pré-panne %s Détecté! %d/%d les tests on " | 4534 | "AVERTISSEMENT - %d État de pré-panne %s Détecté! %d/%d les tests on " |
5870 | "échoués.\n" | 4535 | "échoués.\n" |
5871 | 4536 | ||
5872 | #: plugins/check_ide_smart.c:392 | ||
5873 | #, c-format | 4537 | #, c-format |
5874 | msgid "OK - Operational (%d/%d tests passed)\n" | 4538 | msgid "OK - Operational (%d/%d tests passed)\n" |
5875 | msgstr "OK - En fonctionnement (%d/%d les tests on été réussi)\n" | 4539 | msgstr "OK - En fonctionnement (%d/%d les tests on été réussi)\n" |
5876 | 4540 | ||
5877 | #: plugins/check_ide_smart.c:396 | ||
5878 | #, c-format | 4541 | #, c-format |
5879 | msgid "ERROR - Status '%d' unknown. %d/%d tests passed\n" | 4542 | msgid "ERROR - Status '%d' unknown. %d/%d tests passed\n" |
5880 | msgstr "ERREUR - État '%d' inconnu. %d/%d les tests on réussi\n" | 4543 | msgstr "ERREUR - État '%d' inconnu. %d/%d les tests on réussi\n" |
5881 | 4544 | ||
5882 | #: plugins/check_ide_smart.c:429 | ||
5883 | #, c-format | 4545 | #, c-format |
5884 | msgid "OffLineStatus=%d {%s}, AutoOffLine=%s, OffLineTimeout=%d minutes\n" | 4546 | msgid "OffLineStatus=%d {%s}, AutoOffLine=%s, OffLineTimeout=%d minutes\n" |
5885 | msgstr "" | 4547 | msgstr "" |
5886 | "Etat Hors Ligne=%d {%s}, Hors Ligne Auto=%s, Temps avant arrêt=%d minutes\n" | 4548 | "Etat Hors Ligne=%d {%s}, Hors Ligne Auto=%s, Temps avant arrêt=%d minutes\n" |
5887 | 4549 | ||
5888 | #: plugins/check_ide_smart.c:435 | ||
5889 | #, c-format | 4550 | #, c-format |
5890 | msgid "OffLineCapability=%d {%s %s %s}\n" | 4551 | msgid "OffLineCapability=%d {%s %s %s}\n" |
5891 | msgstr "Capacité Hors Ligne=%d {%s %s %s}\n" | 4552 | msgstr "Capacité Hors Ligne=%d {%s %s %s}\n" |
5892 | 4553 | ||
5893 | #: plugins/check_ide_smart.c:441 | ||
5894 | #, c-format | 4554 | #, c-format |
5895 | msgid "SmartRevision=%d, CheckSum=%d, SmartCapability=%d {%s %s}\n" | 4555 | msgid "SmartRevision=%d, CheckSum=%d, SmartCapability=%d {%s %s}\n" |
5896 | msgstr "Révision Smart=%d, Somme de contrôle=%d, Capacité Smart=%d {%s %s}\n" | 4556 | msgstr "Révision Smart=%d, Somme de contrôle=%d, Capacité Smart=%d {%s %s}\n" |
5897 | 4557 | ||
5898 | #: plugins/check_ide_smart.c:463 plugins/check_ide_smart.c:492 | ||
5899 | #, c-format | 4558 | #, c-format |
5900 | msgid "CRITICAL - %s: %s\n" | 4559 | msgid "CRITICAL - %s: %s\n" |
5901 | msgstr "CRITIQUE - %s: %s\n" | 4560 | msgstr "CRITIQUE - %s: %s\n" |
5902 | 4561 | ||
5903 | #: plugins/check_ide_smart.c:467 plugins/check_ide_smart.c:496 | ||
5904 | #, fuzzy, c-format | 4562 | #, fuzzy, c-format |
5905 | msgid "OK - Command sent (%s)\n" | 4563 | msgid "OK - Command sent (%s)\n" |
5906 | msgstr "Commande: %s\n" | 4564 | msgstr "Commande: %s\n" |
5907 | 4565 | ||
5908 | #: plugins/check_ide_smart.c:517 plugins/check_ide_smart.c:544 | ||
5909 | #, c-format | 4566 | #, c-format |
5910 | msgid "CRITICAL - SMART_READ_THRESHOLDS: %s\n" | 4567 | msgid "CRITICAL - SMART_READ_THRESHOLDS: %s\n" |
5911 | msgstr "CRITIQUE - SMART_READ_THRESHOLDS: %s\n" | 4568 | msgstr "CRITIQUE - SMART_READ_THRESHOLDS: %s\n" |
5912 | 4569 | ||
5913 | #: plugins/check_ide_smart.c:563 | ||
5914 | #, c-format | 4570 | #, c-format |
5915 | msgid "" | 4571 | msgid "" |
5916 | "This plugin checks a local hard drive with the (Linux specific) SMART " | 4572 | "This plugin checks a local hard drive with the (Linux specific) SMART " |
@@ -5919,50 +4575,39 @@ msgstr "" | |||
5919 | "Ce plugin vérifie un disque dur local à l'aide de l'interface SMART (pour " | 4575 | "Ce plugin vérifie un disque dur local à l'aide de l'interface SMART (pour " |
5920 | "Linux) [http://smartlinux.sourceforge.net/smart/index.php]." | 4576 | "Linux) [http://smartlinux.sourceforge.net/smart/index.php]." |
5921 | 4577 | ||
5922 | #: plugins/check_ide_smart.c:573 | ||
5923 | msgid "Select device DEVICE" | 4578 | msgid "Select device DEVICE" |
5924 | msgstr "" | 4579 | msgstr "" |
5925 | 4580 | ||
5926 | #: plugins/check_ide_smart.c:574 | ||
5927 | msgid "" | 4581 | msgid "" |
5928 | "Note: if the device is specified without this option, any further option will" | 4582 | "Note: if the device is specified without this option, any further option will" |
5929 | msgstr "" | 4583 | msgstr "" |
5930 | 4584 | ||
5931 | #: plugins/check_ide_smart.c:575 | ||
5932 | msgid "be ignored." | 4585 | msgid "be ignored." |
5933 | msgstr "" | 4586 | msgstr "" |
5934 | 4587 | ||
5935 | #: plugins/check_ide_smart.c:581 | ||
5936 | msgid "" | 4588 | msgid "" |
5937 | "The SMART command modes (-i/--immediate, -0/--auto-off and -1/--auto-on) were" | 4589 | "The SMART command modes (-i/--immediate, -0/--auto-off and -1/--auto-on) were" |
5938 | msgstr "" | 4590 | msgstr "" |
5939 | 4591 | ||
5940 | #: plugins/check_ide_smart.c:582 | ||
5941 | msgid "" | 4592 | msgid "" |
5942 | "broken in an underhand manner and have been disabled. You can use smartctl" | 4593 | "broken in an underhand manner and have been disabled. You can use smartctl" |
5943 | msgstr "" | 4594 | msgstr "" |
5944 | 4595 | ||
5945 | #: plugins/check_ide_smart.c:583 | ||
5946 | msgid "instead:" | 4596 | msgid "instead:" |
5947 | msgstr "" | 4597 | msgstr "" |
5948 | 4598 | ||
5949 | #: plugins/check_ide_smart.c:584 | ||
5950 | msgid "-0/--auto-off: use \"smartctl --offlineauto=off\"" | 4599 | msgid "-0/--auto-off: use \"smartctl --offlineauto=off\"" |
5951 | msgstr "" | 4600 | msgstr "" |
5952 | 4601 | ||
5953 | #: plugins/check_ide_smart.c:585 | ||
5954 | msgid "-1/--auto-on: use \"smartctl --offlineauto=on\"" | 4602 | msgid "-1/--auto-on: use \"smartctl --offlineauto=on\"" |
5955 | msgstr "" | 4603 | msgstr "" |
5956 | 4604 | ||
5957 | #: plugins/check_ide_smart.c:586 | ||
5958 | msgid "-i/--immediate: use \"smartctl --test=offline\"" | 4605 | msgid "-i/--immediate: use \"smartctl --test=offline\"" |
5959 | msgstr "" | 4606 | msgstr "" |
5960 | 4607 | ||
5961 | #: plugins/negate.c:96 | ||
5962 | msgid "No data returned from command\n" | 4608 | msgid "No data returned from command\n" |
5963 | msgstr "Pas de données reçues de la commande\n" | 4609 | msgstr "Pas de données reçues de la commande\n" |
5964 | 4610 | ||
5965 | #: plugins/negate.c:166 | ||
5966 | msgid "" | 4611 | msgid "" |
5967 | "Timeout result must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) " | 4612 | "Timeout result must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) " |
5968 | "or integer (0-3)." | 4613 | "or integer (0-3)." |
@@ -5970,7 +4615,6 @@ msgstr "" | |||
5970 | "Le résultat de temps dépassé doit être un nom d'état valide (OK, WARNING, " | 4615 | "Le résultat de temps dépassé doit être un nom d'état valide (OK, WARNING, " |
5971 | "CRITICAL, UNKNOWN) ou un nombre entier (0-3)." | 4616 | "CRITICAL, UNKNOWN) ou un nombre entier (0-3)." |
5972 | 4617 | ||
5973 | #: plugins/negate.c:170 | ||
5974 | msgid "" | 4618 | msgid "" |
5975 | "Ok must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or integer " | 4619 | "Ok must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or integer " |
5976 | "(0-3)." | 4620 | "(0-3)." |
@@ -5978,7 +4622,6 @@ msgstr "" | |||
5978 | "Ok doit être un nom d'état valide (OK, WARNING, CRITICAL, UNKNOWN) ou un " | 4622 | "Ok doit être un nom d'état valide (OK, WARNING, CRITICAL, UNKNOWN) ou un " |
5979 | "nombre entier (0-3)." | 4623 | "nombre entier (0-3)." |
5980 | 4624 | ||
5981 | #: plugins/negate.c:176 | ||
5982 | msgid "" | 4625 | msgid "" |
5983 | "Warning must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or " | 4626 | "Warning must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or " |
5984 | "integer (0-3)." | 4627 | "integer (0-3)." |
@@ -5986,7 +4629,6 @@ msgstr "" | |||
5986 | "Warning doit être un nom d'état valide (OK, WARNING, CRITICAL, UNKNOWN) ou " | 4629 | "Warning doit être un nom d'état valide (OK, WARNING, CRITICAL, UNKNOWN) ou " |
5987 | "un nombre entier (0-3)." | 4630 | "un nombre entier (0-3)." |
5988 | 4631 | ||
5989 | #: plugins/negate.c:181 | ||
5990 | msgid "" | 4632 | msgid "" |
5991 | "Critical must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or " | 4633 | "Critical must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or " |
5992 | "integer (0-3)." | 4634 | "integer (0-3)." |
@@ -5994,7 +4636,6 @@ msgstr "" | |||
5994 | "Critical doit être un nom d'état valide (OK, WARNING, CRITICAL, UNKNOWN) ou " | 4636 | "Critical doit être un nom d'état valide (OK, WARNING, CRITICAL, UNKNOWN) ou " |
5995 | "un nombre entier (0-3)." | 4637 | "un nombre entier (0-3)." |
5996 | 4638 | ||
5997 | #: plugins/negate.c:186 | ||
5998 | msgid "" | 4639 | msgid "" |
5999 | "Unknown must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or " | 4640 | "Unknown must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or " |
6000 | "integer (0-3)." | 4641 | "integer (0-3)." |
@@ -6002,33 +4643,27 @@ msgstr "" | |||
6002 | "Unknown doit être un nom d'état valide (OK, WARNING, CRITICAL, UNKNOWN) ou " | 4643 | "Unknown doit être un nom d'état valide (OK, WARNING, CRITICAL, UNKNOWN) ou " |
6003 | "un nombre entier (0-3)." | 4644 | "un nombre entier (0-3)." |
6004 | 4645 | ||
6005 | #: plugins/negate.c:213 | ||
6006 | msgid "Require path to command" | 4646 | msgid "Require path to command" |
6007 | msgstr "Chemin vers la commande requis" | 4647 | msgstr "Chemin vers la commande requis" |
6008 | 4648 | ||
6009 | #: plugins/negate.c:224 | ||
6010 | msgid "" | 4649 | msgid "" |
6011 | "Negates the status of a plugin (returns OK for CRITICAL and vice-versa)." | 4650 | "Negates the status of a plugin (returns OK for CRITICAL and vice-versa)." |
6012 | msgstr "" | 4651 | msgstr "" |
6013 | "Inverse le statut d'un plugin (retourne OK pour CRITIQUE et vice-versa)." | 4652 | "Inverse le statut d'un plugin (retourne OK pour CRITIQUE et vice-versa)." |
6014 | 4653 | ||
6015 | #: plugins/negate.c:225 | ||
6016 | msgid "Additional switches can be used to control which state becomes what." | 4654 | msgid "Additional switches can be used to control which state becomes what." |
6017 | msgstr "" | 4655 | msgstr "" |
6018 | "Des options additionnelles peuvent être utilisées pour contrôler quel état " | 4656 | "Des options additionnelles peuvent être utilisées pour contrôler quel état " |
6019 | "devient quoi." | 4657 | "devient quoi." |
6020 | 4658 | ||
6021 | #: plugins/negate.c:234 | ||
6022 | msgid "Keep timeout longer than the plugin timeout to retain CRITICAL status." | 4659 | msgid "Keep timeout longer than the plugin timeout to retain CRITICAL status." |
6023 | msgstr "" | 4660 | msgstr "" |
6024 | "Utilisez un délai de réponse plus long que celui du plugin afin de conserver " | 4661 | "Utilisez un délai de réponse plus long que celui du plugin afin de conserver " |
6025 | "les résultats CRITIQUE" | 4662 | "les résultats CRITIQUE" |
6026 | 4663 | ||
6027 | #: plugins/negate.c:236 | ||
6028 | msgid "Custom result on Negate timeouts; see below for STATUS definition\n" | 4664 | msgid "Custom result on Negate timeouts; see below for STATUS definition\n" |
6029 | msgstr "" | 4665 | msgstr "" |
6030 | 4666 | ||
6031 | #: plugins/negate.c:242 | ||
6032 | #, c-format | 4667 | #, c-format |
6033 | msgid "" | 4668 | msgid "" |
6034 | " STATUS can be 'OK', 'WARNING', 'CRITICAL' or 'UNKNOWN' without single\n" | 4669 | " STATUS can be 'OK', 'WARNING', 'CRITICAL' or 'UNKNOWN' without single\n" |
@@ -6036,125 +4671,99 @@ msgstr "" | |||
6036 | " STATUS peut être 'OK', 'WARNING', 'CRITICAL' ou 'UNKNOWN' sans les " | 4671 | " STATUS peut être 'OK', 'WARNING', 'CRITICAL' ou 'UNKNOWN' sans les " |
6037 | "simple\n" | 4672 | "simple\n" |
6038 | 4673 | ||
6039 | #: plugins/negate.c:243 | ||
6040 | #, c-format | 4674 | #, c-format |
6041 | msgid "" | 4675 | msgid "" |
6042 | " quotes. Numeric values are accepted. If nothing is specified, permutes\n" | 4676 | " quotes. Numeric values are accepted. If nothing is specified, permutes\n" |
6043 | msgstr " quotes. Les valeurs numériques sont acceptées. Si rien n'est\n" | 4677 | msgstr " quotes. Les valeurs numériques sont acceptées. Si rien n'est\n" |
6044 | 4678 | ||
6045 | #: plugins/negate.c:244 | ||
6046 | #, c-format | 4679 | #, c-format |
6047 | msgid " OK and CRITICAL.\n" | 4680 | msgid " OK and CRITICAL.\n" |
6048 | msgstr " spécifié, inverse OK et CRITIQUE.\n" | 4681 | msgstr " spécifié, inverse OK et CRITIQUE.\n" |
6049 | 4682 | ||
6050 | #: plugins/negate.c:246 | ||
6051 | #, c-format | 4683 | #, c-format |
6052 | msgid "" | 4684 | msgid "" |
6053 | " Substitute output text as well. Will only substitute text in CAPITALS\n" | 4685 | " Substitute output text as well. Will only substitute text in CAPITALS\n" |
6054 | msgstr "" | 4686 | msgstr "" |
6055 | 4687 | ||
6056 | #: plugins/negate.c:251 | ||
6057 | msgid "Run check_ping and invert result. Must use full path to plugin" | 4688 | msgid "Run check_ping and invert result. Must use full path to plugin" |
6058 | msgstr "" | 4689 | msgstr "" |
6059 | "Execute check_ping et inverse le résultat. Le chemin complet du plug-in doit " | 4690 | "Execute check_ping et inverse le résultat. Le chemin complet du plug-in doit " |
6060 | "être spécifié" | 4691 | "être spécifié" |
6061 | 4692 | ||
6062 | #: plugins/negate.c:253 | ||
6063 | msgid "This will return OK instead of WARNING and UNKNOWN instead of CRITICAL" | 4693 | msgid "This will return OK instead of WARNING and UNKNOWN instead of CRITICAL" |
6064 | msgstr "" | 4694 | msgstr "" |
6065 | "Ceci retournera OK au lieu de AVERTISSEMENT et INCONNU au lieu de CRITIQUE" | 4695 | "Ceci retournera OK au lieu de AVERTISSEMENT et INCONNU au lieu de CRITIQUE" |
6066 | 4696 | ||
6067 | #: plugins/negate.c:256 | ||
6068 | msgid "" | 4697 | msgid "" |
6069 | "This plugin is a wrapper to take the output of another plugin and invert it." | 4698 | "This plugin is a wrapper to take the output of another plugin and invert it." |
6070 | msgstr "" | 4699 | msgstr "" |
6071 | "Ce plugin est un adaptateur qui prends l'état d'un autre plug-in et " | 4700 | "Ce plugin est un adaptateur qui prends l'état d'un autre plug-in et " |
6072 | "l'inverse." | 4701 | "l'inverse." |
6073 | 4702 | ||
6074 | #: plugins/negate.c:257 | ||
6075 | msgid "The full path of the plugin must be provided." | 4703 | msgid "The full path of the plugin must be provided." |
6076 | msgstr "Le chemin complet du plugin doit être spécifié." | 4704 | msgstr "Le chemin complet du plugin doit être spécifié." |
6077 | 4705 | ||
6078 | #: plugins/negate.c:258 | ||
6079 | msgid "If the wrapped plugin returns OK, the wrapper will return CRITICAL." | 4706 | msgid "If the wrapped plugin returns OK, the wrapper will return CRITICAL." |
6080 | msgstr "Si le plugin executé retourne OK, l'adaptateur retournera CRITIQUE." | 4707 | msgstr "Si le plugin executé retourne OK, l'adaptateur retournera CRITIQUE." |
6081 | 4708 | ||
6082 | #: plugins/negate.c:259 | ||
6083 | msgid "If the wrapped plugin returns CRITICAL, the wrapper will return OK." | 4709 | msgid "If the wrapped plugin returns CRITICAL, the wrapper will return OK." |
6084 | msgstr "Si le plugin executé retourne CRITIQUE, l'adaptateur retournera OK." | 4710 | msgstr "Si le plugin executé retourne CRITIQUE, l'adaptateur retournera OK." |
6085 | 4711 | ||
6086 | #: plugins/negate.c:260 | ||
6087 | msgid "Otherwise, the output state of the wrapped plugin is unchanged." | 4712 | msgid "Otherwise, the output state of the wrapped plugin is unchanged." |
6088 | msgstr "Autrement, l'état du plugin executé reste inchangé." | 4713 | msgstr "Autrement, l'état du plugin executé reste inchangé." |
6089 | 4714 | ||
6090 | #: plugins/negate.c:262 | ||
6091 | msgid "" | 4715 | msgid "" |
6092 | "Using timeout-result, it is possible to override the timeout behaviour or a" | 4716 | "Using timeout-result, it is possible to override the timeout behaviour or a" |
6093 | msgstr "" | 4717 | msgstr "" |
6094 | 4718 | ||
6095 | #: plugins/negate.c:263 | ||
6096 | msgid "plugin by setting the negate timeout a bit lower." | 4719 | msgid "plugin by setting the negate timeout a bit lower." |
6097 | msgstr "" | 4720 | msgstr "" |
6098 | 4721 | ||
6099 | #: plugins/netutils.c:49 | ||
6100 | #, c-format | 4722 | #, c-format |
6101 | msgid "%s - Socket timeout after %d seconds\n" | 4723 | msgid "%s - Socket timeout after %d seconds\n" |
6102 | msgstr "%s - Le socket n'a pas répondu dans les %d secondes\n" | 4724 | msgstr "%s - Le socket n'a pas répondu dans les %d secondes\n" |
6103 | 4725 | ||
6104 | #: plugins/netutils.c:51 | ||
6105 | #, c-format | 4726 | #, c-format |
6106 | msgid "%s - Abnormal timeout after %d seconds\n" | 4727 | msgid "%s - Abnormal timeout after %d seconds\n" |
6107 | msgstr "%s - Dépassement anormal du temps de réponse après %d secondes\n" | 4728 | msgstr "%s - Dépassement anormal du temps de réponse après %d secondes\n" |
6108 | 4729 | ||
6109 | #: plugins/netutils.c:79 plugins/netutils.c:292 | ||
6110 | msgid "Send failed" | 4730 | msgid "Send failed" |
6111 | msgstr "L'envoi à échoué" | 4731 | msgstr "L'envoi à échoué" |
6112 | 4732 | ||
6113 | #: plugins/netutils.c:96 plugins/netutils.c:307 | ||
6114 | msgid "No data was received from host!" | 4733 | msgid "No data was received from host!" |
6115 | msgstr "Pas de données reçues de l'hôte!" | 4734 | msgstr "Pas de données reçues de l'hôte!" |
6116 | 4735 | ||
6117 | #: plugins/netutils.c:209 plugins/netutils.c:245 | ||
6118 | msgid "Socket creation failed" | 4736 | msgid "Socket creation failed" |
6119 | msgstr "La création du socket à échoué " | 4737 | msgstr "La création du socket à échoué " |
6120 | 4738 | ||
6121 | #: plugins/netutils.c:238 | ||
6122 | msgid "Supplied path too long unix domain socket" | 4739 | msgid "Supplied path too long unix domain socket" |
6123 | msgstr "Le chemin fourni est trop long pour un socket unix" | 4740 | msgstr "Le chemin fourni est trop long pour un socket unix" |
6124 | 4741 | ||
6125 | #: plugins/netutils.c:316 | ||
6126 | msgid "Receive failed" | 4742 | msgid "Receive failed" |
6127 | msgstr "La réception à échoué" | 4743 | msgstr "La réception à échoué" |
6128 | 4744 | ||
6129 | #: plugins/netutils.c:342 plugins-root/check_dhcp.c:1310 | ||
6130 | #, c-format | 4745 | #, c-format |
6131 | msgid "Invalid hostname/address - %s" | 4746 | msgid "Invalid hostname/address - %s" |
6132 | msgstr "Adresse/Nom invalide - %s" | 4747 | msgstr "Adresse/Nom invalide - %s" |
6133 | 4748 | ||
6134 | #: plugins/popen.c:133 | ||
6135 | msgid "Could not malloc argv array in popen()" | 4749 | msgid "Could not malloc argv array in popen()" |
6136 | msgstr "Impossible de réallouer un tableau pour les paramètres dans popen()" | 4750 | msgstr "Impossible de réallouer un tableau pour les paramètres dans popen()" |
6137 | 4751 | ||
6138 | #: plugins/popen.c:143 | ||
6139 | msgid "CRITICAL - You need more args!!!" | 4752 | msgid "CRITICAL - You need more args!!!" |
6140 | msgstr "CRITIQUE - Vous devez spécifier plus d'arguments!!!" | 4753 | msgstr "CRITIQUE - Vous devez spécifier plus d'arguments!!!" |
6141 | 4754 | ||
6142 | #: plugins/popen.c:201 | ||
6143 | msgid "Cannot catch SIGCHLD" | 4755 | msgid "Cannot catch SIGCHLD" |
6144 | msgstr "impossible d'obtenir le signal SIGCHLD" | 4756 | msgstr "impossible d'obtenir le signal SIGCHLD" |
6145 | 4757 | ||
6146 | #: plugins/popen.c:287 | ||
6147 | #, c-format | 4758 | #, c-format |
6148 | msgid "CRITICAL - Plugin timed out after %d seconds\n" | 4759 | msgid "CRITICAL - Plugin timed out after %d seconds\n" |
6149 | msgstr "CRITIQUE - Le plugin n'as pas répondu dans les %d secondes\n" | 4760 | msgstr "CRITIQUE - Le plugin n'as pas répondu dans les %d secondes\n" |
6150 | 4761 | ||
6151 | #: plugins/popen.c:290 | ||
6152 | msgid "CRITICAL - popen timeout received, but no child process" | 4762 | msgid "CRITICAL - popen timeout received, but no child process" |
6153 | msgstr "" | 4763 | msgstr "" |
6154 | "CRITIQUE - le temps d'attente à été dépassé dans la fonction popen, mais il " | 4764 | "CRITIQUE - le temps d'attente à été dépassé dans la fonction popen, mais il " |
6155 | "n'y a pas de processus fils" | 4765 | "n'y a pas de processus fils" |
6156 | 4766 | ||
6157 | #: plugins/urlize.c:129 | ||
6158 | #, c-format | 4767 | #, c-format |
6159 | msgid "" | 4768 | msgid "" |
6160 | "%s UNKNOWN - No data received from host\n" | 4769 | "%s UNKNOWN - No data received from host\n" |
@@ -6163,7 +4772,6 @@ msgstr "" | |||
6163 | "%s INCONNU - Pas de données reçues de l'hôte\n" | 4772 | "%s INCONNU - Pas de données reçues de l'hôte\n" |
6164 | "Commande: %s</A>\n" | 4773 | "Commande: %s</A>\n" |
6165 | 4774 | ||
6166 | #: plugins/urlize.c:168 | ||
6167 | #, fuzzy | 4775 | #, fuzzy |
6168 | msgid "" | 4776 | msgid "" |
6169 | "This plugin wraps the text output of another command (plugin) in HTML <A>" | 4777 | "This plugin wraps the text output of another command (plugin) in HTML <A>" |
@@ -6171,65 +4779,51 @@ msgstr "" | |||
6171 | "Ce plugin est un adaptateur qui prends l'état d'un autre plug-in et " | 4779 | "Ce plugin est un adaptateur qui prends l'état d'un autre plug-in et " |
6172 | "l'inverse." | 4780 | "l'inverse." |
6173 | 4781 | ||
6174 | #: plugins/urlize.c:169 | ||
6175 | msgid "" | 4782 | msgid "" |
6176 | "tags, thus displaying the child plugin's output as a clickable link in " | 4783 | "tags, thus displaying the child plugin's output as a clickable link in " |
6177 | "compatible" | 4784 | "compatible" |
6178 | msgstr "" | 4785 | msgstr "" |
6179 | 4786 | ||
6180 | #: plugins/urlize.c:170 | ||
6181 | msgid "" | 4787 | msgid "" |
6182 | "monitoring status screen. This plugin returns the status of the invoked " | 4788 | "monitoring status screen. This plugin returns the status of the invoked " |
6183 | "plugin." | 4789 | "plugin." |
6184 | msgstr "" | 4790 | msgstr "" |
6185 | 4791 | ||
6186 | #: plugins/urlize.c:180 | ||
6187 | msgid "" | 4792 | msgid "" |
6188 | "Pay close attention to quoting to ensure that the shell passes the expected" | 4793 | "Pay close attention to quoting to ensure that the shell passes the expected" |
6189 | msgstr "" | 4794 | msgstr "" |
6190 | 4795 | ||
6191 | #: plugins/urlize.c:181 | ||
6192 | msgid "data to the plugin. For example, in:" | 4796 | msgid "data to the plugin. For example, in:" |
6193 | msgstr "" | 4797 | msgstr "" |
6194 | 4798 | ||
6195 | #: plugins/urlize.c:182 | ||
6196 | msgid "urlize http://example.com/ check_http -H example.com -r 'two words'" | 4799 | msgid "urlize http://example.com/ check_http -H example.com -r 'two words'" |
6197 | msgstr "" | 4800 | msgstr "" |
6198 | 4801 | ||
6199 | #: plugins/urlize.c:183 | ||
6200 | msgid "the shell will remove the single quotes and urlize will see:" | 4802 | msgid "the shell will remove the single quotes and urlize will see:" |
6201 | msgstr "" | 4803 | msgstr "" |
6202 | 4804 | ||
6203 | #: plugins/urlize.c:184 | ||
6204 | msgid "urlize http://example.com/ check_http -H example.com -r two words" | 4805 | msgid "urlize http://example.com/ check_http -H example.com -r two words" |
6205 | msgstr "" | 4806 | msgstr "" |
6206 | 4807 | ||
6207 | #: plugins/urlize.c:185 | ||
6208 | msgid "You probably want:" | 4808 | msgid "You probably want:" |
6209 | msgstr "" | 4809 | msgstr "" |
6210 | 4810 | ||
6211 | #: plugins/urlize.c:186 | ||
6212 | msgid "urlize http://example.com/ \"check_http -H example.com -r 'two words'\"" | 4811 | msgid "urlize http://example.com/ \"check_http -H example.com -r 'two words'\"" |
6213 | msgstr "" | 4812 | msgstr "" |
6214 | 4813 | ||
6215 | #: plugins/utils.c:479 | ||
6216 | msgid "failed realloc in strpcpy\n" | 4814 | msgid "failed realloc in strpcpy\n" |
6217 | msgstr "La fonction realloc à échoué dans strpcpy\n" | 4815 | msgstr "La fonction realloc à échoué dans strpcpy\n" |
6218 | 4816 | ||
6219 | #: plugins/utils.c:521 | ||
6220 | msgid "failed malloc in strscat\n" | 4817 | msgid "failed malloc in strscat\n" |
6221 | msgstr "La fonction malloc à échoué dans strscat\n" | 4818 | msgstr "La fonction malloc à échoué dans strscat\n" |
6222 | 4819 | ||
6223 | #: plugins/utils.c:541 | ||
6224 | #, fuzzy | 4820 | #, fuzzy |
6225 | msgid "failed malloc in xvasprintf\n" | 4821 | msgid "failed malloc in xvasprintf\n" |
6226 | msgstr "La fonction malloc à échoué dans strscat\n" | 4822 | msgstr "La fonction malloc à échoué dans strscat\n" |
6227 | 4823 | ||
6228 | #: plugins/utils.c:819 | ||
6229 | msgid "sysconf error for _SC_OPEN_MAX\n" | 4824 | msgid "sysconf error for _SC_OPEN_MAX\n" |
6230 | msgstr "" | 4825 | msgstr "" |
6231 | 4826 | ||
6232 | #: plugins/utils.h:127 | ||
6233 | #, c-format | 4827 | #, c-format |
6234 | msgid "" | 4828 | msgid "" |
6235 | " %s (-h | --help) for detailed help\n" | 4829 | " %s (-h | --help) for detailed help\n" |
@@ -6238,7 +4832,6 @@ msgstr "" | |||
6238 | " %s (-h | --help) pour l'aide détaillée\n" | 4832 | " %s (-h | --help) pour l'aide détaillée\n" |
6239 | " %s (-V | --version) pour les informations relative à la version\n" | 4833 | " %s (-V | --version) pour les informations relative à la version\n" |
6240 | 4834 | ||
6241 | #: plugins/utils.h:131 | ||
6242 | msgid "" | 4835 | msgid "" |
6243 | "\n" | 4836 | "\n" |
6244 | "Options:\n" | 4837 | "Options:\n" |
@@ -6254,7 +4847,6 @@ msgstr "" | |||
6254 | " -V, --version\n" | 4847 | " -V, --version\n" |
6255 | " Afficher les informations relative à la version\n" | 4848 | " Afficher les informations relative à la version\n" |
6256 | 4849 | ||
6257 | #: plugins/utils.h:138 | ||
6258 | #, c-format | 4850 | #, c-format |
6259 | msgid "" | 4851 | msgid "" |
6260 | " -H, --hostname=ADDRESS\n" | 4852 | " -H, --hostname=ADDRESS\n" |
@@ -6267,7 +4859,6 @@ msgstr "" | |||
6267 | " -%c, --port=INTEGER\n" | 4859 | " -%c, --port=INTEGER\n" |
6268 | " Numéro de port (défaut: %s)\n" | 4860 | " Numéro de port (défaut: %s)\n" |
6269 | 4861 | ||
6270 | #: plugins/utils.h:144 | ||
6271 | msgid "" | 4862 | msgid "" |
6272 | " -4, --use-ipv4\n" | 4863 | " -4, --use-ipv4\n" |
6273 | " Use IPv4 connection\n" | 4864 | " Use IPv4 connection\n" |
@@ -6279,7 +4870,6 @@ msgstr "" | |||
6279 | " -6, --use-ipv6\n" | 4870 | " -6, --use-ipv6\n" |
6280 | " Utiliser une connection IPv6\n" | 4871 | " Utiliser une connection IPv6\n" |
6281 | 4872 | ||
6282 | #: plugins/utils.h:150 | ||
6283 | #, fuzzy | 4873 | #, fuzzy |
6284 | msgid "" | 4874 | msgid "" |
6285 | " -v, --verbose\n" | 4875 | " -v, --verbose\n" |
@@ -6290,7 +4880,6 @@ msgstr "" | |||
6290 | " Affiche les informations de déboguage en ligne de commande (Nagios peut " | 4880 | " Affiche les informations de déboguage en ligne de commande (Nagios peut " |
6291 | "tronquer la sortie)\n" | 4881 | "tronquer la sortie)\n" |
6292 | 4882 | ||
6293 | #: plugins/utils.h:155 | ||
6294 | msgid "" | 4883 | msgid "" |
6295 | " -w, --warning=DOUBLE\n" | 4884 | " -w, --warning=DOUBLE\n" |
6296 | " Response time to result in warning status (seconds)\n" | 4885 | " Response time to result in warning status (seconds)\n" |
@@ -6302,7 +4891,6 @@ msgstr "" | |||
6302 | " -c, --critical=DOUBLE\n" | 4891 | " -c, --critical=DOUBLE\n" |
6303 | " Temps de réponse résultant en un état critique (secondes)\n" | 4892 | " Temps de réponse résultant en un état critique (secondes)\n" |
6304 | 4893 | ||
6305 | #: plugins/utils.h:161 | ||
6306 | msgid "" | 4894 | msgid "" |
6307 | " -w, --warning=RANGE\n" | 4895 | " -w, --warning=RANGE\n" |
6308 | " Warning range (format: start:end). Alert if outside this range\n" | 4896 | " Warning range (format: start:end). Alert if outside this range\n" |
@@ -6315,7 +4903,6 @@ msgstr "" | |||
6315 | " -c, --critical=RANGE\n" | 4903 | " -c, --critical=RANGE\n" |
6316 | " Seuil critique\n" | 4904 | " Seuil critique\n" |
6317 | 4905 | ||
6318 | #: plugins/utils.h:167 | ||
6319 | #, c-format | 4906 | #, c-format |
6320 | msgid "" | 4907 | msgid "" |
6321 | " -t, --timeout=INTEGER\n" | 4908 | " -t, --timeout=INTEGER\n" |
@@ -6324,7 +4911,6 @@ msgstr "" | |||
6324 | " -t, --timeout=INTEGER\n" | 4911 | " -t, --timeout=INTEGER\n" |
6325 | " Délais de connection en secondes (défaut: %d)\n" | 4912 | " Délais de connection en secondes (défaut: %d)\n" |
6326 | 4913 | ||
6327 | #: plugins/utils.h:171 | ||
6328 | #, fuzzy, c-format | 4914 | #, fuzzy, c-format |
6329 | msgid "" | 4915 | msgid "" |
6330 | " -t, --timeout=INTEGER\n" | 4916 | " -t, --timeout=INTEGER\n" |
@@ -6333,7 +4919,6 @@ msgstr "" | |||
6333 | " -t, --timeout=INTEGER\n" | 4919 | " -t, --timeout=INTEGER\n" |
6334 | " Délais de connection en secondes (défaut: %d)\n" | 4920 | " Délais de connection en secondes (défaut: %d)\n" |
6335 | 4921 | ||
6336 | #: plugins/utils.h:176 | ||
6337 | #, fuzzy | 4922 | #, fuzzy |
6338 | msgid "" | 4923 | msgid "" |
6339 | " --extra-opts=[section][@file]\n" | 4924 | " --extra-opts=[section][@file]\n" |
@@ -6346,7 +4931,6 @@ msgstr "" | |||
6346 | " https://www.monitoring-plugins.org/doc/extra-opts.html\n" | 4931 | " https://www.monitoring-plugins.org/doc/extra-opts.html\n" |
6347 | " pour les instructions et examples.\n" | 4932 | " pour les instructions et examples.\n" |
6348 | 4933 | ||
6349 | #: plugins/utils.h:185 | ||
6350 | #, fuzzy | 4934 | #, fuzzy |
6351 | msgid "" | 4935 | msgid "" |
6352 | " See:\n" | 4936 | " See:\n" |
@@ -6358,7 +4942,6 @@ msgstr "" | |||
6358 | "html#THRESHOLDFORMAT\n" | 4942 | "html#THRESHOLDFORMAT\n" |
6359 | " pour le format et examples des seuils (THRESHOLD).\n" | 4943 | " pour le format et examples des seuils (THRESHOLD).\n" |
6360 | 4944 | ||
6361 | #: plugins/utils.h:190 | ||
6362 | #, fuzzy | 4945 | #, fuzzy |
6363 | msgid "" | 4946 | msgid "" |
6364 | "\n" | 4947 | "\n" |
@@ -6374,7 +4957,6 @@ msgstr "" | |||
6374 | "améliorations, envoyez un email à devel@monitoring-plugins.org\n" | 4957 | "améliorations, envoyez un email à devel@monitoring-plugins.org\n" |
6375 | "\n" | 4958 | "\n" |
6376 | 4959 | ||
6377 | #: plugins/utils.h:195 | ||
6378 | #, fuzzy | 4960 | #, fuzzy |
6379 | msgid "" | 4961 | msgid "" |
6380 | "\n" | 4962 | "\n" |
@@ -6388,25 +4970,21 @@ msgstr "" | |||
6388 | "des copies des plugins selon les termes de la GNU General Public License.\n" | 4970 | "des copies des plugins selon les termes de la GNU General Public License.\n" |
6389 | "Pour de plus ample informations, voir le fichier COPYING.\n" | 4971 | "Pour de plus ample informations, voir le fichier COPYING.\n" |
6390 | 4972 | ||
6391 | #: plugins-root/check_dhcp.c:317 | ||
6392 | #, c-format | 4973 | #, c-format |
6393 | msgid "Error: Could not get hardware address of interface '%s'\n" | 4974 | msgid "Error: Could not get hardware address of interface '%s'\n" |
6394 | msgstr "" | 4975 | msgstr "" |
6395 | "Erreur: Impossible d'obtenir l'adresse matérielle pour l'interface '%s'\n" | 4976 | "Erreur: Impossible d'obtenir l'adresse matérielle pour l'interface '%s'\n" |
6396 | 4977 | ||
6397 | #: plugins-root/check_dhcp.c:340 | ||
6398 | #, c-format | 4978 | #, c-format |
6399 | msgid "Error: if_nametoindex error - %s.\n" | 4979 | msgid "Error: if_nametoindex error - %s.\n" |
6400 | msgstr "Erreur: if_nametoindex erreur - %s.\n" | 4980 | msgstr "Erreur: if_nametoindex erreur - %s.\n" |
6401 | 4981 | ||
6402 | #: plugins-root/check_dhcp.c:345 | ||
6403 | #, c-format | 4982 | #, c-format |
6404 | msgid "Error: Couldn't get hardware address from %s. sysctl 1 error - %s.\n" | 4983 | msgid "Error: Couldn't get hardware address from %s. sysctl 1 error - %s.\n" |
6405 | msgstr "" | 4984 | msgstr "" |
6406 | "Erreur: Impossible d'obtenir l'adresse matérielle depuis %s. erreur sysctl 1 " | 4985 | "Erreur: Impossible d'obtenir l'adresse matérielle depuis %s. erreur sysctl 1 " |
6407 | "- %s.\n" | 4986 | "- %s.\n" |
6408 | 4987 | ||
6409 | #: plugins-root/check_dhcp.c:350 | ||
6410 | #, c-format | 4988 | #, c-format |
6411 | msgid "" | 4989 | msgid "" |
6412 | "Error: Couldn't get hardware address from interface %s. malloc error - %s.\n" | 4990 | "Error: Couldn't get hardware address from interface %s. malloc error - %s.\n" |
@@ -6414,14 +4992,12 @@ msgstr "" | |||
6414 | "Erreur: Impossible d'obtenir l'adresse matérielle depuis l'interface %s\n" | 4992 | "Erreur: Impossible d'obtenir l'adresse matérielle depuis l'interface %s\n" |
6415 | " erreur malloc - %s.\n" | 4993 | " erreur malloc - %s.\n" |
6416 | 4994 | ||
6417 | #: plugins-root/check_dhcp.c:355 | ||
6418 | #, c-format | 4995 | #, c-format |
6419 | msgid "Error: Couldn't get hardware address from %s. sysctl 2 error - %s.\n" | 4996 | msgid "Error: Couldn't get hardware address from %s. sysctl 2 error - %s.\n" |
6420 | msgstr "" | 4997 | msgstr "" |
6421 | "Erreur: Impossible d'obtenir l'adresse matérielle depuis %s erreur sysctl 2 " | 4998 | "Erreur: Impossible d'obtenir l'adresse matérielle depuis %s erreur sysctl 2 " |
6422 | "- %s.\n" | 4999 | "- %s.\n" |
6423 | 5000 | ||
6424 | #: plugins-root/check_dhcp.c:386 | ||
6425 | #, c-format | 5001 | #, c-format |
6426 | msgid "" | 5002 | msgid "" |
6427 | "Error: can't find unit number in interface_name (%s) - expecting TypeNumber " | 5003 | "Error: can't find unit number in interface_name (%s) - expecting TypeNumber " |
@@ -6430,7 +5006,6 @@ msgstr "" | |||
6430 | "Erreur: impossible de trouver le numéro dans le nom de l'interface (%s).\n" | 5006 | "Erreur: impossible de trouver le numéro dans le nom de l'interface (%s).\n" |
6431 | "J'attendais le nom suivi du type ex lnc0.\n" | 5007 | "J'attendais le nom suivi du type ex lnc0.\n" |
6432 | 5008 | ||
6433 | #: plugins-root/check_dhcp.c:391 plugins-root/check_dhcp.c:403 | ||
6434 | #, c-format | 5009 | #, c-format |
6435 | msgid "" | 5010 | msgid "" |
6436 | "Error: can't read MAC address from DLPI streams interface for device %s unit " | 5011 | "Error: can't read MAC address from DLPI streams interface for device %s unit " |
@@ -6439,7 +5014,6 @@ msgstr "" | |||
6439 | "Erreur: impossible de lire l'adresse MAC depuis l'interface DLPI pour le \n" | 5014 | "Erreur: impossible de lire l'adresse MAC depuis l'interface DLPI pour le \n" |
6440 | "périphérique %s numéro %d.\n" | 5015 | "périphérique %s numéro %d.\n" |
6441 | 5016 | ||
6442 | #: plugins-root/check_dhcp.c:409 | ||
6443 | #, c-format | 5017 | #, c-format |
6444 | msgid "" | 5018 | msgid "" |
6445 | "Error: can't get MAC address for this architecture. Use the --mac option.\n" | 5019 | "Error: can't get MAC address for this architecture. Use the --mac option.\n" |
@@ -6447,47 +5021,38 @@ msgstr "" | |||
6447 | "Erreur: impossible d'obtenir l'adresse MAC sur cette architecture. Utilisez " | 5021 | "Erreur: impossible d'obtenir l'adresse MAC sur cette architecture. Utilisez " |
6448 | "l'option --mac.\n" | 5022 | "l'option --mac.\n" |
6449 | 5023 | ||
6450 | #: plugins-root/check_dhcp.c:428 | ||
6451 | #, c-format | 5024 | #, c-format |
6452 | msgid "Error: Cannot determine IP address of interface %s\n" | 5025 | msgid "Error: Cannot determine IP address of interface %s\n" |
6453 | msgstr "Erreur: Impossible d'obtenir l'adresse IP de l'interface %s\n" | 5026 | msgstr "Erreur: Impossible d'obtenir l'adresse IP de l'interface %s\n" |
6454 | 5027 | ||
6455 | #: plugins-root/check_dhcp.c:436 | ||
6456 | #, c-format | 5028 | #, c-format |
6457 | msgid "Error: Cannot get interface IP address on this platform.\n" | 5029 | msgid "Error: Cannot get interface IP address on this platform.\n" |
6458 | msgstr "Erreur: Impossible d'obtenir l'adresse IP sur cette architecture.\n" | 5030 | msgstr "Erreur: Impossible d'obtenir l'adresse IP sur cette architecture.\n" |
6459 | 5031 | ||
6460 | #: plugins-root/check_dhcp.c:441 | ||
6461 | #, c-format | 5032 | #, c-format |
6462 | msgid "Pretending to be relay client %s\n" | 5033 | msgid "Pretending to be relay client %s\n" |
6463 | msgstr "" | 5034 | msgstr "" |
6464 | 5035 | ||
6465 | #: plugins-root/check_dhcp.c:521 | ||
6466 | #, c-format | 5036 | #, c-format |
6467 | msgid "DHCPDISCOVER to %s port %d\n" | 5037 | msgid "DHCPDISCOVER to %s port %d\n" |
6468 | msgstr "DHCPDISCOVER vers %s port %d\n" | 5038 | msgstr "DHCPDISCOVER vers %s port %d\n" |
6469 | 5039 | ||
6470 | #: plugins-root/check_dhcp.c:573 | ||
6471 | #, c-format | 5040 | #, c-format |
6472 | msgid "Result=ERROR\n" | 5041 | msgid "Result=ERROR\n" |
6473 | msgstr "Résultat=ERREUR\n" | 5042 | msgstr "Résultat=ERREUR\n" |
6474 | 5043 | ||
6475 | #: plugins-root/check_dhcp.c:579 | ||
6476 | #, c-format | 5044 | #, c-format |
6477 | msgid "Result=OK\n" | 5045 | msgid "Result=OK\n" |
6478 | msgstr "Résultat=OK\n" | 5046 | msgstr "Résultat=OK\n" |
6479 | 5047 | ||
6480 | #: plugins-root/check_dhcp.c:589 | ||
6481 | #, c-format | 5048 | #, c-format |
6482 | msgid "DHCPOFFER from IP address %s" | 5049 | msgid "DHCPOFFER from IP address %s" |
6483 | msgstr "DHCPOFFER depuis l'adresse IP %s" | 5050 | msgstr "DHCPOFFER depuis l'adresse IP %s" |
6484 | 5051 | ||
6485 | #: plugins-root/check_dhcp.c:590 | ||
6486 | #, c-format | 5052 | #, c-format |
6487 | msgid " via %s\n" | 5053 | msgid " via %s\n" |
6488 | msgstr " depuis %s\n" | 5054 | msgstr " depuis %s\n" |
6489 | 5055 | ||
6490 | #: plugins-root/check_dhcp.c:597 | ||
6491 | #, c-format | 5056 | #, c-format |
6492 | msgid "" | 5057 | msgid "" |
6493 | "DHCPOFFER XID (%u) did not match DHCPDISCOVER XID (%u) - ignoring packet\n" | 5058 | "DHCPOFFER XID (%u) did not match DHCPDISCOVER XID (%u) - ignoring packet\n" |
@@ -6495,67 +5060,55 @@ msgstr "" | |||
6495 | "DHCPOFFER XID (%u) ne correspond pas au DHCPDISCOVER XID (%u) - paquet " | 5060 | "DHCPOFFER XID (%u) ne correspond pas au DHCPDISCOVER XID (%u) - paquet " |
6496 | "ignoré\n" | 5061 | "ignoré\n" |
6497 | 5062 | ||
6498 | #: plugins-root/check_dhcp.c:619 | ||
6499 | #, c-format | 5063 | #, c-format |
6500 | msgid "DHCPOFFER hardware address did not match our own - ignoring packet\n" | 5064 | msgid "DHCPOFFER hardware address did not match our own - ignoring packet\n" |
6501 | msgstr "" | 5065 | msgstr "" |
6502 | "l'adresse matérielle du DHCPOFFER ne correspond pas à la notre paquet " | 5066 | "l'adresse matérielle du DHCPOFFER ne correspond pas à la notre paquet " |
6503 | "ignoré\n" | 5067 | "ignoré\n" |
6504 | 5068 | ||
6505 | #: plugins-root/check_dhcp.c:637 | ||
6506 | #, c-format | 5069 | #, c-format |
6507 | msgid "Total responses seen on the wire: %d\n" | 5070 | msgid "Total responses seen on the wire: %d\n" |
6508 | msgstr "Nombre total de réponses vues: %d\n" | 5071 | msgstr "Nombre total de réponses vues: %d\n" |
6509 | 5072 | ||
6510 | #: plugins-root/check_dhcp.c:638 | ||
6511 | #, c-format | 5073 | #, c-format |
6512 | msgid "Valid responses for this machine: %d\n" | 5074 | msgid "Valid responses for this machine: %d\n" |
6513 | msgstr "Nombre de réponse valides pour cette machine: %d\n" | 5075 | msgstr "Nombre de réponse valides pour cette machine: %d\n" |
6514 | 5076 | ||
6515 | #: plugins-root/check_dhcp.c:653 | ||
6516 | #, c-format | 5077 | #, c-format |
6517 | msgid "send_dhcp_packet result: %d\n" | 5078 | msgid "send_dhcp_packet result: %d\n" |
6518 | msgstr "résultat de send_dchp_packet: %d\n" | 5079 | msgstr "résultat de send_dchp_packet: %d\n" |
6519 | 5080 | ||
6520 | #: plugins-root/check_dhcp.c:686 | ||
6521 | #, c-format | 5081 | #, c-format |
6522 | msgid "No (more) data received (nfound: %d)\n" | 5082 | msgid "No (more) data received (nfound: %d)\n" |
6523 | msgstr "Plus de données reçues (nfound: %d)\n" | 5083 | msgstr "Plus de données reçues (nfound: %d)\n" |
6524 | 5084 | ||
6525 | #: plugins-root/check_dhcp.c:699 | ||
6526 | #, c-format | 5085 | #, c-format |
6527 | msgid "recvfrom() failed, " | 5086 | msgid "recvfrom() failed, " |
6528 | msgstr "recvfrom() a échoué, " | 5087 | msgstr "recvfrom() a échoué, " |
6529 | 5088 | ||
6530 | #: plugins-root/check_dhcp.c:706 | ||
6531 | #, c-format | 5089 | #, c-format |
6532 | msgid "receive_dhcp_packet() result: %d\n" | 5090 | msgid "receive_dhcp_packet() result: %d\n" |
6533 | msgstr "résultat de receive_dchp_packet(): %d\n" | 5091 | msgstr "résultat de receive_dchp_packet(): %d\n" |
6534 | 5092 | ||
6535 | #: plugins-root/check_dhcp.c:707 | ||
6536 | #, c-format | 5093 | #, c-format |
6537 | msgid "receive_dhcp_packet() source: %s\n" | 5094 | msgid "receive_dhcp_packet() source: %s\n" |
6538 | msgstr "source de receive_dchp_packet(): %s\n" | 5095 | msgstr "source de receive_dchp_packet(): %s\n" |
6539 | 5096 | ||
6540 | #: plugins-root/check_dhcp.c:737 | ||
6541 | #, c-format | 5097 | #, c-format |
6542 | msgid "Error: Could not create socket!\n" | 5098 | msgid "Error: Could not create socket!\n" |
6543 | msgstr "Erreur: Impossible de créer un socket!\n" | 5099 | msgstr "Erreur: Impossible de créer un socket!\n" |
6544 | 5100 | ||
6545 | #: plugins-root/check_dhcp.c:747 | ||
6546 | #, c-format | 5101 | #, c-format |
6547 | msgid "Error: Could not set reuse address option on DHCP socket!\n" | 5102 | msgid "Error: Could not set reuse address option on DHCP socket!\n" |
6548 | msgstr "" | 5103 | msgstr "" |
6549 | "Erreur: Impossible de configurer l'option de réutilisation de l'adresse sur\n" | 5104 | "Erreur: Impossible de configurer l'option de réutilisation de l'adresse sur\n" |
6550 | "le socket DHCP!\n" | 5105 | "le socket DHCP!\n" |
6551 | 5106 | ||
6552 | #: plugins-root/check_dhcp.c:753 | ||
6553 | #, c-format | 5107 | #, c-format |
6554 | msgid "Error: Could not set broadcast option on DHCP socket!\n" | 5108 | msgid "Error: Could not set broadcast option on DHCP socket!\n" |
6555 | msgstr "" | 5109 | msgstr "" |
6556 | "Erreur: Impossible de configurer l'option broadcast sur le socket DHCP!\n" | 5110 | "Erreur: Impossible de configurer l'option broadcast sur le socket DHCP!\n" |
6557 | 5111 | ||
6558 | #: plugins-root/check_dhcp.c:762 | ||
6559 | #, c-format | 5112 | #, c-format |
6560 | msgid "" | 5113 | msgid "" |
6561 | "Error: Could not bind socket to interface %s. Check your privileges...\n" | 5114 | "Error: Could not bind socket to interface %s. Check your privileges...\n" |
@@ -6563,7 +5116,6 @@ msgstr "" | |||
6563 | "Erreur: Impossible de connecter le socket à l'interface %s.\n" | 5116 | "Erreur: Impossible de connecter le socket à l'interface %s.\n" |
6564 | "Vérifiez vos droits...\n" | 5117 | "Vérifiez vos droits...\n" |
6565 | 5118 | ||
6566 | #: plugins-root/check_dhcp.c:773 | ||
6567 | #, c-format | 5119 | #, c-format |
6568 | msgid "" | 5120 | msgid "" |
6569 | "Error: Could not bind to DHCP socket (port %d)! Check your privileges...\n" | 5121 | "Error: Could not bind to DHCP socket (port %d)! Check your privileges...\n" |
@@ -6571,129 +5123,104 @@ msgstr "" | |||
6571 | "Erreur: Impossible de se connecter au socket (port %d)! Vérifiez vos " | 5123 | "Erreur: Impossible de se connecter au socket (port %d)! Vérifiez vos " |
6572 | "droits..\n" | 5124 | "droits..\n" |
6573 | 5125 | ||
6574 | #: plugins-root/check_dhcp.c:807 | ||
6575 | #, c-format | 5126 | #, c-format |
6576 | msgid "Requested server address: %s\n" | 5127 | msgid "Requested server address: %s\n" |
6577 | msgstr "Adresse serveur demandée: %s\n" | 5128 | msgstr "Adresse serveur demandée: %s\n" |
6578 | 5129 | ||
6579 | #: plugins-root/check_dhcp.c:869 | ||
6580 | #, c-format | 5130 | #, c-format |
6581 | msgid "Lease Time: Infinite\n" | 5131 | msgid "Lease Time: Infinite\n" |
6582 | msgstr "Durée du Bail: Infini\n" | 5132 | msgstr "Durée du Bail: Infini\n" |
6583 | 5133 | ||
6584 | #: plugins-root/check_dhcp.c:871 | ||
6585 | #, c-format | 5134 | #, c-format |
6586 | msgid "Lease Time: %lu seconds\n" | 5135 | msgid "Lease Time: %lu seconds\n" |
6587 | msgstr "Durée du Bail: %lu secondes\n" | 5136 | msgstr "Durée du Bail: %lu secondes\n" |
6588 | 5137 | ||
6589 | #: plugins-root/check_dhcp.c:873 | ||
6590 | #, c-format | 5138 | #, c-format |
6591 | msgid "Renewal Time: Infinite\n" | 5139 | msgid "Renewal Time: Infinite\n" |
6592 | msgstr "Renouvellement du bail: Infini\n" | 5140 | msgstr "Renouvellement du bail: Infini\n" |
6593 | 5141 | ||
6594 | #: plugins-root/check_dhcp.c:875 | ||
6595 | #, c-format | 5142 | #, c-format |
6596 | msgid "Renewal Time: %lu seconds\n" | 5143 | msgid "Renewal Time: %lu seconds\n" |
6597 | msgstr "Durée du renouvellement = %lu secondes\n" | 5144 | msgstr "Durée du renouvellement = %lu secondes\n" |
6598 | 5145 | ||
6599 | #: plugins-root/check_dhcp.c:877 | ||
6600 | #, c-format | 5146 | #, c-format |
6601 | msgid "Rebinding Time: Infinite\n" | 5147 | msgid "Rebinding Time: Infinite\n" |
6602 | msgstr "Délai de nouvelle demande: Infini\n" | 5148 | msgstr "Délai de nouvelle demande: Infini\n" |
6603 | 5149 | ||
6604 | #: plugins-root/check_dhcp.c:878 | ||
6605 | #, c-format | 5150 | #, c-format |
6606 | msgid "Rebinding Time: %lu seconds\n" | 5151 | msgid "Rebinding Time: %lu seconds\n" |
6607 | msgstr "Délai de nouvelle demande: %lu secondes\n" | 5152 | msgstr "Délai de nouvelle demande: %lu secondes\n" |
6608 | 5153 | ||
6609 | #: plugins-root/check_dhcp.c:906 | ||
6610 | #, c-format | 5154 | #, c-format |
6611 | msgid "Added offer from server @ %s" | 5155 | msgid "Added offer from server @ %s" |
6612 | msgstr "Rajouté offre du serveur @ %s" | 5156 | msgstr "Rajouté offre du serveur @ %s" |
6613 | 5157 | ||
6614 | #: plugins-root/check_dhcp.c:907 | ||
6615 | #, c-format | 5158 | #, c-format |
6616 | msgid " of IP address %s\n" | 5159 | msgid " of IP address %s\n" |
6617 | msgstr "de l'adresse IP %s\n" | 5160 | msgstr "de l'adresse IP %s\n" |
6618 | 5161 | ||
6619 | #: plugins-root/check_dhcp.c:974 | ||
6620 | #, c-format | 5162 | #, c-format |
6621 | msgid "DHCP Server Match: Offerer=%s" | 5163 | msgid "DHCP Server Match: Offerer=%s" |
6622 | msgstr "Correspondance du serveur DHCP: Offrant=%s" | 5164 | msgstr "Correspondance du serveur DHCP: Offrant=%s" |
6623 | 5165 | ||
6624 | #: plugins-root/check_dhcp.c:975 | ||
6625 | #, c-format | 5166 | #, c-format |
6626 | msgid " Requested=%s" | 5167 | msgid " Requested=%s" |
6627 | msgstr " Demandé=%s" | 5168 | msgstr " Demandé=%s" |
6628 | 5169 | ||
6629 | #: plugins-root/check_dhcp.c:977 | ||
6630 | #, c-format | 5170 | #, c-format |
6631 | msgid " (duplicate)" | 5171 | msgid " (duplicate)" |
6632 | msgstr "" | 5172 | msgstr "" |
6633 | 5173 | ||
6634 | #: plugins-root/check_dhcp.c:978 | ||
6635 | #, c-format | 5174 | #, c-format |
6636 | msgid "\n" | 5175 | msgid "\n" |
6637 | msgstr "" | 5176 | msgstr "" |
6638 | 5177 | ||
6639 | #: plugins-root/check_dhcp.c:1026 | ||
6640 | #, c-format | 5178 | #, c-format |
6641 | msgid "No DHCPOFFERs were received.\n" | 5179 | msgid "No DHCPOFFERs were received.\n" |
6642 | msgstr "Pas de DHCPOFFERs reçus.\n" | 5180 | msgstr "Pas de DHCPOFFERs reçus.\n" |
6643 | 5181 | ||
6644 | #: plugins-root/check_dhcp.c:1030 | ||
6645 | #, c-format | 5182 | #, c-format |
6646 | msgid "Received %d DHCPOFFER(s)" | 5183 | msgid "Received %d DHCPOFFER(s)" |
6647 | msgstr "Reçu %d DHCPOFFER(s)" | 5184 | msgstr "Reçu %d DHCPOFFER(s)" |
6648 | 5185 | ||
6649 | #: plugins-root/check_dhcp.c:1033 | ||
6650 | #, c-format | 5186 | #, c-format |
6651 | msgid ", %s%d of %d requested servers responded" | 5187 | msgid ", %s%d of %d requested servers responded" |
6652 | msgstr ", %s%d de %d serveurs ont répondus" | 5188 | msgstr ", %s%d de %d serveurs ont répondus" |
6653 | 5189 | ||
6654 | #: plugins-root/check_dhcp.c:1036 | ||
6655 | #, c-format | 5190 | #, c-format |
6656 | msgid ", requested address (%s) was %soffered" | 5191 | msgid ", requested address (%s) was %soffered" |
6657 | msgstr ", l'adresse demandée (%s) %s été offerte" | 5192 | msgstr ", l'adresse demandée (%s) %s été offerte" |
6658 | 5193 | ||
6659 | #: plugins-root/check_dhcp.c:1036 | ||
6660 | msgid "not " | 5194 | msgid "not " |
6661 | msgstr "n'as pas" | 5195 | msgstr "n'as pas" |
6662 | 5196 | ||
6663 | #: plugins-root/check_dhcp.c:1038 | ||
6664 | #, c-format | 5197 | #, c-format |
6665 | msgid ", max lease time = " | 5198 | msgid ", max lease time = " |
6666 | msgstr ", bail maximum = " | 5199 | msgstr ", bail maximum = " |
6667 | 5200 | ||
6668 | #: plugins-root/check_dhcp.c:1040 | ||
6669 | #, c-format | 5201 | #, c-format |
6670 | msgid "Infinity" | 5202 | msgid "Infinity" |
6671 | msgstr "Infini" | 5203 | msgstr "Infini" |
6672 | 5204 | ||
6673 | #: plugins-root/check_dhcp.c:1160 | ||
6674 | msgid "Got unexpected non-option argument" | 5205 | msgid "Got unexpected non-option argument" |
6675 | msgstr "" | 5206 | msgstr "" |
6676 | 5207 | ||
6677 | #: plugins-root/check_dhcp.c:1202 | ||
6678 | #, c-format | 5208 | #, c-format |
6679 | msgid "Error: DLPI stream API failed to get MAC in check_ctrl: %s.\n" | 5209 | msgid "Error: DLPI stream API failed to get MAC in check_ctrl: %s.\n" |
6680 | msgstr "" | 5210 | msgstr "" |
6681 | "Erreur: Impossible d'obtenir la MAC par l'API DLPI dans check_ctrl: %s.\n" | 5211 | "Erreur: Impossible d'obtenir la MAC par l'API DLPI dans check_ctrl: %s.\n" |
6682 | 5212 | ||
6683 | #: plugins-root/check_dhcp.c:1214 | ||
6684 | #, c-format | 5213 | #, c-format |
6685 | msgid "Error: DLPI stream API failed to get MAC in put_ctrl/putmsg(): %s.\n" | 5214 | msgid "Error: DLPI stream API failed to get MAC in put_ctrl/putmsg(): %s.\n" |
6686 | msgstr "" | 5215 | msgstr "" |
6687 | "Erreur: Impossible d'obtenir la MAC par l'API DLPI dans put_ctrl/putmsg(): " | 5216 | "Erreur: Impossible d'obtenir la MAC par l'API DLPI dans put_ctrl/putmsg(): " |
6688 | "%s.\n" | 5217 | "%s.\n" |
6689 | 5218 | ||
6690 | #: plugins-root/check_dhcp.c:1227 | ||
6691 | #, c-format | 5219 | #, c-format |
6692 | msgid "Error: DLPI stream API failed to get MAC in put_both/putmsg().\n" | 5220 | msgid "Error: DLPI stream API failed to get MAC in put_both/putmsg().\n" |
6693 | msgstr "" | 5221 | msgstr "" |
6694 | "Erreur: Impossible d'obtenir la MAC par l'API DLPI dans put_both/putmsg().\n" | 5222 | "Erreur: Impossible d'obtenir la MAC par l'API DLPI dans put_both/putmsg().\n" |
6695 | 5223 | ||
6696 | #: plugins-root/check_dhcp.c:1239 | ||
6697 | #, c-format | 5224 | #, c-format |
6698 | msgid "" | 5225 | msgid "" |
6699 | "Error: DLPI stream API failed to get MAC in dl_attach_req/open(%s..): %s.\n" | 5226 | "Error: DLPI stream API failed to get MAC in dl_attach_req/open(%s..): %s.\n" |
@@ -6701,126 +5228,97 @@ msgstr "" | |||
6701 | "Erreur: Impossible d'obtenir la MAC par l'API DLPI dans dl_attach_req/" | 5228 | "Erreur: Impossible d'obtenir la MAC par l'API DLPI dans dl_attach_req/" |
6702 | "open(%s..): %s.\n" | 5229 | "open(%s..): %s.\n" |
6703 | 5230 | ||
6704 | #: plugins-root/check_dhcp.c:1263 | ||
6705 | #, c-format | 5231 | #, c-format |
6706 | msgid "Error: DLPI stream API failed to get MAC in dl_bind/check_ctrl(): %s.\n" | 5232 | msgid "Error: DLPI stream API failed to get MAC in dl_bind/check_ctrl(): %s.\n" |
6707 | msgstr "" | 5233 | msgstr "" |
6708 | "Erreur: Impossible d'obtenir la MAC par l'API DLPI dans dl_bind/" | 5234 | "Erreur: Impossible d'obtenir la MAC par l'API DLPI dans dl_bind/" |
6709 | "check_ctrl(): %s.\n" | 5235 | "check_ctrl(): %s.\n" |
6710 | 5236 | ||
6711 | #: plugins-root/check_dhcp.c:1342 | ||
6712 | #, c-format | 5237 | #, c-format |
6713 | msgid "Hardware address: " | 5238 | msgid "Hardware address: " |
6714 | msgstr "Adresse matérielle: " | 5239 | msgstr "Adresse matérielle: " |
6715 | 5240 | ||
6716 | #: plugins-root/check_dhcp.c:1358 | ||
6717 | msgid "This plugin tests the availability of DHCP servers on a network." | 5241 | msgid "This plugin tests the availability of DHCP servers on a network." |
6718 | msgstr "Ce plugin teste la disponibilité de serveurs DHCP dans un réseau." | 5242 | msgstr "Ce plugin teste la disponibilité de serveurs DHCP dans un réseau." |
6719 | 5243 | ||
6720 | #: plugins-root/check_dhcp.c:1370 | ||
6721 | msgid "IP address of DHCP server that we must hear from" | 5244 | msgid "IP address of DHCP server that we must hear from" |
6722 | msgstr "" | 5245 | msgstr "" |
6723 | 5246 | ||
6724 | #: plugins-root/check_dhcp.c:1372 | ||
6725 | msgid "IP address that should be offered by at least one DHCP server" | 5247 | msgid "IP address that should be offered by at least one DHCP server" |
6726 | msgstr "" | 5248 | msgstr "" |
6727 | 5249 | ||
6728 | #: plugins-root/check_dhcp.c:1374 | ||
6729 | msgid "Seconds to wait for DHCPOFFER before timeout occurs" | 5250 | msgid "Seconds to wait for DHCPOFFER before timeout occurs" |
6730 | msgstr "" | 5251 | msgstr "" |
6731 | 5252 | ||
6732 | #: plugins-root/check_dhcp.c:1376 | ||
6733 | msgid "Interface to to use for listening (i.e. eth0)" | 5253 | msgid "Interface to to use for listening (i.e. eth0)" |
6734 | msgstr "" | 5254 | msgstr "" |
6735 | 5255 | ||
6736 | #: plugins-root/check_dhcp.c:1378 | ||
6737 | msgid "MAC address to use in the DHCP request" | 5256 | msgid "MAC address to use in the DHCP request" |
6738 | msgstr "" | 5257 | msgstr "" |
6739 | 5258 | ||
6740 | #: plugins-root/check_dhcp.c:1380 | ||
6741 | msgid "Unicast testing: mimic a DHCP relay, requires -s" | 5259 | msgid "Unicast testing: mimic a DHCP relay, requires -s" |
6742 | msgstr "" | 5260 | msgstr "" |
6743 | 5261 | ||
6744 | #: plugins-root/check_icmp.c:1572 | ||
6745 | msgid "specify a target" | 5262 | msgid "specify a target" |
6746 | msgstr "" | 5263 | msgstr "" |
6747 | 5264 | ||
6748 | #: plugins-root/check_icmp.c:1574 | ||
6749 | msgid "Use IPv4 (default) or IPv6 to communicate with the targets" | 5265 | msgid "Use IPv4 (default) or IPv6 to communicate with the targets" |
6750 | msgstr "" | 5266 | msgstr "" |
6751 | 5267 | ||
6752 | #: plugins-root/check_icmp.c:1576 | ||
6753 | msgid "warning threshold (currently " | 5268 | msgid "warning threshold (currently " |
6754 | msgstr "Valeurs pour le seuil d'avertissement (actuellement " | 5269 | msgstr "Valeurs pour le seuil d'avertissement (actuellement " |
6755 | 5270 | ||
6756 | #: plugins-root/check_icmp.c:1579 | ||
6757 | msgid "critical threshold (currently " | 5271 | msgid "critical threshold (currently " |
6758 | msgstr "Valeurs pour le seuil critique (actuellement " | 5272 | msgstr "Valeurs pour le seuil critique (actuellement " |
6759 | 5273 | ||
6760 | #: plugins-root/check_icmp.c:1582 | ||
6761 | msgid "specify a source IP address or device name" | 5274 | msgid "specify a source IP address or device name" |
6762 | msgstr "spécifiez une adresse ou un nom d'hôte" | 5275 | msgstr "spécifiez une adresse ou un nom d'hôte" |
6763 | 5276 | ||
6764 | #: plugins-root/check_icmp.c:1584 | ||
6765 | msgid "number of packets to send (currently " | 5277 | msgid "number of packets to send (currently " |
6766 | msgstr "nombre de paquets à envoyer (actuellement " | 5278 | msgstr "nombre de paquets à envoyer (actuellement " |
6767 | 5279 | ||
6768 | #: plugins-root/check_icmp.c:1587 | ||
6769 | msgid "max packet interval (currently " | 5280 | msgid "max packet interval (currently " |
6770 | msgstr "" | 5281 | msgstr "" |
6771 | 5282 | ||
6772 | #: plugins-root/check_icmp.c:1590 | ||
6773 | msgid "max target interval (currently " | 5283 | msgid "max target interval (currently " |
6774 | msgstr "" | 5284 | msgstr "" |
6775 | 5285 | ||
6776 | #: plugins-root/check_icmp.c:1593 | ||
6777 | msgid "number of alive hosts required for success" | 5286 | msgid "number of alive hosts required for success" |
6778 | msgstr "nombre d'hôtes vivants requis pour réussite" | 5287 | msgstr "nombre d'hôtes vivants requis pour réussite" |
6779 | 5288 | ||
6780 | #: plugins-root/check_icmp.c:1596 | ||
6781 | msgid "TTL on outgoing packets (currently " | 5289 | msgid "TTL on outgoing packets (currently " |
6782 | msgstr "" | 5290 | msgstr "" |
6783 | 5291 | ||
6784 | #: plugins-root/check_icmp.c:1599 | ||
6785 | msgid "timeout value (seconds, currently " | 5292 | msgid "timeout value (seconds, currently " |
6786 | msgstr "" | 5293 | msgstr "" |
6787 | 5294 | ||
6788 | #: plugins-root/check_icmp.c:1602 | ||
6789 | msgid "Number of icmp data bytes to send" | 5295 | msgid "Number of icmp data bytes to send" |
6790 | msgstr "Nombre de paquets ICMP Ã envoyer" | 5296 | msgstr "Nombre de paquets ICMP Ã envoyer" |
6791 | 5297 | ||
6792 | #: plugins-root/check_icmp.c:1603 | ||
6793 | msgid "Packet size will be data bytes + icmp header (currently" | 5298 | msgid "Packet size will be data bytes + icmp header (currently" |
6794 | msgstr "" | 5299 | msgstr "" |
6795 | 5300 | ||
6796 | #: plugins-root/check_icmp.c:1605 | ||
6797 | msgid "verbose" | 5301 | msgid "verbose" |
6798 | msgstr "" | 5302 | msgstr "" |
6799 | 5303 | ||
6800 | #: plugins-root/check_icmp.c:1609 | ||
6801 | msgid "The -H switch is optional. Naming a host (or several) to check is not." | 5304 | msgid "The -H switch is optional. Naming a host (or several) to check is not." |
6802 | msgstr "" | 5305 | msgstr "" |
6803 | 5306 | ||
6804 | #: plugins-root/check_icmp.c:1611 | ||
6805 | msgid "" | 5307 | msgid "" |
6806 | "Threshold format for -w and -c is 200.25,60% for 200.25 msec RTA and 60%" | 5308 | "Threshold format for -w and -c is 200.25,60% for 200.25 msec RTA and 60%" |
6807 | msgstr "" | 5309 | msgstr "" |
6808 | 5310 | ||
6809 | #: plugins-root/check_icmp.c:1612 | ||
6810 | msgid "packet loss. The default values should work well for most users." | 5311 | msgid "packet loss. The default values should work well for most users." |
6811 | msgstr "" | 5312 | msgstr "" |
6812 | 5313 | ||
6813 | #: plugins-root/check_icmp.c:1613 | ||
6814 | msgid "" | 5314 | msgid "" |
6815 | "You can specify different RTA factors using the standardized abbreviations" | 5315 | "You can specify different RTA factors using the standardized abbreviations" |
6816 | msgstr "" | 5316 | msgstr "" |
6817 | 5317 | ||
6818 | #: plugins-root/check_icmp.c:1614 | ||
6819 | msgid "" | 5318 | msgid "" |
6820 | "us (microseconds), ms (milliseconds, default) or just plain s for seconds." | 5319 | "us (microseconds), ms (milliseconds, default) or just plain s for seconds." |
6821 | msgstr "" | 5320 | msgstr "" |
6822 | 5321 | ||
6823 | #: plugins-root/check_icmp.c:1620 | ||
6824 | msgid "The -v switch can be specified several times for increased verbosity." | 5322 | msgid "The -v switch can be specified several times for increased verbosity." |
6825 | msgstr "" | 5323 | msgstr "" |
6826 | 5324 | ||
diff --git a/po/monitoring-plugins.pot b/po/monitoring-plugins.pot index 4f6b241..6efafef 100644 --- a/po/monitoring-plugins.pot +++ b/po/monitoring-plugins.pot | |||
@@ -8,7 +8,7 @@ msgid "" | |||
8 | msgstr "" | 8 | msgstr "" |
9 | "Project-Id-Version: PACKAGE VERSION\n" | 9 | "Project-Id-Version: PACKAGE VERSION\n" |
10 | "Report-Msgid-Bugs-To: devel@monitoring-plugins.org\n" | 10 | "Report-Msgid-Bugs-To: devel@monitoring-plugins.org\n" |
11 | "POT-Creation-Date: 2023-07-11 16:07+0200\n" | 11 | "POT-Creation-Date: 2023-09-05 15:21+0200\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,4191 +18,3163 @@ msgstr "" | |||
18 | "Content-Transfer-Encoding: 8bit\n" | 18 | "Content-Transfer-Encoding: 8bit\n" |
19 | "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" | 19 | "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" |
20 | 20 | ||
21 | #: plugins/check_by_ssh.c:88 plugins/check_cluster.c:76 plugins/check_dig.c:91 | ||
22 | #: plugins/check_disk.c:206 plugins/check_dns.c:106 plugins/check_dummy.c:52 | ||
23 | #: plugins/check_fping.c:95 plugins/check_game.c:82 plugins/check_hpjd.c:105 | ||
24 | #: plugins/check_http.c:174 plugins/check_ldap.c:118 plugins/check_load.c:128 | ||
25 | #: plugins/check_mrtgtraf.c:83 plugins/check_mysql.c:124 | ||
26 | #: plugins/check_nagios.c:91 plugins/check_nt.c:127 plugins/check_ntp.c:780 | ||
27 | #: plugins/check_ntp_peer.c:575 plugins/check_ntp_time.c:557 | ||
28 | #: plugins/check_nwstat.c:173 plugins/check_overcr.c:102 | ||
29 | #: plugins/check_pgsql.c:174 plugins/check_ping.c:97 plugins/check_procs.c:176 | ||
30 | #: plugins/check_radius.c:176 plugins/check_real.c:80 plugins/check_smtp.c:146 | ||
31 | #: plugins/check_snmp.c:248 plugins/check_ssh.c:74 plugins/check_swap.c:115 | ||
32 | #: plugins/check_tcp.c:222 plugins/check_time.c:78 plugins/check_ups.c:122 | ||
33 | #: plugins/check_users.c:84 plugins/negate.c:210 plugins-root/check_dhcp.c:270 | ||
34 | msgid "Could not parse arguments" | 21 | msgid "Could not parse arguments" |
35 | msgstr "" | 22 | msgstr "" |
36 | 23 | ||
37 | #: plugins/check_by_ssh.c:92 plugins/check_dig.c:85 plugins/check_dns.c:99 | ||
38 | #: plugins/check_nagios.c:95 plugins/check_pgsql.c:180 plugins/check_ping.c:101 | ||
39 | #: plugins/check_procs.c:192 plugins/check_snmp.c:348 plugins/negate.c:78 | ||
40 | msgid "Cannot catch SIGALRM" | 24 | msgid "Cannot catch SIGALRM" |
41 | msgstr "" | 25 | msgstr "" |
42 | 26 | ||
43 | #: plugins/check_by_ssh.c:107 | ||
44 | #, c-format | 27 | #, c-format |
45 | msgid "SSH connection failed: %s\n" | 28 | msgid "SSH connection failed: %s\n" |
46 | msgstr "" | 29 | msgstr "" |
47 | 30 | ||
48 | #: plugins/check_by_ssh.c:126 | ||
49 | #, c-format | 31 | #, c-format |
50 | msgid "Remote command execution failed: %s\n" | 32 | msgid "Remote command execution failed: %s\n" |
51 | msgstr "" | 33 | msgstr "" |
52 | 34 | ||
53 | #: plugins/check_by_ssh.c:141 | ||
54 | #, c-format | 35 | #, c-format |
55 | msgid "%s - check_by_ssh: Remote command '%s' returned status %d\n" | 36 | msgid "%s - check_by_ssh: Remote command '%s' returned status %d\n" |
56 | msgstr "" | 37 | msgstr "" |
57 | 38 | ||
58 | #: plugins/check_by_ssh.c:153 | ||
59 | #, c-format | 39 | #, c-format |
60 | msgid "SSH WARNING: could not open %s\n" | 40 | msgid "SSH WARNING: could not open %s\n" |
61 | msgstr "" | 41 | msgstr "" |
62 | 42 | ||
63 | #: plugins/check_by_ssh.c:162 | ||
64 | #, c-format | 43 | #, c-format |
65 | msgid "%s: Error parsing output\n" | 44 | msgid "%s: Error parsing output\n" |
66 | msgstr "" | 45 | msgstr "" |
67 | 46 | ||
68 | #: plugins/check_by_ssh.c:242 plugins/check_disk.c:568 plugins/check_http.c:292 | ||
69 | #: plugins/check_ldap.c:334 plugins/check_pgsql.c:314 plugins/check_procs.c:461 | ||
70 | #: plugins/check_radius.c:323 plugins/check_real.c:357 plugins/check_smtp.c:607 | ||
71 | #: plugins/check_snmp.c:789 plugins/check_ssh.c:140 plugins/check_tcp.c:519 | ||
72 | #: plugins/check_time.c:302 plugins/check_ups.c:559 plugins/negate.c:160 | ||
73 | msgid "Timeout interval must be a positive integer" | 47 | msgid "Timeout interval must be a positive integer" |
74 | msgstr "" | 48 | msgstr "" |
75 | 49 | ||
76 | #: plugins/check_by_ssh.c:254 plugins/check_pgsql.c:344 | ||
77 | #: plugins/check_radius.c:287 plugins/check_real.c:328 plugins/check_smtp.c:532 | ||
78 | #: plugins/check_tcp.c:525 plugins/check_time.c:296 plugins/check_ups.c:521 | ||
79 | msgid "Port must be a positive integer" | 50 | msgid "Port must be a positive integer" |
80 | msgstr "" | 51 | msgstr "" |
81 | 52 | ||
82 | #: plugins/check_by_ssh.c:315 | ||
83 | msgid "skip-stdout argument must be an integer" | 53 | msgid "skip-stdout argument must be an integer" |
84 | msgstr "" | 54 | msgstr "" |
85 | 55 | ||
86 | #: plugins/check_by_ssh.c:323 | ||
87 | msgid "skip-stderr argument must be an integer" | 56 | msgid "skip-stderr argument must be an integer" |
88 | msgstr "" | 57 | msgstr "" |
89 | 58 | ||
90 | #: plugins/check_by_ssh.c:349 | ||
91 | #, c-format | 59 | #, c-format |
92 | msgid "%s: You must provide a host name\n" | 60 | msgid "%s: You must provide a host name\n" |
93 | msgstr "" | 61 | msgstr "" |
94 | 62 | ||
95 | #: plugins/check_by_ssh.c:366 | ||
96 | msgid "No remotecmd" | 63 | msgid "No remotecmd" |
97 | msgstr "" | 64 | msgstr "" |
98 | 65 | ||
99 | #: plugins/check_by_ssh.c:380 | ||
100 | #, c-format | 66 | #, c-format |
101 | msgid "%s: Argument limit of %d exceeded\n" | 67 | msgid "%s: Argument limit of %d exceeded\n" |
102 | msgstr "" | 68 | msgstr "" |
103 | 69 | ||
104 | #: plugins/check_by_ssh.c:383 | ||
105 | msgid "Can not (re)allocate 'commargv' buffer\n" | 70 | msgid "Can not (re)allocate 'commargv' buffer\n" |
106 | msgstr "" | 71 | msgstr "" |
107 | 72 | ||
108 | #: plugins/check_by_ssh.c:397 | ||
109 | #, c-format | 73 | #, c-format |
110 | msgid "" | 74 | msgid "" |
111 | "%s: In passive mode, you must provide a service name for each command.\n" | 75 | "%s: In passive mode, you must provide a service name for each command.\n" |
112 | msgstr "" | 76 | msgstr "" |
113 | 77 | ||
114 | #: plugins/check_by_ssh.c:400 | ||
115 | #, c-format | 78 | #, c-format |
116 | msgid "" | 79 | msgid "" |
117 | "%s: In passive mode, you must provide the host short name from the " | 80 | "%s: In passive mode, you must provide the host short name from the " |
118 | "monitoring configs.\n" | 81 | "monitoring configs.\n" |
119 | msgstr "" | 82 | msgstr "" |
120 | 83 | ||
121 | #: plugins/check_by_ssh.c:414 | ||
122 | #, c-format | 84 | #, c-format |
123 | msgid "This plugin uses SSH to execute commands on a remote host" | 85 | msgid "This plugin uses SSH to execute commands on a remote host" |
124 | msgstr "" | 86 | msgstr "" |
125 | 87 | ||
126 | #: plugins/check_by_ssh.c:429 | ||
127 | msgid "tell ssh to use Protocol 1 [optional]" | 88 | msgid "tell ssh to use Protocol 1 [optional]" |
128 | msgstr "" | 89 | msgstr "" |
129 | 90 | ||
130 | #: plugins/check_by_ssh.c:431 | ||
131 | msgid "tell ssh to use Protocol 2 [optional]" | 91 | msgid "tell ssh to use Protocol 2 [optional]" |
132 | msgstr "" | 92 | msgstr "" |
133 | 93 | ||
134 | #: plugins/check_by_ssh.c:433 | ||
135 | msgid "Ignore all or (if specified) first n lines on STDOUT [optional]" | 94 | msgid "Ignore all or (if specified) first n lines on STDOUT [optional]" |
136 | msgstr "" | 95 | msgstr "" |
137 | 96 | ||
138 | #: plugins/check_by_ssh.c:435 | ||
139 | msgid "Ignore all or (if specified) first n lines on STDERR [optional]" | 97 | msgid "Ignore all or (if specified) first n lines on STDERR [optional]" |
140 | msgstr "" | 98 | msgstr "" |
141 | 99 | ||
142 | #: plugins/check_by_ssh.c:437 | ||
143 | msgid "Exit with an warning, if there is an output on STDERR" | 100 | msgid "Exit with an warning, if there is an output on STDERR" |
144 | msgstr "" | 101 | msgstr "" |
145 | 102 | ||
146 | #: plugins/check_by_ssh.c:439 | ||
147 | msgid "" | 103 | msgid "" |
148 | "tells ssh to fork rather than create a tty [optional]. This will always " | 104 | "tells ssh to fork rather than create a tty [optional]. This will always " |
149 | "return OK if ssh is executed" | 105 | "return OK if ssh is executed" |
150 | msgstr "" | 106 | msgstr "" |
151 | 107 | ||
152 | #: plugins/check_by_ssh.c:441 | ||
153 | msgid "command to execute on the remote machine" | 108 | msgid "command to execute on the remote machine" |
154 | msgstr "" | 109 | msgstr "" |
155 | 110 | ||
156 | #: plugins/check_by_ssh.c:443 | ||
157 | msgid "SSH user name on remote host [optional]" | 111 | msgid "SSH user name on remote host [optional]" |
158 | msgstr "" | 112 | msgstr "" |
159 | 113 | ||
160 | #: plugins/check_by_ssh.c:445 | ||
161 | msgid "identity of an authorized key [optional]" | 114 | msgid "identity of an authorized key [optional]" |
162 | msgstr "" | 115 | msgstr "" |
163 | 116 | ||
164 | #: plugins/check_by_ssh.c:447 | ||
165 | msgid "external command file for monitoring [optional]" | 117 | msgid "external command file for monitoring [optional]" |
166 | msgstr "" | 118 | msgstr "" |
167 | 119 | ||
168 | #: plugins/check_by_ssh.c:449 | ||
169 | msgid "list of monitoring service names, separated by ':' [optional]" | 120 | msgid "list of monitoring service names, separated by ':' [optional]" |
170 | msgstr "" | 121 | msgstr "" |
171 | 122 | ||
172 | #: plugins/check_by_ssh.c:451 | ||
173 | msgid "short name of host in the monitoring configuration [optional]" | 123 | msgid "short name of host in the monitoring configuration [optional]" |
174 | msgstr "" | 124 | msgstr "" |
175 | 125 | ||
176 | #: plugins/check_by_ssh.c:453 | ||
177 | msgid "Call ssh with '-o OPTION' (may be used multiple times) [optional]" | 126 | msgid "Call ssh with '-o OPTION' (may be used multiple times) [optional]" |
178 | msgstr "" | 127 | msgstr "" |
179 | 128 | ||
180 | #: plugins/check_by_ssh.c:455 | ||
181 | msgid "Tell ssh to use this configfile [optional]" | 129 | msgid "Tell ssh to use this configfile [optional]" |
182 | msgstr "" | 130 | msgstr "" |
183 | 131 | ||
184 | #: plugins/check_by_ssh.c:457 | ||
185 | msgid "Tell ssh to suppress warning and diagnostic messages [optional]" | 132 | msgid "Tell ssh to suppress warning and diagnostic messages [optional]" |
186 | msgstr "" | 133 | msgstr "" |
187 | 134 | ||
188 | #: plugins/check_by_ssh.c:461 | ||
189 | msgid "Make connection problems return UNKNOWN instead of CRITICAL" | 135 | msgid "Make connection problems return UNKNOWN instead of CRITICAL" |
190 | msgstr "" | 136 | msgstr "" |
191 | 137 | ||
192 | #: plugins/check_by_ssh.c:464 | ||
193 | msgid "The most common mode of use is to refer to a local identity file with" | 138 | msgid "The most common mode of use is to refer to a local identity file with" |
194 | msgstr "" | 139 | msgstr "" |
195 | 140 | ||
196 | #: plugins/check_by_ssh.c:465 | ||
197 | msgid "the '-i' option. In this mode, the identity pair should have a null" | 141 | msgid "the '-i' option. In this mode, the identity pair should have a null" |
198 | msgstr "" | 142 | msgstr "" |
199 | 143 | ||
200 | #: plugins/check_by_ssh.c:466 | ||
201 | msgid "passphrase and the public key should be listed in the authorized_keys" | 144 | msgid "passphrase and the public key should be listed in the authorized_keys" |
202 | msgstr "" | 145 | msgstr "" |
203 | 146 | ||
204 | #: plugins/check_by_ssh.c:467 | ||
205 | msgid "file of the remote host. Usually the key will be restricted to running" | 147 | msgid "file of the remote host. Usually the key will be restricted to running" |
206 | msgstr "" | 148 | msgstr "" |
207 | 149 | ||
208 | #: plugins/check_by_ssh.c:468 | ||
209 | msgid "only one command on the remote server. If the remote SSH server tracks" | 150 | msgid "only one command on the remote server. If the remote SSH server tracks" |
210 | msgstr "" | 151 | msgstr "" |
211 | 152 | ||
212 | #: plugins/check_by_ssh.c:469 | ||
213 | msgid "invocation arguments, the one remote program may be an agent that can" | 153 | msgid "invocation arguments, the one remote program may be an agent that can" |
214 | msgstr "" | 154 | msgstr "" |
215 | 155 | ||
216 | #: plugins/check_by_ssh.c:470 | ||
217 | msgid "execute additional commands as proxy" | 156 | msgid "execute additional commands as proxy" |
218 | msgstr "" | 157 | msgstr "" |
219 | 158 | ||
220 | #: plugins/check_by_ssh.c:472 | ||
221 | msgid "To use passive mode, provide multiple '-C' options, and provide" | 159 | msgid "To use passive mode, provide multiple '-C' options, and provide" |
222 | msgstr "" | 160 | msgstr "" |
223 | 161 | ||
224 | #: plugins/check_by_ssh.c:473 | ||
225 | msgid "" | 162 | msgid "" |
226 | "all of -O, -s, and -n options (servicelist order must match '-C'options)" | 163 | "all of -O, -s, and -n options (servicelist order must match '-C'options)" |
227 | msgstr "" | 164 | msgstr "" |
228 | 165 | ||
229 | #: plugins/check_by_ssh.c:475 plugins/check_cluster.c:271 | ||
230 | #: plugins/check_dig.c:364 plugins/check_disk.c:1015 plugins/check_http.c:1846 | ||
231 | #: plugins/check_nagios.c:312 plugins/check_ntp.c:879 | ||
232 | #: plugins/check_ntp_peer.c:733 plugins/check_ntp_time.c:642 | ||
233 | #: plugins/check_procs.c:806 plugins/negate.c:249 plugins/urlize.c:179 | ||
234 | msgid "Examples:" | 166 | msgid "Examples:" |
235 | msgstr "" | 167 | msgstr "" |
236 | 168 | ||
237 | #: plugins/check_by_ssh.c:490 plugins/check_cluster.c:284 | ||
238 | #: plugins/check_dig.c:376 plugins/check_disk.c:1032 plugins/check_dns.c:617 | ||
239 | #: plugins/check_dummy.c:122 plugins/check_fping.c:525 plugins/check_game.c:331 | ||
240 | #: plugins/check_hpjd.c:440 plugins/check_http.c:1884 plugins/check_ldap.c:511 | ||
241 | #: plugins/check_load.c:372 plugins/check_mrtg.c:382 plugins/check_mysql.c:587 | ||
242 | #: plugins/check_nagios.c:323 plugins/check_nt.c:797 plugins/check_ntp.c:898 | ||
243 | #: plugins/check_ntp_peer.c:753 plugins/check_ntp_time.c:651 | ||
244 | #: plugins/check_nwstat.c:1685 plugins/check_overcr.c:467 | ||
245 | #: plugins/check_pgsql.c:551 plugins/check_ping.c:617 plugins/check_procs.c:829 | ||
246 | #: plugins/check_radius.c:400 plugins/check_real.c:452 plugins/check_smtp.c:891 | ||
247 | #: plugins/check_snmp.c:1347 plugins/check_ssh.c:325 plugins/check_swap.c:607 | ||
248 | #: plugins/check_tcp.c:710 plugins/check_time.c:371 plugins/check_ups.c:663 | ||
249 | #: plugins/check_users.c:262 plugins/check_ide_smart.c:606 plugins/negate.c:273 | ||
250 | #: plugins/urlize.c:196 plugins-root/check_dhcp.c:1390 | ||
251 | #: plugins-root/check_icmp.c:1633 | ||
252 | msgid "Usage:" | 169 | msgid "Usage:" |
253 | msgstr "" | 170 | msgstr "" |
254 | 171 | ||
255 | #: plugins/check_cluster.c:240 | ||
256 | #, c-format | 172 | #, c-format |
257 | msgid "Host/Service Cluster Plugin for Monitoring" | 173 | msgid "Host/Service Cluster Plugin for Monitoring" |
258 | msgstr "" | 174 | msgstr "" |
259 | 175 | ||
260 | #: plugins/check_cluster.c:246 plugins/check_nt.c:697 | ||
261 | msgid "Options:" | 176 | msgid "Options:" |
262 | msgstr "" | 177 | msgstr "" |
263 | 178 | ||
264 | #: plugins/check_cluster.c:249 | ||
265 | msgid "Check service cluster status" | 179 | msgid "Check service cluster status" |
266 | msgstr "" | 180 | msgstr "" |
267 | 181 | ||
268 | #: plugins/check_cluster.c:251 | ||
269 | msgid "Check host cluster status" | 182 | msgid "Check host cluster status" |
270 | msgstr "" | 183 | msgstr "" |
271 | 184 | ||
272 | #: plugins/check_cluster.c:253 | ||
273 | msgid "Optional prepended text output (i.e. \"Host cluster\")" | 185 | msgid "Optional prepended text output (i.e. \"Host cluster\")" |
274 | msgstr "" | 186 | msgstr "" |
275 | 187 | ||
276 | #: plugins/check_cluster.c:255 plugins/check_cluster.c:258 | ||
277 | msgid "Specifies the range of hosts or services in cluster that must be in a" | 188 | msgid "Specifies the range of hosts or services in cluster that must be in a" |
278 | msgstr "" | 189 | msgstr "" |
279 | 190 | ||
280 | #: plugins/check_cluster.c:256 | ||
281 | msgid "non-OK state in order to return a WARNING status level" | 191 | msgid "non-OK state in order to return a WARNING status level" |
282 | msgstr "" | 192 | msgstr "" |
283 | 193 | ||
284 | #: plugins/check_cluster.c:259 | ||
285 | msgid "non-OK state in order to return a CRITICAL status level" | 194 | msgid "non-OK state in order to return a CRITICAL status level" |
286 | msgstr "" | 195 | msgstr "" |
287 | 196 | ||
288 | #: plugins/check_cluster.c:261 | ||
289 | msgid "The status codes of the hosts or services in the cluster, separated by" | 197 | msgid "The status codes of the hosts or services in the cluster, separated by" |
290 | msgstr "" | 198 | msgstr "" |
291 | 199 | ||
292 | #: plugins/check_cluster.c:262 | ||
293 | msgid "commas" | 200 | msgid "commas" |
294 | msgstr "" | 201 | msgstr "" |
295 | 202 | ||
296 | #: plugins/check_cluster.c:267 plugins/check_game.c:318 | ||
297 | #: plugins/check_http.c:1828 plugins/check_ldap.c:497 plugins/check_mrtg.c:363 | ||
298 | #: plugins/check_mrtgtraf.c:361 plugins/check_mysql.c:576 | ||
299 | #: plugins/check_nt.c:781 plugins/check_ntp.c:875 plugins/check_ntp_peer.c:724 | ||
300 | #: plugins/check_ntp_time.c:633 plugins/check_nwstat.c:1670 | ||
301 | #: plugins/check_overcr.c:456 plugins/check_snmp.c:1318 | ||
302 | #: plugins/check_swap.c:596 plugins/check_ups.c:645 | ||
303 | #: plugins/check_ide_smart.c:580 plugins/negate.c:255 | ||
304 | #: plugins-root/check_icmp.c:1608 | ||
305 | msgid "Notes:" | 203 | msgid "Notes:" |
306 | msgstr "" | 204 | msgstr "" |
307 | 205 | ||
308 | #: plugins/check_cluster.c:273 | ||
309 | msgid "" | 206 | msgid "" |
310 | "Will alert critical if there are 3 or more service data points in a non-OK" | 207 | "Will alert critical if there are 3 or more service data points in a non-OK" |
311 | msgstr "" | 208 | msgstr "" |
312 | 209 | ||
313 | #: plugins/check_cluster.c:274 plugins/check_ups.c:642 | ||
314 | msgid "state." | 210 | msgid "state." |
315 | msgstr "" | 211 | msgstr "" |
316 | 212 | ||
317 | #: plugins/check_dig.c:106 plugins/check_dig.c:108 | ||
318 | #, c-format | 213 | #, c-format |
319 | msgid "Looking for: '%s'\n" | 214 | msgid "Looking for: '%s'\n" |
320 | msgstr "" | 215 | msgstr "" |
321 | 216 | ||
322 | #: plugins/check_dig.c:115 | ||
323 | msgid "dig returned an error status" | 217 | msgid "dig returned an error status" |
324 | msgstr "" | 218 | msgstr "" |
325 | 219 | ||
326 | #: plugins/check_dig.c:140 | ||
327 | msgid "Server not found in ANSWER SECTION" | 220 | msgid "Server not found in ANSWER SECTION" |
328 | msgstr "" | 221 | msgstr "" |
329 | 222 | ||
330 | #: plugins/check_dig.c:150 | ||
331 | msgid "No ANSWER SECTION found" | 223 | msgid "No ANSWER SECTION found" |
332 | msgstr "" | 224 | msgstr "" |
333 | 225 | ||
334 | #: plugins/check_dig.c:177 | ||
335 | msgid "Probably a non-existent host/domain" | 226 | msgid "Probably a non-existent host/domain" |
336 | msgstr "" | 227 | msgstr "" |
337 | 228 | ||
338 | #: plugins/check_dig.c:239 | ||
339 | #, c-format | 229 | #, c-format |
340 | msgid "Port must be a positive integer - %s" | 230 | msgid "Port must be a positive integer - %s" |
341 | msgstr "" | 231 | msgstr "" |
342 | 232 | ||
343 | #: plugins/check_dig.c:250 | ||
344 | #, c-format | 233 | #, c-format |
345 | msgid "Warning interval must be a positive integer - %s" | 234 | msgid "Warning interval must be a positive integer - %s" |
346 | msgstr "" | 235 | msgstr "" |
347 | 236 | ||
348 | #: plugins/check_dig.c:258 | ||
349 | #, c-format | 237 | #, c-format |
350 | msgid "Critical interval must be a positive integer - %s" | 238 | msgid "Critical interval must be a positive integer - %s" |
351 | msgstr "" | 239 | msgstr "" |
352 | 240 | ||
353 | #: plugins/check_dig.c:266 | ||
354 | #, c-format | 241 | #, c-format |
355 | msgid "Timeout interval must be a positive integer - %s" | 242 | msgid "Timeout interval must be a positive integer - %s" |
356 | msgstr "" | 243 | msgstr "" |
357 | 244 | ||
358 | #: plugins/check_dig.c:334 | ||
359 | #, c-format | 245 | #, c-format |
360 | msgid "This plugin tests the DNS service on the specified host using dig" | 246 | msgid "This plugin tests the DNS service on the specified host using dig" |
361 | msgstr "" | 247 | msgstr "" |
362 | 248 | ||
363 | #: plugins/check_dig.c:347 | ||
364 | msgid "Force dig to only use IPv4 query transport" | 249 | msgid "Force dig to only use IPv4 query transport" |
365 | msgstr "" | 250 | msgstr "" |
366 | 251 | ||
367 | #: plugins/check_dig.c:349 | ||
368 | msgid "Force dig to only use IPv6 query transport" | 252 | msgid "Force dig to only use IPv6 query transport" |
369 | msgstr "" | 253 | msgstr "" |
370 | 254 | ||
371 | #: plugins/check_dig.c:351 | ||
372 | msgid "Machine name to lookup" | 255 | msgid "Machine name to lookup" |
373 | msgstr "" | 256 | msgstr "" |
374 | 257 | ||
375 | #: plugins/check_dig.c:353 | ||
376 | msgid "Record type to lookup (default: A)" | 258 | msgid "Record type to lookup (default: A)" |
377 | msgstr "" | 259 | msgstr "" |
378 | 260 | ||
379 | #: plugins/check_dig.c:355 | ||
380 | msgid "" | 261 | msgid "" |
381 | "An address expected to be in the answer section. If not set, uses whatever" | 262 | "An address expected to be in the answer section. If not set, uses whatever" |
382 | msgstr "" | 263 | msgstr "" |
383 | 264 | ||
384 | #: plugins/check_dig.c:356 | ||
385 | msgid "was in -l" | 265 | msgid "was in -l" |
386 | msgstr "" | 266 | msgstr "" |
387 | 267 | ||
388 | #: plugins/check_dig.c:358 | ||
389 | msgid "Pass STRING as argument(s) to dig" | 268 | msgid "Pass STRING as argument(s) to dig" |
390 | msgstr "" | 269 | msgstr "" |
391 | 270 | ||
392 | #: plugins/check_disk.c:241 | ||
393 | #, c-format | 271 | #, c-format |
394 | msgid "DISK %s: %s not found\n" | 272 | msgid "DISK %s: %s not found\n" |
395 | msgstr "" | 273 | msgstr "" |
396 | 274 | ||
397 | #: plugins/check_disk.c:241 plugins/check_disk.c:1050 plugins/check_dns.c:295 | ||
398 | #: plugins/check_dummy.c:74 plugins/check_mysql.c:313 | ||
399 | #: plugins/check_nagios.c:104 plugins/check_nagios.c:168 | ||
400 | #: plugins/check_nagios.c:172 plugins/check_pgsql.c:575 | ||
401 | #: plugins/check_pgsql.c:592 plugins/check_pgsql.c:601 | ||
402 | #: plugins/check_pgsql.c:616 plugins/check_procs.c:374 | ||
403 | #, c-format | 275 | #, c-format |
404 | msgid "CRITICAL" | 276 | msgid "CRITICAL" |
405 | msgstr "" | 277 | msgstr "" |
406 | 278 | ||
407 | #: plugins/check_disk.c:660 | ||
408 | #, c-format | 279 | #, c-format |
409 | msgid "unit type %s not known\n" | 280 | msgid "unit type %s not known\n" |
410 | msgstr "" | 281 | msgstr "" |
411 | 282 | ||
412 | #: plugins/check_disk.c:663 | ||
413 | #, c-format | 283 | #, c-format |
414 | msgid "failed allocating storage for '%s'\n" | 284 | msgid "failed allocating storage for '%s'\n" |
415 | msgstr "" | 285 | msgstr "" |
416 | 286 | ||
417 | #: plugins/check_disk.c:691 plugins/check_disk.c:739 plugins/check_disk.c:747 | ||
418 | #: plugins/check_disk.c:755 plugins/check_disk.c:759 plugins/check_disk.c:804 | ||
419 | #: plugins/check_disk.c:810 plugins/check_disk.c:833 plugins/check_dummy.c:77 | ||
420 | #: plugins/check_dummy.c:80 plugins/check_pgsql.c:617 plugins/check_procs.c:547 | ||
421 | #, c-format | 287 | #, c-format |
422 | msgid "UNKNOWN" | 288 | msgid "UNKNOWN" |
423 | msgstr "" | 289 | msgstr "" |
424 | 290 | ||
425 | #: plugins/check_disk.c:691 | ||
426 | msgid "Must set a threshold value before using -p\n" | 291 | msgid "Must set a threshold value before using -p\n" |
427 | msgstr "" | 292 | msgstr "" |
428 | 293 | ||
429 | #: plugins/check_disk.c:739 | ||
430 | msgid "Must set -E before selecting paths\n" | 294 | msgid "Must set -E before selecting paths\n" |
431 | msgstr "" | 295 | msgstr "" |
432 | 296 | ||
433 | #: plugins/check_disk.c:747 | ||
434 | msgid "Must set group value before selecting paths\n" | 297 | msgid "Must set group value before selecting paths\n" |
435 | msgstr "" | 298 | msgstr "" |
436 | 299 | ||
437 | #: plugins/check_disk.c:755 | ||
438 | msgid "" | 300 | msgid "" |
439 | "Paths need to be selected before using -i/-I. Use -A to select all paths " | 301 | "Paths need to be selected before using -i/-I. Use -A to select all paths " |
440 | "explicitly" | 302 | "explicitly" |
441 | msgstr "" | 303 | msgstr "" |
442 | 304 | ||
443 | #: plugins/check_disk.c:759 plugins/check_disk.c:810 plugins/check_procs.c:547 | ||
444 | msgid "Could not compile regular expression" | 305 | msgid "Could not compile regular expression" |
445 | msgstr "" | 306 | msgstr "" |
446 | 307 | ||
447 | #: plugins/check_disk.c:804 | ||
448 | msgid "Must set a threshold value before using -r/-R\n" | 308 | msgid "Must set a threshold value before using -r/-R\n" |
449 | msgstr "" | 309 | msgstr "" |
450 | 310 | ||
451 | #: plugins/check_disk.c:834 | ||
452 | msgid "Regular expression did not match any path or disk" | 311 | msgid "Regular expression did not match any path or disk" |
453 | msgstr "" | 312 | msgstr "" |
454 | 313 | ||
455 | #: plugins/check_disk.c:880 | ||
456 | msgid "Unknown argument" | 314 | msgid "Unknown argument" |
457 | msgstr "" | 315 | msgstr "" |
458 | 316 | ||
459 | #: plugins/check_disk.c:914 | ||
460 | #, c-format | 317 | #, c-format |
461 | msgid " for %s\n" | 318 | msgid " for %s\n" |
462 | msgstr "" | 319 | msgstr "" |
463 | 320 | ||
464 | #: plugins/check_disk.c:943 | ||
465 | msgid "" | 321 | msgid "" |
466 | "This plugin checks the amount of used disk space on a mounted file system" | 322 | "This plugin checks the amount of used disk space on a mounted file system" |
467 | msgstr "" | 323 | msgstr "" |
468 | 324 | ||
469 | #: plugins/check_disk.c:944 | ||
470 | msgid "" | 325 | msgid "" |
471 | "and generates an alert if free space is less than one of the threshold values" | 326 | "and generates an alert if free space is less than one of the threshold values" |
472 | msgstr "" | 327 | msgstr "" |
473 | 328 | ||
474 | #: plugins/check_disk.c:954 | ||
475 | msgid "Exit with WARNING status if less than INTEGER units of disk are free" | 329 | msgid "Exit with WARNING status if less than INTEGER units of disk are free" |
476 | msgstr "" | 330 | msgstr "" |
477 | 331 | ||
478 | #: plugins/check_disk.c:956 | ||
479 | msgid "Exit with WARNING status if less than PERCENT of disk space is free" | 332 | msgid "Exit with WARNING status if less than PERCENT of disk space is free" |
480 | msgstr "" | 333 | msgstr "" |
481 | 334 | ||
482 | #: plugins/check_disk.c:958 | ||
483 | msgid "Exit with CRITICAL status if less than INTEGER units of disk are free" | 335 | msgid "Exit with CRITICAL status if less than INTEGER units of disk are free" |
484 | msgstr "" | 336 | msgstr "" |
485 | 337 | ||
486 | #: plugins/check_disk.c:960 | ||
487 | msgid "Exit with CRITICAL status if less than PERCENT of disk space is free" | 338 | msgid "Exit with CRITICAL status if less than PERCENT of disk space is free" |
488 | msgstr "" | 339 | msgstr "" |
489 | 340 | ||
490 | #: plugins/check_disk.c:962 | ||
491 | msgid "Exit with WARNING status if less than PERCENT of inode space is free" | 341 | msgid "Exit with WARNING status if less than PERCENT of inode space is free" |
492 | msgstr "" | 342 | msgstr "" |
493 | 343 | ||
494 | #: plugins/check_disk.c:964 | ||
495 | msgid "Exit with CRITICAL status if less than PERCENT of inode space is free" | 344 | msgid "Exit with CRITICAL status if less than PERCENT of inode space is free" |
496 | msgstr "" | 345 | msgstr "" |
497 | 346 | ||
498 | #: plugins/check_disk.c:966 | ||
499 | msgid "" | 347 | msgid "" |
500 | "Mount point or block device as emitted by the mount(8) command (may be " | 348 | "Mount point or block device as emitted by the mount(8) command (may be " |
501 | "repeated)" | 349 | "repeated)" |
502 | msgstr "" | 350 | msgstr "" |
503 | 351 | ||
504 | #: plugins/check_disk.c:968 | ||
505 | msgid "Ignore device (only works if -p unspecified)" | 352 | msgid "Ignore device (only works if -p unspecified)" |
506 | msgstr "" | 353 | msgstr "" |
507 | 354 | ||
508 | #: plugins/check_disk.c:970 | ||
509 | msgid "Clear thresholds" | 355 | msgid "Clear thresholds" |
510 | msgstr "" | 356 | msgstr "" |
511 | 357 | ||
512 | #: plugins/check_disk.c:972 | ||
513 | msgid "For paths or partitions specified with -p, only check for exact paths" | 358 | msgid "For paths or partitions specified with -p, only check for exact paths" |
514 | msgstr "" | 359 | msgstr "" |
515 | 360 | ||
516 | #: plugins/check_disk.c:974 | ||
517 | msgid "Display only devices/mountpoints with errors" | 361 | msgid "Display only devices/mountpoints with errors" |
518 | msgstr "" | 362 | msgstr "" |
519 | 363 | ||
520 | #: plugins/check_disk.c:976 | ||
521 | msgid "Don't account root-reserved blocks into freespace in perfdata" | 364 | msgid "Don't account root-reserved blocks into freespace in perfdata" |
522 | msgstr "" | 365 | msgstr "" |
523 | 366 | ||
524 | #: plugins/check_disk.c:978 | ||
525 | msgid "Display inode usage in perfdata" | 367 | msgid "Display inode usage in perfdata" |
526 | msgstr "" | 368 | msgstr "" |
527 | 369 | ||
528 | #: plugins/check_disk.c:980 | ||
529 | msgid "" | 370 | msgid "" |
530 | "Group paths. Thresholds apply to (free-)space of all partitions together" | 371 | "Group paths. Thresholds apply to (free-)space of all partitions together" |
531 | msgstr "" | 372 | msgstr "" |
532 | 373 | ||
533 | #: plugins/check_disk.c:982 | ||
534 | msgid "Same as '--units kB'" | 374 | msgid "Same as '--units kB'" |
535 | msgstr "" | 375 | msgstr "" |
536 | 376 | ||
537 | #: plugins/check_disk.c:984 | ||
538 | msgid "Only check local filesystems" | 377 | msgid "Only check local filesystems" |
539 | msgstr "" | 378 | msgstr "" |
540 | 379 | ||
541 | #: plugins/check_disk.c:986 | ||
542 | msgid "" | 380 | msgid "" |
543 | "Only check local filesystems against thresholds. Yet call stat on remote " | 381 | "Only check local filesystems against thresholds. Yet call stat on remote " |
544 | "filesystems" | 382 | "filesystems" |
545 | msgstr "" | 383 | msgstr "" |
546 | 384 | ||
547 | #: plugins/check_disk.c:987 | ||
548 | msgid "to test if they are accessible (e.g. to detect Stale NFS Handles)" | 385 | msgid "to test if they are accessible (e.g. to detect Stale NFS Handles)" |
549 | msgstr "" | 386 | msgstr "" |
550 | 387 | ||
551 | #: plugins/check_disk.c:989 | ||
552 | msgid "Display the (block) device instead of the mount point" | 388 | msgid "Display the (block) device instead of the mount point" |
553 | msgstr "" | 389 | msgstr "" |
554 | 390 | ||
555 | #: plugins/check_disk.c:991 | ||
556 | msgid "Same as '--units MB'" | 391 | msgid "Same as '--units MB'" |
557 | msgstr "" | 392 | msgstr "" |
558 | 393 | ||
559 | #: plugins/check_disk.c:993 | ||
560 | msgid "Explicitly select all paths. This is equivalent to -R '.*'" | 394 | msgid "Explicitly select all paths. This is equivalent to -R '.*'" |
561 | msgstr "" | 395 | msgstr "" |
562 | 396 | ||
563 | #: plugins/check_disk.c:995 | ||
564 | msgid "" | 397 | msgid "" |
565 | "Case insensitive regular expression for path/partition (may be repeated)" | 398 | "Case insensitive regular expression for path/partition (may be repeated)" |
566 | msgstr "" | 399 | msgstr "" |
567 | 400 | ||
568 | #: plugins/check_disk.c:997 | ||
569 | msgid "Regular expression for path or partition (may be repeated)" | 401 | msgid "Regular expression for path or partition (may be repeated)" |
570 | msgstr "" | 402 | msgstr "" |
571 | 403 | ||
572 | #: plugins/check_disk.c:999 | ||
573 | msgid "" | 404 | msgid "" |
574 | "Regular expression to ignore selected path/partition (case insensitive) (may " | 405 | "Regular expression to ignore selected path/partition (case insensitive) (may " |
575 | "be repeated)" | 406 | "be repeated)" |
576 | msgstr "" | 407 | msgstr "" |
577 | 408 | ||
578 | #: plugins/check_disk.c:1001 | ||
579 | msgid "" | 409 | msgid "" |
580 | "Regular expression to ignore selected path or partition (may be repeated)" | 410 | "Regular expression to ignore selected path or partition (may be repeated)" |
581 | msgstr "" | 411 | msgstr "" |
582 | 412 | ||
583 | #: plugins/check_disk.c:1003 | ||
584 | msgid "" | 413 | msgid "" |
585 | "Return OK if no filesystem matches, filesystem does not exist or is " | 414 | "Return OK if no filesystem matches, filesystem does not exist or is " |
586 | "inaccessible." | 415 | "inaccessible." |
587 | msgstr "" | 416 | msgstr "" |
588 | 417 | ||
589 | #: plugins/check_disk.c:1004 | ||
590 | msgid "(Provide this option before -p / -r / --ereg-path if used)" | 418 | msgid "(Provide this option before -p / -r / --ereg-path if used)" |
591 | msgstr "" | 419 | msgstr "" |
592 | 420 | ||
593 | #: plugins/check_disk.c:1007 | ||
594 | msgid "Choose bytes, kB, MB, GB, TB (default: MB)" | 421 | msgid "Choose bytes, kB, MB, GB, TB (default: MB)" |
595 | msgstr "" | 422 | msgstr "" |
596 | 423 | ||
597 | #: plugins/check_disk.c:1010 | ||
598 | msgid "Ignore all filesystems of indicated type (may be repeated)" | 424 | msgid "Ignore all filesystems of indicated type (may be repeated)" |
599 | msgstr "" | 425 | msgstr "" |
600 | 426 | ||
601 | #: plugins/check_disk.c:1012 | ||
602 | msgid "Check only filesystems of indicated type (may be repeated)" | 427 | msgid "Check only filesystems of indicated type (may be repeated)" |
603 | msgstr "" | 428 | msgstr "" |
604 | 429 | ||
605 | #: plugins/check_disk.c:1017 | ||
606 | msgid "Checks /tmp and /var at 10% and 5%, and / at 100MB and 50MB" | 430 | msgid "Checks /tmp and /var at 10% and 5%, and / at 100MB and 50MB" |
607 | msgstr "" | 431 | msgstr "" |
608 | 432 | ||
609 | #: plugins/check_disk.c:1019 | ||
610 | msgid "" | 433 | msgid "" |
611 | "Checks all filesystems not matching -r at 100M and 50M. The fs matching the -" | 434 | "Checks all filesystems not matching -r at 100M and 50M. The fs matching the -" |
612 | "r regex" | 435 | "r regex" |
613 | msgstr "" | 436 | msgstr "" |
614 | 437 | ||
615 | #: plugins/check_disk.c:1020 | ||
616 | msgid "" | 438 | msgid "" |
617 | "are grouped which means the freespace thresholds are applied to all disks " | 439 | "are grouped which means the freespace thresholds are applied to all disks " |
618 | "together" | 440 | "together" |
619 | msgstr "" | 441 | msgstr "" |
620 | 442 | ||
621 | #: plugins/check_disk.c:1022 | ||
622 | msgid "" | 443 | msgid "" |
623 | "Checks /foo for 1000M/500M and /bar for 5/3%. All remaining volumes use " | 444 | "Checks /foo for 1000M/500M and /bar for 5/3%. All remaining volumes use " |
624 | "100M/50M" | 445 | "100M/50M" |
625 | msgstr "" | 446 | msgstr "" |
626 | 447 | ||
627 | #: plugins/check_disk.c:1051 | ||
628 | #, c-format | 448 | #, c-format |
629 | msgid "%s %s: %s\n" | 449 | msgid "%s %s: %s\n" |
630 | msgstr "" | 450 | msgstr "" |
631 | 451 | ||
632 | #: plugins/check_disk.c:1051 | ||
633 | msgid "is not accessible" | 452 | msgid "is not accessible" |
634 | msgstr "" | 453 | msgstr "" |
635 | 454 | ||
636 | #: plugins/check_dns.c:120 | ||
637 | msgid "nslookup returned an error status" | 455 | msgid "nslookup returned an error status" |
638 | msgstr "" | 456 | msgstr "" |
639 | 457 | ||
640 | #: plugins/check_dns.c:138 | ||
641 | msgid "Warning plugin error" | 458 | msgid "Warning plugin error" |
642 | msgstr "" | 459 | msgstr "" |
643 | 460 | ||
644 | #: plugins/check_dns.c:156 | ||
645 | #, c-format | 461 | #, c-format |
646 | msgid "DNS CRITICAL - '%s' returned empty server string\n" | 462 | msgid "DNS CRITICAL - '%s' returned empty server string\n" |
647 | msgstr "" | 463 | msgstr "" |
648 | 464 | ||
649 | #: plugins/check_dns.c:161 | ||
650 | #, c-format | 465 | #, c-format |
651 | msgid "DNS CRITICAL - No response from DNS %s\n" | 466 | msgid "DNS CRITICAL - No response from DNS %s\n" |
652 | msgstr "" | 467 | msgstr "" |
653 | 468 | ||
654 | #: plugins/check_dns.c:180 | ||
655 | #, c-format | 469 | #, c-format |
656 | msgid "DNS CRITICAL - '%s' returned empty host name string\n" | 470 | msgid "DNS CRITICAL - '%s' returned empty host name string\n" |
657 | msgstr "" | 471 | msgstr "" |
658 | 472 | ||
659 | #: plugins/check_dns.c:186 | ||
660 | msgid "Non-authoritative answer:" | 473 | msgid "Non-authoritative answer:" |
661 | msgstr "" | 474 | msgstr "" |
662 | 475 | ||
663 | #: plugins/check_dns.c:215 | ||
664 | #, c-format | 476 | #, c-format |
665 | msgid "Domain '%s' was not found by the server\n" | 477 | msgid "Domain '%s' was not found by the server\n" |
666 | msgstr "" | 478 | msgstr "" |
667 | 479 | ||
668 | #: plugins/check_dns.c:234 | ||
669 | #, c-format | 480 | #, c-format |
670 | msgid "DNS CRITICAL - '%s' msg parsing exited with no address\n" | 481 | msgid "DNS CRITICAL - '%s' msg parsing exited with no address\n" |
671 | msgstr "" | 482 | msgstr "" |
672 | 483 | ||
673 | #: plugins/check_dns.c:265 | ||
674 | #, c-format | 484 | #, c-format |
675 | msgid "expected '%s' but got '%s'" | 485 | msgid "expected '%s' but got '%s'" |
676 | msgstr "" | 486 | msgstr "" |
677 | 487 | ||
678 | #: plugins/check_dns.c:272 | ||
679 | #, c-format | 488 | #, c-format |
680 | msgid "Domain '%s' was found by the server: '%s'\n" | 489 | msgid "Domain '%s' was found by the server: '%s'\n" |
681 | msgstr "" | 490 | msgstr "" |
682 | 491 | ||
683 | #: plugins/check_dns.c:282 | ||
684 | #, c-format | 492 | #, c-format |
685 | msgid "server %s is not authoritative for %s" | 493 | msgid "server %s is not authoritative for %s" |
686 | msgstr "" | 494 | msgstr "" |
687 | 495 | ||
688 | #: plugins/check_dns.c:291 plugins/check_dummy.c:68 plugins/check_nagios.c:182 | ||
689 | #: plugins/check_pgsql.c:612 plugins/check_procs.c:367 | ||
690 | #, c-format | 496 | #, c-format |
691 | msgid "OK" | 497 | msgid "OK" |
692 | msgstr "" | 498 | msgstr "" |
693 | 499 | ||
694 | #: plugins/check_dns.c:293 plugins/check_dummy.c:71 plugins/check_mysql.c:310 | ||
695 | #: plugins/check_nagios.c:182 plugins/check_pgsql.c:581 | ||
696 | #: plugins/check_pgsql.c:586 plugins/check_pgsql.c:614 | ||
697 | #: plugins/check_procs.c:369 | ||
698 | #, c-format | 500 | #, c-format |
699 | msgid "WARNING" | 501 | msgid "WARNING" |
700 | msgstr "" | 502 | msgstr "" |
701 | 503 | ||
702 | #: plugins/check_dns.c:297 | ||
703 | #, c-format | 504 | #, c-format |
704 | msgid "%.3f second response time" | 505 | msgid "%.3f second response time" |
705 | msgid_plural "%.3f seconds response time" | 506 | msgid_plural "%.3f seconds response time" |
706 | msgstr[0] "" | 507 | msgstr[0] "" |
707 | msgstr[1] "" | 508 | msgstr[1] "" |
708 | 509 | ||
709 | #: plugins/check_dns.c:298 | ||
710 | #, c-format | 510 | #, c-format |
711 | msgid ". %s returns %s" | 511 | msgid ". %s returns %s" |
712 | msgstr "" | 512 | msgstr "" |
713 | 513 | ||
714 | #: plugins/check_dns.c:318 | ||
715 | #, c-format | 514 | #, c-format |
716 | msgid "DNS WARNING - %s\n" | 515 | msgid "DNS WARNING - %s\n" |
717 | msgstr "" | 516 | msgstr "" |
718 | 517 | ||
719 | #: plugins/check_dns.c:319 plugins/check_dns.c:322 plugins/check_dns.c:325 | ||
720 | msgid " Probably a non-existent host/domain" | 518 | msgid " Probably a non-existent host/domain" |
721 | msgstr "" | 519 | msgstr "" |
722 | 520 | ||
723 | #: plugins/check_dns.c:321 | ||
724 | #, c-format | 521 | #, c-format |
725 | msgid "DNS CRITICAL - %s\n" | 522 | msgid "DNS CRITICAL - %s\n" |
726 | msgstr "" | 523 | msgstr "" |
727 | 524 | ||
728 | #: plugins/check_dns.c:324 | ||
729 | #, c-format | 525 | #, c-format |
730 | msgid "DNS UNKNOWN - %s\n" | 526 | msgid "DNS UNKNOWN - %s\n" |
731 | msgstr "" | 527 | msgstr "" |
732 | 528 | ||
733 | #: plugins/check_dns.c:368 | ||
734 | msgid "Note: nslookup is deprecated and may be removed from future releases." | 529 | msgid "Note: nslookup is deprecated and may be removed from future releases." |
735 | msgstr "" | 530 | msgstr "" |
736 | 531 | ||
737 | #: plugins/check_dns.c:369 | ||
738 | msgid "Consider using the `dig' or `host' programs instead. Run nslookup with" | 532 | msgid "Consider using the `dig' or `host' programs instead. Run nslookup with" |
739 | msgstr "" | 533 | msgstr "" |
740 | 534 | ||
741 | #: plugins/check_dns.c:370 | ||
742 | msgid "the `-sil[ent]' option to prevent this message from appearing." | 535 | msgid "the `-sil[ent]' option to prevent this message from appearing." |
743 | msgstr "" | 536 | msgstr "" |
744 | 537 | ||
745 | #: plugins/check_dns.c:375 plugins/check_dns.c:377 | ||
746 | #, c-format | 538 | #, c-format |
747 | msgid "No response from DNS %s\n" | 539 | msgid "No response from DNS %s\n" |
748 | msgstr "" | 540 | msgstr "" |
749 | 541 | ||
750 | #: plugins/check_dns.c:381 | ||
751 | #, c-format | 542 | #, c-format |
752 | msgid "DNS %s has no records\n" | 543 | msgid "DNS %s has no records\n" |
753 | msgstr "" | 544 | msgstr "" |
754 | 545 | ||
755 | #: plugins/check_dns.c:389 | ||
756 | #, c-format | 546 | #, c-format |
757 | msgid "Connection to DNS %s was refused\n" | 547 | msgid "Connection to DNS %s was refused\n" |
758 | msgstr "" | 548 | msgstr "" |
759 | 549 | ||
760 | #: plugins/check_dns.c:393 | ||
761 | #, c-format | 550 | #, c-format |
762 | msgid "Query was refused by DNS server at %s\n" | 551 | msgid "Query was refused by DNS server at %s\n" |
763 | msgstr "" | 552 | msgstr "" |
764 | 553 | ||
765 | #: plugins/check_dns.c:397 | ||
766 | #, c-format | 554 | #, c-format |
767 | msgid "No information returned by DNS server at %s\n" | 555 | msgid "No information returned by DNS server at %s\n" |
768 | msgstr "" | 556 | msgstr "" |
769 | 557 | ||
770 | #: plugins/check_dns.c:401 | ||
771 | msgid "Network is unreachable\n" | 558 | msgid "Network is unreachable\n" |
772 | msgstr "" | 559 | msgstr "" |
773 | 560 | ||
774 | #: plugins/check_dns.c:405 | ||
775 | #, c-format | 561 | #, c-format |
776 | msgid "DNS failure for %s\n" | 562 | msgid "DNS failure for %s\n" |
777 | msgstr "" | 563 | msgstr "" |
778 | 564 | ||
779 | #: plugins/check_dns.c:471 plugins/check_dns.c:479 plugins/check_dns.c:486 | ||
780 | #: plugins/check_dns.c:491 plugins/check_dns.c:533 plugins/check_dns.c:541 | ||
781 | #: plugins/check_game.c:211 plugins/check_game.c:219 | ||
782 | msgid "Input buffer overflow\n" | 565 | msgid "Input buffer overflow\n" |
783 | msgstr "" | 566 | msgstr "" |
784 | 567 | ||
785 | #: plugins/check_dns.c:576 | ||
786 | msgid "" | 568 | msgid "" |
787 | "This plugin uses the nslookup program to obtain the IP address for the given " | 569 | "This plugin uses the nslookup program to obtain the IP address for the given " |
788 | "host/domain query." | 570 | "host/domain query." |
789 | msgstr "" | 571 | msgstr "" |
790 | 572 | ||
791 | #: plugins/check_dns.c:577 | ||
792 | msgid "An optional DNS server to use may be specified." | 573 | msgid "An optional DNS server to use may be specified." |
793 | msgstr "" | 574 | msgstr "" |
794 | 575 | ||
795 | #: plugins/check_dns.c:578 | ||
796 | msgid "" | 576 | msgid "" |
797 | "If no DNS server is specified, the default server(s) specified in /etc/" | 577 | "If no DNS server is specified, the default server(s) specified in /etc/" |
798 | "resolv.conf will be used." | 578 | "resolv.conf will be used." |
799 | msgstr "" | 579 | msgstr "" |
800 | 580 | ||
801 | #: plugins/check_dns.c:588 | ||
802 | msgid "The name or address you want to query" | 581 | msgid "The name or address you want to query" |
803 | msgstr "" | 582 | msgstr "" |
804 | 583 | ||
805 | #: plugins/check_dns.c:590 | ||
806 | msgid "Optional DNS server you want to use for the lookup" | 584 | msgid "Optional DNS server you want to use for the lookup" |
807 | msgstr "" | 585 | msgstr "" |
808 | 586 | ||
809 | #: plugins/check_dns.c:592 | ||
810 | msgid "" | 587 | msgid "" |
811 | "Optional IP-ADDRESS/CIDR you expect the DNS server to return. HOST must end" | 588 | "Optional IP-ADDRESS/CIDR you expect the DNS server to return. HOST must end" |
812 | msgstr "" | 589 | msgstr "" |
813 | 590 | ||
814 | #: plugins/check_dns.c:593 | ||
815 | msgid "" | 591 | msgid "" |
816 | "with a dot (.). This option can be repeated multiple times (Returns OK if any" | 592 | "with a dot (.). This option can be repeated multiple times (Returns OK if any" |
817 | msgstr "" | 593 | msgstr "" |
818 | 594 | ||
819 | #: plugins/check_dns.c:594 | ||
820 | msgid "value matches)." | 595 | msgid "value matches)." |
821 | msgstr "" | 596 | msgstr "" |
822 | 597 | ||
823 | #: plugins/check_dns.c:596 | ||
824 | msgid "" | 598 | msgid "" |
825 | "Expect the DNS server to return NXDOMAIN (i.e. the domain was not found)" | 599 | "Expect the DNS server to return NXDOMAIN (i.e. the domain was not found)" |
826 | msgstr "" | 600 | msgstr "" |
827 | 601 | ||
828 | #: plugins/check_dns.c:597 | ||
829 | msgid "Cannot be used together with -a" | 602 | msgid "Cannot be used together with -a" |
830 | msgstr "" | 603 | msgstr "" |
831 | 604 | ||
832 | #: plugins/check_dns.c:599 | ||
833 | msgid "Optionally expect the DNS server to be authoritative for the lookup" | 605 | msgid "Optionally expect the DNS server to be authoritative for the lookup" |
834 | msgstr "" | 606 | msgstr "" |
835 | 607 | ||
836 | #: plugins/check_dns.c:601 | ||
837 | msgid "Return warning if elapsed time exceeds value. Default off" | 608 | msgid "Return warning if elapsed time exceeds value. Default off" |
838 | msgstr "" | 609 | msgstr "" |
839 | 610 | ||
840 | #: plugins/check_dns.c:603 | ||
841 | msgid "Return critical if elapsed time exceeds value. Default off" | 611 | msgid "Return critical if elapsed time exceeds value. Default off" |
842 | msgstr "" | 612 | msgstr "" |
843 | 613 | ||
844 | #: plugins/check_dns.c:605 | ||
845 | msgid "" | 614 | msgid "" |
846 | "Return critical if the list of expected addresses does not match all " | 615 | "Return critical if the list of expected addresses does not match all " |
847 | "addresses" | 616 | "addresses" |
848 | msgstr "" | 617 | msgstr "" |
849 | 618 | ||
850 | #: plugins/check_dns.c:606 | ||
851 | msgid "returned. Default off" | 619 | msgid "returned. Default off" |
852 | msgstr "" | 620 | msgstr "" |
853 | 621 | ||
854 | #: plugins/check_dummy.c:62 | ||
855 | msgid "Arguments to check_dummy must be an integer" | 622 | msgid "Arguments to check_dummy must be an integer" |
856 | msgstr "" | 623 | msgstr "" |
857 | 624 | ||
858 | #: plugins/check_dummy.c:82 | ||
859 | #, c-format | 625 | #, c-format |
860 | msgid "Status %d is not a supported error state\n" | 626 | msgid "Status %d is not a supported error state\n" |
861 | msgstr "" | 627 | msgstr "" |
862 | 628 | ||
863 | #: plugins/check_dummy.c:104 | ||
864 | msgid "" | 629 | msgid "" |
865 | "This plugin will simply return the state corresponding to the numeric value" | 630 | "This plugin will simply return the state corresponding to the numeric value" |
866 | msgstr "" | 631 | msgstr "" |
867 | 632 | ||
868 | #: plugins/check_dummy.c:106 | ||
869 | msgid "of the <state> argument with optional text" | 633 | msgid "of the <state> argument with optional text" |
870 | msgstr "" | 634 | msgstr "" |
871 | 635 | ||
872 | #: plugins/check_fping.c:127 plugins/check_hpjd.c:134 plugins/check_ping.c:444 | ||
873 | #: plugins/check_swap.c:193 plugins/check_users.c:130 plugins/urlize.c:109 | ||
874 | #, c-format | 636 | #, c-format |
875 | msgid "Could not open pipe: %s\n" | 637 | msgid "Could not open pipe: %s\n" |
876 | msgstr "" | 638 | msgstr "" |
877 | 639 | ||
878 | #: plugins/check_fping.c:133 plugins/check_hpjd.c:140 plugins/check_load.c:159 | ||
879 | #: plugins/check_swap.c:199 plugins/check_users.c:136 plugins/urlize.c:115 | ||
880 | #, c-format | 640 | #, c-format |
881 | msgid "Could not open stderr for %s\n" | 641 | msgid "Could not open stderr for %s\n" |
882 | msgstr "" | 642 | msgstr "" |
883 | 643 | ||
884 | #: plugins/check_fping.c:161 | ||
885 | msgid "FPING UNKNOWN - IP address not found\n" | 644 | msgid "FPING UNKNOWN - IP address not found\n" |
886 | msgstr "" | 645 | msgstr "" |
887 | 646 | ||
888 | #: plugins/check_fping.c:164 | ||
889 | msgid "FPING UNKNOWN - invalid commandline argument\n" | 647 | msgid "FPING UNKNOWN - invalid commandline argument\n" |
890 | msgstr "" | 648 | msgstr "" |
891 | 649 | ||
892 | #: plugins/check_fping.c:167 | ||
893 | msgid "FPING UNKNOWN - failed system call\n" | 650 | msgid "FPING UNKNOWN - failed system call\n" |
894 | msgstr "" | 651 | msgstr "" |
895 | 652 | ||
896 | #: plugins/check_fping.c:194 | ||
897 | #, c-format | 653 | #, c-format |
898 | msgid "FPING %s - %s (rta=%f ms)|%s\n" | 654 | msgid "FPING %s - %s (rta=%f ms)|%s\n" |
899 | msgstr "" | 655 | msgstr "" |
900 | 656 | ||
901 | #: plugins/check_fping.c:202 | ||
902 | #, c-format | 657 | #, c-format |
903 | msgid "FPING UNKNOWN - %s not found\n" | 658 | msgid "FPING UNKNOWN - %s not found\n" |
904 | msgstr "" | 659 | msgstr "" |
905 | 660 | ||
906 | #: plugins/check_fping.c:206 | ||
907 | #, c-format | 661 | #, c-format |
908 | msgid "FPING CRITICAL - %s is unreachable\n" | 662 | msgid "FPING CRITICAL - %s is unreachable\n" |
909 | msgstr "" | 663 | msgstr "" |
910 | 664 | ||
911 | #: plugins/check_fping.c:211 | ||
912 | #, c-format | 665 | #, c-format |
913 | msgid "FPING UNKNOWN - %s parameter error\n" | 666 | msgid "FPING UNKNOWN - %s parameter error\n" |
914 | msgstr "" | 667 | msgstr "" |
915 | 668 | ||
916 | #: plugins/check_fping.c:215 plugins/check_fping.c:255 | ||
917 | #, c-format | 669 | #, c-format |
918 | msgid "FPING CRITICAL - %s is down\n" | 670 | msgid "FPING CRITICAL - %s is down\n" |
919 | msgstr "" | 671 | msgstr "" |
920 | 672 | ||
921 | #: plugins/check_fping.c:242 | ||
922 | #, c-format | 673 | #, c-format |
923 | msgid "FPING %s - %s (loss=%.0f%%, rta=%f ms)|%s %s\n" | 674 | msgid "FPING %s - %s (loss=%.0f%%, rta=%f ms)|%s %s\n" |
924 | msgstr "" | 675 | msgstr "" |
925 | 676 | ||
926 | #: plugins/check_fping.c:268 | ||
927 | #, c-format | 677 | #, c-format |
928 | msgid "FPING %s - %s (loss=%.0f%% )|%s\n" | 678 | msgid "FPING %s - %s (loss=%.0f%% )|%s\n" |
929 | msgstr "" | 679 | msgstr "" |
930 | 680 | ||
931 | #: plugins/check_fping.c:345 plugins/check_fping.c:351 plugins/check_hpjd.c:345 | ||
932 | #: plugins/check_hpjd.c:377 plugins/check_mysql.c:389 plugins/check_mysql.c:476 | ||
933 | #: plugins/check_ntp.c:719 plugins/check_ntp_peer.c:497 | ||
934 | #: plugins/check_ntp_time.c:498 plugins/check_pgsql.c:338 | ||
935 | #: plugins/check_ping.c:301 plugins/check_ping.c:424 plugins/check_radius.c:279 | ||
936 | #: plugins/check_real.c:315 plugins/check_real.c:377 plugins/check_smtp.c:525 | ||
937 | #: plugins/check_smtp.c:681 plugins/check_ssh.c:162 plugins/check_time.c:240 | ||
938 | #: plugins/check_time.c:315 plugins/check_ups.c:507 plugins/check_ups.c:576 | ||
939 | msgid "Invalid hostname/address" | 681 | msgid "Invalid hostname/address" |
940 | msgstr "" | 682 | msgstr "" |
941 | 683 | ||
942 | #: plugins/check_fping.c:365 plugins/check_ldap.c:400 plugins/check_ping.c:252 | ||
943 | #: plugins-root/check_icmp.c:474 | ||
944 | msgid "IPv6 support not available\n" | 684 | msgid "IPv6 support not available\n" |
945 | msgstr "" | 685 | msgstr "" |
946 | 686 | ||
947 | #: plugins/check_fping.c:398 | ||
948 | msgid "Packet size must be a positive integer" | 687 | msgid "Packet size must be a positive integer" |
949 | msgstr "" | 688 | msgstr "" |
950 | 689 | ||
951 | #: plugins/check_fping.c:404 | ||
952 | msgid "Packet count must be a positive integer" | 690 | msgid "Packet count must be a positive integer" |
953 | msgstr "" | 691 | msgstr "" |
954 | 692 | ||
955 | #: plugins/check_fping.c:410 | ||
956 | msgid "Target timeout must be a positive integer" | 693 | msgid "Target timeout must be a positive integer" |
957 | msgstr "" | 694 | msgstr "" |
958 | 695 | ||
959 | #: plugins/check_fping.c:416 | ||
960 | msgid "Interval must be a positive integer" | 696 | msgid "Interval must be a positive integer" |
961 | msgstr "" | 697 | msgstr "" |
962 | 698 | ||
963 | #: plugins/check_fping.c:422 plugins/check_ntp.c:743 | ||
964 | #: plugins/check_ntp_peer.c:524 plugins/check_ntp_time.c:528 | ||
965 | #: plugins/check_radius.c:329 plugins/check_time.c:319 | ||
966 | msgid "Hostname was not supplied" | 699 | msgid "Hostname was not supplied" |
967 | msgstr "" | 700 | msgstr "" |
968 | 701 | ||
969 | #: plugins/check_fping.c:442 | ||
970 | #, c-format | 702 | #, c-format |
971 | msgid "%s: Only one threshold may be packet loss (%s)\n" | 703 | msgid "%s: Only one threshold may be packet loss (%s)\n" |
972 | msgstr "" | 704 | msgstr "" |
973 | 705 | ||
974 | #: plugins/check_fping.c:446 | ||
975 | #, c-format | 706 | #, c-format |
976 | msgid "%s: Only one threshold must be packet loss (%s)\n" | 707 | msgid "%s: Only one threshold must be packet loss (%s)\n" |
977 | msgstr "" | 708 | msgstr "" |
978 | 709 | ||
979 | #: plugins/check_fping.c:476 | ||
980 | msgid "" | 710 | msgid "" |
981 | "This plugin will use the fping command to ping the specified host for a fast " | 711 | "This plugin will use the fping command to ping the specified host for a fast " |
982 | "check" | 712 | "check" |
983 | msgstr "" | 713 | msgstr "" |
984 | 714 | ||
985 | #: plugins/check_fping.c:478 | ||
986 | msgid "Note that it is necessary to set the suid flag on fping." | 715 | msgid "Note that it is necessary to set the suid flag on fping." |
987 | msgstr "" | 716 | msgstr "" |
988 | 717 | ||
989 | #: plugins/check_fping.c:490 | ||
990 | msgid "" | 718 | msgid "" |
991 | "name or IP Address of host to ping (IP Address bypasses name lookup, " | 719 | "name or IP Address of host to ping (IP Address bypasses name lookup, " |
992 | "reducing system load)" | 720 | "reducing system load)" |
993 | msgstr "" | 721 | msgstr "" |
994 | 722 | ||
995 | #: plugins/check_fping.c:492 plugins/check_ping.c:589 | ||
996 | msgid "warning threshold pair" | 723 | msgid "warning threshold pair" |
997 | msgstr "" | 724 | msgstr "" |
998 | 725 | ||
999 | #: plugins/check_fping.c:494 plugins/check_ping.c:591 | ||
1000 | msgid "critical threshold pair" | 726 | msgid "critical threshold pair" |
1001 | msgstr "" | 727 | msgstr "" |
1002 | 728 | ||
1003 | #: plugins/check_fping.c:496 | ||
1004 | msgid "Return OK after first successful reply" | 729 | msgid "Return OK after first successful reply" |
1005 | msgstr "" | 730 | msgstr "" |
1006 | 731 | ||
1007 | #: plugins/check_fping.c:498 | ||
1008 | msgid "size of ICMP packet" | 732 | msgid "size of ICMP packet" |
1009 | msgstr "" | 733 | msgstr "" |
1010 | 734 | ||
1011 | #: plugins/check_fping.c:500 | ||
1012 | msgid "number of ICMP packets to send" | 735 | msgid "number of ICMP packets to send" |
1013 | msgstr "" | 736 | msgstr "" |
1014 | 737 | ||
1015 | #: plugins/check_fping.c:502 | ||
1016 | msgid "Target timeout (ms)" | 738 | msgid "Target timeout (ms)" |
1017 | msgstr "" | 739 | msgstr "" |
1018 | 740 | ||
1019 | #: plugins/check_fping.c:504 | ||
1020 | msgid "Interval (ms) between sending packets" | 741 | msgid "Interval (ms) between sending packets" |
1021 | msgstr "" | 742 | msgstr "" |
1022 | 743 | ||
1023 | #: plugins/check_fping.c:506 | ||
1024 | msgid "name or IP Address of sourceip" | 744 | msgid "name or IP Address of sourceip" |
1025 | msgstr "" | 745 | msgstr "" |
1026 | 746 | ||
1027 | #: plugins/check_fping.c:508 | ||
1028 | msgid "source interface name" | 747 | msgid "source interface name" |
1029 | msgstr "" | 748 | msgstr "" |
1030 | 749 | ||
1031 | #: plugins/check_fping.c:511 | ||
1032 | #, c-format | 750 | #, c-format |
1033 | msgid "" | 751 | msgid "" |
1034 | "THRESHOLD is <rta>,<pl>%% where <rta> is the round trip average travel time " | 752 | "THRESHOLD is <rta>,<pl>%% where <rta> is the round trip average travel time " |
1035 | "(ms)" | 753 | "(ms)" |
1036 | msgstr "" | 754 | msgstr "" |
1037 | 755 | ||
1038 | #: plugins/check_fping.c:512 | ||
1039 | msgid "" | 756 | msgid "" |
1040 | "which triggers a WARNING or CRITICAL state, and <pl> is the percentage of" | 757 | "which triggers a WARNING or CRITICAL state, and <pl> is the percentage of" |
1041 | msgstr "" | 758 | msgstr "" |
1042 | 759 | ||
1043 | #: plugins/check_fping.c:513 | ||
1044 | msgid "packet loss to trigger an alarm state." | 760 | msgid "packet loss to trigger an alarm state." |
1045 | msgstr "" | 761 | msgstr "" |
1046 | 762 | ||
1047 | #: plugins/check_fping.c:516 | ||
1048 | msgid "IPv4 is used by default. Specify -6 to use IPv6." | 763 | msgid "IPv4 is used by default. Specify -6 to use IPv6." |
1049 | msgstr "" | 764 | msgstr "" |
1050 | 765 | ||
1051 | #: plugins/check_game.c:111 | ||
1052 | #, c-format | 766 | #, c-format |
1053 | msgid "CRITICAL - Host type parameter incorrect!\n" | 767 | msgid "CRITICAL - Host type parameter incorrect!\n" |
1054 | msgstr "" | 768 | msgstr "" |
1055 | 769 | ||
1056 | #: plugins/check_game.c:126 | ||
1057 | #, c-format | 770 | #, c-format |
1058 | msgid "CRITICAL - Host not found\n" | 771 | msgid "CRITICAL - Host not found\n" |
1059 | msgstr "" | 772 | msgstr "" |
1060 | 773 | ||
1061 | #: plugins/check_game.c:130 | ||
1062 | #, c-format | 774 | #, c-format |
1063 | msgid "CRITICAL - Game server down or unavailable\n" | 775 | msgid "CRITICAL - Game server down or unavailable\n" |
1064 | msgstr "" | 776 | msgstr "" |
1065 | 777 | ||
1066 | #: plugins/check_game.c:134 | ||
1067 | #, c-format | 778 | #, c-format |
1068 | msgid "CRITICAL - Game server timeout\n" | 779 | msgid "CRITICAL - Game server timeout\n" |
1069 | msgstr "" | 780 | msgstr "" |
1070 | 781 | ||
1071 | #: plugins/check_game.c:297 | ||
1072 | #, c-format | 782 | #, c-format |
1073 | msgid "This plugin tests game server connections with the specified host." | 783 | msgid "This plugin tests game server connections with the specified host." |
1074 | msgstr "" | 784 | msgstr "" |
1075 | 785 | ||
1076 | #: plugins/check_game.c:307 | ||
1077 | msgid "Optional port of which to connect" | 786 | msgid "Optional port of which to connect" |
1078 | msgstr "" | 787 | msgstr "" |
1079 | 788 | ||
1080 | #: plugins/check_game.c:309 | ||
1081 | msgid "Field number in raw qstat output that contains game name" | 789 | msgid "Field number in raw qstat output that contains game name" |
1082 | msgstr "" | 790 | msgstr "" |
1083 | 791 | ||
1084 | #: plugins/check_game.c:311 | ||
1085 | msgid "Field number in raw qstat output that contains map name" | 792 | msgid "Field number in raw qstat output that contains map name" |
1086 | msgstr "" | 793 | msgstr "" |
1087 | 794 | ||
1088 | #: plugins/check_game.c:313 | ||
1089 | msgid "Field number in raw qstat output that contains ping time" | 795 | msgid "Field number in raw qstat output that contains ping time" |
1090 | msgstr "" | 796 | msgstr "" |
1091 | 797 | ||
1092 | #: plugins/check_game.c:319 | ||
1093 | msgid "" | 798 | msgid "" |
1094 | "This plugin uses the 'qstat' command, the popular game server status query " | 799 | "This plugin uses the 'qstat' command, the popular game server status query " |
1095 | "tool." | 800 | "tool." |
1096 | msgstr "" | 801 | msgstr "" |
1097 | 802 | ||
1098 | #: plugins/check_game.c:320 | ||
1099 | msgid "" | 803 | msgid "" |
1100 | "If you don't have the package installed, you will need to download it from" | 804 | "If you don't have the package installed, you will need to download it from" |
1101 | msgstr "" | 805 | msgstr "" |
1102 | 806 | ||
1103 | #: plugins/check_game.c:321 | ||
1104 | msgid "https://github.com/multiplay/qstat before you can use this plugin." | 807 | msgid "https://github.com/multiplay/qstat before you can use this plugin." |
1105 | msgstr "" | 808 | msgstr "" |
1106 | 809 | ||
1107 | #: plugins/check_hpjd.c:245 | ||
1108 | msgid "Paper Jam" | 810 | msgid "Paper Jam" |
1109 | msgstr "" | 811 | msgstr "" |
1110 | 812 | ||
1111 | #: plugins/check_hpjd.c:250 | ||
1112 | msgid "Out of Paper" | 813 | msgid "Out of Paper" |
1113 | msgstr "" | 814 | msgstr "" |
1114 | 815 | ||
1115 | #: plugins/check_hpjd.c:255 | ||
1116 | msgid "Printer Offline" | 816 | msgid "Printer Offline" |
1117 | msgstr "" | 817 | msgstr "" |
1118 | 818 | ||
1119 | #: plugins/check_hpjd.c:260 | ||
1120 | msgid "Peripheral Error" | 819 | msgid "Peripheral Error" |
1121 | msgstr "" | 820 | msgstr "" |
1122 | 821 | ||
1123 | #: plugins/check_hpjd.c:264 | ||
1124 | msgid "Intervention Required" | 822 | msgid "Intervention Required" |
1125 | msgstr "" | 823 | msgstr "" |
1126 | 824 | ||
1127 | #: plugins/check_hpjd.c:268 | ||
1128 | msgid "Toner Low" | 825 | msgid "Toner Low" |
1129 | msgstr "" | 826 | msgstr "" |
1130 | 827 | ||
1131 | #: plugins/check_hpjd.c:272 | ||
1132 | msgid "Insufficient Memory" | 828 | msgid "Insufficient Memory" |
1133 | msgstr "" | 829 | msgstr "" |
1134 | 830 | ||
1135 | #: plugins/check_hpjd.c:276 | ||
1136 | msgid "A Door is Open" | 831 | msgid "A Door is Open" |
1137 | msgstr "" | 832 | msgstr "" |
1138 | 833 | ||
1139 | #: plugins/check_hpjd.c:280 | ||
1140 | msgid "Output Tray is Full" | 834 | msgid "Output Tray is Full" |
1141 | msgstr "" | 835 | msgstr "" |
1142 | 836 | ||
1143 | #: plugins/check_hpjd.c:284 | ||
1144 | msgid "Data too Slow for Engine" | 837 | msgid "Data too Slow for Engine" |
1145 | msgstr "" | 838 | msgstr "" |
1146 | 839 | ||
1147 | #: plugins/check_hpjd.c:288 | ||
1148 | msgid "Unknown Paper Error" | 840 | msgid "Unknown Paper Error" |
1149 | msgstr "" | 841 | msgstr "" |
1150 | 842 | ||
1151 | #: plugins/check_hpjd.c:293 | ||
1152 | #, c-format | 843 | #, c-format |
1153 | msgid "Printer ok - (%s)\n" | 844 | msgid "Printer ok - (%s)\n" |
1154 | msgstr "" | 845 | msgstr "" |
1155 | 846 | ||
1156 | #: plugins/check_hpjd.c:353 | ||
1157 | msgid "Port must be a positive short integer" | 847 | msgid "Port must be a positive short integer" |
1158 | msgstr "" | 848 | msgstr "" |
1159 | 849 | ||
1160 | #: plugins/check_hpjd.c:411 | ||
1161 | msgid "This plugin tests the STATUS of an HP printer with a JetDirect card." | 850 | msgid "This plugin tests the STATUS of an HP printer with a JetDirect card." |
1162 | msgstr "" | 851 | msgstr "" |
1163 | 852 | ||
1164 | #: plugins/check_hpjd.c:412 | ||
1165 | msgid "Net-snmp must be installed on the computer running the plugin." | 853 | msgid "Net-snmp must be installed on the computer running the plugin." |
1166 | msgstr "" | 854 | msgstr "" |
1167 | 855 | ||
1168 | #: plugins/check_hpjd.c:422 | ||
1169 | msgid "The SNMP community name " | 856 | msgid "The SNMP community name " |
1170 | msgstr "" | 857 | msgstr "" |
1171 | 858 | ||
1172 | #: plugins/check_hpjd.c:423 plugins/check_hpjd.c:427 | ||
1173 | #, c-format | 859 | #, c-format |
1174 | msgid "(default=%s)" | 860 | msgid "(default=%s)" |
1175 | msgstr "" | 861 | msgstr "" |
1176 | 862 | ||
1177 | #: plugins/check_hpjd.c:426 | ||
1178 | msgid "Specify the port to check " | 863 | msgid "Specify the port to check " |
1179 | msgstr "" | 864 | msgstr "" |
1180 | 865 | ||
1181 | #: plugins/check_hpjd.c:430 | ||
1182 | msgid "Disable paper check " | 866 | msgid "Disable paper check " |
1183 | msgstr "" | 867 | msgstr "" |
1184 | 868 | ||
1185 | #: plugins/check_http.c:196 | ||
1186 | msgid "file does not exist or is not readable" | 869 | msgid "file does not exist or is not readable" |
1187 | msgstr "" | 870 | msgstr "" |
1188 | 871 | ||
1189 | #: plugins/check_http.c:324 plugins/check_http.c:329 plugins/check_http.c:335 | ||
1190 | #: plugins/check_smtp.c:621 plugins/check_tcp.c:590 plugins/check_tcp.c:595 | ||
1191 | #: plugins/check_tcp.c:601 | ||
1192 | msgid "Invalid certificate expiration period" | 872 | msgid "Invalid certificate expiration period" |
1193 | msgstr "" | 873 | msgstr "" |
1194 | 874 | ||
1195 | #: plugins/check_http.c:378 | ||
1196 | msgid "" | 875 | msgid "" |
1197 | "Invalid option - Valid SSL/TLS versions: 2, 3, 1, 1.1, 1.2 (with optional " | 876 | "Invalid option - Valid SSL/TLS versions: 2, 3, 1, 1.1, 1.2 (with optional " |
1198 | "'+' suffix)" | 877 | "'+' suffix)" |
1199 | msgstr "" | 878 | msgstr "" |
1200 | 879 | ||
1201 | #: plugins/check_http.c:384 plugins/check_tcp.c:614 plugins/check_tcp.c:623 | ||
1202 | msgid "Invalid option - SSL is not available" | 880 | msgid "Invalid option - SSL is not available" |
1203 | msgstr "" | 881 | msgstr "" |
1204 | 882 | ||
1205 | #: plugins/check_http.c:392 | ||
1206 | msgid "Invalid max_redirs count" | 883 | msgid "Invalid max_redirs count" |
1207 | msgstr "" | 884 | msgstr "" |
1208 | 885 | ||
1209 | #: plugins/check_http.c:412 | ||
1210 | msgid "Invalid onredirect option" | 886 | msgid "Invalid onredirect option" |
1211 | msgstr "" | 887 | msgstr "" |
1212 | 888 | ||
1213 | #: plugins/check_http.c:414 | ||
1214 | #, c-format | 889 | #, c-format |
1215 | msgid "option f:%d \n" | 890 | msgid "option f:%d \n" |
1216 | msgstr "" | 891 | msgstr "" |
1217 | 892 | ||
1218 | #: plugins/check_http.c:449 | ||
1219 | msgid "Invalid port number" | 893 | msgid "Invalid port number" |
1220 | msgstr "" | 894 | msgstr "" |
1221 | 895 | ||
1222 | #: plugins/check_http.c:508 | ||
1223 | #, c-format | 896 | #, c-format |
1224 | msgid "Could Not Compile Regular Expression: %s" | 897 | msgid "Could Not Compile Regular Expression: %s" |
1225 | msgstr "" | 898 | msgstr "" |
1226 | 899 | ||
1227 | #: plugins/check_http.c:522 plugins/check_ntp.c:732 | ||
1228 | #: plugins/check_ntp_peer.c:513 plugins/check_ntp_time.c:517 | ||
1229 | #: plugins/check_smtp.c:661 plugins/check_ssh.c:151 plugins/check_tcp.c:491 | ||
1230 | msgid "IPv6 support not available" | 900 | msgid "IPv6 support not available" |
1231 | msgstr "" | 901 | msgstr "" |
1232 | 902 | ||
1233 | #: plugins/check_http.c:590 plugins/check_ping.c:428 | ||
1234 | msgid "You must specify a server address or host name" | 903 | msgid "You must specify a server address or host name" |
1235 | msgstr "" | 904 | msgstr "" |
1236 | 905 | ||
1237 | #: plugins/check_http.c:607 | ||
1238 | msgid "" | 906 | msgid "" |
1239 | "If you use a client certificate you must also specify a private key file" | 907 | "If you use a client certificate you must also specify a private key file" |
1240 | msgstr "" | 908 | msgstr "" |
1241 | 909 | ||
1242 | #: plugins/check_http.c:734 plugins/check_http.c:902 | ||
1243 | msgid "HTTP UNKNOWN - Memory allocation error\n" | 910 | msgid "HTTP UNKNOWN - Memory allocation error\n" |
1244 | msgstr "" | 911 | msgstr "" |
1245 | 912 | ||
1246 | #: plugins/check_http.c:806 | ||
1247 | #, c-format | 913 | #, c-format |
1248 | msgid "%sServer date unknown, " | 914 | msgid "%sServer date unknown, " |
1249 | msgstr "" | 915 | msgstr "" |
1250 | 916 | ||
1251 | #: plugins/check_http.c:809 | ||
1252 | #, c-format | 917 | #, c-format |
1253 | msgid "%sDocument modification date unknown, " | 918 | msgid "%sDocument modification date unknown, " |
1254 | msgstr "" | 919 | msgstr "" |
1255 | 920 | ||
1256 | #: plugins/check_http.c:816 | ||
1257 | #, c-format | 921 | #, c-format |
1258 | msgid "%sServer date \"%100s\" unparsable, " | 922 | msgid "%sServer date \"%100s\" unparsable, " |
1259 | msgstr "" | 923 | msgstr "" |
1260 | 924 | ||
1261 | #: plugins/check_http.c:819 | ||
1262 | #, c-format | 925 | #, c-format |
1263 | msgid "%sDocument date \"%100s\" unparsable, " | 926 | msgid "%sDocument date \"%100s\" unparsable, " |
1264 | msgstr "" | 927 | msgstr "" |
1265 | 928 | ||
1266 | #: plugins/check_http.c:822 | ||
1267 | #, c-format | 929 | #, c-format |
1268 | msgid "%sDocument is %d seconds in the future, " | 930 | msgid "%sDocument is %d seconds in the future, " |
1269 | msgstr "" | 931 | msgstr "" |
1270 | 932 | ||
1271 | #: plugins/check_http.c:827 | ||
1272 | #, c-format | 933 | #, c-format |
1273 | msgid "%sLast modified %.1f days ago, " | 934 | msgid "%sLast modified %.1f days ago, " |
1274 | msgstr "" | 935 | msgstr "" |
1275 | 936 | ||
1276 | #: plugins/check_http.c:830 | ||
1277 | #, c-format | 937 | #, c-format |
1278 | msgid "%sLast modified %d:%02d:%02d ago, " | 938 | msgid "%sLast modified %d:%02d:%02d ago, " |
1279 | msgstr "" | 939 | msgstr "" |
1280 | 940 | ||
1281 | #: plugins/check_http.c:944 | ||
1282 | msgid "HTTP CRITICAL - Unable to open TCP socket\n" | 941 | msgid "HTTP CRITICAL - Unable to open TCP socket\n" |
1283 | msgstr "" | 942 | msgstr "" |
1284 | 943 | ||
1285 | #: plugins/check_http.c:1104 | ||
1286 | msgid "HTTP UNKNOWN - Could not allocate memory for full_page\n" | 944 | msgid "HTTP UNKNOWN - Could not allocate memory for full_page\n" |
1287 | msgstr "" | 945 | msgstr "" |
1288 | 946 | ||
1289 | #: plugins/check_http.c:1121 | ||
1290 | msgid "HTTP CRITICAL - Error on receive\n" | 947 | msgid "HTTP CRITICAL - Error on receive\n" |
1291 | msgstr "" | 948 | msgstr "" |
1292 | 949 | ||
1293 | #: plugins/check_http.c:1126 | ||
1294 | msgid "HTTP CRITICAL - No data received from host\n" | 950 | msgid "HTTP CRITICAL - No data received from host\n" |
1295 | msgstr "" | 951 | msgstr "" |
1296 | 952 | ||
1297 | #: plugins/check_http.c:1177 | ||
1298 | #, c-format | 953 | #, c-format |
1299 | msgid "Invalid HTTP response received from host: %s\n" | 954 | msgid "Invalid HTTP response received from host: %s\n" |
1300 | msgstr "" | 955 | msgstr "" |
1301 | 956 | ||
1302 | #: plugins/check_http.c:1181 | ||
1303 | #, c-format | 957 | #, c-format |
1304 | msgid "Invalid HTTP response received from host on port %d: %s\n" | 958 | msgid "Invalid HTTP response received from host on port %d: %s\n" |
1305 | msgstr "" | 959 | msgstr "" |
1306 | 960 | ||
1307 | #: plugins/check_http.c:1184 plugins/check_http.c:1377 | ||
1308 | #, c-format | 961 | #, c-format |
1309 | msgid "" | 962 | msgid "" |
1310 | "%s\n" | 963 | "%s\n" |
1311 | "%s" | 964 | "%s" |
1312 | msgstr "" | 965 | msgstr "" |
1313 | 966 | ||
1314 | #: plugins/check_http.c:1192 | ||
1315 | #, c-format | 967 | #, c-format |
1316 | msgid "Status line output matched \"%s\" - " | 968 | msgid "Status line output matched \"%s\" - " |
1317 | msgstr "" | 969 | msgstr "" |
1318 | 970 | ||
1319 | #: plugins/check_http.c:1203 | ||
1320 | #, c-format | 971 | #, c-format |
1321 | msgid "HTTP CRITICAL: Invalid Status Line (%s)\n" | 972 | msgid "HTTP CRITICAL: Invalid Status Line (%s)\n" |
1322 | msgstr "" | 973 | msgstr "" |
1323 | 974 | ||
1324 | #: plugins/check_http.c:1210 | ||
1325 | #, c-format | 975 | #, c-format |
1326 | msgid "HTTP CRITICAL: Invalid Status (%s)\n" | 976 | msgid "HTTP CRITICAL: Invalid Status (%s)\n" |
1327 | msgstr "" | 977 | msgstr "" |
1328 | 978 | ||
1329 | #: plugins/check_http.c:1214 plugins/check_http.c:1219 | ||
1330 | #: plugins/check_http.c:1229 plugins/check_http.c:1233 | ||
1331 | #, c-format | 979 | #, c-format |
1332 | msgid "%s - " | 980 | msgid "%s - " |
1333 | msgstr "" | 981 | msgstr "" |
1334 | 982 | ||
1335 | #: plugins/check_http.c:1261 | ||
1336 | #, c-format | 983 | #, c-format |
1337 | msgid "%sheader '%s' not found on '%s://%s:%d%s', " | 984 | msgid "%sheader '%s' not found on '%s://%s:%d%s', " |
1338 | msgstr "" | 985 | msgstr "" |
1339 | 986 | ||
1340 | #: plugins/check_http.c:1304 | ||
1341 | #, c-format | 987 | #, c-format |
1342 | msgid "%sstring '%s' not found on '%s://%s:%d%s', " | 988 | msgid "%sstring '%s' not found on '%s://%s:%d%s', " |
1343 | msgstr "" | 989 | msgstr "" |
1344 | 990 | ||
1345 | #: plugins/check_http.c:1318 | ||
1346 | #, c-format | 991 | #, c-format |
1347 | msgid "%spattern not found, " | 992 | msgid "%spattern not found, " |
1348 | msgstr "" | 993 | msgstr "" |
1349 | 994 | ||
1350 | #: plugins/check_http.c:1320 | ||
1351 | #, c-format | 995 | #, c-format |
1352 | msgid "%spattern found, " | 996 | msgid "%spattern found, " |
1353 | msgstr "" | 997 | msgstr "" |
1354 | 998 | ||
1355 | #: plugins/check_http.c:1326 | ||
1356 | #, c-format | 999 | #, c-format |
1357 | msgid "%sExecute Error: %s, " | 1000 | msgid "%sExecute Error: %s, " |
1358 | msgstr "" | 1001 | msgstr "" |
1359 | 1002 | ||
1360 | #: plugins/check_http.c:1342 | ||
1361 | #, c-format | 1003 | #, c-format |
1362 | msgid "%spage size %d too large, " | 1004 | msgid "%spage size %d too large, " |
1363 | msgstr "" | 1005 | msgstr "" |
1364 | 1006 | ||
1365 | #: plugins/check_http.c:1345 | ||
1366 | #, c-format | 1007 | #, c-format |
1367 | msgid "%spage size %d too small, " | 1008 | msgid "%spage size %d too small, " |
1368 | msgstr "" | 1009 | msgstr "" |
1369 | 1010 | ||
1370 | #: plugins/check_http.c:1358 | ||
1371 | #, c-format | 1011 | #, c-format |
1372 | msgid "%s - %d bytes in %.3f second response time %s|%s %s %s %s %s %s %s" | 1012 | msgid "%s - %d bytes in %.3f second response time %s|%s %s %s %s %s %s %s" |
1373 | msgstr "" | 1013 | msgstr "" |
1374 | 1014 | ||
1375 | #: plugins/check_http.c:1370 | ||
1376 | #, c-format | 1015 | #, c-format |
1377 | msgid "%s - %d bytes in %.3f second response time %s|%s %s" | 1016 | msgid "%s - %d bytes in %.3f second response time %s|%s %s" |
1378 | msgstr "" | 1017 | msgstr "" |
1379 | 1018 | ||
1380 | #: plugins/check_http.c:1500 | ||
1381 | msgid "HTTP UNKNOWN - Could not allocate addr\n" | 1019 | msgid "HTTP UNKNOWN - Could not allocate addr\n" |
1382 | msgstr "" | 1020 | msgstr "" |
1383 | 1021 | ||
1384 | #: plugins/check_http.c:1505 plugins/check_http.c:1536 | ||
1385 | msgid "HTTP UNKNOWN - Could not allocate URL\n" | 1022 | msgid "HTTP UNKNOWN - Could not allocate URL\n" |
1386 | msgstr "" | 1023 | msgstr "" |
1387 | 1024 | ||
1388 | #: plugins/check_http.c:1514 | ||
1389 | #, c-format | 1025 | #, c-format |
1390 | msgid "HTTP UNKNOWN - Could not find redirect location - %s%s\n" | 1026 | msgid "HTTP UNKNOWN - Could not find redirect location - %s%s\n" |
1391 | msgstr "" | 1027 | msgstr "" |
1392 | 1028 | ||
1393 | #: plugins/check_http.c:1529 | ||
1394 | #, c-format | 1029 | #, c-format |
1395 | msgid "HTTP UNKNOWN - Empty redirect location%s\n" | 1030 | msgid "HTTP UNKNOWN - Empty redirect location%s\n" |
1396 | msgstr "" | 1031 | msgstr "" |
1397 | 1032 | ||
1398 | #: plugins/check_http.c:1591 | ||
1399 | #, c-format | 1033 | #, c-format |
1400 | msgid "HTTP UNKNOWN - Could not parse redirect location - %s%s\n" | 1034 | msgid "HTTP UNKNOWN - Could not parse redirect location - %s%s\n" |
1401 | msgstr "" | 1035 | msgstr "" |
1402 | 1036 | ||
1403 | #: plugins/check_http.c:1601 | ||
1404 | #, c-format | 1037 | #, c-format |
1405 | msgid "HTTP WARNING - maximum redirection depth %d exceeded - %s://%s:%d%s%s\n" | 1038 | msgid "HTTP WARNING - maximum redirection depth %d exceeded - %s://%s:%d%s%s\n" |
1406 | msgstr "" | 1039 | msgstr "" |
1407 | 1040 | ||
1408 | #: plugins/check_http.c:1609 | ||
1409 | #, c-format | 1041 | #, c-format |
1410 | msgid "HTTP CRITICAL - redirection creates an infinite loop - %s://%s:%d%s%s\n" | 1042 | msgid "HTTP CRITICAL - redirection creates an infinite loop - %s://%s:%d%s%s\n" |
1411 | msgstr "" | 1043 | msgstr "" |
1412 | 1044 | ||
1413 | #: plugins/check_http.c:1630 | ||
1414 | #, c-format | 1045 | #, c-format |
1415 | msgid "HTTP UNKNOWN - Redirection to port above %d - %s://%s:%d%s%s\n" | 1046 | msgid "HTTP UNKNOWN - Redirection to port above %d - %s://%s:%d%s%s\n" |
1416 | msgstr "" | 1047 | msgstr "" |
1417 | 1048 | ||
1418 | #: plugins/check_http.c:1638 | ||
1419 | #, c-format | 1049 | #, c-format |
1420 | msgid "Redirection to %s://%s:%d%s\n" | 1050 | msgid "Redirection to %s://%s:%d%s\n" |
1421 | msgstr "" | 1051 | msgstr "" |
1422 | 1052 | ||
1423 | #: plugins/check_http.c:1713 | ||
1424 | msgid "This plugin tests the HTTP service on the specified host. It can test" | 1053 | msgid "This plugin tests the HTTP service on the specified host. It can test" |
1425 | msgstr "" | 1054 | msgstr "" |
1426 | 1055 | ||
1427 | #: plugins/check_http.c:1714 | ||
1428 | msgid "normal (http) and secure (https) servers, follow redirects, search for" | 1056 | msgid "normal (http) and secure (https) servers, follow redirects, search for" |
1429 | msgstr "" | 1057 | msgstr "" |
1430 | 1058 | ||
1431 | #: plugins/check_http.c:1715 | ||
1432 | msgid "strings and regular expressions, check connection times, and report on" | 1059 | msgid "strings and regular expressions, check connection times, and report on" |
1433 | msgstr "" | 1060 | msgstr "" |
1434 | 1061 | ||
1435 | #: plugins/check_http.c:1716 | ||
1436 | msgid "certificate expiration times." | 1062 | msgid "certificate expiration times." |
1437 | msgstr "" | 1063 | msgstr "" |
1438 | 1064 | ||
1439 | #: plugins/check_http.c:1723 | ||
1440 | #, c-format | 1065 | #, c-format |
1441 | msgid "In the first form, make an HTTP request." | 1066 | msgid "In the first form, make an HTTP request." |
1442 | msgstr "" | 1067 | msgstr "" |
1443 | 1068 | ||
1444 | #: plugins/check_http.c:1724 | ||
1445 | #, c-format | 1069 | #, c-format |
1446 | msgid "" | 1070 | msgid "" |
1447 | "In the second form, connect to the server and check the TLS certificate." | 1071 | "In the second form, connect to the server and check the TLS certificate." |
1448 | msgstr "" | 1072 | msgstr "" |
1449 | 1073 | ||
1450 | #: plugins/check_http.c:1726 | ||
1451 | #, c-format | 1074 | #, c-format |
1452 | msgid "NOTE: One or both of -H and -I must be specified" | 1075 | msgid "NOTE: One or both of -H and -I must be specified" |
1453 | msgstr "" | 1076 | msgstr "" |
1454 | 1077 | ||
1455 | #: plugins/check_http.c:1734 | ||
1456 | msgid "Host name argument for servers using host headers (virtual host)" | 1078 | msgid "Host name argument for servers using host headers (virtual host)" |
1457 | msgstr "" | 1079 | msgstr "" |
1458 | 1080 | ||
1459 | #: plugins/check_http.c:1735 | ||
1460 | msgid "Append a port to include it in the header (eg: example.com:5000)" | 1081 | msgid "Append a port to include it in the header (eg: example.com:5000)" |
1461 | msgstr "" | 1082 | msgstr "" |
1462 | 1083 | ||
1463 | #: plugins/check_http.c:1737 | ||
1464 | msgid "" | 1084 | msgid "" |
1465 | "IP address or name (use numeric address if possible to bypass DNS lookup)." | 1085 | "IP address or name (use numeric address if possible to bypass DNS lookup)." |
1466 | msgstr "" | 1086 | msgstr "" |
1467 | 1087 | ||
1468 | #: plugins/check_http.c:1739 | ||
1469 | msgid "Port number (default: " | 1088 | msgid "Port number (default: " |
1470 | msgstr "" | 1089 | msgstr "" |
1471 | 1090 | ||
1472 | #: plugins/check_http.c:1746 | ||
1473 | msgid "" | 1091 | msgid "" |
1474 | "Connect via SSL. Port defaults to 443. VERSION is optional, and prevents" | 1092 | "Connect via SSL. Port defaults to 443. VERSION is optional, and prevents" |
1475 | msgstr "" | 1093 | msgstr "" |
1476 | 1094 | ||
1477 | #: plugins/check_http.c:1747 | ||
1478 | msgid "auto-negotiation (2 = SSLv2, 3 = SSLv3, 1 = TLSv1, 1.1 = TLSv1.1," | 1095 | msgid "auto-negotiation (2 = SSLv2, 3 = SSLv3, 1 = TLSv1, 1.1 = TLSv1.1," |
1479 | msgstr "" | 1096 | msgstr "" |
1480 | 1097 | ||
1481 | #: plugins/check_http.c:1748 | ||
1482 | msgid "1.2 = TLSv1.2). With a '+' suffix, newer versions are also accepted." | 1098 | msgid "1.2 = TLSv1.2). With a '+' suffix, newer versions are also accepted." |
1483 | msgstr "" | 1099 | msgstr "" |
1484 | 1100 | ||
1485 | #: plugins/check_http.c:1750 plugins/check_smtp.c:857 | ||
1486 | msgid "Enable SSL/TLS hostname extension support (SNI)" | 1101 | msgid "Enable SSL/TLS hostname extension support (SNI)" |
1487 | msgstr "" | 1102 | msgstr "" |
1488 | 1103 | ||
1489 | #: plugins/check_http.c:1752 | ||
1490 | msgid "" | 1104 | msgid "" |
1491 | "Minimum number of days a certificate has to be valid. Port defaults to 443" | 1105 | "Minimum number of days a certificate has to be valid. Port defaults to 443" |
1492 | msgstr "" | 1106 | msgstr "" |
1493 | 1107 | ||
1494 | #: plugins/check_http.c:1753 | ||
1495 | msgid "" | 1108 | msgid "" |
1496 | "(when this option is used the URL is not checked by default. You can use" | 1109 | "(when this option is used the URL is not checked by default. You can use" |
1497 | msgstr "" | 1110 | msgstr "" |
1498 | 1111 | ||
1499 | #: plugins/check_http.c:1754 | ||
1500 | msgid " --continue-after-certificate to override this behavior)" | 1112 | msgid " --continue-after-certificate to override this behavior)" |
1501 | msgstr "" | 1113 | msgstr "" |
1502 | 1114 | ||
1503 | #: plugins/check_http.c:1756 | ||
1504 | msgid "" | 1115 | msgid "" |
1505 | "Allows the HTTP check to continue after performing the certificate check." | 1116 | "Allows the HTTP check to continue after performing the certificate check." |
1506 | msgstr "" | 1117 | msgstr "" |
1507 | 1118 | ||
1508 | #: plugins/check_http.c:1757 | ||
1509 | msgid "Does nothing unless -C is used." | 1119 | msgid "Does nothing unless -C is used." |
1510 | msgstr "" | 1120 | msgstr "" |
1511 | 1121 | ||
1512 | #: plugins/check_http.c:1759 | ||
1513 | msgid "Name of file that contains the client certificate (PEM format)" | 1122 | msgid "Name of file that contains the client certificate (PEM format)" |
1514 | msgstr "" | 1123 | msgstr "" |
1515 | 1124 | ||
1516 | #: plugins/check_http.c:1760 | ||
1517 | msgid "to be used in establishing the SSL session" | 1125 | msgid "to be used in establishing the SSL session" |
1518 | msgstr "" | 1126 | msgstr "" |
1519 | 1127 | ||
1520 | #: plugins/check_http.c:1762 | ||
1521 | msgid "Name of file containing the private key (PEM format)" | 1128 | msgid "Name of file containing the private key (PEM format)" |
1522 | msgstr "" | 1129 | msgstr "" |
1523 | 1130 | ||
1524 | #: plugins/check_http.c:1763 | ||
1525 | msgid "matching the client certificate" | 1131 | msgid "matching the client certificate" |
1526 | msgstr "" | 1132 | msgstr "" |
1527 | 1133 | ||
1528 | #: plugins/check_http.c:1767 | ||
1529 | msgid "Comma-delimited list of strings, at least one of them is expected in" | 1134 | msgid "Comma-delimited list of strings, at least one of them is expected in" |
1530 | msgstr "" | 1135 | msgstr "" |
1531 | 1136 | ||
1532 | #: plugins/check_http.c:1768 | ||
1533 | msgid "the first (status) line of the server response (default: " | 1137 | msgid "the first (status) line of the server response (default: " |
1534 | msgstr "" | 1138 | msgstr "" |
1535 | 1139 | ||
1536 | #: plugins/check_http.c:1770 | ||
1537 | msgid "" | 1140 | msgid "" |
1538 | "If specified skips all other status line logic (ex: 3xx, 4xx, 5xx processing)" | 1141 | "If specified skips all other status line logic (ex: 3xx, 4xx, 5xx processing)" |
1539 | msgstr "" | 1142 | msgstr "" |
1540 | 1143 | ||
1541 | #: plugins/check_http.c:1772 | ||
1542 | msgid "String to expect in the response headers" | 1144 | msgid "String to expect in the response headers" |
1543 | msgstr "" | 1145 | msgstr "" |
1544 | 1146 | ||
1545 | #: plugins/check_http.c:1774 | ||
1546 | msgid "String to expect in the content" | 1147 | msgid "String to expect in the content" |
1547 | msgstr "" | 1148 | msgstr "" |
1548 | 1149 | ||
1549 | #: plugins/check_http.c:1776 | ||
1550 | msgid "URL to GET or POST (default: /)" | 1150 | msgid "URL to GET or POST (default: /)" |
1551 | msgstr "" | 1151 | msgstr "" |
1552 | 1152 | ||
1553 | #: plugins/check_http.c:1778 | ||
1554 | msgid "URL encoded http POST data" | 1153 | msgid "URL encoded http POST data" |
1555 | msgstr "" | 1154 | msgstr "" |
1556 | 1155 | ||
1557 | #: plugins/check_http.c:1780 | ||
1558 | msgid "Set HTTP method." | 1156 | msgid "Set HTTP method." |
1559 | msgstr "" | 1157 | msgstr "" |
1560 | 1158 | ||
1561 | #: plugins/check_http.c:1782 | ||
1562 | msgid "Don't wait for document body: stop reading after headers." | 1159 | msgid "Don't wait for document body: stop reading after headers." |
1563 | msgstr "" | 1160 | msgstr "" |
1564 | 1161 | ||
1565 | #: plugins/check_http.c:1783 | ||
1566 | msgid "(Note that this still does an HTTP GET or POST, not a HEAD.)" | 1162 | msgid "(Note that this still does an HTTP GET or POST, not a HEAD.)" |
1567 | msgstr "" | 1163 | msgstr "" |
1568 | 1164 | ||
1569 | #: plugins/check_http.c:1785 | ||
1570 | msgid "Warn if document is more than SECONDS old. the number can also be of" | 1165 | msgid "Warn if document is more than SECONDS old. the number can also be of" |
1571 | msgstr "" | 1166 | msgstr "" |
1572 | 1167 | ||
1573 | #: plugins/check_http.c:1786 | ||
1574 | msgid "the form \"10m\" for minutes, \"10h\" for hours, or \"10d\" for days." | 1168 | msgid "the form \"10m\" for minutes, \"10h\" for hours, or \"10d\" for days." |
1575 | msgstr "" | 1169 | msgstr "" |
1576 | 1170 | ||
1577 | #: plugins/check_http.c:1788 | ||
1578 | msgid "specify Content-Type header media type when POSTing\n" | 1171 | msgid "specify Content-Type header media type when POSTing\n" |
1579 | msgstr "" | 1172 | msgstr "" |
1580 | 1173 | ||
1581 | #: plugins/check_http.c:1791 | ||
1582 | msgid "Allow regex to span newlines (must precede -r or -R)" | 1174 | msgid "Allow regex to span newlines (must precede -r or -R)" |
1583 | msgstr "" | 1175 | msgstr "" |
1584 | 1176 | ||
1585 | #: plugins/check_http.c:1793 | ||
1586 | msgid "Search page for regex STRING" | 1177 | msgid "Search page for regex STRING" |
1587 | msgstr "" | 1178 | msgstr "" |
1588 | 1179 | ||
1589 | #: plugins/check_http.c:1795 | ||
1590 | msgid "Search page for case-insensitive regex STRING" | 1180 | msgid "Search page for case-insensitive regex STRING" |
1591 | msgstr "" | 1181 | msgstr "" |
1592 | 1182 | ||
1593 | #: plugins/check_http.c:1797 | ||
1594 | msgid "Return CRITICAL if found, OK if not\n" | 1183 | msgid "Return CRITICAL if found, OK if not\n" |
1595 | msgstr "" | 1184 | msgstr "" |
1596 | 1185 | ||
1597 | #: plugins/check_http.c:1800 | ||
1598 | msgid "Username:password on sites with basic authentication" | 1186 | msgid "Username:password on sites with basic authentication" |
1599 | msgstr "" | 1187 | msgstr "" |
1600 | 1188 | ||
1601 | #: plugins/check_http.c:1802 | ||
1602 | msgid "Username:password on proxy-servers with basic authentication" | 1189 | msgid "Username:password on proxy-servers with basic authentication" |
1603 | msgstr "" | 1190 | msgstr "" |
1604 | 1191 | ||
1605 | #: plugins/check_http.c:1804 | ||
1606 | msgid "String to be sent in http header as \"User Agent\"" | 1192 | msgid "String to be sent in http header as \"User Agent\"" |
1607 | msgstr "" | 1193 | msgstr "" |
1608 | 1194 | ||
1609 | #: plugins/check_http.c:1806 | ||
1610 | msgid "" | 1195 | msgid "" |
1611 | "Any other tags to be sent in http header. Use multiple times for additional " | 1196 | "Any other tags to be sent in http header. Use multiple times for additional " |
1612 | "headers" | 1197 | "headers" |
1613 | msgstr "" | 1198 | msgstr "" |
1614 | 1199 | ||
1615 | #: plugins/check_http.c:1808 | ||
1616 | msgid "Print additional performance data" | 1200 | msgid "Print additional performance data" |
1617 | msgstr "" | 1201 | msgstr "" |
1618 | 1202 | ||
1619 | #: plugins/check_http.c:1810 | ||
1620 | msgid "Print body content below status line" | 1203 | msgid "Print body content below status line" |
1621 | msgstr "" | 1204 | msgstr "" |
1622 | 1205 | ||
1623 | #: plugins/check_http.c:1812 | ||
1624 | msgid "Wrap output in HTML link (obsoleted by urlize)" | 1206 | msgid "Wrap output in HTML link (obsoleted by urlize)" |
1625 | msgstr "" | 1207 | msgstr "" |
1626 | 1208 | ||
1627 | #: plugins/check_http.c:1814 | ||
1628 | msgid "How to handle redirected pages. sticky is like follow but stick to the" | 1209 | msgid "How to handle redirected pages. sticky is like follow but stick to the" |
1629 | msgstr "" | 1210 | msgstr "" |
1630 | 1211 | ||
1631 | #: plugins/check_http.c:1815 | ||
1632 | msgid "specified IP address. stickyport also ensures port stays the same." | 1212 | msgid "specified IP address. stickyport also ensures port stays the same." |
1633 | msgstr "" | 1213 | msgstr "" |
1634 | 1214 | ||
1635 | #: plugins/check_http.c:1817 | ||
1636 | msgid "Maximal number of redirects (default: " | 1215 | msgid "Maximal number of redirects (default: " |
1637 | msgstr "" | 1216 | msgstr "" |
1638 | 1217 | ||
1639 | #: plugins/check_http.c:1820 | ||
1640 | msgid "Minimum page size required (bytes) : Maximum page size required (bytes)" | 1218 | msgid "Minimum page size required (bytes) : Maximum page size required (bytes)" |
1641 | msgstr "" | 1219 | msgstr "" |
1642 | 1220 | ||
1643 | #: plugins/check_http.c:1829 | ||
1644 | msgid "This plugin will attempt to open an HTTP connection with the host." | 1221 | msgid "This plugin will attempt to open an HTTP connection with the host." |
1645 | msgstr "" | 1222 | msgstr "" |
1646 | 1223 | ||
1647 | #: plugins/check_http.c:1830 | ||
1648 | msgid "" | 1224 | msgid "" |
1649 | "Successful connects return STATE_OK, refusals and timeouts return " | 1225 | "Successful connects return STATE_OK, refusals and timeouts return " |
1650 | "STATE_CRITICAL" | 1226 | "STATE_CRITICAL" |
1651 | msgstr "" | 1227 | msgstr "" |
1652 | 1228 | ||
1653 | #: plugins/check_http.c:1831 | ||
1654 | msgid "" | 1229 | msgid "" |
1655 | "other errors return STATE_UNKNOWN. Successful connects, but incorrect " | 1230 | "other errors return STATE_UNKNOWN. Successful connects, but incorrect " |
1656 | "response" | 1231 | "response" |
1657 | msgstr "" | 1232 | msgstr "" |
1658 | 1233 | ||
1659 | #: plugins/check_http.c:1832 | ||
1660 | msgid "" | 1234 | msgid "" |
1661 | "messages from the host result in STATE_WARNING return values. If you are" | 1235 | "messages from the host result in STATE_WARNING return values. If you are" |
1662 | msgstr "" | 1236 | msgstr "" |
1663 | 1237 | ||
1664 | #: plugins/check_http.c:1833 | ||
1665 | msgid "" | 1238 | msgid "" |
1666 | "checking a virtual server that uses 'host headers' you must supply the FQDN" | 1239 | "checking a virtual server that uses 'host headers' you must supply the FQDN" |
1667 | msgstr "" | 1240 | msgstr "" |
1668 | 1241 | ||
1669 | #: plugins/check_http.c:1834 | ||
1670 | msgid "(fully qualified domain name) as the [host_name] argument." | 1242 | msgid "(fully qualified domain name) as the [host_name] argument." |
1671 | msgstr "" | 1243 | msgstr "" |
1672 | 1244 | ||
1673 | #: plugins/check_http.c:1838 | ||
1674 | msgid "This plugin can also check whether an SSL enabled web server is able to" | 1245 | msgid "This plugin can also check whether an SSL enabled web server is able to" |
1675 | msgstr "" | 1246 | msgstr "" |
1676 | 1247 | ||
1677 | #: plugins/check_http.c:1839 | ||
1678 | msgid "serve content (optionally within a specified time) or whether the X509 " | 1248 | msgid "serve content (optionally within a specified time) or whether the X509 " |
1679 | msgstr "" | 1249 | msgstr "" |
1680 | 1250 | ||
1681 | #: plugins/check_http.c:1840 | ||
1682 | msgid "certificate is still valid for the specified number of days." | 1251 | msgid "certificate is still valid for the specified number of days." |
1683 | msgstr "" | 1252 | msgstr "" |
1684 | 1253 | ||
1685 | #: plugins/check_http.c:1842 | ||
1686 | msgid "Please note that this plugin does not check if the presented server" | 1254 | msgid "Please note that this plugin does not check if the presented server" |
1687 | msgstr "" | 1255 | msgstr "" |
1688 | 1256 | ||
1689 | #: plugins/check_http.c:1843 | ||
1690 | msgid "certificate matches the hostname of the server, or if the certificate" | 1257 | msgid "certificate matches the hostname of the server, or if the certificate" |
1691 | msgstr "" | 1258 | msgstr "" |
1692 | 1259 | ||
1693 | #: plugins/check_http.c:1844 | ||
1694 | msgid "has a valid chain of trust to one of the locally installed CAs." | 1260 | msgid "has a valid chain of trust to one of the locally installed CAs." |
1695 | msgstr "" | 1261 | msgstr "" |
1696 | 1262 | ||
1697 | #: plugins/check_http.c:1848 | ||
1698 | msgid "" | 1263 | msgid "" |
1699 | "When the 'www.verisign.com' server returns its content within 5 seconds," | 1264 | "When the 'www.verisign.com' server returns its content within 5 seconds," |
1700 | msgstr "" | 1265 | msgstr "" |
1701 | 1266 | ||
1702 | #: plugins/check_http.c:1849 plugins/check_http.c:1868 | ||
1703 | msgid "" | 1267 | msgid "" |
1704 | "a STATE_OK will be returned. When the server returns its content but exceeds" | 1268 | "a STATE_OK will be returned. When the server returns its content but exceeds" |
1705 | msgstr "" | 1269 | msgstr "" |
1706 | 1270 | ||
1707 | #: plugins/check_http.c:1850 plugins/check_http.c:1869 | ||
1708 | msgid "" | 1271 | msgid "" |
1709 | "the 5-second threshold, a STATE_WARNING will be returned. When an error " | 1272 | "the 5-second threshold, a STATE_WARNING will be returned. When an error " |
1710 | "occurs," | 1273 | "occurs," |
1711 | msgstr "" | 1274 | msgstr "" |
1712 | 1275 | ||
1713 | #: plugins/check_http.c:1851 | ||
1714 | msgid "a STATE_CRITICAL will be returned." | 1276 | msgid "a STATE_CRITICAL will be returned." |
1715 | msgstr "" | 1277 | msgstr "" |
1716 | 1278 | ||
1717 | #: plugins/check_http.c:1854 | ||
1718 | msgid "" | 1279 | msgid "" |
1719 | "When the certificate of 'www.verisign.com' is valid for more than 14 days," | 1280 | "When the certificate of 'www.verisign.com' is valid for more than 14 days," |
1720 | msgstr "" | 1281 | msgstr "" |
1721 | 1282 | ||
1722 | #: plugins/check_http.c:1855 plugins/check_http.c:1861 | ||
1723 | msgid "" | 1283 | msgid "" |
1724 | "a STATE_OK is returned. When the certificate is still valid, but for less " | 1284 | "a STATE_OK is returned. When the certificate is still valid, but for less " |
1725 | "than" | 1285 | "than" |
1726 | msgstr "" | 1286 | msgstr "" |
1727 | 1287 | ||
1728 | #: plugins/check_http.c:1856 | ||
1729 | msgid "" | 1288 | msgid "" |
1730 | "14 days, a STATE_WARNING is returned. A STATE_CRITICAL will be returned when" | 1289 | "14 days, a STATE_WARNING is returned. A STATE_CRITICAL will be returned when" |
1731 | msgstr "" | 1290 | msgstr "" |
1732 | 1291 | ||
1733 | #: plugins/check_http.c:1857 | ||
1734 | msgid "the certificate is expired." | 1292 | msgid "the certificate is expired." |
1735 | msgstr "" | 1293 | msgstr "" |
1736 | 1294 | ||
1737 | #: plugins/check_http.c:1860 | ||
1738 | msgid "" | 1295 | msgid "" |
1739 | "When the certificate of 'www.verisign.com' is valid for more than 30 days," | 1296 | "When the certificate of 'www.verisign.com' is valid for more than 30 days," |
1740 | msgstr "" | 1297 | msgstr "" |
1741 | 1298 | ||
1742 | #: plugins/check_http.c:1862 | ||
1743 | msgid "30 days, but more than 14 days, a STATE_WARNING is returned." | 1299 | msgid "30 days, but more than 14 days, a STATE_WARNING is returned." |
1744 | msgstr "" | 1300 | msgstr "" |
1745 | 1301 | ||
1746 | #: plugins/check_http.c:1863 | ||
1747 | msgid "" | 1302 | msgid "" |
1748 | "A STATE_CRITICAL will be returned when certificate expires in less than 14 " | 1303 | "A STATE_CRITICAL will be returned when certificate expires in less than 14 " |
1749 | "days" | 1304 | "days" |
1750 | msgstr "" | 1305 | msgstr "" |
1751 | 1306 | ||
1752 | #: plugins/check_http.c:1866 | ||
1753 | msgid "" | 1307 | msgid "" |
1754 | "check_http -I 192.168.100.35 -p 80 -u https://www.verisign.com/ -S -j " | 1308 | "check_http -I 192.168.100.35 -p 80 -u https://www.verisign.com/ -S -j " |
1755 | "CONNECT -H www.verisign.com " | 1309 | "CONNECT -H www.verisign.com " |
1756 | msgstr "" | 1310 | msgstr "" |
1757 | 1311 | ||
1758 | #: plugins/check_http.c:1867 | ||
1759 | msgid "" | 1312 | msgid "" |
1760 | "all these options are needed: -I <proxy> -p <proxy-port> -u <check-url> -" | 1313 | "all these options are needed: -I <proxy> -p <proxy-port> -u <check-url> -" |
1761 | "S(sl) -j CONNECT -H <webserver>" | 1314 | "S(sl) -j CONNECT -H <webserver>" |
1762 | msgstr "" | 1315 | msgstr "" |
1763 | 1316 | ||
1764 | #: plugins/check_http.c:1870 | ||
1765 | msgid "" | 1317 | msgid "" |
1766 | "a STATE_CRITICAL will be returned. By adding a colon to the method you can " | 1318 | "a STATE_CRITICAL will be returned. By adding a colon to the method you can " |
1767 | "set the method used" | 1319 | "set the method used" |
1768 | msgstr "" | 1320 | msgstr "" |
1769 | 1321 | ||
1770 | #: plugins/check_http.c:1871 | ||
1771 | msgid "inside the proxied connection: -j CONNECT:POST" | 1322 | msgid "inside the proxied connection: -j CONNECT:POST" |
1772 | msgstr "" | 1323 | msgstr "" |
1773 | 1324 | ||
1774 | #: plugins/check_ldap.c:142 | ||
1775 | #, c-format | 1325 | #, c-format |
1776 | msgid "Could not connect to the server at port %i\n" | 1326 | msgid "Could not connect to the server at port %i\n" |
1777 | msgstr "" | 1327 | msgstr "" |
1778 | 1328 | ||
1779 | #: plugins/check_ldap.c:151 | ||
1780 | #, c-format | 1329 | #, c-format |
1781 | msgid "Could not set protocol version %d\n" | 1330 | msgid "Could not set protocol version %d\n" |
1782 | msgstr "" | 1331 | msgstr "" |
1783 | 1332 | ||
1784 | #: plugins/check_ldap.c:166 | ||
1785 | #, c-format | 1333 | #, c-format |
1786 | msgid "Could not init TLS at port %i!\n" | 1334 | msgid "Could not init TLS at port %i!\n" |
1787 | msgstr "" | 1335 | msgstr "" |
1788 | 1336 | ||
1789 | #: plugins/check_ldap.c:170 | ||
1790 | #, c-format | 1337 | #, c-format |
1791 | msgid "TLS not supported by the libraries!\n" | 1338 | msgid "TLS not supported by the libraries!\n" |
1792 | msgstr "" | 1339 | msgstr "" |
1793 | 1340 | ||
1794 | #: plugins/check_ldap.c:190 | ||
1795 | #, c-format | 1341 | #, c-format |
1796 | msgid "Could not init startTLS at port %i!\n" | 1342 | msgid "Could not init startTLS at port %i!\n" |
1797 | msgstr "" | 1343 | msgstr "" |
1798 | 1344 | ||
1799 | #: plugins/check_ldap.c:194 | ||
1800 | #, c-format | 1345 | #, c-format |
1801 | msgid "startTLS not supported by the library, needs LDAPv3!\n" | 1346 | msgid "startTLS not supported by the library, needs LDAPv3!\n" |
1802 | msgstr "" | 1347 | msgstr "" |
1803 | 1348 | ||
1804 | #: plugins/check_ldap.c:204 | ||
1805 | #, c-format | 1349 | #, c-format |
1806 | msgid "Could not bind to the LDAP server\n" | 1350 | msgid "Could not bind to the LDAP server\n" |
1807 | msgstr "" | 1351 | msgstr "" |
1808 | 1352 | ||
1809 | #: plugins/check_ldap.c:213 | ||
1810 | #, c-format | 1353 | #, c-format |
1811 | msgid "Could not search/find objectclasses in %s\n" | 1354 | msgid "Could not search/find objectclasses in %s\n" |
1812 | msgstr "" | 1355 | msgstr "" |
1813 | 1356 | ||
1814 | #: plugins/check_ldap.c:252 | ||
1815 | #, c-format | 1357 | #, c-format |
1816 | msgid "LDAP %s - found %d entries in %.3f seconds|%s %s\n" | 1358 | msgid "LDAP %s - found %d entries in %.3f seconds|%s %s\n" |
1817 | msgstr "" | 1359 | msgstr "" |
1818 | 1360 | ||
1819 | #: plugins/check_ldap.c:265 | ||
1820 | #, c-format | 1361 | #, c-format |
1821 | msgid "LDAP %s - %.3f seconds response time|%s\n" | 1362 | msgid "LDAP %s - %.3f seconds response time|%s\n" |
1822 | msgstr "" | 1363 | msgstr "" |
1823 | 1364 | ||
1824 | #: plugins/check_ldap.c:386 plugins/check_ldap.c:394 | ||
1825 | #, c-format | 1365 | #, c-format |
1826 | msgid "%s cannot be combined with %s" | 1366 | msgid "%s cannot be combined with %s" |
1827 | msgstr "" | 1367 | msgstr "" |
1828 | 1368 | ||
1829 | #: plugins/check_ldap.c:426 | ||
1830 | msgid "Please specify the host name\n" | 1369 | msgid "Please specify the host name\n" |
1831 | msgstr "" | 1370 | msgstr "" |
1832 | 1371 | ||
1833 | #: plugins/check_ldap.c:429 | ||
1834 | msgid "Please specify the LDAP base\n" | 1372 | msgid "Please specify the LDAP base\n" |
1835 | msgstr "" | 1373 | msgstr "" |
1836 | 1374 | ||
1837 | #: plugins/check_ldap.c:465 | ||
1838 | msgid "ldap attribute to search (default: \"(objectclass=*)\"" | 1375 | msgid "ldap attribute to search (default: \"(objectclass=*)\"" |
1839 | msgstr "" | 1376 | msgstr "" |
1840 | 1377 | ||
1841 | #: plugins/check_ldap.c:467 | ||
1842 | msgid "ldap base (eg. ou=my unit, o=my org, c=at" | 1378 | msgid "ldap base (eg. ou=my unit, o=my org, c=at" |
1843 | msgstr "" | 1379 | msgstr "" |
1844 | 1380 | ||
1845 | #: plugins/check_ldap.c:469 | ||
1846 | msgid "ldap bind DN (if required)" | 1381 | msgid "ldap bind DN (if required)" |
1847 | msgstr "" | 1382 | msgstr "" |
1848 | 1383 | ||
1849 | #: plugins/check_ldap.c:471 | ||
1850 | msgid "" | 1384 | msgid "" |
1851 | "ldap password (if required, or set the password through environment variable " | 1385 | "ldap password (if required, or set the password through environment variable " |
1852 | "'LDAP_PASSWORD')" | 1386 | "'LDAP_PASSWORD')" |
1853 | msgstr "" | 1387 | msgstr "" |
1854 | 1388 | ||
1855 | #: plugins/check_ldap.c:473 | ||
1856 | msgid "use starttls mechanism introduced in protocol version 3" | 1389 | msgid "use starttls mechanism introduced in protocol version 3" |
1857 | msgstr "" | 1390 | msgstr "" |
1858 | 1391 | ||
1859 | #: plugins/check_ldap.c:475 | ||
1860 | msgid "use ldaps (ldap v2 ssl method). this also sets the default port to" | 1392 | msgid "use ldaps (ldap v2 ssl method). this also sets the default port to" |
1861 | msgstr "" | 1393 | msgstr "" |
1862 | 1394 | ||
1863 | #: plugins/check_ldap.c:479 | ||
1864 | msgid "use ldap protocol version 2" | 1395 | msgid "use ldap protocol version 2" |
1865 | msgstr "" | 1396 | msgstr "" |
1866 | 1397 | ||
1867 | #: plugins/check_ldap.c:481 | ||
1868 | msgid "use ldap protocol version 3" | 1398 | msgid "use ldap protocol version 3" |
1869 | msgstr "" | 1399 | msgstr "" |
1870 | 1400 | ||
1871 | #: plugins/check_ldap.c:482 | ||
1872 | msgid "default protocol version:" | 1401 | msgid "default protocol version:" |
1873 | msgstr "" | 1402 | msgstr "" |
1874 | 1403 | ||
1875 | #: plugins/check_ldap.c:488 | ||
1876 | msgid "Number of found entries to result in warning status" | 1404 | msgid "Number of found entries to result in warning status" |
1877 | msgstr "" | 1405 | msgstr "" |
1878 | 1406 | ||
1879 | #: plugins/check_ldap.c:490 | ||
1880 | msgid "Number of found entries to result in critical status" | 1407 | msgid "Number of found entries to result in critical status" |
1881 | msgstr "" | 1408 | msgstr "" |
1882 | 1409 | ||
1883 | #: plugins/check_ldap.c:498 | ||
1884 | msgid "If this plugin is called via 'check_ldaps', method 'STARTTLS' will be" | 1410 | msgid "If this plugin is called via 'check_ldaps', method 'STARTTLS' will be" |
1885 | msgstr "" | 1411 | msgstr "" |
1886 | 1412 | ||
1887 | #: plugins/check_ldap.c:499 | ||
1888 | #, c-format | 1413 | #, c-format |
1889 | msgid "" | 1414 | msgid "" |
1890 | " implied (using default port %i) unless --port=636 is specified. In that " | 1415 | " implied (using default port %i) unless --port=636 is specified. In that " |
1891 | "case\n" | 1416 | "case\n" |
1892 | msgstr "" | 1417 | msgstr "" |
1893 | 1418 | ||
1894 | #: plugins/check_ldap.c:500 | ||
1895 | msgid "'SSL on connect' will be used no matter how the plugin was called." | 1419 | msgid "'SSL on connect' will be used no matter how the plugin was called." |
1896 | msgstr "" | 1420 | msgstr "" |
1897 | 1421 | ||
1898 | #: plugins/check_ldap.c:501 | ||
1899 | msgid "" | 1422 | msgid "" |
1900 | "This detection is deprecated, please use 'check_ldap' with the '--starttls' " | 1423 | "This detection is deprecated, please use 'check_ldap' with the '--starttls' " |
1901 | "or '--ssl' flags" | 1424 | "or '--ssl' flags" |
1902 | msgstr "" | 1425 | msgstr "" |
1903 | 1426 | ||
1904 | #: plugins/check_ldap.c:502 | ||
1905 | msgid "to define the behaviour explicitly instead." | 1427 | msgid "to define the behaviour explicitly instead." |
1906 | msgstr "" | 1428 | msgstr "" |
1907 | 1429 | ||
1908 | #: plugins/check_ldap.c:503 | ||
1909 | msgid "The parameters --warn-entries and --crit-entries are optional." | 1430 | msgid "The parameters --warn-entries and --crit-entries are optional." |
1910 | msgstr "" | 1431 | msgstr "" |
1911 | 1432 | ||
1912 | #: plugins/check_load.c:93 | ||
1913 | msgid "Warning threshold must be float or float triplet!\n" | 1433 | msgid "Warning threshold must be float or float triplet!\n" |
1914 | msgstr "" | 1434 | msgstr "" |
1915 | 1435 | ||
1916 | #: plugins/check_load.c:138 plugins/check_load.c:154 | ||
1917 | #, c-format | 1436 | #, c-format |
1918 | msgid "Error opening %s\n" | 1437 | msgid "Error opening %s\n" |
1919 | msgstr "" | 1438 | msgstr "" |
1920 | 1439 | ||
1921 | #: plugins/check_load.c:169 | ||
1922 | #, c-format | 1440 | #, c-format |
1923 | msgid "could not parse load from uptime %s: %d\n" | 1441 | msgid "could not parse load from uptime %s: %d\n" |
1924 | msgstr "" | 1442 | msgstr "" |
1925 | 1443 | ||
1926 | #: plugins/check_load.c:175 | ||
1927 | #, c-format | 1444 | #, c-format |
1928 | msgid "Error code %d returned in %s\n" | 1445 | msgid "Error code %d returned in %s\n" |
1929 | msgstr "" | 1446 | msgstr "" |
1930 | 1447 | ||
1931 | #: plugins/check_load.c:183 | ||
1932 | #, c-format | 1448 | #, c-format |
1933 | msgid "Error in getloadavg()\n" | 1449 | msgid "Error in getloadavg()\n" |
1934 | msgstr "" | 1450 | msgstr "" |
1935 | 1451 | ||
1936 | #: plugins/check_load.c:186 plugins/check_load.c:188 | ||
1937 | #, c-format | 1452 | #, c-format |
1938 | msgid "Error processing %s\n" | 1453 | msgid "Error processing %s\n" |
1939 | msgstr "" | 1454 | msgstr "" |
1940 | 1455 | ||
1941 | #: plugins/check_load.c:197 plugins/check_load.c:212 | ||
1942 | #, c-format | 1456 | #, c-format |
1943 | msgid "load average: %.2f, %.2f, %.2f" | 1457 | msgid "load average: %.2f, %.2f, %.2f" |
1944 | msgstr "" | 1458 | msgstr "" |
1945 | 1459 | ||
1946 | #: plugins/check_load.c:327 | ||
1947 | #, c-format | 1460 | #, c-format |
1948 | msgid "Critical threshold for %d-minute load average is not specified\n" | 1461 | msgid "Critical threshold for %d-minute load average is not specified\n" |
1949 | msgstr "" | 1462 | msgstr "" |
1950 | 1463 | ||
1951 | #: plugins/check_load.c:329 | ||
1952 | #, c-format | 1464 | #, c-format |
1953 | msgid "Warning threshold for %d-minute load average is not specified\n" | 1465 | msgid "Warning threshold for %d-minute load average is not specified\n" |
1954 | msgstr "" | 1466 | msgstr "" |
1955 | 1467 | ||
1956 | #: plugins/check_load.c:331 | ||
1957 | #, c-format | 1468 | #, c-format |
1958 | msgid "" | 1469 | msgid "" |
1959 | "Parameter inconsistency: %d-minute \"warning load\" is greater than " | 1470 | "Parameter inconsistency: %d-minute \"warning load\" is greater than " |
1960 | "\"critical load\"\n" | 1471 | "\"critical load\"\n" |
1961 | msgstr "" | 1472 | msgstr "" |
1962 | 1473 | ||
1963 | #: plugins/check_load.c:346 | ||
1964 | #, c-format | 1474 | #, c-format |
1965 | msgid "This plugin tests the current system load average." | 1475 | msgid "This plugin tests the current system load average." |
1966 | msgstr "" | 1476 | msgstr "" |
1967 | 1477 | ||
1968 | #: plugins/check_load.c:356 | ||
1969 | msgid "Exit with WARNING status if load average exceeds WLOADn" | 1478 | msgid "Exit with WARNING status if load average exceeds WLOADn" |
1970 | msgstr "" | 1479 | msgstr "" |
1971 | 1480 | ||
1972 | #: plugins/check_load.c:358 | ||
1973 | msgid "Exit with CRITICAL status if load average exceed CLOADn" | 1481 | msgid "Exit with CRITICAL status if load average exceed CLOADn" |
1974 | msgstr "" | 1482 | msgstr "" |
1975 | 1483 | ||
1976 | #: plugins/check_load.c:359 | ||
1977 | msgid "the load average format is the same used by \"uptime\" and \"w\"" | 1484 | msgid "the load average format is the same used by \"uptime\" and \"w\"" |
1978 | msgstr "" | 1485 | msgstr "" |
1979 | 1486 | ||
1980 | #: plugins/check_load.c:361 | ||
1981 | msgid "Divide the load averages by the number of CPUs (when possible)" | 1487 | msgid "Divide the load averages by the number of CPUs (when possible)" |
1982 | msgstr "" | 1488 | msgstr "" |
1983 | 1489 | ||
1984 | #: plugins/check_load.c:363 | ||
1985 | msgid "Number of processes to show when printing the top consuming processes." | 1490 | msgid "Number of processes to show when printing the top consuming processes." |
1986 | msgstr "" | 1491 | msgstr "" |
1987 | 1492 | ||
1988 | #: plugins/check_load.c:364 | ||
1989 | msgid "NUMBER_OF_PROCS=0 disables this feature. Default value is 0" | 1493 | msgid "NUMBER_OF_PROCS=0 disables this feature. Default value is 0" |
1990 | msgstr "" | 1494 | msgstr "" |
1991 | 1495 | ||
1992 | #: plugins/check_load.c:401 | ||
1993 | #, c-format | 1496 | #, c-format |
1994 | msgid "'%s' exited with non-zero status.\n" | 1497 | msgid "'%s' exited with non-zero status.\n" |
1995 | msgstr "" | 1498 | msgstr "" |
1996 | 1499 | ||
1997 | #: plugins/check_load.c:405 | ||
1998 | #, c-format | 1500 | #, c-format |
1999 | msgid "some error occurred getting procs list.\n" | 1501 | msgid "some error occurred getting procs list.\n" |
2000 | msgstr "" | 1502 | msgstr "" |
2001 | 1503 | ||
2002 | #: plugins/check_mrtg.c:75 | ||
2003 | msgid "Could not parse arguments\n" | 1504 | msgid "Could not parse arguments\n" |
2004 | msgstr "" | 1505 | msgstr "" |
2005 | 1506 | ||
2006 | #: plugins/check_mrtg.c:80 | ||
2007 | #, c-format | 1507 | #, c-format |
2008 | msgid "Unable to open MRTG log file\n" | 1508 | msgid "Unable to open MRTG log file\n" |
2009 | msgstr "" | 1509 | msgstr "" |
2010 | 1510 | ||
2011 | #: plugins/check_mrtg.c:127 | ||
2012 | #, c-format | 1511 | #, c-format |
2013 | msgid "Unable to process MRTG log file\n" | 1512 | msgid "Unable to process MRTG log file\n" |
2014 | msgstr "" | 1513 | msgstr "" |
2015 | 1514 | ||
2016 | #: plugins/check_mrtg.c:135 plugins/check_mrtgtraf.c:136 | ||
2017 | #, c-format | 1515 | #, c-format |
2018 | msgid "MRTG data has expired (%d minutes old)\n" | 1516 | msgid "MRTG data has expired (%d minutes old)\n" |
2019 | msgstr "" | 1517 | msgstr "" |
2020 | 1518 | ||
2021 | #: plugins/check_mrtg.c:152 plugins/check_mrtgtraf.c:195 | ||
2022 | #: plugins/check_mrtgtraf.c:196 | ||
2023 | msgid "Avg" | 1519 | msgid "Avg" |
2024 | msgstr "" | 1520 | msgstr "" |
2025 | 1521 | ||
2026 | #: plugins/check_mrtg.c:152 plugins/check_mrtgtraf.c:195 | ||
2027 | #: plugins/check_mrtgtraf.c:196 | ||
2028 | msgid "Max" | 1522 | msgid "Max" |
2029 | msgstr "" | 1523 | msgstr "" |
2030 | 1524 | ||
2031 | #: plugins/check_mrtg.c:221 | ||
2032 | msgid "Invalid variable number" | 1525 | msgid "Invalid variable number" |
2033 | msgstr "" | 1526 | msgstr "" |
2034 | 1527 | ||
2035 | #: plugins/check_mrtg.c:256 | ||
2036 | #, c-format | 1528 | #, c-format |
2037 | msgid "" | 1529 | msgid "" |
2038 | "%s is not a valid expiration time\n" | 1530 | "%s is not a valid expiration time\n" |
2039 | "Use '%s -h' for additional help\n" | 1531 | "Use '%s -h' for additional help\n" |
2040 | msgstr "" | 1532 | msgstr "" |
2041 | 1533 | ||
2042 | #: plugins/check_mrtg.c:273 | ||
2043 | msgid "Invalid variable number\n" | 1534 | msgid "Invalid variable number\n" |
2044 | msgstr "" | 1535 | msgstr "" |
2045 | 1536 | ||
2046 | #: plugins/check_mrtg.c:300 | ||
2047 | msgid "You must supply the variable number" | 1537 | msgid "You must supply the variable number" |
2048 | msgstr "" | 1538 | msgstr "" |
2049 | 1539 | ||
2050 | #: plugins/check_mrtg.c:321 | ||
2051 | msgid "" | 1540 | msgid "" |
2052 | "This plugin will check either the average or maximum value of one of the" | 1541 | "This plugin will check either the average or maximum value of one of the" |
2053 | msgstr "" | 1542 | msgstr "" |
2054 | 1543 | ||
2055 | #: plugins/check_mrtg.c:322 | ||
2056 | msgid "two variables recorded in an MRTG log file." | 1544 | msgid "two variables recorded in an MRTG log file." |
2057 | msgstr "" | 1545 | msgstr "" |
2058 | 1546 | ||
2059 | #: plugins/check_mrtg.c:332 | ||
2060 | msgid "The MRTG log file containing the data you want to monitor" | 1547 | msgid "The MRTG log file containing the data you want to monitor" |
2061 | msgstr "" | 1548 | msgstr "" |
2062 | 1549 | ||
2063 | #: plugins/check_mrtg.c:334 | ||
2064 | msgid "Minutes before MRTG data is considered to be too old" | 1550 | msgid "Minutes before MRTG data is considered to be too old" |
2065 | msgstr "" | 1551 | msgstr "" |
2066 | 1552 | ||
2067 | #: plugins/check_mrtg.c:336 | ||
2068 | msgid "Should we check average or maximum values?" | 1553 | msgid "Should we check average or maximum values?" |
2069 | msgstr "" | 1554 | msgstr "" |
2070 | 1555 | ||
2071 | #: plugins/check_mrtg.c:338 | ||
2072 | msgid "Which variable set should we inspect? (1 or 2)" | 1556 | msgid "Which variable set should we inspect? (1 or 2)" |
2073 | msgstr "" | 1557 | msgstr "" |
2074 | 1558 | ||
2075 | #: plugins/check_mrtg.c:340 | ||
2076 | msgid "Threshold value for data to result in WARNING status" | 1559 | msgid "Threshold value for data to result in WARNING status" |
2077 | msgstr "" | 1560 | msgstr "" |
2078 | 1561 | ||
2079 | #: plugins/check_mrtg.c:342 | ||
2080 | msgid "Threshold value for data to result in CRITICAL status" | 1562 | msgid "Threshold value for data to result in CRITICAL status" |
2081 | msgstr "" | 1563 | msgstr "" |
2082 | 1564 | ||
2083 | #: plugins/check_mrtg.c:344 | ||
2084 | msgid "Type label for data (Examples: Conns, \"Processor Load\", In, Out)" | 1565 | msgid "Type label for data (Examples: Conns, \"Processor Load\", In, Out)" |
2085 | msgstr "" | 1566 | msgstr "" |
2086 | 1567 | ||
2087 | #: plugins/check_mrtg.c:346 | ||
2088 | msgid "Option units label for data (Example: Packets/Sec, Errors/Sec," | 1568 | msgid "Option units label for data (Example: Packets/Sec, Errors/Sec," |
2089 | msgstr "" | 1569 | msgstr "" |
2090 | 1570 | ||
2091 | #: plugins/check_mrtg.c:347 | ||
2092 | #, c-format | 1571 | #, c-format |
2093 | msgid "\"Bytes Per Second\", \"%% Utilization\")" | 1572 | msgid "\"Bytes Per Second\", \"%% Utilization\")" |
2094 | msgstr "" | 1573 | msgstr "" |
2095 | 1574 | ||
2096 | #: plugins/check_mrtg.c:350 | ||
2097 | msgid "" | 1575 | msgid "" |
2098 | "If the value exceeds the <vwl> threshold, a WARNING status is returned. If" | 1576 | "If the value exceeds the <vwl> threshold, a WARNING status is returned. If" |
2099 | msgstr "" | 1577 | msgstr "" |
2100 | 1578 | ||
2101 | #: plugins/check_mrtg.c:351 | ||
2102 | msgid "" | 1579 | msgid "" |
2103 | "the value exceeds the <vcl> threshold, a CRITICAL status is returned. If" | 1580 | "the value exceeds the <vcl> threshold, a CRITICAL status is returned. If" |
2104 | msgstr "" | 1581 | msgstr "" |
2105 | 1582 | ||
2106 | #: plugins/check_mrtg.c:352 | ||
2107 | msgid "the data in the log file is older than <expire_minutes> old, a WARNING" | 1583 | msgid "the data in the log file is older than <expire_minutes> old, a WARNING" |
2108 | msgstr "" | 1584 | msgstr "" |
2109 | 1585 | ||
2110 | #: plugins/check_mrtg.c:353 | ||
2111 | msgid "status is returned and a warning message is printed." | 1586 | msgid "status is returned and a warning message is printed." |
2112 | msgstr "" | 1587 | msgstr "" |
2113 | 1588 | ||
2114 | #: plugins/check_mrtg.c:356 | ||
2115 | msgid "" | 1589 | msgid "" |
2116 | "This plugin is useful for monitoring MRTG data that does not correspond to" | 1590 | "This plugin is useful for monitoring MRTG data that does not correspond to" |
2117 | msgstr "" | 1591 | msgstr "" |
2118 | 1592 | ||
2119 | #: plugins/check_mrtg.c:357 | ||
2120 | msgid "" | 1593 | msgid "" |
2121 | "bandwidth usage. (Use the check_mrtgtraf plugin for monitoring bandwidth)." | 1594 | "bandwidth usage. (Use the check_mrtgtraf plugin for monitoring bandwidth)." |
2122 | msgstr "" | 1595 | msgstr "" |
2123 | 1596 | ||
2124 | #: plugins/check_mrtg.c:358 | ||
2125 | msgid "" | 1597 | msgid "" |
2126 | "It can be used to monitor any kind of data that MRTG is monitoring - errors," | 1598 | "It can be used to monitor any kind of data that MRTG is monitoring - errors," |
2127 | msgstr "" | 1599 | msgstr "" |
2128 | 1600 | ||
2129 | #: plugins/check_mrtg.c:359 | ||
2130 | msgid "" | 1601 | msgid "" |
2131 | "packets/sec, etc. I use MRTG in conjunction with the Novell NLM that allows" | 1602 | "packets/sec, etc. I use MRTG in conjunction with the Novell NLM that allows" |
2132 | msgstr "" | 1603 | msgstr "" |
2133 | 1604 | ||
2134 | #: plugins/check_mrtg.c:360 | ||
2135 | msgid "" | 1605 | msgid "" |
2136 | "me to track processor utilization, user connections, drive space, etc and" | 1606 | "me to track processor utilization, user connections, drive space, etc and" |
2137 | msgstr "" | 1607 | msgstr "" |
2138 | 1608 | ||
2139 | #: plugins/check_mrtg.c:361 | ||
2140 | msgid "this plugin works well for monitoring that kind of data as well." | 1609 | msgid "this plugin works well for monitoring that kind of data as well." |
2141 | msgstr "" | 1610 | msgstr "" |
2142 | 1611 | ||
2143 | #: plugins/check_mrtg.c:364 | ||
2144 | msgid "" | 1612 | msgid "" |
2145 | "- This plugin only monitors one of the two variables stored in the MRTG log" | 1613 | "- This plugin only monitors one of the two variables stored in the MRTG log" |
2146 | msgstr "" | 1614 | msgstr "" |
2147 | 1615 | ||
2148 | #: plugins/check_mrtg.c:365 | ||
2149 | msgid "file. If you want to monitor both values you will have to define two" | 1616 | msgid "file. If you want to monitor both values you will have to define two" |
2150 | msgstr "" | 1617 | msgstr "" |
2151 | 1618 | ||
2152 | #: plugins/check_mrtg.c:366 | ||
2153 | msgid "commands with different values for the <variable> argument. Of course," | 1619 | msgid "commands with different values for the <variable> argument. Of course," |
2154 | msgstr "" | 1620 | msgstr "" |
2155 | 1621 | ||
2156 | #: plugins/check_mrtg.c:367 | ||
2157 | msgid "you can always hack the code to make this plugin work for you..." | 1622 | msgid "you can always hack the code to make this plugin work for you..." |
2158 | msgstr "" | 1623 | msgstr "" |
2159 | 1624 | ||
2160 | #: plugins/check_mrtg.c:368 | ||
2161 | msgid "" | 1625 | msgid "" |
2162 | "- MRTG stands for the Multi Router Traffic Grapher. It can be downloaded " | 1626 | "- MRTG stands for the Multi Router Traffic Grapher. It can be downloaded " |
2163 | "from" | 1627 | "from" |
2164 | msgstr "" | 1628 | msgstr "" |
2165 | 1629 | ||
2166 | #: plugins/check_mrtgtraf.c:88 | ||
2167 | msgid "Unable to open MRTG log file" | 1630 | msgid "Unable to open MRTG log file" |
2168 | msgstr "" | 1631 | msgstr "" |
2169 | 1632 | ||
2170 | #: plugins/check_mrtgtraf.c:130 | ||
2171 | msgid "Unable to process MRTG log file" | 1633 | msgid "Unable to process MRTG log file" |
2172 | msgstr "" | 1634 | msgstr "" |
2173 | 1635 | ||
2174 | #: plugins/check_mrtgtraf.c:194 | ||
2175 | #, c-format | 1636 | #, c-format |
2176 | msgid "%s. In = %0.1f %s/s, %s. Out = %0.1f %s/s|%s %s\n" | 1637 | msgid "%s. In = %0.1f %s/s, %s. Out = %0.1f %s/s|%s %s\n" |
2177 | msgstr "" | 1638 | msgstr "" |
2178 | 1639 | ||
2179 | #: plugins/check_mrtgtraf.c:207 | ||
2180 | #, c-format | 1640 | #, c-format |
2181 | msgid "Traffic %s - %s\n" | 1641 | msgid "Traffic %s - %s\n" |
2182 | msgstr "" | 1642 | msgstr "" |
2183 | 1643 | ||
2184 | #: plugins/check_mrtgtraf.c:335 | ||
2185 | msgid "" | 1644 | msgid "" |
2186 | "This plugin will check the incoming/outgoing transfer rates of a router," | 1645 | "This plugin will check the incoming/outgoing transfer rates of a router," |
2187 | msgstr "" | 1646 | msgstr "" |
2188 | 1647 | ||
2189 | #: plugins/check_mrtgtraf.c:336 | ||
2190 | msgid "switch, etc recorded in an MRTG log. If the newest log entry is older" | 1648 | msgid "switch, etc recorded in an MRTG log. If the newest log entry is older" |
2191 | msgstr "" | 1649 | msgstr "" |
2192 | 1650 | ||
2193 | #: plugins/check_mrtgtraf.c:337 | ||
2194 | msgid "than <expire_minutes>, a WARNING status is returned. If either the" | 1651 | msgid "than <expire_minutes>, a WARNING status is returned. If either the" |
2195 | msgstr "" | 1652 | msgstr "" |
2196 | 1653 | ||
2197 | #: plugins/check_mrtgtraf.c:338 | ||
2198 | msgid "incoming or outgoing rates exceed the <icl> or <ocl> thresholds (in" | 1654 | msgid "incoming or outgoing rates exceed the <icl> or <ocl> thresholds (in" |
2199 | msgstr "" | 1655 | msgstr "" |
2200 | 1656 | ||
2201 | #: plugins/check_mrtgtraf.c:339 | ||
2202 | msgid "Bytes/sec), a CRITICAL status results. If either of the rates exceed" | 1657 | msgid "Bytes/sec), a CRITICAL status results. If either of the rates exceed" |
2203 | msgstr "" | 1658 | msgstr "" |
2204 | 1659 | ||
2205 | #: plugins/check_mrtgtraf.c:340 | ||
2206 | msgid "the <iwl> or <owl> thresholds (in Bytes/sec), a WARNING status results." | 1660 | msgid "the <iwl> or <owl> thresholds (in Bytes/sec), a WARNING status results." |
2207 | msgstr "" | 1661 | msgstr "" |
2208 | 1662 | ||
2209 | #: plugins/check_mrtgtraf.c:350 | ||
2210 | msgid "File to read log from" | 1663 | msgid "File to read log from" |
2211 | msgstr "" | 1664 | msgstr "" |
2212 | 1665 | ||
2213 | #: plugins/check_mrtgtraf.c:352 | ||
2214 | msgid "Minutes after which log expires" | 1666 | msgid "Minutes after which log expires" |
2215 | msgstr "" | 1667 | msgstr "" |
2216 | 1668 | ||
2217 | #: plugins/check_mrtgtraf.c:354 | ||
2218 | msgid "Test average or maximum" | 1669 | msgid "Test average or maximum" |
2219 | msgstr "" | 1670 | msgstr "" |
2220 | 1671 | ||
2221 | #: plugins/check_mrtgtraf.c:356 | ||
2222 | msgid "Warning threshold pair <incoming>,<outgoing>" | 1672 | msgid "Warning threshold pair <incoming>,<outgoing>" |
2223 | msgstr "" | 1673 | msgstr "" |
2224 | 1674 | ||
2225 | #: plugins/check_mrtgtraf.c:358 | ||
2226 | msgid "Critical threshold pair <incoming>,<outgoing>" | 1675 | msgid "Critical threshold pair <incoming>,<outgoing>" |
2227 | msgstr "" | 1676 | msgstr "" |
2228 | 1677 | ||
2229 | #: plugins/check_mrtgtraf.c:362 | ||
2230 | msgid "" | 1678 | msgid "" |
2231 | "- MRTG stands for Multi Router Traffic Grapher. It can be downloaded from" | 1679 | "- MRTG stands for Multi Router Traffic Grapher. It can be downloaded from" |
2232 | msgstr "" | 1680 | msgstr "" |
2233 | 1681 | ||
2234 | #: plugins/check_mrtgtraf.c:364 | ||
2235 | msgid "- While MRTG can monitor things other than traffic rates, this" | 1682 | msgid "- While MRTG can monitor things other than traffic rates, this" |
2236 | msgstr "" | 1683 | msgstr "" |
2237 | 1684 | ||
2238 | #: plugins/check_mrtgtraf.c:365 | ||
2239 | msgid " plugin probably won't work with much else without modification." | 1685 | msgid " plugin probably won't work with much else without modification." |
2240 | msgstr "" | 1686 | msgstr "" |
2241 | 1687 | ||
2242 | #: plugins/check_mrtgtraf.c:366 | ||
2243 | msgid "- The calculated i/o rates are a little off from what MRTG actually" | 1688 | msgid "- The calculated i/o rates are a little off from what MRTG actually" |
2244 | msgstr "" | 1689 | msgstr "" |
2245 | 1690 | ||
2246 | #: plugins/check_mrtgtraf.c:367 | ||
2247 | msgid " reports. I'm not sure why this is right now, but will look into it" | 1691 | msgid " reports. I'm not sure why this is right now, but will look into it" |
2248 | msgstr "" | 1692 | msgstr "" |
2249 | 1693 | ||
2250 | #: plugins/check_mrtgtraf.c:368 | ||
2251 | msgid " for future enhancements of this plugin." | 1694 | msgid " for future enhancements of this plugin." |
2252 | msgstr "" | 1695 | msgstr "" |
2253 | 1696 | ||
2254 | #: plugins/check_mrtgtraf.c:378 | ||
2255 | #, c-format | 1697 | #, c-format |
2256 | msgid "Usage" | 1698 | msgid "Usage" |
2257 | msgstr "" | 1699 | msgstr "" |
2258 | 1700 | ||
2259 | #: plugins/check_mysql.c:185 | ||
2260 | #, c-format | 1701 | #, c-format |
2261 | msgid "status store_result error: %s\n" | 1702 | msgid "status store_result error: %s\n" |
2262 | msgstr "" | 1703 | msgstr "" |
2263 | 1704 | ||
2264 | #: plugins/check_mysql.c:216 | ||
2265 | #, c-format | 1705 | #, c-format |
2266 | msgid "slave query error: %s\n" | 1706 | msgid "slave query error: %s\n" |
2267 | msgstr "" | 1707 | msgstr "" |
2268 | 1708 | ||
2269 | #: plugins/check_mysql.c:223 | ||
2270 | #, c-format | 1709 | #, c-format |
2271 | msgid "slave store_result error: %s\n" | 1710 | msgid "slave store_result error: %s\n" |
2272 | msgstr "" | 1711 | msgstr "" |
2273 | 1712 | ||
2274 | #: plugins/check_mysql.c:229 | ||
2275 | msgid "No slaves defined" | 1713 | msgid "No slaves defined" |
2276 | msgstr "" | 1714 | msgstr "" |
2277 | 1715 | ||
2278 | #: plugins/check_mysql.c:237 | ||
2279 | #, c-format | 1716 | #, c-format |
2280 | msgid "slave fetch row error: %s\n" | 1717 | msgid "slave fetch row error: %s\n" |
2281 | msgstr "" | 1718 | msgstr "" |
2282 | 1719 | ||
2283 | #: plugins/check_mysql.c:242 | ||
2284 | #, c-format | 1720 | #, c-format |
2285 | msgid "Slave running: %s" | 1721 | msgid "Slave running: %s" |
2286 | msgstr "" | 1722 | msgstr "" |
2287 | 1723 | ||
2288 | #: plugins/check_mysql.c:520 | ||
2289 | msgid "This program tests connections to a MySQL server" | 1724 | msgid "This program tests connections to a MySQL server" |
2290 | msgstr "" | 1725 | msgstr "" |
2291 | 1726 | ||
2292 | #: plugins/check_mysql.c:531 | ||
2293 | msgid "Ignore authentication failure and check for mysql connectivity only" | 1727 | msgid "Ignore authentication failure and check for mysql connectivity only" |
2294 | msgstr "" | 1728 | msgstr "" |
2295 | 1729 | ||
2296 | #: plugins/check_mysql.c:534 | ||
2297 | msgid "Use the specified socket (has no effect if -H is used)" | 1730 | msgid "Use the specified socket (has no effect if -H is used)" |
2298 | msgstr "" | 1731 | msgstr "" |
2299 | 1732 | ||
2300 | #: plugins/check_mysql.c:537 | ||
2301 | msgid "Check database with indicated name" | 1733 | msgid "Check database with indicated name" |
2302 | msgstr "" | 1734 | msgstr "" |
2303 | 1735 | ||
2304 | #: plugins/check_mysql.c:539 | ||
2305 | msgid "Read from the specified client options file" | 1736 | msgid "Read from the specified client options file" |
2306 | msgstr "" | 1737 | msgstr "" |
2307 | 1738 | ||
2308 | #: plugins/check_mysql.c:541 | ||
2309 | msgid "Use a client options group" | 1739 | msgid "Use a client options group" |
2310 | msgstr "" | 1740 | msgstr "" |
2311 | 1741 | ||
2312 | #: plugins/check_mysql.c:543 | ||
2313 | msgid "Connect using the indicated username" | 1742 | msgid "Connect using the indicated username" |
2314 | msgstr "" | 1743 | msgstr "" |
2315 | 1744 | ||
2316 | #: plugins/check_mysql.c:545 | ||
2317 | msgid "Use the indicated password to authenticate the connection" | 1745 | msgid "Use the indicated password to authenticate the connection" |
2318 | msgstr "" | 1746 | msgstr "" |
2319 | 1747 | ||
2320 | #: plugins/check_mysql.c:546 | ||
2321 | msgid "IMPORTANT: THIS FORM OF AUTHENTICATION IS NOT SECURE!!!" | 1748 | msgid "IMPORTANT: THIS FORM OF AUTHENTICATION IS NOT SECURE!!!" |
2322 | msgstr "" | 1749 | msgstr "" |
2323 | 1750 | ||
2324 | #: plugins/check_mysql.c:547 | ||
2325 | msgid "Your clear-text password could be visible as a process table entry" | 1751 | msgid "Your clear-text password could be visible as a process table entry" |
2326 | msgstr "" | 1752 | msgstr "" |
2327 | 1753 | ||
2328 | #: plugins/check_mysql.c:549 | ||
2329 | msgid "Check if the slave thread is running properly." | 1754 | msgid "Check if the slave thread is running properly." |
2330 | msgstr "" | 1755 | msgstr "" |
2331 | 1756 | ||
2332 | #: plugins/check_mysql.c:551 | ||
2333 | msgid "Exit with WARNING status if slave server is more than INTEGER seconds" | 1757 | msgid "Exit with WARNING status if slave server is more than INTEGER seconds" |
2334 | msgstr "" | 1758 | msgstr "" |
2335 | 1759 | ||
2336 | #: plugins/check_mysql.c:552 plugins/check_mysql.c:555 | ||
2337 | msgid "behind master" | 1760 | msgid "behind master" |
2338 | msgstr "" | 1761 | msgstr "" |
2339 | 1762 | ||
2340 | #: plugins/check_mysql.c:554 | ||
2341 | msgid "Exit with CRITICAL status if slave server is more then INTEGER seconds" | 1763 | msgid "Exit with CRITICAL status if slave server is more then INTEGER seconds" |
2342 | msgstr "" | 1764 | msgstr "" |
2343 | 1765 | ||
2344 | #: plugins/check_mysql.c:557 | ||
2345 | msgid "Use ssl encryption" | 1766 | msgid "Use ssl encryption" |
2346 | msgstr "" | 1767 | msgstr "" |
2347 | 1768 | ||
2348 | #: plugins/check_mysql.c:559 | ||
2349 | msgid "Path to CA signing the cert" | 1769 | msgid "Path to CA signing the cert" |
2350 | msgstr "" | 1770 | msgstr "" |
2351 | 1771 | ||
2352 | #: plugins/check_mysql.c:561 | ||
2353 | msgid "Path to SSL certificate" | 1772 | msgid "Path to SSL certificate" |
2354 | msgstr "" | 1773 | msgstr "" |
2355 | 1774 | ||
2356 | #: plugins/check_mysql.c:563 | ||
2357 | msgid "Path to private SSL key" | 1775 | msgid "Path to private SSL key" |
2358 | msgstr "" | 1776 | msgstr "" |
2359 | 1777 | ||
2360 | #: plugins/check_mysql.c:565 | ||
2361 | msgid "Path to CA directory" | 1778 | msgid "Path to CA directory" |
2362 | msgstr "" | 1779 | msgstr "" |
2363 | 1780 | ||
2364 | #: plugins/check_mysql.c:567 | ||
2365 | msgid "List of valid SSL ciphers" | 1781 | msgid "List of valid SSL ciphers" |
2366 | msgstr "" | 1782 | msgstr "" |
2367 | 1783 | ||
2368 | #: plugins/check_mysql.c:571 | ||
2369 | msgid "" | 1784 | msgid "" |
2370 | "There are no required arguments. By default, the local database is checked" | 1785 | "There are no required arguments. By default, the local database is checked" |
2371 | msgstr "" | 1786 | msgstr "" |
2372 | 1787 | ||
2373 | #: plugins/check_mysql.c:572 | ||
2374 | msgid "" | 1788 | msgid "" |
2375 | "using the default unix socket. You can force TCP on localhost by using an" | 1789 | "using the default unix socket. You can force TCP on localhost by using an" |
2376 | msgstr "" | 1790 | msgstr "" |
2377 | 1791 | ||
2378 | #: plugins/check_mysql.c:573 | ||
2379 | msgid "IP address or FQDN ('localhost' will use the socket as well)." | 1792 | msgid "IP address or FQDN ('localhost' will use the socket as well)." |
2380 | msgstr "" | 1793 | msgstr "" |
2381 | 1794 | ||
2382 | #: plugins/check_mysql.c:577 | ||
2383 | msgid "You must specify -p with an empty string to force an empty password," | 1795 | msgid "You must specify -p with an empty string to force an empty password," |
2384 | msgstr "" | 1796 | msgstr "" |
2385 | 1797 | ||
2386 | #: plugins/check_mysql.c:578 | ||
2387 | msgid "overriding any my.cnf settings." | 1798 | msgid "overriding any my.cnf settings." |
2388 | msgstr "" | 1799 | msgstr "" |
2389 | 1800 | ||
2390 | #: plugins/check_nagios.c:104 | ||
2391 | msgid "Cannot open status log for reading!" | 1801 | msgid "Cannot open status log for reading!" |
2392 | msgstr "" | 1802 | msgstr "" |
2393 | 1803 | ||
2394 | #: plugins/check_nagios.c:154 | ||
2395 | #, c-format | 1804 | #, c-format |
2396 | msgid "Found process: %s %s\n" | 1805 | msgid "Found process: %s %s\n" |
2397 | msgstr "" | 1806 | msgstr "" |
2398 | 1807 | ||
2399 | #: plugins/check_nagios.c:168 | ||
2400 | msgid "Could not locate a running Nagios process!" | 1808 | msgid "Could not locate a running Nagios process!" |
2401 | msgstr "" | 1809 | msgstr "" |
2402 | 1810 | ||
2403 | #: plugins/check_nagios.c:172 | ||
2404 | msgid "Cannot parse Nagios log file for valid time" | 1811 | msgid "Cannot parse Nagios log file for valid time" |
2405 | msgstr "" | 1812 | msgstr "" |
2406 | 1813 | ||
2407 | #: plugins/check_nagios.c:183 plugins/check_procs.c:379 | ||
2408 | #, c-format | 1814 | #, c-format |
2409 | msgid "%d process" | 1815 | msgid "%d process" |
2410 | msgid_plural "%d processes" | 1816 | msgid_plural "%d processes" |
2411 | msgstr[0] "" | 1817 | msgstr[0] "" |
2412 | msgstr[1] "" | 1818 | msgstr[1] "" |
2413 | 1819 | ||
2414 | #: plugins/check_nagios.c:186 | ||
2415 | #, c-format | 1820 | #, c-format |
2416 | msgid "status log updated %d second ago" | 1821 | msgid "status log updated %d second ago" |
2417 | msgid_plural "status log updated %d seconds ago" | 1822 | msgid_plural "status log updated %d seconds ago" |
2418 | msgstr[0] "" | 1823 | msgstr[0] "" |
2419 | msgstr[1] "" | 1824 | msgstr[1] "" |
2420 | 1825 | ||
2421 | #: plugins/check_nagios.c:224 plugins/check_nagios.c:253 | ||
2422 | msgid "Expiration time must be an integer (seconds)\n" | 1826 | msgid "Expiration time must be an integer (seconds)\n" |
2423 | msgstr "" | 1827 | msgstr "" |
2424 | 1828 | ||
2425 | #: plugins/check_nagios.c:260 | ||
2426 | msgid "Timeout must be an integer (seconds)\n" | 1829 | msgid "Timeout must be an integer (seconds)\n" |
2427 | msgstr "" | 1830 | msgstr "" |
2428 | 1831 | ||
2429 | #: plugins/check_nagios.c:272 | ||
2430 | msgid "You must provide the status_log\n" | 1832 | msgid "You must provide the status_log\n" |
2431 | msgstr "" | 1833 | msgstr "" |
2432 | 1834 | ||
2433 | #: plugins/check_nagios.c:275 | ||
2434 | msgid "You must provide a process string\n" | 1835 | msgid "You must provide a process string\n" |
2435 | msgstr "" | 1836 | msgstr "" |
2436 | 1837 | ||
2437 | #: plugins/check_nagios.c:289 | ||
2438 | msgid "" | 1838 | msgid "" |
2439 | "This plugin checks the status of the Nagios process on the local machine" | 1839 | "This plugin checks the status of the Nagios process on the local machine" |
2440 | msgstr "" | 1840 | msgstr "" |
2441 | 1841 | ||
2442 | #: plugins/check_nagios.c:290 | ||
2443 | msgid "" | 1842 | msgid "" |
2444 | "The plugin will check to make sure the Nagios status log is no older than" | 1843 | "The plugin will check to make sure the Nagios status log is no older than" |
2445 | msgstr "" | 1844 | msgstr "" |
2446 | 1845 | ||
2447 | #: plugins/check_nagios.c:291 | ||
2448 | msgid "the number of minutes specified by the expires option." | 1846 | msgid "the number of minutes specified by the expires option." |
2449 | msgstr "" | 1847 | msgstr "" |
2450 | 1848 | ||
2451 | #: plugins/check_nagios.c:292 | ||
2452 | msgid "" | 1849 | msgid "" |
2453 | "It also checks the process table for a process matching the command argument." | 1850 | "It also checks the process table for a process matching the command argument." |
2454 | msgstr "" | 1851 | msgstr "" |
2455 | 1852 | ||
2456 | #: plugins/check_nagios.c:302 | ||
2457 | msgid "Name of the log file to check" | 1853 | msgid "Name of the log file to check" |
2458 | msgstr "" | 1854 | msgstr "" |
2459 | 1855 | ||
2460 | #: plugins/check_nagios.c:304 | ||
2461 | msgid "Minutes aging after which logfile is considered stale" | 1856 | msgid "Minutes aging after which logfile is considered stale" |
2462 | msgstr "" | 1857 | msgstr "" |
2463 | 1858 | ||
2464 | #: plugins/check_nagios.c:306 | ||
2465 | msgid "Substring to search for in process arguments" | 1859 | msgid "Substring to search for in process arguments" |
2466 | msgstr "" | 1860 | msgstr "" |
2467 | 1861 | ||
2468 | #: plugins/check_nagios.c:308 | ||
2469 | msgid "Timeout for the plugin in seconds" | 1862 | msgid "Timeout for the plugin in seconds" |
2470 | msgstr "" | 1863 | msgstr "" |
2471 | 1864 | ||
2472 | #: plugins/check_nt.c:142 | ||
2473 | #, c-format | 1865 | #, c-format |
2474 | msgid "Wrong client version - running: %s, required: %s" | 1866 | msgid "Wrong client version - running: %s, required: %s" |
2475 | msgstr "" | 1867 | msgstr "" |
2476 | 1868 | ||
2477 | #: plugins/check_nt.c:153 plugins/check_nt.c:239 | ||
2478 | msgid "missing -l parameters" | 1869 | msgid "missing -l parameters" |
2479 | msgstr "" | 1870 | msgstr "" |
2480 | 1871 | ||
2481 | #: plugins/check_nt.c:155 | ||
2482 | msgid "wrong -l parameter." | 1872 | msgid "wrong -l parameter." |
2483 | msgstr "" | 1873 | msgstr "" |
2484 | 1874 | ||
2485 | #: plugins/check_nt.c:159 | ||
2486 | msgid "CPU Load" | 1875 | msgid "CPU Load" |
2487 | msgstr "" | 1876 | msgstr "" |
2488 | 1877 | ||
2489 | #: plugins/check_nt.c:182 | ||
2490 | #, c-format | 1878 | #, c-format |
2491 | msgid " %lu%% (%lu min average)" | 1879 | msgid " %lu%% (%lu min average)" |
2492 | msgstr "" | 1880 | msgstr "" |
2493 | 1881 | ||
2494 | #: plugins/check_nt.c:184 | ||
2495 | #, c-format | 1882 | #, c-format |
2496 | msgid " '%lu min avg Load'=%lu%%;%lu;%lu;0;100" | 1883 | msgid " '%lu min avg Load'=%lu%%;%lu;%lu;0;100" |
2497 | msgstr "" | 1884 | msgstr "" |
2498 | 1885 | ||
2499 | #: plugins/check_nt.c:194 | ||
2500 | msgid "not enough values for -l parameters" | 1886 | msgid "not enough values for -l parameters" |
2501 | msgstr "" | 1887 | msgstr "" |
2502 | 1888 | ||
2503 | #: plugins/check_nt.c:208 plugins/check_nt.c:241 | ||
2504 | msgid "wrong -l argument" | 1889 | msgid "wrong -l argument" |
2505 | msgstr "" | 1890 | msgstr "" |
2506 | 1891 | ||
2507 | #: plugins/check_nt.c:225 | ||
2508 | #, c-format | 1892 | #, c-format |
2509 | msgid "System Uptime - %u day(s) %u hour(s) %u minute(s) |uptime=%lu" | 1893 | msgid "System Uptime - %u day(s) %u hour(s) %u minute(s) |uptime=%lu" |
2510 | msgstr "" | 1894 | msgstr "" |
2511 | 1895 | ||
2512 | #: plugins/check_nt.c:257 | ||
2513 | #, c-format | 1896 | #, c-format |
2514 | msgid "%s:\\ - total: %.2f Gb - used: %.2f Gb (%.0f%%) - free %.2f Gb (%.0f%%)" | 1897 | msgid "%s:\\ - total: %.2f Gb - used: %.2f Gb (%.0f%%) - free %.2f Gb (%.0f%%)" |
2515 | msgstr "" | 1898 | msgstr "" |
2516 | 1899 | ||
2517 | #: plugins/check_nt.c:260 | ||
2518 | #, c-format | 1900 | #, c-format |
2519 | msgid "'%s:\\ Used Space'=%.2fGb;%.2f;%.2f;0.00;%.2f" | 1901 | msgid "'%s:\\ Used Space'=%.2fGb;%.2f;%.2f;0.00;%.2f" |
2520 | msgstr "" | 1902 | msgstr "" |
2521 | 1903 | ||
2522 | #: plugins/check_nt.c:274 | ||
2523 | msgid "Free disk space : Invalid drive" | 1904 | msgid "Free disk space : Invalid drive" |
2524 | msgstr "" | 1905 | msgstr "" |
2525 | 1906 | ||
2526 | #: plugins/check_nt.c:284 | ||
2527 | msgid "No service/process specified" | 1907 | msgid "No service/process specified" |
2528 | msgstr "" | 1908 | msgstr "" |
2529 | 1909 | ||
2530 | #: plugins/check_nt.c:292 plugins/check_nt.c:305 plugins/check_nt.c:309 | ||
2531 | #: plugins/check_nt.c:643 | ||
2532 | msgid "could not fetch information from server\n" | 1910 | msgid "could not fetch information from server\n" |
2533 | msgstr "" | 1911 | msgstr "" |
2534 | 1912 | ||
2535 | #: plugins/check_nt.c:317 | ||
2536 | #, c-format | 1913 | #, c-format |
2537 | msgid "" | 1914 | msgid "" |
2538 | "Memory usage: total:%.2f MB - used: %.2f MB (%.0f%%) - free: %.2f MB (%.0f%%)" | 1915 | "Memory usage: total:%.2f MB - used: %.2f MB (%.0f%%) - free: %.2f MB (%.0f%%)" |
2539 | msgstr "" | 1916 | msgstr "" |
2540 | 1917 | ||
2541 | #: plugins/check_nt.c:320 | ||
2542 | #, c-format | 1918 | #, c-format |
2543 | msgid "'Memory usage'=%.2fMB;%.2f;%.2f;0.00;%.2f" | 1919 | msgid "'Memory usage'=%.2fMB;%.2f;%.2f;0.00;%.2f" |
2544 | msgstr "" | 1920 | msgstr "" |
2545 | 1921 | ||
2546 | #: plugins/check_nt.c:356 plugins/check_nt.c:441 plugins/check_nt.c:471 | ||
2547 | msgid "No counter specified" | 1922 | msgid "No counter specified" |
2548 | msgstr "" | 1923 | msgstr "" |
2549 | 1924 | ||
2550 | #: plugins/check_nt.c:388 | ||
2551 | msgid "Minimum value contains non-numbers" | 1925 | msgid "Minimum value contains non-numbers" |
2552 | msgstr "" | 1926 | msgstr "" |
2553 | 1927 | ||
2554 | #: plugins/check_nt.c:392 | ||
2555 | msgid "Maximum value contains non-numbers" | 1928 | msgid "Maximum value contains non-numbers" |
2556 | msgstr "" | 1929 | msgstr "" |
2557 | 1930 | ||
2558 | #: plugins/check_nt.c:399 | ||
2559 | msgid "No unit counter specified" | 1931 | msgid "No unit counter specified" |
2560 | msgstr "" | 1932 | msgstr "" |
2561 | 1933 | ||
2562 | #: plugins/check_nt.c:486 | ||
2563 | msgid "Please specify a variable to check" | 1934 | msgid "Please specify a variable to check" |
2564 | msgstr "" | 1935 | msgstr "" |
2565 | 1936 | ||
2566 | #: plugins/check_nt.c:570 | ||
2567 | msgid "Server port must be an integer\n" | 1937 | msgid "Server port must be an integer\n" |
2568 | msgstr "" | 1938 | msgstr "" |
2569 | 1939 | ||
2570 | #: plugins/check_nt.c:624 | ||
2571 | msgid "You must provide a server address or host name" | 1940 | msgid "You must provide a server address or host name" |
2572 | msgstr "" | 1941 | msgstr "" |
2573 | 1942 | ||
2574 | #: plugins/check_nt.c:630 | ||
2575 | msgid "None" | 1943 | msgid "None" |
2576 | msgstr "" | 1944 | msgstr "" |
2577 | 1945 | ||
2578 | #: plugins/check_nt.c:687 | ||
2579 | msgid "This plugin collects data from the NSClient service running on a" | 1946 | msgid "This plugin collects data from the NSClient service running on a" |
2580 | msgstr "" | 1947 | msgstr "" |
2581 | 1948 | ||
2582 | #: plugins/check_nt.c:688 | ||
2583 | msgid "Windows NT/2000/XP/2003 server." | 1949 | msgid "Windows NT/2000/XP/2003 server." |
2584 | msgstr "" | 1950 | msgstr "" |
2585 | 1951 | ||
2586 | #: plugins/check_nt.c:699 | ||
2587 | msgid "Name of the host to check" | 1952 | msgid "Name of the host to check" |
2588 | msgstr "" | 1953 | msgstr "" |
2589 | 1954 | ||
2590 | #: plugins/check_nt.c:701 | ||
2591 | msgid "Optional port number (default: " | 1955 | msgid "Optional port number (default: " |
2592 | msgstr "" | 1956 | msgstr "" |
2593 | 1957 | ||
2594 | #: plugins/check_nt.c:704 | ||
2595 | msgid "Password needed for the request" | 1958 | msgid "Password needed for the request" |
2596 | msgstr "" | 1959 | msgstr "" |
2597 | 1960 | ||
2598 | #: plugins/check_nt.c:706 plugins/check_nwstat.c:1661 | ||
2599 | #: plugins/check_overcr.c:432 | ||
2600 | msgid "Threshold which will result in a warning status" | 1961 | msgid "Threshold which will result in a warning status" |
2601 | msgstr "" | 1962 | msgstr "" |
2602 | 1963 | ||
2603 | #: plugins/check_nt.c:708 plugins/check_nwstat.c:1663 | ||
2604 | #: plugins/check_overcr.c:434 | ||
2605 | msgid "Threshold which will result in a critical status" | 1964 | msgid "Threshold which will result in a critical status" |
2606 | msgstr "" | 1965 | msgstr "" |
2607 | 1966 | ||
2608 | #: plugins/check_nt.c:710 | ||
2609 | msgid "Seconds before connection attempt times out (default: " | 1967 | msgid "Seconds before connection attempt times out (default: " |
2610 | msgstr "" | 1968 | msgstr "" |
2611 | 1969 | ||
2612 | #: plugins/check_nt.c:712 | ||
2613 | msgid "Parameters passed to specified check (see below)" | 1970 | msgid "Parameters passed to specified check (see below)" |
2614 | msgstr "" | 1971 | msgstr "" |
2615 | 1972 | ||
2616 | #: plugins/check_nt.c:714 | ||
2617 | msgid "Display options (currently only SHOWALL works)" | 1973 | msgid "Display options (currently only SHOWALL works)" |
2618 | msgstr "" | 1974 | msgstr "" |
2619 | 1975 | ||
2620 | #: plugins/check_nt.c:716 | ||
2621 | msgid "Return UNKNOWN on timeouts" | 1976 | msgid "Return UNKNOWN on timeouts" |
2622 | msgstr "" | 1977 | msgstr "" |
2623 | 1978 | ||
2624 | #: plugins/check_nt.c:719 | ||
2625 | msgid "Print this help screen" | 1979 | msgid "Print this help screen" |
2626 | msgstr "" | 1980 | msgstr "" |
2627 | 1981 | ||
2628 | #: plugins/check_nt.c:721 | ||
2629 | msgid "Print version information" | 1982 | msgid "Print version information" |
2630 | msgstr "" | 1983 | msgstr "" |
2631 | 1984 | ||
2632 | #: plugins/check_nt.c:723 | ||
2633 | msgid "Variable to check" | 1985 | msgid "Variable to check" |
2634 | msgstr "" | 1986 | msgstr "" |
2635 | 1987 | ||
2636 | #: plugins/check_nt.c:724 | ||
2637 | msgid "Valid variables are:" | 1988 | msgid "Valid variables are:" |
2638 | msgstr "" | 1989 | msgstr "" |
2639 | 1990 | ||
2640 | #: plugins/check_nt.c:726 | ||
2641 | msgid "Get the NSClient version" | 1991 | msgid "Get the NSClient version" |
2642 | msgstr "" | 1992 | msgstr "" |
2643 | 1993 | ||
2644 | #: plugins/check_nt.c:727 | ||
2645 | msgid "If -l <version> is specified, will return warning if versions differ." | 1994 | msgid "If -l <version> is specified, will return warning if versions differ." |
2646 | msgstr "" | 1995 | msgstr "" |
2647 | 1996 | ||
2648 | #: plugins/check_nt.c:729 | ||
2649 | msgid "Average CPU load on last x minutes." | 1997 | msgid "Average CPU load on last x minutes." |
2650 | msgstr "" | 1998 | msgstr "" |
2651 | 1999 | ||
2652 | #: plugins/check_nt.c:730 | ||
2653 | msgid "Request a -l parameter with the following syntax:" | 2000 | msgid "Request a -l parameter with the following syntax:" |
2654 | msgstr "" | 2001 | msgstr "" |
2655 | 2002 | ||
2656 | #: plugins/check_nt.c:731 | ||
2657 | msgid "-l <minutes range>,<warning threshold>,<critical threshold>." | 2003 | msgid "-l <minutes range>,<warning threshold>,<critical threshold>." |
2658 | msgstr "" | 2004 | msgstr "" |
2659 | 2005 | ||
2660 | #: plugins/check_nt.c:732 | ||
2661 | msgid "<minute range> should be less than 24*60." | 2006 | msgid "<minute range> should be less than 24*60." |
2662 | msgstr "" | 2007 | msgstr "" |
2663 | 2008 | ||
2664 | #: plugins/check_nt.c:733 | ||
2665 | msgid "" | 2009 | msgid "" |
2666 | "Thresholds are percentage and up to 10 requests can be done in one shot." | 2010 | "Thresholds are percentage and up to 10 requests can be done in one shot." |
2667 | msgstr "" | 2011 | msgstr "" |
2668 | 2012 | ||
2669 | #: plugins/check_nt.c:736 | ||
2670 | msgid "Get the uptime of the machine." | 2013 | msgid "Get the uptime of the machine." |
2671 | msgstr "" | 2014 | msgstr "" |
2672 | 2015 | ||
2673 | #: plugins/check_nt.c:737 | ||
2674 | msgid "-l <unit> " | 2016 | msgid "-l <unit> " |
2675 | msgstr "" | 2017 | msgstr "" |
2676 | 2018 | ||
2677 | #: plugins/check_nt.c:738 | ||
2678 | msgid "<unit> = seconds, minutes, hours, or days. (default: minutes)" | 2019 | msgid "<unit> = seconds, minutes, hours, or days. (default: minutes)" |
2679 | msgstr "" | 2020 | msgstr "" |
2680 | 2021 | ||
2681 | #: plugins/check_nt.c:739 | ||
2682 | msgid "Thresholds will use the unit specified above." | 2022 | msgid "Thresholds will use the unit specified above." |
2683 | msgstr "" | 2023 | msgstr "" |
2684 | 2024 | ||
2685 | #: plugins/check_nt.c:741 | ||
2686 | msgid "Size and percentage of disk use." | 2025 | msgid "Size and percentage of disk use." |
2687 | msgstr "" | 2026 | msgstr "" |
2688 | 2027 | ||
2689 | #: plugins/check_nt.c:742 | ||
2690 | msgid "Request a -l parameter containing the drive letter only." | 2028 | msgid "Request a -l parameter containing the drive letter only." |
2691 | msgstr "" | 2029 | msgstr "" |
2692 | 2030 | ||
2693 | #: plugins/check_nt.c:743 plugins/check_nt.c:746 | ||
2694 | msgid "Warning and critical thresholds can be specified with -w and -c." | 2031 | msgid "Warning and critical thresholds can be specified with -w and -c." |
2695 | msgstr "" | 2032 | msgstr "" |
2696 | 2033 | ||
2697 | #: plugins/check_nt.c:745 | ||
2698 | msgid "Memory use." | 2034 | msgid "Memory use." |
2699 | msgstr "" | 2035 | msgstr "" |
2700 | 2036 | ||
2701 | #: plugins/check_nt.c:748 | ||
2702 | msgid "Check the state of one or several services." | 2037 | msgid "Check the state of one or several services." |
2703 | msgstr "" | 2038 | msgstr "" |
2704 | 2039 | ||
2705 | #: plugins/check_nt.c:749 plugins/check_nt.c:758 | ||
2706 | msgid "Request a -l parameters with the following syntax:" | 2040 | msgid "Request a -l parameters with the following syntax:" |
2707 | msgstr "" | 2041 | msgstr "" |
2708 | 2042 | ||
2709 | #: plugins/check_nt.c:750 | ||
2710 | msgid "-l <service1>,<service2>,<service3>,..." | 2043 | msgid "-l <service1>,<service2>,<service3>,..." |
2711 | msgstr "" | 2044 | msgstr "" |
2712 | 2045 | ||
2713 | #: plugins/check_nt.c:751 | ||
2714 | msgid "You can specify -d SHOWALL in case you want to see working services" | 2046 | msgid "You can specify -d SHOWALL in case you want to see working services" |
2715 | msgstr "" | 2047 | msgstr "" |
2716 | 2048 | ||
2717 | #: plugins/check_nt.c:752 | ||
2718 | msgid "in the returned string." | 2049 | msgid "in the returned string." |
2719 | msgstr "" | 2050 | msgstr "" |
2720 | 2051 | ||
2721 | #: plugins/check_nt.c:754 | ||
2722 | msgid "Check if one or several process are running." | 2052 | msgid "Check if one or several process are running." |
2723 | msgstr "" | 2053 | msgstr "" |
2724 | 2054 | ||
2725 | #: plugins/check_nt.c:755 | ||
2726 | msgid "Same syntax as SERVICESTATE." | 2055 | msgid "Same syntax as SERVICESTATE." |
2727 | msgstr "" | 2056 | msgstr "" |
2728 | 2057 | ||
2729 | #: plugins/check_nt.c:757 | ||
2730 | msgid "Check any performance counter of Windows NT/2000." | 2058 | msgid "Check any performance counter of Windows NT/2000." |
2731 | msgstr "" | 2059 | msgstr "" |
2732 | 2060 | ||
2733 | #: plugins/check_nt.c:759 | ||
2734 | msgid "-l \"\\\\<performance object>\\\\counter\",\"<description>" | 2061 | msgid "-l \"\\\\<performance object>\\\\counter\",\"<description>" |
2735 | msgstr "" | 2062 | msgstr "" |
2736 | 2063 | ||
2737 | #: plugins/check_nt.c:760 | ||
2738 | msgid "The <description> parameter is optional and is given to a printf " | 2064 | msgid "The <description> parameter is optional and is given to a printf " |
2739 | msgstr "" | 2065 | msgstr "" |
2740 | 2066 | ||
2741 | #: plugins/check_nt.c:761 | ||
2742 | msgid "output command which requires a float parameter." | 2067 | msgid "output command which requires a float parameter." |
2743 | msgstr "" | 2068 | msgstr "" |
2744 | 2069 | ||
2745 | #: plugins/check_nt.c:762 | ||
2746 | #, c-format | 2070 | #, c-format |
2747 | msgid "If <description> does not include \"%%\", it is used as a label." | 2071 | msgid "If <description> does not include \"%%\", it is used as a label." |
2748 | msgstr "" | 2072 | msgstr "" |
2749 | 2073 | ||
2750 | #: plugins/check_nt.c:763 plugins/check_nt.c:778 | ||
2751 | msgid "Some examples:" | 2074 | msgid "Some examples:" |
2752 | msgstr "" | 2075 | msgstr "" |
2753 | 2076 | ||
2754 | #: plugins/check_nt.c:767 | ||
2755 | msgid "Check any performance counter object of Windows NT/2000." | 2077 | msgid "Check any performance counter object of Windows NT/2000." |
2756 | msgstr "" | 2078 | msgstr "" |
2757 | 2079 | ||
2758 | #: plugins/check_nt.c:768 | ||
2759 | msgid "" | 2080 | msgid "" |
2760 | "Syntax: check_nt -H <hostname> -p <port> -v INSTANCES -l <counter object>" | 2081 | "Syntax: check_nt -H <hostname> -p <port> -v INSTANCES -l <counter object>" |
2761 | msgstr "" | 2082 | msgstr "" |
2762 | 2083 | ||
2763 | #: plugins/check_nt.c:769 | ||
2764 | msgid "<counter object> is a Windows Perfmon Counter object (eg. Process)," | 2084 | msgid "<counter object> is a Windows Perfmon Counter object (eg. Process)," |
2765 | msgstr "" | 2085 | msgstr "" |
2766 | 2086 | ||
2767 | #: plugins/check_nt.c:770 | ||
2768 | msgid "if it is two words, it should be enclosed in quotes" | 2087 | msgid "if it is two words, it should be enclosed in quotes" |
2769 | msgstr "" | 2088 | msgstr "" |
2770 | 2089 | ||
2771 | #: plugins/check_nt.c:771 | ||
2772 | msgid "The returned results will be a comma-separated list of instances on " | 2090 | msgid "The returned results will be a comma-separated list of instances on " |
2773 | msgstr "" | 2091 | msgstr "" |
2774 | 2092 | ||
2775 | #: plugins/check_nt.c:772 | ||
2776 | msgid " the selected computer for that object." | 2093 | msgid " the selected computer for that object." |
2777 | msgstr "" | 2094 | msgstr "" |
2778 | 2095 | ||
2779 | #: plugins/check_nt.c:773 | ||
2780 | msgid "" | 2096 | msgid "" |
2781 | "The purpose of this is to be run from command line to determine what " | 2097 | "The purpose of this is to be run from command line to determine what " |
2782 | "instances" | 2098 | "instances" |
2783 | msgstr "" | 2099 | msgstr "" |
2784 | 2100 | ||
2785 | #: plugins/check_nt.c:774 | ||
2786 | msgid "" | 2101 | msgid "" |
2787 | " are available for monitoring without having to log onto the Windows server" | 2102 | " are available for monitoring without having to log onto the Windows server" |
2788 | msgstr "" | 2103 | msgstr "" |
2789 | 2104 | ||
2790 | #: plugins/check_nt.c:775 | ||
2791 | msgid " to run Perfmon directly." | 2105 | msgid " to run Perfmon directly." |
2792 | msgstr "" | 2106 | msgstr "" |
2793 | 2107 | ||
2794 | #: plugins/check_nt.c:776 | ||
2795 | msgid "" | 2108 | msgid "" |
2796 | "It can also be used in scripts that automatically create the monitoring " | 2109 | "It can also be used in scripts that automatically create the monitoring " |
2797 | "service" | 2110 | "service" |
2798 | msgstr "" | 2111 | msgstr "" |
2799 | 2112 | ||
2800 | #: plugins/check_nt.c:777 | ||
2801 | msgid " configuration files." | 2113 | msgid " configuration files." |
2802 | msgstr "" | 2114 | msgstr "" |
2803 | 2115 | ||
2804 | #: plugins/check_nt.c:779 | ||
2805 | msgid "check_nt -H 192.168.1.1 -p 1248 -v INSTANCES -l Process" | 2116 | msgid "check_nt -H 192.168.1.1 -p 1248 -v INSTANCES -l Process" |
2806 | msgstr "" | 2117 | msgstr "" |
2807 | 2118 | ||
2808 | #: plugins/check_nt.c:782 | ||
2809 | msgid "" | 2119 | msgid "" |
2810 | "- The NSClient service should be running on the server to get any information" | 2120 | "- The NSClient service should be running on the server to get any information" |
2811 | msgstr "" | 2121 | msgstr "" |
2812 | 2122 | ||
2813 | #: plugins/check_nt.c:784 | ||
2814 | msgid "- Critical thresholds should be lower than warning thresholds" | 2123 | msgid "- Critical thresholds should be lower than warning thresholds" |
2815 | msgstr "" | 2124 | msgstr "" |
2816 | 2125 | ||
2817 | #: plugins/check_nt.c:785 | ||
2818 | msgid "- Default port 1248 is sometimes in use by other services. The error" | 2126 | msgid "- Default port 1248 is sometimes in use by other services. The error" |
2819 | msgstr "" | 2127 | msgstr "" |
2820 | 2128 | ||
2821 | #: plugins/check_nt.c:786 | ||
2822 | msgid "" | 2129 | msgid "" |
2823 | "output when this happens contains \"Cannot map xxxxx to protocol number\"." | 2130 | "output when this happens contains \"Cannot map xxxxx to protocol number\"." |
2824 | msgstr "" | 2131 | msgstr "" |
2825 | 2132 | ||
2826 | #: plugins/check_nt.c:787 | ||
2827 | msgid "One fix for this is to change the port to something else on check_nt " | 2133 | msgid "One fix for this is to change the port to something else on check_nt " |
2828 | msgstr "" | 2134 | msgstr "" |
2829 | 2135 | ||
2830 | #: plugins/check_nt.c:788 | ||
2831 | msgid "and on the client service it's connecting to." | 2136 | msgid "and on the client service it's connecting to." |
2832 | msgstr "" | 2137 | msgstr "" |
2833 | 2138 | ||
2834 | #: plugins/check_ntp.c:629 | ||
2835 | #, c-format | 2139 | #, c-format |
2836 | msgid "jitter response too large (%lu bytes)\n" | 2140 | msgid "jitter response too large (%lu bytes)\n" |
2837 | msgstr "" | 2141 | msgstr "" |
2838 | 2142 | ||
2839 | #: plugins/check_ntp.c:817 plugins/check_ntp_peer.c:619 | ||
2840 | #: plugins/check_ntp_time.c:576 | ||
2841 | msgid "NTP CRITICAL:" | 2143 | msgid "NTP CRITICAL:" |
2842 | msgstr "" | 2144 | msgstr "" |
2843 | 2145 | ||
2844 | #: plugins/check_ntp.c:820 plugins/check_ntp_peer.c:622 | ||
2845 | #: plugins/check_ntp_time.c:579 | ||
2846 | msgid "NTP WARNING:" | 2146 | msgid "NTP WARNING:" |
2847 | msgstr "" | 2147 | msgstr "" |
2848 | 2148 | ||
2849 | #: plugins/check_ntp.c:823 plugins/check_ntp_peer.c:625 | ||
2850 | #: plugins/check_ntp_time.c:582 | ||
2851 | msgid "NTP OK:" | 2149 | msgid "NTP OK:" |
2852 | msgstr "" | 2150 | msgstr "" |
2853 | 2151 | ||
2854 | #: plugins/check_ntp.c:826 plugins/check_ntp_peer.c:628 | ||
2855 | #: plugins/check_ntp_time.c:585 | ||
2856 | msgid "NTP UNKNOWN:" | 2152 | msgid "NTP UNKNOWN:" |
2857 | msgstr "" | 2153 | msgstr "" |
2858 | 2154 | ||
2859 | #: plugins/check_ntp.c:830 plugins/check_ntp_peer.c:637 | ||
2860 | #: plugins/check_ntp_time.c:589 | ||
2861 | msgid "Offset unknown" | 2155 | msgid "Offset unknown" |
2862 | msgstr "" | 2156 | msgstr "" |
2863 | 2157 | ||
2864 | #: plugins/check_ntp.c:833 plugins/check_ntp_peer.c:640 | ||
2865 | #: plugins/check_ntp_peer.c:642 plugins/check_ntp_peer.c:644 | ||
2866 | #: plugins/check_ntp_time.c:592 | ||
2867 | msgid "Offset" | 2158 | msgid "Offset" |
2868 | msgstr "" | 2159 | msgstr "" |
2869 | 2160 | ||
2870 | #: plugins/check_ntp.c:854 plugins/check_ntp_peer.c:690 | ||
2871 | msgid "This plugin checks the selected ntp server" | 2161 | msgid "This plugin checks the selected ntp server" |
2872 | msgstr "" | 2162 | msgstr "" |
2873 | 2163 | ||
2874 | #: plugins/check_ntp.c:864 plugins/check_ntp_peer.c:702 | ||
2875 | #: plugins/check_ntp_time.c:619 | ||
2876 | msgid "Offset to result in warning status (seconds)" | 2164 | msgid "Offset to result in warning status (seconds)" |
2877 | msgstr "" | 2165 | msgstr "" |
2878 | 2166 | ||
2879 | #: plugins/check_ntp.c:866 plugins/check_ntp_peer.c:704 | ||
2880 | #: plugins/check_ntp_time.c:621 | ||
2881 | msgid "Offset to result in critical status (seconds)" | 2167 | msgid "Offset to result in critical status (seconds)" |
2882 | msgstr "" | 2168 | msgstr "" |
2883 | 2169 | ||
2884 | #: plugins/check_ntp.c:868 plugins/check_ntp_peer.c:710 | ||
2885 | msgid "Warning threshold for jitter" | 2170 | msgid "Warning threshold for jitter" |
2886 | msgstr "" | 2171 | msgstr "" |
2887 | 2172 | ||
2888 | #: plugins/check_ntp.c:870 plugins/check_ntp_peer.c:712 | ||
2889 | msgid "Critical threshold for jitter" | 2173 | msgid "Critical threshold for jitter" |
2890 | msgstr "" | 2174 | msgstr "" |
2891 | 2175 | ||
2892 | #: plugins/check_ntp.c:880 | ||
2893 | msgid "Normal offset check:" | 2176 | msgid "Normal offset check:" |
2894 | msgstr "" | 2177 | msgstr "" |
2895 | 2178 | ||
2896 | #: plugins/check_ntp.c:883 plugins/check_ntp_peer.c:737 | ||
2897 | msgid "" | 2179 | msgid "" |
2898 | "Check jitter too, avoiding critical notifications if jitter isn't available" | 2180 | "Check jitter too, avoiding critical notifications if jitter isn't available" |
2899 | msgstr "" | 2181 | msgstr "" |
2900 | 2182 | ||
2901 | #: plugins/check_ntp.c:884 plugins/check_ntp_peer.c:738 | ||
2902 | msgid "(See Notes above for more details on thresholds formats):" | 2183 | msgid "(See Notes above for more details on thresholds formats):" |
2903 | msgstr "" | 2184 | msgstr "" |
2904 | 2185 | ||
2905 | #: plugins/check_ntp.c:889 plugins/check_ntp.c:896 | ||
2906 | msgid "WARNING: check_ntp is deprecated. Please use check_ntp_peer or" | 2186 | msgid "WARNING: check_ntp is deprecated. Please use check_ntp_peer or" |
2907 | msgstr "" | 2187 | msgstr "" |
2908 | 2188 | ||
2909 | #: plugins/check_ntp.c:890 plugins/check_ntp.c:897 | ||
2910 | msgid "check_ntp_time instead." | 2189 | msgid "check_ntp_time instead." |
2911 | msgstr "" | 2190 | msgstr "" |
2912 | 2191 | ||
2913 | #: plugins/check_ntp_peer.c:632 | ||
2914 | msgid "Server not synchronized" | 2192 | msgid "Server not synchronized" |
2915 | msgstr "" | 2193 | msgstr "" |
2916 | 2194 | ||
2917 | #: plugins/check_ntp_peer.c:634 | ||
2918 | msgid "Server has the LI_ALARM bit set" | 2195 | msgid "Server has the LI_ALARM bit set" |
2919 | msgstr "" | 2196 | msgstr "" |
2920 | 2197 | ||
2921 | #: plugins/check_ntp_peer.c:700 | ||
2922 | msgid "" | 2198 | msgid "" |
2923 | "Returns UNKNOWN instead of CRITICAL or WARNING if server isn't synchronized" | 2199 | "Returns UNKNOWN instead of CRITICAL or WARNING if server isn't synchronized" |
2924 | msgstr "" | 2200 | msgstr "" |
2925 | 2201 | ||
2926 | #: plugins/check_ntp_peer.c:706 | ||
2927 | msgid "Warning threshold for stratum of server's synchronization peer" | 2202 | msgid "Warning threshold for stratum of server's synchronization peer" |
2928 | msgstr "" | 2203 | msgstr "" |
2929 | 2204 | ||
2930 | #: plugins/check_ntp_peer.c:708 | ||
2931 | msgid "Critical threshold for stratum of server's synchronization peer" | 2205 | msgid "Critical threshold for stratum of server's synchronization peer" |
2932 | msgstr "" | 2206 | msgstr "" |
2933 | 2207 | ||
2934 | #: plugins/check_ntp_peer.c:714 | ||
2935 | msgid "Warning threshold for number of usable time sources (\"truechimers\")" | 2208 | msgid "Warning threshold for number of usable time sources (\"truechimers\")" |
2936 | msgstr "" | 2209 | msgstr "" |
2937 | 2210 | ||
2938 | #: plugins/check_ntp_peer.c:716 | ||
2939 | msgid "Critical threshold for number of usable time sources (\"truechimers\")" | 2211 | msgid "Critical threshold for number of usable time sources (\"truechimers\")" |
2940 | msgstr "" | 2212 | msgstr "" |
2941 | 2213 | ||
2942 | #: plugins/check_ntp_peer.c:721 | ||
2943 | msgid "This plugin checks an NTP server independent of any commandline" | 2214 | msgid "This plugin checks an NTP server independent of any commandline" |
2944 | msgstr "" | 2215 | msgstr "" |
2945 | 2216 | ||
2946 | #: plugins/check_ntp_peer.c:722 | ||
2947 | msgid "programs or external libraries." | 2217 | msgid "programs or external libraries." |
2948 | msgstr "" | 2218 | msgstr "" |
2949 | 2219 | ||
2950 | #: plugins/check_ntp_peer.c:725 | ||
2951 | msgid "Use this plugin to check the health of an NTP server. It supports" | 2220 | msgid "Use this plugin to check the health of an NTP server. It supports" |
2952 | msgstr "" | 2221 | msgstr "" |
2953 | 2222 | ||
2954 | #: plugins/check_ntp_peer.c:726 | ||
2955 | msgid "checking the offset with the sync peer, the jitter and stratum. This" | 2223 | msgid "checking the offset with the sync peer, the jitter and stratum. This" |
2956 | msgstr "" | 2224 | msgstr "" |
2957 | 2225 | ||
2958 | #: plugins/check_ntp_peer.c:727 | ||
2959 | msgid "plugin will not check the clock offset between the local host and NTP" | 2226 | msgid "plugin will not check the clock offset between the local host and NTP" |
2960 | msgstr "" | 2227 | msgstr "" |
2961 | 2228 | ||
2962 | #: plugins/check_ntp_peer.c:728 | ||
2963 | msgid "server; please use check_ntp_time for that purpose." | 2229 | msgid "server; please use check_ntp_time for that purpose." |
2964 | msgstr "" | 2230 | msgstr "" |
2965 | 2231 | ||
2966 | #: plugins/check_ntp_peer.c:734 | ||
2967 | msgid "Simple NTP server check:" | 2232 | msgid "Simple NTP server check:" |
2968 | msgstr "" | 2233 | msgstr "" |
2969 | 2234 | ||
2970 | #: plugins/check_ntp_peer.c:741 | ||
2971 | msgid "Only check the number of usable time sources (\"truechimers\"):" | 2235 | msgid "Only check the number of usable time sources (\"truechimers\"):" |
2972 | msgstr "" | 2236 | msgstr "" |
2973 | 2237 | ||
2974 | #: plugins/check_ntp_peer.c:744 | ||
2975 | msgid "Check only stratum:" | 2238 | msgid "Check only stratum:" |
2976 | msgstr "" | 2239 | msgstr "" |
2977 | 2240 | ||
2978 | #: plugins/check_ntp_time.c:607 | ||
2979 | msgid "This plugin checks the clock offset with the ntp server" | 2241 | msgid "This plugin checks the clock offset with the ntp server" |
2980 | msgstr "" | 2242 | msgstr "" |
2981 | 2243 | ||
2982 | #: plugins/check_ntp_time.c:617 | ||
2983 | msgid "Returns UNKNOWN instead of CRITICAL if offset cannot be found" | 2244 | msgid "Returns UNKNOWN instead of CRITICAL if offset cannot be found" |
2984 | msgstr "" | 2245 | msgstr "" |
2985 | 2246 | ||
2986 | #: plugins/check_ntp_time.c:623 | ||
2987 | msgid "Expected offset of the ntp server relative to local server (seconds)" | 2247 | msgid "Expected offset of the ntp server relative to local server (seconds)" |
2988 | msgstr "" | 2248 | msgstr "" |
2989 | 2249 | ||
2990 | #: plugins/check_ntp_time.c:628 | ||
2991 | msgid "This plugin checks the clock offset between the local host and a" | 2250 | msgid "This plugin checks the clock offset between the local host and a" |
2992 | msgstr "" | 2251 | msgstr "" |
2993 | 2252 | ||
2994 | #: plugins/check_ntp_time.c:629 | ||
2995 | msgid "remote NTP server. It is independent of any commandline programs or" | 2253 | msgid "remote NTP server. It is independent of any commandline programs or" |
2996 | msgstr "" | 2254 | msgstr "" |
2997 | 2255 | ||
2998 | #: plugins/check_ntp_time.c:630 | ||
2999 | msgid "external libraries." | 2256 | msgid "external libraries." |
3000 | msgstr "" | 2257 | msgstr "" |
3001 | 2258 | ||
3002 | #: plugins/check_ntp_time.c:634 | ||
3003 | msgid "If you'd rather want to monitor an NTP server, please use" | 2259 | msgid "If you'd rather want to monitor an NTP server, please use" |
3004 | msgstr "" | 2260 | msgstr "" |
3005 | 2261 | ||
3006 | #: plugins/check_ntp_time.c:635 | ||
3007 | msgid "check_ntp_peer." | 2262 | msgid "check_ntp_peer." |
3008 | msgstr "" | 2263 | msgstr "" |
3009 | 2264 | ||
3010 | #: plugins/check_ntp_time.c:636 | ||
3011 | msgid "--time-offset is useful for compensating for servers with known" | 2265 | msgid "--time-offset is useful for compensating for servers with known" |
3012 | msgstr "" | 2266 | msgstr "" |
3013 | 2267 | ||
3014 | #: plugins/check_ntp_time.c:637 | ||
3015 | msgid "and expected clock skew." | 2268 | msgid "and expected clock skew." |
3016 | msgstr "" | 2269 | msgstr "" |
3017 | 2270 | ||
3018 | #: plugins/check_nwstat.c:194 | ||
3019 | #, c-format | 2271 | #, c-format |
3020 | msgid "NetWare %s: " | 2272 | msgid "NetWare %s: " |
3021 | msgstr "" | 2273 | msgstr "" |
3022 | 2274 | ||
3023 | #: plugins/check_nwstat.c:232 | ||
3024 | #, c-format | 2275 | #, c-format |
3025 | msgid "Up %s," | 2276 | msgid "Up %s," |
3026 | msgstr "" | 2277 | msgstr "" |
3027 | 2278 | ||
3028 | #: plugins/check_nwstat.c:240 | ||
3029 | #, c-format | 2279 | #, c-format |
3030 | msgid "Load %s - %s %s-min load average = %lu%%|load%s=%lu;%lu;%lu;0;100" | 2280 | msgid "Load %s - %s %s-min load average = %lu%%|load%s=%lu;%lu;%lu;0;100" |
3031 | msgstr "" | 2281 | msgstr "" |
3032 | 2282 | ||
3033 | #: plugins/check_nwstat.c:268 | ||
3034 | #, c-format | 2283 | #, c-format |
3035 | msgid "Conns %s - %lu current connections|Conns=%lu;%lu;%lu;;" | 2284 | msgid "Conns %s - %lu current connections|Conns=%lu;%lu;%lu;;" |
3036 | msgstr "" | 2285 | msgstr "" |
3037 | 2286 | ||
3038 | #: plugins/check_nwstat.c:293 | ||
3039 | #, c-format | 2287 | #, c-format |
3040 | msgid "%s: Long term cache hits = %lu%%" | 2288 | msgid "%s: Long term cache hits = %lu%%" |
3041 | msgstr "" | 2289 | msgstr "" |
3042 | 2290 | ||
3043 | #: plugins/check_nwstat.c:315 | ||
3044 | #, c-format | 2291 | #, c-format |
3045 | msgid "%s: Total cache buffers = %lu|Cachebuffers=%lu;%lu;%lu;;" | 2292 | msgid "%s: Total cache buffers = %lu|Cachebuffers=%lu;%lu;%lu;;" |
3046 | msgstr "" | 2293 | msgstr "" |
3047 | 2294 | ||
3048 | #: plugins/check_nwstat.c:340 | ||
3049 | #, c-format | 2295 | #, c-format |
3050 | msgid "%s: Dirty cache buffers = %lu|Dirty-Cache-Buffers=%lu;%lu;%lu;;" | 2296 | msgid "%s: Dirty cache buffers = %lu|Dirty-Cache-Buffers=%lu;%lu;%lu;;" |
3051 | msgstr "" | 2297 | msgstr "" |
3052 | 2298 | ||
3053 | #: plugins/check_nwstat.c:365 | ||
3054 | #, c-format | 2299 | #, c-format |
3055 | msgid "%s: LRU sitting time = %lu minutes" | 2300 | msgid "%s: LRU sitting time = %lu minutes" |
3056 | msgstr "" | 2301 | msgstr "" |
3057 | 2302 | ||
3058 | #: plugins/check_nwstat.c:382 plugins/check_nwstat.c:410 | ||
3059 | #: plugins/check_nwstat.c:437 plugins/check_nwstat.c:470 | ||
3060 | #: plugins/check_nwstat.c:650 plugins/check_nwstat.c:676 | ||
3061 | #: plugins/check_nwstat.c:707 plugins/check_nwstat.c:753 | ||
3062 | #: plugins/check_nwstat.c:777 | ||
3063 | #, c-format | 2303 | #, c-format |
3064 | msgid "CRITICAL - Volume '%s' does not exist!" | 2304 | msgid "CRITICAL - Volume '%s' does not exist!" |
3065 | msgstr "" | 2305 | msgstr "" |
3066 | 2306 | ||
3067 | #: plugins/check_nwstat.c:391 | ||
3068 | #, c-format | 2307 | #, c-format |
3069 | msgid "%s%lu KB free on volume %s|KBFree%s=%lu;%lu;%lu;;" | 2308 | msgid "%s%lu KB free on volume %s|KBFree%s=%lu;%lu;%lu;;" |
3070 | msgstr "" | 2309 | msgstr "" |
3071 | 2310 | ||
3072 | #: plugins/check_nwstat.c:392 plugins/check_nwstat.c:420 | ||
3073 | #: plugins/check_nwstat.c:447 plugins/check_nwstat.c:659 | ||
3074 | #: plugins/check_nwstat.c:685 plugins/check_nwstat.c:761 | ||
3075 | msgid "Only " | 2311 | msgid "Only " |
3076 | msgstr "" | 2312 | msgstr "" |
3077 | 2313 | ||
3078 | #: plugins/check_nwstat.c:419 | ||
3079 | #, c-format | 2314 | #, c-format |
3080 | msgid "%s%lu MB free on volume %s|MBFree%s=%lu;%lu;%lu;;" | 2315 | msgid "%s%lu MB free on volume %s|MBFree%s=%lu;%lu;%lu;;" |
3081 | msgstr "" | 2316 | msgstr "" |
3082 | 2317 | ||
3083 | #: plugins/check_nwstat.c:446 | ||
3084 | #, c-format | 2318 | #, c-format |
3085 | msgid "%s%lu MB used on volume %s|MBUsed%s=%lu;%lu;%lu;;" | 2319 | msgid "%s%lu MB used on volume %s|MBUsed%s=%lu;%lu;%lu;;" |
3086 | msgstr "" | 2320 | msgstr "" |
3087 | 2321 | ||
3088 | #: plugins/check_nwstat.c:494 | ||
3089 | #, c-format | 2322 | #, c-format |
3090 | msgid "" | 2323 | msgid "" |
3091 | "%lu MB (%lu%%) free on volume %s - total %lu MB|FreeMB%s=%lu;%lu;%lu;0;100" | 2324 | "%lu MB (%lu%%) free on volume %s - total %lu MB|FreeMB%s=%lu;%lu;%lu;0;100" |
3092 | msgstr "" | 2325 | msgstr "" |
3093 | 2326 | ||
3094 | #: plugins/check_nwstat.c:528 | ||
3095 | #, c-format | 2327 | #, c-format |
3096 | msgid "Directory Services Database is %s (DS version %s)" | 2328 | msgid "Directory Services Database is %s (DS version %s)" |
3097 | msgstr "" | 2329 | msgstr "" |
3098 | 2330 | ||
3099 | #: plugins/check_nwstat.c:545 | ||
3100 | #, c-format | 2331 | #, c-format |
3101 | msgid "Logins are %s" | 2332 | msgid "Logins are %s" |
3102 | msgstr "" | 2333 | msgstr "" |
3103 | 2334 | ||
3104 | #: plugins/check_nwstat.c:545 | ||
3105 | msgid "enabled" | 2335 | msgid "enabled" |
3106 | msgstr "" | 2336 | msgstr "" |
3107 | 2337 | ||
3108 | #: plugins/check_nwstat.c:545 | ||
3109 | msgid "disabled" | 2338 | msgid "disabled" |
3110 | msgstr "" | 2339 | msgstr "" |
3111 | 2340 | ||
3112 | #: plugins/check_nwstat.c:560 | ||
3113 | msgid "CRITICAL - NRM Status is bad!" | 2341 | msgid "CRITICAL - NRM Status is bad!" |
3114 | msgstr "" | 2342 | msgstr "" |
3115 | 2343 | ||
3116 | #: plugins/check_nwstat.c:565 | ||
3117 | msgid "Warning - NRM Status is suspect!" | 2344 | msgid "Warning - NRM Status is suspect!" |
3118 | msgstr "" | 2345 | msgstr "" |
3119 | 2346 | ||
3120 | #: plugins/check_nwstat.c:568 | ||
3121 | msgid "OK - NRM Status is good!" | 2347 | msgid "OK - NRM Status is good!" |
3122 | msgstr "" | 2348 | msgstr "" |
3123 | 2349 | ||
3124 | #: plugins/check_nwstat.c:610 | ||
3125 | #, c-format | 2350 | #, c-format |
3126 | msgid "%lu of %lu (%lu%%) packet receive buffers used" | 2351 | msgid "%lu of %lu (%lu%%) packet receive buffers used" |
3127 | msgstr "" | 2352 | msgstr "" |
3128 | 2353 | ||
3129 | #: plugins/check_nwstat.c:634 | ||
3130 | #, c-format | 2354 | #, c-format |
3131 | msgid "%lu entries in SAP table" | 2355 | msgid "%lu entries in SAP table" |
3132 | msgstr "" | 2356 | msgstr "" |
3133 | 2357 | ||
3134 | #: plugins/check_nwstat.c:636 | ||
3135 | #, c-format | 2358 | #, c-format |
3136 | msgid "%lu entries in SAP table for SAP type %d" | 2359 | msgid "%lu entries in SAP table for SAP type %d" |
3137 | msgstr "" | 2360 | msgstr "" |
3138 | 2361 | ||
3139 | #: plugins/check_nwstat.c:658 | ||
3140 | #, c-format | 2362 | #, c-format |
3141 | msgid "%s%lu KB purgeable on volume %s|Purge%s=%lu;%lu;%lu;;" | 2363 | msgid "%s%lu KB purgeable on volume %s|Purge%s=%lu;%lu;%lu;;" |
3142 | msgstr "" | 2364 | msgstr "" |
3143 | 2365 | ||
3144 | #: plugins/check_nwstat.c:684 | ||
3145 | #, c-format | 2366 | #, c-format |
3146 | msgid "%s%lu MB purgeable on volume %s|Purge%s=%lu;%lu;%lu;;" | 2367 | msgid "%s%lu MB purgeable on volume %s|Purge%s=%lu;%lu;%lu;;" |
3147 | msgstr "" | 2368 | msgstr "" |
3148 | 2369 | ||
3149 | #: plugins/check_nwstat.c:730 | ||
3150 | #, c-format | 2370 | #, c-format |
3151 | msgid "%lu MB (%lu%%) purgeable on volume %s|Purgeable%s=%lu;%lu;%lu;0;100" | 2371 | msgid "%lu MB (%lu%%) purgeable on volume %s|Purgeable%s=%lu;%lu;%lu;0;100" |
3152 | msgstr "" | 2372 | msgstr "" |
3153 | 2373 | ||
3154 | #: plugins/check_nwstat.c:761 | ||
3155 | #, c-format | 2374 | #, c-format |
3156 | msgid "%s%lu KB not yet purgeable on volume %s" | 2375 | msgid "%s%lu KB not yet purgeable on volume %s" |
3157 | msgstr "" | 2376 | msgstr "" |
3158 | 2377 | ||
3159 | #: plugins/check_nwstat.c:800 | ||
3160 | #, c-format | 2378 | #, c-format |
3161 | msgid "%lu MB (%lu%%) not yet purgeable on volume %s" | 2379 | msgid "%lu MB (%lu%%) not yet purgeable on volume %s" |
3162 | msgstr "" | 2380 | msgstr "" |
3163 | 2381 | ||
3164 | #: plugins/check_nwstat.c:821 | ||
3165 | #, c-format | 2382 | #, c-format |
3166 | msgid "%lu open files|Openfiles=%lu;%lu;%lu;0,0" | 2383 | msgid "%lu open files|Openfiles=%lu;%lu;%lu;0,0" |
3167 | msgstr "" | 2384 | msgstr "" |
3168 | 2385 | ||
3169 | #: plugins/check_nwstat.c:846 | ||
3170 | #, c-format | 2386 | #, c-format |
3171 | msgid "%lu abended threads|Abends=%lu;%lu;%lu;;" | 2387 | msgid "%lu abended threads|Abends=%lu;%lu;%lu;;" |
3172 | msgstr "" | 2388 | msgstr "" |
3173 | 2389 | ||
3174 | #: plugins/check_nwstat.c:881 | ||
3175 | #, c-format | 2390 | #, c-format |
3176 | msgid "%lu current service processes (%lu max)|Processes=%lu;%lu;%lu;0;%lu" | 2391 | msgid "%lu current service processes (%lu max)|Processes=%lu;%lu;%lu;0;%lu" |
3177 | msgstr "" | 2392 | msgstr "" |
3178 | 2393 | ||
3179 | #: plugins/check_nwstat.c:904 | ||
3180 | msgid "CRITICAL - Time not in sync with network!" | 2394 | msgid "CRITICAL - Time not in sync with network!" |
3181 | msgstr "" | 2395 | msgstr "" |
3182 | 2396 | ||
3183 | #: plugins/check_nwstat.c:907 | ||
3184 | msgid "OK - Time in sync with network!" | 2397 | msgid "OK - Time in sync with network!" |
3185 | msgstr "" | 2398 | msgstr "" |
3186 | 2399 | ||
3187 | #: plugins/check_nwstat.c:930 | ||
3188 | #, c-format | 2400 | #, c-format |
3189 | msgid "LRU sitting time = %lu seconds" | 2401 | msgid "LRU sitting time = %lu seconds" |
3190 | msgstr "" | 2402 | msgstr "" |
3191 | 2403 | ||
3192 | #: plugins/check_nwstat.c:949 | ||
3193 | #, c-format | 2404 | #, c-format |
3194 | msgid "Dirty cache buffers = %lu%% of the total|DCB=%lu;%lu;%lu;0;100" | 2405 | msgid "Dirty cache buffers = %lu%% of the total|DCB=%lu;%lu;%lu;0;100" |
3195 | msgstr "" | 2406 | msgstr "" |
3196 | 2407 | ||
3197 | #: plugins/check_nwstat.c:971 | ||
3198 | #, c-format | 2408 | #, c-format |
3199 | msgid "Total cache buffers = %lu%% of the original|TCB=%lu;%lu;%lu;0;100" | 2409 | msgid "Total cache buffers = %lu%% of the original|TCB=%lu;%lu;%lu;0;100" |
3200 | msgstr "" | 2410 | msgstr "" |
3201 | 2411 | ||
3202 | #: plugins/check_nwstat.c:989 | ||
3203 | #, c-format | 2412 | #, c-format |
3204 | msgid "NDS Version %s" | 2413 | msgid "NDS Version %s" |
3205 | msgstr "" | 2414 | msgstr "" |
3206 | 2415 | ||
3207 | #: plugins/check_nwstat.c:1005 | ||
3208 | #, c-format | 2416 | #, c-format |
3209 | msgid "Up %s" | 2417 | msgid "Up %s" |
3210 | msgstr "" | 2418 | msgstr "" |
3211 | 2419 | ||
3212 | #: plugins/check_nwstat.c:1019 | ||
3213 | #, c-format | 2420 | #, c-format |
3214 | msgid "Module %s version %s is loaded" | 2421 | msgid "Module %s version %s is loaded" |
3215 | msgstr "" | 2422 | msgstr "" |
3216 | 2423 | ||
3217 | #: plugins/check_nwstat.c:1022 | ||
3218 | #, c-format | 2424 | #, c-format |
3219 | msgid "Module %s is not loaded" | 2425 | msgid "Module %s is not loaded" |
3220 | msgstr "" | 2426 | msgstr "" |
3221 | 2427 | ||
3222 | #: plugins/check_nwstat.c:1033 plugins/check_nwstat.c:1059 | ||
3223 | #: plugins/check_nwstat.c:1085 plugins/check_nwstat.c:1111 | ||
3224 | #: plugins/check_nwstat.c:1137 plugins/check_nwstat.c:1163 | ||
3225 | #: plugins/check_nwstat.c:1189 plugins/check_nwstat.c:1215 | ||
3226 | #: plugins/check_nwstat.c:1241 plugins/check_nwstat.c:1267 | ||
3227 | #, c-format | 2428 | #, c-format |
3228 | msgid "CRITICAL - Value '%s' does not exist!" | 2429 | msgid "CRITICAL - Value '%s' does not exist!" |
3229 | msgstr "" | 2430 | msgstr "" |
3230 | 2431 | ||
3231 | #: plugins/check_nwstat.c:1042 plugins/check_nwstat.c:1068 | ||
3232 | #: plugins/check_nwstat.c:1094 plugins/check_nwstat.c:1120 | ||
3233 | #: plugins/check_nwstat.c:1146 plugins/check_nwstat.c:1172 | ||
3234 | #: plugins/check_nwstat.c:1198 plugins/check_nwstat.c:1224 | ||
3235 | #: plugins/check_nwstat.c:1250 plugins/check_nwstat.c:1276 | ||
3236 | #, c-format | 2432 | #, c-format |
3237 | msgid "%s is %lu|%s=%lu;%lu;%lu;;" | 2433 | msgid "%s is %lu|%s=%lu;%lu;%lu;;" |
3238 | msgstr "" | 2434 | msgstr "" |
3239 | 2435 | ||
3240 | #: plugins/check_nwstat.c:1289 plugins/check_overcr.c:285 | ||
3241 | msgid "Nothing to check!\n" | 2436 | msgid "Nothing to check!\n" |
3242 | msgstr "" | 2437 | msgstr "" |
3243 | 2438 | ||
3244 | #: plugins/check_nwstat.c:1371 plugins/check_overcr.c:355 | ||
3245 | msgid "Server port an integer\n" | 2439 | msgid "Server port an integer\n" |
3246 | msgstr "" | 2440 | msgstr "" |
3247 | 2441 | ||
3248 | #: plugins/check_nwstat.c:1601 | ||
3249 | msgid "This plugin attempts to contact the MRTGEXT NLM running on a" | 2442 | msgid "This plugin attempts to contact the MRTGEXT NLM running on a" |
3250 | msgstr "" | 2443 | msgstr "" |
3251 | 2444 | ||
3252 | #: plugins/check_nwstat.c:1602 | ||
3253 | msgid "Novell server to gather the requested system information." | 2445 | msgid "Novell server to gather the requested system information." |
3254 | msgstr "" | 2446 | msgstr "" |
3255 | 2447 | ||
3256 | #: plugins/check_nwstat.c:1614 plugins/check_overcr.c:436 | ||
3257 | msgid "Variable to check. Valid variables include:" | 2448 | msgid "Variable to check. Valid variables include:" |
3258 | msgstr "" | 2449 | msgstr "" |
3259 | 2450 | ||
3260 | #: plugins/check_nwstat.c:1615 | ||
3261 | msgid "LOAD1 = 1 minute average CPU load" | 2451 | msgid "LOAD1 = 1 minute average CPU load" |
3262 | msgstr "" | 2452 | msgstr "" |
3263 | 2453 | ||
3264 | #: plugins/check_nwstat.c:1616 | ||
3265 | msgid "LOAD5 = 5 minute average CPU load" | 2454 | msgid "LOAD5 = 5 minute average CPU load" |
3266 | msgstr "" | 2455 | msgstr "" |
3267 | 2456 | ||
3268 | #: plugins/check_nwstat.c:1617 | ||
3269 | msgid "LOAD15 = 15 minute average CPU load" | 2457 | msgid "LOAD15 = 15 minute average CPU load" |
3270 | msgstr "" | 2458 | msgstr "" |
3271 | 2459 | ||
3272 | #: plugins/check_nwstat.c:1618 | ||
3273 | msgid "CSPROCS = number of current service processes (NW 5.x only)" | 2460 | msgid "CSPROCS = number of current service processes (NW 5.x only)" |
3274 | msgstr "" | 2461 | msgstr "" |
3275 | 2462 | ||
3276 | #: plugins/check_nwstat.c:1619 | ||
3277 | msgid "ABENDS = number of abended threads (NW 5.x only)" | 2463 | msgid "ABENDS = number of abended threads (NW 5.x only)" |
3278 | msgstr "" | 2464 | msgstr "" |
3279 | 2465 | ||
3280 | #: plugins/check_nwstat.c:1620 | ||
3281 | msgid "UPTIME = server uptime" | 2466 | msgid "UPTIME = server uptime" |
3282 | msgstr "" | 2467 | msgstr "" |
3283 | 2468 | ||
3284 | #: plugins/check_nwstat.c:1621 | ||
3285 | msgid "LTCH = percent long term cache hits" | 2469 | msgid "LTCH = percent long term cache hits" |
3286 | msgstr "" | 2470 | msgstr "" |
3287 | 2471 | ||
3288 | #: plugins/check_nwstat.c:1622 | ||
3289 | msgid "CBUFF = current number of cache buffers" | 2472 | msgid "CBUFF = current number of cache buffers" |
3290 | msgstr "" | 2473 | msgstr "" |
3291 | 2474 | ||
3292 | #: plugins/check_nwstat.c:1623 | ||
3293 | msgid "CDBUFF = current number of dirty cache buffers" | 2475 | msgid "CDBUFF = current number of dirty cache buffers" |
3294 | msgstr "" | 2476 | msgstr "" |
3295 | 2477 | ||
3296 | #: plugins/check_nwstat.c:1624 | ||
3297 | msgid "DCB = dirty cache buffers as a percentage of the total" | 2478 | msgid "DCB = dirty cache buffers as a percentage of the total" |
3298 | msgstr "" | 2479 | msgstr "" |
3299 | 2480 | ||
3300 | #: plugins/check_nwstat.c:1625 | ||
3301 | msgid "TCB = dirty cache buffers as a percentage of the original" | 2481 | msgid "TCB = dirty cache buffers as a percentage of the original" |
3302 | msgstr "" | 2482 | msgstr "" |
3303 | 2483 | ||
3304 | #: plugins/check_nwstat.c:1626 | ||
3305 | msgid "OFILES = number of open files" | 2484 | msgid "OFILES = number of open files" |
3306 | msgstr "" | 2485 | msgstr "" |
3307 | 2486 | ||
3308 | #: plugins/check_nwstat.c:1627 | ||
3309 | msgid " VMF<vol> = MB of free space on Volume <vol>" | 2487 | msgid " VMF<vol> = MB of free space on Volume <vol>" |
3310 | msgstr "" | 2488 | msgstr "" |
3311 | 2489 | ||
3312 | #: plugins/check_nwstat.c:1628 | ||
3313 | msgid " VMU<vol> = MB used space on Volume <vol>" | 2490 | msgid " VMU<vol> = MB used space on Volume <vol>" |
3314 | msgstr "" | 2491 | msgstr "" |
3315 | 2492 | ||
3316 | #: plugins/check_nwstat.c:1629 | ||
3317 | msgid " VMP<vol> = MB of purgeable space on Volume <vol>" | 2493 | msgid " VMP<vol> = MB of purgeable space on Volume <vol>" |
3318 | msgstr "" | 2494 | msgstr "" |
3319 | 2495 | ||
3320 | #: plugins/check_nwstat.c:1630 | ||
3321 | msgid " VPF<vol> = percent free space on volume <vol>" | 2496 | msgid " VPF<vol> = percent free space on volume <vol>" |
3322 | msgstr "" | 2497 | msgstr "" |
3323 | 2498 | ||
3324 | #: plugins/check_nwstat.c:1631 | ||
3325 | msgid " VKF<vol> = KB of free space on volume <vol>" | 2499 | msgid " VKF<vol> = KB of free space on volume <vol>" |
3326 | msgstr "" | 2500 | msgstr "" |
3327 | 2501 | ||
3328 | #: plugins/check_nwstat.c:1632 | ||
3329 | msgid " VPP<vol> = percent purgeable space on volume <vol>" | 2502 | msgid " VPP<vol> = percent purgeable space on volume <vol>" |
3330 | msgstr "" | 2503 | msgstr "" |
3331 | 2504 | ||
3332 | #: plugins/check_nwstat.c:1633 | ||
3333 | msgid " VKP<vol> = KB of purgeable space on volume <vol>" | 2505 | msgid " VKP<vol> = KB of purgeable space on volume <vol>" |
3334 | msgstr "" | 2506 | msgstr "" |
3335 | 2507 | ||
3336 | #: plugins/check_nwstat.c:1634 | ||
3337 | msgid " VPNP<vol> = percent not yet purgeable space on volume <vol>" | 2508 | msgid " VPNP<vol> = percent not yet purgeable space on volume <vol>" |
3338 | msgstr "" | 2509 | msgstr "" |
3339 | 2510 | ||
3340 | #: plugins/check_nwstat.c:1635 | ||
3341 | msgid " VKNP<vol> = KB of not yet purgeable space on volume <vol>" | 2511 | msgid " VKNP<vol> = KB of not yet purgeable space on volume <vol>" |
3342 | msgstr "" | 2512 | msgstr "" |
3343 | 2513 | ||
3344 | #: plugins/check_nwstat.c:1636 | ||
3345 | msgid " LRUM = LRU sitting time in minutes" | 2514 | msgid " LRUM = LRU sitting time in minutes" |
3346 | msgstr "" | 2515 | msgstr "" |
3347 | 2516 | ||
3348 | #: plugins/check_nwstat.c:1637 | ||
3349 | msgid " LRUS = LRU sitting time in seconds" | 2517 | msgid " LRUS = LRU sitting time in seconds" |
3350 | msgstr "" | 2518 | msgstr "" |
3351 | 2519 | ||
3352 | #: plugins/check_nwstat.c:1638 | ||
3353 | msgid " DSDB = check to see if DS Database is open" | 2520 | msgid " DSDB = check to see if DS Database is open" |
3354 | msgstr "" | 2521 | msgstr "" |
3355 | 2522 | ||
3356 | #: plugins/check_nwstat.c:1639 | ||
3357 | msgid " DSVER = NDS version" | 2523 | msgid " DSVER = NDS version" |
3358 | msgstr "" | 2524 | msgstr "" |
3359 | 2525 | ||
3360 | #: plugins/check_nwstat.c:1640 | ||
3361 | msgid " UPRB = used packet receive buffers" | 2526 | msgid " UPRB = used packet receive buffers" |
3362 | msgstr "" | 2527 | msgstr "" |
3363 | 2528 | ||
3364 | #: plugins/check_nwstat.c:1641 | ||
3365 | msgid " PUPRB = percent (of max) used packet receive buffers" | 2529 | msgid " PUPRB = percent (of max) used packet receive buffers" |
3366 | msgstr "" | 2530 | msgstr "" |
3367 | 2531 | ||
3368 | #: plugins/check_nwstat.c:1642 | ||
3369 | msgid " SAPENTRIES = number of entries in the SAP table" | 2532 | msgid " SAPENTRIES = number of entries in the SAP table" |
3370 | msgstr "" | 2533 | msgstr "" |
3371 | 2534 | ||
3372 | #: plugins/check_nwstat.c:1643 | ||
3373 | msgid " SAPENTRIES<n> = number of entries in the SAP table for SAP type <n>" | 2535 | msgid " SAPENTRIES<n> = number of entries in the SAP table for SAP type <n>" |
3374 | msgstr "" | 2536 | msgstr "" |
3375 | 2537 | ||
3376 | #: plugins/check_nwstat.c:1644 | ||
3377 | msgid " TSYNC = timesync status" | 2538 | msgid " TSYNC = timesync status" |
3378 | msgstr "" | 2539 | msgstr "" |
3379 | 2540 | ||
3380 | #: plugins/check_nwstat.c:1645 | ||
3381 | msgid " LOGINS = check to see if logins are enabled" | 2541 | msgid " LOGINS = check to see if logins are enabled" |
3382 | msgstr "" | 2542 | msgstr "" |
3383 | 2543 | ||
3384 | #: plugins/check_nwstat.c:1646 | ||
3385 | msgid " CONNS = number of currently licensed connections" | 2544 | msgid " CONNS = number of currently licensed connections" |
3386 | msgstr "" | 2545 | msgstr "" |
3387 | 2546 | ||
3388 | #: plugins/check_nwstat.c:1647 | ||
3389 | msgid " NRMH\t= NRM Summary Status" | 2547 | msgid " NRMH\t= NRM Summary Status" |
3390 | msgstr "" | 2548 | msgstr "" |
3391 | 2549 | ||
3392 | #: plugins/check_nwstat.c:1648 | ||
3393 | msgid " NRMP<stat> = Returns the current value for a NRM health item" | 2550 | msgid " NRMP<stat> = Returns the current value for a NRM health item" |
3394 | msgstr "" | 2551 | msgstr "" |
3395 | 2552 | ||
3396 | #: plugins/check_nwstat.c:1649 | ||
3397 | msgid " NRMM<stat> = Returns the current memory stats from NRM" | 2553 | msgid " NRMM<stat> = Returns the current memory stats from NRM" |
3398 | msgstr "" | 2554 | msgstr "" |
3399 | 2555 | ||
3400 | #: plugins/check_nwstat.c:1650 | ||
3401 | msgid " NRMS<stat> = Returns the current Swapfile stats from NRM" | 2556 | msgid " NRMS<stat> = Returns the current Swapfile stats from NRM" |
3402 | msgstr "" | 2557 | msgstr "" |
3403 | 2558 | ||
3404 | #: plugins/check_nwstat.c:1651 | ||
3405 | msgid " NSS1<stat> = Statistics from _Admin:Manage_NSS\\GeneralStats.xml" | 2559 | msgid " NSS1<stat> = Statistics from _Admin:Manage_NSS\\GeneralStats.xml" |
3406 | msgstr "" | 2560 | msgstr "" |
3407 | 2561 | ||
3408 | #: plugins/check_nwstat.c:1652 | ||
3409 | msgid " NSS3<stat> = Statistics from _Admin:Manage_NSS\\NameCache.xml" | 2562 | msgid " NSS3<stat> = Statistics from _Admin:Manage_NSS\\NameCache.xml" |
3410 | msgstr "" | 2563 | msgstr "" |
3411 | 2564 | ||
3412 | #: plugins/check_nwstat.c:1653 | ||
3413 | msgid " NSS4<stat> = Statistics from _Admin:Manage_NSS\\FileStats.xml" | 2565 | msgid " NSS4<stat> = Statistics from _Admin:Manage_NSS\\FileStats.xml" |
3414 | msgstr "" | 2566 | msgstr "" |
3415 | 2567 | ||
3416 | #: plugins/check_nwstat.c:1654 | ||
3417 | msgid " NSS5<stat> = Statistics from _Admin:Manage_NSS\\ObjectCache.xml" | 2568 | msgid " NSS5<stat> = Statistics from _Admin:Manage_NSS\\ObjectCache.xml" |
3418 | msgstr "" | 2569 | msgstr "" |
3419 | 2570 | ||
3420 | #: plugins/check_nwstat.c:1655 | ||
3421 | msgid " NSS6<stat> = Statistics from _Admin:Manage_NSS\\Thread.xml" | 2571 | msgid " NSS6<stat> = Statistics from _Admin:Manage_NSS\\Thread.xml" |
3422 | msgstr "" | 2572 | msgstr "" |
3423 | 2573 | ||
3424 | #: plugins/check_nwstat.c:1656 | ||
3425 | msgid "" | 2574 | msgid "" |
3426 | " NSS7<stat> = Statistics from _Admin:Manage_NSS\\AuthorizationCache.xml" | 2575 | " NSS7<stat> = Statistics from _Admin:Manage_NSS\\AuthorizationCache.xml" |
3427 | msgstr "" | 2576 | msgstr "" |
3428 | 2577 | ||
3429 | #: plugins/check_nwstat.c:1657 | ||
3430 | msgid " NLM:<nlm> = check if NLM is loaded and report version" | 2578 | msgid " NLM:<nlm> = check if NLM is loaded and report version" |
3431 | msgstr "" | 2579 | msgstr "" |
3432 | 2580 | ||
3433 | #: plugins/check_nwstat.c:1658 | ||
3434 | msgid " (e.g. NLM:TSANDS.NLM)" | 2581 | msgid " (e.g. NLM:TSANDS.NLM)" |
3435 | msgstr "" | 2582 | msgstr "" |
3436 | 2583 | ||
3437 | #: plugins/check_nwstat.c:1665 | ||
3438 | msgid "Include server version string in results" | 2584 | msgid "Include server version string in results" |
3439 | msgstr "" | 2585 | msgstr "" |
3440 | 2586 | ||
3441 | #: plugins/check_nwstat.c:1671 | ||
3442 | msgid "- This plugin requires that the MRTGEXT.NLM file from James Drews' MRTG" | 2587 | msgid "- This plugin requires that the MRTGEXT.NLM file from James Drews' MRTG" |
3443 | msgstr "" | 2588 | msgstr "" |
3444 | 2589 | ||
3445 | #: plugins/check_nwstat.c:1672 | ||
3446 | msgid "" | 2590 | msgid "" |
3447 | " extension for NetWare be loaded on the Novell servers you wish to check." | 2591 | " extension for NetWare be loaded on the Novell servers you wish to check." |
3448 | msgstr "" | 2592 | msgstr "" |
3449 | 2593 | ||
3450 | #: plugins/check_nwstat.c:1673 | ||
3451 | msgid " (available from http://www.engr.wisc.edu/~drews/mrtg/)" | 2594 | msgid " (available from http://www.engr.wisc.edu/~drews/mrtg/)" |
3452 | msgstr "" | 2595 | msgstr "" |
3453 | 2596 | ||
3454 | #: plugins/check_nwstat.c:1674 | ||
3455 | msgid "" | 2597 | msgid "" |
3456 | "- Values for critical thresholds should be lower than warning thresholds" | 2598 | "- Values for critical thresholds should be lower than warning thresholds" |
3457 | msgstr "" | 2599 | msgstr "" |
3458 | 2600 | ||
3459 | #: plugins/check_nwstat.c:1675 | ||
3460 | msgid "" | 2601 | msgid "" |
3461 | " when the following variables are checked: VPF, VKF, LTCH, CBUFF, DCB, " | 2602 | " when the following variables are checked: VPF, VKF, LTCH, CBUFF, DCB, " |
3462 | msgstr "" | 2603 | msgstr "" |
3463 | 2604 | ||
3464 | #: plugins/check_nwstat.c:1676 | ||
3465 | msgid " TCB, LRUS and LRUM." | 2605 | msgid " TCB, LRUS and LRUM." |
3466 | msgstr "" | 2606 | msgstr "" |
3467 | 2607 | ||
3468 | #: plugins/check_overcr.c:123 | ||
3469 | msgid "Unknown error fetching load data\n" | 2608 | msgid "Unknown error fetching load data\n" |
3470 | msgstr "" | 2609 | msgstr "" |
3471 | 2610 | ||
3472 | #: plugins/check_overcr.c:127 | ||
3473 | msgid "Invalid response from server - no load information\n" | 2611 | msgid "Invalid response from server - no load information\n" |
3474 | msgstr "" | 2612 | msgstr "" |
3475 | 2613 | ||
3476 | #: plugins/check_overcr.c:133 | ||
3477 | msgid "Invalid response from server after load 1\n" | 2614 | msgid "Invalid response from server after load 1\n" |
3478 | msgstr "" | 2615 | msgstr "" |
3479 | 2616 | ||
3480 | #: plugins/check_overcr.c:139 | ||
3481 | msgid "Invalid response from server after load 5\n" | 2617 | msgid "Invalid response from server after load 5\n" |
3482 | msgstr "" | 2618 | msgstr "" |
3483 | 2619 | ||
3484 | #: plugins/check_overcr.c:164 | ||
3485 | #, c-format | 2620 | #, c-format |
3486 | msgid "Load %s - %s-min load average = %0.2f" | 2621 | msgid "Load %s - %s-min load average = %0.2f" |
3487 | msgstr "" | 2622 | msgstr "" |
3488 | 2623 | ||
3489 | #: plugins/check_overcr.c:174 | ||
3490 | msgid "Unknown error fetching disk data\n" | 2624 | msgid "Unknown error fetching disk data\n" |
3491 | msgstr "" | 2625 | msgstr "" |
3492 | 2626 | ||
3493 | #: plugins/check_overcr.c:184 plugins/check_overcr.c:236 | ||
3494 | #: plugins/check_overcr.c:240 | ||
3495 | msgid "Invalid response from server\n" | 2627 | msgid "Invalid response from server\n" |
3496 | msgstr "" | 2628 | msgstr "" |
3497 | 2629 | ||
3498 | #: plugins/check_overcr.c:211 | ||
3499 | msgid "Unknown error fetching network status\n" | 2630 | msgid "Unknown error fetching network status\n" |
3500 | msgstr "" | 2631 | msgstr "" |
3501 | 2632 | ||
3502 | #: plugins/check_overcr.c:221 | ||
3503 | #, c-format | 2633 | #, c-format |
3504 | msgid "Net %s - %d connection%s on port %d" | 2634 | msgid "Net %s - %d connection%s on port %d" |
3505 | msgstr "" | 2635 | msgstr "" |
3506 | 2636 | ||
3507 | #: plugins/check_overcr.c:232 | ||
3508 | msgid "Unknown error fetching process status\n" | 2637 | msgid "Unknown error fetching process status\n" |
3509 | msgstr "" | 2638 | msgstr "" |
3510 | 2639 | ||
3511 | #: plugins/check_overcr.c:250 | ||
3512 | #, c-format | 2640 | #, c-format |
3513 | msgid "Process %s - %d instance%s of %s running" | 2641 | msgid "Process %s - %d instance%s of %s running" |
3514 | msgstr "" | 2642 | msgstr "" |
3515 | 2643 | ||
3516 | #: plugins/check_overcr.c:277 | ||
3517 | #, c-format | 2644 | #, c-format |
3518 | msgid "Uptime %s - Up %d days %d hours %d minutes" | 2645 | msgid "Uptime %s - Up %d days %d hours %d minutes" |
3519 | msgstr "" | 2646 | msgstr "" |
3520 | 2647 | ||
3521 | #: plugins/check_overcr.c:419 | ||
3522 | msgid "" | 2648 | msgid "" |
3523 | "This plugin attempts to contact the Over-CR collector daemon running on the" | 2649 | "This plugin attempts to contact the Over-CR collector daemon running on the" |
3524 | msgstr "" | 2650 | msgstr "" |
3525 | 2651 | ||
3526 | #: plugins/check_overcr.c:420 | ||
3527 | msgid "remote UNIX server in order to gather the requested system information." | 2652 | msgid "remote UNIX server in order to gather the requested system information." |
3528 | msgstr "" | 2653 | msgstr "" |
3529 | 2654 | ||
3530 | #: plugins/check_overcr.c:437 | ||
3531 | msgid "LOAD1 = 1 minute average CPU load" | 2655 | msgid "LOAD1 = 1 minute average CPU load" |
3532 | msgstr "" | 2656 | msgstr "" |
3533 | 2657 | ||
3534 | #: plugins/check_overcr.c:438 | ||
3535 | msgid "LOAD5 = 5 minute average CPU load" | 2658 | msgid "LOAD5 = 5 minute average CPU load" |
3536 | msgstr "" | 2659 | msgstr "" |
3537 | 2660 | ||
3538 | #: plugins/check_overcr.c:439 | ||
3539 | msgid "LOAD15 = 15 minute average CPU load" | 2661 | msgid "LOAD15 = 15 minute average CPU load" |
3540 | msgstr "" | 2662 | msgstr "" |
3541 | 2663 | ||
3542 | #: plugins/check_overcr.c:440 | ||
3543 | msgid "DPU<filesys> = percent used disk space on filesystem <filesys>" | 2664 | msgid "DPU<filesys> = percent used disk space on filesystem <filesys>" |
3544 | msgstr "" | 2665 | msgstr "" |
3545 | 2666 | ||
3546 | #: plugins/check_overcr.c:441 | ||
3547 | msgid "PROC<process> = number of running processes with name <process>" | 2667 | msgid "PROC<process> = number of running processes with name <process>" |
3548 | msgstr "" | 2668 | msgstr "" |
3549 | 2669 | ||
3550 | #: plugins/check_overcr.c:442 | ||
3551 | msgid "NET<port> = number of active connections on TCP port <port>" | 2670 | msgid "NET<port> = number of active connections on TCP port <port>" |
3552 | msgstr "" | 2671 | msgstr "" |
3553 | 2672 | ||
3554 | #: plugins/check_overcr.c:443 | ||
3555 | msgid "UPTIME = system uptime in seconds" | 2673 | msgid "UPTIME = system uptime in seconds" |
3556 | msgstr "" | 2674 | msgstr "" |
3557 | 2675 | ||
3558 | #: plugins/check_overcr.c:450 | ||
3559 | msgid "This plugin requires that Eric Molitors' Over-CR collector daemon be" | 2676 | msgid "This plugin requires that Eric Molitors' Over-CR collector daemon be" |
3560 | msgstr "" | 2677 | msgstr "" |
3561 | 2678 | ||
3562 | #: plugins/check_overcr.c:451 | ||
3563 | msgid "running on the remote server." | 2679 | msgid "running on the remote server." |
3564 | msgstr "" | 2680 | msgstr "" |
3565 | 2681 | ||
3566 | #: plugins/check_overcr.c:452 | ||
3567 | msgid "Over-CR can be downloaded from http://www.molitor.org/overcr" | 2682 | msgid "Over-CR can be downloaded from http://www.molitor.org/overcr" |
3568 | msgstr "" | 2683 | msgstr "" |
3569 | 2684 | ||
3570 | #: plugins/check_overcr.c:453 | ||
3571 | msgid "This plugin was tested with version 0.99.53 of the Over-CR collector" | 2685 | msgid "This plugin was tested with version 0.99.53 of the Over-CR collector" |
3572 | msgstr "" | 2686 | msgstr "" |
3573 | 2687 | ||
3574 | #: plugins/check_overcr.c:457 | ||
3575 | msgid "" | 2688 | msgid "" |
3576 | "For the available options, the critical threshold value should always be" | 2689 | "For the available options, the critical threshold value should always be" |
3577 | msgstr "" | 2690 | msgstr "" |
3578 | 2691 | ||
3579 | #: plugins/check_overcr.c:458 | ||
3580 | msgid "" | 2692 | msgid "" |
3581 | "higher than the warning threshold value, EXCEPT with the uptime variable" | 2693 | "higher than the warning threshold value, EXCEPT with the uptime variable" |
3582 | msgstr "" | 2694 | msgstr "" |
3583 | 2695 | ||
3584 | #: plugins/check_pgsql.c:224 | ||
3585 | #, c-format | 2696 | #, c-format |
3586 | msgid "CRITICAL - no connection to '%s' (%s).\n" | 2697 | msgid "CRITICAL - no connection to '%s' (%s).\n" |
3587 | msgstr "" | 2698 | msgstr "" |
3588 | 2699 | ||
3589 | #: plugins/check_pgsql.c:252 | ||
3590 | #, c-format | 2700 | #, c-format |
3591 | msgid " %s - database %s (%f sec.)|%s\n" | 2701 | msgid " %s - database %s (%f sec.)|%s\n" |
3592 | msgstr "" | 2702 | msgstr "" |
3593 | 2703 | ||
3594 | #: plugins/check_pgsql.c:320 plugins/check_time.c:277 plugins/check_time.c:289 | ||
3595 | #: plugins/check_users.c:228 | ||
3596 | msgid "Critical threshold must be a positive integer" | 2704 | msgid "Critical threshold must be a positive integer" |
3597 | msgstr "" | 2705 | msgstr "" |
3598 | 2706 | ||
3599 | #: plugins/check_pgsql.c:326 plugins/check_time.c:258 plugins/check_time.c:282 | ||
3600 | #: plugins/check_users.c:226 | ||
3601 | msgid "Warning threshold must be a positive integer" | 2707 | msgid "Warning threshold must be a positive integer" |
3602 | msgstr "" | 2708 | msgstr "" |
3603 | 2709 | ||
3604 | #: plugins/check_pgsql.c:350 | ||
3605 | msgid "Database name exceeds the maximum length" | 2710 | msgid "Database name exceeds the maximum length" |
3606 | msgstr "" | 2711 | msgstr "" |
3607 | 2712 | ||
3608 | #: plugins/check_pgsql.c:356 | ||
3609 | msgid "User name is not valid" | 2713 | msgid "User name is not valid" |
3610 | msgstr "" | 2714 | msgstr "" |
3611 | 2715 | ||
3612 | #: plugins/check_pgsql.c:471 | ||
3613 | #, c-format | 2716 | #, c-format |
3614 | msgid "Test whether a PostgreSQL Database is accepting connections." | 2717 | msgid "Test whether a PostgreSQL Database is accepting connections." |
3615 | msgstr "" | 2718 | msgstr "" |
3616 | 2719 | ||
3617 | #: plugins/check_pgsql.c:483 | ||
3618 | msgid "Database to check " | 2720 | msgid "Database to check " |
3619 | msgstr "" | 2721 | msgstr "" |
3620 | 2722 | ||
3621 | #: plugins/check_pgsql.c:484 | ||
3622 | #, c-format | 2723 | #, c-format |
3623 | msgid "(default: %s)\n" | 2724 | msgid "(default: %s)\n" |
3624 | msgstr "" | 2725 | msgstr "" |
3625 | 2726 | ||
3626 | #: plugins/check_pgsql.c:486 | ||
3627 | msgid "Login name of user" | 2727 | msgid "Login name of user" |
3628 | msgstr "" | 2728 | msgstr "" |
3629 | 2729 | ||
3630 | #: plugins/check_pgsql.c:488 | ||
3631 | msgid "Password (BIG SECURITY ISSUE)" | 2730 | msgid "Password (BIG SECURITY ISSUE)" |
3632 | msgstr "" | 2731 | msgstr "" |
3633 | 2732 | ||
3634 | #: plugins/check_pgsql.c:490 | ||
3635 | msgid "Connection parameters (keyword = value), see below" | 2733 | msgid "Connection parameters (keyword = value), see below" |
3636 | msgstr "" | 2734 | msgstr "" |
3637 | 2735 | ||
3638 | #: plugins/check_pgsql.c:497 | ||
3639 | msgid "SQL query to run. Only first column in first row will be read" | 2736 | msgid "SQL query to run. Only first column in first row will be read" |
3640 | msgstr "" | 2737 | msgstr "" |
3641 | 2738 | ||
3642 | #: plugins/check_pgsql.c:499 | ||
3643 | msgid "A name for the query, this string is used instead of the query" | 2739 | msgid "A name for the query, this string is used instead of the query" |
3644 | msgstr "" | 2740 | msgstr "" |
3645 | 2741 | ||
3646 | #: plugins/check_pgsql.c:500 | ||
3647 | msgid "in the long output of the plugin" | 2742 | msgid "in the long output of the plugin" |
3648 | msgstr "" | 2743 | msgstr "" |
3649 | 2744 | ||
3650 | #: plugins/check_pgsql.c:502 | ||
3651 | msgid "SQL query value to result in warning status (double)" | 2745 | msgid "SQL query value to result in warning status (double)" |
3652 | msgstr "" | 2746 | msgstr "" |
3653 | 2747 | ||
3654 | #: plugins/check_pgsql.c:504 | ||
3655 | msgid "SQL query value to result in critical status (double)" | 2748 | msgid "SQL query value to result in critical status (double)" |
3656 | msgstr "" | 2749 | msgstr "" |
3657 | 2750 | ||
3658 | #: plugins/check_pgsql.c:509 | ||
3659 | msgid "All parameters are optional." | 2751 | msgid "All parameters are optional." |
3660 | msgstr "" | 2752 | msgstr "" |
3661 | 2753 | ||
3662 | #: plugins/check_pgsql.c:510 | ||
3663 | msgid "" | 2754 | msgid "" |
3664 | "This plugin tests a PostgreSQL DBMS to determine whether it is active and" | 2755 | "This plugin tests a PostgreSQL DBMS to determine whether it is active and" |
3665 | msgstr "" | 2756 | msgstr "" |
3666 | 2757 | ||
3667 | #: plugins/check_pgsql.c:511 | ||
3668 | msgid "accepting queries. In its current operation, it simply connects to the" | 2758 | msgid "accepting queries. In its current operation, it simply connects to the" |
3669 | msgstr "" | 2759 | msgstr "" |
3670 | 2760 | ||
3671 | #: plugins/check_pgsql.c:512 | ||
3672 | msgid "" | 2761 | msgid "" |
3673 | "specified database, and then disconnects. If no database is specified, it" | 2762 | "specified database, and then disconnects. If no database is specified, it" |
3674 | msgstr "" | 2763 | msgstr "" |
3675 | 2764 | ||
3676 | #: plugins/check_pgsql.c:513 | ||
3677 | msgid "" | 2765 | msgid "" |
3678 | "connects to the template1 database, which is present in every functioning" | 2766 | "connects to the template1 database, which is present in every functioning" |
3679 | msgstr "" | 2767 | msgstr "" |
3680 | 2768 | ||
3681 | #: plugins/check_pgsql.c:514 | ||
3682 | msgid "PostgreSQL DBMS." | 2769 | msgid "PostgreSQL DBMS." |
3683 | msgstr "" | 2770 | msgstr "" |
3684 | 2771 | ||
3685 | #: plugins/check_pgsql.c:516 | ||
3686 | msgid "If a query is specified using the -q option, it will be executed after" | 2772 | msgid "If a query is specified using the -q option, it will be executed after" |
3687 | msgstr "" | 2773 | msgstr "" |
3688 | 2774 | ||
3689 | #: plugins/check_pgsql.c:517 | ||
3690 | msgid "connecting to the server. The result from the query has to be numeric." | 2775 | msgid "connecting to the server. The result from the query has to be numeric." |
3691 | msgstr "" | 2776 | msgstr "" |
3692 | 2777 | ||
3693 | #: plugins/check_pgsql.c:518 | ||
3694 | msgid "" | 2778 | msgid "" |
3695 | "Multiple SQL commands, separated by semicolon, are allowed but the result " | 2779 | "Multiple SQL commands, separated by semicolon, are allowed but the result " |
3696 | msgstr "" | 2780 | msgstr "" |
3697 | 2781 | ||
3698 | #: plugins/check_pgsql.c:519 | ||
3699 | msgid "of the last command is taken into account only. The value of the first" | 2782 | msgid "of the last command is taken into account only. The value of the first" |
3700 | msgstr "" | 2783 | msgstr "" |
3701 | 2784 | ||
3702 | #: plugins/check_pgsql.c:520 | ||
3703 | msgid "" | 2785 | msgid "" |
3704 | "column in the first row is used as the check result. If a second column is" | 2786 | "column in the first row is used as the check result. If a second column is" |
3705 | msgstr "" | 2787 | msgstr "" |
3706 | 2788 | ||
3707 | #: plugins/check_pgsql.c:521 | ||
3708 | msgid "present in the result set, this is added to the plugin output with a" | 2789 | msgid "present in the result set, this is added to the plugin output with a" |
3709 | msgstr "" | 2790 | msgstr "" |
3710 | 2791 | ||
3711 | #: plugins/check_pgsql.c:522 | ||
3712 | msgid "" | 2792 | msgid "" |
3713 | "prefix of \"Extra Info:\". This information can be displayed in the system" | 2793 | "prefix of \"Extra Info:\". This information can be displayed in the system" |
3714 | msgstr "" | 2794 | msgstr "" |
3715 | 2795 | ||
3716 | #: plugins/check_pgsql.c:523 | ||
3717 | msgid "executing the plugin." | 2796 | msgid "executing the plugin." |
3718 | msgstr "" | 2797 | msgstr "" |
3719 | 2798 | ||
3720 | #: plugins/check_pgsql.c:525 | ||
3721 | msgid "" | 2799 | msgid "" |
3722 | "See the chapter \"Monitoring Database Activity\" of the PostgreSQL manual" | 2800 | "See the chapter \"Monitoring Database Activity\" of the PostgreSQL manual" |
3723 | msgstr "" | 2801 | msgstr "" |
3724 | 2802 | ||
3725 | #: plugins/check_pgsql.c:526 | ||
3726 | msgid "" | 2803 | msgid "" |
3727 | "for details about how to access internal statistics of the database server." | 2804 | "for details about how to access internal statistics of the database server." |
3728 | msgstr "" | 2805 | msgstr "" |
3729 | 2806 | ||
3730 | #: plugins/check_pgsql.c:528 | ||
3731 | msgid "" | 2807 | msgid "" |
3732 | "For a list of available connection parameters which may be used with the -o" | 2808 | "For a list of available connection parameters which may be used with the -o" |
3733 | msgstr "" | 2809 | msgstr "" |
3734 | 2810 | ||
3735 | #: plugins/check_pgsql.c:529 | ||
3736 | msgid "" | 2811 | msgid "" |
3737 | "command line option, see the documentation for PQconnectdb() in the chapter" | 2812 | "command line option, see the documentation for PQconnectdb() in the chapter" |
3738 | msgstr "" | 2813 | msgstr "" |
3739 | 2814 | ||
3740 | #: plugins/check_pgsql.c:530 | ||
3741 | msgid "" | 2815 | msgid "" |
3742 | "\"libpq - C Library\" of the PostgreSQL manual. For example, this may be" | 2816 | "\"libpq - C Library\" of the PostgreSQL manual. For example, this may be" |
3743 | msgstr "" | 2817 | msgstr "" |
3744 | 2818 | ||
3745 | #: plugins/check_pgsql.c:531 | ||
3746 | msgid "" | 2819 | msgid "" |
3747 | "used to specify a service name in pg_service.conf to be used for additional" | 2820 | "used to specify a service name in pg_service.conf to be used for additional" |
3748 | msgstr "" | 2821 | msgstr "" |
3749 | 2822 | ||
3750 | #: plugins/check_pgsql.c:532 | ||
3751 | msgid "connection parameters: -o 'service=<name>' or to specify the SSL mode:" | 2823 | msgid "connection parameters: -o 'service=<name>' or to specify the SSL mode:" |
3752 | msgstr "" | 2824 | msgstr "" |
3753 | 2825 | ||
3754 | #: plugins/check_pgsql.c:533 | ||
3755 | msgid "-o 'sslmode=require'." | 2826 | msgid "-o 'sslmode=require'." |
3756 | msgstr "" | 2827 | msgstr "" |
3757 | 2828 | ||
3758 | #: plugins/check_pgsql.c:535 | ||
3759 | msgid "" | 2829 | msgid "" |
3760 | "The plugin will connect to a local postmaster if no host is specified. To" | 2830 | "The plugin will connect to a local postmaster if no host is specified. To" |
3761 | msgstr "" | 2831 | msgstr "" |
3762 | 2832 | ||
3763 | #: plugins/check_pgsql.c:536 | ||
3764 | msgid "" | 2833 | msgid "" |
3765 | "connect to a remote host, be sure that the remote postmaster accepts TCP/IP" | 2834 | "connect to a remote host, be sure that the remote postmaster accepts TCP/IP" |
3766 | msgstr "" | 2835 | msgstr "" |
3767 | 2836 | ||
3768 | #: plugins/check_pgsql.c:537 | ||
3769 | msgid "connections (start the postmaster with the -i option)." | 2837 | msgid "connections (start the postmaster with the -i option)." |
3770 | msgstr "" | 2838 | msgstr "" |
3771 | 2839 | ||
3772 | #: plugins/check_pgsql.c:539 | ||
3773 | msgid "" | 2840 | msgid "" |
3774 | "Typically, the monitoring user (unless the --logname option is used) should " | 2841 | "Typically, the monitoring user (unless the --logname option is used) should " |
3775 | "be" | 2842 | "be" |
3776 | msgstr "" | 2843 | msgstr "" |
3777 | 2844 | ||
3778 | #: plugins/check_pgsql.c:540 | ||
3779 | msgid "" | 2845 | msgid "" |
3780 | "able to connect to the database without a password. The plugin can also send" | 2846 | "able to connect to the database without a password. The plugin can also send" |
3781 | msgstr "" | 2847 | msgstr "" |
3782 | 2848 | ||
3783 | #: plugins/check_pgsql.c:541 | ||
3784 | msgid "a password, but no effort is made to obscure or encrypt the password." | 2849 | msgid "a password, but no effort is made to obscure or encrypt the password." |
3785 | msgstr "" | 2850 | msgstr "" |
3786 | 2851 | ||
3787 | #: plugins/check_pgsql.c:575 | ||
3788 | #, c-format | 2852 | #, c-format |
3789 | msgid "QUERY %s - %s: %s.\n" | 2853 | msgid "QUERY %s - %s: %s.\n" |
3790 | msgstr "" | 2854 | msgstr "" |
3791 | 2855 | ||
3792 | #: plugins/check_pgsql.c:575 | ||
3793 | msgid "Error with query" | 2856 | msgid "Error with query" |
3794 | msgstr "" | 2857 | msgstr "" |
3795 | 2858 | ||
3796 | #: plugins/check_pgsql.c:581 | ||
3797 | msgid "No rows returned" | 2859 | msgid "No rows returned" |
3798 | msgstr "" | 2860 | msgstr "" |
3799 | 2861 | ||
3800 | #: plugins/check_pgsql.c:586 | ||
3801 | msgid "No columns returned" | 2862 | msgid "No columns returned" |
3802 | msgstr "" | 2863 | msgstr "" |
3803 | 2864 | ||
3804 | #: plugins/check_pgsql.c:592 | ||
3805 | msgid "No data returned" | 2865 | msgid "No data returned" |
3806 | msgstr "" | 2866 | msgstr "" |
3807 | 2867 | ||
3808 | #: plugins/check_pgsql.c:601 | ||
3809 | msgid "Is not a numeric" | 2868 | msgid "Is not a numeric" |
3810 | msgstr "" | 2869 | msgstr "" |
3811 | 2870 | ||
3812 | #: plugins/check_pgsql.c:619 | ||
3813 | #, c-format | 2871 | #, c-format |
3814 | msgid "%s returned %f" | 2872 | msgid "%s returned %f" |
3815 | msgstr "" | 2873 | msgstr "" |
3816 | 2874 | ||
3817 | #: plugins/check_pgsql.c:622 | ||
3818 | #, c-format | 2875 | #, c-format |
3819 | msgid "'%s' returned %f" | 2876 | msgid "'%s' returned %f" |
3820 | msgstr "" | 2877 | msgstr "" |
3821 | 2878 | ||
3822 | #: plugins/check_ping.c:143 | ||
3823 | msgid "CRITICAL - Could not interpret output from ping command\n" | 2879 | msgid "CRITICAL - Could not interpret output from ping command\n" |
3824 | msgstr "" | 2880 | msgstr "" |
3825 | 2881 | ||
3826 | #: plugins/check_ping.c:159 | ||
3827 | #, c-format | 2882 | #, c-format |
3828 | msgid "PING %s - %sPacket loss = %d%%" | 2883 | msgid "PING %s - %sPacket loss = %d%%" |
3829 | msgstr "" | 2884 | msgstr "" |
3830 | 2885 | ||
3831 | #: plugins/check_ping.c:162 | ||
3832 | #, c-format | 2886 | #, c-format |
3833 | msgid "PING %s - %sPacket loss = %d%%, RTA = %2.2f ms" | 2887 | msgid "PING %s - %sPacket loss = %d%%, RTA = %2.2f ms" |
3834 | msgstr "" | 2888 | msgstr "" |
3835 | 2889 | ||
3836 | #: plugins/check_ping.c:263 | ||
3837 | msgid "Could not realloc() addresses\n" | 2890 | msgid "Could not realloc() addresses\n" |
3838 | msgstr "" | 2891 | msgstr "" |
3839 | 2892 | ||
3840 | #: plugins/check_ping.c:278 plugins/check_ping.c:358 | ||
3841 | #, c-format | 2893 | #, c-format |
3842 | msgid "<max_packets> (%s) must be a non-negative number\n" | 2894 | msgid "<max_packets> (%s) must be a non-negative number\n" |
3843 | msgstr "" | 2895 | msgstr "" |
3844 | 2896 | ||
3845 | #: plugins/check_ping.c:312 | ||
3846 | #, c-format | 2897 | #, c-format |
3847 | msgid "<wpl> (%s) must be an integer percentage\n" | 2898 | msgid "<wpl> (%s) must be an integer percentage\n" |
3848 | msgstr "" | 2899 | msgstr "" |
3849 | 2900 | ||
3850 | #: plugins/check_ping.c:323 | ||
3851 | #, c-format | 2901 | #, c-format |
3852 | msgid "<cpl> (%s) must be an integer percentage\n" | 2902 | msgid "<cpl> (%s) must be an integer percentage\n" |
3853 | msgstr "" | 2903 | msgstr "" |
3854 | 2904 | ||
3855 | #: plugins/check_ping.c:334 | ||
3856 | #, c-format | 2905 | #, c-format |
3857 | msgid "<wrta> (%s) must be a non-negative number\n" | 2906 | msgid "<wrta> (%s) must be a non-negative number\n" |
3858 | msgstr "" | 2907 | msgstr "" |
3859 | 2908 | ||
3860 | #: plugins/check_ping.c:345 | ||
3861 | #, c-format | 2909 | #, c-format |
3862 | msgid "<crta> (%s) must be a non-negative number\n" | 2910 | msgid "<crta> (%s) must be a non-negative number\n" |
3863 | msgstr "" | 2911 | msgstr "" |
3864 | 2912 | ||
3865 | #: plugins/check_ping.c:378 | ||
3866 | #, c-format | 2913 | #, c-format |
3867 | msgid "" | 2914 | msgid "" |
3868 | "%s: Warning threshold must be integer or percentage!\n" | 2915 | "%s: Warning threshold must be integer or percentage!\n" |
3869 | "\n" | 2916 | "\n" |
3870 | msgstr "" | 2917 | msgstr "" |
3871 | 2918 | ||
3872 | #: plugins/check_ping.c:391 | ||
3873 | #, c-format | 2919 | #, c-format |
3874 | msgid "<wrta> was not set\n" | 2920 | msgid "<wrta> was not set\n" |
3875 | msgstr "" | 2921 | msgstr "" |
3876 | 2922 | ||
3877 | #: plugins/check_ping.c:395 | ||
3878 | #, c-format | 2923 | #, c-format |
3879 | msgid "<crta> was not set\n" | 2924 | msgid "<crta> was not set\n" |
3880 | msgstr "" | 2925 | msgstr "" |
3881 | 2926 | ||
3882 | #: plugins/check_ping.c:399 | ||
3883 | #, c-format | 2927 | #, c-format |
3884 | msgid "<wpl> was not set\n" | 2928 | msgid "<wpl> was not set\n" |
3885 | msgstr "" | 2929 | msgstr "" |
3886 | 2930 | ||
3887 | #: plugins/check_ping.c:403 | ||
3888 | #, c-format | 2931 | #, c-format |
3889 | msgid "<cpl> was not set\n" | 2932 | msgid "<cpl> was not set\n" |
3890 | msgstr "" | 2933 | msgstr "" |
3891 | 2934 | ||
3892 | #: plugins/check_ping.c:407 | ||
3893 | #, c-format | 2935 | #, c-format |
3894 | msgid "<wrta> (%f) cannot be larger than <crta> (%f)\n" | 2936 | msgid "<wrta> (%f) cannot be larger than <crta> (%f)\n" |
3895 | msgstr "" | 2937 | msgstr "" |
3896 | 2938 | ||
3897 | #: plugins/check_ping.c:411 | ||
3898 | #, c-format | 2939 | #, c-format |
3899 | msgid "<wpl> (%d) cannot be larger than <cpl> (%d)\n" | 2940 | msgid "<wpl> (%d) cannot be larger than <cpl> (%d)\n" |
3900 | msgstr "" | 2941 | msgstr "" |
3901 | 2942 | ||
3902 | #: plugins/check_ping.c:448 | ||
3903 | #, c-format | 2943 | #, c-format |
3904 | msgid "Cannot open stderr for %s\n" | 2944 | msgid "Cannot open stderr for %s\n" |
3905 | msgstr "" | 2945 | msgstr "" |
3906 | 2946 | ||
3907 | #: plugins/check_ping.c:505 plugins/check_ping.c:507 | ||
3908 | msgid "System call sent warnings to stderr " | 2947 | msgid "System call sent warnings to stderr " |
3909 | msgstr "" | 2948 | msgstr "" |
3910 | 2949 | ||
3911 | #: plugins/check_ping.c:533 | ||
3912 | #, c-format | 2950 | #, c-format |
3913 | msgid "CRITICAL - Network Unreachable (%s)\n" | 2951 | msgid "CRITICAL - Network Unreachable (%s)\n" |
3914 | msgstr "" | 2952 | msgstr "" |
3915 | 2953 | ||
3916 | #: plugins/check_ping.c:535 | ||
3917 | #, c-format | 2954 | #, c-format |
3918 | msgid "CRITICAL - Host Unreachable (%s)\n" | 2955 | msgid "CRITICAL - Host Unreachable (%s)\n" |
3919 | msgstr "" | 2956 | msgstr "" |
3920 | 2957 | ||
3921 | #: plugins/check_ping.c:537 | ||
3922 | #, c-format | 2958 | #, c-format |
3923 | msgid "CRITICAL - Bogus ICMP: Port Unreachable (%s)\n" | 2959 | msgid "CRITICAL - Bogus ICMP: Port Unreachable (%s)\n" |
3924 | msgstr "" | 2960 | msgstr "" |
3925 | 2961 | ||
3926 | #: plugins/check_ping.c:539 | ||
3927 | #, c-format | 2962 | #, c-format |
3928 | msgid "CRITICAL - Bogus ICMP: Protocol Unreachable (%s)\n" | 2963 | msgid "CRITICAL - Bogus ICMP: Protocol Unreachable (%s)\n" |
3929 | msgstr "" | 2964 | msgstr "" |
3930 | 2965 | ||
3931 | #: plugins/check_ping.c:541 | ||
3932 | #, c-format | 2966 | #, c-format |
3933 | msgid "CRITICAL - Network Prohibited (%s)\n" | 2967 | msgid "CRITICAL - Network Prohibited (%s)\n" |
3934 | msgstr "" | 2968 | msgstr "" |
3935 | 2969 | ||
3936 | #: plugins/check_ping.c:543 | ||
3937 | #, c-format | 2970 | #, c-format |
3938 | msgid "CRITICAL - Host Prohibited (%s)\n" | 2971 | msgid "CRITICAL - Host Prohibited (%s)\n" |
3939 | msgstr "" | 2972 | msgstr "" |
3940 | 2973 | ||
3941 | #: plugins/check_ping.c:545 | ||
3942 | #, c-format | 2974 | #, c-format |
3943 | msgid "CRITICAL - Packet Filtered (%s)\n" | 2975 | msgid "CRITICAL - Packet Filtered (%s)\n" |
3944 | msgstr "" | 2976 | msgstr "" |
3945 | 2977 | ||
3946 | #: plugins/check_ping.c:547 | ||
3947 | #, c-format | 2978 | #, c-format |
3948 | msgid "CRITICAL - Host not found (%s)\n" | 2979 | msgid "CRITICAL - Host not found (%s)\n" |
3949 | msgstr "" | 2980 | msgstr "" |
3950 | 2981 | ||
3951 | #: plugins/check_ping.c:549 | ||
3952 | #, c-format | 2982 | #, c-format |
3953 | msgid "CRITICAL - Time to live exceeded (%s)\n" | 2983 | msgid "CRITICAL - Time to live exceeded (%s)\n" |
3954 | msgstr "" | 2984 | msgstr "" |
3955 | 2985 | ||
3956 | #: plugins/check_ping.c:551 | ||
3957 | #, c-format | 2986 | #, c-format |
3958 | msgid "CRITICAL - Destination Unreachable (%s)\n" | 2987 | msgid "CRITICAL - Destination Unreachable (%s)\n" |
3959 | msgstr "" | 2988 | msgstr "" |
3960 | 2989 | ||
3961 | #: plugins/check_ping.c:558 | ||
3962 | msgid "Unable to realloc warn_text\n" | 2990 | msgid "Unable to realloc warn_text\n" |
3963 | msgstr "" | 2991 | msgstr "" |
3964 | 2992 | ||
3965 | #: plugins/check_ping.c:575 | ||
3966 | #, c-format | 2993 | #, c-format |
3967 | msgid "Use ping to check connection statistics for a remote host." | 2994 | msgid "Use ping to check connection statistics for a remote host." |
3968 | msgstr "" | 2995 | msgstr "" |
3969 | 2996 | ||
3970 | #: plugins/check_ping.c:587 | ||
3971 | msgid "host to ping" | 2997 | msgid "host to ping" |
3972 | msgstr "" | 2998 | msgstr "" |
3973 | 2999 | ||
3974 | #: plugins/check_ping.c:593 | ||
3975 | msgid "number of ICMP ECHO packets to send" | 3000 | msgid "number of ICMP ECHO packets to send" |
3976 | msgstr "" | 3001 | msgstr "" |
3977 | 3002 | ||
3978 | #: plugins/check_ping.c:594 | ||
3979 | #, c-format | 3003 | #, c-format |
3980 | msgid "(Default: %d)\n" | 3004 | msgid "(Default: %d)\n" |
3981 | msgstr "" | 3005 | msgstr "" |
3982 | 3006 | ||
3983 | #: plugins/check_ping.c:596 | ||
3984 | msgid "show HTML in the plugin output (obsoleted by urlize)" | 3007 | msgid "show HTML in the plugin output (obsoleted by urlize)" |
3985 | msgstr "" | 3008 | msgstr "" |
3986 | 3009 | ||
3987 | #: plugins/check_ping.c:601 | ||
3988 | msgid "THRESHOLD is <rta>,<pl>% where <rta> is the round trip average travel" | 3010 | msgid "THRESHOLD is <rta>,<pl>% where <rta> is the round trip average travel" |
3989 | msgstr "" | 3011 | msgstr "" |
3990 | 3012 | ||
3991 | #: plugins/check_ping.c:602 | ||
3992 | msgid "time (ms) which triggers a WARNING or CRITICAL state, and <pl> is the" | 3013 | msgid "time (ms) which triggers a WARNING or CRITICAL state, and <pl> is the" |
3993 | msgstr "" | 3014 | msgstr "" |
3994 | 3015 | ||
3995 | #: plugins/check_ping.c:603 | ||
3996 | msgid "percentage of packet loss to trigger an alarm state." | 3016 | msgid "percentage of packet loss to trigger an alarm state." |
3997 | msgstr "" | 3017 | msgstr "" |
3998 | 3018 | ||
3999 | #: plugins/check_ping.c:606 | ||
4000 | msgid "" | 3019 | msgid "" |
4001 | "This plugin uses the ping command to probe the specified host for packet loss" | 3020 | "This plugin uses the ping command to probe the specified host for packet loss" |
4002 | msgstr "" | 3021 | msgstr "" |
4003 | 3022 | ||
4004 | #: plugins/check_ping.c:607 | ||
4005 | msgid "" | 3023 | msgid "" |
4006 | "(percentage) and round trip average (milliseconds). It can produce HTML " | 3024 | "(percentage) and round trip average (milliseconds). It can produce HTML " |
4007 | "output" | 3025 | "output" |
4008 | msgstr "" | 3026 | msgstr "" |
4009 | 3027 | ||
4010 | #: plugins/check_ping.c:608 | ||
4011 | msgid "" | 3028 | msgid "" |
4012 | "linking to a traceroute CGI contributed by Ian Cass. The CGI can be found in" | 3029 | "linking to a traceroute CGI contributed by Ian Cass. The CGI can be found in" |
4013 | msgstr "" | 3030 | msgstr "" |
4014 | 3031 | ||
4015 | #: plugins/check_ping.c:609 | ||
4016 | msgid "the contrib area of the downloads section at http://www.nagios.org/" | 3032 | msgid "the contrib area of the downloads section at http://www.nagios.org/" |
4017 | msgstr "" | 3033 | msgstr "" |
4018 | 3034 | ||
4019 | #: plugins/check_procs.c:197 | ||
4020 | #, c-format | 3035 | #, c-format |
4021 | msgid "CMD: %s\n" | 3036 | msgid "CMD: %s\n" |
4022 | msgstr "" | 3037 | msgstr "" |
4023 | 3038 | ||
4024 | #: plugins/check_procs.c:202 | ||
4025 | msgid "System call sent warnings to stderr" | 3039 | msgid "System call sent warnings to stderr" |
4026 | msgstr "" | 3040 | msgstr "" |
4027 | 3041 | ||
4028 | #: plugins/check_procs.c:349 | ||
4029 | #, c-format | 3042 | #, c-format |
4030 | msgid "Not parseable: %s" | 3043 | msgid "Not parseable: %s" |
4031 | msgstr "" | 3044 | msgstr "" |
4032 | 3045 | ||
4033 | #: plugins/check_procs.c:354 | ||
4034 | #, c-format | 3046 | #, c-format |
4035 | msgid "Unable to read output\n" | 3047 | msgid "Unable to read output\n" |
4036 | msgstr "" | 3048 | msgstr "" |
4037 | 3049 | ||
4038 | #: plugins/check_procs.c:371 | ||
4039 | #, c-format | 3050 | #, c-format |
4040 | msgid "%d warn out of " | 3051 | msgid "%d warn out of " |
4041 | msgstr "" | 3052 | msgstr "" |
4042 | 3053 | ||
4043 | #: plugins/check_procs.c:376 | ||
4044 | #, c-format | 3054 | #, c-format |
4045 | msgid "%d crit, %d warn out of " | 3055 | msgid "%d crit, %d warn out of " |
4046 | msgstr "" | 3056 | msgstr "" |
4047 | 3057 | ||
4048 | #: plugins/check_procs.c:382 | ||
4049 | #, c-format | 3058 | #, c-format |
4050 | msgid " with %s" | 3059 | msgid " with %s" |
4051 | msgstr "" | 3060 | msgstr "" |
4052 | 3061 | ||
4053 | #: plugins/check_procs.c:477 | ||
4054 | msgid "Parent Process ID must be an integer!" | 3062 | msgid "Parent Process ID must be an integer!" |
4055 | msgstr "" | 3063 | msgstr "" |
4056 | 3064 | ||
4057 | #: plugins/check_procs.c:483 plugins/check_procs.c:627 | ||
4058 | #, c-format | 3065 | #, c-format |
4059 | msgid "%s%sSTATE = %s" | 3066 | msgid "%s%sSTATE = %s" |
4060 | msgstr "" | 3067 | msgstr "" |
4061 | 3068 | ||
4062 | #: plugins/check_procs.c:492 | ||
4063 | msgid "UID was not found" | 3069 | msgid "UID was not found" |
4064 | msgstr "" | 3070 | msgstr "" |
4065 | 3071 | ||
4066 | #: plugins/check_procs.c:498 | ||
4067 | msgid "User name was not found" | 3072 | msgid "User name was not found" |
4068 | msgstr "" | 3073 | msgstr "" |
4069 | 3074 | ||
4070 | #: plugins/check_procs.c:513 | ||
4071 | #, c-format | 3075 | #, c-format |
4072 | msgid "%s%scommand name '%s'" | 3076 | msgid "%s%scommand name '%s'" |
4073 | msgstr "" | 3077 | msgstr "" |
4074 | 3078 | ||
4075 | #: plugins/check_procs.c:522 | ||
4076 | #, c-format | 3079 | #, c-format |
4077 | msgid "%s%sexclude progs '%s'" | 3080 | msgid "%s%sexclude progs '%s'" |
4078 | msgstr "" | 3081 | msgstr "" |
4079 | 3082 | ||
4080 | #: plugins/check_procs.c:565 | ||
4081 | msgid "RSS must be an integer!" | 3083 | msgid "RSS must be an integer!" |
4082 | msgstr "" | 3084 | msgstr "" |
4083 | 3085 | ||
4084 | #: plugins/check_procs.c:572 | ||
4085 | msgid "VSZ must be an integer!" | 3086 | msgid "VSZ must be an integer!" |
4086 | msgstr "" | 3087 | msgstr "" |
4087 | 3088 | ||
4088 | #: plugins/check_procs.c:580 | ||
4089 | msgid "PCPU must be a float!" | 3089 | msgid "PCPU must be a float!" |
4090 | msgstr "" | 3090 | msgstr "" |
4091 | 3091 | ||
4092 | #: plugins/check_procs.c:604 | ||
4093 | msgid "Metric must be one of PROCS, VSZ, RSS, CPU, ELAPSED!" | 3092 | msgid "Metric must be one of PROCS, VSZ, RSS, CPU, ELAPSED!" |
4094 | msgstr "" | 3093 | msgstr "" |
4095 | 3094 | ||
4096 | #: plugins/check_procs.c:735 | ||
4097 | msgid "" | 3095 | msgid "" |
4098 | "Checks all processes and generates WARNING or CRITICAL states if the " | 3096 | "Checks all processes and generates WARNING or CRITICAL states if the " |
4099 | "specified" | 3097 | "specified" |
4100 | msgstr "" | 3098 | msgstr "" |
4101 | 3099 | ||
4102 | #: plugins/check_procs.c:736 | ||
4103 | msgid "" | 3100 | msgid "" |
4104 | "metric is outside the required threshold ranges. The metric defaults to " | 3101 | "metric is outside the required threshold ranges. The metric defaults to " |
4105 | "number" | 3102 | "number" |
4106 | msgstr "" | 3103 | msgstr "" |
4107 | 3104 | ||
4108 | #: plugins/check_procs.c:737 | ||
4109 | msgid "" | 3105 | msgid "" |
4110 | "of processes. Search filters can be applied to limit the processes to check." | 3106 | "of processes. Search filters can be applied to limit the processes to check." |
4111 | msgstr "" | 3107 | msgstr "" |
4112 | 3108 | ||
4113 | #: plugins/check_procs.c:746 | ||
4114 | msgid "Generate warning state if metric is outside this range" | 3109 | msgid "Generate warning state if metric is outside this range" |
4115 | msgstr "" | 3110 | msgstr "" |
4116 | 3111 | ||
4117 | #: plugins/check_procs.c:748 | ||
4118 | msgid "Generate critical state if metric is outside this range" | 3112 | msgid "Generate critical state if metric is outside this range" |
4119 | msgstr "" | 3113 | msgstr "" |
4120 | 3114 | ||
4121 | #: plugins/check_procs.c:750 | ||
4122 | msgid "Check thresholds against metric. Valid types:" | 3115 | msgid "Check thresholds against metric. Valid types:" |
4123 | msgstr "" | 3116 | msgstr "" |
4124 | 3117 | ||
4125 | #: plugins/check_procs.c:751 | ||
4126 | msgid "PROCS - number of processes (default)" | 3118 | msgid "PROCS - number of processes (default)" |
4127 | msgstr "" | 3119 | msgstr "" |
4128 | 3120 | ||
4129 | #: plugins/check_procs.c:752 | ||
4130 | msgid "VSZ - virtual memory size" | 3121 | msgid "VSZ - virtual memory size" |
4131 | msgstr "" | 3122 | msgstr "" |
4132 | 3123 | ||
4133 | #: plugins/check_procs.c:753 | ||
4134 | msgid "RSS - resident set memory size" | 3124 | msgid "RSS - resident set memory size" |
4135 | msgstr "" | 3125 | msgstr "" |
4136 | 3126 | ||
4137 | #: plugins/check_procs.c:754 | ||
4138 | msgid "CPU - percentage CPU" | 3127 | msgid "CPU - percentage CPU" |
4139 | msgstr "" | 3128 | msgstr "" |
4140 | 3129 | ||
4141 | #: plugins/check_procs.c:757 | ||
4142 | msgid "ELAPSED - time elapsed in seconds" | 3130 | msgid "ELAPSED - time elapsed in seconds" |
4143 | msgstr "" | 3131 | msgstr "" |
4144 | 3132 | ||
4145 | #: plugins/check_procs.c:762 | ||
4146 | msgid "Extra information. Up to 3 verbosity levels" | 3133 | msgid "Extra information. Up to 3 verbosity levels" |
4147 | msgstr "" | 3134 | msgstr "" |
4148 | 3135 | ||
4149 | #: plugins/check_procs.c:765 | ||
4150 | msgid "Filter own process the traditional way by PID instead of /proc/pid/exe" | 3136 | msgid "Filter own process the traditional way by PID instead of /proc/pid/exe" |
4151 | msgstr "" | 3137 | msgstr "" |
4152 | 3138 | ||
4153 | #: plugins/check_procs.c:770 | ||
4154 | msgid "Only scan for processes that have, in the output of `ps`, one or" | 3139 | msgid "Only scan for processes that have, in the output of `ps`, one or" |
4155 | msgstr "" | 3140 | msgstr "" |
4156 | 3141 | ||
4157 | #: plugins/check_procs.c:771 | ||
4158 | msgid "more of the status flags you specify (for example R, Z, S, RS," | 3142 | msgid "more of the status flags you specify (for example R, Z, S, RS," |
4159 | msgstr "" | 3143 | msgstr "" |
4160 | 3144 | ||
4161 | #: plugins/check_procs.c:772 | ||
4162 | msgid "RSZDT, plus others based on the output of your 'ps' command)." | 3145 | msgid "RSZDT, plus others based on the output of your 'ps' command)." |
4163 | msgstr "" | 3146 | msgstr "" |
4164 | 3147 | ||
4165 | #: plugins/check_procs.c:774 | ||
4166 | msgid "Only scan for children of the parent process ID indicated." | 3148 | msgid "Only scan for children of the parent process ID indicated." |
4167 | msgstr "" | 3149 | msgstr "" |
4168 | 3150 | ||
4169 | #: plugins/check_procs.c:776 | ||
4170 | msgid "Only scan for processes with VSZ higher than indicated." | 3151 | msgid "Only scan for processes with VSZ higher than indicated." |
4171 | msgstr "" | 3152 | msgstr "" |
4172 | 3153 | ||
4173 | #: plugins/check_procs.c:778 | ||
4174 | msgid "Only scan for processes with RSS higher than indicated." | 3154 | msgid "Only scan for processes with RSS higher than indicated." |
4175 | msgstr "" | 3155 | msgstr "" |
4176 | 3156 | ||
4177 | #: plugins/check_procs.c:780 | ||
4178 | msgid "Only scan for processes with PCPU higher than indicated." | 3157 | msgid "Only scan for processes with PCPU higher than indicated." |
4179 | msgstr "" | 3158 | msgstr "" |
4180 | 3159 | ||
4181 | #: plugins/check_procs.c:782 | ||
4182 | msgid "Only scan for processes with user name or ID indicated." | 3160 | msgid "Only scan for processes with user name or ID indicated." |
4183 | msgstr "" | 3161 | msgstr "" |
4184 | 3162 | ||
4185 | #: plugins/check_procs.c:784 | ||
4186 | msgid "Only scan for processes with args that contain STRING." | 3163 | msgid "Only scan for processes with args that contain STRING." |
4187 | msgstr "" | 3164 | msgstr "" |
4188 | 3165 | ||
4189 | #: plugins/check_procs.c:786 | ||
4190 | msgid "Only scan for processes with args that contain the regex STRING." | 3166 | msgid "Only scan for processes with args that contain the regex STRING." |
4191 | msgstr "" | 3167 | msgstr "" |
4192 | 3168 | ||
4193 | #: plugins/check_procs.c:788 | ||
4194 | msgid "Only scan for exact matches of COMMAND (without path)." | 3169 | msgid "Only scan for exact matches of COMMAND (without path)." |
4195 | msgstr "" | 3170 | msgstr "" |
4196 | 3171 | ||
4197 | #: plugins/check_procs.c:790 | ||
4198 | msgid "Exclude processes which match this comma separated list" | 3172 | msgid "Exclude processes which match this comma separated list" |
4199 | msgstr "" | 3173 | msgstr "" |
4200 | 3174 | ||
4201 | #: plugins/check_procs.c:792 | ||
4202 | msgid "Only scan for non kernel threads (works on Linux only)." | 3175 | msgid "Only scan for non kernel threads (works on Linux only)." |
4203 | msgstr "" | 3176 | msgstr "" |
4204 | 3177 | ||
4205 | #: plugins/check_procs.c:794 | ||
4206 | #, c-format | 3178 | #, c-format |
4207 | msgid "" | 3179 | msgid "" |
4208 | "\n" | 3180 | "\n" |
@@ -4212,7 +3184,6 @@ msgid "" | |||
4212 | "\n" | 3184 | "\n" |
4213 | msgstr "" | 3185 | msgstr "" |
4214 | 3186 | ||
4215 | #: plugins/check_procs.c:799 | ||
4216 | #, c-format | 3187 | #, c-format |
4217 | msgid "" | 3188 | msgid "" |
4218 | "This plugin checks the number of currently running processes and\n" | 3189 | "This plugin checks the number of currently running processes and\n" |
@@ -4223,1714 +3194,1335 @@ msgid "" | |||
4223 | "\n" | 3194 | "\n" |
4224 | msgstr "" | 3195 | msgstr "" |
4225 | 3196 | ||
4226 | #: plugins/check_procs.c:808 | ||
4227 | msgid "Warning if not two processes with command name portsentry." | 3197 | msgid "Warning if not two processes with command name portsentry." |
4228 | msgstr "" | 3198 | msgstr "" |
4229 | 3199 | ||
4230 | #: plugins/check_procs.c:809 | ||
4231 | msgid "Critical if < 2 or > 1024 processes" | 3200 | msgid "Critical if < 2 or > 1024 processes" |
4232 | msgstr "" | 3201 | msgstr "" |
4233 | 3202 | ||
4234 | #: plugins/check_procs.c:811 | ||
4235 | msgid "Critical if not at least 1 process with command sshd" | 3203 | msgid "Critical if not at least 1 process with command sshd" |
4236 | msgstr "" | 3204 | msgstr "" |
4237 | 3205 | ||
4238 | #: plugins/check_procs.c:813 | ||
4239 | msgid "Warning if > 1024 processes with command name sshd." | 3206 | msgid "Warning if > 1024 processes with command name sshd." |
4240 | msgstr "" | 3207 | msgstr "" |
4241 | 3208 | ||
4242 | #: plugins/check_procs.c:814 | ||
4243 | msgid "Critical if < 1 processes with command name sshd." | 3209 | msgid "Critical if < 1 processes with command name sshd." |
4244 | msgstr "" | 3210 | msgstr "" |
4245 | 3211 | ||
4246 | #: plugins/check_procs.c:816 | ||
4247 | msgid "Warning alert if > 10 processes with command arguments containing" | 3212 | msgid "Warning alert if > 10 processes with command arguments containing" |
4248 | msgstr "" | 3213 | msgstr "" |
4249 | 3214 | ||
4250 | #: plugins/check_procs.c:817 | ||
4251 | msgid "'/usr/local/bin/perl' and owned by root" | 3215 | msgid "'/usr/local/bin/perl' and owned by root" |
4252 | msgstr "" | 3216 | msgstr "" |
4253 | 3217 | ||
4254 | #: plugins/check_procs.c:819 | ||
4255 | msgid "Alert if VSZ of any processes over 50K or 100K" | 3218 | msgid "Alert if VSZ of any processes over 50K or 100K" |
4256 | msgstr "" | 3219 | msgstr "" |
4257 | 3220 | ||
4258 | #: plugins/check_procs.c:821 | ||
4259 | msgid "Alert if CPU of any processes over 10% or 20%" | 3221 | msgid "Alert if CPU of any processes over 10% or 20%" |
4260 | msgstr "" | 3222 | msgstr "" |
4261 | 3223 | ||
4262 | #: plugins/check_radius.c:181 | ||
4263 | msgid "Config file error\n" | 3224 | msgid "Config file error\n" |
4264 | msgstr "" | 3225 | msgstr "" |
4265 | 3226 | ||
4266 | #: plugins/check_radius.c:190 | ||
4267 | msgid "Out of Memory?\n" | 3227 | msgid "Out of Memory?\n" |
4268 | msgstr "" | 3228 | msgstr "" |
4269 | 3229 | ||
4270 | #: plugins/check_radius.c:194 | ||
4271 | msgid "Invalid NAS-Identifier\n" | 3230 | msgid "Invalid NAS-Identifier\n" |
4272 | msgstr "" | 3231 | msgstr "" |
4273 | 3232 | ||
4274 | #: plugins/check_radius.c:199 plugins/check_smtp.c:156 | ||
4275 | #, c-format | 3233 | #, c-format |
4276 | msgid "gethostname() failed!\n" | 3234 | msgid "gethostname() failed!\n" |
4277 | msgstr "" | 3235 | msgstr "" |
4278 | 3236 | ||
4279 | #: plugins/check_radius.c:203 plugins/check_radius.c:206 | ||
4280 | msgid "Invalid NAS-IP-Address\n" | 3237 | msgid "Invalid NAS-IP-Address\n" |
4281 | msgstr "" | 3238 | msgstr "" |
4282 | 3239 | ||
4283 | #: plugins/check_radius.c:217 | ||
4284 | msgid "Timeout\n" | 3240 | msgid "Timeout\n" |
4285 | msgstr "" | 3241 | msgstr "" |
4286 | 3242 | ||
4287 | #: plugins/check_radius.c:219 | ||
4288 | msgid "Auth Error\n" | 3243 | msgid "Auth Error\n" |
4289 | msgstr "" | 3244 | msgstr "" |
4290 | 3245 | ||
4291 | #: plugins/check_radius.c:221 | ||
4292 | msgid "Auth Failed\n" | 3246 | msgid "Auth Failed\n" |
4293 | msgstr "" | 3247 | msgstr "" |
4294 | 3248 | ||
4295 | #: plugins/check_radius.c:223 | ||
4296 | msgid "Bad Response\n" | 3249 | msgid "Bad Response\n" |
4297 | msgstr "" | 3250 | msgstr "" |
4298 | 3251 | ||
4299 | #: plugins/check_radius.c:227 | ||
4300 | msgid "Auth OK\n" | 3252 | msgid "Auth OK\n" |
4301 | msgstr "" | 3253 | msgstr "" |
4302 | 3254 | ||
4303 | #: plugins/check_radius.c:228 | ||
4304 | #, c-format | 3255 | #, c-format |
4305 | msgid "Unexpected result code %d" | 3256 | msgid "Unexpected result code %d" |
4306 | msgstr "" | 3257 | msgstr "" |
4307 | 3258 | ||
4308 | #: plugins/check_radius.c:317 | ||
4309 | msgid "Number of retries must be a positive integer" | 3259 | msgid "Number of retries must be a positive integer" |
4310 | msgstr "" | 3260 | msgstr "" |
4311 | 3261 | ||
4312 | #: plugins/check_radius.c:331 | ||
4313 | msgid "User not specified" | 3262 | msgid "User not specified" |
4314 | msgstr "" | 3263 | msgstr "" |
4315 | 3264 | ||
4316 | #: plugins/check_radius.c:333 | ||
4317 | msgid "Password not specified" | 3265 | msgid "Password not specified" |
4318 | msgstr "" | 3266 | msgstr "" |
4319 | 3267 | ||
4320 | #: plugins/check_radius.c:335 | ||
4321 | msgid "Configuration file not specified" | 3268 | msgid "Configuration file not specified" |
4322 | msgstr "" | 3269 | msgstr "" |
4323 | 3270 | ||
4324 | #: plugins/check_radius.c:353 | ||
4325 | msgid "Tests to see if a RADIUS server is accepting connections." | 3271 | msgid "Tests to see if a RADIUS server is accepting connections." |
4326 | msgstr "" | 3272 | msgstr "" |
4327 | 3273 | ||
4328 | #: plugins/check_radius.c:365 | ||
4329 | msgid "The user to authenticate" | 3274 | msgid "The user to authenticate" |
4330 | msgstr "" | 3275 | msgstr "" |
4331 | 3276 | ||
4332 | #: plugins/check_radius.c:367 | ||
4333 | msgid "Password for authentication (SECURITY RISK)" | 3277 | msgid "Password for authentication (SECURITY RISK)" |
4334 | msgstr "" | 3278 | msgstr "" |
4335 | 3279 | ||
4336 | #: plugins/check_radius.c:369 | ||
4337 | msgid "NAS identifier" | 3280 | msgid "NAS identifier" |
4338 | msgstr "" | 3281 | msgstr "" |
4339 | 3282 | ||
4340 | #: plugins/check_radius.c:371 | ||
4341 | msgid "NAS IP Address" | 3283 | msgid "NAS IP Address" |
4342 | msgstr "" | 3284 | msgstr "" |
4343 | 3285 | ||
4344 | #: plugins/check_radius.c:373 | ||
4345 | msgid "Configuration file" | 3286 | msgid "Configuration file" |
4346 | msgstr "" | 3287 | msgstr "" |
4347 | 3288 | ||
4348 | #: plugins/check_radius.c:375 | ||
4349 | msgid "Response string to expect from the server" | 3289 | msgid "Response string to expect from the server" |
4350 | msgstr "" | 3290 | msgstr "" |
4351 | 3291 | ||
4352 | #: plugins/check_radius.c:377 | ||
4353 | msgid "Number of times to retry a failed connection" | 3292 | msgid "Number of times to retry a failed connection" |
4354 | msgstr "" | 3293 | msgstr "" |
4355 | 3294 | ||
4356 | #: plugins/check_radius.c:382 | ||
4357 | msgid "" | 3295 | msgid "" |
4358 | "This plugin tests a RADIUS server to see if it is accepting connections." | 3296 | "This plugin tests a RADIUS server to see if it is accepting connections." |
4359 | msgstr "" | 3297 | msgstr "" |
4360 | 3298 | ||
4361 | #: plugins/check_radius.c:383 | ||
4362 | msgid "" | 3299 | msgid "" |
4363 | "The server to test must be specified in the invocation, as well as a user" | 3300 | "The server to test must be specified in the invocation, as well as a user" |
4364 | msgstr "" | 3301 | msgstr "" |
4365 | 3302 | ||
4366 | #: plugins/check_radius.c:384 | 3303 | msgid "name and password. A configuration file must be present. The format of" |
4367 | msgid "" | ||
4368 | "name and password. A configuration file may also be present. The format of" | ||
4369 | msgstr "" | 3304 | msgstr "" |
4370 | 3305 | ||
4371 | #: plugins/check_radius.c:385 | ||
4372 | msgid "" | 3306 | msgid "" |
4373 | "the configuration file is described in the radiusclient library sources." | 3307 | "the configuration file is described in the radiusclient library sources." |
4374 | msgstr "" | 3308 | msgstr "" |
4375 | 3309 | ||
4376 | #: plugins/check_radius.c:386 | ||
4377 | msgid "The password option presents a substantial security issue because the" | 3310 | msgid "The password option presents a substantial security issue because the" |
4378 | msgstr "" | 3311 | msgstr "" |
4379 | 3312 | ||
4380 | #: plugins/check_radius.c:387 | ||
4381 | msgid "" | 3313 | msgid "" |
4382 | "password can possibly be determined by careful watching of the command line" | 3314 | "password can possibly be determined by careful watching of the command line" |
4383 | msgstr "" | 3315 | msgstr "" |
4384 | 3316 | ||
4385 | #: plugins/check_radius.c:388 | ||
4386 | msgid "in a process listing. This risk is exacerbated because the plugin will" | 3317 | msgid "in a process listing. This risk is exacerbated because the plugin will" |
4387 | msgstr "" | 3318 | msgstr "" |
4388 | 3319 | ||
4389 | #: plugins/check_radius.c:389 | ||
4390 | msgid "" | 3320 | msgid "" |
4391 | "typically be executed at regular predictable intervals. Please be sure that" | 3321 | "typically be executed at regular predictable intervals. Please be sure that" |
4392 | msgstr "" | 3322 | msgstr "" |
4393 | 3323 | ||
4394 | #: plugins/check_radius.c:390 | ||
4395 | msgid "the password used does not allow access to sensitive system resources." | 3324 | msgid "the password used does not allow access to sensitive system resources." |
4396 | msgstr "" | 3325 | msgstr "" |
4397 | 3326 | ||
4398 | #: plugins/check_real.c:91 | ||
4399 | #, c-format | 3327 | #, c-format |
4400 | msgid "Unable to connect to %s on port %d\n" | 3328 | msgid "Unable to connect to %s on port %d\n" |
4401 | msgstr "" | 3329 | msgstr "" |
4402 | 3330 | ||
4403 | #: plugins/check_real.c:113 | ||
4404 | #, c-format | 3331 | #, c-format |
4405 | msgid "No data received from %s\n" | 3332 | msgid "No data received from %s\n" |
4406 | msgstr "" | 3333 | msgstr "" |
4407 | 3334 | ||
4408 | #: plugins/check_real.c:118 plugins/check_real.c:192 | ||
4409 | msgid "Invalid REAL response received from host" | 3335 | msgid "Invalid REAL response received from host" |
4410 | msgstr "" | 3336 | msgstr "" |
4411 | 3337 | ||
4412 | #: plugins/check_real.c:120 plugins/check_real.c:194 | ||
4413 | #, c-format | 3338 | #, c-format |
4414 | msgid "Invalid REAL response received from host on port %d\n" | 3339 | msgid "Invalid REAL response received from host on port %d\n" |
4415 | msgstr "" | 3340 | msgstr "" |
4416 | 3341 | ||
4417 | #: plugins/check_real.c:185 plugins/check_tcp.c:315 | ||
4418 | #, c-format | 3342 | #, c-format |
4419 | msgid "No data received from host\n" | 3343 | msgid "No data received from host\n" |
4420 | msgstr "" | 3344 | msgstr "" |
4421 | 3345 | ||
4422 | #: plugins/check_real.c:248 | ||
4423 | #, c-format | 3346 | #, c-format |
4424 | msgid "REAL %s - %d second response time\n" | 3347 | msgid "REAL %s - %d second response time\n" |
4425 | msgstr "" | 3348 | msgstr "" |
4426 | 3349 | ||
4427 | #: plugins/check_real.c:337 plugins/check_ups.c:539 | ||
4428 | msgid "Warning time must be a positive integer" | 3350 | msgid "Warning time must be a positive integer" |
4429 | msgstr "" | 3351 | msgstr "" |
4430 | 3352 | ||
4431 | #: plugins/check_real.c:346 plugins/check_ups.c:530 | ||
4432 | msgid "Critical time must be a positive integer" | 3353 | msgid "Critical time must be a positive integer" |
4433 | msgstr "" | 3354 | msgstr "" |
4434 | 3355 | ||
4435 | #: plugins/check_real.c:382 | ||
4436 | msgid "You must provide a server to check" | 3356 | msgid "You must provide a server to check" |
4437 | msgstr "" | 3357 | msgstr "" |
4438 | 3358 | ||
4439 | #: plugins/check_real.c:414 | ||
4440 | msgid "This plugin tests the REAL service on the specified host." | 3359 | msgid "This plugin tests the REAL service on the specified host." |
4441 | msgstr "" | 3360 | msgstr "" |
4442 | 3361 | ||
4443 | #: plugins/check_real.c:426 | ||
4444 | msgid "Connect to this url" | 3362 | msgid "Connect to this url" |
4445 | msgstr "" | 3363 | msgstr "" |
4446 | 3364 | ||
4447 | #: plugins/check_real.c:428 | ||
4448 | #, c-format | 3365 | #, c-format |
4449 | msgid "String to expect in first line of server response (default: %s)\n" | 3366 | msgid "String to expect in first line of server response (default: %s)\n" |
4450 | msgstr "" | 3367 | msgstr "" |
4451 | 3368 | ||
4452 | #: plugins/check_real.c:438 | ||
4453 | msgid "This plugin will attempt to open an RTSP connection with the host." | 3369 | msgid "This plugin will attempt to open an RTSP connection with the host." |
4454 | msgstr "" | 3370 | msgstr "" |
4455 | 3371 | ||
4456 | #: plugins/check_real.c:439 plugins/check_smtp.c:878 | ||
4457 | msgid "Successful connects return STATE_OK, refusals and timeouts return" | 3372 | msgid "Successful connects return STATE_OK, refusals and timeouts return" |
4458 | msgstr "" | 3373 | msgstr "" |
4459 | 3374 | ||
4460 | #: plugins/check_real.c:440 | ||
4461 | msgid "" | 3375 | msgid "" |
4462 | "STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful connects," | 3376 | "STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful connects," |
4463 | msgstr "" | 3377 | msgstr "" |
4464 | 3378 | ||
4465 | #: plugins/check_real.c:441 | ||
4466 | msgid "" | 3379 | msgid "" |
4467 | "but incorrect response messages from the host result in STATE_WARNING return" | 3380 | "but incorrect response messages from the host result in STATE_WARNING return" |
4468 | msgstr "" | 3381 | msgstr "" |
4469 | 3382 | ||
4470 | #: plugins/check_real.c:442 | ||
4471 | msgid "values." | 3383 | msgid "values." |
4472 | msgstr "" | 3384 | msgstr "" |
4473 | 3385 | ||
4474 | #: plugins/check_smtp.c:152 plugins/check_swap.c:283 plugins/check_swap.c:289 | ||
4475 | #, c-format | 3386 | #, c-format |
4476 | msgid "malloc() failed!\n" | 3387 | msgid "malloc() failed!\n" |
4477 | msgstr "" | 3388 | msgstr "" |
4478 | 3389 | ||
4479 | #: plugins/check_smtp.c:200 plugins/check_smtp.c:212 | ||
4480 | #, c-format | 3390 | #, c-format |
4481 | msgid "recv() failed\n" | 3391 | msgid "CRITICAL - Cannot create SSL context.\n" |
4482 | msgstr "" | 3392 | msgstr "" |
4483 | 3393 | ||
4484 | #: plugins/check_smtp.c:222 | ||
4485 | #, c-format | 3394 | #, c-format |
4486 | msgid "WARNING - TLS not supported by server\n" | 3395 | msgid "recv() failed\n" |
4487 | msgstr "" | 3396 | msgstr "" |
4488 | 3397 | ||
4489 | #: plugins/check_smtp.c:234 | ||
4490 | #, c-format | 3398 | #, c-format |
4491 | msgid "Server does not support STARTTLS\n" | 3399 | msgid "WARNING - TLS not supported by server\n" |
4492 | msgstr "" | 3400 | msgstr "" |
4493 | 3401 | ||
4494 | #: plugins/check_smtp.c:240 | ||
4495 | #, c-format | 3402 | #, c-format |
4496 | msgid "CRITICAL - Cannot create SSL context.\n" | 3403 | msgid "Server does not support STARTTLS\n" |
4497 | msgstr "" | 3404 | msgstr "" |
4498 | 3405 | ||
4499 | #: plugins/check_smtp.c:260 | ||
4500 | msgid "SMTP UNKNOWN - Cannot send EHLO command via TLS." | 3406 | msgid "SMTP UNKNOWN - Cannot send EHLO command via TLS." |
4501 | msgstr "" | 3407 | msgstr "" |
4502 | 3408 | ||
4503 | #: plugins/check_smtp.c:265 | ||
4504 | #, c-format | 3409 | #, c-format |
4505 | msgid "sent %s" | 3410 | msgid "sent %s" |
4506 | msgstr "" | 3411 | msgstr "" |
4507 | 3412 | ||
4508 | #: plugins/check_smtp.c:267 | ||
4509 | msgid "SMTP UNKNOWN - Cannot read EHLO response via TLS." | 3413 | msgid "SMTP UNKNOWN - Cannot read EHLO response via TLS." |
4510 | msgstr "" | 3414 | msgstr "" |
4511 | 3415 | ||
4512 | #: plugins/check_smtp.c:297 | ||
4513 | #, c-format | 3416 | #, c-format |
4514 | msgid "Invalid SMTP response received from host: %s\n" | 3417 | msgid "Invalid SMTP response received from host: %s\n" |
4515 | msgstr "" | 3418 | msgstr "" |
4516 | 3419 | ||
4517 | #: plugins/check_smtp.c:299 | ||
4518 | #, c-format | 3420 | #, c-format |
4519 | msgid "Invalid SMTP response received from host on port %d: %s\n" | 3421 | msgid "Invalid SMTP response received from host on port %d: %s\n" |
4520 | msgstr "" | 3422 | msgstr "" |
4521 | 3423 | ||
4522 | #: plugins/check_smtp.c:322 plugins/check_snmp.c:866 | ||
4523 | #, c-format | 3424 | #, c-format |
4524 | msgid "Could Not Compile Regular Expression" | 3425 | msgid "Could Not Compile Regular Expression" |
4525 | msgstr "" | 3426 | msgstr "" |
4526 | 3427 | ||
4527 | #: plugins/check_smtp.c:331 | ||
4528 | #, c-format | 3428 | #, c-format |
4529 | msgid "SMTP %s - Invalid response '%s' to command '%s'\n" | 3429 | msgid "SMTP %s - Invalid response '%s' to command '%s'\n" |
4530 | msgstr "" | 3430 | msgstr "" |
4531 | 3431 | ||
4532 | #: plugins/check_smtp.c:335 plugins/check_snmp.c:540 | ||
4533 | #, c-format | 3432 | #, c-format |
4534 | msgid "Execute Error: %s\n" | 3433 | msgid "Execute Error: %s\n" |
4535 | msgstr "" | 3434 | msgstr "" |
4536 | 3435 | ||
4537 | #: plugins/check_smtp.c:349 | ||
4538 | msgid "no authuser specified, " | 3436 | msgid "no authuser specified, " |
4539 | msgstr "" | 3437 | msgstr "" |
4540 | 3438 | ||
4541 | #: plugins/check_smtp.c:354 | ||
4542 | msgid "no authpass specified, " | 3439 | msgid "no authpass specified, " |
4543 | msgstr "" | 3440 | msgstr "" |
4544 | 3441 | ||
4545 | #: plugins/check_smtp.c:361 plugins/check_smtp.c:382 plugins/check_smtp.c:402 | ||
4546 | #: plugins/check_smtp.c:728 | ||
4547 | #, c-format | 3442 | #, c-format |
4548 | msgid "sent %s\n" | 3443 | msgid "sent %s\n" |
4549 | msgstr "" | 3444 | msgstr "" |
4550 | 3445 | ||
4551 | #: plugins/check_smtp.c:364 | ||
4552 | msgid "recv() failed after AUTH LOGIN, " | 3446 | msgid "recv() failed after AUTH LOGIN, " |
4553 | msgstr "" | 3447 | msgstr "" |
4554 | 3448 | ||
4555 | #: plugins/check_smtp.c:369 plugins/check_smtp.c:390 plugins/check_smtp.c:410 | ||
4556 | #: plugins/check_smtp.c:739 | ||
4557 | #, c-format | 3449 | #, c-format |
4558 | msgid "received %s\n" | 3450 | msgid "received %s\n" |
4559 | msgstr "" | 3451 | msgstr "" |
4560 | 3452 | ||
4561 | #: plugins/check_smtp.c:373 | ||
4562 | msgid "invalid response received after AUTH LOGIN, " | 3453 | msgid "invalid response received after AUTH LOGIN, " |
4563 | msgstr "" | 3454 | msgstr "" |
4564 | 3455 | ||
4565 | #: plugins/check_smtp.c:386 | ||
4566 | msgid "recv() failed after sending authuser, " | 3456 | msgid "recv() failed after sending authuser, " |
4567 | msgstr "" | 3457 | msgstr "" |
4568 | 3458 | ||
4569 | #: plugins/check_smtp.c:394 | ||
4570 | msgid "invalid response received after authuser, " | 3459 | msgid "invalid response received after authuser, " |
4571 | msgstr "" | 3460 | msgstr "" |
4572 | 3461 | ||
4573 | #: plugins/check_smtp.c:406 | ||
4574 | msgid "recv() failed after sending authpass, " | 3462 | msgid "recv() failed after sending authpass, " |
4575 | msgstr "" | 3463 | msgstr "" |
4576 | 3464 | ||
4577 | #: plugins/check_smtp.c:414 | ||
4578 | msgid "invalid response received after authpass, " | 3465 | msgid "invalid response received after authpass, " |
4579 | msgstr "" | 3466 | msgstr "" |
4580 | 3467 | ||
4581 | #: plugins/check_smtp.c:421 | ||
4582 | msgid "only authtype LOGIN is supported, " | 3468 | msgid "only authtype LOGIN is supported, " |
4583 | msgstr "" | 3469 | msgstr "" |
4584 | 3470 | ||
4585 | #: plugins/check_smtp.c:445 | ||
4586 | #, c-format | 3471 | #, c-format |
4587 | msgid "SMTP %s - %s%.3f sec. response time%s%s|%s\n" | 3472 | msgid "SMTP %s - %s%.3f sec. response time%s%s|%s\n" |
4588 | msgstr "" | 3473 | msgstr "" |
4589 | 3474 | ||
4590 | #: plugins/check_smtp.c:562 plugins/check_smtp.c:574 | ||
4591 | #, c-format | 3475 | #, c-format |
4592 | msgid "Could not realloc() units [%d]\n" | 3476 | msgid "Could not realloc() units [%d]\n" |
4593 | msgstr "" | 3477 | msgstr "" |
4594 | 3478 | ||
4595 | #: plugins/check_smtp.c:582 | ||
4596 | msgid "Critical time must be a positive" | 3479 | msgid "Critical time must be a positive" |
4597 | msgstr "" | 3480 | msgstr "" |
4598 | 3481 | ||
4599 | #: plugins/check_smtp.c:590 | ||
4600 | msgid "Warning time must be a positive" | 3482 | msgid "Warning time must be a positive" |
4601 | msgstr "" | 3483 | msgstr "" |
4602 | 3484 | ||
4603 | #: plugins/check_smtp.c:633 plugins/check_smtp.c:645 | ||
4604 | msgid "SSL support not available - install OpenSSL and recompile" | 3485 | msgid "SSL support not available - install OpenSSL and recompile" |
4605 | msgstr "" | 3486 | msgstr "" |
4606 | 3487 | ||
4607 | #: plugins/check_smtp.c:719 plugins/check_smtp.c:724 | 3488 | msgid "Set either -s/--ssl/--tls or -S/--starttls" |
3489 | msgstr "" | ||
3490 | |||
4608 | #, c-format | 3491 | #, c-format |
4609 | msgid "Connection closed by server before sending QUIT command\n" | 3492 | msgid "Connection closed by server before sending QUIT command\n" |
4610 | msgstr "" | 3493 | msgstr "" |
4611 | 3494 | ||
4612 | #: plugins/check_smtp.c:734 | ||
4613 | #, c-format | 3495 | #, c-format |
4614 | msgid "recv() failed after QUIT." | 3496 | msgid "recv() failed after QUIT." |
4615 | msgstr "" | 3497 | msgstr "" |
4616 | 3498 | ||
4617 | #: plugins/check_smtp.c:736 | ||
4618 | #, c-format | 3499 | #, c-format |
4619 | msgid "Connection reset by peer." | 3500 | msgid "Connection reset by peer." |
4620 | msgstr "" | 3501 | msgstr "" |
4621 | 3502 | ||
4622 | #: plugins/check_smtp.c:826 | ||
4623 | msgid "This plugin will attempt to open an SMTP connection with the host." | 3503 | msgid "This plugin will attempt to open an SMTP connection with the host." |
4624 | msgstr "" | 3504 | msgstr "" |
4625 | 3505 | ||
4626 | #: plugins/check_smtp.c:840 | ||
4627 | #, c-format | 3506 | #, c-format |
4628 | msgid " String to expect in first line of server response (default: '%s')\n" | 3507 | msgid " String to expect in first line of server response (default: '%s')\n" |
4629 | msgstr "" | 3508 | msgstr "" |
4630 | 3509 | ||
4631 | #: plugins/check_smtp.c:842 | ||
4632 | msgid "SMTP command (may be used repeatedly)" | 3510 | msgid "SMTP command (may be used repeatedly)" |
4633 | msgstr "" | 3511 | msgstr "" |
4634 | 3512 | ||
4635 | #: plugins/check_smtp.c:844 | ||
4636 | msgid "Expected response to command (may be used repeatedly)" | 3513 | msgid "Expected response to command (may be used repeatedly)" |
4637 | msgstr "" | 3514 | msgstr "" |
4638 | 3515 | ||
4639 | #: plugins/check_smtp.c:846 | ||
4640 | msgid "FROM-address to include in MAIL command, required by Exchange 2000" | 3516 | msgid "FROM-address to include in MAIL command, required by Exchange 2000" |
4641 | msgstr "" | 3517 | msgstr "" |
4642 | 3518 | ||
4643 | #: plugins/check_smtp.c:848 | ||
4644 | msgid "FQDN used for HELO" | 3519 | msgid "FQDN used for HELO" |
4645 | msgstr "" | 3520 | msgstr "" |
4646 | 3521 | ||
4647 | #: plugins/check_smtp.c:850 | ||
4648 | msgid "Use PROXY protocol prefix for the connection." | 3522 | msgid "Use PROXY protocol prefix for the connection." |
4649 | msgstr "" | 3523 | msgstr "" |
4650 | 3524 | ||
4651 | #: plugins/check_smtp.c:853 plugins/check_tcp.c:689 | ||
4652 | msgid "Minimum number of days a certificate has to be valid." | 3525 | msgid "Minimum number of days a certificate has to be valid." |
4653 | msgstr "" | 3526 | msgstr "" |
4654 | 3527 | ||
4655 | #: plugins/check_smtp.c:855 | 3528 | msgid "Use SSL/TLS for the connection." |
3529 | msgstr "" | ||
3530 | |||
3531 | #, c-format | ||
3532 | msgid " Sets default port to %d.\n" | ||
3533 | msgstr "" | ||
3534 | |||
4656 | msgid "Use STARTTLS for the connection." | 3535 | msgid "Use STARTTLS for the connection." |
4657 | msgstr "" | 3536 | msgstr "" |
4658 | 3537 | ||
4659 | #: plugins/check_smtp.c:861 | ||
4660 | msgid "SMTP AUTH type to check (default none, only LOGIN supported)" | 3538 | msgid "SMTP AUTH type to check (default none, only LOGIN supported)" |
4661 | msgstr "" | 3539 | msgstr "" |
4662 | 3540 | ||
4663 | #: plugins/check_smtp.c:863 | ||
4664 | msgid "SMTP AUTH username" | 3541 | msgid "SMTP AUTH username" |
4665 | msgstr "" | 3542 | msgstr "" |
4666 | 3543 | ||
4667 | #: plugins/check_smtp.c:865 | ||
4668 | msgid "SMTP AUTH password" | 3544 | msgid "SMTP AUTH password" |
4669 | msgstr "" | 3545 | msgstr "" |
4670 | 3546 | ||
4671 | #: plugins/check_smtp.c:867 | ||
4672 | msgid "Send LHLO instead of HELO/EHLO" | 3547 | msgid "Send LHLO instead of HELO/EHLO" |
4673 | msgstr "" | 3548 | msgstr "" |
4674 | 3549 | ||
4675 | #: plugins/check_smtp.c:869 | ||
4676 | msgid "Ignore failure when sending QUIT command to server" | 3550 | msgid "Ignore failure when sending QUIT command to server" |
4677 | msgstr "" | 3551 | msgstr "" |
4678 | 3552 | ||
4679 | #: plugins/check_smtp.c:879 | ||
4680 | msgid "STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful" | 3553 | msgid "STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful" |
4681 | msgstr "" | 3554 | msgstr "" |
4682 | 3555 | ||
4683 | #: plugins/check_smtp.c:880 | ||
4684 | msgid "connects, but incorrect response messages from the host result in" | 3556 | msgid "connects, but incorrect response messages from the host result in" |
4685 | msgstr "" | 3557 | msgstr "" |
4686 | 3558 | ||
4687 | #: plugins/check_smtp.c:881 | ||
4688 | msgid "STATE_WARNING return values." | 3559 | msgid "STATE_WARNING return values." |
4689 | msgstr "" | 3560 | msgstr "" |
4690 | 3561 | ||
4691 | #: plugins/check_snmp.c:177 plugins/check_snmp.c:626 | ||
4692 | msgid "Cannot malloc" | 3562 | msgid "Cannot malloc" |
4693 | msgstr "" | 3563 | msgstr "" |
4694 | 3564 | ||
4695 | #: plugins/check_snmp.c:368 | ||
4696 | #, c-format | 3565 | #, c-format |
4697 | msgid "External command error: %s\n" | 3566 | msgid "External command error: %s\n" |
4698 | msgstr "" | 3567 | msgstr "" |
4699 | 3568 | ||
4700 | #: plugins/check_snmp.c:373 | ||
4701 | #, c-format | 3569 | #, c-format |
4702 | msgid "External command error with no output (return code: %d)\n" | 3570 | msgid "External command error with no output (return code: %d)\n" |
4703 | msgstr "" | 3571 | msgstr "" |
4704 | 3572 | ||
4705 | #: plugins/check_snmp.c:486 plugins/check_snmp.c:488 plugins/check_snmp.c:490 | ||
4706 | #: plugins/check_snmp.c:492 | ||
4707 | #, c-format | 3573 | #, c-format |
4708 | msgid "No valid data returned (%s)\n" | 3574 | msgid "No valid data returned (%s)\n" |
4709 | msgstr "" | 3575 | msgstr "" |
4710 | 3576 | ||
4711 | #: plugins/check_snmp.c:504 | ||
4712 | msgid "Time duration between plugin calls is invalid" | 3577 | msgid "Time duration between plugin calls is invalid" |
4713 | msgstr "" | 3578 | msgstr "" |
4714 | 3579 | ||
4715 | #: plugins/check_snmp.c:632 | ||
4716 | msgid "Cannot asprintf()" | 3580 | msgid "Cannot asprintf()" |
4717 | msgstr "" | 3581 | msgstr "" |
4718 | 3582 | ||
4719 | #: plugins/check_snmp.c:638 | ||
4720 | msgid "Cannot realloc()" | 3583 | msgid "Cannot realloc()" |
4721 | msgstr "" | 3584 | msgstr "" |
4722 | 3585 | ||
4723 | #: plugins/check_snmp.c:654 | ||
4724 | msgid "No previous data to calculate rate - assume okay" | 3586 | msgid "No previous data to calculate rate - assume okay" |
4725 | msgstr "" | 3587 | msgstr "" |
4726 | 3588 | ||
4727 | #: plugins/check_snmp.c:804 | ||
4728 | msgid "Retries interval must be a positive integer" | 3589 | msgid "Retries interval must be a positive integer" |
4729 | msgstr "" | 3590 | msgstr "" |
4730 | 3591 | ||
4731 | #: plugins/check_snmp.c:841 | ||
4732 | msgid "Exit status must be a positive integer" | 3592 | msgid "Exit status must be a positive integer" |
4733 | msgstr "" | 3593 | msgstr "" |
4734 | 3594 | ||
4735 | #: plugins/check_snmp.c:891 | ||
4736 | #, c-format | 3595 | #, c-format |
4737 | msgid "Could not reallocate labels[%d]" | 3596 | msgid "Could not reallocate labels[%d]" |
4738 | msgstr "" | 3597 | msgstr "" |
4739 | 3598 | ||
4740 | #: plugins/check_snmp.c:904 | ||
4741 | msgid "Could not reallocate labels\n" | 3599 | msgid "Could not reallocate labels\n" |
4742 | msgstr "" | 3600 | msgstr "" |
4743 | 3601 | ||
4744 | #: plugins/check_snmp.c:920 | ||
4745 | #, c-format | 3602 | #, c-format |
4746 | msgid "Could not reallocate units [%d]\n" | 3603 | msgid "Could not reallocate units [%d]\n" |
4747 | msgstr "" | 3604 | msgstr "" |
4748 | 3605 | ||
4749 | #: plugins/check_snmp.c:932 | ||
4750 | msgid "Could not realloc() units\n" | 3606 | msgid "Could not realloc() units\n" |
4751 | msgstr "" | 3607 | msgstr "" |
4752 | 3608 | ||
4753 | #: plugins/check_snmp.c:949 | ||
4754 | msgid "Rate multiplier must be a positive integer" | 3609 | msgid "Rate multiplier must be a positive integer" |
4755 | msgstr "" | 3610 | msgstr "" |
4756 | 3611 | ||
4757 | #: plugins/check_snmp.c:1024 | ||
4758 | msgid "No host specified\n" | 3612 | msgid "No host specified\n" |
4759 | msgstr "" | 3613 | msgstr "" |
4760 | 3614 | ||
4761 | #: plugins/check_snmp.c:1028 | ||
4762 | msgid "No OIDs specified\n" | 3615 | msgid "No OIDs specified\n" |
4763 | msgstr "" | 3616 | msgstr "" |
4764 | 3617 | ||
4765 | #: plugins/check_snmp.c:1051 plugins/check_snmp.c:1069 | ||
4766 | #: plugins/check_snmp.c:1087 | ||
4767 | #, c-format | 3618 | #, c-format |
4768 | msgid "Required parameter: %s\n" | 3619 | msgid "Required parameter: %s\n" |
4769 | msgstr "" | 3620 | msgstr "" |
4770 | 3621 | ||
4771 | #: plugins/check_snmp.c:1062 | ||
4772 | msgid "Invalid seclevel" | 3622 | msgid "Invalid seclevel" |
4773 | msgstr "" | 3623 | msgstr "" |
4774 | 3624 | ||
4775 | #: plugins/check_snmp.c:1108 | ||
4776 | msgid "Invalid SNMP version" | 3625 | msgid "Invalid SNMP version" |
4777 | msgstr "" | 3626 | msgstr "" |
4778 | 3627 | ||
4779 | #: plugins/check_snmp.c:1125 | ||
4780 | msgid "Unbalanced quotes\n" | 3628 | msgid "Unbalanced quotes\n" |
4781 | msgstr "" | 3629 | msgstr "" |
4782 | 3630 | ||
4783 | #: plugins/check_snmp.c:1183 | ||
4784 | #, c-format | 3631 | #, c-format |
4785 | msgid "multiplier set (%.1f), but input is not a number: %s" | 3632 | msgid "multiplier set (%.1f), but input is not a number: %s" |
4786 | msgstr "" | 3633 | msgstr "" |
4787 | 3634 | ||
4788 | #: plugins/check_snmp.c:1212 | ||
4789 | msgid "Check status of remote machines and obtain system information via SNMP" | 3635 | msgid "Check status of remote machines and obtain system information via SNMP" |
4790 | msgstr "" | 3636 | msgstr "" |
4791 | 3637 | ||
4792 | #: plugins/check_snmp.c:1226 | ||
4793 | msgid "Use SNMP GETNEXT instead of SNMP GET" | 3638 | msgid "Use SNMP GETNEXT instead of SNMP GET" |
4794 | msgstr "" | 3639 | msgstr "" |
4795 | 3640 | ||
4796 | #: plugins/check_snmp.c:1228 | ||
4797 | msgid "SNMP protocol version" | 3641 | msgid "SNMP protocol version" |
4798 | msgstr "" | 3642 | msgstr "" |
4799 | 3643 | ||
4800 | #: plugins/check_snmp.c:1230 | ||
4801 | msgid "SNMPv3 context" | 3644 | msgid "SNMPv3 context" |
4802 | msgstr "" | 3645 | msgstr "" |
4803 | 3646 | ||
4804 | #: plugins/check_snmp.c:1232 | ||
4805 | msgid "SNMPv3 securityLevel" | 3647 | msgid "SNMPv3 securityLevel" |
4806 | msgstr "" | 3648 | msgstr "" |
4807 | 3649 | ||
4808 | #: plugins/check_snmp.c:1234 | ||
4809 | msgid "SNMPv3 auth proto" | 3650 | msgid "SNMPv3 auth proto" |
4810 | msgstr "" | 3651 | msgstr "" |
4811 | 3652 | ||
4812 | #: plugins/check_snmp.c:1236 | ||
4813 | msgid "SNMPv3 priv proto (default DES)" | 3653 | msgid "SNMPv3 priv proto (default DES)" |
4814 | msgstr "" | 3654 | msgstr "" |
4815 | 3655 | ||
4816 | #: plugins/check_snmp.c:1240 | ||
4817 | msgid "Optional community string for SNMP communication" | 3656 | msgid "Optional community string for SNMP communication" |
4818 | msgstr "" | 3657 | msgstr "" |
4819 | 3658 | ||
4820 | #: plugins/check_snmp.c:1241 | ||
4821 | msgid "default is" | 3659 | msgid "default is" |
4822 | msgstr "" | 3660 | msgstr "" |
4823 | 3661 | ||
4824 | #: plugins/check_snmp.c:1243 | ||
4825 | msgid "SNMPv3 username" | 3662 | msgid "SNMPv3 username" |
4826 | msgstr "" | 3663 | msgstr "" |
4827 | 3664 | ||
4828 | #: plugins/check_snmp.c:1245 | ||
4829 | msgid "SNMPv3 authentication password" | 3665 | msgid "SNMPv3 authentication password" |
4830 | msgstr "" | 3666 | msgstr "" |
4831 | 3667 | ||
4832 | #: plugins/check_snmp.c:1247 | ||
4833 | msgid "SNMPv3 privacy password" | 3668 | msgid "SNMPv3 privacy password" |
4834 | msgstr "" | 3669 | msgstr "" |
4835 | 3670 | ||
4836 | #: plugins/check_snmp.c:1251 | ||
4837 | msgid "Object identifier(s) or SNMP variables whose value you wish to query" | 3671 | msgid "Object identifier(s) or SNMP variables whose value you wish to query" |
4838 | msgstr "" | 3672 | msgstr "" |
4839 | 3673 | ||
4840 | #: plugins/check_snmp.c:1253 | ||
4841 | msgid "" | 3674 | msgid "" |
4842 | "List of MIBS to be loaded (default = none if using numeric OIDs or 'ALL'" | 3675 | "List of MIBS to be loaded (default = none if using numeric OIDs or 'ALL'" |
4843 | msgstr "" | 3676 | msgstr "" |
4844 | 3677 | ||
4845 | #: plugins/check_snmp.c:1254 | ||
4846 | msgid "for symbolic OIDs.)" | 3678 | msgid "for symbolic OIDs.)" |
4847 | msgstr "" | 3679 | msgstr "" |
4848 | 3680 | ||
4849 | #: plugins/check_snmp.c:1256 | ||
4850 | msgid "Delimiter to use when parsing returned data. Default is" | 3681 | msgid "Delimiter to use when parsing returned data. Default is" |
4851 | msgstr "" | 3682 | msgstr "" |
4852 | 3683 | ||
4853 | #: plugins/check_snmp.c:1257 | ||
4854 | msgid "Any data on the right hand side of the delimiter is considered" | 3684 | msgid "Any data on the right hand side of the delimiter is considered" |
4855 | msgstr "" | 3685 | msgstr "" |
4856 | 3686 | ||
4857 | #: plugins/check_snmp.c:1258 | ||
4858 | msgid "to be the data that should be used in the evaluation." | 3687 | msgid "to be the data that should be used in the evaluation." |
4859 | msgstr "" | 3688 | msgstr "" |
4860 | 3689 | ||
4861 | #: plugins/check_snmp.c:1260 | ||
4862 | msgid "If the check returns a 0 length string or NULL value" | 3690 | msgid "If the check returns a 0 length string or NULL value" |
4863 | msgstr "" | 3691 | msgstr "" |
4864 | 3692 | ||
4865 | #: plugins/check_snmp.c:1261 | ||
4866 | msgid "This option allows you to choose what status you want it to exit" | 3693 | msgid "This option allows you to choose what status you want it to exit" |
4867 | msgstr "" | 3694 | msgstr "" |
4868 | 3695 | ||
4869 | #: plugins/check_snmp.c:1262 | ||
4870 | msgid "Excluding this option renders the default exit of 3(STATE_UNKNOWN)" | 3696 | msgid "Excluding this option renders the default exit of 3(STATE_UNKNOWN)" |
4871 | msgstr "" | 3697 | msgstr "" |
4872 | 3698 | ||
4873 | #: plugins/check_snmp.c:1263 | ||
4874 | msgid "0 = OK" | 3699 | msgid "0 = OK" |
4875 | msgstr "" | 3700 | msgstr "" |
4876 | 3701 | ||
4877 | #: plugins/check_snmp.c:1264 | ||
4878 | msgid "1 = WARNING" | 3702 | msgid "1 = WARNING" |
4879 | msgstr "" | 3703 | msgstr "" |
4880 | 3704 | ||
4881 | #: plugins/check_snmp.c:1265 | ||
4882 | msgid "2 = CRITICAL" | 3705 | msgid "2 = CRITICAL" |
4883 | msgstr "" | 3706 | msgstr "" |
4884 | 3707 | ||
4885 | #: plugins/check_snmp.c:1266 | ||
4886 | msgid "3 = UNKNOWN" | 3708 | msgid "3 = UNKNOWN" |
4887 | msgstr "" | 3709 | msgstr "" |
4888 | 3710 | ||
4889 | #: plugins/check_snmp.c:1270 | ||
4890 | msgid "Warning threshold range(s)" | 3711 | msgid "Warning threshold range(s)" |
4891 | msgstr "" | 3712 | msgstr "" |
4892 | 3713 | ||
4893 | #: plugins/check_snmp.c:1272 | ||
4894 | msgid "Critical threshold range(s)" | 3714 | msgid "Critical threshold range(s)" |
4895 | msgstr "" | 3715 | msgstr "" |
4896 | 3716 | ||
4897 | #: plugins/check_snmp.c:1274 | ||
4898 | msgid "Enable rate calculation. See 'Rate Calculation' below" | 3717 | msgid "Enable rate calculation. See 'Rate Calculation' below" |
4899 | msgstr "" | 3718 | msgstr "" |
4900 | 3719 | ||
4901 | #: plugins/check_snmp.c:1276 | ||
4902 | msgid "" | 3720 | msgid "" |
4903 | "Converts rate per second. For example, set to 60 to convert to per minute" | 3721 | "Converts rate per second. For example, set to 60 to convert to per minute" |
4904 | msgstr "" | 3722 | msgstr "" |
4905 | 3723 | ||
4906 | #: plugins/check_snmp.c:1278 | ||
4907 | msgid "Add/subtract the specified OFFSET to numeric sensor data" | 3724 | msgid "Add/subtract the specified OFFSET to numeric sensor data" |
4908 | msgstr "" | 3725 | msgstr "" |
4909 | 3726 | ||
4910 | #: plugins/check_snmp.c:1282 | ||
4911 | msgid "Return OK state (for that OID) if STRING is an exact match" | 3727 | msgid "Return OK state (for that OID) if STRING is an exact match" |
4912 | msgstr "" | 3728 | msgstr "" |
4913 | 3729 | ||
4914 | #: plugins/check_snmp.c:1284 | ||
4915 | msgid "" | 3730 | msgid "" |
4916 | "Return OK state (for that OID) if extended regular expression REGEX matches" | 3731 | "Return OK state (for that OID) if extended regular expression REGEX matches" |
4917 | msgstr "" | 3732 | msgstr "" |
4918 | 3733 | ||
4919 | #: plugins/check_snmp.c:1286 | ||
4920 | msgid "" | 3734 | msgid "" |
4921 | "Return OK state (for that OID) if case-insensitive extended REGEX matches" | 3735 | "Return OK state (for that OID) if case-insensitive extended REGEX matches" |
4922 | msgstr "" | 3736 | msgstr "" |
4923 | 3737 | ||
4924 | #: plugins/check_snmp.c:1288 | ||
4925 | msgid "Invert search result (CRITICAL if found)" | 3738 | msgid "Invert search result (CRITICAL if found)" |
4926 | msgstr "" | 3739 | msgstr "" |
4927 | 3740 | ||
4928 | #: plugins/check_snmp.c:1292 | ||
4929 | msgid "Prefix label for output from plugin" | 3741 | msgid "Prefix label for output from plugin" |
4930 | msgstr "" | 3742 | msgstr "" |
4931 | 3743 | ||
4932 | #: plugins/check_snmp.c:1294 | ||
4933 | msgid "Units label(s) for output data (e.g., 'sec.')." | 3744 | msgid "Units label(s) for output data (e.g., 'sec.')." |
4934 | msgstr "" | 3745 | msgstr "" |
4935 | 3746 | ||
4936 | #: plugins/check_snmp.c:1296 | ||
4937 | msgid "Separates output on multiple OID requests" | 3747 | msgid "Separates output on multiple OID requests" |
4938 | msgstr "" | 3748 | msgstr "" |
4939 | 3749 | ||
4940 | #: plugins/check_snmp.c:1298 | ||
4941 | msgid "Multiplies current value, 0 < n < 1 works as divider, defaults to 1" | 3750 | msgid "Multiplies current value, 0 < n < 1 works as divider, defaults to 1" |
4942 | msgstr "" | 3751 | msgstr "" |
4943 | 3752 | ||
4944 | #: plugins/check_snmp.c:1300 | ||
4945 | msgid "C-style format string for float values (see option -M)" | 3753 | msgid "C-style format string for float values (see option -M)" |
4946 | msgstr "" | 3754 | msgstr "" |
4947 | 3755 | ||
4948 | #: plugins/check_snmp.c:1303 | ||
4949 | msgid "" | 3756 | msgid "" |
4950 | "NOTE the final timeout value is calculated using this formula: " | 3757 | "NOTE the final timeout value is calculated using this formula: " |
4951 | "timeout_interval * retries + 5" | 3758 | "timeout_interval * retries + 5" |
4952 | msgstr "" | 3759 | msgstr "" |
4953 | 3760 | ||
4954 | #: plugins/check_snmp.c:1305 | ||
4955 | msgid "Number of retries to be used in the requests, default: " | 3761 | msgid "Number of retries to be used in the requests, default: " |
4956 | msgstr "" | 3762 | msgstr "" |
4957 | 3763 | ||
4958 | #: plugins/check_snmp.c:1308 | ||
4959 | msgid "Label performance data with OIDs instead of --label's" | 3764 | msgid "Label performance data with OIDs instead of --label's" |
4960 | msgstr "" | 3765 | msgstr "" |
4961 | 3766 | ||
4962 | #: plugins/check_snmp.c:1313 | 3767 | msgid "Tell snmpget to not print errors encountered when parsing MIB files" |
3768 | msgstr "" | ||
3769 | |||
4963 | msgid "" | 3770 | msgid "" |
4964 | "This plugin uses the 'snmpget' command included with the NET-SNMP package." | 3771 | "This plugin uses the 'snmpget' command included with the NET-SNMP package." |
4965 | msgstr "" | 3772 | msgstr "" |
4966 | 3773 | ||
4967 | #: plugins/check_snmp.c:1314 | ||
4968 | msgid "" | 3774 | msgid "" |
4969 | "if you don't have the package installed, you will need to download it from" | 3775 | "if you don't have the package installed, you will need to download it from" |
4970 | msgstr "" | 3776 | msgstr "" |
4971 | 3777 | ||
4972 | #: plugins/check_snmp.c:1315 | ||
4973 | msgid "http://net-snmp.sourceforge.net before you can use this plugin." | 3778 | msgid "http://net-snmp.sourceforge.net before you can use this plugin." |
4974 | msgstr "" | 3779 | msgstr "" |
4975 | 3780 | ||
4976 | #: plugins/check_snmp.c:1319 | ||
4977 | msgid "" | 3781 | msgid "" |
4978 | "- Multiple OIDs (and labels) may be indicated by a comma or space-delimited " | 3782 | "- Multiple OIDs (and labels) may be indicated by a comma or space-delimited " |
4979 | msgstr "" | 3783 | msgstr "" |
4980 | 3784 | ||
4981 | #: plugins/check_snmp.c:1320 | ||
4982 | msgid "list (lists with internal spaces must be quoted)." | 3785 | msgid "list (lists with internal spaces must be quoted)." |
4983 | msgstr "" | 3786 | msgstr "" |
4984 | 3787 | ||
4985 | #: plugins/check_snmp.c:1324 | ||
4986 | msgid "" | 3788 | msgid "" |
4987 | "- When checking multiple OIDs, separate ranges by commas like '-w " | 3789 | "- When checking multiple OIDs, separate ranges by commas like '-w " |
4988 | "1:10,1:,:20'" | 3790 | "1:10,1:,:20'" |
4989 | msgstr "" | 3791 | msgstr "" |
4990 | 3792 | ||
4991 | #: plugins/check_snmp.c:1325 | ||
4992 | msgid "- Note that only one string and one regex may be checked at present" | 3793 | msgid "- Note that only one string and one regex may be checked at present" |
4993 | msgstr "" | 3794 | msgstr "" |
4994 | 3795 | ||
4995 | #: plugins/check_snmp.c:1326 | ||
4996 | msgid "" | 3796 | msgid "" |
4997 | "- All evaluation methods other than PR, STR, and SUBSTR expect that the value" | 3797 | "- All evaluation methods other than PR, STR, and SUBSTR expect that the value" |
4998 | msgstr "" | 3798 | msgstr "" |
4999 | 3799 | ||
5000 | #: plugins/check_snmp.c:1327 | ||
5001 | msgid "returned from the SNMP query is an unsigned integer." | 3800 | msgid "returned from the SNMP query is an unsigned integer." |
5002 | msgstr "" | 3801 | msgstr "" |
5003 | 3802 | ||
5004 | #: plugins/check_snmp.c:1330 | ||
5005 | msgid "Rate Calculation:" | 3803 | msgid "Rate Calculation:" |
5006 | msgstr "" | 3804 | msgstr "" |
5007 | 3805 | ||
5008 | #: plugins/check_snmp.c:1331 | ||
5009 | msgid "In many places, SNMP returns counters that are only meaningful when" | 3806 | msgid "In many places, SNMP returns counters that are only meaningful when" |
5010 | msgstr "" | 3807 | msgstr "" |
5011 | 3808 | ||
5012 | #: plugins/check_snmp.c:1332 | ||
5013 | msgid "calculating the counter difference since the last check. check_snmp" | 3809 | msgid "calculating the counter difference since the last check. check_snmp" |
5014 | msgstr "" | 3810 | msgstr "" |
5015 | 3811 | ||
5016 | #: plugins/check_snmp.c:1333 | ||
5017 | msgid "saves the last state information in a file so that the rate per second" | 3812 | msgid "saves the last state information in a file so that the rate per second" |
5018 | msgstr "" | 3813 | msgstr "" |
5019 | 3814 | ||
5020 | #: plugins/check_snmp.c:1334 | ||
5021 | msgid "can be calculated. Use the --rate option to save state information." | 3815 | msgid "can be calculated. Use the --rate option to save state information." |
5022 | msgstr "" | 3816 | msgstr "" |
5023 | 3817 | ||
5024 | #: plugins/check_snmp.c:1335 | ||
5025 | msgid "" | 3818 | msgid "" |
5026 | "On the first run, there will be no prior state - this will return with OK." | 3819 | "On the first run, there will be no prior state - this will return with OK." |
5027 | msgstr "" | 3820 | msgstr "" |
5028 | 3821 | ||
5029 | #: plugins/check_snmp.c:1336 | ||
5030 | msgid "The state is uniquely determined by the arguments to the plugin, so" | 3822 | msgid "The state is uniquely determined by the arguments to the plugin, so" |
5031 | msgstr "" | 3823 | msgstr "" |
5032 | 3824 | ||
5033 | #: plugins/check_snmp.c:1337 | ||
5034 | msgid "changing the arguments will create a new state file." | 3825 | msgid "changing the arguments will create a new state file." |
5035 | msgstr "" | 3826 | msgstr "" |
5036 | 3827 | ||
5037 | #: plugins/check_ssh.c:170 | ||
5038 | msgid "Port number must be a positive integer" | 3828 | msgid "Port number must be a positive integer" |
5039 | msgstr "" | 3829 | msgstr "" |
5040 | 3830 | ||
5041 | #: plugins/check_ssh.c:237 | ||
5042 | #, c-format | 3831 | #, c-format |
5043 | msgid "Server answer: %s" | 3832 | msgid "Server answer: %s" |
5044 | msgstr "" | 3833 | msgstr "" |
5045 | 3834 | ||
5046 | #: plugins/check_ssh.c:256 | ||
5047 | #, c-format | 3835 | #, c-format |
5048 | msgid "SSH CRITICAL - %s (protocol %s) version mismatch, expected '%s'\n" | 3836 | msgid "SSH CRITICAL - %s (protocol %s) version mismatch, expected '%s'\n" |
5049 | msgstr "" | 3837 | msgstr "" |
5050 | 3838 | ||
5051 | #: plugins/check_ssh.c:264 | ||
5052 | #, c-format | 3839 | #, c-format |
5053 | msgid "" | 3840 | msgid "" |
5054 | "SSH CRITICAL - %s (protocol %s) protocol version mismatch, expected '%s'\n" | 3841 | "SSH CRITICAL - %s (protocol %s) protocol version mismatch, expected '%s'\n" |
5055 | msgstr "" | 3842 | msgstr "" |
5056 | 3843 | ||
5057 | #: plugins/check_ssh.c:273 | ||
5058 | #, c-format | 3844 | #, c-format |
5059 | msgid "SSH OK - %s (protocol %s) | %s\n" | 3845 | msgid "SSH OK - %s (protocol %s) | %s\n" |
5060 | msgstr "" | 3846 | msgstr "" |
5061 | 3847 | ||
5062 | #: plugins/check_ssh.c:294 | ||
5063 | msgid "Try to connect to an SSH server at specified server and port" | 3848 | msgid "Try to connect to an SSH server at specified server and port" |
5064 | msgstr "" | 3849 | msgstr "" |
5065 | 3850 | ||
5066 | #: plugins/check_ssh.c:310 | ||
5067 | msgid "" | 3851 | msgid "" |
5068 | "Alert if string doesn't match expected server version (ex: OpenSSH_3.9p1)" | 3852 | "Alert if string doesn't match expected server version (ex: OpenSSH_3.9p1)" |
5069 | msgstr "" | 3853 | msgstr "" |
5070 | 3854 | ||
5071 | #: plugins/check_ssh.c:313 | ||
5072 | msgid "Alert if protocol doesn't match expected protocol version (ex: 2.0)" | 3855 | msgid "Alert if protocol doesn't match expected protocol version (ex: 2.0)" |
5073 | msgstr "" | 3856 | msgstr "" |
5074 | 3857 | ||
5075 | #: plugins/check_swap.c:187 | ||
5076 | #, c-format | 3858 | #, c-format |
5077 | msgid "Command: %s\n" | 3859 | msgid "Command: %s\n" |
5078 | msgstr "" | 3860 | msgstr "" |
5079 | 3861 | ||
5080 | #: plugins/check_swap.c:189 | ||
5081 | #, c-format | 3862 | #, c-format |
5082 | msgid "Format: %s\n" | 3863 | msgid "Format: %s\n" |
5083 | msgstr "" | 3864 | msgstr "" |
5084 | 3865 | ||
5085 | #: plugins/check_swap.c:225 | ||
5086 | #, c-format | 3866 | #, c-format |
5087 | msgid "total=%.0f, used=%.0f, free=%.0f\n" | 3867 | msgid "total=%.0f, used=%.0f, free=%.0f\n" |
5088 | msgstr "" | 3868 | msgstr "" |
5089 | 3869 | ||
5090 | #: plugins/check_swap.c:239 | ||
5091 | #, c-format | 3870 | #, c-format |
5092 | msgid "total=%.0f, free=%.0f\n" | 3871 | msgid "total=%.0f, free=%.0f\n" |
5093 | msgstr "" | 3872 | msgstr "" |
5094 | 3873 | ||
5095 | #: plugins/check_swap.c:271 | ||
5096 | msgid "Error getting swap devices\n" | 3874 | msgid "Error getting swap devices\n" |
5097 | msgstr "" | 3875 | msgstr "" |
5098 | 3876 | ||
5099 | #: plugins/check_swap.c:274 | ||
5100 | msgid "SWAP OK: No swap devices defined\n" | 3877 | msgid "SWAP OK: No swap devices defined\n" |
5101 | msgstr "" | 3878 | msgstr "" |
5102 | 3879 | ||
5103 | #: plugins/check_swap.c:295 plugins/check_swap.c:337 | ||
5104 | msgid "swapctl failed: " | 3880 | msgid "swapctl failed: " |
5105 | msgstr "" | 3881 | msgstr "" |
5106 | 3882 | ||
5107 | #: plugins/check_swap.c:296 plugins/check_swap.c:338 | ||
5108 | msgid "Error in swapctl call\n" | 3883 | msgid "Error in swapctl call\n" |
5109 | msgstr "" | 3884 | msgstr "" |
5110 | 3885 | ||
5111 | #: plugins/check_swap.c:376 | ||
5112 | #, c-format | 3886 | #, c-format |
5113 | msgid "SWAP %s - %d%% free (%dMB out of %dMB) %s|" | 3887 | msgid "SWAP %s - %d%% free (%dMB out of %dMB) %s|" |
5114 | msgstr "" | 3888 | msgstr "" |
5115 | 3889 | ||
5116 | #: plugins/check_swap.c:472 | ||
5117 | msgid "Warning threshold percentage must be <= 100!" | 3890 | msgid "Warning threshold percentage must be <= 100!" |
5118 | msgstr "" | 3891 | msgstr "" |
5119 | 3892 | ||
5120 | #: plugins/check_swap.c:482 | ||
5121 | msgid "Warning threshold be positive integer or percentage!" | 3893 | msgid "Warning threshold be positive integer or percentage!" |
5122 | msgstr "" | 3894 | msgstr "" |
5123 | 3895 | ||
5124 | #: plugins/check_swap.c:502 | ||
5125 | msgid "Critical threshold percentage must be <= 100!" | 3896 | msgid "Critical threshold percentage must be <= 100!" |
5126 | msgstr "" | 3897 | msgstr "" |
5127 | 3898 | ||
5128 | #: plugins/check_swap.c:512 | ||
5129 | msgid "Critical threshold be positive integer or percentage!" | 3899 | msgid "Critical threshold be positive integer or percentage!" |
5130 | msgstr "" | 3900 | msgstr "" |
5131 | 3901 | ||
5132 | #: plugins/check_swap.c:521 | ||
5133 | msgid "" | 3902 | msgid "" |
5134 | "no-swap result must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) " | 3903 | "no-swap result must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) " |
5135 | "or integer (0-3)." | 3904 | "or integer (0-3)." |
5136 | msgstr "" | 3905 | msgstr "" |
5137 | 3906 | ||
5138 | #: plugins/check_swap.c:558 | ||
5139 | msgid "Warning should be more than critical" | 3907 | msgid "Warning should be more than critical" |
5140 | msgstr "" | 3908 | msgstr "" |
5141 | 3909 | ||
5142 | #: plugins/check_swap.c:572 | ||
5143 | msgid "Check swap space on local machine." | 3910 | msgid "Check swap space on local machine." |
5144 | msgstr "" | 3911 | msgstr "" |
5145 | 3912 | ||
5146 | #: plugins/check_swap.c:582 | ||
5147 | msgid "" | 3913 | msgid "" |
5148 | "Exit with WARNING status if less than INTEGER bytes of swap space are free" | 3914 | "Exit with WARNING status if less than INTEGER bytes of swap space are free" |
5149 | msgstr "" | 3915 | msgstr "" |
5150 | 3916 | ||
5151 | #: plugins/check_swap.c:584 | ||
5152 | msgid "Exit with WARNING status if less than PERCENT of swap space is free" | 3917 | msgid "Exit with WARNING status if less than PERCENT of swap space is free" |
5153 | msgstr "" | 3918 | msgstr "" |
5154 | 3919 | ||
5155 | #: plugins/check_swap.c:586 | ||
5156 | msgid "" | 3920 | msgid "" |
5157 | "Exit with CRITICAL status if less than INTEGER bytes of swap space are free" | 3921 | "Exit with CRITICAL status if less than INTEGER bytes of swap space are free" |
5158 | msgstr "" | 3922 | msgstr "" |
5159 | 3923 | ||
5160 | #: plugins/check_swap.c:588 | ||
5161 | msgid "Exit with CRITICAL status if less than PERCENT of swap space is free" | 3924 | msgid "Exit with CRITICAL status if less than PERCENT of swap space is free" |
5162 | msgstr "" | 3925 | msgstr "" |
5163 | 3926 | ||
5164 | #: plugins/check_swap.c:590 | ||
5165 | msgid "Conduct comparisons for all swap partitions, one by one" | 3927 | msgid "Conduct comparisons for all swap partitions, one by one" |
5166 | msgstr "" | 3928 | msgstr "" |
5167 | 3929 | ||
5168 | #: plugins/check_swap.c:592 | ||
5169 | msgid "" | 3930 | msgid "" |
5170 | "Resulting state when there is no swap regardless of thresholds. Default:" | 3931 | "Resulting state when there is no swap regardless of thresholds. Default:" |
5171 | msgstr "" | 3932 | msgstr "" |
5172 | 3933 | ||
5173 | #: plugins/check_swap.c:597 | ||
5174 | msgid "" | 3934 | msgid "" |
5175 | "Both INTEGER and PERCENT thresholds can be specified, they are all checked." | 3935 | "Both INTEGER and PERCENT thresholds can be specified, they are all checked." |
5176 | msgstr "" | 3936 | msgstr "" |
5177 | 3937 | ||
5178 | #: plugins/check_swap.c:598 | ||
5179 | msgid "On AIX, if -a is specified, uses lsps -a, otherwise uses lsps -s." | 3938 | msgid "On AIX, if -a is specified, uses lsps -a, otherwise uses lsps -s." |
5180 | msgstr "" | 3939 | msgstr "" |
5181 | 3940 | ||
5182 | #: plugins/check_tcp.c:210 | ||
5183 | msgid "CRITICAL - Generic check_tcp called with unknown service\n" | 3941 | msgid "CRITICAL - Generic check_tcp called with unknown service\n" |
5184 | msgstr "" | 3942 | msgstr "" |
5185 | 3943 | ||
5186 | #: plugins/check_tcp.c:234 | ||
5187 | msgid "With UDP checks, a send/expect string must be specified." | 3944 | msgid "With UDP checks, a send/expect string must be specified." |
5188 | msgstr "" | 3945 | msgstr "" |
5189 | 3946 | ||
5190 | #: plugins/check_tcp.c:445 | ||
5191 | msgid "No arguments found" | 3947 | msgid "No arguments found" |
5192 | msgstr "" | 3948 | msgstr "" |
5193 | 3949 | ||
5194 | #: plugins/check_tcp.c:548 | ||
5195 | msgid "Maxbytes must be a positive integer" | 3950 | msgid "Maxbytes must be a positive integer" |
5196 | msgstr "" | 3951 | msgstr "" |
5197 | 3952 | ||
5198 | #: plugins/check_tcp.c:566 | ||
5199 | msgid "Refuse must be one of ok, warn, crit" | 3953 | msgid "Refuse must be one of ok, warn, crit" |
5200 | msgstr "" | 3954 | msgstr "" |
5201 | 3955 | ||
5202 | #: plugins/check_tcp.c:576 | ||
5203 | msgid "Mismatch must be one of ok, warn, crit" | 3956 | msgid "Mismatch must be one of ok, warn, crit" |
5204 | msgstr "" | 3957 | msgstr "" |
5205 | 3958 | ||
5206 | #: plugins/check_tcp.c:582 | ||
5207 | msgid "Delay must be a positive integer" | 3959 | msgid "Delay must be a positive integer" |
5208 | msgstr "" | 3960 | msgstr "" |
5209 | 3961 | ||
5210 | #: plugins/check_tcp.c:637 | ||
5211 | msgid "You must provide a server address" | 3962 | msgid "You must provide a server address" |
5212 | msgstr "" | 3963 | msgstr "" |
5213 | 3964 | ||
5214 | #: plugins/check_tcp.c:639 | ||
5215 | msgid "Invalid hostname, address or socket" | 3965 | msgid "Invalid hostname, address or socket" |
5216 | msgstr "" | 3966 | msgstr "" |
5217 | 3967 | ||
5218 | #: plugins/check_tcp.c:653 | ||
5219 | #, c-format | 3968 | #, c-format |
5220 | msgid "" | 3969 | msgid "" |
5221 | "This plugin tests %s connections with the specified host (or unix socket).\n" | 3970 | "This plugin tests %s connections with the specified host (or unix socket).\n" |
5222 | "\n" | 3971 | "\n" |
5223 | msgstr "" | 3972 | msgstr "" |
5224 | 3973 | ||
5225 | #: plugins/check_tcp.c:666 | ||
5226 | msgid "" | 3974 | msgid "" |
5227 | "Can use \\n, \\r, \\t or \\\\ in send or quit string. Must come before send " | 3975 | "Can use \\n, \\r, \\t or \\\\ in send or quit string. Must come before send " |
5228 | "or quit option" | 3976 | "or quit option" |
5229 | msgstr "" | 3977 | msgstr "" |
5230 | 3978 | ||
5231 | #: plugins/check_tcp.c:667 | ||
5232 | msgid "Default: nothing added to send, \\r\\n added to end of quit" | 3979 | msgid "Default: nothing added to send, \\r\\n added to end of quit" |
5233 | msgstr "" | 3980 | msgstr "" |
5234 | 3981 | ||
5235 | #: plugins/check_tcp.c:669 | ||
5236 | msgid "String to send to the server" | 3982 | msgid "String to send to the server" |
5237 | msgstr "" | 3983 | msgstr "" |
5238 | 3984 | ||
5239 | #: plugins/check_tcp.c:671 | ||
5240 | msgid "String to expect in server response" | 3985 | msgid "String to expect in server response" |
5241 | msgstr "" | 3986 | msgstr "" |
5242 | 3987 | ||
5243 | #: plugins/check_tcp.c:671 | ||
5244 | msgid "(may be repeated)" | 3988 | msgid "(may be repeated)" |
5245 | msgstr "" | 3989 | msgstr "" |
5246 | 3990 | ||
5247 | #: plugins/check_tcp.c:673 | ||
5248 | msgid "All expect strings need to occur in server response. Default is any" | 3991 | msgid "All expect strings need to occur in server response. Default is any" |
5249 | msgstr "" | 3992 | msgstr "" |
5250 | 3993 | ||
5251 | #: plugins/check_tcp.c:675 | ||
5252 | msgid "String to send server to initiate a clean close of the connection" | 3994 | msgid "String to send server to initiate a clean close of the connection" |
5253 | msgstr "" | 3995 | msgstr "" |
5254 | 3996 | ||
5255 | #: plugins/check_tcp.c:677 | ||
5256 | msgid "Accept TCP refusals with states ok, warn, crit (default: crit)" | 3997 | msgid "Accept TCP refusals with states ok, warn, crit (default: crit)" |
5257 | msgstr "" | 3998 | msgstr "" |
5258 | 3999 | ||
5259 | #: plugins/check_tcp.c:679 | ||
5260 | msgid "" | 4000 | msgid "" |
5261 | "Accept expected string mismatches with states ok, warn, crit (default: warn)" | 4001 | "Accept expected string mismatches with states ok, warn, crit (default: warn)" |
5262 | msgstr "" | 4002 | msgstr "" |
5263 | 4003 | ||
5264 | #: plugins/check_tcp.c:681 | ||
5265 | msgid "Hide output from TCP socket" | 4004 | msgid "Hide output from TCP socket" |
5266 | msgstr "" | 4005 | msgstr "" |
5267 | 4006 | ||
5268 | #: plugins/check_tcp.c:683 | ||
5269 | msgid "Close connection once more than this number of bytes are received" | 4007 | msgid "Close connection once more than this number of bytes are received" |
5270 | msgstr "" | 4008 | msgstr "" |
5271 | 4009 | ||
5272 | #: plugins/check_tcp.c:685 | ||
5273 | msgid "Seconds to wait between sending string and polling for response" | 4010 | msgid "Seconds to wait between sending string and polling for response" |
5274 | msgstr "" | 4011 | msgstr "" |
5275 | 4012 | ||
5276 | #: plugins/check_tcp.c:690 | ||
5277 | msgid "1st is #days for warning, 2nd is critical (if not specified - 0)." | 4013 | msgid "1st is #days for warning, 2nd is critical (if not specified - 0)." |
5278 | msgstr "" | 4014 | msgstr "" |
5279 | 4015 | ||
5280 | #: plugins/check_tcp.c:692 | ||
5281 | msgid "Use SSL for the connection." | 4016 | msgid "Use SSL for the connection." |
5282 | msgstr "" | 4017 | msgstr "" |
5283 | 4018 | ||
5284 | #: plugins/check_tcp.c:694 | ||
5285 | msgid "SSL server_name" | 4019 | msgid "SSL server_name" |
5286 | msgstr "" | 4020 | msgstr "" |
5287 | 4021 | ||
5288 | #: plugins/check_time.c:102 | ||
5289 | #, c-format | 4022 | #, c-format |
5290 | msgid "TIME UNKNOWN - could not connect to server %s, port %d\n" | 4023 | msgid "TIME UNKNOWN - could not connect to server %s, port %d\n" |
5291 | msgstr "" | 4024 | msgstr "" |
5292 | 4025 | ||
5293 | #: plugins/check_time.c:115 | ||
5294 | #, c-format | 4026 | #, c-format |
5295 | msgid "TIME UNKNOWN - could not send UDP request to server %s, port %d\n" | 4027 | msgid "TIME UNKNOWN - could not send UDP request to server %s, port %d\n" |
5296 | msgstr "" | 4028 | msgstr "" |
5297 | 4029 | ||
5298 | #: plugins/check_time.c:139 | ||
5299 | #, c-format | 4030 | #, c-format |
5300 | msgid "TIME UNKNOWN - no data received from server %s, port %d\n" | 4031 | msgid "TIME UNKNOWN - no data received from server %s, port %d\n" |
5301 | msgstr "" | 4032 | msgstr "" |
5302 | 4033 | ||
5303 | #: plugins/check_time.c:152 | ||
5304 | #, c-format | 4034 | #, c-format |
5305 | msgid "TIME %s - %d second response time|%s\n" | 4035 | msgid "TIME %s - %d second response time|%s\n" |
5306 | msgstr "" | 4036 | msgstr "" |
5307 | 4037 | ||
5308 | #: plugins/check_time.c:170 | ||
5309 | #, c-format | 4038 | #, c-format |
5310 | msgid "TIME %s - %lu second time difference|%s %s\n" | 4039 | msgid "TIME %s - %lu second time difference|%s %s\n" |
5311 | msgstr "" | 4040 | msgstr "" |
5312 | 4041 | ||
5313 | #: plugins/check_time.c:254 | ||
5314 | msgid "Warning thresholds must be a positive integer" | 4042 | msgid "Warning thresholds must be a positive integer" |
5315 | msgstr "" | 4043 | msgstr "" |
5316 | 4044 | ||
5317 | #: plugins/check_time.c:273 | ||
5318 | msgid "Critical thresholds must be a positive integer" | 4045 | msgid "Critical thresholds must be a positive integer" |
5319 | msgstr "" | 4046 | msgstr "" |
5320 | 4047 | ||
5321 | #: plugins/check_time.c:339 | ||
5322 | msgid "This plugin will check the time on the specified host." | 4048 | msgid "This plugin will check the time on the specified host." |
5323 | msgstr "" | 4049 | msgstr "" |
5324 | 4050 | ||
5325 | #: plugins/check_time.c:351 | ||
5326 | msgid "Use UDP to connect, not TCP" | 4051 | msgid "Use UDP to connect, not TCP" |
5327 | msgstr "" | 4052 | msgstr "" |
5328 | 4053 | ||
5329 | #: plugins/check_time.c:353 | ||
5330 | msgid "Time difference (sec.) necessary to result in a warning status" | 4054 | msgid "Time difference (sec.) necessary to result in a warning status" |
5331 | msgstr "" | 4055 | msgstr "" |
5332 | 4056 | ||
5333 | #: plugins/check_time.c:355 | ||
5334 | msgid "Time difference (sec.) necessary to result in a critical status" | 4057 | msgid "Time difference (sec.) necessary to result in a critical status" |
5335 | msgstr "" | 4058 | msgstr "" |
5336 | 4059 | ||
5337 | #: plugins/check_time.c:357 | ||
5338 | msgid "Response time (sec.) necessary to result in warning status" | 4060 | msgid "Response time (sec.) necessary to result in warning status" |
5339 | msgstr "" | 4061 | msgstr "" |
5340 | 4062 | ||
5341 | #: plugins/check_time.c:359 | ||
5342 | msgid "Response time (sec.) necessary to result in critical status" | 4063 | msgid "Response time (sec.) necessary to result in critical status" |
5343 | msgstr "" | 4064 | msgstr "" |
5344 | 4065 | ||
5345 | #: plugins/check_ups.c:144 | ||
5346 | msgid "On Battery, Low Battery" | 4066 | msgid "On Battery, Low Battery" |
5347 | msgstr "" | 4067 | msgstr "" |
5348 | 4068 | ||
5349 | #: plugins/check_ups.c:149 | ||
5350 | msgid "Online" | 4069 | msgid "Online" |
5351 | msgstr "" | 4070 | msgstr "" |
5352 | 4071 | ||
5353 | #: plugins/check_ups.c:152 | ||
5354 | msgid "On Battery" | 4072 | msgid "On Battery" |
5355 | msgstr "" | 4073 | msgstr "" |
5356 | 4074 | ||
5357 | #: plugins/check_ups.c:156 | ||
5358 | msgid ", Low Battery" | 4075 | msgid ", Low Battery" |
5359 | msgstr "" | 4076 | msgstr "" |
5360 | 4077 | ||
5361 | #: plugins/check_ups.c:160 | ||
5362 | msgid ", Calibrating" | 4078 | msgid ", Calibrating" |
5363 | msgstr "" | 4079 | msgstr "" |
5364 | 4080 | ||
5365 | #: plugins/check_ups.c:163 | ||
5366 | msgid ", Replace Battery" | 4081 | msgid ", Replace Battery" |
5367 | msgstr "" | 4082 | msgstr "" |
5368 | 4083 | ||
5369 | #: plugins/check_ups.c:167 | ||
5370 | msgid ", On Bypass" | 4084 | msgid ", On Bypass" |
5371 | msgstr "" | 4085 | msgstr "" |
5372 | 4086 | ||
5373 | #: plugins/check_ups.c:170 | ||
5374 | msgid ", Overload" | 4087 | msgid ", Overload" |
5375 | msgstr "" | 4088 | msgstr "" |
5376 | 4089 | ||
5377 | #: plugins/check_ups.c:173 | ||
5378 | msgid ", Trimming" | 4090 | msgid ", Trimming" |
5379 | msgstr "" | 4091 | msgstr "" |
5380 | 4092 | ||
5381 | #: plugins/check_ups.c:176 | ||
5382 | msgid ", Boosting" | 4093 | msgid ", Boosting" |
5383 | msgstr "" | 4094 | msgstr "" |
5384 | 4095 | ||
5385 | #: plugins/check_ups.c:179 | ||
5386 | msgid ", Charging" | 4096 | msgid ", Charging" |
5387 | msgstr "" | 4097 | msgstr "" |
5388 | 4098 | ||
5389 | #: plugins/check_ups.c:182 | ||
5390 | msgid ", Discharging" | 4099 | msgid ", Discharging" |
5391 | msgstr "" | 4100 | msgstr "" |
5392 | 4101 | ||
5393 | #: plugins/check_ups.c:185 | ||
5394 | msgid ", Unknown" | 4102 | msgid ", Unknown" |
5395 | msgstr "" | 4103 | msgstr "" |
5396 | 4104 | ||
5397 | #: plugins/check_ups.c:324 | ||
5398 | msgid "UPS does not support any available options\n" | 4105 | msgid "UPS does not support any available options\n" |
5399 | msgstr "" | 4106 | msgstr "" |
5400 | 4107 | ||
5401 | #: plugins/check_ups.c:348 plugins/check_ups.c:414 | ||
5402 | msgid "Invalid response received from host" | 4108 | msgid "Invalid response received from host" |
5403 | msgstr "" | 4109 | msgstr "" |
5404 | 4110 | ||
5405 | #: plugins/check_ups.c:406 | ||
5406 | msgid "UPS name to long for buffer" | 4111 | msgid "UPS name to long for buffer" |
5407 | msgstr "" | 4112 | msgstr "" |
5408 | 4113 | ||
5409 | #: plugins/check_ups.c:423 | ||
5410 | #, c-format | 4114 | #, c-format |
5411 | msgid "CRITICAL - no such UPS '%s' on that host\n" | 4115 | msgid "CRITICAL - no such UPS '%s' on that host\n" |
5412 | msgstr "" | 4116 | msgstr "" |
5413 | 4117 | ||
5414 | #: plugins/check_ups.c:433 | ||
5415 | msgid "CRITICAL - UPS data is stale" | 4118 | msgid "CRITICAL - UPS data is stale" |
5416 | msgstr "" | 4119 | msgstr "" |
5417 | 4120 | ||
5418 | #: plugins/check_ups.c:438 | ||
5419 | #, c-format | 4121 | #, c-format |
5420 | msgid "Unknown error: %s\n" | 4122 | msgid "Unknown error: %s\n" |
5421 | msgstr "" | 4123 | msgstr "" |
5422 | 4124 | ||
5423 | #: plugins/check_ups.c:445 | ||
5424 | msgid "Error: unable to parse variable" | 4125 | msgid "Error: unable to parse variable" |
5425 | msgstr "" | 4126 | msgstr "" |
5426 | 4127 | ||
5427 | #: plugins/check_ups.c:552 | ||
5428 | msgid "Unrecognized UPS variable" | 4128 | msgid "Unrecognized UPS variable" |
5429 | msgstr "" | 4129 | msgstr "" |
5430 | 4130 | ||
5431 | #: plugins/check_ups.c:590 | ||
5432 | msgid "Error : no UPS indicated" | 4131 | msgid "Error : no UPS indicated" |
5433 | msgstr "" | 4132 | msgstr "" |
5434 | 4133 | ||
5435 | #: plugins/check_ups.c:610 | ||
5436 | msgid "" | 4134 | msgid "" |
5437 | "This plugin tests the UPS service on the specified host. Network UPS Tools" | 4135 | "This plugin tests the UPS service on the specified host. Network UPS Tools" |
5438 | msgstr "" | 4136 | msgstr "" |
5439 | 4137 | ||
5440 | #: plugins/check_ups.c:611 | ||
5441 | msgid "from www.networkupstools.org must be running for this plugin to work." | 4138 | msgid "from www.networkupstools.org must be running for this plugin to work." |
5442 | msgstr "" | 4139 | msgstr "" |
5443 | 4140 | ||
5444 | #: plugins/check_ups.c:623 | ||
5445 | msgid "Name of UPS" | 4141 | msgid "Name of UPS" |
5446 | msgstr "" | 4142 | msgstr "" |
5447 | 4143 | ||
5448 | #: plugins/check_ups.c:625 | ||
5449 | msgid "Output of temperatures in Celsius" | 4144 | msgid "Output of temperatures in Celsius" |
5450 | msgstr "" | 4145 | msgstr "" |
5451 | 4146 | ||
5452 | #: plugins/check_ups.c:627 | ||
5453 | msgid "Valid values for STRING are" | 4147 | msgid "Valid values for STRING are" |
5454 | msgstr "" | 4148 | msgstr "" |
5455 | 4149 | ||
5456 | #: plugins/check_ups.c:638 | ||
5457 | msgid "" | 4150 | msgid "" |
5458 | "This plugin attempts to determine the status of a UPS (Uninterruptible Power" | 4151 | "This plugin attempts to determine the status of a UPS (Uninterruptible Power" |
5459 | msgstr "" | 4152 | msgstr "" |
5460 | 4153 | ||
5461 | #: plugins/check_ups.c:639 | ||
5462 | msgid "" | 4154 | msgid "" |
5463 | "Supply) on a local or remote host. If the UPS is online or calibrating, the" | 4155 | "Supply) on a local or remote host. If the UPS is online or calibrating, the" |
5464 | msgstr "" | 4156 | msgstr "" |
5465 | 4157 | ||
5466 | #: plugins/check_ups.c:640 | ||
5467 | msgid "" | 4158 | msgid "" |
5468 | "plugin will return an OK state. If the battery is on it will return a WARNING" | 4159 | "plugin will return an OK state. If the battery is on it will return a WARNING" |
5469 | msgstr "" | 4160 | msgstr "" |
5470 | 4161 | ||
5471 | #: plugins/check_ups.c:641 | ||
5472 | msgid "" | 4162 | msgid "" |
5473 | "state. If the UPS is off or has a low battery the plugin will return a " | 4163 | "state. If the UPS is off or has a low battery the plugin will return a " |
5474 | "CRITICAL" | 4164 | "CRITICAL" |
5475 | msgstr "" | 4165 | msgstr "" |
5476 | 4166 | ||
5477 | #: plugins/check_ups.c:646 | ||
5478 | msgid "" | 4167 | msgid "" |
5479 | "You may also specify a variable to check (such as temperature, utility " | 4168 | "You may also specify a variable to check (such as temperature, utility " |
5480 | "voltage," | 4169 | "voltage," |
5481 | msgstr "" | 4170 | msgstr "" |
5482 | 4171 | ||
5483 | #: plugins/check_ups.c:647 | ||
5484 | msgid "" | 4172 | msgid "" |
5485 | "battery load, etc.) as well as warning and critical thresholds for the value" | 4173 | "battery load, etc.) as well as warning and critical thresholds for the value" |
5486 | msgstr "" | 4174 | msgstr "" |
5487 | 4175 | ||
5488 | #: plugins/check_ups.c:648 | ||
5489 | msgid "" | 4176 | msgid "" |
5490 | "of that variable. If the remote host has multiple UPS that are being " | 4177 | "of that variable. If the remote host has multiple UPS that are being " |
5491 | "monitored" | 4178 | "monitored" |
5492 | msgstr "" | 4179 | msgstr "" |
5493 | 4180 | ||
5494 | #: plugins/check_ups.c:649 | ||
5495 | msgid "you will have to use the --ups option to specify which UPS to check." | 4181 | msgid "you will have to use the --ups option to specify which UPS to check." |
5496 | msgstr "" | 4182 | msgstr "" |
5497 | 4183 | ||
5498 | #: plugins/check_ups.c:651 | ||
5499 | msgid "" | 4184 | msgid "" |
5500 | "This plugin requires that the UPSD daemon distributed with Russell Kroll's" | 4185 | "This plugin requires that the UPSD daemon distributed with Russell Kroll's" |
5501 | msgstr "" | 4186 | msgstr "" |
5502 | 4187 | ||
5503 | #: plugins/check_ups.c:652 | ||
5504 | msgid "" | 4188 | msgid "" |
5505 | "Network UPS Tools be installed on the remote host. If you do not have the" | 4189 | "Network UPS Tools be installed on the remote host. If you do not have the" |
5506 | msgstr "" | 4190 | msgstr "" |
5507 | 4191 | ||
5508 | #: plugins/check_ups.c:653 | ||
5509 | msgid "package installed on your system, you can download it from" | 4192 | msgid "package installed on your system, you can download it from" |
5510 | msgstr "" | 4193 | msgstr "" |
5511 | 4194 | ||
5512 | #: plugins/check_ups.c:654 | ||
5513 | msgid "http://www.networkupstools.org" | 4195 | msgid "http://www.networkupstools.org" |
5514 | msgstr "" | 4196 | msgstr "" |
5515 | 4197 | ||
5516 | #: plugins/check_users.c:91 | ||
5517 | #, c-format | 4198 | #, c-format |
5518 | msgid "Could not enumerate RD sessions: %d\n" | 4199 | msgid "Could not enumerate RD sessions: %d\n" |
5519 | msgstr "" | 4200 | msgstr "" |
5520 | 4201 | ||
5521 | #: plugins/check_users.c:146 | ||
5522 | #, c-format | 4202 | #, c-format |
5523 | msgid "# users=%d" | 4203 | msgid "# users=%d" |
5524 | msgstr "" | 4204 | msgstr "" |
5525 | 4205 | ||
5526 | #: plugins/check_users.c:164 | ||
5527 | msgid "Unable to read output" | 4206 | msgid "Unable to read output" |
5528 | msgstr "" | 4207 | msgstr "" |
5529 | 4208 | ||
5530 | #: plugins/check_users.c:166 | ||
5531 | #, c-format | 4209 | #, c-format |
5532 | msgid "USERS %s - %d users currently logged in |%s\n" | 4210 | msgid "USERS %s - %d users currently logged in |%s\n" |
5533 | msgstr "" | 4211 | msgstr "" |
5534 | 4212 | ||
5535 | #: plugins/check_users.c:241 | ||
5536 | msgid "This plugin checks the number of users currently logged in on the local" | 4213 | msgid "This plugin checks the number of users currently logged in on the local" |
5537 | msgstr "" | 4214 | msgstr "" |
5538 | 4215 | ||
5539 | #: plugins/check_users.c:242 | ||
5540 | msgid "" | 4216 | msgid "" |
5541 | "system and generates an error if the number exceeds the thresholds specified." | 4217 | "system and generates an error if the number exceeds the thresholds specified." |
5542 | msgstr "" | 4218 | msgstr "" |
5543 | 4219 | ||
5544 | #: plugins/check_users.c:252 | ||
5545 | msgid "Set WARNING status if more than INTEGER users are logged in" | 4220 | msgid "Set WARNING status if more than INTEGER users are logged in" |
5546 | msgstr "" | 4221 | msgstr "" |
5547 | 4222 | ||
5548 | #: plugins/check_users.c:254 | ||
5549 | msgid "Set CRITICAL status if more than INTEGER users are logged in" | 4223 | msgid "Set CRITICAL status if more than INTEGER users are logged in" |
5550 | msgstr "" | 4224 | msgstr "" |
5551 | 4225 | ||
5552 | #: plugins/check_ide_smart.c:218 | ||
5553 | msgid "" | 4226 | msgid "" |
5554 | "DEPRECATION WARNING: the -q switch (quiet output) is no longer \"quiet\"." | 4227 | "DEPRECATION WARNING: the -q switch (quiet output) is no longer \"quiet\"." |
5555 | msgstr "" | 4228 | msgstr "" |
5556 | 4229 | ||
5557 | #: plugins/check_ide_smart.c:219 | ||
5558 | msgid "Nagios-compatible output is now always returned." | 4230 | msgid "Nagios-compatible output is now always returned." |
5559 | msgstr "" | 4231 | msgstr "" |
5560 | 4232 | ||
5561 | #: plugins/check_ide_smart.c:224 | ||
5562 | msgid "SMART commands are broken and have been disabled (See Notes in --help)." | 4233 | msgid "SMART commands are broken and have been disabled (See Notes in --help)." |
5563 | msgstr "" | 4234 | msgstr "" |
5564 | 4235 | ||
5565 | #: plugins/check_ide_smart.c:228 | ||
5566 | msgid "" | 4236 | msgid "" |
5567 | "DEPRECATION WARNING: the -n switch (Nagios-compatible output) is now the" | 4237 | "DEPRECATION WARNING: the -n switch (Nagios-compatible output) is now the" |
5568 | msgstr "" | 4238 | msgstr "" |
5569 | 4239 | ||
5570 | #: plugins/check_ide_smart.c:229 | ||
5571 | msgid "default and will be removed from future releases." | 4240 | msgid "default and will be removed from future releases." |
5572 | msgstr "" | 4241 | msgstr "" |
5573 | 4242 | ||
5574 | #: plugins/check_ide_smart.c:257 | ||
5575 | #, c-format | 4243 | #, c-format |
5576 | msgid "CRITICAL - Couldn't open device %s: %s\n" | 4244 | msgid "CRITICAL - Couldn't open device %s: %s\n" |
5577 | msgstr "" | 4245 | msgstr "" |
5578 | 4246 | ||
5579 | #: plugins/check_ide_smart.c:262 | ||
5580 | #, c-format | 4247 | #, c-format |
5581 | msgid "CRITICAL - SMART_CMD_ENABLE\n" | 4248 | msgid "CRITICAL - SMART_CMD_ENABLE\n" |
5582 | msgstr "" | 4249 | msgstr "" |
5583 | 4250 | ||
5584 | #: plugins/check_ide_smart.c:303 plugins/check_ide_smart.c:330 | ||
5585 | #, c-format | 4251 | #, c-format |
5586 | msgid "CRITICAL - SMART_READ_VALUES: %s\n" | 4252 | msgid "CRITICAL - SMART_READ_VALUES: %s\n" |
5587 | msgstr "" | 4253 | msgstr "" |
5588 | 4254 | ||
5589 | #: plugins/check_ide_smart.c:376 | ||
5590 | #, c-format | 4255 | #, c-format |
5591 | msgid "CRITICAL - %d Harddrive PreFailure%cDetected! %d/%d tests failed.\n" | 4256 | msgid "CRITICAL - %d Harddrive PreFailure%cDetected! %d/%d tests failed.\n" |
5592 | msgstr "" | 4257 | msgstr "" |
5593 | 4258 | ||
5594 | #: plugins/check_ide_smart.c:384 | ||
5595 | #, c-format | 4259 | #, c-format |
5596 | msgid "WARNING - %d Harddrive Advisor%s Detected. %d/%d tests failed.\n" | 4260 | msgid "WARNING - %d Harddrive Advisor%s Detected. %d/%d tests failed.\n" |
5597 | msgstr "" | 4261 | msgstr "" |
5598 | 4262 | ||
5599 | #: plugins/check_ide_smart.c:392 | ||
5600 | #, c-format | 4263 | #, c-format |
5601 | msgid "OK - Operational (%d/%d tests passed)\n" | 4264 | msgid "OK - Operational (%d/%d tests passed)\n" |
5602 | msgstr "" | 4265 | msgstr "" |
5603 | 4266 | ||
5604 | #: plugins/check_ide_smart.c:396 | ||
5605 | #, c-format | 4267 | #, c-format |
5606 | msgid "ERROR - Status '%d' unknown. %d/%d tests passed\n" | 4268 | msgid "ERROR - Status '%d' unknown. %d/%d tests passed\n" |
5607 | msgstr "" | 4269 | msgstr "" |
5608 | 4270 | ||
5609 | #: plugins/check_ide_smart.c:429 | ||
5610 | #, c-format | 4271 | #, c-format |
5611 | msgid "OffLineStatus=%d {%s}, AutoOffLine=%s, OffLineTimeout=%d minutes\n" | 4272 | msgid "OffLineStatus=%d {%s}, AutoOffLine=%s, OffLineTimeout=%d minutes\n" |
5612 | msgstr "" | 4273 | msgstr "" |
5613 | 4274 | ||
5614 | #: plugins/check_ide_smart.c:435 | ||
5615 | #, c-format | 4275 | #, c-format |
5616 | msgid "OffLineCapability=%d {%s %s %s}\n" | 4276 | msgid "OffLineCapability=%d {%s %s %s}\n" |
5617 | msgstr "" | 4277 | msgstr "" |
5618 | 4278 | ||
5619 | #: plugins/check_ide_smart.c:441 | ||
5620 | #, c-format | 4279 | #, c-format |
5621 | msgid "SmartRevision=%d, CheckSum=%d, SmartCapability=%d {%s %s}\n" | 4280 | msgid "SmartRevision=%d, CheckSum=%d, SmartCapability=%d {%s %s}\n" |
5622 | msgstr "" | 4281 | msgstr "" |
5623 | 4282 | ||
5624 | #: plugins/check_ide_smart.c:463 plugins/check_ide_smart.c:492 | ||
5625 | #, c-format | 4283 | #, c-format |
5626 | msgid "CRITICAL - %s: %s\n" | 4284 | msgid "CRITICAL - %s: %s\n" |
5627 | msgstr "" | 4285 | msgstr "" |
5628 | 4286 | ||
5629 | #: plugins/check_ide_smart.c:467 plugins/check_ide_smart.c:496 | ||
5630 | #, c-format | 4287 | #, c-format |
5631 | msgid "OK - Command sent (%s)\n" | 4288 | msgid "OK - Command sent (%s)\n" |
5632 | msgstr "" | 4289 | msgstr "" |
5633 | 4290 | ||
5634 | #: plugins/check_ide_smart.c:517 plugins/check_ide_smart.c:544 | ||
5635 | #, c-format | 4291 | #, c-format |
5636 | msgid "CRITICAL - SMART_READ_THRESHOLDS: %s\n" | 4292 | msgid "CRITICAL - SMART_READ_THRESHOLDS: %s\n" |
5637 | msgstr "" | 4293 | msgstr "" |
5638 | 4294 | ||
5639 | #: plugins/check_ide_smart.c:563 | ||
5640 | #, c-format | 4295 | #, c-format |
5641 | msgid "" | 4296 | msgid "" |
5642 | "This plugin checks a local hard drive with the (Linux specific) SMART " | 4297 | "This plugin checks a local hard drive with the (Linux specific) SMART " |
5643 | "interface [http://smartlinux.sourceforge.net/smart/index.php]." | 4298 | "interface [http://smartlinux.sourceforge.net/smart/index.php]." |
5644 | msgstr "" | 4299 | msgstr "" |
5645 | 4300 | ||
5646 | #: plugins/check_ide_smart.c:573 | ||
5647 | msgid "Select device DEVICE" | 4301 | msgid "Select device DEVICE" |
5648 | msgstr "" | 4302 | msgstr "" |
5649 | 4303 | ||
5650 | #: plugins/check_ide_smart.c:574 | ||
5651 | msgid "" | 4304 | msgid "" |
5652 | "Note: if the device is specified without this option, any further option will" | 4305 | "Note: if the device is specified without this option, any further option will" |
5653 | msgstr "" | 4306 | msgstr "" |
5654 | 4307 | ||
5655 | #: plugins/check_ide_smart.c:575 | ||
5656 | msgid "be ignored." | 4308 | msgid "be ignored." |
5657 | msgstr "" | 4309 | msgstr "" |
5658 | 4310 | ||
5659 | #: plugins/check_ide_smart.c:581 | ||
5660 | msgid "" | 4311 | msgid "" |
5661 | "The SMART command modes (-i/--immediate, -0/--auto-off and -1/--auto-on) were" | 4312 | "The SMART command modes (-i/--immediate, -0/--auto-off and -1/--auto-on) were" |
5662 | msgstr "" | 4313 | msgstr "" |
5663 | 4314 | ||
5664 | #: plugins/check_ide_smart.c:582 | ||
5665 | msgid "" | 4315 | msgid "" |
5666 | "broken in an underhand manner and have been disabled. You can use smartctl" | 4316 | "broken in an underhand manner and have been disabled. You can use smartctl" |
5667 | msgstr "" | 4317 | msgstr "" |
5668 | 4318 | ||
5669 | #: plugins/check_ide_smart.c:583 | ||
5670 | msgid "instead:" | 4319 | msgid "instead:" |
5671 | msgstr "" | 4320 | msgstr "" |
5672 | 4321 | ||
5673 | #: plugins/check_ide_smart.c:584 | ||
5674 | msgid "-0/--auto-off: use \"smartctl --offlineauto=off\"" | 4322 | msgid "-0/--auto-off: use \"smartctl --offlineauto=off\"" |
5675 | msgstr "" | 4323 | msgstr "" |
5676 | 4324 | ||
5677 | #: plugins/check_ide_smart.c:585 | ||
5678 | msgid "-1/--auto-on: use \"smartctl --offlineauto=on\"" | 4325 | msgid "-1/--auto-on: use \"smartctl --offlineauto=on\"" |
5679 | msgstr "" | 4326 | msgstr "" |
5680 | 4327 | ||
5681 | #: plugins/check_ide_smart.c:586 | ||
5682 | msgid "-i/--immediate: use \"smartctl --test=offline\"" | 4328 | msgid "-i/--immediate: use \"smartctl --test=offline\"" |
5683 | msgstr "" | 4329 | msgstr "" |
5684 | 4330 | ||
5685 | #: plugins/negate.c:96 | ||
5686 | msgid "No data returned from command\n" | 4331 | msgid "No data returned from command\n" |
5687 | msgstr "" | 4332 | msgstr "" |
5688 | 4333 | ||
5689 | #: plugins/negate.c:166 | ||
5690 | msgid "" | 4334 | msgid "" |
5691 | "Timeout result must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) " | 4335 | "Timeout result must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) " |
5692 | "or integer (0-3)." | 4336 | "or integer (0-3)." |
5693 | msgstr "" | 4337 | msgstr "" |
5694 | 4338 | ||
5695 | #: plugins/negate.c:170 | ||
5696 | msgid "" | 4339 | msgid "" |
5697 | "Ok must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or integer " | 4340 | "Ok must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or integer " |
5698 | "(0-3)." | 4341 | "(0-3)." |
5699 | msgstr "" | 4342 | msgstr "" |
5700 | 4343 | ||
5701 | #: plugins/negate.c:176 | ||
5702 | msgid "" | 4344 | msgid "" |
5703 | "Warning must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or " | 4345 | "Warning must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or " |
5704 | "integer (0-3)." | 4346 | "integer (0-3)." |
5705 | msgstr "" | 4347 | msgstr "" |
5706 | 4348 | ||
5707 | #: plugins/negate.c:181 | ||
5708 | msgid "" | 4349 | msgid "" |
5709 | "Critical must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or " | 4350 | "Critical must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or " |
5710 | "integer (0-3)." | 4351 | "integer (0-3)." |
5711 | msgstr "" | 4352 | msgstr "" |
5712 | 4353 | ||
5713 | #: plugins/negate.c:186 | ||
5714 | msgid "" | 4354 | msgid "" |
5715 | "Unknown must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or " | 4355 | "Unknown must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or " |
5716 | "integer (0-3)." | 4356 | "integer (0-3)." |
5717 | msgstr "" | 4357 | msgstr "" |
5718 | 4358 | ||
5719 | #: plugins/negate.c:213 | ||
5720 | msgid "Require path to command" | 4359 | msgid "Require path to command" |
5721 | msgstr "" | 4360 | msgstr "" |
5722 | 4361 | ||
5723 | #: plugins/negate.c:224 | ||
5724 | msgid "" | 4362 | msgid "" |
5725 | "Negates the status of a plugin (returns OK for CRITICAL and vice-versa)." | 4363 | "Negates the status of a plugin (returns OK for CRITICAL and vice-versa)." |
5726 | msgstr "" | 4364 | msgstr "" |
5727 | 4365 | ||
5728 | #: plugins/negate.c:225 | ||
5729 | msgid "Additional switches can be used to control which state becomes what." | 4366 | msgid "Additional switches can be used to control which state becomes what." |
5730 | msgstr "" | 4367 | msgstr "" |
5731 | 4368 | ||
5732 | #: plugins/negate.c:234 | ||
5733 | msgid "Keep timeout longer than the plugin timeout to retain CRITICAL status." | 4369 | msgid "Keep timeout longer than the plugin timeout to retain CRITICAL status." |
5734 | msgstr "" | 4370 | msgstr "" |
5735 | 4371 | ||
5736 | #: plugins/negate.c:236 | ||
5737 | msgid "Custom result on Negate timeouts; see below for STATUS definition\n" | 4372 | msgid "Custom result on Negate timeouts; see below for STATUS definition\n" |
5738 | msgstr "" | 4373 | msgstr "" |
5739 | 4374 | ||
5740 | #: plugins/negate.c:242 | ||
5741 | #, c-format | 4375 | #, c-format |
5742 | msgid "" | 4376 | msgid "" |
5743 | " STATUS can be 'OK', 'WARNING', 'CRITICAL' or 'UNKNOWN' without single\n" | 4377 | " STATUS can be 'OK', 'WARNING', 'CRITICAL' or 'UNKNOWN' without single\n" |
5744 | msgstr "" | 4378 | msgstr "" |
5745 | 4379 | ||
5746 | #: plugins/negate.c:243 | ||
5747 | #, c-format | 4380 | #, c-format |
5748 | msgid "" | 4381 | msgid "" |
5749 | " quotes. Numeric values are accepted. If nothing is specified, permutes\n" | 4382 | " quotes. Numeric values are accepted. If nothing is specified, permutes\n" |
5750 | msgstr "" | 4383 | msgstr "" |
5751 | 4384 | ||
5752 | #: plugins/negate.c:244 | ||
5753 | #, c-format | 4385 | #, c-format |
5754 | msgid " OK and CRITICAL.\n" | 4386 | msgid " OK and CRITICAL.\n" |
5755 | msgstr "" | 4387 | msgstr "" |
5756 | 4388 | ||
5757 | #: plugins/negate.c:246 | ||
5758 | #, c-format | 4389 | #, c-format |
5759 | msgid "" | 4390 | msgid "" |
5760 | " Substitute output text as well. Will only substitute text in CAPITALS\n" | 4391 | " Substitute output text as well. Will only substitute text in CAPITALS\n" |
5761 | msgstr "" | 4392 | msgstr "" |
5762 | 4393 | ||
5763 | #: plugins/negate.c:251 | ||
5764 | msgid "Run check_ping and invert result. Must use full path to plugin" | 4394 | msgid "Run check_ping and invert result. Must use full path to plugin" |
5765 | msgstr "" | 4395 | msgstr "" |
5766 | 4396 | ||
5767 | #: plugins/negate.c:253 | ||
5768 | msgid "This will return OK instead of WARNING and UNKNOWN instead of CRITICAL" | 4397 | msgid "This will return OK instead of WARNING and UNKNOWN instead of CRITICAL" |
5769 | msgstr "" | 4398 | msgstr "" |
5770 | 4399 | ||
5771 | #: plugins/negate.c:256 | ||
5772 | msgid "" | 4400 | msgid "" |
5773 | "This plugin is a wrapper to take the output of another plugin and invert it." | 4401 | "This plugin is a wrapper to take the output of another plugin and invert it." |
5774 | msgstr "" | 4402 | msgstr "" |
5775 | 4403 | ||
5776 | #: plugins/negate.c:257 | ||
5777 | msgid "The full path of the plugin must be provided." | 4404 | msgid "The full path of the plugin must be provided." |
5778 | msgstr "" | 4405 | msgstr "" |
5779 | 4406 | ||
5780 | #: plugins/negate.c:258 | ||
5781 | msgid "If the wrapped plugin returns OK, the wrapper will return CRITICAL." | 4407 | msgid "If the wrapped plugin returns OK, the wrapper will return CRITICAL." |
5782 | msgstr "" | 4408 | msgstr "" |
5783 | 4409 | ||
5784 | #: plugins/negate.c:259 | ||
5785 | msgid "If the wrapped plugin returns CRITICAL, the wrapper will return OK." | 4410 | msgid "If the wrapped plugin returns CRITICAL, the wrapper will return OK." |
5786 | msgstr "" | 4411 | msgstr "" |
5787 | 4412 | ||
5788 | #: plugins/negate.c:260 | ||
5789 | msgid "Otherwise, the output state of the wrapped plugin is unchanged." | 4413 | msgid "Otherwise, the output state of the wrapped plugin is unchanged." |
5790 | msgstr "" | 4414 | msgstr "" |
5791 | 4415 | ||
5792 | #: plugins/negate.c:262 | ||
5793 | msgid "" | 4416 | msgid "" |
5794 | "Using timeout-result, it is possible to override the timeout behaviour or a" | 4417 | "Using timeout-result, it is possible to override the timeout behaviour or a" |
5795 | msgstr "" | 4418 | msgstr "" |
5796 | 4419 | ||
5797 | #: plugins/negate.c:263 | ||
5798 | msgid "plugin by setting the negate timeout a bit lower." | 4420 | msgid "plugin by setting the negate timeout a bit lower." |
5799 | msgstr "" | 4421 | msgstr "" |
5800 | 4422 | ||
5801 | #: plugins/netutils.c:49 | ||
5802 | #, c-format | 4423 | #, c-format |
5803 | msgid "%s - Socket timeout after %d seconds\n" | 4424 | msgid "%s - Socket timeout after %d seconds\n" |
5804 | msgstr "" | 4425 | msgstr "" |
5805 | 4426 | ||
5806 | #: plugins/netutils.c:51 | ||
5807 | #, c-format | 4427 | #, c-format |
5808 | msgid "%s - Abnormal timeout after %d seconds\n" | 4428 | msgid "%s - Abnormal timeout after %d seconds\n" |
5809 | msgstr "" | 4429 | msgstr "" |
5810 | 4430 | ||
5811 | #: plugins/netutils.c:79 plugins/netutils.c:292 | ||
5812 | msgid "Send failed" | 4431 | msgid "Send failed" |
5813 | msgstr "" | 4432 | msgstr "" |
5814 | 4433 | ||
5815 | #: plugins/netutils.c:96 plugins/netutils.c:307 | ||
5816 | msgid "No data was received from host!" | 4434 | msgid "No data was received from host!" |
5817 | msgstr "" | 4435 | msgstr "" |
5818 | 4436 | ||
5819 | #: plugins/netutils.c:209 plugins/netutils.c:245 | ||
5820 | msgid "Socket creation failed" | 4437 | msgid "Socket creation failed" |
5821 | msgstr "" | 4438 | msgstr "" |
5822 | 4439 | ||
5823 | #: plugins/netutils.c:238 | ||
5824 | msgid "Supplied path too long unix domain socket" | 4440 | msgid "Supplied path too long unix domain socket" |
5825 | msgstr "" | 4441 | msgstr "" |
5826 | 4442 | ||
5827 | #: plugins/netutils.c:316 | ||
5828 | msgid "Receive failed" | 4443 | msgid "Receive failed" |
5829 | msgstr "" | 4444 | msgstr "" |
5830 | 4445 | ||
5831 | #: plugins/netutils.c:342 plugins-root/check_dhcp.c:1310 | ||
5832 | #, c-format | 4446 | #, c-format |
5833 | msgid "Invalid hostname/address - %s" | 4447 | msgid "Invalid hostname/address - %s" |
5834 | msgstr "" | 4448 | msgstr "" |
5835 | 4449 | ||
5836 | #: plugins/popen.c:133 | ||
5837 | msgid "Could not malloc argv array in popen()" | 4450 | msgid "Could not malloc argv array in popen()" |
5838 | msgstr "" | 4451 | msgstr "" |
5839 | 4452 | ||
5840 | #: plugins/popen.c:143 | ||
5841 | msgid "CRITICAL - You need more args!!!" | 4453 | msgid "CRITICAL - You need more args!!!" |
5842 | msgstr "" | 4454 | msgstr "" |
5843 | 4455 | ||
5844 | #: plugins/popen.c:201 | ||
5845 | msgid "Cannot catch SIGCHLD" | 4456 | msgid "Cannot catch SIGCHLD" |
5846 | msgstr "" | 4457 | msgstr "" |
5847 | 4458 | ||
5848 | #: plugins/popen.c:287 | ||
5849 | #, c-format | 4459 | #, c-format |
5850 | msgid "CRITICAL - Plugin timed out after %d seconds\n" | 4460 | msgid "CRITICAL - Plugin timed out after %d seconds\n" |
5851 | msgstr "" | 4461 | msgstr "" |
5852 | 4462 | ||
5853 | #: plugins/popen.c:290 | ||
5854 | msgid "CRITICAL - popen timeout received, but no child process" | 4463 | msgid "CRITICAL - popen timeout received, but no child process" |
5855 | msgstr "" | 4464 | msgstr "" |
5856 | 4465 | ||
5857 | #: plugins/urlize.c:129 | ||
5858 | #, c-format | 4466 | #, c-format |
5859 | msgid "" | 4467 | msgid "" |
5860 | "%s UNKNOWN - No data received from host\n" | 4468 | "%s UNKNOWN - No data received from host\n" |
5861 | "CMD: %s</A>\n" | 4469 | "CMD: %s</A>\n" |
5862 | msgstr "" | 4470 | msgstr "" |
5863 | 4471 | ||
5864 | #: plugins/urlize.c:168 | ||
5865 | msgid "" | 4472 | msgid "" |
5866 | "This plugin wraps the text output of another command (plugin) in HTML <A>" | 4473 | "This plugin wraps the text output of another command (plugin) in HTML <A>" |
5867 | msgstr "" | 4474 | msgstr "" |
5868 | 4475 | ||
5869 | #: plugins/urlize.c:169 | ||
5870 | msgid "" | 4476 | msgid "" |
5871 | "tags, thus displaying the child plugin's output as a clickable link in " | 4477 | "tags, thus displaying the child plugin's output as a clickable link in " |
5872 | "compatible" | 4478 | "compatible" |
5873 | msgstr "" | 4479 | msgstr "" |
5874 | 4480 | ||
5875 | #: plugins/urlize.c:170 | ||
5876 | msgid "" | 4481 | msgid "" |
5877 | "monitoring status screen. This plugin returns the status of the invoked " | 4482 | "monitoring status screen. This plugin returns the status of the invoked " |
5878 | "plugin." | 4483 | "plugin." |
5879 | msgstr "" | 4484 | msgstr "" |
5880 | 4485 | ||
5881 | #: plugins/urlize.c:180 | ||
5882 | msgid "" | 4486 | msgid "" |
5883 | "Pay close attention to quoting to ensure that the shell passes the expected" | 4487 | "Pay close attention to quoting to ensure that the shell passes the expected" |
5884 | msgstr "" | 4488 | msgstr "" |
5885 | 4489 | ||
5886 | #: plugins/urlize.c:181 | ||
5887 | msgid "data to the plugin. For example, in:" | 4490 | msgid "data to the plugin. For example, in:" |
5888 | msgstr "" | 4491 | msgstr "" |
5889 | 4492 | ||
5890 | #: plugins/urlize.c:182 | ||
5891 | msgid "urlize http://example.com/ check_http -H example.com -r 'two words'" | 4493 | msgid "urlize http://example.com/ check_http -H example.com -r 'two words'" |
5892 | msgstr "" | 4494 | msgstr "" |
5893 | 4495 | ||
5894 | #: plugins/urlize.c:183 | ||
5895 | msgid "the shell will remove the single quotes and urlize will see:" | 4496 | msgid "the shell will remove the single quotes and urlize will see:" |
5896 | msgstr "" | 4497 | msgstr "" |
5897 | 4498 | ||
5898 | #: plugins/urlize.c:184 | ||
5899 | msgid "urlize http://example.com/ check_http -H example.com -r two words" | 4499 | msgid "urlize http://example.com/ check_http -H example.com -r two words" |
5900 | msgstr "" | 4500 | msgstr "" |
5901 | 4501 | ||
5902 | #: plugins/urlize.c:185 | ||
5903 | msgid "You probably want:" | 4502 | msgid "You probably want:" |
5904 | msgstr "" | 4503 | msgstr "" |
5905 | 4504 | ||
5906 | #: plugins/urlize.c:186 | ||
5907 | msgid "urlize http://example.com/ \"check_http -H example.com -r 'two words'\"" | 4505 | msgid "urlize http://example.com/ \"check_http -H example.com -r 'two words'\"" |
5908 | msgstr "" | 4506 | msgstr "" |
5909 | 4507 | ||
5910 | #: plugins/utils.c:479 | ||
5911 | msgid "failed realloc in strpcpy\n" | 4508 | msgid "failed realloc in strpcpy\n" |
5912 | msgstr "" | 4509 | msgstr "" |
5913 | 4510 | ||
5914 | #: plugins/utils.c:521 | ||
5915 | msgid "failed malloc in strscat\n" | 4511 | msgid "failed malloc in strscat\n" |
5916 | msgstr "" | 4512 | msgstr "" |
5917 | 4513 | ||
5918 | #: plugins/utils.c:541 | ||
5919 | msgid "failed malloc in xvasprintf\n" | 4514 | msgid "failed malloc in xvasprintf\n" |
5920 | msgstr "" | 4515 | msgstr "" |
5921 | 4516 | ||
5922 | #: plugins/utils.c:819 | ||
5923 | msgid "sysconf error for _SC_OPEN_MAX\n" | 4517 | msgid "sysconf error for _SC_OPEN_MAX\n" |
5924 | msgstr "" | 4518 | msgstr "" |
5925 | 4519 | ||
5926 | #: plugins/utils.h:127 | ||
5927 | #, c-format | 4520 | #, c-format |
5928 | msgid "" | 4521 | msgid "" |
5929 | " %s (-h | --help) for detailed help\n" | 4522 | " %s (-h | --help) for detailed help\n" |
5930 | " %s (-V | --version) for version information\n" | 4523 | " %s (-V | --version) for version information\n" |
5931 | msgstr "" | 4524 | msgstr "" |
5932 | 4525 | ||
5933 | #: plugins/utils.h:131 | ||
5934 | msgid "" | 4526 | msgid "" |
5935 | "\n" | 4527 | "\n" |
5936 | "Options:\n" | 4528 | "Options:\n" |
@@ -5940,7 +4532,6 @@ msgid "" | |||
5940 | " Print version information\n" | 4532 | " Print version information\n" |
5941 | msgstr "" | 4533 | msgstr "" |
5942 | 4534 | ||
5943 | #: plugins/utils.h:138 | ||
5944 | #, c-format | 4535 | #, c-format |
5945 | msgid "" | 4536 | msgid "" |
5946 | " -H, --hostname=ADDRESS\n" | 4537 | " -H, --hostname=ADDRESS\n" |
@@ -5949,7 +4540,6 @@ msgid "" | |||
5949 | " Port number (default: %s)\n" | 4540 | " Port number (default: %s)\n" |
5950 | msgstr "" | 4541 | msgstr "" |
5951 | 4542 | ||
5952 | #: plugins/utils.h:144 | ||
5953 | msgid "" | 4543 | msgid "" |
5954 | " -4, --use-ipv4\n" | 4544 | " -4, --use-ipv4\n" |
5955 | " Use IPv4 connection\n" | 4545 | " Use IPv4 connection\n" |
@@ -5957,14 +4547,12 @@ msgid "" | |||
5957 | " Use IPv6 connection\n" | 4547 | " Use IPv6 connection\n" |
5958 | msgstr "" | 4548 | msgstr "" |
5959 | 4549 | ||
5960 | #: plugins/utils.h:150 | ||
5961 | msgid "" | 4550 | msgid "" |
5962 | " -v, --verbose\n" | 4551 | " -v, --verbose\n" |
5963 | " Show details for command-line debugging (output may be truncated by\n" | 4552 | " Show details for command-line debugging (output may be truncated by\n" |
5964 | " the monitoring system)\n" | 4553 | " the monitoring system)\n" |
5965 | msgstr "" | 4554 | msgstr "" |
5966 | 4555 | ||
5967 | #: plugins/utils.h:155 | ||
5968 | msgid "" | 4556 | msgid "" |
5969 | " -w, --warning=DOUBLE\n" | 4557 | " -w, --warning=DOUBLE\n" |
5970 | " Response time to result in warning status (seconds)\n" | 4558 | " Response time to result in warning status (seconds)\n" |
@@ -5972,7 +4560,6 @@ msgid "" | |||
5972 | " Response time to result in critical status (seconds)\n" | 4560 | " Response time to result in critical status (seconds)\n" |
5973 | msgstr "" | 4561 | msgstr "" |
5974 | 4562 | ||
5975 | #: plugins/utils.h:161 | ||
5976 | msgid "" | 4563 | msgid "" |
5977 | " -w, --warning=RANGE\n" | 4564 | " -w, --warning=RANGE\n" |
5978 | " Warning range (format: start:end). Alert if outside this range\n" | 4565 | " Warning range (format: start:end). Alert if outside this range\n" |
@@ -5980,21 +4567,18 @@ msgid "" | |||
5980 | " Critical range\n" | 4567 | " Critical range\n" |
5981 | msgstr "" | 4568 | msgstr "" |
5982 | 4569 | ||
5983 | #: plugins/utils.h:167 | ||
5984 | #, c-format | 4570 | #, c-format |
5985 | msgid "" | 4571 | msgid "" |
5986 | " -t, --timeout=INTEGER\n" | 4572 | " -t, --timeout=INTEGER\n" |
5987 | " Seconds before connection times out (default: %d)\n" | 4573 | " Seconds before connection times out (default: %d)\n" |
5988 | msgstr "" | 4574 | msgstr "" |
5989 | 4575 | ||
5990 | #: plugins/utils.h:171 | ||
5991 | #, c-format | 4576 | #, c-format |
5992 | msgid "" | 4577 | msgid "" |
5993 | " -t, --timeout=INTEGER\n" | 4578 | " -t, --timeout=INTEGER\n" |
5994 | " Seconds before plugin times out (default: %d)\n" | 4579 | " Seconds before plugin times out (default: %d)\n" |
5995 | msgstr "" | 4580 | msgstr "" |
5996 | 4581 | ||
5997 | #: plugins/utils.h:176 | ||
5998 | msgid "" | 4582 | msgid "" |
5999 | " --extra-opts=[section][@file]\n" | 4583 | " --extra-opts=[section][@file]\n" |
6000 | " Read options from an ini file. See\n" | 4584 | " Read options from an ini file. See\n" |
@@ -6002,14 +4586,12 @@ msgid "" | |||
6002 | " for usage and examples.\n" | 4586 | " for usage and examples.\n" |
6003 | msgstr "" | 4587 | msgstr "" |
6004 | 4588 | ||
6005 | #: plugins/utils.h:185 | ||
6006 | msgid "" | 4589 | msgid "" |
6007 | " See:\n" | 4590 | " See:\n" |
6008 | " https://www.monitoring-plugins.org/doc/guidelines.html#THRESHOLDFORMAT\n" | 4591 | " https://www.monitoring-plugins.org/doc/guidelines.html#THRESHOLDFORMAT\n" |
6009 | " for THRESHOLD format and examples.\n" | 4592 | " for THRESHOLD format and examples.\n" |
6010 | msgstr "" | 4593 | msgstr "" |
6011 | 4594 | ||
6012 | #: plugins/utils.h:190 | ||
6013 | msgid "" | 4595 | msgid "" |
6014 | "\n" | 4596 | "\n" |
6015 | "Send email to help@monitoring-plugins.org if you have questions regarding\n" | 4597 | "Send email to help@monitoring-plugins.org if you have questions regarding\n" |
@@ -6018,7 +4600,6 @@ msgid "" | |||
6018 | "\n" | 4600 | "\n" |
6019 | msgstr "" | 4601 | msgstr "" |
6020 | 4602 | ||
6021 | #: plugins/utils.h:195 | ||
6022 | msgid "" | 4603 | msgid "" |
6023 | "\n" | 4604 | "\n" |
6024 | "The Monitoring Plugins come with ABSOLUTELY NO WARRANTY. You may " | 4605 | "The Monitoring Plugins come with ABSOLUTELY NO WARRANTY. You may " |
@@ -6027,406 +4608,322 @@ msgid "" | |||
6027 | "For more information about these matters, see the file named COPYING.\n" | 4608 | "For more information about these matters, see the file named COPYING.\n" |
6028 | msgstr "" | 4609 | msgstr "" |
6029 | 4610 | ||
6030 | #: plugins-root/check_dhcp.c:317 | ||
6031 | #, c-format | 4611 | #, c-format |
6032 | msgid "Error: Could not get hardware address of interface '%s'\n" | 4612 | msgid "Error: Could not get hardware address of interface '%s'\n" |
6033 | msgstr "" | 4613 | msgstr "" |
6034 | 4614 | ||
6035 | #: plugins-root/check_dhcp.c:340 | ||
6036 | #, c-format | 4615 | #, c-format |
6037 | msgid "Error: if_nametoindex error - %s.\n" | 4616 | msgid "Error: if_nametoindex error - %s.\n" |
6038 | msgstr "" | 4617 | msgstr "" |
6039 | 4618 | ||
6040 | #: plugins-root/check_dhcp.c:345 | ||
6041 | #, c-format | 4619 | #, c-format |
6042 | msgid "Error: Couldn't get hardware address from %s. sysctl 1 error - %s.\n" | 4620 | msgid "Error: Couldn't get hardware address from %s. sysctl 1 error - %s.\n" |
6043 | msgstr "" | 4621 | msgstr "" |
6044 | 4622 | ||
6045 | #: plugins-root/check_dhcp.c:350 | ||
6046 | #, c-format | 4623 | #, c-format |
6047 | msgid "" | 4624 | msgid "" |
6048 | "Error: Couldn't get hardware address from interface %s. malloc error - %s.\n" | 4625 | "Error: Couldn't get hardware address from interface %s. malloc error - %s.\n" |
6049 | msgstr "" | 4626 | msgstr "" |
6050 | 4627 | ||
6051 | #: plugins-root/check_dhcp.c:355 | ||
6052 | #, c-format | 4628 | #, c-format |
6053 | msgid "Error: Couldn't get hardware address from %s. sysctl 2 error - %s.\n" | 4629 | msgid "Error: Couldn't get hardware address from %s. sysctl 2 error - %s.\n" |
6054 | msgstr "" | 4630 | msgstr "" |
6055 | 4631 | ||
6056 | #: plugins-root/check_dhcp.c:386 | ||
6057 | #, c-format | 4632 | #, c-format |
6058 | msgid "" | 4633 | msgid "" |
6059 | "Error: can't find unit number in interface_name (%s) - expecting TypeNumber " | 4634 | "Error: can't find unit number in interface_name (%s) - expecting TypeNumber " |
6060 | "eg lnc0.\n" | 4635 | "eg lnc0.\n" |
6061 | msgstr "" | 4636 | msgstr "" |
6062 | 4637 | ||
6063 | #: plugins-root/check_dhcp.c:391 plugins-root/check_dhcp.c:403 | ||
6064 | #, c-format | 4638 | #, c-format |
6065 | msgid "" | 4639 | msgid "" |
6066 | "Error: can't read MAC address from DLPI streams interface for device %s unit " | 4640 | "Error: can't read MAC address from DLPI streams interface for device %s unit " |
6067 | "%d.\n" | 4641 | "%d.\n" |
6068 | msgstr "" | 4642 | msgstr "" |
6069 | 4643 | ||
6070 | #: plugins-root/check_dhcp.c:409 | ||
6071 | #, c-format | 4644 | #, c-format |
6072 | msgid "" | 4645 | msgid "" |
6073 | "Error: can't get MAC address for this architecture. Use the --mac option.\n" | 4646 | "Error: can't get MAC address for this architecture. Use the --mac option.\n" |
6074 | msgstr "" | 4647 | msgstr "" |
6075 | 4648 | ||
6076 | #: plugins-root/check_dhcp.c:428 | ||
6077 | #, c-format | 4649 | #, c-format |
6078 | msgid "Error: Cannot determine IP address of interface %s\n" | 4650 | msgid "Error: Cannot determine IP address of interface %s\n" |
6079 | msgstr "" | 4651 | msgstr "" |
6080 | 4652 | ||
6081 | #: plugins-root/check_dhcp.c:436 | ||
6082 | #, c-format | 4653 | #, c-format |
6083 | msgid "Error: Cannot get interface IP address on this platform.\n" | 4654 | msgid "Error: Cannot get interface IP address on this platform.\n" |
6084 | msgstr "" | 4655 | msgstr "" |
6085 | 4656 | ||
6086 | #: plugins-root/check_dhcp.c:441 | ||
6087 | #, c-format | 4657 | #, c-format |
6088 | msgid "Pretending to be relay client %s\n" | 4658 | msgid "Pretending to be relay client %s\n" |
6089 | msgstr "" | 4659 | msgstr "" |
6090 | 4660 | ||
6091 | #: plugins-root/check_dhcp.c:521 | ||
6092 | #, c-format | 4661 | #, c-format |
6093 | msgid "DHCPDISCOVER to %s port %d\n" | 4662 | msgid "DHCPDISCOVER to %s port %d\n" |
6094 | msgstr "" | 4663 | msgstr "" |
6095 | 4664 | ||
6096 | #: plugins-root/check_dhcp.c:573 | ||
6097 | #, c-format | 4665 | #, c-format |
6098 | msgid "Result=ERROR\n" | 4666 | msgid "Result=ERROR\n" |
6099 | msgstr "" | 4667 | msgstr "" |
6100 | 4668 | ||
6101 | #: plugins-root/check_dhcp.c:579 | ||
6102 | #, c-format | 4669 | #, c-format |
6103 | msgid "Result=OK\n" | 4670 | msgid "Result=OK\n" |
6104 | msgstr "" | 4671 | msgstr "" |
6105 | 4672 | ||
6106 | #: plugins-root/check_dhcp.c:589 | ||
6107 | #, c-format | 4673 | #, c-format |
6108 | msgid "DHCPOFFER from IP address %s" | 4674 | msgid "DHCPOFFER from IP address %s" |
6109 | msgstr "" | 4675 | msgstr "" |
6110 | 4676 | ||
6111 | #: plugins-root/check_dhcp.c:590 | ||
6112 | #, c-format | 4677 | #, c-format |
6113 | msgid " via %s\n" | 4678 | msgid " via %s\n" |
6114 | msgstr "" | 4679 | msgstr "" |
6115 | 4680 | ||
6116 | #: plugins-root/check_dhcp.c:597 | ||
6117 | #, c-format | 4681 | #, c-format |
6118 | msgid "" | 4682 | msgid "" |
6119 | "DHCPOFFER XID (%u) did not match DHCPDISCOVER XID (%u) - ignoring packet\n" | 4683 | "DHCPOFFER XID (%u) did not match DHCPDISCOVER XID (%u) - ignoring packet\n" |
6120 | msgstr "" | 4684 | msgstr "" |
6121 | 4685 | ||
6122 | #: plugins-root/check_dhcp.c:619 | ||
6123 | #, c-format | 4686 | #, c-format |
6124 | msgid "DHCPOFFER hardware address did not match our own - ignoring packet\n" | 4687 | msgid "DHCPOFFER hardware address did not match our own - ignoring packet\n" |
6125 | msgstr "" | 4688 | msgstr "" |
6126 | 4689 | ||
6127 | #: plugins-root/check_dhcp.c:637 | ||
6128 | #, c-format | 4690 | #, c-format |
6129 | msgid "Total responses seen on the wire: %d\n" | 4691 | msgid "Total responses seen on the wire: %d\n" |
6130 | msgstr "" | 4692 | msgstr "" |
6131 | 4693 | ||
6132 | #: plugins-root/check_dhcp.c:638 | ||
6133 | #, c-format | 4694 | #, c-format |
6134 | msgid "Valid responses for this machine: %d\n" | 4695 | msgid "Valid responses for this machine: %d\n" |
6135 | msgstr "" | 4696 | msgstr "" |
6136 | 4697 | ||
6137 | #: plugins-root/check_dhcp.c:653 | ||
6138 | #, c-format | 4698 | #, c-format |
6139 | msgid "send_dhcp_packet result: %d\n" | 4699 | msgid "send_dhcp_packet result: %d\n" |
6140 | msgstr "" | 4700 | msgstr "" |
6141 | 4701 | ||
6142 | #: plugins-root/check_dhcp.c:686 | ||
6143 | #, c-format | 4702 | #, c-format |
6144 | msgid "No (more) data received (nfound: %d)\n" | 4703 | msgid "No (more) data received (nfound: %d)\n" |
6145 | msgstr "" | 4704 | msgstr "" |
6146 | 4705 | ||
6147 | #: plugins-root/check_dhcp.c:699 | ||
6148 | #, c-format | 4706 | #, c-format |
6149 | msgid "recvfrom() failed, " | 4707 | msgid "recvfrom() failed, " |
6150 | msgstr "" | 4708 | msgstr "" |
6151 | 4709 | ||
6152 | #: plugins-root/check_dhcp.c:706 | ||
6153 | #, c-format | 4710 | #, c-format |
6154 | msgid "receive_dhcp_packet() result: %d\n" | 4711 | msgid "receive_dhcp_packet() result: %d\n" |
6155 | msgstr "" | 4712 | msgstr "" |
6156 | 4713 | ||
6157 | #: plugins-root/check_dhcp.c:707 | ||
6158 | #, c-format | 4714 | #, c-format |
6159 | msgid "receive_dhcp_packet() source: %s\n" | 4715 | msgid "receive_dhcp_packet() source: %s\n" |
6160 | msgstr "" | 4716 | msgstr "" |
6161 | 4717 | ||
6162 | #: plugins-root/check_dhcp.c:737 | ||
6163 | #, c-format | 4718 | #, c-format |
6164 | msgid "Error: Could not create socket!\n" | 4719 | msgid "Error: Could not create socket!\n" |
6165 | msgstr "" | 4720 | msgstr "" |
6166 | 4721 | ||
6167 | #: plugins-root/check_dhcp.c:747 | ||
6168 | #, c-format | 4722 | #, c-format |
6169 | msgid "Error: Could not set reuse address option on DHCP socket!\n" | 4723 | msgid "Error: Could not set reuse address option on DHCP socket!\n" |
6170 | msgstr "" | 4724 | msgstr "" |
6171 | 4725 | ||
6172 | #: plugins-root/check_dhcp.c:753 | ||
6173 | #, c-format | 4726 | #, c-format |
6174 | msgid "Error: Could not set broadcast option on DHCP socket!\n" | 4727 | msgid "Error: Could not set broadcast option on DHCP socket!\n" |
6175 | msgstr "" | 4728 | msgstr "" |
6176 | 4729 | ||
6177 | #: plugins-root/check_dhcp.c:762 | ||
6178 | #, c-format | 4730 | #, c-format |
6179 | msgid "" | 4731 | msgid "" |
6180 | "Error: Could not bind socket to interface %s. Check your privileges...\n" | 4732 | "Error: Could not bind socket to interface %s. Check your privileges...\n" |
6181 | msgstr "" | 4733 | msgstr "" |
6182 | 4734 | ||
6183 | #: plugins-root/check_dhcp.c:773 | ||
6184 | #, c-format | 4735 | #, c-format |
6185 | msgid "" | 4736 | msgid "" |
6186 | "Error: Could not bind to DHCP socket (port %d)! Check your privileges...\n" | 4737 | "Error: Could not bind to DHCP socket (port %d)! Check your privileges...\n" |
6187 | msgstr "" | 4738 | msgstr "" |
6188 | 4739 | ||
6189 | #: plugins-root/check_dhcp.c:807 | ||
6190 | #, c-format | 4740 | #, c-format |
6191 | msgid "Requested server address: %s\n" | 4741 | msgid "Requested server address: %s\n" |
6192 | msgstr "" | 4742 | msgstr "" |
6193 | 4743 | ||
6194 | #: plugins-root/check_dhcp.c:869 | ||
6195 | #, c-format | 4744 | #, c-format |
6196 | msgid "Lease Time: Infinite\n" | 4745 | msgid "Lease Time: Infinite\n" |
6197 | msgstr "" | 4746 | msgstr "" |
6198 | 4747 | ||
6199 | #: plugins-root/check_dhcp.c:871 | ||
6200 | #, c-format | 4748 | #, c-format |
6201 | msgid "Lease Time: %lu seconds\n" | 4749 | msgid "Lease Time: %lu seconds\n" |
6202 | msgstr "" | 4750 | msgstr "" |
6203 | 4751 | ||
6204 | #: plugins-root/check_dhcp.c:873 | ||
6205 | #, c-format | 4752 | #, c-format |
6206 | msgid "Renewal Time: Infinite\n" | 4753 | msgid "Renewal Time: Infinite\n" |
6207 | msgstr "" | 4754 | msgstr "" |
6208 | 4755 | ||
6209 | #: plugins-root/check_dhcp.c:875 | ||
6210 | #, c-format | 4756 | #, c-format |
6211 | msgid "Renewal Time: %lu seconds\n" | 4757 | msgid "Renewal Time: %lu seconds\n" |
6212 | msgstr "" | 4758 | msgstr "" |
6213 | 4759 | ||
6214 | #: plugins-root/check_dhcp.c:877 | ||
6215 | #, c-format | 4760 | #, c-format |
6216 | msgid "Rebinding Time: Infinite\n" | 4761 | msgid "Rebinding Time: Infinite\n" |
6217 | msgstr "" | 4762 | msgstr "" |
6218 | 4763 | ||
6219 | #: plugins-root/check_dhcp.c:878 | ||
6220 | #, c-format | 4764 | #, c-format |
6221 | msgid "Rebinding Time: %lu seconds\n" | 4765 | msgid "Rebinding Time: %lu seconds\n" |
6222 | msgstr "" | 4766 | msgstr "" |
6223 | 4767 | ||
6224 | #: plugins-root/check_dhcp.c:906 | ||
6225 | #, c-format | 4768 | #, c-format |
6226 | msgid "Added offer from server @ %s" | 4769 | msgid "Added offer from server @ %s" |
6227 | msgstr "" | 4770 | msgstr "" |
6228 | 4771 | ||
6229 | #: plugins-root/check_dhcp.c:907 | ||
6230 | #, c-format | 4772 | #, c-format |
6231 | msgid " of IP address %s\n" | 4773 | msgid " of IP address %s\n" |
6232 | msgstr "" | 4774 | msgstr "" |
6233 | 4775 | ||
6234 | #: plugins-root/check_dhcp.c:974 | ||
6235 | #, c-format | 4776 | #, c-format |
6236 | msgid "DHCP Server Match: Offerer=%s" | 4777 | msgid "DHCP Server Match: Offerer=%s" |
6237 | msgstr "" | 4778 | msgstr "" |
6238 | 4779 | ||
6239 | #: plugins-root/check_dhcp.c:975 | ||
6240 | #, c-format | 4780 | #, c-format |
6241 | msgid " Requested=%s" | 4781 | msgid " Requested=%s" |
6242 | msgstr "" | 4782 | msgstr "" |
6243 | 4783 | ||
6244 | #: plugins-root/check_dhcp.c:977 | ||
6245 | #, c-format | 4784 | #, c-format |
6246 | msgid " (duplicate)" | 4785 | msgid " (duplicate)" |
6247 | msgstr "" | 4786 | msgstr "" |
6248 | 4787 | ||
6249 | #: plugins-root/check_dhcp.c:978 | ||
6250 | #, c-format | 4788 | #, c-format |
6251 | msgid "\n" | 4789 | msgid "\n" |
6252 | msgstr "" | 4790 | msgstr "" |
6253 | 4791 | ||
6254 | #: plugins-root/check_dhcp.c:1026 | ||
6255 | #, c-format | 4792 | #, c-format |
6256 | msgid "No DHCPOFFERs were received.\n" | 4793 | msgid "No DHCPOFFERs were received.\n" |
6257 | msgstr "" | 4794 | msgstr "" |
6258 | 4795 | ||
6259 | #: plugins-root/check_dhcp.c:1030 | ||
6260 | #, c-format | 4796 | #, c-format |
6261 | msgid "Received %d DHCPOFFER(s)" | 4797 | msgid "Received %d DHCPOFFER(s)" |
6262 | msgstr "" | 4798 | msgstr "" |
6263 | 4799 | ||
6264 | #: plugins-root/check_dhcp.c:1033 | ||
6265 | #, c-format | 4800 | #, c-format |
6266 | msgid ", %s%d of %d requested servers responded" | 4801 | msgid ", %s%d of %d requested servers responded" |
6267 | msgstr "" | 4802 | msgstr "" |
6268 | 4803 | ||
6269 | #: plugins-root/check_dhcp.c:1036 | ||
6270 | #, c-format | 4804 | #, c-format |
6271 | msgid ", requested address (%s) was %soffered" | 4805 | msgid ", requested address (%s) was %soffered" |
6272 | msgstr "" | 4806 | msgstr "" |
6273 | 4807 | ||
6274 | #: plugins-root/check_dhcp.c:1036 | ||
6275 | msgid "not " | 4808 | msgid "not " |
6276 | msgstr "" | 4809 | msgstr "" |
6277 | 4810 | ||
6278 | #: plugins-root/check_dhcp.c:1038 | ||
6279 | #, c-format | 4811 | #, c-format |
6280 | msgid ", max lease time = " | 4812 | msgid ", max lease time = " |
6281 | msgstr "" | 4813 | msgstr "" |
6282 | 4814 | ||
6283 | #: plugins-root/check_dhcp.c:1040 | ||
6284 | #, c-format | 4815 | #, c-format |
6285 | msgid "Infinity" | 4816 | msgid "Infinity" |
6286 | msgstr "" | 4817 | msgstr "" |
6287 | 4818 | ||
6288 | #: plugins-root/check_dhcp.c:1160 | ||
6289 | msgid "Got unexpected non-option argument" | 4819 | msgid "Got unexpected non-option argument" |
6290 | msgstr "" | 4820 | msgstr "" |
6291 | 4821 | ||
6292 | #: plugins-root/check_dhcp.c:1202 | ||
6293 | #, c-format | 4822 | #, c-format |
6294 | msgid "Error: DLPI stream API failed to get MAC in check_ctrl: %s.\n" | 4823 | msgid "Error: DLPI stream API failed to get MAC in check_ctrl: %s.\n" |
6295 | msgstr "" | 4824 | msgstr "" |
6296 | 4825 | ||
6297 | #: plugins-root/check_dhcp.c:1214 | ||
6298 | #, c-format | 4826 | #, c-format |
6299 | msgid "Error: DLPI stream API failed to get MAC in put_ctrl/putmsg(): %s.\n" | 4827 | msgid "Error: DLPI stream API failed to get MAC in put_ctrl/putmsg(): %s.\n" |
6300 | msgstr "" | 4828 | msgstr "" |
6301 | 4829 | ||
6302 | #: plugins-root/check_dhcp.c:1227 | ||
6303 | #, c-format | 4830 | #, c-format |
6304 | msgid "Error: DLPI stream API failed to get MAC in put_both/putmsg().\n" | 4831 | msgid "Error: DLPI stream API failed to get MAC in put_both/putmsg().\n" |
6305 | msgstr "" | 4832 | msgstr "" |
6306 | 4833 | ||
6307 | #: plugins-root/check_dhcp.c:1239 | ||
6308 | #, c-format | 4834 | #, c-format |
6309 | msgid "" | 4835 | msgid "" |
6310 | "Error: DLPI stream API failed to get MAC in dl_attach_req/open(%s..): %s.\n" | 4836 | "Error: DLPI stream API failed to get MAC in dl_attach_req/open(%s..): %s.\n" |
6311 | msgstr "" | 4837 | msgstr "" |
6312 | 4838 | ||
6313 | #: plugins-root/check_dhcp.c:1263 | ||
6314 | #, c-format | 4839 | #, c-format |
6315 | msgid "Error: DLPI stream API failed to get MAC in dl_bind/check_ctrl(): %s.\n" | 4840 | msgid "Error: DLPI stream API failed to get MAC in dl_bind/check_ctrl(): %s.\n" |
6316 | msgstr "" | 4841 | msgstr "" |
6317 | 4842 | ||
6318 | #: plugins-root/check_dhcp.c:1342 | ||
6319 | #, c-format | 4843 | #, c-format |
6320 | msgid "Hardware address: " | 4844 | msgid "Hardware address: " |
6321 | msgstr "" | 4845 | msgstr "" |
6322 | 4846 | ||
6323 | #: plugins-root/check_dhcp.c:1358 | ||
6324 | msgid "This plugin tests the availability of DHCP servers on a network." | 4847 | msgid "This plugin tests the availability of DHCP servers on a network." |
6325 | msgstr "" | 4848 | msgstr "" |
6326 | 4849 | ||
6327 | #: plugins-root/check_dhcp.c:1370 | ||
6328 | msgid "IP address of DHCP server that we must hear from" | 4850 | msgid "IP address of DHCP server that we must hear from" |
6329 | msgstr "" | 4851 | msgstr "" |
6330 | 4852 | ||
6331 | #: plugins-root/check_dhcp.c:1372 | ||
6332 | msgid "IP address that should be offered by at least one DHCP server" | 4853 | msgid "IP address that should be offered by at least one DHCP server" |
6333 | msgstr "" | 4854 | msgstr "" |
6334 | 4855 | ||
6335 | #: plugins-root/check_dhcp.c:1374 | ||
6336 | msgid "Seconds to wait for DHCPOFFER before timeout occurs" | 4856 | msgid "Seconds to wait for DHCPOFFER before timeout occurs" |
6337 | msgstr "" | 4857 | msgstr "" |
6338 | 4858 | ||
6339 | #: plugins-root/check_dhcp.c:1376 | ||
6340 | msgid "Interface to to use for listening (i.e. eth0)" | 4859 | msgid "Interface to to use for listening (i.e. eth0)" |
6341 | msgstr "" | 4860 | msgstr "" |
6342 | 4861 | ||
6343 | #: plugins-root/check_dhcp.c:1378 | ||
6344 | msgid "MAC address to use in the DHCP request" | 4862 | msgid "MAC address to use in the DHCP request" |
6345 | msgstr "" | 4863 | msgstr "" |
6346 | 4864 | ||
6347 | #: plugins-root/check_dhcp.c:1380 | ||
6348 | msgid "Unicast testing: mimic a DHCP relay, requires -s" | 4865 | msgid "Unicast testing: mimic a DHCP relay, requires -s" |
6349 | msgstr "" | 4866 | msgstr "" |
6350 | 4867 | ||
6351 | #: plugins-root/check_icmp.c:1572 | ||
6352 | msgid "specify a target" | 4868 | msgid "specify a target" |
6353 | msgstr "" | 4869 | msgstr "" |
6354 | 4870 | ||
6355 | #: plugins-root/check_icmp.c:1574 | ||
6356 | msgid "Use IPv4 (default) or IPv6 to communicate with the targets" | 4871 | msgid "Use IPv4 (default) or IPv6 to communicate with the targets" |
6357 | msgstr "" | 4872 | msgstr "" |
6358 | 4873 | ||
6359 | #: plugins-root/check_icmp.c:1576 | ||
6360 | msgid "warning threshold (currently " | 4874 | msgid "warning threshold (currently " |
6361 | msgstr "" | 4875 | msgstr "" |
6362 | 4876 | ||
6363 | #: plugins-root/check_icmp.c:1579 | ||
6364 | msgid "critical threshold (currently " | 4877 | msgid "critical threshold (currently " |
6365 | msgstr "" | 4878 | msgstr "" |
6366 | 4879 | ||
6367 | #: plugins-root/check_icmp.c:1582 | ||
6368 | msgid "specify a source IP address or device name" | 4880 | msgid "specify a source IP address or device name" |
6369 | msgstr "" | 4881 | msgstr "" |
6370 | 4882 | ||
6371 | #: plugins-root/check_icmp.c:1584 | ||
6372 | msgid "number of packets to send (currently " | 4883 | msgid "number of packets to send (currently " |
6373 | msgstr "" | 4884 | msgstr "" |
6374 | 4885 | ||
6375 | #: plugins-root/check_icmp.c:1587 | ||
6376 | msgid "max packet interval (currently " | 4886 | msgid "max packet interval (currently " |
6377 | msgstr "" | 4887 | msgstr "" |
6378 | 4888 | ||
6379 | #: plugins-root/check_icmp.c:1590 | ||
6380 | msgid "max target interval (currently " | 4889 | msgid "max target interval (currently " |
6381 | msgstr "" | 4890 | msgstr "" |
6382 | 4891 | ||
6383 | #: plugins-root/check_icmp.c:1593 | ||
6384 | msgid "number of alive hosts required for success" | 4892 | msgid "number of alive hosts required for success" |
6385 | msgstr "" | 4893 | msgstr "" |
6386 | 4894 | ||
6387 | #: plugins-root/check_icmp.c:1596 | ||
6388 | msgid "TTL on outgoing packets (currently " | 4895 | msgid "TTL on outgoing packets (currently " |
6389 | msgstr "" | 4896 | msgstr "" |
6390 | 4897 | ||
6391 | #: plugins-root/check_icmp.c:1599 | ||
6392 | msgid "timeout value (seconds, currently " | 4898 | msgid "timeout value (seconds, currently " |
6393 | msgstr "" | 4899 | msgstr "" |
6394 | 4900 | ||
6395 | #: plugins-root/check_icmp.c:1602 | ||
6396 | msgid "Number of icmp data bytes to send" | 4901 | msgid "Number of icmp data bytes to send" |
6397 | msgstr "" | 4902 | msgstr "" |
6398 | 4903 | ||
6399 | #: plugins-root/check_icmp.c:1603 | ||
6400 | msgid "Packet size will be data bytes + icmp header (currently" | 4904 | msgid "Packet size will be data bytes + icmp header (currently" |
6401 | msgstr "" | 4905 | msgstr "" |
6402 | 4906 | ||
6403 | #: plugins-root/check_icmp.c:1605 | ||
6404 | msgid "verbose" | 4907 | msgid "verbose" |
6405 | msgstr "" | 4908 | msgstr "" |
6406 | 4909 | ||
6407 | #: plugins-root/check_icmp.c:1609 | ||
6408 | msgid "The -H switch is optional. Naming a host (or several) to check is not." | 4910 | msgid "The -H switch is optional. Naming a host (or several) to check is not." |
6409 | msgstr "" | 4911 | msgstr "" |
6410 | 4912 | ||
6411 | #: plugins-root/check_icmp.c:1611 | ||
6412 | msgid "" | 4913 | msgid "" |
6413 | "Threshold format for -w and -c is 200.25,60% for 200.25 msec RTA and 60%" | 4914 | "Threshold format for -w and -c is 200.25,60% for 200.25 msec RTA and 60%" |
6414 | msgstr "" | 4915 | msgstr "" |
6415 | 4916 | ||
6416 | #: plugins-root/check_icmp.c:1612 | ||
6417 | msgid "packet loss. The default values should work well for most users." | 4917 | msgid "packet loss. The default values should work well for most users." |
6418 | msgstr "" | 4918 | msgstr "" |
6419 | 4919 | ||
6420 | #: plugins-root/check_icmp.c:1613 | ||
6421 | msgid "" | 4920 | msgid "" |
6422 | "You can specify different RTA factors using the standardized abbreviations" | 4921 | "You can specify different RTA factors using the standardized abbreviations" |
6423 | msgstr "" | 4922 | msgstr "" |
6424 | 4923 | ||
6425 | #: plugins-root/check_icmp.c:1614 | ||
6426 | msgid "" | 4924 | msgid "" |
6427 | "us (microseconds), ms (milliseconds, default) or just plain s for seconds." | 4925 | "us (microseconds), ms (milliseconds, default) or just plain s for seconds." |
6428 | msgstr "" | 4926 | msgstr "" |
6429 | 4927 | ||
6430 | #: plugins-root/check_icmp.c:1620 | ||
6431 | msgid "The -v switch can be specified several times for increased verbosity." | 4928 | msgid "The -v switch can be specified several times for increased verbosity." |
6432 | msgstr "" | 4929 | msgstr "" |