diff options
author | Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com> | 2023-09-21 07:22:33 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-21 07:22:33 (GMT) |
commit | d5d0b50e89ee600b6a605344aad004c60b88994d (patch) | |
tree | 1ef0975b2a059daa7b8552aaf6371b3320ef477b | |
parent | ab493d5515bd6dd8f844eb673b783479074263f8 (diff) | |
parent | 220455a11e8f1dd3a86ac4725cf0c799c8e3b21b (diff) | |
download | monitoring-plugins-d5d0b50e89ee600b6a605344aad004c60b88994d.tar.gz |
Merge branch 'master' into compiler_warning_part_3refs/pull/1868/head
-rw-r--r-- | doc/developer-guidelines.sgml | 9 | ||||
-rw-r--r-- | lib/utils_cmd.c | 4 | ||||
-rwxr-xr-x | plugins-scripts/check_breeze.pl | 3 | ||||
-rwxr-xr-x | plugins-scripts/check_wave.pl | 15 | ||||
-rw-r--r-- | plugins-scripts/utils.pm.in | 1 | ||||
-rw-r--r-- | plugins/check_disk.c | 5 | ||||
-rw-r--r-- | plugins/check_http.c | 2 | ||||
-rw-r--r-- | plugins/check_mysql.c | 35 | ||||
-rw-r--r-- | plugins/check_snmp.c | 10 | ||||
-rw-r--r-- | plugins/runcmd.c | 4 | ||||
-rw-r--r-- | po/de.po | 227 | ||||
-rw-r--r-- | po/fr.po | 11 | ||||
-rw-r--r-- | po/monitoring-plugins.pot | 2 |
13 files changed, 171 insertions, 157 deletions
diff --git a/doc/developer-guidelines.sgml b/doc/developer-guidelines.sgml index 1982974..37c963e 100644 --- a/doc/developer-guidelines.sgml +++ b/doc/developer-guidelines.sgml | |||
@@ -733,12 +733,9 @@ setup the tests. Run "make test" to run all the tests. | |||
733 | <para>Variables should be declared at the beginning of code blocks and | 733 | <para>Variables should be declared at the beginning of code blocks and |
734 | not inline because of portability with older compilers.</para> | 734 | not inline because of portability with older compilers.</para> |
735 | 735 | ||
736 | <para>You should use /* */ for comments and not // as some compilers | 736 | <para>You should use the type "bool" and its values |
737 | do not handle the latter form.</para> | 737 | "true" and "false" instead of the "int" type for booleans. |
738 | 738 | </para> | |
739 | <para>You should also avoid using the type "bool" and its values | ||
740 | "true" and "false". Instead use the "int" type and the plugins' own | ||
741 | "TRUE"/"FALSE" values to keep the code uniformly.</para> | ||
742 | </section> | 739 | </section> |
743 | 740 | ||
744 | <section><title>Crediting sources</title> | 741 | <section><title>Crediting sources</title> |
diff --git a/lib/utils_cmd.c b/lib/utils_cmd.c index 8b8e570..34fb390 100644 --- a/lib/utils_cmd.c +++ b/lib/utils_cmd.c | |||
@@ -118,10 +118,6 @@ _cmd_open (char *const *argv, int *pfd, int *pfderr) | |||
118 | 118 | ||
119 | int i = 0; | 119 | int i = 0; |
120 | 120 | ||
121 | /* if no command was passed, return with no error */ | ||
122 | if (argv == NULL) | ||
123 | return -1; | ||
124 | |||
125 | if (!_cmd_pids) | 121 | if (!_cmd_pids) |
126 | CMD_INIT; | 122 | CMD_INIT; |
127 | 123 | ||
diff --git a/plugins-scripts/check_breeze.pl b/plugins-scripts/check_breeze.pl index 05b9920..531625c 100755 --- a/plugins-scripts/check_breeze.pl +++ b/plugins-scripts/check_breeze.pl | |||
@@ -14,8 +14,9 @@ sub print_help (); | |||
14 | sub print_usage (); | 14 | sub print_usage (); |
15 | 15 | ||
16 | $ENV{'PATH'}='@TRUSTED_PATH@'; | 16 | $ENV{'PATH'}='@TRUSTED_PATH@'; |
17 | $ENV{'BASH_ENV'}=''; | 17 | $ENV{'BASH_ENV'}=''; |
18 | $ENV{'ENV'}=''; | 18 | $ENV{'ENV'}=''; |
19 | $ENV{'CDPATH'}=''; | ||
19 | 20 | ||
20 | Getopt::Long::Configure('bundling'); | 21 | Getopt::Long::Configure('bundling'); |
21 | GetOptions | 22 | GetOptions |
diff --git a/plugins-scripts/check_wave.pl b/plugins-scripts/check_wave.pl index 41e15f5..c24015c 100755 --- a/plugins-scripts/check_wave.pl +++ b/plugins-scripts/check_wave.pl | |||
@@ -19,6 +19,7 @@ sub print_usage (); | |||
19 | $ENV{'PATH'}='@TRUSTED_PATH@'; | 19 | $ENV{'PATH'}='@TRUSTED_PATH@'; |
20 | $ENV{'BASH_ENV'}=''; | 20 | $ENV{'BASH_ENV'}=''; |
21 | $ENV{'ENV'}=''; | 21 | $ENV{'ENV'}=''; |
22 | $ENV{'CDPATH'}=''; | ||
22 | 23 | ||
23 | Getopt::Long::Configure('bundling'); | 24 | Getopt::Long::Configure('bundling'); |
24 | GetOptions | 25 | GetOptions |
@@ -50,34 +51,34 @@ my $critical = $1 if ($opt_c =~ /([0-9]+)/); | |||
50 | ($opt_w) || ($opt_w = shift) || ($opt_w = 60); | 51 | ($opt_w) || ($opt_w = shift) || ($opt_w = 60); |
51 | my $warning = $1 if ($opt_w =~ /([0-9]+)/); | 52 | my $warning = $1 if ($opt_w =~ /([0-9]+)/); |
52 | 53 | ||
53 | $low1 = `snmpget $host public .1.3.6.1.4.1.74.2.21.1.2.1.8.1`; | 54 | $low1 = `$utils::PATH_TO_SNMPGET $host public .1.3.6.1.4.1.74.2.21.1.2.1.8.1`; |
54 | @test = split(/ /,$low1); | 55 | @test = split(/ /,$low1); |
55 | $low1 = $test[2]; | 56 | $low1 = $test[2]; |
56 | 57 | ||
57 | $med1 = `snmpget $host public .1.3.6.1.4.1.74.2.21.1.2.1.9.1`; | 58 | $med1 = `$utils::PATH_TO_SNMPGET $host public .1.3.6.1.4.1.74.2.21.1.2.1.9.1`; |
58 | @test = split(/ /,$med1); | 59 | @test = split(/ /,$med1); |
59 | $med1 = $test[2]; | 60 | $med1 = $test[2]; |
60 | 61 | ||
61 | $high1 = `snmpget $host public .1.3.6.1.4.1.74.2.21.1.2.1.10.1`; | 62 | $high1 = `$utils::PATH_TO_SNMPGET $host public .1.3.6.1.4.1.74.2.21.1.2.1.10.1`; |
62 | @test = split(/ /,$high1); | 63 | @test = split(/ /,$high1); |
63 | $high1 = $test[2]; | 64 | $high1 = $test[2]; |
64 | 65 | ||
65 | sleep(2); | 66 | sleep(2); |
66 | 67 | ||
67 | $snr = `snmpget $host public .1.3.6.1.4.1.762.2.5.2.1.17.1`; | 68 | $snr = `$utils::PATH_TO_SNMPGET $host public .1.3.6.1.4.1.762.2.5.2.1.17.1`; |
68 | @test = split(/ /,$snr); | 69 | @test = split(/ /,$snr); |
69 | $snr = $test[2]; | 70 | $snr = $test[2]; |
70 | $snr = int($snr*25); | 71 | $snr = int($snr*25); |
71 | 72 | ||
72 | $low2 = `snmpget $host public .1.3.6.1.4.1.74.2.21.1.2.1.8.1`; | 73 | $low2 = `$utils::PATH_TO_SNMPGET $host public .1.3.6.1.4.1.74.2.21.1.2.1.8.1`; |
73 | @test = split(/ /,$low2); | 74 | @test = split(/ /,$low2); |
74 | $low2 = $test[2]; | 75 | $low2 = $test[2]; |
75 | 76 | ||
76 | $med2 = `snmpget $host public .1.3.6.1.4.1.74.2.21.1.2.1.9.1`; | 77 | $med2 = `$utils::PATH_TO_SNMPGET $host public .1.3.6.1.4.1.74.2.21.1.2.1.9.1`; |
77 | @test = split(/ /,$med2); | 78 | @test = split(/ /,$med2); |
78 | $med2 = $test[2]; | 79 | $med2 = $test[2]; |
79 | 80 | ||
80 | $high2 = `snmpget $host public .1.3.6.1.4.1.74.2.21.1.2.1.10.1`; | 81 | $high2 = `$utils::PATH_TO_SNMPGET $host public .1.3.6.1.4.1.74.2.21.1.2.1.10.1`; |
81 | @test = split(/ /,$high2); | 82 | @test = split(/ /,$high2); |
82 | $high2 = $test[2]; | 83 | $high2 = $test[2]; |
83 | 84 | ||
diff --git a/plugins-scripts/utils.pm.in b/plugins-scripts/utils.pm.in index 386831e..c84769f 100644 --- a/plugins-scripts/utils.pm.in +++ b/plugins-scripts/utils.pm.in | |||
@@ -23,6 +23,7 @@ $PATH_TO_LMSTAT = "@PATH_TO_LMSTAT@" ; | |||
23 | $PATH_TO_SMBCLIENT = "@PATH_TO_SMBCLIENT@" ; | 23 | $PATH_TO_SMBCLIENT = "@PATH_TO_SMBCLIENT@" ; |
24 | $PATH_TO_MAILQ = "@PATH_TO_MAILQ@"; | 24 | $PATH_TO_MAILQ = "@PATH_TO_MAILQ@"; |
25 | $PATH_TO_QMAIL_QSTAT = "@PATH_TO_QMAIL_QSTAT@"; | 25 | $PATH_TO_QMAIL_QSTAT = "@PATH_TO_QMAIL_QSTAT@"; |
26 | $PATH_TO_SNMPGET = "@PATH_TO_SNMPGET@"; | ||
26 | 27 | ||
27 | ## common variables | 28 | ## common variables |
28 | $TIMEOUT = 15; | 29 | $TIMEOUT = 15; |
diff --git a/plugins/check_disk.c b/plugins/check_disk.c index 39dc6cd..05e5502 100644 --- a/plugins/check_disk.c +++ b/plugins/check_disk.c | |||
@@ -131,9 +131,6 @@ bool stat_path (struct parameter_list *p); | |||
131 | void get_stats (struct parameter_list *p, struct fs_usage *fsp); | 131 | void get_stats (struct parameter_list *p, struct fs_usage *fsp); |
132 | void get_path_stats (struct parameter_list *p, struct fs_usage *fsp); | 132 | void get_path_stats (struct parameter_list *p, struct fs_usage *fsp); |
133 | 133 | ||
134 | double w_dfp = -1.0; | ||
135 | double c_dfp = -1.0; | ||
136 | char *path; | ||
137 | char *exclude_device; | 134 | char *exclude_device; |
138 | char *units; | 135 | char *units; |
139 | uintmax_t mult = 1024 * 1024; | 136 | uintmax_t mult = 1024 * 1024; |
@@ -889,7 +886,7 @@ process_arguments (int argc, char **argv) | |||
889 | if (crit_usedspace_percent == NULL && argc > c && is_intnonneg (argv[c])) | 886 | if (crit_usedspace_percent == NULL && argc > c && is_intnonneg (argv[c])) |
890 | crit_usedspace_percent = argv[c++]; | 887 | crit_usedspace_percent = argv[c++]; |
891 | 888 | ||
892 | if (argc > c && path == NULL) { | 889 | if (argc > c) { |
893 | se = np_add_parameter(&path_select_list, strdup(argv[c++])); | 890 | se = np_add_parameter(&path_select_list, strdup(argv[c++])); |
894 | path_selected = TRUE; | 891 | path_selected = TRUE; |
895 | set_all_thresholds(se); | 892 | set_all_thresholds(se); |
diff --git a/plugins/check_http.c b/plugins/check_http.c index 1288c41..718c8ee 100644 --- a/plugins/check_http.c +++ b/plugins/check_http.c | |||
@@ -1279,7 +1279,7 @@ check_http (void) | |||
1279 | 1279 | ||
1280 | regmatch_t chre_pmatch[1]; // We actually do not care about this, since we only want to know IF it was found | 1280 | regmatch_t chre_pmatch[1]; // We actually do not care about this, since we only want to know IF it was found |
1281 | 1281 | ||
1282 | if (regexec(&chunked_header_regex, header, 1, chre_pmatch, 0) == 0) { | 1282 | if (!no_body && regexec(&chunked_header_regex, header, 1, chre_pmatch, 0) == 0) { |
1283 | if (verbose) { | 1283 | if (verbose) { |
1284 | printf("Found chunked content\n"); | 1284 | printf("Found chunked content\n"); |
1285 | } | 1285 | } |
diff --git a/plugins/check_mysql.c b/plugins/check_mysql.c index 91e150f..7d85554 100644 --- a/plugins/check_mysql.c +++ b/plugins/check_mysql.c | |||
@@ -34,7 +34,7 @@ const char *progname = "check_mysql"; | |||
34 | const char *copyright = "1999-2011"; | 34 | const char *copyright = "1999-2011"; |
35 | const char *email = "devel@monitoring-plugins.org"; | 35 | const char *email = "devel@monitoring-plugins.org"; |
36 | 36 | ||
37 | #define SLAVERESULTSIZE 70 | 37 | #define SLAVERESULTSIZE 96 |
38 | 38 | ||
39 | #include "common.h" | 39 | #include "common.h" |
40 | #include "utils.h" | 40 | #include "utils.h" |
@@ -89,6 +89,8 @@ static const char *metric_counter[LENGTH_METRIC_COUNTER] = { | |||
89 | "Uptime" | 89 | "Uptime" |
90 | }; | 90 | }; |
91 | 91 | ||
92 | #define MYSQLDUMP_THREADS_QUERY "SELECT COUNT(1) mysqldumpThreads FROM information_schema.processlist WHERE info LIKE 'SELECT /*!40001 SQL_NO_CACHE */%'" | ||
93 | |||
92 | thresholds *my_threshold = NULL; | 94 | thresholds *my_threshold = NULL; |
93 | 95 | ||
94 | int process_arguments (int, char **); | 96 | int process_arguments (int, char **); |
@@ -108,7 +110,7 @@ main (int argc, char **argv) | |||
108 | 110 | ||
109 | char *result = NULL; | 111 | char *result = NULL; |
110 | char *error = NULL; | 112 | char *error = NULL; |
111 | char slaveresult[SLAVERESULTSIZE]; | 113 | char slaveresult[SLAVERESULTSIZE] = { 0 }; |
112 | char* perf; | 114 | char* perf; |
113 | 115 | ||
114 | perf = strdup (""); | 116 | perf = strdup (""); |
@@ -278,11 +280,30 @@ main (int argc, char **argv) | |||
278 | /* Save slave status in slaveresult */ | 280 | /* Save slave status in slaveresult */ |
279 | snprintf (slaveresult, SLAVERESULTSIZE, "Slave IO: %s Slave SQL: %s Seconds Behind Master: %s", row[slave_io_field], row[slave_sql_field], seconds_behind_field!=-1?row[seconds_behind_field]:"Unknown"); | 281 | snprintf (slaveresult, SLAVERESULTSIZE, "Slave IO: %s Slave SQL: %s Seconds Behind Master: %s", row[slave_io_field], row[slave_sql_field], seconds_behind_field!=-1?row[seconds_behind_field]:"Unknown"); |
280 | 282 | ||
281 | /* Raise critical error if SQL THREAD or IO THREAD are stopped */ | 283 | /* Raise critical error if SQL THREAD or IO THREAD are stopped, but only if there are no mysqldump threads running */ |
282 | if (strcmp (row[slave_io_field], "Yes") != 0 || strcmp (row[slave_sql_field], "Yes") != 0) { | 284 | if (strcmp (row[slave_io_field], "Yes") != 0 || strcmp (row[slave_sql_field], "Yes") != 0) { |
283 | mysql_free_result (res); | 285 | MYSQL_RES *res_mysqldump; |
284 | mysql_close (&mysql); | 286 | MYSQL_ROW row_mysqldump; |
285 | die (STATE_CRITICAL, "%s\n", slaveresult); | 287 | unsigned int mysqldump_threads = 0; |
288 | |||
289 | if (mysql_query (&mysql, MYSQLDUMP_THREADS_QUERY) == 0) { | ||
290 | /* store the result */ | ||
291 | if ( (res_mysqldump = mysql_store_result (&mysql)) != NULL) { | ||
292 | if (mysql_num_rows(res_mysqldump) == 1) { | ||
293 | if ( (row_mysqldump = mysql_fetch_row (res_mysqldump)) != NULL) { | ||
294 | mysqldump_threads = atoi(row_mysqldump[0]); | ||
295 | } | ||
296 | } | ||
297 | /* free the result */ | ||
298 | mysql_free_result (res_mysqldump); | ||
299 | } | ||
300 | mysql_close (&mysql); | ||
301 | } | ||
302 | if (mysqldump_threads == 0) { | ||
303 | die (STATE_CRITICAL, "%s\n", slaveresult); | ||
304 | } else { | ||
305 | strncat(slaveresult, " Mysqldump: in progress", SLAVERESULTSIZE-1); | ||
306 | } | ||
286 | } | 307 | } |
287 | 308 | ||
288 | if (verbose >=3) { | 309 | if (verbose >=3) { |
@@ -294,7 +315,7 @@ main (int argc, char **argv) | |||
294 | } | 315 | } |
295 | 316 | ||
296 | /* Check Seconds Behind against threshold */ | 317 | /* Check Seconds Behind against threshold */ |
297 | if ((seconds_behind_field != -1) && (strcmp (row[seconds_behind_field], "NULL") != 0)) { | 318 | if ((seconds_behind_field != -1) && (row[seconds_behind_field] != NULL && strcmp (row[seconds_behind_field], "NULL") != 0)) { |
298 | double value = atof(row[seconds_behind_field]); | 319 | double value = atof(row[seconds_behind_field]); |
299 | int status; | 320 | int status; |
300 | 321 | ||
diff --git a/plugins/check_snmp.c b/plugins/check_snmp.c index 2acada2..56a586a 100644 --- a/plugins/check_snmp.c +++ b/plugins/check_snmp.c | |||
@@ -159,6 +159,7 @@ int perf_labels = 1; | |||
159 | char* ip_version = ""; | 159 | char* ip_version = ""; |
160 | double multiplier = 1.0; | 160 | double multiplier = 1.0; |
161 | char *fmtstr = ""; | 161 | char *fmtstr = ""; |
162 | bool fmtstr_set = false; | ||
162 | char buffer[DEFAULT_BUFFER_SIZE]; | 163 | char buffer[DEFAULT_BUFFER_SIZE]; |
163 | bool ignore_mib_parsing_errors = false; | 164 | bool ignore_mib_parsing_errors = false; |
164 | 165 | ||
@@ -437,7 +438,8 @@ main (int argc, char **argv) | |||
437 | } | 438 | } |
438 | else if (strstr (response, "INTEGER: ")) { | 439 | else if (strstr (response, "INTEGER: ")) { |
439 | show = multiply (strstr (response, "INTEGER: ") + 9); | 440 | show = multiply (strstr (response, "INTEGER: ") + 9); |
440 | if (fmtstr != "") { | 441 | |
442 | if (fmtstr_set) { | ||
441 | conv = fmtstr; | 443 | conv = fmtstr; |
442 | } | 444 | } |
443 | } | 445 | } |
@@ -611,8 +613,9 @@ main (int argc, char **argv) | |||
611 | len = sizeof(perfstr)-strlen(perfstr)-1; | 613 | len = sizeof(perfstr)-strlen(perfstr)-1; |
612 | strncat(perfstr, show, len>ptr-show ? ptr-show : len); | 614 | strncat(perfstr, show, len>ptr-show ? ptr-show : len); |
613 | 615 | ||
614 | if (type) | 616 | if (strcmp(type, "") != 0) { |
615 | strncat(perfstr, type, sizeof(perfstr)-strlen(perfstr)-1); | 617 | strncat(perfstr, type, sizeof(perfstr)-strlen(perfstr)-1); |
618 | } | ||
616 | 619 | ||
617 | if (warning_thresholds) { | 620 | if (warning_thresholds) { |
618 | strncat(perfstr, ";", sizeof(perfstr)-strlen(perfstr)-1); | 621 | strncat(perfstr, ";", sizeof(perfstr)-strlen(perfstr)-1); |
@@ -988,6 +991,7 @@ process_arguments (int argc, char **argv) | |||
988 | case 'f': | 991 | case 'f': |
989 | if (multiplier != 1.0) { | 992 | if (multiplier != 1.0) { |
990 | fmtstr=optarg; | 993 | fmtstr=optarg; |
994 | fmtstr_set = true; | ||
991 | } | 995 | } |
992 | break; | 996 | break; |
993 | case L_IGNORE_MIB_PARSING_ERRORS: | 997 | case L_IGNORE_MIB_PARSING_ERRORS: |
@@ -1204,7 +1208,7 @@ multiply (char *str) | |||
1204 | if(verbose>2) | 1208 | if(verbose>2) |
1205 | printf(" multiply extracted double: %f\n", val); | 1209 | printf(" multiply extracted double: %f\n", val); |
1206 | val *= multiplier; | 1210 | val *= multiplier; |
1207 | if (fmtstr != "") { | 1211 | if (fmtstr_set) { |
1208 | conv = fmtstr; | 1212 | conv = fmtstr; |
1209 | } | 1213 | } |
1210 | if (val == (int)val) { | 1214 | if (val == (int)val) { |
diff --git a/plugins/runcmd.c b/plugins/runcmd.c index c1d675d..102191e 100644 --- a/plugins/runcmd.c +++ b/plugins/runcmd.c | |||
@@ -116,10 +116,6 @@ np_runcmd_open(const char *cmdstring, int *pfd, int *pfderr) | |||
116 | env[0] = strdup("LC_ALL=C"); | 116 | env[0] = strdup("LC_ALL=C"); |
117 | env[1] = '\0'; | 117 | env[1] = '\0'; |
118 | 118 | ||
119 | /* if no command was passed, return with no error */ | ||
120 | if (cmdstring == NULL) | ||
121 | return -1; | ||
122 | |||
123 | /* make copy of command string so strtok() doesn't silently modify it */ | 119 | /* make copy of command string so strtok() doesn't silently modify it */ |
124 | /* (the calling program may want to access it later) */ | 120 | /* (the calling program may want to access it later) */ |
125 | cmdlen = strlen(cmdstring); | 121 | cmdlen = strlen(cmdstring); |
@@ -1,23 +1,24 @@ | |||
1 | # translation of de.po to | 1 | # translation of de.po to |
2 | # German Language Translation File. | 2 | # German Language Translation File. |
3 | # This file is distributed under the same license as the nagios-plugins package. | 3 | # This file is distributed under the same license as the nagios-plugins package. |
4 | # Copyright (C) 2004 Nagios Plugin Development Group. | 4 | # Copyright (C) 2023 Nagios Plugin Development Group. |
5 | # Karl DeBisschop <kdebisschop@users.sourceforge.net>, 2003, 2004. | 5 | # Karl DeBisschop <kdebisschop@users.sourceforge.net>, 2003, 2004. |
6 | # | 6 | # |
7 | # | 7 | # |
8 | msgid "" | 8 | msgid "" |
9 | msgstr "" | 9 | msgstr "" |
10 | "Project-Id-Version: nagiosplug\n" | 10 | "Project-Id-Version: PACKAGE VERSION\n" |
11 | "Report-Msgid-Bugs-To: devel@monitoring-plugins.org\n" | 11 | "Report-Msgid-Bugs-To: devel@monitoring-plugins.org\n" |
12 | "POT-Creation-Date: 2023-09-05 00:31+0200\n" | 12 | "POT-Creation-Date: 2023-09-05 00:31+0200\n" |
13 | "PO-Revision-Date: 2004-12-23 17:46+0100\n" | 13 | "PO-Revision-Date: 2004-12-23 17:46+0100\n" |
14 | "Last-Translator: <>\n" | 14 | "Last-Translator: \n" |
15 | "Language-Team: English <en@li.org>\n" | 15 | "Language-Team: Monitoring Plugin Development Team <devel@monitoring-plugins.org>\n" |
16 | "Language: en\n" | 16 | "Language: de\n" |
17 | "MIME-Version: 1.0\n" | 17 | "MIME-Version: 1.0\n" |
18 | "Content-Type: text/plain; charset=iso-8859-1\n" | 18 | "Content-Type: text/plain; charset=UTF-8\n" |
19 | "Content-Transfer-Encoding: 8bit\n" | 19 | "Content-Transfer-Encoding: 8bit\n" |
20 | "Plural-Forms: nplurals=2; plural=(n > 1);X-Generator: KBabel 1.3.1\n" | 20 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" |
21 | "X-Generator: KBabel 1.3.1\n" | ||
21 | 22 | ||
22 | msgid "Could not parse arguments" | 23 | msgid "Could not parse arguments" |
23 | msgstr "Argumente konnten nicht ausgewertet werden" | 24 | msgstr "Argumente konnten nicht ausgewertet werden" |
@@ -39,7 +40,7 @@ msgstr "" | |||
39 | 40 | ||
40 | #, c-format | 41 | #, c-format |
41 | msgid "SSH WARNING: could not open %s\n" | 42 | msgid "SSH WARNING: could not open %s\n" |
42 | msgstr "SSH WARNING: Konnte %s nicht öffnen\n" | 43 | msgstr "SSH WARNING: Konnte %s nicht öffnen\n" |
43 | 44 | ||
44 | #, c-format | 45 | #, c-format |
45 | msgid "%s: Error parsing output\n" | 46 | msgid "%s: Error parsing output\n" |
@@ -72,13 +73,13 @@ msgstr "" | |||
72 | 73 | ||
73 | #, fuzzy | 74 | #, fuzzy |
74 | msgid "Can not (re)allocate 'commargv' buffer\n" | 75 | msgid "Can not (re)allocate 'commargv' buffer\n" |
75 | msgstr "Konnte·url·nicht·zuweisen\n" | 76 | msgstr "Konnte·url·nicht·zuweisen\n" |
76 | 77 | ||
77 | #, c-format | 78 | #, c-format |
78 | msgid "" | 79 | msgid "" |
79 | "%s: In passive mode, you must provide a service name for each command.\n" | 80 | "%s: In passive mode, you must provide a service name for each command.\n" |
80 | msgstr "" | 81 | msgstr "" |
81 | "%s: Im passive mode muss ein Servicename für jeden Befehl angegeben werden.\n" | 82 | "%s: Im passive mode muss ein Servicename für jeden Befehl angegeben werden.\n" |
82 | 83 | ||
83 | #, fuzzy, c-format | 84 | #, fuzzy, c-format |
84 | msgid "" | 85 | msgid "" |
@@ -91,7 +92,7 @@ msgstr "" | |||
91 | #, fuzzy, c-format | 92 | #, fuzzy, c-format |
92 | msgid "This plugin uses SSH to execute commands on a remote host" | 93 | msgid "This plugin uses SSH to execute commands on a remote host" |
93 | msgstr "" | 94 | msgstr "" |
94 | "Dieses Plugin nutzt SSH um Befehle auf dem entfernten Rechner auszuführen\n" | 95 | "Dieses Plugin nutzt SSH um Befehle auf dem entfernten Rechner auszuführen\n" |
95 | "\n" | 96 | "\n" |
96 | 97 | ||
97 | msgid "tell ssh to use Protocol 1 [optional]" | 98 | msgid "tell ssh to use Protocol 1 [optional]" |
@@ -224,7 +225,7 @@ msgid "Looking for: '%s'\n" | |||
224 | msgstr "" | 225 | msgstr "" |
225 | 226 | ||
226 | msgid "dig returned an error status" | 227 | msgid "dig returned an error status" |
227 | msgstr "dig hat einen Fehler zurückgegeben" | 228 | msgstr "dig hat einen Fehler zurückgegeben" |
228 | 229 | ||
229 | msgid "Server not found in ANSWER SECTION" | 230 | msgid "Server not found in ANSWER SECTION" |
230 | msgstr "Server nicht gefunden in ANSWER SECTION" | 231 | msgstr "Server nicht gefunden in ANSWER SECTION" |
@@ -264,7 +265,7 @@ msgstr "" | |||
264 | 265 | ||
265 | #, fuzzy | 266 | #, fuzzy |
266 | msgid "Machine name to lookup" | 267 | msgid "Machine name to lookup" |
267 | msgstr "zu prüfender Hostname" | 268 | msgstr "zu prüfender Hostname" |
268 | 269 | ||
269 | #, fuzzy | 270 | #, fuzzy |
270 | msgid "Record type to lookup (default: A)" | 271 | msgid "Record type to lookup (default: A)" |
@@ -297,7 +298,7 @@ msgstr "unbekannter unit type: %s\n" | |||
297 | 298 | ||
298 | #, c-format | 299 | #, c-format |
299 | msgid "failed allocating storage for '%s'\n" | 300 | msgid "failed allocating storage for '%s'\n" |
300 | msgstr "konnte keinen Speicher für '%s' reservieren\n" | 301 | msgstr "konnte keinen Speicher für '%s' reservieren\n" |
301 | 302 | ||
302 | #, c-format | 303 | #, c-format |
303 | msgid "UNKNOWN" | 304 | msgid "UNKNOWN" |
@@ -338,7 +339,7 @@ msgstr "" | |||
338 | msgid "" | 339 | msgid "" |
339 | "This plugin checks the amount of used disk space on a mounted file system" | 340 | "This plugin checks the amount of used disk space on a mounted file system" |
340 | msgstr "" | 341 | msgstr "" |
341 | "Dieses Plugin prüft den freien Speicher auf einem gemounteten Filesystem" | 342 | "Dieses Plugin prüft den freien Speicher auf einem gemounteten Filesystem" |
342 | 343 | ||
343 | #, fuzzy | 344 | #, fuzzy |
344 | msgid "" | 345 | msgid "" |
@@ -475,14 +476,14 @@ msgstr "" | |||
475 | 476 | ||
476 | #, fuzzy | 477 | #, fuzzy |
477 | msgid "nslookup returned an error status" | 478 | msgid "nslookup returned an error status" |
478 | msgstr "nslookup hat einen Fehler zurückgegeben" | 479 | msgstr "nslookup hat einen Fehler zurückgegeben" |
479 | 480 | ||
480 | msgid "Warning plugin error" | 481 | msgid "Warning plugin error" |
481 | msgstr "Warnung Plugin Fehler" | 482 | msgstr "Warnung Plugin Fehler" |
482 | 483 | ||
483 | #, fuzzy, c-format | 484 | #, fuzzy, c-format |
484 | msgid "DNS CRITICAL - '%s' returned empty server string\n" | 485 | msgid "DNS CRITICAL - '%s' returned empty server string\n" |
485 | msgstr "DNS CRITICAL - '%s' hat einen leeren Hostnamen zurückgegeben\n" | 486 | msgstr "DNS CRITICAL - '%s' hat einen leeren Hostnamen zurückgegeben\n" |
486 | 487 | ||
487 | #, fuzzy, c-format | 488 | #, fuzzy, c-format |
488 | msgid "DNS CRITICAL - No response from DNS %s\n" | 489 | msgid "DNS CRITICAL - No response from DNS %s\n" |
@@ -490,14 +491,14 @@ msgstr "Keine Antwort von DNS %s\n" | |||
490 | 491 | ||
491 | #, c-format | 492 | #, c-format |
492 | msgid "DNS CRITICAL - '%s' returned empty host name string\n" | 493 | msgid "DNS CRITICAL - '%s' returned empty host name string\n" |
493 | msgstr "DNS CRITICAL - '%s' hat einen leeren Hostnamen zurückgegeben\n" | 494 | msgstr "DNS CRITICAL - '%s' hat einen leeren Hostnamen zurückgegeben\n" |
494 | 495 | ||
495 | msgid "Non-authoritative answer:" | 496 | msgid "Non-authoritative answer:" |
496 | msgstr "" | 497 | msgstr "" |
497 | 498 | ||
498 | #, fuzzy, c-format | 499 | #, fuzzy, c-format |
499 | msgid "Domain '%s' was not found by the server\n" | 500 | msgid "Domain '%s' was not found by the server\n" |
500 | msgstr "Domäne %s wurde vom Server nicht gefunden\n" | 501 | msgstr "Domäne %s wurde vom Server nicht gefunden\n" |
501 | 502 | ||
502 | #, fuzzy, c-format | 503 | #, fuzzy, c-format |
503 | msgid "DNS CRITICAL - '%s' msg parsing exited with no address\n" | 504 | msgid "DNS CRITICAL - '%s' msg parsing exited with no address\n" |
@@ -509,11 +510,11 @@ msgstr "Erwartet: %s aber: %s erhalten" | |||
509 | 510 | ||
510 | #, fuzzy, c-format | 511 | #, fuzzy, c-format |
511 | msgid "Domain '%s' was found by the server: '%s'\n" | 512 | msgid "Domain '%s' was found by the server: '%s'\n" |
512 | msgstr "Domäne %s wurde vom Server nicht gefunden\n" | 513 | msgstr "Domäne %s wurde vom Server nicht gefunden\n" |
513 | 514 | ||
514 | #, c-format | 515 | #, c-format |
515 | msgid "server %s is not authoritative for %s" | 516 | msgid "server %s is not authoritative for %s" |
516 | msgstr "Server %s ist nicht autoritativ für %s" | 517 | msgstr "Server %s ist nicht autoritativ für %s" |
517 | 518 | ||
518 | #, c-format | 519 | #, c-format |
519 | msgid "OK" | 520 | msgid "OK" |
@@ -531,7 +532,7 @@ msgstr[1] "%.3f Sekunden Antwortzeit " | |||
531 | 532 | ||
532 | #, fuzzy, c-format | 533 | #, fuzzy, c-format |
533 | msgid ". %s returns %s" | 534 | msgid ". %s returns %s" |
534 | msgstr "%s hat %s zurückgegeben" | 535 | msgstr "%s hat %s zurückgegeben" |
535 | 536 | ||
536 | #, c-format | 537 | #, c-format |
537 | msgid "DNS WARNING - %s\n" | 538 | msgid "DNS WARNING - %s\n" |
@@ -563,7 +564,7 @@ msgstr "Keine Antwort von DNS %s\n" | |||
563 | 564 | ||
564 | #, c-format | 565 | #, c-format |
565 | msgid "DNS %s has no records\n" | 566 | msgid "DNS %s has no records\n" |
566 | msgstr "Nameserver %s hat keine Datensätze\n" | 567 | msgstr "Nameserver %s hat keine Datensätze\n" |
567 | 568 | ||
568 | #, c-format | 569 | #, c-format |
569 | msgid "Connection to DNS %s was refused\n" | 570 | msgid "Connection to DNS %s was refused\n" |
@@ -582,10 +583,10 @@ msgstr "Netzwerk nicht erreichbar\n" | |||
582 | 583 | ||
583 | #, c-format | 584 | #, c-format |
584 | msgid "DNS failure for %s\n" | 585 | msgid "DNS failure for %s\n" |
585 | msgstr "DNS Fehler für %s\n" | 586 | msgstr "DNS Fehler für %s\n" |
586 | 587 | ||
587 | msgid "Input buffer overflow\n" | 588 | msgid "Input buffer overflow\n" |
588 | msgstr "Eingabe-Pufferüberlauf\n" | 589 | msgstr "Eingabe-Pufferüberlauf\n" |
589 | 590 | ||
590 | msgid "" | 591 | msgid "" |
591 | "This plugin uses the nslookup program to obtain the IP address for the given " | 592 | "This plugin uses the nslookup program to obtain the IP address for the given " |
@@ -642,7 +643,7 @@ msgid "returned. Default off" | |||
642 | msgstr "" | 643 | msgstr "" |
643 | 644 | ||
644 | msgid "Arguments to check_dummy must be an integer" | 645 | msgid "Arguments to check_dummy must be an integer" |
645 | msgstr "Argument für check_dummy muss ein Integer sein" | 646 | msgstr "Argument für check_dummy muss ein Integer sein" |
646 | 647 | ||
647 | #, c-format | 648 | #, c-format |
648 | msgid "Status %d is not a supported error state\n" | 649 | msgid "Status %d is not a supported error state\n" |
@@ -657,11 +658,11 @@ msgstr "" | |||
657 | 658 | ||
658 | #, c-format | 659 | #, c-format |
659 | msgid "Could not open pipe: %s\n" | 660 | msgid "Could not open pipe: %s\n" |
660 | msgstr "Pipe: %s konnte nicht geöffnet werden\n" | 661 | msgstr "Pipe: %s konnte nicht geöffnet werden\n" |
661 | 662 | ||
662 | #, c-format | 663 | #, c-format |
663 | msgid "Could not open stderr for %s\n" | 664 | msgid "Could not open stderr for %s\n" |
664 | msgstr "Konnte stderr nicht öffnen für: %s\n" | 665 | msgstr "Konnte stderr nicht öffnen für: %s\n" |
665 | 666 | ||
666 | #, fuzzy | 667 | #, fuzzy |
667 | msgid "FPING UNKNOWN - IP address not found\n" | 668 | msgid "FPING UNKNOWN - IP address not found\n" |
@@ -703,13 +704,13 @@ msgid "FPING %s - %s (loss=%.0f%% )|%s\n" | |||
703 | msgstr "FPING %s - %s (verloren=%.0f%% )|%s\n" | 704 | msgstr "FPING %s - %s (verloren=%.0f%% )|%s\n" |
704 | 705 | ||
705 | msgid "Invalid hostname/address" | 706 | msgid "Invalid hostname/address" |
706 | msgstr "Ungültige(r) Hostname/Adresse" | 707 | msgstr "Ungültige(r) Hostname/Adresse" |
707 | 708 | ||
708 | msgid "IPv6 support not available\n" | 709 | msgid "IPv6 support not available\n" |
709 | msgstr "" | 710 | msgstr "" |
710 | 711 | ||
711 | msgid "Packet size must be a positive integer" | 712 | msgid "Packet size must be a positive integer" |
712 | msgstr "Paketgröße muss ein positiver Integer sein" | 713 | msgstr "Paketgröße muss ein positiver Integer sein" |
713 | 714 | ||
714 | msgid "Packet count must be a positive integer" | 715 | msgid "Packet count must be a positive integer" |
715 | msgstr "Paketanzahl muss ein positiver Integer sein" | 716 | msgstr "Paketanzahl muss ein positiver Integer sein" |
@@ -727,11 +728,11 @@ msgstr "" | |||
727 | 728 | ||
728 | #, c-format | 729 | #, c-format |
729 | msgid "%s: Only one threshold may be packet loss (%s)\n" | 730 | msgid "%s: Only one threshold may be packet loss (%s)\n" |
730 | msgstr "%s: Nur ein Wert darf für packet loss angegeben werden (%s)\n" | 731 | msgstr "%s: Nur ein Wert darf für packet loss angegeben werden (%s)\n" |
731 | 732 | ||
732 | #, c-format | 733 | #, c-format |
733 | msgid "%s: Only one threshold must be packet loss (%s)\n" | 734 | msgid "%s: Only one threshold must be packet loss (%s)\n" |
734 | msgstr "%s: Nur ein Wert darf für packet loss angegeben werden (%s)\n" | 735 | msgstr "%s: Nur ein Wert darf für packet loss angegeben werden (%s)\n" |
735 | 736 | ||
736 | msgid "" | 737 | msgid "" |
737 | "This plugin will use the fping command to ping the specified host for a fast " | 738 | "This plugin will use the fping command to ping the specified host for a fast " |
@@ -849,13 +850,13 @@ msgid "Peripheral Error" | |||
849 | msgstr "Peripheriefehler" | 850 | msgstr "Peripheriefehler" |
850 | 851 | ||
851 | msgid "Intervention Required" | 852 | msgid "Intervention Required" |
852 | msgstr "Eingriff benötigt" | 853 | msgstr "Eingriff benötigt" |
853 | 854 | ||
854 | msgid "Toner Low" | 855 | msgid "Toner Low" |
855 | msgstr "Wenig Toner" | 856 | msgstr "Wenig Toner" |
856 | 857 | ||
857 | msgid "Insufficient Memory" | 858 | msgid "Insufficient Memory" |
858 | msgstr "Nicht genügend Speicher" | 859 | msgstr "Nicht genügend Speicher" |
859 | 860 | ||
860 | msgid "A Door is Open" | 861 | msgid "A Door is Open" |
861 | msgstr "Eine Abdeckung ist offen" | 862 | msgstr "Eine Abdeckung ist offen" |
@@ -882,7 +883,7 @@ msgid "This plugin tests the STATUS of an HP printer with a JetDirect card." | |||
882 | msgstr "" | 883 | msgstr "" |
883 | "Dieses Plugin testet den STATUS eines HP Druckers mit einer JetDirect " | 884 | "Dieses Plugin testet den STATUS eines HP Druckers mit einer JetDirect " |
884 | "Karte.\n" | 885 | "Karte.\n" |
885 | "Net-snmp muss auf dem ausführenden Computer installiert sein.\n" | 886 | "Net-snmp muss auf dem ausführenden Computer installiert sein.\n" |
886 | "\n" | 887 | "\n" |
887 | 888 | ||
888 | #, fuzzy | 889 | #, fuzzy |
@@ -890,7 +891,7 @@ msgid "Net-snmp must be installed on the computer running the plugin." | |||
890 | msgstr "" | 891 | msgstr "" |
891 | "Dieses Plugin testet den STATUS eines HP Druckers mit einer JetDirect " | 892 | "Dieses Plugin testet den STATUS eines HP Druckers mit einer JetDirect " |
892 | "Karte.\n" | 893 | "Karte.\n" |
893 | "Net-snmp muss auf dem ausführenden Computer installiert sein.\n" | 894 | "Net-snmp muss auf dem ausführenden Computer installiert sein.\n" |
894 | "\n" | 895 | "\n" |
895 | 896 | ||
896 | msgid "The SNMP community name " | 897 | msgid "The SNMP community name " |
@@ -910,7 +911,7 @@ msgid "file does not exist or is not readable" | |||
910 | msgstr "" | 911 | msgstr "" |
911 | 912 | ||
912 | msgid "Invalid certificate expiration period" | 913 | msgid "Invalid certificate expiration period" |
913 | msgstr "Ungültiger Zertifikatsablauftermin" | 914 | msgstr "Ungültiger Zertifikatsablauftermin" |
914 | 915 | ||
915 | msgid "" | 916 | msgid "" |
916 | "Invalid option - Valid SSL/TLS versions: 2, 3, 1, 1.1, 1.2 (with optional " | 917 | "Invalid option - Valid SSL/TLS versions: 2, 3, 1, 1.1, 1.2 (with optional " |
@@ -919,7 +920,7 @@ msgstr "" | |||
919 | 920 | ||
920 | #, fuzzy | 921 | #, fuzzy |
921 | msgid "Invalid option - SSL is not available" | 922 | msgid "Invalid option - SSL is not available" |
922 | msgstr "Ungültige Option - SSL ist nicht verfügbar\n" | 923 | msgstr "Ungültige Option - SSL ist nicht verfügbar\n" |
923 | 924 | ||
924 | msgid "Invalid max_redirs count" | 925 | msgid "Invalid max_redirs count" |
925 | msgstr "" | 926 | msgstr "" |
@@ -932,14 +933,14 @@ msgid "option f:%d \n" | |||
932 | msgstr "Option f:%d \n" | 933 | msgstr "Option f:%d \n" |
933 | 934 | ||
934 | msgid "Invalid port number" | 935 | msgid "Invalid port number" |
935 | msgstr "Ungültige Portnummer" | 936 | msgstr "Ungültige Portnummer" |
936 | 937 | ||
937 | #, c-format | 938 | #, c-format |
938 | msgid "Could Not Compile Regular Expression: %s" | 939 | msgid "Could Not Compile Regular Expression: %s" |
939 | msgstr "" | 940 | msgstr "" |
940 | 941 | ||
941 | msgid "IPv6 support not available" | 942 | msgid "IPv6 support not available" |
942 | msgstr "IPv6 Unterstützung nicht vorhanden" | 943 | msgstr "IPv6 Unterstützung nicht vorhanden" |
943 | 944 | ||
944 | msgid "You must specify a server address or host name" | 945 | msgid "You must specify a server address or host name" |
945 | msgstr "Hostname oder Serveradresse muss angegeben werden" | 946 | msgstr "Hostname oder Serveradresse muss angegeben werden" |
@@ -950,7 +951,7 @@ msgstr "" | |||
950 | 951 | ||
951 | #, fuzzy | 952 | #, fuzzy |
952 | msgid "HTTP UNKNOWN - Memory allocation error\n" | 953 | msgid "HTTP UNKNOWN - Memory allocation error\n" |
953 | msgstr "HTTP UNKNOWN - Konnte·url·nicht·zuweisen\n" | 954 | msgstr "HTTP UNKNOWN - Konnte·url·nicht·zuweisen\n" |
954 | 955 | ||
955 | #, fuzzy, c-format | 956 | #, fuzzy, c-format |
956 | msgid "%sServer date unknown, " | 957 | msgid "%sServer date unknown, " |
@@ -958,7 +959,7 @@ msgstr "HTTP UNKNOWN - Serverdatum unbekannt\n" | |||
958 | 959 | ||
959 | #, fuzzy, c-format | 960 | #, fuzzy, c-format |
960 | msgid "%sDocument modification date unknown, " | 961 | msgid "%sDocument modification date unknown, " |
961 | msgstr "HTTP CRITICAL - Datum der letzten Änderung unbekannt\n" | 962 | msgstr "HTTP CRITICAL - Datum der letzten Änderung unbekannt\n" |
962 | 963 | ||
963 | #, fuzzy, c-format | 964 | #, fuzzy, c-format |
964 | msgid "%sServer date \"%100s\" unparsable, " | 965 | msgid "%sServer date \"%100s\" unparsable, " |
@@ -975,18 +976,18 @@ msgstr "HTTP CRITICAL - Dokumentendatum ist %d Sekunden in der Zukunft\n" | |||
975 | 976 | ||
976 | #, fuzzy, c-format | 977 | #, fuzzy, c-format |
977 | msgid "%sLast modified %.1f days ago, " | 978 | msgid "%sLast modified %.1f days ago, " |
978 | msgstr "HTTP CRITICAL - Letzte Änderung vor %.1f Tagen\n" | 979 | msgstr "HTTP CRITICAL - Letzte Änderung vor %.1f Tagen\n" |
979 | 980 | ||
980 | #, fuzzy, c-format | 981 | #, fuzzy, c-format |
981 | msgid "%sLast modified %d:%02d:%02d ago, " | 982 | msgid "%sLast modified %d:%02d:%02d ago, " |
982 | msgstr "HTTP CRITICAL - Letzte Änderung vor %d:%02d:%02d \n" | 983 | msgstr "HTTP CRITICAL - Letzte Änderung vor %d:%02d:%02d \n" |
983 | 984 | ||
984 | msgid "HTTP CRITICAL - Unable to open TCP socket\n" | 985 | msgid "HTTP CRITICAL - Unable to open TCP socket\n" |
985 | msgstr "HTTP CRITICAL - Konnte TCP socket nicht öffnen\n" | 986 | msgstr "HTTP CRITICAL - Konnte TCP socket nicht öffnen\n" |
986 | 987 | ||
987 | #, fuzzy | 988 | #, fuzzy |
988 | msgid "HTTP UNKNOWN - Could not allocate memory for full_page\n" | 989 | msgid "HTTP UNKNOWN - Could not allocate memory for full_page\n" |
989 | msgstr "HTTP UNKNOWN - Konnte·url·nicht·zuweisen\n" | 990 | msgstr "HTTP UNKNOWN - Konnte·url·nicht·zuweisen\n" |
990 | 991 | ||
991 | msgid "HTTP CRITICAL - Error on receive\n" | 992 | msgid "HTTP CRITICAL - Error on receive\n" |
992 | msgstr "HTTP CRITICAL - Fehler beim Empfangen\n" | 993 | msgstr "HTTP CRITICAL - Fehler beim Empfangen\n" |
@@ -997,11 +998,11 @@ msgstr "HTTP CRITICAL - Keine Daten empfangen\n" | |||
997 | 998 | ||
998 | #, fuzzy, c-format | 999 | #, fuzzy, c-format |
999 | msgid "Invalid HTTP response received from host: %s\n" | 1000 | msgid "Invalid HTTP response received from host: %s\n" |
1000 | msgstr "Ungültige HTTP Antwort von Host empfangen\n" | 1001 | msgstr "Ungültige HTTP Antwort von Host empfangen\n" |
1001 | 1002 | ||
1002 | #, fuzzy, c-format | 1003 | #, fuzzy, c-format |
1003 | msgid "Invalid HTTP response received from host on port %d: %s\n" | 1004 | msgid "Invalid HTTP response received from host on port %d: %s\n" |
1004 | msgstr "Ungültige HTTP Antwort von Host erhalten auf Port %d\n" | 1005 | msgstr "Ungültige HTTP Antwort von Host erhalten auf Port %d\n" |
1005 | 1006 | ||
1006 | #, c-format | 1007 | #, c-format |
1007 | msgid "" | 1008 | msgid "" |
@@ -1015,11 +1016,11 @@ msgstr "HTTP OK: Statusausgabe passt auf \"%s\"\n" | |||
1015 | 1016 | ||
1016 | #, c-format | 1017 | #, c-format |
1017 | msgid "HTTP CRITICAL: Invalid Status Line (%s)\n" | 1018 | msgid "HTTP CRITICAL: Invalid Status Line (%s)\n" |
1018 | msgstr "HTTP CRITICAL: Ungültige Statusmeldung (%s)\n" | 1019 | msgstr "HTTP CRITICAL: Ungültige Statusmeldung (%s)\n" |
1019 | 1020 | ||
1020 | #, c-format | 1021 | #, c-format |
1021 | msgid "HTTP CRITICAL: Invalid Status (%s)\n" | 1022 | msgid "HTTP CRITICAL: Invalid Status (%s)\n" |
1022 | msgstr "HTTP CRITICAL: Ungültiger Status (%s)\n" | 1023 | msgstr "HTTP CRITICAL: Ungültiger Status (%s)\n" |
1023 | 1024 | ||
1024 | #, c-format | 1025 | #, c-format |
1025 | msgid "%s - " | 1026 | msgid "%s - " |
@@ -1047,11 +1048,11 @@ msgstr "HTTP CRITICAL - Fehler: %s\n" | |||
1047 | 1048 | ||
1048 | #, fuzzy, c-format | 1049 | #, fuzzy, c-format |
1049 | msgid "%spage size %d too large, " | 1050 | msgid "%spage size %d too large, " |
1050 | msgstr "HTTP WARNING: Seitengröße %d zu klein%s|%s\n" | 1051 | msgstr "HTTP WARNING: Seitengröße %d zu klein%s|%s\n" |
1051 | 1052 | ||
1052 | #, fuzzy, c-format | 1053 | #, fuzzy, c-format |
1053 | msgid "%spage size %d too small, " | 1054 | msgid "%spage size %d too small, " |
1054 | msgstr "HTTP WARNING: Seitengröße %d zu klein%s|%s\n" | 1055 | msgstr "HTTP WARNING: Seitengröße %d zu klein%s|%s\n" |
1055 | 1056 | ||
1056 | #, fuzzy, c-format | 1057 | #, fuzzy, c-format |
1057 | msgid "%s - %d bytes in %.3f second response time %s|%s %s %s %s %s %s %s" | 1058 | msgid "%s - %d bytes in %.3f second response time %s|%s %s %s %s %s %s %s" |
@@ -1066,7 +1067,7 @@ msgstr "HTTP UNKNOWN - Konnte addr nicht zuweisen\n" | |||
1066 | 1067 | ||
1067 | #, fuzzy | 1068 | #, fuzzy |
1068 | msgid "HTTP UNKNOWN - Could not allocate URL\n" | 1069 | msgid "HTTP UNKNOWN - Could not allocate URL\n" |
1069 | msgstr "HTTP UNKNOWN - Konnte·url·nicht·zuweisen\n" | 1070 | msgstr "HTTP UNKNOWN - Konnte·url·nicht·zuweisen\n" |
1070 | 1071 | ||
1071 | #, c-format | 1072 | #, c-format |
1072 | msgid "HTTP UNKNOWN - Could not find redirect location - %s%s\n" | 1073 | msgid "HTTP UNKNOWN - Could not find redirect location - %s%s\n" |
@@ -1110,7 +1111,7 @@ msgstr "" | |||
1110 | 1111 | ||
1111 | #, fuzzy | 1112 | #, fuzzy |
1112 | msgid "certificate expiration times." | 1113 | msgid "certificate expiration times." |
1113 | msgstr "Clientzertifikat benötigt\n" | 1114 | msgstr "Clientzertifikat benötigt\n" |
1114 | 1115 | ||
1115 | #, c-format | 1116 | #, c-format |
1116 | msgid "In the first form, make an HTTP request." | 1117 | msgid "In the first form, make an HTTP request." |
@@ -1264,7 +1265,7 @@ msgstr "" | |||
1264 | 1265 | ||
1265 | #, fuzzy | 1266 | #, fuzzy |
1266 | msgid "Maximal number of redirects (default: " | 1267 | msgid "Maximal number of redirects (default: " |
1267 | msgstr "Ungültige Portnummer" | 1268 | msgstr "Ungültige Portnummer" |
1268 | 1269 | ||
1269 | msgid "Minimum page size required (bytes) : Maximum page size required (bytes)" | 1270 | msgid "Minimum page size required (bytes) : Maximum page size required (bytes)" |
1270 | msgstr "" | 1271 | msgstr "" |
@@ -1346,7 +1347,7 @@ msgstr "" | |||
1346 | 1347 | ||
1347 | #, fuzzy | 1348 | #, fuzzy |
1348 | msgid "the certificate is expired." | 1349 | msgid "the certificate is expired." |
1349 | msgstr "Clientzertifikat benötigt\n" | 1350 | msgstr "Clientzertifikat benötigt\n" |
1350 | 1351 | ||
1351 | msgid "" | 1352 | msgid "" |
1352 | "When the certificate of 'www.verisign.com' is valid for more than 30 days," | 1353 | "When the certificate of 'www.verisign.com' is valid for more than 30 days," |
@@ -1388,7 +1389,7 @@ msgstr "" | |||
1388 | 1389 | ||
1389 | #, fuzzy, c-format | 1390 | #, fuzzy, c-format |
1390 | msgid "Could not init TLS at port %i!\n" | 1391 | msgid "Could not init TLS at port %i!\n" |
1391 | msgstr "Konnte stderr nicht öffnen für: %s\n" | 1392 | msgstr "Konnte stderr nicht öffnen für: %s\n" |
1392 | 1393 | ||
1393 | #, c-format | 1394 | #, c-format |
1394 | msgid "TLS not supported by the libraries!\n" | 1395 | msgid "TLS not supported by the libraries!\n" |
@@ -1396,7 +1397,7 @@ msgstr "" | |||
1396 | 1397 | ||
1397 | #, fuzzy, c-format | 1398 | #, fuzzy, c-format |
1398 | msgid "Could not init startTLS at port %i!\n" | 1399 | msgid "Could not init startTLS at port %i!\n" |
1399 | msgstr "Konnte stderr nicht öffnen für: %s\n" | 1400 | msgstr "Konnte stderr nicht öffnen für: %s\n" |
1400 | 1401 | ||
1401 | #, c-format | 1402 | #, c-format |
1402 | msgid "startTLS not supported by the library, needs LDAPv3!\n" | 1403 | msgid "startTLS not supported by the library, needs LDAPv3!\n" |
@@ -1599,7 +1600,7 @@ msgstr "" | |||
1599 | 1600 | ||
1600 | #, fuzzy | 1601 | #, fuzzy |
1601 | msgid "two variables recorded in an MRTG log file." | 1602 | msgid "two variables recorded in an MRTG log file." |
1602 | msgstr "Konnte MRTG Logfile nicht öffnen" | 1603 | msgstr "Konnte MRTG Logfile nicht öffnen" |
1603 | 1604 | ||
1604 | msgid "The MRTG log file containing the data you want to monitor" | 1605 | msgid "The MRTG log file containing the data you want to monitor" |
1605 | msgstr "" | 1606 | msgstr "" |
@@ -1685,7 +1686,7 @@ msgid "" | |||
1685 | msgstr "" | 1686 | msgstr "" |
1686 | 1687 | ||
1687 | msgid "Unable to open MRTG log file" | 1688 | msgid "Unable to open MRTG log file" |
1688 | msgstr "Konnte MRTG Logfile nicht öffnen" | 1689 | msgstr "Konnte MRTG Logfile nicht öffnen" |
1689 | 1690 | ||
1690 | msgid "Unable to process MRTG log file" | 1691 | msgid "Unable to process MRTG log file" |
1691 | msgstr "" | 1692 | msgstr "" |
@@ -1902,7 +1903,7 @@ msgstr "%s: Hostname muss angegeben werden\n" | |||
1902 | msgid "" | 1903 | msgid "" |
1903 | "This plugin checks the status of the Nagios process on the local machine" | 1904 | "This plugin checks the status of the Nagios process on the local machine" |
1904 | msgstr "" | 1905 | msgstr "" |
1905 | "Dieses Plugin prüft den freien Speicher auf einem gemounteten Filesystem\n" | 1906 | "Dieses Plugin prüft den freien Speicher auf einem gemounteten Filesystem\n" |
1906 | "und erzeugt einen Alarm wenn einer der angegebenen Schwellwerte " | 1907 | "und erzeugt einen Alarm wenn einer der angegebenen Schwellwerte " |
1907 | "unterschritten wird.\n" | 1908 | "unterschritten wird.\n" |
1908 | "\n" | 1909 | "\n" |
@@ -2024,7 +2025,7 @@ msgstr "" | |||
2024 | 2025 | ||
2025 | #, fuzzy | 2026 | #, fuzzy |
2026 | msgid "Optional port number (default: " | 2027 | msgid "Optional port number (default: " |
2027 | msgstr "Ungültige Portnummer" | 2028 | msgstr "Ungültige Portnummer" |
2028 | 2029 | ||
2029 | msgid "Password needed for the request" | 2030 | msgid "Password needed for the request" |
2030 | msgstr "" | 2031 | msgstr "" |
@@ -2339,7 +2340,7 @@ msgstr "" | |||
2339 | #, fuzzy | 2340 | #, fuzzy |
2340 | msgid "This plugin checks the clock offset between the local host and a" | 2341 | msgid "This plugin checks the clock offset between the local host and a" |
2341 | msgstr "" | 2342 | msgstr "" |
2342 | "Dieses Plugin prüft den freien Speicher auf einem gemounteten Filesystem\n" | 2343 | "Dieses Plugin prüft den freien Speicher auf einem gemounteten Filesystem\n" |
2343 | "und erzeugt einen Alarm wenn einer der angegebenen Schwellwerte " | 2344 | "und erzeugt einen Alarm wenn einer der angegebenen Schwellwerte " |
2344 | "unterschritten wird.\n" | 2345 | "unterschritten wird.\n" |
2345 | "\n" | 2346 | "\n" |
@@ -2967,11 +2968,11 @@ msgstr "" | |||
2967 | 2968 | ||
2968 | #, fuzzy, c-format | 2969 | #, fuzzy, c-format |
2969 | msgid "%s returned %f" | 2970 | msgid "%s returned %f" |
2970 | msgstr "%s hat %s zurückgegeben" | 2971 | msgstr "%s hat %s zurückgegeben" |
2971 | 2972 | ||
2972 | #, fuzzy, c-format | 2973 | #, fuzzy, c-format |
2973 | msgid "'%s' returned %f" | 2974 | msgid "'%s' returned %f" |
2974 | msgstr "%s hat %s zurückgegeben" | 2975 | msgstr "%s hat %s zurückgegeben" |
2975 | 2976 | ||
2976 | msgid "CRITICAL - Could not interpret output from ping command\n" | 2977 | msgid "CRITICAL - Could not interpret output from ping command\n" |
2977 | msgstr "" | 2978 | msgstr "" |
@@ -3159,7 +3160,7 @@ msgstr "" | |||
3159 | 3160 | ||
3160 | #, fuzzy | 3161 | #, fuzzy |
3161 | msgid "Parent Process ID must be an integer!" | 3162 | msgid "Parent Process ID must be an integer!" |
3162 | msgstr "Argument für check_dummy muss ein Integer sein" | 3163 | msgstr "Argument für check_dummy muss ein Integer sein" |
3163 | 3164 | ||
3164 | #, c-format | 3165 | #, c-format |
3165 | msgid "%s%sSTATE = %s" | 3166 | msgid "%s%sSTATE = %s" |
@@ -3333,7 +3334,7 @@ msgstr "Kein Papier" | |||
3333 | 3334 | ||
3334 | #, fuzzy | 3335 | #, fuzzy |
3335 | msgid "Invalid NAS-Identifier\n" | 3336 | msgid "Invalid NAS-Identifier\n" |
3336 | msgstr "Ungültige(r) Hostname/Adresse" | 3337 | msgstr "Ungültige(r) Hostname/Adresse" |
3337 | 3338 | ||
3338 | #, c-format | 3339 | #, c-format |
3339 | msgid "gethostname() failed!\n" | 3340 | msgid "gethostname() failed!\n" |
@@ -3341,7 +3342,7 @@ msgstr "" | |||
3341 | 3342 | ||
3342 | #, fuzzy | 3343 | #, fuzzy |
3343 | msgid "Invalid NAS-IP-Address\n" | 3344 | msgid "Invalid NAS-IP-Address\n" |
3344 | msgstr "Ungültige(r) Hostname/Adresse" | 3345 | msgstr "Ungültige(r) Hostname/Adresse" |
3345 | 3346 | ||
3346 | msgid "Timeout\n" | 3347 | msgid "Timeout\n" |
3347 | msgstr "" | 3348 | msgstr "" |
@@ -3443,7 +3444,7 @@ msgstr "" | |||
3443 | 3444 | ||
3444 | #, fuzzy | 3445 | #, fuzzy |
3445 | msgid "Invalid REAL response received from host" | 3446 | msgid "Invalid REAL response received from host" |
3446 | msgstr "Ungültige HTTP Antwort von Host empfangen\n" | 3447 | msgstr "Ungültige HTTP Antwort von Host empfangen\n" |
3447 | 3448 | ||
3448 | #, c-format | 3449 | #, c-format |
3449 | msgid "Invalid REAL response received from host on port %d\n" | 3450 | msgid "Invalid REAL response received from host on port %d\n" |
@@ -3530,11 +3531,11 @@ msgstr "" | |||
3530 | 3531 | ||
3531 | #, fuzzy, c-format | 3532 | #, fuzzy, c-format |
3532 | msgid "Invalid SMTP response received from host: %s\n" | 3533 | msgid "Invalid SMTP response received from host: %s\n" |
3533 | msgstr "Ungültige HTTP Antwort von Host empfangen\n" | 3534 | msgstr "Ungültige HTTP Antwort von Host empfangen\n" |
3534 | 3535 | ||
3535 | #, fuzzy, c-format | 3536 | #, fuzzy, c-format |
3536 | msgid "Invalid SMTP response received from host on port %d: %s\n" | 3537 | msgid "Invalid SMTP response received from host on port %d: %s\n" |
3537 | msgstr "Ungültige HTTP Antwort von Host erhalten auf Port %d\n" | 3538 | msgstr "Ungültige HTTP Antwort von Host erhalten auf Port %d\n" |
3538 | 3539 | ||
3539 | #, c-format | 3540 | #, c-format |
3540 | msgid "Could Not Compile Regular Expression" | 3541 | msgid "Could Not Compile Regular Expression" |
@@ -3560,7 +3561,7 @@ msgstr "" | |||
3560 | 3561 | ||
3561 | #, fuzzy | 3562 | #, fuzzy |
3562 | msgid "recv() failed after AUTH LOGIN, " | 3563 | msgid "recv() failed after AUTH LOGIN, " |
3563 | msgstr "Ungültige HTTP Antwort von Host empfangen\n" | 3564 | msgstr "Ungültige HTTP Antwort von Host empfangen\n" |
3564 | 3565 | ||
3565 | #, fuzzy, c-format | 3566 | #, fuzzy, c-format |
3566 | msgid "received %s\n" | 3567 | msgid "received %s\n" |
@@ -3568,21 +3569,21 @@ msgstr "Keine Daten empfangen %s\n" | |||
3568 | 3569 | ||
3569 | #, fuzzy | 3570 | #, fuzzy |
3570 | msgid "invalid response received after AUTH LOGIN, " | 3571 | msgid "invalid response received after AUTH LOGIN, " |
3571 | msgstr "Ungültige HTTP Antwort von Host empfangen\n" | 3572 | msgstr "Ungültige HTTP Antwort von Host empfangen\n" |
3572 | 3573 | ||
3573 | msgid "recv() failed after sending authuser, " | 3574 | msgid "recv() failed after sending authuser, " |
3574 | msgstr "" | 3575 | msgstr "" |
3575 | 3576 | ||
3576 | #, fuzzy | 3577 | #, fuzzy |
3577 | msgid "invalid response received after authuser, " | 3578 | msgid "invalid response received after authuser, " |
3578 | msgstr "Ungültige HTTP Antwort von Host empfangen\n" | 3579 | msgstr "Ungültige HTTP Antwort von Host empfangen\n" |
3579 | 3580 | ||
3580 | msgid "recv() failed after sending authpass, " | 3581 | msgid "recv() failed after sending authpass, " |
3581 | msgstr "" | 3582 | msgstr "" |
3582 | 3583 | ||
3583 | #, fuzzy | 3584 | #, fuzzy |
3584 | msgid "invalid response received after authpass, " | 3585 | msgid "invalid response received after authpass, " |
3585 | msgstr "Ungültige HTTP Antwort von Host empfangen\n" | 3586 | msgstr "Ungültige HTTP Antwort von Host empfangen\n" |
3586 | 3587 | ||
3587 | msgid "only authtype LOGIN is supported, " | 3588 | msgid "only authtype LOGIN is supported, " |
3588 | msgstr "" | 3589 | msgstr "" |
@@ -3615,7 +3616,7 @@ msgstr "" | |||
3615 | 3616 | ||
3616 | #, fuzzy, c-format | 3617 | #, fuzzy, c-format |
3617 | msgid "recv() failed after QUIT." | 3618 | msgid "recv() failed after QUIT." |
3618 | msgstr "Ungültige HTTP Antwort von Host empfangen\n" | 3619 | msgstr "Ungültige HTTP Antwort von Host empfangen\n" |
3619 | 3620 | ||
3620 | #, c-format | 3621 | #, c-format |
3621 | msgid "Connection reset by peer." | 3622 | msgid "Connection reset by peer." |
@@ -3642,21 +3643,21 @@ msgid "FQDN used for HELO" | |||
3642 | msgstr "" | 3643 | msgstr "" |
3643 | 3644 | ||
3644 | msgid "Use PROXY protocol prefix for the connection." | 3645 | msgid "Use PROXY protocol prefix for the connection." |
3645 | msgstr "Benutze PROXY-Protokoll-Präfix für die Verbindung." | 3646 | msgstr "Benutze PROXY-Protokoll-Präfix für die Verbindung." |
3646 | 3647 | ||
3647 | msgid "Minimum number of days a certificate has to be valid." | 3648 | msgid "Minimum number of days a certificate has to be valid." |
3648 | msgstr "" | 3649 | msgstr "" |
3649 | 3650 | ||
3650 | #, fuzzy | 3651 | #, fuzzy |
3651 | msgid "Use SSL/TLS for the connection." | 3652 | msgid "Use SSL/TLS for the connection." |
3652 | msgstr "Benutze SSL/TLS für die Verbindung." | 3653 | msgstr "Benutze SSL/TLS für die Verbindung." |
3653 | 3654 | ||
3654 | #, c-format | 3655 | #, c-format |
3655 | msgid " Sets default port to %d.\n" | 3656 | msgid " Sets default port to %d.\n" |
3656 | msgstr " Setze den Default-Port auf %d.\n" | 3657 | msgstr " Setze den Default-Port auf %d.\n" |
3657 | 3658 | ||
3658 | msgid "Use STARTTLS for the connection." | 3659 | msgid "Use STARTTLS for the connection." |
3659 | msgstr "Benutze STARTTLS für die Verbindung." | 3660 | msgstr "Benutze STARTTLS für die Verbindung." |
3660 | 3661 | ||
3661 | msgid "SMTP AUTH type to check (default none, only LOGIN supported)" | 3662 | msgid "SMTP AUTH type to check (default none, only LOGIN supported)" |
3662 | msgstr "" | 3663 | msgstr "" |
@@ -3723,18 +3724,18 @@ msgstr "Konnte addr nicht zuweisen\n" | |||
3723 | 3724 | ||
3724 | #, fuzzy | 3725 | #, fuzzy |
3725 | msgid "Could not reallocate labels\n" | 3726 | msgid "Could not reallocate labels\n" |
3726 | msgstr "Konnte·url·nicht·zuweisen\n" | 3727 | msgstr "Konnte·url·nicht·zuweisen\n" |
3727 | 3728 | ||
3728 | #, fuzzy, c-format | 3729 | #, fuzzy, c-format |
3729 | msgid "Could not reallocate units [%d]\n" | 3730 | msgid "Could not reallocate units [%d]\n" |
3730 | msgstr "Konnte·url·nicht·zuweisen\n" | 3731 | msgstr "Konnte·url·nicht·zuweisen\n" |
3731 | 3732 | ||
3732 | msgid "Could not realloc() units\n" | 3733 | msgid "Could not realloc() units\n" |
3733 | msgstr "" | 3734 | msgstr "" |
3734 | 3735 | ||
3735 | #, fuzzy | 3736 | #, fuzzy |
3736 | msgid "Rate multiplier must be a positive integer" | 3737 | msgid "Rate multiplier must be a positive integer" |
3737 | msgstr "Paketgröße muss ein positiver Integer sein" | 3738 | msgstr "Paketgröße muss ein positiver Integer sein" |
3738 | 3739 | ||
3739 | #, fuzzy | 3740 | #, fuzzy |
3740 | msgid "No host specified\n" | 3741 | msgid "No host specified\n" |
@@ -4109,7 +4110,7 @@ msgstr "%s: Hostname muss angegeben werden\n" | |||
4109 | 4110 | ||
4110 | #, fuzzy | 4111 | #, fuzzy |
4111 | msgid "Invalid hostname, address or socket" | 4112 | msgid "Invalid hostname, address or socket" |
4112 | msgstr "Ungültige(r) Hostname/Adresse" | 4113 | msgstr "Ungültige(r) Hostname/Adresse" |
4113 | 4114 | ||
4114 | #, fuzzy, c-format | 4115 | #, fuzzy, c-format |
4115 | msgid "" | 4116 | msgid "" |
@@ -4149,7 +4150,7 @@ msgstr "" | |||
4149 | 4150 | ||
4150 | #, fuzzy | 4151 | #, fuzzy |
4151 | msgid "Hide output from TCP socket" | 4152 | msgid "Hide output from TCP socket" |
4152 | msgstr "Konnte TCP socket nicht öffnen\n" | 4153 | msgstr "Konnte TCP socket nicht öffnen\n" |
4153 | 4154 | ||
4154 | msgid "Close connection once more than this number of bytes are received" | 4155 | msgid "Close connection once more than this number of bytes are received" |
4155 | msgstr "" | 4156 | msgstr "" |
@@ -4254,11 +4255,11 @@ msgstr "" | |||
4254 | 4255 | ||
4255 | #, fuzzy | 4256 | #, fuzzy |
4256 | msgid "UPS does not support any available options\n" | 4257 | msgid "UPS does not support any available options\n" |
4257 | msgstr "IPv6 Unterstützung nicht vorhanden" | 4258 | msgstr "IPv6 Unterstützung nicht vorhanden" |
4258 | 4259 | ||
4259 | #, fuzzy | 4260 | #, fuzzy |
4260 | msgid "Invalid response received from host" | 4261 | msgid "Invalid response received from host" |
4261 | msgstr "Ungültige HTTP Antwort von Host empfangen\n" | 4262 | msgstr "Ungültige HTTP Antwort von Host empfangen\n" |
4262 | 4263 | ||
4263 | msgid "UPS name to long for buffer" | 4264 | msgid "UPS name to long for buffer" |
4264 | msgstr "" | 4265 | msgstr "" |
@@ -4353,7 +4354,7 @@ msgstr "" | |||
4353 | 4354 | ||
4354 | #, fuzzy, c-format | 4355 | #, fuzzy, c-format |
4355 | msgid "Could not enumerate RD sessions: %d\n" | 4356 | msgid "Could not enumerate RD sessions: %d\n" |
4356 | msgstr "Konnte·url·nicht·zuweisen\n" | 4357 | msgstr "Konnte·url·nicht·zuweisen\n" |
4357 | 4358 | ||
4358 | #, c-format | 4359 | #, c-format |
4359 | msgid "# users=%d" | 4360 | msgid "# users=%d" |
@@ -4369,7 +4370,7 @@ msgstr "" | |||
4369 | #, fuzzy | 4370 | #, fuzzy |
4370 | msgid "This plugin checks the number of users currently logged in on the local" | 4371 | msgid "This plugin checks the number of users currently logged in on the local" |
4371 | msgstr "" | 4372 | msgstr "" |
4372 | "Dieses Plugin prüft den freien Speicher auf einem gemounteten Filesystem\n" | 4373 | "Dieses Plugin prüft den freien Speicher auf einem gemounteten Filesystem\n" |
4373 | "und erzeugt einen Alarm wenn einer der angegebenen Schwellwerte " | 4374 | "und erzeugt einen Alarm wenn einer der angegebenen Schwellwerte " |
4374 | "unterschritten wird.\n" | 4375 | "unterschritten wird.\n" |
4375 | "\n" | 4376 | "\n" |
@@ -4403,7 +4404,7 @@ msgstr "" | |||
4403 | 4404 | ||
4404 | #, fuzzy, c-format | 4405 | #, fuzzy, c-format |
4405 | msgid "CRITICAL - Couldn't open device %s: %s\n" | 4406 | msgid "CRITICAL - Couldn't open device %s: %s\n" |
4406 | msgstr "CRITICAL - Device konnte nicht geöffnet werden: %s\n" | 4407 | msgstr "CRITICAL - Device konnte nicht geöffnet werden: %s\n" |
4407 | 4408 | ||
4408 | #, c-format | 4409 | #, c-format |
4409 | msgid "CRITICAL - SMART_CMD_ENABLE\n" | 4410 | msgid "CRITICAL - SMART_CMD_ENABLE\n" |
@@ -4609,7 +4610,7 @@ msgstr "" | |||
4609 | #, fuzzy, c-format | 4610 | #, fuzzy, c-format |
4610 | msgid "Invalid hostname/address - %s" | 4611 | msgid "Invalid hostname/address - %s" |
4611 | msgstr "" | 4612 | msgstr "" |
4612 | "Ungültige(r) Name/Adresse: %s\n" | 4613 | "Ungültige(r) Name/Adresse: %s\n" |
4613 | "\n" | 4614 | "\n" |
4614 | 4615 | ||
4615 | #, fuzzy | 4616 | #, fuzzy |
@@ -4675,15 +4676,15 @@ msgstr "" | |||
4675 | 4676 | ||
4676 | #, fuzzy | 4677 | #, fuzzy |
4677 | msgid "failed realloc in strpcpy\n" | 4678 | msgid "failed realloc in strpcpy\n" |
4678 | msgstr "konnte keinen Speicher für '%s' reservieren\n" | 4679 | msgstr "konnte keinen Speicher für '%s' reservieren\n" |
4679 | 4680 | ||
4680 | #, fuzzy | 4681 | #, fuzzy |
4681 | msgid "failed malloc in strscat\n" | 4682 | msgid "failed malloc in strscat\n" |
4682 | msgstr "konnte keinen Speicher für '%s' reservieren\n" | 4683 | msgstr "konnte keinen Speicher für '%s' reservieren\n" |
4683 | 4684 | ||
4684 | #, fuzzy | 4685 | #, fuzzy |
4685 | msgid "failed malloc in xvasprintf\n" | 4686 | msgid "failed malloc in xvasprintf\n" |
4686 | msgstr "konnte keinen Speicher für '%s' reservieren\n" | 4687 | msgstr "konnte keinen Speicher für '%s' reservieren\n" |
4687 | 4688 | ||
4688 | msgid "sysconf error for _SC_OPEN_MAX\n" | 4689 | msgid "sysconf error for _SC_OPEN_MAX\n" |
4689 | msgstr "" | 4690 | msgstr "" |
@@ -5122,10 +5123,10 @@ msgstr "" | |||
5122 | #~ msgstr "CRITICAL - Konnte kein Serverzertifikat erhalten\n" | 5123 | #~ msgstr "CRITICAL - Konnte kein Serverzertifikat erhalten\n" |
5123 | 5124 | ||
5124 | #~ msgid "Invalid HTTP response received from host\n" | 5125 | #~ msgid "Invalid HTTP response received from host\n" |
5125 | #~ msgstr "Ungültige HTTP Antwort von Host empfangen\n" | 5126 | #~ msgstr "Ungültige HTTP Antwort von Host empfangen\n" |
5126 | 5127 | ||
5127 | #~ msgid "Invalid HTTP response received from host on port %d\n" | 5128 | #~ msgid "Invalid HTTP response received from host on port %d\n" |
5128 | #~ msgstr "Ungültige HTTP Antwort von Host erhalten auf Port %d\n" | 5129 | #~ msgstr "Ungültige HTTP Antwort von Host erhalten auf Port %d\n" |
5129 | 5130 | ||
5130 | #~ msgid "HTTP CRITICAL: %s\n" | 5131 | #~ msgid "HTTP CRITICAL: %s\n" |
5131 | #~ msgstr "HTTP CRITICAL: %s\n" | 5132 | #~ msgstr "HTTP CRITICAL: %s\n" |
@@ -5154,11 +5155,11 @@ msgstr "" | |||
5154 | 5155 | ||
5155 | #, fuzzy | 5156 | #, fuzzy |
5156 | #~ msgid "HTTP UNKNOWN - could not allocate url\n" | 5157 | #~ msgid "HTTP UNKNOWN - could not allocate url\n" |
5157 | #~ msgstr "HTTP UNKNOWN - Konnte·url·nicht·zuweisen\n" | 5158 | #~ msgstr "HTTP UNKNOWN - Konnte·url·nicht·zuweisen\n" |
5158 | 5159 | ||
5159 | #, fuzzy | 5160 | #, fuzzy |
5160 | #~ msgid "snmpget returned an error status" | 5161 | #~ msgid "snmpget returned an error status" |
5161 | #~ msgstr "dig hat einen Fehler zurückgegeben" | 5162 | #~ msgstr "dig hat einen Fehler zurückgegeben" |
5162 | 5163 | ||
5163 | #, fuzzy | 5164 | #, fuzzy |
5164 | #~ msgid "Invalid critical threshold" | 5165 | #~ msgid "Invalid critical threshold" |
@@ -5202,7 +5203,7 @@ msgstr "" | |||
5202 | #~ " ssh anweisen Protokoll 2 zu verwenden\n" | 5203 | #~ " ssh anweisen Protokoll 2 zu verwenden\n" |
5203 | #~ " -S, --skiplines=n\n" | 5204 | #~ " -S, --skiplines=n\n" |
5204 | #~ " Ignoriere die ersten n Zeilen auf STDERR (um Logon Banner zu " | 5205 | #~ " Ignoriere die ersten n Zeilen auf STDERR (um Logon Banner zu " |
5205 | #~ "unterdrücken)\n" | 5206 | #~ "unterdrücken)\n" |
5206 | #~ " -f\n" | 5207 | #~ " -f\n" |
5207 | #~ " ssh anweisen fork zu nutzen statt ein tty zu erzeugen\n" | 5208 | #~ " ssh anweisen fork zu nutzen statt ein tty zu erzeugen\n" |
5208 | 5209 | ||
@@ -5221,13 +5222,13 @@ msgstr "" | |||
5221 | #~ " short name of host in nagios configuration [optional]\n" | 5222 | #~ " short name of host in nagios configuration [optional]\n" |
5222 | #~ msgstr "" | 5223 | #~ msgstr "" |
5223 | #~ " -C, --command='COMMAND STRING'\n" | 5224 | #~ " -C, --command='COMMAND STRING'\n" |
5224 | #~ " Befehl der auf der entfernten Maschine ausgeführt werden soll\n" | 5225 | #~ " Befehl der auf der entfernten Maschine ausgeführt werden soll\n" |
5225 | #~ " -l, --logname=USERNAME\n" | 5226 | #~ " -l, --logname=USERNAME\n" |
5226 | #~ " SSH user name auf dem entfernten Host [optional]\n" | 5227 | #~ " SSH user name auf dem entfernten Host [optional]\n" |
5227 | #~ " -i, --identity=KEYFILE\n" | 5228 | #~ " -i, --identity=KEYFILE\n" |
5228 | #~ " zu verwendende Schlüsseldatei [optional]\n" | 5229 | #~ " zu verwendende Schlüsseldatei [optional]\n" |
5229 | #~ " -O, --output=FILE\n" | 5230 | #~ " -O, --output=FILE\n" |
5230 | #~ " externe Befehlsdatei für nagios [optional]\n" | 5231 | #~ " externe Befehlsdatei für nagios [optional]\n" |
5231 | #~ " -s, --services=LIST\n" | 5232 | #~ " -s, --services=LIST\n" |
5232 | #~ " Liste von nagios Servicenamen, getrennt durch ':' [optional]\n" | 5233 | #~ " Liste von nagios Servicenamen, getrennt durch ':' [optional]\n" |
5233 | #~ " -n, --name=NAME\n" | 5234 | #~ " -n, --name=NAME\n" |
@@ -5264,15 +5265,15 @@ msgstr "" | |||
5264 | #~ "greater than zero" | 5265 | #~ "greater than zero" |
5265 | #~ msgstr "" | 5266 | #~ msgstr "" |
5266 | #~ "INPUT ERROR: C_DF (%lu) sollte kleiner sein als W_DF (%lu) und beide " | 5267 | #~ "INPUT ERROR: C_DF (%lu) sollte kleiner sein als W_DF (%lu) und beide " |
5267 | #~ "sollten größer als 0 sein" | 5268 | #~ "sollten größer als 0 sein" |
5268 | 5269 | ||
5269 | #, fuzzy | 5270 | #, fuzzy |
5270 | #~ msgid "No response from host on port %d\n" | 5271 | #~ msgid "No response from host on port %d\n" |
5271 | #~ msgstr "Ungültige HTTP Antwort von Host erhalten auf Port %d\n" | 5272 | #~ msgstr "Ungültige HTTP Antwort von Host erhalten auf Port %d\n" |
5272 | 5273 | ||
5273 | #, fuzzy | 5274 | #, fuzzy |
5274 | #~ msgid "Invalid response received from host on port %d\n" | 5275 | #~ msgid "Invalid response received from host on port %d\n" |
5275 | #~ msgstr "Ungültige HTTP Antwort von Host erhalten auf Port %d\n" | 5276 | #~ msgstr "Ungültige HTTP Antwort von Host erhalten auf Port %d\n" |
5276 | 5277 | ||
5277 | #~ msgid "%.3f seconds response time (%s)" | 5278 | #~ msgid "%.3f seconds response time (%s)" |
5278 | #~ msgstr "%.3f Sekunden Antwortzeit (%s)" | 5279 | #~ msgstr "%.3f Sekunden Antwortzeit (%s)" |
@@ -5300,7 +5301,7 @@ msgstr "" | |||
5300 | #~ " -c, --critical=PERCENT%%\n" | 5301 | #~ " -c, --critical=PERCENT%%\n" |
5301 | #~ " meldet Status CRITICAL, wenn weniger als PERCENT --Plattenplatz frei\n" | 5302 | #~ " meldet Status CRITICAL, wenn weniger als PERCENT --Plattenplatz frei\n" |
5302 | #~ " -C, --clear\n" | 5303 | #~ " -C, --clear\n" |
5303 | #~ " Schwellwerte löschen\n" | 5304 | #~ " Schwellwerte löschen\n" |
5304 | 5305 | ||
5305 | #~ msgid "" | 5306 | #~ msgid "" |
5306 | #~ "Examples:\n" | 5307 | #~ "Examples:\n" |
@@ -5309,7 +5310,7 @@ msgstr "" | |||
5309 | #~ msgstr "" | 5310 | #~ msgstr "" |
5310 | #~ "Beispiel:\n" | 5311 | #~ "Beispiel:\n" |
5311 | #~ " check_disk -w 10% -c 5% -p /tmp -p /var -C -w 100000 -c 50000 -p /\n" | 5312 | #~ " check_disk -w 10% -c 5% -p /tmp -p /var -C -w 100000 -c 50000 -p /\n" |
5312 | #~ " Prüft /tmp und /var mit 10%,5% und / mit 100MB, 50MB\n" | 5313 | #~ " Prüft /tmp und /var mit 10%,5% und / mit 100MB, 50MB\n" |
5313 | 5314 | ||
5314 | #~ msgid "" | 5315 | #~ msgid "" |
5315 | #~ "This plugin uses the nslookup program to obtain the IP address\n" | 5316 | #~ "This plugin uses the nslookup program to obtain the IP address\n" |
@@ -5328,7 +5329,7 @@ msgstr "" | |||
5328 | #~ msgstr "HTTP CRITICAL - Konnte keine SSL Verbindung herstellen\n" | 5329 | #~ msgstr "HTTP CRITICAL - Konnte keine SSL Verbindung herstellen\n" |
5329 | 5330 | ||
5330 | #~ msgid "Client Certificate Required\n" | 5331 | #~ msgid "Client Certificate Required\n" |
5331 | #~ msgstr "Clientzertifikat benötigt\n" | 5332 | #~ msgstr "Clientzertifikat benötigt\n" |
5332 | 5333 | ||
5333 | #~ msgid "CRITICAL - Cannot create SSL context.\n" | 5334 | #~ msgid "CRITICAL - Cannot create SSL context.\n" |
5334 | #~ msgstr "CRITICAL - Konnte SSL Kontext nicht erzeugen.\n" | 5335 | #~ msgstr "CRITICAL - Konnte SSL Kontext nicht erzeugen.\n" |
@@ -5338,7 +5339,7 @@ msgstr "" | |||
5338 | 5339 | ||
5339 | #, fuzzy | 5340 | #, fuzzy |
5340 | #~ msgid "Failed to allocate memory for hostname" | 5341 | #~ msgid "Failed to allocate memory for hostname" |
5341 | #~ msgstr "konnte keinen Speicher für '%s' reservieren\n" | 5342 | #~ msgstr "konnte keinen Speicher für '%s' reservieren\n" |
5342 | 5343 | ||
5343 | #, fuzzy | 5344 | #, fuzzy |
5344 | #~ msgid "CRITICAL - %d of %d hosts are alive\n" | 5345 | #~ msgid "CRITICAL - %d of %d hosts are alive\n" |
@@ -5346,7 +5347,7 @@ msgstr "" | |||
5346 | 5347 | ||
5347 | #, fuzzy | 5348 | #, fuzzy |
5348 | #~ msgid "%s has no address data\n" | 5349 | #~ msgid "%s has no address data\n" |
5349 | #~ msgstr "Nameserver %s hat keine Datensätze\n" | 5350 | #~ msgstr "Nameserver %s hat keine Datensätze\n" |
5350 | 5351 | ||
5351 | #, fuzzy | 5352 | #, fuzzy |
5352 | #~ msgid "CRITICAL - Could not make SSL connection\n" | 5353 | #~ msgid "CRITICAL - Could not make SSL connection\n" |
@@ -5358,7 +5359,7 @@ msgstr "" | |||
5358 | 5359 | ||
5359 | #, fuzzy | 5360 | #, fuzzy |
5360 | #~ msgid "Certificate expires today (%s).\n" | 5361 | #~ msgid "Certificate expires today (%s).\n" |
5361 | #~ msgstr "Clientzertifikat benötigt\n" | 5362 | #~ msgstr "Clientzertifikat benötigt\n" |
5362 | 5363 | ||
5363 | #, fuzzy | 5364 | #, fuzzy |
5364 | #~ msgid "ERROR: Cannot create SSL context.\n" | 5365 | #~ msgid "ERROR: Cannot create SSL context.\n" |
@@ -5386,7 +5387,7 @@ msgstr "" | |||
5386 | #~ msgstr "Time interval muss ein positiver Integer sein" | 5387 | #~ msgstr "Time interval muss ein positiver Integer sein" |
5387 | 5388 | ||
5388 | #~ msgid "check_http: invalid option - SSL is not available\n" | 5389 | #~ msgid "check_http: invalid option - SSL is not available\n" |
5389 | #~ msgstr "check_http: ungültige Option - SSL ist nicht verfügbar\n" | 5390 | #~ msgstr "check_http: ungültige Option - SSL ist nicht verfügbar\n" |
5390 | 5391 | ||
5391 | #~ msgid "invalid hostname/address" | 5392 | #~ msgid "invalid hostname/address" |
5392 | #~ msgstr "Ungültige(r) Hostname/Adresse" | 5393 | #~ msgstr "Ungültige(r) Hostname/Adresse" |
@@ -1,6 +1,6 @@ | |||
1 | # translation of fr.po to | 1 | # translation of fr.po to |
2 | # Messages français pour Nagios Plugins | 2 | # Messages français pour Nagios Plugins |
3 | # Copyright (C) 2003-2004 Nagios Plugin Development Group | 3 | # Copyright (C) 2003-2023 Nagios Plugin Development Group |
4 | # This file is distributed under the same license as the nagiosplug package. | 4 | # This file is distributed under the same license as the nagiosplug package. |
5 | # | 5 | # |
6 | # Karl DeBisschop <kdebisschop@users.sourceforge.net>, 2003. | 6 | # Karl DeBisschop <kdebisschop@users.sourceforge.net>, 2003. |
@@ -8,14 +8,13 @@ | |||
8 | # Thomas Guyot-Sionnest <dermoth@aei.ca>, 2007. | 8 | # Thomas Guyot-Sionnest <dermoth@aei.ca>, 2007. |
9 | msgid "" | 9 | msgid "" |
10 | msgstr "" | 10 | msgstr "" |
11 | "Project-Id-Version: fr\n" | 11 | "Project-Id-Version: PACKAGE VERSION\n" |
12 | "Report-Msgid-Bugs-To: devel@monitoring-plugins.org\n" | 12 | "Report-Msgid-Bugs-To: devel@monitoring-plugins.org\n" |
13 | "POT-Creation-Date: 2023-09-05 00:31+0200\n" | 13 | "POT-Creation-Date: 2023-09-05 00:31+0200\n" |
14 | "PO-Revision-Date: 2010-04-21 23:38-0400\n" | 14 | "PO-Revision-Date: 2010-04-21 23:38-0400\n" |
15 | "Last-Translator: Thomas Guyot-Sionnest <dermoth@aei.ca>\n" | 15 | "Last-Translator: \n" |
16 | "Language-Team: Nagios Plugin Development Mailing List <nagiosplug-" | 16 | "Language-Team: Monitoring Plugin Development Team <devel@monitoring-plugins.org>\n" |
17 | "devel@monitoring-plugins.org>\n" | 17 | "Language: fr\n" |
18 | "Language: \n" | ||
19 | "MIME-Version: 1.0\n" | 18 | "MIME-Version: 1.0\n" |
20 | "Content-Type: text/plain; charset=UTF-8\n" | 19 | "Content-Type: text/plain; charset=UTF-8\n" |
21 | "Content-Transfer-Encoding: 8bit\n" | 20 | "Content-Transfer-Encoding: 8bit\n" |
diff --git a/po/monitoring-plugins.pot b/po/monitoring-plugins.pot index 6efafef..af48f03 100644 --- a/po/monitoring-plugins.pot +++ b/po/monitoring-plugins.pot | |||
@@ -8,7 +8,7 @@ msgid "" | |||
8 | msgstr "" | 8 | msgstr "" |
9 | "Project-Id-Version: PACKAGE VERSION\n" | 9 | "Project-Id-Version: PACKAGE VERSION\n" |
10 | "Report-Msgid-Bugs-To: devel@monitoring-plugins.org\n" | 10 | "Report-Msgid-Bugs-To: devel@monitoring-plugins.org\n" |
11 | "POT-Creation-Date: 2023-09-05 15:21+0200\n" | 11 | "POT-Creation-Date: 2023-09-12 01:33+0200\n" |
12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" | 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
13 | "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" | 13 | "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
14 | "Language-Team: LANGUAGE <LL@li.org>\n" | 14 | "Language-Team: LANGUAGE <LL@li.org>\n" |