diff options
| author | Jan Wagner <waja@cyconet.org> | 2016-11-30 17:38:36 +0100 |
|---|---|---|
| committer | Jan Wagner <waja@cyconet.org> | 2017-01-10 21:03:20 +0100 |
| commit | b7ba1178da7cd12ab983bd3b8047368c5a119851 (patch) | |
| tree | aeab25f5959e153f5ffc7b6d12e6ac30b31b2a01 | |
| parent | 2e905c39b8cd030fe05216219539ca99bec27f1d (diff) | |
| download | monitoring-plugins-b7ba1178da7cd12ab983bd3b8047368c5a119851.tar.gz | |
Spelling fixes suggested by lintian
| -rw-r--r-- | plugins-root/check_icmp.c | 2 | ||||
| -rw-r--r-- | plugins/check_fping.c | 2 | ||||
| -rw-r--r-- | plugins/check_http.c | 2 | ||||
| -rw-r--r-- | plugins/check_ide_smart.c | 2 | ||||
| -rw-r--r-- | plugins/check_ldap.c | 2 | ||||
| -rw-r--r-- | plugins/check_ntp.c | 4 | ||||
| -rw-r--r-- | plugins/check_ntp_peer.c | 2 | ||||
| -rw-r--r-- | plugins/check_pgsql.c | 2 | ||||
| -rw-r--r-- | plugins/check_radius.c | 2 | ||||
| -rw-r--r-- | plugins/check_real.c | 2 | ||||
| -rw-r--r-- | plugins/check_smtp.c | 2 | ||||
| -rw-r--r-- | po/de.po | 22 | ||||
| -rw-r--r-- | po/fr.po | 12 | ||||
| -rw-r--r-- | po/monitoring-plugins.pot | 12 |
14 files changed, 35 insertions, 35 deletions
diff --git a/plugins-root/check_icmp.c b/plugins-root/check_icmp.c index 9ed12ba1..b722f80a 100644 --- a/plugins-root/check_icmp.c +++ b/plugins-root/check_icmp.c | |||
| @@ -608,7 +608,7 @@ main(int argc, char **argv) | |||
| 608 | if(max_completion_time > (u_int)timeout * 1000000) { | 608 | if(max_completion_time > (u_int)timeout * 1000000) { |
| 609 | printf("max_completion_time: %llu timeout: %u\n", | 609 | printf("max_completion_time: %llu timeout: %u\n", |
| 610 | max_completion_time, timeout); | 610 | max_completion_time, timeout); |
| 611 | printf("Timout must be at lest %llu\n", | 611 | printf("Timeout must be at lest %llu\n", |
| 612 | max_completion_time / 1000000 + 1); | 612 | max_completion_time / 1000000 + 1); |
| 613 | } | 613 | } |
| 614 | } | 614 | } |
diff --git a/plugins/check_fping.c b/plugins/check_fping.c index da1ce1a6..521d0fef 100644 --- a/plugins/check_fping.c +++ b/plugins/check_fping.c | |||
| @@ -184,7 +184,7 @@ textscan (char *buf) | |||
| 184 | int status = STATE_UNKNOWN; | 184 | int status = STATE_UNKNOWN; |
| 185 | 185 | ||
| 186 | if (strstr (buf, "not found")) { | 186 | if (strstr (buf, "not found")) { |
| 187 | die (STATE_CRITICAL, _("FPING UNKNOW - %s not found\n"), server_name); | 187 | die (STATE_CRITICAL, _("FPING UNKNOWN - %s not found\n"), server_name); |
| 188 | 188 | ||
| 189 | } | 189 | } |
| 190 | else if (strstr (buf, "is unreachable") || strstr (buf, "Unreachable")) { | 190 | else if (strstr (buf, "is unreachable") || strstr (buf, "Unreachable")) { |
diff --git a/plugins/check_http.c b/plugins/check_http.c index e5ef7cc4..86a36c20 100644 --- a/plugins/check_http.c +++ b/plugins/check_http.c | |||
| @@ -1629,7 +1629,7 @@ print_help (void) | |||
| 1629 | printf ("%s\n", _("Notes:")); | 1629 | printf ("%s\n", _("Notes:")); |
| 1630 | printf (" %s\n", _("This plugin will attempt to open an HTTP connection with the host.")); | 1630 | printf (" %s\n", _("This plugin will attempt to open an HTTP connection with the host.")); |
| 1631 | printf (" %s\n", _("Successful connects return STATE_OK, refusals and timeouts return STATE_CRITICAL")); | 1631 | printf (" %s\n", _("Successful connects return STATE_OK, refusals and timeouts return STATE_CRITICAL")); |
| 1632 | printf (" %s\n", _("other errors return STATE_UNKNOWN. Successful connects, but incorrect reponse")); | 1632 | printf (" %s\n", _("other errors return STATE_UNKNOWN. Successful connects, but incorrect response")); |
| 1633 | printf (" %s\n", _("messages from the host result in STATE_WARNING return values. If you are")); | 1633 | printf (" %s\n", _("messages from the host result in STATE_WARNING return values. If you are")); |
| 1634 | printf (" %s\n", _("checking a virtual server that uses 'host headers' you must supply the FQDN")); | 1634 | printf (" %s\n", _("checking a virtual server that uses 'host headers' you must supply the FQDN")); |
| 1635 | printf (" %s\n", _("(fully qualified domain name) as the [host_name] argument.")); | 1635 | printf (" %s\n", _("(fully qualified domain name) as the [host_name] argument.")); |
diff --git a/plugins/check_ide_smart.c b/plugins/check_ide_smart.c index 46621318..0160d98b 100644 --- a/plugins/check_ide_smart.c +++ b/plugins/check_ide_smart.c | |||
| @@ -283,7 +283,7 @@ get_offline_text (int status) | |||
| 283 | return offline_status_text[i].text; | 283 | return offline_status_text[i].text; |
| 284 | } | 284 | } |
| 285 | } | 285 | } |
| 286 | return "UNKNOW"; | 286 | return "UNKNOWN"; |
| 287 | } | 287 | } |
| 288 | 288 | ||
| 289 | 289 | ||
diff --git a/plugins/check_ldap.c b/plugins/check_ldap.c index 66be4b46..bc7bd44c 100644 --- a/plugins/check_ldap.c +++ b/plugins/check_ldap.c | |||
| @@ -237,7 +237,7 @@ main (int argc, char *argv[]) | |||
| 237 | if(entries_thresholds != NULL) { | 237 | if(entries_thresholds != NULL) { |
| 238 | if (verbose) { | 238 | if (verbose) { |
| 239 | printf ("entries found: %d\n", num_entries); | 239 | printf ("entries found: %d\n", num_entries); |
| 240 | print_thresholds("entry threasholds", entries_thresholds); | 240 | print_thresholds("entry thresholds", entries_thresholds); |
| 241 | } | 241 | } |
| 242 | status_entries = get_status(num_entries, entries_thresholds); | 242 | status_entries = get_status(num_entries, entries_thresholds); |
| 243 | if (status_entries == STATE_CRITICAL) { | 243 | if (status_entries == STATE_CRITICAL) { |
diff --git a/plugins/check_ntp.c b/plugins/check_ntp.c index 5ac6c65b..914b40ce 100644 --- a/plugins/check_ntp.c +++ b/plugins/check_ntp.c | |||
| @@ -548,7 +548,7 @@ double jitter_request(const char *host, int *status){ | |||
| 548 | DBG(print_ntp_control_message(&req)); | 548 | DBG(print_ntp_control_message(&req)); |
| 549 | /* Attempt to read the largest size packet possible */ | 549 | /* Attempt to read the largest size packet possible */ |
| 550 | req.count=htons(MAX_CM_SIZE); | 550 | req.count=htons(MAX_CM_SIZE); |
| 551 | DBG(printf("recieving READSTAT response")) | 551 | DBG(printf("receiving READSTAT response")) |
| 552 | read(conn, &req, SIZEOF_NTPCM(req)); | 552 | read(conn, &req, SIZEOF_NTPCM(req)); |
| 553 | DBG(print_ntp_control_message(&req)); | 553 | DBG(print_ntp_control_message(&req)); |
| 554 | /* Each peer identifier is 4 bytes in the data section, which | 554 | /* Each peer identifier is 4 bytes in the data section, which |
| @@ -608,7 +608,7 @@ double jitter_request(const char *host, int *status){ | |||
| 608 | DBG(print_ntp_control_message(&req)); | 608 | DBG(print_ntp_control_message(&req)); |
| 609 | 609 | ||
| 610 | req.count = htons(MAX_CM_SIZE); | 610 | req.count = htons(MAX_CM_SIZE); |
| 611 | DBG(printf("recieving READVAR response...\n")); | 611 | DBG(printf("receiving READVAR response...\n")); |
| 612 | read(conn, &req, SIZEOF_NTPCM(req)); | 612 | read(conn, &req, SIZEOF_NTPCM(req)); |
| 613 | DBG(print_ntp_control_message(&req)); | 613 | DBG(print_ntp_control_message(&req)); |
| 614 | 614 | ||
diff --git a/plugins/check_ntp_peer.c b/plugins/check_ntp_peer.c index c656b0f5..6842842f 100644 --- a/plugins/check_ntp_peer.c +++ b/plugins/check_ntp_peer.c | |||
| @@ -245,7 +245,7 @@ int ntp_request(const char *host, double *offset, int *offset_result, double *ji | |||
| 245 | do { | 245 | do { |
| 246 | /* Attempt to read the largest size packet possible */ | 246 | /* Attempt to read the largest size packet possible */ |
| 247 | req.count=htons(MAX_CM_SIZE); | 247 | req.count=htons(MAX_CM_SIZE); |
| 248 | DBG(printf("recieving READSTAT response")) | 248 | DBG(printf("receiving READSTAT response")) |
| 249 | if(read(conn, &req, SIZEOF_NTPCM(req)) == -1) | 249 | if(read(conn, &req, SIZEOF_NTPCM(req)) == -1) |
| 250 | die(STATE_CRITICAL, "NTP CRITICAL: No response from NTP server\n"); | 250 | die(STATE_CRITICAL, "NTP CRITICAL: No response from NTP server\n"); |
| 251 | DBG(print_ntp_control_message(&req)); | 251 | DBG(print_ntp_control_message(&req)); |
diff --git a/plugins/check_pgsql.c b/plugins/check_pgsql.c index 2eb699e8..5cd47093 100644 --- a/plugins/check_pgsql.c +++ b/plugins/check_pgsql.c | |||
| @@ -565,7 +565,7 @@ print_help (void) | |||
| 565 | 565 | ||
| 566 | printf (" %s\n", _("Typically, the monitoring user (unless the --logname option is used) should be")); | 566 | printf (" %s\n", _("Typically, the monitoring user (unless the --logname option is used) should be")); |
| 567 | printf (" %s\n", _("able to connect to the database without a password. The plugin can also send")); | 567 | printf (" %s\n", _("able to connect to the database without a password. The plugin can also send")); |
| 568 | printf (" %s\n", _("a password, but no effort is made to obsure or encrypt the password.")); | 568 | printf (" %s\n", _("a password, but no effort is made to obscure or encrypt the password.")); |
| 569 | 569 | ||
| 570 | printf (UT_SUPPORT); | 570 | printf (UT_SUPPORT); |
| 571 | } | 571 | } |
diff --git a/plugins/check_radius.c b/plugins/check_radius.c index fe84b7ce..be1001b4 100644 --- a/plugins/check_radius.c +++ b/plugins/check_radius.c | |||
| @@ -360,7 +360,7 @@ print_help (void) | |||
| 360 | printf (" %s\n", "-u, --username=STRING"); | 360 | printf (" %s\n", "-u, --username=STRING"); |
| 361 | printf (" %s\n", _("The user to authenticate")); | 361 | printf (" %s\n", _("The user to authenticate")); |
| 362 | printf (" %s\n", "-p, --password=STRING"); | 362 | printf (" %s\n", "-p, --password=STRING"); |
| 363 | printf (" %s\n", _("Password for autentication (SECURITY RISK)")); | 363 | printf (" %s\n", _("Password for authentication (SECURITY RISK)")); |
| 364 | printf (" %s\n", "-n, --nas-id=STRING"); | 364 | printf (" %s\n", "-n, --nas-id=STRING"); |
| 365 | printf (" %s\n", _("NAS identifier")); | 365 | printf (" %s\n", _("NAS identifier")); |
| 366 | printf (" %s\n", "-N, --nas-ip-address=STRING"); | 366 | printf (" %s\n", "-N, --nas-ip-address=STRING"); |
diff --git a/plugins/check_real.c b/plugins/check_real.c index 6491e6e9..0f1a1ba7 100644 --- a/plugins/check_real.c +++ b/plugins/check_real.c | |||
| @@ -438,7 +438,7 @@ print_help (void) | |||
| 438 | printf ("%s\n", _("This plugin will attempt to open an RTSP connection with the host.")); | 438 | printf ("%s\n", _("This plugin will attempt to open an RTSP connection with the host.")); |
| 439 | printf ("%s\n", _("Successul connects return STATE_OK, refusals and timeouts return")); | 439 | printf ("%s\n", _("Successul connects return STATE_OK, refusals and timeouts return")); |
| 440 | printf ("%s\n", _("STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful connects,")); | 440 | printf ("%s\n", _("STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful connects,")); |
| 441 | printf ("%s\n", _("but incorrect reponse messages from the host result in STATE_WARNING return")); | 441 | printf ("%s\n", _("but incorrect response messages from the host result in STATE_WARNING return")); |
| 442 | printf ("%s\n", _("values.")); | 442 | printf ("%s\n", _("values.")); |
| 443 | 443 | ||
| 444 | printf (UT_SUPPORT); | 444 | printf (UT_SUPPORT); |
diff --git a/plugins/check_smtp.c b/plugins/check_smtp.c index 6e0e22ed..0fcf4c68 100644 --- a/plugins/check_smtp.c +++ b/plugins/check_smtp.c | |||
| @@ -835,7 +835,7 @@ print_help (void) | |||
| 835 | printf("\n"); | 835 | printf("\n"); |
| 836 | printf ("%s\n", _("Successul connects return STATE_OK, refusals and timeouts return")); | 836 | printf ("%s\n", _("Successul connects return STATE_OK, refusals and timeouts return")); |
| 837 | printf ("%s\n", _("STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful")); | 837 | printf ("%s\n", _("STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful")); |
| 838 | printf ("%s\n", _("connects, but incorrect reponse messages from the host result in")); | 838 | printf ("%s\n", _("connects, but incorrect response messages from the host result in")); |
| 839 | printf ("%s\n", _("STATE_WARNING return values.")); | 839 | printf ("%s\n", _("STATE_WARNING return values.")); |
| 840 | 840 | ||
| 841 | printf (UT_SUPPORT); | 841 | printf (UT_SUPPORT); |
| @@ -704,7 +704,7 @@ msgstr "DNS CRITICAL - %s\n" | |||
| 704 | #: plugins/check_dns.c:254 | 704 | #: plugins/check_dns.c:254 |
| 705 | #, fuzzy, c-format | 705 | #, fuzzy, c-format |
| 706 | msgid "DNS UNKNOWN - %s\n" | 706 | msgid "DNS UNKNOWN - %s\n" |
| 707 | msgstr "DNS UNKNOW - %s\n" | 707 | msgstr "DNS UNKNOWN - %s\n" |
| 708 | 708 | ||
| 709 | #: plugins/check_dns.c:267 | 709 | #: plugins/check_dns.c:267 |
| 710 | msgid "Note: nslookup is deprecated and may be removed from future releases." | 710 | msgid "Note: nslookup is deprecated and may be removed from future releases." |
| @@ -852,7 +852,7 @@ msgstr "Konnte stderr nicht öffnen für: %s\n" | |||
| 852 | #: plugins/check_fping.c:157 | 852 | #: plugins/check_fping.c:157 |
| 853 | #, fuzzy | 853 | #, fuzzy |
| 854 | msgid "FPING UNKNOWN - IP address not found\n" | 854 | msgid "FPING UNKNOWN - IP address not found\n" |
| 855 | msgstr "FPING UNKNOW - %s nicht gefunden\n" | 855 | msgstr "FPING UNKNOWN - %s nicht gefunden\n" |
| 856 | 856 | ||
| 857 | #: plugins/check_fping.c:160 | 857 | #: plugins/check_fping.c:160 |
| 858 | msgid "FPING UNKNOWN - invalid commandline argument\n" | 858 | msgid "FPING UNKNOWN - invalid commandline argument\n" |
| @@ -861,12 +861,12 @@ msgstr "" | |||
| 861 | #: plugins/check_fping.c:163 | 861 | #: plugins/check_fping.c:163 |
| 862 | #, fuzzy | 862 | #, fuzzy |
| 863 | msgid "FPING UNKNOWN - failed system call\n" | 863 | msgid "FPING UNKNOWN - failed system call\n" |
| 864 | msgstr "FPING UNKNOW - %s nicht gefunden\n" | 864 | msgstr "FPING UNKNOWN - %s nicht gefunden\n" |
| 865 | 865 | ||
| 866 | #: plugins/check_fping.c:187 | 866 | #: plugins/check_fping.c:187 |
| 867 | #, c-format | 867 | #, c-format |
| 868 | msgid "FPING UNKNOW - %s not found\n" | 868 | msgid "FPING UNKNOWN - %s not found\n" |
| 869 | msgstr "FPING UNKNOW - %s nicht gefunden\n" | 869 | msgstr "FPING UNKNOWN - %s nicht gefunden\n" |
| 870 | 870 | ||
| 871 | #: plugins/check_fping.c:191 | 871 | #: plugins/check_fping.c:191 |
| 872 | #, c-format | 872 | #, c-format |
| @@ -876,7 +876,7 @@ msgstr "FPING CRITICAL - %s ist nicht erreichbar\n" | |||
| 876 | #: plugins/check_fping.c:196 | 876 | #: plugins/check_fping.c:196 |
| 877 | #, fuzzy, c-format | 877 | #, fuzzy, c-format |
| 878 | msgid "FPING UNKNOWN - %s parameter error\n" | 878 | msgid "FPING UNKNOWN - %s parameter error\n" |
| 879 | msgstr "FPING UNKNOW - %s nicht gefunden\n" | 879 | msgstr "FPING UNKNOWN - %s nicht gefunden\n" |
| 880 | 880 | ||
| 881 | #: plugins/check_fping.c:200 plugins/check_fping.c:240 | 881 | #: plugins/check_fping.c:200 plugins/check_fping.c:240 |
| 882 | #, c-format | 882 | #, c-format |
| @@ -1577,7 +1577,7 @@ msgstr "" | |||
| 1577 | #: plugins/check_http.c:1545 | 1577 | #: plugins/check_http.c:1545 |
| 1578 | msgid "" | 1578 | msgid "" |
| 1579 | "other errors return STATE_UNKNOWN. Successful connects, but incorrect " | 1579 | "other errors return STATE_UNKNOWN. Successful connects, but incorrect " |
| 1580 | "reponse" | 1580 | "response" |
| 1581 | msgstr "" | 1581 | msgstr "" |
| 1582 | 1582 | ||
| 1583 | #: plugins/check_http.c:1546 | 1583 | #: plugins/check_http.c:1546 |
| @@ -3636,7 +3636,7 @@ msgid "" | |||
| 3636 | msgstr "" | 3636 | msgstr "" |
| 3637 | 3637 | ||
| 3638 | #: plugins/check_pgsql.c:568 | 3638 | #: plugins/check_pgsql.c:568 |
| 3639 | msgid "a password, but no effort is made to obsure or encrypt the password." | 3639 | msgid "a password, but no effort is made to obscure or encrypt the password." |
| 3640 | msgstr "" | 3640 | msgstr "" |
| 3641 | 3641 | ||
| 3642 | #: plugins/check_pgsql.c:601 | 3642 | #: plugins/check_pgsql.c:601 |
| @@ -4169,7 +4169,7 @@ msgid "The user to authenticate" | |||
| 4169 | msgstr "" | 4169 | msgstr "" |
| 4170 | 4170 | ||
| 4171 | #: plugins/check_radius.c:352 | 4171 | #: plugins/check_radius.c:352 |
| 4172 | msgid "Password for autentication (SECURITY RISK)" | 4172 | msgid "Password for authentication (SECURITY RISK)" |
| 4173 | msgstr "" | 4173 | msgstr "" |
| 4174 | 4174 | ||
| 4175 | #: plugins/check_radius.c:354 | 4175 | #: plugins/check_radius.c:354 |
| @@ -4309,7 +4309,7 @@ msgstr "" | |||
| 4309 | 4309 | ||
| 4310 | #: plugins/check_real.c:440 | 4310 | #: plugins/check_real.c:440 |
| 4311 | msgid "" | 4311 | msgid "" |
| 4312 | "but incorrect reponse messages from the host result in STATE_WARNING return" | 4312 | "but incorrect response messages from the host result in STATE_WARNING return" |
| 4313 | msgstr "" | 4313 | msgstr "" |
| 4314 | 4314 | ||
| 4315 | #: plugins/check_real.c:441 | 4315 | #: plugins/check_real.c:441 |
| @@ -4530,7 +4530,7 @@ msgid "STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful" | |||
| 4530 | msgstr "" | 4530 | msgstr "" |
| 4531 | 4531 | ||
| 4532 | #: plugins/check_smtp.c:832 | 4532 | #: plugins/check_smtp.c:832 |
| 4533 | msgid "connects, but incorrect reponse messages from the host result in" | 4533 | msgid "connects, but incorrect response messages from the host result in" |
| 4534 | msgstr "" | 4534 | msgstr "" |
| 4535 | 4535 | ||
| 4536 | #: plugins/check_smtp.c:833 | 4536 | #: plugins/check_smtp.c:833 |
| @@ -902,7 +902,7 @@ msgstr "PING INCONNU - Hôte non trouvé (%s)\n" | |||
| 902 | 902 | ||
| 903 | #: plugins/check_fping.c:187 | 903 | #: plugins/check_fping.c:187 |
| 904 | #, c-format | 904 | #, c-format |
| 905 | msgid "FPING UNKNOW - %s not found\n" | 905 | msgid "FPING UNKNOWN - %s not found\n" |
| 906 | msgstr "PING INCONNU - Hôte non trouvé (%s)\n" | 906 | msgstr "PING INCONNU - Hôte non trouvé (%s)\n" |
| 907 | 907 | ||
| 908 | #: plugins/check_fping.c:191 | 908 | #: plugins/check_fping.c:191 |
| @@ -1623,7 +1623,7 @@ msgstr "" | |||
| 1623 | #: plugins/check_http.c:1545 | 1623 | #: plugins/check_http.c:1545 |
| 1624 | msgid "" | 1624 | msgid "" |
| 1625 | "other errors return STATE_UNKNOWN. Successful connects, but incorrect " | 1625 | "other errors return STATE_UNKNOWN. Successful connects, but incorrect " |
| 1626 | "reponse" | 1626 | "response" |
| 1627 | msgstr "" | 1627 | msgstr "" |
| 1628 | 1628 | ||
| 1629 | #: plugins/check_http.c:1546 | 1629 | #: plugins/check_http.c:1546 |
| @@ -3700,7 +3700,7 @@ msgid "" | |||
| 3700 | msgstr "" | 3700 | msgstr "" |
| 3701 | 3701 | ||
| 3702 | #: plugins/check_pgsql.c:568 | 3702 | #: plugins/check_pgsql.c:568 |
| 3703 | msgid "a password, but no effort is made to obsure or encrypt the password." | 3703 | msgid "a password, but no effort is made to obscure or encrypt the password." |
| 3704 | msgstr "" | 3704 | msgstr "" |
| 3705 | 3705 | ||
| 3706 | #: plugins/check_pgsql.c:601 | 3706 | #: plugins/check_pgsql.c:601 |
| @@ -4246,7 +4246,7 @@ msgid "The user to authenticate" | |||
| 4246 | msgstr "" | 4246 | msgstr "" |
| 4247 | 4247 | ||
| 4248 | #: plugins/check_radius.c:352 | 4248 | #: plugins/check_radius.c:352 |
| 4249 | msgid "Password for autentication (SECURITY RISK)" | 4249 | msgid "Password for authentication (SECURITY RISK)" |
| 4250 | msgstr "" | 4250 | msgstr "" |
| 4251 | 4251 | ||
| 4252 | #: plugins/check_radius.c:354 | 4252 | #: plugins/check_radius.c:354 |
| @@ -4382,7 +4382,7 @@ msgstr "" | |||
| 4382 | 4382 | ||
| 4383 | #: plugins/check_real.c:440 | 4383 | #: plugins/check_real.c:440 |
| 4384 | msgid "" | 4384 | msgid "" |
| 4385 | "but incorrect reponse messages from the host result in STATE_WARNING return" | 4385 | "but incorrect response messages from the host result in STATE_WARNING return" |
| 4386 | msgstr "" | 4386 | msgstr "" |
| 4387 | 4387 | ||
| 4388 | #: plugins/check_real.c:441 | 4388 | #: plugins/check_real.c:441 |
| @@ -4600,7 +4600,7 @@ msgid "STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful" | |||
| 4600 | msgstr "" | 4600 | msgstr "" |
| 4601 | 4601 | ||
| 4602 | #: plugins/check_smtp.c:832 | 4602 | #: plugins/check_smtp.c:832 |
| 4603 | msgid "connects, but incorrect reponse messages from the host result in" | 4603 | msgid "connects, but incorrect response messages from the host result in" |
| 4604 | msgstr "" | 4604 | msgstr "" |
| 4605 | 4605 | ||
| 4606 | #: plugins/check_smtp.c:833 | 4606 | #: plugins/check_smtp.c:833 |
diff --git a/po/monitoring-plugins.pot b/po/monitoring-plugins.pot index 8f220e98..5bc23637 100644 --- a/po/monitoring-plugins.pot +++ b/po/monitoring-plugins.pot | |||
| @@ -841,7 +841,7 @@ msgstr "" | |||
| 841 | 841 | ||
| 842 | #: plugins/check_fping.c:187 | 842 | #: plugins/check_fping.c:187 |
| 843 | #, c-format | 843 | #, c-format |
| 844 | msgid "FPING UNKNOW - %s not found\n" | 844 | msgid "FPING UNKNOWN - %s not found\n" |
| 845 | msgstr "" | 845 | msgstr "" |
| 846 | 846 | ||
| 847 | #: plugins/check_fping.c:191 | 847 | #: plugins/check_fping.c:191 |
| @@ -1528,7 +1528,7 @@ msgstr "" | |||
| 1528 | #: plugins/check_http.c:1545 | 1528 | #: plugins/check_http.c:1545 |
| 1529 | msgid "" | 1529 | msgid "" |
| 1530 | "other errors return STATE_UNKNOWN. Successful connects, but incorrect " | 1530 | "other errors return STATE_UNKNOWN. Successful connects, but incorrect " |
| 1531 | "reponse" | 1531 | "response" |
| 1532 | msgstr "" | 1532 | msgstr "" |
| 1533 | 1533 | ||
| 1534 | #: plugins/check_http.c:1546 | 1534 | #: plugins/check_http.c:1546 |
| @@ -3546,7 +3546,7 @@ msgid "" | |||
| 3546 | msgstr "" | 3546 | msgstr "" |
| 3547 | 3547 | ||
| 3548 | #: plugins/check_pgsql.c:568 | 3548 | #: plugins/check_pgsql.c:568 |
| 3549 | msgid "a password, but no effort is made to obsure or encrypt the password." | 3549 | msgid "a password, but no effort is made to obscure or encrypt the password." |
| 3550 | msgstr "" | 3550 | msgstr "" |
| 3551 | 3551 | ||
| 3552 | #: plugins/check_pgsql.c:601 | 3552 | #: plugins/check_pgsql.c:601 |
| @@ -4070,7 +4070,7 @@ msgid "The user to authenticate" | |||
| 4070 | msgstr "" | 4070 | msgstr "" |
| 4071 | 4071 | ||
| 4072 | #: plugins/check_radius.c:352 | 4072 | #: plugins/check_radius.c:352 |
| 4073 | msgid "Password for autentication (SECURITY RISK)" | 4073 | msgid "Password for authentication (SECURITY RISK)" |
| 4074 | msgstr "" | 4074 | msgstr "" |
| 4075 | 4075 | ||
| 4076 | #: plugins/check_radius.c:354 | 4076 | #: plugins/check_radius.c:354 |
| @@ -4203,7 +4203,7 @@ msgstr "" | |||
| 4203 | 4203 | ||
| 4204 | #: plugins/check_real.c:440 | 4204 | #: plugins/check_real.c:440 |
| 4205 | msgid "" | 4205 | msgid "" |
| 4206 | "but incorrect reponse messages from the host result in STATE_WARNING return" | 4206 | "but incorrect response messages from the host result in STATE_WARNING return" |
| 4207 | msgstr "" | 4207 | msgstr "" |
| 4208 | 4208 | ||
| 4209 | #: plugins/check_real.c:441 | 4209 | #: plugins/check_real.c:441 |
| @@ -4417,7 +4417,7 @@ msgid "STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful" | |||
| 4417 | msgstr "" | 4417 | msgstr "" |
| 4418 | 4418 | ||
| 4419 | #: plugins/check_smtp.c:832 | 4419 | #: plugins/check_smtp.c:832 |
| 4420 | msgid "connects, but incorrect reponse messages from the host result in" | 4420 | msgid "connects, but incorrect response messages from the host result in" |
| 4421 | msgstr "" | 4421 | msgstr "" |
| 4422 | 4422 | ||
| 4423 | #: plugins/check_smtp.c:833 | 4423 | #: plugins/check_smtp.c:833 |
