diff options
-rw-r--r-- | .github/workflows/test.yml | 4 | ||||
-rw-r--r-- | plugins-root/check_dhcp.c | 12 | ||||
-rw-r--r-- | plugins-root/check_icmp.c | 5 | ||||
-rw-r--r-- | plugins/check_curl.c | 256 | ||||
-rw-r--r-- | plugins/check_dbi.c | 14 | ||||
-rw-r--r-- | plugins/check_fping.c | 1 | ||||
-rw-r--r-- | plugins/check_hpjd.c | 1 | ||||
-rw-r--r-- | plugins/check_http.c | 1 | ||||
-rw-r--r-- | plugins/check_ntp_peer.c | 6 | ||||
-rw-r--r-- | plugins/check_smtp.c | 1 | ||||
-rw-r--r-- | plugins/check_snmp.c | 1 | ||||
-rw-r--r-- | plugins/check_ups.c | 14 | ||||
-rw-r--r-- | po/de.po | 670 | ||||
-rw-r--r-- | po/fr.po | 670 | ||||
-rw-r--r-- | po/monitoring-plugins.pot | 670 |
15 files changed, 1232 insertions, 1094 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 306f21c..9c84acc 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml | |||
@@ -74,6 +74,10 @@ jobs: | |||
74 | /bin/sh -c '${{ matrix.prepare }} && \ | 74 | /bin/sh -c '${{ matrix.prepare }} && \ |
75 | tools/setup && \ | 75 | tools/setup && \ |
76 | ./configure --enable-libtap --with-ipv6=no && \ | 76 | ./configure --enable-libtap --with-ipv6=no && \ |
77 | set -x && \ | ||
78 | tmp_dir=$(mktemp -d -t test-XXXX) && cp -a po/ $tmp_dir/ && \ | ||
79 | cd po && make update-po && cd .. && \ | ||
80 | diff -Nur $tmp_dir/po/*.po po/*.po | tee -a /tmp/po.diff && diff -Nur $tmp_dir/po/*.pot po/*.pot | tee -a /tmp/po.diff && if [ $(wc -l /tmp/po.diff | cut -f 1 -d" ") -gt 0 ]; then echo "Error: Translations needs to be updated with make update-po!" && exit 1; fi && \ | ||
77 | make && \ | 81 | make && \ |
78 | make test' | 82 | make test' |
79 | docker container prune -f | 83 | docker container prune -f |
diff --git a/plugins-root/check_dhcp.c b/plugins-root/check_dhcp.c index 147db6b..2d22619 100644 --- a/plugins-root/check_dhcp.c +++ b/plugins-root/check_dhcp.c | |||
@@ -229,7 +229,7 @@ struct in_addr requested_address; | |||
229 | 229 | ||
230 | int process_arguments(int, char **); | 230 | int process_arguments(int, char **); |
231 | int call_getopt(int, char **); | 231 | int call_getopt(int, char **); |
232 | int validate_arguments(int, int); | 232 | int validate_arguments(int); |
233 | void print_usage(void); | 233 | void print_usage(void); |
234 | void print_help(void); | 234 | void print_help(void); |
235 | 235 | ||
@@ -1055,8 +1055,8 @@ int process_arguments(int argc, char **argv){ | |||
1055 | return ERROR; | 1055 | return ERROR; |
1056 | 1056 | ||
1057 | arg_index = call_getopt(argc,argv); | 1057 | arg_index = call_getopt(argc,argv); |
1058 | return validate_arguments(argc,arg_index); | 1058 | return validate_arguments(argc); |
1059 | } | 1059 | } |
1060 | 1060 | ||
1061 | 1061 | ||
1062 | 1062 | ||
@@ -1154,13 +1154,13 @@ int call_getopt(int argc, char **argv){ | |||
1154 | } | 1154 | } |
1155 | 1155 | ||
1156 | 1156 | ||
1157 | int validate_arguments(int argc, int arg_index){ | 1157 | int validate_arguments(int argc){ |
1158 | 1158 | ||
1159 | if(argc-optind > 0) | 1159 | if(argc - optind > 0) |
1160 | usage(_("Got unexpected non-option argument")); | 1160 | usage(_("Got unexpected non-option argument")); |
1161 | 1161 | ||
1162 | return OK; | 1162 | return OK; |
1163 | } | 1163 | } |
1164 | 1164 | ||
1165 | 1165 | ||
1166 | #if defined(__sun__) || defined(__solaris__) || defined(__hpux__) | 1166 | #if defined(__sun__) || defined(__solaris__) || defined(__hpux__) |
diff --git a/plugins-root/check_icmp.c b/plugins-root/check_icmp.c index 9ceb35b..1d47e9f 100644 --- a/plugins-root/check_icmp.c +++ b/plugins-root/check_icmp.c | |||
@@ -1432,15 +1432,20 @@ get_ip_address(const char *ifname) | |||
1432 | { | 1432 | { |
1433 | // TODO: Rewrite this so the function return an error and we exit somewhere else | 1433 | // TODO: Rewrite this so the function return an error and we exit somewhere else |
1434 | struct sockaddr_in ip; | 1434 | struct sockaddr_in ip; |
1435 | ip.sin_addr.s_addr = 0; // Fake initialization to make compiler happy | ||
1435 | #if defined(SIOCGIFADDR) | 1436 | #if defined(SIOCGIFADDR) |
1436 | struct ifreq ifr; | 1437 | struct ifreq ifr; |
1437 | 1438 | ||
1438 | strncpy(ifr.ifr_name, ifname, sizeof(ifr.ifr_name) - 1); | 1439 | strncpy(ifr.ifr_name, ifname, sizeof(ifr.ifr_name) - 1); |
1440 | |||
1439 | ifr.ifr_name[sizeof(ifr.ifr_name) - 1] = '\0'; | 1441 | ifr.ifr_name[sizeof(ifr.ifr_name) - 1] = '\0'; |
1442 | |||
1440 | if(ioctl(icmp_sock, SIOCGIFADDR, &ifr) == -1) | 1443 | if(ioctl(icmp_sock, SIOCGIFADDR, &ifr) == -1) |
1441 | crash("Cannot determine IP address of interface %s", ifname); | 1444 | crash("Cannot determine IP address of interface %s", ifname); |
1445 | |||
1442 | memcpy(&ip, &ifr.ifr_addr, sizeof(ip)); | 1446 | memcpy(&ip, &ifr.ifr_addr, sizeof(ip)); |
1443 | #else | 1447 | #else |
1448 | (void) ifname; | ||
1444 | errno = 0; | 1449 | errno = 0; |
1445 | crash("Cannot get interface IP address on this platform."); | 1450 | crash("Cannot get interface IP address on this platform."); |
1446 | #endif | 1451 | #endif |
diff --git a/plugins/check_curl.c b/plugins/check_curl.c index 100a97a..d0871c4 100644 --- a/plugins/check_curl.c +++ b/plugins/check_curl.c | |||
@@ -244,7 +244,7 @@ void curlhelp_freewritebuffer (curlhelp_write_curlbuf*); | |||
244 | int curlhelp_initreadbuffer (curlhelp_read_curlbuf *, const char *, size_t); | 244 | int curlhelp_initreadbuffer (curlhelp_read_curlbuf *, const char *, size_t); |
245 | int curlhelp_buffer_read_callback (void *, size_t , size_t , void *); | 245 | int curlhelp_buffer_read_callback (void *, size_t , size_t , void *); |
246 | void curlhelp_freereadbuffer (curlhelp_read_curlbuf *); | 246 | void curlhelp_freereadbuffer (curlhelp_read_curlbuf *); |
247 | curlhelp_ssl_library curlhelp_get_ssl_library (CURL*); | 247 | curlhelp_ssl_library curlhelp_get_ssl_library (); |
248 | const char* curlhelp_get_ssl_library_string (curlhelp_ssl_library); | 248 | const char* curlhelp_get_ssl_library_string (curlhelp_ssl_library); |
249 | int net_noopenssl_check_certificate (cert_ptr_union*, int, int); | 249 | int net_noopenssl_check_certificate (cert_ptr_union*, int, int); |
250 | 250 | ||
@@ -297,6 +297,7 @@ main (int argc, char **argv) | |||
297 | 297 | ||
298 | int verify_callback(int preverify_ok, X509_STORE_CTX *x509_ctx) | 298 | int verify_callback(int preverify_ok, X509_STORE_CTX *x509_ctx) |
299 | { | 299 | { |
300 | (void) preverify_ok; | ||
300 | /* TODO: we get all certificates of the chain, so which ones | 301 | /* TODO: we get all certificates of the chain, so which ones |
301 | * should we test? | 302 | * should we test? |
302 | * TODO: is the last certificate always the server certificate? | 303 | * TODO: is the last certificate always the server certificate? |
@@ -321,6 +322,8 @@ int verify_callback(int preverify_ok, X509_STORE_CTX *x509_ctx) | |||
321 | 322 | ||
322 | CURLcode sslctxfun(CURL *curl, SSL_CTX *sslctx, void *parm) | 323 | CURLcode sslctxfun(CURL *curl, SSL_CTX *sslctx, void *parm) |
323 | { | 324 | { |
325 | (void) curl; // ignore unused parameter | ||
326 | (void) parm; // ignore unused parameter | ||
324 | SSL_CTX_set_verify(sslctx, SSL_VERIFY_PEER, verify_callback); | 327 | SSL_CTX_set_verify(sslctx, SSL_VERIFY_PEER, verify_callback); |
325 | 328 | ||
326 | return CURLE_OK; | 329 | return CURLE_OK; |
@@ -375,8 +378,12 @@ void | |||
375 | handle_curl_option_return_code (CURLcode res, const char* option) | 378 | handle_curl_option_return_code (CURLcode res, const char* option) |
376 | { | 379 | { |
377 | if (res != CURLE_OK) { | 380 | if (res != CURLE_OK) { |
378 | snprintf (msg, DEFAULT_BUFFER_SIZE, _("Error while setting cURL option '%s': cURL returned %d - %s"), | 381 | snprintf (msg, |
379 | option, res, curl_easy_strerror(res)); | 382 | DEFAULT_BUFFER_SIZE, |
383 | _("Error while setting cURL option '%s': cURL returned %d - %s"), | ||
384 | option, | ||
385 | res, | ||
386 | curl_easy_strerror(res)); | ||
380 | die (STATE_CRITICAL, "HTTP CRITICAL - %s\n", msg); | 387 | die (STATE_CRITICAL, "HTTP CRITICAL - %s\n", msg); |
381 | } | 388 | } |
382 | } | 389 | } |
@@ -516,9 +523,13 @@ check_http (void) | |||
516 | // fill dns resolve cache to make curl connect to the given server_address instead of the host_name, only required for ssl, because we use the host_name later on to make SNI happy | 523 | // fill dns resolve cache to make curl connect to the given server_address instead of the host_name, only required for ssl, because we use the host_name later on to make SNI happy |
517 | if(use_ssl && host_name != NULL) { | 524 | if(use_ssl && host_name != NULL) { |
518 | if ( (res=lookup_host (server_address, addrstr, DEFAULT_BUFFER_SIZE/2)) != 0) { | 525 | if ( (res=lookup_host (server_address, addrstr, DEFAULT_BUFFER_SIZE/2)) != 0) { |
519 | snprintf (msg, DEFAULT_BUFFER_SIZE, _("Unable to lookup IP address for '%s': getaddrinfo returned %d - %s"), | 526 | snprintf (msg, |
520 | server_address, res, gai_strerror (res)); | 527 | DEFAULT_BUFFER_SIZE, |
521 | die (STATE_CRITICAL, "HTTP CRITICAL - %s\n", msg); | 528 | _("Unable to lookup IP address for '%s': getaddrinfo returned %d - %s"), |
529 | server_address, | ||
530 | res, | ||
531 | gai_strerror (res)); | ||
532 | die (STATE_CRITICAL, "HTTP CRITICAL - %s\n", msg); | ||
522 | } | 533 | } |
523 | snprintf (dnscache, DEFAULT_BUFFER_SIZE, "%s:%d:%s", host_name, server_port, addrstr); | 534 | snprintf (dnscache, DEFAULT_BUFFER_SIZE, "%s:%d:%s", host_name, server_port, addrstr); |
524 | host = curl_slist_append(NULL, dnscache); | 535 | host = curl_slist_append(NULL, dnscache); |
@@ -646,7 +657,7 @@ check_http (void) | |||
646 | } | 657 | } |
647 | 658 | ||
648 | /* detect SSL library used by libcurl */ | 659 | /* detect SSL library used by libcurl */ |
649 | ssl_library = curlhelp_get_ssl_library (curl); | 660 | ssl_library = curlhelp_get_ssl_library (); |
650 | 661 | ||
651 | /* try hard to get a stack of certificates to verify against */ | 662 | /* try hard to get a stack of certificates to verify against */ |
652 | if (check_cert) { | 663 | if (check_cert) { |
@@ -816,9 +827,13 @@ check_http (void) | |||
816 | 827 | ||
817 | /* Curl errors, result in critical Nagios state */ | 828 | /* Curl errors, result in critical Nagios state */ |
818 | if (res != CURLE_OK) { | 829 | if (res != CURLE_OK) { |
819 | snprintf (msg, DEFAULT_BUFFER_SIZE, _("Invalid HTTP response received from host on port %d: cURL returned %d - %s"), | 830 | snprintf (msg, |
820 | server_port, res, errbuf[0] ? errbuf : curl_easy_strerror(res)); | 831 | DEFAULT_BUFFER_SIZE, |
821 | die (STATE_CRITICAL, "HTTP CRITICAL - %s\n", msg); | 832 | _("Invalid HTTP response received from host on port %d: cURL returned %d - %s"), |
833 | server_port, | ||
834 | res, | ||
835 | errbuf[0] ? errbuf : curl_easy_strerror(res)); | ||
836 | die (STATE_CRITICAL, "HTTP CRITICAL - %s\n", msg); | ||
822 | } | 837 | } |
823 | 838 | ||
824 | /* certificate checks */ | 839 | /* certificate checks */ |
@@ -861,15 +876,19 @@ check_http (void) | |||
861 | } | 876 | } |
862 | GOT_FIRST_CERT: | 877 | GOT_FIRST_CERT: |
863 | if (!raw_cert) { | 878 | if (!raw_cert) { |
864 | snprintf (msg, DEFAULT_BUFFER_SIZE, _("Cannot retrieve certificates from CERTINFO information - certificate data was empty")); | 879 | snprintf (msg, |
865 | die (STATE_CRITICAL, "HTTP CRITICAL - %s\n", msg); | 880 | DEFAULT_BUFFER_SIZE, |
881 | _("Cannot retrieve certificates from CERTINFO information - certificate data was empty")); | ||
882 | die (STATE_CRITICAL, "HTTP CRITICAL - %s\n", msg); | ||
866 | } | 883 | } |
867 | BIO* cert_BIO = BIO_new (BIO_s_mem()); | 884 | BIO* cert_BIO = BIO_new (BIO_s_mem()); |
868 | BIO_write (cert_BIO, raw_cert, strlen(raw_cert)); | 885 | BIO_write (cert_BIO, raw_cert, strlen(raw_cert)); |
869 | cert = PEM_read_bio_X509 (cert_BIO, NULL, NULL, NULL); | 886 | cert = PEM_read_bio_X509 (cert_BIO, NULL, NULL, NULL); |
870 | if (!cert) { | 887 | if (!cert) { |
871 | snprintf (msg, DEFAULT_BUFFER_SIZE, _("Cannot read certificate from CERTINFO information - BIO error")); | 888 | snprintf (msg, |
872 | die (STATE_CRITICAL, "HTTP CRITICAL - %s\n", msg); | 889 | DEFAULT_BUFFER_SIZE, |
890 | _("Cannot read certificate from CERTINFO information - BIO error")); | ||
891 | die (STATE_CRITICAL, "HTTP CRITICAL - %s\n", msg); | ||
873 | } | 892 | } |
874 | BIO_free (cert_BIO); | 893 | BIO_free (cert_BIO); |
875 | result = np_net_ssl_check_certificate(cert, days_till_exp_warn, days_till_exp_crit); | 894 | result = np_net_ssl_check_certificate(cert, days_till_exp_warn, days_till_exp_crit); |
@@ -886,9 +905,12 @@ GOT_FIRST_CERT: | |||
886 | } | 905 | } |
887 | #endif /* USE_OPENSSL */ | 906 | #endif /* USE_OPENSSL */ |
888 | } else { | 907 | } else { |
889 | snprintf (msg, DEFAULT_BUFFER_SIZE, _("Cannot retrieve certificates - cURL returned %d - %s"), | 908 | snprintf (msg, |
890 | res, curl_easy_strerror(res)); | 909 | DEFAULT_BUFFER_SIZE, |
891 | die (STATE_CRITICAL, "HTTP CRITICAL - %s\n", msg); | 910 | _("Cannot retrieve certificates - cURL returned %d - %s"), |
911 | res, | ||
912 | curl_easy_strerror(res)); | ||
913 | die (STATE_CRITICAL, "HTTP CRITICAL - %s\n", msg); | ||
892 | } | 914 | } |
893 | } | 915 | } |
894 | } | 916 | } |
@@ -927,8 +949,11 @@ GOT_FIRST_CERT: | |||
927 | 949 | ||
928 | /* get status line of answer, check sanity of HTTP code */ | 950 | /* get status line of answer, check sanity of HTTP code */ |
929 | if (curlhelp_parse_statusline (header_buf.buf, &status_line) < 0) { | 951 | if (curlhelp_parse_statusline (header_buf.buf, &status_line) < 0) { |
930 | snprintf (msg, DEFAULT_BUFFER_SIZE, "Unparsable status line in %.3g seconds response time|%s\n", | 952 | snprintf (msg, |
931 | total_time, perfstring); | 953 | DEFAULT_BUFFER_SIZE, |
954 | "Unparsable status line in %.3g seconds response time|%s\n", | ||
955 | total_time, | ||
956 | perfstring); | ||
932 | /* we cannot know the major/minor version here for sure as we cannot parse the first line */ | 957 | /* we cannot know the major/minor version here for sure as we cannot parse the first line */ |
933 | die (STATE_CRITICAL, "HTTP CRITICAL HTTP/x.x %ld unknown - %s", code, msg); | 958 | die (STATE_CRITICAL, "HTTP CRITICAL HTTP/x.x %ld unknown - %s", code, msg); |
934 | } | 959 | } |
@@ -948,9 +973,16 @@ GOT_FIRST_CERT: | |||
948 | /* make sure the status line matches the response we are looking for */ | 973 | /* make sure the status line matches the response we are looking for */ |
949 | if (!expected_statuscode(status_line.first_line, server_expect)) { | 974 | if (!expected_statuscode(status_line.first_line, server_expect)) { |
950 | if (server_port == HTTP_PORT) | 975 | if (server_port == HTTP_PORT) |
951 | snprintf(msg, DEFAULT_BUFFER_SIZE, _("Invalid HTTP response received from host: %s\n"), status_line.first_line); | 976 | snprintf(msg, |
977 | DEFAULT_BUFFER_SIZE, | ||
978 | _("Invalid HTTP response received from host: %s\n"), | ||
979 | status_line.first_line); | ||
952 | else | 980 | else |
953 | snprintf(msg, DEFAULT_BUFFER_SIZE, _("Invalid HTTP response received from host on port %d: %s\n"), server_port, status_line.first_line); | 981 | snprintf(msg, |
982 | DEFAULT_BUFFER_SIZE, | ||
983 | _("Invalid HTTP response received from host on port %d: %s\n"), | ||
984 | server_port, | ||
985 | status_line.first_line); | ||
954 | die (STATE_CRITICAL, "HTTP CRITICAL - %s%s%s", msg, | 986 | die (STATE_CRITICAL, "HTTP CRITICAL - %s%s%s", msg, |
955 | show_body ? "\n" : "", | 987 | show_body ? "\n" : "", |
956 | show_body ? body_buf.buf : ""); | 988 | show_body ? body_buf.buf : ""); |
@@ -1023,23 +1055,55 @@ GOT_FIRST_CERT: | |||
1023 | 1055 | ||
1024 | if (strlen (header_expect)) { | 1056 | if (strlen (header_expect)) { |
1025 | if (!strstr (header_buf.buf, header_expect)) { | 1057 | if (!strstr (header_buf.buf, header_expect)) { |
1058 | |||
1026 | strncpy(&output_header_search[0],header_expect,sizeof(output_header_search)); | 1059 | strncpy(&output_header_search[0],header_expect,sizeof(output_header_search)); |
1060 | |||
1027 | if(output_header_search[sizeof(output_header_search)-1]!='\0') { | 1061 | if(output_header_search[sizeof(output_header_search)-1]!='\0') { |
1028 | bcopy("...",&output_header_search[sizeof(output_header_search)-4],4); | 1062 | bcopy("...",&output_header_search[sizeof(output_header_search)-4],4); |
1029 | } | 1063 | } |
1030 | snprintf (msg, DEFAULT_BUFFER_SIZE, _("%sheader '%s' not found on '%s://%s:%d%s', "), msg, output_header_search, use_ssl ? "https" : "http", host_name ? host_name : server_address, server_port, server_url); | 1064 | |
1031 | result = STATE_CRITICAL; | 1065 | char tmp[DEFAULT_BUFFER_SIZE]; |
1066 | |||
1067 | snprintf (tmp, | ||
1068 | DEFAULT_BUFFER_SIZE, | ||
1069 | _("%sheader '%s' not found on '%s://%s:%d%s', "), | ||
1070 | msg, | ||
1071 | output_header_search, | ||
1072 | use_ssl ? "https" : "http", | ||
1073 | host_name ? host_name : server_address, | ||
1074 | server_port, | ||
1075 | server_url); | ||
1076 | |||
1077 | strcpy(msg, tmp); | ||
1078 | |||
1079 | result = STATE_CRITICAL; | ||
1032 | } | 1080 | } |
1033 | } | 1081 | } |
1034 | 1082 | ||
1035 | if (strlen (string_expect)) { | 1083 | if (strlen (string_expect)) { |
1036 | if (!strstr (body_buf.buf, string_expect)) { | 1084 | if (!strstr (body_buf.buf, string_expect)) { |
1085 | |||
1037 | strncpy(&output_string_search[0],string_expect,sizeof(output_string_search)); | 1086 | strncpy(&output_string_search[0],string_expect,sizeof(output_string_search)); |
1087 | |||
1038 | if(output_string_search[sizeof(output_string_search)-1]!='\0') { | 1088 | if(output_string_search[sizeof(output_string_search)-1]!='\0') { |
1039 | bcopy("...",&output_string_search[sizeof(output_string_search)-4],4); | 1089 | bcopy("...",&output_string_search[sizeof(output_string_search)-4],4); |
1040 | } | 1090 | } |
1041 | snprintf (msg, DEFAULT_BUFFER_SIZE, _("%sstring '%s' not found on '%s://%s:%d%s', "), msg, output_string_search, use_ssl ? "https" : "http", host_name ? host_name : server_address, server_port, server_url); | 1091 | |
1042 | result = STATE_CRITICAL; | 1092 | char tmp[DEFAULT_BUFFER_SIZE]; |
1093 | |||
1094 | snprintf (tmp, | ||
1095 | DEFAULT_BUFFER_SIZE, | ||
1096 | _("%sstring '%s' not found on '%s://%s:%d%s', "), | ||
1097 | msg, | ||
1098 | output_string_search, | ||
1099 | use_ssl ? "https" : "http", | ||
1100 | host_name ? host_name : server_address, | ||
1101 | server_port, | ||
1102 | server_url); | ||
1103 | |||
1104 | strcpy(msg, tmp); | ||
1105 | |||
1106 | result = STATE_CRITICAL; | ||
1043 | } | 1107 | } |
1044 | } | 1108 | } |
1045 | 1109 | ||
@@ -1050,27 +1114,48 @@ GOT_FIRST_CERT: | |||
1050 | result = max_state_alt(STATE_OK, result); | 1114 | result = max_state_alt(STATE_OK, result); |
1051 | } | 1115 | } |
1052 | else if ((errcode == REG_NOMATCH && !invert_regex) || (errcode == 0 && invert_regex)) { | 1116 | else if ((errcode == REG_NOMATCH && !invert_regex) || (errcode == 0 && invert_regex)) { |
1053 | if (!invert_regex) | 1117 | if (!invert_regex) { |
1054 | snprintf (msg, DEFAULT_BUFFER_SIZE, _("%spattern not found, "), msg); | 1118 | char tmp[DEFAULT_BUFFER_SIZE]; |
1055 | else | 1119 | |
1056 | snprintf (msg, DEFAULT_BUFFER_SIZE, _("%spattern found, "), msg); | 1120 | snprintf (tmp, DEFAULT_BUFFER_SIZE, _("%spattern not found, "), msg); |
1057 | result = STATE_CRITICAL; | 1121 | strcpy(msg, tmp); |
1058 | } | 1122 | |
1059 | else { | 1123 | } else { |
1060 | regerror (errcode, &preg, errbuf, MAX_INPUT_BUFFER); | 1124 | char tmp[DEFAULT_BUFFER_SIZE]; |
1061 | snprintf (msg, DEFAULT_BUFFER_SIZE, _("%sExecute Error: %s, "), msg, errbuf); | 1125 | |
1062 | result = STATE_UNKNOWN; | 1126 | snprintf (tmp, DEFAULT_BUFFER_SIZE, _("%spattern found, "), msg); |
1063 | } | 1127 | strcpy(msg, tmp); |
1128 | |||
1129 | } | ||
1130 | result = STATE_CRITICAL; | ||
1131 | } else { | ||
1132 | regerror (errcode, &preg, errbuf, MAX_INPUT_BUFFER); | ||
1133 | |||
1134 | char tmp[DEFAULT_BUFFER_SIZE]; | ||
1135 | |||
1136 | snprintf (tmp, DEFAULT_BUFFER_SIZE, _("%sExecute Error: %s, "), msg, errbuf); | ||
1137 | strcpy(msg, tmp); | ||
1138 | result = STATE_UNKNOWN; | ||
1139 | } | ||
1064 | } | 1140 | } |
1065 | 1141 | ||
1066 | /* make sure the page is of an appropriate size */ | 1142 | /* make sure the page is of an appropriate size */ |
1067 | if ((max_page_len > 0) && (page_len > max_page_len)) { | 1143 | if ((max_page_len > 0) && (page_len > max_page_len)) { |
1068 | snprintf (msg, DEFAULT_BUFFER_SIZE, _("%spage size %d too large, "), msg, page_len); | 1144 | char tmp[DEFAULT_BUFFER_SIZE]; |
1069 | result = max_state_alt(STATE_WARNING, result); | 1145 | |
1070 | } else if ((min_page_len > 0) && (page_len < min_page_len)) { | 1146 | snprintf (tmp, DEFAULT_BUFFER_SIZE, _("%spage size %d too large, "), msg, page_len); |
1071 | snprintf (msg, DEFAULT_BUFFER_SIZE, _("%spage size %d too small, "), msg, page_len); | 1147 | |
1072 | result = max_state_alt(STATE_WARNING, result); | 1148 | strcpy(msg, tmp); |
1073 | } | 1149 | |
1150 | result = max_state_alt(STATE_WARNING, result); | ||
1151 | |||
1152 | } else if ((min_page_len > 0) && (page_len < min_page_len)) { | ||
1153 | char tmp[DEFAULT_BUFFER_SIZE]; | ||
1154 | |||
1155 | snprintf (tmp, DEFAULT_BUFFER_SIZE, _("%spage size %d too small, "), msg, page_len); | ||
1156 | strcpy(msg, tmp); | ||
1157 | result = max_state_alt(STATE_WARNING, result); | ||
1158 | } | ||
1074 | 1159 | ||
1075 | /* -w, -c: check warning and critical level */ | 1160 | /* -w, -c: check warning and critical level */ |
1076 | result = max_state_alt(get_status(total_time, thlds), result); | 1161 | result = max_state_alt(get_status(total_time, thlds), result); |
@@ -1654,6 +1739,7 @@ process_arguments (int argc, char **argv) | |||
1654 | break; | 1739 | break; |
1655 | case 'R': /* regex */ | 1740 | case 'R': /* regex */ |
1656 | cflags |= REG_ICASE; | 1741 | cflags |= REG_ICASE; |
1742 | // fall through | ||
1657 | case 'r': /* regex */ | 1743 | case 'r': /* regex */ |
1658 | strncpy (regexp, optarg, MAX_RE_SIZE - 1); | 1744 | strncpy (regexp, optarg, MAX_RE_SIZE - 1); |
1659 | regexp[MAX_RE_SIZE - 1] = 0; | 1745 | regexp[MAX_RE_SIZE - 1] = 0; |
@@ -2307,37 +2393,67 @@ check_document_dates (const curlhelp_write_curlbuf *header_buf, char (*msg)[DEFA | |||
2307 | server_date = get_header_value (headers, nof_headers, "date"); | 2393 | server_date = get_header_value (headers, nof_headers, "date"); |
2308 | document_date = get_header_value (headers, nof_headers, "last-modified"); | 2394 | document_date = get_header_value (headers, nof_headers, "last-modified"); |
2309 | 2395 | ||
2310 | if (!server_date || !*server_date) { | 2396 | if (!server_date || !*server_date) { |
2311 | snprintf (*msg, DEFAULT_BUFFER_SIZE, _("%sServer date unknown, "), *msg); | 2397 | char tmp[DEFAULT_BUFFER_SIZE]; |
2312 | date_result = max_state_alt(STATE_UNKNOWN, date_result); | 2398 | |
2313 | } else if (!document_date || !*document_date) { | 2399 | snprintf (tmp, DEFAULT_BUFFER_SIZE, _("%sServer date unknown, "), *msg); |
2314 | snprintf (*msg, DEFAULT_BUFFER_SIZE, _("%sDocument modification date unknown, "), *msg); | 2400 | strcpy(*msg, tmp); |
2315 | date_result = max_state_alt(STATE_CRITICAL, date_result); | 2401 | |
2402 | date_result = max_state_alt(STATE_UNKNOWN, date_result); | ||
2403 | |||
2404 | } else if (!document_date || !*document_date) { | ||
2405 | char tmp[DEFAULT_BUFFER_SIZE]; | ||
2406 | |||
2407 | snprintf (tmp, DEFAULT_BUFFER_SIZE, _("%sDocument modification date unknown, "), *msg); | ||
2408 | strcpy(*msg, tmp); | ||
2409 | |||
2410 | date_result = max_state_alt(STATE_CRITICAL, date_result); | ||
2411 | |||
2316 | } else { | 2412 | } else { |
2317 | time_t srv_data = curl_getdate (server_date, NULL); | 2413 | time_t srv_data = curl_getdate (server_date, NULL); |
2318 | time_t doc_data = curl_getdate (document_date, NULL); | 2414 | time_t doc_data = curl_getdate (document_date, NULL); |
2319 | if (verbose >= 2) | 2415 | if (verbose >= 2) |
2320 | printf ("* server date: '%s' (%d), doc_date: '%s' (%d)\n", server_date, (int)srv_data, document_date, (int)doc_data); | 2416 | printf ("* server date: '%s' (%d), doc_date: '%s' (%d)\n", server_date, (int)srv_data, document_date, (int)doc_data); |
2321 | if (srv_data <= 0) { | 2417 | if (srv_data <= 0) { |
2322 | snprintf (*msg, DEFAULT_BUFFER_SIZE, _("%sServer date \"%100s\" unparsable, "), *msg, server_date); | 2418 | char tmp[DEFAULT_BUFFER_SIZE]; |
2323 | date_result = max_state_alt(STATE_CRITICAL, date_result); | 2419 | |
2324 | } else if (doc_data <= 0) { | 2420 | snprintf (tmp, DEFAULT_BUFFER_SIZE, _("%sServer date \"%100s\" unparsable, "), *msg, server_date); |
2325 | snprintf (*msg, DEFAULT_BUFFER_SIZE, _("%sDocument date \"%100s\" unparsable, "), *msg, document_date); | 2421 | strcpy(*msg, tmp); |
2326 | date_result = max_state_alt(STATE_CRITICAL, date_result); | 2422 | |
2327 | } else if (doc_data > srv_data + 30) { | 2423 | date_result = max_state_alt(STATE_CRITICAL, date_result); |
2328 | snprintf (*msg, DEFAULT_BUFFER_SIZE, _("%sDocument is %d seconds in the future, "), *msg, (int)doc_data - (int)srv_data); | 2424 | } else if (doc_data <= 0) { |
2329 | date_result = max_state_alt(STATE_CRITICAL, date_result); | 2425 | char tmp[DEFAULT_BUFFER_SIZE]; |
2330 | } else if (doc_data < srv_data - maximum_age) { | 2426 | |
2331 | int n = (srv_data - doc_data); | 2427 | snprintf (tmp, DEFAULT_BUFFER_SIZE, _("%sDocument date \"%100s\" unparsable, "), *msg, document_date); |
2332 | if (n > (60 * 60 * 24 * 2)) { | 2428 | strcpy(*msg, tmp); |
2333 | snprintf (*msg, DEFAULT_BUFFER_SIZE, _("%sLast modified %.1f days ago, "), *msg, ((float) n) / (60 * 60 * 24)); | 2429 | |
2334 | date_result = max_state_alt(STATE_CRITICAL, date_result); | 2430 | date_result = max_state_alt(STATE_CRITICAL, date_result); |
2335 | } else { | 2431 | } else if (doc_data > srv_data + 30) { |
2336 | snprintf (*msg, DEFAULT_BUFFER_SIZE, _("%sLast modified %d:%02d:%02d ago, "), *msg, n / (60 * 60), (n / 60) % 60, n % 60); | 2432 | char tmp[DEFAULT_BUFFER_SIZE]; |
2337 | date_result = max_state_alt(STATE_CRITICAL, date_result); | 2433 | |
2338 | } | 2434 | snprintf (tmp, DEFAULT_BUFFER_SIZE, _("%sDocument is %d seconds in the future, "), *msg, (int)doc_data - (int)srv_data); |
2339 | } | 2435 | strcpy(*msg, tmp); |
2340 | } | 2436 | |
2437 | date_result = max_state_alt(STATE_CRITICAL, date_result); | ||
2438 | } else if (doc_data < srv_data - maximum_age) { | ||
2439 | int n = (srv_data - doc_data); | ||
2440 | if (n > (60 * 60 * 24 * 2)) { | ||
2441 | char tmp[DEFAULT_BUFFER_SIZE]; | ||
2442 | |||
2443 | snprintf (tmp, DEFAULT_BUFFER_SIZE, _("%sLast modified %.1f days ago, "), *msg, ((float) n) / (60 * 60 * 24)); | ||
2444 | strcpy(*msg, tmp); | ||
2445 | |||
2446 | date_result = max_state_alt(STATE_CRITICAL, date_result); | ||
2447 | } else { | ||
2448 | char tmp[DEFAULT_BUFFER_SIZE]; | ||
2449 | |||
2450 | snprintf (tmp, DEFAULT_BUFFER_SIZE, _("%sLast modified %d:%02d:%02d ago, "), *msg, n / (60 * 60), (n / 60) % 60, n % 60); | ||
2451 | strcpy(*msg, tmp); | ||
2452 | |||
2453 | date_result = max_state_alt(STATE_CRITICAL, date_result); | ||
2454 | } | ||
2455 | } | ||
2456 | } | ||
2341 | 2457 | ||
2342 | if (server_date) free (server_date); | 2458 | if (server_date) free (server_date); |
2343 | if (document_date) free (document_date); | 2459 | if (document_date) free (document_date); |
@@ -2379,7 +2495,7 @@ get_content_length (const curlhelp_write_curlbuf* header_buf, const curlhelp_wri | |||
2379 | 2495 | ||
2380 | /* TODO: is there a better way in libcurl to check for the SSL library? */ | 2496 | /* TODO: is there a better way in libcurl to check for the SSL library? */ |
2381 | curlhelp_ssl_library | 2497 | curlhelp_ssl_library |
2382 | curlhelp_get_ssl_library (CURL* curl) | 2498 | curlhelp_get_ssl_library () |
2383 | { | 2499 | { |
2384 | curl_version_info_data* version_data; | 2500 | curl_version_info_data* version_data; |
2385 | char *ssl_version; | 2501 | char *ssl_version; |
diff --git a/plugins/check_dbi.c b/plugins/check_dbi.c index ced13d0..c24ca24 100644 --- a/plugins/check_dbi.c +++ b/plugins/check_dbi.c | |||
@@ -141,21 +141,28 @@ main (int argc, char **argv) | |||
141 | if (verbose > 2) | 141 | if (verbose > 2) |
142 | printf ("Initializing DBI\n"); | 142 | printf ("Initializing DBI\n"); |
143 | 143 | ||
144 | if (dbi_initialize (NULL) < 0) { | 144 | dbi_inst *instance_p; |
145 | |||
146 | if (dbi_initialize_r(NULL, instance_p) < 0) { | ||
145 | printf ("UNKNOWN - failed to initialize DBI; possibly you don't have any drivers installed.\n"); | 147 | printf ("UNKNOWN - failed to initialize DBI; possibly you don't have any drivers installed.\n"); |
146 | return STATE_UNKNOWN; | 148 | return STATE_UNKNOWN; |
147 | } | 149 | } |
148 | 150 | ||
151 | if (instance_p == NULL) { | ||
152 | printf ("UNKNOWN - failed to initialize DBI.\n"); | ||
153 | return STATE_UNKNOWN; | ||
154 | } | ||
155 | |||
149 | if (verbose) | 156 | if (verbose) |
150 | printf ("Opening DBI driver '%s'\n", np_dbi_driver); | 157 | printf ("Opening DBI driver '%s'\n", np_dbi_driver); |
151 | 158 | ||
152 | driver = dbi_driver_open (np_dbi_driver); | 159 | driver = dbi_driver_open_r(np_dbi_driver, instance_p); |
153 | if (! driver) { | 160 | if (! driver) { |
154 | printf ("UNKNOWN - failed to open DBI driver '%s'; possibly it's not installed.\n", | 161 | printf ("UNKNOWN - failed to open DBI driver '%s'; possibly it's not installed.\n", |
155 | np_dbi_driver); | 162 | np_dbi_driver); |
156 | 163 | ||
157 | printf ("Known drivers:\n"); | 164 | printf ("Known drivers:\n"); |
158 | for (driver = dbi_driver_list (NULL); driver; driver = dbi_driver_list (driver)) { | 165 | for (driver = dbi_driver_list_r(NULL, instance_p); driver; driver = dbi_driver_list_r(driver, instance_p)) { |
159 | printf (" - %s\n", dbi_driver_get_name (driver)); | 166 | printf (" - %s\n", dbi_driver_get_name (driver)); |
160 | } | 167 | } |
161 | return STATE_UNKNOWN; | 168 | return STATE_UNKNOWN; |
@@ -426,6 +433,7 @@ process_arguments (int argc, char **argv) | |||
426 | else | 433 | else |
427 | timeout_interval = atoi (optarg); | 434 | timeout_interval = atoi (optarg); |
428 | 435 | ||
436 | break; | ||
429 | case 'H': /* host */ | 437 | case 'H': /* host */ |
430 | if (!is_host (optarg)) | 438 | if (!is_host (optarg)) |
431 | usage2 (_("Invalid hostname/address"), optarg); | 439 | usage2 (_("Invalid hostname/address"), optarg); |
diff --git a/plugins/check_fping.c b/plugins/check_fping.c index 6f5656e..23a9e99 100644 --- a/plugins/check_fping.c +++ b/plugins/check_fping.c | |||
@@ -354,6 +354,7 @@ process_arguments (int argc, char **argv) | |||
354 | break; | 354 | break; |
355 | case 'I': /* sourceip */ | 355 | case 'I': /* sourceip */ |
356 | sourceif = strscpy (sourceif, optarg); | 356 | sourceif = strscpy (sourceif, optarg); |
357 | break; | ||
357 | case '4': /* IPv4 only */ | 358 | case '4': /* IPv4 only */ |
358 | address_family = AF_INET; | 359 | address_family = AF_INET; |
359 | break; | 360 | break; |
diff --git a/plugins/check_hpjd.c b/plugins/check_hpjd.c index c4b4417..c34bb08 100644 --- a/plugins/check_hpjd.c +++ b/plugins/check_hpjd.c | |||
@@ -353,6 +353,7 @@ process_arguments (int argc, char **argv) | |||
353 | usage2 (_("Port must be a positive short integer"), optarg); | 353 | usage2 (_("Port must be a positive short integer"), optarg); |
354 | else | 354 | else |
355 | port = atoi(optarg); | 355 | port = atoi(optarg); |
356 | break; | ||
356 | case 'D': /* disable paper out check*/ | 357 | case 'D': /* disable paper out check*/ |
357 | check_paper_out = 0; | 358 | check_paper_out = 0; |
358 | break; | 359 | break; |
diff --git a/plugins/check_http.c b/plugins/check_http.c index 6956a72..1288c41 100644 --- a/plugins/check_http.c +++ b/plugins/check_http.c | |||
@@ -498,6 +498,7 @@ bool process_arguments (int argc, char **argv) | |||
498 | break; | 498 | break; |
499 | case 'R': /* regex */ | 499 | case 'R': /* regex */ |
500 | cflags |= REG_ICASE; | 500 | cflags |= REG_ICASE; |
501 | // fall through | ||
501 | case 'r': /* regex */ | 502 | case 'r': /* regex */ |
502 | strncpy (regexp, optarg, MAX_RE_SIZE - 1); | 503 | strncpy (regexp, optarg, MAX_RE_SIZE - 1); |
503 | regexp[MAX_RE_SIZE - 1] = 0; | 504 | regexp[MAX_RE_SIZE - 1] = 0; |
diff --git a/plugins/check_ntp_peer.c b/plugins/check_ntp_peer.c index eafafdc..49cb100 100644 --- a/plugins/check_ntp_peer.c +++ b/plugins/check_ntp_peer.c | |||
@@ -199,7 +199,7 @@ setup_control_request(ntp_control_message *p, uint8_t opcode, uint16_t seq){ | |||
199 | * status is pretty much useless as syncsource_found is a global variable | 199 | * status is pretty much useless as syncsource_found is a global variable |
200 | * used later in main to check is the server was synchronized. It works | 200 | * used later in main to check is the server was synchronized. It works |
201 | * so I left it alone */ | 201 | * so I left it alone */ |
202 | int ntp_request(const char *host, double *offset, int *offset_result, double *jitter, int *stratum, int *num_truechimers){ | 202 | int ntp_request(double *offset, int *offset_result, double *jitter, int *stratum, int *num_truechimers){ |
203 | int conn=-1, i, npeers=0, num_candidates=0; | 203 | int conn=-1, i, npeers=0, num_candidates=0; |
204 | double tmp_offset = 0; | 204 | double tmp_offset = 0; |
205 | int min_peer_sel=PEER_INCLUDED; | 205 | int min_peer_sel=PEER_INCLUDED; |
@@ -585,8 +585,8 @@ int main(int argc, char *argv[]){ | |||
585 | /* set socket timeout */ | 585 | /* set socket timeout */ |
586 | alarm (socket_timeout); | 586 | alarm (socket_timeout); |
587 | 587 | ||
588 | /* This returns either OK or WARNING (See comment proceeding ntp_request) */ | 588 | /* This returns either OK or WARNING (See comment preceding ntp_request) */ |
589 | result = ntp_request(server_address, &offset, &offset_result, &jitter, &stratum, &num_truechimers); | 589 | result = ntp_request(&offset, &offset_result, &jitter, &stratum, &num_truechimers); |
590 | 590 | ||
591 | if(offset_result == STATE_UNKNOWN) { | 591 | if(offset_result == STATE_UNKNOWN) { |
592 | /* if there's no sync peer (this overrides ntp_request output): */ | 592 | /* if there's no sync peer (this overrides ntp_request output): */ |
diff --git a/plugins/check_smtp.c b/plugins/check_smtp.c index c0ab838..996bd87 100644 --- a/plugins/check_smtp.c +++ b/plugins/check_smtp.c | |||
@@ -632,6 +632,7 @@ process_arguments (int argc, char **argv) | |||
632 | #else | 632 | #else |
633 | usage (_("SSL support not available - install OpenSSL and recompile")); | 633 | usage (_("SSL support not available - install OpenSSL and recompile")); |
634 | #endif | 634 | #endif |
635 | // fall through | ||
635 | case 'S': | 636 | case 'S': |
636 | /* starttls */ | 637 | /* starttls */ |
637 | use_ssl = TRUE; | 638 | use_ssl = TRUE; |
diff --git a/plugins/check_snmp.c b/plugins/check_snmp.c index c425df3..04dc6c6 100644 --- a/plugins/check_snmp.c +++ b/plugins/check_snmp.c | |||
@@ -855,6 +855,7 @@ process_arguments (int argc, char **argv) | |||
855 | break; | 855 | break; |
856 | case 'R': /* regex */ | 856 | case 'R': /* regex */ |
857 | cflags = REG_ICASE; | 857 | cflags = REG_ICASE; |
858 | // fall through | ||
858 | case 'r': /* regex */ | 859 | case 'r': /* regex */ |
859 | cflags |= REG_EXTENDED | REG_NOSUB | REG_NEWLINE; | 860 | cflags |= REG_EXTENDED | REG_NOSUB | REG_NEWLINE; |
860 | strncpy (regex_expect, optarg, sizeof (regex_expect) - 1); | 861 | strncpy (regex_expect, optarg, sizeof (regex_expect) - 1); |
diff --git a/plugins/check_ups.c b/plugins/check_ups.c index 12bce21..68737c4 100644 --- a/plugins/check_ups.c +++ b/plugins/check_ups.c | |||
@@ -89,7 +89,7 @@ char *ups_status; | |||
89 | int temp_output_c = 0; | 89 | int temp_output_c = 0; |
90 | 90 | ||
91 | int determine_status (void); | 91 | int determine_status (void); |
92 | int get_ups_variable (const char *, char *, size_t); | 92 | int get_ups_variable (const char *, char *); |
93 | 93 | ||
94 | int process_arguments (int, char **); | 94 | int process_arguments (int, char **); |
95 | int validate_arguments (void); | 95 | int validate_arguments (void); |
@@ -189,7 +189,7 @@ main (int argc, char **argv) | |||
189 | } | 189 | } |
190 | 190 | ||
191 | /* get the ups utility voltage if possible */ | 191 | /* get the ups utility voltage if possible */ |
192 | res=get_ups_variable ("input.voltage", temp_buffer, sizeof (temp_buffer)); | 192 | res=get_ups_variable ("input.voltage", temp_buffer); |
193 | if (res == NOSUCHVAR) supported_options &= ~UPS_UTILITY; | 193 | if (res == NOSUCHVAR) supported_options &= ~UPS_UTILITY; |
194 | else if (res != OK) | 194 | else if (res != OK) |
195 | return STATE_CRITICAL; | 195 | return STATE_CRITICAL; |
@@ -224,7 +224,7 @@ main (int argc, char **argv) | |||
224 | } | 224 | } |
225 | 225 | ||
226 | /* get the ups battery percent if possible */ | 226 | /* get the ups battery percent if possible */ |
227 | res=get_ups_variable ("battery.charge", temp_buffer, sizeof (temp_buffer)); | 227 | res=get_ups_variable ("battery.charge", temp_buffer); |
228 | if (res == NOSUCHVAR) supported_options &= ~UPS_BATTPCT; | 228 | if (res == NOSUCHVAR) supported_options &= ~UPS_BATTPCT; |
229 | else if ( res != OK) | 229 | else if ( res != OK) |
230 | return STATE_CRITICAL; | 230 | return STATE_CRITICAL; |
@@ -253,7 +253,7 @@ main (int argc, char **argv) | |||
253 | } | 253 | } |
254 | 254 | ||
255 | /* get the ups load percent if possible */ | 255 | /* get the ups load percent if possible */ |
256 | res=get_ups_variable ("ups.load", temp_buffer, sizeof (temp_buffer)); | 256 | res=get_ups_variable ("ups.load", temp_buffer); |
257 | if ( res == NOSUCHVAR ) supported_options &= ~UPS_LOADPCT; | 257 | if ( res == NOSUCHVAR ) supported_options &= ~UPS_LOADPCT; |
258 | else if ( res != OK) | 258 | else if ( res != OK) |
259 | return STATE_CRITICAL; | 259 | return STATE_CRITICAL; |
@@ -282,7 +282,7 @@ main (int argc, char **argv) | |||
282 | } | 282 | } |
283 | 283 | ||
284 | /* get the ups temperature if possible */ | 284 | /* get the ups temperature if possible */ |
285 | res=get_ups_variable ("ups.temperature", temp_buffer, sizeof (temp_buffer)); | 285 | res=get_ups_variable ("ups.temperature", temp_buffer); |
286 | if ( res == NOSUCHVAR ) supported_options &= ~UPS_TEMP; | 286 | if ( res == NOSUCHVAR ) supported_options &= ~UPS_TEMP; |
287 | else if ( res != OK) | 287 | else if ( res != OK) |
288 | return STATE_CRITICAL; | 288 | return STATE_CRITICAL; |
@@ -342,7 +342,7 @@ determine_status (void) | |||
342 | char *ptr; | 342 | char *ptr; |
343 | int res; | 343 | int res; |
344 | 344 | ||
345 | res=get_ups_variable ("ups.status", recv_buffer, sizeof (recv_buffer)); | 345 | res=get_ups_variable ("ups.status", recv_buffer); |
346 | if (res == NOSUCHVAR) return OK; | 346 | if (res == NOSUCHVAR) return OK; |
347 | if (res != STATE_OK) { | 347 | if (res != STATE_OK) { |
348 | printf ("%s\n", _("Invalid response received from host")); | 348 | printf ("%s\n", _("Invalid response received from host")); |
@@ -388,7 +388,7 @@ determine_status (void) | |||
388 | 388 | ||
389 | /* gets a variable value for a specific UPS */ | 389 | /* gets a variable value for a specific UPS */ |
390 | int | 390 | int |
391 | get_ups_variable (const char *varname, char *buf, size_t buflen) | 391 | get_ups_variable (const char *varname, char *buf) |
392 | { | 392 | { |
393 | /* char command[MAX_INPUT_BUFFER]; */ | 393 | /* char command[MAX_INPUT_BUFFER]; */ |
394 | char temp_buffer[MAX_INPUT_BUFFER]; | 394 | char temp_buffer[MAX_INPUT_BUFFER]; |
@@ -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-06-12 20:31+0200\n" | 12 | "POT-Creation-Date: 2023-07-11 16:07+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" |
@@ -236,7 +236,7 @@ msgid "" | |||
236 | msgstr "" | 236 | msgstr "" |
237 | 237 | ||
238 | #: plugins/check_by_ssh.c:475 plugins/check_cluster.c:271 | 238 | #: plugins/check_by_ssh.c:475 plugins/check_cluster.c:271 |
239 | #: plugins/check_dig.c:364 plugins/check_disk.c:1000 plugins/check_http.c:1845 | 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 | 240 | #: plugins/check_nagios.c:312 plugins/check_ntp.c:879 |
241 | #: plugins/check_ntp_peer.c:733 plugins/check_ntp_time.c:642 | 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 | 242 | #: plugins/check_procs.c:806 plugins/negate.c:249 plugins/urlize.c:179 |
@@ -244,20 +244,20 @@ msgid "Examples:" | |||
244 | msgstr "" | 244 | msgstr "" |
245 | 245 | ||
246 | #: plugins/check_by_ssh.c:490 plugins/check_cluster.c:284 | 246 | #: plugins/check_by_ssh.c:490 plugins/check_cluster.c:284 |
247 | #: plugins/check_dig.c:376 plugins/check_disk.c:1017 plugins/check_dns.c:617 | 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:524 plugins/check_game.c:331 | 248 | #: plugins/check_dummy.c:122 plugins/check_fping.c:525 plugins/check_game.c:331 |
249 | #: plugins/check_hpjd.c:439 plugins/check_http.c:1883 plugins/check_ldap.c:511 | 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 | 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 | 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 | 252 | #: plugins/check_ntp_peer.c:753 plugins/check_ntp_time.c:651 |
253 | #: plugins/check_nwstat.c:1685 plugins/check_overcr.c:467 | 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 | 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:890 | 255 | #: plugins/check_radius.c:400 plugins/check_real.c:452 plugins/check_smtp.c:891 |
256 | #: plugins/check_snmp.c:1346 plugins/check_ssh.c:325 plugins/check_swap.c:607 | 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 | 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 | 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 | 259 | #: plugins/urlize.c:196 plugins-root/check_dhcp.c:1390 |
260 | #: plugins-root/check_icmp.c:1628 | 260 | #: plugins-root/check_icmp.c:1633 |
261 | msgid "Usage:" | 261 | msgid "Usage:" |
262 | msgstr "" | 262 | msgstr "" |
263 | 263 | ||
@@ -303,14 +303,14 @@ msgid "commas" | |||
303 | msgstr "" | 303 | msgstr "" |
304 | 304 | ||
305 | #: plugins/check_cluster.c:267 plugins/check_game.c:318 | 305 | #: plugins/check_cluster.c:267 plugins/check_game.c:318 |
306 | #: plugins/check_http.c:1827 plugins/check_ldap.c:497 plugins/check_mrtg.c:363 | 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 | 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 | 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 | 309 | #: plugins/check_ntp_time.c:633 plugins/check_nwstat.c:1670 |
310 | #: plugins/check_overcr.c:456 plugins/check_snmp.c:1317 | 310 | #: plugins/check_overcr.c:456 plugins/check_snmp.c:1318 |
311 | #: plugins/check_swap.c:596 plugins/check_ups.c:645 | 311 | #: plugins/check_swap.c:596 plugins/check_ups.c:645 |
312 | #: plugins/check_ide_smart.c:580 plugins/negate.c:255 | 312 | #: plugins/check_ide_smart.c:580 plugins/negate.c:255 |
313 | #: plugins-root/check_icmp.c:1603 | 313 | #: plugins-root/check_icmp.c:1608 |
314 | msgid "Notes:" | 314 | msgid "Notes:" |
315 | msgstr "" | 315 | msgstr "" |
316 | 316 | ||
@@ -409,7 +409,7 @@ msgstr "" | |||
409 | msgid "DISK %s: %s not found\n" | 409 | msgid "DISK %s: %s not found\n" |
410 | msgstr "%s [%s nicht gefunden]" | 410 | msgstr "%s [%s nicht gefunden]" |
411 | 411 | ||
412 | #: plugins/check_disk.c:241 plugins/check_disk.c:1035 plugins/check_dns.c:295 | 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 | 413 | #: plugins/check_dummy.c:74 plugins/check_mysql.c:313 |
414 | #: plugins/check_nagios.c:104 plugins/check_nagios.c:168 | 414 | #: plugins/check_nagios.c:104 plugins/check_nagios.c:168 |
415 | #: plugins/check_nagios.c:172 plugins/check_pgsql.c:575 | 415 | #: plugins/check_nagios.c:172 plugins/check_pgsql.c:575 |
@@ -419,72 +419,72 @@ msgstr "%s [%s nicht gefunden]" | |||
419 | msgid "CRITICAL" | 419 | msgid "CRITICAL" |
420 | msgstr "CRITICAL" | 420 | msgstr "CRITICAL" |
421 | 421 | ||
422 | #: plugins/check_disk.c:645 | 422 | #: plugins/check_disk.c:660 |
423 | #, c-format | 423 | #, c-format |
424 | msgid "unit type %s not known\n" | 424 | msgid "unit type %s not known\n" |
425 | msgstr "unbekannter unit type: %s\n" | 425 | msgstr "unbekannter unit type: %s\n" |
426 | 426 | ||
427 | #: plugins/check_disk.c:648 | 427 | #: plugins/check_disk.c:663 |
428 | #, c-format | 428 | #, c-format |
429 | msgid "failed allocating storage for '%s'\n" | 429 | msgid "failed allocating storage for '%s'\n" |
430 | msgstr "konnte keinen Speicher für '%s' reservieren\n" | 430 | msgstr "konnte keinen Speicher für '%s' reservieren\n" |
431 | 431 | ||
432 | #: plugins/check_disk.c:676 plugins/check_disk.c:724 plugins/check_disk.c:732 | 432 | #: plugins/check_disk.c:691 plugins/check_disk.c:739 plugins/check_disk.c:747 |
433 | #: plugins/check_disk.c:740 plugins/check_disk.c:744 plugins/check_disk.c:789 | 433 | #: plugins/check_disk.c:755 plugins/check_disk.c:759 plugins/check_disk.c:804 |
434 | #: plugins/check_disk.c:795 plugins/check_disk.c:818 plugins/check_dummy.c:77 | 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 | 435 | #: plugins/check_dummy.c:80 plugins/check_pgsql.c:617 plugins/check_procs.c:547 |
436 | #, c-format | 436 | #, c-format |
437 | msgid "UNKNOWN" | 437 | msgid "UNKNOWN" |
438 | msgstr "UNKNOWN" | 438 | msgstr "UNKNOWN" |
439 | 439 | ||
440 | #: plugins/check_disk.c:676 | 440 | #: plugins/check_disk.c:691 |
441 | msgid "Must set a threshold value before using -p\n" | 441 | msgid "Must set a threshold value before using -p\n" |
442 | msgstr "" | 442 | msgstr "" |
443 | 443 | ||
444 | #: plugins/check_disk.c:724 | 444 | #: plugins/check_disk.c:739 |
445 | msgid "Must set -E before selecting paths\n" | 445 | msgid "Must set -E before selecting paths\n" |
446 | msgstr "" | 446 | msgstr "" |
447 | 447 | ||
448 | #: plugins/check_disk.c:732 | 448 | #: plugins/check_disk.c:747 |
449 | msgid "Must set group value before selecting paths\n" | 449 | msgid "Must set group value before selecting paths\n" |
450 | msgstr "" | 450 | msgstr "" |
451 | 451 | ||
452 | #: plugins/check_disk.c:740 | 452 | #: plugins/check_disk.c:755 |
453 | msgid "" | 453 | msgid "" |
454 | "Paths need to be selected before using -i/-I. Use -A to select all paths " | 454 | "Paths need to be selected before using -i/-I. Use -A to select all paths " |
455 | "explicitly" | 455 | "explicitly" |
456 | msgstr "" | 456 | msgstr "" |
457 | 457 | ||
458 | #: plugins/check_disk.c:744 plugins/check_disk.c:795 plugins/check_procs.c:547 | 458 | #: plugins/check_disk.c:759 plugins/check_disk.c:810 plugins/check_procs.c:547 |
459 | msgid "Could not compile regular expression" | 459 | msgid "Could not compile regular expression" |
460 | msgstr "" | 460 | msgstr "" |
461 | 461 | ||
462 | #: plugins/check_disk.c:789 | 462 | #: plugins/check_disk.c:804 |
463 | msgid "Must set a threshold value before using -r/-R\n" | 463 | msgid "Must set a threshold value before using -r/-R\n" |
464 | msgstr "" | 464 | msgstr "" |
465 | 465 | ||
466 | #: plugins/check_disk.c:819 | 466 | #: plugins/check_disk.c:834 |
467 | msgid "Regular expression did not match any path or disk" | 467 | msgid "Regular expression did not match any path or disk" |
468 | msgstr "" | 468 | msgstr "" |
469 | 469 | ||
470 | #: plugins/check_disk.c:865 | 470 | #: plugins/check_disk.c:880 |
471 | #, fuzzy | 471 | #, fuzzy |
472 | msgid "Unknown argument" | 472 | msgid "Unknown argument" |
473 | msgstr "Unbekanntes Argument" | 473 | msgstr "Unbekanntes Argument" |
474 | 474 | ||
475 | #: plugins/check_disk.c:899 | 475 | #: plugins/check_disk.c:914 |
476 | #, c-format | 476 | #, c-format |
477 | msgid " for %s\n" | 477 | msgid " for %s\n" |
478 | msgstr "" | 478 | msgstr "" |
479 | 479 | ||
480 | #: plugins/check_disk.c:928 | 480 | #: plugins/check_disk.c:943 |
481 | #, fuzzy | 481 | #, fuzzy |
482 | msgid "" | 482 | msgid "" |
483 | "This plugin checks the amount of used disk space on a mounted file system" | 483 | "This plugin checks the amount of used disk space on a mounted file system" |
484 | msgstr "" | 484 | msgstr "" |
485 | "Dieses Plugin prüft den freien Speicher auf einem gemounteten Filesystem" | 485 | "Dieses Plugin prüft den freien Speicher auf einem gemounteten Filesystem" |
486 | 486 | ||
487 | #: plugins/check_disk.c:929 | 487 | #: plugins/check_disk.c:944 |
488 | #, fuzzy | 488 | #, fuzzy |
489 | msgid "" | 489 | msgid "" |
490 | "and generates an alert if free space is less than one of the threshold values" | 490 | "and generates an alert if free space is less than one of the threshold values" |
@@ -492,165 +492,165 @@ msgstr "" | |||
492 | "und erzeugt einen Alarm wenn einer der angegebenen Schwellwerte " | 492 | "und erzeugt einen Alarm wenn einer der angegebenen Schwellwerte " |
493 | "unterschritten wird." | 493 | "unterschritten wird." |
494 | 494 | ||
495 | #: plugins/check_disk.c:939 | 495 | #: plugins/check_disk.c:954 |
496 | msgid "Exit with WARNING status if less than INTEGER units of disk are free" | 496 | msgid "Exit with WARNING status if less than INTEGER units of disk are free" |
497 | msgstr "" | 497 | msgstr "" |
498 | 498 | ||
499 | #: plugins/check_disk.c:941 | 499 | #: plugins/check_disk.c:956 |
500 | msgid "Exit with WARNING status if less than PERCENT of disk space is free" | 500 | msgid "Exit with WARNING status if less than PERCENT of disk space is free" |
501 | msgstr "" | 501 | msgstr "" |
502 | 502 | ||
503 | #: plugins/check_disk.c:943 | 503 | #: plugins/check_disk.c:958 |
504 | msgid "Exit with CRITICAL status if less than INTEGER units of disk are free" | 504 | msgid "Exit with CRITICAL status if less than INTEGER units of disk are free" |
505 | msgstr "" | 505 | msgstr "" |
506 | 506 | ||
507 | #: plugins/check_disk.c:945 | 507 | #: plugins/check_disk.c:960 |
508 | msgid "Exit with CRITICAL status if less than PERCENT of disk space is free" | 508 | msgid "Exit with CRITICAL status if less than PERCENT of disk space is free" |
509 | msgstr "" | 509 | msgstr "" |
510 | 510 | ||
511 | #: plugins/check_disk.c:947 | 511 | #: plugins/check_disk.c:962 |
512 | msgid "Exit with WARNING status if less than PERCENT of inode space is free" | 512 | msgid "Exit with WARNING status if less than PERCENT of inode space is free" |
513 | msgstr "" | 513 | msgstr "" |
514 | 514 | ||
515 | #: plugins/check_disk.c:949 | 515 | #: plugins/check_disk.c:964 |
516 | msgid "Exit with CRITICAL status if less than PERCENT of inode space is free" | 516 | msgid "Exit with CRITICAL status if less than PERCENT of inode space is free" |
517 | msgstr "" | 517 | msgstr "" |
518 | 518 | ||
519 | #: plugins/check_disk.c:951 | 519 | #: plugins/check_disk.c:966 |
520 | msgid "" | 520 | msgid "" |
521 | "Mount point or block device as emitted by the mount(8) command (may be " | 521 | "Mount point or block device as emitted by the mount(8) command (may be " |
522 | "repeated)" | 522 | "repeated)" |
523 | msgstr "" | 523 | msgstr "" |
524 | 524 | ||
525 | #: plugins/check_disk.c:953 | 525 | #: plugins/check_disk.c:968 |
526 | msgid "Ignore device (only works if -p unspecified)" | 526 | msgid "Ignore device (only works if -p unspecified)" |
527 | msgstr "" | 527 | msgstr "" |
528 | 528 | ||
529 | #: plugins/check_disk.c:955 | 529 | #: plugins/check_disk.c:970 |
530 | msgid "Clear thresholds" | 530 | msgid "Clear thresholds" |
531 | msgstr "" | 531 | msgstr "" |
532 | 532 | ||
533 | #: plugins/check_disk.c:957 | 533 | #: plugins/check_disk.c:972 |
534 | msgid "For paths or partitions specified with -p, only check for exact paths" | 534 | msgid "For paths or partitions specified with -p, only check for exact paths" |
535 | msgstr "" | 535 | msgstr "" |
536 | 536 | ||
537 | #: plugins/check_disk.c:959 | 537 | #: plugins/check_disk.c:974 |
538 | msgid "Display only devices/mountpoints with errors" | 538 | msgid "Display only devices/mountpoints with errors" |
539 | msgstr "" | 539 | msgstr "" |
540 | 540 | ||
541 | #: plugins/check_disk.c:961 | 541 | #: plugins/check_disk.c:976 |
542 | msgid "Don't account root-reserved blocks into freespace in perfdata" | 542 | msgid "Don't account root-reserved blocks into freespace in perfdata" |
543 | msgstr "" | 543 | msgstr "" |
544 | 544 | ||
545 | #: plugins/check_disk.c:963 | 545 | #: plugins/check_disk.c:978 |
546 | msgid "Display inode usage in perfdata" | 546 | msgid "Display inode usage in perfdata" |
547 | msgstr "" | 547 | msgstr "" |
548 | 548 | ||
549 | #: plugins/check_disk.c:965 | 549 | #: plugins/check_disk.c:980 |
550 | msgid "" | 550 | msgid "" |
551 | "Group paths. Thresholds apply to (free-)space of all partitions together" | 551 | "Group paths. Thresholds apply to (free-)space of all partitions together" |
552 | msgstr "" | 552 | msgstr "" |
553 | 553 | ||
554 | #: plugins/check_disk.c:967 | 554 | #: plugins/check_disk.c:982 |
555 | msgid "Same as '--units kB'" | 555 | msgid "Same as '--units kB'" |
556 | msgstr "" | 556 | msgstr "" |
557 | 557 | ||
558 | #: plugins/check_disk.c:969 | 558 | #: plugins/check_disk.c:984 |
559 | msgid "Only check local filesystems" | 559 | msgid "Only check local filesystems" |
560 | msgstr "" | 560 | msgstr "" |
561 | 561 | ||
562 | #: plugins/check_disk.c:971 | 562 | #: plugins/check_disk.c:986 |
563 | msgid "" | 563 | msgid "" |
564 | "Only check local filesystems against thresholds. Yet call stat on remote " | 564 | "Only check local filesystems against thresholds. Yet call stat on remote " |
565 | "filesystems" | 565 | "filesystems" |
566 | msgstr "" | 566 | msgstr "" |
567 | 567 | ||
568 | #: plugins/check_disk.c:972 | 568 | #: plugins/check_disk.c:987 |
569 | msgid "to test if they are accessible (e.g. to detect Stale NFS Handles)" | 569 | msgid "to test if they are accessible (e.g. to detect Stale NFS Handles)" |
570 | msgstr "" | 570 | msgstr "" |
571 | 571 | ||
572 | #: plugins/check_disk.c:974 | 572 | #: plugins/check_disk.c:989 |
573 | msgid "Display the (block) device instead of the mount point" | 573 | msgid "Display the (block) device instead of the mount point" |
574 | msgstr "" | 574 | msgstr "" |
575 | 575 | ||
576 | #: plugins/check_disk.c:976 | 576 | #: plugins/check_disk.c:991 |
577 | msgid "Same as '--units MB'" | 577 | msgid "Same as '--units MB'" |
578 | msgstr "" | 578 | msgstr "" |
579 | 579 | ||
580 | #: plugins/check_disk.c:978 | 580 | #: plugins/check_disk.c:993 |
581 | msgid "Explicitly select all paths. This is equivalent to -R '.*'" | 581 | msgid "Explicitly select all paths. This is equivalent to -R '.*'" |
582 | msgstr "" | 582 | msgstr "" |
583 | 583 | ||
584 | #: plugins/check_disk.c:980 | 584 | #: plugins/check_disk.c:995 |
585 | msgid "" | 585 | msgid "" |
586 | "Case insensitive regular expression for path/partition (may be repeated)" | 586 | "Case insensitive regular expression for path/partition (may be repeated)" |
587 | msgstr "" | 587 | msgstr "" |
588 | 588 | ||
589 | #: plugins/check_disk.c:982 | 589 | #: plugins/check_disk.c:997 |
590 | msgid "Regular expression for path or partition (may be repeated)" | 590 | msgid "Regular expression for path or partition (may be repeated)" |
591 | msgstr "" | 591 | msgstr "" |
592 | 592 | ||
593 | #: plugins/check_disk.c:984 | 593 | #: plugins/check_disk.c:999 |
594 | msgid "" | 594 | msgid "" |
595 | "Regular expression to ignore selected path/partition (case insensitive) (may " | 595 | "Regular expression to ignore selected path/partition (case insensitive) (may " |
596 | "be repeated)" | 596 | "be repeated)" |
597 | msgstr "" | 597 | msgstr "" |
598 | 598 | ||
599 | #: plugins/check_disk.c:986 | 599 | #: plugins/check_disk.c:1001 |
600 | msgid "" | 600 | msgid "" |
601 | "Regular expression to ignore selected path or partition (may be repeated)" | 601 | "Regular expression to ignore selected path or partition (may be repeated)" |
602 | msgstr "" | 602 | msgstr "" |
603 | 603 | ||
604 | #: plugins/check_disk.c:988 | 604 | #: plugins/check_disk.c:1003 |
605 | msgid "" | 605 | msgid "" |
606 | "Return OK if no filesystem matches, filesystem does not exist or is " | 606 | "Return OK if no filesystem matches, filesystem does not exist or is " |
607 | "inaccessible." | 607 | "inaccessible." |
608 | msgstr "" | 608 | msgstr "" |
609 | 609 | ||
610 | #: plugins/check_disk.c:989 | 610 | #: plugins/check_disk.c:1004 |
611 | msgid "(Provide this option before -p / -r / --ereg-path if used)" | 611 | msgid "(Provide this option before -p / -r / --ereg-path if used)" |
612 | msgstr "" | 612 | msgstr "" |
613 | 613 | ||
614 | #: plugins/check_disk.c:992 | 614 | #: plugins/check_disk.c:1007 |
615 | msgid "Choose bytes, kB, MB, GB, TB (default: MB)" | 615 | msgid "Choose bytes, kB, MB, GB, TB (default: MB)" |
616 | msgstr "" | 616 | msgstr "" |
617 | 617 | ||
618 | #: plugins/check_disk.c:995 | 618 | #: plugins/check_disk.c:1010 |
619 | msgid "Ignore all filesystems of indicated type (may be repeated)" | 619 | msgid "Ignore all filesystems of indicated type (may be repeated)" |
620 | msgstr "" | 620 | msgstr "" |
621 | 621 | ||
622 | #: plugins/check_disk.c:997 | 622 | #: plugins/check_disk.c:1012 |
623 | msgid "Check only filesystems of indicated type (may be repeated)" | 623 | msgid "Check only filesystems of indicated type (may be repeated)" |
624 | msgstr "" | 624 | msgstr "" |
625 | 625 | ||
626 | #: plugins/check_disk.c:1002 | 626 | #: plugins/check_disk.c:1017 |
627 | msgid "Checks /tmp and /var at 10% and 5%, and / at 100MB and 50MB" | 627 | msgid "Checks /tmp and /var at 10% and 5%, and / at 100MB and 50MB" |
628 | msgstr "" | 628 | msgstr "" |
629 | 629 | ||
630 | #: plugins/check_disk.c:1004 | 630 | #: plugins/check_disk.c:1019 |
631 | msgid "" | 631 | msgid "" |
632 | "Checks all filesystems not matching -r at 100M and 50M. The fs matching the -" | 632 | "Checks all filesystems not matching -r at 100M and 50M. The fs matching the -" |
633 | "r regex" | 633 | "r regex" |
634 | msgstr "" | 634 | msgstr "" |
635 | 635 | ||
636 | #: plugins/check_disk.c:1005 | 636 | #: plugins/check_disk.c:1020 |
637 | msgid "" | 637 | msgid "" |
638 | "are grouped which means the freespace thresholds are applied to all disks " | 638 | "are grouped which means the freespace thresholds are applied to all disks " |
639 | "together" | 639 | "together" |
640 | msgstr "" | 640 | msgstr "" |
641 | 641 | ||
642 | #: plugins/check_disk.c:1007 | 642 | #: plugins/check_disk.c:1022 |
643 | msgid "" | 643 | msgid "" |
644 | "Checks /foo for 1000M/500M and /bar for 5/3%. All remaining volumes use " | 644 | "Checks /foo for 1000M/500M and /bar for 5/3%. All remaining volumes use " |
645 | "100M/50M" | 645 | "100M/50M" |
646 | msgstr "" | 646 | msgstr "" |
647 | 647 | ||
648 | #: plugins/check_disk.c:1036 | 648 | #: plugins/check_disk.c:1051 |
649 | #, c-format | 649 | #, c-format |
650 | msgid "%s %s: %s\n" | 650 | msgid "%s %s: %s\n" |
651 | msgstr "" | 651 | msgstr "" |
652 | 652 | ||
653 | #: plugins/check_disk.c:1036 | 653 | #: plugins/check_disk.c:1051 |
654 | msgid "is not accessible" | 654 | msgid "is not accessible" |
655 | msgstr "" | 655 | msgstr "" |
656 | 656 | ||
@@ -953,126 +953,126 @@ msgid "FPING %s - %s (loss=%.0f%% )|%s\n" | |||
953 | msgstr "FPING %s - %s (verloren=%.0f%% )|%s\n" | 953 | msgstr "FPING %s - %s (verloren=%.0f%% )|%s\n" |
954 | 954 | ||
955 | #: plugins/check_fping.c:345 plugins/check_fping.c:351 plugins/check_hpjd.c:345 | 955 | #: plugins/check_fping.c:345 plugins/check_fping.c:351 plugins/check_hpjd.c:345 |
956 | #: plugins/check_hpjd.c:376 plugins/check_mysql.c:389 plugins/check_mysql.c:476 | 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 | 957 | #: plugins/check_ntp.c:719 plugins/check_ntp_peer.c:497 |
958 | #: plugins/check_ntp_time.c:498 plugins/check_pgsql.c:338 | 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 | 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 | 960 | #: plugins/check_real.c:315 plugins/check_real.c:377 plugins/check_smtp.c:525 |
961 | #: plugins/check_smtp.c:680 plugins/check_ssh.c:162 plugins/check_time.c:240 | 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 | 962 | #: plugins/check_time.c:315 plugins/check_ups.c:507 plugins/check_ups.c:576 |
963 | msgid "Invalid hostname/address" | 963 | msgid "Invalid hostname/address" |
964 | msgstr "Ungültige(r) Hostname/Adresse" | 964 | msgstr "Ungültige(r) Hostname/Adresse" |
965 | 965 | ||
966 | #: plugins/check_fping.c:364 plugins/check_ldap.c:400 plugins/check_ping.c:252 | 966 | #: plugins/check_fping.c:365 plugins/check_ldap.c:400 plugins/check_ping.c:252 |
967 | #: plugins-root/check_icmp.c:474 | 967 | #: plugins-root/check_icmp.c:474 |
968 | msgid "IPv6 support not available\n" | 968 | msgid "IPv6 support not available\n" |
969 | msgstr "" | 969 | msgstr "" |
970 | 970 | ||
971 | #: plugins/check_fping.c:397 | 971 | #: plugins/check_fping.c:398 |
972 | msgid "Packet size must be a positive integer" | 972 | msgid "Packet size must be a positive integer" |
973 | msgstr "Paketgröße muss ein positiver Integer sein" | 973 | msgstr "Paketgröße muss ein positiver Integer sein" |
974 | 974 | ||
975 | #: plugins/check_fping.c:403 | 975 | #: plugins/check_fping.c:404 |
976 | msgid "Packet count must be a positive integer" | 976 | msgid "Packet count must be a positive integer" |
977 | msgstr "Paketanzahl muss ein positiver Integer sein" | 977 | msgstr "Paketanzahl muss ein positiver Integer sein" |
978 | 978 | ||
979 | #: plugins/check_fping.c:409 | 979 | #: plugins/check_fping.c:410 |
980 | #, fuzzy | 980 | #, fuzzy |
981 | msgid "Target timeout must be a positive integer" | 981 | msgid "Target timeout must be a positive integer" |
982 | msgstr "Warnung time muss ein positiver Integer sein" | 982 | msgstr "Warnung time muss ein positiver Integer sein" |
983 | 983 | ||
984 | #: plugins/check_fping.c:415 | 984 | #: plugins/check_fping.c:416 |
985 | #, fuzzy | 985 | #, fuzzy |
986 | msgid "Interval must be a positive integer" | 986 | msgid "Interval must be a positive integer" |
987 | msgstr "Timeout interval muss ein positiver Integer sein" | 987 | msgstr "Timeout interval muss ein positiver Integer sein" |
988 | 988 | ||
989 | #: plugins/check_fping.c:421 plugins/check_ntp.c:743 | 989 | #: plugins/check_fping.c:422 plugins/check_ntp.c:743 |
990 | #: plugins/check_ntp_peer.c:524 plugins/check_ntp_time.c:528 | 990 | #: plugins/check_ntp_peer.c:524 plugins/check_ntp_time.c:528 |
991 | #: plugins/check_radius.c:329 plugins/check_time.c:319 | 991 | #: plugins/check_radius.c:329 plugins/check_time.c:319 |
992 | msgid "Hostname was not supplied" | 992 | msgid "Hostname was not supplied" |
993 | msgstr "" | 993 | msgstr "" |
994 | 994 | ||
995 | #: plugins/check_fping.c:441 | 995 | #: plugins/check_fping.c:442 |
996 | #, c-format | 996 | #, c-format |
997 | msgid "%s: Only one threshold may be packet loss (%s)\n" | 997 | 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" | 998 | msgstr "%s: Nur ein Wert darf für packet loss angegeben werden (%s)\n" |
999 | 999 | ||
1000 | #: plugins/check_fping.c:445 | 1000 | #: plugins/check_fping.c:446 |
1001 | #, c-format | 1001 | #, c-format |
1002 | msgid "%s: Only one threshold must be packet loss (%s)\n" | 1002 | 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" | 1003 | msgstr "%s: Nur ein Wert darf für packet loss angegeben werden (%s)\n" |
1004 | 1004 | ||
1005 | #: plugins/check_fping.c:475 | 1005 | #: plugins/check_fping.c:476 |
1006 | msgid "" | 1006 | msgid "" |
1007 | "This plugin will use the fping command to ping the specified host for a fast " | 1007 | "This plugin will use the fping command to ping the specified host for a fast " |
1008 | "check" | 1008 | "check" |
1009 | msgstr "" | 1009 | msgstr "" |
1010 | 1010 | ||
1011 | #: plugins/check_fping.c:477 | 1011 | #: plugins/check_fping.c:478 |
1012 | msgid "Note that it is necessary to set the suid flag on fping." | 1012 | msgid "Note that it is necessary to set the suid flag on fping." |
1013 | msgstr "" | 1013 | msgstr "" |
1014 | 1014 | ||
1015 | #: plugins/check_fping.c:489 | 1015 | #: plugins/check_fping.c:490 |
1016 | msgid "" | 1016 | msgid "" |
1017 | "name or IP Address of host to ping (IP Address bypasses name lookup, " | 1017 | "name or IP Address of host to ping (IP Address bypasses name lookup, " |
1018 | "reducing system load)" | 1018 | "reducing system load)" |
1019 | msgstr "" | 1019 | msgstr "" |
1020 | 1020 | ||
1021 | #: plugins/check_fping.c:491 plugins/check_ping.c:589 | 1021 | #: plugins/check_fping.c:492 plugins/check_ping.c:589 |
1022 | #, fuzzy | 1022 | #, fuzzy |
1023 | msgid "warning threshold pair" | 1023 | msgid "warning threshold pair" |
1024 | msgstr "Warning threshold Integer sein" | 1024 | msgstr "Warning threshold Integer sein" |
1025 | 1025 | ||
1026 | #: plugins/check_fping.c:493 plugins/check_ping.c:591 | 1026 | #: plugins/check_fping.c:494 plugins/check_ping.c:591 |
1027 | #, fuzzy | 1027 | #, fuzzy |
1028 | msgid "critical threshold pair" | 1028 | msgid "critical threshold pair" |
1029 | msgstr "Critical threshold muss ein Integer sein" | 1029 | msgstr "Critical threshold muss ein Integer sein" |
1030 | 1030 | ||
1031 | #: plugins/check_fping.c:495 | 1031 | #: plugins/check_fping.c:496 |
1032 | msgid "Return OK after first successful reply" | 1032 | msgid "Return OK after first successful reply" |
1033 | msgstr "" | 1033 | msgstr "" |
1034 | 1034 | ||
1035 | #: plugins/check_fping.c:497 | 1035 | #: plugins/check_fping.c:498 |
1036 | msgid "size of ICMP packet" | 1036 | msgid "size of ICMP packet" |
1037 | msgstr "" | 1037 | msgstr "" |
1038 | 1038 | ||
1039 | #: plugins/check_fping.c:499 | 1039 | #: plugins/check_fping.c:500 |
1040 | msgid "number of ICMP packets to send" | 1040 | msgid "number of ICMP packets to send" |
1041 | msgstr "" | 1041 | msgstr "" |
1042 | 1042 | ||
1043 | #: plugins/check_fping.c:501 | 1043 | #: plugins/check_fping.c:502 |
1044 | msgid "Target timeout (ms)" | 1044 | msgid "Target timeout (ms)" |
1045 | msgstr "" | 1045 | msgstr "" |
1046 | 1046 | ||
1047 | #: plugins/check_fping.c:503 | 1047 | #: plugins/check_fping.c:504 |
1048 | msgid "Interval (ms) between sending packets" | 1048 | msgid "Interval (ms) between sending packets" |
1049 | msgstr "" | 1049 | msgstr "" |
1050 | 1050 | ||
1051 | #: plugins/check_fping.c:505 | 1051 | #: plugins/check_fping.c:506 |
1052 | msgid "name or IP Address of sourceip" | 1052 | msgid "name or IP Address of sourceip" |
1053 | msgstr "" | 1053 | msgstr "" |
1054 | 1054 | ||
1055 | #: plugins/check_fping.c:507 | 1055 | #: plugins/check_fping.c:508 |
1056 | msgid "source interface name" | 1056 | msgid "source interface name" |
1057 | msgstr "" | 1057 | msgstr "" |
1058 | 1058 | ||
1059 | #: plugins/check_fping.c:510 | 1059 | #: plugins/check_fping.c:511 |
1060 | #, c-format | 1060 | #, c-format |
1061 | msgid "" | 1061 | msgid "" |
1062 | "THRESHOLD is <rta>,<pl>%% where <rta> is the round trip average travel time " | 1062 | "THRESHOLD is <rta>,<pl>%% where <rta> is the round trip average travel time " |
1063 | "(ms)" | 1063 | "(ms)" |
1064 | msgstr "" | 1064 | msgstr "" |
1065 | 1065 | ||
1066 | #: plugins/check_fping.c:511 | 1066 | #: plugins/check_fping.c:512 |
1067 | msgid "" | 1067 | msgid "" |
1068 | "which triggers a WARNING or CRITICAL state, and <pl> is the percentage of" | 1068 | "which triggers a WARNING or CRITICAL state, and <pl> is the percentage of" |
1069 | msgstr "" | 1069 | msgstr "" |
1070 | 1070 | ||
1071 | #: plugins/check_fping.c:512 | 1071 | #: plugins/check_fping.c:513 |
1072 | msgid "packet loss to trigger an alarm state." | 1072 | msgid "packet loss to trigger an alarm state." |
1073 | msgstr "" | 1073 | msgstr "" |
1074 | 1074 | ||
1075 | #: plugins/check_fping.c:515 | 1075 | #: plugins/check_fping.c:516 |
1076 | msgid "IPv4 is used by default. Specify -6 to use IPv6." | 1076 | msgid "IPv4 is used by default. Specify -6 to use IPv6." |
1077 | msgstr "" | 1077 | msgstr "" |
1078 | 1078 | ||
@@ -1187,7 +1187,7 @@ msgstr "Printer ok - (%s)\n" | |||
1187 | msgid "Port must be a positive short integer" | 1187 | msgid "Port must be a positive short integer" |
1188 | msgstr "Port muss ein positiver Integer sein" | 1188 | msgstr "Port muss ein positiver Integer sein" |
1189 | 1189 | ||
1190 | #: plugins/check_hpjd.c:410 | 1190 | #: plugins/check_hpjd.c:411 |
1191 | #, fuzzy | 1191 | #, fuzzy |
1192 | msgid "This plugin tests the STATUS of an HP printer with a JetDirect card." | 1192 | msgid "This plugin tests the STATUS of an HP printer with a JetDirect card." |
1193 | msgstr "" | 1193 | msgstr "" |
@@ -1196,7 +1196,7 @@ msgstr "" | |||
1196 | "Net-snmp muss auf dem ausführenden Computer installiert sein.\n" | 1196 | "Net-snmp muss auf dem ausführenden Computer installiert sein.\n" |
1197 | "\n" | 1197 | "\n" |
1198 | 1198 | ||
1199 | #: plugins/check_hpjd.c:411 | 1199 | #: plugins/check_hpjd.c:412 |
1200 | #, fuzzy | 1200 | #, fuzzy |
1201 | msgid "Net-snmp must be installed on the computer running the plugin." | 1201 | msgid "Net-snmp must be installed on the computer running the plugin." |
1202 | msgstr "" | 1202 | msgstr "" |
@@ -1205,20 +1205,20 @@ msgstr "" | |||
1205 | "Net-snmp muss auf dem ausführenden Computer installiert sein.\n" | 1205 | "Net-snmp muss auf dem ausführenden Computer installiert sein.\n" |
1206 | "\n" | 1206 | "\n" |
1207 | 1207 | ||
1208 | #: plugins/check_hpjd.c:421 | 1208 | #: plugins/check_hpjd.c:422 |
1209 | msgid "The SNMP community name " | 1209 | msgid "The SNMP community name " |
1210 | msgstr "" | 1210 | msgstr "" |
1211 | 1211 | ||
1212 | #: plugins/check_hpjd.c:422 plugins/check_hpjd.c:426 | 1212 | #: plugins/check_hpjd.c:423 plugins/check_hpjd.c:427 |
1213 | #, c-format | 1213 | #, c-format |
1214 | msgid "(default=%s)" | 1214 | msgid "(default=%s)" |
1215 | msgstr "" | 1215 | msgstr "" |
1216 | 1216 | ||
1217 | #: plugins/check_hpjd.c:425 | 1217 | #: plugins/check_hpjd.c:426 |
1218 | msgid "Specify the port to check " | 1218 | msgid "Specify the port to check " |
1219 | msgstr "" | 1219 | msgstr "" |
1220 | 1220 | ||
1221 | #: plugins/check_hpjd.c:429 | 1221 | #: plugins/check_hpjd.c:430 |
1222 | msgid "Disable paper check " | 1222 | msgid "Disable paper check " |
1223 | msgstr "" | 1223 | msgstr "" |
1224 | 1224 | ||
@@ -1260,570 +1260,570 @@ msgstr "Option f:%d \n" | |||
1260 | msgid "Invalid port number" | 1260 | msgid "Invalid port number" |
1261 | msgstr "Ungültige Portnummer" | 1261 | msgstr "Ungültige Portnummer" |
1262 | 1262 | ||
1263 | #: plugins/check_http.c:507 | 1263 | #: plugins/check_http.c:508 |
1264 | #, c-format | 1264 | #, c-format |
1265 | msgid "Could Not Compile Regular Expression: %s" | 1265 | msgid "Could Not Compile Regular Expression: %s" |
1266 | msgstr "" | 1266 | msgstr "" |
1267 | 1267 | ||
1268 | #: plugins/check_http.c:521 plugins/check_ntp.c:732 | 1268 | #: plugins/check_http.c:522 plugins/check_ntp.c:732 |
1269 | #: plugins/check_ntp_peer.c:513 plugins/check_ntp_time.c:517 | 1269 | #: plugins/check_ntp_peer.c:513 plugins/check_ntp_time.c:517 |
1270 | #: plugins/check_smtp.c:660 plugins/check_ssh.c:151 plugins/check_tcp.c:491 | 1270 | #: plugins/check_smtp.c:661 plugins/check_ssh.c:151 plugins/check_tcp.c:491 |
1271 | msgid "IPv6 support not available" | 1271 | msgid "IPv6 support not available" |
1272 | msgstr "IPv6 Unterstützung nicht vorhanden" | 1272 | msgstr "IPv6 Unterstützung nicht vorhanden" |
1273 | 1273 | ||
1274 | #: plugins/check_http.c:589 plugins/check_ping.c:428 | 1274 | #: plugins/check_http.c:590 plugins/check_ping.c:428 |
1275 | msgid "You must specify a server address or host name" | 1275 | msgid "You must specify a server address or host name" |
1276 | msgstr "Hostname oder Serveradresse muss angegeben werden" | 1276 | msgstr "Hostname oder Serveradresse muss angegeben werden" |
1277 | 1277 | ||
1278 | #: plugins/check_http.c:606 | 1278 | #: plugins/check_http.c:607 |
1279 | msgid "" | 1279 | msgid "" |
1280 | "If you use a client certificate you must also specify a private key file" | 1280 | "If you use a client certificate you must also specify a private key file" |
1281 | msgstr "" | 1281 | msgstr "" |
1282 | 1282 | ||
1283 | #: plugins/check_http.c:733 plugins/check_http.c:901 | 1283 | #: plugins/check_http.c:734 plugins/check_http.c:902 |
1284 | #, fuzzy | 1284 | #, fuzzy |
1285 | msgid "HTTP UNKNOWN - Memory allocation error\n" | 1285 | msgid "HTTP UNKNOWN - Memory allocation error\n" |
1286 | msgstr "HTTP UNKNOWN - Konnte·url·nicht·zuweisen\n" | 1286 | msgstr "HTTP UNKNOWN - Konnte·url·nicht·zuweisen\n" |
1287 | 1287 | ||
1288 | #: plugins/check_http.c:805 | 1288 | #: plugins/check_http.c:806 |
1289 | #, fuzzy, c-format | 1289 | #, fuzzy, c-format |
1290 | msgid "%sServer date unknown, " | 1290 | msgid "%sServer date unknown, " |
1291 | msgstr "HTTP UNKNOWN - Serverdatum unbekannt\n" | 1291 | msgstr "HTTP UNKNOWN - Serverdatum unbekannt\n" |
1292 | 1292 | ||
1293 | #: plugins/check_http.c:808 | 1293 | #: plugins/check_http.c:809 |
1294 | #, fuzzy, c-format | 1294 | #, fuzzy, c-format |
1295 | msgid "%sDocument modification date unknown, " | 1295 | msgid "%sDocument modification date unknown, " |
1296 | msgstr "HTTP CRITICAL - Datum der letzten Änderung unbekannt\n" | 1296 | msgstr "HTTP CRITICAL - Datum der letzten Änderung unbekannt\n" |
1297 | 1297 | ||
1298 | #: plugins/check_http.c:815 | 1298 | #: plugins/check_http.c:816 |
1299 | #, fuzzy, c-format | 1299 | #, fuzzy, c-format |
1300 | msgid "%sServer date \"%100s\" unparsable, " | 1300 | msgid "%sServer date \"%100s\" unparsable, " |
1301 | msgstr "HTTP CRITICAL - Serverdatum \"%100s\" konnte nicht verarbeitet werden" | 1301 | msgstr "HTTP CRITICAL - Serverdatum \"%100s\" konnte nicht verarbeitet werden" |
1302 | 1302 | ||
1303 | #: plugins/check_http.c:818 | 1303 | #: plugins/check_http.c:819 |
1304 | #, fuzzy, c-format | 1304 | #, fuzzy, c-format |
1305 | msgid "%sDocument date \"%100s\" unparsable, " | 1305 | msgid "%sDocument date \"%100s\" unparsable, " |
1306 | msgstr "" | 1306 | msgstr "" |
1307 | "HTTP CRITICAL - Dokumentendatum \"%100s\" konnte nicht verarbeitet werden" | 1307 | "HTTP CRITICAL - Dokumentendatum \"%100s\" konnte nicht verarbeitet werden" |
1308 | 1308 | ||
1309 | #: plugins/check_http.c:821 | 1309 | #: plugins/check_http.c:822 |
1310 | #, fuzzy, c-format | 1310 | #, fuzzy, c-format |
1311 | msgid "%sDocument is %d seconds in the future, " | 1311 | msgid "%sDocument is %d seconds in the future, " |
1312 | msgstr "HTTP CRITICAL - Dokumentendatum ist %d Sekunden in der Zukunft\n" | 1312 | msgstr "HTTP CRITICAL - Dokumentendatum ist %d Sekunden in der Zukunft\n" |
1313 | 1313 | ||
1314 | #: plugins/check_http.c:826 | 1314 | #: plugins/check_http.c:827 |
1315 | #, fuzzy, c-format | 1315 | #, fuzzy, c-format |
1316 | msgid "%sLast modified %.1f days ago, " | 1316 | msgid "%sLast modified %.1f days ago, " |
1317 | msgstr "HTTP CRITICAL - Letzte Änderung vor %.1f Tagen\n" | 1317 | msgstr "HTTP CRITICAL - Letzte Änderung vor %.1f Tagen\n" |
1318 | 1318 | ||
1319 | #: plugins/check_http.c:829 | 1319 | #: plugins/check_http.c:830 |
1320 | #, fuzzy, c-format | 1320 | #, fuzzy, c-format |
1321 | msgid "%sLast modified %d:%02d:%02d ago, " | 1321 | msgid "%sLast modified %d:%02d:%02d ago, " |
1322 | msgstr "HTTP CRITICAL - Letzte Änderung vor %d:%02d:%02d \n" | 1322 | msgstr "HTTP CRITICAL - Letzte Änderung vor %d:%02d:%02d \n" |
1323 | 1323 | ||
1324 | #: plugins/check_http.c:943 | 1324 | #: plugins/check_http.c:944 |
1325 | msgid "HTTP CRITICAL - Unable to open TCP socket\n" | 1325 | msgid "HTTP CRITICAL - Unable to open TCP socket\n" |
1326 | msgstr "HTTP CRITICAL - Konnte TCP socket nicht öffnen\n" | 1326 | msgstr "HTTP CRITICAL - Konnte TCP socket nicht öffnen\n" |
1327 | 1327 | ||
1328 | #: plugins/check_http.c:1103 | 1328 | #: plugins/check_http.c:1104 |
1329 | #, fuzzy | 1329 | #, fuzzy |
1330 | msgid "HTTP UNKNOWN - Could not allocate memory for full_page\n" | 1330 | msgid "HTTP UNKNOWN - Could not allocate memory for full_page\n" |
1331 | msgstr "HTTP UNKNOWN - Konnte·url·nicht·zuweisen\n" | 1331 | msgstr "HTTP UNKNOWN - Konnte·url·nicht·zuweisen\n" |
1332 | 1332 | ||
1333 | #: plugins/check_http.c:1120 | 1333 | #: plugins/check_http.c:1121 |
1334 | msgid "HTTP CRITICAL - Error on receive\n" | 1334 | msgid "HTTP CRITICAL - Error on receive\n" |
1335 | msgstr "HTTP CRITICAL - Fehler beim Empfangen\n" | 1335 | msgstr "HTTP CRITICAL - Fehler beim Empfangen\n" |
1336 | 1336 | ||
1337 | #: plugins/check_http.c:1125 | 1337 | #: plugins/check_http.c:1126 |
1338 | #, fuzzy | 1338 | #, fuzzy |
1339 | msgid "HTTP CRITICAL - No data received from host\n" | 1339 | msgid "HTTP CRITICAL - No data received from host\n" |
1340 | msgstr "HTTP CRITICAL - Keine Daten empfangen\n" | 1340 | msgstr "HTTP CRITICAL - Keine Daten empfangen\n" |
1341 | 1341 | ||
1342 | #: plugins/check_http.c:1176 | 1342 | #: plugins/check_http.c:1177 |
1343 | #, fuzzy, c-format | 1343 | #, fuzzy, c-format |
1344 | msgid "Invalid HTTP response received from host: %s\n" | 1344 | msgid "Invalid HTTP response received from host: %s\n" |
1345 | msgstr "Ungültige HTTP Antwort von Host empfangen\n" | 1345 | msgstr "Ungültige HTTP Antwort von Host empfangen\n" |
1346 | 1346 | ||
1347 | #: plugins/check_http.c:1180 | 1347 | #: plugins/check_http.c:1181 |
1348 | #, fuzzy, c-format | 1348 | #, fuzzy, c-format |
1349 | msgid "Invalid HTTP response received from host on port %d: %s\n" | 1349 | 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" | 1350 | msgstr "Ungültige HTTP Antwort von Host erhalten auf Port %d\n" |
1351 | 1351 | ||
1352 | #: plugins/check_http.c:1183 plugins/check_http.c:1376 | 1352 | #: plugins/check_http.c:1184 plugins/check_http.c:1377 |
1353 | #, c-format | 1353 | #, c-format |
1354 | msgid "" | 1354 | msgid "" |
1355 | "%s\n" | 1355 | "%s\n" |
1356 | "%s" | 1356 | "%s" |
1357 | msgstr "" | 1357 | msgstr "" |
1358 | 1358 | ||
1359 | #: plugins/check_http.c:1191 | 1359 | #: plugins/check_http.c:1192 |
1360 | #, fuzzy, c-format | 1360 | #, fuzzy, c-format |
1361 | msgid "Status line output matched \"%s\" - " | 1361 | msgid "Status line output matched \"%s\" - " |
1362 | msgstr "HTTP OK: Statusausgabe passt auf \"%s\"\n" | 1362 | msgstr "HTTP OK: Statusausgabe passt auf \"%s\"\n" |
1363 | 1363 | ||
1364 | #: plugins/check_http.c:1202 | 1364 | #: plugins/check_http.c:1203 |
1365 | #, c-format | 1365 | #, c-format |
1366 | msgid "HTTP CRITICAL: Invalid Status Line (%s)\n" | 1366 | msgid "HTTP CRITICAL: Invalid Status Line (%s)\n" |
1367 | msgstr "HTTP CRITICAL: Ungültige Statusmeldung (%s)\n" | 1367 | msgstr "HTTP CRITICAL: Ungültige Statusmeldung (%s)\n" |
1368 | 1368 | ||
1369 | #: plugins/check_http.c:1209 | 1369 | #: plugins/check_http.c:1210 |
1370 | #, c-format | 1370 | #, c-format |
1371 | msgid "HTTP CRITICAL: Invalid Status (%s)\n" | 1371 | msgid "HTTP CRITICAL: Invalid Status (%s)\n" |
1372 | msgstr "HTTP CRITICAL: Ungültiger Status (%s)\n" | 1372 | msgstr "HTTP CRITICAL: Ungültiger Status (%s)\n" |
1373 | 1373 | ||
1374 | #: plugins/check_http.c:1213 plugins/check_http.c:1218 | 1374 | #: plugins/check_http.c:1214 plugins/check_http.c:1219 |
1375 | #: plugins/check_http.c:1228 plugins/check_http.c:1232 | 1375 | #: plugins/check_http.c:1229 plugins/check_http.c:1233 |
1376 | #, c-format | 1376 | #, c-format |
1377 | msgid "%s - " | 1377 | msgid "%s - " |
1378 | msgstr "" | 1378 | msgstr "" |
1379 | 1379 | ||
1380 | #: plugins/check_http.c:1260 | 1380 | #: plugins/check_http.c:1261 |
1381 | #, fuzzy, c-format | 1381 | #, fuzzy, c-format |
1382 | msgid "%sheader '%s' not found on '%s://%s:%d%s', " | 1382 | msgid "%sheader '%s' not found on '%s://%s:%d%s', " |
1383 | msgstr "CRITICAL - Muster nicht gefunden%s|%s %s\n" | 1383 | msgstr "CRITICAL - Muster nicht gefunden%s|%s %s\n" |
1384 | 1384 | ||
1385 | #: plugins/check_http.c:1303 | 1385 | #: plugins/check_http.c:1304 |
1386 | #, fuzzy, c-format | 1386 | #, fuzzy, c-format |
1387 | msgid "%sstring '%s' not found on '%s://%s:%d%s', " | 1387 | msgid "%sstring '%s' not found on '%s://%s:%d%s', " |
1388 | msgstr "CRITICAL - Muster nicht gefunden%s|%s %s\n" | 1388 | msgstr "CRITICAL - Muster nicht gefunden%s|%s %s\n" |
1389 | 1389 | ||
1390 | #: plugins/check_http.c:1317 | 1390 | #: plugins/check_http.c:1318 |
1391 | #, fuzzy, c-format | 1391 | #, fuzzy, c-format |
1392 | msgid "%spattern not found, " | 1392 | msgid "%spattern not found, " |
1393 | msgstr "CRITICAL - Muster nicht gefunden%s|%s %s\n" | 1393 | msgstr "CRITICAL - Muster nicht gefunden%s|%s %s\n" |
1394 | 1394 | ||
1395 | #: plugins/check_http.c:1319 | 1395 | #: plugins/check_http.c:1320 |
1396 | #, fuzzy, c-format | 1396 | #, fuzzy, c-format |
1397 | msgid "%spattern found, " | 1397 | msgid "%spattern found, " |
1398 | msgstr "CRITICAL - Muster nicht gefunden%s|%s %s\n" | 1398 | msgstr "CRITICAL - Muster nicht gefunden%s|%s %s\n" |
1399 | 1399 | ||
1400 | #: plugins/check_http.c:1325 | 1400 | #: plugins/check_http.c:1326 |
1401 | #, fuzzy, c-format | 1401 | #, fuzzy, c-format |
1402 | msgid "%sExecute Error: %s, " | 1402 | msgid "%sExecute Error: %s, " |
1403 | msgstr "HTTP CRITICAL - Fehler: %s\n" | 1403 | msgstr "HTTP CRITICAL - Fehler: %s\n" |
1404 | 1404 | ||
1405 | #: plugins/check_http.c:1341 | 1405 | #: plugins/check_http.c:1342 |
1406 | #, fuzzy, c-format | 1406 | #, fuzzy, c-format |
1407 | msgid "%spage size %d too large, " | 1407 | msgid "%spage size %d too large, " |
1408 | msgstr "HTTP WARNING: Seitengröße %d zu klein%s|%s\n" | 1408 | msgstr "HTTP WARNING: Seitengröße %d zu klein%s|%s\n" |
1409 | 1409 | ||
1410 | #: plugins/check_http.c:1344 | 1410 | #: plugins/check_http.c:1345 |
1411 | #, fuzzy, c-format | 1411 | #, fuzzy, c-format |
1412 | msgid "%spage size %d too small, " | 1412 | msgid "%spage size %d too small, " |
1413 | msgstr "HTTP WARNING: Seitengröße %d zu klein%s|%s\n" | 1413 | msgstr "HTTP WARNING: Seitengröße %d zu klein%s|%s\n" |
1414 | 1414 | ||
1415 | #: plugins/check_http.c:1357 | 1415 | #: plugins/check_http.c:1358 |
1416 | #, fuzzy, c-format | 1416 | #, fuzzy, c-format |
1417 | msgid "%s - %d bytes in %.3f second response time %s|%s %s %s %s %s %s %s" | 1417 | 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" | 1418 | msgstr " - %s - %.3f Sekunden Antwortzeit %s%s|%s %s\n" |
1419 | 1419 | ||
1420 | #: plugins/check_http.c:1369 | 1420 | #: plugins/check_http.c:1370 |
1421 | #, fuzzy, c-format | 1421 | #, fuzzy, c-format |
1422 | msgid "%s - %d bytes in %.3f second response time %s|%s %s" | 1422 | msgid "%s - %d bytes in %.3f second response time %s|%s %s" |
1423 | msgstr " - %s - %.3f Sekunden Antwortzeit %s%s|%s %s\n" | 1423 | msgstr " - %s - %.3f Sekunden Antwortzeit %s%s|%s %s\n" |
1424 | 1424 | ||
1425 | #: plugins/check_http.c:1499 | 1425 | #: plugins/check_http.c:1500 |
1426 | msgid "HTTP UNKNOWN - Could not allocate addr\n" | 1426 | msgid "HTTP UNKNOWN - Could not allocate addr\n" |
1427 | msgstr "HTTP UNKNOWN - Konnte addr nicht zuweisen\n" | 1427 | msgstr "HTTP UNKNOWN - Konnte addr nicht zuweisen\n" |
1428 | 1428 | ||
1429 | #: plugins/check_http.c:1504 plugins/check_http.c:1535 | 1429 | #: plugins/check_http.c:1505 plugins/check_http.c:1536 |
1430 | #, fuzzy | 1430 | #, fuzzy |
1431 | msgid "HTTP UNKNOWN - Could not allocate URL\n" | 1431 | msgid "HTTP UNKNOWN - Could not allocate URL\n" |
1432 | msgstr "HTTP UNKNOWN - Konnte·url·nicht·zuweisen\n" | 1432 | msgstr "HTTP UNKNOWN - Konnte·url·nicht·zuweisen\n" |
1433 | 1433 | ||
1434 | #: plugins/check_http.c:1513 | 1434 | #: plugins/check_http.c:1514 |
1435 | #, c-format | 1435 | #, c-format |
1436 | msgid "HTTP UNKNOWN - Could not find redirect location - %s%s\n" | 1436 | msgid "HTTP UNKNOWN - Could not find redirect location - %s%s\n" |
1437 | msgstr "" | 1437 | msgstr "" |
1438 | 1438 | ||
1439 | #: plugins/check_http.c:1528 | 1439 | #: plugins/check_http.c:1529 |
1440 | #, fuzzy, c-format | 1440 | #, fuzzy, c-format |
1441 | msgid "HTTP UNKNOWN - Empty redirect location%s\n" | 1441 | msgid "HTTP UNKNOWN - Empty redirect location%s\n" |
1442 | msgstr "HTTP UNKNOWN - Serverdatum unbekannt\n" | 1442 | msgstr "HTTP UNKNOWN - Serverdatum unbekannt\n" |
1443 | 1443 | ||
1444 | #: plugins/check_http.c:1590 | 1444 | #: plugins/check_http.c:1591 |
1445 | #, c-format | 1445 | #, c-format |
1446 | msgid "HTTP UNKNOWN - Could not parse redirect location - %s%s\n" | 1446 | msgid "HTTP UNKNOWN - Could not parse redirect location - %s%s\n" |
1447 | msgstr "" | 1447 | msgstr "" |
1448 | 1448 | ||
1449 | #: plugins/check_http.c:1600 | 1449 | #: plugins/check_http.c:1601 |
1450 | #, fuzzy, c-format | 1450 | #, fuzzy, c-format |
1451 | msgid "HTTP WARNING - maximum redirection depth %d exceeded - %s://%s:%d%s%s\n" | 1451 | 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" | 1452 | msgstr "HTTP WARNING - Umleitung verursacht eine Schleife - %s://%s:%d%s%s\n" |
1453 | 1453 | ||
1454 | #: plugins/check_http.c:1608 | 1454 | #: plugins/check_http.c:1609 |
1455 | #, fuzzy, c-format | 1455 | #, fuzzy, c-format |
1456 | msgid "HTTP CRITICAL - redirection creates an infinite loop - %s://%s:%d%s%s\n" | 1456 | 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" | 1457 | msgstr "HTTP WARNING - Umleitung verursacht eine Schleife - %s://%s:%d%s%s\n" |
1458 | 1458 | ||
1459 | #: plugins/check_http.c:1629 | 1459 | #: plugins/check_http.c:1630 |
1460 | #, fuzzy, c-format | 1460 | #, fuzzy, c-format |
1461 | msgid "HTTP UNKNOWN - Redirection to port above %d - %s://%s:%d%s%s\n" | 1461 | 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" | 1462 | msgstr "HTTP WARNING - Umleitung verursacht eine Schleife - %s://%s:%d%s%s\n" |
1463 | 1463 | ||
1464 | #: plugins/check_http.c:1637 | 1464 | #: plugins/check_http.c:1638 |
1465 | #, c-format | 1465 | #, c-format |
1466 | msgid "Redirection to %s://%s:%d%s\n" | 1466 | msgid "Redirection to %s://%s:%d%s\n" |
1467 | msgstr "" | 1467 | msgstr "" |
1468 | 1468 | ||
1469 | #: plugins/check_http.c:1712 | 1469 | #: plugins/check_http.c:1713 |
1470 | #, fuzzy | 1470 | #, fuzzy |
1471 | msgid "This plugin tests the HTTP service on the specified host. It can test" | 1471 | msgid "This plugin tests the HTTP service on the specified host. It can test" |
1472 | msgstr "" | 1472 | msgstr "" |
1473 | "Testet den DNS Dienst auf dem angegebenen Host mit dig\n" | 1473 | "Testet den DNS Dienst auf dem angegebenen Host mit dig\n" |
1474 | "\n" | 1474 | "\n" |
1475 | 1475 | ||
1476 | #: plugins/check_http.c:1713 | 1476 | #: plugins/check_http.c:1714 |
1477 | msgid "normal (http) and secure (https) servers, follow redirects, search for" | 1477 | msgid "normal (http) and secure (https) servers, follow redirects, search for" |
1478 | msgstr "" | 1478 | msgstr "" |
1479 | 1479 | ||
1480 | #: plugins/check_http.c:1714 | 1480 | #: plugins/check_http.c:1715 |
1481 | msgid "strings and regular expressions, check connection times, and report on" | 1481 | msgid "strings and regular expressions, check connection times, and report on" |
1482 | msgstr "" | 1482 | msgstr "" |
1483 | 1483 | ||
1484 | #: plugins/check_http.c:1715 | 1484 | #: plugins/check_http.c:1716 |
1485 | #, fuzzy | 1485 | #, fuzzy |
1486 | msgid "certificate expiration times." | 1486 | msgid "certificate expiration times." |
1487 | msgstr "Clientzertifikat benötigt\n" | 1487 | msgstr "Clientzertifikat benötigt\n" |
1488 | 1488 | ||
1489 | #: plugins/check_http.c:1722 | 1489 | #: plugins/check_http.c:1723 |
1490 | #, c-format | 1490 | #, c-format |
1491 | msgid "In the first form, make an HTTP request." | 1491 | msgid "In the first form, make an HTTP request." |
1492 | msgstr "" | 1492 | msgstr "" |
1493 | 1493 | ||
1494 | #: plugins/check_http.c:1723 | 1494 | #: plugins/check_http.c:1724 |
1495 | #, c-format | 1495 | #, c-format |
1496 | msgid "" | 1496 | msgid "" |
1497 | "In the second form, connect to the server and check the TLS certificate." | 1497 | "In the second form, connect to the server and check the TLS certificate." |
1498 | msgstr "" | 1498 | msgstr "" |
1499 | 1499 | ||
1500 | #: plugins/check_http.c:1725 | 1500 | #: plugins/check_http.c:1726 |
1501 | #, c-format | 1501 | #, c-format |
1502 | msgid "NOTE: One or both of -H and -I must be specified" | 1502 | msgid "NOTE: One or both of -H and -I must be specified" |
1503 | msgstr "" | 1503 | msgstr "" |
1504 | 1504 | ||
1505 | #: plugins/check_http.c:1733 | 1505 | #: plugins/check_http.c:1734 |
1506 | msgid "Host name argument for servers using host headers (virtual host)" | 1506 | msgid "Host name argument for servers using host headers (virtual host)" |
1507 | msgstr "" | 1507 | msgstr "" |
1508 | 1508 | ||
1509 | #: plugins/check_http.c:1734 | 1509 | #: plugins/check_http.c:1735 |
1510 | msgid "Append a port to include it in the header (eg: example.com:5000)" | 1510 | msgid "Append a port to include it in the header (eg: example.com:5000)" |
1511 | msgstr "" | 1511 | msgstr "" |
1512 | 1512 | ||
1513 | #: plugins/check_http.c:1736 | 1513 | #: plugins/check_http.c:1737 |
1514 | msgid "" | 1514 | msgid "" |
1515 | "IP address or name (use numeric address if possible to bypass DNS lookup)." | 1515 | "IP address or name (use numeric address if possible to bypass DNS lookup)." |
1516 | msgstr "" | 1516 | msgstr "" |
1517 | 1517 | ||
1518 | #: plugins/check_http.c:1738 | 1518 | #: plugins/check_http.c:1739 |
1519 | msgid "Port number (default: " | 1519 | msgid "Port number (default: " |
1520 | msgstr "" | 1520 | msgstr "" |
1521 | 1521 | ||
1522 | #: plugins/check_http.c:1745 | 1522 | #: plugins/check_http.c:1746 |
1523 | msgid "" | 1523 | msgid "" |
1524 | "Connect via SSL. Port defaults to 443. VERSION is optional, and prevents" | 1524 | "Connect via SSL. Port defaults to 443. VERSION is optional, and prevents" |
1525 | msgstr "" | 1525 | msgstr "" |
1526 | 1526 | ||
1527 | #: plugins/check_http.c:1746 | 1527 | #: plugins/check_http.c:1747 |
1528 | msgid "auto-negotiation (2 = SSLv2, 3 = SSLv3, 1 = TLSv1, 1.1 = TLSv1.1," | 1528 | msgid "auto-negotiation (2 = SSLv2, 3 = SSLv3, 1 = TLSv1, 1.1 = TLSv1.1," |
1529 | msgstr "" | 1529 | msgstr "" |
1530 | 1530 | ||
1531 | #: plugins/check_http.c:1747 | 1531 | #: plugins/check_http.c:1748 |
1532 | msgid "1.2 = TLSv1.2). With a '+' suffix, newer versions are also accepted." | 1532 | msgid "1.2 = TLSv1.2). With a '+' suffix, newer versions are also accepted." |
1533 | msgstr "" | 1533 | msgstr "" |
1534 | 1534 | ||
1535 | #: plugins/check_http.c:1749 plugins/check_smtp.c:856 | 1535 | #: plugins/check_http.c:1750 plugins/check_smtp.c:857 |
1536 | msgid "Enable SSL/TLS hostname extension support (SNI)" | 1536 | msgid "Enable SSL/TLS hostname extension support (SNI)" |
1537 | msgstr "" | 1537 | msgstr "" |
1538 | 1538 | ||
1539 | #: plugins/check_http.c:1751 | 1539 | #: plugins/check_http.c:1752 |
1540 | msgid "" | 1540 | msgid "" |
1541 | "Minimum number of days a certificate has to be valid. Port defaults to 443" | 1541 | "Minimum number of days a certificate has to be valid. Port defaults to 443" |
1542 | msgstr "" | 1542 | msgstr "" |
1543 | 1543 | ||
1544 | #: plugins/check_http.c:1752 | 1544 | #: plugins/check_http.c:1753 |
1545 | msgid "" | 1545 | msgid "" |
1546 | "(when this option is used the URL is not checked by default. You can use" | 1546 | "(when this option is used the URL is not checked by default. You can use" |
1547 | msgstr "" | 1547 | msgstr "" |
1548 | 1548 | ||
1549 | #: plugins/check_http.c:1753 | 1549 | #: plugins/check_http.c:1754 |
1550 | msgid " --continue-after-certificate to override this behavior)" | 1550 | msgid " --continue-after-certificate to override this behavior)" |
1551 | msgstr "" | 1551 | msgstr "" |
1552 | 1552 | ||
1553 | #: plugins/check_http.c:1755 | 1553 | #: plugins/check_http.c:1756 |
1554 | msgid "" | 1554 | msgid "" |
1555 | "Allows the HTTP check to continue after performing the certificate check." | 1555 | "Allows the HTTP check to continue after performing the certificate check." |
1556 | msgstr "" | 1556 | msgstr "" |
1557 | 1557 | ||
1558 | #: plugins/check_http.c:1756 | 1558 | #: plugins/check_http.c:1757 |
1559 | msgid "Does nothing unless -C is used." | 1559 | msgid "Does nothing unless -C is used." |
1560 | msgstr "" | 1560 | msgstr "" |
1561 | 1561 | ||
1562 | #: plugins/check_http.c:1758 | 1562 | #: plugins/check_http.c:1759 |
1563 | msgid "Name of file that contains the client certificate (PEM format)" | 1563 | msgid "Name of file that contains the client certificate (PEM format)" |
1564 | msgstr "" | 1564 | msgstr "" |
1565 | 1565 | ||
1566 | #: plugins/check_http.c:1759 | 1566 | #: plugins/check_http.c:1760 |
1567 | msgid "to be used in establishing the SSL session" | 1567 | msgid "to be used in establishing the SSL session" |
1568 | msgstr "" | 1568 | msgstr "" |
1569 | 1569 | ||
1570 | #: plugins/check_http.c:1761 | 1570 | #: plugins/check_http.c:1762 |
1571 | msgid "Name of file containing the private key (PEM format)" | 1571 | msgid "Name of file containing the private key (PEM format)" |
1572 | msgstr "" | 1572 | msgstr "" |
1573 | 1573 | ||
1574 | #: plugins/check_http.c:1762 | 1574 | #: plugins/check_http.c:1763 |
1575 | msgid "matching the client certificate" | 1575 | msgid "matching the client certificate" |
1576 | msgstr "" | 1576 | msgstr "" |
1577 | 1577 | ||
1578 | #: plugins/check_http.c:1766 | 1578 | #: plugins/check_http.c:1767 |
1579 | msgid "Comma-delimited list of strings, at least one of them is expected in" | 1579 | msgid "Comma-delimited list of strings, at least one of them is expected in" |
1580 | msgstr "" | 1580 | msgstr "" |
1581 | 1581 | ||
1582 | #: plugins/check_http.c:1767 | 1582 | #: plugins/check_http.c:1768 |
1583 | msgid "the first (status) line of the server response (default: " | 1583 | msgid "the first (status) line of the server response (default: " |
1584 | msgstr "" | 1584 | msgstr "" |
1585 | 1585 | ||
1586 | #: plugins/check_http.c:1769 | 1586 | #: plugins/check_http.c:1770 |
1587 | msgid "" | 1587 | msgid "" |
1588 | "If specified skips all other status line logic (ex: 3xx, 4xx, 5xx processing)" | 1588 | "If specified skips all other status line logic (ex: 3xx, 4xx, 5xx processing)" |
1589 | msgstr "" | 1589 | msgstr "" |
1590 | 1590 | ||
1591 | #: plugins/check_http.c:1771 | 1591 | #: plugins/check_http.c:1772 |
1592 | msgid "String to expect in the response headers" | 1592 | msgid "String to expect in the response headers" |
1593 | msgstr "" | 1593 | msgstr "" |
1594 | 1594 | ||
1595 | #: plugins/check_http.c:1773 | 1595 | #: plugins/check_http.c:1774 |
1596 | msgid "String to expect in the content" | 1596 | msgid "String to expect in the content" |
1597 | msgstr "" | 1597 | msgstr "" |
1598 | 1598 | ||
1599 | #: plugins/check_http.c:1775 | 1599 | #: plugins/check_http.c:1776 |
1600 | msgid "URL to GET or POST (default: /)" | 1600 | msgid "URL to GET or POST (default: /)" |
1601 | msgstr "" | 1601 | msgstr "" |
1602 | 1602 | ||
1603 | #: plugins/check_http.c:1777 | 1603 | #: plugins/check_http.c:1778 |
1604 | msgid "URL encoded http POST data" | 1604 | msgid "URL encoded http POST data" |
1605 | msgstr "" | 1605 | msgstr "" |
1606 | 1606 | ||
1607 | #: plugins/check_http.c:1779 | 1607 | #: plugins/check_http.c:1780 |
1608 | msgid "Set HTTP method." | 1608 | msgid "Set HTTP method." |
1609 | msgstr "" | 1609 | msgstr "" |
1610 | 1610 | ||
1611 | #: plugins/check_http.c:1781 | 1611 | #: plugins/check_http.c:1782 |
1612 | msgid "Don't wait for document body: stop reading after headers." | 1612 | msgid "Don't wait for document body: stop reading after headers." |
1613 | msgstr "" | 1613 | msgstr "" |
1614 | 1614 | ||
1615 | #: plugins/check_http.c:1782 | 1615 | #: plugins/check_http.c:1783 |
1616 | msgid "(Note that this still does an HTTP GET or POST, not a HEAD.)" | 1616 | msgid "(Note that this still does an HTTP GET or POST, not a HEAD.)" |
1617 | msgstr "" | 1617 | msgstr "" |
1618 | 1618 | ||
1619 | #: plugins/check_http.c:1784 | 1619 | #: plugins/check_http.c:1785 |
1620 | msgid "Warn if document is more than SECONDS old. the number can also be of" | 1620 | msgid "Warn if document is more than SECONDS old. the number can also be of" |
1621 | msgstr "" | 1621 | msgstr "" |
1622 | 1622 | ||
1623 | #: plugins/check_http.c:1785 | 1623 | #: plugins/check_http.c:1786 |
1624 | msgid "the form \"10m\" for minutes, \"10h\" for hours, or \"10d\" for days." | 1624 | msgid "the form \"10m\" for minutes, \"10h\" for hours, or \"10d\" for days." |
1625 | msgstr "" | 1625 | msgstr "" |
1626 | 1626 | ||
1627 | #: plugins/check_http.c:1787 | 1627 | #: plugins/check_http.c:1788 |
1628 | msgid "specify Content-Type header media type when POSTing\n" | 1628 | msgid "specify Content-Type header media type when POSTing\n" |
1629 | msgstr "" | 1629 | msgstr "" |
1630 | 1630 | ||
1631 | #: plugins/check_http.c:1790 | 1631 | #: plugins/check_http.c:1791 |
1632 | msgid "Allow regex to span newlines (must precede -r or -R)" | 1632 | msgid "Allow regex to span newlines (must precede -r or -R)" |
1633 | msgstr "" | 1633 | msgstr "" |
1634 | 1634 | ||
1635 | #: plugins/check_http.c:1792 | 1635 | #: plugins/check_http.c:1793 |
1636 | msgid "Search page for regex STRING" | 1636 | msgid "Search page for regex STRING" |
1637 | msgstr "" | 1637 | msgstr "" |
1638 | 1638 | ||
1639 | #: plugins/check_http.c:1794 | 1639 | #: plugins/check_http.c:1795 |
1640 | msgid "Search page for case-insensitive regex STRING" | 1640 | msgid "Search page for case-insensitive regex STRING" |
1641 | msgstr "" | 1641 | msgstr "" |
1642 | 1642 | ||
1643 | #: plugins/check_http.c:1796 | 1643 | #: plugins/check_http.c:1797 |
1644 | msgid "Return CRITICAL if found, OK if not\n" | 1644 | msgid "Return CRITICAL if found, OK if not\n" |
1645 | msgstr "" | 1645 | msgstr "" |
1646 | 1646 | ||
1647 | #: plugins/check_http.c:1799 | 1647 | #: plugins/check_http.c:1800 |
1648 | msgid "Username:password on sites with basic authentication" | 1648 | msgid "Username:password on sites with basic authentication" |
1649 | msgstr "" | 1649 | msgstr "" |
1650 | 1650 | ||
1651 | #: plugins/check_http.c:1801 | 1651 | #: plugins/check_http.c:1802 |
1652 | msgid "Username:password on proxy-servers with basic authentication" | 1652 | msgid "Username:password on proxy-servers with basic authentication" |
1653 | msgstr "" | 1653 | msgstr "" |
1654 | 1654 | ||
1655 | #: plugins/check_http.c:1803 | 1655 | #: plugins/check_http.c:1804 |
1656 | msgid "String to be sent in http header as \"User Agent\"" | 1656 | msgid "String to be sent in http header as \"User Agent\"" |
1657 | msgstr "" | 1657 | msgstr "" |
1658 | 1658 | ||
1659 | #: plugins/check_http.c:1805 | 1659 | #: plugins/check_http.c:1806 |
1660 | msgid "" | 1660 | msgid "" |
1661 | "Any other tags to be sent in http header. Use multiple times for additional " | 1661 | "Any other tags to be sent in http header. Use multiple times for additional " |
1662 | "headers" | 1662 | "headers" |
1663 | msgstr "" | 1663 | msgstr "" |
1664 | 1664 | ||
1665 | #: plugins/check_http.c:1807 | 1665 | #: plugins/check_http.c:1808 |
1666 | msgid "Print additional performance data" | 1666 | msgid "Print additional performance data" |
1667 | msgstr "" | 1667 | msgstr "" |
1668 | 1668 | ||
1669 | #: plugins/check_http.c:1809 | 1669 | #: plugins/check_http.c:1810 |
1670 | msgid "Print body content below status line" | 1670 | msgid "Print body content below status line" |
1671 | msgstr "" | 1671 | msgstr "" |
1672 | 1672 | ||
1673 | #: plugins/check_http.c:1811 | 1673 | #: plugins/check_http.c:1812 |
1674 | msgid "Wrap output in HTML link (obsoleted by urlize)" | 1674 | msgid "Wrap output in HTML link (obsoleted by urlize)" |
1675 | msgstr "" | 1675 | msgstr "" |
1676 | 1676 | ||
1677 | #: plugins/check_http.c:1813 | 1677 | #: plugins/check_http.c:1814 |
1678 | msgid "How to handle redirected pages. sticky is like follow but stick to the" | 1678 | msgid "How to handle redirected pages. sticky is like follow but stick to the" |
1679 | msgstr "" | 1679 | msgstr "" |
1680 | 1680 | ||
1681 | #: plugins/check_http.c:1814 | 1681 | #: plugins/check_http.c:1815 |
1682 | msgid "specified IP address. stickyport also ensures port stays the same." | 1682 | msgid "specified IP address. stickyport also ensures port stays the same." |
1683 | msgstr "" | 1683 | msgstr "" |
1684 | 1684 | ||
1685 | #: plugins/check_http.c:1816 | 1685 | #: plugins/check_http.c:1817 |
1686 | #, fuzzy | 1686 | #, fuzzy |
1687 | msgid "Maximal number of redirects (default: " | 1687 | msgid "Maximal number of redirects (default: " |
1688 | msgstr "Ungültige Portnummer" | 1688 | msgstr "Ungültige Portnummer" |
1689 | 1689 | ||
1690 | #: plugins/check_http.c:1819 | 1690 | #: plugins/check_http.c:1820 |
1691 | msgid "Minimum page size required (bytes) : Maximum page size required (bytes)" | 1691 | msgid "Minimum page size required (bytes) : Maximum page size required (bytes)" |
1692 | msgstr "" | 1692 | msgstr "" |
1693 | 1693 | ||
1694 | #: plugins/check_http.c:1828 | 1694 | #: plugins/check_http.c:1829 |
1695 | #, fuzzy | 1695 | #, fuzzy |
1696 | msgid "This plugin will attempt to open an HTTP connection with the host." | 1696 | msgid "This plugin will attempt to open an HTTP connection with the host." |
1697 | msgstr "Dieses plugin testet Gameserververbindungen zum angegebenen Host." | 1697 | msgstr "Dieses plugin testet Gameserververbindungen zum angegebenen Host." |
1698 | 1698 | ||
1699 | #: plugins/check_http.c:1829 | 1699 | #: plugins/check_http.c:1830 |
1700 | msgid "" | 1700 | msgid "" |
1701 | "Successful connects return STATE_OK, refusals and timeouts return " | 1701 | "Successful connects return STATE_OK, refusals and timeouts return " |
1702 | "STATE_CRITICAL" | 1702 | "STATE_CRITICAL" |
1703 | msgstr "" | 1703 | msgstr "" |
1704 | 1704 | ||
1705 | #: plugins/check_http.c:1830 | 1705 | #: plugins/check_http.c:1831 |
1706 | msgid "" | 1706 | msgid "" |
1707 | "other errors return STATE_UNKNOWN. Successful connects, but incorrect " | 1707 | "other errors return STATE_UNKNOWN. Successful connects, but incorrect " |
1708 | "response" | 1708 | "response" |
1709 | msgstr "" | 1709 | msgstr "" |
1710 | 1710 | ||
1711 | #: plugins/check_http.c:1831 | 1711 | #: plugins/check_http.c:1832 |
1712 | msgid "" | 1712 | msgid "" |
1713 | "messages from the host result in STATE_WARNING return values. If you are" | 1713 | "messages from the host result in STATE_WARNING return values. If you are" |
1714 | msgstr "" | 1714 | msgstr "" |
1715 | 1715 | ||
1716 | #: plugins/check_http.c:1832 | 1716 | #: plugins/check_http.c:1833 |
1717 | msgid "" | 1717 | msgid "" |
1718 | "checking a virtual server that uses 'host headers' you must supply the FQDN" | 1718 | "checking a virtual server that uses 'host headers' you must supply the FQDN" |
1719 | msgstr "" | 1719 | msgstr "" |
1720 | 1720 | ||
1721 | #: plugins/check_http.c:1833 | 1721 | #: plugins/check_http.c:1834 |
1722 | msgid "(fully qualified domain name) as the [host_name] argument." | 1722 | msgid "(fully qualified domain name) as the [host_name] argument." |
1723 | msgstr "" | 1723 | msgstr "" |
1724 | 1724 | ||
1725 | #: plugins/check_http.c:1837 | 1725 | #: plugins/check_http.c:1838 |
1726 | msgid "This plugin can also check whether an SSL enabled web server is able to" | 1726 | msgid "This plugin can also check whether an SSL enabled web server is able to" |
1727 | msgstr "" | 1727 | msgstr "" |
1728 | 1728 | ||
1729 | #: plugins/check_http.c:1838 | 1729 | #: plugins/check_http.c:1839 |
1730 | msgid "serve content (optionally within a specified time) or whether the X509 " | 1730 | msgid "serve content (optionally within a specified time) or whether the X509 " |
1731 | msgstr "" | 1731 | msgstr "" |
1732 | 1732 | ||
1733 | #: plugins/check_http.c:1839 | 1733 | #: plugins/check_http.c:1840 |
1734 | msgid "certificate is still valid for the specified number of days." | 1734 | msgid "certificate is still valid for the specified number of days." |
1735 | msgstr "" | 1735 | msgstr "" |
1736 | 1736 | ||
1737 | #: plugins/check_http.c:1841 | 1737 | #: plugins/check_http.c:1842 |
1738 | #, fuzzy | 1738 | #, fuzzy |
1739 | msgid "Please note that this plugin does not check if the presented server" | 1739 | msgid "Please note that this plugin does not check if the presented server" |
1740 | msgstr "" | 1740 | msgstr "" |
1741 | "Testet den DNS Dienst auf dem angegebenen Host mit dig\n" | 1741 | "Testet den DNS Dienst auf dem angegebenen Host mit dig\n" |
1742 | "\n" | 1742 | "\n" |
1743 | 1743 | ||
1744 | #: plugins/check_http.c:1842 | 1744 | #: plugins/check_http.c:1843 |
1745 | msgid "certificate matches the hostname of the server, or if the certificate" | 1745 | msgid "certificate matches the hostname of the server, or if the certificate" |
1746 | msgstr "" | 1746 | msgstr "" |
1747 | 1747 | ||
1748 | #: plugins/check_http.c:1843 | 1748 | #: plugins/check_http.c:1844 |
1749 | msgid "has a valid chain of trust to one of the locally installed CAs." | 1749 | msgid "has a valid chain of trust to one of the locally installed CAs." |
1750 | msgstr "" | 1750 | msgstr "" |
1751 | 1751 | ||
1752 | #: plugins/check_http.c:1847 | 1752 | #: plugins/check_http.c:1848 |
1753 | msgid "" | 1753 | msgid "" |
1754 | "When the 'www.verisign.com' server returns its content within 5 seconds," | 1754 | "When the 'www.verisign.com' server returns its content within 5 seconds," |
1755 | msgstr "" | 1755 | msgstr "" |
1756 | 1756 | ||
1757 | #: plugins/check_http.c:1848 plugins/check_http.c:1867 | 1757 | #: plugins/check_http.c:1849 plugins/check_http.c:1868 |
1758 | msgid "" | 1758 | msgid "" |
1759 | "a STATE_OK will be returned. When the server returns its content but exceeds" | 1759 | "a STATE_OK will be returned. When the server returns its content but exceeds" |
1760 | msgstr "" | 1760 | msgstr "" |
1761 | 1761 | ||
1762 | #: plugins/check_http.c:1849 plugins/check_http.c:1868 | 1762 | #: plugins/check_http.c:1850 plugins/check_http.c:1869 |
1763 | msgid "" | 1763 | msgid "" |
1764 | "the 5-second threshold, a STATE_WARNING will be returned. When an error " | 1764 | "the 5-second threshold, a STATE_WARNING will be returned. When an error " |
1765 | "occurs," | 1765 | "occurs," |
1766 | msgstr "" | 1766 | msgstr "" |
1767 | 1767 | ||
1768 | #: plugins/check_http.c:1850 | 1768 | #: plugins/check_http.c:1851 |
1769 | msgid "a STATE_CRITICAL will be returned." | 1769 | msgid "a STATE_CRITICAL will be returned." |
1770 | msgstr "" | 1770 | msgstr "" |
1771 | 1771 | ||
1772 | #: plugins/check_http.c:1853 | 1772 | #: plugins/check_http.c:1854 |
1773 | msgid "" | 1773 | msgid "" |
1774 | "When the certificate of 'www.verisign.com' is valid for more than 14 days," | 1774 | "When the certificate of 'www.verisign.com' is valid for more than 14 days," |
1775 | msgstr "" | 1775 | msgstr "" |
1776 | 1776 | ||
1777 | #: plugins/check_http.c:1854 plugins/check_http.c:1860 | 1777 | #: plugins/check_http.c:1855 plugins/check_http.c:1861 |
1778 | msgid "" | 1778 | msgid "" |
1779 | "a STATE_OK is returned. When the certificate is still valid, but for less " | 1779 | "a STATE_OK is returned. When the certificate is still valid, but for less " |
1780 | "than" | 1780 | "than" |
1781 | msgstr "" | 1781 | msgstr "" |
1782 | 1782 | ||
1783 | #: plugins/check_http.c:1855 | 1783 | #: plugins/check_http.c:1856 |
1784 | msgid "" | 1784 | msgid "" |
1785 | "14 days, a STATE_WARNING is returned. A STATE_CRITICAL will be returned when" | 1785 | "14 days, a STATE_WARNING is returned. A STATE_CRITICAL will be returned when" |
1786 | msgstr "" | 1786 | msgstr "" |
1787 | 1787 | ||
1788 | #: plugins/check_http.c:1856 | 1788 | #: plugins/check_http.c:1857 |
1789 | #, fuzzy | 1789 | #, fuzzy |
1790 | msgid "the certificate is expired." | 1790 | msgid "the certificate is expired." |
1791 | msgstr "Clientzertifikat benötigt\n" | 1791 | msgstr "Clientzertifikat benötigt\n" |
1792 | 1792 | ||
1793 | #: plugins/check_http.c:1859 | 1793 | #: plugins/check_http.c:1860 |
1794 | msgid "" | 1794 | msgid "" |
1795 | "When the certificate of 'www.verisign.com' is valid for more than 30 days," | 1795 | "When the certificate of 'www.verisign.com' is valid for more than 30 days," |
1796 | msgstr "" | 1796 | msgstr "" |
1797 | 1797 | ||
1798 | #: plugins/check_http.c:1861 | 1798 | #: plugins/check_http.c:1862 |
1799 | msgid "30 days, but more than 14 days, a STATE_WARNING is returned." | 1799 | msgid "30 days, but more than 14 days, a STATE_WARNING is returned." |
1800 | msgstr "" | 1800 | msgstr "" |
1801 | 1801 | ||
1802 | #: plugins/check_http.c:1862 | 1802 | #: plugins/check_http.c:1863 |
1803 | msgid "" | 1803 | msgid "" |
1804 | "A STATE_CRITICAL will be returned when certificate expires in less than 14 " | 1804 | "A STATE_CRITICAL will be returned when certificate expires in less than 14 " |
1805 | "days" | 1805 | "days" |
1806 | msgstr "" | 1806 | msgstr "" |
1807 | 1807 | ||
1808 | #: plugins/check_http.c:1865 | 1808 | #: plugins/check_http.c:1866 |
1809 | msgid "" | 1809 | msgid "" |
1810 | "check_http -I 192.168.100.35 -p 80 -u https://www.verisign.com/ -S -j " | 1810 | "check_http -I 192.168.100.35 -p 80 -u https://www.verisign.com/ -S -j " |
1811 | "CONNECT -H www.verisign.com " | 1811 | "CONNECT -H www.verisign.com " |
1812 | msgstr "" | 1812 | msgstr "" |
1813 | 1813 | ||
1814 | #: plugins/check_http.c:1866 | 1814 | #: plugins/check_http.c:1867 |
1815 | msgid "" | 1815 | msgid "" |
1816 | "all these options are needed: -I <proxy> -p <proxy-port> -u <check-url> -" | 1816 | "all these options are needed: -I <proxy> -p <proxy-port> -u <check-url> -" |
1817 | "S(sl) -j CONNECT -H <webserver>" | 1817 | "S(sl) -j CONNECT -H <webserver>" |
1818 | msgstr "" | 1818 | msgstr "" |
1819 | 1819 | ||
1820 | #: plugins/check_http.c:1869 | 1820 | #: plugins/check_http.c:1870 |
1821 | msgid "" | 1821 | msgid "" |
1822 | "a STATE_CRITICAL will be returned. By adding a colon to the method you can " | 1822 | "a STATE_CRITICAL will be returned. By adding a colon to the method you can " |
1823 | "set the method used" | 1823 | "set the method used" |
1824 | msgstr "" | 1824 | msgstr "" |
1825 | 1825 | ||
1826 | #: plugins/check_http.c:1870 | 1826 | #: plugins/check_http.c:1871 |
1827 | msgid "inside the proxied connection: -j CONNECT:POST" | 1827 | msgid "inside the proxied connection: -j CONNECT:POST" |
1828 | msgstr "" | 1828 | msgstr "" |
1829 | 1829 | ||
@@ -4568,7 +4568,7 @@ msgstr "" | |||
4568 | msgid "This plugin will attempt to open an RTSP connection with the host." | 4568 | msgid "This plugin will attempt to open an RTSP connection with the host." |
4569 | msgstr "Dieses plugin testet Gameserververbindungen zum angegebenen Host." | 4569 | msgstr "Dieses plugin testet Gameserververbindungen zum angegebenen Host." |
4570 | 4570 | ||
4571 | #: plugins/check_real.c:439 plugins/check_smtp.c:877 | 4571 | #: plugins/check_real.c:439 plugins/check_smtp.c:878 |
4572 | msgid "Successful connects return STATE_OK, refusals and timeouts return" | 4572 | msgid "Successful connects return STATE_OK, refusals and timeouts return" |
4573 | msgstr "" | 4573 | msgstr "" |
4574 | 4574 | ||
@@ -4634,7 +4634,7 @@ msgstr "Ungültige HTTP Antwort von Host empfangen\n" | |||
4634 | msgid "Invalid SMTP response received from host on port %d: %s\n" | 4634 | 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" | 4635 | msgstr "Ungültige HTTP Antwort von Host erhalten auf Port %d\n" |
4636 | 4636 | ||
4637 | #: plugins/check_smtp.c:322 plugins/check_snmp.c:865 | 4637 | #: plugins/check_smtp.c:322 plugins/check_snmp.c:866 |
4638 | #, c-format | 4638 | #, c-format |
4639 | msgid "Could Not Compile Regular Expression" | 4639 | msgid "Could Not Compile Regular Expression" |
4640 | msgstr "" | 4640 | msgstr "" |
@@ -4658,7 +4658,7 @@ msgid "no authpass specified, " | |||
4658 | msgstr "" | 4658 | msgstr "" |
4659 | 4659 | ||
4660 | #: plugins/check_smtp.c:361 plugins/check_smtp.c:382 plugins/check_smtp.c:402 | 4660 | #: plugins/check_smtp.c:361 plugins/check_smtp.c:382 plugins/check_smtp.c:402 |
4661 | #: plugins/check_smtp.c:727 | 4661 | #: plugins/check_smtp.c:728 |
4662 | #, c-format | 4662 | #, c-format |
4663 | msgid "sent %s\n" | 4663 | msgid "sent %s\n" |
4664 | msgstr "" | 4664 | msgstr "" |
@@ -4669,7 +4669,7 @@ msgid "recv() failed after AUTH LOGIN, " | |||
4669 | msgstr "Ungültige HTTP Antwort von Host empfangen\n" | 4669 | msgstr "Ungültige HTTP Antwort von Host empfangen\n" |
4670 | 4670 | ||
4671 | #: plugins/check_smtp.c:369 plugins/check_smtp.c:390 plugins/check_smtp.c:410 | 4671 | #: plugins/check_smtp.c:369 plugins/check_smtp.c:390 plugins/check_smtp.c:410 |
4672 | #: plugins/check_smtp.c:738 | 4672 | #: plugins/check_smtp.c:739 |
4673 | #, fuzzy, c-format | 4673 | #, fuzzy, c-format |
4674 | msgid "received %s\n" | 4674 | msgid "received %s\n" |
4675 | msgstr "Keine Daten empfangen %s\n" | 4675 | msgstr "Keine Daten empfangen %s\n" |
@@ -4721,92 +4721,92 @@ msgstr "Critical time muss ein positiver Integer sein" | |||
4721 | msgid "Warning time must be a positive" | 4721 | msgid "Warning time must be a positive" |
4722 | msgstr "Warnung time muss ein positiver Integer sein" | 4722 | msgstr "Warnung time muss ein positiver Integer sein" |
4723 | 4723 | ||
4724 | #: plugins/check_smtp.c:633 plugins/check_smtp.c:644 | 4724 | #: plugins/check_smtp.c:633 plugins/check_smtp.c:645 |
4725 | msgid "SSL support not available - install OpenSSL and recompile" | 4725 | msgid "SSL support not available - install OpenSSL and recompile" |
4726 | msgstr "" | 4726 | msgstr "" |
4727 | 4727 | ||
4728 | #: plugins/check_smtp.c:718 plugins/check_smtp.c:723 | 4728 | #: plugins/check_smtp.c:719 plugins/check_smtp.c:724 |
4729 | #, c-format | 4729 | #, c-format |
4730 | msgid "Connection closed by server before sending QUIT command\n" | 4730 | msgid "Connection closed by server before sending QUIT command\n" |
4731 | msgstr "" | 4731 | msgstr "" |
4732 | 4732 | ||
4733 | #: plugins/check_smtp.c:733 | 4733 | #: plugins/check_smtp.c:734 |
4734 | #, fuzzy, c-format | 4734 | #, fuzzy, c-format |
4735 | msgid "recv() failed after QUIT." | 4735 | msgid "recv() failed after QUIT." |
4736 | msgstr "Ungültige HTTP Antwort von Host empfangen\n" | 4736 | msgstr "Ungültige HTTP Antwort von Host empfangen\n" |
4737 | 4737 | ||
4738 | #: plugins/check_smtp.c:735 | 4738 | #: plugins/check_smtp.c:736 |
4739 | #, c-format | 4739 | #, c-format |
4740 | msgid "Connection reset by peer." | 4740 | msgid "Connection reset by peer." |
4741 | msgstr "" | 4741 | msgstr "" |
4742 | 4742 | ||
4743 | #: plugins/check_smtp.c:825 | 4743 | #: plugins/check_smtp.c:826 |
4744 | #, fuzzy | 4744 | #, fuzzy |
4745 | msgid "This plugin will attempt to open an SMTP connection with the host." | 4745 | msgid "This plugin will attempt to open an SMTP connection with the host." |
4746 | msgstr "Dieses plugin testet Gameserververbindungen zum angegebenen Host." | 4746 | msgstr "Dieses plugin testet Gameserververbindungen zum angegebenen Host." |
4747 | 4747 | ||
4748 | #: plugins/check_smtp.c:839 | 4748 | #: plugins/check_smtp.c:840 |
4749 | #, c-format | 4749 | #, c-format |
4750 | msgid " String to expect in first line of server response (default: '%s')\n" | 4750 | msgid " String to expect in first line of server response (default: '%s')\n" |
4751 | msgstr "" | 4751 | msgstr "" |
4752 | 4752 | ||
4753 | #: plugins/check_smtp.c:841 | 4753 | #: plugins/check_smtp.c:842 |
4754 | msgid "SMTP command (may be used repeatedly)" | 4754 | msgid "SMTP command (may be used repeatedly)" |
4755 | msgstr "" | 4755 | msgstr "" |
4756 | 4756 | ||
4757 | #: plugins/check_smtp.c:843 | 4757 | #: plugins/check_smtp.c:844 |
4758 | msgid "Expected response to command (may be used repeatedly)" | 4758 | msgid "Expected response to command (may be used repeatedly)" |
4759 | msgstr "" | 4759 | msgstr "" |
4760 | 4760 | ||
4761 | #: plugins/check_smtp.c:845 | 4761 | #: plugins/check_smtp.c:846 |
4762 | msgid "FROM-address to include in MAIL command, required by Exchange 2000" | 4762 | msgid "FROM-address to include in MAIL command, required by Exchange 2000" |
4763 | msgstr "" | 4763 | msgstr "" |
4764 | 4764 | ||
4765 | #: plugins/check_smtp.c:847 | 4765 | #: plugins/check_smtp.c:848 |
4766 | msgid "FQDN used for HELO" | 4766 | msgid "FQDN used for HELO" |
4767 | msgstr "" | 4767 | msgstr "" |
4768 | 4768 | ||
4769 | #: plugins/check_smtp.c:849 | 4769 | #: plugins/check_smtp.c:850 |
4770 | msgid "Use PROXY protocol prefix for the connection." | 4770 | msgid "Use PROXY protocol prefix for the connection." |
4771 | msgstr "Benutze PROXY-Protokoll-Präfix für die Verbindung." | 4771 | msgstr "Benutze PROXY-Protokoll-Präfix für die Verbindung." |
4772 | 4772 | ||
4773 | #: plugins/check_smtp.c:852 plugins/check_tcp.c:689 | 4773 | #: plugins/check_smtp.c:853 plugins/check_tcp.c:689 |
4774 | msgid "Minimum number of days a certificate has to be valid." | 4774 | msgid "Minimum number of days a certificate has to be valid." |
4775 | msgstr "" | 4775 | msgstr "" |
4776 | 4776 | ||
4777 | #: plugins/check_smtp.c:854 | 4777 | #: plugins/check_smtp.c:855 |
4778 | msgid "Use STARTTLS for the connection." | 4778 | msgid "Use STARTTLS for the connection." |
4779 | msgstr "" | 4779 | msgstr "" |
4780 | 4780 | ||
4781 | #: plugins/check_smtp.c:860 | 4781 | #: plugins/check_smtp.c:861 |
4782 | msgid "SMTP AUTH type to check (default none, only LOGIN supported)" | 4782 | msgid "SMTP AUTH type to check (default none, only LOGIN supported)" |
4783 | msgstr "" | 4783 | msgstr "" |
4784 | 4784 | ||
4785 | #: plugins/check_smtp.c:862 | 4785 | #: plugins/check_smtp.c:863 |
4786 | msgid "SMTP AUTH username" | 4786 | msgid "SMTP AUTH username" |
4787 | msgstr "" | 4787 | msgstr "" |
4788 | 4788 | ||
4789 | #: plugins/check_smtp.c:864 | 4789 | #: plugins/check_smtp.c:865 |
4790 | msgid "SMTP AUTH password" | 4790 | msgid "SMTP AUTH password" |
4791 | msgstr "" | 4791 | msgstr "" |
4792 | 4792 | ||
4793 | #: plugins/check_smtp.c:866 | 4793 | #: plugins/check_smtp.c:867 |
4794 | msgid "Send LHLO instead of HELO/EHLO" | 4794 | msgid "Send LHLO instead of HELO/EHLO" |
4795 | msgstr "" | 4795 | msgstr "" |
4796 | 4796 | ||
4797 | #: plugins/check_smtp.c:868 | 4797 | #: plugins/check_smtp.c:869 |
4798 | msgid "Ignore failure when sending QUIT command to server" | 4798 | msgid "Ignore failure when sending QUIT command to server" |
4799 | msgstr "" | 4799 | msgstr "" |
4800 | 4800 | ||
4801 | #: plugins/check_smtp.c:878 | 4801 | #: plugins/check_smtp.c:879 |
4802 | msgid "STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful" | 4802 | msgid "STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful" |
4803 | msgstr "" | 4803 | msgstr "" |
4804 | 4804 | ||
4805 | #: plugins/check_smtp.c:879 | 4805 | #: plugins/check_smtp.c:880 |
4806 | msgid "connects, but incorrect response messages from the host result in" | 4806 | msgid "connects, but incorrect response messages from the host result in" |
4807 | msgstr "" | 4807 | msgstr "" |
4808 | 4808 | ||
4809 | #: plugins/check_smtp.c:880 | 4809 | #: plugins/check_smtp.c:881 |
4810 | msgid "STATE_WARNING return values." | 4810 | msgid "STATE_WARNING return values." |
4811 | msgstr "" | 4811 | msgstr "" |
4812 | 4812 | ||
@@ -4856,318 +4856,318 @@ msgstr "Time interval muss ein positiver Integer sein" | |||
4856 | msgid "Exit status must be a positive integer" | 4856 | msgid "Exit status must be a positive integer" |
4857 | msgstr "Maxbytes muss ein positiver Integer sein" | 4857 | msgstr "Maxbytes muss ein positiver Integer sein" |
4858 | 4858 | ||
4859 | #: plugins/check_snmp.c:890 | 4859 | #: plugins/check_snmp.c:891 |
4860 | #, fuzzy, c-format | 4860 | #, fuzzy, c-format |
4861 | msgid "Could not reallocate labels[%d]" | 4861 | msgid "Could not reallocate labels[%d]" |
4862 | msgstr "Konnte addr nicht zuweisen\n" | 4862 | msgstr "Konnte addr nicht zuweisen\n" |
4863 | 4863 | ||
4864 | #: plugins/check_snmp.c:903 | 4864 | #: plugins/check_snmp.c:904 |
4865 | #, fuzzy | 4865 | #, fuzzy |
4866 | msgid "Could not reallocate labels\n" | 4866 | msgid "Could not reallocate labels\n" |
4867 | msgstr "Konnte·url·nicht·zuweisen\n" | 4867 | msgstr "Konnte·url·nicht·zuweisen\n" |
4868 | 4868 | ||
4869 | #: plugins/check_snmp.c:919 | 4869 | #: plugins/check_snmp.c:920 |
4870 | #, fuzzy, c-format | 4870 | #, fuzzy, c-format |
4871 | msgid "Could not reallocate units [%d]\n" | 4871 | msgid "Could not reallocate units [%d]\n" |
4872 | msgstr "Konnte·url·nicht·zuweisen\n" | 4872 | msgstr "Konnte·url·nicht·zuweisen\n" |
4873 | 4873 | ||
4874 | #: plugins/check_snmp.c:931 | 4874 | #: plugins/check_snmp.c:932 |
4875 | msgid "Could not realloc() units\n" | 4875 | msgid "Could not realloc() units\n" |
4876 | msgstr "" | 4876 | msgstr "" |
4877 | 4877 | ||
4878 | #: plugins/check_snmp.c:948 | 4878 | #: plugins/check_snmp.c:949 |
4879 | #, fuzzy | 4879 | #, fuzzy |
4880 | msgid "Rate multiplier must be a positive integer" | 4880 | msgid "Rate multiplier must be a positive integer" |
4881 | msgstr "Paketgröße muss ein positiver Integer sein" | 4881 | msgstr "Paketgröße muss ein positiver Integer sein" |
4882 | 4882 | ||
4883 | #: plugins/check_snmp.c:1023 | 4883 | #: plugins/check_snmp.c:1024 |
4884 | #, fuzzy | 4884 | #, fuzzy |
4885 | msgid "No host specified\n" | 4885 | msgid "No host specified\n" |
4886 | msgstr "" | 4886 | msgstr "" |
4887 | "Kein Hostname angegeben\n" | 4887 | "Kein Hostname angegeben\n" |
4888 | "\n" | 4888 | "\n" |
4889 | 4889 | ||
4890 | #: plugins/check_snmp.c:1027 | 4890 | #: plugins/check_snmp.c:1028 |
4891 | #, fuzzy | 4891 | #, fuzzy |
4892 | msgid "No OIDs specified\n" | 4892 | msgid "No OIDs specified\n" |
4893 | msgstr "" | 4893 | msgstr "" |
4894 | "Kein Hostname angegeben\n" | 4894 | "Kein Hostname angegeben\n" |
4895 | "\n" | 4895 | "\n" |
4896 | 4896 | ||
4897 | #: plugins/check_snmp.c:1050 plugins/check_snmp.c:1068 | 4897 | #: plugins/check_snmp.c:1051 plugins/check_snmp.c:1069 |
4898 | #: plugins/check_snmp.c:1086 | 4898 | #: plugins/check_snmp.c:1087 |
4899 | #, c-format | 4899 | #, c-format |
4900 | msgid "Required parameter: %s\n" | 4900 | msgid "Required parameter: %s\n" |
4901 | msgstr "" | 4901 | msgstr "" |
4902 | 4902 | ||
4903 | #: plugins/check_snmp.c:1061 | 4903 | #: plugins/check_snmp.c:1062 |
4904 | msgid "Invalid seclevel" | 4904 | msgid "Invalid seclevel" |
4905 | msgstr "" | 4905 | msgstr "" |
4906 | 4906 | ||
4907 | #: plugins/check_snmp.c:1107 | 4907 | #: plugins/check_snmp.c:1108 |
4908 | msgid "Invalid SNMP version" | 4908 | msgid "Invalid SNMP version" |
4909 | msgstr "" | 4909 | msgstr "" |
4910 | 4910 | ||
4911 | #: plugins/check_snmp.c:1124 | 4911 | #: plugins/check_snmp.c:1125 |
4912 | msgid "Unbalanced quotes\n" | 4912 | msgid "Unbalanced quotes\n" |
4913 | msgstr "" | 4913 | msgstr "" |
4914 | 4914 | ||
4915 | #: plugins/check_snmp.c:1182 | 4915 | #: plugins/check_snmp.c:1183 |
4916 | #, c-format | 4916 | #, c-format |
4917 | msgid "multiplier set (%.1f), but input is not a number: %s" | 4917 | msgid "multiplier set (%.1f), but input is not a number: %s" |
4918 | msgstr "" | 4918 | msgstr "" |
4919 | 4919 | ||
4920 | #: plugins/check_snmp.c:1211 | 4920 | #: plugins/check_snmp.c:1212 |
4921 | msgid "Check status of remote machines and obtain system information via SNMP" | 4921 | msgid "Check status of remote machines and obtain system information via SNMP" |
4922 | msgstr "" | 4922 | msgstr "" |
4923 | 4923 | ||
4924 | #: plugins/check_snmp.c:1225 | 4924 | #: plugins/check_snmp.c:1226 |
4925 | msgid "Use SNMP GETNEXT instead of SNMP GET" | 4925 | msgid "Use SNMP GETNEXT instead of SNMP GET" |
4926 | msgstr "" | 4926 | msgstr "" |
4927 | 4927 | ||
4928 | #: plugins/check_snmp.c:1227 | 4928 | #: plugins/check_snmp.c:1228 |
4929 | msgid "SNMP protocol version" | 4929 | msgid "SNMP protocol version" |
4930 | msgstr "" | 4930 | msgstr "" |
4931 | 4931 | ||
4932 | #: plugins/check_snmp.c:1229 | 4932 | #: plugins/check_snmp.c:1230 |
4933 | msgid "SNMPv3 context" | 4933 | msgid "SNMPv3 context" |
4934 | msgstr "" | 4934 | msgstr "" |
4935 | 4935 | ||
4936 | #: plugins/check_snmp.c:1231 | 4936 | #: plugins/check_snmp.c:1232 |
4937 | msgid "SNMPv3 securityLevel" | 4937 | msgid "SNMPv3 securityLevel" |
4938 | msgstr "" | 4938 | msgstr "" |
4939 | 4939 | ||
4940 | #: plugins/check_snmp.c:1233 | 4940 | #: plugins/check_snmp.c:1234 |
4941 | msgid "SNMPv3 auth proto" | 4941 | msgid "SNMPv3 auth proto" |
4942 | msgstr "" | 4942 | msgstr "" |
4943 | 4943 | ||
4944 | #: plugins/check_snmp.c:1235 | 4944 | #: plugins/check_snmp.c:1236 |
4945 | msgid "SNMPv3 priv proto (default DES)" | 4945 | msgid "SNMPv3 priv proto (default DES)" |
4946 | msgstr "" | 4946 | msgstr "" |
4947 | 4947 | ||
4948 | #: plugins/check_snmp.c:1239 | 4948 | #: plugins/check_snmp.c:1240 |
4949 | msgid "Optional community string for SNMP communication" | 4949 | msgid "Optional community string for SNMP communication" |
4950 | msgstr "" | 4950 | msgstr "" |
4951 | 4951 | ||
4952 | #: plugins/check_snmp.c:1240 | 4952 | #: plugins/check_snmp.c:1241 |
4953 | msgid "default is" | 4953 | msgid "default is" |
4954 | msgstr "" | 4954 | msgstr "" |
4955 | 4955 | ||
4956 | #: plugins/check_snmp.c:1242 | 4956 | #: plugins/check_snmp.c:1243 |
4957 | msgid "SNMPv3 username" | 4957 | msgid "SNMPv3 username" |
4958 | msgstr "" | 4958 | msgstr "" |
4959 | 4959 | ||
4960 | #: plugins/check_snmp.c:1244 | 4960 | #: plugins/check_snmp.c:1245 |
4961 | msgid "SNMPv3 authentication password" | 4961 | msgid "SNMPv3 authentication password" |
4962 | msgstr "" | 4962 | msgstr "" |
4963 | 4963 | ||
4964 | #: plugins/check_snmp.c:1246 | 4964 | #: plugins/check_snmp.c:1247 |
4965 | msgid "SNMPv3 privacy password" | 4965 | msgid "SNMPv3 privacy password" |
4966 | msgstr "" | 4966 | msgstr "" |
4967 | 4967 | ||
4968 | #: plugins/check_snmp.c:1250 | 4968 | #: plugins/check_snmp.c:1251 |
4969 | msgid "Object identifier(s) or SNMP variables whose value you wish to query" | 4969 | msgid "Object identifier(s) or SNMP variables whose value you wish to query" |
4970 | msgstr "" | 4970 | msgstr "" |
4971 | 4971 | ||
4972 | #: plugins/check_snmp.c:1252 | 4972 | #: plugins/check_snmp.c:1253 |
4973 | msgid "" | 4973 | msgid "" |
4974 | "List of MIBS to be loaded (default = none if using numeric OIDs or 'ALL'" | 4974 | "List of MIBS to be loaded (default = none if using numeric OIDs or 'ALL'" |
4975 | msgstr "" | 4975 | msgstr "" |
4976 | 4976 | ||
4977 | #: plugins/check_snmp.c:1253 | 4977 | #: plugins/check_snmp.c:1254 |
4978 | msgid "for symbolic OIDs.)" | 4978 | msgid "for symbolic OIDs.)" |
4979 | msgstr "" | 4979 | msgstr "" |
4980 | 4980 | ||
4981 | #: plugins/check_snmp.c:1255 | 4981 | #: plugins/check_snmp.c:1256 |
4982 | msgid "Delimiter to use when parsing returned data. Default is" | 4982 | msgid "Delimiter to use when parsing returned data. Default is" |
4983 | msgstr "" | 4983 | msgstr "" |
4984 | 4984 | ||
4985 | #: plugins/check_snmp.c:1256 | 4985 | #: plugins/check_snmp.c:1257 |
4986 | msgid "Any data on the right hand side of the delimiter is considered" | 4986 | msgid "Any data on the right hand side of the delimiter is considered" |
4987 | msgstr "" | 4987 | msgstr "" |
4988 | 4988 | ||
4989 | #: plugins/check_snmp.c:1257 | 4989 | #: plugins/check_snmp.c:1258 |
4990 | msgid "to be the data that should be used in the evaluation." | 4990 | msgid "to be the data that should be used in the evaluation." |
4991 | msgstr "" | 4991 | msgstr "" |
4992 | 4992 | ||
4993 | #: plugins/check_snmp.c:1259 | 4993 | #: plugins/check_snmp.c:1260 |
4994 | msgid "If the check returns a 0 length string or NULL value" | 4994 | msgid "If the check returns a 0 length string or NULL value" |
4995 | msgstr "" | 4995 | msgstr "" |
4996 | 4996 | ||
4997 | #: plugins/check_snmp.c:1260 | 4997 | #: plugins/check_snmp.c:1261 |
4998 | msgid "This option allows you to choose what status you want it to exit" | 4998 | msgid "This option allows you to choose what status you want it to exit" |
4999 | msgstr "" | 4999 | msgstr "" |
5000 | 5000 | ||
5001 | #: plugins/check_snmp.c:1261 | 5001 | #: plugins/check_snmp.c:1262 |
5002 | msgid "Excluding this option renders the default exit of 3(STATE_UNKNOWN)" | 5002 | msgid "Excluding this option renders the default exit of 3(STATE_UNKNOWN)" |
5003 | msgstr "" | 5003 | msgstr "" |
5004 | 5004 | ||
5005 | #: plugins/check_snmp.c:1262 | 5005 | #: plugins/check_snmp.c:1263 |
5006 | msgid "0 = OK" | 5006 | msgid "0 = OK" |
5007 | msgstr "" | 5007 | msgstr "" |
5008 | 5008 | ||
5009 | #: plugins/check_snmp.c:1263 | 5009 | #: plugins/check_snmp.c:1264 |
5010 | #, fuzzy | 5010 | #, fuzzy |
5011 | msgid "1 = WARNING" | 5011 | msgid "1 = WARNING" |
5012 | msgstr "WARNING" | 5012 | msgstr "WARNING" |
5013 | 5013 | ||
5014 | #: plugins/check_snmp.c:1264 | 5014 | #: plugins/check_snmp.c:1265 |
5015 | #, fuzzy | 5015 | #, fuzzy |
5016 | msgid "2 = CRITICAL" | 5016 | msgid "2 = CRITICAL" |
5017 | msgstr "CRITICAL" | 5017 | msgstr "CRITICAL" |
5018 | 5018 | ||
5019 | #: plugins/check_snmp.c:1265 | 5019 | #: plugins/check_snmp.c:1266 |
5020 | #, fuzzy | 5020 | #, fuzzy |
5021 | msgid "3 = UNKNOWN" | 5021 | msgid "3 = UNKNOWN" |
5022 | msgstr "UNKNOWN" | 5022 | msgstr "UNKNOWN" |
5023 | 5023 | ||
5024 | #: plugins/check_snmp.c:1269 | 5024 | #: plugins/check_snmp.c:1270 |
5025 | #, fuzzy | 5025 | #, fuzzy |
5026 | msgid "Warning threshold range(s)" | 5026 | msgid "Warning threshold range(s)" |
5027 | msgstr "Warning threshold Integer sein" | 5027 | msgstr "Warning threshold Integer sein" |
5028 | 5028 | ||
5029 | #: plugins/check_snmp.c:1271 | 5029 | #: plugins/check_snmp.c:1272 |
5030 | #, fuzzy | 5030 | #, fuzzy |
5031 | msgid "Critical threshold range(s)" | 5031 | msgid "Critical threshold range(s)" |
5032 | msgstr "Critical threshold muss ein Integer sein" | 5032 | msgstr "Critical threshold muss ein Integer sein" |
5033 | 5033 | ||
5034 | #: plugins/check_snmp.c:1273 | 5034 | #: plugins/check_snmp.c:1274 |
5035 | msgid "Enable rate calculation. See 'Rate Calculation' below" | 5035 | msgid "Enable rate calculation. See 'Rate Calculation' below" |
5036 | msgstr "" | 5036 | msgstr "" |
5037 | 5037 | ||
5038 | #: plugins/check_snmp.c:1275 | 5038 | #: plugins/check_snmp.c:1276 |
5039 | msgid "" | 5039 | msgid "" |
5040 | "Converts rate per second. For example, set to 60 to convert to per minute" | 5040 | "Converts rate per second. For example, set to 60 to convert to per minute" |
5041 | msgstr "" | 5041 | msgstr "" |
5042 | 5042 | ||
5043 | #: plugins/check_snmp.c:1277 | 5043 | #: plugins/check_snmp.c:1278 |
5044 | msgid "Add/subtract the specified OFFSET to numeric sensor data" | 5044 | msgid "Add/subtract the specified OFFSET to numeric sensor data" |
5045 | msgstr "" | 5045 | msgstr "" |
5046 | 5046 | ||
5047 | #: plugins/check_snmp.c:1281 | 5047 | #: plugins/check_snmp.c:1282 |
5048 | msgid "Return OK state (for that OID) if STRING is an exact match" | 5048 | msgid "Return OK state (for that OID) if STRING is an exact match" |
5049 | msgstr "" | 5049 | msgstr "" |
5050 | 5050 | ||
5051 | #: plugins/check_snmp.c:1283 | 5051 | #: plugins/check_snmp.c:1284 |
5052 | msgid "" | 5052 | msgid "" |
5053 | "Return OK state (for that OID) if extended regular expression REGEX matches" | 5053 | "Return OK state (for that OID) if extended regular expression REGEX matches" |
5054 | msgstr "" | 5054 | msgstr "" |
5055 | 5055 | ||
5056 | #: plugins/check_snmp.c:1285 | 5056 | #: plugins/check_snmp.c:1286 |
5057 | msgid "" | 5057 | msgid "" |
5058 | "Return OK state (for that OID) if case-insensitive extended REGEX matches" | 5058 | "Return OK state (for that OID) if case-insensitive extended REGEX matches" |
5059 | msgstr "" | 5059 | msgstr "" |
5060 | 5060 | ||
5061 | #: plugins/check_snmp.c:1287 | 5061 | #: plugins/check_snmp.c:1288 |
5062 | msgid "Invert search result (CRITICAL if found)" | 5062 | msgid "Invert search result (CRITICAL if found)" |
5063 | msgstr "" | 5063 | msgstr "" |
5064 | 5064 | ||
5065 | #: plugins/check_snmp.c:1291 | 5065 | #: plugins/check_snmp.c:1292 |
5066 | msgid "Prefix label for output from plugin" | 5066 | msgid "Prefix label for output from plugin" |
5067 | msgstr "" | 5067 | msgstr "" |
5068 | 5068 | ||
5069 | #: plugins/check_snmp.c:1293 | 5069 | #: plugins/check_snmp.c:1294 |
5070 | msgid "Units label(s) for output data (e.g., 'sec.')." | 5070 | msgid "Units label(s) for output data (e.g., 'sec.')." |
5071 | msgstr "" | 5071 | msgstr "" |
5072 | 5072 | ||
5073 | #: plugins/check_snmp.c:1295 | 5073 | #: plugins/check_snmp.c:1296 |
5074 | msgid "Separates output on multiple OID requests" | 5074 | msgid "Separates output on multiple OID requests" |
5075 | msgstr "" | 5075 | msgstr "" |
5076 | 5076 | ||
5077 | #: plugins/check_snmp.c:1297 | 5077 | #: plugins/check_snmp.c:1298 |
5078 | msgid "Multiplies current value, 0 < n < 1 works as divider, defaults to 1" | 5078 | msgid "Multiplies current value, 0 < n < 1 works as divider, defaults to 1" |
5079 | msgstr "" | 5079 | msgstr "" |
5080 | 5080 | ||
5081 | #: plugins/check_snmp.c:1299 | 5081 | #: plugins/check_snmp.c:1300 |
5082 | msgid "C-style format string for float values (see option -M)" | 5082 | msgid "C-style format string for float values (see option -M)" |
5083 | msgstr "" | 5083 | msgstr "" |
5084 | 5084 | ||
5085 | #: plugins/check_snmp.c:1302 | 5085 | #: plugins/check_snmp.c:1303 |
5086 | msgid "" | 5086 | msgid "" |
5087 | "NOTE the final timeout value is calculated using this formula: " | 5087 | "NOTE the final timeout value is calculated using this formula: " |
5088 | "timeout_interval * retries + 5" | 5088 | "timeout_interval * retries + 5" |
5089 | msgstr "" | 5089 | msgstr "" |
5090 | 5090 | ||
5091 | #: plugins/check_snmp.c:1304 | 5091 | #: plugins/check_snmp.c:1305 |
5092 | msgid "Number of retries to be used in the requests, default: " | 5092 | msgid "Number of retries to be used in the requests, default: " |
5093 | msgstr "" | 5093 | msgstr "" |
5094 | 5094 | ||
5095 | #: plugins/check_snmp.c:1307 | 5095 | #: plugins/check_snmp.c:1308 |
5096 | msgid "Label performance data with OIDs instead of --label's" | 5096 | msgid "Label performance data with OIDs instead of --label's" |
5097 | msgstr "" | 5097 | msgstr "" |
5098 | 5098 | ||
5099 | #: plugins/check_snmp.c:1312 | 5099 | #: plugins/check_snmp.c:1313 |
5100 | msgid "" | 5100 | msgid "" |
5101 | "This plugin uses the 'snmpget' command included with the NET-SNMP package." | 5101 | "This plugin uses the 'snmpget' command included with the NET-SNMP package." |
5102 | msgstr "" | 5102 | msgstr "" |
5103 | 5103 | ||
5104 | #: plugins/check_snmp.c:1313 | 5104 | #: plugins/check_snmp.c:1314 |
5105 | msgid "" | 5105 | msgid "" |
5106 | "if you don't have the package installed, you will need to download it from" | 5106 | "if you don't have the package installed, you will need to download it from" |
5107 | msgstr "" | 5107 | msgstr "" |
5108 | 5108 | ||
5109 | #: plugins/check_snmp.c:1314 | 5109 | #: plugins/check_snmp.c:1315 |
5110 | msgid "http://net-snmp.sourceforge.net before you can use this plugin." | 5110 | msgid "http://net-snmp.sourceforge.net before you can use this plugin." |
5111 | msgstr "" | 5111 | msgstr "" |
5112 | 5112 | ||
5113 | #: plugins/check_snmp.c:1318 | 5113 | #: plugins/check_snmp.c:1319 |
5114 | msgid "" | 5114 | msgid "" |
5115 | "- Multiple OIDs (and labels) may be indicated by a comma or space-delimited " | 5115 | "- Multiple OIDs (and labels) may be indicated by a comma or space-delimited " |
5116 | msgstr "" | 5116 | msgstr "" |
5117 | 5117 | ||
5118 | #: plugins/check_snmp.c:1319 | 5118 | #: plugins/check_snmp.c:1320 |
5119 | msgid "list (lists with internal spaces must be quoted)." | 5119 | msgid "list (lists with internal spaces must be quoted)." |
5120 | msgstr "" | 5120 | msgstr "" |
5121 | 5121 | ||
5122 | #: plugins/check_snmp.c:1323 | 5122 | #: plugins/check_snmp.c:1324 |
5123 | msgid "" | 5123 | msgid "" |
5124 | "- When checking multiple OIDs, separate ranges by commas like '-w " | 5124 | "- When checking multiple OIDs, separate ranges by commas like '-w " |
5125 | "1:10,1:,:20'" | 5125 | "1:10,1:,:20'" |
5126 | msgstr "" | 5126 | msgstr "" |
5127 | 5127 | ||
5128 | #: plugins/check_snmp.c:1324 | 5128 | #: plugins/check_snmp.c:1325 |
5129 | msgid "- Note that only one string and one regex may be checked at present" | 5129 | msgid "- Note that only one string and one regex may be checked at present" |
5130 | msgstr "" | 5130 | msgstr "" |
5131 | 5131 | ||
5132 | #: plugins/check_snmp.c:1325 | 5132 | #: plugins/check_snmp.c:1326 |
5133 | msgid "" | 5133 | msgid "" |
5134 | "- All evaluation methods other than PR, STR, and SUBSTR expect that the value" | 5134 | "- All evaluation methods other than PR, STR, and SUBSTR expect that the value" |
5135 | msgstr "" | 5135 | msgstr "" |
5136 | 5136 | ||
5137 | #: plugins/check_snmp.c:1326 | 5137 | #: plugins/check_snmp.c:1327 |
5138 | msgid "returned from the SNMP query is an unsigned integer." | 5138 | msgid "returned from the SNMP query is an unsigned integer." |
5139 | msgstr "" | 5139 | msgstr "" |
5140 | 5140 | ||
5141 | #: plugins/check_snmp.c:1329 | 5141 | #: plugins/check_snmp.c:1330 |
5142 | msgid "Rate Calculation:" | 5142 | msgid "Rate Calculation:" |
5143 | msgstr "" | 5143 | msgstr "" |
5144 | 5144 | ||
5145 | #: plugins/check_snmp.c:1330 | 5145 | #: plugins/check_snmp.c:1331 |
5146 | msgid "In many places, SNMP returns counters that are only meaningful when" | 5146 | msgid "In many places, SNMP returns counters that are only meaningful when" |
5147 | msgstr "" | 5147 | msgstr "" |
5148 | 5148 | ||
5149 | #: plugins/check_snmp.c:1331 | 5149 | #: plugins/check_snmp.c:1332 |
5150 | msgid "calculating the counter difference since the last check. check_snmp" | 5150 | msgid "calculating the counter difference since the last check. check_snmp" |
5151 | msgstr "" | 5151 | msgstr "" |
5152 | 5152 | ||
5153 | #: plugins/check_snmp.c:1332 | 5153 | #: plugins/check_snmp.c:1333 |
5154 | msgid "saves the last state information in a file so that the rate per second" | 5154 | msgid "saves the last state information in a file so that the rate per second" |
5155 | msgstr "" | 5155 | msgstr "" |
5156 | 5156 | ||
5157 | #: plugins/check_snmp.c:1333 | 5157 | #: plugins/check_snmp.c:1334 |
5158 | msgid "can be calculated. Use the --rate option to save state information." | 5158 | msgid "can be calculated. Use the --rate option to save state information." |
5159 | msgstr "" | 5159 | msgstr "" |
5160 | 5160 | ||
5161 | #: plugins/check_snmp.c:1334 | 5161 | #: plugins/check_snmp.c:1335 |
5162 | msgid "" | 5162 | msgid "" |
5163 | "On the first run, there will be no prior state - this will return with OK." | 5163 | "On the first run, there will be no prior state - this will return with OK." |
5164 | msgstr "" | 5164 | msgstr "" |
5165 | 5165 | ||
5166 | #: plugins/check_snmp.c:1335 | 5166 | #: plugins/check_snmp.c:1336 |
5167 | msgid "The state is uniquely determined by the arguments to the plugin, so" | 5167 | msgid "The state is uniquely determined by the arguments to the plugin, so" |
5168 | msgstr "" | 5168 | msgstr "" |
5169 | 5169 | ||
5170 | #: plugins/check_snmp.c:1336 | 5170 | #: plugins/check_snmp.c:1337 |
5171 | msgid "changing the arguments will create a new state file." | 5171 | msgid "changing the arguments will create a new state file." |
5172 | msgstr "" | 5172 | msgstr "" |
5173 | 5173 | ||
@@ -6518,89 +6518,89 @@ msgstr "" | |||
6518 | msgid "Unicast testing: mimic a DHCP relay, requires -s" | 6518 | msgid "Unicast testing: mimic a DHCP relay, requires -s" |
6519 | msgstr "" | 6519 | msgstr "" |
6520 | 6520 | ||
6521 | #: plugins-root/check_icmp.c:1567 | 6521 | #: plugins-root/check_icmp.c:1572 |
6522 | msgid "specify a target" | 6522 | msgid "specify a target" |
6523 | msgstr "" | 6523 | msgstr "" |
6524 | 6524 | ||
6525 | #: plugins-root/check_icmp.c:1569 | 6525 | #: plugins-root/check_icmp.c:1574 |
6526 | msgid "Use IPv4 (default) or IPv6 to communicate with the targets" | 6526 | msgid "Use IPv4 (default) or IPv6 to communicate with the targets" |
6527 | msgstr "" | 6527 | msgstr "" |
6528 | 6528 | ||
6529 | #: plugins-root/check_icmp.c:1571 | 6529 | #: plugins-root/check_icmp.c:1576 |
6530 | #, fuzzy | 6530 | #, fuzzy |
6531 | msgid "warning threshold (currently " | 6531 | msgid "warning threshold (currently " |
6532 | msgstr "Warning threshold Integer sein" | 6532 | msgstr "Warning threshold Integer sein" |
6533 | 6533 | ||
6534 | #: plugins-root/check_icmp.c:1574 | 6534 | #: plugins-root/check_icmp.c:1579 |
6535 | #, fuzzy | 6535 | #, fuzzy |
6536 | msgid "critical threshold (currently " | 6536 | msgid "critical threshold (currently " |
6537 | msgstr "Critical threshold muss ein Integer sein" | 6537 | msgstr "Critical threshold muss ein Integer sein" |
6538 | 6538 | ||
6539 | #: plugins-root/check_icmp.c:1577 | 6539 | #: plugins-root/check_icmp.c:1582 |
6540 | #, fuzzy | 6540 | #, fuzzy |
6541 | msgid "specify a source IP address or device name" | 6541 | msgid "specify a source IP address or device name" |
6542 | msgstr "Hostname oder Serveradresse muss angegeben werden" | 6542 | msgstr "Hostname oder Serveradresse muss angegeben werden" |
6543 | 6543 | ||
6544 | #: plugins-root/check_icmp.c:1579 | 6544 | #: plugins-root/check_icmp.c:1584 |
6545 | msgid "number of packets to send (currently " | 6545 | msgid "number of packets to send (currently " |
6546 | msgstr "" | 6546 | msgstr "" |
6547 | 6547 | ||
6548 | #: plugins-root/check_icmp.c:1582 | 6548 | #: plugins-root/check_icmp.c:1587 |
6549 | msgid "max packet interval (currently " | 6549 | msgid "max packet interval (currently " |
6550 | msgstr "" | 6550 | msgstr "" |
6551 | 6551 | ||
6552 | #: plugins-root/check_icmp.c:1585 | 6552 | #: plugins-root/check_icmp.c:1590 |
6553 | msgid "max target interval (currently " | 6553 | msgid "max target interval (currently " |
6554 | msgstr "" | 6554 | msgstr "" |
6555 | 6555 | ||
6556 | #: plugins-root/check_icmp.c:1588 | 6556 | #: plugins-root/check_icmp.c:1593 |
6557 | msgid "number of alive hosts required for success" | 6557 | msgid "number of alive hosts required for success" |
6558 | msgstr "" | 6558 | msgstr "" |
6559 | 6559 | ||
6560 | #: plugins-root/check_icmp.c:1591 | 6560 | #: plugins-root/check_icmp.c:1596 |
6561 | msgid "TTL on outgoing packets (currently " | 6561 | msgid "TTL on outgoing packets (currently " |
6562 | msgstr "" | 6562 | msgstr "" |
6563 | 6563 | ||
6564 | #: plugins-root/check_icmp.c:1594 | 6564 | #: plugins-root/check_icmp.c:1599 |
6565 | msgid "timeout value (seconds, currently " | 6565 | msgid "timeout value (seconds, currently " |
6566 | msgstr "" | 6566 | msgstr "" |
6567 | 6567 | ||
6568 | #: plugins-root/check_icmp.c:1597 | 6568 | #: plugins-root/check_icmp.c:1602 |
6569 | msgid "Number of icmp data bytes to send" | 6569 | msgid "Number of icmp data bytes to send" |
6570 | msgstr "" | 6570 | msgstr "" |
6571 | 6571 | ||
6572 | #: plugins-root/check_icmp.c:1598 | 6572 | #: plugins-root/check_icmp.c:1603 |
6573 | msgid "Packet size will be data bytes + icmp header (currently" | 6573 | msgid "Packet size will be data bytes + icmp header (currently" |
6574 | msgstr "" | 6574 | msgstr "" |
6575 | 6575 | ||
6576 | #: plugins-root/check_icmp.c:1600 | 6576 | #: plugins-root/check_icmp.c:1605 |
6577 | msgid "verbose" | 6577 | msgid "verbose" |
6578 | msgstr "" | 6578 | msgstr "" |
6579 | 6579 | ||
6580 | #: plugins-root/check_icmp.c:1604 | 6580 | #: plugins-root/check_icmp.c:1609 |
6581 | msgid "The -H switch is optional. Naming a host (or several) to check is not." | 6581 | msgid "The -H switch is optional. Naming a host (or several) to check is not." |
6582 | msgstr "" | 6582 | msgstr "" |
6583 | 6583 | ||
6584 | #: plugins-root/check_icmp.c:1606 | 6584 | #: plugins-root/check_icmp.c:1611 |
6585 | msgid "" | 6585 | msgid "" |
6586 | "Threshold format for -w and -c is 200.25,60% for 200.25 msec RTA and 60%" | 6586 | "Threshold format for -w and -c is 200.25,60% for 200.25 msec RTA and 60%" |
6587 | msgstr "" | 6587 | msgstr "" |
6588 | 6588 | ||
6589 | #: plugins-root/check_icmp.c:1607 | 6589 | #: plugins-root/check_icmp.c:1612 |
6590 | msgid "packet loss. The default values should work well for most users." | 6590 | msgid "packet loss. The default values should work well for most users." |
6591 | msgstr "" | 6591 | msgstr "" |
6592 | 6592 | ||
6593 | #: plugins-root/check_icmp.c:1608 | 6593 | #: plugins-root/check_icmp.c:1613 |
6594 | msgid "" | 6594 | msgid "" |
6595 | "You can specify different RTA factors using the standardized abbreviations" | 6595 | "You can specify different RTA factors using the standardized abbreviations" |
6596 | msgstr "" | 6596 | msgstr "" |
6597 | 6597 | ||
6598 | #: plugins-root/check_icmp.c:1609 | 6598 | #: plugins-root/check_icmp.c:1614 |
6599 | msgid "" | 6599 | msgid "" |
6600 | "us (microseconds), ms (milliseconds, default) or just plain s for seconds." | 6600 | "us (microseconds), ms (milliseconds, default) or just plain s for seconds." |
6601 | msgstr "" | 6601 | msgstr "" |
6602 | 6602 | ||
6603 | #: plugins-root/check_icmp.c:1615 | 6603 | #: plugins-root/check_icmp.c:1620 |
6604 | msgid "The -v switch can be specified several times for increased verbosity." | 6604 | msgid "The -v switch can be specified several times for increased verbosity." |
6605 | msgstr "" | 6605 | msgstr "" |
6606 | 6606 | ||
@@ -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-06-12 20:31+0200\n" | 13 | "POT-Creation-Date: 2023-07-11 16:07+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-" |
@@ -242,7 +242,7 @@ msgstr "" | |||
242 | "multiples options '-C)" | 242 | "multiples options '-C)" |
243 | 243 | ||
244 | #: plugins/check_by_ssh.c:475 plugins/check_cluster.c:271 | 244 | #: plugins/check_by_ssh.c:475 plugins/check_cluster.c:271 |
245 | #: plugins/check_dig.c:364 plugins/check_disk.c:1000 plugins/check_http.c:1845 | 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 | 246 | #: plugins/check_nagios.c:312 plugins/check_ntp.c:879 |
247 | #: plugins/check_ntp_peer.c:733 plugins/check_ntp_time.c:642 | 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 | 248 | #: plugins/check_procs.c:806 plugins/negate.c:249 plugins/urlize.c:179 |
@@ -250,20 +250,20 @@ msgid "Examples:" | |||
250 | msgstr "Exemples:" | 250 | msgstr "Exemples:" |
251 | 251 | ||
252 | #: plugins/check_by_ssh.c:490 plugins/check_cluster.c:284 | 252 | #: plugins/check_by_ssh.c:490 plugins/check_cluster.c:284 |
253 | #: plugins/check_dig.c:376 plugins/check_disk.c:1017 plugins/check_dns.c:617 | 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:524 plugins/check_game.c:331 | 254 | #: plugins/check_dummy.c:122 plugins/check_fping.c:525 plugins/check_game.c:331 |
255 | #: plugins/check_hpjd.c:439 plugins/check_http.c:1883 plugins/check_ldap.c:511 | 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 | 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 | 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 | 258 | #: plugins/check_ntp_peer.c:753 plugins/check_ntp_time.c:651 |
259 | #: plugins/check_nwstat.c:1685 plugins/check_overcr.c:467 | 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 | 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:890 | 261 | #: plugins/check_radius.c:400 plugins/check_real.c:452 plugins/check_smtp.c:891 |
262 | #: plugins/check_snmp.c:1346 plugins/check_ssh.c:325 plugins/check_swap.c:607 | 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 | 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 | 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 | 265 | #: plugins/urlize.c:196 plugins-root/check_dhcp.c:1390 |
266 | #: plugins-root/check_icmp.c:1628 | 266 | #: plugins-root/check_icmp.c:1633 |
267 | msgid "Usage:" | 267 | msgid "Usage:" |
268 | msgstr "Utilisation:" | 268 | msgstr "Utilisation:" |
269 | 269 | ||
@@ -309,14 +309,14 @@ msgid "commas" | |||
309 | msgstr "virgules" | 309 | msgstr "virgules" |
310 | 310 | ||
311 | #: plugins/check_cluster.c:267 plugins/check_game.c:318 | 311 | #: plugins/check_cluster.c:267 plugins/check_game.c:318 |
312 | #: plugins/check_http.c:1827 plugins/check_ldap.c:497 plugins/check_mrtg.c:363 | 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 | 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 | 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 | 315 | #: plugins/check_ntp_time.c:633 plugins/check_nwstat.c:1670 |
316 | #: plugins/check_overcr.c:456 plugins/check_snmp.c:1317 | 316 | #: plugins/check_overcr.c:456 plugins/check_snmp.c:1318 |
317 | #: plugins/check_swap.c:596 plugins/check_ups.c:645 | 317 | #: plugins/check_swap.c:596 plugins/check_ups.c:645 |
318 | #: plugins/check_ide_smart.c:580 plugins/negate.c:255 | 318 | #: plugins/check_ide_smart.c:580 plugins/negate.c:255 |
319 | #: plugins-root/check_icmp.c:1603 | 319 | #: plugins-root/check_icmp.c:1608 |
320 | msgid "Notes:" | 320 | msgid "Notes:" |
321 | msgstr "Notes:" | 321 | msgstr "Notes:" |
322 | 322 | ||
@@ -410,7 +410,7 @@ msgstr "" | |||
410 | msgid "DISK %s: %s not found\n" | 410 | msgid "DISK %s: %s not found\n" |
411 | msgstr "DISK %s: %s non trouvé\n" | 411 | msgstr "DISK %s: %s non trouvé\n" |
412 | 412 | ||
413 | #: plugins/check_disk.c:241 plugins/check_disk.c:1035 plugins/check_dns.c:295 | 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 | 414 | #: plugins/check_dummy.c:74 plugins/check_mysql.c:313 |
415 | #: plugins/check_nagios.c:104 plugins/check_nagios.c:168 | 415 | #: plugins/check_nagios.c:104 plugins/check_nagios.c:168 |
416 | #: plugins/check_nagios.c:172 plugins/check_pgsql.c:575 | 416 | #: plugins/check_nagios.c:172 plugins/check_pgsql.c:575 |
@@ -420,190 +420,190 @@ msgstr "DISK %s: %s non trouvé\n" | |||
420 | msgid "CRITICAL" | 420 | msgid "CRITICAL" |
421 | msgstr "CRITIQUE" | 421 | msgstr "CRITIQUE" |
422 | 422 | ||
423 | #: plugins/check_disk.c:645 | 423 | #: plugins/check_disk.c:660 |
424 | #, c-format | 424 | #, c-format |
425 | msgid "unit type %s not known\n" | 425 | msgid "unit type %s not known\n" |
426 | msgstr "unité de type %s inconnue\n" | 426 | msgstr "unité de type %s inconnue\n" |
427 | 427 | ||
428 | #: plugins/check_disk.c:648 | 428 | #: plugins/check_disk.c:663 |
429 | #, c-format | 429 | #, c-format |
430 | msgid "failed allocating storage for '%s'\n" | 430 | msgid "failed allocating storage for '%s'\n" |
431 | msgstr "Impossible d'allouer de l'espace pour '%s'\n" | 431 | msgstr "Impossible d'allouer de l'espace pour '%s'\n" |
432 | 432 | ||
433 | #: plugins/check_disk.c:676 plugins/check_disk.c:724 plugins/check_disk.c:732 | 433 | #: plugins/check_disk.c:691 plugins/check_disk.c:739 plugins/check_disk.c:747 |
434 | #: plugins/check_disk.c:740 plugins/check_disk.c:744 plugins/check_disk.c:789 | 434 | #: plugins/check_disk.c:755 plugins/check_disk.c:759 plugins/check_disk.c:804 |
435 | #: plugins/check_disk.c:795 plugins/check_disk.c:818 plugins/check_dummy.c:77 | 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 | 436 | #: plugins/check_dummy.c:80 plugins/check_pgsql.c:617 plugins/check_procs.c:547 |
437 | #, c-format | 437 | #, c-format |
438 | msgid "UNKNOWN" | 438 | msgid "UNKNOWN" |
439 | msgstr "INCONNU" | 439 | msgstr "INCONNU" |
440 | 440 | ||
441 | #: plugins/check_disk.c:676 | 441 | #: plugins/check_disk.c:691 |
442 | msgid "Must set a threshold value before using -p\n" | 442 | msgid "Must set a threshold value before using -p\n" |
443 | msgstr "" | 443 | msgstr "" |
444 | 444 | ||
445 | #: plugins/check_disk.c:724 | 445 | #: plugins/check_disk.c:739 |
446 | msgid "Must set -E before selecting paths\n" | 446 | msgid "Must set -E before selecting paths\n" |
447 | msgstr "" | 447 | msgstr "" |
448 | 448 | ||
449 | #: plugins/check_disk.c:732 | 449 | #: plugins/check_disk.c:747 |
450 | msgid "Must set group value before selecting paths\n" | 450 | msgid "Must set group value before selecting paths\n" |
451 | msgstr "" | 451 | msgstr "" |
452 | 452 | ||
453 | #: plugins/check_disk.c:740 | 453 | #: plugins/check_disk.c:755 |
454 | msgid "" | 454 | msgid "" |
455 | "Paths need to be selected before using -i/-I. Use -A to select all paths " | 455 | "Paths need to be selected before using -i/-I. Use -A to select all paths " |
456 | "explicitly" | 456 | "explicitly" |
457 | msgstr "" | 457 | msgstr "" |
458 | 458 | ||
459 | #: plugins/check_disk.c:744 plugins/check_disk.c:795 plugins/check_procs.c:547 | 459 | #: plugins/check_disk.c:759 plugins/check_disk.c:810 plugins/check_procs.c:547 |
460 | msgid "Could not compile regular expression" | 460 | msgid "Could not compile regular expression" |
461 | msgstr "Impossible de compiler l'expression rationnelle" | 461 | msgstr "Impossible de compiler l'expression rationnelle" |
462 | 462 | ||
463 | #: plugins/check_disk.c:789 | 463 | #: plugins/check_disk.c:804 |
464 | msgid "Must set a threshold value before using -r/-R\n" | 464 | msgid "Must set a threshold value before using -r/-R\n" |
465 | msgstr "" | 465 | msgstr "" |
466 | 466 | ||
467 | #: plugins/check_disk.c:819 | 467 | #: plugins/check_disk.c:834 |
468 | msgid "Regular expression did not match any path or disk" | 468 | msgid "Regular expression did not match any path or disk" |
469 | msgstr "" | 469 | msgstr "" |
470 | 470 | ||
471 | #: plugins/check_disk.c:865 | 471 | #: plugins/check_disk.c:880 |
472 | msgid "Unknown argument" | 472 | msgid "Unknown argument" |
473 | msgstr "Argument inconnu" | 473 | msgstr "Argument inconnu" |
474 | 474 | ||
475 | #: plugins/check_disk.c:899 | 475 | #: plugins/check_disk.c:914 |
476 | #, c-format | 476 | #, c-format |
477 | msgid " for %s\n" | 477 | msgid " for %s\n" |
478 | msgstr " pour %s\n" | 478 | msgstr " pour %s\n" |
479 | 479 | ||
480 | #: plugins/check_disk.c:928 | 480 | #: plugins/check_disk.c:943 |
481 | msgid "" | 481 | msgid "" |
482 | "This plugin checks the amount of used disk space on a mounted file system" | 482 | "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é" | 483 | msgstr "Ce plugin vérifie la place utilisé sur un système de fichier monté" |
484 | 484 | ||
485 | #: plugins/check_disk.c:929 | 485 | #: plugins/check_disk.c:944 |
486 | msgid "" | 486 | msgid "" |
487 | "and generates an alert if free space is less than one of the threshold values" | 487 | "and generates an alert if free space is less than one of the threshold values" |
488 | msgstr "" | 488 | msgstr "" |
489 | "et génère une alerte si la place disponible est plus petite qu'un des seuils " | 489 | "et génère une alerte si la place disponible est plus petite qu'un des seuils " |
490 | "fourni" | 490 | "fourni" |
491 | 491 | ||
492 | #: plugins/check_disk.c:939 | 492 | #: plugins/check_disk.c:954 |
493 | msgid "Exit with WARNING status if less than INTEGER units of disk are free" | 493 | msgid "Exit with WARNING status if less than INTEGER units of disk are free" |
494 | msgstr "" | 494 | msgstr "" |
495 | "Sortir avec un résultat AVERTISSEMENT si moins de X unités de disques sont " | 495 | "Sortir avec un résultat AVERTISSEMENT si moins de X unités de disques sont " |
496 | "libres" | 496 | "libres" |
497 | 497 | ||
498 | #: plugins/check_disk.c:941 | 498 | #: plugins/check_disk.c:956 |
499 | msgid "Exit with WARNING status if less than PERCENT of disk space is free" | 499 | msgid "Exit with WARNING status if less than PERCENT of disk space is free" |
500 | msgstr "" | 500 | msgstr "" |
501 | "Sortir avec un résultat AVERTISSEMENT si moins de X pour-cent du disque est " | 501 | "Sortir avec un résultat AVERTISSEMENT si moins de X pour-cent du disque est " |
502 | "libre" | 502 | "libre" |
503 | 503 | ||
504 | #: plugins/check_disk.c:943 | 504 | #: plugins/check_disk.c:958 |
505 | msgid "Exit with CRITICAL status if less than INTEGER units of disk are free" | 505 | msgid "Exit with CRITICAL status if less than INTEGER units of disk are free" |
506 | msgstr "" | 506 | msgstr "" |
507 | "Sortir avec un résultat CRITIQUE si moins de X unités du disque sont libres" | 507 | "Sortir avec un résultat CRITIQUE si moins de X unités du disque sont libres" |
508 | 508 | ||
509 | #: plugins/check_disk.c:945 | 509 | #: plugins/check_disk.c:960 |
510 | #, fuzzy | 510 | #, fuzzy |
511 | msgid "Exit with CRITICAL status if less than PERCENT of disk space is free" | 511 | msgid "Exit with CRITICAL status if less than PERCENT of disk space is free" |
512 | msgstr "" | 512 | msgstr "" |
513 | "Sortir avec un résultat CRITIQUE si moins de X pour-cent du disque est libre" | 513 | "Sortir avec un résultat CRITIQUE si moins de X pour-cent du disque est libre" |
514 | 514 | ||
515 | #: plugins/check_disk.c:947 | 515 | #: plugins/check_disk.c:962 |
516 | msgid "Exit with WARNING status if less than PERCENT of inode space is free" | 516 | msgid "Exit with WARNING status if less than PERCENT of inode space is free" |
517 | msgstr "" | 517 | msgstr "" |
518 | "Sortir avec un résultat AVERTISSEMENT si moins de X pour-cent des inodes " | 518 | "Sortir avec un résultat AVERTISSEMENT si moins de X pour-cent des inodes " |
519 | "sont libres" | 519 | "sont libres" |
520 | 520 | ||
521 | #: plugins/check_disk.c:949 | 521 | #: plugins/check_disk.c:964 |
522 | msgid "Exit with CRITICAL status if less than PERCENT of inode space is free" | 522 | msgid "Exit with CRITICAL status if less than PERCENT of inode space is free" |
523 | msgstr "" | 523 | msgstr "" |
524 | "Sortir avec un résultat CRITIQUE si moins de X pour-cent des inodes sont " | 524 | "Sortir avec un résultat CRITIQUE si moins de X pour-cent des inodes sont " |
525 | "libres" | 525 | "libres" |
526 | 526 | ||
527 | #: plugins/check_disk.c:951 | 527 | #: plugins/check_disk.c:966 |
528 | msgid "" | 528 | msgid "" |
529 | "Mount point or block device as emitted by the mount(8) command (may be " | 529 | "Mount point or block device as emitted by the mount(8) command (may be " |
530 | "repeated)" | 530 | "repeated)" |
531 | msgstr "" | 531 | msgstr "" |
532 | 532 | ||
533 | #: plugins/check_disk.c:953 | 533 | #: plugins/check_disk.c:968 |
534 | msgid "Ignore device (only works if -p unspecified)" | 534 | msgid "Ignore device (only works if -p unspecified)" |
535 | msgstr "Ignorer le périphérique (marche seulement lorsque -p est utilisé)" | 535 | msgstr "Ignorer le périphérique (marche seulement lorsque -p est utilisé)" |
536 | 536 | ||
537 | #: plugins/check_disk.c:955 | 537 | #: plugins/check_disk.c:970 |
538 | msgid "Clear thresholds" | 538 | msgid "Clear thresholds" |
539 | msgstr "Effacer les seuils" | 539 | msgstr "Effacer les seuils" |
540 | 540 | ||
541 | #: plugins/check_disk.c:957 | 541 | #: plugins/check_disk.c:972 |
542 | msgid "For paths or partitions specified with -p, only check for exact paths" | 542 | msgid "For paths or partitions specified with -p, only check for exact paths" |
543 | msgstr "" | 543 | msgstr "" |
544 | 544 | ||
545 | #: plugins/check_disk.c:959 | 545 | #: plugins/check_disk.c:974 |
546 | msgid "Display only devices/mountpoints with errors" | 546 | msgid "Display only devices/mountpoints with errors" |
547 | msgstr "Afficher seulement les périphériques/point de montage avec des erreurs" | 547 | msgstr "Afficher seulement les périphériques/point de montage avec des erreurs" |
548 | 548 | ||
549 | #: plugins/check_disk.c:961 | 549 | #: plugins/check_disk.c:976 |
550 | msgid "Don't account root-reserved blocks into freespace in perfdata" | 550 | msgid "Don't account root-reserved blocks into freespace in perfdata" |
551 | msgstr "" | 551 | msgstr "" |
552 | 552 | ||
553 | #: plugins/check_disk.c:963 | 553 | #: plugins/check_disk.c:978 |
554 | msgid "Display inode usage in perfdata" | 554 | msgid "Display inode usage in perfdata" |
555 | msgstr "" | 555 | msgstr "" |
556 | 556 | ||
557 | #: plugins/check_disk.c:965 | 557 | #: plugins/check_disk.c:980 |
558 | msgid "" | 558 | msgid "" |
559 | "Group paths. Thresholds apply to (free-)space of all partitions together" | 559 | "Group paths. Thresholds apply to (free-)space of all partitions together" |
560 | msgstr "" | 560 | msgstr "" |
561 | 561 | ||
562 | #: plugins/check_disk.c:967 | 562 | #: plugins/check_disk.c:982 |
563 | msgid "Same as '--units kB'" | 563 | msgid "Same as '--units kB'" |
564 | msgstr "Pareil à '--units kB'" | 564 | msgstr "Pareil à '--units kB'" |
565 | 565 | ||
566 | #: plugins/check_disk.c:969 | 566 | #: plugins/check_disk.c:984 |
567 | msgid "Only check local filesystems" | 567 | msgid "Only check local filesystems" |
568 | msgstr "Vérifier seulement les systèmes de fichiers locaux" | 568 | msgstr "Vérifier seulement les systèmes de fichiers locaux" |
569 | 569 | ||
570 | #: plugins/check_disk.c:971 | 570 | #: plugins/check_disk.c:986 |
571 | msgid "" | 571 | msgid "" |
572 | "Only check local filesystems against thresholds. Yet call stat on remote " | 572 | "Only check local filesystems against thresholds. Yet call stat on remote " |
573 | "filesystems" | 573 | "filesystems" |
574 | msgstr "" | 574 | msgstr "" |
575 | 575 | ||
576 | #: plugins/check_disk.c:972 | 576 | #: plugins/check_disk.c:987 |
577 | msgid "to test if they are accessible (e.g. to detect Stale NFS Handles)" | 577 | msgid "to test if they are accessible (e.g. to detect Stale NFS Handles)" |
578 | msgstr "" | 578 | msgstr "" |
579 | 579 | ||
580 | #: plugins/check_disk.c:974 | 580 | #: plugins/check_disk.c:989 |
581 | #, fuzzy | 581 | #, fuzzy |
582 | msgid "Display the (block) device instead of the mount point" | 582 | msgid "Display the (block) device instead of the mount point" |
583 | msgstr "Afficher le point de montage au lieu de la partition" | 583 | msgstr "Afficher le point de montage au lieu de la partition" |
584 | 584 | ||
585 | #: plugins/check_disk.c:976 | 585 | #: plugins/check_disk.c:991 |
586 | msgid "Same as '--units MB'" | 586 | msgid "Same as '--units MB'" |
587 | msgstr "Pareil à '--units MB'" | 587 | msgstr "Pareil à '--units MB'" |
588 | 588 | ||
589 | #: plugins/check_disk.c:978 | 589 | #: plugins/check_disk.c:993 |
590 | msgid "Explicitly select all paths. This is equivalent to -R '.*'" | 590 | msgid "Explicitly select all paths. This is equivalent to -R '.*'" |
591 | msgstr "" | 591 | msgstr "" |
592 | 592 | ||
593 | #: plugins/check_disk.c:980 | 593 | #: plugins/check_disk.c:995 |
594 | msgid "" | 594 | msgid "" |
595 | "Case insensitive regular expression for path/partition (may be repeated)" | 595 | "Case insensitive regular expression for path/partition (may be repeated)" |
596 | msgstr "" | 596 | msgstr "" |
597 | "Expression rationnelle indépendante de la case pour un répertoire ou une " | 597 | "Expression rationnelle indépendante de la case pour un répertoire ou une " |
598 | "partition (peut être utilisé plusieurs fois)" | 598 | "partition (peut être utilisé plusieurs fois)" |
599 | 599 | ||
600 | #: plugins/check_disk.c:982 | 600 | #: plugins/check_disk.c:997 |
601 | msgid "Regular expression for path or partition (may be repeated)" | 601 | msgid "Regular expression for path or partition (may be repeated)" |
602 | msgstr "" | 602 | msgstr "" |
603 | "Expression rationnelle pour un répertoire ou une partition (peut être " | 603 | "Expression rationnelle pour un répertoire ou une partition (peut être " |
604 | "utilisé plusieurs fois)" | 604 | "utilisé plusieurs fois)" |
605 | 605 | ||
606 | #: plugins/check_disk.c:984 | 606 | #: plugins/check_disk.c:999 |
607 | msgid "" | 607 | msgid "" |
608 | "Regular expression to ignore selected path/partition (case insensitive) (may " | 608 | "Regular expression to ignore selected path/partition (case insensitive) (may " |
609 | "be repeated)" | 609 | "be repeated)" |
@@ -611,68 +611,68 @@ msgstr "" | |||
611 | "Expression rationnelle pour ignorer un répertoire ou une partition (peut " | 611 | "Expression rationnelle pour ignorer un répertoire ou une partition (peut " |
612 | "être utilisé plusieurs fois)" | 612 | "être utilisé plusieurs fois)" |
613 | 613 | ||
614 | #: plugins/check_disk.c:986 | 614 | #: plugins/check_disk.c:1001 |
615 | msgid "" | 615 | msgid "" |
616 | "Regular expression to ignore selected path or partition (may be repeated)" | 616 | "Regular expression to ignore selected path or partition (may be repeated)" |
617 | msgstr "" | 617 | msgstr "" |
618 | "Expression rationnelle pour ignorer un répertoire ou une partition (peut " | 618 | "Expression rationnelle pour ignorer un répertoire ou une partition (peut " |
619 | "être utilisé plusieurs fois)" | 619 | "être utilisé plusieurs fois)" |
620 | 620 | ||
621 | #: plugins/check_disk.c:988 | 621 | #: plugins/check_disk.c:1003 |
622 | msgid "" | 622 | msgid "" |
623 | "Return OK if no filesystem matches, filesystem does not exist or is " | 623 | "Return OK if no filesystem matches, filesystem does not exist or is " |
624 | "inaccessible." | 624 | "inaccessible." |
625 | msgstr "" | 625 | msgstr "" |
626 | 626 | ||
627 | #: plugins/check_disk.c:989 | 627 | #: plugins/check_disk.c:1004 |
628 | msgid "(Provide this option before -p / -r / --ereg-path if used)" | 628 | msgid "(Provide this option before -p / -r / --ereg-path if used)" |
629 | msgstr "" | 629 | msgstr "" |
630 | 630 | ||
631 | #: plugins/check_disk.c:992 | 631 | #: plugins/check_disk.c:1007 |
632 | msgid "Choose bytes, kB, MB, GB, TB (default: MB)" | 632 | msgid "Choose bytes, kB, MB, GB, TB (default: MB)" |
633 | msgstr "Choisissez octets, kb, MB, GB, TB (par défaut: MB)" | 633 | msgstr "Choisissez octets, kb, MB, GB, TB (par défaut: MB)" |
634 | 634 | ||
635 | #: plugins/check_disk.c:995 | 635 | #: plugins/check_disk.c:1010 |
636 | msgid "Ignore all filesystems of indicated type (may be repeated)" | 636 | msgid "Ignore all filesystems of indicated type (may be repeated)" |
637 | msgstr "" | 637 | msgstr "" |
638 | "Ignorer tout les systèmes de fichiers qui correspondent au type indiqué " | 638 | "Ignorer tout les systèmes de fichiers qui correspondent au type indiqué " |
639 | "(peut être utilisé plusieurs fois)" | 639 | "(peut être utilisé plusieurs fois)" |
640 | 640 | ||
641 | #: plugins/check_disk.c:997 | 641 | #: plugins/check_disk.c:1012 |
642 | #, fuzzy | 642 | #, fuzzy |
643 | msgid "Check only filesystems of indicated type (may be repeated)" | 643 | msgid "Check only filesystems of indicated type (may be repeated)" |
644 | msgstr "" | 644 | msgstr "" |
645 | "Ignorer tout les systèmes de fichiers qui correspondent au type indiqué " | 645 | "Ignorer tout les systèmes de fichiers qui correspondent au type indiqué " |
646 | "(peut être utilisé plusieurs fois)" | 646 | "(peut être utilisé plusieurs fois)" |
647 | 647 | ||
648 | #: plugins/check_disk.c:1002 | 648 | #: plugins/check_disk.c:1017 |
649 | msgid "Checks /tmp and /var at 10% and 5%, and / at 100MB and 50MB" | 649 | 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" | 650 | msgstr "Vérifie /tmp à 10% et /var à 5% et / à 100MB et 50MB" |
651 | 651 | ||
652 | #: plugins/check_disk.c:1004 | 652 | #: plugins/check_disk.c:1019 |
653 | msgid "" | 653 | msgid "" |
654 | "Checks all filesystems not matching -r at 100M and 50M. The fs matching the -" | 654 | "Checks all filesystems not matching -r at 100M and 50M. The fs matching the -" |
655 | "r regex" | 655 | "r regex" |
656 | msgstr "" | 656 | msgstr "" |
657 | 657 | ||
658 | #: plugins/check_disk.c:1005 | 658 | #: plugins/check_disk.c:1020 |
659 | msgid "" | 659 | msgid "" |
660 | "are grouped which means the freespace thresholds are applied to all disks " | 660 | "are grouped which means the freespace thresholds are applied to all disks " |
661 | "together" | 661 | "together" |
662 | msgstr "" | 662 | msgstr "" |
663 | 663 | ||
664 | #: plugins/check_disk.c:1007 | 664 | #: plugins/check_disk.c:1022 |
665 | msgid "" | 665 | msgid "" |
666 | "Checks /foo for 1000M/500M and /bar for 5/3%. All remaining volumes use " | 666 | "Checks /foo for 1000M/500M and /bar for 5/3%. All remaining volumes use " |
667 | "100M/50M" | 667 | "100M/50M" |
668 | msgstr "" | 668 | msgstr "" |
669 | 669 | ||
670 | #: plugins/check_disk.c:1036 | 670 | #: plugins/check_disk.c:1051 |
671 | #, c-format | 671 | #, c-format |
672 | msgid "%s %s: %s\n" | 672 | msgid "%s %s: %s\n" |
673 | msgstr "" | 673 | msgstr "" |
674 | 674 | ||
675 | #: plugins/check_disk.c:1036 | 675 | #: plugins/check_disk.c:1051 |
676 | msgid "is not accessible" | 676 | msgid "is not accessible" |
677 | msgstr "" | 677 | msgstr "" |
678 | 678 | ||
@@ -990,69 +990,69 @@ msgid "FPING %s - %s (loss=%.0f%% )|%s\n" | |||
990 | msgstr "FPING %s - %s (perte=%.0f%% )|%s\n" | 990 | msgstr "FPING %s - %s (perte=%.0f%% )|%s\n" |
991 | 991 | ||
992 | #: plugins/check_fping.c:345 plugins/check_fping.c:351 plugins/check_hpjd.c:345 | 992 | #: plugins/check_fping.c:345 plugins/check_fping.c:351 plugins/check_hpjd.c:345 |
993 | #: plugins/check_hpjd.c:376 plugins/check_mysql.c:389 plugins/check_mysql.c:476 | 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 | 994 | #: plugins/check_ntp.c:719 plugins/check_ntp_peer.c:497 |
995 | #: plugins/check_ntp_time.c:498 plugins/check_pgsql.c:338 | 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 | 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 | 997 | #: plugins/check_real.c:315 plugins/check_real.c:377 plugins/check_smtp.c:525 |
998 | #: plugins/check_smtp.c:680 plugins/check_ssh.c:162 plugins/check_time.c:240 | 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 | 999 | #: plugins/check_time.c:315 plugins/check_ups.c:507 plugins/check_ups.c:576 |
1000 | msgid "Invalid hostname/address" | 1000 | msgid "Invalid hostname/address" |
1001 | msgstr "Adresse/Nom d'hôte invalide" | 1001 | msgstr "Adresse/Nom d'hôte invalide" |
1002 | 1002 | ||
1003 | #: plugins/check_fping.c:364 plugins/check_ldap.c:400 plugins/check_ping.c:252 | 1003 | #: plugins/check_fping.c:365 plugins/check_ldap.c:400 plugins/check_ping.c:252 |
1004 | #: plugins-root/check_icmp.c:474 | 1004 | #: plugins-root/check_icmp.c:474 |
1005 | msgid "IPv6 support not available\n" | 1005 | msgid "IPv6 support not available\n" |
1006 | msgstr "Support IPv6 non disponible\n" | 1006 | msgstr "Support IPv6 non disponible\n" |
1007 | 1007 | ||
1008 | #: plugins/check_fping.c:397 | 1008 | #: plugins/check_fping.c:398 |
1009 | msgid "Packet size must be a positive integer" | 1009 | msgid "Packet size must be a positive integer" |
1010 | msgstr "La taille du paquet doit être un entier positif" | 1010 | msgstr "La taille du paquet doit être un entier positif" |
1011 | 1011 | ||
1012 | #: plugins/check_fping.c:403 | 1012 | #: plugins/check_fping.c:404 |
1013 | msgid "Packet count must be a positive integer" | 1013 | msgid "Packet count must be a positive integer" |
1014 | msgstr "Le nombre de paquets doit être un entier positif" | 1014 | msgstr "Le nombre de paquets doit être un entier positif" |
1015 | 1015 | ||
1016 | #: plugins/check_fping.c:409 | 1016 | #: plugins/check_fping.c:410 |
1017 | msgid "Target timeout must be a positive integer" | 1017 | msgid "Target timeout must be a positive integer" |
1018 | msgstr "Le seuil d'avertissement doit être un entier positif" | 1018 | msgstr "Le seuil d'avertissement doit être un entier positif" |
1019 | 1019 | ||
1020 | #: plugins/check_fping.c:415 | 1020 | #: plugins/check_fping.c:416 |
1021 | msgid "Interval must be a positive integer" | 1021 | msgid "Interval must be a positive integer" |
1022 | msgstr "Le délai d'attente doit être un entier positif" | 1022 | msgstr "Le délai d'attente doit être un entier positif" |
1023 | 1023 | ||
1024 | #: plugins/check_fping.c:421 plugins/check_ntp.c:743 | 1024 | #: plugins/check_fping.c:422 plugins/check_ntp.c:743 |
1025 | #: plugins/check_ntp_peer.c:524 plugins/check_ntp_time.c:528 | 1025 | #: plugins/check_ntp_peer.c:524 plugins/check_ntp_time.c:528 |
1026 | #: plugins/check_radius.c:329 plugins/check_time.c:319 | 1026 | #: plugins/check_radius.c:329 plugins/check_time.c:319 |
1027 | msgid "Hostname was not supplied" | 1027 | msgid "Hostname was not supplied" |
1028 | msgstr "Le nom de l'hôte n'a pas été spécifié" | 1028 | msgstr "Le nom de l'hôte n'a pas été spécifié" |
1029 | 1029 | ||
1030 | #: plugins/check_fping.c:441 | 1030 | #: plugins/check_fping.c:442 |
1031 | #, c-format | 1031 | #, c-format |
1032 | msgid "%s: Only one threshold may be packet loss (%s)\n" | 1032 | msgid "%s: Only one threshold may be packet loss (%s)\n" |
1033 | msgstr "" | 1033 | msgstr "" |
1034 | "%s: Seulement un seuil peut être utilisé pour les pertes de paquets (%s)\n" | 1034 | "%s: Seulement un seuil peut être utilisé pour les pertes de paquets (%s)\n" |
1035 | 1035 | ||
1036 | #: plugins/check_fping.c:445 | 1036 | #: plugins/check_fping.c:446 |
1037 | #, c-format | 1037 | #, c-format |
1038 | msgid "%s: Only one threshold must be packet loss (%s)\n" | 1038 | msgid "%s: Only one threshold must be packet loss (%s)\n" |
1039 | msgstr "" | 1039 | msgstr "" |
1040 | "%s: Seulement un seuil doit être utilisé pour les pertes de paquets (%s)\n" | 1040 | "%s: Seulement un seuil doit être utilisé pour les pertes de paquets (%s)\n" |
1041 | 1041 | ||
1042 | #: plugins/check_fping.c:475 | 1042 | #: plugins/check_fping.c:476 |
1043 | msgid "" | 1043 | msgid "" |
1044 | "This plugin will use the fping command to ping the specified host for a fast " | 1044 | "This plugin will use the fping command to ping the specified host for a fast " |
1045 | "check" | 1045 | "check" |
1046 | msgstr "" | 1046 | msgstr "" |
1047 | "Ce plugin va utiliser la commande fping pour pinger l'hôte de manière rapide." | 1047 | "Ce plugin va utiliser la commande fping pour pinger l'hôte de manière rapide." |
1048 | 1048 | ||
1049 | #: plugins/check_fping.c:477 | 1049 | #: plugins/check_fping.c:478 |
1050 | msgid "Note that it is necessary to set the suid flag on fping." | 1050 | msgid "Note that it is necessary to set the suid flag on fping." |
1051 | msgstr "" | 1051 | msgstr "" |
1052 | "Veuillez noter qu'il est nécessaire de mettre le bit suid sur le programme " | 1052 | "Veuillez noter qu'il est nécessaire de mettre le bit suid sur le programme " |
1053 | "fping." | 1053 | "fping." |
1054 | 1054 | ||
1055 | #: plugins/check_fping.c:489 | 1055 | #: plugins/check_fping.c:490 |
1056 | msgid "" | 1056 | msgid "" |
1057 | "name or IP Address of host to ping (IP Address bypasses name lookup, " | 1057 | "name or IP Address of host to ping (IP Address bypasses name lookup, " |
1058 | "reducing system load)" | 1058 | "reducing system load)" |
@@ -1060,43 +1060,43 @@ msgstr "" | |||
1060 | "nom ou adresse IP des hôtes à pinger (l'indication d'un adresse IP évite une " | 1060 | "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)" | 1061 | "recherche sur le nom, ce qui réduit la charge système)" |
1062 | 1062 | ||
1063 | #: plugins/check_fping.c:491 plugins/check_ping.c:589 | 1063 | #: plugins/check_fping.c:492 plugins/check_ping.c:589 |
1064 | msgid "warning threshold pair" | 1064 | msgid "warning threshold pair" |
1065 | msgstr "Valeurs pour le seuil d'avertissement" | 1065 | msgstr "Valeurs pour le seuil d'avertissement" |
1066 | 1066 | ||
1067 | #: plugins/check_fping.c:493 plugins/check_ping.c:591 | 1067 | #: plugins/check_fping.c:494 plugins/check_ping.c:591 |
1068 | msgid "critical threshold pair" | 1068 | msgid "critical threshold pair" |
1069 | msgstr "Valeurs pour le seuil critique" | 1069 | msgstr "Valeurs pour le seuil critique" |
1070 | 1070 | ||
1071 | #: plugins/check_fping.c:495 | 1071 | #: plugins/check_fping.c:496 |
1072 | msgid "Return OK after first successful reply" | 1072 | msgid "Return OK after first successful reply" |
1073 | msgstr "" | 1073 | msgstr "" |
1074 | 1074 | ||
1075 | #: plugins/check_fping.c:497 | 1075 | #: plugins/check_fping.c:498 |
1076 | msgid "size of ICMP packet" | 1076 | msgid "size of ICMP packet" |
1077 | msgstr "taille du paquet ICMP" | 1077 | msgstr "taille du paquet ICMP" |
1078 | 1078 | ||
1079 | #: plugins/check_fping.c:499 | 1079 | #: plugins/check_fping.c:500 |
1080 | msgid "number of ICMP packets to send" | 1080 | msgid "number of ICMP packets to send" |
1081 | msgstr "nombre de paquets ICMP Ã envoyer" | 1081 | msgstr "nombre de paquets ICMP Ã envoyer" |
1082 | 1082 | ||
1083 | #: plugins/check_fping.c:501 | 1083 | #: plugins/check_fping.c:502 |
1084 | msgid "Target timeout (ms)" | 1084 | msgid "Target timeout (ms)" |
1085 | msgstr "" | 1085 | msgstr "" |
1086 | 1086 | ||
1087 | #: plugins/check_fping.c:503 | 1087 | #: plugins/check_fping.c:504 |
1088 | msgid "Interval (ms) between sending packets" | 1088 | msgid "Interval (ms) between sending packets" |
1089 | msgstr "" | 1089 | msgstr "" |
1090 | 1090 | ||
1091 | #: plugins/check_fping.c:505 | 1091 | #: plugins/check_fping.c:506 |
1092 | msgid "name or IP Address of sourceip" | 1092 | msgid "name or IP Address of sourceip" |
1093 | msgstr "" | 1093 | msgstr "" |
1094 | 1094 | ||
1095 | #: plugins/check_fping.c:507 | 1095 | #: plugins/check_fping.c:508 |
1096 | msgid "source interface name" | 1096 | msgid "source interface name" |
1097 | msgstr "" | 1097 | msgstr "" |
1098 | 1098 | ||
1099 | #: plugins/check_fping.c:510 | 1099 | #: plugins/check_fping.c:511 |
1100 | #, c-format | 1100 | #, c-format |
1101 | msgid "" | 1101 | msgid "" |
1102 | "THRESHOLD is <rta>,<pl>%% where <rta> is the round trip average travel time " | 1102 | "THRESHOLD is <rta>,<pl>%% where <rta> is the round trip average travel time " |
@@ -1105,18 +1105,18 @@ msgstr "" | |||
1105 | "Le seuil est <rta>,<pl>%% ou <rta> est le temps moyen pour l'aller retour " | 1105 | "Le seuil est <rta>,<pl>%% ou <rta> est le temps moyen pour l'aller retour " |
1106 | "(ms)" | 1106 | "(ms)" |
1107 | 1107 | ||
1108 | #: plugins/check_fping.c:511 | 1108 | #: plugins/check_fping.c:512 |
1109 | msgid "" | 1109 | msgid "" |
1110 | "which triggers a WARNING or CRITICAL state, and <pl> is the percentage of" | 1110 | "which triggers a WARNING or CRITICAL state, and <pl> is the percentage of" |
1111 | msgstr "" | 1111 | msgstr "" |
1112 | "qui déclenche résultat AVERTISSEMENT ou CRITIQUE, et <pl> est le pourcentage " | 1112 | "qui déclenche résultat AVERTISSEMENT ou CRITIQUE, et <pl> est le pourcentage " |
1113 | "de" | 1113 | "de" |
1114 | 1114 | ||
1115 | #: plugins/check_fping.c:512 | 1115 | #: plugins/check_fping.c:513 |
1116 | msgid "packet loss to trigger an alarm state." | 1116 | msgid "packet loss to trigger an alarm state." |
1117 | msgstr "paquets perdu pour déclencher une alarme." | 1117 | msgstr "paquets perdu pour déclencher une alarme." |
1118 | 1118 | ||
1119 | #: plugins/check_fping.c:515 | 1119 | #: plugins/check_fping.c:516 |
1120 | msgid "IPv4 is used by default. Specify -6 to use IPv6." | 1120 | msgid "IPv4 is used by default. Specify -6 to use IPv6." |
1121 | msgstr "" | 1121 | msgstr "" |
1122 | 1122 | ||
@@ -1236,29 +1236,29 @@ msgstr "Imprimante ok - (%s)\n" | |||
1236 | msgid "Port must be a positive short integer" | 1236 | msgid "Port must be a positive short integer" |
1237 | msgstr "Le numéro du port doit être un entier positif" | 1237 | msgstr "Le numéro du port doit être un entier positif" |
1238 | 1238 | ||
1239 | #: plugins/check_hpjd.c:410 | 1239 | #: plugins/check_hpjd.c:411 |
1240 | msgid "This plugin tests the STATUS of an HP printer with a JetDirect card." | 1240 | 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." | 1241 | msgstr "Ce plugin teste l'état d'une imprimante HP avec une carte JetDirect." |
1242 | 1242 | ||
1243 | #: plugins/check_hpjd.c:411 | 1243 | #: plugins/check_hpjd.c:412 |
1244 | msgid "Net-snmp must be installed on the computer running the plugin." | 1244 | 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." | 1245 | msgstr "Net-snmp doit être installé sur l'ordinateur qui exécute le plugin." |
1246 | 1246 | ||
1247 | #: plugins/check_hpjd.c:421 | 1247 | #: plugins/check_hpjd.c:422 |
1248 | msgid "The SNMP community name " | 1248 | msgid "The SNMP community name " |
1249 | msgstr "Le nom de la communauté SNMP " | 1249 | msgstr "Le nom de la communauté SNMP " |
1250 | 1250 | ||
1251 | #: plugins/check_hpjd.c:422 plugins/check_hpjd.c:426 | 1251 | #: plugins/check_hpjd.c:423 plugins/check_hpjd.c:427 |
1252 | #, c-format | 1252 | #, c-format |
1253 | msgid "(default=%s)" | 1253 | msgid "(default=%s)" |
1254 | msgstr "(défaut=%s)" | 1254 | msgstr "(défaut=%s)" |
1255 | 1255 | ||
1256 | #: plugins/check_hpjd.c:425 | 1256 | #: plugins/check_hpjd.c:426 |
1257 | #, fuzzy | 1257 | #, fuzzy |
1258 | msgid "Specify the port to check " | 1258 | msgid "Specify the port to check " |
1259 | msgstr "Nom de l'hôte à vérifier" | 1259 | msgstr "Nom de l'hôte à vérifier" |
1260 | 1260 | ||
1261 | #: plugins/check_hpjd.c:429 | 1261 | #: plugins/check_hpjd.c:430 |
1262 | #, fuzzy | 1262 | #, fuzzy |
1263 | msgid "Disable paper check " | 1263 | msgid "Disable paper check " |
1264 | msgstr "Variable a vérifier" | 1264 | msgstr "Variable a vérifier" |
@@ -1300,576 +1300,576 @@ msgstr "option f:%d \n" | |||
1300 | msgid "Invalid port number" | 1300 | msgid "Invalid port number" |
1301 | msgstr "Numéro de port invalide" | 1301 | msgstr "Numéro de port invalide" |
1302 | 1302 | ||
1303 | #: plugins/check_http.c:507 | 1303 | #: plugins/check_http.c:508 |
1304 | #, c-format | 1304 | #, c-format |
1305 | msgid "Could Not Compile Regular Expression: %s" | 1305 | msgid "Could Not Compile Regular Expression: %s" |
1306 | msgstr "Impossible de compiler l'expression rationnelle: %s" | 1306 | msgstr "Impossible de compiler l'expression rationnelle: %s" |
1307 | 1307 | ||
1308 | #: plugins/check_http.c:521 plugins/check_ntp.c:732 | 1308 | #: plugins/check_http.c:522 plugins/check_ntp.c:732 |
1309 | #: plugins/check_ntp_peer.c:513 plugins/check_ntp_time.c:517 | 1309 | #: plugins/check_ntp_peer.c:513 plugins/check_ntp_time.c:517 |
1310 | #: plugins/check_smtp.c:660 plugins/check_ssh.c:151 plugins/check_tcp.c:491 | 1310 | #: plugins/check_smtp.c:661 plugins/check_ssh.c:151 plugins/check_tcp.c:491 |
1311 | msgid "IPv6 support not available" | 1311 | msgid "IPv6 support not available" |
1312 | msgstr "Support IPv6 non disponible" | 1312 | msgstr "Support IPv6 non disponible" |
1313 | 1313 | ||
1314 | #: plugins/check_http.c:589 plugins/check_ping.c:428 | 1314 | #: plugins/check_http.c:590 plugins/check_ping.c:428 |
1315 | msgid "You must specify a server address or host name" | 1315 | msgid "You must specify a server address or host name" |
1316 | msgstr "Vous devez spécifier une adresse ou un nom d'hôte" | 1316 | msgstr "Vous devez spécifier une adresse ou un nom d'hôte" |
1317 | 1317 | ||
1318 | #: plugins/check_http.c:606 | 1318 | #: plugins/check_http.c:607 |
1319 | msgid "" | 1319 | msgid "" |
1320 | "If you use a client certificate you must also specify a private key file" | 1320 | "If you use a client certificate you must also specify a private key file" |
1321 | msgstr "" | 1321 | msgstr "" |
1322 | 1322 | ||
1323 | #: plugins/check_http.c:733 plugins/check_http.c:901 | 1323 | #: plugins/check_http.c:734 plugins/check_http.c:902 |
1324 | msgid "HTTP UNKNOWN - Memory allocation error\n" | 1324 | msgid "HTTP UNKNOWN - Memory allocation error\n" |
1325 | msgstr "HTTP INCONNU - Impossible d'allouer la mémoire\n" | 1325 | msgstr "HTTP INCONNU - Impossible d'allouer la mémoire\n" |
1326 | 1326 | ||
1327 | #: plugins/check_http.c:805 | 1327 | #: plugins/check_http.c:806 |
1328 | #, c-format | 1328 | #, c-format |
1329 | msgid "%sServer date unknown, " | 1329 | msgid "%sServer date unknown, " |
1330 | msgstr "%sDate du serveur inconnue, " | 1330 | msgstr "%sDate du serveur inconnue, " |
1331 | 1331 | ||
1332 | #: plugins/check_http.c:808 | 1332 | #: plugins/check_http.c:809 |
1333 | #, c-format | 1333 | #, c-format |
1334 | msgid "%sDocument modification date unknown, " | 1334 | msgid "%sDocument modification date unknown, " |
1335 | msgstr "%sDate de modification du document inconnue, " | 1335 | msgstr "%sDate de modification du document inconnue, " |
1336 | 1336 | ||
1337 | #: plugins/check_http.c:815 | 1337 | #: plugins/check_http.c:816 |
1338 | #, c-format | 1338 | #, c-format |
1339 | msgid "%sServer date \"%100s\" unparsable, " | 1339 | msgid "%sServer date \"%100s\" unparsable, " |
1340 | msgstr "%sDate du serveur \"%100s\" illisible, " | 1340 | msgstr "%sDate du serveur \"%100s\" illisible, " |
1341 | 1341 | ||
1342 | #: plugins/check_http.c:818 | 1342 | #: plugins/check_http.c:819 |
1343 | #, c-format | 1343 | #, c-format |
1344 | msgid "%sDocument date \"%100s\" unparsable, " | 1344 | msgid "%sDocument date \"%100s\" unparsable, " |
1345 | msgstr "%sDate du document \"%100s\" illisible, " | 1345 | msgstr "%sDate du document \"%100s\" illisible, " |
1346 | 1346 | ||
1347 | #: plugins/check_http.c:821 | 1347 | #: plugins/check_http.c:822 |
1348 | #, c-format | 1348 | #, c-format |
1349 | msgid "%sDocument is %d seconds in the future, " | 1349 | msgid "%sDocument is %d seconds in the future, " |
1350 | msgstr "%sLa date du document est %d secondes dans le futur, " | 1350 | msgstr "%sLa date du document est %d secondes dans le futur, " |
1351 | 1351 | ||
1352 | #: plugins/check_http.c:826 | 1352 | #: plugins/check_http.c:827 |
1353 | #, c-format | 1353 | #, c-format |
1354 | msgid "%sLast modified %.1f days ago, " | 1354 | msgid "%sLast modified %.1f days ago, " |
1355 | msgstr "%sDernière modification %.1f jours auparavant, " | 1355 | msgstr "%sDernière modification %.1f jours auparavant, " |
1356 | 1356 | ||
1357 | #: plugins/check_http.c:829 | 1357 | #: plugins/check_http.c:830 |
1358 | #, c-format | 1358 | #, c-format |
1359 | msgid "%sLast modified %d:%02d:%02d ago, " | 1359 | msgid "%sLast modified %d:%02d:%02d ago, " |
1360 | msgstr "%sDernière modification %d:%02d:%02d auparavant, " | 1360 | msgstr "%sDernière modification %d:%02d:%02d auparavant, " |
1361 | 1361 | ||
1362 | #: plugins/check_http.c:943 | 1362 | #: plugins/check_http.c:944 |
1363 | msgid "HTTP CRITICAL - Unable to open TCP socket\n" | 1363 | msgid "HTTP CRITICAL - Unable to open TCP socket\n" |
1364 | msgstr "HTTP CRITIQUE - Impossible d'ouvrir un socket TCP\n" | 1364 | msgstr "HTTP CRITIQUE - Impossible d'ouvrir un socket TCP\n" |
1365 | 1365 | ||
1366 | #: plugins/check_http.c:1103 | 1366 | #: plugins/check_http.c:1104 |
1367 | #, fuzzy | 1367 | #, fuzzy |
1368 | msgid "HTTP UNKNOWN - Could not allocate memory for full_page\n" | 1368 | msgid "HTTP UNKNOWN - Could not allocate memory for full_page\n" |
1369 | msgstr "HTTP INCONNU - Impossible d'allouer une adresse\n" | 1369 | msgstr "HTTP INCONNU - Impossible d'allouer une adresse\n" |
1370 | 1370 | ||
1371 | #: plugins/check_http.c:1120 | 1371 | #: plugins/check_http.c:1121 |
1372 | msgid "HTTP CRITICAL - Error on receive\n" | 1372 | msgid "HTTP CRITICAL - Error on receive\n" |
1373 | msgstr "HTTP CRITIQUE - Erreur dans la réception\n" | 1373 | msgstr "HTTP CRITIQUE - Erreur dans la réception\n" |
1374 | 1374 | ||
1375 | #: plugins/check_http.c:1125 | 1375 | #: plugins/check_http.c:1126 |
1376 | msgid "HTTP CRITICAL - No data received from host\n" | 1376 | msgid "HTTP CRITICAL - No data received from host\n" |
1377 | msgstr "HTTP CRITIQUE - Pas de données reçues de l'hôte\n" | 1377 | msgstr "HTTP CRITIQUE - Pas de données reçues de l'hôte\n" |
1378 | 1378 | ||
1379 | #: plugins/check_http.c:1176 | 1379 | #: plugins/check_http.c:1177 |
1380 | #, c-format | 1380 | #, c-format |
1381 | msgid "Invalid HTTP response received from host: %s\n" | 1381 | msgid "Invalid HTTP response received from host: %s\n" |
1382 | msgstr "Réponse HTTP reçue de l'hôte invalide: %s\n" | 1382 | msgstr "Réponse HTTP reçue de l'hôte invalide: %s\n" |
1383 | 1383 | ||
1384 | #: plugins/check_http.c:1180 | 1384 | #: plugins/check_http.c:1181 |
1385 | #, c-format | 1385 | #, c-format |
1386 | msgid "Invalid HTTP response received from host on port %d: %s\n" | 1386 | 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" | 1387 | msgstr "Réponse HTTP reçue de l'hôte sur le port %d invalide: %s\n" |
1388 | 1388 | ||
1389 | #: plugins/check_http.c:1183 plugins/check_http.c:1376 | 1389 | #: plugins/check_http.c:1184 plugins/check_http.c:1377 |
1390 | #, c-format | 1390 | #, c-format |
1391 | msgid "" | 1391 | msgid "" |
1392 | "%s\n" | 1392 | "%s\n" |
1393 | "%s" | 1393 | "%s" |
1394 | msgstr "" | 1394 | msgstr "" |
1395 | 1395 | ||
1396 | #: plugins/check_http.c:1191 | 1396 | #: plugins/check_http.c:1192 |
1397 | #, c-format | 1397 | #, c-format |
1398 | msgid "Status line output matched \"%s\" - " | 1398 | msgid "Status line output matched \"%s\" - " |
1399 | msgstr "La ligne d'état correspond à \"%s\" - " | 1399 | msgstr "La ligne d'état correspond à \"%s\" - " |
1400 | 1400 | ||
1401 | #: plugins/check_http.c:1202 | 1401 | #: plugins/check_http.c:1203 |
1402 | #, c-format | 1402 | #, c-format |
1403 | msgid "HTTP CRITICAL: Invalid Status Line (%s)\n" | 1403 | msgid "HTTP CRITICAL: Invalid Status Line (%s)\n" |
1404 | msgstr "HTTP CRITIQUE: Ligne d'état non valide (%s)\n" | 1404 | msgstr "HTTP CRITIQUE: Ligne d'état non valide (%s)\n" |
1405 | 1405 | ||
1406 | #: plugins/check_http.c:1209 | 1406 | #: plugins/check_http.c:1210 |
1407 | #, c-format | 1407 | #, c-format |
1408 | msgid "HTTP CRITICAL: Invalid Status (%s)\n" | 1408 | msgid "HTTP CRITICAL: Invalid Status (%s)\n" |
1409 | msgstr "HTTP CRITIQUE: Etat Invalide (%s)\n" | 1409 | msgstr "HTTP CRITIQUE: Etat Invalide (%s)\n" |
1410 | 1410 | ||
1411 | #: plugins/check_http.c:1213 plugins/check_http.c:1218 | 1411 | #: plugins/check_http.c:1214 plugins/check_http.c:1219 |
1412 | #: plugins/check_http.c:1228 plugins/check_http.c:1232 | 1412 | #: plugins/check_http.c:1229 plugins/check_http.c:1233 |
1413 | #, c-format | 1413 | #, c-format |
1414 | msgid "%s - " | 1414 | msgid "%s - " |
1415 | msgstr "" | 1415 | msgstr "" |
1416 | 1416 | ||
1417 | #: plugins/check_http.c:1260 | 1417 | #: plugins/check_http.c:1261 |
1418 | #, fuzzy, c-format | 1418 | #, fuzzy, c-format |
1419 | msgid "%sheader '%s' not found on '%s://%s:%d%s', " | 1419 | msgid "%sheader '%s' not found on '%s://%s:%d%s', " |
1420 | msgstr "%schaîne non trouvée, " | 1420 | msgstr "%schaîne non trouvée, " |
1421 | 1421 | ||
1422 | #: plugins/check_http.c:1303 | 1422 | #: plugins/check_http.c:1304 |
1423 | #, fuzzy, c-format | 1423 | #, fuzzy, c-format |
1424 | msgid "%sstring '%s' not found on '%s://%s:%d%s', " | 1424 | msgid "%sstring '%s' not found on '%s://%s:%d%s', " |
1425 | msgstr "%schaîne non trouvée, " | 1425 | msgstr "%schaîne non trouvée, " |
1426 | 1426 | ||
1427 | #: plugins/check_http.c:1317 | 1427 | #: plugins/check_http.c:1318 |
1428 | #, c-format | 1428 | #, c-format |
1429 | msgid "%spattern not found, " | 1429 | msgid "%spattern not found, " |
1430 | msgstr "%sexpression non trouvée, " | 1430 | msgstr "%sexpression non trouvée, " |
1431 | 1431 | ||
1432 | #: plugins/check_http.c:1319 | 1432 | #: plugins/check_http.c:1320 |
1433 | #, c-format | 1433 | #, c-format |
1434 | msgid "%spattern found, " | 1434 | msgid "%spattern found, " |
1435 | msgstr "%sexpression trouvée, " | 1435 | msgstr "%sexpression trouvée, " |
1436 | 1436 | ||
1437 | #: plugins/check_http.c:1325 | 1437 | #: plugins/check_http.c:1326 |
1438 | #, c-format | 1438 | #, c-format |
1439 | msgid "%sExecute Error: %s, " | 1439 | msgid "%sExecute Error: %s, " |
1440 | msgstr "%sErreur d'exécution: %s, " | 1440 | msgstr "%sErreur d'exécution: %s, " |
1441 | 1441 | ||
1442 | #: plugins/check_http.c:1341 | 1442 | #: plugins/check_http.c:1342 |
1443 | #, c-format | 1443 | #, c-format |
1444 | msgid "%spage size %d too large, " | 1444 | msgid "%spage size %d too large, " |
1445 | msgstr "%sla taille de la page est trop grande (%d), " | 1445 | msgstr "%sla taille de la page est trop grande (%d), " |
1446 | 1446 | ||
1447 | #: plugins/check_http.c:1344 | 1447 | #: plugins/check_http.c:1345 |
1448 | #, c-format | 1448 | #, c-format |
1449 | msgid "%spage size %d too small, " | 1449 | msgid "%spage size %d too small, " |
1450 | msgstr "%sla taille de la page est trop petite (%d), " | 1450 | msgstr "%sla taille de la page est trop petite (%d), " |
1451 | 1451 | ||
1452 | #: plugins/check_http.c:1357 | 1452 | #: plugins/check_http.c:1358 |
1453 | #, fuzzy, c-format | 1453 | #, fuzzy, c-format |
1454 | msgid "%s - %d bytes in %.3f second response time %s|%s %s %s %s %s %s %s" | 1454 | 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" | 1455 | msgstr "%s - %d octets en %.3f secondes de temps de réponse %s|%s %s" |
1456 | 1456 | ||
1457 | #: plugins/check_http.c:1369 | 1457 | #: plugins/check_http.c:1370 |
1458 | #, c-format | 1458 | #, c-format |
1459 | msgid "%s - %d bytes in %.3f second response time %s|%s %s" | 1459 | 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" | 1460 | msgstr "%s - %d octets en %.3f secondes de temps de réponse %s|%s %s" |
1461 | 1461 | ||
1462 | #: plugins/check_http.c:1499 | 1462 | #: plugins/check_http.c:1500 |
1463 | msgid "HTTP UNKNOWN - Could not allocate addr\n" | 1463 | msgid "HTTP UNKNOWN - Could not allocate addr\n" |
1464 | msgstr "HTTP INCONNU - Impossible d'allouer une adresse\n" | 1464 | msgstr "HTTP INCONNU - Impossible d'allouer une adresse\n" |
1465 | 1465 | ||
1466 | #: plugins/check_http.c:1504 plugins/check_http.c:1535 | 1466 | #: plugins/check_http.c:1505 plugins/check_http.c:1536 |
1467 | msgid "HTTP UNKNOWN - Could not allocate URL\n" | 1467 | msgid "HTTP UNKNOWN - Could not allocate URL\n" |
1468 | msgstr "HTTP INCONNU - Impossible d'allouer l'URL\n" | 1468 | msgstr "HTTP INCONNU - Impossible d'allouer l'URL\n" |
1469 | 1469 | ||
1470 | #: plugins/check_http.c:1513 | 1470 | #: plugins/check_http.c:1514 |
1471 | #, c-format | 1471 | #, c-format |
1472 | msgid "HTTP UNKNOWN - Could not find redirect location - %s%s\n" | 1472 | msgid "HTTP UNKNOWN - Could not find redirect location - %s%s\n" |
1473 | msgstr "" | 1473 | msgstr "" |
1474 | "HTTP INCONNU - Impossible de trouver l'endroit de la redirection - %s%s\n" | 1474 | "HTTP INCONNU - Impossible de trouver l'endroit de la redirection - %s%s\n" |
1475 | 1475 | ||
1476 | #: plugins/check_http.c:1528 | 1476 | #: plugins/check_http.c:1529 |
1477 | #, c-format | 1477 | #, c-format |
1478 | msgid "HTTP UNKNOWN - Empty redirect location%s\n" | 1478 | msgid "HTTP UNKNOWN - Empty redirect location%s\n" |
1479 | msgstr "HTTP INCONNU - endroit de redirection vide%s\n" | 1479 | msgstr "HTTP INCONNU - endroit de redirection vide%s\n" |
1480 | 1480 | ||
1481 | #: plugins/check_http.c:1590 | 1481 | #: plugins/check_http.c:1591 |
1482 | #, c-format | 1482 | #, c-format |
1483 | msgid "HTTP UNKNOWN - Could not parse redirect location - %s%s\n" | 1483 | msgid "HTTP UNKNOWN - Could not parse redirect location - %s%s\n" |
1484 | msgstr "" | 1484 | msgstr "" |
1485 | "HTTP INCONNU - Impossible de définir l'endroit de la redirection - %s%s\n" | 1485 | "HTTP INCONNU - Impossible de définir l'endroit de la redirection - %s%s\n" |
1486 | 1486 | ||
1487 | #: plugins/check_http.c:1600 | 1487 | #: plugins/check_http.c:1601 |
1488 | #, c-format | 1488 | #, c-format |
1489 | msgid "HTTP WARNING - maximum redirection depth %d exceeded - %s://%s:%d%s%s\n" | 1489 | msgid "HTTP WARNING - maximum redirection depth %d exceeded - %s://%s:%d%s%s\n" |
1490 | msgstr "" | 1490 | msgstr "" |
1491 | "HTTP AVERTISSEMENT - le niveau maximum de redirection %d à été dépassé - " | 1491 | "HTTP AVERTISSEMENT - le niveau maximum de redirection %d à été dépassé - " |
1492 | "%s://%s:%d%s%s\n" | 1492 | "%s://%s:%d%s%s\n" |
1493 | 1493 | ||
1494 | #: plugins/check_http.c:1608 | 1494 | #: plugins/check_http.c:1609 |
1495 | #, fuzzy, c-format | 1495 | #, fuzzy, c-format |
1496 | msgid "HTTP CRITICAL - redirection creates an infinite loop - %s://%s:%d%s%s\n" | 1496 | msgid "HTTP CRITICAL - redirection creates an infinite loop - %s://%s:%d%s%s\n" |
1497 | msgstr "" | 1497 | msgstr "" |
1498 | "HTTP AVERTISSEMENT - la redirection crée une boucle infinie - %s://%s:" | 1498 | "HTTP AVERTISSEMENT - la redirection crée une boucle infinie - %s://%s:" |
1499 | "%d%s%s\n" | 1499 | "%d%s%s\n" |
1500 | 1500 | ||
1501 | #: plugins/check_http.c:1629 | 1501 | #: plugins/check_http.c:1630 |
1502 | #, c-format | 1502 | #, c-format |
1503 | msgid "HTTP UNKNOWN - Redirection to port above %d - %s://%s:%d%s%s\n" | 1503 | 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" | 1504 | msgstr "HTTP INCONNU - Redirection à un port supérieur à %d - %s://%s:%d%s%s\n" |
1505 | 1505 | ||
1506 | #: plugins/check_http.c:1637 | 1506 | #: plugins/check_http.c:1638 |
1507 | #, c-format | 1507 | #, c-format |
1508 | msgid "Redirection to %s://%s:%d%s\n" | 1508 | msgid "Redirection to %s://%s:%d%s\n" |
1509 | msgstr "Redirection vers %s://%s:%d%s\n" | 1509 | msgstr "Redirection vers %s://%s:%d%s\n" |
1510 | 1510 | ||
1511 | #: plugins/check_http.c:1712 | 1511 | #: plugins/check_http.c:1713 |
1512 | msgid "This plugin tests the HTTP service on the specified host. It can test" | 1512 | msgid "This plugin tests the HTTP service on the specified host. It can test" |
1513 | msgstr "" | 1513 | msgstr "" |
1514 | "Ce plugin teste le service HTTP sur l'hôte spécifié. Il peut tester les" | 1514 | "Ce plugin teste le service HTTP sur l'hôte spécifié. Il peut tester les" |
1515 | 1515 | ||
1516 | #: plugins/check_http.c:1713 | 1516 | #: plugins/check_http.c:1714 |
1517 | msgid "normal (http) and secure (https) servers, follow redirects, search for" | 1517 | msgid "normal (http) and secure (https) servers, follow redirects, search for" |
1518 | msgstr "" | 1518 | msgstr "" |
1519 | "serveurs normaux (http) et sécurisés (https), suivre les redirections, " | 1519 | "serveurs normaux (http) et sécurisés (https), suivre les redirections, " |
1520 | "rechercher des" | 1520 | "rechercher des" |
1521 | 1521 | ||
1522 | #: plugins/check_http.c:1714 | 1522 | #: plugins/check_http.c:1715 |
1523 | msgid "strings and regular expressions, check connection times, and report on" | 1523 | msgid "strings and regular expressions, check connection times, and report on" |
1524 | msgstr "" | 1524 | msgstr "" |
1525 | "chaînes de caractères et expressions rationnelles, vérifier le temps de " | 1525 | "chaînes de caractères et expressions rationnelles, vérifier le temps de " |
1526 | "réponse" | 1526 | "réponse" |
1527 | 1527 | ||
1528 | #: plugins/check_http.c:1715 | 1528 | #: plugins/check_http.c:1716 |
1529 | msgid "certificate expiration times." | 1529 | msgid "certificate expiration times." |
1530 | msgstr "et rapporter la date d'expiration du certificat." | 1530 | msgstr "et rapporter la date d'expiration du certificat." |
1531 | 1531 | ||
1532 | #: plugins/check_http.c:1722 | 1532 | #: plugins/check_http.c:1723 |
1533 | #, c-format | 1533 | #, c-format |
1534 | msgid "In the first form, make an HTTP request." | 1534 | msgid "In the first form, make an HTTP request." |
1535 | msgstr "" | 1535 | msgstr "" |
1536 | 1536 | ||
1537 | #: plugins/check_http.c:1723 | 1537 | #: plugins/check_http.c:1724 |
1538 | #, c-format | 1538 | #, c-format |
1539 | msgid "" | 1539 | msgid "" |
1540 | "In the second form, connect to the server and check the TLS certificate." | 1540 | "In the second form, connect to the server and check the TLS certificate." |
1541 | msgstr "" | 1541 | msgstr "" |
1542 | 1542 | ||
1543 | #: plugins/check_http.c:1725 | 1543 | #: plugins/check_http.c:1726 |
1544 | #, c-format | 1544 | #, c-format |
1545 | msgid "NOTE: One or both of -H and -I must be specified" | 1545 | 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" | 1546 | msgstr "NOTE: les paramètres -H et -I peuvent être spécifiés" |
1547 | 1547 | ||
1548 | #: plugins/check_http.c:1733 | 1548 | #: plugins/check_http.c:1734 |
1549 | msgid "Host name argument for servers using host headers (virtual host)" | 1549 | msgid "Host name argument for servers using host headers (virtual host)" |
1550 | msgstr "" | 1550 | msgstr "" |
1551 | 1551 | ||
1552 | #: plugins/check_http.c:1734 | 1552 | #: plugins/check_http.c:1735 |
1553 | msgid "Append a port to include it in the header (eg: example.com:5000)" | 1553 | msgid "Append a port to include it in the header (eg: example.com:5000)" |
1554 | msgstr "" | 1554 | msgstr "" |
1555 | 1555 | ||
1556 | #: plugins/check_http.c:1736 | 1556 | #: plugins/check_http.c:1737 |
1557 | msgid "" | 1557 | msgid "" |
1558 | "IP address or name (use numeric address if possible to bypass DNS lookup)." | 1558 | "IP address or name (use numeric address if possible to bypass DNS lookup)." |
1559 | msgstr "" | 1559 | msgstr "" |
1560 | 1560 | ||
1561 | #: plugins/check_http.c:1738 | 1561 | #: plugins/check_http.c:1739 |
1562 | msgid "Port number (default: " | 1562 | msgid "Port number (default: " |
1563 | msgstr "Numéro du port (défaut: " | 1563 | msgstr "Numéro du port (défaut: " |
1564 | 1564 | ||
1565 | #: plugins/check_http.c:1745 | 1565 | #: plugins/check_http.c:1746 |
1566 | msgid "" | 1566 | msgid "" |
1567 | "Connect via SSL. Port defaults to 443. VERSION is optional, and prevents" | 1567 | "Connect via SSL. Port defaults to 443. VERSION is optional, and prevents" |
1568 | msgstr "" | 1568 | msgstr "" |
1569 | 1569 | ||
1570 | #: plugins/check_http.c:1746 | 1570 | #: plugins/check_http.c:1747 |
1571 | msgid "auto-negotiation (2 = SSLv2, 3 = SSLv3, 1 = TLSv1, 1.1 = TLSv1.1," | 1571 | msgid "auto-negotiation (2 = SSLv2, 3 = SSLv3, 1 = TLSv1, 1.1 = TLSv1.1," |
1572 | msgstr "" | 1572 | msgstr "" |
1573 | 1573 | ||
1574 | #: plugins/check_http.c:1747 | 1574 | #: plugins/check_http.c:1748 |
1575 | msgid "1.2 = TLSv1.2). With a '+' suffix, newer versions are also accepted." | 1575 | msgid "1.2 = TLSv1.2). With a '+' suffix, newer versions are also accepted." |
1576 | msgstr "" | 1576 | msgstr "" |
1577 | 1577 | ||
1578 | #: plugins/check_http.c:1749 plugins/check_smtp.c:856 | 1578 | #: plugins/check_http.c:1750 plugins/check_smtp.c:857 |
1579 | msgid "Enable SSL/TLS hostname extension support (SNI)" | 1579 | msgid "Enable SSL/TLS hostname extension support (SNI)" |
1580 | msgstr "" | 1580 | msgstr "" |
1581 | 1581 | ||
1582 | #: plugins/check_http.c:1751 | 1582 | #: plugins/check_http.c:1752 |
1583 | msgid "" | 1583 | msgid "" |
1584 | "Minimum number of days a certificate has to be valid. Port defaults to 443" | 1584 | "Minimum number of days a certificate has to be valid. Port defaults to 443" |
1585 | msgstr "" | 1585 | msgstr "" |
1586 | "Nombre de jours minimum pour que le certificat soit valide. Port par défaut " | 1586 | "Nombre de jours minimum pour que le certificat soit valide. Port par défaut " |
1587 | "443" | 1587 | "443" |
1588 | 1588 | ||
1589 | #: plugins/check_http.c:1752 | 1589 | #: plugins/check_http.c:1753 |
1590 | msgid "" | 1590 | msgid "" |
1591 | "(when this option is used the URL is not checked by default. You can use" | 1591 | "(when this option is used the URL is not checked by default. You can use" |
1592 | msgstr "" | 1592 | msgstr "" |
1593 | 1593 | ||
1594 | #: plugins/check_http.c:1753 | 1594 | #: plugins/check_http.c:1754 |
1595 | msgid " --continue-after-certificate to override this behavior)" | 1595 | msgid " --continue-after-certificate to override this behavior)" |
1596 | msgstr "" | 1596 | msgstr "" |
1597 | 1597 | ||
1598 | #: plugins/check_http.c:1755 | 1598 | #: plugins/check_http.c:1756 |
1599 | msgid "" | 1599 | msgid "" |
1600 | "Allows the HTTP check to continue after performing the certificate check." | 1600 | "Allows the HTTP check to continue after performing the certificate check." |
1601 | msgstr "" | 1601 | msgstr "" |
1602 | 1602 | ||
1603 | #: plugins/check_http.c:1756 | 1603 | #: plugins/check_http.c:1757 |
1604 | msgid "Does nothing unless -C is used." | 1604 | msgid "Does nothing unless -C is used." |
1605 | msgstr "" | 1605 | msgstr "" |
1606 | 1606 | ||
1607 | #: plugins/check_http.c:1758 | 1607 | #: plugins/check_http.c:1759 |
1608 | msgid "Name of file that contains the client certificate (PEM format)" | 1608 | msgid "Name of file that contains the client certificate (PEM format)" |
1609 | msgstr "" | 1609 | msgstr "" |
1610 | 1610 | ||
1611 | #: plugins/check_http.c:1759 | 1611 | #: plugins/check_http.c:1760 |
1612 | msgid "to be used in establishing the SSL session" | 1612 | msgid "to be used in establishing the SSL session" |
1613 | msgstr "" | 1613 | msgstr "" |
1614 | 1614 | ||
1615 | #: plugins/check_http.c:1761 | 1615 | #: plugins/check_http.c:1762 |
1616 | msgid "Name of file containing the private key (PEM format)" | 1616 | msgid "Name of file containing the private key (PEM format)" |
1617 | msgstr "" | 1617 | msgstr "" |
1618 | 1618 | ||
1619 | #: plugins/check_http.c:1762 | 1619 | #: plugins/check_http.c:1763 |
1620 | msgid "matching the client certificate" | 1620 | msgid "matching the client certificate" |
1621 | msgstr "" | 1621 | msgstr "" |
1622 | 1622 | ||
1623 | #: plugins/check_http.c:1766 | 1623 | #: plugins/check_http.c:1767 |
1624 | msgid "Comma-delimited list of strings, at least one of them is expected in" | 1624 | msgid "Comma-delimited list of strings, at least one of them is expected in" |
1625 | msgstr "" | 1625 | msgstr "" |
1626 | "Liste the chaines de charactères séparées par des virgules, au moins une " | 1626 | "Liste the chaines de charactères séparées par des virgules, au moins une " |
1627 | "d'elles" | 1627 | "d'elles" |
1628 | 1628 | ||
1629 | #: plugins/check_http.c:1767 | 1629 | #: plugins/check_http.c:1768 |
1630 | msgid "the first (status) line of the server response (default: " | 1630 | 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: " | 1631 | msgstr "est attendue dans la première ligne de réponse du serveur (défaut: " |
1632 | 1632 | ||
1633 | #: plugins/check_http.c:1769 | 1633 | #: plugins/check_http.c:1770 |
1634 | msgid "" | 1634 | msgid "" |
1635 | "If specified skips all other status line logic (ex: 3xx, 4xx, 5xx processing)" | 1635 | "If specified skips all other status line logic (ex: 3xx, 4xx, 5xx processing)" |
1636 | msgstr "" | 1636 | msgstr "" |
1637 | "Si spécifié, surpasse toute autre logique de status (ex: 3xx, 4xx, 5xx)" | 1637 | "Si spécifié, surpasse toute autre logique de status (ex: 3xx, 4xx, 5xx)" |
1638 | 1638 | ||
1639 | #: plugins/check_http.c:1771 | 1639 | #: plugins/check_http.c:1772 |
1640 | #, fuzzy | 1640 | #, fuzzy |
1641 | msgid "String to expect in the response headers" | 1641 | msgid "String to expect in the response headers" |
1642 | msgstr "Chaîne de caractères à attendre en réponse" | 1642 | msgstr "Chaîne de caractères à attendre en réponse" |
1643 | 1643 | ||
1644 | #: plugins/check_http.c:1773 | 1644 | #: plugins/check_http.c:1774 |
1645 | msgid "String to expect in the content" | 1645 | msgid "String to expect in the content" |
1646 | msgstr "Chaîne de caractère attendue dans le contenu" | 1646 | msgstr "Chaîne de caractère attendue dans le contenu" |
1647 | 1647 | ||
1648 | #: plugins/check_http.c:1775 | 1648 | #: plugins/check_http.c:1776 |
1649 | msgid "URL to GET or POST (default: /)" | 1649 | msgid "URL to GET or POST (default: /)" |
1650 | msgstr "URL pour le GET ou le POST (défaut: /)" | 1650 | msgstr "URL pour le GET ou le POST (défaut: /)" |
1651 | 1651 | ||
1652 | #: plugins/check_http.c:1777 | 1652 | #: plugins/check_http.c:1778 |
1653 | msgid "URL encoded http POST data" | 1653 | msgid "URL encoded http POST data" |
1654 | msgstr "" | 1654 | msgstr "" |
1655 | 1655 | ||
1656 | #: plugins/check_http.c:1779 | 1656 | #: plugins/check_http.c:1780 |
1657 | msgid "Set HTTP method." | 1657 | msgid "Set HTTP method." |
1658 | msgstr "" | 1658 | msgstr "" |
1659 | 1659 | ||
1660 | #: plugins/check_http.c:1781 | 1660 | #: plugins/check_http.c:1782 |
1661 | msgid "Don't wait for document body: stop reading after headers." | 1661 | msgid "Don't wait for document body: stop reading after headers." |
1662 | msgstr "" | 1662 | msgstr "" |
1663 | "Ne pas attendre pour le corps du document: arrêter de lire après les entêtes" | 1663 | "Ne pas attendre pour le corps du document: arrêter de lire après les entêtes" |
1664 | 1664 | ||
1665 | #: plugins/check_http.c:1782 | 1665 | #: plugins/check_http.c:1783 |
1666 | msgid "(Note that this still does an HTTP GET or POST, not a HEAD.)" | 1666 | 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.)" | 1667 | msgstr "(Veuillez noter qu'un HTTP GET ou POST est effectué, pas un HEAD.)" |
1668 | 1668 | ||
1669 | #: plugins/check_http.c:1784 | 1669 | #: plugins/check_http.c:1785 |
1670 | msgid "Warn if document is more than SECONDS old. the number can also be of" | 1670 | msgid "Warn if document is more than SECONDS old. the number can also be of" |
1671 | msgstr "" | 1671 | msgstr "" |
1672 | 1672 | ||
1673 | #: plugins/check_http.c:1785 | 1673 | #: plugins/check_http.c:1786 |
1674 | msgid "the form \"10m\" for minutes, \"10h\" for hours, or \"10d\" for days." | 1674 | msgid "the form \"10m\" for minutes, \"10h\" for hours, or \"10d\" for days." |
1675 | msgstr "" | 1675 | msgstr "" |
1676 | 1676 | ||
1677 | #: plugins/check_http.c:1787 | 1677 | #: plugins/check_http.c:1788 |
1678 | msgid "specify Content-Type header media type when POSTing\n" | 1678 | msgid "specify Content-Type header media type when POSTing\n" |
1679 | msgstr "" | 1679 | msgstr "" |
1680 | 1680 | ||
1681 | #: plugins/check_http.c:1790 | 1681 | #: plugins/check_http.c:1791 |
1682 | msgid "Allow regex to span newlines (must precede -r or -R)" | 1682 | msgid "Allow regex to span newlines (must precede -r or -R)" |
1683 | msgstr "" | 1683 | msgstr "" |
1684 | 1684 | ||
1685 | #: plugins/check_http.c:1792 | 1685 | #: plugins/check_http.c:1793 |
1686 | msgid "Search page for regex STRING" | 1686 | msgid "Search page for regex STRING" |
1687 | msgstr "" | 1687 | msgstr "" |
1688 | 1688 | ||
1689 | #: plugins/check_http.c:1794 | 1689 | #: plugins/check_http.c:1795 |
1690 | msgid "Search page for case-insensitive regex STRING" | 1690 | msgid "Search page for case-insensitive regex STRING" |
1691 | msgstr "" | 1691 | msgstr "" |
1692 | 1692 | ||
1693 | #: plugins/check_http.c:1796 | 1693 | #: plugins/check_http.c:1797 |
1694 | msgid "Return CRITICAL if found, OK if not\n" | 1694 | msgid "Return CRITICAL if found, OK if not\n" |
1695 | msgstr "" | 1695 | msgstr "" |
1696 | 1696 | ||
1697 | #: plugins/check_http.c:1799 | 1697 | #: plugins/check_http.c:1800 |
1698 | msgid "Username:password on sites with basic authentication" | 1698 | msgid "Username:password on sites with basic authentication" |
1699 | msgstr "" | 1699 | msgstr "" |
1700 | 1700 | ||
1701 | #: plugins/check_http.c:1801 | 1701 | #: plugins/check_http.c:1802 |
1702 | msgid "Username:password on proxy-servers with basic authentication" | 1702 | msgid "Username:password on proxy-servers with basic authentication" |
1703 | msgstr "" | 1703 | msgstr "" |
1704 | 1704 | ||
1705 | #: plugins/check_http.c:1803 | 1705 | #: plugins/check_http.c:1804 |
1706 | msgid "String to be sent in http header as \"User Agent\"" | 1706 | msgid "String to be sent in http header as \"User Agent\"" |
1707 | msgstr "" | 1707 | msgstr "" |
1708 | 1708 | ||
1709 | #: plugins/check_http.c:1805 | 1709 | #: plugins/check_http.c:1806 |
1710 | msgid "" | 1710 | msgid "" |
1711 | "Any other tags to be sent in http header. Use multiple times for additional " | 1711 | "Any other tags to be sent in http header. Use multiple times for additional " |
1712 | "headers" | 1712 | "headers" |
1713 | msgstr "" | 1713 | msgstr "" |
1714 | 1714 | ||
1715 | #: plugins/check_http.c:1807 | 1715 | #: plugins/check_http.c:1808 |
1716 | msgid "Print additional performance data" | 1716 | msgid "Print additional performance data" |
1717 | msgstr "" | 1717 | msgstr "" |
1718 | 1718 | ||
1719 | #: plugins/check_http.c:1809 | 1719 | #: plugins/check_http.c:1810 |
1720 | msgid "Print body content below status line" | 1720 | msgid "Print body content below status line" |
1721 | msgstr "" | 1721 | msgstr "" |
1722 | 1722 | ||
1723 | #: plugins/check_http.c:1811 | 1723 | #: plugins/check_http.c:1812 |
1724 | msgid "Wrap output in HTML link (obsoleted by urlize)" | 1724 | msgid "Wrap output in HTML link (obsoleted by urlize)" |
1725 | msgstr "" | 1725 | msgstr "" |
1726 | 1726 | ||
1727 | #: plugins/check_http.c:1813 | 1727 | #: plugins/check_http.c:1814 |
1728 | msgid "How to handle redirected pages. sticky is like follow but stick to the" | 1728 | msgid "How to handle redirected pages. sticky is like follow but stick to the" |
1729 | msgstr "" | 1729 | msgstr "" |
1730 | 1730 | ||
1731 | #: plugins/check_http.c:1814 | 1731 | #: plugins/check_http.c:1815 |
1732 | msgid "specified IP address. stickyport also ensures port stays the same." | 1732 | msgid "specified IP address. stickyport also ensures port stays the same." |
1733 | msgstr "" | 1733 | msgstr "" |
1734 | 1734 | ||
1735 | #: plugins/check_http.c:1816 | 1735 | #: plugins/check_http.c:1817 |
1736 | #, fuzzy | 1736 | #, fuzzy |
1737 | msgid "Maximal number of redirects (default: " | 1737 | msgid "Maximal number of redirects (default: " |
1738 | msgstr "PROCS - nombre de processus (défaut)" | 1738 | msgstr "PROCS - nombre de processus (défaut)" |
1739 | 1739 | ||
1740 | #: plugins/check_http.c:1819 | 1740 | #: plugins/check_http.c:1820 |
1741 | msgid "Minimum page size required (bytes) : Maximum page size required (bytes)" | 1741 | msgid "Minimum page size required (bytes) : Maximum page size required (bytes)" |
1742 | msgstr "" | 1742 | msgstr "" |
1743 | 1743 | ||
1744 | #: plugins/check_http.c:1828 | 1744 | #: plugins/check_http.c:1829 |
1745 | msgid "This plugin will attempt to open an HTTP connection with the host." | 1745 | 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." | 1746 | msgstr "Ce plugin va essayer d'ouvrir un connexion SMTP avec l'hôte." |
1747 | 1747 | ||
1748 | #: plugins/check_http.c:1829 | 1748 | #: plugins/check_http.c:1830 |
1749 | msgid "" | 1749 | msgid "" |
1750 | "Successful connects return STATE_OK, refusals and timeouts return " | 1750 | "Successful connects return STATE_OK, refusals and timeouts return " |
1751 | "STATE_CRITICAL" | 1751 | "STATE_CRITICAL" |
1752 | msgstr "" | 1752 | msgstr "" |
1753 | 1753 | ||
1754 | #: plugins/check_http.c:1830 | 1754 | #: plugins/check_http.c:1831 |
1755 | msgid "" | 1755 | msgid "" |
1756 | "other errors return STATE_UNKNOWN. Successful connects, but incorrect " | 1756 | "other errors return STATE_UNKNOWN. Successful connects, but incorrect " |
1757 | "response" | 1757 | "response" |
1758 | msgstr "" | 1758 | msgstr "" |
1759 | 1759 | ||
1760 | #: plugins/check_http.c:1831 | 1760 | #: plugins/check_http.c:1832 |
1761 | msgid "" | 1761 | msgid "" |
1762 | "messages from the host result in STATE_WARNING return values. If you are" | 1762 | "messages from the host result in STATE_WARNING return values. If you are" |
1763 | msgstr "" | 1763 | msgstr "" |
1764 | 1764 | ||
1765 | #: plugins/check_http.c:1832 | 1765 | #: plugins/check_http.c:1833 |
1766 | msgid "" | 1766 | msgid "" |
1767 | "checking a virtual server that uses 'host headers' you must supply the FQDN" | 1767 | "checking a virtual server that uses 'host headers' you must supply the FQDN" |
1768 | msgstr "" | 1768 | msgstr "" |
1769 | 1769 | ||
1770 | #: plugins/check_http.c:1833 | 1770 | #: plugins/check_http.c:1834 |
1771 | msgid "(fully qualified domain name) as the [host_name] argument." | 1771 | msgid "(fully qualified domain name) as the [host_name] argument." |
1772 | msgstr "" | 1772 | msgstr "" |
1773 | 1773 | ||
1774 | #: plugins/check_http.c:1837 | 1774 | #: plugins/check_http.c:1838 |
1775 | msgid "This plugin can also check whether an SSL enabled web server is able to" | 1775 | msgid "This plugin can also check whether an SSL enabled web server is able to" |
1776 | msgstr "" | 1776 | msgstr "" |
1777 | 1777 | ||
1778 | #: plugins/check_http.c:1838 | 1778 | #: plugins/check_http.c:1839 |
1779 | msgid "serve content (optionally within a specified time) or whether the X509 " | 1779 | msgid "serve content (optionally within a specified time) or whether the X509 " |
1780 | msgstr "" | 1780 | msgstr "" |
1781 | 1781 | ||
1782 | #: plugins/check_http.c:1839 | 1782 | #: plugins/check_http.c:1840 |
1783 | msgid "certificate is still valid for the specified number of days." | 1783 | msgid "certificate is still valid for the specified number of days." |
1784 | msgstr "" | 1784 | msgstr "" |
1785 | 1785 | ||
1786 | #: plugins/check_http.c:1841 | 1786 | #: plugins/check_http.c:1842 |
1787 | #, fuzzy | 1787 | #, fuzzy |
1788 | msgid "Please note that this plugin does not check if the presented server" | 1788 | 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" | 1789 | msgstr "Ce plugin vérifie le service ntp sur l'hôte" |
1790 | 1790 | ||
1791 | #: plugins/check_http.c:1842 | 1791 | #: plugins/check_http.c:1843 |
1792 | msgid "certificate matches the hostname of the server, or if the certificate" | 1792 | msgid "certificate matches the hostname of the server, or if the certificate" |
1793 | msgstr "" | 1793 | msgstr "" |
1794 | 1794 | ||
1795 | #: plugins/check_http.c:1843 | 1795 | #: plugins/check_http.c:1844 |
1796 | msgid "has a valid chain of trust to one of the locally installed CAs." | 1796 | msgid "has a valid chain of trust to one of the locally installed CAs." |
1797 | msgstr "" | 1797 | msgstr "" |
1798 | 1798 | ||
1799 | #: plugins/check_http.c:1847 | 1799 | #: plugins/check_http.c:1848 |
1800 | msgid "" | 1800 | msgid "" |
1801 | "When the 'www.verisign.com' server returns its content within 5 seconds," | 1801 | "When the 'www.verisign.com' server returns its content within 5 seconds," |
1802 | msgstr "" | 1802 | msgstr "" |
1803 | 1803 | ||
1804 | #: plugins/check_http.c:1848 plugins/check_http.c:1867 | 1804 | #: plugins/check_http.c:1849 plugins/check_http.c:1868 |
1805 | msgid "" | 1805 | msgid "" |
1806 | "a STATE_OK will be returned. When the server returns its content but exceeds" | 1806 | "a STATE_OK will be returned. When the server returns its content but exceeds" |
1807 | msgstr "" | 1807 | msgstr "" |
1808 | 1808 | ||
1809 | #: plugins/check_http.c:1849 plugins/check_http.c:1868 | 1809 | #: plugins/check_http.c:1850 plugins/check_http.c:1869 |
1810 | msgid "" | 1810 | msgid "" |
1811 | "the 5-second threshold, a STATE_WARNING will be returned. When an error " | 1811 | "the 5-second threshold, a STATE_WARNING will be returned. When an error " |
1812 | "occurs," | 1812 | "occurs," |
1813 | msgstr "" | 1813 | msgstr "" |
1814 | 1814 | ||
1815 | #: plugins/check_http.c:1850 | 1815 | #: plugins/check_http.c:1851 |
1816 | msgid "a STATE_CRITICAL will be returned." | 1816 | msgid "a STATE_CRITICAL will be returned." |
1817 | msgstr "" | 1817 | msgstr "" |
1818 | 1818 | ||
1819 | #: plugins/check_http.c:1853 | 1819 | #: plugins/check_http.c:1854 |
1820 | msgid "" | 1820 | msgid "" |
1821 | "When the certificate of 'www.verisign.com' is valid for more than 14 days," | 1821 | "When the certificate of 'www.verisign.com' is valid for more than 14 days," |
1822 | msgstr "" | 1822 | msgstr "" |
1823 | 1823 | ||
1824 | #: plugins/check_http.c:1854 plugins/check_http.c:1860 | 1824 | #: plugins/check_http.c:1855 plugins/check_http.c:1861 |
1825 | msgid "" | 1825 | msgid "" |
1826 | "a STATE_OK is returned. When the certificate is still valid, but for less " | 1826 | "a STATE_OK is returned. When the certificate is still valid, but for less " |
1827 | "than" | 1827 | "than" |
1828 | msgstr "" | 1828 | msgstr "" |
1829 | 1829 | ||
1830 | #: plugins/check_http.c:1855 | 1830 | #: plugins/check_http.c:1856 |
1831 | msgid "" | 1831 | msgid "" |
1832 | "14 days, a STATE_WARNING is returned. A STATE_CRITICAL will be returned when" | 1832 | "14 days, a STATE_WARNING is returned. A STATE_CRITICAL will be returned when" |
1833 | msgstr "" | 1833 | msgstr "" |
1834 | 1834 | ||
1835 | #: plugins/check_http.c:1856 | 1835 | #: plugins/check_http.c:1857 |
1836 | msgid "the certificate is expired." | 1836 | msgid "the certificate is expired." |
1837 | msgstr "le certificat est expiré." | 1837 | msgstr "le certificat est expiré." |
1838 | 1838 | ||
1839 | #: plugins/check_http.c:1859 | 1839 | #: plugins/check_http.c:1860 |
1840 | msgid "" | 1840 | msgid "" |
1841 | "When the certificate of 'www.verisign.com' is valid for more than 30 days," | 1841 | "When the certificate of 'www.verisign.com' is valid for more than 30 days," |
1842 | msgstr "" | 1842 | msgstr "" |
1843 | 1843 | ||
1844 | #: plugins/check_http.c:1861 | 1844 | #: plugins/check_http.c:1862 |
1845 | msgid "30 days, but more than 14 days, a STATE_WARNING is returned." | 1845 | msgid "30 days, but more than 14 days, a STATE_WARNING is returned." |
1846 | msgstr "" | 1846 | msgstr "" |
1847 | 1847 | ||
1848 | #: plugins/check_http.c:1862 | 1848 | #: plugins/check_http.c:1863 |
1849 | msgid "" | 1849 | msgid "" |
1850 | "A STATE_CRITICAL will be returned when certificate expires in less than 14 " | 1850 | "A STATE_CRITICAL will be returned when certificate expires in less than 14 " |
1851 | "days" | 1851 | "days" |
1852 | msgstr "" | 1852 | msgstr "" |
1853 | 1853 | ||
1854 | #: plugins/check_http.c:1865 | 1854 | #: plugins/check_http.c:1866 |
1855 | msgid "" | 1855 | msgid "" |
1856 | "check_http -I 192.168.100.35 -p 80 -u https://www.verisign.com/ -S -j " | 1856 | "check_http -I 192.168.100.35 -p 80 -u https://www.verisign.com/ -S -j " |
1857 | "CONNECT -H www.verisign.com " | 1857 | "CONNECT -H www.verisign.com " |
1858 | msgstr "" | 1858 | msgstr "" |
1859 | 1859 | ||
1860 | #: plugins/check_http.c:1866 | 1860 | #: plugins/check_http.c:1867 |
1861 | msgid "" | 1861 | msgid "" |
1862 | "all these options are needed: -I <proxy> -p <proxy-port> -u <check-url> -" | 1862 | "all these options are needed: -I <proxy> -p <proxy-port> -u <check-url> -" |
1863 | "S(sl) -j CONNECT -H <webserver>" | 1863 | "S(sl) -j CONNECT -H <webserver>" |
1864 | msgstr "" | 1864 | msgstr "" |
1865 | 1865 | ||
1866 | #: plugins/check_http.c:1869 | 1866 | #: plugins/check_http.c:1870 |
1867 | msgid "" | 1867 | msgid "" |
1868 | "a STATE_CRITICAL will be returned. By adding a colon to the method you can " | 1868 | "a STATE_CRITICAL will be returned. By adding a colon to the method you can " |
1869 | "set the method used" | 1869 | "set the method used" |
1870 | msgstr "" | 1870 | msgstr "" |
1871 | 1871 | ||
1872 | #: plugins/check_http.c:1870 | 1872 | #: plugins/check_http.c:1871 |
1873 | msgid "inside the proxied connection: -j CONNECT:POST" | 1873 | msgid "inside the proxied connection: -j CONNECT:POST" |
1874 | msgstr "" | 1874 | msgstr "" |
1875 | 1875 | ||
@@ -4651,7 +4651,7 @@ msgstr "" | |||
4651 | msgid "This plugin will attempt to open an RTSP connection with the host." | 4651 | 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." | 4652 | msgstr "Ce plugin va essayer d'ouvrir un connexion RTSP avec l'hôte." |
4653 | 4653 | ||
4654 | #: plugins/check_real.c:439 plugins/check_smtp.c:877 | 4654 | #: plugins/check_real.c:439 plugins/check_smtp.c:878 |
4655 | msgid "Successful connects return STATE_OK, refusals and timeouts return" | 4655 | msgid "Successful connects return STATE_OK, refusals and timeouts return" |
4656 | msgstr "" | 4656 | msgstr "" |
4657 | 4657 | ||
@@ -4717,7 +4717,7 @@ msgstr "Réponse SMTP reçue de l'hôte invalide: %s\n" | |||
4717 | msgid "Invalid SMTP response received from host on port %d: %s\n" | 4717 | 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" | 4718 | msgstr "Réponse SMTP reçue de l'hôte sur le port %d invalide: %s\n" |
4719 | 4719 | ||
4720 | #: plugins/check_smtp.c:322 plugins/check_snmp.c:865 | 4720 | #: plugins/check_smtp.c:322 plugins/check_snmp.c:866 |
4721 | #, c-format | 4721 | #, c-format |
4722 | msgid "Could Not Compile Regular Expression" | 4722 | msgid "Could Not Compile Regular Expression" |
4723 | msgstr "Impossible de compiler l'expression rationnelle" | 4723 | msgstr "Impossible de compiler l'expression rationnelle" |
@@ -4741,7 +4741,7 @@ msgid "no authpass specified, " | |||
4741 | msgstr "pas de mot de passe spécifié, " | 4741 | msgstr "pas de mot de passe spécifié, " |
4742 | 4742 | ||
4743 | #: plugins/check_smtp.c:361 plugins/check_smtp.c:382 plugins/check_smtp.c:402 | 4743 | #: plugins/check_smtp.c:361 plugins/check_smtp.c:382 plugins/check_smtp.c:402 |
4744 | #: plugins/check_smtp.c:727 | 4744 | #: plugins/check_smtp.c:728 |
4745 | #, c-format | 4745 | #, c-format |
4746 | msgid "sent %s\n" | 4746 | msgid "sent %s\n" |
4747 | msgstr "envoyé %s\n" | 4747 | msgstr "envoyé %s\n" |
@@ -4751,7 +4751,7 @@ msgid "recv() failed after AUTH LOGIN, " | |||
4751 | msgstr "recv() à échoué après AUTH LOGIN, " | 4751 | msgstr "recv() à échoué après AUTH LOGIN, " |
4752 | 4752 | ||
4753 | #: plugins/check_smtp.c:369 plugins/check_smtp.c:390 plugins/check_smtp.c:410 | 4753 | #: plugins/check_smtp.c:369 plugins/check_smtp.c:390 plugins/check_smtp.c:410 |
4754 | #: plugins/check_smtp.c:738 | 4754 | #: plugins/check_smtp.c:739 |
4755 | #, c-format | 4755 | #, c-format |
4756 | msgid "received %s\n" | 4756 | msgid "received %s\n" |
4757 | msgstr "reçu %s\n" | 4757 | msgstr "reçu %s\n" |
@@ -4800,93 +4800,93 @@ msgstr "Le seuil critique doit être un entier positif" | |||
4800 | msgid "Warning time must be a positive" | 4800 | msgid "Warning time must be a positive" |
4801 | msgstr "Le seuil d'avertissement doit être un entier positif" | 4801 | msgstr "Le seuil d'avertissement doit être un entier positif" |
4802 | 4802 | ||
4803 | #: plugins/check_smtp.c:633 plugins/check_smtp.c:644 | 4803 | #: plugins/check_smtp.c:633 plugins/check_smtp.c:645 |
4804 | msgid "SSL support not available - install OpenSSL and recompile" | 4804 | msgid "SSL support not available - install OpenSSL and recompile" |
4805 | msgstr "SSL n'est pas disponible - installer OpenSSL et recompilez" | 4805 | msgstr "SSL n'est pas disponible - installer OpenSSL et recompilez" |
4806 | 4806 | ||
4807 | #: plugins/check_smtp.c:718 plugins/check_smtp.c:723 | 4807 | #: plugins/check_smtp.c:719 plugins/check_smtp.c:724 |
4808 | #, c-format | 4808 | #, c-format |
4809 | msgid "Connection closed by server before sending QUIT command\n" | 4809 | msgid "Connection closed by server before sending QUIT command\n" |
4810 | msgstr "" | 4810 | msgstr "" |
4811 | 4811 | ||
4812 | #: plugins/check_smtp.c:733 | 4812 | #: plugins/check_smtp.c:734 |
4813 | #, c-format | 4813 | #, c-format |
4814 | msgid "recv() failed after QUIT." | 4814 | msgid "recv() failed after QUIT." |
4815 | msgstr "recv() à échoué après QUIT." | 4815 | msgstr "recv() à échoué après QUIT." |
4816 | 4816 | ||
4817 | #: plugins/check_smtp.c:735 | 4817 | #: plugins/check_smtp.c:736 |
4818 | #, c-format | 4818 | #, c-format |
4819 | msgid "Connection reset by peer." | 4819 | msgid "Connection reset by peer." |
4820 | msgstr "" | 4820 | msgstr "" |
4821 | 4821 | ||
4822 | #: plugins/check_smtp.c:825 | 4822 | #: plugins/check_smtp.c:826 |
4823 | msgid "This plugin will attempt to open an SMTP connection with the host." | 4823 | 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." | 4824 | msgstr "Ce plugin va essayer d'ouvrir un connexion SMTP avec l'hôte." |
4825 | 4825 | ||
4826 | #: plugins/check_smtp.c:839 | 4826 | #: plugins/check_smtp.c:840 |
4827 | #, c-format | 4827 | #, c-format |
4828 | msgid " String to expect in first line of server response (default: '%s')\n" | 4828 | msgid " String to expect in first line of server response (default: '%s')\n" |
4829 | msgstr "" | 4829 | msgstr "" |
4830 | " Texte attendu dans la première ligne de réponse du serveur (défaut: " | 4830 | " Texte attendu dans la première ligne de réponse du serveur (défaut: " |
4831 | "'%s')\n" | 4831 | "'%s')\n" |
4832 | 4832 | ||
4833 | #: plugins/check_smtp.c:841 | 4833 | #: plugins/check_smtp.c:842 |
4834 | msgid "SMTP command (may be used repeatedly)" | 4834 | msgid "SMTP command (may be used repeatedly)" |
4835 | msgstr "Commande SMTP (peut être utilisé plusieurs fois)" | 4835 | msgstr "Commande SMTP (peut être utilisé plusieurs fois)" |
4836 | 4836 | ||
4837 | #: plugins/check_smtp.c:843 | 4837 | #: plugins/check_smtp.c:844 |
4838 | msgid "Expected response to command (may be used repeatedly)" | 4838 | msgid "Expected response to command (may be used repeatedly)" |
4839 | msgstr "" | 4839 | msgstr "" |
4840 | 4840 | ||
4841 | #: plugins/check_smtp.c:845 | 4841 | #: plugins/check_smtp.c:846 |
4842 | msgid "FROM-address to include in MAIL command, required by Exchange 2000" | 4842 | msgid "FROM-address to include in MAIL command, required by Exchange 2000" |
4843 | msgstr "" | 4843 | msgstr "" |
4844 | 4844 | ||
4845 | #: plugins/check_smtp.c:847 | 4845 | #: plugins/check_smtp.c:848 |
4846 | msgid "FQDN used for HELO" | 4846 | msgid "FQDN used for HELO" |
4847 | msgstr "" | 4847 | msgstr "" |
4848 | 4848 | ||
4849 | #: plugins/check_smtp.c:849 | 4849 | #: plugins/check_smtp.c:850 |
4850 | msgid "Use PROXY protocol prefix for the connection." | 4850 | msgid "Use PROXY protocol prefix for the connection." |
4851 | msgstr "Utiliser le préfixe du protocole PROXY pour la connexion." | 4851 | msgstr "Utiliser le préfixe du protocole PROXY pour la connexion." |
4852 | 4852 | ||
4853 | #: plugins/check_smtp.c:852 plugins/check_tcp.c:689 | 4853 | #: plugins/check_smtp.c:853 plugins/check_tcp.c:689 |
4854 | msgid "Minimum number of days a certificate has to be valid." | 4854 | msgid "Minimum number of days a certificate has to be valid." |
4855 | msgstr "Nombre de jours minimum pour que le certificat soit valide." | 4855 | msgstr "Nombre de jours minimum pour que le certificat soit valide." |
4856 | 4856 | ||
4857 | #: plugins/check_smtp.c:854 | 4857 | #: plugins/check_smtp.c:855 |
4858 | msgid "Use STARTTLS for the connection." | 4858 | msgid "Use STARTTLS for the connection." |
4859 | msgstr "" | 4859 | msgstr "" |
4860 | 4860 | ||
4861 | #: plugins/check_smtp.c:860 | 4861 | #: plugins/check_smtp.c:861 |
4862 | msgid "SMTP AUTH type to check (default none, only LOGIN supported)" | 4862 | msgid "SMTP AUTH type to check (default none, only LOGIN supported)" |
4863 | msgstr "" | 4863 | msgstr "" |
4864 | 4864 | ||
4865 | #: plugins/check_smtp.c:862 | 4865 | #: plugins/check_smtp.c:863 |
4866 | msgid "SMTP AUTH username" | 4866 | msgid "SMTP AUTH username" |
4867 | msgstr "" | 4867 | msgstr "" |
4868 | 4868 | ||
4869 | #: plugins/check_smtp.c:864 | 4869 | #: plugins/check_smtp.c:865 |
4870 | msgid "SMTP AUTH password" | 4870 | msgid "SMTP AUTH password" |
4871 | msgstr "" | 4871 | msgstr "" |
4872 | 4872 | ||
4873 | #: plugins/check_smtp.c:866 | 4873 | #: plugins/check_smtp.c:867 |
4874 | msgid "Send LHLO instead of HELO/EHLO" | 4874 | msgid "Send LHLO instead of HELO/EHLO" |
4875 | msgstr "" | 4875 | msgstr "" |
4876 | 4876 | ||
4877 | #: plugins/check_smtp.c:868 | 4877 | #: plugins/check_smtp.c:869 |
4878 | msgid "Ignore failure when sending QUIT command to server" | 4878 | msgid "Ignore failure when sending QUIT command to server" |
4879 | msgstr "" | 4879 | msgstr "" |
4880 | 4880 | ||
4881 | #: plugins/check_smtp.c:878 | 4881 | #: plugins/check_smtp.c:879 |
4882 | msgid "STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful" | 4882 | msgid "STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful" |
4883 | msgstr "" | 4883 | msgstr "" |
4884 | 4884 | ||
4885 | #: plugins/check_smtp.c:879 | 4885 | #: plugins/check_smtp.c:880 |
4886 | msgid "connects, but incorrect response messages from the host result in" | 4886 | msgid "connects, but incorrect response messages from the host result in" |
4887 | msgstr "" | 4887 | msgstr "" |
4888 | 4888 | ||
4889 | #: plugins/check_smtp.c:880 | 4889 | #: plugins/check_smtp.c:881 |
4890 | msgid "STATE_WARNING return values." | 4890 | msgid "STATE_WARNING return values." |
4891 | msgstr "" | 4891 | msgstr "" |
4892 | 4892 | ||
@@ -4936,317 +4936,317 @@ msgstr "L'intervalle pour les essais doit être un entier positif" | |||
4936 | msgid "Exit status must be a positive integer" | 4936 | msgid "Exit status must be a positive integer" |
4937 | msgstr "Maxbytes doit être un entier positif" | 4937 | msgstr "Maxbytes doit être un entier positif" |
4938 | 4938 | ||
4939 | #: plugins/check_snmp.c:890 | 4939 | #: plugins/check_snmp.c:891 |
4940 | #, c-format | 4940 | #, c-format |
4941 | msgid "Could not reallocate labels[%d]" | 4941 | msgid "Could not reallocate labels[%d]" |
4942 | msgstr "Impossible de réallouer des labels[%d]" | 4942 | msgstr "Impossible de réallouer des labels[%d]" |
4943 | 4943 | ||
4944 | #: plugins/check_snmp.c:903 | 4944 | #: plugins/check_snmp.c:904 |
4945 | msgid "Could not reallocate labels\n" | 4945 | msgid "Could not reallocate labels\n" |
4946 | msgstr "Impossible de réallouer des labels\n" | 4946 | msgstr "Impossible de réallouer des labels\n" |
4947 | 4947 | ||
4948 | #: plugins/check_snmp.c:919 | 4948 | #: plugins/check_snmp.c:920 |
4949 | #, c-format | 4949 | #, c-format |
4950 | msgid "Could not reallocate units [%d]\n" | 4950 | msgid "Could not reallocate units [%d]\n" |
4951 | msgstr "Impossible de réallouer des unités [%d]\n" | 4951 | msgstr "Impossible de réallouer des unités [%d]\n" |
4952 | 4952 | ||
4953 | #: plugins/check_snmp.c:931 | 4953 | #: plugins/check_snmp.c:932 |
4954 | msgid "Could not realloc() units\n" | 4954 | msgid "Could not realloc() units\n" |
4955 | msgstr "Impossible de réallouer des unités\n" | 4955 | msgstr "Impossible de réallouer des unités\n" |
4956 | 4956 | ||
4957 | #: plugins/check_snmp.c:948 | 4957 | #: plugins/check_snmp.c:949 |
4958 | #, fuzzy | 4958 | #, fuzzy |
4959 | msgid "Rate multiplier must be a positive integer" | 4959 | msgid "Rate multiplier must be a positive integer" |
4960 | msgstr "La taille du paquet doit être un entier positif" | 4960 | msgstr "La taille du paquet doit être un entier positif" |
4961 | 4961 | ||
4962 | #: plugins/check_snmp.c:1023 | 4962 | #: plugins/check_snmp.c:1024 |
4963 | msgid "No host specified\n" | 4963 | msgid "No host specified\n" |
4964 | msgstr "Pas d'hôte spécifié\n" | 4964 | msgstr "Pas d'hôte spécifié\n" |
4965 | 4965 | ||
4966 | #: plugins/check_snmp.c:1027 | 4966 | #: plugins/check_snmp.c:1028 |
4967 | msgid "No OIDs specified\n" | 4967 | msgid "No OIDs specified\n" |
4968 | msgstr "Pas de compteur spécifié\n" | 4968 | msgstr "Pas de compteur spécifié\n" |
4969 | 4969 | ||
4970 | #: plugins/check_snmp.c:1050 plugins/check_snmp.c:1068 | 4970 | #: plugins/check_snmp.c:1051 plugins/check_snmp.c:1069 |
4971 | #: plugins/check_snmp.c:1086 | 4971 | #: plugins/check_snmp.c:1087 |
4972 | #, c-format | 4972 | #, c-format |
4973 | msgid "Required parameter: %s\n" | 4973 | msgid "Required parameter: %s\n" |
4974 | msgstr "" | 4974 | msgstr "" |
4975 | 4975 | ||
4976 | #: plugins/check_snmp.c:1061 | 4976 | #: plugins/check_snmp.c:1062 |
4977 | msgid "Invalid seclevel" | 4977 | msgid "Invalid seclevel" |
4978 | msgstr "" | 4978 | msgstr "" |
4979 | 4979 | ||
4980 | #: plugins/check_snmp.c:1107 | 4980 | #: plugins/check_snmp.c:1108 |
4981 | msgid "Invalid SNMP version" | 4981 | msgid "Invalid SNMP version" |
4982 | msgstr "Version de SNMP invalide" | 4982 | msgstr "Version de SNMP invalide" |
4983 | 4983 | ||
4984 | #: plugins/check_snmp.c:1124 | 4984 | #: plugins/check_snmp.c:1125 |
4985 | msgid "Unbalanced quotes\n" | 4985 | msgid "Unbalanced quotes\n" |
4986 | msgstr "Guillemets manquants\n" | 4986 | msgstr "Guillemets manquants\n" |
4987 | 4987 | ||
4988 | #: plugins/check_snmp.c:1182 | 4988 | #: plugins/check_snmp.c:1183 |
4989 | #, c-format | 4989 | #, c-format |
4990 | msgid "multiplier set (%.1f), but input is not a number: %s" | 4990 | msgid "multiplier set (%.1f), but input is not a number: %s" |
4991 | msgstr "" | 4991 | msgstr "" |
4992 | 4992 | ||
4993 | #: plugins/check_snmp.c:1211 | 4993 | #: plugins/check_snmp.c:1212 |
4994 | msgid "Check status of remote machines and obtain system information via SNMP" | 4994 | msgid "Check status of remote machines and obtain system information via SNMP" |
4995 | msgstr "" | 4995 | msgstr "" |
4996 | "Vérifie l'état des machines distantes et obtient l'information système via " | 4996 | "Vérifie l'état des machines distantes et obtient l'information système via " |
4997 | "SNMP" | 4997 | "SNMP" |
4998 | 4998 | ||
4999 | #: plugins/check_snmp.c:1225 | 4999 | #: plugins/check_snmp.c:1226 |
5000 | msgid "Use SNMP GETNEXT instead of SNMP GET" | 5000 | msgid "Use SNMP GETNEXT instead of SNMP GET" |
5001 | msgstr "Utiliser SNMP GETNEXT au lieu de SNMP GET" | 5001 | msgstr "Utiliser SNMP GETNEXT au lieu de SNMP GET" |
5002 | 5002 | ||
5003 | #: plugins/check_snmp.c:1227 | 5003 | #: plugins/check_snmp.c:1228 |
5004 | msgid "SNMP protocol version" | 5004 | msgid "SNMP protocol version" |
5005 | msgstr "Version du protocole SNMP" | 5005 | msgstr "Version du protocole SNMP" |
5006 | 5006 | ||
5007 | #: plugins/check_snmp.c:1229 | 5007 | #: plugins/check_snmp.c:1230 |
5008 | #, fuzzy | 5008 | #, fuzzy |
5009 | msgid "SNMPv3 context" | 5009 | msgid "SNMPv3 context" |
5010 | msgstr "Nom d'utilisateur SNMPv3" | 5010 | msgstr "Nom d'utilisateur SNMPv3" |
5011 | 5011 | ||
5012 | #: plugins/check_snmp.c:1231 | 5012 | #: plugins/check_snmp.c:1232 |
5013 | msgid "SNMPv3 securityLevel" | 5013 | msgid "SNMPv3 securityLevel" |
5014 | msgstr "Niveau de sécurité SNMPv3 (securityLevel)" | 5014 | msgstr "Niveau de sécurité SNMPv3 (securityLevel)" |
5015 | 5015 | ||
5016 | #: plugins/check_snmp.c:1233 | 5016 | #: plugins/check_snmp.c:1234 |
5017 | msgid "SNMPv3 auth proto" | 5017 | msgid "SNMPv3 auth proto" |
5018 | msgstr "Protocole d'authentification SNMPv3" | 5018 | msgstr "Protocole d'authentification SNMPv3" |
5019 | 5019 | ||
5020 | #: plugins/check_snmp.c:1235 | 5020 | #: plugins/check_snmp.c:1236 |
5021 | msgid "SNMPv3 priv proto (default DES)" | 5021 | msgid "SNMPv3 priv proto (default DES)" |
5022 | msgstr "" | 5022 | msgstr "" |
5023 | 5023 | ||
5024 | #: plugins/check_snmp.c:1239 | 5024 | #: plugins/check_snmp.c:1240 |
5025 | msgid "Optional community string for SNMP communication" | 5025 | msgid "Optional community string for SNMP communication" |
5026 | msgstr "Communauté optionnelle pour la communication SNMP" | 5026 | msgstr "Communauté optionnelle pour la communication SNMP" |
5027 | 5027 | ||
5028 | #: plugins/check_snmp.c:1240 | 5028 | #: plugins/check_snmp.c:1241 |
5029 | msgid "default is" | 5029 | msgid "default is" |
5030 | msgstr "défaut:" | 5030 | msgstr "défaut:" |
5031 | 5031 | ||
5032 | #: plugins/check_snmp.c:1242 | 5032 | #: plugins/check_snmp.c:1243 |
5033 | msgid "SNMPv3 username" | 5033 | msgid "SNMPv3 username" |
5034 | msgstr "Nom d'utilisateur SNMPv3" | 5034 | msgstr "Nom d'utilisateur SNMPv3" |
5035 | 5035 | ||
5036 | #: plugins/check_snmp.c:1244 | 5036 | #: plugins/check_snmp.c:1245 |
5037 | msgid "SNMPv3 authentication password" | 5037 | msgid "SNMPv3 authentication password" |
5038 | msgstr "Mot de passe d'authentification SNMPv3" | 5038 | msgstr "Mot de passe d'authentification SNMPv3" |
5039 | 5039 | ||
5040 | #: plugins/check_snmp.c:1246 | 5040 | #: plugins/check_snmp.c:1247 |
5041 | msgid "SNMPv3 privacy password" | 5041 | msgid "SNMPv3 privacy password" |
5042 | msgstr "Mot de passe de confidentialité SNMPv3" | 5042 | msgstr "Mot de passe de confidentialité SNMPv3" |
5043 | 5043 | ||
5044 | #: plugins/check_snmp.c:1250 | 5044 | #: plugins/check_snmp.c:1251 |
5045 | msgid "Object identifier(s) or SNMP variables whose value you wish to query" | 5045 | msgid "Object identifier(s) or SNMP variables whose value you wish to query" |
5046 | msgstr "" | 5046 | msgstr "" |
5047 | 5047 | ||
5048 | #: plugins/check_snmp.c:1252 | 5048 | #: plugins/check_snmp.c:1253 |
5049 | msgid "" | 5049 | msgid "" |
5050 | "List of MIBS to be loaded (default = none if using numeric OIDs or 'ALL'" | 5050 | "List of MIBS to be loaded (default = none if using numeric OIDs or 'ALL'" |
5051 | msgstr "" | 5051 | msgstr "" |
5052 | 5052 | ||
5053 | #: plugins/check_snmp.c:1253 | 5053 | #: plugins/check_snmp.c:1254 |
5054 | msgid "for symbolic OIDs.)" | 5054 | msgid "for symbolic OIDs.)" |
5055 | msgstr "" | 5055 | msgstr "" |
5056 | 5056 | ||
5057 | #: plugins/check_snmp.c:1255 | 5057 | #: plugins/check_snmp.c:1256 |
5058 | msgid "Delimiter to use when parsing returned data. Default is" | 5058 | msgid "Delimiter to use when parsing returned data. Default is" |
5059 | msgstr "" | 5059 | msgstr "" |
5060 | 5060 | ||
5061 | #: plugins/check_snmp.c:1256 | 5061 | #: plugins/check_snmp.c:1257 |
5062 | msgid "Any data on the right hand side of the delimiter is considered" | 5062 | msgid "Any data on the right hand side of the delimiter is considered" |
5063 | msgstr "" | 5063 | msgstr "" |
5064 | 5064 | ||
5065 | #: plugins/check_snmp.c:1257 | 5065 | #: plugins/check_snmp.c:1258 |
5066 | msgid "to be the data that should be used in the evaluation." | 5066 | msgid "to be the data that should be used in the evaluation." |
5067 | msgstr "" | 5067 | msgstr "" |
5068 | 5068 | ||
5069 | #: plugins/check_snmp.c:1259 | 5069 | #: plugins/check_snmp.c:1260 |
5070 | msgid "If the check returns a 0 length string or NULL value" | 5070 | msgid "If the check returns a 0 length string or NULL value" |
5071 | msgstr "" | 5071 | msgstr "" |
5072 | 5072 | ||
5073 | #: plugins/check_snmp.c:1260 | 5073 | #: plugins/check_snmp.c:1261 |
5074 | msgid "This option allows you to choose what status you want it to exit" | 5074 | msgid "This option allows you to choose what status you want it to exit" |
5075 | msgstr "" | 5075 | msgstr "" |
5076 | 5076 | ||
5077 | #: plugins/check_snmp.c:1261 | 5077 | #: plugins/check_snmp.c:1262 |
5078 | msgid "Excluding this option renders the default exit of 3(STATE_UNKNOWN)" | 5078 | msgid "Excluding this option renders the default exit of 3(STATE_UNKNOWN)" |
5079 | msgstr "" | 5079 | msgstr "" |
5080 | 5080 | ||
5081 | #: plugins/check_snmp.c:1262 | 5081 | #: plugins/check_snmp.c:1263 |
5082 | msgid "0 = OK" | 5082 | msgid "0 = OK" |
5083 | msgstr "" | 5083 | msgstr "" |
5084 | 5084 | ||
5085 | #: plugins/check_snmp.c:1263 | 5085 | #: plugins/check_snmp.c:1264 |
5086 | #, fuzzy | 5086 | #, fuzzy |
5087 | msgid "1 = WARNING" | 5087 | msgid "1 = WARNING" |
5088 | msgstr "AVERTISSEMENT" | 5088 | msgstr "AVERTISSEMENT" |
5089 | 5089 | ||
5090 | #: plugins/check_snmp.c:1264 | 5090 | #: plugins/check_snmp.c:1265 |
5091 | #, fuzzy | 5091 | #, fuzzy |
5092 | msgid "2 = CRITICAL" | 5092 | msgid "2 = CRITICAL" |
5093 | msgstr "CRITIQUE" | 5093 | msgstr "CRITIQUE" |
5094 | 5094 | ||
5095 | #: plugins/check_snmp.c:1265 | 5095 | #: plugins/check_snmp.c:1266 |
5096 | #, fuzzy | 5096 | #, fuzzy |
5097 | msgid "3 = UNKNOWN" | 5097 | msgid "3 = UNKNOWN" |
5098 | msgstr "INCONNU" | 5098 | msgstr "INCONNU" |
5099 | 5099 | ||
5100 | #: plugins/check_snmp.c:1269 | 5100 | #: plugins/check_snmp.c:1270 |
5101 | msgid "Warning threshold range(s)" | 5101 | msgid "Warning threshold range(s)" |
5102 | msgstr "Valeurs pour le seuil d'avertissement" | 5102 | msgstr "Valeurs pour le seuil d'avertissement" |
5103 | 5103 | ||
5104 | #: plugins/check_snmp.c:1271 | 5104 | #: plugins/check_snmp.c:1272 |
5105 | msgid "Critical threshold range(s)" | 5105 | msgid "Critical threshold range(s)" |
5106 | msgstr "Valeurs pour le seuil critique" | 5106 | msgstr "Valeurs pour le seuil critique" |
5107 | 5107 | ||
5108 | #: plugins/check_snmp.c:1273 | 5108 | #: plugins/check_snmp.c:1274 |
5109 | msgid "Enable rate calculation. See 'Rate Calculation' below" | 5109 | msgid "Enable rate calculation. See 'Rate Calculation' below" |
5110 | msgstr "" | 5110 | msgstr "" |
5111 | 5111 | ||
5112 | #: plugins/check_snmp.c:1275 | 5112 | #: plugins/check_snmp.c:1276 |
5113 | msgid "" | 5113 | msgid "" |
5114 | "Converts rate per second. For example, set to 60 to convert to per minute" | 5114 | "Converts rate per second. For example, set to 60 to convert to per minute" |
5115 | msgstr "" | 5115 | msgstr "" |
5116 | 5116 | ||
5117 | #: plugins/check_snmp.c:1277 | 5117 | #: plugins/check_snmp.c:1278 |
5118 | msgid "Add/subtract the specified OFFSET to numeric sensor data" | 5118 | msgid "Add/subtract the specified OFFSET to numeric sensor data" |
5119 | msgstr "" | 5119 | msgstr "" |
5120 | 5120 | ||
5121 | #: plugins/check_snmp.c:1281 | 5121 | #: plugins/check_snmp.c:1282 |
5122 | msgid "Return OK state (for that OID) if STRING is an exact match" | 5122 | msgid "Return OK state (for that OID) if STRING is an exact match" |
5123 | msgstr "" | 5123 | msgstr "" |
5124 | 5124 | ||
5125 | #: plugins/check_snmp.c:1283 | 5125 | #: plugins/check_snmp.c:1284 |
5126 | msgid "" | 5126 | msgid "" |
5127 | "Return OK state (for that OID) if extended regular expression REGEX matches" | 5127 | "Return OK state (for that OID) if extended regular expression REGEX matches" |
5128 | msgstr "" | 5128 | msgstr "" |
5129 | 5129 | ||
5130 | #: plugins/check_snmp.c:1285 | 5130 | #: plugins/check_snmp.c:1286 |
5131 | msgid "" | 5131 | msgid "" |
5132 | "Return OK state (for that OID) if case-insensitive extended REGEX matches" | 5132 | "Return OK state (for that OID) if case-insensitive extended REGEX matches" |
5133 | msgstr "" | 5133 | msgstr "" |
5134 | 5134 | ||
5135 | #: plugins/check_snmp.c:1287 | 5135 | #: plugins/check_snmp.c:1288 |
5136 | msgid "Invert search result (CRITICAL if found)" | 5136 | msgid "Invert search result (CRITICAL if found)" |
5137 | msgstr "" | 5137 | msgstr "" |
5138 | 5138 | ||
5139 | #: plugins/check_snmp.c:1291 | 5139 | #: plugins/check_snmp.c:1292 |
5140 | msgid "Prefix label for output from plugin" | 5140 | msgid "Prefix label for output from plugin" |
5141 | msgstr "" | 5141 | msgstr "" |
5142 | 5142 | ||
5143 | #: plugins/check_snmp.c:1293 | 5143 | #: plugins/check_snmp.c:1294 |
5144 | msgid "Units label(s) for output data (e.g., 'sec.')." | 5144 | msgid "Units label(s) for output data (e.g., 'sec.')." |
5145 | msgstr "" | 5145 | msgstr "" |
5146 | 5146 | ||
5147 | #: plugins/check_snmp.c:1295 | 5147 | #: plugins/check_snmp.c:1296 |
5148 | msgid "Separates output on multiple OID requests" | 5148 | msgid "Separates output on multiple OID requests" |
5149 | msgstr "" | 5149 | msgstr "" |
5150 | 5150 | ||
5151 | #: plugins/check_snmp.c:1297 | 5151 | #: plugins/check_snmp.c:1298 |
5152 | msgid "Multiplies current value, 0 < n < 1 works as divider, defaults to 1" | 5152 | msgid "Multiplies current value, 0 < n < 1 works as divider, defaults to 1" |
5153 | msgstr "" | 5153 | msgstr "" |
5154 | 5154 | ||
5155 | #: plugins/check_snmp.c:1299 | 5155 | #: plugins/check_snmp.c:1300 |
5156 | msgid "C-style format string for float values (see option -M)" | 5156 | msgid "C-style format string for float values (see option -M)" |
5157 | msgstr "" | 5157 | msgstr "" |
5158 | 5158 | ||
5159 | #: plugins/check_snmp.c:1302 | 5159 | #: plugins/check_snmp.c:1303 |
5160 | msgid "" | 5160 | msgid "" |
5161 | "NOTE the final timeout value is calculated using this formula: " | 5161 | "NOTE the final timeout value is calculated using this formula: " |
5162 | "timeout_interval * retries + 5" | 5162 | "timeout_interval * retries + 5" |
5163 | msgstr "" | 5163 | msgstr "" |
5164 | 5164 | ||
5165 | #: plugins/check_snmp.c:1304 | 5165 | #: plugins/check_snmp.c:1305 |
5166 | #, fuzzy | 5166 | #, fuzzy |
5167 | msgid "Number of retries to be used in the requests, default: " | 5167 | msgid "Number of retries to be used in the requests, default: " |
5168 | msgstr "Le nombre d'essai pour les requêtes" | 5168 | msgstr "Le nombre d'essai pour les requêtes" |
5169 | 5169 | ||
5170 | #: plugins/check_snmp.c:1307 | 5170 | #: plugins/check_snmp.c:1308 |
5171 | msgid "Label performance data with OIDs instead of --label's" | 5171 | msgid "Label performance data with OIDs instead of --label's" |
5172 | msgstr "" | 5172 | msgstr "" |
5173 | 5173 | ||
5174 | #: plugins/check_snmp.c:1312 | 5174 | #: plugins/check_snmp.c:1313 |
5175 | msgid "" | 5175 | msgid "" |
5176 | "This plugin uses the 'snmpget' command included with the NET-SNMP package." | 5176 | "This plugin uses the 'snmpget' command included with the NET-SNMP package." |
5177 | msgstr "" | 5177 | msgstr "" |
5178 | 5178 | ||
5179 | #: plugins/check_snmp.c:1313 | 5179 | #: plugins/check_snmp.c:1314 |
5180 | msgid "" | 5180 | msgid "" |
5181 | "if you don't have the package installed, you will need to download it from" | 5181 | "if you don't have the package installed, you will need to download it from" |
5182 | msgstr "" | 5182 | msgstr "" |
5183 | "Si vous n'avez pas le programme installé, vous devrez le télécharger depuis" | 5183 | "Si vous n'avez pas le programme installé, vous devrez le télécharger depuis" |
5184 | 5184 | ||
5185 | #: plugins/check_snmp.c:1314 | 5185 | #: plugins/check_snmp.c:1315 |
5186 | msgid "http://net-snmp.sourceforge.net before you can use this plugin." | 5186 | 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." | 5187 | msgstr "http://net-snmp.sourceforge.net avant de pouvoir utiliser ce plugin." |
5188 | 5188 | ||
5189 | #: plugins/check_snmp.c:1318 | 5189 | #: plugins/check_snmp.c:1319 |
5190 | #, fuzzy | 5190 | #, fuzzy |
5191 | msgid "" | 5191 | msgid "" |
5192 | "- Multiple OIDs (and labels) may be indicated by a comma or space-delimited " | 5192 | "- Multiple OIDs (and labels) may be indicated by a comma or space-delimited " |
5193 | msgstr "" | 5193 | msgstr "" |
5194 | "- Des OIDs multiples peuvent être séparées par des virgules ou des espaces" | 5194 | "- Des OIDs multiples peuvent être séparées par des virgules ou des espaces" |
5195 | 5195 | ||
5196 | #: plugins/check_snmp.c:1319 | 5196 | #: plugins/check_snmp.c:1320 |
5197 | #, fuzzy | 5197 | #, fuzzy |
5198 | msgid "list (lists with internal spaces must be quoted)." | 5198 | msgid "list (lists with internal spaces must be quoted)." |
5199 | msgstr "(Les liste avec espaces doivent être entre guillemets). Max:" | 5199 | msgstr "(Les liste avec espaces doivent être entre guillemets). Max:" |
5200 | 5200 | ||
5201 | #: plugins/check_snmp.c:1323 | 5201 | #: plugins/check_snmp.c:1324 |
5202 | msgid "" | 5202 | msgid "" |
5203 | "- When checking multiple OIDs, separate ranges by commas like '-w " | 5203 | "- When checking multiple OIDs, separate ranges by commas like '-w " |
5204 | "1:10,1:,:20'" | 5204 | "1:10,1:,:20'" |
5205 | msgstr "" | 5205 | msgstr "" |
5206 | 5206 | ||
5207 | #: plugins/check_snmp.c:1324 | 5207 | #: plugins/check_snmp.c:1325 |
5208 | msgid "- Note that only one string and one regex may be checked at present" | 5208 | msgid "- Note that only one string and one regex may be checked at present" |
5209 | msgstr "" | 5209 | msgstr "" |
5210 | 5210 | ||
5211 | #: plugins/check_snmp.c:1325 | 5211 | #: plugins/check_snmp.c:1326 |
5212 | msgid "" | 5212 | msgid "" |
5213 | "- All evaluation methods other than PR, STR, and SUBSTR expect that the value" | 5213 | "- All evaluation methods other than PR, STR, and SUBSTR expect that the value" |
5214 | msgstr "" | 5214 | msgstr "" |
5215 | 5215 | ||
5216 | #: plugins/check_snmp.c:1326 | 5216 | #: plugins/check_snmp.c:1327 |
5217 | msgid "returned from the SNMP query is an unsigned integer." | 5217 | msgid "returned from the SNMP query is an unsigned integer." |
5218 | msgstr "" | 5218 | msgstr "" |
5219 | 5219 | ||
5220 | #: plugins/check_snmp.c:1329 | 5220 | #: plugins/check_snmp.c:1330 |
5221 | msgid "Rate Calculation:" | 5221 | msgid "Rate Calculation:" |
5222 | msgstr "" | 5222 | msgstr "" |
5223 | 5223 | ||
5224 | #: plugins/check_snmp.c:1330 | 5224 | #: plugins/check_snmp.c:1331 |
5225 | msgid "In many places, SNMP returns counters that are only meaningful when" | 5225 | msgid "In many places, SNMP returns counters that are only meaningful when" |
5226 | msgstr "" | 5226 | msgstr "" |
5227 | 5227 | ||
5228 | #: plugins/check_snmp.c:1331 | 5228 | #: plugins/check_snmp.c:1332 |
5229 | msgid "calculating the counter difference since the last check. check_snmp" | 5229 | msgid "calculating the counter difference since the last check. check_snmp" |
5230 | msgstr "" | 5230 | msgstr "" |
5231 | 5231 | ||
5232 | #: plugins/check_snmp.c:1332 | 5232 | #: plugins/check_snmp.c:1333 |
5233 | msgid "saves the last state information in a file so that the rate per second" | 5233 | msgid "saves the last state information in a file so that the rate per second" |
5234 | msgstr "" | 5234 | msgstr "" |
5235 | 5235 | ||
5236 | #: plugins/check_snmp.c:1333 | 5236 | #: plugins/check_snmp.c:1334 |
5237 | msgid "can be calculated. Use the --rate option to save state information." | 5237 | msgid "can be calculated. Use the --rate option to save state information." |
5238 | msgstr "" | 5238 | msgstr "" |
5239 | 5239 | ||
5240 | #: plugins/check_snmp.c:1334 | 5240 | #: plugins/check_snmp.c:1335 |
5241 | msgid "" | 5241 | msgid "" |
5242 | "On the first run, there will be no prior state - this will return with OK." | 5242 | "On the first run, there will be no prior state - this will return with OK." |
5243 | msgstr "" | 5243 | msgstr "" |
5244 | 5244 | ||
5245 | #: plugins/check_snmp.c:1335 | 5245 | #: plugins/check_snmp.c:1336 |
5246 | msgid "The state is uniquely determined by the arguments to the plugin, so" | 5246 | msgid "The state is uniquely determined by the arguments to the plugin, so" |
5247 | msgstr "" | 5247 | msgstr "" |
5248 | 5248 | ||
5249 | #: plugins/check_snmp.c:1336 | 5249 | #: plugins/check_snmp.c:1337 |
5250 | msgid "changing the arguments will create a new state file." | 5250 | msgid "changing the arguments will create a new state file." |
5251 | msgstr "" | 5251 | msgstr "" |
5252 | 5252 | ||
@@ -6741,86 +6741,86 @@ msgstr "" | |||
6741 | msgid "Unicast testing: mimic a DHCP relay, requires -s" | 6741 | msgid "Unicast testing: mimic a DHCP relay, requires -s" |
6742 | msgstr "" | 6742 | msgstr "" |
6743 | 6743 | ||
6744 | #: plugins-root/check_icmp.c:1567 | 6744 | #: plugins-root/check_icmp.c:1572 |
6745 | msgid "specify a target" | 6745 | msgid "specify a target" |
6746 | msgstr "" | 6746 | msgstr "" |
6747 | 6747 | ||
6748 | #: plugins-root/check_icmp.c:1569 | 6748 | #: plugins-root/check_icmp.c:1574 |
6749 | msgid "Use IPv4 (default) or IPv6 to communicate with the targets" | 6749 | msgid "Use IPv4 (default) or IPv6 to communicate with the targets" |
6750 | msgstr "" | 6750 | msgstr "" |
6751 | 6751 | ||
6752 | #: plugins-root/check_icmp.c:1571 | 6752 | #: plugins-root/check_icmp.c:1576 |
6753 | msgid "warning threshold (currently " | 6753 | msgid "warning threshold (currently " |
6754 | msgstr "Valeurs pour le seuil d'avertissement (actuellement " | 6754 | msgstr "Valeurs pour le seuil d'avertissement (actuellement " |
6755 | 6755 | ||
6756 | #: plugins-root/check_icmp.c:1574 | 6756 | #: plugins-root/check_icmp.c:1579 |
6757 | msgid "critical threshold (currently " | 6757 | msgid "critical threshold (currently " |
6758 | msgstr "Valeurs pour le seuil critique (actuellement " | 6758 | msgstr "Valeurs pour le seuil critique (actuellement " |
6759 | 6759 | ||
6760 | #: plugins-root/check_icmp.c:1577 | 6760 | #: plugins-root/check_icmp.c:1582 |
6761 | msgid "specify a source IP address or device name" | 6761 | msgid "specify a source IP address or device name" |
6762 | msgstr "spécifiez une adresse ou un nom d'hôte" | 6762 | msgstr "spécifiez une adresse ou un nom d'hôte" |
6763 | 6763 | ||
6764 | #: plugins-root/check_icmp.c:1579 | 6764 | #: plugins-root/check_icmp.c:1584 |
6765 | msgid "number of packets to send (currently " | 6765 | msgid "number of packets to send (currently " |
6766 | msgstr "nombre de paquets à envoyer (actuellement " | 6766 | msgstr "nombre de paquets à envoyer (actuellement " |
6767 | 6767 | ||
6768 | #: plugins-root/check_icmp.c:1582 | 6768 | #: plugins-root/check_icmp.c:1587 |
6769 | msgid "max packet interval (currently " | 6769 | msgid "max packet interval (currently " |
6770 | msgstr "" | 6770 | msgstr "" |
6771 | 6771 | ||
6772 | #: plugins-root/check_icmp.c:1585 | 6772 | #: plugins-root/check_icmp.c:1590 |
6773 | msgid "max target interval (currently " | 6773 | msgid "max target interval (currently " |
6774 | msgstr "" | 6774 | msgstr "" |
6775 | 6775 | ||
6776 | #: plugins-root/check_icmp.c:1588 | 6776 | #: plugins-root/check_icmp.c:1593 |
6777 | msgid "number of alive hosts required for success" | 6777 | msgid "number of alive hosts required for success" |
6778 | msgstr "nombre d'hôtes vivants requis pour réussite" | 6778 | msgstr "nombre d'hôtes vivants requis pour réussite" |
6779 | 6779 | ||
6780 | #: plugins-root/check_icmp.c:1591 | 6780 | #: plugins-root/check_icmp.c:1596 |
6781 | msgid "TTL on outgoing packets (currently " | 6781 | msgid "TTL on outgoing packets (currently " |
6782 | msgstr "" | 6782 | msgstr "" |
6783 | 6783 | ||
6784 | #: plugins-root/check_icmp.c:1594 | 6784 | #: plugins-root/check_icmp.c:1599 |
6785 | msgid "timeout value (seconds, currently " | 6785 | msgid "timeout value (seconds, currently " |
6786 | msgstr "" | 6786 | msgstr "" |
6787 | 6787 | ||
6788 | #: plugins-root/check_icmp.c:1597 | 6788 | #: plugins-root/check_icmp.c:1602 |
6789 | msgid "Number of icmp data bytes to send" | 6789 | msgid "Number of icmp data bytes to send" |
6790 | msgstr "Nombre de paquets ICMP Ã envoyer" | 6790 | msgstr "Nombre de paquets ICMP Ã envoyer" |
6791 | 6791 | ||
6792 | #: plugins-root/check_icmp.c:1598 | 6792 | #: plugins-root/check_icmp.c:1603 |
6793 | msgid "Packet size will be data bytes + icmp header (currently" | 6793 | msgid "Packet size will be data bytes + icmp header (currently" |
6794 | msgstr "" | 6794 | msgstr "" |
6795 | 6795 | ||
6796 | #: plugins-root/check_icmp.c:1600 | 6796 | #: plugins-root/check_icmp.c:1605 |
6797 | msgid "verbose" | 6797 | msgid "verbose" |
6798 | msgstr "" | 6798 | msgstr "" |
6799 | 6799 | ||
6800 | #: plugins-root/check_icmp.c:1604 | 6800 | #: plugins-root/check_icmp.c:1609 |
6801 | msgid "The -H switch is optional. Naming a host (or several) to check is not." | 6801 | msgid "The -H switch is optional. Naming a host (or several) to check is not." |
6802 | msgstr "" | 6802 | msgstr "" |
6803 | 6803 | ||
6804 | #: plugins-root/check_icmp.c:1606 | 6804 | #: plugins-root/check_icmp.c:1611 |
6805 | msgid "" | 6805 | msgid "" |
6806 | "Threshold format for -w and -c is 200.25,60% for 200.25 msec RTA and 60%" | 6806 | "Threshold format for -w and -c is 200.25,60% for 200.25 msec RTA and 60%" |
6807 | msgstr "" | 6807 | msgstr "" |
6808 | 6808 | ||
6809 | #: plugins-root/check_icmp.c:1607 | 6809 | #: plugins-root/check_icmp.c:1612 |
6810 | msgid "packet loss. The default values should work well for most users." | 6810 | msgid "packet loss. The default values should work well for most users." |
6811 | msgstr "" | 6811 | msgstr "" |
6812 | 6812 | ||
6813 | #: plugins-root/check_icmp.c:1608 | 6813 | #: plugins-root/check_icmp.c:1613 |
6814 | msgid "" | 6814 | msgid "" |
6815 | "You can specify different RTA factors using the standardized abbreviations" | 6815 | "You can specify different RTA factors using the standardized abbreviations" |
6816 | msgstr "" | 6816 | msgstr "" |
6817 | 6817 | ||
6818 | #: plugins-root/check_icmp.c:1609 | 6818 | #: plugins-root/check_icmp.c:1614 |
6819 | msgid "" | 6819 | msgid "" |
6820 | "us (microseconds), ms (milliseconds, default) or just plain s for seconds." | 6820 | "us (microseconds), ms (milliseconds, default) or just plain s for seconds." |
6821 | msgstr "" | 6821 | msgstr "" |
6822 | 6822 | ||
6823 | #: plugins-root/check_icmp.c:1615 | 6823 | #: plugins-root/check_icmp.c:1620 |
6824 | msgid "The -v switch can be specified several times for increased verbosity." | 6824 | msgid "The -v switch can be specified several times for increased verbosity." |
6825 | msgstr "" | 6825 | msgstr "" |
6826 | 6826 | ||
diff --git a/po/monitoring-plugins.pot b/po/monitoring-plugins.pot index 471aae8..4f6b241 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-06-12 20:31+0200\n" | 11 | "POT-Creation-Date: 2023-07-11 16:07+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" |
@@ -227,7 +227,7 @@ msgid "" | |||
227 | msgstr "" | 227 | msgstr "" |
228 | 228 | ||
229 | #: plugins/check_by_ssh.c:475 plugins/check_cluster.c:271 | 229 | #: plugins/check_by_ssh.c:475 plugins/check_cluster.c:271 |
230 | #: plugins/check_dig.c:364 plugins/check_disk.c:1000 plugins/check_http.c:1845 | 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 | 231 | #: plugins/check_nagios.c:312 plugins/check_ntp.c:879 |
232 | #: plugins/check_ntp_peer.c:733 plugins/check_ntp_time.c:642 | 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 | 233 | #: plugins/check_procs.c:806 plugins/negate.c:249 plugins/urlize.c:179 |
@@ -235,20 +235,20 @@ msgid "Examples:" | |||
235 | msgstr "" | 235 | msgstr "" |
236 | 236 | ||
237 | #: plugins/check_by_ssh.c:490 plugins/check_cluster.c:284 | 237 | #: plugins/check_by_ssh.c:490 plugins/check_cluster.c:284 |
238 | #: plugins/check_dig.c:376 plugins/check_disk.c:1017 plugins/check_dns.c:617 | 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:524 plugins/check_game.c:331 | 239 | #: plugins/check_dummy.c:122 plugins/check_fping.c:525 plugins/check_game.c:331 |
240 | #: plugins/check_hpjd.c:439 plugins/check_http.c:1883 plugins/check_ldap.c:511 | 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 | 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 | 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 | 243 | #: plugins/check_ntp_peer.c:753 plugins/check_ntp_time.c:651 |
244 | #: plugins/check_nwstat.c:1685 plugins/check_overcr.c:467 | 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 | 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:890 | 246 | #: plugins/check_radius.c:400 plugins/check_real.c:452 plugins/check_smtp.c:891 |
247 | #: plugins/check_snmp.c:1346 plugins/check_ssh.c:325 plugins/check_swap.c:607 | 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 | 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 | 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 | 250 | #: plugins/urlize.c:196 plugins-root/check_dhcp.c:1390 |
251 | #: plugins-root/check_icmp.c:1628 | 251 | #: plugins-root/check_icmp.c:1633 |
252 | msgid "Usage:" | 252 | msgid "Usage:" |
253 | msgstr "" | 253 | msgstr "" |
254 | 254 | ||
@@ -294,14 +294,14 @@ msgid "commas" | |||
294 | msgstr "" | 294 | msgstr "" |
295 | 295 | ||
296 | #: plugins/check_cluster.c:267 plugins/check_game.c:318 | 296 | #: plugins/check_cluster.c:267 plugins/check_game.c:318 |
297 | #: plugins/check_http.c:1827 plugins/check_ldap.c:497 plugins/check_mrtg.c:363 | 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 | 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 | 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 | 300 | #: plugins/check_ntp_time.c:633 plugins/check_nwstat.c:1670 |
301 | #: plugins/check_overcr.c:456 plugins/check_snmp.c:1317 | 301 | #: plugins/check_overcr.c:456 plugins/check_snmp.c:1318 |
302 | #: plugins/check_swap.c:596 plugins/check_ups.c:645 | 302 | #: plugins/check_swap.c:596 plugins/check_ups.c:645 |
303 | #: plugins/check_ide_smart.c:580 plugins/negate.c:255 | 303 | #: plugins/check_ide_smart.c:580 plugins/negate.c:255 |
304 | #: plugins-root/check_icmp.c:1603 | 304 | #: plugins-root/check_icmp.c:1608 |
305 | msgid "Notes:" | 305 | msgid "Notes:" |
306 | msgstr "" | 306 | msgstr "" |
307 | 307 | ||
@@ -394,7 +394,7 @@ msgstr "" | |||
394 | msgid "DISK %s: %s not found\n" | 394 | msgid "DISK %s: %s not found\n" |
395 | msgstr "" | 395 | msgstr "" |
396 | 396 | ||
397 | #: plugins/check_disk.c:241 plugins/check_disk.c:1035 plugins/check_dns.c:295 | 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 | 398 | #: plugins/check_dummy.c:74 plugins/check_mysql.c:313 |
399 | #: plugins/check_nagios.c:104 plugins/check_nagios.c:168 | 399 | #: plugins/check_nagios.c:104 plugins/check_nagios.c:168 |
400 | #: plugins/check_nagios.c:172 plugins/check_pgsql.c:575 | 400 | #: plugins/check_nagios.c:172 plugins/check_pgsql.c:575 |
@@ -404,232 +404,232 @@ msgstr "" | |||
404 | msgid "CRITICAL" | 404 | msgid "CRITICAL" |
405 | msgstr "" | 405 | msgstr "" |
406 | 406 | ||
407 | #: plugins/check_disk.c:645 | 407 | #: plugins/check_disk.c:660 |
408 | #, c-format | 408 | #, c-format |
409 | msgid "unit type %s not known\n" | 409 | msgid "unit type %s not known\n" |
410 | msgstr "" | 410 | msgstr "" |
411 | 411 | ||
412 | #: plugins/check_disk.c:648 | 412 | #: plugins/check_disk.c:663 |
413 | #, c-format | 413 | #, c-format |
414 | msgid "failed allocating storage for '%s'\n" | 414 | msgid "failed allocating storage for '%s'\n" |
415 | msgstr "" | 415 | msgstr "" |
416 | 416 | ||
417 | #: plugins/check_disk.c:676 plugins/check_disk.c:724 plugins/check_disk.c:732 | 417 | #: plugins/check_disk.c:691 plugins/check_disk.c:739 plugins/check_disk.c:747 |
418 | #: plugins/check_disk.c:740 plugins/check_disk.c:744 plugins/check_disk.c:789 | 418 | #: plugins/check_disk.c:755 plugins/check_disk.c:759 plugins/check_disk.c:804 |
419 | #: plugins/check_disk.c:795 plugins/check_disk.c:818 plugins/check_dummy.c:77 | 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 | 420 | #: plugins/check_dummy.c:80 plugins/check_pgsql.c:617 plugins/check_procs.c:547 |
421 | #, c-format | 421 | #, c-format |
422 | msgid "UNKNOWN" | 422 | msgid "UNKNOWN" |
423 | msgstr "" | 423 | msgstr "" |
424 | 424 | ||
425 | #: plugins/check_disk.c:676 | 425 | #: plugins/check_disk.c:691 |
426 | msgid "Must set a threshold value before using -p\n" | 426 | msgid "Must set a threshold value before using -p\n" |
427 | msgstr "" | 427 | msgstr "" |
428 | 428 | ||
429 | #: plugins/check_disk.c:724 | 429 | #: plugins/check_disk.c:739 |
430 | msgid "Must set -E before selecting paths\n" | 430 | msgid "Must set -E before selecting paths\n" |
431 | msgstr "" | 431 | msgstr "" |
432 | 432 | ||
433 | #: plugins/check_disk.c:732 | 433 | #: plugins/check_disk.c:747 |
434 | msgid "Must set group value before selecting paths\n" | 434 | msgid "Must set group value before selecting paths\n" |
435 | msgstr "" | 435 | msgstr "" |
436 | 436 | ||
437 | #: plugins/check_disk.c:740 | 437 | #: plugins/check_disk.c:755 |
438 | msgid "" | 438 | msgid "" |
439 | "Paths need to be selected before using -i/-I. Use -A to select all paths " | 439 | "Paths need to be selected before using -i/-I. Use -A to select all paths " |
440 | "explicitly" | 440 | "explicitly" |
441 | msgstr "" | 441 | msgstr "" |
442 | 442 | ||
443 | #: plugins/check_disk.c:744 plugins/check_disk.c:795 plugins/check_procs.c:547 | 443 | #: plugins/check_disk.c:759 plugins/check_disk.c:810 plugins/check_procs.c:547 |
444 | msgid "Could not compile regular expression" | 444 | msgid "Could not compile regular expression" |
445 | msgstr "" | 445 | msgstr "" |
446 | 446 | ||
447 | #: plugins/check_disk.c:789 | 447 | #: plugins/check_disk.c:804 |
448 | msgid "Must set a threshold value before using -r/-R\n" | 448 | msgid "Must set a threshold value before using -r/-R\n" |
449 | msgstr "" | 449 | msgstr "" |
450 | 450 | ||
451 | #: plugins/check_disk.c:819 | 451 | #: plugins/check_disk.c:834 |
452 | msgid "Regular expression did not match any path or disk" | 452 | msgid "Regular expression did not match any path or disk" |
453 | msgstr "" | 453 | msgstr "" |
454 | 454 | ||
455 | #: plugins/check_disk.c:865 | 455 | #: plugins/check_disk.c:880 |
456 | msgid "Unknown argument" | 456 | msgid "Unknown argument" |
457 | msgstr "" | 457 | msgstr "" |
458 | 458 | ||
459 | #: plugins/check_disk.c:899 | 459 | #: plugins/check_disk.c:914 |
460 | #, c-format | 460 | #, c-format |
461 | msgid " for %s\n" | 461 | msgid " for %s\n" |
462 | msgstr "" | 462 | msgstr "" |
463 | 463 | ||
464 | #: plugins/check_disk.c:928 | 464 | #: plugins/check_disk.c:943 |
465 | msgid "" | 465 | msgid "" |
466 | "This plugin checks the amount of used disk space on a mounted file system" | 466 | "This plugin checks the amount of used disk space on a mounted file system" |
467 | msgstr "" | 467 | msgstr "" |
468 | 468 | ||
469 | #: plugins/check_disk.c:929 | 469 | #: plugins/check_disk.c:944 |
470 | msgid "" | 470 | msgid "" |
471 | "and generates an alert if free space is less than one of the threshold values" | 471 | "and generates an alert if free space is less than one of the threshold values" |
472 | msgstr "" | 472 | msgstr "" |
473 | 473 | ||
474 | #: plugins/check_disk.c:939 | 474 | #: plugins/check_disk.c:954 |
475 | msgid "Exit with WARNING status if less than INTEGER units of disk are free" | 475 | msgid "Exit with WARNING status if less than INTEGER units of disk are free" |
476 | msgstr "" | 476 | msgstr "" |
477 | 477 | ||
478 | #: plugins/check_disk.c:941 | 478 | #: plugins/check_disk.c:956 |
479 | msgid "Exit with WARNING status if less than PERCENT of disk space is free" | 479 | msgid "Exit with WARNING status if less than PERCENT of disk space is free" |
480 | msgstr "" | 480 | msgstr "" |
481 | 481 | ||
482 | #: plugins/check_disk.c:943 | 482 | #: plugins/check_disk.c:958 |
483 | msgid "Exit with CRITICAL status if less than INTEGER units of disk are free" | 483 | msgid "Exit with CRITICAL status if less than INTEGER units of disk are free" |
484 | msgstr "" | 484 | msgstr "" |
485 | 485 | ||
486 | #: plugins/check_disk.c:945 | 486 | #: plugins/check_disk.c:960 |
487 | msgid "Exit with CRITICAL status if less than PERCENT of disk space is free" | 487 | msgid "Exit with CRITICAL status if less than PERCENT of disk space is free" |
488 | msgstr "" | 488 | msgstr "" |
489 | 489 | ||
490 | #: plugins/check_disk.c:947 | 490 | #: plugins/check_disk.c:962 |
491 | msgid "Exit with WARNING status if less than PERCENT of inode space is free" | 491 | msgid "Exit with WARNING status if less than PERCENT of inode space is free" |
492 | msgstr "" | 492 | msgstr "" |
493 | 493 | ||
494 | #: plugins/check_disk.c:949 | 494 | #: plugins/check_disk.c:964 |
495 | msgid "Exit with CRITICAL status if less than PERCENT of inode space is free" | 495 | msgid "Exit with CRITICAL status if less than PERCENT of inode space is free" |
496 | msgstr "" | 496 | msgstr "" |
497 | 497 | ||
498 | #: plugins/check_disk.c:951 | 498 | #: plugins/check_disk.c:966 |
499 | msgid "" | 499 | msgid "" |
500 | "Mount point or block device as emitted by the mount(8) command (may be " | 500 | "Mount point or block device as emitted by the mount(8) command (may be " |
501 | "repeated)" | 501 | "repeated)" |
502 | msgstr "" | 502 | msgstr "" |
503 | 503 | ||
504 | #: plugins/check_disk.c:953 | 504 | #: plugins/check_disk.c:968 |
505 | msgid "Ignore device (only works if -p unspecified)" | 505 | msgid "Ignore device (only works if -p unspecified)" |
506 | msgstr "" | 506 | msgstr "" |
507 | 507 | ||
508 | #: plugins/check_disk.c:955 | 508 | #: plugins/check_disk.c:970 |
509 | msgid "Clear thresholds" | 509 | msgid "Clear thresholds" |
510 | msgstr "" | 510 | msgstr "" |
511 | 511 | ||
512 | #: plugins/check_disk.c:957 | 512 | #: plugins/check_disk.c:972 |
513 | msgid "For paths or partitions specified with -p, only check for exact paths" | 513 | msgid "For paths or partitions specified with -p, only check for exact paths" |
514 | msgstr "" | 514 | msgstr "" |
515 | 515 | ||
516 | #: plugins/check_disk.c:959 | 516 | #: plugins/check_disk.c:974 |
517 | msgid "Display only devices/mountpoints with errors" | 517 | msgid "Display only devices/mountpoints with errors" |
518 | msgstr "" | 518 | msgstr "" |
519 | 519 | ||
520 | #: plugins/check_disk.c:961 | 520 | #: plugins/check_disk.c:976 |
521 | msgid "Don't account root-reserved blocks into freespace in perfdata" | 521 | msgid "Don't account root-reserved blocks into freespace in perfdata" |
522 | msgstr "" | 522 | msgstr "" |
523 | 523 | ||
524 | #: plugins/check_disk.c:963 | 524 | #: plugins/check_disk.c:978 |
525 | msgid "Display inode usage in perfdata" | 525 | msgid "Display inode usage in perfdata" |
526 | msgstr "" | 526 | msgstr "" |
527 | 527 | ||
528 | #: plugins/check_disk.c:965 | 528 | #: plugins/check_disk.c:980 |
529 | msgid "" | 529 | msgid "" |
530 | "Group paths. Thresholds apply to (free-)space of all partitions together" | 530 | "Group paths. Thresholds apply to (free-)space of all partitions together" |
531 | msgstr "" | 531 | msgstr "" |
532 | 532 | ||
533 | #: plugins/check_disk.c:967 | 533 | #: plugins/check_disk.c:982 |
534 | msgid "Same as '--units kB'" | 534 | msgid "Same as '--units kB'" |
535 | msgstr "" | 535 | msgstr "" |
536 | 536 | ||
537 | #: plugins/check_disk.c:969 | 537 | #: plugins/check_disk.c:984 |
538 | msgid "Only check local filesystems" | 538 | msgid "Only check local filesystems" |
539 | msgstr "" | 539 | msgstr "" |
540 | 540 | ||
541 | #: plugins/check_disk.c:971 | 541 | #: plugins/check_disk.c:986 |
542 | msgid "" | 542 | msgid "" |
543 | "Only check local filesystems against thresholds. Yet call stat on remote " | 543 | "Only check local filesystems against thresholds. Yet call stat on remote " |
544 | "filesystems" | 544 | "filesystems" |
545 | msgstr "" | 545 | msgstr "" |
546 | 546 | ||
547 | #: plugins/check_disk.c:972 | 547 | #: plugins/check_disk.c:987 |
548 | msgid "to test if they are accessible (e.g. to detect Stale NFS Handles)" | 548 | msgid "to test if they are accessible (e.g. to detect Stale NFS Handles)" |
549 | msgstr "" | 549 | msgstr "" |
550 | 550 | ||
551 | #: plugins/check_disk.c:974 | 551 | #: plugins/check_disk.c:989 |
552 | msgid "Display the (block) device instead of the mount point" | 552 | msgid "Display the (block) device instead of the mount point" |
553 | msgstr "" | 553 | msgstr "" |
554 | 554 | ||
555 | #: plugins/check_disk.c:976 | 555 | #: plugins/check_disk.c:991 |
556 | msgid "Same as '--units MB'" | 556 | msgid "Same as '--units MB'" |
557 | msgstr "" | 557 | msgstr "" |
558 | 558 | ||
559 | #: plugins/check_disk.c:978 | 559 | #: plugins/check_disk.c:993 |
560 | msgid "Explicitly select all paths. This is equivalent to -R '.*'" | 560 | msgid "Explicitly select all paths. This is equivalent to -R '.*'" |
561 | msgstr "" | 561 | msgstr "" |
562 | 562 | ||
563 | #: plugins/check_disk.c:980 | 563 | #: plugins/check_disk.c:995 |
564 | msgid "" | 564 | msgid "" |
565 | "Case insensitive regular expression for path/partition (may be repeated)" | 565 | "Case insensitive regular expression for path/partition (may be repeated)" |
566 | msgstr "" | 566 | msgstr "" |
567 | 567 | ||
568 | #: plugins/check_disk.c:982 | 568 | #: plugins/check_disk.c:997 |
569 | msgid "Regular expression for path or partition (may be repeated)" | 569 | msgid "Regular expression for path or partition (may be repeated)" |
570 | msgstr "" | 570 | msgstr "" |
571 | 571 | ||
572 | #: plugins/check_disk.c:984 | 572 | #: plugins/check_disk.c:999 |
573 | msgid "" | 573 | msgid "" |
574 | "Regular expression to ignore selected path/partition (case insensitive) (may " | 574 | "Regular expression to ignore selected path/partition (case insensitive) (may " |
575 | "be repeated)" | 575 | "be repeated)" |
576 | msgstr "" | 576 | msgstr "" |
577 | 577 | ||
578 | #: plugins/check_disk.c:986 | 578 | #: plugins/check_disk.c:1001 |
579 | msgid "" | 579 | msgid "" |
580 | "Regular expression to ignore selected path or partition (may be repeated)" | 580 | "Regular expression to ignore selected path or partition (may be repeated)" |
581 | msgstr "" | 581 | msgstr "" |
582 | 582 | ||
583 | #: plugins/check_disk.c:988 | 583 | #: plugins/check_disk.c:1003 |
584 | msgid "" | 584 | msgid "" |
585 | "Return OK if no filesystem matches, filesystem does not exist or is " | 585 | "Return OK if no filesystem matches, filesystem does not exist or is " |
586 | "inaccessible." | 586 | "inaccessible." |
587 | msgstr "" | 587 | msgstr "" |
588 | 588 | ||
589 | #: plugins/check_disk.c:989 | 589 | #: plugins/check_disk.c:1004 |
590 | msgid "(Provide this option before -p / -r / --ereg-path if used)" | 590 | msgid "(Provide this option before -p / -r / --ereg-path if used)" |
591 | msgstr "" | 591 | msgstr "" |
592 | 592 | ||
593 | #: plugins/check_disk.c:992 | 593 | #: plugins/check_disk.c:1007 |
594 | msgid "Choose bytes, kB, MB, GB, TB (default: MB)" | 594 | msgid "Choose bytes, kB, MB, GB, TB (default: MB)" |
595 | msgstr "" | 595 | msgstr "" |
596 | 596 | ||
597 | #: plugins/check_disk.c:995 | 597 | #: plugins/check_disk.c:1010 |
598 | msgid "Ignore all filesystems of indicated type (may be repeated)" | 598 | msgid "Ignore all filesystems of indicated type (may be repeated)" |
599 | msgstr "" | 599 | msgstr "" |
600 | 600 | ||
601 | #: plugins/check_disk.c:997 | 601 | #: plugins/check_disk.c:1012 |
602 | msgid "Check only filesystems of indicated type (may be repeated)" | 602 | msgid "Check only filesystems of indicated type (may be repeated)" |
603 | msgstr "" | 603 | msgstr "" |
604 | 604 | ||
605 | #: plugins/check_disk.c:1002 | 605 | #: plugins/check_disk.c:1017 |
606 | msgid "Checks /tmp and /var at 10% and 5%, and / at 100MB and 50MB" | 606 | msgid "Checks /tmp and /var at 10% and 5%, and / at 100MB and 50MB" |
607 | msgstr "" | 607 | msgstr "" |
608 | 608 | ||
609 | #: plugins/check_disk.c:1004 | 609 | #: plugins/check_disk.c:1019 |
610 | msgid "" | 610 | msgid "" |
611 | "Checks all filesystems not matching -r at 100M and 50M. The fs matching the -" | 611 | "Checks all filesystems not matching -r at 100M and 50M. The fs matching the -" |
612 | "r regex" | 612 | "r regex" |
613 | msgstr "" | 613 | msgstr "" |
614 | 614 | ||
615 | #: plugins/check_disk.c:1005 | 615 | #: plugins/check_disk.c:1020 |
616 | msgid "" | 616 | msgid "" |
617 | "are grouped which means the freespace thresholds are applied to all disks " | 617 | "are grouped which means the freespace thresholds are applied to all disks " |
618 | "together" | 618 | "together" |
619 | msgstr "" | 619 | msgstr "" |
620 | 620 | ||
621 | #: plugins/check_disk.c:1007 | 621 | #: plugins/check_disk.c:1022 |
622 | msgid "" | 622 | msgid "" |
623 | "Checks /foo for 1000M/500M and /bar for 5/3%. All remaining volumes use " | 623 | "Checks /foo for 1000M/500M and /bar for 5/3%. All remaining volumes use " |
624 | "100M/50M" | 624 | "100M/50M" |
625 | msgstr "" | 625 | msgstr "" |
626 | 626 | ||
627 | #: plugins/check_disk.c:1036 | 627 | #: plugins/check_disk.c:1051 |
628 | #, c-format | 628 | #, c-format |
629 | msgid "%s %s: %s\n" | 629 | msgid "%s %s: %s\n" |
630 | msgstr "" | 630 | msgstr "" |
631 | 631 | ||
632 | #: plugins/check_disk.c:1036 | 632 | #: plugins/check_disk.c:1051 |
633 | msgid "is not accessible" | 633 | msgid "is not accessible" |
634 | msgstr "" | 634 | msgstr "" |
635 | 635 | ||
@@ -929,122 +929,122 @@ msgid "FPING %s - %s (loss=%.0f%% )|%s\n" | |||
929 | msgstr "" | 929 | msgstr "" |
930 | 930 | ||
931 | #: plugins/check_fping.c:345 plugins/check_fping.c:351 plugins/check_hpjd.c:345 | 931 | #: plugins/check_fping.c:345 plugins/check_fping.c:351 plugins/check_hpjd.c:345 |
932 | #: plugins/check_hpjd.c:376 plugins/check_mysql.c:389 plugins/check_mysql.c:476 | 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 | 933 | #: plugins/check_ntp.c:719 plugins/check_ntp_peer.c:497 |
934 | #: plugins/check_ntp_time.c:498 plugins/check_pgsql.c:338 | 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 | 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 | 936 | #: plugins/check_real.c:315 plugins/check_real.c:377 plugins/check_smtp.c:525 |
937 | #: plugins/check_smtp.c:680 plugins/check_ssh.c:162 plugins/check_time.c:240 | 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 | 938 | #: plugins/check_time.c:315 plugins/check_ups.c:507 plugins/check_ups.c:576 |
939 | msgid "Invalid hostname/address" | 939 | msgid "Invalid hostname/address" |
940 | msgstr "" | 940 | msgstr "" |
941 | 941 | ||
942 | #: plugins/check_fping.c:364 plugins/check_ldap.c:400 plugins/check_ping.c:252 | 942 | #: plugins/check_fping.c:365 plugins/check_ldap.c:400 plugins/check_ping.c:252 |
943 | #: plugins-root/check_icmp.c:474 | 943 | #: plugins-root/check_icmp.c:474 |
944 | msgid "IPv6 support not available\n" | 944 | msgid "IPv6 support not available\n" |
945 | msgstr "" | 945 | msgstr "" |
946 | 946 | ||
947 | #: plugins/check_fping.c:397 | 947 | #: plugins/check_fping.c:398 |
948 | msgid "Packet size must be a positive integer" | 948 | msgid "Packet size must be a positive integer" |
949 | msgstr "" | 949 | msgstr "" |
950 | 950 | ||
951 | #: plugins/check_fping.c:403 | 951 | #: plugins/check_fping.c:404 |
952 | msgid "Packet count must be a positive integer" | 952 | msgid "Packet count must be a positive integer" |
953 | msgstr "" | 953 | msgstr "" |
954 | 954 | ||
955 | #: plugins/check_fping.c:409 | 955 | #: plugins/check_fping.c:410 |
956 | msgid "Target timeout must be a positive integer" | 956 | msgid "Target timeout must be a positive integer" |
957 | msgstr "" | 957 | msgstr "" |
958 | 958 | ||
959 | #: plugins/check_fping.c:415 | 959 | #: plugins/check_fping.c:416 |
960 | msgid "Interval must be a positive integer" | 960 | msgid "Interval must be a positive integer" |
961 | msgstr "" | 961 | msgstr "" |
962 | 962 | ||
963 | #: plugins/check_fping.c:421 plugins/check_ntp.c:743 | 963 | #: plugins/check_fping.c:422 plugins/check_ntp.c:743 |
964 | #: plugins/check_ntp_peer.c:524 plugins/check_ntp_time.c:528 | 964 | #: plugins/check_ntp_peer.c:524 plugins/check_ntp_time.c:528 |
965 | #: plugins/check_radius.c:329 plugins/check_time.c:319 | 965 | #: plugins/check_radius.c:329 plugins/check_time.c:319 |
966 | msgid "Hostname was not supplied" | 966 | msgid "Hostname was not supplied" |
967 | msgstr "" | 967 | msgstr "" |
968 | 968 | ||
969 | #: plugins/check_fping.c:441 | 969 | #: plugins/check_fping.c:442 |
970 | #, c-format | 970 | #, c-format |
971 | msgid "%s: Only one threshold may be packet loss (%s)\n" | 971 | msgid "%s: Only one threshold may be packet loss (%s)\n" |
972 | msgstr "" | 972 | msgstr "" |
973 | 973 | ||
974 | #: plugins/check_fping.c:445 | 974 | #: plugins/check_fping.c:446 |
975 | #, c-format | 975 | #, c-format |
976 | msgid "%s: Only one threshold must be packet loss (%s)\n" | 976 | msgid "%s: Only one threshold must be packet loss (%s)\n" |
977 | msgstr "" | 977 | msgstr "" |
978 | 978 | ||
979 | #: plugins/check_fping.c:475 | 979 | #: plugins/check_fping.c:476 |
980 | msgid "" | 980 | msgid "" |
981 | "This plugin will use the fping command to ping the specified host for a fast " | 981 | "This plugin will use the fping command to ping the specified host for a fast " |
982 | "check" | 982 | "check" |
983 | msgstr "" | 983 | msgstr "" |
984 | 984 | ||
985 | #: plugins/check_fping.c:477 | 985 | #: plugins/check_fping.c:478 |
986 | msgid "Note that it is necessary to set the suid flag on fping." | 986 | msgid "Note that it is necessary to set the suid flag on fping." |
987 | msgstr "" | 987 | msgstr "" |
988 | 988 | ||
989 | #: plugins/check_fping.c:489 | 989 | #: plugins/check_fping.c:490 |
990 | msgid "" | 990 | msgid "" |
991 | "name or IP Address of host to ping (IP Address bypasses name lookup, " | 991 | "name or IP Address of host to ping (IP Address bypasses name lookup, " |
992 | "reducing system load)" | 992 | "reducing system load)" |
993 | msgstr "" | 993 | msgstr "" |
994 | 994 | ||
995 | #: plugins/check_fping.c:491 plugins/check_ping.c:589 | 995 | #: plugins/check_fping.c:492 plugins/check_ping.c:589 |
996 | msgid "warning threshold pair" | 996 | msgid "warning threshold pair" |
997 | msgstr "" | 997 | msgstr "" |
998 | 998 | ||
999 | #: plugins/check_fping.c:493 plugins/check_ping.c:591 | 999 | #: plugins/check_fping.c:494 plugins/check_ping.c:591 |
1000 | msgid "critical threshold pair" | 1000 | msgid "critical threshold pair" |
1001 | msgstr "" | 1001 | msgstr "" |
1002 | 1002 | ||
1003 | #: plugins/check_fping.c:495 | 1003 | #: plugins/check_fping.c:496 |
1004 | msgid "Return OK after first successful reply" | 1004 | msgid "Return OK after first successful reply" |
1005 | msgstr "" | 1005 | msgstr "" |
1006 | 1006 | ||
1007 | #: plugins/check_fping.c:497 | 1007 | #: plugins/check_fping.c:498 |
1008 | msgid "size of ICMP packet" | 1008 | msgid "size of ICMP packet" |
1009 | msgstr "" | 1009 | msgstr "" |
1010 | 1010 | ||
1011 | #: plugins/check_fping.c:499 | 1011 | #: plugins/check_fping.c:500 |
1012 | msgid "number of ICMP packets to send" | 1012 | msgid "number of ICMP packets to send" |
1013 | msgstr "" | 1013 | msgstr "" |
1014 | 1014 | ||
1015 | #: plugins/check_fping.c:501 | 1015 | #: plugins/check_fping.c:502 |
1016 | msgid "Target timeout (ms)" | 1016 | msgid "Target timeout (ms)" |
1017 | msgstr "" | 1017 | msgstr "" |
1018 | 1018 | ||
1019 | #: plugins/check_fping.c:503 | 1019 | #: plugins/check_fping.c:504 |
1020 | msgid "Interval (ms) between sending packets" | 1020 | msgid "Interval (ms) between sending packets" |
1021 | msgstr "" | 1021 | msgstr "" |
1022 | 1022 | ||
1023 | #: plugins/check_fping.c:505 | 1023 | #: plugins/check_fping.c:506 |
1024 | msgid "name or IP Address of sourceip" | 1024 | msgid "name or IP Address of sourceip" |
1025 | msgstr "" | 1025 | msgstr "" |
1026 | 1026 | ||
1027 | #: plugins/check_fping.c:507 | 1027 | #: plugins/check_fping.c:508 |
1028 | msgid "source interface name" | 1028 | msgid "source interface name" |
1029 | msgstr "" | 1029 | msgstr "" |
1030 | 1030 | ||
1031 | #: plugins/check_fping.c:510 | 1031 | #: plugins/check_fping.c:511 |
1032 | #, c-format | 1032 | #, c-format |
1033 | msgid "" | 1033 | msgid "" |
1034 | "THRESHOLD is <rta>,<pl>%% where <rta> is the round trip average travel time " | 1034 | "THRESHOLD is <rta>,<pl>%% where <rta> is the round trip average travel time " |
1035 | "(ms)" | 1035 | "(ms)" |
1036 | msgstr "" | 1036 | msgstr "" |
1037 | 1037 | ||
1038 | #: plugins/check_fping.c:511 | 1038 | #: plugins/check_fping.c:512 |
1039 | msgid "" | 1039 | msgid "" |
1040 | "which triggers a WARNING or CRITICAL state, and <pl> is the percentage of" | 1040 | "which triggers a WARNING or CRITICAL state, and <pl> is the percentage of" |
1041 | msgstr "" | 1041 | msgstr "" |
1042 | 1042 | ||
1043 | #: plugins/check_fping.c:512 | 1043 | #: plugins/check_fping.c:513 |
1044 | msgid "packet loss to trigger an alarm state." | 1044 | msgid "packet loss to trigger an alarm state." |
1045 | msgstr "" | 1045 | msgstr "" |
1046 | 1046 | ||
1047 | #: plugins/check_fping.c:515 | 1047 | #: plugins/check_fping.c:516 |
1048 | msgid "IPv4 is used by default. Specify -6 to use IPv6." | 1048 | msgid "IPv4 is used by default. Specify -6 to use IPv6." |
1049 | msgstr "" | 1049 | msgstr "" |
1050 | 1050 | ||
@@ -1157,28 +1157,28 @@ msgstr "" | |||
1157 | msgid "Port must be a positive short integer" | 1157 | msgid "Port must be a positive short integer" |
1158 | msgstr "" | 1158 | msgstr "" |
1159 | 1159 | ||
1160 | #: plugins/check_hpjd.c:410 | 1160 | #: plugins/check_hpjd.c:411 |
1161 | msgid "This plugin tests the STATUS of an HP printer with a JetDirect card." | 1161 | msgid "This plugin tests the STATUS of an HP printer with a JetDirect card." |
1162 | msgstr "" | 1162 | msgstr "" |
1163 | 1163 | ||
1164 | #: plugins/check_hpjd.c:411 | 1164 | #: plugins/check_hpjd.c:412 |
1165 | msgid "Net-snmp must be installed on the computer running the plugin." | 1165 | msgid "Net-snmp must be installed on the computer running the plugin." |
1166 | msgstr "" | 1166 | msgstr "" |
1167 | 1167 | ||
1168 | #: plugins/check_hpjd.c:421 | 1168 | #: plugins/check_hpjd.c:422 |
1169 | msgid "The SNMP community name " | 1169 | msgid "The SNMP community name " |
1170 | msgstr "" | 1170 | msgstr "" |
1171 | 1171 | ||
1172 | #: plugins/check_hpjd.c:422 plugins/check_hpjd.c:426 | 1172 | #: plugins/check_hpjd.c:423 plugins/check_hpjd.c:427 |
1173 | #, c-format | 1173 | #, c-format |
1174 | msgid "(default=%s)" | 1174 | msgid "(default=%s)" |
1175 | msgstr "" | 1175 | msgstr "" |
1176 | 1176 | ||
1177 | #: plugins/check_hpjd.c:425 | 1177 | #: plugins/check_hpjd.c:426 |
1178 | msgid "Specify the port to check " | 1178 | msgid "Specify the port to check " |
1179 | msgstr "" | 1179 | msgstr "" |
1180 | 1180 | ||
1181 | #: plugins/check_hpjd.c:429 | 1181 | #: plugins/check_hpjd.c:430 |
1182 | msgid "Disable paper check " | 1182 | msgid "Disable paper check " |
1183 | msgstr "" | 1183 | msgstr "" |
1184 | 1184 | ||
@@ -1219,555 +1219,555 @@ msgstr "" | |||
1219 | msgid "Invalid port number" | 1219 | msgid "Invalid port number" |
1220 | msgstr "" | 1220 | msgstr "" |
1221 | 1221 | ||
1222 | #: plugins/check_http.c:507 | 1222 | #: plugins/check_http.c:508 |
1223 | #, c-format | 1223 | #, c-format |
1224 | msgid "Could Not Compile Regular Expression: %s" | 1224 | msgid "Could Not Compile Regular Expression: %s" |
1225 | msgstr "" | 1225 | msgstr "" |
1226 | 1226 | ||
1227 | #: plugins/check_http.c:521 plugins/check_ntp.c:732 | 1227 | #: plugins/check_http.c:522 plugins/check_ntp.c:732 |
1228 | #: plugins/check_ntp_peer.c:513 plugins/check_ntp_time.c:517 | 1228 | #: plugins/check_ntp_peer.c:513 plugins/check_ntp_time.c:517 |
1229 | #: plugins/check_smtp.c:660 plugins/check_ssh.c:151 plugins/check_tcp.c:491 | 1229 | #: plugins/check_smtp.c:661 plugins/check_ssh.c:151 plugins/check_tcp.c:491 |
1230 | msgid "IPv6 support not available" | 1230 | msgid "IPv6 support not available" |
1231 | msgstr "" | 1231 | msgstr "" |
1232 | 1232 | ||
1233 | #: plugins/check_http.c:589 plugins/check_ping.c:428 | 1233 | #: plugins/check_http.c:590 plugins/check_ping.c:428 |
1234 | msgid "You must specify a server address or host name" | 1234 | msgid "You must specify a server address or host name" |
1235 | msgstr "" | 1235 | msgstr "" |
1236 | 1236 | ||
1237 | #: plugins/check_http.c:606 | 1237 | #: plugins/check_http.c:607 |
1238 | msgid "" | 1238 | msgid "" |
1239 | "If you use a client certificate you must also specify a private key file" | 1239 | "If you use a client certificate you must also specify a private key file" |
1240 | msgstr "" | 1240 | msgstr "" |
1241 | 1241 | ||
1242 | #: plugins/check_http.c:733 plugins/check_http.c:901 | 1242 | #: plugins/check_http.c:734 plugins/check_http.c:902 |
1243 | msgid "HTTP UNKNOWN - Memory allocation error\n" | 1243 | msgid "HTTP UNKNOWN - Memory allocation error\n" |
1244 | msgstr "" | 1244 | msgstr "" |
1245 | 1245 | ||
1246 | #: plugins/check_http.c:805 | 1246 | #: plugins/check_http.c:806 |
1247 | #, c-format | 1247 | #, c-format |
1248 | msgid "%sServer date unknown, " | 1248 | msgid "%sServer date unknown, " |
1249 | msgstr "" | 1249 | msgstr "" |
1250 | 1250 | ||
1251 | #: plugins/check_http.c:808 | 1251 | #: plugins/check_http.c:809 |
1252 | #, c-format | 1252 | #, c-format |
1253 | msgid "%sDocument modification date unknown, " | 1253 | msgid "%sDocument modification date unknown, " |
1254 | msgstr "" | 1254 | msgstr "" |
1255 | 1255 | ||
1256 | #: plugins/check_http.c:815 | 1256 | #: plugins/check_http.c:816 |
1257 | #, c-format | 1257 | #, c-format |
1258 | msgid "%sServer date \"%100s\" unparsable, " | 1258 | msgid "%sServer date \"%100s\" unparsable, " |
1259 | msgstr "" | 1259 | msgstr "" |
1260 | 1260 | ||
1261 | #: plugins/check_http.c:818 | 1261 | #: plugins/check_http.c:819 |
1262 | #, c-format | 1262 | #, c-format |
1263 | msgid "%sDocument date \"%100s\" unparsable, " | 1263 | msgid "%sDocument date \"%100s\" unparsable, " |
1264 | msgstr "" | 1264 | msgstr "" |
1265 | 1265 | ||
1266 | #: plugins/check_http.c:821 | 1266 | #: plugins/check_http.c:822 |
1267 | #, c-format | 1267 | #, c-format |
1268 | msgid "%sDocument is %d seconds in the future, " | 1268 | msgid "%sDocument is %d seconds in the future, " |
1269 | msgstr "" | 1269 | msgstr "" |
1270 | 1270 | ||
1271 | #: plugins/check_http.c:826 | 1271 | #: plugins/check_http.c:827 |
1272 | #, c-format | 1272 | #, c-format |
1273 | msgid "%sLast modified %.1f days ago, " | 1273 | msgid "%sLast modified %.1f days ago, " |
1274 | msgstr "" | 1274 | msgstr "" |
1275 | 1275 | ||
1276 | #: plugins/check_http.c:829 | 1276 | #: plugins/check_http.c:830 |
1277 | #, c-format | 1277 | #, c-format |
1278 | msgid "%sLast modified %d:%02d:%02d ago, " | 1278 | msgid "%sLast modified %d:%02d:%02d ago, " |
1279 | msgstr "" | 1279 | msgstr "" |
1280 | 1280 | ||
1281 | #: plugins/check_http.c:943 | 1281 | #: plugins/check_http.c:944 |
1282 | msgid "HTTP CRITICAL - Unable to open TCP socket\n" | 1282 | msgid "HTTP CRITICAL - Unable to open TCP socket\n" |
1283 | msgstr "" | 1283 | msgstr "" |
1284 | 1284 | ||
1285 | #: plugins/check_http.c:1103 | 1285 | #: plugins/check_http.c:1104 |
1286 | msgid "HTTP UNKNOWN - Could not allocate memory for full_page\n" | 1286 | msgid "HTTP UNKNOWN - Could not allocate memory for full_page\n" |
1287 | msgstr "" | 1287 | msgstr "" |
1288 | 1288 | ||
1289 | #: plugins/check_http.c:1120 | 1289 | #: plugins/check_http.c:1121 |
1290 | msgid "HTTP CRITICAL - Error on receive\n" | 1290 | msgid "HTTP CRITICAL - Error on receive\n" |
1291 | msgstr "" | 1291 | msgstr "" |
1292 | 1292 | ||
1293 | #: plugins/check_http.c:1125 | 1293 | #: plugins/check_http.c:1126 |
1294 | msgid "HTTP CRITICAL - No data received from host\n" | 1294 | msgid "HTTP CRITICAL - No data received from host\n" |
1295 | msgstr "" | 1295 | msgstr "" |
1296 | 1296 | ||
1297 | #: plugins/check_http.c:1176 | 1297 | #: plugins/check_http.c:1177 |
1298 | #, c-format | 1298 | #, c-format |
1299 | msgid "Invalid HTTP response received from host: %s\n" | 1299 | msgid "Invalid HTTP response received from host: %s\n" |
1300 | msgstr "" | 1300 | msgstr "" |
1301 | 1301 | ||
1302 | #: plugins/check_http.c:1180 | 1302 | #: plugins/check_http.c:1181 |
1303 | #, c-format | 1303 | #, c-format |
1304 | msgid "Invalid HTTP response received from host on port %d: %s\n" | 1304 | msgid "Invalid HTTP response received from host on port %d: %s\n" |
1305 | msgstr "" | 1305 | msgstr "" |
1306 | 1306 | ||
1307 | #: plugins/check_http.c:1183 plugins/check_http.c:1376 | 1307 | #: plugins/check_http.c:1184 plugins/check_http.c:1377 |
1308 | #, c-format | 1308 | #, c-format |
1309 | msgid "" | 1309 | msgid "" |
1310 | "%s\n" | 1310 | "%s\n" |
1311 | "%s" | 1311 | "%s" |
1312 | msgstr "" | 1312 | msgstr "" |
1313 | 1313 | ||
1314 | #: plugins/check_http.c:1191 | 1314 | #: plugins/check_http.c:1192 |
1315 | #, c-format | 1315 | #, c-format |
1316 | msgid "Status line output matched \"%s\" - " | 1316 | msgid "Status line output matched \"%s\" - " |
1317 | msgstr "" | 1317 | msgstr "" |
1318 | 1318 | ||
1319 | #: plugins/check_http.c:1202 | 1319 | #: plugins/check_http.c:1203 |
1320 | #, c-format | 1320 | #, c-format |
1321 | msgid "HTTP CRITICAL: Invalid Status Line (%s)\n" | 1321 | msgid "HTTP CRITICAL: Invalid Status Line (%s)\n" |
1322 | msgstr "" | 1322 | msgstr "" |
1323 | 1323 | ||
1324 | #: plugins/check_http.c:1209 | 1324 | #: plugins/check_http.c:1210 |
1325 | #, c-format | 1325 | #, c-format |
1326 | msgid "HTTP CRITICAL: Invalid Status (%s)\n" | 1326 | msgid "HTTP CRITICAL: Invalid Status (%s)\n" |
1327 | msgstr "" | 1327 | msgstr "" |
1328 | 1328 | ||
1329 | #: plugins/check_http.c:1213 plugins/check_http.c:1218 | 1329 | #: plugins/check_http.c:1214 plugins/check_http.c:1219 |
1330 | #: plugins/check_http.c:1228 plugins/check_http.c:1232 | 1330 | #: plugins/check_http.c:1229 plugins/check_http.c:1233 |
1331 | #, c-format | 1331 | #, c-format |
1332 | msgid "%s - " | 1332 | msgid "%s - " |
1333 | msgstr "" | 1333 | msgstr "" |
1334 | 1334 | ||
1335 | #: plugins/check_http.c:1260 | 1335 | #: plugins/check_http.c:1261 |
1336 | #, c-format | 1336 | #, c-format |
1337 | msgid "%sheader '%s' not found on '%s://%s:%d%s', " | 1337 | msgid "%sheader '%s' not found on '%s://%s:%d%s', " |
1338 | msgstr "" | 1338 | msgstr "" |
1339 | 1339 | ||
1340 | #: plugins/check_http.c:1303 | 1340 | #: plugins/check_http.c:1304 |
1341 | #, c-format | 1341 | #, c-format |
1342 | msgid "%sstring '%s' not found on '%s://%s:%d%s', " | 1342 | msgid "%sstring '%s' not found on '%s://%s:%d%s', " |
1343 | msgstr "" | 1343 | msgstr "" |
1344 | 1344 | ||
1345 | #: plugins/check_http.c:1317 | 1345 | #: plugins/check_http.c:1318 |
1346 | #, c-format | 1346 | #, c-format |
1347 | msgid "%spattern not found, " | 1347 | msgid "%spattern not found, " |
1348 | msgstr "" | 1348 | msgstr "" |
1349 | 1349 | ||
1350 | #: plugins/check_http.c:1319 | 1350 | #: plugins/check_http.c:1320 |
1351 | #, c-format | 1351 | #, c-format |
1352 | msgid "%spattern found, " | 1352 | msgid "%spattern found, " |
1353 | msgstr "" | 1353 | msgstr "" |
1354 | 1354 | ||
1355 | #: plugins/check_http.c:1325 | 1355 | #: plugins/check_http.c:1326 |
1356 | #, c-format | 1356 | #, c-format |
1357 | msgid "%sExecute Error: %s, " | 1357 | msgid "%sExecute Error: %s, " |
1358 | msgstr "" | 1358 | msgstr "" |
1359 | 1359 | ||
1360 | #: plugins/check_http.c:1341 | 1360 | #: plugins/check_http.c:1342 |
1361 | #, c-format | 1361 | #, c-format |
1362 | msgid "%spage size %d too large, " | 1362 | msgid "%spage size %d too large, " |
1363 | msgstr "" | 1363 | msgstr "" |
1364 | 1364 | ||
1365 | #: plugins/check_http.c:1344 | 1365 | #: plugins/check_http.c:1345 |
1366 | #, c-format | 1366 | #, c-format |
1367 | msgid "%spage size %d too small, " | 1367 | msgid "%spage size %d too small, " |
1368 | msgstr "" | 1368 | msgstr "" |
1369 | 1369 | ||
1370 | #: plugins/check_http.c:1357 | 1370 | #: plugins/check_http.c:1358 |
1371 | #, c-format | 1371 | #, c-format |
1372 | msgid "%s - %d bytes in %.3f second response time %s|%s %s %s %s %s %s %s" | 1372 | msgid "%s - %d bytes in %.3f second response time %s|%s %s %s %s %s %s %s" |
1373 | msgstr "" | 1373 | msgstr "" |
1374 | 1374 | ||
1375 | #: plugins/check_http.c:1369 | 1375 | #: plugins/check_http.c:1370 |
1376 | #, c-format | 1376 | #, c-format |
1377 | msgid "%s - %d bytes in %.3f second response time %s|%s %s" | 1377 | msgid "%s - %d bytes in %.3f second response time %s|%s %s" |
1378 | msgstr "" | 1378 | msgstr "" |
1379 | 1379 | ||
1380 | #: plugins/check_http.c:1499 | 1380 | #: plugins/check_http.c:1500 |
1381 | msgid "HTTP UNKNOWN - Could not allocate addr\n" | 1381 | msgid "HTTP UNKNOWN - Could not allocate addr\n" |
1382 | msgstr "" | 1382 | msgstr "" |
1383 | 1383 | ||
1384 | #: plugins/check_http.c:1504 plugins/check_http.c:1535 | 1384 | #: plugins/check_http.c:1505 plugins/check_http.c:1536 |
1385 | msgid "HTTP UNKNOWN - Could not allocate URL\n" | 1385 | msgid "HTTP UNKNOWN - Could not allocate URL\n" |
1386 | msgstr "" | 1386 | msgstr "" |
1387 | 1387 | ||
1388 | #: plugins/check_http.c:1513 | 1388 | #: plugins/check_http.c:1514 |
1389 | #, c-format | 1389 | #, c-format |
1390 | msgid "HTTP UNKNOWN - Could not find redirect location - %s%s\n" | 1390 | msgid "HTTP UNKNOWN - Could not find redirect location - %s%s\n" |
1391 | msgstr "" | 1391 | msgstr "" |
1392 | 1392 | ||
1393 | #: plugins/check_http.c:1528 | 1393 | #: plugins/check_http.c:1529 |
1394 | #, c-format | 1394 | #, c-format |
1395 | msgid "HTTP UNKNOWN - Empty redirect location%s\n" | 1395 | msgid "HTTP UNKNOWN - Empty redirect location%s\n" |
1396 | msgstr "" | 1396 | msgstr "" |
1397 | 1397 | ||
1398 | #: plugins/check_http.c:1590 | 1398 | #: plugins/check_http.c:1591 |
1399 | #, c-format | 1399 | #, c-format |
1400 | msgid "HTTP UNKNOWN - Could not parse redirect location - %s%s\n" | 1400 | msgid "HTTP UNKNOWN - Could not parse redirect location - %s%s\n" |
1401 | msgstr "" | 1401 | msgstr "" |
1402 | 1402 | ||
1403 | #: plugins/check_http.c:1600 | 1403 | #: plugins/check_http.c:1601 |
1404 | #, c-format | 1404 | #, c-format |
1405 | msgid "HTTP WARNING - maximum redirection depth %d exceeded - %s://%s:%d%s%s\n" | 1405 | msgid "HTTP WARNING - maximum redirection depth %d exceeded - %s://%s:%d%s%s\n" |
1406 | msgstr "" | 1406 | msgstr "" |
1407 | 1407 | ||
1408 | #: plugins/check_http.c:1608 | 1408 | #: plugins/check_http.c:1609 |
1409 | #, c-format | 1409 | #, c-format |
1410 | msgid "HTTP CRITICAL - redirection creates an infinite loop - %s://%s:%d%s%s\n" | 1410 | msgid "HTTP CRITICAL - redirection creates an infinite loop - %s://%s:%d%s%s\n" |
1411 | msgstr "" | 1411 | msgstr "" |
1412 | 1412 | ||
1413 | #: plugins/check_http.c:1629 | 1413 | #: plugins/check_http.c:1630 |
1414 | #, c-format | 1414 | #, c-format |
1415 | msgid "HTTP UNKNOWN - Redirection to port above %d - %s://%s:%d%s%s\n" | 1415 | msgid "HTTP UNKNOWN - Redirection to port above %d - %s://%s:%d%s%s\n" |
1416 | msgstr "" | 1416 | msgstr "" |
1417 | 1417 | ||
1418 | #: plugins/check_http.c:1637 | 1418 | #: plugins/check_http.c:1638 |
1419 | #, c-format | 1419 | #, c-format |
1420 | msgid "Redirection to %s://%s:%d%s\n" | 1420 | msgid "Redirection to %s://%s:%d%s\n" |
1421 | msgstr "" | 1421 | msgstr "" |
1422 | 1422 | ||
1423 | #: plugins/check_http.c:1712 | 1423 | #: plugins/check_http.c:1713 |
1424 | msgid "This plugin tests the HTTP service on the specified host. It can test" | 1424 | msgid "This plugin tests the HTTP service on the specified host. It can test" |
1425 | msgstr "" | 1425 | msgstr "" |
1426 | 1426 | ||
1427 | #: plugins/check_http.c:1713 | 1427 | #: plugins/check_http.c:1714 |
1428 | msgid "normal (http) and secure (https) servers, follow redirects, search for" | 1428 | msgid "normal (http) and secure (https) servers, follow redirects, search for" |
1429 | msgstr "" | 1429 | msgstr "" |
1430 | 1430 | ||
1431 | #: plugins/check_http.c:1714 | 1431 | #: plugins/check_http.c:1715 |
1432 | msgid "strings and regular expressions, check connection times, and report on" | 1432 | msgid "strings and regular expressions, check connection times, and report on" |
1433 | msgstr "" | 1433 | msgstr "" |
1434 | 1434 | ||
1435 | #: plugins/check_http.c:1715 | 1435 | #: plugins/check_http.c:1716 |
1436 | msgid "certificate expiration times." | 1436 | msgid "certificate expiration times." |
1437 | msgstr "" | 1437 | msgstr "" |
1438 | 1438 | ||
1439 | #: plugins/check_http.c:1722 | 1439 | #: plugins/check_http.c:1723 |
1440 | #, c-format | 1440 | #, c-format |
1441 | msgid "In the first form, make an HTTP request." | 1441 | msgid "In the first form, make an HTTP request." |
1442 | msgstr "" | 1442 | msgstr "" |
1443 | 1443 | ||
1444 | #: plugins/check_http.c:1723 | 1444 | #: plugins/check_http.c:1724 |
1445 | #, c-format | 1445 | #, c-format |
1446 | msgid "" | 1446 | msgid "" |
1447 | "In the second form, connect to the server and check the TLS certificate." | 1447 | "In the second form, connect to the server and check the TLS certificate." |
1448 | msgstr "" | 1448 | msgstr "" |
1449 | 1449 | ||
1450 | #: plugins/check_http.c:1725 | 1450 | #: plugins/check_http.c:1726 |
1451 | #, c-format | 1451 | #, c-format |
1452 | msgid "NOTE: One or both of -H and -I must be specified" | 1452 | msgid "NOTE: One or both of -H and -I must be specified" |
1453 | msgstr "" | 1453 | msgstr "" |
1454 | 1454 | ||
1455 | #: plugins/check_http.c:1733 | 1455 | #: plugins/check_http.c:1734 |
1456 | msgid "Host name argument for servers using host headers (virtual host)" | 1456 | msgid "Host name argument for servers using host headers (virtual host)" |
1457 | msgstr "" | 1457 | msgstr "" |
1458 | 1458 | ||
1459 | #: plugins/check_http.c:1734 | 1459 | #: plugins/check_http.c:1735 |
1460 | msgid "Append a port to include it in the header (eg: example.com:5000)" | 1460 | msgid "Append a port to include it in the header (eg: example.com:5000)" |
1461 | msgstr "" | 1461 | msgstr "" |
1462 | 1462 | ||
1463 | #: plugins/check_http.c:1736 | 1463 | #: plugins/check_http.c:1737 |
1464 | msgid "" | 1464 | msgid "" |
1465 | "IP address or name (use numeric address if possible to bypass DNS lookup)." | 1465 | "IP address or name (use numeric address if possible to bypass DNS lookup)." |
1466 | msgstr "" | 1466 | msgstr "" |
1467 | 1467 | ||
1468 | #: plugins/check_http.c:1738 | 1468 | #: plugins/check_http.c:1739 |
1469 | msgid "Port number (default: " | 1469 | msgid "Port number (default: " |
1470 | msgstr "" | 1470 | msgstr "" |
1471 | 1471 | ||
1472 | #: plugins/check_http.c:1745 | 1472 | #: plugins/check_http.c:1746 |
1473 | msgid "" | 1473 | msgid "" |
1474 | "Connect via SSL. Port defaults to 443. VERSION is optional, and prevents" | 1474 | "Connect via SSL. Port defaults to 443. VERSION is optional, and prevents" |
1475 | msgstr "" | 1475 | msgstr "" |
1476 | 1476 | ||
1477 | #: plugins/check_http.c:1746 | 1477 | #: plugins/check_http.c:1747 |
1478 | msgid "auto-negotiation (2 = SSLv2, 3 = SSLv3, 1 = TLSv1, 1.1 = TLSv1.1," | 1478 | msgid "auto-negotiation (2 = SSLv2, 3 = SSLv3, 1 = TLSv1, 1.1 = TLSv1.1," |
1479 | msgstr "" | 1479 | msgstr "" |
1480 | 1480 | ||
1481 | #: plugins/check_http.c:1747 | 1481 | #: plugins/check_http.c:1748 |
1482 | msgid "1.2 = TLSv1.2). With a '+' suffix, newer versions are also accepted." | 1482 | msgid "1.2 = TLSv1.2). With a '+' suffix, newer versions are also accepted." |
1483 | msgstr "" | 1483 | msgstr "" |
1484 | 1484 | ||
1485 | #: plugins/check_http.c:1749 plugins/check_smtp.c:856 | 1485 | #: plugins/check_http.c:1750 plugins/check_smtp.c:857 |
1486 | msgid "Enable SSL/TLS hostname extension support (SNI)" | 1486 | msgid "Enable SSL/TLS hostname extension support (SNI)" |
1487 | msgstr "" | 1487 | msgstr "" |
1488 | 1488 | ||
1489 | #: plugins/check_http.c:1751 | 1489 | #: plugins/check_http.c:1752 |
1490 | msgid "" | 1490 | msgid "" |
1491 | "Minimum number of days a certificate has to be valid. Port defaults to 443" | 1491 | "Minimum number of days a certificate has to be valid. Port defaults to 443" |
1492 | msgstr "" | 1492 | msgstr "" |
1493 | 1493 | ||
1494 | #: plugins/check_http.c:1752 | 1494 | #: plugins/check_http.c:1753 |
1495 | msgid "" | 1495 | msgid "" |
1496 | "(when this option is used the URL is not checked by default. You can use" | 1496 | "(when this option is used the URL is not checked by default. You can use" |
1497 | msgstr "" | 1497 | msgstr "" |
1498 | 1498 | ||
1499 | #: plugins/check_http.c:1753 | 1499 | #: plugins/check_http.c:1754 |
1500 | msgid " --continue-after-certificate to override this behavior)" | 1500 | msgid " --continue-after-certificate to override this behavior)" |
1501 | msgstr "" | 1501 | msgstr "" |
1502 | 1502 | ||
1503 | #: plugins/check_http.c:1755 | 1503 | #: plugins/check_http.c:1756 |
1504 | msgid "" | 1504 | msgid "" |
1505 | "Allows the HTTP check to continue after performing the certificate check." | 1505 | "Allows the HTTP check to continue after performing the certificate check." |
1506 | msgstr "" | 1506 | msgstr "" |
1507 | 1507 | ||
1508 | #: plugins/check_http.c:1756 | 1508 | #: plugins/check_http.c:1757 |
1509 | msgid "Does nothing unless -C is used." | 1509 | msgid "Does nothing unless -C is used." |
1510 | msgstr "" | 1510 | msgstr "" |
1511 | 1511 | ||
1512 | #: plugins/check_http.c:1758 | 1512 | #: plugins/check_http.c:1759 |
1513 | msgid "Name of file that contains the client certificate (PEM format)" | 1513 | msgid "Name of file that contains the client certificate (PEM format)" |
1514 | msgstr "" | 1514 | msgstr "" |
1515 | 1515 | ||
1516 | #: plugins/check_http.c:1759 | 1516 | #: plugins/check_http.c:1760 |
1517 | msgid "to be used in establishing the SSL session" | 1517 | msgid "to be used in establishing the SSL session" |
1518 | msgstr "" | 1518 | msgstr "" |
1519 | 1519 | ||
1520 | #: plugins/check_http.c:1761 | 1520 | #: plugins/check_http.c:1762 |
1521 | msgid "Name of file containing the private key (PEM format)" | 1521 | msgid "Name of file containing the private key (PEM format)" |
1522 | msgstr "" | 1522 | msgstr "" |
1523 | 1523 | ||
1524 | #: plugins/check_http.c:1762 | 1524 | #: plugins/check_http.c:1763 |
1525 | msgid "matching the client certificate" | 1525 | msgid "matching the client certificate" |
1526 | msgstr "" | 1526 | msgstr "" |
1527 | 1527 | ||
1528 | #: plugins/check_http.c:1766 | 1528 | #: plugins/check_http.c:1767 |
1529 | msgid "Comma-delimited list of strings, at least one of them is expected in" | 1529 | msgid "Comma-delimited list of strings, at least one of them is expected in" |
1530 | msgstr "" | 1530 | msgstr "" |
1531 | 1531 | ||
1532 | #: plugins/check_http.c:1767 | 1532 | #: plugins/check_http.c:1768 |
1533 | msgid "the first (status) line of the server response (default: " | 1533 | msgid "the first (status) line of the server response (default: " |
1534 | msgstr "" | 1534 | msgstr "" |
1535 | 1535 | ||
1536 | #: plugins/check_http.c:1769 | 1536 | #: plugins/check_http.c:1770 |
1537 | msgid "" | 1537 | msgid "" |
1538 | "If specified skips all other status line logic (ex: 3xx, 4xx, 5xx processing)" | 1538 | "If specified skips all other status line logic (ex: 3xx, 4xx, 5xx processing)" |
1539 | msgstr "" | 1539 | msgstr "" |
1540 | 1540 | ||
1541 | #: plugins/check_http.c:1771 | 1541 | #: plugins/check_http.c:1772 |
1542 | msgid "String to expect in the response headers" | 1542 | msgid "String to expect in the response headers" |
1543 | msgstr "" | 1543 | msgstr "" |
1544 | 1544 | ||
1545 | #: plugins/check_http.c:1773 | 1545 | #: plugins/check_http.c:1774 |
1546 | msgid "String to expect in the content" | 1546 | msgid "String to expect in the content" |
1547 | msgstr "" | 1547 | msgstr "" |
1548 | 1548 | ||
1549 | #: plugins/check_http.c:1775 | 1549 | #: plugins/check_http.c:1776 |
1550 | msgid "URL to GET or POST (default: /)" | 1550 | msgid "URL to GET or POST (default: /)" |
1551 | msgstr "" | 1551 | msgstr "" |
1552 | 1552 | ||
1553 | #: plugins/check_http.c:1777 | 1553 | #: plugins/check_http.c:1778 |
1554 | msgid "URL encoded http POST data" | 1554 | msgid "URL encoded http POST data" |
1555 | msgstr "" | 1555 | msgstr "" |
1556 | 1556 | ||
1557 | #: plugins/check_http.c:1779 | 1557 | #: plugins/check_http.c:1780 |
1558 | msgid "Set HTTP method." | 1558 | msgid "Set HTTP method." |
1559 | msgstr "" | 1559 | msgstr "" |
1560 | 1560 | ||
1561 | #: plugins/check_http.c:1781 | 1561 | #: plugins/check_http.c:1782 |
1562 | msgid "Don't wait for document body: stop reading after headers." | 1562 | msgid "Don't wait for document body: stop reading after headers." |
1563 | msgstr "" | 1563 | msgstr "" |
1564 | 1564 | ||
1565 | #: plugins/check_http.c:1782 | 1565 | #: plugins/check_http.c:1783 |
1566 | msgid "(Note that this still does an HTTP GET or POST, not a HEAD.)" | 1566 | msgid "(Note that this still does an HTTP GET or POST, not a HEAD.)" |
1567 | msgstr "" | 1567 | msgstr "" |
1568 | 1568 | ||
1569 | #: plugins/check_http.c:1784 | 1569 | #: plugins/check_http.c:1785 |
1570 | msgid "Warn if document is more than SECONDS old. the number can also be of" | 1570 | msgid "Warn if document is more than SECONDS old. the number can also be of" |
1571 | msgstr "" | 1571 | msgstr "" |
1572 | 1572 | ||
1573 | #: plugins/check_http.c:1785 | 1573 | #: plugins/check_http.c:1786 |
1574 | msgid "the form \"10m\" for minutes, \"10h\" for hours, or \"10d\" for days." | 1574 | msgid "the form \"10m\" for minutes, \"10h\" for hours, or \"10d\" for days." |
1575 | msgstr "" | 1575 | msgstr "" |
1576 | 1576 | ||
1577 | #: plugins/check_http.c:1787 | 1577 | #: plugins/check_http.c:1788 |
1578 | msgid "specify Content-Type header media type when POSTing\n" | 1578 | msgid "specify Content-Type header media type when POSTing\n" |
1579 | msgstr "" | 1579 | msgstr "" |
1580 | 1580 | ||
1581 | #: plugins/check_http.c:1790 | 1581 | #: plugins/check_http.c:1791 |
1582 | msgid "Allow regex to span newlines (must precede -r or -R)" | 1582 | msgid "Allow regex to span newlines (must precede -r or -R)" |
1583 | msgstr "" | 1583 | msgstr "" |
1584 | 1584 | ||
1585 | #: plugins/check_http.c:1792 | 1585 | #: plugins/check_http.c:1793 |
1586 | msgid "Search page for regex STRING" | 1586 | msgid "Search page for regex STRING" |
1587 | msgstr "" | 1587 | msgstr "" |
1588 | 1588 | ||
1589 | #: plugins/check_http.c:1794 | 1589 | #: plugins/check_http.c:1795 |
1590 | msgid "Search page for case-insensitive regex STRING" | 1590 | msgid "Search page for case-insensitive regex STRING" |
1591 | msgstr "" | 1591 | msgstr "" |
1592 | 1592 | ||
1593 | #: plugins/check_http.c:1796 | 1593 | #: plugins/check_http.c:1797 |
1594 | msgid "Return CRITICAL if found, OK if not\n" | 1594 | msgid "Return CRITICAL if found, OK if not\n" |
1595 | msgstr "" | 1595 | msgstr "" |
1596 | 1596 | ||
1597 | #: plugins/check_http.c:1799 | 1597 | #: plugins/check_http.c:1800 |
1598 | msgid "Username:password on sites with basic authentication" | 1598 | msgid "Username:password on sites with basic authentication" |
1599 | msgstr "" | 1599 | msgstr "" |
1600 | 1600 | ||
1601 | #: plugins/check_http.c:1801 | 1601 | #: plugins/check_http.c:1802 |
1602 | msgid "Username:password on proxy-servers with basic authentication" | 1602 | msgid "Username:password on proxy-servers with basic authentication" |
1603 | msgstr "" | 1603 | msgstr "" |
1604 | 1604 | ||
1605 | #: plugins/check_http.c:1803 | 1605 | #: plugins/check_http.c:1804 |
1606 | msgid "String to be sent in http header as \"User Agent\"" | 1606 | msgid "String to be sent in http header as \"User Agent\"" |
1607 | msgstr "" | 1607 | msgstr "" |
1608 | 1608 | ||
1609 | #: plugins/check_http.c:1805 | 1609 | #: plugins/check_http.c:1806 |
1610 | msgid "" | 1610 | msgid "" |
1611 | "Any other tags to be sent in http header. Use multiple times for additional " | 1611 | "Any other tags to be sent in http header. Use multiple times for additional " |
1612 | "headers" | 1612 | "headers" |
1613 | msgstr "" | 1613 | msgstr "" |
1614 | 1614 | ||
1615 | #: plugins/check_http.c:1807 | 1615 | #: plugins/check_http.c:1808 |
1616 | msgid "Print additional performance data" | 1616 | msgid "Print additional performance data" |
1617 | msgstr "" | 1617 | msgstr "" |
1618 | 1618 | ||
1619 | #: plugins/check_http.c:1809 | 1619 | #: plugins/check_http.c:1810 |
1620 | msgid "Print body content below status line" | 1620 | msgid "Print body content below status line" |
1621 | msgstr "" | 1621 | msgstr "" |
1622 | 1622 | ||
1623 | #: plugins/check_http.c:1811 | 1623 | #: plugins/check_http.c:1812 |
1624 | msgid "Wrap output in HTML link (obsoleted by urlize)" | 1624 | msgid "Wrap output in HTML link (obsoleted by urlize)" |
1625 | msgstr "" | 1625 | msgstr "" |
1626 | 1626 | ||
1627 | #: plugins/check_http.c:1813 | 1627 | #: plugins/check_http.c:1814 |
1628 | msgid "How to handle redirected pages. sticky is like follow but stick to the" | 1628 | msgid "How to handle redirected pages. sticky is like follow but stick to the" |
1629 | msgstr "" | 1629 | msgstr "" |
1630 | 1630 | ||
1631 | #: plugins/check_http.c:1814 | 1631 | #: plugins/check_http.c:1815 |
1632 | msgid "specified IP address. stickyport also ensures port stays the same." | 1632 | msgid "specified IP address. stickyport also ensures port stays the same." |
1633 | msgstr "" | 1633 | msgstr "" |
1634 | 1634 | ||
1635 | #: plugins/check_http.c:1816 | 1635 | #: plugins/check_http.c:1817 |
1636 | msgid "Maximal number of redirects (default: " | 1636 | msgid "Maximal number of redirects (default: " |
1637 | msgstr "" | 1637 | msgstr "" |
1638 | 1638 | ||
1639 | #: plugins/check_http.c:1819 | 1639 | #: plugins/check_http.c:1820 |
1640 | msgid "Minimum page size required (bytes) : Maximum page size required (bytes)" | 1640 | msgid "Minimum page size required (bytes) : Maximum page size required (bytes)" |
1641 | msgstr "" | 1641 | msgstr "" |
1642 | 1642 | ||
1643 | #: plugins/check_http.c:1828 | 1643 | #: plugins/check_http.c:1829 |
1644 | msgid "This plugin will attempt to open an HTTP connection with the host." | 1644 | msgid "This plugin will attempt to open an HTTP connection with the host." |
1645 | msgstr "" | 1645 | msgstr "" |
1646 | 1646 | ||
1647 | #: plugins/check_http.c:1829 | 1647 | #: plugins/check_http.c:1830 |
1648 | msgid "" | 1648 | msgid "" |
1649 | "Successful connects return STATE_OK, refusals and timeouts return " | 1649 | "Successful connects return STATE_OK, refusals and timeouts return " |
1650 | "STATE_CRITICAL" | 1650 | "STATE_CRITICAL" |
1651 | msgstr "" | 1651 | msgstr "" |
1652 | 1652 | ||
1653 | #: plugins/check_http.c:1830 | 1653 | #: plugins/check_http.c:1831 |
1654 | msgid "" | 1654 | msgid "" |
1655 | "other errors return STATE_UNKNOWN. Successful connects, but incorrect " | 1655 | "other errors return STATE_UNKNOWN. Successful connects, but incorrect " |
1656 | "response" | 1656 | "response" |
1657 | msgstr "" | 1657 | msgstr "" |
1658 | 1658 | ||
1659 | #: plugins/check_http.c:1831 | 1659 | #: plugins/check_http.c:1832 |
1660 | msgid "" | 1660 | msgid "" |
1661 | "messages from the host result in STATE_WARNING return values. If you are" | 1661 | "messages from the host result in STATE_WARNING return values. If you are" |
1662 | msgstr "" | 1662 | msgstr "" |
1663 | 1663 | ||
1664 | #: plugins/check_http.c:1832 | 1664 | #: plugins/check_http.c:1833 |
1665 | msgid "" | 1665 | msgid "" |
1666 | "checking a virtual server that uses 'host headers' you must supply the FQDN" | 1666 | "checking a virtual server that uses 'host headers' you must supply the FQDN" |
1667 | msgstr "" | 1667 | msgstr "" |
1668 | 1668 | ||
1669 | #: plugins/check_http.c:1833 | 1669 | #: plugins/check_http.c:1834 |
1670 | msgid "(fully qualified domain name) as the [host_name] argument." | 1670 | msgid "(fully qualified domain name) as the [host_name] argument." |
1671 | msgstr "" | 1671 | msgstr "" |
1672 | 1672 | ||
1673 | #: plugins/check_http.c:1837 | 1673 | #: plugins/check_http.c:1838 |
1674 | msgid "This plugin can also check whether an SSL enabled web server is able to" | 1674 | msgid "This plugin can also check whether an SSL enabled web server is able to" |
1675 | msgstr "" | 1675 | msgstr "" |
1676 | 1676 | ||
1677 | #: plugins/check_http.c:1838 | 1677 | #: plugins/check_http.c:1839 |
1678 | msgid "serve content (optionally within a specified time) or whether the X509 " | 1678 | msgid "serve content (optionally within a specified time) or whether the X509 " |
1679 | msgstr "" | 1679 | msgstr "" |
1680 | 1680 | ||
1681 | #: plugins/check_http.c:1839 | 1681 | #: plugins/check_http.c:1840 |
1682 | msgid "certificate is still valid for the specified number of days." | 1682 | msgid "certificate is still valid for the specified number of days." |
1683 | msgstr "" | 1683 | msgstr "" |
1684 | 1684 | ||
1685 | #: plugins/check_http.c:1841 | 1685 | #: plugins/check_http.c:1842 |
1686 | msgid "Please note that this plugin does not check if the presented server" | 1686 | msgid "Please note that this plugin does not check if the presented server" |
1687 | msgstr "" | 1687 | msgstr "" |
1688 | 1688 | ||
1689 | #: plugins/check_http.c:1842 | 1689 | #: plugins/check_http.c:1843 |
1690 | msgid "certificate matches the hostname of the server, or if the certificate" | 1690 | msgid "certificate matches the hostname of the server, or if the certificate" |
1691 | msgstr "" | 1691 | msgstr "" |
1692 | 1692 | ||
1693 | #: plugins/check_http.c:1843 | 1693 | #: plugins/check_http.c:1844 |
1694 | msgid "has a valid chain of trust to one of the locally installed CAs." | 1694 | msgid "has a valid chain of trust to one of the locally installed CAs." |
1695 | msgstr "" | 1695 | msgstr "" |
1696 | 1696 | ||
1697 | #: plugins/check_http.c:1847 | 1697 | #: plugins/check_http.c:1848 |
1698 | msgid "" | 1698 | msgid "" |
1699 | "When the 'www.verisign.com' server returns its content within 5 seconds," | 1699 | "When the 'www.verisign.com' server returns its content within 5 seconds," |
1700 | msgstr "" | 1700 | msgstr "" |
1701 | 1701 | ||
1702 | #: plugins/check_http.c:1848 plugins/check_http.c:1867 | 1702 | #: plugins/check_http.c:1849 plugins/check_http.c:1868 |
1703 | msgid "" | 1703 | msgid "" |
1704 | "a STATE_OK will be returned. When the server returns its content but exceeds" | 1704 | "a STATE_OK will be returned. When the server returns its content but exceeds" |
1705 | msgstr "" | 1705 | msgstr "" |
1706 | 1706 | ||
1707 | #: plugins/check_http.c:1849 plugins/check_http.c:1868 | 1707 | #: plugins/check_http.c:1850 plugins/check_http.c:1869 |
1708 | msgid "" | 1708 | msgid "" |
1709 | "the 5-second threshold, a STATE_WARNING will be returned. When an error " | 1709 | "the 5-second threshold, a STATE_WARNING will be returned. When an error " |
1710 | "occurs," | 1710 | "occurs," |
1711 | msgstr "" | 1711 | msgstr "" |
1712 | 1712 | ||
1713 | #: plugins/check_http.c:1850 | 1713 | #: plugins/check_http.c:1851 |
1714 | msgid "a STATE_CRITICAL will be returned." | 1714 | msgid "a STATE_CRITICAL will be returned." |
1715 | msgstr "" | 1715 | msgstr "" |
1716 | 1716 | ||
1717 | #: plugins/check_http.c:1853 | 1717 | #: plugins/check_http.c:1854 |
1718 | msgid "" | 1718 | msgid "" |
1719 | "When the certificate of 'www.verisign.com' is valid for more than 14 days," | 1719 | "When the certificate of 'www.verisign.com' is valid for more than 14 days," |
1720 | msgstr "" | 1720 | msgstr "" |
1721 | 1721 | ||
1722 | #: plugins/check_http.c:1854 plugins/check_http.c:1860 | 1722 | #: plugins/check_http.c:1855 plugins/check_http.c:1861 |
1723 | msgid "" | 1723 | msgid "" |
1724 | "a STATE_OK is returned. When the certificate is still valid, but for less " | 1724 | "a STATE_OK is returned. When the certificate is still valid, but for less " |
1725 | "than" | 1725 | "than" |
1726 | msgstr "" | 1726 | msgstr "" |
1727 | 1727 | ||
1728 | #: plugins/check_http.c:1855 | 1728 | #: plugins/check_http.c:1856 |
1729 | msgid "" | 1729 | msgid "" |
1730 | "14 days, a STATE_WARNING is returned. A STATE_CRITICAL will be returned when" | 1730 | "14 days, a STATE_WARNING is returned. A STATE_CRITICAL will be returned when" |
1731 | msgstr "" | 1731 | msgstr "" |
1732 | 1732 | ||
1733 | #: plugins/check_http.c:1856 | 1733 | #: plugins/check_http.c:1857 |
1734 | msgid "the certificate is expired." | 1734 | msgid "the certificate is expired." |
1735 | msgstr "" | 1735 | msgstr "" |
1736 | 1736 | ||
1737 | #: plugins/check_http.c:1859 | 1737 | #: plugins/check_http.c:1860 |
1738 | msgid "" | 1738 | msgid "" |
1739 | "When the certificate of 'www.verisign.com' is valid for more than 30 days," | 1739 | "When the certificate of 'www.verisign.com' is valid for more than 30 days," |
1740 | msgstr "" | 1740 | msgstr "" |
1741 | 1741 | ||
1742 | #: plugins/check_http.c:1861 | 1742 | #: plugins/check_http.c:1862 |
1743 | msgid "30 days, but more than 14 days, a STATE_WARNING is returned." | 1743 | msgid "30 days, but more than 14 days, a STATE_WARNING is returned." |
1744 | msgstr "" | 1744 | msgstr "" |
1745 | 1745 | ||
1746 | #: plugins/check_http.c:1862 | 1746 | #: plugins/check_http.c:1863 |
1747 | msgid "" | 1747 | msgid "" |
1748 | "A STATE_CRITICAL will be returned when certificate expires in less than 14 " | 1748 | "A STATE_CRITICAL will be returned when certificate expires in less than 14 " |
1749 | "days" | 1749 | "days" |
1750 | msgstr "" | 1750 | msgstr "" |
1751 | 1751 | ||
1752 | #: plugins/check_http.c:1865 | 1752 | #: plugins/check_http.c:1866 |
1753 | msgid "" | 1753 | msgid "" |
1754 | "check_http -I 192.168.100.35 -p 80 -u https://www.verisign.com/ -S -j " | 1754 | "check_http -I 192.168.100.35 -p 80 -u https://www.verisign.com/ -S -j " |
1755 | "CONNECT -H www.verisign.com " | 1755 | "CONNECT -H www.verisign.com " |
1756 | msgstr "" | 1756 | msgstr "" |
1757 | 1757 | ||
1758 | #: plugins/check_http.c:1866 | 1758 | #: plugins/check_http.c:1867 |
1759 | msgid "" | 1759 | msgid "" |
1760 | "all these options are needed: -I <proxy> -p <proxy-port> -u <check-url> -" | 1760 | "all these options are needed: -I <proxy> -p <proxy-port> -u <check-url> -" |
1761 | "S(sl) -j CONNECT -H <webserver>" | 1761 | "S(sl) -j CONNECT -H <webserver>" |
1762 | msgstr "" | 1762 | msgstr "" |
1763 | 1763 | ||
1764 | #: plugins/check_http.c:1869 | 1764 | #: plugins/check_http.c:1870 |
1765 | msgid "" | 1765 | msgid "" |
1766 | "a STATE_CRITICAL will be returned. By adding a colon to the method you can " | 1766 | "a STATE_CRITICAL will be returned. By adding a colon to the method you can " |
1767 | "set the method used" | 1767 | "set the method used" |
1768 | msgstr "" | 1768 | msgstr "" |
1769 | 1769 | ||
1770 | #: plugins/check_http.c:1870 | 1770 | #: plugins/check_http.c:1871 |
1771 | msgid "inside the proxied connection: -j CONNECT:POST" | 1771 | msgid "inside the proxied connection: -j CONNECT:POST" |
1772 | msgstr "" | 1772 | msgstr "" |
1773 | 1773 | ||
@@ -4453,7 +4453,7 @@ msgstr "" | |||
4453 | msgid "This plugin will attempt to open an RTSP connection with the host." | 4453 | msgid "This plugin will attempt to open an RTSP connection with the host." |
4454 | msgstr "" | 4454 | msgstr "" |
4455 | 4455 | ||
4456 | #: plugins/check_real.c:439 plugins/check_smtp.c:877 | 4456 | #: plugins/check_real.c:439 plugins/check_smtp.c:878 |
4457 | msgid "Successful connects return STATE_OK, refusals and timeouts return" | 4457 | msgid "Successful connects return STATE_OK, refusals and timeouts return" |
4458 | msgstr "" | 4458 | msgstr "" |
4459 | 4459 | ||
@@ -4519,7 +4519,7 @@ msgstr "" | |||
4519 | msgid "Invalid SMTP response received from host on port %d: %s\n" | 4519 | msgid "Invalid SMTP response received from host on port %d: %s\n" |
4520 | msgstr "" | 4520 | msgstr "" |
4521 | 4521 | ||
4522 | #: plugins/check_smtp.c:322 plugins/check_snmp.c:865 | 4522 | #: plugins/check_smtp.c:322 plugins/check_snmp.c:866 |
4523 | #, c-format | 4523 | #, c-format |
4524 | msgid "Could Not Compile Regular Expression" | 4524 | msgid "Could Not Compile Regular Expression" |
4525 | msgstr "" | 4525 | msgstr "" |
@@ -4543,7 +4543,7 @@ msgid "no authpass specified, " | |||
4543 | msgstr "" | 4543 | msgstr "" |
4544 | 4544 | ||
4545 | #: plugins/check_smtp.c:361 plugins/check_smtp.c:382 plugins/check_smtp.c:402 | 4545 | #: plugins/check_smtp.c:361 plugins/check_smtp.c:382 plugins/check_smtp.c:402 |
4546 | #: plugins/check_smtp.c:727 | 4546 | #: plugins/check_smtp.c:728 |
4547 | #, c-format | 4547 | #, c-format |
4548 | msgid "sent %s\n" | 4548 | msgid "sent %s\n" |
4549 | msgstr "" | 4549 | msgstr "" |
@@ -4553,7 +4553,7 @@ msgid "recv() failed after AUTH LOGIN, " | |||
4553 | msgstr "" | 4553 | msgstr "" |
4554 | 4554 | ||
4555 | #: plugins/check_smtp.c:369 plugins/check_smtp.c:390 plugins/check_smtp.c:410 | 4555 | #: plugins/check_smtp.c:369 plugins/check_smtp.c:390 plugins/check_smtp.c:410 |
4556 | #: plugins/check_smtp.c:738 | 4556 | #: plugins/check_smtp.c:739 |
4557 | #, c-format | 4557 | #, c-format |
4558 | msgid "received %s\n" | 4558 | msgid "received %s\n" |
4559 | msgstr "" | 4559 | msgstr "" |
@@ -4600,91 +4600,91 @@ msgstr "" | |||
4600 | msgid "Warning time must be a positive" | 4600 | msgid "Warning time must be a positive" |
4601 | msgstr "" | 4601 | msgstr "" |
4602 | 4602 | ||
4603 | #: plugins/check_smtp.c:633 plugins/check_smtp.c:644 | 4603 | #: plugins/check_smtp.c:633 plugins/check_smtp.c:645 |
4604 | msgid "SSL support not available - install OpenSSL and recompile" | 4604 | msgid "SSL support not available - install OpenSSL and recompile" |
4605 | msgstr "" | 4605 | msgstr "" |
4606 | 4606 | ||
4607 | #: plugins/check_smtp.c:718 plugins/check_smtp.c:723 | 4607 | #: plugins/check_smtp.c:719 plugins/check_smtp.c:724 |
4608 | #, c-format | 4608 | #, c-format |
4609 | msgid "Connection closed by server before sending QUIT command\n" | 4609 | msgid "Connection closed by server before sending QUIT command\n" |
4610 | msgstr "" | 4610 | msgstr "" |
4611 | 4611 | ||
4612 | #: plugins/check_smtp.c:733 | 4612 | #: plugins/check_smtp.c:734 |
4613 | #, c-format | 4613 | #, c-format |
4614 | msgid "recv() failed after QUIT." | 4614 | msgid "recv() failed after QUIT." |
4615 | msgstr "" | 4615 | msgstr "" |
4616 | 4616 | ||
4617 | #: plugins/check_smtp.c:735 | 4617 | #: plugins/check_smtp.c:736 |
4618 | #, c-format | 4618 | #, c-format |
4619 | msgid "Connection reset by peer." | 4619 | msgid "Connection reset by peer." |
4620 | msgstr "" | 4620 | msgstr "" |
4621 | 4621 | ||
4622 | #: plugins/check_smtp.c:825 | 4622 | #: plugins/check_smtp.c:826 |
4623 | msgid "This plugin will attempt to open an SMTP connection with the host." | 4623 | msgid "This plugin will attempt to open an SMTP connection with the host." |
4624 | msgstr "" | 4624 | msgstr "" |
4625 | 4625 | ||
4626 | #: plugins/check_smtp.c:839 | 4626 | #: plugins/check_smtp.c:840 |
4627 | #, c-format | 4627 | #, c-format |
4628 | msgid " String to expect in first line of server response (default: '%s')\n" | 4628 | msgid " String to expect in first line of server response (default: '%s')\n" |
4629 | msgstr "" | 4629 | msgstr "" |
4630 | 4630 | ||
4631 | #: plugins/check_smtp.c:841 | 4631 | #: plugins/check_smtp.c:842 |
4632 | msgid "SMTP command (may be used repeatedly)" | 4632 | msgid "SMTP command (may be used repeatedly)" |
4633 | msgstr "" | 4633 | msgstr "" |
4634 | 4634 | ||
4635 | #: plugins/check_smtp.c:843 | 4635 | #: plugins/check_smtp.c:844 |
4636 | msgid "Expected response to command (may be used repeatedly)" | 4636 | msgid "Expected response to command (may be used repeatedly)" |
4637 | msgstr "" | 4637 | msgstr "" |
4638 | 4638 | ||
4639 | #: plugins/check_smtp.c:845 | 4639 | #: plugins/check_smtp.c:846 |
4640 | msgid "FROM-address to include in MAIL command, required by Exchange 2000" | 4640 | msgid "FROM-address to include in MAIL command, required by Exchange 2000" |
4641 | msgstr "" | 4641 | msgstr "" |
4642 | 4642 | ||
4643 | #: plugins/check_smtp.c:847 | 4643 | #: plugins/check_smtp.c:848 |
4644 | msgid "FQDN used for HELO" | 4644 | msgid "FQDN used for HELO" |
4645 | msgstr "" | 4645 | msgstr "" |
4646 | 4646 | ||
4647 | #: plugins/check_smtp.c:849 | 4647 | #: plugins/check_smtp.c:850 |
4648 | msgid "Use PROXY protocol prefix for the connection." | 4648 | msgid "Use PROXY protocol prefix for the connection." |
4649 | msgstr "" | 4649 | msgstr "" |
4650 | 4650 | ||
4651 | #: plugins/check_smtp.c:852 plugins/check_tcp.c:689 | 4651 | #: plugins/check_smtp.c:853 plugins/check_tcp.c:689 |
4652 | msgid "Minimum number of days a certificate has to be valid." | 4652 | msgid "Minimum number of days a certificate has to be valid." |
4653 | msgstr "" | 4653 | msgstr "" |
4654 | 4654 | ||
4655 | #: plugins/check_smtp.c:854 | 4655 | #: plugins/check_smtp.c:855 |
4656 | msgid "Use STARTTLS for the connection." | 4656 | msgid "Use STARTTLS for the connection." |
4657 | msgstr "" | 4657 | msgstr "" |
4658 | 4658 | ||
4659 | #: plugins/check_smtp.c:860 | 4659 | #: plugins/check_smtp.c:861 |
4660 | msgid "SMTP AUTH type to check (default none, only LOGIN supported)" | 4660 | msgid "SMTP AUTH type to check (default none, only LOGIN supported)" |
4661 | msgstr "" | 4661 | msgstr "" |
4662 | 4662 | ||
4663 | #: plugins/check_smtp.c:862 | 4663 | #: plugins/check_smtp.c:863 |
4664 | msgid "SMTP AUTH username" | 4664 | msgid "SMTP AUTH username" |
4665 | msgstr "" | 4665 | msgstr "" |
4666 | 4666 | ||
4667 | #: plugins/check_smtp.c:864 | 4667 | #: plugins/check_smtp.c:865 |
4668 | msgid "SMTP AUTH password" | 4668 | msgid "SMTP AUTH password" |
4669 | msgstr "" | 4669 | msgstr "" |
4670 | 4670 | ||
4671 | #: plugins/check_smtp.c:866 | 4671 | #: plugins/check_smtp.c:867 |
4672 | msgid "Send LHLO instead of HELO/EHLO" | 4672 | msgid "Send LHLO instead of HELO/EHLO" |
4673 | msgstr "" | 4673 | msgstr "" |
4674 | 4674 | ||
4675 | #: plugins/check_smtp.c:868 | 4675 | #: plugins/check_smtp.c:869 |
4676 | msgid "Ignore failure when sending QUIT command to server" | 4676 | msgid "Ignore failure when sending QUIT command to server" |
4677 | msgstr "" | 4677 | msgstr "" |
4678 | 4678 | ||
4679 | #: plugins/check_smtp.c:878 | 4679 | #: plugins/check_smtp.c:879 |
4680 | msgid "STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful" | 4680 | msgid "STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful" |
4681 | msgstr "" | 4681 | msgstr "" |
4682 | 4682 | ||
4683 | #: plugins/check_smtp.c:879 | 4683 | #: plugins/check_smtp.c:880 |
4684 | msgid "connects, but incorrect response messages from the host result in" | 4684 | msgid "connects, but incorrect response messages from the host result in" |
4685 | msgstr "" | 4685 | msgstr "" |
4686 | 4686 | ||
4687 | #: plugins/check_smtp.c:880 | 4687 | #: plugins/check_smtp.c:881 |
4688 | msgid "STATE_WARNING return values." | 4688 | msgid "STATE_WARNING return values." |
4689 | msgstr "" | 4689 | msgstr "" |
4690 | 4690 | ||
@@ -4732,305 +4732,305 @@ msgstr "" | |||
4732 | msgid "Exit status must be a positive integer" | 4732 | msgid "Exit status must be a positive integer" |
4733 | msgstr "" | 4733 | msgstr "" |
4734 | 4734 | ||
4735 | #: plugins/check_snmp.c:890 | 4735 | #: plugins/check_snmp.c:891 |
4736 | #, c-format | 4736 | #, c-format |
4737 | msgid "Could not reallocate labels[%d]" | 4737 | msgid "Could not reallocate labels[%d]" |
4738 | msgstr "" | 4738 | msgstr "" |
4739 | 4739 | ||
4740 | #: plugins/check_snmp.c:903 | 4740 | #: plugins/check_snmp.c:904 |
4741 | msgid "Could not reallocate labels\n" | 4741 | msgid "Could not reallocate labels\n" |
4742 | msgstr "" | 4742 | msgstr "" |
4743 | 4743 | ||
4744 | #: plugins/check_snmp.c:919 | 4744 | #: plugins/check_snmp.c:920 |
4745 | #, c-format | 4745 | #, c-format |
4746 | msgid "Could not reallocate units [%d]\n" | 4746 | msgid "Could not reallocate units [%d]\n" |
4747 | msgstr "" | 4747 | msgstr "" |
4748 | 4748 | ||
4749 | #: plugins/check_snmp.c:931 | 4749 | #: plugins/check_snmp.c:932 |
4750 | msgid "Could not realloc() units\n" | 4750 | msgid "Could not realloc() units\n" |
4751 | msgstr "" | 4751 | msgstr "" |
4752 | 4752 | ||
4753 | #: plugins/check_snmp.c:948 | 4753 | #: plugins/check_snmp.c:949 |
4754 | msgid "Rate multiplier must be a positive integer" | 4754 | msgid "Rate multiplier must be a positive integer" |
4755 | msgstr "" | 4755 | msgstr "" |
4756 | 4756 | ||
4757 | #: plugins/check_snmp.c:1023 | 4757 | #: plugins/check_snmp.c:1024 |
4758 | msgid "No host specified\n" | 4758 | msgid "No host specified\n" |
4759 | msgstr "" | 4759 | msgstr "" |
4760 | 4760 | ||
4761 | #: plugins/check_snmp.c:1027 | 4761 | #: plugins/check_snmp.c:1028 |
4762 | msgid "No OIDs specified\n" | 4762 | msgid "No OIDs specified\n" |
4763 | msgstr "" | 4763 | msgstr "" |
4764 | 4764 | ||
4765 | #: plugins/check_snmp.c:1050 plugins/check_snmp.c:1068 | 4765 | #: plugins/check_snmp.c:1051 plugins/check_snmp.c:1069 |
4766 | #: plugins/check_snmp.c:1086 | 4766 | #: plugins/check_snmp.c:1087 |
4767 | #, c-format | 4767 | #, c-format |
4768 | msgid "Required parameter: %s\n" | 4768 | msgid "Required parameter: %s\n" |
4769 | msgstr "" | 4769 | msgstr "" |
4770 | 4770 | ||
4771 | #: plugins/check_snmp.c:1061 | 4771 | #: plugins/check_snmp.c:1062 |
4772 | msgid "Invalid seclevel" | 4772 | msgid "Invalid seclevel" |
4773 | msgstr "" | 4773 | msgstr "" |
4774 | 4774 | ||
4775 | #: plugins/check_snmp.c:1107 | 4775 | #: plugins/check_snmp.c:1108 |
4776 | msgid "Invalid SNMP version" | 4776 | msgid "Invalid SNMP version" |
4777 | msgstr "" | 4777 | msgstr "" |
4778 | 4778 | ||
4779 | #: plugins/check_snmp.c:1124 | 4779 | #: plugins/check_snmp.c:1125 |
4780 | msgid "Unbalanced quotes\n" | 4780 | msgid "Unbalanced quotes\n" |
4781 | msgstr "" | 4781 | msgstr "" |
4782 | 4782 | ||
4783 | #: plugins/check_snmp.c:1182 | 4783 | #: plugins/check_snmp.c:1183 |
4784 | #, c-format | 4784 | #, c-format |
4785 | msgid "multiplier set (%.1f), but input is not a number: %s" | 4785 | msgid "multiplier set (%.1f), but input is not a number: %s" |
4786 | msgstr "" | 4786 | msgstr "" |
4787 | 4787 | ||
4788 | #: plugins/check_snmp.c:1211 | 4788 | #: plugins/check_snmp.c:1212 |
4789 | msgid "Check status of remote machines and obtain system information via SNMP" | 4789 | msgid "Check status of remote machines and obtain system information via SNMP" |
4790 | msgstr "" | 4790 | msgstr "" |
4791 | 4791 | ||
4792 | #: plugins/check_snmp.c:1225 | 4792 | #: plugins/check_snmp.c:1226 |
4793 | msgid "Use SNMP GETNEXT instead of SNMP GET" | 4793 | msgid "Use SNMP GETNEXT instead of SNMP GET" |
4794 | msgstr "" | 4794 | msgstr "" |
4795 | 4795 | ||
4796 | #: plugins/check_snmp.c:1227 | 4796 | #: plugins/check_snmp.c:1228 |
4797 | msgid "SNMP protocol version" | 4797 | msgid "SNMP protocol version" |
4798 | msgstr "" | 4798 | msgstr "" |
4799 | 4799 | ||
4800 | #: plugins/check_snmp.c:1229 | 4800 | #: plugins/check_snmp.c:1230 |
4801 | msgid "SNMPv3 context" | 4801 | msgid "SNMPv3 context" |
4802 | msgstr "" | 4802 | msgstr "" |
4803 | 4803 | ||
4804 | #: plugins/check_snmp.c:1231 | 4804 | #: plugins/check_snmp.c:1232 |
4805 | msgid "SNMPv3 securityLevel" | 4805 | msgid "SNMPv3 securityLevel" |
4806 | msgstr "" | 4806 | msgstr "" |
4807 | 4807 | ||
4808 | #: plugins/check_snmp.c:1233 | 4808 | #: plugins/check_snmp.c:1234 |
4809 | msgid "SNMPv3 auth proto" | 4809 | msgid "SNMPv3 auth proto" |
4810 | msgstr "" | 4810 | msgstr "" |
4811 | 4811 | ||
4812 | #: plugins/check_snmp.c:1235 | 4812 | #: plugins/check_snmp.c:1236 |
4813 | msgid "SNMPv3 priv proto (default DES)" | 4813 | msgid "SNMPv3 priv proto (default DES)" |
4814 | msgstr "" | 4814 | msgstr "" |
4815 | 4815 | ||
4816 | #: plugins/check_snmp.c:1239 | 4816 | #: plugins/check_snmp.c:1240 |
4817 | msgid "Optional community string for SNMP communication" | 4817 | msgid "Optional community string for SNMP communication" |
4818 | msgstr "" | 4818 | msgstr "" |
4819 | 4819 | ||
4820 | #: plugins/check_snmp.c:1240 | 4820 | #: plugins/check_snmp.c:1241 |
4821 | msgid "default is" | 4821 | msgid "default is" |
4822 | msgstr "" | 4822 | msgstr "" |
4823 | 4823 | ||
4824 | #: plugins/check_snmp.c:1242 | 4824 | #: plugins/check_snmp.c:1243 |
4825 | msgid "SNMPv3 username" | 4825 | msgid "SNMPv3 username" |
4826 | msgstr "" | 4826 | msgstr "" |
4827 | 4827 | ||
4828 | #: plugins/check_snmp.c:1244 | 4828 | #: plugins/check_snmp.c:1245 |
4829 | msgid "SNMPv3 authentication password" | 4829 | msgid "SNMPv3 authentication password" |
4830 | msgstr "" | 4830 | msgstr "" |
4831 | 4831 | ||
4832 | #: plugins/check_snmp.c:1246 | 4832 | #: plugins/check_snmp.c:1247 |
4833 | msgid "SNMPv3 privacy password" | 4833 | msgid "SNMPv3 privacy password" |
4834 | msgstr "" | 4834 | msgstr "" |
4835 | 4835 | ||
4836 | #: plugins/check_snmp.c:1250 | 4836 | #: plugins/check_snmp.c:1251 |
4837 | msgid "Object identifier(s) or SNMP variables whose value you wish to query" | 4837 | msgid "Object identifier(s) or SNMP variables whose value you wish to query" |
4838 | msgstr "" | 4838 | msgstr "" |
4839 | 4839 | ||
4840 | #: plugins/check_snmp.c:1252 | 4840 | #: plugins/check_snmp.c:1253 |
4841 | msgid "" | 4841 | msgid "" |
4842 | "List of MIBS to be loaded (default = none if using numeric OIDs or 'ALL'" | 4842 | "List of MIBS to be loaded (default = none if using numeric OIDs or 'ALL'" |
4843 | msgstr "" | 4843 | msgstr "" |
4844 | 4844 | ||
4845 | #: plugins/check_snmp.c:1253 | 4845 | #: plugins/check_snmp.c:1254 |
4846 | msgid "for symbolic OIDs.)" | 4846 | msgid "for symbolic OIDs.)" |
4847 | msgstr "" | 4847 | msgstr "" |
4848 | 4848 | ||
4849 | #: plugins/check_snmp.c:1255 | 4849 | #: plugins/check_snmp.c:1256 |
4850 | msgid "Delimiter to use when parsing returned data. Default is" | 4850 | msgid "Delimiter to use when parsing returned data. Default is" |
4851 | msgstr "" | 4851 | msgstr "" |
4852 | 4852 | ||
4853 | #: plugins/check_snmp.c:1256 | 4853 | #: plugins/check_snmp.c:1257 |
4854 | msgid "Any data on the right hand side of the delimiter is considered" | 4854 | msgid "Any data on the right hand side of the delimiter is considered" |
4855 | msgstr "" | 4855 | msgstr "" |
4856 | 4856 | ||
4857 | #: plugins/check_snmp.c:1257 | 4857 | #: plugins/check_snmp.c:1258 |
4858 | msgid "to be the data that should be used in the evaluation." | 4858 | msgid "to be the data that should be used in the evaluation." |
4859 | msgstr "" | 4859 | msgstr "" |
4860 | 4860 | ||
4861 | #: plugins/check_snmp.c:1259 | 4861 | #: plugins/check_snmp.c:1260 |
4862 | msgid "If the check returns a 0 length string or NULL value" | 4862 | msgid "If the check returns a 0 length string or NULL value" |
4863 | msgstr "" | 4863 | msgstr "" |
4864 | 4864 | ||
4865 | #: plugins/check_snmp.c:1260 | 4865 | #: plugins/check_snmp.c:1261 |
4866 | msgid "This option allows you to choose what status you want it to exit" | 4866 | msgid "This option allows you to choose what status you want it to exit" |
4867 | msgstr "" | 4867 | msgstr "" |
4868 | 4868 | ||
4869 | #: plugins/check_snmp.c:1261 | 4869 | #: plugins/check_snmp.c:1262 |
4870 | msgid "Excluding this option renders the default exit of 3(STATE_UNKNOWN)" | 4870 | msgid "Excluding this option renders the default exit of 3(STATE_UNKNOWN)" |
4871 | msgstr "" | 4871 | msgstr "" |
4872 | 4872 | ||
4873 | #: plugins/check_snmp.c:1262 | 4873 | #: plugins/check_snmp.c:1263 |
4874 | msgid "0 = OK" | 4874 | msgid "0 = OK" |
4875 | msgstr "" | 4875 | msgstr "" |
4876 | 4876 | ||
4877 | #: plugins/check_snmp.c:1263 | 4877 | #: plugins/check_snmp.c:1264 |
4878 | msgid "1 = WARNING" | 4878 | msgid "1 = WARNING" |
4879 | msgstr "" | 4879 | msgstr "" |
4880 | 4880 | ||
4881 | #: plugins/check_snmp.c:1264 | 4881 | #: plugins/check_snmp.c:1265 |
4882 | msgid "2 = CRITICAL" | 4882 | msgid "2 = CRITICAL" |
4883 | msgstr "" | 4883 | msgstr "" |
4884 | 4884 | ||
4885 | #: plugins/check_snmp.c:1265 | 4885 | #: plugins/check_snmp.c:1266 |
4886 | msgid "3 = UNKNOWN" | 4886 | msgid "3 = UNKNOWN" |
4887 | msgstr "" | 4887 | msgstr "" |
4888 | 4888 | ||
4889 | #: plugins/check_snmp.c:1269 | 4889 | #: plugins/check_snmp.c:1270 |
4890 | msgid "Warning threshold range(s)" | 4890 | msgid "Warning threshold range(s)" |
4891 | msgstr "" | 4891 | msgstr "" |
4892 | 4892 | ||
4893 | #: plugins/check_snmp.c:1271 | 4893 | #: plugins/check_snmp.c:1272 |
4894 | msgid "Critical threshold range(s)" | 4894 | msgid "Critical threshold range(s)" |
4895 | msgstr "" | 4895 | msgstr "" |
4896 | 4896 | ||
4897 | #: plugins/check_snmp.c:1273 | 4897 | #: plugins/check_snmp.c:1274 |
4898 | msgid "Enable rate calculation. See 'Rate Calculation' below" | 4898 | msgid "Enable rate calculation. See 'Rate Calculation' below" |
4899 | msgstr "" | 4899 | msgstr "" |
4900 | 4900 | ||
4901 | #: plugins/check_snmp.c:1275 | 4901 | #: plugins/check_snmp.c:1276 |
4902 | msgid "" | 4902 | msgid "" |
4903 | "Converts rate per second. For example, set to 60 to convert to per minute" | 4903 | "Converts rate per second. For example, set to 60 to convert to per minute" |
4904 | msgstr "" | 4904 | msgstr "" |
4905 | 4905 | ||
4906 | #: plugins/check_snmp.c:1277 | 4906 | #: plugins/check_snmp.c:1278 |
4907 | msgid "Add/subtract the specified OFFSET to numeric sensor data" | 4907 | msgid "Add/subtract the specified OFFSET to numeric sensor data" |
4908 | msgstr "" | 4908 | msgstr "" |
4909 | 4909 | ||
4910 | #: plugins/check_snmp.c:1281 | 4910 | #: plugins/check_snmp.c:1282 |
4911 | msgid "Return OK state (for that OID) if STRING is an exact match" | 4911 | msgid "Return OK state (for that OID) if STRING is an exact match" |
4912 | msgstr "" | 4912 | msgstr "" |
4913 | 4913 | ||
4914 | #: plugins/check_snmp.c:1283 | 4914 | #: plugins/check_snmp.c:1284 |
4915 | msgid "" | 4915 | msgid "" |
4916 | "Return OK state (for that OID) if extended regular expression REGEX matches" | 4916 | "Return OK state (for that OID) if extended regular expression REGEX matches" |
4917 | msgstr "" | 4917 | msgstr "" |
4918 | 4918 | ||
4919 | #: plugins/check_snmp.c:1285 | 4919 | #: plugins/check_snmp.c:1286 |
4920 | msgid "" | 4920 | msgid "" |
4921 | "Return OK state (for that OID) if case-insensitive extended REGEX matches" | 4921 | "Return OK state (for that OID) if case-insensitive extended REGEX matches" |
4922 | msgstr "" | 4922 | msgstr "" |
4923 | 4923 | ||
4924 | #: plugins/check_snmp.c:1287 | 4924 | #: plugins/check_snmp.c:1288 |
4925 | msgid "Invert search result (CRITICAL if found)" | 4925 | msgid "Invert search result (CRITICAL if found)" |
4926 | msgstr "" | 4926 | msgstr "" |
4927 | 4927 | ||
4928 | #: plugins/check_snmp.c:1291 | 4928 | #: plugins/check_snmp.c:1292 |
4929 | msgid "Prefix label for output from plugin" | 4929 | msgid "Prefix label for output from plugin" |
4930 | msgstr "" | 4930 | msgstr "" |
4931 | 4931 | ||
4932 | #: plugins/check_snmp.c:1293 | 4932 | #: plugins/check_snmp.c:1294 |
4933 | msgid "Units label(s) for output data (e.g., 'sec.')." | 4933 | msgid "Units label(s) for output data (e.g., 'sec.')." |
4934 | msgstr "" | 4934 | msgstr "" |
4935 | 4935 | ||
4936 | #: plugins/check_snmp.c:1295 | 4936 | #: plugins/check_snmp.c:1296 |
4937 | msgid "Separates output on multiple OID requests" | 4937 | msgid "Separates output on multiple OID requests" |
4938 | msgstr "" | 4938 | msgstr "" |
4939 | 4939 | ||
4940 | #: plugins/check_snmp.c:1297 | 4940 | #: plugins/check_snmp.c:1298 |
4941 | msgid "Multiplies current value, 0 < n < 1 works as divider, defaults to 1" | 4941 | msgid "Multiplies current value, 0 < n < 1 works as divider, defaults to 1" |
4942 | msgstr "" | 4942 | msgstr "" |
4943 | 4943 | ||
4944 | #: plugins/check_snmp.c:1299 | 4944 | #: plugins/check_snmp.c:1300 |
4945 | msgid "C-style format string for float values (see option -M)" | 4945 | msgid "C-style format string for float values (see option -M)" |
4946 | msgstr "" | 4946 | msgstr "" |
4947 | 4947 | ||
4948 | #: plugins/check_snmp.c:1302 | 4948 | #: plugins/check_snmp.c:1303 |
4949 | msgid "" | 4949 | msgid "" |
4950 | "NOTE the final timeout value is calculated using this formula: " | 4950 | "NOTE the final timeout value is calculated using this formula: " |
4951 | "timeout_interval * retries + 5" | 4951 | "timeout_interval * retries + 5" |
4952 | msgstr "" | 4952 | msgstr "" |
4953 | 4953 | ||
4954 | #: plugins/check_snmp.c:1304 | 4954 | #: plugins/check_snmp.c:1305 |
4955 | msgid "Number of retries to be used in the requests, default: " | 4955 | msgid "Number of retries to be used in the requests, default: " |
4956 | msgstr "" | 4956 | msgstr "" |
4957 | 4957 | ||
4958 | #: plugins/check_snmp.c:1307 | 4958 | #: plugins/check_snmp.c:1308 |
4959 | msgid "Label performance data with OIDs instead of --label's" | 4959 | msgid "Label performance data with OIDs instead of --label's" |
4960 | msgstr "" | 4960 | msgstr "" |
4961 | 4961 | ||
4962 | #: plugins/check_snmp.c:1312 | 4962 | #: plugins/check_snmp.c:1313 |
4963 | msgid "" | 4963 | msgid "" |
4964 | "This plugin uses the 'snmpget' command included with the NET-SNMP package." | 4964 | "This plugin uses the 'snmpget' command included with the NET-SNMP package." |
4965 | msgstr "" | 4965 | msgstr "" |
4966 | 4966 | ||
4967 | #: plugins/check_snmp.c:1313 | 4967 | #: plugins/check_snmp.c:1314 |
4968 | msgid "" | 4968 | msgid "" |
4969 | "if you don't have the package installed, you will need to download it from" | 4969 | "if you don't have the package installed, you will need to download it from" |
4970 | msgstr "" | 4970 | msgstr "" |
4971 | 4971 | ||
4972 | #: plugins/check_snmp.c:1314 | 4972 | #: plugins/check_snmp.c:1315 |
4973 | msgid "http://net-snmp.sourceforge.net before you can use this plugin." | 4973 | msgid "http://net-snmp.sourceforge.net before you can use this plugin." |
4974 | msgstr "" | 4974 | msgstr "" |
4975 | 4975 | ||
4976 | #: plugins/check_snmp.c:1318 | 4976 | #: plugins/check_snmp.c:1319 |
4977 | msgid "" | 4977 | msgid "" |
4978 | "- Multiple OIDs (and labels) may be indicated by a comma or space-delimited " | 4978 | "- Multiple OIDs (and labels) may be indicated by a comma or space-delimited " |
4979 | msgstr "" | 4979 | msgstr "" |
4980 | 4980 | ||
4981 | #: plugins/check_snmp.c:1319 | 4981 | #: plugins/check_snmp.c:1320 |
4982 | msgid "list (lists with internal spaces must be quoted)." | 4982 | msgid "list (lists with internal spaces must be quoted)." |
4983 | msgstr "" | 4983 | msgstr "" |
4984 | 4984 | ||
4985 | #: plugins/check_snmp.c:1323 | 4985 | #: plugins/check_snmp.c:1324 |
4986 | msgid "" | 4986 | msgid "" |
4987 | "- When checking multiple OIDs, separate ranges by commas like '-w " | 4987 | "- When checking multiple OIDs, separate ranges by commas like '-w " |
4988 | "1:10,1:,:20'" | 4988 | "1:10,1:,:20'" |
4989 | msgstr "" | 4989 | msgstr "" |
4990 | 4990 | ||
4991 | #: plugins/check_snmp.c:1324 | 4991 | #: plugins/check_snmp.c:1325 |
4992 | msgid "- Note that only one string and one regex may be checked at present" | 4992 | msgid "- Note that only one string and one regex may be checked at present" |
4993 | msgstr "" | 4993 | msgstr "" |
4994 | 4994 | ||
4995 | #: plugins/check_snmp.c:1325 | 4995 | #: plugins/check_snmp.c:1326 |
4996 | msgid "" | 4996 | msgid "" |
4997 | "- All evaluation methods other than PR, STR, and SUBSTR expect that the value" | 4997 | "- All evaluation methods other than PR, STR, and SUBSTR expect that the value" |
4998 | msgstr "" | 4998 | msgstr "" |
4999 | 4999 | ||
5000 | #: plugins/check_snmp.c:1326 | 5000 | #: plugins/check_snmp.c:1327 |
5001 | msgid "returned from the SNMP query is an unsigned integer." | 5001 | msgid "returned from the SNMP query is an unsigned integer." |
5002 | msgstr "" | 5002 | msgstr "" |
5003 | 5003 | ||
5004 | #: plugins/check_snmp.c:1329 | 5004 | #: plugins/check_snmp.c:1330 |
5005 | msgid "Rate Calculation:" | 5005 | msgid "Rate Calculation:" |
5006 | msgstr "" | 5006 | msgstr "" |
5007 | 5007 | ||
5008 | #: plugins/check_snmp.c:1330 | 5008 | #: plugins/check_snmp.c:1331 |
5009 | msgid "In many places, SNMP returns counters that are only meaningful when" | 5009 | msgid "In many places, SNMP returns counters that are only meaningful when" |
5010 | msgstr "" | 5010 | msgstr "" |
5011 | 5011 | ||
5012 | #: plugins/check_snmp.c:1331 | 5012 | #: plugins/check_snmp.c:1332 |
5013 | msgid "calculating the counter difference since the last check. check_snmp" | 5013 | msgid "calculating the counter difference since the last check. check_snmp" |
5014 | msgstr "" | 5014 | msgstr "" |
5015 | 5015 | ||
5016 | #: plugins/check_snmp.c:1332 | 5016 | #: plugins/check_snmp.c:1333 |
5017 | msgid "saves the last state information in a file so that the rate per second" | 5017 | msgid "saves the last state information in a file so that the rate per second" |
5018 | msgstr "" | 5018 | msgstr "" |
5019 | 5019 | ||
5020 | #: plugins/check_snmp.c:1333 | 5020 | #: plugins/check_snmp.c:1334 |
5021 | msgid "can be calculated. Use the --rate option to save state information." | 5021 | msgid "can be calculated. Use the --rate option to save state information." |
5022 | msgstr "" | 5022 | msgstr "" |
5023 | 5023 | ||
5024 | #: plugins/check_snmp.c:1334 | 5024 | #: plugins/check_snmp.c:1335 |
5025 | msgid "" | 5025 | msgid "" |
5026 | "On the first run, there will be no prior state - this will return with OK." | 5026 | "On the first run, there will be no prior state - this will return with OK." |
5027 | msgstr "" | 5027 | msgstr "" |
5028 | 5028 | ||
5029 | #: plugins/check_snmp.c:1335 | 5029 | #: plugins/check_snmp.c:1336 |
5030 | msgid "The state is uniquely determined by the arguments to the plugin, so" | 5030 | msgid "The state is uniquely determined by the arguments to the plugin, so" |
5031 | msgstr "" | 5031 | msgstr "" |
5032 | 5032 | ||
5033 | #: plugins/check_snmp.c:1336 | 5033 | #: plugins/check_snmp.c:1337 |
5034 | msgid "changing the arguments will create a new state file." | 5034 | msgid "changing the arguments will create a new state file." |
5035 | msgstr "" | 5035 | msgstr "" |
5036 | 5036 | ||
@@ -6348,85 +6348,85 @@ msgstr "" | |||
6348 | msgid "Unicast testing: mimic a DHCP relay, requires -s" | 6348 | msgid "Unicast testing: mimic a DHCP relay, requires -s" |
6349 | msgstr "" | 6349 | msgstr "" |
6350 | 6350 | ||
6351 | #: plugins-root/check_icmp.c:1567 | 6351 | #: plugins-root/check_icmp.c:1572 |
6352 | msgid "specify a target" | 6352 | msgid "specify a target" |
6353 | msgstr "" | 6353 | msgstr "" |
6354 | 6354 | ||
6355 | #: plugins-root/check_icmp.c:1569 | 6355 | #: plugins-root/check_icmp.c:1574 |
6356 | msgid "Use IPv4 (default) or IPv6 to communicate with the targets" | 6356 | msgid "Use IPv4 (default) or IPv6 to communicate with the targets" |
6357 | msgstr "" | 6357 | msgstr "" |
6358 | 6358 | ||
6359 | #: plugins-root/check_icmp.c:1571 | 6359 | #: plugins-root/check_icmp.c:1576 |
6360 | msgid "warning threshold (currently " | 6360 | msgid "warning threshold (currently " |
6361 | msgstr "" | 6361 | msgstr "" |
6362 | 6362 | ||
6363 | #: plugins-root/check_icmp.c:1574 | 6363 | #: plugins-root/check_icmp.c:1579 |
6364 | msgid "critical threshold (currently " | 6364 | msgid "critical threshold (currently " |
6365 | msgstr "" | 6365 | msgstr "" |
6366 | 6366 | ||
6367 | #: plugins-root/check_icmp.c:1577 | 6367 | #: plugins-root/check_icmp.c:1582 |
6368 | msgid "specify a source IP address or device name" | 6368 | msgid "specify a source IP address or device name" |
6369 | msgstr "" | 6369 | msgstr "" |
6370 | 6370 | ||
6371 | #: plugins-root/check_icmp.c:1579 | 6371 | #: plugins-root/check_icmp.c:1584 |
6372 | msgid "number of packets to send (currently " | 6372 | msgid "number of packets to send (currently " |
6373 | msgstr "" | 6373 | msgstr "" |
6374 | 6374 | ||
6375 | #: plugins-root/check_icmp.c:1582 | 6375 | #: plugins-root/check_icmp.c:1587 |
6376 | msgid "max packet interval (currently " | 6376 | msgid "max packet interval (currently " |
6377 | msgstr "" | 6377 | msgstr "" |
6378 | 6378 | ||
6379 | #: plugins-root/check_icmp.c:1585 | 6379 | #: plugins-root/check_icmp.c:1590 |
6380 | msgid "max target interval (currently " | 6380 | msgid "max target interval (currently " |
6381 | msgstr "" | 6381 | msgstr "" |
6382 | 6382 | ||
6383 | #: plugins-root/check_icmp.c:1588 | 6383 | #: plugins-root/check_icmp.c:1593 |
6384 | msgid "number of alive hosts required for success" | 6384 | msgid "number of alive hosts required for success" |
6385 | msgstr "" | 6385 | msgstr "" |
6386 | 6386 | ||
6387 | #: plugins-root/check_icmp.c:1591 | 6387 | #: plugins-root/check_icmp.c:1596 |
6388 | msgid "TTL on outgoing packets (currently " | 6388 | msgid "TTL on outgoing packets (currently " |
6389 | msgstr "" | 6389 | msgstr "" |
6390 | 6390 | ||
6391 | #: plugins-root/check_icmp.c:1594 | 6391 | #: plugins-root/check_icmp.c:1599 |
6392 | msgid "timeout value (seconds, currently " | 6392 | msgid "timeout value (seconds, currently " |
6393 | msgstr "" | 6393 | msgstr "" |
6394 | 6394 | ||
6395 | #: plugins-root/check_icmp.c:1597 | 6395 | #: plugins-root/check_icmp.c:1602 |
6396 | msgid "Number of icmp data bytes to send" | 6396 | msgid "Number of icmp data bytes to send" |
6397 | msgstr "" | 6397 | msgstr "" |
6398 | 6398 | ||
6399 | #: plugins-root/check_icmp.c:1598 | 6399 | #: plugins-root/check_icmp.c:1603 |
6400 | msgid "Packet size will be data bytes + icmp header (currently" | 6400 | msgid "Packet size will be data bytes + icmp header (currently" |
6401 | msgstr "" | 6401 | msgstr "" |
6402 | 6402 | ||
6403 | #: plugins-root/check_icmp.c:1600 | 6403 | #: plugins-root/check_icmp.c:1605 |
6404 | msgid "verbose" | 6404 | msgid "verbose" |
6405 | msgstr "" | 6405 | msgstr "" |
6406 | 6406 | ||
6407 | #: plugins-root/check_icmp.c:1604 | 6407 | #: plugins-root/check_icmp.c:1609 |
6408 | msgid "The -H switch is optional. Naming a host (or several) to check is not." | 6408 | msgid "The -H switch is optional. Naming a host (or several) to check is not." |
6409 | msgstr "" | 6409 | msgstr "" |
6410 | 6410 | ||
6411 | #: plugins-root/check_icmp.c:1606 | 6411 | #: plugins-root/check_icmp.c:1611 |
6412 | msgid "" | 6412 | msgid "" |
6413 | "Threshold format for -w and -c is 200.25,60% for 200.25 msec RTA and 60%" | 6413 | "Threshold format for -w and -c is 200.25,60% for 200.25 msec RTA and 60%" |
6414 | msgstr "" | 6414 | msgstr "" |
6415 | 6415 | ||
6416 | #: plugins-root/check_icmp.c:1607 | 6416 | #: plugins-root/check_icmp.c:1612 |
6417 | msgid "packet loss. The default values should work well for most users." | 6417 | msgid "packet loss. The default values should work well for most users." |
6418 | msgstr "" | 6418 | msgstr "" |
6419 | 6419 | ||
6420 | #: plugins-root/check_icmp.c:1608 | 6420 | #: plugins-root/check_icmp.c:1613 |
6421 | msgid "" | 6421 | msgid "" |
6422 | "You can specify different RTA factors using the standardized abbreviations" | 6422 | "You can specify different RTA factors using the standardized abbreviations" |
6423 | msgstr "" | 6423 | msgstr "" |
6424 | 6424 | ||
6425 | #: plugins-root/check_icmp.c:1609 | 6425 | #: plugins-root/check_icmp.c:1614 |
6426 | msgid "" | 6426 | msgid "" |
6427 | "us (microseconds), ms (milliseconds, default) or just plain s for seconds." | 6427 | "us (microseconds), ms (milliseconds, default) or just plain s for seconds." |
6428 | msgstr "" | 6428 | msgstr "" |
6429 | 6429 | ||
6430 | #: plugins-root/check_icmp.c:1615 | 6430 | #: plugins-root/check_icmp.c:1620 |
6431 | msgid "The -v switch can be specified several times for increased verbosity." | 6431 | msgid "The -v switch can be specified several times for increased verbosity." |
6432 | msgstr "" | 6432 | msgstr "" |