diff options
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | plugins/check_http.c | 54 | ||||
-rw-r--r-- | po/de.po | 581 | ||||
-rw-r--r-- | po/fr.po | 585 | ||||
-rw-r--r-- | po/nagios-plugins.pot | 534 |
5 files changed, 943 insertions, 812 deletions
@@ -7,6 +7,7 @@ This file documents the major additions and syntax changes between releases. | |||
7 | Fix compilation of check_ldap, check_radius and check_pgsql | 7 | Fix compilation of check_ldap, check_radius and check_pgsql |
8 | check_load can optionally divide by number of cpus | 8 | check_load can optionally divide by number of cpus |
9 | Fix check_time returning wrong OK when time is before the epoch on some arch | 9 | Fix check_time returning wrong OK when time is before the epoch on some arch |
10 | Make check_http output more consistent | ||
10 | 11 | ||
11 | 1.4.8 11th April 2007 | 12 | 1.4.8 11th April 2007 |
12 | Respects --without-world-permissions for setuid plugins | 13 | Respects --without-world-permissions for setuid plugins |
diff --git a/plugins/check_http.c b/plugins/check_http.c index 6d13010..5e33ec8 100644 --- a/plugins/check_http.c +++ b/plugins/check_http.c | |||
@@ -662,28 +662,28 @@ check_document_dates (const char *headers) | |||
662 | 662 | ||
663 | /* Done parsing the body. Now check the dates we (hopefully) parsed. */ | 663 | /* Done parsing the body. Now check the dates we (hopefully) parsed. */ |
664 | if (!server_date || !*server_date) { | 664 | if (!server_date || !*server_date) { |
665 | die (STATE_UNKNOWN, _("Server date unknown\n")); | 665 | die (STATE_UNKNOWN, _("HTTP UNKNOWN - Server date unknown\n")); |
666 | } else if (!document_date || !*document_date) { | 666 | } else if (!document_date || !*document_date) { |
667 | die (STATE_CRITICAL, _("Document modification date unknown\n")); | 667 | die (STATE_CRITICAL, _("HTTP CRITICAL - Document modification date unknown\n")); |
668 | } else { | 668 | } else { |
669 | time_t srv_data = parse_time_string (server_date); | 669 | time_t srv_data = parse_time_string (server_date); |
670 | time_t doc_data = parse_time_string (document_date); | 670 | time_t doc_data = parse_time_string (document_date); |
671 | 671 | ||
672 | if (srv_data <= 0) { | 672 | if (srv_data <= 0) { |
673 | die (STATE_CRITICAL, _("CRITICAL - Server date \"%100s\" unparsable"), server_date); | 673 | die (STATE_CRITICAL, _("HTTP CRITICAL - Server date \"%100s\" unparsable"), server_date); |
674 | } else if (doc_data <= 0) { | 674 | } else if (doc_data <= 0) { |
675 | die (STATE_CRITICAL, _("CRITICAL - Document date \"%100s\" unparsable"), document_date); | 675 | die (STATE_CRITICAL, _("HTTP CRITICAL - Document date \"%100s\" unparsable"), document_date); |
676 | } else if (doc_data > srv_data + 30) { | 676 | } else if (doc_data > srv_data + 30) { |
677 | die (STATE_CRITICAL, _("CRITICAL - Document is %d seconds in the future\n"), (int)doc_data - (int)srv_data); | 677 | die (STATE_CRITICAL, _("HTTP CRITICAL - Document is %d seconds in the future\n"), (int)doc_data - (int)srv_data); |
678 | } else if (doc_data < srv_data - maximum_age) { | 678 | } else if (doc_data < srv_data - maximum_age) { |
679 | int n = (srv_data - doc_data); | 679 | int n = (srv_data - doc_data); |
680 | if (n > (60 * 60 * 24 * 2)) | 680 | if (n > (60 * 60 * 24 * 2)) |
681 | die (STATE_CRITICAL, | 681 | die (STATE_CRITICAL, |
682 | _("CRITICAL - Last modified %.1f days ago\n"), | 682 | _("HTTP CRITICAL - Last modified %.1f days ago\n"), |
683 | ((float) n) / (60 * 60 * 24)); | 683 | ((float) n) / (60 * 60 * 24)); |
684 | else | 684 | else |
685 | die (STATE_CRITICAL, | 685 | die (STATE_CRITICAL, |
686 | _("CRITICAL - Last modified %d:%02d:%02d ago\n"), | 686 | _("HTTP CRITICAL - Last modified %d:%02d:%02d ago\n"), |
687 | n / (60 * 60), (n / 60) % 60, n % 60); | 687 | n / (60 * 60), (n / 60) % 60, n % 60); |
688 | } | 688 | } |
689 | 689 | ||
@@ -764,7 +764,7 @@ check_http (void) | |||
764 | 764 | ||
765 | /* try to connect to the host at the given port number */ | 765 | /* try to connect to the host at the given port number */ |
766 | if (my_tcp_connect (server_address, server_port, &sd) != STATE_OK) | 766 | if (my_tcp_connect (server_address, server_port, &sd) != STATE_OK) |
767 | die (STATE_CRITICAL, _("Unable to open TCP socket\n")); | 767 | die (STATE_CRITICAL, _("HTTP CRITICAL - Unable to open TCP socket\n")); |
768 | #ifdef HAVE_SSL | 768 | #ifdef HAVE_SSL |
769 | if (use_ssl == TRUE) { | 769 | if (use_ssl == TRUE) { |
770 | np_net_ssl_init(sd); | 770 | np_net_ssl_init(sd); |
@@ -836,15 +836,15 @@ check_http (void) | |||
836 | if (use_ssl) { | 836 | if (use_ssl) { |
837 | sslerr=SSL_get_error(ssl, i); | 837 | sslerr=SSL_get_error(ssl, i); |
838 | if ( sslerr == SSL_ERROR_SSL ) { | 838 | if ( sslerr == SSL_ERROR_SSL ) { |
839 | die (STATE_WARNING, _("Client Certificate Required\n")); | 839 | die (STATE_WARNING, _("HTTP WARNING - Client Certificate Required\n")); |
840 | } else { | 840 | } else { |
841 | die (STATE_CRITICAL, _("Error on receive\n")); | 841 | die (STATE_CRITICAL, _("HTTP CRITICAL - Error on receive\n")); |
842 | } | 842 | } |
843 | } | 843 | } |
844 | else { | 844 | else { |
845 | */ | 845 | */ |
846 | #endif | 846 | #endif |
847 | die (STATE_CRITICAL, _("Error on receive\n")); | 847 | die (STATE_CRITICAL, _("HTTP CRITICAL - Error on receive\n")); |
848 | #ifdef HAVE_SSL | 848 | #ifdef HAVE_SSL |
849 | /* XXX | 849 | /* XXX |
850 | } | 850 | } |
@@ -854,7 +854,7 @@ check_http (void) | |||
854 | 854 | ||
855 | /* return a CRITICAL status if we couldn't read any data */ | 855 | /* return a CRITICAL status if we couldn't read any data */ |
856 | if (pagesize == (size_t) 0) | 856 | if (pagesize == (size_t) 0) |
857 | die (STATE_CRITICAL, _("No data received from host\n")); | 857 | die (STATE_CRITICAL, _("HTTP CRITICAL - No data received from host\n")); |
858 | 858 | ||
859 | /* close the connection */ | 859 | /* close the connection */ |
860 | #ifdef HAVE_SSL | 860 | #ifdef HAVE_SSL |
@@ -909,7 +909,7 @@ check_http (void) | |||
909 | asprintf (&msg, | 909 | asprintf (&msg, |
910 | _("Invalid HTTP response received from host on port %d\n"), | 910 | _("Invalid HTTP response received from host on port %d\n"), |
911 | server_port); | 911 | server_port); |
912 | die (STATE_CRITICAL, "%s", msg); | 912 | die (STATE_CRITICAL, "HTTP CRITICAL - %s", msg); |
913 | } | 913 | } |
914 | 914 | ||
915 | /* Exit here if server_expect was set by user and not default */ | 915 | /* Exit here if server_expect was set by user and not default */ |
@@ -950,13 +950,13 @@ check_http (void) | |||
950 | if (onredirect == STATE_DEPENDENT) | 950 | if (onredirect == STATE_DEPENDENT) |
951 | redir (header, status_line); | 951 | redir (header, status_line); |
952 | else if (onredirect == STATE_UNKNOWN) | 952 | else if (onredirect == STATE_UNKNOWN) |
953 | printf (_("UNKNOWN")); | 953 | printf (_("HTTP UNKNOWN")); |
954 | else if (onredirect == STATE_OK) | 954 | else if (onredirect == STATE_OK) |
955 | printf (_("OK")); | 955 | printf (_("HTTP OK")); |
956 | else if (onredirect == STATE_WARNING) | 956 | else if (onredirect == STATE_WARNING) |
957 | printf (_("WARNING")); | 957 | printf (_("HTTP WARNING")); |
958 | else if (onredirect == STATE_CRITICAL) | 958 | else if (onredirect == STATE_CRITICAL) |
959 | printf (_("CRITICAL")); | 959 | printf (_("HTTP CRITICAL")); |
960 | microsec = deltime (tv); | 960 | microsec = deltime (tv); |
961 | elapsed_time = (double)microsec / 1.0e6; | 961 | elapsed_time = (double)microsec / 1.0e6; |
962 | die (onredirect, | 962 | die (onredirect, |
@@ -997,7 +997,7 @@ check_http (void) | |||
997 | exit (STATE_OK); | 997 | exit (STATE_OK); |
998 | } | 998 | } |
999 | else { | 999 | else { |
1000 | printf (_("CRITICAL - string not found%s|%s %s\n"), | 1000 | printf (_("HTTP CRITICAL - string not found%s|%s %s\n"), |
1001 | (display_html ? "</A>" : ""), | 1001 | (display_html ? "</A>" : ""), |
1002 | perfd_time (elapsed_time), perfd_size (pagesize)); | 1002 | perfd_time (elapsed_time), perfd_size (pagesize)); |
1003 | exit (STATE_CRITICAL); | 1003 | exit (STATE_CRITICAL); |
@@ -1019,7 +1019,7 @@ check_http (void) | |||
1019 | else | 1019 | else |
1020 | msg = strdup(_("pattern found")); | 1020 | msg = strdup(_("pattern found")); |
1021 | printf (("%s - %s%s|%s %s\n"), | 1021 | printf (("%s - %s%s|%s %s\n"), |
1022 | _("CRITICAL"), | 1022 | _("HTTP CRITICAL"), |
1023 | msg, | 1023 | msg, |
1024 | (display_html ? "</A>" : ""), | 1024 | (display_html ? "</A>" : ""), |
1025 | perfd_time (elapsed_time), perfd_size (pagesize)); | 1025 | perfd_time (elapsed_time), perfd_size (pagesize)); |
@@ -1027,7 +1027,7 @@ check_http (void) | |||
1027 | } | 1027 | } |
1028 | else { | 1028 | else { |
1029 | regerror (errcode, &preg, errbuf, MAX_INPUT_BUFFER); | 1029 | regerror (errcode, &preg, errbuf, MAX_INPUT_BUFFER); |
1030 | printf (_("CRITICAL - Execute Error: %s\n"), errbuf); | 1030 | printf (_("HTTP CRITICAL - Execute Error: %s\n"), errbuf); |
1031 | exit (STATE_CRITICAL); | 1031 | exit (STATE_CRITICAL); |
1032 | } | 1032 | } |
1033 | } | 1033 | } |
@@ -1080,11 +1080,11 @@ redir (char *pos, char *status_line) | |||
1080 | 1080 | ||
1081 | addr = malloc (MAX_IPV4_HOSTLENGTH + 1); | 1081 | addr = malloc (MAX_IPV4_HOSTLENGTH + 1); |
1082 | if (addr == NULL) | 1082 | if (addr == NULL) |
1083 | die (STATE_UNKNOWN, _("Could not allocate addr\n")); | 1083 | die (STATE_UNKNOWN, _("HTTP UNKNOWN - Could not allocate addr\n")); |
1084 | 1084 | ||
1085 | url = malloc (strcspn (pos, "\r\n")); | 1085 | url = malloc (strcspn (pos, "\r\n")); |
1086 | if (url == NULL) | 1086 | if (url == NULL) |
1087 | die (STATE_UNKNOWN, _("Could not allocate url\n")); | 1087 | die (STATE_UNKNOWN, _("HTTP UNKNOWN - Could not allocate url\n")); |
1088 | 1088 | ||
1089 | while (pos) { | 1089 | while (pos) { |
1090 | sscanf (pos, "%[Ll]%*[Oo]%*[Cc]%*[Aa]%*[Tt]%*[Ii]%*[Oo]%*[Nn]:%n", xx, &i); | 1090 | sscanf (pos, "%[Ll]%*[Oo]%*[Cc]%*[Aa]%*[Tt]%*[Ii]%*[Oo]%*[Nn]:%n", xx, &i); |
@@ -1093,7 +1093,7 @@ redir (char *pos, char *status_line) | |||
1093 | pos += (size_t) strspn (pos, "\r\n"); | 1093 | pos += (size_t) strspn (pos, "\r\n"); |
1094 | if (strlen(pos) == 0) | 1094 | if (strlen(pos) == 0) |
1095 | die (STATE_UNKNOWN, | 1095 | die (STATE_UNKNOWN, |
1096 | _("UNKNOWN - Could not find redirect location - %s%s\n"), | 1096 | _("HTTP UNKNOWN - Could not find redirect location - %s%s\n"), |
1097 | status_line, (display_html ? "</A>" : "")); | 1097 | status_line, (display_html ? "</A>" : "")); |
1098 | continue; | 1098 | continue; |
1099 | } | 1099 | } |
@@ -1103,7 +1103,7 @@ redir (char *pos, char *status_line) | |||
1103 | 1103 | ||
1104 | url = realloc (url, strcspn (pos, "\r\n")); | 1104 | url = realloc (url, strcspn (pos, "\r\n")); |
1105 | if (url == NULL) | 1105 | if (url == NULL) |
1106 | die (STATE_UNKNOWN, _("could not allocate url\n")); | 1106 | die (STATE_UNKNOWN, _("HTTP UNKNOWN - could not allocate url\n")); |
1107 | 1107 | ||
1108 | /* URI_HTTP, URI_HOST, URI_PORT, URI_PATH */ | 1108 | /* URI_HTTP, URI_HOST, URI_PORT, URI_PATH */ |
1109 | if (sscanf (pos, HD1, type, addr, port, url) == 4) { | 1109 | if (sscanf (pos, HD1, type, addr, port, url) == 4) { |
@@ -1146,7 +1146,7 @@ redir (char *pos, char *status_line) | |||
1146 | 1146 | ||
1147 | else { | 1147 | else { |
1148 | die (STATE_UNKNOWN, | 1148 | die (STATE_UNKNOWN, |
1149 | _("UNKNOWN - Could not parse redirect location - %s%s\n"), | 1149 | _("HTTP UNKNOWN - Could not parse redirect location - %s%s\n"), |
1150 | pos, (display_html ? "</A>" : "")); | 1150 | pos, (display_html ? "</A>" : "")); |
1151 | } | 1151 | } |
1152 | 1152 | ||
@@ -1156,7 +1156,7 @@ redir (char *pos, char *status_line) | |||
1156 | 1156 | ||
1157 | if (++redir_depth > max_depth) | 1157 | if (++redir_depth > max_depth) |
1158 | die (STATE_WARNING, | 1158 | die (STATE_WARNING, |
1159 | _("WARNING - maximum redirection depth %d exceeded - %s://%s:%d%s%s\n"), | 1159 | _("HTTP WARNING - maximum redirection depth %d exceeded - %s://%s:%d%s%s\n"), |
1160 | max_depth, type, addr, i, url, (display_html ? "</A>" : "")); | 1160 | max_depth, type, addr, i, url, (display_html ? "</A>" : "")); |
1161 | 1161 | ||
1162 | if (server_port==i && | 1162 | if (server_port==i && |
@@ -1164,7 +1164,7 @@ redir (char *pos, char *status_line) | |||
1164 | (host_name && !strcmp(host_name, addr)) && | 1164 | (host_name && !strcmp(host_name, addr)) && |
1165 | !strcmp(server_url, url)) | 1165 | !strcmp(server_url, url)) |
1166 | die (STATE_WARNING, | 1166 | die (STATE_WARNING, |
1167 | _("WARNING - redirection creates an infinite loop - %s://%s:%d%s%s\n"), | 1167 | _("HTTP WARNING - redirection creates an infinite loop - %s://%s:%d%s%s\n"), |
1168 | type, addr, i, url, (display_html ? "</A>" : "")); | 1168 | type, addr, i, url, (display_html ? "</A>" : "")); |
1169 | 1169 | ||
1170 | server_port = i; | 1170 | server_port = i; |
@@ -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: nagiosplug-devel@lists.sourceforge.net\n" | 11 | "Report-Msgid-Bugs-To: nagiosplug-devel@lists.sourceforge.net\n" |
12 | "POT-Creation-Date: 2007-04-10 03:05-0400\n" | 12 | "POT-Creation-Date: 2007-05-23 03:45-0400\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" |
@@ -18,10 +18,10 @@ msgstr "" | |||
18 | "Content-Transfer-Encoding: 8bit\n" | 18 | "Content-Transfer-Encoding: 8bit\n" |
19 | "Plural-Forms: nplurals=2; plural=(n > 1);X-Generator: KBabel 1.3.1\n" | 19 | "Plural-Forms: nplurals=2; plural=(n > 1);X-Generator: KBabel 1.3.1\n" |
20 | 20 | ||
21 | #: plugins/check_by_ssh.c:82 plugins/check_dig.c:89 plugins/check_disk.c:192 | 21 | #: plugins/check_by_ssh.c:83 plugins/check_dig.c:89 plugins/check_disk.c:192 |
22 | #: plugins/check_dns.c:93 plugins/check_dummy.c:59 plugins/check_fping.c:89 | 22 | #: plugins/check_dns.c:93 plugins/check_dummy.c:59 plugins/check_fping.c:89 |
23 | #: plugins/check_game.c:84 plugins/check_hpjd.c:106 plugins/check_http.c:147 | 23 | #: plugins/check_game.c:84 plugins/check_hpjd.c:106 plugins/check_http.c:147 |
24 | #: plugins/check_ldap.c:105 plugins/check_load.c:122 | 24 | #: plugins/check_ldap.c:105 plugins/check_load.c:124 |
25 | #: plugins/check_mrtgtraf.c:83 plugins/check_mysql.c:88 | 25 | #: plugins/check_mrtgtraf.c:83 plugins/check_mysql.c:88 |
26 | #: plugins/check_nagios.c:94 plugins/check_nt.c:126 plugins/check_ntp.c:758 | 26 | #: plugins/check_nagios.c:94 plugins/check_nt.c:126 plugins/check_ntp.c:758 |
27 | #: plugins/check_nwstat.c:177 plugins/check_overcr.c:106 | 27 | #: plugins/check_nwstat.c:177 plugins/check_overcr.c:106 |
@@ -29,69 +29,75 @@ msgstr "" | |||
29 | #: plugins/check_radius.c:133 plugins/check_real.c:85 plugins/check_smtp.c:180 | 29 | #: plugins/check_radius.c:133 plugins/check_real.c:85 plugins/check_smtp.c:180 |
30 | #: plugins/check_snmp.c:182 plugins/check_ssh.c:78 plugins/check_swap.c:113 | 30 | #: plugins/check_snmp.c:182 plugins/check_ssh.c:78 plugins/check_swap.c:113 |
31 | #: plugins/check_tcp.c:208 plugins/check_time.c:82 plugins/check_ups.c:125 | 31 | #: plugins/check_tcp.c:208 plugins/check_time.c:82 plugins/check_ups.c:125 |
32 | #: plugins/check_users.c:70 plugins/negate.c:102 plugins-root/check_dhcp.c:256 | 32 | #: plugins/check_users.c:70 plugins/negate.c:102 plugins-root/check_dhcp.c:258 |
33 | msgid "Could not parse arguments" | 33 | msgid "Could not parse arguments" |
34 | msgstr "Argumente konnten nicht ausgewertet werden" | 34 | msgstr "Argumente konnten nicht ausgewertet werden" |
35 | 35 | ||
36 | #: plugins/check_by_ssh.c:86 plugins/check_dig.c:86 plugins/check_dns.c:89 | 36 | #: plugins/check_by_ssh.c:87 plugins/check_dig.c:86 plugins/check_dns.c:89 |
37 | #: plugins/check_nagios.c:98 plugins/check_pgsql.c:160 | 37 | #: plugins/check_nagios.c:98 plugins/check_pgsql.c:160 |
38 | #: plugins/check_ping.c:103 plugins/check_procs.c:150 plugins/negate.c:106 | 38 | #: plugins/check_ping.c:103 plugins/check_procs.c:150 plugins/negate.c:106 |
39 | msgid "Cannot catch SIGALRM" | 39 | msgid "Cannot catch SIGALRM" |
40 | msgstr "Konnte SIGALRM nicht erhalten" | 40 | msgstr "Konnte SIGALRM nicht erhalten" |
41 | 41 | ||
42 | #: plugins/check_by_ssh.c:97 | 42 | #: plugins/check_by_ssh.c:104 |
43 | #, c-format | 43 | #, c-format |
44 | msgid "Remote command execution failed: %s\n" | 44 | msgid "Remote command execution failed: %s\n" |
45 | msgstr "" | 45 | msgstr "" |
46 | 46 | ||
47 | #: plugins/check_by_ssh.c:98 | 47 | #: plugins/check_by_ssh.c:115 |
48 | #, fuzzy | 48 | #, c-format |
49 | msgid "Unknown error" | 49 | msgid "%s - check_by_ssh: Remote command '%s' returned status %d\n" |
50 | msgstr "Papierfehler" | 50 | msgstr "" |
51 | 51 | ||
52 | #: plugins/check_by_ssh.c:116 | 52 | #: plugins/check_by_ssh.c:127 |
53 | #, c-format | 53 | #, c-format |
54 | msgid "SSH WARNING: could not open %s\n" | 54 | msgid "SSH WARNING: could not open %s\n" |
55 | msgstr "SSH WARNING: Konnte %s nicht öffnen\n" | 55 | msgstr "SSH WARNING: Konnte %s nicht öffnen\n" |
56 | 56 | ||
57 | #: plugins/check_by_ssh.c:200 plugins/check_disk.c:507 | 57 | #: plugins/check_by_ssh.c:213 plugins/check_disk.c:507 |
58 | #: plugins/check_http.c:241 plugins/check_ldap.c:281 plugins/check_pgsql.c:237 | 58 | #: plugins/check_http.c:241 plugins/check_ldap.c:281 plugins/check_pgsql.c:237 |
59 | #: plugins/check_procs.c:371 plugins/check_radius.c:215 | 59 | #: plugins/check_procs.c:371 plugins/check_radius.c:215 |
60 | #: plugins/check_radius.c:285 plugins/check_real.c:361 | 60 | #: plugins/check_radius.c:285 plugins/check_real.c:361 |
61 | #: plugins/check_smtp.c:629 plugins/check_snmp.c:494 plugins/check_ssh.c:143 | 61 | #: plugins/check_smtp.c:629 plugins/check_snmp.c:498 plugins/check_ssh.c:143 |
62 | #: plugins/check_tcp.c:500 plugins/check_time.c:306 plugins/check_ups.c:555 | 62 | #: plugins/check_tcp.c:500 plugins/check_time.c:306 plugins/check_ups.c:555 |
63 | #: plugins/negate.c:203 | 63 | #: plugins/negate.c:203 |
64 | msgid "Timeout interval must be a positive integer" | 64 | msgid "Timeout interval must be a positive integer" |
65 | msgstr "Timeout interval muss ein positiver Integer sein" | 65 | msgstr "Timeout interval muss ein positiver Integer sein" |
66 | 66 | ||
67 | #: plugins/check_by_ssh.c:210 plugins/check_pgsql.c:261 | 67 | #: plugins/check_by_ssh.c:223 plugins/check_pgsql.c:261 |
68 | #: plugins/check_radius.c:224 plugins/check_radius.c:258 | 68 | #: plugins/check_radius.c:224 plugins/check_radius.c:258 |
69 | #: plugins/check_real.c:332 plugins/check_smtp.c:561 plugins/check_tcp.c:506 | 69 | #: plugins/check_real.c:332 plugins/check_smtp.c:561 plugins/check_tcp.c:506 |
70 | #: plugins/check_time.c:300 plugins/check_ups.c:517 | 70 | #: plugins/check_time.c:300 plugins/check_ups.c:517 |
71 | msgid "Port must be a positive integer" | 71 | msgid "Port must be a positive integer" |
72 | msgstr "Port muss ein positiver Integer sein" | 72 | msgstr "Port muss ein positiver Integer sein" |
73 | 73 | ||
74 | #: plugins/check_by_ssh.c:254 | 74 | #: plugins/check_by_ssh.c:269 |
75 | msgid "skip lines must be an integer" | 75 | #, fuzzy |
76 | msgid "skip-stdout argument must be an integer" | ||
77 | msgstr "skip lines muss ein Integer sein" | ||
78 | |||
79 | #: plugins/check_by_ssh.c:277 | ||
80 | #, fuzzy | ||
81 | msgid "skip-stderr argument must be an integer" | ||
76 | msgstr "skip lines muss ein Integer sein" | 82 | msgstr "skip lines muss ein Integer sein" |
77 | 83 | ||
78 | #: plugins/check_by_ssh.c:272 | 84 | #: plugins/check_by_ssh.c:295 |
79 | #, c-format | 85 | #, c-format |
80 | msgid "%s: You must provide a host name\n" | 86 | msgid "%s: You must provide a host name\n" |
81 | msgstr "%s: Hostname muss angegeben werden\n" | 87 | msgstr "%s: Hostname muss angegeben werden\n" |
82 | 88 | ||
83 | #: plugins/check_by_ssh.c:290 | 89 | #: plugins/check_by_ssh.c:313 |
84 | msgid "No remotecmd" | 90 | msgid "No remotecmd" |
85 | msgstr "Kein remotecm" | 91 | msgstr "Kein remotecm" |
86 | 92 | ||
87 | #: plugins/check_by_ssh.c:306 | 93 | #: plugins/check_by_ssh.c:329 |
88 | #, c-format | 94 | #, c-format |
89 | msgid "" | 95 | msgid "" |
90 | "%s: In passive mode, you must provide a service name for each command.\n" | 96 | "%s: In passive mode, you must provide a service name for each command.\n" |
91 | msgstr "" | 97 | msgstr "" |
92 | "%s: Im passive mode muss ein Servicename für jeden Befehl angegeben werden.\n" | 98 | "%s: Im passive mode muss ein Servicename für jeden Befehl angegeben werden.\n" |
93 | 99 | ||
94 | #: plugins/check_by_ssh.c:309 | 100 | #: plugins/check_by_ssh.c:332 |
95 | #, c-format | 101 | #, c-format |
96 | msgid "" | 102 | msgid "" |
97 | "%s: In passive mode, you must provide the host short name from the nagios " | 103 | "%s: In passive mode, you must provide the host short name from the nagios " |
@@ -100,119 +106,123 @@ msgstr "" | |||
100 | "%s: Im passive mode muss der \"host short name\" aus der Nagios " | 106 | "%s: Im passive mode muss der \"host short name\" aus der Nagios " |
101 | "Konfiguration angegeben werden\n" | 107 | "Konfiguration angegeben werden\n" |
102 | 108 | ||
103 | #: plugins/check_by_ssh.c:323 | 109 | #: plugins/check_by_ssh.c:346 |
104 | #, fuzzy, c-format | 110 | #, fuzzy, c-format |
105 | msgid "This plugin uses SSH to execute commands on a remote host" | 111 | msgid "This plugin uses SSH to execute commands on a remote host" |
106 | msgstr "" | 112 | msgstr "" |
107 | "Dieses Plugin nutzt SSH um Befehle auf dem entfernten Rechner auszuführen\n" | 113 | "Dieses Plugin nutzt SSH um Befehle auf dem entfernten Rechner auszuführen\n" |
108 | "\n" | 114 | "\n" |
109 | 115 | ||
110 | #: plugins/check_by_ssh.c:336 | 116 | #: plugins/check_by_ssh.c:359 |
111 | msgid "tell ssh to use Protocol 1" | 117 | msgid "tell ssh to use Protocol 1 [optional]" |
118 | msgstr "" | ||
119 | |||
120 | #: plugins/check_by_ssh.c:361 | ||
121 | msgid "tell ssh to use Protocol 2 [optional]" | ||
112 | msgstr "" | 122 | msgstr "" |
113 | 123 | ||
114 | #: plugins/check_by_ssh.c:338 | 124 | #: plugins/check_by_ssh.c:363 |
115 | msgid "tell ssh to use Protocol 2" | 125 | msgid "Ignore all or (if specified) first n lines on STDOUT [optional]" |
116 | msgstr "" | 126 | msgstr "" |
117 | 127 | ||
118 | #: plugins/check_by_ssh.c:340 | 128 | #: plugins/check_by_ssh.c:365 |
119 | msgid "Ignore first n lines on STDERR (to suppress a logon banner)" | 129 | msgid "Ignore all or (if specified) first n lines on STDERR [optional]" |
120 | msgstr "" | 130 | msgstr "" |
121 | 131 | ||
122 | #: plugins/check_by_ssh.c:342 | 132 | #: plugins/check_by_ssh.c:367 |
123 | msgid "tells ssh to fork rather than create a tty" | 133 | msgid "tells ssh to fork rather than create a tty [optional]" |
124 | msgstr "" | 134 | msgstr "" |
125 | 135 | ||
126 | #: plugins/check_by_ssh.c:344 | 136 | #: plugins/check_by_ssh.c:369 |
127 | msgid "command to execute on the remote machine" | 137 | msgid "command to execute on the remote machine" |
128 | msgstr "" | 138 | msgstr "" |
129 | 139 | ||
130 | #: plugins/check_by_ssh.c:346 | 140 | #: plugins/check_by_ssh.c:371 |
131 | msgid "SSH user name on remote host [optional]" | 141 | msgid "SSH user name on remote host [optional]" |
132 | msgstr "" | 142 | msgstr "" |
133 | 143 | ||
134 | #: plugins/check_by_ssh.c:348 | 144 | #: plugins/check_by_ssh.c:373 |
135 | msgid "identity of an authorized key [optional]" | 145 | msgid "identity of an authorized key [optional]" |
136 | msgstr "" | 146 | msgstr "" |
137 | 147 | ||
138 | #: plugins/check_by_ssh.c:350 | 148 | #: plugins/check_by_ssh.c:375 |
139 | msgid "external command file for nagios [optional]" | 149 | msgid "external command file for nagios [optional]" |
140 | msgstr "" | 150 | msgstr "" |
141 | 151 | ||
142 | #: plugins/check_by_ssh.c:352 | 152 | #: plugins/check_by_ssh.c:377 |
143 | msgid "list of nagios service names, separated by ':' [optional]" | 153 | msgid "list of nagios service names, separated by ':' [optional]" |
144 | msgstr "" | 154 | msgstr "" |
145 | 155 | ||
146 | #: plugins/check_by_ssh.c:354 | 156 | #: plugins/check_by_ssh.c:379 |
147 | msgid "short name of host in nagios configuration [optional]" | 157 | msgid "short name of host in nagios configuration [optional]" |
148 | msgstr "" | 158 | msgstr "" |
149 | 159 | ||
150 | #: plugins/check_by_ssh.c:356 | 160 | #: plugins/check_by_ssh.c:381 |
151 | msgid "Call ssh with '-o OPTION' (may be used multiple times) [optional]" | 161 | msgid "Call ssh with '-o OPTION' (may be used multiple times) [optional]" |
152 | msgstr "" | 162 | msgstr "" |
153 | 163 | ||
154 | #: plugins/check_by_ssh.c:358 | 164 | #: plugins/check_by_ssh.c:383 |
155 | msgid "Tell ssh to suppress warning and diagnostic messages [optional]" | 165 | msgid "Tell ssh to suppress warning and diagnostic messages [optional]" |
156 | msgstr "" | 166 | msgstr "" |
157 | 167 | ||
158 | #: plugins/check_by_ssh.c:361 | 168 | #: plugins/check_by_ssh.c:386 |
159 | msgid "The most common mode of use is to refer to a local identity file with" | 169 | msgid "The most common mode of use is to refer to a local identity file with" |
160 | msgstr "" | 170 | msgstr "" |
161 | 171 | ||
162 | #: plugins/check_by_ssh.c:362 | 172 | #: plugins/check_by_ssh.c:387 |
163 | msgid "the '-i' option. In this mode, the identity pair should have a null" | 173 | msgid "the '-i' option. In this mode, the identity pair should have a null" |
164 | msgstr "" | 174 | msgstr "" |
165 | 175 | ||
166 | #: plugins/check_by_ssh.c:363 | 176 | #: plugins/check_by_ssh.c:388 |
167 | msgid "passphrase and the public key should be listed in the authorized_keys" | 177 | msgid "passphrase and the public key should be listed in the authorized_keys" |
168 | msgstr "" | 178 | msgstr "" |
169 | 179 | ||
170 | #: plugins/check_by_ssh.c:364 | 180 | #: plugins/check_by_ssh.c:389 |
171 | msgid "file of the remote host. Usually the key will be restricted to running" | 181 | msgid "file of the remote host. Usually the key will be restricted to running" |
172 | msgstr "" | 182 | msgstr "" |
173 | 183 | ||
174 | #: plugins/check_by_ssh.c:365 | 184 | #: plugins/check_by_ssh.c:390 |
175 | msgid "only one command on the remote server. If the remote SSH server tracks" | 185 | msgid "only one command on the remote server. If the remote SSH server tracks" |
176 | msgstr "" | 186 | msgstr "" |
177 | 187 | ||
178 | #: plugins/check_by_ssh.c:366 | 188 | #: plugins/check_by_ssh.c:391 |
179 | msgid "invocation arguments, the one remote program may be an agent that can" | 189 | msgid "invocation arguments, the one remote program may be an agent that can" |
180 | msgstr "" | 190 | msgstr "" |
181 | 191 | ||
182 | #: plugins/check_by_ssh.c:367 | 192 | #: plugins/check_by_ssh.c:392 |
183 | msgid "execute additional commands as proxy" | 193 | msgid "execute additional commands as proxy" |
184 | msgstr "" | 194 | msgstr "" |
185 | 195 | ||
186 | #: plugins/check_by_ssh.c:368 | 196 | #: plugins/check_by_ssh.c:393 |
187 | msgid "To use passive mode, provide multiple '-C' options, and provide" | 197 | msgid "To use passive mode, provide multiple '-C' options, and provide" |
188 | msgstr "" | 198 | msgstr "" |
189 | 199 | ||
190 | #: plugins/check_by_ssh.c:369 | 200 | #: plugins/check_by_ssh.c:394 |
191 | msgid "" | 201 | msgid "" |
192 | "all of -O, -s, and -n options (servicelist order must match '-C'options)" | 202 | "all of -O, -s, and -n options (servicelist order must match '-C'options)" |
193 | msgstr "" | 203 | msgstr "" |
194 | 204 | ||
195 | #: plugins/check_by_ssh.c:371 plugins/check_disk.c:901 | 205 | #: plugins/check_by_ssh.c:396 plugins/check_disk.c:902 |
196 | #: plugins/check_http.c:1324 plugins/check_nagios.c:303 | 206 | #: plugins/check_http.c:1324 plugins/check_nagios.c:303 |
197 | #: plugins/check_procs.c:735 plugins/negate.c:269 plugins/urlize.c:187 | 207 | #: plugins/check_procs.c:735 plugins/negate.c:269 plugins/urlize.c:187 |
198 | #, c-format | 208 | #, c-format |
199 | msgid "Examples:" | 209 | msgid "Examples:" |
200 | msgstr "" | 210 | msgstr "" |
201 | 211 | ||
202 | #: plugins/check_by_ssh.c:385 plugins/check_dig.c:336 plugins/check_disk.c:912 | 212 | #: plugins/check_by_ssh.c:410 plugins/check_dig.c:336 plugins/check_disk.c:913 |
203 | #: plugins/check_dns.c:447 plugins/check_dummy.c:127 plugins/check_fping.c:407 | 213 | #: plugins/check_dns.c:447 plugins/check_dummy.c:127 plugins/check_fping.c:407 |
204 | #: plugins/check_game.c:334 plugins/check_hpjd.c:415 plugins/check_http.c:1347 | 214 | #: plugins/check_game.c:334 plugins/check_hpjd.c:415 plugins/check_http.c:1347 |
205 | #: plugins/check_ldap.c:411 plugins/check_load.c:311 plugins/check_mrtg.c:383 | 215 | #: plugins/check_ldap.c:411 plugins/check_load.c:326 plugins/check_mrtg.c:383 |
206 | #: plugins/check_mysql.c:407 plugins/check_nagios.c:313 plugins/check_nt.c:707 | 216 | #: plugins/check_mysql.c:407 plugins/check_nagios.c:313 plugins/check_nt.c:707 |
207 | #: plugins/check_ntp.c:859 plugins/check_nwstat.c:1688 | 217 | #: plugins/check_ntp.c:859 plugins/check_nwstat.c:1688 |
208 | #: plugins/check_overcr.c:469 plugins/check_pgsql.c:458 | 218 | #: plugins/check_overcr.c:469 plugins/check_pgsql.c:458 |
209 | #: plugins/check_ping.c:597 plugins/check_procs.c:753 | 219 | #: plugins/check_ping.c:597 plugins/check_procs.c:753 |
210 | #: plugins/check_radius.c:349 plugins/check_real.c:454 | 220 | #: plugins/check_radius.c:349 plugins/check_real.c:454 |
211 | #: plugins/check_smtp.c:780 plugins/check_snmp.c:1007 plugins/check_ssh.c:306 | 221 | #: plugins/check_smtp.c:780 plugins/check_snmp.c:1011 plugins/check_ssh.c:306 |
212 | #: plugins/check_swap.c:560 plugins/check_tcp.c:656 plugins/check_time.c:373 | 222 | #: plugins/check_swap.c:560 plugins/check_tcp.c:656 plugins/check_time.c:373 |
213 | #: plugins/check_ups.c:653 plugins/check_users.c:230 | 223 | #: plugins/check_ups.c:657 plugins/check_users.c:230 |
214 | #: plugins/check_ide_smart.c:544 plugins/negate.c:290 plugins/urlize.c:204 | 224 | #: plugins/check_ide_smart.c:544 plugins/negate.c:290 plugins/urlize.c:204 |
215 | #: plugins-root/check_dhcp.c:1283 plugins-root/check_icmp.c:1282 | 225 | #: plugins-root/check_dhcp.c:1304 plugins-root/check_icmp.c:1282 |
216 | #, c-format | 226 | #, c-format |
217 | msgid "Usage:" | 227 | msgid "Usage:" |
218 | msgstr "" | 228 | msgstr "" |
@@ -295,11 +305,10 @@ msgstr "" | |||
295 | msgid "DISK %s: %s not found\n" | 305 | msgid "DISK %s: %s not found\n" |
296 | msgstr "%s [%s nicht gefunden]" | 306 | msgstr "%s [%s nicht gefunden]" |
297 | 307 | ||
298 | #: plugins/check_disk.c:213 plugins/check_disk.c:751 plugins/check_dns.c:208 | 308 | #: plugins/check_disk.c:213 plugins/check_disk.c:752 plugins/check_dns.c:208 |
299 | #: plugins/check_dummy.c:81 plugins/check_http.c:959 plugins/check_http.c:1022 | 309 | #: plugins/check_dummy.c:81 plugins/check_mysql.c:214 |
300 | #: plugins/check_mysql.c:214 plugins/check_nagios.c:107 | 310 | #: plugins/check_nagios.c:107 plugins/check_nagios.c:171 |
301 | #: plugins/check_nagios.c:171 plugins/check_nagios.c:175 | 311 | #: plugins/check_nagios.c:175 plugins/check_procs.c:302 |
302 | #: plugins/check_procs.c:302 | ||
303 | #, c-format | 312 | #, c-format |
304 | msgid "CRITICAL" | 313 | msgid "CRITICAL" |
305 | msgstr "CRITICAL" | 314 | msgstr "CRITICAL" |
@@ -316,7 +325,6 @@ msgstr "konnte keinen Speicher für '%s' reservieren\n" | |||
316 | 325 | ||
317 | #: plugins/check_disk.c:606 plugins/check_disk.c:643 plugins/check_disk.c:653 | 326 | #: plugins/check_disk.c:606 plugins/check_disk.c:643 plugins/check_disk.c:653 |
318 | #: plugins/check_disk.c:659 plugins/check_disk.c:678 plugins/check_dummy.c:84 | 327 | #: plugins/check_disk.c:659 plugins/check_disk.c:678 plugins/check_dummy.c:84 |
319 | #: plugins/check_http.c:953 | ||
320 | #, c-format | 328 | #, c-format |
321 | msgid "UNKNOWN" | 329 | msgid "UNKNOWN" |
322 | msgstr "UNKNOWN" | 330 | msgstr "UNKNOWN" |
@@ -348,17 +356,17 @@ msgstr "" | |||
348 | "%s: Unbekanntes Argument: %s\n" | 356 | "%s: Unbekanntes Argument: %s\n" |
349 | "\n" | 357 | "\n" |
350 | 358 | ||
351 | #: plugins/check_disk.c:752 | 359 | #: plugins/check_disk.c:753 |
352 | #, fuzzy, c-format | 360 | #, fuzzy, c-format |
353 | msgid "%s does not exist\n" | 361 | msgid "%s does not exist\n" |
354 | msgstr "%s [%s nicht gefunden]" | 362 | msgstr "%s [%s nicht gefunden]" |
355 | 363 | ||
356 | #: plugins/check_disk.c:781 | 364 | #: plugins/check_disk.c:782 |
357 | #, c-format | 365 | #, c-format |
358 | msgid " for %s\n" | 366 | msgid " for %s\n" |
359 | msgstr "" | 367 | msgstr "" |
360 | 368 | ||
361 | #: plugins/check_disk.c:849 | 369 | #: plugins/check_disk.c:850 |
362 | #, fuzzy | 370 | #, fuzzy |
363 | msgid "" | 371 | msgid "" |
364 | "This plugin checks the amount of used disk space on a mounted file system" | 372 | "This plugin checks the amount of used disk space on a mounted file system" |
@@ -368,7 +376,7 @@ msgstr "" | |||
368 | "unterschritten wird.\n" | 376 | "unterschritten wird.\n" |
369 | "\n" | 377 | "\n" |
370 | 378 | ||
371 | #: plugins/check_disk.c:850 | 379 | #: plugins/check_disk.c:851 |
372 | #, fuzzy | 380 | #, fuzzy |
373 | msgid "" | 381 | msgid "" |
374 | "and generates an alert if free space is less than one of the threshold values" | 382 | "and generates an alert if free space is less than one of the threshold values" |
@@ -378,89 +386,89 @@ msgstr "" | |||
378 | "unterschritten wird.\n" | 386 | "unterschritten wird.\n" |
379 | "\n" | 387 | "\n" |
380 | 388 | ||
381 | #: plugins/check_disk.c:859 | 389 | #: plugins/check_disk.c:860 |
382 | msgid "Exit with WARNING status if less than INTEGER units of disk are free" | 390 | msgid "Exit with WARNING status if less than INTEGER units of disk are free" |
383 | msgstr "" | 391 | msgstr "" |
384 | 392 | ||
385 | #: plugins/check_disk.c:861 | 393 | #: plugins/check_disk.c:862 |
386 | msgid "Exit with WARNING status if less than PERCENT of disk space is free" | 394 | msgid "Exit with WARNING status if less than PERCENT of disk space is free" |
387 | msgstr "" | 395 | msgstr "" |
388 | 396 | ||
389 | #: plugins/check_disk.c:863 | 397 | #: plugins/check_disk.c:864 |
390 | msgid "Exit with WARNING status if less than PERCENT of inode space is free" | 398 | msgid "Exit with WARNING status if less than PERCENT of inode space is free" |
391 | msgstr "" | 399 | msgstr "" |
392 | 400 | ||
393 | #: plugins/check_disk.c:865 | 401 | #: plugins/check_disk.c:866 |
394 | msgid "Exit with CRITICAL status if less than PERCENT of inode space is free" | 402 | msgid "Exit with CRITICAL status if less than PERCENT of inode space is free" |
395 | msgstr "" | 403 | msgstr "" |
396 | 404 | ||
397 | #: plugins/check_disk.c:867 | 405 | #: plugins/check_disk.c:868 |
398 | msgid "Exit with CRITICAL status if less than INTEGER units of disk are free" | 406 | msgid "Exit with CRITICAL status if less than INTEGER units of disk are free" |
399 | msgstr "" | 407 | msgstr "" |
400 | 408 | ||
401 | #: plugins/check_disk.c:869 | 409 | #: plugins/check_disk.c:870 |
402 | msgid "Exit with CRITCAL status if less than PERCENT of disk space is free" | 410 | msgid "Exit with CRITCAL status if less than PERCENT of disk space is free" |
403 | msgstr "" | 411 | msgstr "" |
404 | 412 | ||
405 | #: plugins/check_disk.c:871 | 413 | #: plugins/check_disk.c:872 |
406 | msgid "Clear thresholds" | 414 | msgid "Clear thresholds" |
407 | msgstr "" | 415 | msgstr "" |
408 | 416 | ||
409 | #: plugins/check_disk.c:873 | 417 | #: plugins/check_disk.c:874 |
410 | msgid "Choose bytes, kB, MB, GB, TB (default: MB)" | 418 | msgid "Choose bytes, kB, MB, GB, TB (default: MB)" |
411 | msgstr "" | 419 | msgstr "" |
412 | 420 | ||
413 | #: plugins/check_disk.c:875 | 421 | #: plugins/check_disk.c:876 |
414 | msgid "Same as '--units kB'" | 422 | msgid "Same as '--units kB'" |
415 | msgstr "" | 423 | msgstr "" |
416 | 424 | ||
417 | #: plugins/check_disk.c:877 | 425 | #: plugins/check_disk.c:878 |
418 | msgid "Same as '--units MB'" | 426 | msgid "Same as '--units MB'" |
419 | msgstr "" | 427 | msgstr "" |
420 | 428 | ||
421 | #: plugins/check_disk.c:879 | 429 | #: plugins/check_disk.c:880 |
422 | msgid "Only check local filesystems" | 430 | msgid "Only check local filesystems" |
423 | msgstr "" | 431 | msgstr "" |
424 | 432 | ||
425 | #: plugins/check_disk.c:881 | 433 | #: plugins/check_disk.c:882 |
426 | msgid "Path or partition (may be repeated)" | 434 | msgid "Path or partition (may be repeated)" |
427 | msgstr "" | 435 | msgstr "" |
428 | 436 | ||
429 | #: plugins/check_disk.c:883 | 437 | #: plugins/check_disk.c:884 |
430 | msgid "Regular expression for path or partition (may be repeated)" | 438 | msgid "Regular expression for path or partition (may be repeated)" |
431 | msgstr "" | 439 | msgstr "" |
432 | 440 | ||
433 | #: plugins/check_disk.c:885 | 441 | #: plugins/check_disk.c:886 |
434 | msgid "" | 442 | msgid "" |
435 | "Case insensitive regular expression for path/partition (may be repeated)" | 443 | "Case insensitive regular expression for path/partition (may be repeated)" |
436 | msgstr "" | 444 | msgstr "" |
437 | 445 | ||
438 | #: plugins/check_disk.c:887 | 446 | #: plugins/check_disk.c:888 |
439 | msgid "" | 447 | msgid "" |
440 | "Group pathes. Thresholds apply to (free-)space of all partitions together" | 448 | "Group pathes. Thresholds apply to (free-)space of all partitions together" |
441 | msgstr "" | 449 | msgstr "" |
442 | 450 | ||
443 | #: plugins/check_disk.c:889 | 451 | #: plugins/check_disk.c:890 |
444 | msgid "Ignore device (only works if -p unspecified)" | 452 | msgid "Ignore device (only works if -p unspecified)" |
445 | msgstr "" | 453 | msgstr "" |
446 | 454 | ||
447 | #: plugins/check_disk.c:891 | 455 | #: plugins/check_disk.c:892 |
448 | msgid "Ignore all filesystems of indicated type (may be repeated)" | 456 | msgid "Ignore all filesystems of indicated type (may be repeated)" |
449 | msgstr "" | 457 | msgstr "" |
450 | 458 | ||
451 | #: plugins/check_disk.c:893 | 459 | #: plugins/check_disk.c:894 |
452 | msgid "Display the mountpoint instead of the partition" | 460 | msgid "Display the mountpoint instead of the partition" |
453 | msgstr "" | 461 | msgstr "" |
454 | 462 | ||
455 | #: plugins/check_disk.c:895 | 463 | #: plugins/check_disk.c:896 |
456 | msgid "For paths or partitions specified with -p, only check for exact paths" | 464 | msgid "For paths or partitions specified with -p, only check for exact paths" |
457 | msgstr "" | 465 | msgstr "" |
458 | 466 | ||
459 | #: plugins/check_disk.c:897 | 467 | #: plugins/check_disk.c:898 |
460 | msgid "Display only devices/mountpoints with errors" | 468 | msgid "Display only devices/mountpoints with errors" |
461 | msgstr "" | 469 | msgstr "" |
462 | 470 | ||
463 | #: plugins/check_disk.c:903 | 471 | #: plugins/check_disk.c:904 |
464 | msgid "Checks /tmp and /var at 10% and 5%, and / at 100MB and 50MB" | 472 | msgid "Checks /tmp and /var at 10% and 5%, and / at 100MB and 50MB" |
465 | msgstr "" | 473 | msgstr "" |
466 | 474 | ||
@@ -497,15 +505,14 @@ msgstr "Erwartet: %s aber: %s erhalten" | |||
497 | msgid "server %s is not authoritative for %s" | 505 | msgid "server %s is not authoritative for %s" |
498 | msgstr "Server %s ist nicht autoritativ für %s" | 506 | msgstr "Server %s ist nicht autoritativ für %s" |
499 | 507 | ||
500 | #: plugins/check_dns.c:204 plugins/check_dummy.c:75 plugins/check_http.c:955 | 508 | #: plugins/check_dns.c:204 plugins/check_dummy.c:75 plugins/check_nagios.c:185 |
501 | #: plugins/check_nagios.c:185 plugins/check_procs.c:295 | 509 | #: plugins/check_procs.c:295 |
502 | #, c-format | 510 | #, c-format |
503 | msgid "OK" | 511 | msgid "OK" |
504 | msgstr "OK" | 512 | msgstr "OK" |
505 | 513 | ||
506 | #: plugins/check_dns.c:206 plugins/check_dummy.c:78 plugins/check_http.c:957 | 514 | #: plugins/check_dns.c:206 plugins/check_dummy.c:78 plugins/check_mysql.c:211 |
507 | #: plugins/check_mysql.c:211 plugins/check_nagios.c:185 | 515 | #: plugins/check_nagios.c:185 plugins/check_procs.c:297 |
508 | #: plugins/check_procs.c:297 | ||
509 | #, c-format | 516 | #, c-format |
510 | msgid "WARNING" | 517 | msgid "WARNING" |
511 | msgstr "WARNING" | 518 | msgstr "WARNING" |
@@ -664,7 +671,7 @@ msgstr "" | |||
664 | msgid "Could not open pipe: %s\n" | 671 | msgid "Could not open pipe: %s\n" |
665 | msgstr "Pipe: %s konnte nicht geöffnet werden\n" | 672 | msgstr "Pipe: %s konnte nicht geöffnet werden\n" |
666 | 673 | ||
667 | #: plugins/check_fping.c:109 plugins/check_hpjd.c:137 plugins/check_load.c:153 | 674 | #: plugins/check_fping.c:109 plugins/check_hpjd.c:137 plugins/check_load.c:155 |
668 | #: plugins/check_procs.c:165 plugins/check_snmp.c:209 plugins/check_swap.c:184 | 675 | #: plugins/check_procs.c:165 plugins/check_snmp.c:209 plugins/check_swap.c:184 |
669 | #: plugins/check_users.c:81 plugins/negate.c:117 plugins/urlize.c:123 | 676 | #: plugins/check_users.c:81 plugins/negate.c:117 plugins/urlize.c:123 |
670 | #, c-format | 677 | #, c-format |
@@ -824,7 +831,7 @@ msgstr "" | |||
824 | #: plugins/check_game.c:318 plugins/check_http.c:1312 plugins/check_mrtg.c:364 | 831 | #: plugins/check_game.c:318 plugins/check_http.c:1312 plugins/check_mrtg.c:364 |
825 | #: plugins/check_mrtgtraf.c:361 plugins/check_nt.c:693 | 832 | #: plugins/check_mrtgtraf.c:361 plugins/check_nt.c:693 |
826 | #: plugins/check_nwstat.c:1673 plugins/check_overcr.c:452 | 833 | #: plugins/check_nwstat.c:1673 plugins/check_overcr.c:452 |
827 | #: plugins/check_swap.c:549 plugins/check_ups.c:629 plugins/negate.c:276 | 834 | #: plugins/check_swap.c:549 plugins/check_ups.c:633 plugins/negate.c:276 |
828 | #, c-format | 835 | #, c-format |
829 | msgid "Notes:" | 836 | msgid "Notes:" |
830 | msgstr "" | 837 | msgstr "" |
@@ -963,50 +970,50 @@ msgid "You must specify a server address or host name" | |||
963 | msgstr "Hostname oder Serveradresse muss angegeben werden" | 970 | msgstr "Hostname oder Serveradresse muss angegeben werden" |
964 | 971 | ||
965 | #: plugins/check_http.c:665 | 972 | #: plugins/check_http.c:665 |
966 | msgid "Server date unknown\n" | 973 | msgid "HTTP UNKNOWN - Server date unknown\n" |
967 | msgstr "Serverdatum unbekannt\n" | 974 | msgstr "HTTP UNKNOWN - Serverdatum unbekannt\n" |
968 | 975 | ||
969 | #: plugins/check_http.c:667 | 976 | #: plugins/check_http.c:667 |
970 | msgid "Document modification date unknown\n" | 977 | msgid "HTTP CRITICAL - Document modification date unknown\n" |
971 | msgstr "Datum der letzten Änderung unbekannt\n" | 978 | msgstr "HTTP CRITICAL - Datum der letzten Änderung unbekannt\n" |
972 | 979 | ||
973 | #: plugins/check_http.c:673 | 980 | #: plugins/check_http.c:673 |
974 | #, c-format | 981 | #, c-format |
975 | msgid "CRITICAL - Server date \"%100s\" unparsable" | 982 | msgid "HTTP CRITICAL - Server date \"%100s\" unparsable" |
976 | msgstr "CRITICAL - Serverdatum \"%100s\" konnte nicht verarbeitet werden" | 983 | msgstr "HTTP CRITICAL - Serverdatum \"%100s\" konnte nicht verarbeitet werden" |
977 | 984 | ||
978 | #: plugins/check_http.c:675 | 985 | #: plugins/check_http.c:675 |
979 | #, c-format | 986 | #, c-format |
980 | msgid "CRITICAL - Document date \"%100s\" unparsable" | 987 | msgid "HTTP CRITICAL - Document date \"%100s\" unparsable" |
981 | msgstr "CRITICAL - Dokumentendatum \"%100s\" konnte nicht verarbeitet werden" | 988 | msgstr "HTTP CRITICAL - Dokumentendatum \"%100s\" konnte nicht verarbeitet werden" |
982 | 989 | ||
983 | #: plugins/check_http.c:677 | 990 | #: plugins/check_http.c:677 |
984 | #, c-format | 991 | #, c-format |
985 | msgid "CRITICAL - Document is %d seconds in the future\n" | 992 | msgid "HTTP CRITICAL - Document is %d seconds in the future\n" |
986 | msgstr "CRITICAL - Dokumentendatum ist %d Sekunden in der Zukunft\n" | 993 | msgstr "HTTP CRITICAL - Dokumentendatum ist %d Sekunden in der Zukunft\n" |
987 | 994 | ||
988 | #: plugins/check_http.c:682 | 995 | #: plugins/check_http.c:682 |
989 | #, c-format | 996 | #, c-format |
990 | msgid "CRITICAL - Last modified %.1f days ago\n" | 997 | msgid "HTTP CRITICAL - Last modified %.1f days ago\n" |
991 | msgstr "CRITICAL - Letzte Änderung vor %.1f Tagen\n" | 998 | msgstr "HTTP CRITICAL - Letzte Änderung vor %.1f Tagen\n" |
992 | 999 | ||
993 | #: plugins/check_http.c:686 | 1000 | #: plugins/check_http.c:686 |
994 | #, c-format | 1001 | #, c-format |
995 | msgid "CRITICAL - Last modified %d:%02d:%02d ago\n" | 1002 | msgid "HTTP CRITICAL - Last modified %d:%02d:%02d ago\n" |
996 | msgstr "CRITICAL - Letzte Änderung vor %d:%02d:%02d \n" | 1003 | msgstr "HTTP CRITICAL - Letzte Änderung vor %d:%02d:%02d \n" |
997 | 1004 | ||
998 | #: plugins/check_http.c:767 | 1005 | #: plugins/check_http.c:767 |
999 | msgid "Unable to open TCP socket\n" | 1006 | msgid "HTTP CRITICAL - Unable to open TCP socket\n" |
1000 | msgstr "Konnte TCP socket nicht öffnen\n" | 1007 | msgstr "HTTP CRITICAL - Konnte TCP socket nicht öffnen\n" |
1001 | 1008 | ||
1002 | #: plugins/check_http.c:847 | 1009 | #: plugins/check_http.c:847 |
1003 | msgid "Error on receive\n" | 1010 | msgid "HTTP CRITICAL - Error on receive\n" |
1004 | msgstr "Fehler beim Empfangen\n" | 1011 | msgstr "HTTP CRITICAL - Fehler beim Empfangen\n" |
1005 | 1012 | ||
1006 | #: plugins/check_http.c:857 plugins/check_real.c:189 plugins/check_tcp.c:291 | 1013 | #: plugins/check_http.c:857 |
1007 | #, c-format | 1014 | #, fuzzy |
1008 | msgid "No data received from host\n" | 1015 | msgid "HTTP CRITICAL - No data received from host\n" |
1009 | msgstr "" | 1016 | msgstr "HTTP CRITICAL - Keine Daten empfangen\n" |
1010 | 1017 | ||
1011 | #: plugins/check_http.c:907 | 1018 | #: plugins/check_http.c:907 |
1012 | msgid "Invalid HTTP response received from host\n" | 1019 | msgid "Invalid HTTP response received from host\n" |
@@ -1042,6 +1049,26 @@ msgstr "HTTP CRITICAL: %s\n" | |||
1042 | msgid "HTTP WARNING: %s\n" | 1049 | msgid "HTTP WARNING: %s\n" |
1043 | msgstr "HTTP WARNING: %s\n" | 1050 | msgstr "HTTP WARNING: %s\n" |
1044 | 1051 | ||
1052 | #: plugins/check_http.c:953 | ||
1053 | #, c-format | ||
1054 | msgid "HTTP UNKNOWN" | ||
1055 | msgstr "HTTP UNKNOWN" | ||
1056 | |||
1057 | #: plugins/check_http.c:955 | ||
1058 | #, c-format | ||
1059 | msgid "HTTP OK" | ||
1060 | msgstr "HTTP OK" | ||
1061 | |||
1062 | #: plugins/check_http.c:957 | ||
1063 | #, c-format | ||
1064 | msgid "HTTP WARNING" | ||
1065 | msgstr "HTTP WARNING" | ||
1066 | |||
1067 | #: plugins/check_http.c:959 plugins/check_http.c:1022 | ||
1068 | #, c-format | ||
1069 | msgid "HTTP CRITICAL" | ||
1070 | msgstr "HTTP CRITICAL" | ||
1071 | |||
1045 | #: plugins/check_http.c:963 | 1072 | #: plugins/check_http.c:963 |
1046 | #, fuzzy, c-format | 1073 | #, fuzzy, c-format |
1047 | msgid " - %s - %.3f second response time %s|%s %s\n" | 1074 | msgid " - %s - %.3f second response time %s|%s %s\n" |
@@ -1059,8 +1086,8 @@ msgstr "HTTP OK %s - %.3f Sekunde Antwortzeit %s%s|%s %s\n" | |||
1059 | 1086 | ||
1060 | #: plugins/check_http.c:1000 | 1087 | #: plugins/check_http.c:1000 |
1061 | #, c-format | 1088 | #, c-format |
1062 | msgid "CRITICAL - string not found%s|%s %s\n" | 1089 | msgid "HTTP CRITICAL - string not found%s|%s %s\n" |
1063 | msgstr "CRITICAL - Text nicht gefunden%s|%s %s\n" | 1090 | msgstr "HTTP CRITICAL - Text nicht gefunden%s|%s %s\n" |
1064 | 1091 | ||
1065 | #: plugins/check_http.c:1018 | 1092 | #: plugins/check_http.c:1018 |
1066 | #, fuzzy | 1093 | #, fuzzy |
@@ -1073,8 +1100,8 @@ msgstr "" | |||
1073 | 1100 | ||
1074 | #: plugins/check_http.c:1030 | 1101 | #: plugins/check_http.c:1030 |
1075 | #, c-format | 1102 | #, c-format |
1076 | msgid "CRITICAL - Execute Error: %s\n" | 1103 | msgid "HTTP CRITICAL - Execute Error: %s\n" |
1077 | msgstr "CRITICAL - Fehler: %s\n" | 1104 | msgstr "HTTP CRITICAL - Fehler: %s\n" |
1078 | 1105 | ||
1079 | #: plugins/check_http.c:1039 | 1106 | #: plugins/check_http.c:1039 |
1080 | #, fuzzy, c-format | 1107 | #, fuzzy, c-format |
@@ -1092,36 +1119,37 @@ msgid "HTTP OK %s - %d bytes in %.3f seconds %s|%s %s\n" | |||
1092 | msgstr "HTTP OK %s - %.3f Sekunde Antwortzeit %s%s|%s %s\n" | 1119 | msgstr "HTTP OK %s - %.3f Sekunde Antwortzeit %s%s|%s %s\n" |
1093 | 1120 | ||
1094 | #: plugins/check_http.c:1083 | 1121 | #: plugins/check_http.c:1083 |
1095 | msgid "Could not allocate addr\n" | 1122 | msgid "HTTP UNKNOWN - Could not allocate addr\n" |
1096 | msgstr "Konnte addr nicht zuweisen\n" | 1123 | msgstr "HTTP UNKNOWN - Konnte addr nicht zuweisen\n" |
1097 | 1124 | ||
1098 | #: plugins/check_http.c:1087 | 1125 | #: plugins/check_http.c:1087 |
1099 | msgid "Could not allocate url\n" | 1126 | msgid "HTTP UNKNOWN - Could not allocate url\n" |
1100 | msgstr "Konnte·url·nicht·zuweisen\n" | 1127 | msgstr "HTTP UNKNOWN - Konnte·url·nicht·zuweisen\n" |
1101 | 1128 | ||
1102 | #: plugins/check_http.c:1096 | 1129 | #: plugins/check_http.c:1096 |
1103 | #, c-format | 1130 | #, c-format |
1104 | msgid "UNKNOWN - Could not find redirect location - %s%s\n" | 1131 | msgid "HTTP UNKNOWN - Could not find redirect location - %s%s\n" |
1105 | msgstr "" | 1132 | msgstr "" |
1106 | 1133 | ||
1107 | #: plugins/check_http.c:1106 | 1134 | #: plugins/check_http.c:1106 |
1108 | msgid "could not allocate url\n" | 1135 | #, fuzzy |
1109 | msgstr "" | 1136 | msgid "HTTP UNKNOWN - could not allocate url\n" |
1137 | msgstr "HTTP UNKNOWN - Konnte·url·nicht·zuweisen\n" | ||
1110 | 1138 | ||
1111 | #: plugins/check_http.c:1149 | 1139 | #: plugins/check_http.c:1149 |
1112 | #, c-format | 1140 | #, c-format |
1113 | msgid "UNKNOWN - Could not parse redirect location - %s%s\n" | 1141 | msgid "HTTP UNKNOWN - Could not parse redirect location - %s%s\n" |
1114 | msgstr "" | 1142 | msgstr "" |
1115 | 1143 | ||
1116 | #: plugins/check_http.c:1159 | 1144 | #: plugins/check_http.c:1159 |
1117 | #, c-format | 1145 | #, fuzzy, c-format |
1118 | msgid "WARNING - maximum redirection depth %d exceeded - %s://%s:%d%s%s\n" | 1146 | msgid "HTTP WARNING - maximum redirection depth %d exceeded - %s://%s:%d%s%s\n" |
1119 | msgstr "" | 1147 | msgstr "HTTP WARNING - Umleitung verursacht eine Schleife - %s://%s:%d%s%s\n" |
1120 | 1148 | ||
1121 | #: plugins/check_http.c:1167 | 1149 | #: plugins/check_http.c:1167 |
1122 | #, c-format | 1150 | #, c-format |
1123 | msgid "WARNING - redirection creates an infinite loop - %s://%s:%d%s%s\n" | 1151 | msgid "HTTP WARNING - redirection creates an infinite loop - %s://%s:%d%s%s\n" |
1124 | msgstr "WARNING - Umleitung verursacht eine Schleife - %s://%s:%d%s%s\n" | 1152 | msgstr "HTTP WARNING - Umleitung verursacht eine Schleife - %s://%s:%d%s%s\n" |
1125 | 1153 | ||
1126 | #: plugins/check_http.c:1231 | 1154 | #: plugins/check_http.c:1231 |
1127 | #, fuzzy | 1155 | #, fuzzy |
@@ -1426,69 +1454,73 @@ msgstr "" | |||
1426 | msgid "use ldap protocol version 3" | 1454 | msgid "use ldap protocol version 3" |
1427 | msgstr "" | 1455 | msgstr "" |
1428 | 1456 | ||
1429 | #: plugins/check_load.c:91 | 1457 | #: plugins/check_load.c:92 |
1430 | msgid "Warning threshold must be float or float triplet!\n" | 1458 | msgid "Warning threshold must be float or float triplet!\n" |
1431 | msgstr "" | 1459 | msgstr "" |
1432 | 1460 | ||
1433 | #: plugins/check_load.c:132 plugins/check_load.c:148 | 1461 | #: plugins/check_load.c:134 plugins/check_load.c:150 |
1434 | #, c-format | 1462 | #, c-format |
1435 | msgid "Error opening %s\n" | 1463 | msgid "Error opening %s\n" |
1436 | msgstr "" | 1464 | msgstr "" |
1437 | 1465 | ||
1438 | #: plugins/check_load.c:160 | 1466 | #: plugins/check_load.c:162 |
1439 | #, c-format | 1467 | #, c-format |
1440 | msgid "Error code %d returned in %s\n" | 1468 | msgid "Error code %d returned in %s\n" |
1441 | msgstr "" | 1469 | msgstr "" |
1442 | 1470 | ||
1443 | #: plugins/check_load.c:168 | 1471 | #: plugins/check_load.c:177 |
1444 | #, c-format | 1472 | #, c-format |
1445 | msgid "Error in getloadavg()\n" | 1473 | msgid "Error in getloadavg()\n" |
1446 | msgstr "" | 1474 | msgstr "" |
1447 | 1475 | ||
1448 | #: plugins/check_load.c:171 plugins/check_load.c:173 | 1476 | #: plugins/check_load.c:180 plugins/check_load.c:182 |
1449 | #, c-format | 1477 | #, c-format |
1450 | msgid "Error processing %s\n" | 1478 | msgid "Error processing %s\n" |
1451 | msgstr "" | 1479 | msgstr "" |
1452 | 1480 | ||
1453 | #: plugins/check_load.c:182 | 1481 | #: plugins/check_load.c:191 |
1454 | #, c-format | 1482 | #, c-format |
1455 | msgid "load average: %.2f, %.2f, %.2f" | 1483 | msgid "load average: %.2f, %.2f, %.2f" |
1456 | msgstr "" | 1484 | msgstr "" |
1457 | 1485 | ||
1458 | #: plugins/check_load.c:271 | 1486 | #: plugins/check_load.c:284 |
1459 | #, fuzzy, c-format | 1487 | #, fuzzy, c-format |
1460 | msgid "Critical threshold for %d-minute load average is not specified\n" | 1488 | msgid "Critical threshold for %d-minute load average is not specified\n" |
1461 | msgstr "Critical threshold muss ein positiver Integer sein\n" | 1489 | msgstr "Critical threshold muss ein positiver Integer sein\n" |
1462 | 1490 | ||
1463 | #: plugins/check_load.c:273 | 1491 | #: plugins/check_load.c:286 |
1464 | #, fuzzy, c-format | 1492 | #, fuzzy, c-format |
1465 | msgid "Warning threshold for %d-minute load average is not specified\n" | 1493 | msgid "Warning threshold for %d-minute load average is not specified\n" |
1466 | msgstr "Warning threshold muss ein positiver Integer sein\n" | 1494 | msgstr "Warning threshold muss ein positiver Integer sein\n" |
1467 | 1495 | ||
1468 | #: plugins/check_load.c:275 | 1496 | #: plugins/check_load.c:288 |
1469 | #, c-format | 1497 | #, c-format |
1470 | msgid "" | 1498 | msgid "" |
1471 | "Parameter inconsistency: %d-minute \"warning load\" is greater than " | 1499 | "Parameter inconsistency: %d-minute \"warning load\" is greater than " |
1472 | "\"critical load\"\n" | 1500 | "\"critical load\"\n" |
1473 | msgstr "" | 1501 | msgstr "" |
1474 | 1502 | ||
1475 | #: plugins/check_load.c:291 | 1503 | #: plugins/check_load.c:304 |
1476 | #, c-format | 1504 | #, c-format |
1477 | msgid "This plugin tests the current system load average." | 1505 | msgid "This plugin tests the current system load average." |
1478 | msgstr "" | 1506 | msgstr "" |
1479 | 1507 | ||
1480 | #: plugins/check_load.c:300 | 1508 | #: plugins/check_load.c:313 |
1481 | msgid "Exit with WARNING status if load average exceeds WLOADn" | 1509 | msgid "Exit with WARNING status if load average exceeds WLOADn" |
1482 | msgstr "" | 1510 | msgstr "" |
1483 | 1511 | ||
1484 | #: plugins/check_load.c:302 | 1512 | #: plugins/check_load.c:315 |
1485 | msgid "Exit with CRITICAL status if load average exceed CLOADn" | 1513 | msgid "Exit with CRITICAL status if load average exceed CLOADn" |
1486 | msgstr "" | 1514 | msgstr "" |
1487 | 1515 | ||
1488 | #: plugins/check_load.c:303 | 1516 | #: plugins/check_load.c:316 |
1489 | msgid "the load average format is the same used by \"uptime\" and \"w\"" | 1517 | msgid "the load average format is the same used by \"uptime\" and \"w\"" |
1490 | msgstr "" | 1518 | msgstr "" |
1491 | 1519 | ||
1520 | #: plugins/check_load.c:318 | ||
1521 | msgid "Divide the load averages by the number of CPUs (when possible)" | ||
1522 | msgstr "" | ||
1523 | |||
1492 | #: plugins/check_mrtg.c:79 | 1524 | #: plugins/check_mrtg.c:79 |
1493 | msgid "Could not parse arguments\n" | 1525 | msgid "Could not parse arguments\n" |
1494 | msgstr "" | 1526 | msgstr "" |
@@ -3467,6 +3499,11 @@ msgstr "Ungültige HTTP Antwort von Host empfangen\n" | |||
3467 | msgid "Invalid REAL response received from host on port %d\n" | 3499 | msgid "Invalid REAL response received from host on port %d\n" |
3468 | msgstr "" | 3500 | msgstr "" |
3469 | 3501 | ||
3502 | #: plugins/check_real.c:189 plugins/check_tcp.c:291 | ||
3503 | #, c-format | ||
3504 | msgid "No data received from host\n" | ||
3505 | msgstr "" | ||
3506 | |||
3470 | #: plugins/check_real.c:252 | 3507 | #: plugins/check_real.c:252 |
3471 | #, c-format | 3508 | #, c-format |
3472 | msgid "REAL %s - %d second response time\n" | 3509 | msgid "REAL %s - %d second response time\n" |
@@ -3582,7 +3619,7 @@ msgstr "" | |||
3582 | msgid "CRITICAL - Cannot retrieve server certificate." | 3619 | msgid "CRITICAL - Cannot retrieve server certificate." |
3583 | msgstr "CRITICAL - Konnte kein Serverzertifikat erhalten\n" | 3620 | msgstr "CRITICAL - Konnte kein Serverzertifikat erhalten\n" |
3584 | 3621 | ||
3585 | #: plugins/check_smtp.c:356 plugins/check_snmp.c:568 | 3622 | #: plugins/check_smtp.c:356 plugins/check_snmp.c:572 |
3586 | #, c-format | 3623 | #, c-format |
3587 | msgid "Could Not Compile Regular Expression" | 3624 | msgid "Could Not Compile Regular Expression" |
3588 | msgstr "" | 3625 | msgstr "" |
@@ -3592,7 +3629,7 @@ msgstr "" | |||
3592 | msgid "SMTP %s - Invalid response '%s' to command '%s'\n" | 3629 | msgid "SMTP %s - Invalid response '%s' to command '%s'\n" |
3593 | msgstr "" | 3630 | msgstr "" |
3594 | 3631 | ||
3595 | #: plugins/check_smtp.c:369 plugins/check_snmp.c:318 | 3632 | #: plugins/check_smtp.c:369 plugins/check_snmp.c:322 |
3596 | #, c-format | 3633 | #, c-format |
3597 | msgid "Execute Error: %s\n" | 3634 | msgid "Execute Error: %s\n" |
3598 | msgstr "" | 3635 | msgstr "" |
@@ -3719,245 +3756,245 @@ msgstr "" | |||
3719 | msgid "STATE_WARNING return values." | 3756 | msgid "STATE_WARNING return values." |
3720 | msgstr "" | 3757 | msgstr "" |
3721 | 3758 | ||
3722 | #: plugins/check_snmp.c:296 | 3759 | #: plugins/check_snmp.c:300 |
3723 | msgid "No valid data returned" | 3760 | msgid "No valid data returned" |
3724 | msgstr "" | 3761 | msgstr "" |
3725 | 3762 | ||
3726 | #: plugins/check_snmp.c:364 plugins/negate.c:128 | 3763 | #: plugins/check_snmp.c:368 plugins/negate.c:128 |
3727 | #, c-format | 3764 | #, c-format |
3728 | msgid "" | 3765 | msgid "" |
3729 | "%s problem - No data received from host\n" | 3766 | "%s problem - No data received from host\n" |
3730 | "CMD: %s\n" | 3767 | "CMD: %s\n" |
3731 | msgstr "" | 3768 | msgstr "" |
3732 | 3769 | ||
3733 | #: plugins/check_snmp.c:502 | 3770 | #: plugins/check_snmp.c:506 |
3734 | #, c-format | 3771 | #, c-format |
3735 | msgid "Invalid critical threshold: %s\n" | 3772 | msgid "Invalid critical threshold: %s\n" |
3736 | msgstr "" | 3773 | msgstr "" |
3737 | 3774 | ||
3738 | #: plugins/check_snmp.c:513 | 3775 | #: plugins/check_snmp.c:517 |
3739 | #, c-format | 3776 | #, c-format |
3740 | msgid "Invalid warning threshold: %s\n" | 3777 | msgid "Invalid warning threshold: %s\n" |
3741 | msgstr "" | 3778 | msgstr "" |
3742 | 3779 | ||
3743 | #: plugins/check_snmp.c:525 | 3780 | #: plugins/check_snmp.c:529 |
3744 | #, fuzzy | 3781 | #, fuzzy |
3745 | msgid "Retries interval must be a positive integer" | 3782 | msgid "Retries interval must be a positive integer" |
3746 | msgstr "Time interval muss ein positiver Integer sein" | 3783 | msgstr "Time interval muss ein positiver Integer sein" |
3747 | 3784 | ||
3748 | #: plugins/check_snmp.c:589 | 3785 | #: plugins/check_snmp.c:593 |
3749 | #, fuzzy, c-format | 3786 | #, fuzzy, c-format |
3750 | msgid "Could not reallocate labels[%d]" | 3787 | msgid "Could not reallocate labels[%d]" |
3751 | msgstr "Konnte addr nicht zuweisen\n" | 3788 | msgstr "Konnte addr nicht zuweisen\n" |
3752 | 3789 | ||
3753 | #: plugins/check_snmp.c:601 | 3790 | #: plugins/check_snmp.c:605 |
3754 | #, fuzzy | 3791 | #, fuzzy |
3755 | msgid "Could not reallocate labels\n" | 3792 | msgid "Could not reallocate labels\n" |
3756 | msgstr "Konnte·url·nicht·zuweisen\n" | 3793 | msgstr "Konnte·url·nicht·zuweisen\n" |
3757 | 3794 | ||
3758 | #: plugins/check_snmp.c:618 | 3795 | #: plugins/check_snmp.c:622 |
3759 | #, fuzzy, c-format | 3796 | #, fuzzy, c-format |
3760 | msgid "Could not reallocate units [%d]\n" | 3797 | msgid "Could not reallocate units [%d]\n" |
3761 | msgstr "Konnte·url·nicht·zuweisen\n" | 3798 | msgstr "Konnte·url·nicht·zuweisen\n" |
3762 | 3799 | ||
3763 | #: plugins/check_snmp.c:630 | 3800 | #: plugins/check_snmp.c:634 |
3764 | msgid "Could not realloc() units\n" | 3801 | msgid "Could not realloc() units\n" |
3765 | msgstr "" | 3802 | msgstr "" |
3766 | 3803 | ||
3767 | #: plugins/check_snmp.c:715 | 3804 | #: plugins/check_snmp.c:719 |
3768 | #, c-format | 3805 | #, c-format |
3769 | msgid "Missing secname (%s) or authpassword (%s) ! \n" | 3806 | msgid "Missing secname (%s) or authpassword (%s) ! \n" |
3770 | msgstr "" | 3807 | msgstr "" |
3771 | 3808 | ||
3772 | #: plugins/check_snmp.c:723 | 3809 | #: plugins/check_snmp.c:727 |
3773 | #, c-format | 3810 | #, c-format |
3774 | msgid "Missing secname (%s), authpassword (%s), or privpasswd (%s)! \n" | 3811 | msgid "Missing secname (%s), authpassword (%s), or privpasswd (%s)! \n" |
3775 | msgstr "" | 3812 | msgstr "" |
3776 | 3813 | ||
3777 | #: plugins/check_snmp.c:732 | 3814 | #: plugins/check_snmp.c:736 |
3778 | msgid "Invalid SNMP version" | 3815 | msgid "Invalid SNMP version" |
3779 | msgstr "" | 3816 | msgstr "" |
3780 | 3817 | ||
3781 | #: plugins/check_snmp.c:860 | 3818 | #: plugins/check_snmp.c:864 |
3782 | msgid "Unbalanced quotes\n" | 3819 | msgid "Unbalanced quotes\n" |
3783 | msgstr "" | 3820 | msgstr "" |
3784 | 3821 | ||
3785 | #: plugins/check_snmp.c:909 | 3822 | #: plugins/check_snmp.c:913 |
3786 | msgid "Check status of remote machines and obtain sustem information via SNMP" | 3823 | msgid "Check status of remote machines and obtain sustem information via SNMP" |
3787 | msgstr "" | 3824 | msgstr "" |
3788 | 3825 | ||
3789 | #: plugins/check_snmp.c:921 | 3826 | #: plugins/check_snmp.c:925 |
3790 | msgid "Use SNMP GETNEXT instead of SNMP GET" | 3827 | msgid "Use SNMP GETNEXT instead of SNMP GET" |
3791 | msgstr "" | 3828 | msgstr "" |
3792 | 3829 | ||
3793 | #: plugins/check_snmp.c:923 | 3830 | #: plugins/check_snmp.c:927 |
3794 | msgid "SNMP protocol version" | 3831 | msgid "SNMP protocol version" |
3795 | msgstr "" | 3832 | msgstr "" |
3796 | 3833 | ||
3797 | #: plugins/check_snmp.c:925 | 3834 | #: plugins/check_snmp.c:929 |
3798 | msgid "SNMPv3 securityLevel" | 3835 | msgid "SNMPv3 securityLevel" |
3799 | msgstr "" | 3836 | msgstr "" |
3800 | 3837 | ||
3801 | #: plugins/check_snmp.c:927 | 3838 | #: plugins/check_snmp.c:931 |
3802 | msgid "SNMPv3 auth proto" | 3839 | msgid "SNMPv3 auth proto" |
3803 | msgstr "" | 3840 | msgstr "" |
3804 | 3841 | ||
3805 | #: plugins/check_snmp.c:931 | 3842 | #: plugins/check_snmp.c:935 |
3806 | msgid "Optional community string for SNMP communication" | 3843 | msgid "Optional community string for SNMP communication" |
3807 | msgstr "" | 3844 | msgstr "" |
3808 | 3845 | ||
3809 | #: plugins/check_snmp.c:932 | 3846 | #: plugins/check_snmp.c:936 |
3810 | #, c-format | 3847 | #, c-format |
3811 | msgid "(default is \"%s\")" | 3848 | msgid "(default is \"%s\")" |
3812 | msgstr "" | 3849 | msgstr "" |
3813 | 3850 | ||
3814 | #: plugins/check_snmp.c:934 | 3851 | #: plugins/check_snmp.c:938 |
3815 | msgid "SNMPv3 username" | 3852 | msgid "SNMPv3 username" |
3816 | msgstr "" | 3853 | msgstr "" |
3817 | 3854 | ||
3818 | #: plugins/check_snmp.c:936 | 3855 | #: plugins/check_snmp.c:940 |
3819 | msgid "SNMPv3 authentication password" | 3856 | msgid "SNMPv3 authentication password" |
3820 | msgstr "" | 3857 | msgstr "" |
3821 | 3858 | ||
3822 | #: plugins/check_snmp.c:938 | 3859 | #: plugins/check_snmp.c:942 |
3823 | msgid "SNMPv3 crypt passwd (DES)" | 3860 | msgid "SNMPv3 crypt passwd (DES)" |
3824 | msgstr "" | 3861 | msgstr "" |
3825 | 3862 | ||
3826 | #: plugins/check_snmp.c:942 | 3863 | #: plugins/check_snmp.c:946 |
3827 | msgid "Object identifier(s) or SNMP variables whose value you wish to query" | 3864 | msgid "Object identifier(s) or SNMP variables whose value you wish to query" |
3828 | msgstr "" | 3865 | msgstr "" |
3829 | 3866 | ||
3830 | #: plugins/check_snmp.c:944 | 3867 | #: plugins/check_snmp.c:948 |
3831 | msgid "" | 3868 | msgid "" |
3832 | "List of MIBS to be loaded (default = none if using numeric oids or 'ALL'" | 3869 | "List of MIBS to be loaded (default = none if using numeric oids or 'ALL'" |
3833 | msgstr "" | 3870 | msgstr "" |
3834 | 3871 | ||
3835 | #: plugins/check_snmp.c:945 | 3872 | #: plugins/check_snmp.c:949 |
3836 | msgid "for symbolic oids.)" | 3873 | msgid "for symbolic oids.)" |
3837 | msgstr "" | 3874 | msgstr "" |
3838 | 3875 | ||
3839 | #: plugins/check_snmp.c:947 | 3876 | #: plugins/check_snmp.c:951 |
3840 | #, c-format | 3877 | #, c-format |
3841 | msgid " Delimiter to use when parsing returned data. Default is \"%s\"" | 3878 | msgid " Delimiter to use when parsing returned data. Default is \"%s\"" |
3842 | msgstr "" | 3879 | msgstr "" |
3843 | 3880 | ||
3844 | #: plugins/check_snmp.c:948 | 3881 | #: plugins/check_snmp.c:952 |
3845 | msgid "Any data on the right hand side of the delimiter is considered" | 3882 | msgid "Any data on the right hand side of the delimiter is considered" |
3846 | msgstr "" | 3883 | msgstr "" |
3847 | 3884 | ||
3848 | #: plugins/check_snmp.c:949 | 3885 | #: plugins/check_snmp.c:953 |
3849 | msgid "to be the data that should be used in the evaluation." | 3886 | msgid "to be the data that should be used in the evaluation." |
3850 | msgstr "" | 3887 | msgstr "" |
3851 | 3888 | ||
3852 | #: plugins/check_snmp.c:953 | 3889 | #: plugins/check_snmp.c:957 |
3853 | msgid "Range(s) which will not result in a WARNING status" | 3890 | msgid "Range(s) which will not result in a WARNING status" |
3854 | msgstr "" | 3891 | msgstr "" |
3855 | 3892 | ||
3856 | #: plugins/check_snmp.c:955 | 3893 | #: plugins/check_snmp.c:959 |
3857 | msgid "Range(s) which will not result in a CRITICAL status" | 3894 | msgid "Range(s) which will not result in a CRITICAL status" |
3858 | msgstr "" | 3895 | msgstr "" |
3859 | 3896 | ||
3860 | #: plugins/check_snmp.c:959 | 3897 | #: plugins/check_snmp.c:963 |
3861 | msgid "Return OK state (for that OID) if STRING is an exact match" | 3898 | msgid "Return OK state (for that OID) if STRING is an exact match" |
3862 | msgstr "" | 3899 | msgstr "" |
3863 | 3900 | ||
3864 | #: plugins/check_snmp.c:961 | 3901 | #: plugins/check_snmp.c:965 |
3865 | msgid "" | 3902 | msgid "" |
3866 | "Return OK state (for that OID) if extended regular expression REGEX matches" | 3903 | "Return OK state (for that OID) if extended regular expression REGEX matches" |
3867 | msgstr "" | 3904 | msgstr "" |
3868 | 3905 | ||
3869 | #: plugins/check_snmp.c:963 | 3906 | #: plugins/check_snmp.c:967 |
3870 | msgid "" | 3907 | msgid "" |
3871 | "Return OK state (for that OID) if case-insensitive extended REGEX matches" | 3908 | "Return OK state (for that OID) if case-insensitive extended REGEX matches" |
3872 | msgstr "" | 3909 | msgstr "" |
3873 | 3910 | ||
3874 | #: plugins/check_snmp.c:965 | 3911 | #: plugins/check_snmp.c:969 |
3875 | msgid "Prefix label for output from plugin (default -s 'SNMP')" | 3912 | msgid "Prefix label for output from plugin (default -s 'SNMP')" |
3876 | msgstr "" | 3913 | msgstr "" |
3877 | 3914 | ||
3878 | #: plugins/check_snmp.c:969 | 3915 | #: plugins/check_snmp.c:973 |
3879 | msgid "Units label(s) for output data (e.g., 'sec.')." | 3916 | msgid "Units label(s) for output data (e.g., 'sec.')." |
3880 | msgstr "" | 3917 | msgstr "" |
3881 | 3918 | ||
3882 | #: plugins/check_snmp.c:971 | 3919 | #: plugins/check_snmp.c:975 |
3883 | msgid "Separates output on multiple OID requests" | 3920 | msgid "Separates output on multiple OID requests" |
3884 | msgstr "" | 3921 | msgstr "" |
3885 | 3922 | ||
3886 | #: plugins/check_snmp.c:977 | 3923 | #: plugins/check_snmp.c:981 |
3887 | msgid "" | 3924 | msgid "" |
3888 | "This plugin uses the 'snmpget' command included with the NET-SNMP package." | 3925 | "This plugin uses the 'snmpget' command included with the NET-SNMP package." |
3889 | msgstr "" | 3926 | msgstr "" |
3890 | 3927 | ||
3891 | #: plugins/check_snmp.c:978 | 3928 | #: plugins/check_snmp.c:982 |
3892 | msgid "" | 3929 | msgid "" |
3893 | "if you don't have the package installed, you will need to download it from" | 3930 | "if you don't have the package installed, you will need to download it from" |
3894 | msgstr "" | 3931 | msgstr "" |
3895 | 3932 | ||
3896 | #: plugins/check_snmp.c:979 | 3933 | #: plugins/check_snmp.c:983 |
3897 | msgid "http://net-snmp.sourceforge.net before you can use this plugin." | 3934 | msgid "http://net-snmp.sourceforge.net before you can use this plugin." |
3898 | msgstr "" | 3935 | msgstr "" |
3899 | 3936 | ||
3900 | #: plugins/check_snmp.c:981 | 3937 | #: plugins/check_snmp.c:985 |
3901 | msgid "" | 3938 | msgid "" |
3902 | "- Multiple OIDs may be indicated by a comma- or space-delimited list (lists " | 3939 | "- Multiple OIDs may be indicated by a comma- or space-delimited list (lists " |
3903 | "with" | 3940 | "with" |
3904 | msgstr "" | 3941 | msgstr "" |
3905 | 3942 | ||
3906 | #: plugins/check_snmp.c:982 | 3943 | #: plugins/check_snmp.c:986 |
3907 | msgid " internal spaces must be quoted) [max 8 OIDs]" | 3944 | msgid " internal spaces must be quoted) [max 8 OIDs]" |
3908 | msgstr "" | 3945 | msgstr "" |
3909 | 3946 | ||
3910 | #: plugins/check_snmp.c:984 | 3947 | #: plugins/check_snmp.c:988 |
3911 | msgid "- Ranges are inclusive and are indicated with colons. When specified as" | 3948 | msgid "- Ranges are inclusive and are indicated with colons. When specified as" |
3912 | msgstr "" | 3949 | msgstr "" |
3913 | 3950 | ||
3914 | #: plugins/check_snmp.c:985 | 3951 | #: plugins/check_snmp.c:989 |
3915 | msgid "" | 3952 | msgid "" |
3916 | " 'min:max' a STATE_OK will be returned if the result is within the indicated" | 3953 | " 'min:max' a STATE_OK will be returned if the result is within the indicated" |
3917 | msgstr "" | 3954 | msgstr "" |
3918 | 3955 | ||
3919 | #: plugins/check_snmp.c:986 | 3956 | #: plugins/check_snmp.c:990 |
3920 | msgid " range or is equal to the upper or lower bound. A non-OK state will be" | 3957 | msgid " range or is equal to the upper or lower bound. A non-OK state will be" |
3921 | msgstr "" | 3958 | msgstr "" |
3922 | 3959 | ||
3923 | #: plugins/check_snmp.c:987 | 3960 | #: plugins/check_snmp.c:991 |
3924 | msgid " returned if the result is outside the specified range." | 3961 | msgid " returned if the result is outside the specified range." |
3925 | msgstr "" | 3962 | msgstr "" |
3926 | 3963 | ||
3927 | #: plugins/check_snmp.c:989 | 3964 | #: plugins/check_snmp.c:993 |
3928 | msgid "" | 3965 | msgid "" |
3929 | "- If specified in the order 'max:min' a non-OK state will be returned if the" | 3966 | "- If specified in the order 'max:min' a non-OK state will be returned if the" |
3930 | msgstr "" | 3967 | msgstr "" |
3931 | 3968 | ||
3932 | #: plugins/check_snmp.c:990 | 3969 | #: plugins/check_snmp.c:994 |
3933 | msgid " result is within the (inclusive) range." | 3970 | msgid " result is within the (inclusive) range." |
3934 | msgstr "" | 3971 | msgstr "" |
3935 | 3972 | ||
3936 | #: plugins/check_snmp.c:992 | 3973 | #: plugins/check_snmp.c:996 |
3937 | msgid "" | 3974 | msgid "" |
3938 | "- Upper or lower bounds may be omitted to skip checking the respective limit." | 3975 | "- Upper or lower bounds may be omitted to skip checking the respective limit." |
3939 | msgstr "" | 3976 | msgstr "" |
3940 | 3977 | ||
3941 | #: plugins/check_snmp.c:993 | 3978 | #: plugins/check_snmp.c:997 |
3942 | msgid "- Bare integers are interpreted as upper limits." | 3979 | msgid "- Bare integers are interpreted as upper limits." |
3943 | msgstr "" | 3980 | msgstr "" |
3944 | 3981 | ||
3945 | #: plugins/check_snmp.c:994 | 3982 | #: plugins/check_snmp.c:998 |
3946 | msgid "" | 3983 | msgid "" |
3947 | "- When checking multiple OIDs, separate ranges by commas like '-w " | 3984 | "- When checking multiple OIDs, separate ranges by commas like '-w " |
3948 | "1:10,1:,:20'" | 3985 | "1:10,1:,:20'" |
3949 | msgstr "" | 3986 | msgstr "" |
3950 | 3987 | ||
3951 | #: plugins/check_snmp.c:995 | 3988 | #: plugins/check_snmp.c:999 |
3952 | msgid "- Note that only one string and one regex may be checked at present" | 3989 | msgid "- Note that only one string and one regex may be checked at present" |
3953 | msgstr "" | 3990 | msgstr "" |
3954 | 3991 | ||
3955 | #: plugins/check_snmp.c:996 | 3992 | #: plugins/check_snmp.c:1000 |
3956 | msgid "" | 3993 | msgid "" |
3957 | "- All evaluation methods other than PR, STR, and SUBSTR expect that the value" | 3994 | "- All evaluation methods other than PR, STR, and SUBSTR expect that the value" |
3958 | msgstr "" | 3995 | msgstr "" |
3959 | 3996 | ||
3960 | #: plugins/check_snmp.c:997 | 3997 | #: plugins/check_snmp.c:1001 |
3961 | msgid " returned from the SNMP query is an unsigned integer." | 3998 | msgid " returned from the SNMP query is an unsigned integer." |
3962 | msgstr "" | 3999 | msgstr "" |
3963 | 4000 | ||
@@ -4349,64 +4386,68 @@ msgstr "" | |||
4349 | msgid "Output of temperatures in Celsius" | 4386 | msgid "Output of temperatures in Celsius" |
4350 | msgstr "" | 4387 | msgstr "" |
4351 | 4388 | ||
4352 | #: plugins/check_ups.c:631 | 4389 | #: plugins/check_ups.c:622 |
4390 | msgid "Valid values for STRING are" | ||
4391 | msgstr "" | ||
4392 | |||
4393 | #: plugins/check_ups.c:635 | ||
4353 | msgid "" | 4394 | msgid "" |
4354 | "This plugin attempts to determine the status of a UPS (Uninterruptible Power" | 4395 | "This plugin attempts to determine the status of a UPS (Uninterruptible Power" |
4355 | msgstr "" | 4396 | msgstr "" |
4356 | 4397 | ||
4357 | #: plugins/check_ups.c:632 | 4398 | #: plugins/check_ups.c:636 |
4358 | msgid "" | 4399 | msgid "" |
4359 | "Supply) on a local or remote host. If the UPS is online or calibrating, the" | 4400 | "Supply) on a local or remote host. If the UPS is online or calibrating, the" |
4360 | msgstr "" | 4401 | msgstr "" |
4361 | 4402 | ||
4362 | #: plugins/check_ups.c:633 | 4403 | #: plugins/check_ups.c:637 |
4363 | msgid "" | 4404 | msgid "" |
4364 | "plugin will return an OK state. If the battery is on it will return a WARNING" | 4405 | "plugin will return an OK state. If the battery is on it will return a WARNING" |
4365 | msgstr "" | 4406 | msgstr "" |
4366 | 4407 | ||
4367 | #: plugins/check_ups.c:634 | 4408 | #: plugins/check_ups.c:638 |
4368 | msgid "" | 4409 | msgid "" |
4369 | "state.If the UPS is off or has a low battery the plugin will return a " | 4410 | "state.If the UPS is off or has a low battery the plugin will return a " |
4370 | "CRITICAL" | 4411 | "CRITICAL" |
4371 | msgstr "" | 4412 | msgstr "" |
4372 | 4413 | ||
4373 | #: plugins/check_ups.c:635 | 4414 | #: plugins/check_ups.c:639 |
4374 | msgid "state." | 4415 | msgid "state." |
4375 | msgstr "" | 4416 | msgstr "" |
4376 | 4417 | ||
4377 | #: plugins/check_ups.c:637 | 4418 | #: plugins/check_ups.c:641 |
4378 | msgid "" | 4419 | msgid "" |
4379 | "You may also specify a variable to check [such as temperature, utility " | 4420 | "You may also specify a variable to check [such as temperature, utility " |
4380 | "voltage," | 4421 | "voltage," |
4381 | msgstr "" | 4422 | msgstr "" |
4382 | 4423 | ||
4383 | #: plugins/check_ups.c:638 | 4424 | #: plugins/check_ups.c:642 |
4384 | msgid "" | 4425 | msgid "" |
4385 | "battery load, etc.] as well as warning and critical thresholds for the " | 4426 | "battery load, etc.] as well as warning and critical thresholds for the " |
4386 | "value of" | 4427 | "value of" |
4387 | msgstr "" | 4428 | msgstr "" |
4388 | 4429 | ||
4389 | #: plugins/check_ups.c:639 | 4430 | #: plugins/check_ups.c:643 |
4390 | msgid "" | 4431 | msgid "" |
4391 | "that variable. If the remote host has multiple UPS that are being monitored " | 4432 | "that variable. If the remote host has multiple UPS that are being monitored " |
4392 | "you" | 4433 | "you" |
4393 | msgstr "" | 4434 | msgstr "" |
4394 | 4435 | ||
4395 | #: plugins/check_ups.c:640 | 4436 | #: plugins/check_ups.c:644 |
4396 | msgid "will have to use the [ups] option to specify which UPS to check." | 4437 | msgid "will have to use the [ups] option to specify which UPS to check." |
4397 | msgstr "" | 4438 | msgstr "" |
4398 | 4439 | ||
4399 | #: plugins/check_ups.c:642 | 4440 | #: plugins/check_ups.c:646 |
4400 | msgid "" | 4441 | msgid "" |
4401 | "This plugin requires that the UPSD daemon distributed with Russel Kroll's" | 4442 | "This plugin requires that the UPSD daemon distributed with Russel Kroll's" |
4402 | msgstr "" | 4443 | msgstr "" |
4403 | 4444 | ||
4404 | #: plugins/check_ups.c:643 | 4445 | #: plugins/check_ups.c:647 |
4405 | msgid "" | 4446 | msgid "" |
4406 | "Smart UPS Tools be installed on the remote host. If you do not have the" | 4447 | "Smart UPS Tools be installed on the remote host. If you do not have the" |
4407 | msgstr "" | 4448 | msgstr "" |
4408 | 4449 | ||
4409 | #: plugins/check_ups.c:644 | 4450 | #: plugins/check_ups.c:648 |
4410 | msgid "" | 4451 | msgid "" |
4411 | "package installed on your system, you can download it from http://www." | 4452 | "package installed on your system, you can download it from http://www." |
4412 | "networkupstools.org" | 4453 | "networkupstools.org" |
@@ -4710,296 +4751,296 @@ msgstr "konnte keinen Speicher für '%s' reservieren\n" | |||
4710 | msgid "failed malloc in strscat\n" | 4751 | msgid "failed malloc in strscat\n" |
4711 | msgstr "konnte keinen Speicher für '%s' reservieren\n" | 4752 | msgstr "konnte keinen Speicher für '%s' reservieren\n" |
4712 | 4753 | ||
4713 | #: plugins-root/check_dhcp.c:298 | 4754 | #: plugins-root/check_dhcp.c:300 |
4714 | #, c-format | 4755 | #, c-format |
4715 | msgid "Error: Could not get hardware address of interface '%s'\n" | 4756 | msgid "Error: Could not get hardware address of interface '%s'\n" |
4716 | msgstr "" | 4757 | msgstr "" |
4717 | 4758 | ||
4718 | #: plugins-root/check_dhcp.c:320 | 4759 | #: plugins-root/check_dhcp.c:322 |
4719 | #, c-format | 4760 | #, c-format |
4720 | msgid "Error: if_nametoindex error - %s.\n" | 4761 | msgid "Error: if_nametoindex error - %s.\n" |
4721 | msgstr "" | 4762 | msgstr "" |
4722 | 4763 | ||
4723 | #: plugins-root/check_dhcp.c:325 | 4764 | #: plugins-root/check_dhcp.c:327 |
4724 | #, c-format | 4765 | #, c-format |
4725 | msgid "Error: Couldn't get hardware address from %s. sysctl 1 error - %s.\n" | 4766 | msgid "Error: Couldn't get hardware address from %s. sysctl 1 error - %s.\n" |
4726 | msgstr "" | 4767 | msgstr "" |
4727 | 4768 | ||
4728 | #: plugins-root/check_dhcp.c:330 | 4769 | #: plugins-root/check_dhcp.c:332 |
4729 | #, c-format | 4770 | #, c-format |
4730 | msgid "" | 4771 | msgid "" |
4731 | "Error: Couldn't get hardware address from interface %s. malloc error - %s.\n" | 4772 | "Error: Couldn't get hardware address from interface %s. malloc error - %s.\n" |
4732 | msgstr "" | 4773 | msgstr "" |
4733 | 4774 | ||
4734 | #: plugins-root/check_dhcp.c:335 | 4775 | #: plugins-root/check_dhcp.c:337 |
4735 | #, c-format | 4776 | #, c-format |
4736 | msgid "Error: Couldn't get hardware address from %s. sysctl 2 error - %s.\n" | 4777 | msgid "Error: Couldn't get hardware address from %s. sysctl 2 error - %s.\n" |
4737 | msgstr "" | 4778 | msgstr "" |
4738 | 4779 | ||
4739 | #: plugins-root/check_dhcp.c:361 | 4780 | #: plugins-root/check_dhcp.c:363 |
4740 | #, c-format | 4781 | #, c-format |
4741 | msgid "" | 4782 | msgid "" |
4742 | "Error: can't find unit number in interface_name (%s) - expecting TypeNumber " | 4783 | "Error: can't find unit number in interface_name (%s) - expecting TypeNumber " |
4743 | "eg lnc0.\n" | 4784 | "eg lnc0.\n" |
4744 | msgstr "" | 4785 | msgstr "" |
4745 | 4786 | ||
4746 | #: plugins-root/check_dhcp.c:366 plugins-root/check_dhcp.c:378 | 4787 | #: plugins-root/check_dhcp.c:368 plugins-root/check_dhcp.c:380 |
4747 | #, c-format | 4788 | #, c-format |
4748 | msgid "" | 4789 | msgid "" |
4749 | "Error: can't read MAC address from DLPI streams interface for device %s unit " | 4790 | "Error: can't read MAC address from DLPI streams interface for device %s unit " |
4750 | "%d.\n" | 4791 | "%d.\n" |
4751 | msgstr "" | 4792 | msgstr "" |
4752 | 4793 | ||
4753 | #: plugins-root/check_dhcp.c:384 | 4794 | #: plugins-root/check_dhcp.c:386 |
4754 | #, c-format | 4795 | #, c-format |
4755 | msgid "Error: can't get MAC address for this architecture.\n" | 4796 | msgid "Error: can't get MAC address for this architecture.\n" |
4756 | msgstr "" | 4797 | msgstr "" |
4757 | 4798 | ||
4758 | #: plugins-root/check_dhcp.c:389 | 4799 | #: plugins-root/check_dhcp.c:391 |
4759 | #, c-format | 4800 | #, c-format |
4760 | msgid "Hardware address: " | 4801 | msgid "Hardware address: " |
4761 | msgstr "" | 4802 | msgstr "" |
4762 | 4803 | ||
4763 | #: plugins-root/check_dhcp.c:464 | 4804 | #: plugins-root/check_dhcp.c:470 |
4764 | #, c-format | 4805 | #, c-format |
4765 | msgid "DHCPDISCOVER to %s port %d\n" | 4806 | msgid "DHCPDISCOVER to %s port %d\n" |
4766 | msgstr "" | 4807 | msgstr "" |
4767 | 4808 | ||
4768 | #: plugins-root/check_dhcp.c:517 | 4809 | #: plugins-root/check_dhcp.c:522 |
4769 | #, c-format | 4810 | #, c-format |
4770 | msgid "Result=ERROR\n" | 4811 | msgid "Result=ERROR\n" |
4771 | msgstr "" | 4812 | msgstr "" |
4772 | 4813 | ||
4773 | #: plugins-root/check_dhcp.c:523 | 4814 | #: plugins-root/check_dhcp.c:528 |
4774 | #, c-format | 4815 | #, c-format |
4775 | msgid "Result=OK\n" | 4816 | msgid "Result=OK\n" |
4776 | msgstr "" | 4817 | msgstr "" |
4777 | 4818 | ||
4778 | #: plugins-root/check_dhcp.c:538 | 4819 | #: plugins-root/check_dhcp.c:543 |
4779 | #, c-format | 4820 | #, c-format |
4780 | msgid "DHCPOFFER from IP address %s" | 4821 | msgid "DHCPOFFER from IP address %s" |
4781 | msgstr "" | 4822 | msgstr "" |
4782 | 4823 | ||
4783 | #: plugins-root/check_dhcp.c:539 | 4824 | #: plugins-root/check_dhcp.c:544 |
4784 | #, c-format | 4825 | #, c-format |
4785 | msgid " via %s\n" | 4826 | msgid " via %s\n" |
4786 | msgstr "" | 4827 | msgstr "" |
4787 | 4828 | ||
4788 | #: plugins-root/check_dhcp.c:546 | 4829 | #: plugins-root/check_dhcp.c:551 |
4789 | #, c-format | 4830 | #, c-format |
4790 | msgid "" | 4831 | msgid "" |
4791 | "DHCPOFFER XID (%lu) did not match DHCPDISCOVER XID (%lu) - ignoring packet\n" | 4832 | "DHCPOFFER XID (%lu) did not match DHCPDISCOVER XID (%lu) - ignoring packet\n" |
4792 | msgstr "" | 4833 | msgstr "" |
4793 | 4834 | ||
4794 | #: plugins-root/check_dhcp.c:568 | 4835 | #: plugins-root/check_dhcp.c:573 |
4795 | #, c-format | 4836 | #, c-format |
4796 | msgid "DHCPOFFER hardware address did not match our own - ignoring packet\n" | 4837 | msgid "DHCPOFFER hardware address did not match our own - ignoring packet\n" |
4797 | msgstr "" | 4838 | msgstr "" |
4798 | 4839 | ||
4799 | #: plugins-root/check_dhcp.c:586 | 4840 | #: plugins-root/check_dhcp.c:591 |
4800 | #, c-format | 4841 | #, c-format |
4801 | msgid "Total responses seen on the wire: %d\n" | 4842 | msgid "Total responses seen on the wire: %d\n" |
4802 | msgstr "" | 4843 | msgstr "" |
4803 | 4844 | ||
4804 | #: plugins-root/check_dhcp.c:587 | 4845 | #: plugins-root/check_dhcp.c:592 |
4805 | #, fuzzy, c-format | 4846 | #, fuzzy, c-format |
4806 | msgid "Valid responses for this machine: %d\n" | 4847 | msgid "Valid responses for this machine: %d\n" |
4807 | msgstr "Keine Antwort vom Host \n" | 4848 | msgstr "Keine Antwort vom Host \n" |
4808 | 4849 | ||
4809 | #: plugins-root/check_dhcp.c:603 | 4850 | #: plugins-root/check_dhcp.c:607 |
4810 | #, c-format | 4851 | #, c-format |
4811 | msgid "send_dhcp_packet result: %d\n" | 4852 | msgid "send_dhcp_packet result: %d\n" |
4812 | msgstr "" | 4853 | msgstr "" |
4813 | 4854 | ||
4814 | #: plugins-root/check_dhcp.c:632 | 4855 | #: plugins-root/check_dhcp.c:636 |
4815 | #, fuzzy, c-format | 4856 | #, fuzzy, c-format |
4816 | msgid "No (more) data received\n" | 4857 | msgid "No (more) data received\n" |
4817 | msgstr "Keine Daten empfangen %s\n" | 4858 | msgstr "Keine Daten empfangen %s\n" |
4818 | 4859 | ||
4819 | #: plugins-root/check_dhcp.c:651 | 4860 | #: plugins-root/check_dhcp.c:655 |
4820 | #, c-format | 4861 | #, c-format |
4821 | msgid "recvfrom() failed, " | 4862 | msgid "recvfrom() failed, " |
4822 | msgstr "" | 4863 | msgstr "" |
4823 | 4864 | ||
4824 | #: plugins-root/check_dhcp.c:658 | 4865 | #: plugins-root/check_dhcp.c:662 |
4825 | #, c-format | 4866 | #, c-format |
4826 | msgid "receive_dhcp_packet() result: %d\n" | 4867 | msgid "receive_dhcp_packet() result: %d\n" |
4827 | msgstr "" | 4868 | msgstr "" |
4828 | 4869 | ||
4829 | #: plugins-root/check_dhcp.c:659 | 4870 | #: plugins-root/check_dhcp.c:663 |
4830 | #, c-format | 4871 | #, c-format |
4831 | msgid "receive_dhcp_packet() source: %s\n" | 4872 | msgid "receive_dhcp_packet() source: %s\n" |
4832 | msgstr "" | 4873 | msgstr "" |
4833 | 4874 | ||
4834 | #: plugins-root/check_dhcp.c:688 | 4875 | #: plugins-root/check_dhcp.c:692 |
4835 | #, c-format | 4876 | #, c-format |
4836 | msgid "Error: Could not create socket!\n" | 4877 | msgid "Error: Could not create socket!\n" |
4837 | msgstr "" | 4878 | msgstr "" |
4838 | 4879 | ||
4839 | #: plugins-root/check_dhcp.c:698 | 4880 | #: plugins-root/check_dhcp.c:702 |
4840 | #, c-format | 4881 | #, c-format |
4841 | msgid "Error: Could not set reuse address option on DHCP socket!\n" | 4882 | msgid "Error: Could not set reuse address option on DHCP socket!\n" |
4842 | msgstr "" | 4883 | msgstr "" |
4843 | 4884 | ||
4844 | #: plugins-root/check_dhcp.c:704 | 4885 | #: plugins-root/check_dhcp.c:708 |
4845 | #, c-format | 4886 | #, c-format |
4846 | msgid "Error: Could not set broadcast option on DHCP socket!\n" | 4887 | msgid "Error: Could not set broadcast option on DHCP socket!\n" |
4847 | msgstr "" | 4888 | msgstr "" |
4848 | 4889 | ||
4849 | #: plugins-root/check_dhcp.c:712 | 4890 | #: plugins-root/check_dhcp.c:716 |
4850 | #, c-format | 4891 | #, c-format |
4851 | msgid "" | 4892 | msgid "" |
4852 | "Error: Could not bind socket to interface %s. Check your privileges...\n" | 4893 | "Error: Could not bind socket to interface %s. Check your privileges...\n" |
4853 | msgstr "" | 4894 | msgstr "" |
4854 | 4895 | ||
4855 | #: plugins-root/check_dhcp.c:722 | 4896 | #: plugins-root/check_dhcp.c:726 |
4856 | #, c-format | 4897 | #, c-format |
4857 | msgid "" | 4898 | msgid "" |
4858 | "Error: Could not bind to DHCP socket (port %d)! Check your privileges...\n" | 4899 | "Error: Could not bind to DHCP socket (port %d)! Check your privileges...\n" |
4859 | msgstr "" | 4900 | msgstr "" |
4860 | 4901 | ||
4861 | #: plugins-root/check_dhcp.c:756 | 4902 | #: plugins-root/check_dhcp.c:760 |
4862 | #, c-format | 4903 | #, c-format |
4863 | msgid "Requested server address: %s\n" | 4904 | msgid "Requested server address: %s\n" |
4864 | msgstr "" | 4905 | msgstr "" |
4865 | 4906 | ||
4866 | #: plugins-root/check_dhcp.c:812 | 4907 | #: plugins-root/check_dhcp.c:821 |
4867 | #, c-format | 4908 | #, c-format |
4868 | msgid "Lease Time: Infinite\n" | 4909 | msgid "Lease Time: Infinite\n" |
4869 | msgstr "" | 4910 | msgstr "" |
4870 | 4911 | ||
4871 | #: plugins-root/check_dhcp.c:814 | 4912 | #: plugins-root/check_dhcp.c:823 |
4872 | #, c-format | 4913 | #, c-format |
4873 | msgid "Lease Time: %lu seconds\n" | 4914 | msgid "Lease Time: %lu seconds\n" |
4874 | msgstr "" | 4915 | msgstr "" |
4875 | 4916 | ||
4876 | #: plugins-root/check_dhcp.c:816 | 4917 | #: plugins-root/check_dhcp.c:825 |
4877 | #, c-format | 4918 | #, c-format |
4878 | msgid "Renewal Time: Infinite\n" | 4919 | msgid "Renewal Time: Infinite\n" |
4879 | msgstr "" | 4920 | msgstr "" |
4880 | 4921 | ||
4881 | #: plugins-root/check_dhcp.c:818 | 4922 | #: plugins-root/check_dhcp.c:827 |
4882 | #, c-format | 4923 | #, c-format |
4883 | msgid "Renewal Time: %lu seconds\n" | 4924 | msgid "Renewal Time: %lu seconds\n" |
4884 | msgstr "" | 4925 | msgstr "" |
4885 | 4926 | ||
4886 | #: plugins-root/check_dhcp.c:820 | 4927 | #: plugins-root/check_dhcp.c:829 |
4887 | #, c-format | 4928 | #, c-format |
4888 | msgid "Rebinding Time: Infinite\n" | 4929 | msgid "Rebinding Time: Infinite\n" |
4889 | msgstr "" | 4930 | msgstr "" |
4890 | 4931 | ||
4891 | #: plugins-root/check_dhcp.c:821 | 4932 | #: plugins-root/check_dhcp.c:830 |
4892 | #, c-format | 4933 | #, c-format |
4893 | msgid "Rebinding Time: %lu seconds\n" | 4934 | msgid "Rebinding Time: %lu seconds\n" |
4894 | msgstr "" | 4935 | msgstr "" |
4895 | 4936 | ||
4896 | #: plugins-root/check_dhcp.c:837 | 4937 | #: plugins-root/check_dhcp.c:858 |
4897 | #, c-format | 4938 | #, c-format |
4898 | msgid "Added offer from server @ %s" | 4939 | msgid "Added offer from server @ %s" |
4899 | msgstr "" | 4940 | msgstr "" |
4900 | 4941 | ||
4901 | #: plugins-root/check_dhcp.c:838 | 4942 | #: plugins-root/check_dhcp.c:859 |
4902 | #, c-format | 4943 | #, c-format |
4903 | msgid " of IP address %s\n" | 4944 | msgid " of IP address %s\n" |
4904 | msgstr "" | 4945 | msgstr "" |
4905 | 4946 | ||
4906 | #: plugins-root/check_dhcp.c:905 | 4947 | #: plugins-root/check_dhcp.c:926 |
4907 | #, c-format | 4948 | #, c-format |
4908 | msgid "DHCP Server Match: Offerer=%s" | 4949 | msgid "DHCP Server Match: Offerer=%s" |
4909 | msgstr "" | 4950 | msgstr "" |
4910 | 4951 | ||
4911 | #: plugins-root/check_dhcp.c:906 | 4952 | #: plugins-root/check_dhcp.c:927 |
4912 | #, c-format | 4953 | #, c-format |
4913 | msgid " Requested=%s" | 4954 | msgid " Requested=%s" |
4914 | msgstr "" | 4955 | msgstr "" |
4915 | 4956 | ||
4916 | #: plugins-root/check_dhcp.c:908 | 4957 | #: plugins-root/check_dhcp.c:929 |
4917 | #, c-format | 4958 | #, c-format |
4918 | msgid " (duplicate)" | 4959 | msgid " (duplicate)" |
4919 | msgstr "" | 4960 | msgstr "" |
4920 | 4961 | ||
4921 | #: plugins-root/check_dhcp.c:909 | 4962 | #: plugins-root/check_dhcp.c:930 |
4922 | #, c-format | 4963 | #, c-format |
4923 | msgid "\n" | 4964 | msgid "\n" |
4924 | msgstr "" | 4965 | msgstr "" |
4925 | 4966 | ||
4926 | #: plugins-root/check_dhcp.c:957 | 4967 | #: plugins-root/check_dhcp.c:978 |
4927 | #, c-format | 4968 | #, c-format |
4928 | msgid "No DHCPOFFERs were received.\n" | 4969 | msgid "No DHCPOFFERs were received.\n" |
4929 | msgstr "" | 4970 | msgstr "" |
4930 | 4971 | ||
4931 | #: plugins-root/check_dhcp.c:961 | 4972 | #: plugins-root/check_dhcp.c:982 |
4932 | #, c-format | 4973 | #, c-format |
4933 | msgid "Received %d DHCPOFFER(s)" | 4974 | msgid "Received %d DHCPOFFER(s)" |
4934 | msgstr "" | 4975 | msgstr "" |
4935 | 4976 | ||
4936 | #: plugins-root/check_dhcp.c:964 | 4977 | #: plugins-root/check_dhcp.c:985 |
4937 | #, c-format | 4978 | #, c-format |
4938 | msgid ", %s%d of %d requested servers responded" | 4979 | msgid ", %s%d of %d requested servers responded" |
4939 | msgstr "" | 4980 | msgstr "" |
4940 | 4981 | ||
4941 | #: plugins-root/check_dhcp.c:967 | 4982 | #: plugins-root/check_dhcp.c:988 |
4942 | #, c-format | 4983 | #, c-format |
4943 | msgid ", requested address (%s) was %soffered" | 4984 | msgid ", requested address (%s) was %soffered" |
4944 | msgstr "" | 4985 | msgstr "" |
4945 | 4986 | ||
4946 | #: plugins-root/check_dhcp.c:967 | 4987 | #: plugins-root/check_dhcp.c:988 |
4947 | msgid "not " | 4988 | msgid "not " |
4948 | msgstr "" | 4989 | msgstr "" |
4949 | 4990 | ||
4950 | #: plugins-root/check_dhcp.c:969 | 4991 | #: plugins-root/check_dhcp.c:990 |
4951 | #, c-format | 4992 | #, c-format |
4952 | msgid ", max lease time = " | 4993 | msgid ", max lease time = " |
4953 | msgstr "" | 4994 | msgstr "" |
4954 | 4995 | ||
4955 | #: plugins-root/check_dhcp.c:971 | 4996 | #: plugins-root/check_dhcp.c:992 |
4956 | #, c-format | 4997 | #, c-format |
4957 | msgid "Infinity" | 4998 | msgid "Infinity" |
4958 | msgstr "" | 4999 | msgstr "" |
4959 | 5000 | ||
4960 | #: plugins-root/check_dhcp.c:1148 | 5001 | #: plugins-root/check_dhcp.c:1169 |
4961 | #, c-format | 5002 | #, c-format |
4962 | msgid "Error: DLPI stream API failed to get MAC in check_ctrl: %s.\n" | 5003 | msgid "Error: DLPI stream API failed to get MAC in check_ctrl: %s.\n" |
4963 | msgstr "" | 5004 | msgstr "" |
4964 | 5005 | ||
4965 | #: plugins-root/check_dhcp.c:1160 | 5006 | #: plugins-root/check_dhcp.c:1181 |
4966 | #, c-format | 5007 | #, c-format |
4967 | msgid "Error: DLPI stream API failed to get MAC in put_ctrl/putmsg(): %s.\n" | 5008 | msgid "Error: DLPI stream API failed to get MAC in put_ctrl/putmsg(): %s.\n" |
4968 | msgstr "" | 5009 | msgstr "" |
4969 | 5010 | ||
4970 | #: plugins-root/check_dhcp.c:1173 | 5011 | #: plugins-root/check_dhcp.c:1194 |
4971 | #, c-format | 5012 | #, c-format |
4972 | msgid "Error: DLPI stream API failed to get MAC in put_both/putmsg().\n" | 5013 | msgid "Error: DLPI stream API failed to get MAC in put_both/putmsg().\n" |
4973 | msgstr "" | 5014 | msgstr "" |
4974 | 5015 | ||
4975 | #: plugins-root/check_dhcp.c:1185 | 5016 | #: plugins-root/check_dhcp.c:1206 |
4976 | #, c-format | 5017 | #, c-format |
4977 | msgid "" | 5018 | msgid "" |
4978 | "Error: DLPI stream API failed to get MAC in dl_attach_req/open(%s..): %s.\n" | 5019 | "Error: DLPI stream API failed to get MAC in dl_attach_req/open(%s..): %s.\n" |
4979 | msgstr "" | 5020 | msgstr "" |
4980 | 5021 | ||
4981 | #: plugins-root/check_dhcp.c:1209 | 5022 | #: plugins-root/check_dhcp.c:1230 |
4982 | #, c-format | 5023 | #, c-format |
4983 | msgid "Error: DLPI stream API failed to get MAC in dl_bind/check_ctrl(): %s.\n" | 5024 | msgid "Error: DLPI stream API failed to get MAC in dl_bind/check_ctrl(): %s.\n" |
4984 | msgstr "" | 5025 | msgstr "" |
4985 | 5026 | ||
4986 | #: plugins-root/check_dhcp.c:1257 | 5027 | #: plugins-root/check_dhcp.c:1278 |
4987 | msgid "This plugin tests the availability of DHCP servers on a network." | 5028 | msgid "This plugin tests the availability of DHCP servers on a network." |
4988 | msgstr "" | 5029 | msgstr "" |
4989 | 5030 | ||
4990 | #: plugins-root/check_dhcp.c:1268 | 5031 | #: plugins-root/check_dhcp.c:1289 |
4991 | msgid "IP address of DHCP server that we must hear from" | 5032 | msgid "IP address of DHCP server that we must hear from" |
4992 | msgstr "" | 5033 | msgstr "" |
4993 | 5034 | ||
4994 | #: plugins-root/check_dhcp.c:1270 | 5035 | #: plugins-root/check_dhcp.c:1291 |
4995 | msgid "IP address that should be offered by at least one DHCP server" | 5036 | msgid "IP address that should be offered by at least one DHCP server" |
4996 | msgstr "" | 5037 | msgstr "" |
4997 | 5038 | ||
4998 | #: plugins-root/check_dhcp.c:1272 | 5039 | #: plugins-root/check_dhcp.c:1293 |
4999 | msgid "Seconds to wait for DHCPOFFER before timeout occurs" | 5040 | msgid "Seconds to wait for DHCPOFFER before timeout occurs" |
5000 | msgstr "" | 5041 | msgstr "" |
5001 | 5042 | ||
5002 | #: plugins-root/check_dhcp.c:1274 | 5043 | #: plugins-root/check_dhcp.c:1295 |
5003 | msgid "Interface to to use for listening (i.e. eth0)" | 5044 | msgid "Interface to to use for listening (i.e. eth0)" |
5004 | msgstr "" | 5045 | msgstr "" |
5005 | 5046 | ||
@@ -5077,6 +5118,10 @@ msgid "The -v switch can be specified several times for increased verbosity." | |||
5077 | msgstr "" | 5118 | msgstr "" |
5078 | 5119 | ||
5079 | #, fuzzy | 5120 | #, fuzzy |
5121 | #~ msgid "Unknown error" | ||
5122 | #~ msgstr "Papierfehler" | ||
5123 | |||
5124 | #, fuzzy | ||
5080 | #~ msgid "Unknown argument - %s" | 5125 | #~ msgid "Unknown argument - %s" |
5081 | #~ msgstr "" | 5126 | #~ msgstr "" |
5082 | #~ "%s: Unbekanntes Argument: %s\n" | 5127 | #~ "%s: Unbekanntes Argument: %s\n" |
@@ -9,7 +9,7 @@ msgid "" | |||
9 | msgstr "" | 9 | msgstr "" |
10 | "Project-Id-Version: fr\n" | 10 | "Project-Id-Version: fr\n" |
11 | "Report-Msgid-Bugs-To: nagiosplug-devel@lists.sourceforge.net\n" | 11 | "Report-Msgid-Bugs-To: nagiosplug-devel@lists.sourceforge.net\n" |
12 | "POT-Creation-Date: 2007-04-10 03:05-0400\n" | 12 | "POT-Creation-Date: 2007-05-23 03:45-0400\n" |
13 | "PO-Revision-Date: 2007-04-10 02:46-0400\n" | 13 | "PO-Revision-Date: 2007-04-10 02:46-0400\n" |
14 | "Last-Translator: Thomas Guyot-Sionnest <dermoth@aei.ca>\n" | 14 | "Last-Translator: Thomas Guyot-Sionnest <dermoth@aei.ca>\n" |
15 | "Language-Team: Français <fr@li.org>\n" | 15 | "Language-Team: Français <fr@li.org>\n" |
@@ -19,10 +19,10 @@ msgstr "" | |||
19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" | 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" |
20 | "X-Generator: KBabel 1.11.1\n" | 20 | "X-Generator: KBabel 1.11.1\n" |
21 | 21 | ||
22 | #: plugins/check_by_ssh.c:82 plugins/check_dig.c:89 plugins/check_disk.c:192 | 22 | #: plugins/check_by_ssh.c:83 plugins/check_dig.c:89 plugins/check_disk.c:192 |
23 | #: plugins/check_dns.c:93 plugins/check_dummy.c:59 plugins/check_fping.c:89 | 23 | #: plugins/check_dns.c:93 plugins/check_dummy.c:59 plugins/check_fping.c:89 |
24 | #: plugins/check_game.c:84 plugins/check_hpjd.c:106 plugins/check_http.c:147 | 24 | #: plugins/check_game.c:84 plugins/check_hpjd.c:106 plugins/check_http.c:147 |
25 | #: plugins/check_ldap.c:105 plugins/check_load.c:122 | 25 | #: plugins/check_ldap.c:105 plugins/check_load.c:124 |
26 | #: plugins/check_mrtgtraf.c:83 plugins/check_mysql.c:88 | 26 | #: plugins/check_mrtgtraf.c:83 plugins/check_mysql.c:88 |
27 | #: plugins/check_nagios.c:94 plugins/check_nt.c:126 plugins/check_ntp.c:758 | 27 | #: plugins/check_nagios.c:94 plugins/check_nt.c:126 plugins/check_ntp.c:758 |
28 | #: plugins/check_nwstat.c:177 plugins/check_overcr.c:106 | 28 | #: plugins/check_nwstat.c:177 plugins/check_overcr.c:106 |
@@ -30,68 +30,75 @@ msgstr "" | |||
30 | #: plugins/check_radius.c:133 plugins/check_real.c:85 plugins/check_smtp.c:180 | 30 | #: plugins/check_radius.c:133 plugins/check_real.c:85 plugins/check_smtp.c:180 |
31 | #: plugins/check_snmp.c:182 plugins/check_ssh.c:78 plugins/check_swap.c:113 | 31 | #: plugins/check_snmp.c:182 plugins/check_ssh.c:78 plugins/check_swap.c:113 |
32 | #: plugins/check_tcp.c:208 plugins/check_time.c:82 plugins/check_ups.c:125 | 32 | #: plugins/check_tcp.c:208 plugins/check_time.c:82 plugins/check_ups.c:125 |
33 | #: plugins/check_users.c:70 plugins/negate.c:102 plugins-root/check_dhcp.c:256 | 33 | #: plugins/check_users.c:70 plugins/negate.c:102 plugins-root/check_dhcp.c:258 |
34 | msgid "Could not parse arguments" | 34 | msgid "Could not parse arguments" |
35 | msgstr "Impossible de parcourir les arguments" | 35 | msgstr "Impossible de parcourir les arguments" |
36 | 36 | ||
37 | #: plugins/check_by_ssh.c:86 plugins/check_dig.c:86 plugins/check_dns.c:89 | 37 | #: plugins/check_by_ssh.c:87 plugins/check_dig.c:86 plugins/check_dns.c:89 |
38 | #: plugins/check_nagios.c:98 plugins/check_pgsql.c:160 | 38 | #: plugins/check_nagios.c:98 plugins/check_pgsql.c:160 |
39 | #: plugins/check_ping.c:103 plugins/check_procs.c:150 plugins/negate.c:106 | 39 | #: plugins/check_ping.c:103 plugins/check_procs.c:150 plugins/negate.c:106 |
40 | msgid "Cannot catch SIGALRM" | 40 | msgid "Cannot catch SIGALRM" |
41 | msgstr "impossible d'obtenir le signal SIGALRM" | 41 | msgstr "impossible d'obtenir le signal SIGALRM" |
42 | 42 | ||
43 | #: plugins/check_by_ssh.c:97 | 43 | #: plugins/check_by_ssh.c:104 |
44 | #, c-format | 44 | #, c-format |
45 | msgid "Remote command execution failed: %s\n" | 45 | msgid "Remote command execution failed: %s\n" |
46 | msgstr "L'exécution de la commande à distance %s à échoué\n" | 46 | msgstr "L'exécution de la commande à distance %s à échoué\n" |
47 | 47 | ||
48 | #: plugins/check_by_ssh.c:98 | 48 | #: plugins/check_by_ssh.c:115 |
49 | msgid "Unknown error" | 49 | #, c-format |
50 | msgstr "Erreur inconnue" | 50 | msgid "%s - check_by_ssh: Remote command '%s' returned status %d\n" |
51 | msgstr "" | ||
51 | 52 | ||
52 | #: plugins/check_by_ssh.c:116 | 53 | #: plugins/check_by_ssh.c:127 |
53 | #, c-format | 54 | #, c-format |
54 | msgid "SSH WARNING: could not open %s\n" | 55 | msgid "SSH WARNING: could not open %s\n" |
55 | msgstr "SSH AVERTISSEMENT: impossible d'ouvrir %s\n" | 56 | msgstr "SSH AVERTISSEMENT: impossible d'ouvrir %s\n" |
56 | 57 | ||
57 | #: plugins/check_by_ssh.c:200 plugins/check_disk.c:507 | 58 | #: plugins/check_by_ssh.c:213 plugins/check_disk.c:507 |
58 | #: plugins/check_http.c:241 plugins/check_ldap.c:281 plugins/check_pgsql.c:237 | 59 | #: plugins/check_http.c:241 plugins/check_ldap.c:281 plugins/check_pgsql.c:237 |
59 | #: plugins/check_procs.c:371 plugins/check_radius.c:215 | 60 | #: plugins/check_procs.c:371 plugins/check_radius.c:215 |
60 | #: plugins/check_radius.c:285 plugins/check_real.c:361 | 61 | #: plugins/check_radius.c:285 plugins/check_real.c:361 |
61 | #: plugins/check_smtp.c:629 plugins/check_snmp.c:494 plugins/check_ssh.c:143 | 62 | #: plugins/check_smtp.c:629 plugins/check_snmp.c:498 plugins/check_ssh.c:143 |
62 | #: plugins/check_tcp.c:500 plugins/check_time.c:306 plugins/check_ups.c:555 | 63 | #: plugins/check_tcp.c:500 plugins/check_time.c:306 plugins/check_ups.c:555 |
63 | #: plugins/negate.c:203 | 64 | #: plugins/negate.c:203 |
64 | msgid "Timeout interval must be a positive integer" | 65 | msgid "Timeout interval must be a positive integer" |
65 | msgstr "Le délai d'attente doit être un entier positif" | 66 | msgstr "Le délai d'attente doit être un entier positif" |
66 | 67 | ||
67 | #: plugins/check_by_ssh.c:210 plugins/check_pgsql.c:261 | 68 | #: plugins/check_by_ssh.c:223 plugins/check_pgsql.c:261 |
68 | #: plugins/check_radius.c:224 plugins/check_radius.c:258 | 69 | #: plugins/check_radius.c:224 plugins/check_radius.c:258 |
69 | #: plugins/check_real.c:332 plugins/check_smtp.c:561 plugins/check_tcp.c:506 | 70 | #: plugins/check_real.c:332 plugins/check_smtp.c:561 plugins/check_tcp.c:506 |
70 | #: plugins/check_time.c:300 plugins/check_ups.c:517 | 71 | #: plugins/check_time.c:300 plugins/check_ups.c:517 |
71 | msgid "Port must be a positive integer" | 72 | msgid "Port must be a positive integer" |
72 | msgstr "Le numéro du port doit être un entier positif" | 73 | msgstr "Le numéro du port doit être un entier positif" |
73 | 74 | ||
74 | #: plugins/check_by_ssh.c:254 | 75 | #: plugins/check_by_ssh.c:269 |
75 | msgid "skip lines must be an integer" | 76 | #, fuzzy |
77 | msgid "skip-stdout argument must be an integer" | ||
76 | msgstr "Le nombres de lignes à sauter doit être un entier" | 78 | msgstr "Le nombres de lignes à sauter doit être un entier" |
77 | 79 | ||
78 | #: plugins/check_by_ssh.c:272 | 80 | #: plugins/check_by_ssh.c:277 |
81 | #, fuzzy | ||
82 | msgid "skip-stderr argument must be an integer" | ||
83 | msgstr "Le nombres de lignes à sauter doit être un entier" | ||
84 | |||
85 | #: plugins/check_by_ssh.c:295 | ||
79 | #, c-format | 86 | #, c-format |
80 | msgid "%s: You must provide a host name\n" | 87 | msgid "%s: You must provide a host name\n" |
81 | msgstr "%s: Vous devez fournir un nom d'hôte\n" | 88 | msgstr "%s: Vous devez fournir un nom d'hôte\n" |
82 | 89 | ||
83 | #: plugins/check_by_ssh.c:290 | 90 | #: plugins/check_by_ssh.c:313 |
84 | msgid "No remotecmd" | 91 | msgid "No remotecmd" |
85 | msgstr "Pas de commande distante" | 92 | msgstr "Pas de commande distante" |
86 | 93 | ||
87 | #: plugins/check_by_ssh.c:306 | 94 | #: plugins/check_by_ssh.c:329 |
88 | #, c-format | 95 | #, c-format |
89 | msgid "" | 96 | msgid "" |
90 | "%s: In passive mode, you must provide a service name for each command.\n" | 97 | "%s: In passive mode, you must provide a service name for each command.\n" |
91 | msgstr "" | 98 | msgstr "" |
92 | "%s: En mode passif, vous devez fournir un service pour chaque commande.\n" | 99 | "%s: En mode passif, vous devez fournir un service pour chaque commande.\n" |
93 | 100 | ||
94 | #: plugins/check_by_ssh.c:309 | 101 | #: plugins/check_by_ssh.c:332 |
95 | #, c-format | 102 | #, c-format |
96 | msgid "" | 103 | msgid "" |
97 | "%s: In passive mode, you must provide the host short name from the nagios " | 104 | "%s: In passive mode, you must provide the host short name from the nagios " |
@@ -100,123 +107,127 @@ msgstr "" | |||
100 | "%s: En mode passif, vous devez fournir le nom court du hôte mentionné dans " | 107 | "%s: En mode passif, vous devez fournir le nom court du hôte mentionné dans " |
101 | "la configuration de nagios.\n" | 108 | "la configuration de nagios.\n" |
102 | 109 | ||
103 | #: plugins/check_by_ssh.c:323 | 110 | #: plugins/check_by_ssh.c:346 |
104 | #, c-format | 111 | #, c-format |
105 | msgid "This plugin uses SSH to execute commands on a remote host" | 112 | msgid "This plugin uses SSH to execute commands on a remote host" |
106 | msgstr "Ce plugin utilise SSH pour exécuter des commandes sur un hôte distant" | 113 | msgstr "Ce plugin utilise SSH pour exécuter des commandes sur un hôte distant" |
107 | 114 | ||
108 | #: plugins/check_by_ssh.c:336 | 115 | #: plugins/check_by_ssh.c:359 |
109 | msgid "tell ssh to use Protocol 1" | 116 | #, fuzzy |
117 | msgid "tell ssh to use Protocol 1 [optional]" | ||
110 | msgstr "dire à ssh d'utiliser le protocole version 1" | 118 | msgstr "dire à ssh d'utiliser le protocole version 1" |
111 | 119 | ||
112 | #: plugins/check_by_ssh.c:338 | 120 | #: plugins/check_by_ssh.c:361 |
113 | msgid "tell ssh to use Protocol 2" | 121 | #, fuzzy |
122 | msgid "tell ssh to use Protocol 2 [optional]" | ||
114 | msgstr "dire à ssh d'utiliser le protocole 2" | 123 | msgstr "dire à ssh d'utiliser le protocole 2" |
115 | 124 | ||
116 | #: plugins/check_by_ssh.c:340 | 125 | #: plugins/check_by_ssh.c:363 |
117 | msgid "Ignore first n lines on STDERR (to suppress a logon banner)" | 126 | msgid "Ignore all or (if specified) first n lines on STDOUT [optional]" |
127 | msgstr "" | ||
128 | |||
129 | #: plugins/check_by_ssh.c:365 | ||
130 | msgid "Ignore all or (if specified) first n lines on STDERR [optional]" | ||
118 | msgstr "" | 131 | msgstr "" |
119 | "ignorer les x premières lignes sur STDERR (pour supprimer une bannière de " | ||
120 | "connexion)" | ||
121 | 132 | ||
122 | #: plugins/check_by_ssh.c:342 | 133 | #: plugins/check_by_ssh.c:367 |
123 | msgid "tells ssh to fork rather than create a tty" | 134 | msgid "tells ssh to fork rather than create a tty [optional]" |
124 | msgstr "" | 135 | msgstr "" |
125 | 136 | ||
126 | #: plugins/check_by_ssh.c:344 | 137 | #: plugins/check_by_ssh.c:369 |
127 | msgid "command to execute on the remote machine" | 138 | msgid "command to execute on the remote machine" |
128 | msgstr "commande à exécuter sur la machine distante" | 139 | msgstr "commande à exécuter sur la machine distante" |
129 | 140 | ||
130 | #: plugins/check_by_ssh.c:346 | 141 | #: plugins/check_by_ssh.c:371 |
131 | msgid "SSH user name on remote host [optional]" | 142 | msgid "SSH user name on remote host [optional]" |
132 | msgstr "Nom d'utilisateur ssh sur la machine distante [optionnel]" | 143 | msgstr "Nom d'utilisateur ssh sur la machine distante [optionnel]" |
133 | 144 | ||
134 | #: plugins/check_by_ssh.c:348 | 145 | #: plugins/check_by_ssh.c:373 |
135 | msgid "identity of an authorized key [optional]" | 146 | msgid "identity of an authorized key [optional]" |
136 | msgstr "Identité de la clé autorisée [optionnel]" | 147 | msgstr "Identité de la clé autorisée [optionnel]" |
137 | 148 | ||
138 | #: plugins/check_by_ssh.c:350 | 149 | #: plugins/check_by_ssh.c:375 |
139 | msgid "external command file for nagios [optional]" | 150 | msgid "external command file for nagios [optional]" |
140 | msgstr "commande externe pour nagios [optionnel]" | 151 | msgstr "commande externe pour nagios [optionnel]" |
141 | 152 | ||
142 | #: plugins/check_by_ssh.c:352 | 153 | #: plugins/check_by_ssh.c:377 |
143 | msgid "list of nagios service names, separated by ':' [optional]" | 154 | msgid "list of nagios service names, separated by ':' [optional]" |
144 | msgstr "liste des services nagios, séparés par ':' [optionnel] " | 155 | msgstr "liste des services nagios, séparés par ':' [optionnel] " |
145 | 156 | ||
146 | #: plugins/check_by_ssh.c:354 | 157 | #: plugins/check_by_ssh.c:379 |
147 | msgid "short name of host in nagios configuration [optional]" | 158 | msgid "short name of host in nagios configuration [optional]" |
148 | msgstr "nom court de l'hôte dans la configuration nagios [optionnel]" | 159 | msgstr "nom court de l'hôte dans la configuration nagios [optionnel]" |
149 | 160 | ||
150 | #: plugins/check_by_ssh.c:356 | 161 | #: plugins/check_by_ssh.c:381 |
151 | msgid "Call ssh with '-o OPTION' (may be used multiple times) [optional]" | 162 | msgid "Call ssh with '-o OPTION' (may be used multiple times) [optional]" |
152 | msgstr "" | 163 | msgstr "" |
153 | "appelle ssh avec '-o OPTION' (peut être utilisé plusieurs fois) [optionnel]" | 164 | "appelle ssh avec '-o OPTION' (peut être utilisé plusieurs fois) [optionnel]" |
154 | 165 | ||
155 | #: plugins/check_by_ssh.c:358 | 166 | #: plugins/check_by_ssh.c:383 |
156 | msgid "Tell ssh to suppress warning and diagnostic messages [optional]" | 167 | msgid "Tell ssh to suppress warning and diagnostic messages [optional]" |
157 | msgstr "" | 168 | msgstr "" |
158 | "dire à ssh de supprimer les messages d'erreurs et de diagnostic [optionnel]" | 169 | "dire à ssh de supprimer les messages d'erreurs et de diagnostic [optionnel]" |
159 | 170 | ||
160 | #: plugins/check_by_ssh.c:361 | 171 | #: plugins/check_by_ssh.c:386 |
161 | msgid "The most common mode of use is to refer to a local identity file with" | 172 | msgid "The most common mode of use is to refer to a local identity file with" |
162 | msgstr "" | 173 | msgstr "" |
163 | 174 | ||
164 | #: plugins/check_by_ssh.c:362 | 175 | #: plugins/check_by_ssh.c:387 |
165 | msgid "the '-i' option. In this mode, the identity pair should have a null" | 176 | msgid "the '-i' option. In this mode, the identity pair should have a null" |
166 | msgstr "" | 177 | msgstr "" |
167 | 178 | ||
168 | #: plugins/check_by_ssh.c:363 | 179 | #: plugins/check_by_ssh.c:388 |
169 | msgid "passphrase and the public key should be listed in the authorized_keys" | 180 | msgid "passphrase and the public key should be listed in the authorized_keys" |
170 | msgstr "" | 181 | msgstr "" |
171 | 182 | ||
172 | #: plugins/check_by_ssh.c:364 | 183 | #: plugins/check_by_ssh.c:389 |
173 | msgid "file of the remote host. Usually the key will be restricted to running" | 184 | msgid "file of the remote host. Usually the key will be restricted to running" |
174 | msgstr "" | 185 | msgstr "" |
175 | 186 | ||
176 | #: plugins/check_by_ssh.c:365 | 187 | #: plugins/check_by_ssh.c:390 |
177 | msgid "only one command on the remote server. If the remote SSH server tracks" | 188 | msgid "only one command on the remote server. If the remote SSH server tracks" |
178 | msgstr "" | 189 | msgstr "" |
179 | 190 | ||
180 | #: plugins/check_by_ssh.c:366 | 191 | #: plugins/check_by_ssh.c:391 |
181 | msgid "invocation arguments, the one remote program may be an agent that can" | 192 | msgid "invocation arguments, the one remote program may be an agent that can" |
182 | msgstr "" | 193 | msgstr "" |
183 | 194 | ||
184 | #: plugins/check_by_ssh.c:367 | 195 | #: plugins/check_by_ssh.c:392 |
185 | msgid "execute additional commands as proxy" | 196 | msgid "execute additional commands as proxy" |
186 | msgstr "" | 197 | msgstr "" |
187 | 198 | ||
188 | #: plugins/check_by_ssh.c:368 | 199 | #: plugins/check_by_ssh.c:393 |
189 | msgid "To use passive mode, provide multiple '-C' options, and provide" | 200 | msgid "To use passive mode, provide multiple '-C' options, and provide" |
190 | msgstr "Pour utiliser le mode passif, utilisez plusieurs fois l'option '-C',et" | 201 | msgstr "Pour utiliser le mode passif, utilisez plusieurs fois l'option '-C',et" |
191 | 202 | ||
192 | #: plugins/check_by_ssh.c:369 | 203 | #: plugins/check_by_ssh.c:394 |
193 | msgid "" | 204 | msgid "" |
194 | "all of -O, -s, and -n options (servicelist order must match '-C'options)" | 205 | "all of -O, -s, and -n options (servicelist order must match '-C'options)" |
195 | msgstr "" | 206 | msgstr "" |
196 | "et les options -O, -s, n (l'ordre des services doit correspondre aux " | 207 | "et les options -O, -s, n (l'ordre des services doit correspondre aux " |
197 | "multiples options '-C)" | 208 | "multiples options '-C)" |
198 | 209 | ||
199 | #: plugins/check_by_ssh.c:371 plugins/check_disk.c:901 | 210 | #: plugins/check_by_ssh.c:396 plugins/check_disk.c:902 |
200 | #: plugins/check_http.c:1324 plugins/check_nagios.c:303 | 211 | #: plugins/check_http.c:1324 plugins/check_nagios.c:303 |
201 | #: plugins/check_procs.c:735 plugins/negate.c:269 plugins/urlize.c:187 | 212 | #: plugins/check_procs.c:735 plugins/negate.c:269 plugins/urlize.c:187 |
202 | #, c-format | 213 | #, c-format |
203 | msgid "Examples:" | 214 | msgid "Examples:" |
204 | msgstr "Exemples:" | 215 | msgstr "Exemples:" |
205 | 216 | ||
206 | #: plugins/check_by_ssh.c:385 plugins/check_dig.c:336 plugins/check_disk.c:912 | 217 | #: plugins/check_by_ssh.c:410 plugins/check_dig.c:336 plugins/check_disk.c:913 |
207 | #: plugins/check_dns.c:447 plugins/check_dummy.c:127 plugins/check_fping.c:407 | 218 | #: plugins/check_dns.c:447 plugins/check_dummy.c:127 plugins/check_fping.c:407 |
208 | #: plugins/check_game.c:334 plugins/check_hpjd.c:415 plugins/check_http.c:1347 | 219 | #: plugins/check_game.c:334 plugins/check_hpjd.c:415 plugins/check_http.c:1347 |
209 | #: plugins/check_ldap.c:411 plugins/check_load.c:311 plugins/check_mrtg.c:383 | 220 | #: plugins/check_ldap.c:411 plugins/check_load.c:326 plugins/check_mrtg.c:383 |
210 | #: plugins/check_mysql.c:407 plugins/check_nagios.c:313 plugins/check_nt.c:707 | 221 | #: plugins/check_mysql.c:407 plugins/check_nagios.c:313 plugins/check_nt.c:707 |
211 | #: plugins/check_ntp.c:859 plugins/check_nwstat.c:1688 | 222 | #: plugins/check_ntp.c:859 plugins/check_nwstat.c:1688 |
212 | #: plugins/check_overcr.c:469 plugins/check_pgsql.c:458 | 223 | #: plugins/check_overcr.c:469 plugins/check_pgsql.c:458 |
213 | #: plugins/check_ping.c:597 plugins/check_procs.c:753 | 224 | #: plugins/check_ping.c:597 plugins/check_procs.c:753 |
214 | #: plugins/check_radius.c:349 plugins/check_real.c:454 | 225 | #: plugins/check_radius.c:349 plugins/check_real.c:454 |
215 | #: plugins/check_smtp.c:780 plugins/check_snmp.c:1007 plugins/check_ssh.c:306 | 226 | #: plugins/check_smtp.c:780 plugins/check_snmp.c:1011 plugins/check_ssh.c:306 |
216 | #: plugins/check_swap.c:560 plugins/check_tcp.c:656 plugins/check_time.c:373 | 227 | #: plugins/check_swap.c:560 plugins/check_tcp.c:656 plugins/check_time.c:373 |
217 | #: plugins/check_ups.c:653 plugins/check_users.c:230 | 228 | #: plugins/check_ups.c:657 plugins/check_users.c:230 |
218 | #: plugins/check_ide_smart.c:544 plugins/negate.c:290 plugins/urlize.c:204 | 229 | #: plugins/check_ide_smart.c:544 plugins/negate.c:290 plugins/urlize.c:204 |
219 | #: plugins-root/check_dhcp.c:1283 plugins-root/check_icmp.c:1282 | 230 | #: plugins-root/check_dhcp.c:1304 plugins-root/check_icmp.c:1282 |
220 | #, c-format | 231 | #, c-format |
221 | msgid "Usage:" | 232 | msgid "Usage:" |
222 | msgstr "Utilisation:" | 233 | msgstr "Utilisation:" |
@@ -288,11 +299,10 @@ msgstr "" | |||
288 | msgid "DISK %s: %s not found\n" | 299 | msgid "DISK %s: %s not found\n" |
289 | msgstr "DISK %s: %s non trouvé\n" | 300 | msgstr "DISK %s: %s non trouvé\n" |
290 | 301 | ||
291 | #: plugins/check_disk.c:213 plugins/check_disk.c:751 plugins/check_dns.c:208 | 302 | #: plugins/check_disk.c:213 plugins/check_disk.c:752 plugins/check_dns.c:208 |
292 | #: plugins/check_dummy.c:81 plugins/check_http.c:959 plugins/check_http.c:1022 | 303 | #: plugins/check_dummy.c:81 plugins/check_mysql.c:214 |
293 | #: plugins/check_mysql.c:214 plugins/check_nagios.c:107 | 304 | #: plugins/check_nagios.c:107 plugins/check_nagios.c:171 |
294 | #: plugins/check_nagios.c:171 plugins/check_nagios.c:175 | 305 | #: plugins/check_nagios.c:175 plugins/check_procs.c:302 |
295 | #: plugins/check_procs.c:302 | ||
296 | #, c-format | 306 | #, c-format |
297 | msgid "CRITICAL" | 307 | msgid "CRITICAL" |
298 | msgstr "CRITIQUE" | 308 | msgstr "CRITIQUE" |
@@ -309,7 +319,6 @@ msgstr "Impossible d'allouer de l'espace pour '%s'\n" | |||
309 | 319 | ||
310 | #: plugins/check_disk.c:606 plugins/check_disk.c:643 plugins/check_disk.c:653 | 320 | #: plugins/check_disk.c:606 plugins/check_disk.c:643 plugins/check_disk.c:653 |
311 | #: plugins/check_disk.c:659 plugins/check_disk.c:678 plugins/check_dummy.c:84 | 321 | #: plugins/check_disk.c:659 plugins/check_disk.c:678 plugins/check_dummy.c:84 |
312 | #: plugins/check_http.c:953 | ||
313 | #, c-format | 322 | #, c-format |
314 | msgid "UNKNOWN" | 323 | msgid "UNKNOWN" |
315 | msgstr "INCONNU" | 324 | msgstr "INCONNU" |
@@ -339,125 +348,125 @@ msgstr "" | |||
339 | msgid "Unknown argument" | 348 | msgid "Unknown argument" |
340 | msgstr "Argument inconnu" | 349 | msgstr "Argument inconnu" |
341 | 350 | ||
342 | #: plugins/check_disk.c:752 | 351 | #: plugins/check_disk.c:753 |
343 | #, c-format | 352 | #, c-format |
344 | msgid "%s does not exist\n" | 353 | msgid "%s does not exist\n" |
345 | msgstr "%s n'existe pas\n" | 354 | msgstr "%s n'existe pas\n" |
346 | 355 | ||
347 | #: plugins/check_disk.c:781 | 356 | #: plugins/check_disk.c:782 |
348 | #, c-format | 357 | #, c-format |
349 | msgid " for %s\n" | 358 | msgid " for %s\n" |
350 | msgstr " pour %s\n" | 359 | msgstr " pour %s\n" |
351 | 360 | ||
352 | #: plugins/check_disk.c:849 | 361 | #: plugins/check_disk.c:850 |
353 | msgid "" | 362 | msgid "" |
354 | "This plugin checks the amount of used disk space on a mounted file system" | 363 | "This plugin checks the amount of used disk space on a mounted file system" |
355 | msgstr "Ce plugin vérifie la place utilisé sur un système de fichier monté" | 364 | msgstr "Ce plugin vérifie la place utilisé sur un système de fichier monté" |
356 | 365 | ||
357 | #: plugins/check_disk.c:850 | 366 | #: plugins/check_disk.c:851 |
358 | msgid "" | 367 | msgid "" |
359 | "and generates an alert if free space is less than one of the threshold values" | 368 | "and generates an alert if free space is less than one of the threshold values" |
360 | msgstr "" | 369 | msgstr "" |
361 | "et génère une alerte si la place disponible est plus petite qu'une des " | 370 | "et génère une alerte si la place disponible est plus petite qu'une des " |
362 | "valeurs fournies" | 371 | "valeurs fournies" |
363 | 372 | ||
364 | #: plugins/check_disk.c:859 | 373 | #: plugins/check_disk.c:860 |
365 | msgid "Exit with WARNING status if less than INTEGER units of disk are free" | 374 | msgid "Exit with WARNING status if less than INTEGER units of disk are free" |
366 | msgstr "" | 375 | msgstr "" |
367 | "Sortir avec un résultat AVERTISSEMENT si moins de x unités de disques sont " | 376 | "Sortir avec un résultat AVERTISSEMENT si moins de x unités de disques sont " |
368 | "libres" | 377 | "libres" |
369 | 378 | ||
370 | #: plugins/check_disk.c:861 | 379 | #: plugins/check_disk.c:862 |
371 | msgid "Exit with WARNING status if less than PERCENT of disk space is free" | 380 | msgid "Exit with WARNING status if less than PERCENT of disk space is free" |
372 | msgstr "" | 381 | msgstr "" |
373 | "Sortir avec un résultat AVERTISSEMENT si moins de x pour-cent du disque est " | 382 | "Sortir avec un résultat AVERTISSEMENT si moins de x pour-cent du disque est " |
374 | "libre" | 383 | "libre" |
375 | 384 | ||
376 | #: plugins/check_disk.c:863 | 385 | #: plugins/check_disk.c:864 |
377 | msgid "Exit with WARNING status if less than PERCENT of inode space is free" | 386 | msgid "Exit with WARNING status if less than PERCENT of inode space is free" |
378 | msgstr "" | 387 | msgstr "" |
379 | "Sortir avec un résultat AVERTISSEMENT si moins de x pour-cent des inodes " | 388 | "Sortir avec un résultat AVERTISSEMENT si moins de x pour-cent des inodes " |
380 | "sont libres" | 389 | "sont libres" |
381 | 390 | ||
382 | #: plugins/check_disk.c:865 | 391 | #: plugins/check_disk.c:866 |
383 | msgid "Exit with CRITICAL status if less than PERCENT of inode space is free" | 392 | msgid "Exit with CRITICAL status if less than PERCENT of inode space is free" |
384 | msgstr "" | 393 | msgstr "" |
385 | "Sortir avec un résultat CRITIQUE si moins de x pour-cent des inodes sont " | 394 | "Sortir avec un résultat CRITIQUE si moins de x pour-cent des inodes sont " |
386 | "libres" | 395 | "libres" |
387 | 396 | ||
388 | #: plugins/check_disk.c:867 | 397 | #: plugins/check_disk.c:868 |
389 | msgid "Exit with CRITICAL status if less than INTEGER units of disk are free" | 398 | msgid "Exit with CRITICAL status if less than INTEGER units of disk are free" |
390 | msgstr "" | 399 | msgstr "" |
391 | "Sortir avec un résultat CRITIQUE si moins de x unités du disque sont libres" | 400 | "Sortir avec un résultat CRITIQUE si moins de x unités du disque sont libres" |
392 | 401 | ||
393 | #: plugins/check_disk.c:869 | 402 | #: plugins/check_disk.c:870 |
394 | msgid "Exit with CRITCAL status if less than PERCENT of disk space is free" | 403 | msgid "Exit with CRITCAL status if less than PERCENT of disk space is free" |
395 | msgstr "" | 404 | msgstr "" |
396 | "Sortir avec un résultat CRITIQUE si moins de x pour-cent du disque est libre" | 405 | "Sortir avec un résultat CRITIQUE si moins de x pour-cent du disque est libre" |
397 | 406 | ||
398 | #: plugins/check_disk.c:871 | 407 | #: plugins/check_disk.c:872 |
399 | msgid "Clear thresholds" | 408 | msgid "Clear thresholds" |
400 | msgstr "Effacer les seuils" | 409 | msgstr "Effacer les seuils" |
401 | 410 | ||
402 | #: plugins/check_disk.c:873 | 411 | #: plugins/check_disk.c:874 |
403 | msgid "Choose bytes, kB, MB, GB, TB (default: MB)" | 412 | msgid "Choose bytes, kB, MB, GB, TB (default: MB)" |
404 | msgstr "Choisissez octets, kb, MB, GB, TB (par défaut: MB)" | 413 | msgstr "Choisissez octets, kb, MB, GB, TB (par défaut: MB)" |
405 | 414 | ||
406 | #: plugins/check_disk.c:875 | 415 | #: plugins/check_disk.c:876 |
407 | msgid "Same as '--units kB'" | 416 | msgid "Same as '--units kB'" |
408 | msgstr "Pareil à '--units kB'" | 417 | msgstr "Pareil à '--units kB'" |
409 | 418 | ||
410 | #: plugins/check_disk.c:877 | 419 | #: plugins/check_disk.c:878 |
411 | msgid "Same as '--units MB'" | 420 | msgid "Same as '--units MB'" |
412 | msgstr "Pareil à '--units MB'" | 421 | msgstr "Pareil à '--units MB'" |
413 | 422 | ||
414 | #: plugins/check_disk.c:879 | 423 | #: plugins/check_disk.c:880 |
415 | msgid "Only check local filesystems" | 424 | msgid "Only check local filesystems" |
416 | msgstr "Vérifier seulement les systèmes de fichiers locaux" | 425 | msgstr "Vérifier seulement les systèmes de fichiers locaux" |
417 | 426 | ||
418 | #: plugins/check_disk.c:881 | 427 | #: plugins/check_disk.c:882 |
419 | msgid "Path or partition (may be repeated)" | 428 | msgid "Path or partition (may be repeated)" |
420 | msgstr "Répertoire ou partition (peut être utilisé plusieurs fois)" | 429 | msgstr "Répertoire ou partition (peut être utilisé plusieurs fois)" |
421 | 430 | ||
422 | #: plugins/check_disk.c:883 | 431 | #: plugins/check_disk.c:884 |
423 | #, fuzzy | 432 | #, fuzzy |
424 | msgid "Regular expression for path or partition (may be repeated)" | 433 | msgid "Regular expression for path or partition (may be repeated)" |
425 | msgstr "Répertoire ou partition (peut être utilisé plusieurs fois)" | 434 | msgstr "Répertoire ou partition (peut être utilisé plusieurs fois)" |
426 | 435 | ||
427 | #: plugins/check_disk.c:885 | 436 | #: plugins/check_disk.c:886 |
428 | #, fuzzy | 437 | #, fuzzy |
429 | msgid "" | 438 | msgid "" |
430 | "Case insensitive regular expression for path/partition (may be repeated)" | 439 | "Case insensitive regular expression for path/partition (may be repeated)" |
431 | msgstr "Répertoire ou partition (peut être utilisé plusieurs fois)" | 440 | msgstr "Répertoire ou partition (peut être utilisé plusieurs fois)" |
432 | 441 | ||
433 | #: plugins/check_disk.c:887 | 442 | #: plugins/check_disk.c:888 |
434 | msgid "" | 443 | msgid "" |
435 | "Group pathes. Thresholds apply to (free-)space of all partitions together" | 444 | "Group pathes. Thresholds apply to (free-)space of all partitions together" |
436 | msgstr "" | 445 | msgstr "" |
437 | 446 | ||
438 | #: plugins/check_disk.c:889 | 447 | #: plugins/check_disk.c:890 |
439 | msgid "Ignore device (only works if -p unspecified)" | 448 | msgid "Ignore device (only works if -p unspecified)" |
440 | msgstr "Ignorer le périphérique (marche seulement lorsque -p est utilisé)" | 449 | msgstr "Ignorer le périphérique (marche seulement lorsque -p est utilisé)" |
441 | 450 | ||
442 | #: plugins/check_disk.c:891 | 451 | #: plugins/check_disk.c:892 |
443 | msgid "Ignore all filesystems of indicated type (may be repeated)" | 452 | msgid "Ignore all filesystems of indicated type (may be repeated)" |
444 | msgstr "" | 453 | msgstr "" |
445 | "Ignorer tout les systèmes de fichiers qui correspondent au type indiqué " | 454 | "Ignorer tout les systèmes de fichiers qui correspondent au type indiqué " |
446 | "(peut être utilisé plusieurs fois)" | 455 | "(peut être utilisé plusieurs fois)" |
447 | 456 | ||
448 | #: plugins/check_disk.c:893 | 457 | #: plugins/check_disk.c:894 |
449 | msgid "Display the mountpoint instead of the partition" | 458 | msgid "Display the mountpoint instead of the partition" |
450 | msgstr "Afficher le point de montage au lieu de la partition" | 459 | msgstr "Afficher le point de montage au lieu de la partition" |
451 | 460 | ||
452 | #: plugins/check_disk.c:895 | 461 | #: plugins/check_disk.c:896 |
453 | msgid "For paths or partitions specified with -p, only check for exact paths" | 462 | msgid "For paths or partitions specified with -p, only check for exact paths" |
454 | msgstr "" | 463 | msgstr "" |
455 | 464 | ||
456 | #: plugins/check_disk.c:897 | 465 | #: plugins/check_disk.c:898 |
457 | msgid "Display only devices/mountpoints with errors" | 466 | msgid "Display only devices/mountpoints with errors" |
458 | msgstr "Afficher seulement les périphériques/point de montage avec des erreurs" | 467 | msgstr "Afficher seulement les périphériques/point de montage avec des erreurs" |
459 | 468 | ||
460 | #: plugins/check_disk.c:903 | 469 | #: plugins/check_disk.c:904 |
461 | msgid "Checks /tmp and /var at 10% and 5%, and / at 100MB and 50MB" | 470 | msgid "Checks /tmp and /var at 10% and 5%, and / at 100MB and 50MB" |
462 | msgstr "Vérifie /tmp à 10% et /var à 5% et / à 100MB et 50MB" | 471 | msgstr "Vérifie /tmp à 10% et /var à 5% et / à 100MB et 50MB" |
463 | 472 | ||
@@ -493,15 +502,14 @@ msgstr "j'attendais '%s' mais j'ai reçu '%s'" | |||
493 | msgid "server %s is not authoritative for %s" | 502 | msgid "server %s is not authoritative for %s" |
494 | msgstr "serveur %s n'est pas autoritaire pour %s" | 503 | msgstr "serveur %s n'est pas autoritaire pour %s" |
495 | 504 | ||
496 | #: plugins/check_dns.c:204 plugins/check_dummy.c:75 plugins/check_http.c:955 | 505 | #: plugins/check_dns.c:204 plugins/check_dummy.c:75 plugins/check_nagios.c:185 |
497 | #: plugins/check_nagios.c:185 plugins/check_procs.c:295 | 506 | #: plugins/check_procs.c:295 |
498 | #, c-format | 507 | #, c-format |
499 | msgid "OK" | 508 | msgid "OK" |
500 | msgstr "OK" | 509 | msgstr "OK" |
501 | 510 | ||
502 | #: plugins/check_dns.c:206 plugins/check_dummy.c:78 plugins/check_http.c:957 | 511 | #: plugins/check_dns.c:206 plugins/check_dummy.c:78 plugins/check_mysql.c:211 |
503 | #: plugins/check_mysql.c:211 plugins/check_nagios.c:185 | 512 | #: plugins/check_nagios.c:185 plugins/check_procs.c:297 |
504 | #: plugins/check_procs.c:297 | ||
505 | #, c-format | 513 | #, c-format |
506 | msgid "WARNING" | 514 | msgid "WARNING" |
507 | msgstr "AVERTISSEMENT" | 515 | msgstr "AVERTISSEMENT" |
@@ -675,7 +683,7 @@ msgstr "du paramètre <state> avec un texte optionnel" | |||
675 | msgid "Could not open pipe: %s\n" | 683 | msgid "Could not open pipe: %s\n" |
676 | msgstr "Impossible d'ouvrir le pipe: %s\n" | 684 | msgstr "Impossible d'ouvrir le pipe: %s\n" |
677 | 685 | ||
678 | #: plugins/check_fping.c:109 plugins/check_hpjd.c:137 plugins/check_load.c:153 | 686 | #: plugins/check_fping.c:109 plugins/check_hpjd.c:137 plugins/check_load.c:155 |
679 | #: plugins/check_procs.c:165 plugins/check_snmp.c:209 plugins/check_swap.c:184 | 687 | #: plugins/check_procs.c:165 plugins/check_snmp.c:209 plugins/check_swap.c:184 |
680 | #: plugins/check_users.c:81 plugins/negate.c:117 plugins/urlize.c:123 | 688 | #: plugins/check_users.c:81 plugins/negate.c:117 plugins/urlize.c:123 |
681 | #, c-format | 689 | #, c-format |
@@ -844,7 +852,7 @@ msgstr "" | |||
844 | #: plugins/check_game.c:318 plugins/check_http.c:1312 plugins/check_mrtg.c:364 | 852 | #: plugins/check_game.c:318 plugins/check_http.c:1312 plugins/check_mrtg.c:364 |
845 | #: plugins/check_mrtgtraf.c:361 plugins/check_nt.c:693 | 853 | #: plugins/check_mrtgtraf.c:361 plugins/check_nt.c:693 |
846 | #: plugins/check_nwstat.c:1673 plugins/check_overcr.c:452 | 854 | #: plugins/check_nwstat.c:1673 plugins/check_overcr.c:452 |
847 | #: plugins/check_swap.c:549 plugins/check_ups.c:629 plugins/negate.c:276 | 855 | #: plugins/check_swap.c:549 plugins/check_ups.c:633 plugins/negate.c:276 |
848 | #, c-format | 856 | #, c-format |
849 | msgid "Notes:" | 857 | msgid "Notes:" |
850 | msgstr "Notes:" | 858 | msgstr "Notes:" |
@@ -977,50 +985,49 @@ msgid "You must specify a server address or host name" | |||
977 | msgstr "Vous devez spécifier une adresse ou un nom d'hôte" | 985 | msgstr "Vous devez spécifier une adresse ou un nom d'hôte" |
978 | 986 | ||
979 | #: plugins/check_http.c:665 | 987 | #: plugins/check_http.c:665 |
980 | msgid "Server date unknown\n" | 988 | msgid "HTTP UNKNOWN - Server date unknown\n" |
981 | msgstr "Date du serveur inconnue\n" | 989 | msgstr "HTTP INCONNU - Date du serveur inconnue\n" |
982 | 990 | ||
983 | #: plugins/check_http.c:667 | 991 | #: plugins/check_http.c:667 |
984 | msgid "Document modification date unknown\n" | 992 | msgid "HTTP CRITICAL - Document modification date unknown\n" |
985 | msgstr "Date de modification du document inconnue\n" | 993 | msgstr "HTTP CRITIQUE - Date de modification du document inconnue\n" |
986 | 994 | ||
987 | #: plugins/check_http.c:673 | 995 | #: plugins/check_http.c:673 |
988 | #, c-format | 996 | #, c-format |
989 | msgid "CRITICAL - Server date \"%100s\" unparsable" | 997 | msgid "HTTP CRITICAL - Server date \"%100s\" unparsable" |
990 | msgstr "CRITIQUE - Date du serveur \"%100s\" illisible" | 998 | msgstr "HTTP CRITIQUE - Date du serveur \"%100s\" illisible" |
991 | 999 | ||
992 | #: plugins/check_http.c:675 | 1000 | #: plugins/check_http.c:675 |
993 | #, c-format | 1001 | #, c-format |
994 | msgid "CRITICAL - Document date \"%100s\" unparsable" | 1002 | msgid "HTTP CRITICAL - Document date \"%100s\" unparsable" |
995 | msgstr "CRITIQUE - Date du document \"%100s\" illisible" | 1003 | msgstr "HTTP CRITIQUE - Date du document \"%100s\" illisible" |
996 | 1004 | ||
997 | #: plugins/check_http.c:677 | 1005 | #: plugins/check_http.c:677 |
998 | #, c-format | 1006 | #, c-format |
999 | msgid "CRITICAL - Document is %d seconds in the future\n" | 1007 | msgid "HTTP CRITICAL - Document is %d seconds in the future\n" |
1000 | msgstr "CRITIQUE - La date du document est %d secondes dans le futur\n" | 1008 | msgstr "HTTP CRITIQUE - La date du document est %d secondes dans le futur\n" |
1001 | 1009 | ||
1002 | #: plugins/check_http.c:682 | 1010 | #: plugins/check_http.c:682 |
1003 | #, c-format | 1011 | #, c-format |
1004 | msgid "CRITICAL - Last modified %.1f days ago\n" | 1012 | msgid "HTTP CRITICAL - Last modified %.1f days ago\n" |
1005 | msgstr "CRITIQUE - Dernière modification %.1f jours auparavant\n" | 1013 | msgstr "HTTP CRITIQUE - Dernière modification %.1f jours auparavant\n" |
1006 | 1014 | ||
1007 | #: plugins/check_http.c:686 | 1015 | #: plugins/check_http.c:686 |
1008 | #, c-format | 1016 | #, c-format |
1009 | msgid "CRITICAL - Last modified %d:%02d:%02d ago\n" | 1017 | msgid "HTTP CRITICAL - Last modified %d:%02d:%02d ago\n" |
1010 | msgstr "CRITIQUE - Dernière modification %d:%02d:%02d auparavant\n" | 1018 | msgstr "HTTP CRITIQUE - Dernière modification %d:%02d:%02d auparavant\n" |
1011 | 1019 | ||
1012 | #: plugins/check_http.c:767 | 1020 | #: plugins/check_http.c:767 |
1013 | msgid "Unable to open TCP socket\n" | 1021 | msgid "HTTP CRITICAL - Unable to open TCP socket\n" |
1014 | msgstr "Impossible d'ouvrir un socket TCP\n" | 1022 | msgstr "HTTP CRITIQUE - Impossible d'ouvrir un socket TCP\n" |
1015 | 1023 | ||
1016 | #: plugins/check_http.c:847 | 1024 | #: plugins/check_http.c:847 |
1017 | msgid "Error on receive\n" | 1025 | msgid "HTTP CRITICAL - Error on receive\n" |
1018 | msgstr "Erreur dans la réception\n" | 1026 | msgstr "HTTP CRITIQUE - Erreur dans la réception\n" |
1019 | 1027 | ||
1020 | #: plugins/check_http.c:857 plugins/check_real.c:189 plugins/check_tcp.c:291 | 1028 | #: plugins/check_http.c:857 |
1021 | #, c-format | 1029 | msgid "HTTP CRITICAL - No data received from host\n" |
1022 | msgid "No data received from host\n" | 1030 | msgstr "HTTP CRITIQUE - Pas de données reçues de l'hôte\n" |
1023 | msgstr "Pas de données reçues de l'hôte\n" | ||
1024 | 1031 | ||
1025 | #: plugins/check_http.c:907 | 1032 | #: plugins/check_http.c:907 |
1026 | msgid "Invalid HTTP response received from host\n" | 1033 | msgid "Invalid HTTP response received from host\n" |
@@ -1056,6 +1063,24 @@ msgstr "HTTP CRITIQUE: %s\n" | |||
1056 | msgid "HTTP WARNING: %s\n" | 1063 | msgid "HTTP WARNING: %s\n" |
1057 | msgstr "HTTP AVERTISSEMENT: %s\n" | 1064 | msgstr "HTTP AVERTISSEMENT: %s\n" |
1058 | 1065 | ||
1066 | #: plugins/check_http.c:953 | ||
1067 | #, c-format | ||
1068 | msgid "HTTP UNKNOWN" | ||
1069 | msgstr "HTTP INCONNU" | ||
1070 | |||
1071 | #: plugins/check_http.c:955 | ||
1072 | #, c-format | ||
1073 | msgid "HTTP OK" | ||
1074 | msgstr "" | ||
1075 | |||
1076 | #: plugins/check_http.c:957 | ||
1077 | msgid "HTTP WARNING" | ||
1078 | msgstr "HTTP AVERTISSEMENT" | ||
1079 | |||
1080 | #: plugins/check_http.c:959 plugins/check_http.c:1022 | ||
1081 | msgid "HTTP CRITICAL" | ||
1082 | msgstr "HTTP CRITIQUE" | ||
1083 | |||
1059 | #: plugins/check_http.c:963 | 1084 | #: plugins/check_http.c:963 |
1060 | #, c-format | 1085 | #, c-format |
1061 | msgid " - %s - %.3f second response time %s|%s %s\n" | 1086 | msgid " - %s - %.3f second response time %s|%s %s\n" |
@@ -1073,8 +1098,8 @@ msgstr "HTTP OK %s - %.3f secondes de temps de réponse %s|%s %s\n" | |||
1073 | 1098 | ||
1074 | #: plugins/check_http.c:1000 | 1099 | #: plugins/check_http.c:1000 |
1075 | #, c-format | 1100 | #, c-format |
1076 | msgid "CRITICAL - string not found%s|%s %s\n" | 1101 | msgid "HTTP CRITICAL - string not found%s|%s %s\n" |
1077 | msgstr "CRITIQUE - chaîne non trouvée%s|%s %s\n" | 1102 | msgstr "HTTP CRITIQUE - chaîne non trouvée%s|%s %s\n" |
1078 | 1103 | ||
1079 | #: plugins/check_http.c:1018 | 1104 | #: plugins/check_http.c:1018 |
1080 | msgid "pattern not found" | 1105 | msgid "pattern not found" |
@@ -1086,8 +1111,8 @@ msgstr "chaîne de caractère trouvée" | |||
1086 | 1111 | ||
1087 | #: plugins/check_http.c:1030 | 1112 | #: plugins/check_http.c:1030 |
1088 | #, c-format | 1113 | #, c-format |
1089 | msgid "CRITICAL - Execute Error: %s\n" | 1114 | msgid "HTTP CRITICAL - Execute Error: %s\n" |
1090 | msgstr "CRITIQUE - Erreur d'exécution: %s\n" | 1115 | msgstr "HTTP CRITIQUE - Erreur d'exécution: %s\n" |
1091 | 1116 | ||
1092 | #: plugins/check_http.c:1039 | 1117 | #: plugins/check_http.c:1039 |
1093 | #, c-format | 1118 | #, c-format |
@@ -1105,39 +1130,39 @@ msgid "HTTP OK %s - %d bytes in %.3f seconds %s|%s %s\n" | |||
1105 | msgstr "HTTP OK %s - %d bytes en %.3f secondes %s|%s %s\n" | 1130 | msgstr "HTTP OK %s - %d bytes en %.3f secondes %s|%s %s\n" |
1106 | 1131 | ||
1107 | #: plugins/check_http.c:1083 | 1132 | #: plugins/check_http.c:1083 |
1108 | msgid "Could not allocate addr\n" | 1133 | msgid "HTTP UNKNOWN - Could not allocate addr\n" |
1109 | msgstr "Impossible d'allouer une adresse\n" | 1134 | msgstr "HTTP INCONNU - Impossible d'allouer une adresse\n" |
1110 | 1135 | ||
1111 | #: plugins/check_http.c:1087 | 1136 | #: plugins/check_http.c:1087 |
1112 | msgid "Could not allocate url\n" | 1137 | msgid "HTTP UNKNOWN - Could not allocate url\n" |
1113 | msgstr "Impossible d'allouer une URL\n" | 1138 | msgstr "HTTP INCONNU - Impossible d'allouer une URL\n" |
1114 | 1139 | ||
1115 | #: plugins/check_http.c:1096 | 1140 | #: plugins/check_http.c:1096 |
1116 | #, c-format | 1141 | #, c-format |
1117 | msgid "UNKNOWN - Could not find redirect location - %s%s\n" | 1142 | msgid "HTTP UNKNOWN - Could not find redirect location - %s%s\n" |
1118 | msgstr "INCONNU - Impossible de trouver l'endroit de la relocation - %s%s\n" | 1143 | msgstr "HTTP INCONNU - Impossible de trouver l'endroit de la relocation - %s%s\n" |
1119 | 1144 | ||
1120 | #: plugins/check_http.c:1106 | 1145 | #: plugins/check_http.c:1106 |
1121 | msgid "could not allocate url\n" | 1146 | msgid "HTTP UNKNOWN - could not allocate url\n" |
1122 | msgstr "Impossible d'allouer une URL\n" | 1147 | msgstr "Impossible d'allouer une URL\n" |
1123 | 1148 | ||
1124 | #: plugins/check_http.c:1149 | 1149 | #: plugins/check_http.c:1149 |
1125 | #, c-format | 1150 | #, c-format |
1126 | msgid "UNKNOWN - Could not parse redirect location - %s%s\n" | 1151 | msgid "HTTP UNKNOWN - Could not parse redirect location - %s%s\n" |
1127 | msgstr "INCONNU - Impossible de définir l'endroit de la relocation - %s%s\n" | 1152 | msgstr "HTTP INCONNU - Impossible de définir l'endroit de la relocation - %s%s\n" |
1128 | 1153 | ||
1129 | #: plugins/check_http.c:1159 | 1154 | #: plugins/check_http.c:1159 |
1130 | #, c-format | 1155 | #, c-format |
1131 | msgid "WARNING - maximum redirection depth %d exceeded - %s://%s:%d%s%s\n" | 1156 | msgid "HTTP WARNING - maximum redirection depth %d exceeded - %s://%s:%d%s%s\n" |
1132 | msgstr "" | 1157 | msgstr "" |
1133 | "AVERTISSEMENT - le niveau maximum de redirection %d à été dépassé - %s://%s:%" | 1158 | "HTTP AVERTISSEMENT - le niveau maximum de redirection %d à été dépassé - %s://%s:%" |
1134 | "d%s%s\n" | 1159 | "d%s%s\n" |
1135 | 1160 | ||
1136 | #: plugins/check_http.c:1167 | 1161 | #: plugins/check_http.c:1167 |
1137 | #, c-format | 1162 | #, c-format |
1138 | msgid "WARNING - redirection creates an infinite loop - %s://%s:%d%s%s\n" | 1163 | msgid "HTTP WARNING - redirection creates an infinite loop - %s://%s:%d%s%s\n" |
1139 | msgstr "" | 1164 | msgstr "" |
1140 | "AVERTISSEMENT - la redirection crée une boucle infinie - %s://%s:%d%s%s\n" | 1165 | "HTTP AVERTISSEMENT - la redirection crée une boucle infinie - %s://%s:%d%s%s\n" |
1141 | 1166 | ||
1142 | #: plugins/check_http.c:1231 | 1167 | #: plugins/check_http.c:1231 |
1143 | msgid "This plugin tests the HTTP service on the specified host. It can test" | 1168 | msgid "This plugin tests the HTTP service on the specified host. It can test" |
@@ -1440,50 +1465,50 @@ msgstr "utiliser le protocole version 2" | |||
1440 | msgid "use ldap protocol version 3" | 1465 | msgid "use ldap protocol version 3" |
1441 | msgstr "Impossible d'utiliser le protocole version 3" | 1466 | msgstr "Impossible d'utiliser le protocole version 3" |
1442 | 1467 | ||
1443 | #: plugins/check_load.c:91 | 1468 | #: plugins/check_load.c:92 |
1444 | msgid "Warning threshold must be float or float triplet!\n" | 1469 | msgid "Warning threshold must be float or float triplet!\n" |
1445 | msgstr "Le seuil d'alerte doit être un nombre à virgule flottante!\n" | 1470 | msgstr "Le seuil d'alerte doit être un nombre à virgule flottante!\n" |
1446 | 1471 | ||
1447 | #: plugins/check_load.c:132 plugins/check_load.c:148 | 1472 | #: plugins/check_load.c:134 plugins/check_load.c:150 |
1448 | #, c-format | 1473 | #, c-format |
1449 | msgid "Error opening %s\n" | 1474 | msgid "Error opening %s\n" |
1450 | msgstr "Erreur à l'ouverture de %s\n" | 1475 | msgstr "Erreur à l'ouverture de %s\n" |
1451 | 1476 | ||
1452 | #: plugins/check_load.c:160 | 1477 | #: plugins/check_load.c:162 |
1453 | #, c-format | 1478 | #, c-format |
1454 | msgid "Error code %d returned in %s\n" | 1479 | msgid "Error code %d returned in %s\n" |
1455 | msgstr "Le code erreur %d à été retourné par %s\n" | 1480 | msgstr "Le code erreur %d à été retourné par %s\n" |
1456 | 1481 | ||
1457 | #: plugins/check_load.c:168 | 1482 | #: plugins/check_load.c:177 |
1458 | #, c-format | 1483 | #, c-format |
1459 | msgid "Error in getloadavg()\n" | 1484 | msgid "Error in getloadavg()\n" |
1460 | msgstr "Erreur dans la fonction getloadavg()\n" | 1485 | msgstr "Erreur dans la fonction getloadavg()\n" |
1461 | 1486 | ||
1462 | #: plugins/check_load.c:171 plugins/check_load.c:173 | 1487 | #: plugins/check_load.c:180 plugins/check_load.c:182 |
1463 | #, c-format | 1488 | #, c-format |
1464 | msgid "Error processing %s\n" | 1489 | msgid "Error processing %s\n" |
1465 | msgstr "Erreur lors de l'utilisation de %s\n" | 1490 | msgstr "Erreur lors de l'utilisation de %s\n" |
1466 | 1491 | ||
1467 | #: plugins/check_load.c:182 | 1492 | #: plugins/check_load.c:191 |
1468 | #, c-format | 1493 | #, c-format |
1469 | msgid "load average: %.2f, %.2f, %.2f" | 1494 | msgid "load average: %.2f, %.2f, %.2f" |
1470 | msgstr "Charge moyenne: %.2f, %.2f, %.2f" | 1495 | msgstr "Charge moyenne: %.2f, %.2f, %.2f" |
1471 | 1496 | ||
1472 | #: plugins/check_load.c:271 | 1497 | #: plugins/check_load.c:284 |
1473 | #, c-format | 1498 | #, c-format |
1474 | msgid "Critical threshold for %d-minute load average is not specified\n" | 1499 | msgid "Critical threshold for %d-minute load average is not specified\n" |
1475 | msgstr "" | 1500 | msgstr "" |
1476 | "Le seuil critique pour la charge système après %d minutes n'est pas " | 1501 | "Le seuil critique pour la charge système après %d minutes n'est pas " |
1477 | "spécifié\n" | 1502 | "spécifié\n" |
1478 | 1503 | ||
1479 | #: plugins/check_load.c:273 | 1504 | #: plugins/check_load.c:286 |
1480 | #, c-format | 1505 | #, c-format |
1481 | msgid "Warning threshold for %d-minute load average is not specified\n" | 1506 | msgid "Warning threshold for %d-minute load average is not specified\n" |
1482 | msgstr "" | 1507 | msgstr "" |
1483 | "Le seuil d'avertissement pour la charge système après %d minutes n'est pas " | 1508 | "Le seuil d'avertissement pour la charge système après %d minutes n'est pas " |
1484 | "spécifié\n" | 1509 | "spécifié\n" |
1485 | 1510 | ||
1486 | #: plugins/check_load.c:275 | 1511 | #: plugins/check_load.c:288 |
1487 | #, c-format | 1512 | #, c-format |
1488 | msgid "" | 1513 | msgid "" |
1489 | "Parameter inconsistency: %d-minute \"warning load\" is greater than " | 1514 | "Parameter inconsistency: %d-minute \"warning load\" is greater than " |
@@ -1492,24 +1517,28 @@ msgstr "" | |||
1492 | "Arguments Incorrects: %d-minute \"alerte charge système\" est plus grand que " | 1517 | "Arguments Incorrects: %d-minute \"alerte charge système\" est plus grand que " |
1493 | "\"alerte critique charge système\"\n" | 1518 | "\"alerte critique charge système\"\n" |
1494 | 1519 | ||
1495 | #: plugins/check_load.c:291 | 1520 | #: plugins/check_load.c:304 |
1496 | #, c-format | 1521 | #, c-format |
1497 | msgid "This plugin tests the current system load average." | 1522 | msgid "This plugin tests the current system load average." |
1498 | msgstr "Ce plugin teste la charge système actuelle." | 1523 | msgstr "Ce plugin teste la charge système actuelle." |
1499 | 1524 | ||
1500 | #: plugins/check_load.c:300 | 1525 | #: plugins/check_load.c:313 |
1501 | msgid "Exit with WARNING status if load average exceeds WLOADn" | 1526 | msgid "Exit with WARNING status if load average exceeds WLOADn" |
1502 | msgstr "" | 1527 | msgstr "" |
1503 | "Sortir avec un résultat AVERTISSEMENT si la charge moyenne dépasse WLOAD" | 1528 | "Sortir avec un résultat AVERTISSEMENT si la charge moyenne dépasse WLOAD" |
1504 | 1529 | ||
1505 | #: plugins/check_load.c:302 | 1530 | #: plugins/check_load.c:315 |
1506 | msgid "Exit with CRITICAL status if load average exceed CLOADn" | 1531 | msgid "Exit with CRITICAL status if load average exceed CLOADn" |
1507 | msgstr "Sortir avec un résultat CRITIQUE si la charge moyenne excède CLOAD" | 1532 | msgstr "Sortir avec un résultat CRITIQUE si la charge moyenne excède CLOAD" |
1508 | 1533 | ||
1509 | #: plugins/check_load.c:303 | 1534 | #: plugins/check_load.c:316 |
1510 | msgid "the load average format is the same used by \"uptime\" and \"w\"" | 1535 | msgid "the load average format is the same used by \"uptime\" and \"w\"" |
1511 | msgstr "" | 1536 | msgstr "" |
1512 | 1537 | ||
1538 | #: plugins/check_load.c:318 | ||
1539 | msgid "Divide the load averages by the number of CPUs (when possible)" | ||
1540 | msgstr "" | ||
1541 | |||
1513 | #: plugins/check_mrtg.c:79 | 1542 | #: plugins/check_mrtg.c:79 |
1514 | msgid "Could not parse arguments\n" | 1543 | msgid "Could not parse arguments\n" |
1515 | msgstr "Lecture des arguments impossible\n" | 1544 | msgstr "Lecture des arguments impossible\n" |
@@ -3528,6 +3557,11 @@ msgstr "Réponses REAL invalide reçue de l'hôte" | |||
3528 | msgid "Invalid REAL response received from host on port %d\n" | 3557 | msgid "Invalid REAL response received from host on port %d\n" |
3529 | msgstr "Réponses REAL invalide reçue de l'hôte sur le port %d\n" | 3558 | msgstr "Réponses REAL invalide reçue de l'hôte sur le port %d\n" |
3530 | 3559 | ||
3560 | #: plugins/check_real.c:189 plugins/check_tcp.c:291 | ||
3561 | #, c-format | ||
3562 | msgid "No data received from host\n" | ||
3563 | msgstr "Pas de données reçues de l'hôte\n" | ||
3564 | |||
3531 | #: plugins/check_real.c:252 | 3565 | #: plugins/check_real.c:252 |
3532 | #, c-format | 3566 | #, c-format |
3533 | msgid "REAL %s - %d second response time\n" | 3567 | msgid "REAL %s - %d second response time\n" |
@@ -3639,7 +3673,7 @@ msgstr "" | |||
3639 | msgid "CRITICAL - Cannot retrieve server certificate." | 3673 | msgid "CRITICAL - Cannot retrieve server certificate." |
3640 | msgstr "CRITIQUE - Impossible d'obtenir le certificat du serveur.\n" | 3674 | msgstr "CRITIQUE - Impossible d'obtenir le certificat du serveur.\n" |
3641 | 3675 | ||
3642 | #: plugins/check_smtp.c:356 plugins/check_snmp.c:568 | 3676 | #: plugins/check_smtp.c:356 plugins/check_snmp.c:572 |
3643 | #, c-format | 3677 | #, c-format |
3644 | msgid "Could Not Compile Regular Expression" | 3678 | msgid "Could Not Compile Regular Expression" |
3645 | msgstr "Impossible de compiler l'expression régulière" | 3679 | msgstr "Impossible de compiler l'expression régulière" |
@@ -3649,7 +3683,7 @@ msgstr "Impossible de compiler l'expression régulière" | |||
3649 | msgid "SMTP %s - Invalid response '%s' to command '%s'\n" | 3683 | msgid "SMTP %s - Invalid response '%s' to command '%s'\n" |
3650 | msgstr "SMTP %s - réponse invalide de '%s' à la commande '%s'\n" | 3684 | msgstr "SMTP %s - réponse invalide de '%s' à la commande '%s'\n" |
3651 | 3685 | ||
3652 | #: plugins/check_smtp.c:369 plugins/check_snmp.c:318 | 3686 | #: plugins/check_smtp.c:369 plugins/check_snmp.c:322 |
3653 | #, c-format | 3687 | #, c-format |
3654 | msgid "Execute Error: %s\n" | 3688 | msgid "Execute Error: %s\n" |
3655 | msgstr "Erreur d'exécution: %s\n" | 3689 | msgstr "Erreur d'exécution: %s\n" |
@@ -3774,11 +3808,11 @@ msgstr "" | |||
3774 | msgid "STATE_WARNING return values." | 3808 | msgid "STATE_WARNING return values." |
3775 | msgstr "" | 3809 | msgstr "" |
3776 | 3810 | ||
3777 | #: plugins/check_snmp.c:296 | 3811 | #: plugins/check_snmp.c:300 |
3778 | msgid "No valid data returned" | 3812 | msgid "No valid data returned" |
3779 | msgstr "Pas de données valides reçues" | 3813 | msgstr "Pas de données valides reçues" |
3780 | 3814 | ||
3781 | #: plugins/check_snmp.c:364 plugins/negate.c:128 | 3815 | #: plugins/check_snmp.c:368 plugins/negate.c:128 |
3782 | #, c-format | 3816 | #, c-format |
3783 | msgid "" | 3817 | msgid "" |
3784 | "%s problem - No data received from host\n" | 3818 | "%s problem - No data received from host\n" |
@@ -3787,240 +3821,240 @@ msgstr "" | |||
3787 | "%s problème - Pas de données reçues de l'hôte\n" | 3821 | "%s problème - Pas de données reçues de l'hôte\n" |
3788 | "Commande: %s\n" | 3822 | "Commande: %s\n" |
3789 | 3823 | ||
3790 | #: plugins/check_snmp.c:502 | 3824 | #: plugins/check_snmp.c:506 |
3791 | #, c-format | 3825 | #, c-format |
3792 | msgid "Invalid critical threshold: %s\n" | 3826 | msgid "Invalid critical threshold: %s\n" |
3793 | msgstr "Seuil critique invalide: %s\n" | 3827 | msgstr "Seuil critique invalide: %s\n" |
3794 | 3828 | ||
3795 | #: plugins/check_snmp.c:513 | 3829 | #: plugins/check_snmp.c:517 |
3796 | #, c-format | 3830 | #, c-format |
3797 | msgid "Invalid warning threshold: %s\n" | 3831 | msgid "Invalid warning threshold: %s\n" |
3798 | msgstr "Seuil d'avertissement invalide: %s\n" | 3832 | msgstr "Seuil d'avertissement invalide: %s\n" |
3799 | 3833 | ||
3800 | #: plugins/check_snmp.c:525 | 3834 | #: plugins/check_snmp.c:529 |
3801 | msgid "Retries interval must be a positive integer" | 3835 | msgid "Retries interval must be a positive integer" |
3802 | msgstr "L'intervalle pour les essais doit être un entier positif" | 3836 | msgstr "L'intervalle pour les essais doit être un entier positif" |
3803 | 3837 | ||
3804 | #: plugins/check_snmp.c:589 | 3838 | #: plugins/check_snmp.c:593 |
3805 | #, c-format | 3839 | #, c-format |
3806 | msgid "Could not reallocate labels[%d]" | 3840 | msgid "Could not reallocate labels[%d]" |
3807 | msgstr "Impossible de réallouer des labels[%d]" | 3841 | msgstr "Impossible de réallouer des labels[%d]" |
3808 | 3842 | ||
3809 | #: plugins/check_snmp.c:601 | 3843 | #: plugins/check_snmp.c:605 |
3810 | msgid "Could not reallocate labels\n" | 3844 | msgid "Could not reallocate labels\n" |
3811 | msgstr "Impossible de réallouer des labels\n" | 3845 | msgstr "Impossible de réallouer des labels\n" |
3812 | 3846 | ||
3813 | #: plugins/check_snmp.c:618 | 3847 | #: plugins/check_snmp.c:622 |
3814 | #, c-format | 3848 | #, c-format |
3815 | msgid "Could not reallocate units [%d]\n" | 3849 | msgid "Could not reallocate units [%d]\n" |
3816 | msgstr "Impossible de réallouer des unités [%d]\n" | 3850 | msgstr "Impossible de réallouer des unités [%d]\n" |
3817 | 3851 | ||
3818 | #: plugins/check_snmp.c:630 | 3852 | #: plugins/check_snmp.c:634 |
3819 | msgid "Could not realloc() units\n" | 3853 | msgid "Could not realloc() units\n" |
3820 | msgstr "Impossible de réallouer des unités\n" | 3854 | msgstr "Impossible de réallouer des unités\n" |
3821 | 3855 | ||
3822 | #: plugins/check_snmp.c:715 | 3856 | #: plugins/check_snmp.c:719 |
3823 | #, c-format | 3857 | #, c-format |
3824 | msgid "Missing secname (%s) or authpassword (%s) ! \n" | 3858 | msgid "Missing secname (%s) or authpassword (%s) ! \n" |
3825 | msgstr "Manque secname (%s) ou authpassword (%s) ! \n" | 3859 | msgstr "Manque secname (%s) ou authpassword (%s) ! \n" |
3826 | 3860 | ||
3827 | #: plugins/check_snmp.c:723 | 3861 | #: plugins/check_snmp.c:727 |
3828 | #, c-format | 3862 | #, c-format |
3829 | msgid "Missing secname (%s), authpassword (%s), or privpasswd (%s)! \n" | 3863 | msgid "Missing secname (%s), authpassword (%s), or privpasswd (%s)! \n" |
3830 | msgstr "Manque secname (%s) ou authpassword (%s) ou privpassword (%s)! \n" | 3864 | msgstr "Manque secname (%s) ou authpassword (%s) ou privpassword (%s)! \n" |
3831 | 3865 | ||
3832 | #: plugins/check_snmp.c:732 | 3866 | #: plugins/check_snmp.c:736 |
3833 | msgid "Invalid SNMP version" | 3867 | msgid "Invalid SNMP version" |
3834 | msgstr "Version de SNMP invalide" | 3868 | msgstr "Version de SNMP invalide" |
3835 | 3869 | ||
3836 | #: plugins/check_snmp.c:860 | 3870 | #: plugins/check_snmp.c:864 |
3837 | msgid "Unbalanced quotes\n" | 3871 | msgid "Unbalanced quotes\n" |
3838 | msgstr "Guillemets manquants\n" | 3872 | msgstr "Guillemets manquants\n" |
3839 | 3873 | ||
3840 | #: plugins/check_snmp.c:909 | 3874 | #: plugins/check_snmp.c:913 |
3841 | msgid "Check status of remote machines and obtain sustem information via SNMP" | 3875 | msgid "Check status of remote machines and obtain sustem information via SNMP" |
3842 | msgstr "" | 3876 | msgstr "" |
3843 | "Vérifie l'état des machines distantes et obtient l'information système via " | 3877 | "Vérifie l'état des machines distantes et obtient l'information système via " |
3844 | "SNMP" | 3878 | "SNMP" |
3845 | 3879 | ||
3846 | #: plugins/check_snmp.c:921 | 3880 | #: plugins/check_snmp.c:925 |
3847 | msgid "Use SNMP GETNEXT instead of SNMP GET" | 3881 | msgid "Use SNMP GETNEXT instead of SNMP GET" |
3848 | msgstr "" | 3882 | msgstr "" |
3849 | 3883 | ||
3850 | #: plugins/check_snmp.c:923 | 3884 | #: plugins/check_snmp.c:927 |
3851 | msgid "SNMP protocol version" | 3885 | msgid "SNMP protocol version" |
3852 | msgstr "Version du protocole SNMP" | 3886 | msgstr "Version du protocole SNMP" |
3853 | 3887 | ||
3854 | #: plugins/check_snmp.c:925 | 3888 | #: plugins/check_snmp.c:929 |
3855 | msgid "SNMPv3 securityLevel" | 3889 | msgid "SNMPv3 securityLevel" |
3856 | msgstr "" | 3890 | msgstr "" |
3857 | 3891 | ||
3858 | #: plugins/check_snmp.c:927 | 3892 | #: plugins/check_snmp.c:931 |
3859 | msgid "SNMPv3 auth proto" | 3893 | msgid "SNMPv3 auth proto" |
3860 | msgstr "" | 3894 | msgstr "" |
3861 | 3895 | ||
3862 | #: plugins/check_snmp.c:931 | 3896 | #: plugins/check_snmp.c:935 |
3863 | msgid "Optional community string for SNMP communication" | 3897 | msgid "Optional community string for SNMP communication" |
3864 | msgstr "" | 3898 | msgstr "" |
3865 | 3899 | ||
3866 | #: plugins/check_snmp.c:932 | 3900 | #: plugins/check_snmp.c:936 |
3867 | #, c-format | 3901 | #, c-format |
3868 | msgid "(default is \"%s\")" | 3902 | msgid "(default is \"%s\")" |
3869 | msgstr "(défaut \"%s\")" | 3903 | msgstr "(défaut \"%s\")" |
3870 | 3904 | ||
3871 | #: plugins/check_snmp.c:934 | 3905 | #: plugins/check_snmp.c:938 |
3872 | msgid "SNMPv3 username" | 3906 | msgid "SNMPv3 username" |
3873 | msgstr "" | 3907 | msgstr "" |
3874 | 3908 | ||
3875 | #: plugins/check_snmp.c:936 | 3909 | #: plugins/check_snmp.c:940 |
3876 | msgid "SNMPv3 authentication password" | 3910 | msgid "SNMPv3 authentication password" |
3877 | msgstr "" | 3911 | msgstr "" |
3878 | 3912 | ||
3879 | #: plugins/check_snmp.c:938 | 3913 | #: plugins/check_snmp.c:942 |
3880 | msgid "SNMPv3 crypt passwd (DES)" | 3914 | msgid "SNMPv3 crypt passwd (DES)" |
3881 | msgstr "" | 3915 | msgstr "" |
3882 | 3916 | ||
3883 | #: plugins/check_snmp.c:942 | 3917 | #: plugins/check_snmp.c:946 |
3884 | msgid "Object identifier(s) or SNMP variables whose value you wish to query" | 3918 | msgid "Object identifier(s) or SNMP variables whose value you wish to query" |
3885 | msgstr "" | 3919 | msgstr "" |
3886 | 3920 | ||
3887 | #: plugins/check_snmp.c:944 | 3921 | #: plugins/check_snmp.c:948 |
3888 | msgid "" | 3922 | msgid "" |
3889 | "List of MIBS to be loaded (default = none if using numeric oids or 'ALL'" | 3923 | "List of MIBS to be loaded (default = none if using numeric oids or 'ALL'" |
3890 | msgstr "" | 3924 | msgstr "" |
3891 | 3925 | ||
3892 | #: plugins/check_snmp.c:945 | 3926 | #: plugins/check_snmp.c:949 |
3893 | msgid "for symbolic oids.)" | 3927 | msgid "for symbolic oids.)" |
3894 | msgstr "" | 3928 | msgstr "" |
3895 | 3929 | ||
3896 | #: plugins/check_snmp.c:947 | 3930 | #: plugins/check_snmp.c:951 |
3897 | #, c-format | 3931 | #, c-format |
3898 | msgid " Delimiter to use when parsing returned data. Default is \"%s\"" | 3932 | msgid " Delimiter to use when parsing returned data. Default is \"%s\"" |
3899 | msgstr "" | 3933 | msgstr "" |
3900 | 3934 | ||
3901 | #: plugins/check_snmp.c:948 | 3935 | #: plugins/check_snmp.c:952 |
3902 | msgid "Any data on the right hand side of the delimiter is considered" | 3936 | msgid "Any data on the right hand side of the delimiter is considered" |
3903 | msgstr "" | 3937 | msgstr "" |
3904 | 3938 | ||
3905 | #: plugins/check_snmp.c:949 | 3939 | #: plugins/check_snmp.c:953 |
3906 | msgid "to be the data that should be used in the evaluation." | 3940 | msgid "to be the data that should be used in the evaluation." |
3907 | msgstr "" | 3941 | msgstr "" |
3908 | 3942 | ||
3909 | #: plugins/check_snmp.c:953 | 3943 | #: plugins/check_snmp.c:957 |
3910 | msgid "Range(s) which will not result in a WARNING status" | 3944 | msgid "Range(s) which will not result in a WARNING status" |
3911 | msgstr "" | 3945 | msgstr "" |
3912 | 3946 | ||
3913 | #: plugins/check_snmp.c:955 | 3947 | #: plugins/check_snmp.c:959 |
3914 | msgid "Range(s) which will not result in a CRITICAL status" | 3948 | msgid "Range(s) which will not result in a CRITICAL status" |
3915 | msgstr "" | 3949 | msgstr "" |
3916 | 3950 | ||
3917 | #: plugins/check_snmp.c:959 | 3951 | #: plugins/check_snmp.c:963 |
3918 | msgid "Return OK state (for that OID) if STRING is an exact match" | 3952 | msgid "Return OK state (for that OID) if STRING is an exact match" |
3919 | msgstr "" | 3953 | msgstr "" |
3920 | 3954 | ||
3921 | #: plugins/check_snmp.c:961 | 3955 | #: plugins/check_snmp.c:965 |
3922 | msgid "" | 3956 | msgid "" |
3923 | "Return OK state (for that OID) if extended regular expression REGEX matches" | 3957 | "Return OK state (for that OID) if extended regular expression REGEX matches" |
3924 | msgstr "" | 3958 | msgstr "" |
3925 | 3959 | ||
3926 | #: plugins/check_snmp.c:963 | 3960 | #: plugins/check_snmp.c:967 |
3927 | msgid "" | 3961 | msgid "" |
3928 | "Return OK state (for that OID) if case-insensitive extended REGEX matches" | 3962 | "Return OK state (for that OID) if case-insensitive extended REGEX matches" |
3929 | msgstr "" | 3963 | msgstr "" |
3930 | 3964 | ||
3931 | #: plugins/check_snmp.c:965 | 3965 | #: plugins/check_snmp.c:969 |
3932 | msgid "Prefix label for output from plugin (default -s 'SNMP')" | 3966 | msgid "Prefix label for output from plugin (default -s 'SNMP')" |
3933 | msgstr "" | 3967 | msgstr "" |
3934 | 3968 | ||
3935 | #: plugins/check_snmp.c:969 | 3969 | #: plugins/check_snmp.c:973 |
3936 | msgid "Units label(s) for output data (e.g., 'sec.')." | 3970 | msgid "Units label(s) for output data (e.g., 'sec.')." |
3937 | msgstr "" | 3971 | msgstr "" |
3938 | 3972 | ||
3939 | #: plugins/check_snmp.c:971 | 3973 | #: plugins/check_snmp.c:975 |
3940 | msgid "Separates output on multiple OID requests" | 3974 | msgid "Separates output on multiple OID requests" |
3941 | msgstr "" | 3975 | msgstr "" |
3942 | 3976 | ||
3943 | #: plugins/check_snmp.c:977 | 3977 | #: plugins/check_snmp.c:981 |
3944 | msgid "" | 3978 | msgid "" |
3945 | "This plugin uses the 'snmpget' command included with the NET-SNMP package." | 3979 | "This plugin uses the 'snmpget' command included with the NET-SNMP package." |
3946 | msgstr "" | 3980 | msgstr "" |
3947 | 3981 | ||
3948 | #: plugins/check_snmp.c:978 | 3982 | #: plugins/check_snmp.c:982 |
3949 | msgid "" | 3983 | msgid "" |
3950 | "if you don't have the package installed, you will need to download it from" | 3984 | "if you don't have the package installed, you will need to download it from" |
3951 | msgstr "" | 3985 | msgstr "" |
3952 | "Si vous n'avez pas le programme installé, vous devrez le télécharger depuis" | 3986 | "Si vous n'avez pas le programme installé, vous devrez le télécharger depuis" |
3953 | 3987 | ||
3954 | #: plugins/check_snmp.c:979 | 3988 | #: plugins/check_snmp.c:983 |
3955 | msgid "http://net-snmp.sourceforge.net before you can use this plugin." | 3989 | msgid "http://net-snmp.sourceforge.net before you can use this plugin." |
3956 | msgstr "http://net-snmp.sourceforge.net avant de pouvoir utiliser ce plugin." | 3990 | msgstr "http://net-snmp.sourceforge.net avant de pouvoir utiliser ce plugin." |
3957 | 3991 | ||
3958 | #: plugins/check_snmp.c:981 | 3992 | #: plugins/check_snmp.c:985 |
3959 | msgid "" | 3993 | msgid "" |
3960 | "- Multiple OIDs may be indicated by a comma- or space-delimited list (lists " | 3994 | "- Multiple OIDs may be indicated by a comma- or space-delimited list (lists " |
3961 | "with" | 3995 | "with" |
3962 | msgstr "" | 3996 | msgstr "" |
3963 | "- Des OIDs multiples peuvent être indiquées par une virgule ou par des listes" | 3997 | "- Des OIDs multiples peuvent être indiquées par une virgule ou par des listes" |
3964 | 3998 | ||
3965 | #: plugins/check_snmp.c:982 | 3999 | #: plugins/check_snmp.c:986 |
3966 | msgid " internal spaces must be quoted) [max 8 OIDs]" | 4000 | msgid " internal spaces must be quoted) [max 8 OIDs]" |
3967 | msgstr "" | 4001 | msgstr "" |
3968 | 4002 | ||
3969 | #: plugins/check_snmp.c:984 | 4003 | #: plugins/check_snmp.c:988 |
3970 | msgid "- Ranges are inclusive and are indicated with colons. When specified as" | 4004 | msgid "- Ranges are inclusive and are indicated with colons. When specified as" |
3971 | msgstr "" | 4005 | msgstr "" |
3972 | 4006 | ||
3973 | #: plugins/check_snmp.c:985 | 4007 | #: plugins/check_snmp.c:989 |
3974 | msgid "" | 4008 | msgid "" |
3975 | " 'min:max' a STATE_OK will be returned if the result is within the indicated" | 4009 | " 'min:max' a STATE_OK will be returned if the result is within the indicated" |
3976 | msgstr "" | 4010 | msgstr "" |
3977 | " 'max:min' un résultat STATE_OK sera retourné si le résultat est dans " | 4011 | " 'max:min' un résultat STATE_OK sera retourné si le résultat est dans " |
3978 | "l'écart spécifié." | 4012 | "l'écart spécifié." |
3979 | 4013 | ||
3980 | #: plugins/check_snmp.c:986 | 4014 | #: plugins/check_snmp.c:990 |
3981 | msgid " range or is equal to the upper or lower bound. A non-OK state will be" | 4015 | msgid " range or is equal to the upper or lower bound. A non-OK state will be" |
3982 | msgstr "" | 4016 | msgstr "" |
3983 | 4017 | ||
3984 | #: plugins/check_snmp.c:987 | 4018 | #: plugins/check_snmp.c:991 |
3985 | msgid " returned if the result is outside the specified range." | 4019 | msgid " returned if the result is outside the specified range." |
3986 | msgstr "" | 4020 | msgstr "" |
3987 | 4021 | ||
3988 | #: plugins/check_snmp.c:989 | 4022 | #: plugins/check_snmp.c:993 |
3989 | msgid "" | 4023 | msgid "" |
3990 | "- If specified in the order 'max:min' a non-OK state will be returned if the" | 4024 | "- If specified in the order 'max:min' a non-OK state will be returned if the" |
3991 | msgstr "" | 4025 | msgstr "" |
3992 | "- Si l'écart est indiqué comme 'max:min' un résultat autre que STATE_OK sera " | 4026 | "- Si l'écart est indiqué comme 'max:min' un résultat autre que STATE_OK sera " |
3993 | "retourné si le" | 4027 | "retourné si le" |
3994 | 4028 | ||
3995 | #: plugins/check_snmp.c:990 | 4029 | #: plugins/check_snmp.c:994 |
3996 | msgid " result is within the (inclusive) range." | 4030 | msgid " result is within the (inclusive) range." |
3997 | msgstr "" | 4031 | msgstr "" |
3998 | 4032 | ||
3999 | #: plugins/check_snmp.c:992 | 4033 | #: plugins/check_snmp.c:996 |
4000 | msgid "" | 4034 | msgid "" |
4001 | "- Upper or lower bounds may be omitted to skip checking the respective limit." | 4035 | "- Upper or lower bounds may be omitted to skip checking the respective limit." |
4002 | msgstr "" | 4036 | msgstr "" |
4003 | 4037 | ||
4004 | #: plugins/check_snmp.c:993 | 4038 | #: plugins/check_snmp.c:997 |
4005 | msgid "- Bare integers are interpreted as upper limits." | 4039 | msgid "- Bare integers are interpreted as upper limits." |
4006 | msgstr "" | 4040 | msgstr "" |
4007 | 4041 | ||
4008 | #: plugins/check_snmp.c:994 | 4042 | #: plugins/check_snmp.c:998 |
4009 | msgid "" | 4043 | msgid "" |
4010 | "- When checking multiple OIDs, separate ranges by commas like '-w " | 4044 | "- When checking multiple OIDs, separate ranges by commas like '-w " |
4011 | "1:10,1:,:20'" | 4045 | "1:10,1:,:20'" |
4012 | msgstr "" | 4046 | msgstr "" |
4013 | 4047 | ||
4014 | #: plugins/check_snmp.c:995 | 4048 | #: plugins/check_snmp.c:999 |
4015 | msgid "- Note that only one string and one regex may be checked at present" | 4049 | msgid "- Note that only one string and one regex may be checked at present" |
4016 | msgstr "" | 4050 | msgstr "" |
4017 | 4051 | ||
4018 | #: plugins/check_snmp.c:996 | 4052 | #: plugins/check_snmp.c:1000 |
4019 | msgid "" | 4053 | msgid "" |
4020 | "- All evaluation methods other than PR, STR, and SUBSTR expect that the value" | 4054 | "- All evaluation methods other than PR, STR, and SUBSTR expect that the value" |
4021 | msgstr "" | 4055 | msgstr "" |
4022 | 4056 | ||
4023 | #: plugins/check_snmp.c:997 | 4057 | #: plugins/check_snmp.c:1001 |
4024 | msgid " returned from the SNMP query is an unsigned integer." | 4058 | msgid " returned from the SNMP query is an unsigned integer." |
4025 | msgstr "" | 4059 | msgstr "" |
4026 | 4060 | ||
@@ -4429,64 +4463,69 @@ msgstr "" | |||
4429 | msgid "Output of temperatures in Celsius" | 4463 | msgid "Output of temperatures in Celsius" |
4430 | msgstr "Affichage des températures en Celsius" | 4464 | msgstr "Affichage des températures en Celsius" |
4431 | 4465 | ||
4432 | #: plugins/check_ups.c:631 | 4466 | #: plugins/check_ups.c:622 |
4467 | #, fuzzy | ||
4468 | msgid "Valid values for STRING are" | ||
4469 | msgstr "Les variables valides sont" | ||
4470 | |||
4471 | #: plugins/check_ups.c:635 | ||
4433 | msgid "" | 4472 | msgid "" |
4434 | "This plugin attempts to determine the status of a UPS (Uninterruptible Power" | 4473 | "This plugin attempts to determine the status of a UPS (Uninterruptible Power" |
4435 | msgstr "" | 4474 | msgstr "" |
4436 | 4475 | ||
4437 | #: plugins/check_ups.c:632 | 4476 | #: plugins/check_ups.c:636 |
4438 | msgid "" | 4477 | msgid "" |
4439 | "Supply) on a local or remote host. If the UPS is online or calibrating, the" | 4478 | "Supply) on a local or remote host. If the UPS is online or calibrating, the" |
4440 | msgstr "" | 4479 | msgstr "" |
4441 | 4480 | ||
4442 | #: plugins/check_ups.c:633 | 4481 | #: plugins/check_ups.c:637 |
4443 | msgid "" | 4482 | msgid "" |
4444 | "plugin will return an OK state. If the battery is on it will return a WARNING" | 4483 | "plugin will return an OK state. If the battery is on it will return a WARNING" |
4445 | msgstr "" | 4484 | msgstr "" |
4446 | 4485 | ||
4447 | #: plugins/check_ups.c:634 | 4486 | #: plugins/check_ups.c:638 |
4448 | msgid "" | 4487 | msgid "" |
4449 | "state.If the UPS is off or has a low battery the plugin will return a " | 4488 | "state.If the UPS is off or has a low battery the plugin will return a " |
4450 | "CRITICAL" | 4489 | "CRITICAL" |
4451 | msgstr "" | 4490 | msgstr "" |
4452 | 4491 | ||
4453 | #: plugins/check_ups.c:635 | 4492 | #: plugins/check_ups.c:639 |
4454 | msgid "state." | 4493 | msgid "state." |
4455 | msgstr "" | 4494 | msgstr "" |
4456 | 4495 | ||
4457 | #: plugins/check_ups.c:637 | 4496 | #: plugins/check_ups.c:641 |
4458 | msgid "" | 4497 | msgid "" |
4459 | "You may also specify a variable to check [such as temperature, utility " | 4498 | "You may also specify a variable to check [such as temperature, utility " |
4460 | "voltage," | 4499 | "voltage," |
4461 | msgstr "" | 4500 | msgstr "" |
4462 | 4501 | ||
4463 | #: plugins/check_ups.c:638 | 4502 | #: plugins/check_ups.c:642 |
4464 | msgid "" | 4503 | msgid "" |
4465 | "battery load, etc.] as well as warning and critical thresholds for the " | 4504 | "battery load, etc.] as well as warning and critical thresholds for the " |
4466 | "value of" | 4505 | "value of" |
4467 | msgstr "" | 4506 | msgstr "" |
4468 | 4507 | ||
4469 | #: plugins/check_ups.c:639 | 4508 | #: plugins/check_ups.c:643 |
4470 | msgid "" | 4509 | msgid "" |
4471 | "that variable. If the remote host has multiple UPS that are being monitored " | 4510 | "that variable. If the remote host has multiple UPS that are being monitored " |
4472 | "you" | 4511 | "you" |
4473 | msgstr "" | 4512 | msgstr "" |
4474 | 4513 | ||
4475 | #: plugins/check_ups.c:640 | 4514 | #: plugins/check_ups.c:644 |
4476 | msgid "will have to use the [ups] option to specify which UPS to check." | 4515 | msgid "will have to use the [ups] option to specify which UPS to check." |
4477 | msgstr "" | 4516 | msgstr "" |
4478 | 4517 | ||
4479 | #: plugins/check_ups.c:642 | 4518 | #: plugins/check_ups.c:646 |
4480 | msgid "" | 4519 | msgid "" |
4481 | "This plugin requires that the UPSD daemon distributed with Russel Kroll's" | 4520 | "This plugin requires that the UPSD daemon distributed with Russel Kroll's" |
4482 | msgstr "" | 4521 | msgstr "" |
4483 | 4522 | ||
4484 | #: plugins/check_ups.c:643 | 4523 | #: plugins/check_ups.c:647 |
4485 | msgid "" | 4524 | msgid "" |
4486 | "Smart UPS Tools be installed on the remote host. If you do not have the" | 4525 | "Smart UPS Tools be installed on the remote host. If you do not have the" |
4487 | msgstr "" | 4526 | msgstr "" |
4488 | 4527 | ||
4489 | #: plugins/check_ups.c:644 | 4528 | #: plugins/check_ups.c:648 |
4490 | msgid "" | 4529 | msgid "" |
4491 | "package installed on your system, you can download it from http://www." | 4530 | "package installed on your system, you can download it from http://www." |
4492 | "networkupstools.org" | 4531 | "networkupstools.org" |
@@ -4796,25 +4835,25 @@ msgstr "La fonction realloc à échoué dans strpcpy\n" | |||
4796 | msgid "failed malloc in strscat\n" | 4835 | msgid "failed malloc in strscat\n" |
4797 | msgstr "La fonction malloc à échoué dans strscat\n" | 4836 | msgstr "La fonction malloc à échoué dans strscat\n" |
4798 | 4837 | ||
4799 | #: plugins-root/check_dhcp.c:298 | 4838 | #: plugins-root/check_dhcp.c:300 |
4800 | #, c-format | 4839 | #, c-format |
4801 | msgid "Error: Could not get hardware address of interface '%s'\n" | 4840 | msgid "Error: Could not get hardware address of interface '%s'\n" |
4802 | msgstr "" | 4841 | msgstr "" |
4803 | "Erreur: Impossible d'obtenir l'adresse matérielle pour l'interface '%s'\n" | 4842 | "Erreur: Impossible d'obtenir l'adresse matérielle pour l'interface '%s'\n" |
4804 | 4843 | ||
4805 | #: plugins-root/check_dhcp.c:320 | 4844 | #: plugins-root/check_dhcp.c:322 |
4806 | #, c-format | 4845 | #, c-format |
4807 | msgid "Error: if_nametoindex error - %s.\n" | 4846 | msgid "Error: if_nametoindex error - %s.\n" |
4808 | msgstr "Erreur: if_nametoindex erreur - %s.\n" | 4847 | msgstr "Erreur: if_nametoindex erreur - %s.\n" |
4809 | 4848 | ||
4810 | #: plugins-root/check_dhcp.c:325 | 4849 | #: plugins-root/check_dhcp.c:327 |
4811 | #, c-format | 4850 | #, c-format |
4812 | msgid "Error: Couldn't get hardware address from %s. sysctl 1 error - %s.\n" | 4851 | msgid "Error: Couldn't get hardware address from %s. sysctl 1 error - %s.\n" |
4813 | msgstr "" | 4852 | msgstr "" |
4814 | "Erreur: Impossible d'obtenir l'adresse matérielle depuis %s. erreur sysctl 1 " | 4853 | "Erreur: Impossible d'obtenir l'adresse matérielle depuis %s. erreur sysctl 1 " |
4815 | "- %s.\n" | 4854 | "- %s.\n" |
4816 | 4855 | ||
4817 | #: plugins-root/check_dhcp.c:330 | 4856 | #: plugins-root/check_dhcp.c:332 |
4818 | #, c-format | 4857 | #, c-format |
4819 | msgid "" | 4858 | msgid "" |
4820 | "Error: Couldn't get hardware address from interface %s. malloc error - %s.\n" | 4859 | "Error: Couldn't get hardware address from interface %s. malloc error - %s.\n" |
@@ -4822,14 +4861,14 @@ msgstr "" | |||
4822 | "Erreur: Impossible d'obtenir l'adresse matérielle depuis l'interface %s\n" | 4861 | "Erreur: Impossible d'obtenir l'adresse matérielle depuis l'interface %s\n" |
4823 | " erreur malloc - %s.\n" | 4862 | " erreur malloc - %s.\n" |
4824 | 4863 | ||
4825 | #: plugins-root/check_dhcp.c:335 | 4864 | #: plugins-root/check_dhcp.c:337 |
4826 | #, c-format | 4865 | #, c-format |
4827 | msgid "Error: Couldn't get hardware address from %s. sysctl 2 error - %s.\n" | 4866 | msgid "Error: Couldn't get hardware address from %s. sysctl 2 error - %s.\n" |
4828 | msgstr "" | 4867 | msgstr "" |
4829 | "Erreur: Impossible d'obtenir l'adresse matérielle depuis %s erreur sysctl 2 " | 4868 | "Erreur: Impossible d'obtenir l'adresse matérielle depuis %s erreur sysctl 2 " |
4830 | "- %s.\n" | 4869 | "- %s.\n" |
4831 | 4870 | ||
4832 | #: plugins-root/check_dhcp.c:361 | 4871 | #: plugins-root/check_dhcp.c:363 |
4833 | #, c-format | 4872 | #, c-format |
4834 | msgid "" | 4873 | msgid "" |
4835 | "Error: can't find unit number in interface_name (%s) - expecting TypeNumber " | 4874 | "Error: can't find unit number in interface_name (%s) - expecting TypeNumber " |
@@ -4838,7 +4877,7 @@ msgstr "" | |||
4838 | "Erreur: impossible de trouver le numéro dans le nom de l'interface (%s).\n" | 4877 | "Erreur: impossible de trouver le numéro dans le nom de l'interface (%s).\n" |
4839 | "J'attendais le nom suivi du type ex lnc0.\n" | 4878 | "J'attendais le nom suivi du type ex lnc0.\n" |
4840 | 4879 | ||
4841 | #: plugins-root/check_dhcp.c:366 plugins-root/check_dhcp.c:378 | 4880 | #: plugins-root/check_dhcp.c:368 plugins-root/check_dhcp.c:380 |
4842 | #, c-format | 4881 | #, c-format |
4843 | msgid "" | 4882 | msgid "" |
4844 | "Error: can't read MAC address from DLPI streams interface for device %s unit " | 4883 | "Error: can't read MAC address from DLPI streams interface for device %s unit " |
@@ -4847,42 +4886,42 @@ msgstr "" | |||
4847 | "Erreur: impossible de lire l'adresse MAC depuis l'interface DLPI pour le \n" | 4886 | "Erreur: impossible de lire l'adresse MAC depuis l'interface DLPI pour le \n" |
4848 | "périphérique %s numéro %d.\n" | 4887 | "périphérique %s numéro %d.\n" |
4849 | 4888 | ||
4850 | #: plugins-root/check_dhcp.c:384 | 4889 | #: plugins-root/check_dhcp.c:386 |
4851 | #, c-format | 4890 | #, c-format |
4852 | msgid "Error: can't get MAC address for this architecture.\n" | 4891 | msgid "Error: can't get MAC address for this architecture.\n" |
4853 | msgstr "Erreur: impossible d'obtenir l'adresse MAC pour cette architecture.\n" | 4892 | msgstr "Erreur: impossible d'obtenir l'adresse MAC pour cette architecture.\n" |
4854 | 4893 | ||
4855 | #: plugins-root/check_dhcp.c:389 | 4894 | #: plugins-root/check_dhcp.c:391 |
4856 | #, c-format | 4895 | #, c-format |
4857 | msgid "Hardware address: " | 4896 | msgid "Hardware address: " |
4858 | msgstr "Adresse matérielle: " | 4897 | msgstr "Adresse matérielle: " |
4859 | 4898 | ||
4860 | #: plugins-root/check_dhcp.c:464 | 4899 | #: plugins-root/check_dhcp.c:470 |
4861 | #, c-format | 4900 | #, c-format |
4862 | msgid "DHCPDISCOVER to %s port %d\n" | 4901 | msgid "DHCPDISCOVER to %s port %d\n" |
4863 | msgstr "DHCPDISCOVER vers %s port %d\n" | 4902 | msgstr "DHCPDISCOVER vers %s port %d\n" |
4864 | 4903 | ||
4865 | #: plugins-root/check_dhcp.c:517 | 4904 | #: plugins-root/check_dhcp.c:522 |
4866 | #, c-format | 4905 | #, c-format |
4867 | msgid "Result=ERROR\n" | 4906 | msgid "Result=ERROR\n" |
4868 | msgstr "Résultat=ERREUR\n" | 4907 | msgstr "Résultat=ERREUR\n" |
4869 | 4908 | ||
4870 | #: plugins-root/check_dhcp.c:523 | 4909 | #: plugins-root/check_dhcp.c:528 |
4871 | #, c-format | 4910 | #, c-format |
4872 | msgid "Result=OK\n" | 4911 | msgid "Result=OK\n" |
4873 | msgstr "Résultat=OK\n" | 4912 | msgstr "Résultat=OK\n" |
4874 | 4913 | ||
4875 | #: plugins-root/check_dhcp.c:538 | 4914 | #: plugins-root/check_dhcp.c:543 |
4876 | #, c-format | 4915 | #, c-format |
4877 | msgid "DHCPOFFER from IP address %s" | 4916 | msgid "DHCPOFFER from IP address %s" |
4878 | msgstr "DHCPOFFER depuis l'adresse IP %s" | 4917 | msgstr "DHCPOFFER depuis l'adresse IP %s" |
4879 | 4918 | ||
4880 | #: plugins-root/check_dhcp.c:539 | 4919 | #: plugins-root/check_dhcp.c:544 |
4881 | #, c-format | 4920 | #, c-format |
4882 | msgid " via %s\n" | 4921 | msgid " via %s\n" |
4883 | msgstr " depuis %s\n" | 4922 | msgstr " depuis %s\n" |
4884 | 4923 | ||
4885 | #: plugins-root/check_dhcp.c:546 | 4924 | #: plugins-root/check_dhcp.c:551 |
4886 | #, c-format | 4925 | #, c-format |
4887 | msgid "" | 4926 | msgid "" |
4888 | "DHCPOFFER XID (%lu) did not match DHCPDISCOVER XID (%lu) - ignoring packet\n" | 4927 | "DHCPOFFER XID (%lu) did not match DHCPDISCOVER XID (%lu) - ignoring packet\n" |
@@ -4890,67 +4929,67 @@ msgstr "" | |||
4890 | "DHCPOFFER XID (%lu) ne correspond pas à DHCPDISCOVER XID (%lu) - paquet " | 4929 | "DHCPOFFER XID (%lu) ne correspond pas à DHCPDISCOVER XID (%lu) - paquet " |
4891 | "ignoré\n" | 4930 | "ignoré\n" |
4892 | 4931 | ||
4893 | #: plugins-root/check_dhcp.c:568 | 4932 | #: plugins-root/check_dhcp.c:573 |
4894 | #, c-format | 4933 | #, c-format |
4895 | msgid "DHCPOFFER hardware address did not match our own - ignoring packet\n" | 4934 | msgid "DHCPOFFER hardware address did not match our own - ignoring packet\n" |
4896 | msgstr "" | 4935 | msgstr "" |
4897 | "l'adresse matérielle du DHCPOFFER ne correspond pas à la notre paquet " | 4936 | "l'adresse matérielle du DHCPOFFER ne correspond pas à la notre paquet " |
4898 | "ignoré\n" | 4937 | "ignoré\n" |
4899 | 4938 | ||
4900 | #: plugins-root/check_dhcp.c:586 | 4939 | #: plugins-root/check_dhcp.c:591 |
4901 | #, c-format | 4940 | #, c-format |
4902 | msgid "Total responses seen on the wire: %d\n" | 4941 | msgid "Total responses seen on the wire: %d\n" |
4903 | msgstr "Nombre total de réponses vues: %d\n" | 4942 | msgstr "Nombre total de réponses vues: %d\n" |
4904 | 4943 | ||
4905 | #: plugins-root/check_dhcp.c:587 | 4944 | #: plugins-root/check_dhcp.c:592 |
4906 | #, c-format | 4945 | #, c-format |
4907 | msgid "Valid responses for this machine: %d\n" | 4946 | msgid "Valid responses for this machine: %d\n" |
4908 | msgstr "Nombre de réponse valides pour cette machine: %d\n" | 4947 | msgstr "Nombre de réponse valides pour cette machine: %d\n" |
4909 | 4948 | ||
4910 | #: plugins-root/check_dhcp.c:603 | 4949 | #: plugins-root/check_dhcp.c:607 |
4911 | #, c-format | 4950 | #, c-format |
4912 | msgid "send_dhcp_packet result: %d\n" | 4951 | msgid "send_dhcp_packet result: %d\n" |
4913 | msgstr "résultat de send_dchp_packet: %d\n" | 4952 | msgstr "résultat de send_dchp_packet: %d\n" |
4914 | 4953 | ||
4915 | #: plugins-root/check_dhcp.c:632 | 4954 | #: plugins-root/check_dhcp.c:636 |
4916 | #, c-format | 4955 | #, c-format |
4917 | msgid "No (more) data received\n" | 4956 | msgid "No (more) data received\n" |
4918 | msgstr "Plus de données reçues\n" | 4957 | msgstr "Plus de données reçues\n" |
4919 | 4958 | ||
4920 | #: plugins-root/check_dhcp.c:651 | 4959 | #: plugins-root/check_dhcp.c:655 |
4921 | #, c-format | 4960 | #, c-format |
4922 | msgid "recvfrom() failed, " | 4961 | msgid "recvfrom() failed, " |
4923 | msgstr "recvfrom() a échoué, " | 4962 | msgstr "recvfrom() a échoué, " |
4924 | 4963 | ||
4925 | #: plugins-root/check_dhcp.c:658 | 4964 | #: plugins-root/check_dhcp.c:662 |
4926 | #, c-format | 4965 | #, c-format |
4927 | msgid "receive_dhcp_packet() result: %d\n" | 4966 | msgid "receive_dhcp_packet() result: %d\n" |
4928 | msgstr "résultat de receive_dchp_packet(): %d\n" | 4967 | msgstr "résultat de receive_dchp_packet(): %d\n" |
4929 | 4968 | ||
4930 | #: plugins-root/check_dhcp.c:659 | 4969 | #: plugins-root/check_dhcp.c:663 |
4931 | #, c-format | 4970 | #, c-format |
4932 | msgid "receive_dhcp_packet() source: %s\n" | 4971 | msgid "receive_dhcp_packet() source: %s\n" |
4933 | msgstr "source de receive_dchp_packet(): %s\n" | 4972 | msgstr "source de receive_dchp_packet(): %s\n" |
4934 | 4973 | ||
4935 | #: plugins-root/check_dhcp.c:688 | 4974 | #: plugins-root/check_dhcp.c:692 |
4936 | #, c-format | 4975 | #, c-format |
4937 | msgid "Error: Could not create socket!\n" | 4976 | msgid "Error: Could not create socket!\n" |
4938 | msgstr "Erreur: Impossible de créer un socket!\n" | 4977 | msgstr "Erreur: Impossible de créer un socket!\n" |
4939 | 4978 | ||
4940 | #: plugins-root/check_dhcp.c:698 | 4979 | #: plugins-root/check_dhcp.c:702 |
4941 | #, c-format | 4980 | #, c-format |
4942 | msgid "Error: Could not set reuse address option on DHCP socket!\n" | 4981 | msgid "Error: Could not set reuse address option on DHCP socket!\n" |
4943 | msgstr "" | 4982 | msgstr "" |
4944 | "Erreur: Impossible de configurer l'option de réutilisation de l'adresse sur\n" | 4983 | "Erreur: Impossible de configurer l'option de réutilisation de l'adresse sur\n" |
4945 | "le socket DHCP!\n" | 4984 | "le socket DHCP!\n" |
4946 | 4985 | ||
4947 | #: plugins-root/check_dhcp.c:704 | 4986 | #: plugins-root/check_dhcp.c:708 |
4948 | #, c-format | 4987 | #, c-format |
4949 | msgid "Error: Could not set broadcast option on DHCP socket!\n" | 4988 | msgid "Error: Could not set broadcast option on DHCP socket!\n" |
4950 | msgstr "" | 4989 | msgstr "" |
4951 | "Erreur: Impossible de configurer l'option broadcast sur le socket DHCP!\n" | 4990 | "Erreur: Impossible de configurer l'option broadcast sur le socket DHCP!\n" |
4952 | 4991 | ||
4953 | #: plugins-root/check_dhcp.c:712 | 4992 | #: plugins-root/check_dhcp.c:716 |
4954 | #, c-format | 4993 | #, c-format |
4955 | msgid "" | 4994 | msgid "" |
4956 | "Error: Could not bind socket to interface %s. Check your privileges...\n" | 4995 | "Error: Could not bind socket to interface %s. Check your privileges...\n" |
@@ -4958,7 +4997,7 @@ msgstr "" | |||
4958 | "Erreur: Impossible de connecter le socket à l'interface %s.\n" | 4997 | "Erreur: Impossible de connecter le socket à l'interface %s.\n" |
4959 | "Vérifiez vos droits...\n" | 4998 | "Vérifiez vos droits...\n" |
4960 | 4999 | ||
4961 | #: plugins-root/check_dhcp.c:722 | 5000 | #: plugins-root/check_dhcp.c:726 |
4962 | #, c-format | 5001 | #, c-format |
4963 | msgid "" | 5002 | msgid "" |
4964 | "Error: Could not bind to DHCP socket (port %d)! Check your privileges...\n" | 5003 | "Error: Could not bind to DHCP socket (port %d)! Check your privileges...\n" |
@@ -4966,125 +5005,125 @@ msgstr "" | |||
4966 | "Erreur: Impossible de se connecter au socket (port %d)! Vérifiez vos " | 5005 | "Erreur: Impossible de se connecter au socket (port %d)! Vérifiez vos " |
4967 | "droits..\n" | 5006 | "droits..\n" |
4968 | 5007 | ||
4969 | #: plugins-root/check_dhcp.c:756 | 5008 | #: plugins-root/check_dhcp.c:760 |
4970 | #, c-format | 5009 | #, c-format |
4971 | msgid "Requested server address: %s\n" | 5010 | msgid "Requested server address: %s\n" |
4972 | msgstr "Adresse serveur demandée: %s\n" | 5011 | msgstr "Adresse serveur demandée: %s\n" |
4973 | 5012 | ||
4974 | #: plugins-root/check_dhcp.c:812 | 5013 | #: plugins-root/check_dhcp.c:821 |
4975 | #, c-format | 5014 | #, c-format |
4976 | msgid "Lease Time: Infinite\n" | 5015 | msgid "Lease Time: Infinite\n" |
4977 | msgstr "Durée du Bail: Infini\n" | 5016 | msgstr "Durée du Bail: Infini\n" |
4978 | 5017 | ||
4979 | #: plugins-root/check_dhcp.c:814 | 5018 | #: plugins-root/check_dhcp.c:823 |
4980 | #, c-format | 5019 | #, c-format |
4981 | msgid "Lease Time: %lu seconds\n" | 5020 | msgid "Lease Time: %lu seconds\n" |
4982 | msgstr "Durée du Bail: %lu secondes\n" | 5021 | msgstr "Durée du Bail: %lu secondes\n" |
4983 | 5022 | ||
4984 | #: plugins-root/check_dhcp.c:816 | 5023 | #: plugins-root/check_dhcp.c:825 |
4985 | #, c-format | 5024 | #, c-format |
4986 | msgid "Renewal Time: Infinite\n" | 5025 | msgid "Renewal Time: Infinite\n" |
4987 | msgstr "Renouvellement du bail: Infini\n" | 5026 | msgstr "Renouvellement du bail: Infini\n" |
4988 | 5027 | ||
4989 | #: plugins-root/check_dhcp.c:818 | 5028 | #: plugins-root/check_dhcp.c:827 |
4990 | #, c-format | 5029 | #, c-format |
4991 | msgid "Renewal Time: %lu seconds\n" | 5030 | msgid "Renewal Time: %lu seconds\n" |
4992 | msgstr "Durée du renouvellement = %lu secondes\n" | 5031 | msgstr "Durée du renouvellement = %lu secondes\n" |
4993 | 5032 | ||
4994 | #: plugins-root/check_dhcp.c:820 | 5033 | #: plugins-root/check_dhcp.c:829 |
4995 | #, c-format | 5034 | #, c-format |
4996 | msgid "Rebinding Time: Infinite\n" | 5035 | msgid "Rebinding Time: Infinite\n" |
4997 | msgstr "Délai de nouvelle demande: Infini\n" | 5036 | msgstr "Délai de nouvelle demande: Infini\n" |
4998 | 5037 | ||
4999 | #: plugins-root/check_dhcp.c:821 | 5038 | #: plugins-root/check_dhcp.c:830 |
5000 | #, c-format | 5039 | #, c-format |
5001 | msgid "Rebinding Time: %lu seconds\n" | 5040 | msgid "Rebinding Time: %lu seconds\n" |
5002 | msgstr "Délai de nouvelle demande: %lu secondes\n" | 5041 | msgstr "Délai de nouvelle demande: %lu secondes\n" |
5003 | 5042 | ||
5004 | #: plugins-root/check_dhcp.c:837 | 5043 | #: plugins-root/check_dhcp.c:858 |
5005 | #, c-format | 5044 | #, c-format |
5006 | msgid "Added offer from server @ %s" | 5045 | msgid "Added offer from server @ %s" |
5007 | msgstr "Rajouté offre du serveur @ %s" | 5046 | msgstr "Rajouté offre du serveur @ %s" |
5008 | 5047 | ||
5009 | #: plugins-root/check_dhcp.c:838 | 5048 | #: plugins-root/check_dhcp.c:859 |
5010 | #, c-format | 5049 | #, c-format |
5011 | msgid " of IP address %s\n" | 5050 | msgid " of IP address %s\n" |
5012 | msgstr "de l'adresse IP %s\n" | 5051 | msgstr "de l'adresse IP %s\n" |
5013 | 5052 | ||
5014 | #: plugins-root/check_dhcp.c:905 | 5053 | #: plugins-root/check_dhcp.c:926 |
5015 | #, c-format | 5054 | #, c-format |
5016 | msgid "DHCP Server Match: Offerer=%s" | 5055 | msgid "DHCP Server Match: Offerer=%s" |
5017 | msgstr "Correspondance du serveur DHCP: Offrant=%s" | 5056 | msgstr "Correspondance du serveur DHCP: Offrant=%s" |
5018 | 5057 | ||
5019 | #: plugins-root/check_dhcp.c:906 | 5058 | #: plugins-root/check_dhcp.c:927 |
5020 | #, c-format | 5059 | #, c-format |
5021 | msgid " Requested=%s" | 5060 | msgid " Requested=%s" |
5022 | msgstr " Demandé=%s" | 5061 | msgstr " Demandé=%s" |
5023 | 5062 | ||
5024 | #: plugins-root/check_dhcp.c:908 | 5063 | #: plugins-root/check_dhcp.c:929 |
5025 | #, c-format | 5064 | #, c-format |
5026 | msgid " (duplicate)" | 5065 | msgid " (duplicate)" |
5027 | msgstr "" | 5066 | msgstr "" |
5028 | 5067 | ||
5029 | #: plugins-root/check_dhcp.c:909 | 5068 | #: plugins-root/check_dhcp.c:930 |
5030 | #, c-format | 5069 | #, c-format |
5031 | msgid "\n" | 5070 | msgid "\n" |
5032 | msgstr "" | 5071 | msgstr "" |
5033 | 5072 | ||
5034 | #: plugins-root/check_dhcp.c:957 | 5073 | #: plugins-root/check_dhcp.c:978 |
5035 | #, c-format | 5074 | #, c-format |
5036 | msgid "No DHCPOFFERs were received.\n" | 5075 | msgid "No DHCPOFFERs were received.\n" |
5037 | msgstr "Pas de DHCPOFFERs reçus.\n" | 5076 | msgstr "Pas de DHCPOFFERs reçus.\n" |
5038 | 5077 | ||
5039 | #: plugins-root/check_dhcp.c:961 | 5078 | #: plugins-root/check_dhcp.c:982 |
5040 | #, c-format | 5079 | #, c-format |
5041 | msgid "Received %d DHCPOFFER(s)" | 5080 | msgid "Received %d DHCPOFFER(s)" |
5042 | msgstr "Reçu %d DHCPOFFER(s)" | 5081 | msgstr "Reçu %d DHCPOFFER(s)" |
5043 | 5082 | ||
5044 | #: plugins-root/check_dhcp.c:964 | 5083 | #: plugins-root/check_dhcp.c:985 |
5045 | #, c-format | 5084 | #, c-format |
5046 | msgid ", %s%d of %d requested servers responded" | 5085 | msgid ", %s%d of %d requested servers responded" |
5047 | msgstr ", %s%d de %d serveurs ont répondus" | 5086 | msgstr ", %s%d de %d serveurs ont répondus" |
5048 | 5087 | ||
5049 | #: plugins-root/check_dhcp.c:967 | 5088 | #: plugins-root/check_dhcp.c:988 |
5050 | #, c-format | 5089 | #, c-format |
5051 | msgid ", requested address (%s) was %soffered" | 5090 | msgid ", requested address (%s) was %soffered" |
5052 | msgstr ", l'adresse demandée (%s) %s été offerte" | 5091 | msgstr ", l'adresse demandée (%s) %s été offerte" |
5053 | 5092 | ||
5054 | #: plugins-root/check_dhcp.c:967 | 5093 | #: plugins-root/check_dhcp.c:988 |
5055 | msgid "not " | 5094 | msgid "not " |
5056 | msgstr "n'as pas" | 5095 | msgstr "n'as pas" |
5057 | 5096 | ||
5058 | #: plugins-root/check_dhcp.c:969 | 5097 | #: plugins-root/check_dhcp.c:990 |
5059 | #, c-format | 5098 | #, c-format |
5060 | msgid ", max lease time = " | 5099 | msgid ", max lease time = " |
5061 | msgstr ", bail maximum = " | 5100 | msgstr ", bail maximum = " |
5062 | 5101 | ||
5063 | #: plugins-root/check_dhcp.c:971 | 5102 | #: plugins-root/check_dhcp.c:992 |
5064 | #, c-format | 5103 | #, c-format |
5065 | msgid "Infinity" | 5104 | msgid "Infinity" |
5066 | msgstr "Infini" | 5105 | msgstr "Infini" |
5067 | 5106 | ||
5068 | #: plugins-root/check_dhcp.c:1148 | 5107 | #: plugins-root/check_dhcp.c:1169 |
5069 | #, c-format | 5108 | #, c-format |
5070 | msgid "Error: DLPI stream API failed to get MAC in check_ctrl: %s.\n" | 5109 | msgid "Error: DLPI stream API failed to get MAC in check_ctrl: %s.\n" |
5071 | msgstr "" | 5110 | msgstr "" |
5072 | "Erreur: Impossible d'obtenir la MAC par l'API DLPI dans check_ctrl: %s.\n" | 5111 | "Erreur: Impossible d'obtenir la MAC par l'API DLPI dans check_ctrl: %s.\n" |
5073 | 5112 | ||
5074 | #: plugins-root/check_dhcp.c:1160 | 5113 | #: plugins-root/check_dhcp.c:1181 |
5075 | #, c-format | 5114 | #, c-format |
5076 | msgid "Error: DLPI stream API failed to get MAC in put_ctrl/putmsg(): %s.\n" | 5115 | msgid "Error: DLPI stream API failed to get MAC in put_ctrl/putmsg(): %s.\n" |
5077 | msgstr "" | 5116 | msgstr "" |
5078 | "Erreur: Impossible d'obtenir la MAC par l'API DLPI dans put_ctrl/putmsg(): %" | 5117 | "Erreur: Impossible d'obtenir la MAC par l'API DLPI dans put_ctrl/putmsg(): %" |
5079 | "s.\n" | 5118 | "s.\n" |
5080 | 5119 | ||
5081 | #: plugins-root/check_dhcp.c:1173 | 5120 | #: plugins-root/check_dhcp.c:1194 |
5082 | #, c-format | 5121 | #, c-format |
5083 | msgid "Error: DLPI stream API failed to get MAC in put_both/putmsg().\n" | 5122 | msgid "Error: DLPI stream API failed to get MAC in put_both/putmsg().\n" |
5084 | msgstr "" | 5123 | msgstr "" |
5085 | "Erreur: Impossible d'obtenir la MAC par l'API DLPI dans put_both/putmsg().\n" | 5124 | "Erreur: Impossible d'obtenir la MAC par l'API DLPI dans put_both/putmsg().\n" |
5086 | 5125 | ||
5087 | #: plugins-root/check_dhcp.c:1185 | 5126 | #: plugins-root/check_dhcp.c:1206 |
5088 | #, c-format | 5127 | #, c-format |
5089 | msgid "" | 5128 | msgid "" |
5090 | "Error: DLPI stream API failed to get MAC in dl_attach_req/open(%s..): %s.\n" | 5129 | "Error: DLPI stream API failed to get MAC in dl_attach_req/open(%s..): %s.\n" |
@@ -5092,30 +5131,30 @@ msgstr "" | |||
5092 | "Erreur: Impossible d'obtenir la MAC par l'API DLPI dans dl_attach_req/open(%" | 5131 | "Erreur: Impossible d'obtenir la MAC par l'API DLPI dans dl_attach_req/open(%" |
5093 | "s..): %s.\n" | 5132 | "s..): %s.\n" |
5094 | 5133 | ||
5095 | #: plugins-root/check_dhcp.c:1209 | 5134 | #: plugins-root/check_dhcp.c:1230 |
5096 | #, c-format | 5135 | #, c-format |
5097 | msgid "Error: DLPI stream API failed to get MAC in dl_bind/check_ctrl(): %s.\n" | 5136 | msgid "Error: DLPI stream API failed to get MAC in dl_bind/check_ctrl(): %s.\n" |
5098 | msgstr "" | 5137 | msgstr "" |
5099 | "Erreur: Impossible d'obtenir la MAC par l'API DLPI dans dl_bind/check_ctrl" | 5138 | "Erreur: Impossible d'obtenir la MAC par l'API DLPI dans dl_bind/check_ctrl" |
5100 | "(): %s.\n" | 5139 | "(): %s.\n" |
5101 | 5140 | ||
5102 | #: plugins-root/check_dhcp.c:1257 | 5141 | #: plugins-root/check_dhcp.c:1278 |
5103 | msgid "This plugin tests the availability of DHCP servers on a network." | 5142 | msgid "This plugin tests the availability of DHCP servers on a network." |
5104 | msgstr "Ce plugin teste la disponibilité de serveurs DHCP dans un réseau." | 5143 | msgstr "Ce plugin teste la disponibilité de serveurs DHCP dans un réseau." |
5105 | 5144 | ||
5106 | #: plugins-root/check_dhcp.c:1268 | 5145 | #: plugins-root/check_dhcp.c:1289 |
5107 | msgid "IP address of DHCP server that we must hear from" | 5146 | msgid "IP address of DHCP server that we must hear from" |
5108 | msgstr "" | 5147 | msgstr "" |
5109 | 5148 | ||
5110 | #: plugins-root/check_dhcp.c:1270 | 5149 | #: plugins-root/check_dhcp.c:1291 |
5111 | msgid "IP address that should be offered by at least one DHCP server" | 5150 | msgid "IP address that should be offered by at least one DHCP server" |
5112 | msgstr "" | 5151 | msgstr "" |
5113 | 5152 | ||
5114 | #: plugins-root/check_dhcp.c:1272 | 5153 | #: plugins-root/check_dhcp.c:1293 |
5115 | msgid "Seconds to wait for DHCPOFFER before timeout occurs" | 5154 | msgid "Seconds to wait for DHCPOFFER before timeout occurs" |
5116 | msgstr "" | 5155 | msgstr "" |
5117 | 5156 | ||
5118 | #: plugins-root/check_dhcp.c:1274 | 5157 | #: plugins-root/check_dhcp.c:1295 |
5119 | msgid "Interface to to use for listening (i.e. eth0)" | 5158 | msgid "Interface to to use for listening (i.e. eth0)" |
5120 | msgstr "" | 5159 | msgstr "" |
5121 | 5160 | ||
@@ -5189,3 +5228,11 @@ msgstr "" | |||
5189 | #: plugins-root/check_icmp.c:1267 | 5228 | #: plugins-root/check_icmp.c:1267 |
5190 | msgid "The -v switch can be specified several times for increased verbosity." | 5229 | msgid "The -v switch can be specified several times for increased verbosity." |
5191 | msgstr "" | 5230 | msgstr "" |
5231 | |||
5232 | #~ msgid "Unknown error" | ||
5233 | #~ msgstr "Erreur inconnue" | ||
5234 | |||
5235 | #~ msgid "Ignore first n lines on STDERR (to suppress a logon banner)" | ||
5236 | #~ msgstr "" | ||
5237 | #~ "ignorer les x premières lignes sur STDERR (pour supprimer une bannière de " | ||
5238 | #~ "connexion)" | ||
diff --git a/po/nagios-plugins.pot b/po/nagios-plugins.pot index 8e28bc5..b00b6ae 100644 --- a/po/nagios-plugins.pot +++ b/po/nagios-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: nagiosplug-devel@lists.sourceforge.net\n" | 10 | "Report-Msgid-Bugs-To: nagiosplug-devel@lists.sourceforge.net\n" |
11 | "POT-Creation-Date: 2007-04-10 03:05-0400\n" | 11 | "POT-Creation-Date: 2007-05-23 03:45-0400\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" |
@@ -17,10 +17,10 @@ msgstr "" | |||
17 | "Content-Transfer-Encoding: 8bit\n" | 17 | "Content-Transfer-Encoding: 8bit\n" |
18 | "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" | 18 | "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" |
19 | 19 | ||
20 | #: plugins/check_by_ssh.c:82 plugins/check_dig.c:89 plugins/check_disk.c:192 | 20 | #: plugins/check_by_ssh.c:83 plugins/check_dig.c:89 plugins/check_disk.c:192 |
21 | #: plugins/check_dns.c:93 plugins/check_dummy.c:59 plugins/check_fping.c:89 | 21 | #: plugins/check_dns.c:93 plugins/check_dummy.c:59 plugins/check_fping.c:89 |
22 | #: plugins/check_game.c:84 plugins/check_hpjd.c:106 plugins/check_http.c:147 | 22 | #: plugins/check_game.c:84 plugins/check_hpjd.c:106 plugins/check_http.c:147 |
23 | #: plugins/check_ldap.c:105 plugins/check_load.c:122 | 23 | #: plugins/check_ldap.c:105 plugins/check_load.c:124 |
24 | #: plugins/check_mrtgtraf.c:83 plugins/check_mysql.c:88 | 24 | #: plugins/check_mrtgtraf.c:83 plugins/check_mysql.c:88 |
25 | #: plugins/check_nagios.c:94 plugins/check_nt.c:126 plugins/check_ntp.c:758 | 25 | #: plugins/check_nagios.c:94 plugins/check_nt.c:126 plugins/check_ntp.c:758 |
26 | #: plugins/check_nwstat.c:177 plugins/check_overcr.c:106 | 26 | #: plugins/check_nwstat.c:177 plugins/check_overcr.c:106 |
@@ -28,184 +28,193 @@ msgstr "" | |||
28 | #: plugins/check_radius.c:133 plugins/check_real.c:85 plugins/check_smtp.c:180 | 28 | #: plugins/check_radius.c:133 plugins/check_real.c:85 plugins/check_smtp.c:180 |
29 | #: plugins/check_snmp.c:182 plugins/check_ssh.c:78 plugins/check_swap.c:113 | 29 | #: plugins/check_snmp.c:182 plugins/check_ssh.c:78 plugins/check_swap.c:113 |
30 | #: plugins/check_tcp.c:208 plugins/check_time.c:82 plugins/check_ups.c:125 | 30 | #: plugins/check_tcp.c:208 plugins/check_time.c:82 plugins/check_ups.c:125 |
31 | #: plugins/check_users.c:70 plugins/negate.c:102 plugins-root/check_dhcp.c:256 | 31 | #: plugins/check_users.c:70 plugins/negate.c:102 plugins-root/check_dhcp.c:258 |
32 | msgid "Could not parse arguments" | 32 | msgid "Could not parse arguments" |
33 | msgstr "" | 33 | msgstr "" |
34 | 34 | ||
35 | #: plugins/check_by_ssh.c:86 plugins/check_dig.c:86 plugins/check_dns.c:89 | 35 | #: plugins/check_by_ssh.c:87 plugins/check_dig.c:86 plugins/check_dns.c:89 |
36 | #: plugins/check_nagios.c:98 plugins/check_pgsql.c:160 | 36 | #: plugins/check_nagios.c:98 plugins/check_pgsql.c:160 |
37 | #: plugins/check_ping.c:103 plugins/check_procs.c:150 plugins/negate.c:106 | 37 | #: plugins/check_ping.c:103 plugins/check_procs.c:150 plugins/negate.c:106 |
38 | msgid "Cannot catch SIGALRM" | 38 | msgid "Cannot catch SIGALRM" |
39 | msgstr "" | 39 | msgstr "" |
40 | 40 | ||
41 | #: plugins/check_by_ssh.c:97 | 41 | #: plugins/check_by_ssh.c:104 |
42 | #, c-format | 42 | #, c-format |
43 | msgid "Remote command execution failed: %s\n" | 43 | msgid "Remote command execution failed: %s\n" |
44 | msgstr "" | 44 | msgstr "" |
45 | 45 | ||
46 | #: plugins/check_by_ssh.c:98 | 46 | #: plugins/check_by_ssh.c:115 |
47 | msgid "Unknown error" | 47 | #, c-format |
48 | msgid "%s - check_by_ssh: Remote command '%s' returned status %d\n" | ||
48 | msgstr "" | 49 | msgstr "" |
49 | 50 | ||
50 | #: plugins/check_by_ssh.c:116 | 51 | #: plugins/check_by_ssh.c:127 |
51 | #, c-format | 52 | #, c-format |
52 | msgid "SSH WARNING: could not open %s\n" | 53 | msgid "SSH WARNING: could not open %s\n" |
53 | msgstr "" | 54 | msgstr "" |
54 | 55 | ||
55 | #: plugins/check_by_ssh.c:200 plugins/check_disk.c:507 | 56 | #: plugins/check_by_ssh.c:213 plugins/check_disk.c:507 |
56 | #: plugins/check_http.c:241 plugins/check_ldap.c:281 plugins/check_pgsql.c:237 | 57 | #: plugins/check_http.c:241 plugins/check_ldap.c:281 plugins/check_pgsql.c:237 |
57 | #: plugins/check_procs.c:371 plugins/check_radius.c:215 | 58 | #: plugins/check_procs.c:371 plugins/check_radius.c:215 |
58 | #: plugins/check_radius.c:285 plugins/check_real.c:361 | 59 | #: plugins/check_radius.c:285 plugins/check_real.c:361 |
59 | #: plugins/check_smtp.c:629 plugins/check_snmp.c:494 plugins/check_ssh.c:143 | 60 | #: plugins/check_smtp.c:629 plugins/check_snmp.c:498 plugins/check_ssh.c:143 |
60 | #: plugins/check_tcp.c:500 plugins/check_time.c:306 plugins/check_ups.c:555 | 61 | #: plugins/check_tcp.c:500 plugins/check_time.c:306 plugins/check_ups.c:555 |
61 | #: plugins/negate.c:203 | 62 | #: plugins/negate.c:203 |
62 | msgid "Timeout interval must be a positive integer" | 63 | msgid "Timeout interval must be a positive integer" |
63 | msgstr "" | 64 | msgstr "" |
64 | 65 | ||
65 | #: plugins/check_by_ssh.c:210 plugins/check_pgsql.c:261 | 66 | #: plugins/check_by_ssh.c:223 plugins/check_pgsql.c:261 |
66 | #: plugins/check_radius.c:224 plugins/check_radius.c:258 | 67 | #: plugins/check_radius.c:224 plugins/check_radius.c:258 |
67 | #: plugins/check_real.c:332 plugins/check_smtp.c:561 plugins/check_tcp.c:506 | 68 | #: plugins/check_real.c:332 plugins/check_smtp.c:561 plugins/check_tcp.c:506 |
68 | #: plugins/check_time.c:300 plugins/check_ups.c:517 | 69 | #: plugins/check_time.c:300 plugins/check_ups.c:517 |
69 | msgid "Port must be a positive integer" | 70 | msgid "Port must be a positive integer" |
70 | msgstr "" | 71 | msgstr "" |
71 | 72 | ||
72 | #: plugins/check_by_ssh.c:254 | 73 | #: plugins/check_by_ssh.c:269 |
73 | msgid "skip lines must be an integer" | 74 | msgid "skip-stdout argument must be an integer" |
75 | msgstr "" | ||
76 | |||
77 | #: plugins/check_by_ssh.c:277 | ||
78 | msgid "skip-stderr argument must be an integer" | ||
74 | msgstr "" | 79 | msgstr "" |
75 | 80 | ||
76 | #: plugins/check_by_ssh.c:272 | 81 | #: plugins/check_by_ssh.c:295 |
77 | #, c-format | 82 | #, c-format |
78 | msgid "%s: You must provide a host name\n" | 83 | msgid "%s: You must provide a host name\n" |
79 | msgstr "" | 84 | msgstr "" |
80 | 85 | ||
81 | #: plugins/check_by_ssh.c:290 | 86 | #: plugins/check_by_ssh.c:313 |
82 | msgid "No remotecmd" | 87 | msgid "No remotecmd" |
83 | msgstr "" | 88 | msgstr "" |
84 | 89 | ||
85 | #: plugins/check_by_ssh.c:306 | 90 | #: plugins/check_by_ssh.c:329 |
86 | #, c-format | 91 | #, c-format |
87 | msgid "" | 92 | msgid "" |
88 | "%s: In passive mode, you must provide a service name for each command.\n" | 93 | "%s: In passive mode, you must provide a service name for each command.\n" |
89 | msgstr "" | 94 | msgstr "" |
90 | 95 | ||
91 | #: plugins/check_by_ssh.c:309 | 96 | #: plugins/check_by_ssh.c:332 |
92 | #, c-format | 97 | #, c-format |
93 | msgid "" | 98 | msgid "" |
94 | "%s: In passive mode, you must provide the host short name from the nagios " | 99 | "%s: In passive mode, you must provide the host short name from the nagios " |
95 | "configs.\n" | 100 | "configs.\n" |
96 | msgstr "" | 101 | msgstr "" |
97 | 102 | ||
98 | #: plugins/check_by_ssh.c:323 | 103 | #: plugins/check_by_ssh.c:346 |
99 | #, c-format | 104 | #, c-format |
100 | msgid "This plugin uses SSH to execute commands on a remote host" | 105 | msgid "This plugin uses SSH to execute commands on a remote host" |
101 | msgstr "" | 106 | msgstr "" |
102 | 107 | ||
103 | #: plugins/check_by_ssh.c:336 | 108 | #: plugins/check_by_ssh.c:359 |
104 | msgid "tell ssh to use Protocol 1" | 109 | msgid "tell ssh to use Protocol 1 [optional]" |
110 | msgstr "" | ||
111 | |||
112 | #: plugins/check_by_ssh.c:361 | ||
113 | msgid "tell ssh to use Protocol 2 [optional]" | ||
105 | msgstr "" | 114 | msgstr "" |
106 | 115 | ||
107 | #: plugins/check_by_ssh.c:338 | 116 | #: plugins/check_by_ssh.c:363 |
108 | msgid "tell ssh to use Protocol 2" | 117 | msgid "Ignore all or (if specified) first n lines on STDOUT [optional]" |
109 | msgstr "" | 118 | msgstr "" |
110 | 119 | ||
111 | #: plugins/check_by_ssh.c:340 | 120 | #: plugins/check_by_ssh.c:365 |
112 | msgid "Ignore first n lines on STDERR (to suppress a logon banner)" | 121 | msgid "Ignore all or (if specified) first n lines on STDERR [optional]" |
113 | msgstr "" | 122 | msgstr "" |
114 | 123 | ||
115 | #: plugins/check_by_ssh.c:342 | 124 | #: plugins/check_by_ssh.c:367 |
116 | msgid "tells ssh to fork rather than create a tty" | 125 | msgid "tells ssh to fork rather than create a tty [optional]" |
117 | msgstr "" | 126 | msgstr "" |
118 | 127 | ||
119 | #: plugins/check_by_ssh.c:344 | 128 | #: plugins/check_by_ssh.c:369 |
120 | msgid "command to execute on the remote machine" | 129 | msgid "command to execute on the remote machine" |
121 | msgstr "" | 130 | msgstr "" |
122 | 131 | ||
123 | #: plugins/check_by_ssh.c:346 | 132 | #: plugins/check_by_ssh.c:371 |
124 | msgid "SSH user name on remote host [optional]" | 133 | msgid "SSH user name on remote host [optional]" |
125 | msgstr "" | 134 | msgstr "" |
126 | 135 | ||
127 | #: plugins/check_by_ssh.c:348 | 136 | #: plugins/check_by_ssh.c:373 |
128 | msgid "identity of an authorized key [optional]" | 137 | msgid "identity of an authorized key [optional]" |
129 | msgstr "" | 138 | msgstr "" |
130 | 139 | ||
131 | #: plugins/check_by_ssh.c:350 | 140 | #: plugins/check_by_ssh.c:375 |
132 | msgid "external command file for nagios [optional]" | 141 | msgid "external command file for nagios [optional]" |
133 | msgstr "" | 142 | msgstr "" |
134 | 143 | ||
135 | #: plugins/check_by_ssh.c:352 | 144 | #: plugins/check_by_ssh.c:377 |
136 | msgid "list of nagios service names, separated by ':' [optional]" | 145 | msgid "list of nagios service names, separated by ':' [optional]" |
137 | msgstr "" | 146 | msgstr "" |
138 | 147 | ||
139 | #: plugins/check_by_ssh.c:354 | 148 | #: plugins/check_by_ssh.c:379 |
140 | msgid "short name of host in nagios configuration [optional]" | 149 | msgid "short name of host in nagios configuration [optional]" |
141 | msgstr "" | 150 | msgstr "" |
142 | 151 | ||
143 | #: plugins/check_by_ssh.c:356 | 152 | #: plugins/check_by_ssh.c:381 |
144 | msgid "Call ssh with '-o OPTION' (may be used multiple times) [optional]" | 153 | msgid "Call ssh with '-o OPTION' (may be used multiple times) [optional]" |
145 | msgstr "" | 154 | msgstr "" |
146 | 155 | ||
147 | #: plugins/check_by_ssh.c:358 | 156 | #: plugins/check_by_ssh.c:383 |
148 | msgid "Tell ssh to suppress warning and diagnostic messages [optional]" | 157 | msgid "Tell ssh to suppress warning and diagnostic messages [optional]" |
149 | msgstr "" | 158 | msgstr "" |
150 | 159 | ||
151 | #: plugins/check_by_ssh.c:361 | 160 | #: plugins/check_by_ssh.c:386 |
152 | msgid "The most common mode of use is to refer to a local identity file with" | 161 | msgid "The most common mode of use is to refer to a local identity file with" |
153 | msgstr "" | 162 | msgstr "" |
154 | 163 | ||
155 | #: plugins/check_by_ssh.c:362 | 164 | #: plugins/check_by_ssh.c:387 |
156 | msgid "the '-i' option. In this mode, the identity pair should have a null" | 165 | msgid "the '-i' option. In this mode, the identity pair should have a null" |
157 | msgstr "" | 166 | msgstr "" |
158 | 167 | ||
159 | #: plugins/check_by_ssh.c:363 | 168 | #: plugins/check_by_ssh.c:388 |
160 | msgid "passphrase and the public key should be listed in the authorized_keys" | 169 | msgid "passphrase and the public key should be listed in the authorized_keys" |
161 | msgstr "" | 170 | msgstr "" |
162 | 171 | ||
163 | #: plugins/check_by_ssh.c:364 | 172 | #: plugins/check_by_ssh.c:389 |
164 | msgid "file of the remote host. Usually the key will be restricted to running" | 173 | msgid "file of the remote host. Usually the key will be restricted to running" |
165 | msgstr "" | 174 | msgstr "" |
166 | 175 | ||
167 | #: plugins/check_by_ssh.c:365 | 176 | #: plugins/check_by_ssh.c:390 |
168 | msgid "only one command on the remote server. If the remote SSH server tracks" | 177 | msgid "only one command on the remote server. If the remote SSH server tracks" |
169 | msgstr "" | 178 | msgstr "" |
170 | 179 | ||
171 | #: plugins/check_by_ssh.c:366 | 180 | #: plugins/check_by_ssh.c:391 |
172 | msgid "invocation arguments, the one remote program may be an agent that can" | 181 | msgid "invocation arguments, the one remote program may be an agent that can" |
173 | msgstr "" | 182 | msgstr "" |
174 | 183 | ||
175 | #: plugins/check_by_ssh.c:367 | 184 | #: plugins/check_by_ssh.c:392 |
176 | msgid "execute additional commands as proxy" | 185 | msgid "execute additional commands as proxy" |
177 | msgstr "" | 186 | msgstr "" |
178 | 187 | ||
179 | #: plugins/check_by_ssh.c:368 | 188 | #: plugins/check_by_ssh.c:393 |
180 | msgid "To use passive mode, provide multiple '-C' options, and provide" | 189 | msgid "To use passive mode, provide multiple '-C' options, and provide" |
181 | msgstr "" | 190 | msgstr "" |
182 | 191 | ||
183 | #: plugins/check_by_ssh.c:369 | 192 | #: plugins/check_by_ssh.c:394 |
184 | msgid "" | 193 | msgid "" |
185 | "all of -O, -s, and -n options (servicelist order must match '-C'options)" | 194 | "all of -O, -s, and -n options (servicelist order must match '-C'options)" |
186 | msgstr "" | 195 | msgstr "" |
187 | 196 | ||
188 | #: plugins/check_by_ssh.c:371 plugins/check_disk.c:901 | 197 | #: plugins/check_by_ssh.c:396 plugins/check_disk.c:902 |
189 | #: plugins/check_http.c:1324 plugins/check_nagios.c:303 | 198 | #: plugins/check_http.c:1324 plugins/check_nagios.c:303 |
190 | #: plugins/check_procs.c:735 plugins/negate.c:269 plugins/urlize.c:187 | 199 | #: plugins/check_procs.c:735 plugins/negate.c:269 plugins/urlize.c:187 |
191 | #, c-format | 200 | #, c-format |
192 | msgid "Examples:" | 201 | msgid "Examples:" |
193 | msgstr "" | 202 | msgstr "" |
194 | 203 | ||
195 | #: plugins/check_by_ssh.c:385 plugins/check_dig.c:336 plugins/check_disk.c:912 | 204 | #: plugins/check_by_ssh.c:410 plugins/check_dig.c:336 plugins/check_disk.c:913 |
196 | #: plugins/check_dns.c:447 plugins/check_dummy.c:127 plugins/check_fping.c:407 | 205 | #: plugins/check_dns.c:447 plugins/check_dummy.c:127 plugins/check_fping.c:407 |
197 | #: plugins/check_game.c:334 plugins/check_hpjd.c:415 plugins/check_http.c:1347 | 206 | #: plugins/check_game.c:334 plugins/check_hpjd.c:415 plugins/check_http.c:1347 |
198 | #: plugins/check_ldap.c:411 plugins/check_load.c:311 plugins/check_mrtg.c:383 | 207 | #: plugins/check_ldap.c:411 plugins/check_load.c:326 plugins/check_mrtg.c:383 |
199 | #: plugins/check_mysql.c:407 plugins/check_nagios.c:313 plugins/check_nt.c:707 | 208 | #: plugins/check_mysql.c:407 plugins/check_nagios.c:313 plugins/check_nt.c:707 |
200 | #: plugins/check_ntp.c:859 plugins/check_nwstat.c:1688 | 209 | #: plugins/check_ntp.c:859 plugins/check_nwstat.c:1688 |
201 | #: plugins/check_overcr.c:469 plugins/check_pgsql.c:458 | 210 | #: plugins/check_overcr.c:469 plugins/check_pgsql.c:458 |
202 | #: plugins/check_ping.c:597 plugins/check_procs.c:753 | 211 | #: plugins/check_ping.c:597 plugins/check_procs.c:753 |
203 | #: plugins/check_radius.c:349 plugins/check_real.c:454 | 212 | #: plugins/check_radius.c:349 plugins/check_real.c:454 |
204 | #: plugins/check_smtp.c:780 plugins/check_snmp.c:1007 plugins/check_ssh.c:306 | 213 | #: plugins/check_smtp.c:780 plugins/check_snmp.c:1011 plugins/check_ssh.c:306 |
205 | #: plugins/check_swap.c:560 plugins/check_tcp.c:656 plugins/check_time.c:373 | 214 | #: plugins/check_swap.c:560 plugins/check_tcp.c:656 plugins/check_time.c:373 |
206 | #: plugins/check_ups.c:653 plugins/check_users.c:230 | 215 | #: plugins/check_ups.c:657 plugins/check_users.c:230 |
207 | #: plugins/check_ide_smart.c:544 plugins/negate.c:290 plugins/urlize.c:204 | 216 | #: plugins/check_ide_smart.c:544 plugins/negate.c:290 plugins/urlize.c:204 |
208 | #: plugins-root/check_dhcp.c:1283 plugins-root/check_icmp.c:1282 | 217 | #: plugins-root/check_dhcp.c:1304 plugins-root/check_icmp.c:1282 |
209 | #, c-format | 218 | #, c-format |
210 | msgid "Usage:" | 219 | msgid "Usage:" |
211 | msgstr "" | 220 | msgstr "" |
@@ -275,11 +284,10 @@ msgstr "" | |||
275 | msgid "DISK %s: %s not found\n" | 284 | msgid "DISK %s: %s not found\n" |
276 | msgstr "" | 285 | msgstr "" |
277 | 286 | ||
278 | #: plugins/check_disk.c:213 plugins/check_disk.c:751 plugins/check_dns.c:208 | 287 | #: plugins/check_disk.c:213 plugins/check_disk.c:752 plugins/check_dns.c:208 |
279 | #: plugins/check_dummy.c:81 plugins/check_http.c:959 plugins/check_http.c:1022 | 288 | #: plugins/check_dummy.c:81 plugins/check_mysql.c:214 |
280 | #: plugins/check_mysql.c:214 plugins/check_nagios.c:107 | 289 | #: plugins/check_nagios.c:107 plugins/check_nagios.c:171 |
281 | #: plugins/check_nagios.c:171 plugins/check_nagios.c:175 | 290 | #: plugins/check_nagios.c:175 plugins/check_procs.c:302 |
282 | #: plugins/check_procs.c:302 | ||
283 | #, c-format | 291 | #, c-format |
284 | msgid "CRITICAL" | 292 | msgid "CRITICAL" |
285 | msgstr "" | 293 | msgstr "" |
@@ -296,7 +304,6 @@ msgstr "" | |||
296 | 304 | ||
297 | #: plugins/check_disk.c:606 plugins/check_disk.c:643 plugins/check_disk.c:653 | 305 | #: plugins/check_disk.c:606 plugins/check_disk.c:643 plugins/check_disk.c:653 |
298 | #: plugins/check_disk.c:659 plugins/check_disk.c:678 plugins/check_dummy.c:84 | 306 | #: plugins/check_disk.c:659 plugins/check_disk.c:678 plugins/check_dummy.c:84 |
299 | #: plugins/check_http.c:953 | ||
300 | #, c-format | 307 | #, c-format |
301 | msgid "UNKNOWN" | 308 | msgid "UNKNOWN" |
302 | msgstr "" | 309 | msgstr "" |
@@ -325,109 +332,109 @@ msgstr "" | |||
325 | msgid "Unknown argument" | 332 | msgid "Unknown argument" |
326 | msgstr "" | 333 | msgstr "" |
327 | 334 | ||
328 | #: plugins/check_disk.c:752 | 335 | #: plugins/check_disk.c:753 |
329 | #, c-format | 336 | #, c-format |
330 | msgid "%s does not exist\n" | 337 | msgid "%s does not exist\n" |
331 | msgstr "" | 338 | msgstr "" |
332 | 339 | ||
333 | #: plugins/check_disk.c:781 | 340 | #: plugins/check_disk.c:782 |
334 | #, c-format | 341 | #, c-format |
335 | msgid " for %s\n" | 342 | msgid " for %s\n" |
336 | msgstr "" | 343 | msgstr "" |
337 | 344 | ||
338 | #: plugins/check_disk.c:849 | 345 | #: plugins/check_disk.c:850 |
339 | msgid "" | 346 | msgid "" |
340 | "This plugin checks the amount of used disk space on a mounted file system" | 347 | "This plugin checks the amount of used disk space on a mounted file system" |
341 | msgstr "" | 348 | msgstr "" |
342 | 349 | ||
343 | #: plugins/check_disk.c:850 | 350 | #: plugins/check_disk.c:851 |
344 | msgid "" | 351 | msgid "" |
345 | "and generates an alert if free space is less than one of the threshold values" | 352 | "and generates an alert if free space is less than one of the threshold values" |
346 | msgstr "" | 353 | msgstr "" |
347 | 354 | ||
348 | #: plugins/check_disk.c:859 | 355 | #: plugins/check_disk.c:860 |
349 | msgid "Exit with WARNING status if less than INTEGER units of disk are free" | 356 | msgid "Exit with WARNING status if less than INTEGER units of disk are free" |
350 | msgstr "" | 357 | msgstr "" |
351 | 358 | ||
352 | #: plugins/check_disk.c:861 | 359 | #: plugins/check_disk.c:862 |
353 | msgid "Exit with WARNING status if less than PERCENT of disk space is free" | 360 | msgid "Exit with WARNING status if less than PERCENT of disk space is free" |
354 | msgstr "" | 361 | msgstr "" |
355 | 362 | ||
356 | #: plugins/check_disk.c:863 | 363 | #: plugins/check_disk.c:864 |
357 | msgid "Exit with WARNING status if less than PERCENT of inode space is free" | 364 | msgid "Exit with WARNING status if less than PERCENT of inode space is free" |
358 | msgstr "" | 365 | msgstr "" |
359 | 366 | ||
360 | #: plugins/check_disk.c:865 | 367 | #: plugins/check_disk.c:866 |
361 | msgid "Exit with CRITICAL status if less than PERCENT of inode space is free" | 368 | msgid "Exit with CRITICAL status if less than PERCENT of inode space is free" |
362 | msgstr "" | 369 | msgstr "" |
363 | 370 | ||
364 | #: plugins/check_disk.c:867 | 371 | #: plugins/check_disk.c:868 |
365 | msgid "Exit with CRITICAL status if less than INTEGER units of disk are free" | 372 | msgid "Exit with CRITICAL status if less than INTEGER units of disk are free" |
366 | msgstr "" | 373 | msgstr "" |
367 | 374 | ||
368 | #: plugins/check_disk.c:869 | 375 | #: plugins/check_disk.c:870 |
369 | msgid "Exit with CRITCAL status if less than PERCENT of disk space is free" | 376 | msgid "Exit with CRITCAL status if less than PERCENT of disk space is free" |
370 | msgstr "" | 377 | msgstr "" |
371 | 378 | ||
372 | #: plugins/check_disk.c:871 | 379 | #: plugins/check_disk.c:872 |
373 | msgid "Clear thresholds" | 380 | msgid "Clear thresholds" |
374 | msgstr "" | 381 | msgstr "" |
375 | 382 | ||
376 | #: plugins/check_disk.c:873 | 383 | #: plugins/check_disk.c:874 |
377 | msgid "Choose bytes, kB, MB, GB, TB (default: MB)" | 384 | msgid "Choose bytes, kB, MB, GB, TB (default: MB)" |
378 | msgstr "" | 385 | msgstr "" |
379 | 386 | ||
380 | #: plugins/check_disk.c:875 | 387 | #: plugins/check_disk.c:876 |
381 | msgid "Same as '--units kB'" | 388 | msgid "Same as '--units kB'" |
382 | msgstr "" | 389 | msgstr "" |
383 | 390 | ||
384 | #: plugins/check_disk.c:877 | 391 | #: plugins/check_disk.c:878 |
385 | msgid "Same as '--units MB'" | 392 | msgid "Same as '--units MB'" |
386 | msgstr "" | 393 | msgstr "" |
387 | 394 | ||
388 | #: plugins/check_disk.c:879 | 395 | #: plugins/check_disk.c:880 |
389 | msgid "Only check local filesystems" | 396 | msgid "Only check local filesystems" |
390 | msgstr "" | 397 | msgstr "" |
391 | 398 | ||
392 | #: plugins/check_disk.c:881 | 399 | #: plugins/check_disk.c:882 |
393 | msgid "Path or partition (may be repeated)" | 400 | msgid "Path or partition (may be repeated)" |
394 | msgstr "" | 401 | msgstr "" |
395 | 402 | ||
396 | #: plugins/check_disk.c:883 | 403 | #: plugins/check_disk.c:884 |
397 | msgid "Regular expression for path or partition (may be repeated)" | 404 | msgid "Regular expression for path or partition (may be repeated)" |
398 | msgstr "" | 405 | msgstr "" |
399 | 406 | ||
400 | #: plugins/check_disk.c:885 | 407 | #: plugins/check_disk.c:886 |
401 | msgid "" | 408 | msgid "" |
402 | "Case insensitive regular expression for path/partition (may be repeated)" | 409 | "Case insensitive regular expression for path/partition (may be repeated)" |
403 | msgstr "" | 410 | msgstr "" |
404 | 411 | ||
405 | #: plugins/check_disk.c:887 | 412 | #: plugins/check_disk.c:888 |
406 | msgid "" | 413 | msgid "" |
407 | "Group pathes. Thresholds apply to (free-)space of all partitions together" | 414 | "Group pathes. Thresholds apply to (free-)space of all partitions together" |
408 | msgstr "" | 415 | msgstr "" |
409 | 416 | ||
410 | #: plugins/check_disk.c:889 | 417 | #: plugins/check_disk.c:890 |
411 | msgid "Ignore device (only works if -p unspecified)" | 418 | msgid "Ignore device (only works if -p unspecified)" |
412 | msgstr "" | 419 | msgstr "" |
413 | 420 | ||
414 | #: plugins/check_disk.c:891 | 421 | #: plugins/check_disk.c:892 |
415 | msgid "Ignore all filesystems of indicated type (may be repeated)" | 422 | msgid "Ignore all filesystems of indicated type (may be repeated)" |
416 | msgstr "" | 423 | msgstr "" |
417 | 424 | ||
418 | #: plugins/check_disk.c:893 | 425 | #: plugins/check_disk.c:894 |
419 | msgid "Display the mountpoint instead of the partition" | 426 | msgid "Display the mountpoint instead of the partition" |
420 | msgstr "" | 427 | msgstr "" |
421 | 428 | ||
422 | #: plugins/check_disk.c:895 | 429 | #: plugins/check_disk.c:896 |
423 | msgid "For paths or partitions specified with -p, only check for exact paths" | 430 | msgid "For paths or partitions specified with -p, only check for exact paths" |
424 | msgstr "" | 431 | msgstr "" |
425 | 432 | ||
426 | #: plugins/check_disk.c:897 | 433 | #: plugins/check_disk.c:898 |
427 | msgid "Display only devices/mountpoints with errors" | 434 | msgid "Display only devices/mountpoints with errors" |
428 | msgstr "" | 435 | msgstr "" |
429 | 436 | ||
430 | #: plugins/check_disk.c:903 | 437 | #: plugins/check_disk.c:904 |
431 | msgid "Checks /tmp and /var at 10% and 5%, and / at 100MB and 50MB" | 438 | msgid "Checks /tmp and /var at 10% and 5%, and / at 100MB and 50MB" |
432 | msgstr "" | 439 | msgstr "" |
433 | 440 | ||
@@ -463,15 +470,14 @@ msgstr "" | |||
463 | msgid "server %s is not authoritative for %s" | 470 | msgid "server %s is not authoritative for %s" |
464 | msgstr "" | 471 | msgstr "" |
465 | 472 | ||
466 | #: plugins/check_dns.c:204 plugins/check_dummy.c:75 plugins/check_http.c:955 | 473 | #: plugins/check_dns.c:204 plugins/check_dummy.c:75 plugins/check_nagios.c:185 |
467 | #: plugins/check_nagios.c:185 plugins/check_procs.c:295 | 474 | #: plugins/check_procs.c:295 |
468 | #, c-format | 475 | #, c-format |
469 | msgid "OK" | 476 | msgid "OK" |
470 | msgstr "" | 477 | msgstr "" |
471 | 478 | ||
472 | #: plugins/check_dns.c:206 plugins/check_dummy.c:78 plugins/check_http.c:957 | 479 | #: plugins/check_dns.c:206 plugins/check_dummy.c:78 plugins/check_mysql.c:211 |
473 | #: plugins/check_mysql.c:211 plugins/check_nagios.c:185 | 480 | #: plugins/check_nagios.c:185 plugins/check_procs.c:297 |
474 | #: plugins/check_procs.c:297 | ||
475 | #, c-format | 481 | #, c-format |
476 | msgid "WARNING" | 482 | msgid "WARNING" |
477 | msgstr "" | 483 | msgstr "" |
@@ -630,7 +636,7 @@ msgstr "" | |||
630 | msgid "Could not open pipe: %s\n" | 636 | msgid "Could not open pipe: %s\n" |
631 | msgstr "" | 637 | msgstr "" |
632 | 638 | ||
633 | #: plugins/check_fping.c:109 plugins/check_hpjd.c:137 plugins/check_load.c:153 | 639 | #: plugins/check_fping.c:109 plugins/check_hpjd.c:137 plugins/check_load.c:155 |
634 | #: plugins/check_procs.c:165 plugins/check_snmp.c:209 plugins/check_swap.c:184 | 640 | #: plugins/check_procs.c:165 plugins/check_snmp.c:209 plugins/check_swap.c:184 |
635 | #: plugins/check_users.c:81 plugins/negate.c:117 plugins/urlize.c:123 | 641 | #: plugins/check_users.c:81 plugins/negate.c:117 plugins/urlize.c:123 |
636 | #, c-format | 642 | #, c-format |
@@ -788,7 +794,7 @@ msgstr "" | |||
788 | #: plugins/check_game.c:318 plugins/check_http.c:1312 plugins/check_mrtg.c:364 | 794 | #: plugins/check_game.c:318 plugins/check_http.c:1312 plugins/check_mrtg.c:364 |
789 | #: plugins/check_mrtgtraf.c:361 plugins/check_nt.c:693 | 795 | #: plugins/check_mrtgtraf.c:361 plugins/check_nt.c:693 |
790 | #: plugins/check_nwstat.c:1673 plugins/check_overcr.c:452 | 796 | #: plugins/check_nwstat.c:1673 plugins/check_overcr.c:452 |
791 | #: plugins/check_swap.c:549 plugins/check_ups.c:629 plugins/negate.c:276 | 797 | #: plugins/check_swap.c:549 plugins/check_ups.c:633 plugins/negate.c:276 |
792 | #, c-format | 798 | #, c-format |
793 | msgid "Notes:" | 799 | msgid "Notes:" |
794 | msgstr "" | 800 | msgstr "" |
@@ -916,49 +922,48 @@ msgid "You must specify a server address or host name" | |||
916 | msgstr "" | 922 | msgstr "" |
917 | 923 | ||
918 | #: plugins/check_http.c:665 | 924 | #: plugins/check_http.c:665 |
919 | msgid "Server date unknown\n" | 925 | msgid "HTTP UNKNOWN - Server date unknown\n" |
920 | msgstr "" | 926 | msgstr "" |
921 | 927 | ||
922 | #: plugins/check_http.c:667 | 928 | #: plugins/check_http.c:667 |
923 | msgid "Document modification date unknown\n" | 929 | msgid "HTTP CRITICAL - Document modification date unknown\n" |
924 | msgstr "" | 930 | msgstr "" |
925 | 931 | ||
926 | #: plugins/check_http.c:673 | 932 | #: plugins/check_http.c:673 |
927 | #, c-format | 933 | #, c-format |
928 | msgid "CRITICAL - Server date \"%100s\" unparsable" | 934 | msgid "HTTP CRITICAL - Server date \"%100s\" unparsable" |
929 | msgstr "" | 935 | msgstr "" |
930 | 936 | ||
931 | #: plugins/check_http.c:675 | 937 | #: plugins/check_http.c:675 |
932 | #, c-format | 938 | #, c-format |
933 | msgid "CRITICAL - Document date \"%100s\" unparsable" | 939 | msgid "HTTP CRITICAL - Document date \"%100s\" unparsable" |
934 | msgstr "" | 940 | msgstr "" |
935 | 941 | ||
936 | #: plugins/check_http.c:677 | 942 | #: plugins/check_http.c:677 |
937 | #, c-format | 943 | #, c-format |
938 | msgid "CRITICAL - Document is %d seconds in the future\n" | 944 | msgid "HTTP CRITICAL - Document is %d seconds in the future\n" |
939 | msgstr "" | 945 | msgstr "" |
940 | 946 | ||
941 | #: plugins/check_http.c:682 | 947 | #: plugins/check_http.c:682 |
942 | #, c-format | 948 | #, c-format |
943 | msgid "CRITICAL - Last modified %.1f days ago\n" | 949 | msgid "HTTP CRITICAL - Last modified %.1f days ago\n" |
944 | msgstr "" | 950 | msgstr "" |
945 | 951 | ||
946 | #: plugins/check_http.c:686 | 952 | #: plugins/check_http.c:686 |
947 | #, c-format | 953 | #, c-format |
948 | msgid "CRITICAL - Last modified %d:%02d:%02d ago\n" | 954 | msgid "HTTP CRITICAL - Last modified %d:%02d:%02d ago\n" |
949 | msgstr "" | 955 | msgstr "" |
950 | 956 | ||
951 | #: plugins/check_http.c:767 | 957 | #: plugins/check_http.c:767 |
952 | msgid "Unable to open TCP socket\n" | 958 | msgid "HTTP CRITICAL - Unable to open TCP socket\n" |
953 | msgstr "" | 959 | msgstr "" |
954 | 960 | ||
955 | #: plugins/check_http.c:847 | 961 | #: plugins/check_http.c:847 |
956 | msgid "Error on receive\n" | 962 | msgid "HTTP CRITICAL - Error on receive\n" |
957 | msgstr "" | 963 | msgstr "" |
958 | 964 | ||
959 | #: plugins/check_http.c:857 plugins/check_real.c:189 plugins/check_tcp.c:291 | 965 | #: plugins/check_http.c:857 |
960 | #, c-format | 966 | msgid "HTTP CRITICAL - No data received from host\n" |
961 | msgid "No data received from host\n" | ||
962 | msgstr "" | 967 | msgstr "" |
963 | 968 | ||
964 | #: plugins/check_http.c:907 | 969 | #: plugins/check_http.c:907 |
@@ -995,6 +1000,26 @@ msgstr "" | |||
995 | msgid "HTTP WARNING: %s\n" | 1000 | msgid "HTTP WARNING: %s\n" |
996 | msgstr "" | 1001 | msgstr "" |
997 | 1002 | ||
1003 | #: plugins/check_http.c:953 | ||
1004 | #, c-format | ||
1005 | msgid "HTTP UNKNOWN" | ||
1006 | msgstr "" | ||
1007 | |||
1008 | #: plugins/check_http.c:955 | ||
1009 | #, c-format | ||
1010 | msgid "HTTP OK" | ||
1011 | msgstr "" | ||
1012 | |||
1013 | #: plugins/check_http.c:957 | ||
1014 | #, c-format | ||
1015 | msgid "HTTP WARNING" | ||
1016 | msgstr "" | ||
1017 | |||
1018 | #: plugins/check_http.c:959 plugins/check_http.c:1022 | ||
1019 | #, c-format | ||
1020 | msgid "HTTP CRITICAL" | ||
1021 | msgstr "" | ||
1022 | |||
998 | #: plugins/check_http.c:963 | 1023 | #: plugins/check_http.c:963 |
999 | #, c-format | 1024 | #, c-format |
1000 | msgid " - %s - %.3f second response time %s|%s %s\n" | 1025 | msgid " - %s - %.3f second response time %s|%s %s\n" |
@@ -1012,7 +1037,7 @@ msgstr "" | |||
1012 | 1037 | ||
1013 | #: plugins/check_http.c:1000 | 1038 | #: plugins/check_http.c:1000 |
1014 | #, c-format | 1039 | #, c-format |
1015 | msgid "CRITICAL - string not found%s|%s %s\n" | 1040 | msgid "HTTP CRITICAL - string not found%s|%s %s\n" |
1016 | msgstr "" | 1041 | msgstr "" |
1017 | 1042 | ||
1018 | #: plugins/check_http.c:1018 | 1043 | #: plugins/check_http.c:1018 |
@@ -1025,7 +1050,7 @@ msgstr "" | |||
1025 | 1050 | ||
1026 | #: plugins/check_http.c:1030 | 1051 | #: plugins/check_http.c:1030 |
1027 | #, c-format | 1052 | #, c-format |
1028 | msgid "CRITICAL - Execute Error: %s\n" | 1053 | msgid "HTTP CRITICAL - Execute Error: %s\n" |
1029 | msgstr "" | 1054 | msgstr "" |
1030 | 1055 | ||
1031 | #: plugins/check_http.c:1039 | 1056 | #: plugins/check_http.c:1039 |
@@ -1044,35 +1069,35 @@ msgid "HTTP OK %s - %d bytes in %.3f seconds %s|%s %s\n" | |||
1044 | msgstr "" | 1069 | msgstr "" |
1045 | 1070 | ||
1046 | #: plugins/check_http.c:1083 | 1071 | #: plugins/check_http.c:1083 |
1047 | msgid "Could not allocate addr\n" | 1072 | msgid "HTTP UNKNOWN - Could not allocate addr\n" |
1048 | msgstr "" | 1073 | msgstr "" |
1049 | 1074 | ||
1050 | #: plugins/check_http.c:1087 | 1075 | #: plugins/check_http.c:1087 |
1051 | msgid "Could not allocate url\n" | 1076 | msgid "HTTP UNKNOWN - Could not allocate url\n" |
1052 | msgstr "" | 1077 | msgstr "" |
1053 | 1078 | ||
1054 | #: plugins/check_http.c:1096 | 1079 | #: plugins/check_http.c:1096 |
1055 | #, c-format | 1080 | #, c-format |
1056 | msgid "UNKNOWN - Could not find redirect location - %s%s\n" | 1081 | msgid "HTTP UNKNOWN - Could not find redirect location - %s%s\n" |
1057 | msgstr "" | 1082 | msgstr "" |
1058 | 1083 | ||
1059 | #: plugins/check_http.c:1106 | 1084 | #: plugins/check_http.c:1106 |
1060 | msgid "could not allocate url\n" | 1085 | msgid "HTTP UNKNOWN - could not allocate url\n" |
1061 | msgstr "" | 1086 | msgstr "" |
1062 | 1087 | ||
1063 | #: plugins/check_http.c:1149 | 1088 | #: plugins/check_http.c:1149 |
1064 | #, c-format | 1089 | #, c-format |
1065 | msgid "UNKNOWN - Could not parse redirect location - %s%s\n" | 1090 | msgid "HTTP UNKNOWN - Could not parse redirect location - %s%s\n" |
1066 | msgstr "" | 1091 | msgstr "" |
1067 | 1092 | ||
1068 | #: plugins/check_http.c:1159 | 1093 | #: plugins/check_http.c:1159 |
1069 | #, c-format | 1094 | #, c-format |
1070 | msgid "WARNING - maximum redirection depth %d exceeded - %s://%s:%d%s%s\n" | 1095 | msgid "HTTP WARNING - maximum redirection depth %d exceeded - %s://%s:%d%s%s\n" |
1071 | msgstr "" | 1096 | msgstr "" |
1072 | 1097 | ||
1073 | #: plugins/check_http.c:1167 | 1098 | #: plugins/check_http.c:1167 |
1074 | #, c-format | 1099 | #, c-format |
1075 | msgid "WARNING - redirection creates an infinite loop - %s://%s:%d%s%s\n" | 1100 | msgid "HTTP WARNING - redirection creates an infinite loop - %s://%s:%d%s%s\n" |
1076 | msgstr "" | 1101 | msgstr "" |
1077 | 1102 | ||
1078 | #: plugins/check_http.c:1231 | 1103 | #: plugins/check_http.c:1231 |
@@ -1372,69 +1397,73 @@ msgstr "" | |||
1372 | msgid "use ldap protocol version 3" | 1397 | msgid "use ldap protocol version 3" |
1373 | msgstr "" | 1398 | msgstr "" |
1374 | 1399 | ||
1375 | #: plugins/check_load.c:91 | 1400 | #: plugins/check_load.c:92 |
1376 | msgid "Warning threshold must be float or float triplet!\n" | 1401 | msgid "Warning threshold must be float or float triplet!\n" |
1377 | msgstr "" | 1402 | msgstr "" |
1378 | 1403 | ||
1379 | #: plugins/check_load.c:132 plugins/check_load.c:148 | 1404 | #: plugins/check_load.c:134 plugins/check_load.c:150 |
1380 | #, c-format | 1405 | #, c-format |
1381 | msgid "Error opening %s\n" | 1406 | msgid "Error opening %s\n" |
1382 | msgstr "" | 1407 | msgstr "" |
1383 | 1408 | ||
1384 | #: plugins/check_load.c:160 | 1409 | #: plugins/check_load.c:162 |
1385 | #, c-format | 1410 | #, c-format |
1386 | msgid "Error code %d returned in %s\n" | 1411 | msgid "Error code %d returned in %s\n" |
1387 | msgstr "" | 1412 | msgstr "" |
1388 | 1413 | ||
1389 | #: plugins/check_load.c:168 | 1414 | #: plugins/check_load.c:177 |
1390 | #, c-format | 1415 | #, c-format |
1391 | msgid "Error in getloadavg()\n" | 1416 | msgid "Error in getloadavg()\n" |
1392 | msgstr "" | 1417 | msgstr "" |
1393 | 1418 | ||
1394 | #: plugins/check_load.c:171 plugins/check_load.c:173 | 1419 | #: plugins/check_load.c:180 plugins/check_load.c:182 |
1395 | #, c-format | 1420 | #, c-format |
1396 | msgid "Error processing %s\n" | 1421 | msgid "Error processing %s\n" |
1397 | msgstr "" | 1422 | msgstr "" |
1398 | 1423 | ||
1399 | #: plugins/check_load.c:182 | 1424 | #: plugins/check_load.c:191 |
1400 | #, c-format | 1425 | #, c-format |
1401 | msgid "load average: %.2f, %.2f, %.2f" | 1426 | msgid "load average: %.2f, %.2f, %.2f" |
1402 | msgstr "" | 1427 | msgstr "" |
1403 | 1428 | ||
1404 | #: plugins/check_load.c:271 | 1429 | #: plugins/check_load.c:284 |
1405 | #, c-format | 1430 | #, c-format |
1406 | msgid "Critical threshold for %d-minute load average is not specified\n" | 1431 | msgid "Critical threshold for %d-minute load average is not specified\n" |
1407 | msgstr "" | 1432 | msgstr "" |
1408 | 1433 | ||
1409 | #: plugins/check_load.c:273 | 1434 | #: plugins/check_load.c:286 |
1410 | #, c-format | 1435 | #, c-format |
1411 | msgid "Warning threshold for %d-minute load average is not specified\n" | 1436 | msgid "Warning threshold for %d-minute load average is not specified\n" |
1412 | msgstr "" | 1437 | msgstr "" |
1413 | 1438 | ||
1414 | #: plugins/check_load.c:275 | 1439 | #: plugins/check_load.c:288 |
1415 | #, c-format | 1440 | #, c-format |
1416 | msgid "" | 1441 | msgid "" |
1417 | "Parameter inconsistency: %d-minute \"warning load\" is greater than " | 1442 | "Parameter inconsistency: %d-minute \"warning load\" is greater than " |
1418 | "\"critical load\"\n" | 1443 | "\"critical load\"\n" |
1419 | msgstr "" | 1444 | msgstr "" |
1420 | 1445 | ||
1421 | #: plugins/check_load.c:291 | 1446 | #: plugins/check_load.c:304 |
1422 | #, c-format | 1447 | #, c-format |
1423 | msgid "This plugin tests the current system load average." | 1448 | msgid "This plugin tests the current system load average." |
1424 | msgstr "" | 1449 | msgstr "" |
1425 | 1450 | ||
1426 | #: plugins/check_load.c:300 | 1451 | #: plugins/check_load.c:313 |
1427 | msgid "Exit with WARNING status if load average exceeds WLOADn" | 1452 | msgid "Exit with WARNING status if load average exceeds WLOADn" |
1428 | msgstr "" | 1453 | msgstr "" |
1429 | 1454 | ||
1430 | #: plugins/check_load.c:302 | 1455 | #: plugins/check_load.c:315 |
1431 | msgid "Exit with CRITICAL status if load average exceed CLOADn" | 1456 | msgid "Exit with CRITICAL status if load average exceed CLOADn" |
1432 | msgstr "" | 1457 | msgstr "" |
1433 | 1458 | ||
1434 | #: plugins/check_load.c:303 | 1459 | #: plugins/check_load.c:316 |
1435 | msgid "the load average format is the same used by \"uptime\" and \"w\"" | 1460 | msgid "the load average format is the same used by \"uptime\" and \"w\"" |
1436 | msgstr "" | 1461 | msgstr "" |
1437 | 1462 | ||
1463 | #: plugins/check_load.c:318 | ||
1464 | msgid "Divide the load averages by the number of CPUs (when possible)" | ||
1465 | msgstr "" | ||
1466 | |||
1438 | #: plugins/check_mrtg.c:79 | 1467 | #: plugins/check_mrtg.c:79 |
1439 | msgid "Could not parse arguments\n" | 1468 | msgid "Could not parse arguments\n" |
1440 | msgstr "" | 1469 | msgstr "" |
@@ -3387,6 +3416,11 @@ msgstr "" | |||
3387 | msgid "Invalid REAL response received from host on port %d\n" | 3416 | msgid "Invalid REAL response received from host on port %d\n" |
3388 | msgstr "" | 3417 | msgstr "" |
3389 | 3418 | ||
3419 | #: plugins/check_real.c:189 plugins/check_tcp.c:291 | ||
3420 | #, c-format | ||
3421 | msgid "No data received from host\n" | ||
3422 | msgstr "" | ||
3423 | |||
3390 | #: plugins/check_real.c:252 | 3424 | #: plugins/check_real.c:252 |
3391 | #, c-format | 3425 | #, c-format |
3392 | msgid "REAL %s - %d second response time\n" | 3426 | msgid "REAL %s - %d second response time\n" |
@@ -3496,7 +3530,7 @@ msgstr "" | |||
3496 | msgid "CRITICAL - Cannot retrieve server certificate." | 3530 | msgid "CRITICAL - Cannot retrieve server certificate." |
3497 | msgstr "" | 3531 | msgstr "" |
3498 | 3532 | ||
3499 | #: plugins/check_smtp.c:356 plugins/check_snmp.c:568 | 3533 | #: plugins/check_smtp.c:356 plugins/check_snmp.c:572 |
3500 | #, c-format | 3534 | #, c-format |
3501 | msgid "Could Not Compile Regular Expression" | 3535 | msgid "Could Not Compile Regular Expression" |
3502 | msgstr "" | 3536 | msgstr "" |
@@ -3506,7 +3540,7 @@ msgstr "" | |||
3506 | msgid "SMTP %s - Invalid response '%s' to command '%s'\n" | 3540 | msgid "SMTP %s - Invalid response '%s' to command '%s'\n" |
3507 | msgstr "" | 3541 | msgstr "" |
3508 | 3542 | ||
3509 | #: plugins/check_smtp.c:369 plugins/check_snmp.c:318 | 3543 | #: plugins/check_smtp.c:369 plugins/check_snmp.c:322 |
3510 | #, c-format | 3544 | #, c-format |
3511 | msgid "Execute Error: %s\n" | 3545 | msgid "Execute Error: %s\n" |
3512 | msgstr "" | 3546 | msgstr "" |
@@ -3628,243 +3662,243 @@ msgstr "" | |||
3628 | msgid "STATE_WARNING return values." | 3662 | msgid "STATE_WARNING return values." |
3629 | msgstr "" | 3663 | msgstr "" |
3630 | 3664 | ||
3631 | #: plugins/check_snmp.c:296 | 3665 | #: plugins/check_snmp.c:300 |
3632 | msgid "No valid data returned" | 3666 | msgid "No valid data returned" |
3633 | msgstr "" | 3667 | msgstr "" |
3634 | 3668 | ||
3635 | #: plugins/check_snmp.c:364 plugins/negate.c:128 | 3669 | #: plugins/check_snmp.c:368 plugins/negate.c:128 |
3636 | #, c-format | 3670 | #, c-format |
3637 | msgid "" | 3671 | msgid "" |
3638 | "%s problem - No data received from host\n" | 3672 | "%s problem - No data received from host\n" |
3639 | "CMD: %s\n" | 3673 | "CMD: %s\n" |
3640 | msgstr "" | 3674 | msgstr "" |
3641 | 3675 | ||
3642 | #: plugins/check_snmp.c:502 | 3676 | #: plugins/check_snmp.c:506 |
3643 | #, c-format | 3677 | #, c-format |
3644 | msgid "Invalid critical threshold: %s\n" | 3678 | msgid "Invalid critical threshold: %s\n" |
3645 | msgstr "" | 3679 | msgstr "" |
3646 | 3680 | ||
3647 | #: plugins/check_snmp.c:513 | 3681 | #: plugins/check_snmp.c:517 |
3648 | #, c-format | 3682 | #, c-format |
3649 | msgid "Invalid warning threshold: %s\n" | 3683 | msgid "Invalid warning threshold: %s\n" |
3650 | msgstr "" | 3684 | msgstr "" |
3651 | 3685 | ||
3652 | #: plugins/check_snmp.c:525 | 3686 | #: plugins/check_snmp.c:529 |
3653 | msgid "Retries interval must be a positive integer" | 3687 | msgid "Retries interval must be a positive integer" |
3654 | msgstr "" | 3688 | msgstr "" |
3655 | 3689 | ||
3656 | #: plugins/check_snmp.c:589 | 3690 | #: plugins/check_snmp.c:593 |
3657 | #, c-format | 3691 | #, c-format |
3658 | msgid "Could not reallocate labels[%d]" | 3692 | msgid "Could not reallocate labels[%d]" |
3659 | msgstr "" | 3693 | msgstr "" |
3660 | 3694 | ||
3661 | #: plugins/check_snmp.c:601 | 3695 | #: plugins/check_snmp.c:605 |
3662 | msgid "Could not reallocate labels\n" | 3696 | msgid "Could not reallocate labels\n" |
3663 | msgstr "" | 3697 | msgstr "" |
3664 | 3698 | ||
3665 | #: plugins/check_snmp.c:618 | 3699 | #: plugins/check_snmp.c:622 |
3666 | #, c-format | 3700 | #, c-format |
3667 | msgid "Could not reallocate units [%d]\n" | 3701 | msgid "Could not reallocate units [%d]\n" |
3668 | msgstr "" | 3702 | msgstr "" |
3669 | 3703 | ||
3670 | #: plugins/check_snmp.c:630 | 3704 | #: plugins/check_snmp.c:634 |
3671 | msgid "Could not realloc() units\n" | 3705 | msgid "Could not realloc() units\n" |
3672 | msgstr "" | 3706 | msgstr "" |
3673 | 3707 | ||
3674 | #: plugins/check_snmp.c:715 | 3708 | #: plugins/check_snmp.c:719 |
3675 | #, c-format | 3709 | #, c-format |
3676 | msgid "Missing secname (%s) or authpassword (%s) ! \n" | 3710 | msgid "Missing secname (%s) or authpassword (%s) ! \n" |
3677 | msgstr "" | 3711 | msgstr "" |
3678 | 3712 | ||
3679 | #: plugins/check_snmp.c:723 | 3713 | #: plugins/check_snmp.c:727 |
3680 | #, c-format | 3714 | #, c-format |
3681 | msgid "Missing secname (%s), authpassword (%s), or privpasswd (%s)! \n" | 3715 | msgid "Missing secname (%s), authpassword (%s), or privpasswd (%s)! \n" |
3682 | msgstr "" | 3716 | msgstr "" |
3683 | 3717 | ||
3684 | #: plugins/check_snmp.c:732 | 3718 | #: plugins/check_snmp.c:736 |
3685 | msgid "Invalid SNMP version" | 3719 | msgid "Invalid SNMP version" |
3686 | msgstr "" | 3720 | msgstr "" |
3687 | 3721 | ||
3688 | #: plugins/check_snmp.c:860 | 3722 | #: plugins/check_snmp.c:864 |
3689 | msgid "Unbalanced quotes\n" | 3723 | msgid "Unbalanced quotes\n" |
3690 | msgstr "" | 3724 | msgstr "" |
3691 | 3725 | ||
3692 | #: plugins/check_snmp.c:909 | 3726 | #: plugins/check_snmp.c:913 |
3693 | msgid "Check status of remote machines and obtain sustem information via SNMP" | 3727 | msgid "Check status of remote machines and obtain sustem information via SNMP" |
3694 | msgstr "" | 3728 | msgstr "" |
3695 | 3729 | ||
3696 | #: plugins/check_snmp.c:921 | 3730 | #: plugins/check_snmp.c:925 |
3697 | msgid "Use SNMP GETNEXT instead of SNMP GET" | 3731 | msgid "Use SNMP GETNEXT instead of SNMP GET" |
3698 | msgstr "" | 3732 | msgstr "" |
3699 | 3733 | ||
3700 | #: plugins/check_snmp.c:923 | 3734 | #: plugins/check_snmp.c:927 |
3701 | msgid "SNMP protocol version" | 3735 | msgid "SNMP protocol version" |
3702 | msgstr "" | 3736 | msgstr "" |
3703 | 3737 | ||
3704 | #: plugins/check_snmp.c:925 | 3738 | #: plugins/check_snmp.c:929 |
3705 | msgid "SNMPv3 securityLevel" | 3739 | msgid "SNMPv3 securityLevel" |
3706 | msgstr "" | 3740 | msgstr "" |
3707 | 3741 | ||
3708 | #: plugins/check_snmp.c:927 | 3742 | #: plugins/check_snmp.c:931 |
3709 | msgid "SNMPv3 auth proto" | 3743 | msgid "SNMPv3 auth proto" |
3710 | msgstr "" | 3744 | msgstr "" |
3711 | 3745 | ||
3712 | #: plugins/check_snmp.c:931 | 3746 | #: plugins/check_snmp.c:935 |
3713 | msgid "Optional community string for SNMP communication" | 3747 | msgid "Optional community string for SNMP communication" |
3714 | msgstr "" | 3748 | msgstr "" |
3715 | 3749 | ||
3716 | #: plugins/check_snmp.c:932 | 3750 | #: plugins/check_snmp.c:936 |
3717 | #, c-format | 3751 | #, c-format |
3718 | msgid "(default is \"%s\")" | 3752 | msgid "(default is \"%s\")" |
3719 | msgstr "" | 3753 | msgstr "" |
3720 | 3754 | ||
3721 | #: plugins/check_snmp.c:934 | 3755 | #: plugins/check_snmp.c:938 |
3722 | msgid "SNMPv3 username" | 3756 | msgid "SNMPv3 username" |
3723 | msgstr "" | 3757 | msgstr "" |
3724 | 3758 | ||
3725 | #: plugins/check_snmp.c:936 | 3759 | #: plugins/check_snmp.c:940 |
3726 | msgid "SNMPv3 authentication password" | 3760 | msgid "SNMPv3 authentication password" |
3727 | msgstr "" | 3761 | msgstr "" |
3728 | 3762 | ||
3729 | #: plugins/check_snmp.c:938 | 3763 | #: plugins/check_snmp.c:942 |
3730 | msgid "SNMPv3 crypt passwd (DES)" | 3764 | msgid "SNMPv3 crypt passwd (DES)" |
3731 | msgstr "" | 3765 | msgstr "" |
3732 | 3766 | ||
3733 | #: plugins/check_snmp.c:942 | 3767 | #: plugins/check_snmp.c:946 |
3734 | msgid "Object identifier(s) or SNMP variables whose value you wish to query" | 3768 | msgid "Object identifier(s) or SNMP variables whose value you wish to query" |
3735 | msgstr "" | 3769 | msgstr "" |
3736 | 3770 | ||
3737 | #: plugins/check_snmp.c:944 | 3771 | #: plugins/check_snmp.c:948 |
3738 | msgid "" | 3772 | msgid "" |
3739 | "List of MIBS to be loaded (default = none if using numeric oids or 'ALL'" | 3773 | "List of MIBS to be loaded (default = none if using numeric oids or 'ALL'" |
3740 | msgstr "" | 3774 | msgstr "" |
3741 | 3775 | ||
3742 | #: plugins/check_snmp.c:945 | 3776 | #: plugins/check_snmp.c:949 |
3743 | msgid "for symbolic oids.)" | 3777 | msgid "for symbolic oids.)" |
3744 | msgstr "" | 3778 | msgstr "" |
3745 | 3779 | ||
3746 | #: plugins/check_snmp.c:947 | 3780 | #: plugins/check_snmp.c:951 |
3747 | #, c-format | 3781 | #, c-format |
3748 | msgid " Delimiter to use when parsing returned data. Default is \"%s\"" | 3782 | msgid " Delimiter to use when parsing returned data. Default is \"%s\"" |
3749 | msgstr "" | 3783 | msgstr "" |
3750 | 3784 | ||
3751 | #: plugins/check_snmp.c:948 | 3785 | #: plugins/check_snmp.c:952 |
3752 | msgid "Any data on the right hand side of the delimiter is considered" | 3786 | msgid "Any data on the right hand side of the delimiter is considered" |
3753 | msgstr "" | 3787 | msgstr "" |
3754 | 3788 | ||
3755 | #: plugins/check_snmp.c:949 | 3789 | #: plugins/check_snmp.c:953 |
3756 | msgid "to be the data that should be used in the evaluation." | 3790 | msgid "to be the data that should be used in the evaluation." |
3757 | msgstr "" | 3791 | msgstr "" |
3758 | 3792 | ||
3759 | #: plugins/check_snmp.c:953 | 3793 | #: plugins/check_snmp.c:957 |
3760 | msgid "Range(s) which will not result in a WARNING status" | 3794 | msgid "Range(s) which will not result in a WARNING status" |
3761 | msgstr "" | 3795 | msgstr "" |
3762 | 3796 | ||
3763 | #: plugins/check_snmp.c:955 | 3797 | #: plugins/check_snmp.c:959 |
3764 | msgid "Range(s) which will not result in a CRITICAL status" | 3798 | msgid "Range(s) which will not result in a CRITICAL status" |
3765 | msgstr "" | 3799 | msgstr "" |
3766 | 3800 | ||
3767 | #: plugins/check_snmp.c:959 | 3801 | #: plugins/check_snmp.c:963 |
3768 | msgid "Return OK state (for that OID) if STRING is an exact match" | 3802 | msgid "Return OK state (for that OID) if STRING is an exact match" |
3769 | msgstr "" | 3803 | msgstr "" |
3770 | 3804 | ||
3771 | #: plugins/check_snmp.c:961 | 3805 | #: plugins/check_snmp.c:965 |
3772 | msgid "" | 3806 | msgid "" |
3773 | "Return OK state (for that OID) if extended regular expression REGEX matches" | 3807 | "Return OK state (for that OID) if extended regular expression REGEX matches" |
3774 | msgstr "" | 3808 | msgstr "" |
3775 | 3809 | ||
3776 | #: plugins/check_snmp.c:963 | 3810 | #: plugins/check_snmp.c:967 |
3777 | msgid "" | 3811 | msgid "" |
3778 | "Return OK state (for that OID) if case-insensitive extended REGEX matches" | 3812 | "Return OK state (for that OID) if case-insensitive extended REGEX matches" |
3779 | msgstr "" | 3813 | msgstr "" |
3780 | 3814 | ||
3781 | #: plugins/check_snmp.c:965 | 3815 | #: plugins/check_snmp.c:969 |
3782 | msgid "Prefix label for output from plugin (default -s 'SNMP')" | 3816 | msgid "Prefix label for output from plugin (default -s 'SNMP')" |
3783 | msgstr "" | 3817 | msgstr "" |
3784 | 3818 | ||
3785 | #: plugins/check_snmp.c:969 | 3819 | #: plugins/check_snmp.c:973 |
3786 | msgid "Units label(s) for output data (e.g., 'sec.')." | 3820 | msgid "Units label(s) for output data (e.g., 'sec.')." |
3787 | msgstr "" | 3821 | msgstr "" |
3788 | 3822 | ||
3789 | #: plugins/check_snmp.c:971 | 3823 | #: plugins/check_snmp.c:975 |
3790 | msgid "Separates output on multiple OID requests" | 3824 | msgid "Separates output on multiple OID requests" |
3791 | msgstr "" | 3825 | msgstr "" |
3792 | 3826 | ||
3793 | #: plugins/check_snmp.c:977 | 3827 | #: plugins/check_snmp.c:981 |
3794 | msgid "" | 3828 | msgid "" |
3795 | "This plugin uses the 'snmpget' command included with the NET-SNMP package." | 3829 | "This plugin uses the 'snmpget' command included with the NET-SNMP package." |
3796 | msgstr "" | 3830 | msgstr "" |
3797 | 3831 | ||
3798 | #: plugins/check_snmp.c:978 | 3832 | #: plugins/check_snmp.c:982 |
3799 | msgid "" | 3833 | msgid "" |
3800 | "if you don't have the package installed, you will need to download it from" | 3834 | "if you don't have the package installed, you will need to download it from" |
3801 | msgstr "" | 3835 | msgstr "" |
3802 | 3836 | ||
3803 | #: plugins/check_snmp.c:979 | 3837 | #: plugins/check_snmp.c:983 |
3804 | msgid "http://net-snmp.sourceforge.net before you can use this plugin." | 3838 | msgid "http://net-snmp.sourceforge.net before you can use this plugin." |
3805 | msgstr "" | 3839 | msgstr "" |
3806 | 3840 | ||
3807 | #: plugins/check_snmp.c:981 | 3841 | #: plugins/check_snmp.c:985 |
3808 | msgid "" | 3842 | msgid "" |
3809 | "- Multiple OIDs may be indicated by a comma- or space-delimited list (lists " | 3843 | "- Multiple OIDs may be indicated by a comma- or space-delimited list (lists " |
3810 | "with" | 3844 | "with" |
3811 | msgstr "" | 3845 | msgstr "" |
3812 | 3846 | ||
3813 | #: plugins/check_snmp.c:982 | 3847 | #: plugins/check_snmp.c:986 |
3814 | msgid " internal spaces must be quoted) [max 8 OIDs]" | 3848 | msgid " internal spaces must be quoted) [max 8 OIDs]" |
3815 | msgstr "" | 3849 | msgstr "" |
3816 | 3850 | ||
3817 | #: plugins/check_snmp.c:984 | 3851 | #: plugins/check_snmp.c:988 |
3818 | msgid "- Ranges are inclusive and are indicated with colons. When specified as" | 3852 | msgid "- Ranges are inclusive and are indicated with colons. When specified as" |
3819 | msgstr "" | 3853 | msgstr "" |
3820 | 3854 | ||
3821 | #: plugins/check_snmp.c:985 | 3855 | #: plugins/check_snmp.c:989 |
3822 | msgid "" | 3856 | msgid "" |
3823 | " 'min:max' a STATE_OK will be returned if the result is within the indicated" | 3857 | " 'min:max' a STATE_OK will be returned if the result is within the indicated" |
3824 | msgstr "" | 3858 | msgstr "" |
3825 | 3859 | ||
3826 | #: plugins/check_snmp.c:986 | 3860 | #: plugins/check_snmp.c:990 |
3827 | msgid " range or is equal to the upper or lower bound. A non-OK state will be" | 3861 | msgid " range or is equal to the upper or lower bound. A non-OK state will be" |
3828 | msgstr "" | 3862 | msgstr "" |
3829 | 3863 | ||
3830 | #: plugins/check_snmp.c:987 | 3864 | #: plugins/check_snmp.c:991 |
3831 | msgid " returned if the result is outside the specified range." | 3865 | msgid " returned if the result is outside the specified range." |
3832 | msgstr "" | 3866 | msgstr "" |
3833 | 3867 | ||
3834 | #: plugins/check_snmp.c:989 | 3868 | #: plugins/check_snmp.c:993 |
3835 | msgid "" | 3869 | msgid "" |
3836 | "- If specified in the order 'max:min' a non-OK state will be returned if the" | 3870 | "- If specified in the order 'max:min' a non-OK state will be returned if the" |
3837 | msgstr "" | 3871 | msgstr "" |
3838 | 3872 | ||
3839 | #: plugins/check_snmp.c:990 | 3873 | #: plugins/check_snmp.c:994 |
3840 | msgid " result is within the (inclusive) range." | 3874 | msgid " result is within the (inclusive) range." |
3841 | msgstr "" | 3875 | msgstr "" |
3842 | 3876 | ||
3843 | #: plugins/check_snmp.c:992 | 3877 | #: plugins/check_snmp.c:996 |
3844 | msgid "" | 3878 | msgid "" |
3845 | "- Upper or lower bounds may be omitted to skip checking the respective limit." | 3879 | "- Upper or lower bounds may be omitted to skip checking the respective limit." |
3846 | msgstr "" | 3880 | msgstr "" |
3847 | 3881 | ||
3848 | #: plugins/check_snmp.c:993 | 3882 | #: plugins/check_snmp.c:997 |
3849 | msgid "- Bare integers are interpreted as upper limits." | 3883 | msgid "- Bare integers are interpreted as upper limits." |
3850 | msgstr "" | 3884 | msgstr "" |
3851 | 3885 | ||
3852 | #: plugins/check_snmp.c:994 | 3886 | #: plugins/check_snmp.c:998 |
3853 | msgid "" | 3887 | msgid "" |
3854 | "- When checking multiple OIDs, separate ranges by commas like '-w " | 3888 | "- When checking multiple OIDs, separate ranges by commas like '-w " |
3855 | "1:10,1:,:20'" | 3889 | "1:10,1:,:20'" |
3856 | msgstr "" | 3890 | msgstr "" |
3857 | 3891 | ||
3858 | #: plugins/check_snmp.c:995 | 3892 | #: plugins/check_snmp.c:999 |
3859 | msgid "- Note that only one string and one regex may be checked at present" | 3893 | msgid "- Note that only one string and one regex may be checked at present" |
3860 | msgstr "" | 3894 | msgstr "" |
3861 | 3895 | ||
3862 | #: plugins/check_snmp.c:996 | 3896 | #: plugins/check_snmp.c:1000 |
3863 | msgid "" | 3897 | msgid "" |
3864 | "- All evaluation methods other than PR, STR, and SUBSTR expect that the value" | 3898 | "- All evaluation methods other than PR, STR, and SUBSTR expect that the value" |
3865 | msgstr "" | 3899 | msgstr "" |
3866 | 3900 | ||
3867 | #: plugins/check_snmp.c:997 | 3901 | #: plugins/check_snmp.c:1001 |
3868 | msgid " returned from the SNMP query is an unsigned integer." | 3902 | msgid " returned from the SNMP query is an unsigned integer." |
3869 | msgstr "" | 3903 | msgstr "" |
3870 | 3904 | ||
@@ -4242,64 +4276,68 @@ msgstr "" | |||
4242 | msgid "Output of temperatures in Celsius" | 4276 | msgid "Output of temperatures in Celsius" |
4243 | msgstr "" | 4277 | msgstr "" |
4244 | 4278 | ||
4245 | #: plugins/check_ups.c:631 | 4279 | #: plugins/check_ups.c:622 |
4280 | msgid "Valid values for STRING are" | ||
4281 | msgstr "" | ||
4282 | |||
4283 | #: plugins/check_ups.c:635 | ||
4246 | msgid "" | 4284 | msgid "" |
4247 | "This plugin attempts to determine the status of a UPS (Uninterruptible Power" | 4285 | "This plugin attempts to determine the status of a UPS (Uninterruptible Power" |
4248 | msgstr "" | 4286 | msgstr "" |
4249 | 4287 | ||
4250 | #: plugins/check_ups.c:632 | 4288 | #: plugins/check_ups.c:636 |
4251 | msgid "" | 4289 | msgid "" |
4252 | "Supply) on a local or remote host. If the UPS is online or calibrating, the" | 4290 | "Supply) on a local or remote host. If the UPS is online or calibrating, the" |
4253 | msgstr "" | 4291 | msgstr "" |
4254 | 4292 | ||
4255 | #: plugins/check_ups.c:633 | 4293 | #: plugins/check_ups.c:637 |
4256 | msgid "" | 4294 | msgid "" |
4257 | "plugin will return an OK state. If the battery is on it will return a WARNING" | 4295 | "plugin will return an OK state. If the battery is on it will return a WARNING" |
4258 | msgstr "" | 4296 | msgstr "" |
4259 | 4297 | ||
4260 | #: plugins/check_ups.c:634 | 4298 | #: plugins/check_ups.c:638 |
4261 | msgid "" | 4299 | msgid "" |
4262 | "state.If the UPS is off or has a low battery the plugin will return a " | 4300 | "state.If the UPS is off or has a low battery the plugin will return a " |
4263 | "CRITICAL" | 4301 | "CRITICAL" |
4264 | msgstr "" | 4302 | msgstr "" |
4265 | 4303 | ||
4266 | #: plugins/check_ups.c:635 | 4304 | #: plugins/check_ups.c:639 |
4267 | msgid "state." | 4305 | msgid "state." |
4268 | msgstr "" | 4306 | msgstr "" |
4269 | 4307 | ||
4270 | #: plugins/check_ups.c:637 | 4308 | #: plugins/check_ups.c:641 |
4271 | msgid "" | 4309 | msgid "" |
4272 | "You may also specify a variable to check [such as temperature, utility " | 4310 | "You may also specify a variable to check [such as temperature, utility " |
4273 | "voltage," | 4311 | "voltage," |
4274 | msgstr "" | 4312 | msgstr "" |
4275 | 4313 | ||
4276 | #: plugins/check_ups.c:638 | 4314 | #: plugins/check_ups.c:642 |
4277 | msgid "" | 4315 | msgid "" |
4278 | "battery load, etc.] as well as warning and critical thresholds for the " | 4316 | "battery load, etc.] as well as warning and critical thresholds for the " |
4279 | "value of" | 4317 | "value of" |
4280 | msgstr "" | 4318 | msgstr "" |
4281 | 4319 | ||
4282 | #: plugins/check_ups.c:639 | 4320 | #: plugins/check_ups.c:643 |
4283 | msgid "" | 4321 | msgid "" |
4284 | "that variable. If the remote host has multiple UPS that are being monitored " | 4322 | "that variable. If the remote host has multiple UPS that are being monitored " |
4285 | "you" | 4323 | "you" |
4286 | msgstr "" | 4324 | msgstr "" |
4287 | 4325 | ||
4288 | #: plugins/check_ups.c:640 | 4326 | #: plugins/check_ups.c:644 |
4289 | msgid "will have to use the [ups] option to specify which UPS to check." | 4327 | msgid "will have to use the [ups] option to specify which UPS to check." |
4290 | msgstr "" | 4328 | msgstr "" |
4291 | 4329 | ||
4292 | #: plugins/check_ups.c:642 | 4330 | #: plugins/check_ups.c:646 |
4293 | msgid "" | 4331 | msgid "" |
4294 | "This plugin requires that the UPSD daemon distributed with Russel Kroll's" | 4332 | "This plugin requires that the UPSD daemon distributed with Russel Kroll's" |
4295 | msgstr "" | 4333 | msgstr "" |
4296 | 4334 | ||
4297 | #: plugins/check_ups.c:643 | 4335 | #: plugins/check_ups.c:647 |
4298 | msgid "" | 4336 | msgid "" |
4299 | "Smart UPS Tools be installed on the remote host. If you do not have the" | 4337 | "Smart UPS Tools be installed on the remote host. If you do not have the" |
4300 | msgstr "" | 4338 | msgstr "" |
4301 | 4339 | ||
4302 | #: plugins/check_ups.c:644 | 4340 | #: plugins/check_ups.c:648 |
4303 | msgid "" | 4341 | msgid "" |
4304 | "package installed on your system, you can download it from http://www." | 4342 | "package installed on your system, you can download it from http://www." |
4305 | "networkupstools.org" | 4343 | "networkupstools.org" |
@@ -4590,296 +4628,296 @@ msgstr "" | |||
4590 | msgid "failed malloc in strscat\n" | 4628 | msgid "failed malloc in strscat\n" |
4591 | msgstr "" | 4629 | msgstr "" |
4592 | 4630 | ||
4593 | #: plugins-root/check_dhcp.c:298 | 4631 | #: plugins-root/check_dhcp.c:300 |
4594 | #, c-format | 4632 | #, c-format |
4595 | msgid "Error: Could not get hardware address of interface '%s'\n" | 4633 | msgid "Error: Could not get hardware address of interface '%s'\n" |
4596 | msgstr "" | 4634 | msgstr "" |
4597 | 4635 | ||
4598 | #: plugins-root/check_dhcp.c:320 | 4636 | #: plugins-root/check_dhcp.c:322 |
4599 | #, c-format | 4637 | #, c-format |
4600 | msgid "Error: if_nametoindex error - %s.\n" | 4638 | msgid "Error: if_nametoindex error - %s.\n" |
4601 | msgstr "" | 4639 | msgstr "" |
4602 | 4640 | ||
4603 | #: plugins-root/check_dhcp.c:325 | 4641 | #: plugins-root/check_dhcp.c:327 |
4604 | #, c-format | 4642 | #, c-format |
4605 | msgid "Error: Couldn't get hardware address from %s. sysctl 1 error - %s.\n" | 4643 | msgid "Error: Couldn't get hardware address from %s. sysctl 1 error - %s.\n" |
4606 | msgstr "" | 4644 | msgstr "" |
4607 | 4645 | ||
4608 | #: plugins-root/check_dhcp.c:330 | 4646 | #: plugins-root/check_dhcp.c:332 |
4609 | #, c-format | 4647 | #, c-format |
4610 | msgid "" | 4648 | msgid "" |
4611 | "Error: Couldn't get hardware address from interface %s. malloc error - %s.\n" | 4649 | "Error: Couldn't get hardware address from interface %s. malloc error - %s.\n" |
4612 | msgstr "" | 4650 | msgstr "" |
4613 | 4651 | ||
4614 | #: plugins-root/check_dhcp.c:335 | 4652 | #: plugins-root/check_dhcp.c:337 |
4615 | #, c-format | 4653 | #, c-format |
4616 | msgid "Error: Couldn't get hardware address from %s. sysctl 2 error - %s.\n" | 4654 | msgid "Error: Couldn't get hardware address from %s. sysctl 2 error - %s.\n" |
4617 | msgstr "" | 4655 | msgstr "" |
4618 | 4656 | ||
4619 | #: plugins-root/check_dhcp.c:361 | 4657 | #: plugins-root/check_dhcp.c:363 |
4620 | #, c-format | 4658 | #, c-format |
4621 | msgid "" | 4659 | msgid "" |
4622 | "Error: can't find unit number in interface_name (%s) - expecting TypeNumber " | 4660 | "Error: can't find unit number in interface_name (%s) - expecting TypeNumber " |
4623 | "eg lnc0.\n" | 4661 | "eg lnc0.\n" |
4624 | msgstr "" | 4662 | msgstr "" |
4625 | 4663 | ||
4626 | #: plugins-root/check_dhcp.c:366 plugins-root/check_dhcp.c:378 | 4664 | #: plugins-root/check_dhcp.c:368 plugins-root/check_dhcp.c:380 |
4627 | #, c-format | 4665 | #, c-format |
4628 | msgid "" | 4666 | msgid "" |
4629 | "Error: can't read MAC address from DLPI streams interface for device %s unit " | 4667 | "Error: can't read MAC address from DLPI streams interface for device %s unit " |
4630 | "%d.\n" | 4668 | "%d.\n" |
4631 | msgstr "" | 4669 | msgstr "" |
4632 | 4670 | ||
4633 | #: plugins-root/check_dhcp.c:384 | 4671 | #: plugins-root/check_dhcp.c:386 |
4634 | #, c-format | 4672 | #, c-format |
4635 | msgid "Error: can't get MAC address for this architecture.\n" | 4673 | msgid "Error: can't get MAC address for this architecture.\n" |
4636 | msgstr "" | 4674 | msgstr "" |
4637 | 4675 | ||
4638 | #: plugins-root/check_dhcp.c:389 | 4676 | #: plugins-root/check_dhcp.c:391 |
4639 | #, c-format | 4677 | #, c-format |
4640 | msgid "Hardware address: " | 4678 | msgid "Hardware address: " |
4641 | msgstr "" | 4679 | msgstr "" |
4642 | 4680 | ||
4643 | #: plugins-root/check_dhcp.c:464 | 4681 | #: plugins-root/check_dhcp.c:470 |
4644 | #, c-format | 4682 | #, c-format |
4645 | msgid "DHCPDISCOVER to %s port %d\n" | 4683 | msgid "DHCPDISCOVER to %s port %d\n" |
4646 | msgstr "" | 4684 | msgstr "" |
4647 | 4685 | ||
4648 | #: plugins-root/check_dhcp.c:517 | 4686 | #: plugins-root/check_dhcp.c:522 |
4649 | #, c-format | 4687 | #, c-format |
4650 | msgid "Result=ERROR\n" | 4688 | msgid "Result=ERROR\n" |
4651 | msgstr "" | 4689 | msgstr "" |
4652 | 4690 | ||
4653 | #: plugins-root/check_dhcp.c:523 | 4691 | #: plugins-root/check_dhcp.c:528 |
4654 | #, c-format | 4692 | #, c-format |
4655 | msgid "Result=OK\n" | 4693 | msgid "Result=OK\n" |
4656 | msgstr "" | 4694 | msgstr "" |
4657 | 4695 | ||
4658 | #: plugins-root/check_dhcp.c:538 | 4696 | #: plugins-root/check_dhcp.c:543 |
4659 | #, c-format | 4697 | #, c-format |
4660 | msgid "DHCPOFFER from IP address %s" | 4698 | msgid "DHCPOFFER from IP address %s" |
4661 | msgstr "" | 4699 | msgstr "" |
4662 | 4700 | ||
4663 | #: plugins-root/check_dhcp.c:539 | 4701 | #: plugins-root/check_dhcp.c:544 |
4664 | #, c-format | 4702 | #, c-format |
4665 | msgid " via %s\n" | 4703 | msgid " via %s\n" |
4666 | msgstr "" | 4704 | msgstr "" |
4667 | 4705 | ||
4668 | #: plugins-root/check_dhcp.c:546 | 4706 | #: plugins-root/check_dhcp.c:551 |
4669 | #, c-format | 4707 | #, c-format |
4670 | msgid "" | 4708 | msgid "" |
4671 | "DHCPOFFER XID (%lu) did not match DHCPDISCOVER XID (%lu) - ignoring packet\n" | 4709 | "DHCPOFFER XID (%lu) did not match DHCPDISCOVER XID (%lu) - ignoring packet\n" |
4672 | msgstr "" | 4710 | msgstr "" |
4673 | 4711 | ||
4674 | #: plugins-root/check_dhcp.c:568 | 4712 | #: plugins-root/check_dhcp.c:573 |
4675 | #, c-format | 4713 | #, c-format |
4676 | msgid "DHCPOFFER hardware address did not match our own - ignoring packet\n" | 4714 | msgid "DHCPOFFER hardware address did not match our own - ignoring packet\n" |
4677 | msgstr "" | 4715 | msgstr "" |
4678 | 4716 | ||
4679 | #: plugins-root/check_dhcp.c:586 | 4717 | #: plugins-root/check_dhcp.c:591 |
4680 | #, c-format | 4718 | #, c-format |
4681 | msgid "Total responses seen on the wire: %d\n" | 4719 | msgid "Total responses seen on the wire: %d\n" |
4682 | msgstr "" | 4720 | msgstr "" |
4683 | 4721 | ||
4684 | #: plugins-root/check_dhcp.c:587 | 4722 | #: plugins-root/check_dhcp.c:592 |
4685 | #, c-format | 4723 | #, c-format |
4686 | msgid "Valid responses for this machine: %d\n" | 4724 | msgid "Valid responses for this machine: %d\n" |
4687 | msgstr "" | 4725 | msgstr "" |
4688 | 4726 | ||
4689 | #: plugins-root/check_dhcp.c:603 | 4727 | #: plugins-root/check_dhcp.c:607 |
4690 | #, c-format | 4728 | #, c-format |
4691 | msgid "send_dhcp_packet result: %d\n" | 4729 | msgid "send_dhcp_packet result: %d\n" |
4692 | msgstr "" | 4730 | msgstr "" |
4693 | 4731 | ||
4694 | #: plugins-root/check_dhcp.c:632 | 4732 | #: plugins-root/check_dhcp.c:636 |
4695 | #, c-format | 4733 | #, c-format |
4696 | msgid "No (more) data received\n" | 4734 | msgid "No (more) data received\n" |
4697 | msgstr "" | 4735 | msgstr "" |
4698 | 4736 | ||
4699 | #: plugins-root/check_dhcp.c:651 | 4737 | #: plugins-root/check_dhcp.c:655 |
4700 | #, c-format | 4738 | #, c-format |
4701 | msgid "recvfrom() failed, " | 4739 | msgid "recvfrom() failed, " |
4702 | msgstr "" | 4740 | msgstr "" |
4703 | 4741 | ||
4704 | #: plugins-root/check_dhcp.c:658 | 4742 | #: plugins-root/check_dhcp.c:662 |
4705 | #, c-format | 4743 | #, c-format |
4706 | msgid "receive_dhcp_packet() result: %d\n" | 4744 | msgid "receive_dhcp_packet() result: %d\n" |
4707 | msgstr "" | 4745 | msgstr "" |
4708 | 4746 | ||
4709 | #: plugins-root/check_dhcp.c:659 | 4747 | #: plugins-root/check_dhcp.c:663 |
4710 | #, c-format | 4748 | #, c-format |
4711 | msgid "receive_dhcp_packet() source: %s\n" | 4749 | msgid "receive_dhcp_packet() source: %s\n" |
4712 | msgstr "" | 4750 | msgstr "" |
4713 | 4751 | ||
4714 | #: plugins-root/check_dhcp.c:688 | 4752 | #: plugins-root/check_dhcp.c:692 |
4715 | #, c-format | 4753 | #, c-format |
4716 | msgid "Error: Could not create socket!\n" | 4754 | msgid "Error: Could not create socket!\n" |
4717 | msgstr "" | 4755 | msgstr "" |
4718 | 4756 | ||
4719 | #: plugins-root/check_dhcp.c:698 | 4757 | #: plugins-root/check_dhcp.c:702 |
4720 | #, c-format | 4758 | #, c-format |
4721 | msgid "Error: Could not set reuse address option on DHCP socket!\n" | 4759 | msgid "Error: Could not set reuse address option on DHCP socket!\n" |
4722 | msgstr "" | 4760 | msgstr "" |
4723 | 4761 | ||
4724 | #: plugins-root/check_dhcp.c:704 | 4762 | #: plugins-root/check_dhcp.c:708 |
4725 | #, c-format | 4763 | #, c-format |
4726 | msgid "Error: Could not set broadcast option on DHCP socket!\n" | 4764 | msgid "Error: Could not set broadcast option on DHCP socket!\n" |
4727 | msgstr "" | 4765 | msgstr "" |
4728 | 4766 | ||
4729 | #: plugins-root/check_dhcp.c:712 | 4767 | #: plugins-root/check_dhcp.c:716 |
4730 | #, c-format | 4768 | #, c-format |
4731 | msgid "" | 4769 | msgid "" |
4732 | "Error: Could not bind socket to interface %s. Check your privileges...\n" | 4770 | "Error: Could not bind socket to interface %s. Check your privileges...\n" |
4733 | msgstr "" | 4771 | msgstr "" |
4734 | 4772 | ||
4735 | #: plugins-root/check_dhcp.c:722 | 4773 | #: plugins-root/check_dhcp.c:726 |
4736 | #, c-format | 4774 | #, c-format |
4737 | msgid "" | 4775 | msgid "" |
4738 | "Error: Could not bind to DHCP socket (port %d)! Check your privileges...\n" | 4776 | "Error: Could not bind to DHCP socket (port %d)! Check your privileges...\n" |
4739 | msgstr "" | 4777 | msgstr "" |
4740 | 4778 | ||
4741 | #: plugins-root/check_dhcp.c:756 | 4779 | #: plugins-root/check_dhcp.c:760 |
4742 | #, c-format | 4780 | #, c-format |
4743 | msgid "Requested server address: %s\n" | 4781 | msgid "Requested server address: %s\n" |
4744 | msgstr "" | 4782 | msgstr "" |
4745 | 4783 | ||
4746 | #: plugins-root/check_dhcp.c:812 | 4784 | #: plugins-root/check_dhcp.c:821 |
4747 | #, c-format | 4785 | #, c-format |
4748 | msgid "Lease Time: Infinite\n" | 4786 | msgid "Lease Time: Infinite\n" |
4749 | msgstr "" | 4787 | msgstr "" |
4750 | 4788 | ||
4751 | #: plugins-root/check_dhcp.c:814 | 4789 | #: plugins-root/check_dhcp.c:823 |
4752 | #, c-format | 4790 | #, c-format |
4753 | msgid "Lease Time: %lu seconds\n" | 4791 | msgid "Lease Time: %lu seconds\n" |
4754 | msgstr "" | 4792 | msgstr "" |
4755 | 4793 | ||
4756 | #: plugins-root/check_dhcp.c:816 | 4794 | #: plugins-root/check_dhcp.c:825 |
4757 | #, c-format | 4795 | #, c-format |
4758 | msgid "Renewal Time: Infinite\n" | 4796 | msgid "Renewal Time: Infinite\n" |
4759 | msgstr "" | 4797 | msgstr "" |
4760 | 4798 | ||
4761 | #: plugins-root/check_dhcp.c:818 | 4799 | #: plugins-root/check_dhcp.c:827 |
4762 | #, c-format | 4800 | #, c-format |
4763 | msgid "Renewal Time: %lu seconds\n" | 4801 | msgid "Renewal Time: %lu seconds\n" |
4764 | msgstr "" | 4802 | msgstr "" |
4765 | 4803 | ||
4766 | #: plugins-root/check_dhcp.c:820 | 4804 | #: plugins-root/check_dhcp.c:829 |
4767 | #, c-format | 4805 | #, c-format |
4768 | msgid "Rebinding Time: Infinite\n" | 4806 | msgid "Rebinding Time: Infinite\n" |
4769 | msgstr "" | 4807 | msgstr "" |
4770 | 4808 | ||
4771 | #: plugins-root/check_dhcp.c:821 | 4809 | #: plugins-root/check_dhcp.c:830 |
4772 | #, c-format | 4810 | #, c-format |
4773 | msgid "Rebinding Time: %lu seconds\n" | 4811 | msgid "Rebinding Time: %lu seconds\n" |
4774 | msgstr "" | 4812 | msgstr "" |
4775 | 4813 | ||
4776 | #: plugins-root/check_dhcp.c:837 | 4814 | #: plugins-root/check_dhcp.c:858 |
4777 | #, c-format | 4815 | #, c-format |
4778 | msgid "Added offer from server @ %s" | 4816 | msgid "Added offer from server @ %s" |
4779 | msgstr "" | 4817 | msgstr "" |
4780 | 4818 | ||
4781 | #: plugins-root/check_dhcp.c:838 | 4819 | #: plugins-root/check_dhcp.c:859 |
4782 | #, c-format | 4820 | #, c-format |
4783 | msgid " of IP address %s\n" | 4821 | msgid " of IP address %s\n" |
4784 | msgstr "" | 4822 | msgstr "" |
4785 | 4823 | ||
4786 | #: plugins-root/check_dhcp.c:905 | 4824 | #: plugins-root/check_dhcp.c:926 |
4787 | #, c-format | 4825 | #, c-format |
4788 | msgid "DHCP Server Match: Offerer=%s" | 4826 | msgid "DHCP Server Match: Offerer=%s" |
4789 | msgstr "" | 4827 | msgstr "" |
4790 | 4828 | ||
4791 | #: plugins-root/check_dhcp.c:906 | 4829 | #: plugins-root/check_dhcp.c:927 |
4792 | #, c-format | 4830 | #, c-format |
4793 | msgid " Requested=%s" | 4831 | msgid " Requested=%s" |
4794 | msgstr "" | 4832 | msgstr "" |
4795 | 4833 | ||
4796 | #: plugins-root/check_dhcp.c:908 | 4834 | #: plugins-root/check_dhcp.c:929 |
4797 | #, c-format | 4835 | #, c-format |
4798 | msgid " (duplicate)" | 4836 | msgid " (duplicate)" |
4799 | msgstr "" | 4837 | msgstr "" |
4800 | 4838 | ||
4801 | #: plugins-root/check_dhcp.c:909 | 4839 | #: plugins-root/check_dhcp.c:930 |
4802 | #, c-format | 4840 | #, c-format |
4803 | msgid "\n" | 4841 | msgid "\n" |
4804 | msgstr "" | 4842 | msgstr "" |
4805 | 4843 | ||
4806 | #: plugins-root/check_dhcp.c:957 | 4844 | #: plugins-root/check_dhcp.c:978 |
4807 | #, c-format | 4845 | #, c-format |
4808 | msgid "No DHCPOFFERs were received.\n" | 4846 | msgid "No DHCPOFFERs were received.\n" |
4809 | msgstr "" | 4847 | msgstr "" |
4810 | 4848 | ||
4811 | #: plugins-root/check_dhcp.c:961 | 4849 | #: plugins-root/check_dhcp.c:982 |
4812 | #, c-format | 4850 | #, c-format |
4813 | msgid "Received %d DHCPOFFER(s)" | 4851 | msgid "Received %d DHCPOFFER(s)" |
4814 | msgstr "" | 4852 | msgstr "" |
4815 | 4853 | ||
4816 | #: plugins-root/check_dhcp.c:964 | 4854 | #: plugins-root/check_dhcp.c:985 |
4817 | #, c-format | 4855 | #, c-format |
4818 | msgid ", %s%d of %d requested servers responded" | 4856 | msgid ", %s%d of %d requested servers responded" |
4819 | msgstr "" | 4857 | msgstr "" |
4820 | 4858 | ||
4821 | #: plugins-root/check_dhcp.c:967 | 4859 | #: plugins-root/check_dhcp.c:988 |
4822 | #, c-format | 4860 | #, c-format |
4823 | msgid ", requested address (%s) was %soffered" | 4861 | msgid ", requested address (%s) was %soffered" |
4824 | msgstr "" | 4862 | msgstr "" |
4825 | 4863 | ||
4826 | #: plugins-root/check_dhcp.c:967 | 4864 | #: plugins-root/check_dhcp.c:988 |
4827 | msgid "not " | 4865 | msgid "not " |
4828 | msgstr "" | 4866 | msgstr "" |
4829 | 4867 | ||
4830 | #: plugins-root/check_dhcp.c:969 | 4868 | #: plugins-root/check_dhcp.c:990 |
4831 | #, c-format | 4869 | #, c-format |
4832 | msgid ", max lease time = " | 4870 | msgid ", max lease time = " |
4833 | msgstr "" | 4871 | msgstr "" |
4834 | 4872 | ||
4835 | #: plugins-root/check_dhcp.c:971 | 4873 | #: plugins-root/check_dhcp.c:992 |
4836 | #, c-format | 4874 | #, c-format |
4837 | msgid "Infinity" | 4875 | msgid "Infinity" |
4838 | msgstr "" | 4876 | msgstr "" |
4839 | 4877 | ||
4840 | #: plugins-root/check_dhcp.c:1148 | 4878 | #: plugins-root/check_dhcp.c:1169 |
4841 | #, c-format | 4879 | #, c-format |
4842 | msgid "Error: DLPI stream API failed to get MAC in check_ctrl: %s.\n" | 4880 | msgid "Error: DLPI stream API failed to get MAC in check_ctrl: %s.\n" |
4843 | msgstr "" | 4881 | msgstr "" |
4844 | 4882 | ||
4845 | #: plugins-root/check_dhcp.c:1160 | 4883 | #: plugins-root/check_dhcp.c:1181 |
4846 | #, c-format | 4884 | #, c-format |
4847 | msgid "Error: DLPI stream API failed to get MAC in put_ctrl/putmsg(): %s.\n" | 4885 | msgid "Error: DLPI stream API failed to get MAC in put_ctrl/putmsg(): %s.\n" |
4848 | msgstr "" | 4886 | msgstr "" |
4849 | 4887 | ||
4850 | #: plugins-root/check_dhcp.c:1173 | 4888 | #: plugins-root/check_dhcp.c:1194 |
4851 | #, c-format | 4889 | #, c-format |
4852 | msgid "Error: DLPI stream API failed to get MAC in put_both/putmsg().\n" | 4890 | msgid "Error: DLPI stream API failed to get MAC in put_both/putmsg().\n" |
4853 | msgstr "" | 4891 | msgstr "" |
4854 | 4892 | ||
4855 | #: plugins-root/check_dhcp.c:1185 | 4893 | #: plugins-root/check_dhcp.c:1206 |
4856 | #, c-format | 4894 | #, c-format |
4857 | msgid "" | 4895 | msgid "" |
4858 | "Error: DLPI stream API failed to get MAC in dl_attach_req/open(%s..): %s.\n" | 4896 | "Error: DLPI stream API failed to get MAC in dl_attach_req/open(%s..): %s.\n" |
4859 | msgstr "" | 4897 | msgstr "" |
4860 | 4898 | ||
4861 | #: plugins-root/check_dhcp.c:1209 | 4899 | #: plugins-root/check_dhcp.c:1230 |
4862 | #, c-format | 4900 | #, c-format |
4863 | msgid "Error: DLPI stream API failed to get MAC in dl_bind/check_ctrl(): %s.\n" | 4901 | msgid "Error: DLPI stream API failed to get MAC in dl_bind/check_ctrl(): %s.\n" |
4864 | msgstr "" | 4902 | msgstr "" |
4865 | 4903 | ||
4866 | #: plugins-root/check_dhcp.c:1257 | 4904 | #: plugins-root/check_dhcp.c:1278 |
4867 | msgid "This plugin tests the availability of DHCP servers on a network." | 4905 | msgid "This plugin tests the availability of DHCP servers on a network." |
4868 | msgstr "" | 4906 | msgstr "" |
4869 | 4907 | ||
4870 | #: plugins-root/check_dhcp.c:1268 | 4908 | #: plugins-root/check_dhcp.c:1289 |
4871 | msgid "IP address of DHCP server that we must hear from" | 4909 | msgid "IP address of DHCP server that we must hear from" |
4872 | msgstr "" | 4910 | msgstr "" |
4873 | 4911 | ||
4874 | #: plugins-root/check_dhcp.c:1270 | 4912 | #: plugins-root/check_dhcp.c:1291 |
4875 | msgid "IP address that should be offered by at least one DHCP server" | 4913 | msgid "IP address that should be offered by at least one DHCP server" |
4876 | msgstr "" | 4914 | msgstr "" |
4877 | 4915 | ||
4878 | #: plugins-root/check_dhcp.c:1272 | 4916 | #: plugins-root/check_dhcp.c:1293 |
4879 | msgid "Seconds to wait for DHCPOFFER before timeout occurs" | 4917 | msgid "Seconds to wait for DHCPOFFER before timeout occurs" |
4880 | msgstr "" | 4918 | msgstr "" |
4881 | 4919 | ||
4882 | #: plugins-root/check_dhcp.c:1274 | 4920 | #: plugins-root/check_dhcp.c:1295 |
4883 | msgid "Interface to to use for listening (i.e. eth0)" | 4921 | msgid "Interface to to use for listening (i.e. eth0)" |
4884 | msgstr "" | 4922 | msgstr "" |
4885 | 4923 | ||