summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwaja <waja@users.noreply.github.com>2023-06-28 14:39:27 (GMT)
committerGitHub <noreply@github.com>2023-06-28 14:39:27 (GMT)
commit265a7c0ed8ccde7868bb7e77c44aecc403743c21 (patch)
tree3a02f6ce03e8f781dcfca22ee1f17817225a0ff9
parentb96a8424f0ec6206238b650c2c63b4bd006ab43a (diff)
parentb24eb7f46ac8667324efd818c01d68d5a1376c89 (diff)
downloadmonitoring-plugins-265a7c0ed8ccde7868bb7e77c44aecc403743c21.tar.gz
Merge branch 'master' into compiler_warning_part_2refs/pull/1867/head
-rw-r--r--.github/dependabot.yml1
-rwxr-xr-x.github/prepare_debian.sh19
-rw-r--r--.github/workflows/codeql-analysis.yml61
-rw-r--r--.github/workflows/test.yml2
-rw-r--r--.gitignore1
-rw-r--r--lib/utils_base.c8
-rw-r--r--lib/utils_disk.c17
-rw-r--r--plugins-root/check_dhcp.c4
-rwxr-xr-xplugins-scripts/check_log.sh4
-rwxr-xr-xplugins-scripts/check_oracle.sh16
-rwxr-xr-xplugins-scripts/check_sensors.sh8
-rw-r--r--plugins/check_curl.c5
-rw-r--r--plugins/check_disk.c27
-rw-r--r--plugins/check_http.c1
-rw-r--r--plugins/check_mysql.c7
-rw-r--r--plugins/check_nt.c2
-rw-r--r--plugins/check_pgsql.c12
-rw-r--r--plugins/check_smtp.c38
-rw-r--r--plugins/runcmd.c2
-rw-r--r--po/de.po2942
-rw-r--r--po/fr.po3024
-rw-r--r--po/monitoring-plugins.pot2886
22 files changed, 5227 insertions, 3860 deletions
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
index 282063c..0707364 100644
--- a/.github/dependabot.yml
+++ b/.github/dependabot.yml
@@ -1,3 +1,4 @@
1---
1version: 2 2version: 2
2updates: 3updates:
3 - package-ecosystem: github-actions 4 - package-ecosystem: github-actions
diff --git a/.github/prepare_debian.sh b/.github/prepare_debian.sh
index 5222659..7f5592b 100755
--- a/.github/prepare_debian.sh
+++ b/.github/prepare_debian.sh
@@ -5,13 +5,18 @@ set -e
5 5
6export DEBIAN_FRONTEND=noninteractive 6export DEBIAN_FRONTEND=noninteractive
7 7
8sed "s/main/non-free contrib/g" /etc/apt/sources.list.d/debian.sources > /etc/apt/sources.list.d/debian-nonfree.sources 8source /etc/os-release
9apt-get update 9
10apt-get -y install software-properties-common 10if [ ${ID} = "debian" ]; then
11if [ $(lsb_release -is) = "Debian" ]; then 11 if [ -f /etc/apt/sources.list.d/debian.sources ]; then
12 apt-add-repository non-free 12 sed "s/main/non-free contrib/g" /etc/apt/sources.list.d/debian.sources > /etc/apt/sources.list.d/debian-nonfree.sources
13 apt-get update 13 else
14 apt-get update
15 apt-get -y install software-properties-common
16 apt-add-repository non-free
17 fi
14fi 18fi
19apt-get update
15apt-get -y install perl \ 20apt-get -y install perl \
16 autotools-dev \ 21 autotools-dev \
17 libdbi-dev \ 22 libdbi-dev \
@@ -83,7 +88,7 @@ cp tools/squid.conf /etc/squid/squid.conf
83service squid start 88service squid start
84 89
85# mariadb 90# mariadb
86service mariadb start 91service mariadb start || service mysql start
87mysql -e "create database IF NOT EXISTS test;" -uroot 92mysql -e "create database IF NOT EXISTS test;" -uroot
88 93
89# ldap 94# ldap
diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml
index ab8bfaa..43b35d3 100644
--- a/.github/workflows/codeql-analysis.yml
+++ b/.github/workflows/codeql-analysis.yml
@@ -1,3 +1,4 @@
1---
1# For most projects, this workflow file will not need changing; you simply need 2# For most projects, this workflow file will not need changing; you simply need
2# to commit it to your repository. 3# to commit it to your repository.
3# 4#
@@ -13,10 +14,10 @@ name: "CodeQL"
13 14
14on: 15on:
15 push: 16 push:
16 branches: [ master ] 17 branches: [master]
17 pull_request: 18 pull_request:
18 # The branches below must be a subset of the branches above 19 # The branches below must be a subset of the branches above
19 branches: [ master ] 20 branches: [master]
20 schedule: 21 schedule:
21 - cron: '15 18 * * 0' 22 - cron: '15 18 * * 0'
22 23
@@ -32,41 +33,41 @@ jobs:
32 strategy: 33 strategy:
33 fail-fast: false 34 fail-fast: false
34 matrix: 35 matrix:
35 language: [ 'cpp' ] 36 language: ['cpp']
36 # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ] 37 # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ]
37 # Learn more: 38 # Learn more:
38 # https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed 39 # https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed
39 40
40 steps: 41 steps:
41 - name: Checkout repository 42 - name: Checkout repository
42 uses: actions/checkout@v3 43 uses: actions/checkout@v3
43 44
44 # Initializes the CodeQL tools for scanning. 45 # Initializes the CodeQL tools for scanning.
45 - name: Initialize CodeQL 46 - name: Initialize CodeQL
46 uses: github/codeql-action/init@v2 47 uses: github/codeql-action/init@v2
47 with: 48 with:
48 languages: ${{ matrix.language }} 49 languages: ${{ matrix.language }}
49 # If you wish to specify custom queries, you can do so here or in a config file. 50 # If you wish to specify custom queries, you can do so here or in a config file.
50 # By default, queries listed here will override any specified in a config file. 51 # By default, queries listed here will override any specified in a config file.
51 # Prefix the list here with "+" to use these queries and those in the config file. 52 # Prefix the list here with "+" to use these queries and those in the config file.
52 # queries: ./path/to/local/query, your-org/your-repo/queries@main 53 # queries: ./path/to/local/query, your-org/your-repo/queries@main
53 54
54 - name: Install packages 55 - name: Install packages
55 run: | 56 run: |
56 sudo apt update 57 sudo apt update
57 sudo apt-get install -y --no-install-recommends m4 gettext automake autoconf make build-essential 58 sudo apt-get install -y --no-install-recommends m4 gettext automake autoconf make build-essential
58 sudo apt-get install -y --no-install-recommends perl autotools-dev libdbi-dev libldap2-dev libpq-dev \ 59 sudo apt-get install -y --no-install-recommends perl autotools-dev libdbi-dev libldap2-dev libpq-dev \
59 libmysqlclient-dev libradcli-dev libkrb5-dev libdbi0-dev \ 60 libmysqlclient-dev libradcli-dev libkrb5-dev libdbi0-dev \
60 libdbd-sqlite3 libssl-dev libcurl4-openssl-dev liburiparser-dev 61 libdbd-sqlite3 libssl-dev libcurl4-openssl-dev liburiparser-dev
61 62
62 - name: Configure build 63 - name: Configure build
63 run: | 64 run: |
64 ./tools/setup 65 ./tools/setup
65 ./configure --enable-libtap 66 ./configure --enable-libtap
66 67
67 - name: Build 68 - name: Build
68 run: | 69 run: |
69 make 70 make
70 71
71 - name: Perform CodeQL Analysis 72 - name: Perform CodeQL Analysis
72 uses: github/codeql-action/analyze@v2 73 uses: github/codeql-action/analyze@v2
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index e825eb3..306f21c 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -1,9 +1,11 @@
1---
1name: Test 2name: Test
2 3
3on: 4on:
4 push: 5 push:
5 branches: 6 branches:
6 - '*' 7 - '*'
8 # Run test for any PRs
7 pull_request: 9 pull_request:
8 10
9jobs: 11jobs:
diff --git a/.gitignore b/.gitignore
index fdcad9f..02ca61e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -246,6 +246,7 @@ NP-VERSION-FILE
246/plugins-scripts/check_ircd 246/plugins-scripts/check_ircd
247/plugins-scripts/check_log 247/plugins-scripts/check_log
248/plugins-scripts/check_mailq 248/plugins-scripts/check_mailq
249/plugins-scripts/check_mssql
249/plugins-scripts/check_ntp 250/plugins-scripts/check_ntp
250/plugins-scripts/check_oracle 251/plugins-scripts/check_oracle
251/plugins-scripts/check_rpc 252/plugins-scripts/check_rpc
diff --git a/lib/utils_base.c b/lib/utils_base.c
index eb1823b..c458cf6 100644
--- a/lib/utils_base.c
+++ b/lib/utils_base.c
@@ -24,7 +24,7 @@
24* 24*
25*****************************************************************************/ 25*****************************************************************************/
26 26
27#include "common.h" 27#include "../plugins/common.h"
28#include <stdarg.h> 28#include <stdarg.h>
29#include "utils_base.h" 29#include "utils_base.h"
30#include <ctype.h> 30#include <ctype.h>
@@ -319,18 +319,18 @@ char *np_extract_value(const char *varlist, const char *name, char sep) {
319 319
320 while (1) { 320 while (1) {
321 /* Strip any leading space */ 321 /* Strip any leading space */
322 for (varlist; isspace(varlist[0]); varlist++); 322 for (; isspace(varlist[0]); varlist++);
323 323
324 if (strncmp(name, varlist, strlen(name)) == 0) { 324 if (strncmp(name, varlist, strlen(name)) == 0) {
325 varlist += strlen(name); 325 varlist += strlen(name);
326 /* strip trailing spaces */ 326 /* strip trailing spaces */
327 for (varlist; isspace(varlist[0]); varlist++); 327 for (; isspace(varlist[0]); varlist++);
328 328
329 if (varlist[0] == '=') { 329 if (varlist[0] == '=') {
330 /* We matched the key, go past the = sign */ 330 /* We matched the key, go past the = sign */
331 varlist++; 331 varlist++;
332 /* strip leading spaces */ 332 /* strip leading spaces */
333 for (varlist; isspace(varlist[0]); varlist++); 333 for (; isspace(varlist[0]); varlist++);
334 334
335 if (tmp = index(varlist, sep)) { 335 if (tmp = index(varlist, sep)) {
336 /* Value is delimited by a comma */ 336 /* Value is delimited by a comma */
diff --git a/lib/utils_disk.c b/lib/utils_disk.c
index 468769b..582d3ea 100644
--- a/lib/utils_disk.c
+++ b/lib/utils_disk.c
@@ -147,24 +147,25 @@ np_set_best_match(struct parameter_list *desired, struct mount_entry *mount_list
147 147
148 /* set best match if path name exactly matches a mounted device name */ 148 /* set best match if path name exactly matches a mounted device name */
149 for (me = mount_list; me; me = me->me_next) { 149 for (me = mount_list; me; me = me->me_next) {
150 if (get_fs_usage(me->me_mountdir, me->me_devname, &fsp) < 0) 150 if (strcmp(me->me_devname, d->name)==0) {
151 continue; /* skip if permissions do not suffice for accessing device */ 151 if (get_fs_usage(me->me_mountdir, me->me_devname, &fsp) >= 0) {
152 if (strcmp(me->me_devname, d->name)==0) 152 best_match = me;
153 best_match = me; 153 }
154 }
154 } 155 }
155 156
156 /* set best match by directory name if no match was found by devname */ 157 /* set best match by directory name if no match was found by devname */
157 if (! best_match) { 158 if (! best_match) {
158 for (me = mount_list; me; me = me->me_next) { 159 for (me = mount_list; me; me = me->me_next) {
159 if (get_fs_usage(me->me_mountdir, me->me_devname, &fsp) < 0)
160 continue; /* skip if permissions do not suffice for accessing device */
161 size_t len = strlen (me->me_mountdir); 160 size_t len = strlen (me->me_mountdir);
162 if ((exact == FALSE && (best_match_len <= len && len <= name_len && 161 if ((exact == FALSE && (best_match_len <= len && len <= name_len &&
163 (len == 1 || strncmp (me->me_mountdir, d->name, len) == 0))) 162 (len == 1 || strncmp (me->me_mountdir, d->name, len) == 0)))
164 || (exact == TRUE && strcmp(me->me_mountdir, d->name)==0)) 163 || (exact == TRUE && strcmp(me->me_mountdir, d->name)==0))
165 { 164 {
166 best_match = me; 165 if (get_fs_usage(me->me_mountdir, me->me_devname, &fsp) >= 0) {
167 best_match_len = len; 166 best_match = me;
167 best_match_len = len;
168 }
168 } 169 }
169 } 170 }
170 } 171 }
diff --git a/plugins-root/check_dhcp.c b/plugins-root/check_dhcp.c
index 2d74234..2d22619 100644
--- a/plugins-root/check_dhcp.c
+++ b/plugins-root/check_dhcp.c
@@ -470,10 +470,6 @@ int send_dhcp_discover(int sock){
470 packet_xid=random(); 470 packet_xid=random();
471 discover_packet.xid=htonl(packet_xid); 471 discover_packet.xid=htonl(packet_xid);
472 472
473 /**** WHAT THE HECK IS UP WITH THIS?!? IF I DON'T MAKE THIS CALL, ONLY ONE SERVER RESPONSE IS PROCESSED!!!! ****/
474 /* downright bizzarre... */
475 ntohl(discover_packet.xid);
476
477 /*discover_packet.secs=htons(65535);*/ 473 /*discover_packet.secs=htons(65535);*/
478 discover_packet.secs=0xFF; 474 discover_packet.secs=0xFF;
479 475
diff --git a/plugins-scripts/check_log.sh b/plugins-scripts/check_log.sh
index c623a8d..8ecdd31 100755
--- a/plugins-scripts/check_log.sh
+++ b/plugins-scripts/check_log.sh
@@ -105,11 +105,11 @@ while test -n "$1"; do
105 case "$1" in 105 case "$1" in
106 -h | --help) 106 -h | --help)
107 print_help 107 print_help
108 exit "$STATE_OK" 108 exit "$STATE_UNKNOWN"
109 ;; 109 ;;
110 -V | --version) 110 -V | --version)
111 print_revision "$PROGNAME" "$REVISION" 111 print_revision "$PROGNAME" "$REVISION"
112 exit "$STATE_OK" 112 exit "$STATE_UNKNOWN"
113 ;; 113 ;;
114 -F | --filename) 114 -F | --filename)
115 logfile=$2 115 logfile=$2
diff --git a/plugins-scripts/check_oracle.sh b/plugins-scripts/check_oracle.sh
index b14ec50..5998138 100755
--- a/plugins-scripts/check_oracle.sh
+++ b/plugins-scripts/check_oracle.sh
@@ -86,20 +86,20 @@ esac
86# Information options 86# Information options
87case "$cmd" in 87case "$cmd" in
88--help) 88--help)
89 print_help 89 print_help
90 exit "$STATE_OK" 90 exit "$STATE_UNKNOWN"
91 ;; 91 ;;
92-h) 92-h)
93 print_help 93 print_help
94 exit "$STATE_OK" 94 exit "$STATE_UNKNOWN"
95 ;; 95 ;;
96--version) 96--version)
97 print_revision "$PROGNAME" "$REVISION" 97 print_revision "$PROGNAME" "$REVISION"
98 exit "$STATE_OK" 98 exit "$STATE_UNKNOWN"
99 ;; 99 ;;
100-V) 100-V)
101 print_revision "$PROGNAME" "$REVISION" 101 print_revision "$PROGNAME" "$REVISION"
102 exit "$STATE_OK" 102 exit "$STATE_UNKNOWN"
103 ;; 103 ;;
104esac 104esac
105 105
diff --git a/plugins-scripts/check_sensors.sh b/plugins-scripts/check_sensors.sh
index 921e7b3..866e0e0 100755
--- a/plugins-scripts/check_sensors.sh
+++ b/plugins-scripts/check_sensors.sh
@@ -26,19 +26,19 @@ print_help() {
26case "$1" in 26case "$1" in
27 --help) 27 --help)
28 print_help 28 print_help
29 exit "$STATE_OK" 29 exit "$STATE_UNKNOWN"
30 ;; 30 ;;
31 -h) 31 -h)
32 print_help 32 print_help
33 exit "$STATE_OK" 33 exit "$STATE_UNKNOWN"
34 ;; 34 ;;
35 --version) 35 --version)
36 print_revision "$PROGNAME" "$REVISION" 36 print_revision "$PROGNAME" "$REVISION"
37 exit "$STATE_OK" 37 exit "$STATE_UNKNOWN"
38 ;; 38 ;;
39 -V) 39 -V)
40 print_revision "$PROGNAME" "$REVISION" 40 print_revision "$PROGNAME" "$REVISION"
41 exit "$STATE_OK" 41 exit "$STATE_UNKNOWN"
42 ;; 42 ;;
43 *) 43 *)
44 sensordata=$(sensors 2>&1) 44 sensordata=$(sensors 2>&1)
diff --git a/plugins/check_curl.c b/plugins/check_curl.c
index 6294fa0..d0871c4 100644
--- a/plugins/check_curl.c
+++ b/plugins/check_curl.c
@@ -2303,11 +2303,10 @@ curlhelp_parse_statusline (const char *buf, curlhelp_statusline *status_line)
2303 if( strchr( p, '.' ) != NULL ) { 2303 if( strchr( p, '.' ) != NULL ) {
2304 2304
2305 /* HTTP 1.x case */ 2305 /* HTTP 1.x case */
2306 char *ppp; 2306 strtok( p, "." );
2307 ppp = strtok( p, "." );
2308 status_line->http_major = (int)strtol( p, &pp, 10 ); 2307 status_line->http_major = (int)strtol( p, &pp, 10 );
2309 if( *pp != '\0' ) { free( first_line_buf ); return -1; } 2308 if( *pp != '\0' ) { free( first_line_buf ); return -1; }
2310 ppp = strtok( NULL, " " ); 2309 strtok( NULL, " " );
2311 status_line->http_minor = (int)strtol( p, &pp, 10 ); 2310 status_line->http_minor = (int)strtol( p, &pp, 10 );
2312 if( *pp != '\0' ) { free( first_line_buf ); return -1; } 2311 if( *pp != '\0' ) { free( first_line_buf ); return -1; }
2313 p += 4; /* 1.x SP */ 2312 p += 4; /* 1.x SP */
diff --git a/plugins/check_disk.c b/plugins/check_disk.c
index a99f35e..39dc6cd 100644
--- a/plugins/check_disk.c
+++ b/plugins/check_disk.c
@@ -626,21 +626,36 @@ process_arguments (int argc, char **argv)
626 if (! strcasecmp (optarg, "bytes")) { 626 if (! strcasecmp (optarg, "bytes")) {
627 mult = (uintmax_t)1; 627 mult = (uintmax_t)1;
628 units = strdup ("B"); 628 units = strdup ("B");
629 } else if ( (! strcmp (optarg, "kB")) || (!strcmp(optarg, "KiB")) ) { 629 } else if (!strcmp(optarg, "KiB")) {
630 mult = (uintmax_t)1024; 630 mult = (uintmax_t)1024;
631 units = strdup ("kiB"); 631 units = strdup ("KiB");
632 } else if ( (! strcmp (optarg, "MB")) || (!strcmp(optarg, "MiB")) ) { 632 } else if (! strcmp (optarg, "kB")) {
633 mult = (uintmax_t)1000;
634 units = strdup ("kB");
635 } else if (!strcmp(optarg, "MiB")) {
633 mult = (uintmax_t)1024 * 1024; 636 mult = (uintmax_t)1024 * 1024;
634 units = strdup ("MiB"); 637 units = strdup ("MiB");
635 } else if ( (! strcmp (optarg, "GB")) || (!strcmp(optarg, "GiB")) ) { 638 } else if (! strcmp (optarg, "MB")) {
639 mult = (uintmax_t)1000 * 1000;
640 units = strdup ("MB");
641 } else if (!strcmp(optarg, "GiB")) {
636 mult = (uintmax_t)1024 * 1024 * 1024; 642 mult = (uintmax_t)1024 * 1024 * 1024;
637 units = strdup ("GiB"); 643 units = strdup ("GiB");
638 } else if ( (! strcmp (optarg, "TB")) || (!strcmp(optarg, "TiB")) ) { 644 } else if (! strcmp (optarg, "GB")){
645 mult = (uintmax_t)1000 * 1000 * 1000;
646 units = strdup ("GB");
647 } else if (!strcmp(optarg, "TiB")) {
639 mult = (uintmax_t)1024 * 1024 * 1024 * 1024; 648 mult = (uintmax_t)1024 * 1024 * 1024 * 1024;
640 units = strdup ("TiB"); 649 units = strdup ("TiB");
641 } else if ( (! strcmp (optarg, "PB")) || (!strcmp(optarg, "PiB")) ) { 650 } else if (! strcmp (optarg, "TB")) {
651 mult = (uintmax_t)1000 * 1000 * 1000 * 1000;
652 units = strdup ("TB");
653 } else if (!strcmp(optarg, "PiB")) {
642 mult = (uintmax_t)1024 * 1024 * 1024 * 1024 * 1024; 654 mult = (uintmax_t)1024 * 1024 * 1024 * 1024 * 1024;
643 units = strdup ("PiB"); 655 units = strdup ("PiB");
656 } else if (! strcmp (optarg, "PB")){
657 mult = (uintmax_t)1000 * 1000 * 1000 * 1000 * 1000;
658 units = strdup ("PB");
644 } else { 659 } else {
645 die (STATE_UNKNOWN, _("unit type %s not known\n"), optarg); 660 die (STATE_UNKNOWN, _("unit type %s not known\n"), optarg);
646 } 661 }
diff --git a/plugins/check_http.c b/plugins/check_http.c
index 432a984..1288c41 100644
--- a/plugins/check_http.c
+++ b/plugins/check_http.c
@@ -1392,7 +1392,6 @@ char *unchunk_content(const char *content) {
1392 // https://en.wikipedia.org/wiki/Chunked_transfer_encoding 1392 // https://en.wikipedia.org/wiki/Chunked_transfer_encoding
1393 // https://www.rfc-editor.org/rfc/rfc7230#section-4.1 1393 // https://www.rfc-editor.org/rfc/rfc7230#section-4.1
1394 char *result = NULL; 1394 char *result = NULL;
1395 size_t content_length = strlen(content);
1396 char *start_of_chunk; 1395 char *start_of_chunk;
1397 char* end_of_chunk; 1396 char* end_of_chunk;
1398 long size_of_chunk; 1397 long size_of_chunk;
diff --git a/plugins/check_mysql.c b/plugins/check_mysql.c
index 0cba50e..91e150f 100644
--- a/plugins/check_mysql.c
+++ b/plugins/check_mysql.c
@@ -138,7 +138,10 @@ main (int argc, char **argv)
138 mysql_ssl_set(&mysql,key,cert,ca_cert,ca_dir,ciphers); 138 mysql_ssl_set(&mysql,key,cert,ca_cert,ca_dir,ciphers);
139 /* establish a connection to the server and error checking */ 139 /* establish a connection to the server and error checking */
140 if (!mysql_real_connect(&mysql,db_host,db_user,db_pass,db,db_port,db_socket,0)) { 140 if (!mysql_real_connect(&mysql,db_host,db_user,db_pass,db,db_port,db_socket,0)) {
141 if (ignore_auth && mysql_errno (&mysql) == ER_ACCESS_DENIED_ERROR) 141 /* Depending on internally-selected auth plugin MySQL might return */
142 /* ER_ACCESS_DENIED_NO_PASSWORD_ERROR or ER_ACCESS_DENIED_ERROR. */
143 /* Semantically these errors are the same. */
144 if (ignore_auth && (mysql_errno (&mysql) == ER_ACCESS_DENIED_ERROR || mysql_errno (&mysql) == ER_ACCESS_DENIED_NO_PASSWORD_ERROR))
142 { 145 {
143 printf("MySQL OK - Version: %s (protocol %d)\n", 146 printf("MySQL OK - Version: %s (protocol %d)\n",
144 mysql_get_server_info(&mysql), 147 mysql_get_server_info(&mysql),
@@ -551,7 +554,7 @@ print_help (void)
551 printf (" %s\n", _("Exit with CRITICAL status if slave server is more then INTEGER seconds")); 554 printf (" %s\n", _("Exit with CRITICAL status if slave server is more then INTEGER seconds"));
552 printf (" %s\n", _("behind master")); 555 printf (" %s\n", _("behind master"));
553 printf (" %s\n", "-l, --ssl"); 556 printf (" %s\n", "-l, --ssl");
554 printf (" %s\n", _("Use ssl encryptation")); 557 printf (" %s\n", _("Use ssl encryption"));
555 printf (" %s\n", "-C, --ca-cert=STRING"); 558 printf (" %s\n", "-C, --ca-cert=STRING");
556 printf (" %s\n", _("Path to CA signing the cert")); 559 printf (" %s\n", _("Path to CA signing the cert"));
557 printf (" %s\n", "-a, --cert=STRING"); 560 printf (" %s\n", "-a, --cert=STRING");
diff --git a/plugins/check_nt.c b/plugins/check_nt.c
index 59c135d..d73d83c 100644
--- a/plugins/check_nt.c
+++ b/plugins/check_nt.c
@@ -341,7 +341,7 @@ int main(int argc, char **argv){
341 341
342 2) If the counter you're going to measure is percent-based, the code will detect 342 2) If the counter you're going to measure is percent-based, the code will detect
343 the percent sign in its name and will attribute minimum (0%) and maximum (100%) 343 the percent sign in its name and will attribute minimum (0%) and maximum (100%)
344 values automagically, as well the ¨%" sign to graph units. 344 values automagically, as well the "%" sign to graph units.
345 345
346 3) OTOH, if the counter is "absolute", you'll have to provide the following 346 3) OTOH, if the counter is "absolute", you'll have to provide the following
347 the counter unit - that is, the dimensions of the counter you're getting. Examples: 347 the counter unit - that is, the dimensions of the counter you're getting. Examples:
diff --git a/plugins/check_pgsql.c b/plugins/check_pgsql.c
index 94a03b2..6199033 100644
--- a/plugins/check_pgsql.c
+++ b/plugins/check_pgsql.c
@@ -517,7 +517,10 @@ print_help (void)
517 printf (" %s\n", _("connecting to the server. The result from the query has to be numeric.")); 517 printf (" %s\n", _("connecting to the server. The result from the query has to be numeric."));
518 printf (" %s\n", _("Multiple SQL commands, separated by semicolon, are allowed but the result ")); 518 printf (" %s\n", _("Multiple SQL commands, separated by semicolon, are allowed but the result "));
519 printf (" %s\n", _("of the last command is taken into account only. The value of the first")); 519 printf (" %s\n", _("of the last command is taken into account only. The value of the first"));
520 printf (" %s\n\n", _("column in the first row is used as the check result.")); 520 printf (" %s\n", _("column in the first row is used as the check result. If a second column is"));
521 printf (" %s\n", _("present in the result set, this is added to the plugin output with a"));
522 printf (" %s\n", _("prefix of \"Extra Info:\". This information can be displayed in the system"));
523 printf (" %s\n\n", _("executing the plugin."));
521 524
522 printf (" %s\n", _("See the chapter \"Monitoring Database Activity\" of the PostgreSQL manual")); 525 printf (" %s\n", _("See the chapter \"Monitoring Database Activity\" of the PostgreSQL manual"));
523 printf (" %s\n\n", _("for details about how to access internal statistics of the database server.")); 526 printf (" %s\n\n", _("for details about how to access internal statistics of the database server."));
@@ -557,6 +560,7 @@ do_query (PGconn *conn, char *query)
557 PGresult *res; 560 PGresult *res;
558 561
559 char *val_str; 562 char *val_str;
563 char *extra_info;
560 double value; 564 double value;
561 565
562 char *endptr = NULL; 566 char *endptr = NULL;
@@ -621,6 +625,12 @@ do_query (PGconn *conn, char *query)
621 printf ("|query=%f;%s;%s;;\n", value, 625 printf ("|query=%f;%s;%s;;\n", value,
622 query_warning ? query_warning : "", 626 query_warning ? query_warning : "",
623 query_critical ? query_critical : ""); 627 query_critical ? query_critical : "");
628 if (PQnfields (res) > 1) {
629 extra_info = PQgetvalue (res, 0, 1);
630 if (extra_info != NULL) {
631 printf ("Extra Info: %s\n", extra_info);
632 }
633 }
624 return my_status; 634 return my_status;
625} 635}
626 636
diff --git a/plugins/check_smtp.c b/plugins/check_smtp.c
index b035aab..996bd87 100644
--- a/plugins/check_smtp.c
+++ b/plugins/check_smtp.c
@@ -3,7 +3,7 @@
3* Monitoring check_smtp plugin 3* Monitoring check_smtp plugin
4* 4*
5* License: GPL 5* License: GPL
6* Copyright (c) 2000-2007 Monitoring Plugins Development Team 6* Copyright (c) 2000-2023 Monitoring Plugins Development Team
7* 7*
8* Description: 8* Description:
9* 9*
@@ -52,6 +52,7 @@ int days_till_exp_warn, days_till_exp_crit;
52enum { 52enum {
53 SMTP_PORT = 25 53 SMTP_PORT = 25
54}; 54};
55#define PROXY_PREFIX "PROXY TCP4 0.0.0.0 0.0.0.0 25 25\r\n"
55#define SMTP_EXPECT "220" 56#define SMTP_EXPECT "220"
56#define SMTP_HELO "HELO " 57#define SMTP_HELO "HELO "
57#define SMTP_EHLO "EHLO " 58#define SMTP_EHLO "EHLO "
@@ -102,6 +103,8 @@ double critical_time = 0;
102int check_critical_time = FALSE; 103int check_critical_time = FALSE;
103int verbose = 0; 104int verbose = 0;
104int use_ssl = FALSE; 105int use_ssl = FALSE;
106int use_sni = FALSE;
107short use_proxy_prefix = FALSE;
105short use_ehlo = FALSE; 108short use_ehlo = FALSE;
106short use_lhlo = FALSE; 109short use_lhlo = FALSE;
107short ssl_established = 0; 110short ssl_established = 0;
@@ -184,6 +187,13 @@ main (int argc, char **argv)
184 187
185 if (result == STATE_OK) { /* we connected */ 188 if (result == STATE_OK) { /* we connected */
186 189
190 /* If requested, send PROXY header */
191 if (use_proxy_prefix) {
192 if (verbose)
193 printf ("Sending header %s\n", PROXY_PREFIX);
194 send(sd, PROXY_PREFIX, strlen(PROXY_PREFIX), 0);
195 }
196
187 /* watch for the SMTP connection string and */ 197 /* watch for the SMTP connection string and */
188 /* return a WARNING status if we couldn't read any data */ 198 /* return a WARNING status if we couldn't read any data */
189 if (recvlines(buffer, MAX_INPUT_BUFFER) <= 0) { 199 if (recvlines(buffer, MAX_INPUT_BUFFER) <= 0) {
@@ -225,7 +235,7 @@ main (int argc, char **argv)
225 smtp_quit(); 235 smtp_quit();
226 return STATE_UNKNOWN; 236 return STATE_UNKNOWN;
227 } 237 }
228 result = np_net_ssl_init(sd); 238 result = np_net_ssl_init_with_hostname(sd, (use_sni ? server_address : NULL));
229 if(result != STATE_OK) { 239 if(result != STATE_OK) {
230 printf (_("CRITICAL - Cannot create SSL context.\n")); 240 printf (_("CRITICAL - Cannot create SSL context.\n"));
231 close(sd); 241 close(sd);
@@ -454,6 +464,10 @@ process_arguments (int argc, char **argv)
454 int c; 464 int c;
455 char* temp; 465 char* temp;
456 466
467 enum {
468 SNI_OPTION
469 };
470
457 int option = 0; 471 int option = 0;
458 static struct option longopts[] = { 472 static struct option longopts[] = {
459 {"hostname", required_argument, 0, 'H'}, 473 {"hostname", required_argument, 0, 'H'},
@@ -476,8 +490,10 @@ process_arguments (int argc, char **argv)
476 {"help", no_argument, 0, 'h'}, 490 {"help", no_argument, 0, 'h'},
477 {"lmtp", no_argument, 0, 'L'}, 491 {"lmtp", no_argument, 0, 'L'},
478 {"starttls",no_argument,0,'S'}, 492 {"starttls",no_argument,0,'S'},
493 {"sni", no_argument, 0, SNI_OPTION},
479 {"certificate",required_argument,0,'D'}, 494 {"certificate",required_argument,0,'D'},
480 {"ignore-quit-failure",no_argument,0,'q'}, 495 {"ignore-quit-failure",no_argument,0,'q'},
496 {"proxy",no_argument,0,'r'},
481 {0, 0, 0, 0} 497 {0, 0, 0, 0}
482 }; 498 };
483 499
@@ -494,7 +510,7 @@ process_arguments (int argc, char **argv)
494 } 510 }
495 511
496 while (1) { 512 while (1) {
497 c = getopt_long (argc, argv, "+hVv46Lt:p:f:e:c:w:H:C:R:SD:F:A:U:P:q", 513 c = getopt_long (argc, argv, "+hVv46Lrt:p:f:e:c:w:H:C:R:SD:F:A:U:P:q",
498 longopts, &option); 514 longopts, &option);
499 515
500 if (c == -1 || c == EOF) 516 if (c == -1 || c == EOF)
@@ -622,6 +638,16 @@ process_arguments (int argc, char **argv)
622 use_ssl = TRUE; 638 use_ssl = TRUE;
623 use_ehlo = TRUE; 639 use_ehlo = TRUE;
624 break; 640 break;
641 case SNI_OPTION:
642#ifdef HAVE_SSL
643 use_sni = TRUE;
644#else
645 usage (_("SSL support not available - install OpenSSL and recompile"));
646#endif
647 break;
648 case 'r':
649 use_proxy_prefix = TRUE;
650 break;
625 case 'L': 651 case 'L':
626 use_lhlo = TRUE; 652 use_lhlo = TRUE;
627 break; 653 break;
@@ -820,11 +846,15 @@ print_help (void)
820 printf (" %s\n", _("FROM-address to include in MAIL command, required by Exchange 2000")), 846 printf (" %s\n", _("FROM-address to include in MAIL command, required by Exchange 2000")),
821 printf (" %s\n", "-F, --fqdn=STRING"); 847 printf (" %s\n", "-F, --fqdn=STRING");
822 printf (" %s\n", _("FQDN used for HELO")); 848 printf (" %s\n", _("FQDN used for HELO"));
849 printf (" %s\n", "-r, --proxy");
850 printf (" %s\n", _("Use PROXY protocol prefix for the connection."));
823#ifdef HAVE_SSL 851#ifdef HAVE_SSL
824 printf (" %s\n", "-D, --certificate=INTEGER[,INTEGER]"); 852 printf (" %s\n", "-D, --certificate=INTEGER[,INTEGER]");
825 printf (" %s\n", _("Minimum number of days a certificate has to be valid.")); 853 printf (" %s\n", _("Minimum number of days a certificate has to be valid."));
826 printf (" %s\n", "-S, --starttls"); 854 printf (" %s\n", "-S, --starttls");
827 printf (" %s\n", _("Use STARTTLS for the connection.")); 855 printf (" %s\n", _("Use STARTTLS for the connection."));
856 printf (" %s\n", "--sni");
857 printf (" %s\n", _("Enable SSL/TLS hostname extension support (SNI)"));
828#endif 858#endif
829 859
830 printf (" %s\n", "-A, --authtype=STRING"); 860 printf (" %s\n", "-A, --authtype=STRING");
@@ -861,6 +891,6 @@ print_usage (void)
861 printf ("%s\n", _("Usage:")); 891 printf ("%s\n", _("Usage:"));
862 printf ("%s -H host [-p port] [-4|-6] [-e expect] [-C command] [-R response] [-f from addr]\n", progname); 892 printf ("%s -H host [-p port] [-4|-6] [-e expect] [-C command] [-R response] [-f from addr]\n", progname);
863 printf ("[-A authtype -U authuser -P authpass] [-w warn] [-c crit] [-t timeout] [-q]\n"); 893 printf ("[-A authtype -U authuser -P authpass] [-w warn] [-c crit] [-t timeout] [-q]\n");
864 printf ("[-F fqdn] [-S] [-L] [-D warn days cert expire[,crit days cert expire]] [-v] \n"); 894 printf ("[-F fqdn] [-S] [-L] [-D warn days cert expire[,crit days cert expire]] [-r] [--sni] [-v] \n");
865} 895}
866 896
diff --git a/plugins/runcmd.c b/plugins/runcmd.c
index 1bd2ca1..c1d675d 100644
--- a/plugins/runcmd.c
+++ b/plugins/runcmd.c
@@ -44,6 +44,8 @@
44# include <sys/wait.h> 44# include <sys/wait.h>
45#endif 45#endif
46 46
47#include "./utils.h"
48
47/** macros **/ 49/** macros **/
48#ifndef WEXITSTATUS 50#ifndef WEXITSTATUS
49# define WEXITSTATUS(stat_val) ((unsigned)(stat_val) >> 8) 51# define WEXITSTATUS(stat_val) ((unsigned)(stat_val) >> 8)
diff --git a/po/de.po b/po/de.po
index eee6245..01bbcc5 100644
--- a/po/de.po
+++ b/po/de.po
@@ -9,111 +9,114 @@ msgid ""
9msgstr "" 9msgstr ""
10"Project-Id-Version: nagiosplug\n" 10"Project-Id-Version: nagiosplug\n"
11"Report-Msgid-Bugs-To: devel@monitoring-plugins.org\n" 11"Report-Msgid-Bugs-To: devel@monitoring-plugins.org\n"
12"POT-Creation-Date: 2014-01-19 16:30-0500\n" 12"POT-Creation-Date: 2023-06-12 20:31+0200\n"
13"PO-Revision-Date: 2004-12-23 17:46+0100\n" 13"PO-Revision-Date: 2004-12-23 17:46+0100\n"
14"Last-Translator: <>\n" 14"Last-Translator: <>\n"
15"Language-Team: English <en@li.org>\n" 15"Language-Team: English <en@li.org>\n"
16"Language: en\n"
16"MIME-Version: 1.0\n" 17"MIME-Version: 1.0\n"
17"Content-Type: text/plain; charset=iso-8859-1\n" 18"Content-Type: text/plain; charset=iso-8859-1\n"
18"Content-Transfer-Encoding: 8bit\n" 19"Content-Transfer-Encoding: 8bit\n"
19"Language: en\n"
20"Plural-Forms: nplurals=2; plural=(n > 1);X-Generator: KBabel 1.3.1\n" 20"Plural-Forms: nplurals=2; plural=(n > 1);X-Generator: KBabel 1.3.1\n"
21 21
22#: plugins/check_by_ssh.c:86 plugins/check_cluster.c:76 plugins/check_dig.c:88 22#: plugins/check_by_ssh.c:88 plugins/check_cluster.c:76 plugins/check_dig.c:91
23#: plugins/check_disk.c:194 plugins/check_dns.c:102 plugins/check_dummy.c:52 23#: plugins/check_disk.c:206 plugins/check_dns.c:106 plugins/check_dummy.c:52
24#: plugins/check_fping.c:93 plugins/check_game.c:82 plugins/check_hpjd.c:103 24#: plugins/check_fping.c:95 plugins/check_game.c:82 plugins/check_hpjd.c:105
25#: plugins/check_http.c:167 plugins/check_ldap.c:109 plugins/check_load.c:122 25#: plugins/check_http.c:174 plugins/check_ldap.c:118 plugins/check_load.c:128
26#: plugins/check_mrtgtraf.c:83 plugins/check_mysql.c:122 26#: plugins/check_mrtgtraf.c:83 plugins/check_mysql.c:124
27#: plugins/check_nagios.c:91 plugins/check_nt.c:127 plugins/check_ntp.c:770 27#: plugins/check_nagios.c:91 plugins/check_nt.c:127 plugins/check_ntp.c:780
28#: plugins/check_ntp_peer.c:575 plugins/check_ntp_time.c:552 28#: plugins/check_ntp_peer.c:575 plugins/check_ntp_time.c:557
29#: plugins/check_nwstat.c:173 plugins/check_overcr.c:102 29#: plugins/check_nwstat.c:173 plugins/check_overcr.c:102
30#: plugins/check_pgsql.c:172 plugins/check_ping.c:95 plugins/check_procs.c:172 30#: plugins/check_pgsql.c:174 plugins/check_ping.c:97 plugins/check_procs.c:176
31#: plugins/check_radius.c:160 plugins/check_real.c:80 plugins/check_smtp.c:144 31#: plugins/check_radius.c:176 plugins/check_real.c:80 plugins/check_smtp.c:146
32#: plugins/check_snmp.c:240 plugins/check_ssh.c:73 plugins/check_swap.c:110 32#: plugins/check_snmp.c:248 plugins/check_ssh.c:74 plugins/check_swap.c:115
33#: plugins/check_tcp.c:218 plugins/check_time.c:78 plugins/check_ups.c:122 33#: plugins/check_tcp.c:222 plugins/check_time.c:78 plugins/check_ups.c:122
34#: plugins/check_users.c:77 plugins/negate.c:214 plugins-root/check_dhcp.c:270 34#: plugins/check_users.c:84 plugins/negate.c:210 plugins-root/check_dhcp.c:270
35msgid "Could not parse arguments" 35msgid "Could not parse arguments"
36msgstr "Argumente konnten nicht ausgewertet werden" 36msgstr "Argumente konnten nicht ausgewertet werden"
37 37
38#: plugins/check_by_ssh.c:90 plugins/check_dig.c:82 plugins/check_dns.c:95 38#: plugins/check_by_ssh.c:92 plugins/check_dig.c:85 plugins/check_dns.c:99
39#: plugins/check_nagios.c:95 plugins/check_pgsql.c:178 plugins/check_ping.c:99 39#: plugins/check_nagios.c:95 plugins/check_pgsql.c:180 plugins/check_ping.c:101
40#: plugins/check_procs.c:188 plugins/check_snmp.c:336 plugins/negate.c:79 40#: plugins/check_procs.c:192 plugins/check_snmp.c:348 plugins/negate.c:78
41msgid "Cannot catch SIGALRM" 41msgid "Cannot catch SIGALRM"
42msgstr "Konnte SIGALRM nicht erhalten" 42msgstr "Konnte SIGALRM nicht erhalten"
43 43
44#: plugins/check_by_ssh.c:110 44#: plugins/check_by_ssh.c:107
45#, c-format
46msgid "SSH connection failed: %s\n"
47msgstr ""
48
49#: plugins/check_by_ssh.c:126
45#, c-format 50#, c-format
46msgid "Remote command execution failed: %s\n" 51msgid "Remote command execution failed: %s\n"
47msgstr "" 52msgstr ""
48 53
49#: plugins/check_by_ssh.c:122 54#: plugins/check_by_ssh.c:141
50#, c-format 55#, c-format
51msgid "%s - check_by_ssh: Remote command '%s' returned status %d\n" 56msgid "%s - check_by_ssh: Remote command '%s' returned status %d\n"
52msgstr "" 57msgstr ""
53 58
54#: plugins/check_by_ssh.c:134 59#: plugins/check_by_ssh.c:153
55#, c-format 60#, c-format
56msgid "SSH WARNING: could not open %s\n" 61msgid "SSH WARNING: could not open %s\n"
57msgstr "SSH WARNING: Konnte %s nicht öffnen\n" 62msgstr "SSH WARNING: Konnte %s nicht öffnen\n"
58 63
59#: plugins/check_by_ssh.c:143 64#: plugins/check_by_ssh.c:162
60#, c-format 65#, c-format
61msgid "%s: Error parsing output\n" 66msgid "%s: Error parsing output\n"
62msgstr "" 67msgstr ""
63 68
64#: plugins/check_by_ssh.c:220 plugins/check_disk.c:476 69#: plugins/check_by_ssh.c:242 plugins/check_disk.c:568 plugins/check_http.c:292
65#: plugins/check_http.c:278 plugins/check_ldap.c:293 plugins/check_pgsql.c:311 70#: plugins/check_ldap.c:334 plugins/check_pgsql.c:314 plugins/check_procs.c:461
66#: plugins/check_procs.c:437 plugins/check_radius.c:308 71#: plugins/check_radius.c:323 plugins/check_real.c:357 plugins/check_smtp.c:607
67#: plugins/check_real.c:356 plugins/check_smtp.c:581 plugins/check_snmp.c:736 72#: plugins/check_snmp.c:789 plugins/check_ssh.c:140 plugins/check_tcp.c:519
68#: plugins/check_ssh.c:138 plugins/check_tcp.c:505 plugins/check_time.c:302 73#: plugins/check_time.c:302 plugins/check_ups.c:559 plugins/negate.c:160
69#: plugins/check_ups.c:556 plugins/negate.c:164
70msgid "Timeout interval must be a positive integer" 74msgid "Timeout interval must be a positive integer"
71msgstr "Timeout interval muss ein positiver Integer sein" 75msgstr "Timeout interval muss ein positiver Integer sein"
72 76
73#: plugins/check_by_ssh.c:230 plugins/check_pgsql.c:341 77#: plugins/check_by_ssh.c:254 plugins/check_pgsql.c:344
74#: plugins/check_radius.c:272 plugins/check_real.c:327 78#: plugins/check_radius.c:287 plugins/check_real.c:328 plugins/check_smtp.c:532
75#: plugins/check_smtp.c:506 plugins/check_tcp.c:511 plugins/check_time.c:296 79#: plugins/check_tcp.c:525 plugins/check_time.c:296 plugins/check_ups.c:521
76#: plugins/check_ups.c:518
77msgid "Port must be a positive integer" 80msgid "Port must be a positive integer"
78msgstr "Port muss ein positiver Integer sein" 81msgstr "Port muss ein positiver Integer sein"
79 82
80#: plugins/check_by_ssh.c:291 83#: plugins/check_by_ssh.c:315
81#, fuzzy 84#, fuzzy
82msgid "skip-stdout argument must be an integer" 85msgid "skip-stdout argument must be an integer"
83msgstr "skip-stdout argument muss ein Integer sein" 86msgstr "skip-stdout argument muss ein Integer sein"
84 87
85#: plugins/check_by_ssh.c:299 88#: plugins/check_by_ssh.c:323
86#, fuzzy 89#, fuzzy
87msgid "skip-stderr argument must be an integer" 90msgid "skip-stderr argument must be an integer"
88msgstr "skip-stderr argument muss ein Integer sein" 91msgstr "skip-stderr argument muss ein Integer sein"
89 92
90#: plugins/check_by_ssh.c:322 93#: plugins/check_by_ssh.c:349
91#, c-format 94#, c-format
92msgid "%s: You must provide a host name\n" 95msgid "%s: You must provide a host name\n"
93msgstr "%s: Hostname muss angegeben werden\n" 96msgstr "%s: Hostname muss angegeben werden\n"
94 97
95#: plugins/check_by_ssh.c:340 98#: plugins/check_by_ssh.c:366
96msgid "No remotecmd" 99msgid "No remotecmd"
97msgstr "Kein remotecm" 100msgstr "Kein remotecm"
98 101
99#: plugins/check_by_ssh.c:354 102#: plugins/check_by_ssh.c:380
100#, c-format 103#, c-format
101msgid "%s: Argument limit of %d exceeded\n" 104msgid "%s: Argument limit of %d exceeded\n"
102msgstr "" 105msgstr ""
103 106
104#: plugins/check_by_ssh.c:357 107#: plugins/check_by_ssh.c:383
105#, fuzzy 108#, fuzzy
106msgid "Can not (re)allocate 'commargv' buffer\n" 109msgid "Can not (re)allocate 'commargv' buffer\n"
107msgstr "Konnte·url·nicht·zuweisen\n" 110msgstr "Konnte·url·nicht·zuweisen\n"
108 111
109#: plugins/check_by_ssh.c:371 112#: plugins/check_by_ssh.c:397
110#, c-format 113#, c-format
111msgid "" 114msgid ""
112"%s: In passive mode, you must provide a service name for each command.\n" 115"%s: In passive mode, you must provide a service name for each command.\n"
113msgstr "" 116msgstr ""
114"%s: Im passive mode muss ein Servicename für jeden Befehl angegeben werden.\n" 117"%s: Im passive mode muss ein Servicename für jeden Befehl angegeben werden.\n"
115 118
116#: plugins/check_by_ssh.c:374 119#: plugins/check_by_ssh.c:400
117#, fuzzy, c-format 120#, fuzzy, c-format
118msgid "" 121msgid ""
119"%s: In passive mode, you must provide the host short name from the " 122"%s: In passive mode, you must provide the host short name from the "
@@ -122,262 +125,270 @@ msgstr ""
122"%s: Im passive mode muss der \"host short name\" aus der Nagios " 125"%s: Im passive mode muss der \"host short name\" aus der Nagios "
123"Konfiguration angegeben werden\n" 126"Konfiguration angegeben werden\n"
124 127
125#: plugins/check_by_ssh.c:388 128#: plugins/check_by_ssh.c:414
126#, fuzzy, c-format 129#, fuzzy, c-format
127msgid "This plugin uses SSH to execute commands on a remote host" 130msgid "This plugin uses SSH to execute commands on a remote host"
128msgstr "" 131msgstr ""
129"Dieses Plugin nutzt SSH um Befehle auf dem entfernten Rechner auszuführen\n" 132"Dieses Plugin nutzt SSH um Befehle auf dem entfernten Rechner auszuführen\n"
130"\n" 133"\n"
131 134
132#: plugins/check_by_ssh.c:403 135#: plugins/check_by_ssh.c:429
133msgid "tell ssh to use Protocol 1 [optional]" 136msgid "tell ssh to use Protocol 1 [optional]"
134msgstr "" 137msgstr ""
135 138
136#: plugins/check_by_ssh.c:405 139#: plugins/check_by_ssh.c:431
137msgid "tell ssh to use Protocol 2 [optional]" 140msgid "tell ssh to use Protocol 2 [optional]"
138msgstr "" 141msgstr ""
139 142
140#: plugins/check_by_ssh.c:407 143#: plugins/check_by_ssh.c:433
141msgid "Ignore all or (if specified) first n lines on STDOUT [optional]" 144msgid "Ignore all or (if specified) first n lines on STDOUT [optional]"
142msgstr "" 145msgstr ""
143 146
144#: plugins/check_by_ssh.c:409 147#: plugins/check_by_ssh.c:435
145msgid "Ignore all or (if specified) first n lines on STDERR [optional]" 148msgid "Ignore all or (if specified) first n lines on STDERR [optional]"
146msgstr "" 149msgstr ""
147 150
148#: plugins/check_by_ssh.c:411 151#: plugins/check_by_ssh.c:437
152msgid "Exit with an warning, if there is an output on STDERR"
153msgstr ""
154
155#: plugins/check_by_ssh.c:439
149msgid "" 156msgid ""
150"tells ssh to fork rather than create a tty [optional]. This will always " 157"tells ssh to fork rather than create a tty [optional]. This will always "
151"return OK if ssh is executed" 158"return OK if ssh is executed"
152msgstr "" 159msgstr ""
153 160
154#: plugins/check_by_ssh.c:413 161#: plugins/check_by_ssh.c:441
155msgid "command to execute on the remote machine" 162msgid "command to execute on the remote machine"
156msgstr "" 163msgstr ""
157 164
158#: plugins/check_by_ssh.c:415 165#: plugins/check_by_ssh.c:443
159msgid "SSH user name on remote host [optional]" 166msgid "SSH user name on remote host [optional]"
160msgstr "" 167msgstr ""
161 168
162#: plugins/check_by_ssh.c:417 169#: plugins/check_by_ssh.c:445
163msgid "identity of an authorized key [optional]" 170msgid "identity of an authorized key [optional]"
164msgstr "" 171msgstr ""
165 172
166#: plugins/check_by_ssh.c:419 173#: plugins/check_by_ssh.c:447
167msgid "external command file for monitoring [optional]" 174msgid "external command file for monitoring [optional]"
168msgstr "" 175msgstr ""
169 176
170#: plugins/check_by_ssh.c:421 177#: plugins/check_by_ssh.c:449
171msgid "list of monitoring service names, separated by ':' [optional]" 178msgid "list of monitoring service names, separated by ':' [optional]"
172msgstr "" 179msgstr ""
173 180
174#: plugins/check_by_ssh.c:423 181#: plugins/check_by_ssh.c:451
175msgid "short name of host in the monitoring configuration [optional]" 182msgid "short name of host in the monitoring configuration [optional]"
176msgstr "" 183msgstr ""
177 184
178#: plugins/check_by_ssh.c:425 185#: plugins/check_by_ssh.c:453
179msgid "Call ssh with '-o OPTION' (may be used multiple times) [optional]" 186msgid "Call ssh with '-o OPTION' (may be used multiple times) [optional]"
180msgstr "" 187msgstr ""
181 188
182#: plugins/check_by_ssh.c:427 189#: plugins/check_by_ssh.c:455
183msgid "Tell ssh to use this configfile [optional]" 190msgid "Tell ssh to use this configfile [optional]"
184msgstr "" 191msgstr ""
185 192
186#: plugins/check_by_ssh.c:429 193#: plugins/check_by_ssh.c:457
187msgid "Tell ssh to suppress warning and diagnostic messages [optional]" 194msgid "Tell ssh to suppress warning and diagnostic messages [optional]"
188msgstr "" 195msgstr ""
189 196
190#: plugins/check_by_ssh.c:434 197#: plugins/check_by_ssh.c:461
198msgid "Make connection problems return UNKNOWN instead of CRITICAL"
199msgstr ""
200
201#: plugins/check_by_ssh.c:464
191msgid "The most common mode of use is to refer to a local identity file with" 202msgid "The most common mode of use is to refer to a local identity file with"
192msgstr "" 203msgstr ""
193 204
194#: plugins/check_by_ssh.c:435 205#: plugins/check_by_ssh.c:465
195msgid "the '-i' option. In this mode, the identity pair should have a null" 206msgid "the '-i' option. In this mode, the identity pair should have a null"
196msgstr "" 207msgstr ""
197 208
198#: plugins/check_by_ssh.c:436 209#: plugins/check_by_ssh.c:466
199msgid "passphrase and the public key should be listed in the authorized_keys" 210msgid "passphrase and the public key should be listed in the authorized_keys"
200msgstr "" 211msgstr ""
201 212
202#: plugins/check_by_ssh.c:437 213#: plugins/check_by_ssh.c:467
203msgid "file of the remote host. Usually the key will be restricted to running" 214msgid "file of the remote host. Usually the key will be restricted to running"
204msgstr "" 215msgstr ""
205 216
206#: plugins/check_by_ssh.c:438 217#: plugins/check_by_ssh.c:468
207msgid "only one command on the remote server. If the remote SSH server tracks" 218msgid "only one command on the remote server. If the remote SSH server tracks"
208msgstr "" 219msgstr ""
209 220
210#: plugins/check_by_ssh.c:439 221#: plugins/check_by_ssh.c:469
211msgid "invocation arguments, the one remote program may be an agent that can" 222msgid "invocation arguments, the one remote program may be an agent that can"
212msgstr "" 223msgstr ""
213 224
214#: plugins/check_by_ssh.c:440 225#: plugins/check_by_ssh.c:470
215msgid "execute additional commands as proxy" 226msgid "execute additional commands as proxy"
216msgstr "" 227msgstr ""
217 228
218#: plugins/check_by_ssh.c:442 229#: plugins/check_by_ssh.c:472
219msgid "To use passive mode, provide multiple '-C' options, and provide" 230msgid "To use passive mode, provide multiple '-C' options, and provide"
220msgstr "" 231msgstr ""
221 232
222#: plugins/check_by_ssh.c:443 233#: plugins/check_by_ssh.c:473
223msgid "" 234msgid ""
224"all of -O, -s, and -n options (servicelist order must match '-C'options)" 235"all of -O, -s, and -n options (servicelist order must match '-C'options)"
225msgstr "" 236msgstr ""
226 237
227#: plugins/check_by_ssh.c:445 plugins/check_cluster.c:261 238#: plugins/check_by_ssh.c:475 plugins/check_cluster.c:271
228#: plugins/check_dig.c:355 plugins/check_disk.c:924 plugins/check_http.c:1560 239#: plugins/check_dig.c:364 plugins/check_disk.c:1000 plugins/check_http.c:1845
229#: plugins/check_nagios.c:312 plugins/check_ntp.c:869 240#: plugins/check_nagios.c:312 plugins/check_ntp.c:879
230#: plugins/check_ntp_peer.c:705 plugins/check_ntp_time.c:633 241#: plugins/check_ntp_peer.c:733 plugins/check_ntp_time.c:642
231#: plugins/check_procs.c:763 plugins/negate.c:271 plugins/urlize.c:180 242#: plugins/check_procs.c:806 plugins/negate.c:249 plugins/urlize.c:179
232msgid "Examples:" 243msgid "Examples:"
233msgstr "" 244msgstr ""
234 245
235#: plugins/check_by_ssh.c:460 plugins/check_cluster.c:274 246#: plugins/check_by_ssh.c:490 plugins/check_cluster.c:284
236#: plugins/check_dig.c:367 plugins/check_disk.c:941 plugins/check_dns.c:486 247#: plugins/check_dig.c:376 plugins/check_disk.c:1017 plugins/check_dns.c:617
237#: plugins/check_dummy.c:122 plugins/check_fping.c:505 248#: plugins/check_dummy.c:122 plugins/check_fping.c:524 plugins/check_game.c:331
238#: plugins/check_game.c:331 plugins/check_hpjd.c:414 plugins/check_http.c:1590 249#: plugins/check_hpjd.c:439 plugins/check_http.c:1883 plugins/check_ldap.c:511
239#: plugins/check_ldap.c:451 plugins/check_load.c:334 plugins/check_mrtg.c:382 250#: plugins/check_load.c:372 plugins/check_mrtg.c:382 plugins/check_mysql.c:587
240#: plugins/check_mysql.c:569 plugins/check_nagios.c:323 plugins/check_nt.c:774 251#: plugins/check_nagios.c:323 plugins/check_nt.c:797 plugins/check_ntp.c:898
241#: plugins/check_ntp.c:888 plugins/check_ntp_peer.c:725 252#: plugins/check_ntp_peer.c:753 plugins/check_ntp_time.c:651
242#: plugins/check_ntp_time.c:642 plugins/check_nwstat.c:1685 253#: plugins/check_nwstat.c:1685 plugins/check_overcr.c:467
243#: plugins/check_overcr.c:467 plugins/check_pgsql.c:578 254#: plugins/check_pgsql.c:551 plugins/check_ping.c:617 plugins/check_procs.c:829
244#: plugins/check_ping.c:603 plugins/check_procs.c:781 255#: plugins/check_radius.c:400 plugins/check_real.c:452 plugins/check_smtp.c:890
245#: plugins/check_radius.c:385 plugins/check_real.c:451 256#: plugins/check_snmp.c:1346 plugins/check_ssh.c:325 plugins/check_swap.c:607
246#: plugins/check_smtp.c:843 plugins/check_snmp.c:1207 plugins/check_ssh.c:309 257#: plugins/check_tcp.c:710 plugins/check_time.c:371 plugins/check_ups.c:663
247#: plugins/check_swap.c:558 plugins/check_tcp.c:684 plugins/check_time.c:371 258#: plugins/check_users.c:262 plugins/check_ide_smart.c:606 plugins/negate.c:273
248#: plugins/check_ups.c:660 plugins/check_users.c:240 259#: plugins/urlize.c:196 plugins-root/check_dhcp.c:1390
249#: plugins/check_ide_smart.c:640 plugins/negate.c:295 plugins/urlize.c:197 260#: plugins-root/check_icmp.c:1628
250#: plugins-root/check_dhcp.c:1422 plugins-root/check_icmp.c:1354
251msgid "Usage:" 261msgid "Usage:"
252msgstr "" 262msgstr ""
253 263
254#: plugins/check_cluster.c:230 264#: plugins/check_cluster.c:240
255#, c-format 265#, c-format
256msgid "Host/Service Cluster Plugin for Monitoring" 266msgid "Host/Service Cluster Plugin for Monitoring"
257msgstr "" 267msgstr ""
258 268
259#: plugins/check_cluster.c:236 plugins/check_nt.c:676 269#: plugins/check_cluster.c:246 plugins/check_nt.c:697
260msgid "Options:" 270msgid "Options:"
261msgstr "" 271msgstr ""
262 272
263#: plugins/check_cluster.c:239 273#: plugins/check_cluster.c:249
264msgid "Check service cluster status" 274msgid "Check service cluster status"
265msgstr "" 275msgstr ""
266 276
267#: plugins/check_cluster.c:241 277#: plugins/check_cluster.c:251
268msgid "Check host cluster status" 278msgid "Check host cluster status"
269msgstr "" 279msgstr ""
270 280
271#: plugins/check_cluster.c:243 281#: plugins/check_cluster.c:253
272msgid "Optional prepended text output (i.e. \"Host cluster\")" 282msgid "Optional prepended text output (i.e. \"Host cluster\")"
273msgstr "" 283msgstr ""
274 284
275#: plugins/check_cluster.c:245 plugins/check_cluster.c:248 285#: plugins/check_cluster.c:255 plugins/check_cluster.c:258
276msgid "Specifies the range of hosts or services in cluster that must be in a" 286msgid "Specifies the range of hosts or services in cluster that must be in a"
277msgstr "" 287msgstr ""
278 288
279#: plugins/check_cluster.c:246 289#: plugins/check_cluster.c:256
280msgid "non-OK state in order to return a WARNING status level" 290msgid "non-OK state in order to return a WARNING status level"
281msgstr "" 291msgstr ""
282 292
283#: plugins/check_cluster.c:249 293#: plugins/check_cluster.c:259
284msgid "non-OK state in order to return a CRITICAL status level" 294msgid "non-OK state in order to return a CRITICAL status level"
285msgstr "" 295msgstr ""
286 296
287#: plugins/check_cluster.c:251 297#: plugins/check_cluster.c:261
288msgid "The status codes of the hosts or services in the cluster, separated by" 298msgid "The status codes of the hosts or services in the cluster, separated by"
289msgstr "" 299msgstr ""
290 300
291#: plugins/check_cluster.c:252 301#: plugins/check_cluster.c:262
292msgid "commas" 302msgid "commas"
293msgstr "" 303msgstr ""
294 304
295#: plugins/check_cluster.c:257 plugins/check_game.c:318 305#: plugins/check_cluster.c:267 plugins/check_game.c:318
296#: plugins/check_http.c:1542 plugins/check_ldap.c:438 plugins/check_mrtg.c:363 306#: plugins/check_http.c:1827 plugins/check_ldap.c:497 plugins/check_mrtg.c:363
297#: plugins/check_mrtgtraf.c:361 plugins/check_mysql.c:558 307#: plugins/check_mrtgtraf.c:361 plugins/check_mysql.c:576
298#: plugins/check_nt.c:758 plugins/check_ntp.c:865 plugins/check_ntp_peer.c:696 308#: plugins/check_nt.c:781 plugins/check_ntp.c:875 plugins/check_ntp_peer.c:724
299#: plugins/check_ntp_time.c:626 plugins/check_nwstat.c:1670 309#: plugins/check_ntp_time.c:633 plugins/check_nwstat.c:1670
300#: plugins/check_overcr.c:456 plugins/check_snmp.c:1178 310#: plugins/check_overcr.c:456 plugins/check_snmp.c:1317
301#: plugins/check_swap.c:547 plugins/check_ups.c:642 plugins/negate.c:277 311#: plugins/check_swap.c:596 plugins/check_ups.c:645
302#: plugins-root/check_icmp.c:1329 312#: plugins/check_ide_smart.c:580 plugins/negate.c:255
313#: plugins-root/check_icmp.c:1603
303msgid "Notes:" 314msgid "Notes:"
304msgstr "" 315msgstr ""
305 316
306#: plugins/check_cluster.c:263 317#: plugins/check_cluster.c:273
307msgid "" 318msgid ""
308"Will alert critical if there are 3 or more service data points in a non-OK" 319"Will alert critical if there are 3 or more service data points in a non-OK"
309msgstr "" 320msgstr ""
310 321
311#: plugins/check_cluster.c:264 plugins/check_ups.c:639 322#: plugins/check_cluster.c:274 plugins/check_ups.c:642
312msgid "state." 323msgid "state."
313msgstr "" 324msgstr ""
314 325
315#: plugins/check_dig.c:100 plugins/check_dig.c:102 326#: plugins/check_dig.c:106 plugins/check_dig.c:108
316#, c-format 327#, c-format
317msgid "Looking for: '%s'\n" 328msgid "Looking for: '%s'\n"
318msgstr "" 329msgstr ""
319 330
320#: plugins/check_dig.c:109 331#: plugins/check_dig.c:115
321msgid "dig returned an error status" 332msgid "dig returned an error status"
322msgstr "dig hat einen Fehler zurückgegeben" 333msgstr "dig hat einen Fehler zurückgegeben"
323 334
324#: plugins/check_dig.c:134 335#: plugins/check_dig.c:140
325msgid "Server not found in ANSWER SECTION" 336msgid "Server not found in ANSWER SECTION"
326msgstr "Server nicht gefunden in ANSWER SECTION" 337msgstr "Server nicht gefunden in ANSWER SECTION"
327 338
328#: plugins/check_dig.c:144 339#: plugins/check_dig.c:150
329msgid "No ANSWER SECTION found" 340msgid "No ANSWER SECTION found"
330msgstr "Keine ANSWER SECTION gefunden" 341msgstr "Keine ANSWER SECTION gefunden"
331 342
332#: plugins/check_dig.c:171 343#: plugins/check_dig.c:177
333#, fuzzy 344#, fuzzy
334msgid "Probably a non-existent host/domain" 345msgid "Probably a non-existent host/domain"
335msgstr "nicht existierender Host/Domain" 346msgstr "nicht existierender Host/Domain"
336 347
337#: plugins/check_dig.c:233 348#: plugins/check_dig.c:239
338#, fuzzy, c-format 349#, fuzzy, c-format
339msgid "Port must be a positive integer - %s" 350msgid "Port must be a positive integer - %s"
340msgstr "Port muss ein positiver Integer sein - %s" 351msgstr "Port muss ein positiver Integer sein - %s"
341 352
342#: plugins/check_dig.c:244 353#: plugins/check_dig.c:250
343#, fuzzy, c-format 354#, fuzzy, c-format
344msgid "Warning interval must be a positive integer - %s" 355msgid "Warning interval must be a positive integer - %s"
345msgstr "Warning interval muss ein positiver Integer sein - %s" 356msgstr "Warning interval muss ein positiver Integer sein - %s"
346 357
347#: plugins/check_dig.c:252 358#: plugins/check_dig.c:258
348#, fuzzy, c-format 359#, fuzzy, c-format
349msgid "Critical interval must be a positive integer - %s" 360msgid "Critical interval must be a positive integer - %s"
350msgstr "Critical interval muss ein positiver Integer sein - %s" 361msgstr "Critical interval muss ein positiver Integer sein - %s"
351 362
352#: plugins/check_dig.c:260 363#: plugins/check_dig.c:266
353#, fuzzy, c-format 364#, fuzzy, c-format
354msgid "Timeout interval must be a positive integer - %s" 365msgid "Timeout interval must be a positive integer - %s"
355msgstr "Timeout interval muss ein positiver Integer sein - %s" 366msgstr "Timeout interval muss ein positiver Integer sein - %s"
356 367
357#: plugins/check_dig.c:325 368#: plugins/check_dig.c:334
358#, fuzzy, c-format 369#, fuzzy, c-format
359msgid "This plugin test the DNS service on the specified host using dig" 370msgid "This plugin tests the DNS service on the specified host using dig"
360msgstr "Testet den DNS Dienst auf dem angegebenen Host mit dig" 371msgstr "Testet den DNS Dienst auf dem angegebenen Host mit dig"
361 372
362#: plugins/check_dig.c:338 373#: plugins/check_dig.c:347
363msgid "Force dig to only use IPv4 query transport" 374msgid "Force dig to only use IPv4 query transport"
364msgstr "" 375msgstr ""
365 376
366#: plugins/check_dig.c:340 377#: plugins/check_dig.c:349
367msgid "Force dig to only use IPv6 query transport" 378msgid "Force dig to only use IPv6 query transport"
368msgstr "" 379msgstr ""
369 380
370#: plugins/check_dig.c:342 381#: plugins/check_dig.c:351
371#, fuzzy 382#, fuzzy
372msgid "Machine name to lookup" 383msgid "Machine name to lookup"
373msgstr "zu prüfender Hostname" 384msgstr "zu prüfender Hostname"
374 385
375#: plugins/check_dig.c:344 386#: plugins/check_dig.c:353
376#, fuzzy 387#, fuzzy
377msgid "Record type to lookup (default: A)" 388msgid "Record type to lookup (default: A)"
378msgstr "abzufragender Datensatztyp (Default: A)" 389msgstr "abzufragender Datensatztyp (Default: A)"
379 390
380#: plugins/check_dig.c:346 391#: plugins/check_dig.c:355
381#, fuzzy 392#, fuzzy
382msgid "" 393msgid ""
383"An address expected to be in the answer section. If not set, uses whatever" 394"An address expected to be in the answer section. If not set, uses whatever"
@@ -385,96 +396,95 @@ msgstr ""
385"Adresse die in der ANSWER SECTION erwartet wird.wenn nicht gesetzt, " 396"Adresse die in der ANSWER SECTION erwartet wird.wenn nicht gesetzt, "
386"ubernommen aus -l" 397"ubernommen aus -l"
387 398
388#: plugins/check_dig.c:347 399#: plugins/check_dig.c:356
389msgid "was in -l" 400msgid "was in -l"
390msgstr "" 401msgstr ""
391 402
392#: plugins/check_dig.c:349 403#: plugins/check_dig.c:358
393msgid "Pass STRING as argument(s) to dig" 404msgid "Pass STRING as argument(s) to dig"
394msgstr "" 405msgstr ""
395 406
396#: plugins/check_disk.c:216 407#: plugins/check_disk.c:241
397#, fuzzy, c-format 408#, fuzzy, c-format
398msgid "DISK %s: %s not found\n" 409msgid "DISK %s: %s not found\n"
399msgstr "%s [%s nicht gefunden]" 410msgstr "%s [%s nicht gefunden]"
400 411
401#: plugins/check_disk.c:216 plugins/check_disk.c:956 plugins/check_dns.c:241 412#: plugins/check_disk.c:241 plugins/check_disk.c:1035 plugins/check_dns.c:295
402#: plugins/check_dummy.c:74 plugins/check_mysql.c:299 413#: plugins/check_dummy.c:74 plugins/check_mysql.c:313
403#: plugins/check_nagios.c:104 plugins/check_nagios.c:168 414#: plugins/check_nagios.c:104 plugins/check_nagios.c:168
404#: plugins/check_nagios.c:172 plugins/check_pgsql.c:601 415#: plugins/check_nagios.c:172 plugins/check_pgsql.c:575
405#: plugins/check_pgsql.c:618 plugins/check_pgsql.c:627 416#: plugins/check_pgsql.c:592 plugins/check_pgsql.c:601
406#: plugins/check_pgsql.c:642 plugins/check_procs.c:351 417#: plugins/check_pgsql.c:616 plugins/check_procs.c:374
407#, c-format 418#, c-format
408msgid "CRITICAL" 419msgid "CRITICAL"
409msgstr "CRITICAL" 420msgstr "CRITICAL"
410 421
411#: plugins/check_disk.c:550 422#: plugins/check_disk.c:645
412#, c-format 423#, c-format
413msgid "unit type %s not known\n" 424msgid "unit type %s not known\n"
414msgstr "unbekannter unit type: %s\n" 425msgstr "unbekannter unit type: %s\n"
415 426
416#: plugins/check_disk.c:553 427#: plugins/check_disk.c:648
417#, c-format 428#, c-format
418msgid "failed allocating storage for '%s'\n" 429msgid "failed allocating storage for '%s'\n"
419msgstr "konnte keinen Speicher für '%s' reservieren\n" 430msgstr "konnte keinen Speicher für '%s' reservieren\n"
420 431
421#: plugins/check_disk.c:577 plugins/check_disk.c:618 plugins/check_disk.c:626 432#: plugins/check_disk.c:676 plugins/check_disk.c:724 plugins/check_disk.c:732
422#: plugins/check_disk.c:633 plugins/check_disk.c:637 plugins/check_disk.c:677 433#: plugins/check_disk.c:740 plugins/check_disk.c:744 plugins/check_disk.c:789
423#: plugins/check_disk.c:683 plugins/check_disk.c:702 plugins/check_dummy.c:77 434#: plugins/check_disk.c:795 plugins/check_disk.c:818 plugins/check_dummy.c:77
424#: plugins/check_dummy.c:80 plugins/check_pgsql.c:643 435#: plugins/check_dummy.c:80 plugins/check_pgsql.c:617 plugins/check_procs.c:547
425#: plugins/check_procs.c:506
426#, c-format 436#, c-format
427msgid "UNKNOWN" 437msgid "UNKNOWN"
428msgstr "UNKNOWN" 438msgstr "UNKNOWN"
429 439
430#: plugins/check_disk.c:577 440#: plugins/check_disk.c:676
431msgid "Must set a threshold value before using -p\n" 441msgid "Must set a threshold value before using -p\n"
432msgstr "" 442msgstr ""
433 443
434#: plugins/check_disk.c:618 444#: plugins/check_disk.c:724
435msgid "Must set -E before selecting paths\n" 445msgid "Must set -E before selecting paths\n"
436msgstr "" 446msgstr ""
437 447
438#: plugins/check_disk.c:626 448#: plugins/check_disk.c:732
439msgid "Must set group value before selecting paths\n" 449msgid "Must set group value before selecting paths\n"
440msgstr "" 450msgstr ""
441 451
442#: plugins/check_disk.c:633 452#: plugins/check_disk.c:740
443msgid "" 453msgid ""
444"Paths need to be selected before using -i/-I. Use -A to select all paths " 454"Paths need to be selected before using -i/-I. Use -A to select all paths "
445"explicitly" 455"explicitly"
446msgstr "" 456msgstr ""
447 457
448#: plugins/check_disk.c:637 plugins/check_disk.c:683 plugins/check_procs.c:506 458#: plugins/check_disk.c:744 plugins/check_disk.c:795 plugins/check_procs.c:547
449msgid "Could not compile regular expression" 459msgid "Could not compile regular expression"
450msgstr "" 460msgstr ""
451 461
452#: plugins/check_disk.c:677 462#: plugins/check_disk.c:789
453msgid "Must set a threshold value before using -r/-R\n" 463msgid "Must set a threshold value before using -r/-R\n"
454msgstr "" 464msgstr ""
455 465
456#: plugins/check_disk.c:703 466#: plugins/check_disk.c:819
457msgid "Regular expression did not match any path or disk" 467msgid "Regular expression did not match any path or disk"
458msgstr "" 468msgstr ""
459 469
460#: plugins/check_disk.c:749 470#: plugins/check_disk.c:865
461#, fuzzy 471#, fuzzy
462msgid "Unknown argument" 472msgid "Unknown argument"
463msgstr "Unbekanntes Argument" 473msgstr "Unbekanntes Argument"
464 474
465#: plugins/check_disk.c:783 475#: plugins/check_disk.c:899
466#, c-format 476#, c-format
467msgid " for %s\n" 477msgid " for %s\n"
468msgstr "" 478msgstr ""
469 479
470#: plugins/check_disk.c:857 480#: plugins/check_disk.c:928
471#, fuzzy 481#, fuzzy
472msgid "" 482msgid ""
473"This plugin checks the amount of used disk space on a mounted file system" 483"This plugin checks the amount of used disk space on a mounted file system"
474msgstr "" 484msgstr ""
475"Dieses Plugin prüft den freien Speicher auf einem gemounteten Filesystem" 485"Dieses Plugin prüft den freien Speicher auf einem gemounteten Filesystem"
476 486
477#: plugins/check_disk.c:858 487#: plugins/check_disk.c:929
478#, fuzzy 488#, fuzzy
479msgid "" 489msgid ""
480"and generates an alert if free space is less than one of the threshold values" 490"and generates an alert if free space is less than one of the threshold values"
@@ -482,343 +492,387 @@ msgstr ""
482"und erzeugt einen Alarm wenn einer der angegebenen Schwellwerte " 492"und erzeugt einen Alarm wenn einer der angegebenen Schwellwerte "
483"unterschritten wird." 493"unterschritten wird."
484 494
485#: plugins/check_disk.c:868 495#: plugins/check_disk.c:939
486msgid "Exit with WARNING status if less than INTEGER units of disk are free" 496msgid "Exit with WARNING status if less than INTEGER units of disk are free"
487msgstr "" 497msgstr ""
488 498
489#: plugins/check_disk.c:870 499#: plugins/check_disk.c:941
490msgid "Exit with WARNING status if less than PERCENT of disk space is free" 500msgid "Exit with WARNING status if less than PERCENT of disk space is free"
491msgstr "" 501msgstr ""
492 502
493#: plugins/check_disk.c:872 503#: plugins/check_disk.c:943
494msgid "Exit with CRITICAL status if less than INTEGER units of disk are free" 504msgid "Exit with CRITICAL status if less than INTEGER units of disk are free"
495msgstr "" 505msgstr ""
496 506
497#: plugins/check_disk.c:874 507#: plugins/check_disk.c:945
498msgid "Exit with CRITICAL status if less than PERCENT of disk space is free" 508msgid "Exit with CRITICAL status if less than PERCENT of disk space is free"
499msgstr "" 509msgstr ""
500 510
501#: plugins/check_disk.c:876 511#: plugins/check_disk.c:947
502msgid "Exit with WARNING status if less than PERCENT of inode space is free" 512msgid "Exit with WARNING status if less than PERCENT of inode space is free"
503msgstr "" 513msgstr ""
504 514
505#: plugins/check_disk.c:878 515#: plugins/check_disk.c:949
506msgid "Exit with CRITICAL status if less than PERCENT of inode space is free" 516msgid "Exit with CRITICAL status if less than PERCENT of inode space is free"
507msgstr "" 517msgstr ""
508 518
509#: plugins/check_disk.c:880 519#: plugins/check_disk.c:951
510msgid "Path or partition (may be repeated)" 520msgid ""
521"Mount point or block device as emitted by the mount(8) command (may be "
522"repeated)"
511msgstr "" 523msgstr ""
512 524
513#: plugins/check_disk.c:882 525#: plugins/check_disk.c:953
514msgid "Ignore device (only works if -p unspecified)" 526msgid "Ignore device (only works if -p unspecified)"
515msgstr "" 527msgstr ""
516 528
517#: plugins/check_disk.c:884 529#: plugins/check_disk.c:955
518msgid "Clear thresholds" 530msgid "Clear thresholds"
519msgstr "" 531msgstr ""
520 532
521#: plugins/check_disk.c:886 533#: plugins/check_disk.c:957
522msgid "For paths or partitions specified with -p, only check for exact paths" 534msgid "For paths or partitions specified with -p, only check for exact paths"
523msgstr "" 535msgstr ""
524 536
525#: plugins/check_disk.c:888 537#: plugins/check_disk.c:959
526msgid "Display only devices/mountpoints with errors" 538msgid "Display only devices/mountpoints with errors"
527msgstr "" 539msgstr ""
528 540
529#: plugins/check_disk.c:890 541#: plugins/check_disk.c:961
530msgid "Don't account root-reserved blocks into freespace in perfdata" 542msgid "Don't account root-reserved blocks into freespace in perfdata"
531msgstr "" 543msgstr ""
532 544
533#: plugins/check_disk.c:892 545#: plugins/check_disk.c:963
546msgid "Display inode usage in perfdata"
547msgstr ""
548
549#: plugins/check_disk.c:965
534msgid "" 550msgid ""
535"Group paths. Thresholds apply to (free-)space of all partitions together" 551"Group paths. Thresholds apply to (free-)space of all partitions together"
536msgstr "" 552msgstr ""
537 553
538#: plugins/check_disk.c:894 554#: plugins/check_disk.c:967
539msgid "Same as '--units kB'" 555msgid "Same as '--units kB'"
540msgstr "" 556msgstr ""
541 557
542#: plugins/check_disk.c:896 558#: plugins/check_disk.c:969
543msgid "Only check local filesystems" 559msgid "Only check local filesystems"
544msgstr "" 560msgstr ""
545 561
546#: plugins/check_disk.c:898 562#: plugins/check_disk.c:971
547msgid "" 563msgid ""
548"Only check local filesystems against thresholds. Yet call stat on remote " 564"Only check local filesystems against thresholds. Yet call stat on remote "
549"filesystems" 565"filesystems"
550msgstr "" 566msgstr ""
551 567
552#: plugins/check_disk.c:899 568#: plugins/check_disk.c:972
553msgid "to test if they are accessible (e.g. to detect Stale NFS Handles)" 569msgid "to test if they are accessible (e.g. to detect Stale NFS Handles)"
554msgstr "" 570msgstr ""
555 571
556#: plugins/check_disk.c:901 572#: plugins/check_disk.c:974
557msgid "Display the mountpoint instead of the partition" 573msgid "Display the (block) device instead of the mount point"
558msgstr "" 574msgstr ""
559 575
560#: plugins/check_disk.c:903 576#: plugins/check_disk.c:976
561msgid "Same as '--units MB'" 577msgid "Same as '--units MB'"
562msgstr "" 578msgstr ""
563 579
564#: plugins/check_disk.c:905 580#: plugins/check_disk.c:978
565msgid "Explicitly select all paths. This is equivalent to -R '.*'" 581msgid "Explicitly select all paths. This is equivalent to -R '.*'"
566msgstr "" 582msgstr ""
567 583
568#: plugins/check_disk.c:907 584#: plugins/check_disk.c:980
569msgid "" 585msgid ""
570"Case insensitive regular expression for path/partition (may be repeated)" 586"Case insensitive regular expression for path/partition (may be repeated)"
571msgstr "" 587msgstr ""
572 588
573#: plugins/check_disk.c:909 589#: plugins/check_disk.c:982
574msgid "Regular expression for path or partition (may be repeated)" 590msgid "Regular expression for path or partition (may be repeated)"
575msgstr "" 591msgstr ""
576 592
577#: plugins/check_disk.c:911 593#: plugins/check_disk.c:984
578msgid "" 594msgid ""
579"Regular expression to ignore selected path/partition (case insensitive) (may " 595"Regular expression to ignore selected path/partition (case insensitive) (may "
580"be repeated)" 596"be repeated)"
581msgstr "" 597msgstr ""
582 598
583#: plugins/check_disk.c:913 599#: plugins/check_disk.c:986
584msgid "" 600msgid ""
585"Regular expression to ignore selected path or partition (may be repeated)" 601"Regular expression to ignore selected path or partition (may be repeated)"
586msgstr "" 602msgstr ""
587 603
588#: plugins/check_disk.c:916 604#: plugins/check_disk.c:988
605msgid ""
606"Return OK if no filesystem matches, filesystem does not exist or is "
607"inaccessible."
608msgstr ""
609
610#: plugins/check_disk.c:989
611msgid "(Provide this option before -p / -r / --ereg-path if used)"
612msgstr ""
613
614#: plugins/check_disk.c:992
589msgid "Choose bytes, kB, MB, GB, TB (default: MB)" 615msgid "Choose bytes, kB, MB, GB, TB (default: MB)"
590msgstr "" 616msgstr ""
591 617
592#: plugins/check_disk.c:919 618#: plugins/check_disk.c:995
593msgid "Ignore all filesystems of indicated type (may be repeated)" 619msgid "Ignore all filesystems of indicated type (may be repeated)"
594msgstr "" 620msgstr ""
595 621
596#: plugins/check_disk.c:921 622#: plugins/check_disk.c:997
597msgid "Check only filesystems of indicated type (may be repeated)" 623msgid "Check only filesystems of indicated type (may be repeated)"
598msgstr "" 624msgstr ""
599 625
600#: plugins/check_disk.c:926 626#: plugins/check_disk.c:1002
601msgid "Checks /tmp and /var at 10% and 5%, and / at 100MB and 50MB" 627msgid "Checks /tmp and /var at 10% and 5%, and / at 100MB and 50MB"
602msgstr "" 628msgstr ""
603 629
604#: plugins/check_disk.c:928 630#: plugins/check_disk.c:1004
605msgid "" 631msgid ""
606"Checks all filesystems not matching -r at 100M and 50M. The fs matching the -" 632"Checks all filesystems not matching -r at 100M and 50M. The fs matching the -"
607"r regex" 633"r regex"
608msgstr "" 634msgstr ""
609 635
610#: plugins/check_disk.c:929 636#: plugins/check_disk.c:1005
611msgid "" 637msgid ""
612"are grouped which means the freespace thresholds are applied to all disks " 638"are grouped which means the freespace thresholds are applied to all disks "
613"together" 639"together"
614msgstr "" 640msgstr ""
615 641
616#: plugins/check_disk.c:931 642#: plugins/check_disk.c:1007
617msgid "" 643msgid ""
618"Checks /foo for 1000M/500M and /bar for 5/3%. All remaining volumes use " 644"Checks /foo for 1000M/500M and /bar for 5/3%. All remaining volumes use "
619"100M/50M" 645"100M/50M"
620msgstr "" 646msgstr ""
621 647
622#: plugins/check_disk.c:957 648#: plugins/check_disk.c:1036
623#, c-format 649#, c-format
624msgid "%s %s: %s\n" 650msgid "%s %s: %s\n"
625msgstr "" 651msgstr ""
626 652
627#: plugins/check_disk.c:957 653#: plugins/check_disk.c:1036
628msgid "is not accessible" 654msgid "is not accessible"
629msgstr "" 655msgstr ""
630 656
631#: plugins/check_dns.c:116 657#: plugins/check_dns.c:120
632#, fuzzy 658#, fuzzy
633msgid "nslookup returned an error status" 659msgid "nslookup returned an error status"
634msgstr "nslookup hat einen Fehler zurückgegeben" 660msgstr "nslookup hat einen Fehler zurückgegeben"
635 661
636#: plugins/check_dns.c:134 662#: plugins/check_dns.c:138
637msgid "Warning plugin error" 663msgid "Warning plugin error"
638msgstr "Warnung Plugin Fehler" 664msgstr "Warnung Plugin Fehler"
639 665
640#: plugins/check_dns.c:154 666#: plugins/check_dns.c:156
667#, fuzzy, c-format
668msgid "DNS CRITICAL - '%s' returned empty server string\n"
669msgstr "DNS CRITICAL - '%s' hat einen leeren Hostnamen zurückgegeben\n"
670
671#: plugins/check_dns.c:161
672#, fuzzy, c-format
673msgid "DNS CRITICAL - No response from DNS %s\n"
674msgstr "Keine Antwort von DNS %s\n"
675
676#: plugins/check_dns.c:180
641#, c-format 677#, c-format
642msgid "DNS CRITICAL - '%s' returned empty host name string\n" 678msgid "DNS CRITICAL - '%s' returned empty host name string\n"
643msgstr "DNS CRITICAL - '%s' hat einen leeren Hostnamen zurückgegeben\n" 679msgstr "DNS CRITICAL - '%s' hat einen leeren Hostnamen zurückgegeben\n"
644 680
645#: plugins/check_dns.c:160 681#: plugins/check_dns.c:186
646msgid "Non-authoritative answer:" 682msgid "Non-authoritative answer:"
647msgstr "" 683msgstr ""
648 684
649#: plugins/check_dns.c:201 685#: plugins/check_dns.c:215
686#, fuzzy, c-format
687msgid "Domain '%s' was not found by the server\n"
688msgstr "Domäne %s wurde vom Server nicht gefunden\n"
689
690#: plugins/check_dns.c:234
650#, fuzzy, c-format 691#, fuzzy, c-format
651msgid "DNS CRITICAL - '%s' msg parsing exited with no address\n" 692msgid "DNS CRITICAL - '%s' msg parsing exited with no address\n"
652msgstr "DNS CRITICAL - '%s' Ausgabeverarbeitung hat keine Adresse ergeben\n" 693msgstr "DNS CRITICAL - '%s' Ausgabeverarbeitung hat keine Adresse ergeben\n"
653 694
654#: plugins/check_dns.c:216 695#: plugins/check_dns.c:265
655#, fuzzy, c-format 696#, fuzzy, c-format
656msgid "expected '%s' but got '%s'" 697msgid "expected '%s' but got '%s'"
657msgstr "Erwartet: %s aber: %s erhalten" 698msgstr "Erwartet: %s aber: %s erhalten"
658 699
659#: plugins/check_dns.c:223 700#: plugins/check_dns.c:272
701#, fuzzy, c-format
702msgid "Domain '%s' was found by the server: '%s'\n"
703msgstr "Domäne %s wurde vom Server nicht gefunden\n"
704
705#: plugins/check_dns.c:282
660#, c-format 706#, c-format
661msgid "server %s is not authoritative for %s" 707msgid "server %s is not authoritative for %s"
662msgstr "Server %s ist nicht autoritativ für %s" 708msgstr "Server %s ist nicht autoritativ für %s"
663 709
664#: plugins/check_dns.c:237 plugins/check_dummy.c:68 plugins/check_nagios.c:182 710#: plugins/check_dns.c:291 plugins/check_dummy.c:68 plugins/check_nagios.c:182
665#: plugins/check_pgsql.c:638 plugins/check_procs.c:344 711#: plugins/check_pgsql.c:612 plugins/check_procs.c:367
666#, c-format 712#, c-format
667msgid "OK" 713msgid "OK"
668msgstr "OK" 714msgstr "OK"
669 715
670#: plugins/check_dns.c:239 plugins/check_dummy.c:71 plugins/check_mysql.c:296 716#: plugins/check_dns.c:293 plugins/check_dummy.c:71 plugins/check_mysql.c:310
671#: plugins/check_nagios.c:182 plugins/check_pgsql.c:607 717#: plugins/check_nagios.c:182 plugins/check_pgsql.c:581
672#: plugins/check_pgsql.c:612 plugins/check_pgsql.c:640 718#: plugins/check_pgsql.c:586 plugins/check_pgsql.c:614
673#: plugins/check_procs.c:346 719#: plugins/check_procs.c:369
674#, c-format 720#, c-format
675msgid "WARNING" 721msgid "WARNING"
676msgstr "WARNING" 722msgstr "WARNING"
677 723
678#: plugins/check_dns.c:243 724#: plugins/check_dns.c:297
679#, fuzzy, c-format 725#, fuzzy, c-format
680msgid "%.3f second response time" 726msgid "%.3f second response time"
681msgid_plural "%.3f seconds response time" 727msgid_plural "%.3f seconds response time"
682msgstr[0] "%.3f Sekunden Antwortzeit " 728msgstr[0] "%.3f Sekunden Antwortzeit "
683msgstr[1] "%.3f Sekunden Antwortzeit " 729msgstr[1] "%.3f Sekunden Antwortzeit "
684 730
685#: plugins/check_dns.c:244 731#: plugins/check_dns.c:298
686#, fuzzy, c-format 732#, fuzzy, c-format
687msgid ". %s returns %s" 733msgid ". %s returns %s"
688msgstr "%s hat %s zurückgegeben" 734msgstr "%s hat %s zurückgegeben"
689 735
690#: plugins/check_dns.c:248 736#: plugins/check_dns.c:318
691#, c-format 737#, c-format
692msgid "DNS WARNING - %s\n" 738msgid "DNS WARNING - %s\n"
693msgstr "DNS WARNING - %s\n" 739msgstr "DNS WARNING - %s\n"
694 740
695#: plugins/check_dns.c:249 plugins/check_dns.c:252 plugins/check_dns.c:255 741#: plugins/check_dns.c:319 plugins/check_dns.c:322 plugins/check_dns.c:325
696msgid " Probably a non-existent host/domain" 742msgid " Probably a non-existent host/domain"
697msgstr "nicht existierender Host/Domain" 743msgstr "nicht existierender Host/Domain"
698 744
699#: plugins/check_dns.c:251 745#: plugins/check_dns.c:321
700#, c-format 746#, c-format
701msgid "DNS CRITICAL - %s\n" 747msgid "DNS CRITICAL - %s\n"
702msgstr "DNS CRITICAL - %s\n" 748msgstr "DNS CRITICAL - %s\n"
703 749
704#: plugins/check_dns.c:254 750#: plugins/check_dns.c:324
705#, fuzzy, c-format 751#, fuzzy, c-format
706msgid "DNS UNKNOWN - %s\n" 752msgid "DNS UNKNOWN - %s\n"
707msgstr "DNS UNKNOWN - %s\n" 753msgstr "DNS UNKNOWN - %s\n"
708 754
709#: plugins/check_dns.c:267 755#: plugins/check_dns.c:368
710msgid "Note: nslookup is deprecated and may be removed from future releases." 756msgid "Note: nslookup is deprecated and may be removed from future releases."
711msgstr "" 757msgstr ""
712 758
713#: plugins/check_dns.c:268 759#: plugins/check_dns.c:369
714msgid "Consider using the `dig' or `host' programs instead. Run nslookup with" 760msgid "Consider using the `dig' or `host' programs instead. Run nslookup with"
715msgstr "" 761msgstr ""
716 762
717#: plugins/check_dns.c:269 763#: plugins/check_dns.c:370
718msgid "the `-sil[ent]' option to prevent this message from appearing." 764msgid "the `-sil[ent]' option to prevent this message from appearing."
719msgstr "" 765msgstr ""
720 766
721#: plugins/check_dns.c:274 767#: plugins/check_dns.c:375 plugins/check_dns.c:377
722#, c-format 768#, c-format
723msgid "No response from DNS %s\n" 769msgid "No response from DNS %s\n"
724msgstr "Keine Antwort von DNS %s\n" 770msgstr "Keine Antwort von DNS %s\n"
725 771
726#: plugins/check_dns.c:278 772#: plugins/check_dns.c:381
727#, c-format 773#, c-format
728msgid "DNS %s has no records\n" 774msgid "DNS %s has no records\n"
729msgstr "Nameserver %s hat keine Datensätze\n" 775msgstr "Nameserver %s hat keine Datensätze\n"
730 776
731#: plugins/check_dns.c:286 777#: plugins/check_dns.c:389
732#, c-format 778#, c-format
733msgid "Connection to DNS %s was refused\n" 779msgid "Connection to DNS %s was refused\n"
734msgstr "Verbindung zum Nameserver %s wurde verweigert\n" 780msgstr "Verbindung zum Nameserver %s wurde verweigert\n"
735 781
736#: plugins/check_dns.c:290 782#: plugins/check_dns.c:393
737#, c-format 783#, c-format
738msgid "Query was refused by DNS server at %s\n" 784msgid "Query was refused by DNS server at %s\n"
739msgstr "" 785msgstr ""
740 786
741#: plugins/check_dns.c:294 787#: plugins/check_dns.c:397
742#, c-format 788#, c-format
743msgid "No information returned by DNS server at %s\n" 789msgid "No information returned by DNS server at %s\n"
744msgstr "" 790msgstr ""
745 791
746#: plugins/check_dns.c:300 792#: plugins/check_dns.c:401
747#, c-format
748msgid "Domain %s was not found by the server\n"
749msgstr "Domäne %s wurde vom Server nicht gefunden\n"
750
751#: plugins/check_dns.c:304
752msgid "Network is unreachable\n" 793msgid "Network is unreachable\n"
753msgstr "Netzwerk nicht erreichbar\n" 794msgstr "Netzwerk nicht erreichbar\n"
754 795
755#: plugins/check_dns.c:308 796#: plugins/check_dns.c:405
756#, c-format 797#, c-format
757msgid "DNS failure for %s\n" 798msgid "DNS failure for %s\n"
758msgstr "DNS Fehler für %s\n" 799msgstr "DNS Fehler für %s\n"
759 800
760#: plugins/check_dns.c:372 plugins/check_dns.c:380 plugins/check_dns.c:387 801#: plugins/check_dns.c:471 plugins/check_dns.c:479 plugins/check_dns.c:486
761#: plugins/check_dns.c:392 plugins/check_dns.c:414 plugins/check_dns.c:422 802#: plugins/check_dns.c:491 plugins/check_dns.c:533 plugins/check_dns.c:541
762#: plugins/check_game.c:211 plugins/check_game.c:219 803#: plugins/check_game.c:211 plugins/check_game.c:219
763msgid "Input buffer overflow\n" 804msgid "Input buffer overflow\n"
764msgstr "Eingabe-Pufferüberlauf\n" 805msgstr "Eingabe-Pufferüberlauf\n"
765 806
766#: plugins/check_dns.c:450 807#: plugins/check_dns.c:576
767msgid "" 808msgid ""
768"This plugin uses the nslookup program to obtain the IP address for the given " 809"This plugin uses the nslookup program to obtain the IP address for the given "
769"host/domain query." 810"host/domain query."
770msgstr "" 811msgstr ""
771 812
772#: plugins/check_dns.c:451 813#: plugins/check_dns.c:577
773msgid "An optional DNS server to use may be specified." 814msgid "An optional DNS server to use may be specified."
774msgstr "" 815msgstr ""
775 816
776#: plugins/check_dns.c:452 817#: plugins/check_dns.c:578
777msgid "" 818msgid ""
778"If no DNS server is specified, the default server(s) specified in /etc/" 819"If no DNS server is specified, the default server(s) specified in /etc/"
779"resolv.conf will be used." 820"resolv.conf will be used."
780msgstr "" 821msgstr ""
781 822
782#: plugins/check_dns.c:462 823#: plugins/check_dns.c:588
783msgid "The name or address you want to query" 824msgid "The name or address you want to query"
784msgstr "" 825msgstr ""
785 826
786#: plugins/check_dns.c:464 827#: plugins/check_dns.c:590
787msgid "Optional DNS server you want to use for the lookup" 828msgid "Optional DNS server you want to use for the lookup"
788msgstr "" 829msgstr ""
789 830
790#: plugins/check_dns.c:466 831#: plugins/check_dns.c:592
791msgid "" 832msgid ""
792"Optional IP-ADDRESS you expect the DNS server to return. HOST must end with" 833"Optional IP-ADDRESS/CIDR you expect the DNS server to return. HOST must end"
793msgstr "" 834msgstr ""
794 835
795#: plugins/check_dns.c:467 836#: plugins/check_dns.c:593
796msgid "" 837msgid ""
797"a dot (.). This option can be repeated multiple times (Returns OK if any" 838"with a dot (.). This option can be repeated multiple times (Returns OK if any"
798msgstr "" 839msgstr ""
799 840
800#: plugins/check_dns.c:468 841#: plugins/check_dns.c:594
801msgid "" 842msgid "value matches)."
802"value match). If multiple addresses are returned at once, you have to match"
803msgstr "" 843msgstr ""
804 844
805#: plugins/check_dns.c:469 845#: plugins/check_dns.c:596
806msgid "" 846msgid ""
807"the whole string of addresses separated with commas (sorted alphabetically)." 847"Expect the DNS server to return NXDOMAIN (i.e. the domain was not found)"
808msgstr "" 848msgstr ""
809 849
810#: plugins/check_dns.c:471 850#: plugins/check_dns.c:597
851msgid "Cannot be used together with -a"
852msgstr ""
853
854#: plugins/check_dns.c:599
811msgid "Optionally expect the DNS server to be authoritative for the lookup" 855msgid "Optionally expect the DNS server to be authoritative for the lookup"
812msgstr "" 856msgstr ""
813 857
814#: plugins/check_dns.c:473 858#: plugins/check_dns.c:601
815msgid "Return warning if elapsed time exceeds value. Default off" 859msgid "Return warning if elapsed time exceeds value. Default off"
816msgstr "" 860msgstr ""
817 861
818#: plugins/check_dns.c:475 862#: plugins/check_dns.c:603
819msgid "Return critical if elapsed time exceeds value. Default off" 863msgid "Return critical if elapsed time exceeds value. Default off"
820msgstr "" 864msgstr ""
821 865
866#: plugins/check_dns.c:605
867msgid ""
868"Return critical if the list of expected addresses does not match all "
869"addresses"
870msgstr ""
871
872#: plugins/check_dns.c:606
873msgid "returned. Default off"
874msgstr ""
875
822#: plugins/check_dummy.c:62 876#: plugins/check_dummy.c:62
823msgid "Arguments to check_dummy must be an integer" 877msgid "Arguments to check_dummy must be an integer"
824msgstr "Argument für check_dummy muss ein Integer sein" 878msgstr "Argument für check_dummy muss ein Integer sein"
@@ -837,179 +891,188 @@ msgstr ""
837msgid "of the <state> argument with optional text" 891msgid "of the <state> argument with optional text"
838msgstr "" 892msgstr ""
839 893
840#: plugins/check_fping.c:125 plugins/check_hpjd.c:128 plugins/check_ping.c:438 894#: plugins/check_fping.c:127 plugins/check_hpjd.c:134 plugins/check_ping.c:444
841#: plugins/check_swap.c:175 plugins/check_users.c:94 plugins/urlize.c:110 895#: plugins/check_swap.c:193 plugins/check_users.c:130 plugins/urlize.c:109
842#, c-format 896#, c-format
843msgid "Could not open pipe: %s\n" 897msgid "Could not open pipe: %s\n"
844msgstr "Pipe: %s konnte nicht geöffnet werden\n" 898msgstr "Pipe: %s konnte nicht geöffnet werden\n"
845 899
846#: plugins/check_fping.c:131 plugins/check_hpjd.c:134 plugins/check_load.c:153 900#: plugins/check_fping.c:133 plugins/check_hpjd.c:140 plugins/check_load.c:159
847#: plugins/check_swap.c:181 plugins/check_users.c:100 plugins/urlize.c:116 901#: plugins/check_swap.c:199 plugins/check_users.c:136 plugins/urlize.c:115
848#, c-format 902#, c-format
849msgid "Could not open stderr for %s\n" 903msgid "Could not open stderr for %s\n"
850msgstr "Konnte stderr nicht öffnen für: %s\n" 904msgstr "Konnte stderr nicht öffnen für: %s\n"
851 905
852#: plugins/check_fping.c:157 906#: plugins/check_fping.c:161
853#, fuzzy 907#, fuzzy
854msgid "FPING UNKNOWN - IP address not found\n" 908msgid "FPING UNKNOWN - IP address not found\n"
855msgstr "FPING UNKNOWN - %s nicht gefunden\n" 909msgstr "FPING UNKNOWN - %s nicht gefunden\n"
856 910
857#: plugins/check_fping.c:160 911#: plugins/check_fping.c:164
858msgid "FPING UNKNOWN - invalid commandline argument\n" 912msgid "FPING UNKNOWN - invalid commandline argument\n"
859msgstr "" 913msgstr ""
860 914
861#: plugins/check_fping.c:163 915#: plugins/check_fping.c:167
862#, fuzzy 916#, fuzzy
863msgid "FPING UNKNOWN - failed system call\n" 917msgid "FPING UNKNOWN - failed system call\n"
864msgstr "FPING UNKNOWN - %s nicht gefunden\n" 918msgstr "FPING UNKNOWN - %s nicht gefunden\n"
865 919
866#: plugins/check_fping.c:187 920#: plugins/check_fping.c:194
921#, fuzzy, c-format
922msgid "FPING %s - %s (rta=%f ms)|%s\n"
923msgstr "FPING %s - %s (verloren=%.0f%% )|%s\n"
924
925#: plugins/check_fping.c:202
867#, c-format 926#, c-format
868msgid "FPING UNKNOWN - %s not found\n" 927msgid "FPING UNKNOWN - %s not found\n"
869msgstr "FPING UNKNOWN - %s nicht gefunden\n" 928msgstr "FPING UNKNOWN - %s nicht gefunden\n"
870 929
871#: plugins/check_fping.c:191 930#: plugins/check_fping.c:206
872#, c-format 931#, c-format
873msgid "FPING CRITICAL - %s is unreachable\n" 932msgid "FPING CRITICAL - %s is unreachable\n"
874msgstr "FPING CRITICAL - %s ist nicht erreichbar\n" 933msgstr "FPING CRITICAL - %s ist nicht erreichbar\n"
875 934
876#: plugins/check_fping.c:196 935#: plugins/check_fping.c:211
877#, fuzzy, c-format 936#, fuzzy, c-format
878msgid "FPING UNKNOWN - %s parameter error\n" 937msgid "FPING UNKNOWN - %s parameter error\n"
879msgstr "FPING UNKNOWN - %s nicht gefunden\n" 938msgstr "FPING UNKNOWN - %s nicht gefunden\n"
880 939
881#: plugins/check_fping.c:200 plugins/check_fping.c:240 940#: plugins/check_fping.c:215 plugins/check_fping.c:255
882#, c-format 941#, c-format
883msgid "FPING CRITICAL - %s is down\n" 942msgid "FPING CRITICAL - %s is down\n"
884msgstr "FPING CRITICAL - %s ist down\n" 943msgstr "FPING CRITICAL - %s ist down\n"
885 944
886#: plugins/check_fping.c:227 945#: plugins/check_fping.c:242
887#, c-format 946#, c-format
888msgid "FPING %s - %s (loss=%.0f%%, rta=%f ms)|%s %s\n" 947msgid "FPING %s - %s (loss=%.0f%%, rta=%f ms)|%s %s\n"
889msgstr "FPING %s - %s (verloren=%.0f%%, rta=%f ms)|%s %s\n" 948msgstr "FPING %s - %s (verloren=%.0f%%, rta=%f ms)|%s %s\n"
890 949
891#: plugins/check_fping.c:253 950#: plugins/check_fping.c:268
892#, c-format 951#, c-format
893msgid "FPING %s - %s (loss=%.0f%% )|%s\n" 952msgid "FPING %s - %s (loss=%.0f%% )|%s\n"
894msgstr "FPING %s - %s (verloren=%.0f%% )|%s\n" 953msgstr "FPING %s - %s (verloren=%.0f%% )|%s\n"
895 954
896#: plugins/check_fping.c:326 plugins/check_fping.c:332 955#: plugins/check_fping.c:345 plugins/check_fping.c:351 plugins/check_hpjd.c:345
897#: plugins/check_hpjd.c:338 plugins/check_hpjd.c:361 plugins/check_mysql.c:371 956#: plugins/check_hpjd.c:376 plugins/check_mysql.c:389 plugins/check_mysql.c:476
898#: plugins/check_mysql.c:455 plugins/check_ntp.c:709 957#: plugins/check_ntp.c:719 plugins/check_ntp_peer.c:497
899#: plugins/check_ntp_peer.c:497 plugins/check_ntp_time.c:496 958#: plugins/check_ntp_time.c:498 plugins/check_pgsql.c:338
900#: plugins/check_pgsql.c:335 plugins/check_ping.c:295 plugins/check_ping.c:418 959#: plugins/check_ping.c:301 plugins/check_ping.c:424 plugins/check_radius.c:279
901#: plugins/check_radius.c:264 plugins/check_real.c:314 960#: plugins/check_real.c:315 plugins/check_real.c:377 plugins/check_smtp.c:525
902#: plugins/check_real.c:376 plugins/check_smtp.c:499 plugins/check_smtp.c:641 961#: plugins/check_smtp.c:680 plugins/check_ssh.c:162 plugins/check_time.c:240
903#: plugins/check_ssh.c:157 plugins/check_time.c:240 plugins/check_time.c:315 962#: plugins/check_time.c:315 plugins/check_ups.c:507 plugins/check_ups.c:576
904#: plugins/check_ups.c:504 plugins/check_ups.c:573
905msgid "Invalid hostname/address" 963msgid "Invalid hostname/address"
906msgstr "Ungültige(r) Hostname/Adresse" 964msgstr "Ungültige(r) Hostname/Adresse"
907 965
908#: plugins/check_fping.c:345 plugins/check_ldap.c:353 plugins/check_ping.c:246 966#: plugins/check_fping.c:364 plugins/check_ldap.c:400 plugins/check_ping.c:252
967#: plugins-root/check_icmp.c:474
909msgid "IPv6 support not available\n" 968msgid "IPv6 support not available\n"
910msgstr "" 969msgstr ""
911 970
912#: plugins/check_fping.c:378 971#: plugins/check_fping.c:397
913msgid "Packet size must be a positive integer" 972msgid "Packet size must be a positive integer"
914msgstr "Paketgröße muss ein positiver Integer sein" 973msgstr "Paketgröße muss ein positiver Integer sein"
915 974
916#: plugins/check_fping.c:384 975#: plugins/check_fping.c:403
917msgid "Packet count must be a positive integer" 976msgid "Packet count must be a positive integer"
918msgstr "Paketanzahl muss ein positiver Integer sein" 977msgstr "Paketanzahl muss ein positiver Integer sein"
919 978
920#: plugins/check_fping.c:390 979#: plugins/check_fping.c:409
921#, fuzzy 980#, fuzzy
922msgid "Target timeout must be a positive integer" 981msgid "Target timeout must be a positive integer"
923msgstr "Warnung time muss ein positiver Integer sein" 982msgstr "Warnung time muss ein positiver Integer sein"
924 983
925#: plugins/check_fping.c:396 984#: plugins/check_fping.c:415
926#, fuzzy 985#, fuzzy
927msgid "Interval must be a positive integer" 986msgid "Interval must be a positive integer"
928msgstr "Timeout interval muss ein positiver Integer sein" 987msgstr "Timeout interval muss ein positiver Integer sein"
929 988
930#: plugins/check_fping.c:402 plugins/check_ntp.c:733 989#: plugins/check_fping.c:421 plugins/check_ntp.c:743
931#: plugins/check_ntp_peer.c:524 plugins/check_ntp_time.c:523 990#: plugins/check_ntp_peer.c:524 plugins/check_ntp_time.c:528
932#: plugins/check_radius.c:314 plugins/check_time.c:319 991#: plugins/check_radius.c:329 plugins/check_time.c:319
933msgid "Hostname was not supplied" 992msgid "Hostname was not supplied"
934msgstr "" 993msgstr ""
935 994
936#: plugins/check_fping.c:422 995#: plugins/check_fping.c:441
937#, c-format 996#, c-format
938msgid "%s: Only one threshold may be packet loss (%s)\n" 997msgid "%s: Only one threshold may be packet loss (%s)\n"
939msgstr "%s: Nur ein Wert darf für packet loss angegeben werden (%s)\n" 998msgstr "%s: Nur ein Wert darf für packet loss angegeben werden (%s)\n"
940 999
941#: plugins/check_fping.c:426 1000#: plugins/check_fping.c:445
942#, c-format 1001#, c-format
943msgid "%s: Only one threshold must be packet loss (%s)\n" 1002msgid "%s: Only one threshold must be packet loss (%s)\n"
944msgstr "%s: Nur ein Wert darf für packet loss angegeben werden (%s)\n" 1003msgstr "%s: Nur ein Wert darf für packet loss angegeben werden (%s)\n"
945 1004
946#: plugins/check_fping.c:458 1005#: plugins/check_fping.c:475
947msgid "" 1006msgid ""
948"This plugin will use the fping command to ping the specified host for a fast " 1007"This plugin will use the fping command to ping the specified host for a fast "
949"check" 1008"check"
950msgstr "" 1009msgstr ""
951 1010
952#: plugins/check_fping.c:460 1011#: plugins/check_fping.c:477
953msgid "Note that it is necessary to set the suid flag on fping." 1012msgid "Note that it is necessary to set the suid flag on fping."
954msgstr "" 1013msgstr ""
955 1014
956#: plugins/check_fping.c:472 1015#: plugins/check_fping.c:489
957msgid "" 1016msgid ""
958"name or IP Address of host to ping (IP Address bypasses name lookup, " 1017"name or IP Address of host to ping (IP Address bypasses name lookup, "
959"reducing system load)" 1018"reducing system load)"
960msgstr "" 1019msgstr ""
961 1020
962#: plugins/check_fping.c:474 plugins/check_ping.c:575 1021#: plugins/check_fping.c:491 plugins/check_ping.c:589
963#, fuzzy 1022#, fuzzy
964msgid "warning threshold pair" 1023msgid "warning threshold pair"
965msgstr "Warning threshold Integer sein" 1024msgstr "Warning threshold Integer sein"
966 1025
967#: plugins/check_fping.c:476 plugins/check_ping.c:577 1026#: plugins/check_fping.c:493 plugins/check_ping.c:591
968#, fuzzy 1027#, fuzzy
969msgid "critical threshold pair" 1028msgid "critical threshold pair"
970msgstr "Critical threshold muss ein Integer sein" 1029msgstr "Critical threshold muss ein Integer sein"
971 1030
972#: plugins/check_fping.c:478 1031#: plugins/check_fping.c:495
1032msgid "Return OK after first successful reply"
1033msgstr ""
1034
1035#: plugins/check_fping.c:497
973msgid "size of ICMP packet" 1036msgid "size of ICMP packet"
974msgstr "" 1037msgstr ""
975 1038
976#: plugins/check_fping.c:480 1039#: plugins/check_fping.c:499
977msgid "number of ICMP packets to send" 1040msgid "number of ICMP packets to send"
978msgstr "" 1041msgstr ""
979 1042
980#: plugins/check_fping.c:482 1043#: plugins/check_fping.c:501
981msgid "Target timeout (ms)" 1044msgid "Target timeout (ms)"
982msgstr "" 1045msgstr ""
983 1046
984#: plugins/check_fping.c:484 1047#: plugins/check_fping.c:503
985msgid "Interval (ms) between sending packets" 1048msgid "Interval (ms) between sending packets"
986msgstr "" 1049msgstr ""
987 1050
988#: plugins/check_fping.c:486 1051#: plugins/check_fping.c:505
989msgid "name or IP Address of sourceip" 1052msgid "name or IP Address of sourceip"
990msgstr "" 1053msgstr ""
991 1054
992#: plugins/check_fping.c:488 1055#: plugins/check_fping.c:507
993msgid "source interface name" 1056msgid "source interface name"
994msgstr "" 1057msgstr ""
995 1058
996#: plugins/check_fping.c:491 1059#: plugins/check_fping.c:510
997#, c-format 1060#, c-format
998msgid "" 1061msgid ""
999"THRESHOLD is <rta>,<pl>%% where <rta> is the round trip average travel time " 1062"THRESHOLD is <rta>,<pl>%% where <rta> is the round trip average travel time "
1000"(ms)" 1063"(ms)"
1001msgstr "" 1064msgstr ""
1002 1065
1003#: plugins/check_fping.c:492 1066#: plugins/check_fping.c:511
1004msgid "" 1067msgid ""
1005"which triggers a WARNING or CRITICAL state, and <pl> is the percentage of" 1068"which triggers a WARNING or CRITICAL state, and <pl> is the percentage of"
1006msgstr "" 1069msgstr ""
1007 1070
1008#: plugins/check_fping.c:493 1071#: plugins/check_fping.c:512
1009msgid "packet loss to trigger an alarm state." 1072msgid "packet loss to trigger an alarm state."
1010msgstr "" 1073msgstr ""
1011 1074
1012#: plugins/check_fping.c:496 1075#: plugins/check_fping.c:515
1013msgid "IPv4 is used by default. Specify -6 to use IPv6." 1076msgid "IPv4 is used by default. Specify -6 to use IPv6."
1014msgstr "" 1077msgstr ""
1015 1078
@@ -1067,61 +1130,64 @@ msgid ""
1067msgstr "" 1130msgstr ""
1068 1131
1069#: plugins/check_game.c:321 1132#: plugins/check_game.c:321
1070msgid "" 1133msgid "https://github.com/multiplay/qstat before you can use this plugin."
1071"http://www.activesw.com/people/steve/qstat.html before you can use this "
1072"plugin."
1073msgstr "" 1134msgstr ""
1074 1135
1075#: plugins/check_hpjd.c:239 1136#: plugins/check_hpjd.c:245
1076msgid "Paper Jam" 1137msgid "Paper Jam"
1077msgstr "Papierstau" 1138msgstr "Papierstau"
1078 1139
1079#: plugins/check_hpjd.c:243 1140#: plugins/check_hpjd.c:250
1080msgid "Out of Paper" 1141msgid "Out of Paper"
1081msgstr "Kein Papier" 1142msgstr "Kein Papier"
1082 1143
1083#: plugins/check_hpjd.c:248 1144#: plugins/check_hpjd.c:255
1084msgid "Printer Offline" 1145msgid "Printer Offline"
1085msgstr "Drucker ausgeschaltet" 1146msgstr "Drucker ausgeschaltet"
1086 1147
1087#: plugins/check_hpjd.c:253 1148#: plugins/check_hpjd.c:260
1088msgid "Peripheral Error" 1149msgid "Peripheral Error"
1089msgstr "Peripheriefehler" 1150msgstr "Peripheriefehler"
1090 1151
1091#: plugins/check_hpjd.c:257 1152#: plugins/check_hpjd.c:264
1092msgid "Intervention Required" 1153msgid "Intervention Required"
1093msgstr "Eingriff benötigt" 1154msgstr "Eingriff benötigt"
1094 1155
1095#: plugins/check_hpjd.c:261 1156#: plugins/check_hpjd.c:268
1096msgid "Toner Low" 1157msgid "Toner Low"
1097msgstr "Wenig Toner" 1158msgstr "Wenig Toner"
1098 1159
1099#: plugins/check_hpjd.c:265 1160#: plugins/check_hpjd.c:272
1100msgid "Insufficient Memory" 1161msgid "Insufficient Memory"
1101msgstr "Nicht genügend Speicher" 1162msgstr "Nicht genügend Speicher"
1102 1163
1103#: plugins/check_hpjd.c:269 1164#: plugins/check_hpjd.c:276
1104msgid "A Door is Open" 1165msgid "A Door is Open"
1105msgstr "Eine Abdeckung ist offen" 1166msgstr "Eine Abdeckung ist offen"
1106 1167
1107#: plugins/check_hpjd.c:273 1168#: plugins/check_hpjd.c:280
1108msgid "Output Tray is Full" 1169msgid "Output Tray is Full"
1109msgstr "Ausgabeschacht ist voll" 1170msgstr "Ausgabeschacht ist voll"
1110 1171
1111#: plugins/check_hpjd.c:277 1172#: plugins/check_hpjd.c:284
1112msgid "Data too Slow for Engine" 1173msgid "Data too Slow for Engine"
1113msgstr "" 1174msgstr ""
1114 1175
1115#: plugins/check_hpjd.c:281 1176#: plugins/check_hpjd.c:288
1116msgid "Unknown Paper Error" 1177msgid "Unknown Paper Error"
1117msgstr "Papierfehler" 1178msgstr "Papierfehler"
1118 1179
1119#: plugins/check_hpjd.c:286 1180#: plugins/check_hpjd.c:293
1120#, c-format 1181#, c-format
1121msgid "Printer ok - (%s)\n" 1182msgid "Printer ok - (%s)\n"
1122msgstr "Printer ok - (%s)\n" 1183msgstr "Printer ok - (%s)\n"
1123 1184
1124#: plugins/check_hpjd.c:391 1185#: plugins/check_hpjd.c:353
1186#, fuzzy
1187msgid "Port must be a positive short integer"
1188msgstr "Port muss ein positiver Integer sein"
1189
1190#: plugins/check_hpjd.c:410
1125#, fuzzy 1191#, fuzzy
1126msgid "This plugin tests the STATUS of an HP printer with a JetDirect card." 1192msgid "This plugin tests the STATUS of an HP printer with a JetDirect card."
1127msgstr "" 1193msgstr ""
@@ -1130,7 +1196,7 @@ msgstr ""
1130"Net-snmp muss auf dem ausführenden Computer installiert sein.\n" 1196"Net-snmp muss auf dem ausführenden Computer installiert sein.\n"
1131"\n" 1197"\n"
1132 1198
1133#: plugins/check_hpjd.c:392 1199#: plugins/check_hpjd.c:411
1134#, fuzzy 1200#, fuzzy
1135msgid "Net-snmp must be installed on the computer running the plugin." 1201msgid "Net-snmp must be installed on the computer running the plugin."
1136msgstr "" 1202msgstr ""
@@ -1139,735 +1205,856 @@ msgstr ""
1139"Net-snmp muss auf dem ausführenden Computer installiert sein.\n" 1205"Net-snmp muss auf dem ausführenden Computer installiert sein.\n"
1140"\n" 1206"\n"
1141 1207
1142#: plugins/check_hpjd.c:402 1208#: plugins/check_hpjd.c:421
1143msgid "The SNMP community name " 1209msgid "The SNMP community name "
1144msgstr "" 1210msgstr ""
1145 1211
1146#: plugins/check_hpjd.c:403 1212#: plugins/check_hpjd.c:422 plugins/check_hpjd.c:426
1147#, c-format 1213#, c-format
1148msgid "(default=%s)" 1214msgid "(default=%s)"
1149msgstr "" 1215msgstr ""
1150 1216
1151#: plugins/check_http.c:189 1217#: plugins/check_hpjd.c:425
1218msgid "Specify the port to check "
1219msgstr ""
1220
1221#: plugins/check_hpjd.c:429
1222msgid "Disable paper check "
1223msgstr ""
1224
1225#: plugins/check_http.c:196
1152msgid "file does not exist or is not readable" 1226msgid "file does not exist or is not readable"
1153msgstr "" 1227msgstr ""
1154 1228
1155#: plugins/check_http.c:310 plugins/check_http.c:315 plugins/check_http.c:321 1229#: plugins/check_http.c:324 plugins/check_http.c:329 plugins/check_http.c:335
1156#: plugins/check_smtp.c:600 plugins/check_tcp.c:576 plugins/check_tcp.c:580 1230#: plugins/check_smtp.c:621 plugins/check_tcp.c:590 plugins/check_tcp.c:595
1157#: plugins/check_tcp.c:586 1231#: plugins/check_tcp.c:601
1158msgid "Invalid certificate expiration period" 1232msgid "Invalid certificate expiration period"
1159msgstr "Ungültiger Zertifikatsablauftermin" 1233msgstr "Ungültiger Zertifikatsablauftermin"
1160 1234
1161#: plugins/check_http.c:348 1235#: plugins/check_http.c:378
1162msgid "" 1236msgid ""
1163"Invalid option - Valid values for SSL Version are 1 (TLSv1), 2 (SSLv2) or 3 " 1237"Invalid option - Valid SSL/TLS versions: 2, 3, 1, 1.1, 1.2 (with optional "
1164"(SSLv3)" 1238"'+' suffix)"
1165msgstr "" 1239msgstr ""
1166 1240
1167#: plugins/check_http.c:354 plugins/check_tcp.c:599 1241#: plugins/check_http.c:384 plugins/check_tcp.c:614 plugins/check_tcp.c:623
1168#, fuzzy 1242#, fuzzy
1169msgid "Invalid option - SSL is not available" 1243msgid "Invalid option - SSL is not available"
1170msgstr "Ungültige Option - SSL ist nicht verfügbar\n" 1244msgstr "Ungültige Option - SSL ist nicht verfügbar\n"
1171 1245
1172#: plugins/check_http.c:375 1246#: plugins/check_http.c:392
1247msgid "Invalid max_redirs count"
1248msgstr ""
1249
1250#: plugins/check_http.c:412
1173msgid "Invalid onredirect option" 1251msgid "Invalid onredirect option"
1174msgstr "" 1252msgstr ""
1175 1253
1176#: plugins/check_http.c:377 1254#: plugins/check_http.c:414
1177#, c-format 1255#, c-format
1178msgid "option f:%d \n" 1256msgid "option f:%d \n"
1179msgstr "Option f:%d \n" 1257msgstr "Option f:%d \n"
1180 1258
1181#: plugins/check_http.c:398 1259#: plugins/check_http.c:449
1182msgid "Invalid port number" 1260msgid "Invalid port number"
1183msgstr "Ungültige Portnummer" 1261msgstr "Ungültige Portnummer"
1184 1262
1185#: plugins/check_http.c:450 1263#: plugins/check_http.c:507
1186#, c-format 1264#, c-format
1187msgid "Could Not Compile Regular Expression: %s" 1265msgid "Could Not Compile Regular Expression: %s"
1188msgstr "" 1266msgstr ""
1189 1267
1190#: plugins/check_http.c:464 plugins/check_ntp.c:722 1268#: plugins/check_http.c:521 plugins/check_ntp.c:732
1191#: plugins/check_ntp_peer.c:513 plugins/check_ntp_time.c:512 1269#: plugins/check_ntp_peer.c:513 plugins/check_ntp_time.c:517
1192#: plugins/check_smtp.c:621 plugins/check_ssh.c:149 plugins/check_tcp.c:477 1270#: plugins/check_smtp.c:660 plugins/check_ssh.c:151 plugins/check_tcp.c:491
1193msgid "IPv6 support not available" 1271msgid "IPv6 support not available"
1194msgstr "IPv6 Unterstützung nicht vorhanden" 1272msgstr "IPv6 Unterstützung nicht vorhanden"
1195 1273
1196#: plugins/check_http.c:529 plugins/check_ping.c:422 1274#: plugins/check_http.c:589 plugins/check_ping.c:428
1197msgid "You must specify a server address or host name" 1275msgid "You must specify a server address or host name"
1198msgstr "Hostname oder Serveradresse muss angegeben werden" 1276msgstr "Hostname oder Serveradresse muss angegeben werden"
1199 1277
1200#: plugins/check_http.c:543 1278#: plugins/check_http.c:606
1201msgid "" 1279msgid ""
1202"If you use a client certificate you must also specify a private key file" 1280"If you use a client certificate you must also specify a private key file"
1203msgstr "" 1281msgstr ""
1204 1282
1205#: plugins/check_http.c:667 plugins/check_http.c:835 1283#: plugins/check_http.c:733 plugins/check_http.c:901
1206#, fuzzy 1284#, fuzzy
1207msgid "HTTP UNKNOWN - Memory allocation error\n" 1285msgid "HTTP UNKNOWN - Memory allocation error\n"
1208msgstr "HTTP UNKNOWN - Konnte·url·nicht·zuweisen\n" 1286msgstr "HTTP UNKNOWN - Konnte·url·nicht·zuweisen\n"
1209 1287
1210#: plugins/check_http.c:739 1288#: plugins/check_http.c:805
1211#, fuzzy, c-format 1289#, fuzzy, c-format
1212msgid "%sServer date unknown, " 1290msgid "%sServer date unknown, "
1213msgstr "HTTP UNKNOWN - Serverdatum unbekannt\n" 1291msgstr "HTTP UNKNOWN - Serverdatum unbekannt\n"
1214 1292
1215#: plugins/check_http.c:742 1293#: plugins/check_http.c:808
1216#, fuzzy, c-format 1294#, fuzzy, c-format
1217msgid "%sDocument modification date unknown, " 1295msgid "%sDocument modification date unknown, "
1218msgstr "HTTP CRITICAL - Datum der letzten Änderung unbekannt\n" 1296msgstr "HTTP CRITICAL - Datum der letzten Änderung unbekannt\n"
1219 1297
1220#: plugins/check_http.c:749 1298#: plugins/check_http.c:815
1221#, fuzzy, c-format 1299#, fuzzy, c-format
1222msgid "%sServer date \"%100s\" unparsable, " 1300msgid "%sServer date \"%100s\" unparsable, "
1223msgstr "HTTP CRITICAL - Serverdatum \"%100s\" konnte nicht verarbeitet werden" 1301msgstr "HTTP CRITICAL - Serverdatum \"%100s\" konnte nicht verarbeitet werden"
1224 1302
1225#: plugins/check_http.c:752 1303#: plugins/check_http.c:818
1226#, fuzzy, c-format 1304#, fuzzy, c-format
1227msgid "%sDocument date \"%100s\" unparsable, " 1305msgid "%sDocument date \"%100s\" unparsable, "
1228msgstr "" 1306msgstr ""
1229"HTTP CRITICAL - Dokumentendatum \"%100s\" konnte nicht verarbeitet werden" 1307"HTTP CRITICAL - Dokumentendatum \"%100s\" konnte nicht verarbeitet werden"
1230 1308
1231#: plugins/check_http.c:755 1309#: plugins/check_http.c:821
1232#, fuzzy, c-format 1310#, fuzzy, c-format
1233msgid "%sDocument is %d seconds in the future, " 1311msgid "%sDocument is %d seconds in the future, "
1234msgstr "HTTP CRITICAL - Dokumentendatum ist %d Sekunden in der Zukunft\n" 1312msgstr "HTTP CRITICAL - Dokumentendatum ist %d Sekunden in der Zukunft\n"
1235 1313
1236#: plugins/check_http.c:760 1314#: plugins/check_http.c:826
1237#, fuzzy, c-format 1315#, fuzzy, c-format
1238msgid "%sLast modified %.1f days ago, " 1316msgid "%sLast modified %.1f days ago, "
1239msgstr "HTTP CRITICAL - Letzte Änderung vor %.1f Tagen\n" 1317msgstr "HTTP CRITICAL - Letzte Änderung vor %.1f Tagen\n"
1240 1318
1241#: plugins/check_http.c:763 1319#: plugins/check_http.c:829
1242#, fuzzy, c-format 1320#, fuzzy, c-format
1243msgid "%sLast modified %d:%02d:%02d ago, " 1321msgid "%sLast modified %d:%02d:%02d ago, "
1244msgstr "HTTP CRITICAL - Letzte Änderung vor %d:%02d:%02d \n" 1322msgstr "HTTP CRITICAL - Letzte Änderung vor %d:%02d:%02d \n"
1245 1323
1246#: plugins/check_http.c:876 1324#: plugins/check_http.c:943
1247msgid "HTTP CRITICAL - Unable to open TCP socket\n" 1325msgid "HTTP CRITICAL - Unable to open TCP socket\n"
1248msgstr "HTTP CRITICAL - Konnte TCP socket nicht öffnen\n" 1326msgstr "HTTP CRITICAL - Konnte TCP socket nicht öffnen\n"
1249 1327
1250#: plugins/check_http.c:995 1328#: plugins/check_http.c:1103
1329#, fuzzy
1330msgid "HTTP UNKNOWN - Could not allocate memory for full_page\n"
1331msgstr "HTTP UNKNOWN - Konnte·url·nicht·zuweisen\n"
1332
1333#: plugins/check_http.c:1120
1251msgid "HTTP CRITICAL - Error on receive\n" 1334msgid "HTTP CRITICAL - Error on receive\n"
1252msgstr "HTTP CRITICAL - Fehler beim Empfangen\n" 1335msgstr "HTTP CRITICAL - Fehler beim Empfangen\n"
1253 1336
1254#: plugins/check_http.c:1005 1337#: plugins/check_http.c:1125
1255#, fuzzy 1338#, fuzzy
1256msgid "HTTP CRITICAL - No data received from host\n" 1339msgid "HTTP CRITICAL - No data received from host\n"
1257msgstr "HTTP CRITICAL - Keine Daten empfangen\n" 1340msgstr "HTTP CRITICAL - Keine Daten empfangen\n"
1258 1341
1259#: plugins/check_http.c:1056 1342#: plugins/check_http.c:1176
1260#, fuzzy, c-format 1343#, fuzzy, c-format
1261msgid "Invalid HTTP response received from host: %s\n" 1344msgid "Invalid HTTP response received from host: %s\n"
1262msgstr "Ungültige HTTP Antwort von Host empfangen\n" 1345msgstr "Ungültige HTTP Antwort von Host empfangen\n"
1263 1346
1264#: plugins/check_http.c:1060 1347#: plugins/check_http.c:1180
1265#, fuzzy, c-format 1348#, fuzzy, c-format
1266msgid "Invalid HTTP response received from host on port %d: %s\n" 1349msgid "Invalid HTTP response received from host on port %d: %s\n"
1267msgstr "Ungültige HTTP Antwort von Host erhalten auf Port %d\n" 1350msgstr "Ungültige HTTP Antwort von Host erhalten auf Port %d\n"
1268 1351
1269#: plugins/check_http.c:1069 1352#: plugins/check_http.c:1183 plugins/check_http.c:1376
1353#, c-format
1354msgid ""
1355"%s\n"
1356"%s"
1357msgstr ""
1358
1359#: plugins/check_http.c:1191
1270#, fuzzy, c-format 1360#, fuzzy, c-format
1271msgid "Status line output matched \"%s\" - " 1361msgid "Status line output matched \"%s\" - "
1272msgstr "HTTP OK: Statusausgabe passt auf \"%s\"\n" 1362msgstr "HTTP OK: Statusausgabe passt auf \"%s\"\n"
1273 1363
1274#: plugins/check_http.c:1080 1364#: plugins/check_http.c:1202
1275#, c-format 1365#, c-format
1276msgid "HTTP CRITICAL: Invalid Status Line (%s)\n" 1366msgid "HTTP CRITICAL: Invalid Status Line (%s)\n"
1277msgstr "HTTP CRITICAL: Ungültige Statusmeldung (%s)\n" 1367msgstr "HTTP CRITICAL: Ungültige Statusmeldung (%s)\n"
1278 1368
1279#: plugins/check_http.c:1087 1369#: plugins/check_http.c:1209
1280#, c-format 1370#, c-format
1281msgid "HTTP CRITICAL: Invalid Status (%s)\n" 1371msgid "HTTP CRITICAL: Invalid Status (%s)\n"
1282msgstr "HTTP CRITICAL: Ungültiger Status (%s)\n" 1372msgstr "HTTP CRITICAL: Ungültiger Status (%s)\n"
1283 1373
1284#: plugins/check_http.c:1091 plugins/check_http.c:1096 1374#: plugins/check_http.c:1213 plugins/check_http.c:1218
1285#: plugins/check_http.c:1106 plugins/check_http.c:1110 1375#: plugins/check_http.c:1228 plugins/check_http.c:1232
1286#, c-format 1376#, c-format
1287msgid "%s - " 1377msgid "%s - "
1288msgstr "" 1378msgstr ""
1289 1379
1290#: plugins/check_http.c:1129 1380#: plugins/check_http.c:1260
1291#, fuzzy, c-format 1381#, fuzzy, c-format
1292msgid "%sheader '%s' not found on '%s://%s:%d%s', " 1382msgid "%sheader '%s' not found on '%s://%s:%d%s', "
1293msgstr "CRITICAL - Muster nicht gefunden%s|%s %s\n" 1383msgstr "CRITICAL - Muster nicht gefunden%s|%s %s\n"
1294 1384
1295#: plugins/check_http.c:1141 1385#: plugins/check_http.c:1303
1296#, fuzzy, c-format 1386#, fuzzy, c-format
1297msgid "%sstring '%s' not found on '%s://%s:%d%s', " 1387msgid "%sstring '%s' not found on '%s://%s:%d%s', "
1298msgstr "CRITICAL - Muster nicht gefunden%s|%s %s\n" 1388msgstr "CRITICAL - Muster nicht gefunden%s|%s %s\n"
1299 1389
1300#: plugins/check_http.c:1154 1390#: plugins/check_http.c:1317
1301#, fuzzy, c-format 1391#, fuzzy, c-format
1302msgid "%spattern not found, " 1392msgid "%spattern not found, "
1303msgstr "CRITICAL - Muster nicht gefunden%s|%s %s\n" 1393msgstr "CRITICAL - Muster nicht gefunden%s|%s %s\n"
1304 1394
1305#: plugins/check_http.c:1156 1395#: plugins/check_http.c:1319
1306#, fuzzy, c-format 1396#, fuzzy, c-format
1307msgid "%spattern found, " 1397msgid "%spattern found, "
1308msgstr "CRITICAL - Muster nicht gefunden%s|%s %s\n" 1398msgstr "CRITICAL - Muster nicht gefunden%s|%s %s\n"
1309 1399
1310#: plugins/check_http.c:1162 1400#: plugins/check_http.c:1325
1311#, fuzzy, c-format 1401#, fuzzy, c-format
1312msgid "%sExecute Error: %s, " 1402msgid "%sExecute Error: %s, "
1313msgstr "HTTP CRITICAL - Fehler: %s\n" 1403msgstr "HTTP CRITICAL - Fehler: %s\n"
1314 1404
1315#: plugins/check_http.c:1178 1405#: plugins/check_http.c:1341
1316#, fuzzy, c-format 1406#, fuzzy, c-format
1317msgid "%spage size %d too large, " 1407msgid "%spage size %d too large, "
1318msgstr "HTTP WARNING: Seitengröße %d zu klein%s|%s\n" 1408msgstr "HTTP WARNING: Seitengröße %d zu klein%s|%s\n"
1319 1409
1320#: plugins/check_http.c:1181 1410#: plugins/check_http.c:1344
1321#, fuzzy, c-format 1411#, fuzzy, c-format
1322msgid "%spage size %d too small, " 1412msgid "%spage size %d too small, "
1323msgstr "HTTP WARNING: Seitengröße %d zu klein%s|%s\n" 1413msgstr "HTTP WARNING: Seitengröße %d zu klein%s|%s\n"
1324 1414
1325#: plugins/check_http.c:1194 1415#: plugins/check_http.c:1357
1326#, fuzzy, c-format 1416#, fuzzy, c-format
1327msgid "%s - %d bytes in %.3f second response time %s|%s %s %s %s %s %s %s" 1417msgid "%s - %d bytes in %.3f second response time %s|%s %s %s %s %s %s %s"
1328msgstr " - %s - %.3f Sekunden Antwortzeit %s%s|%s %s\n" 1418msgstr " - %s - %.3f Sekunden Antwortzeit %s%s|%s %s\n"
1329 1419
1330#: plugins/check_http.c:1206 1420#: plugins/check_http.c:1369
1331#, fuzzy, c-format 1421#, fuzzy, c-format
1332msgid "%s - %d bytes in %.3f second response time %s|%s %s" 1422msgid "%s - %d bytes in %.3f second response time %s|%s %s"
1333msgstr " - %s - %.3f Sekunden Antwortzeit %s%s|%s %s\n" 1423msgstr " - %s - %.3f Sekunden Antwortzeit %s%s|%s %s\n"
1334 1424
1335#: plugins/check_http.c:1244 1425#: plugins/check_http.c:1499
1336msgid "HTTP UNKNOWN - Could not allocate addr\n" 1426msgid "HTTP UNKNOWN - Could not allocate addr\n"
1337msgstr "HTTP UNKNOWN - Konnte addr nicht zuweisen\n" 1427msgstr "HTTP UNKNOWN - Konnte addr nicht zuweisen\n"
1338 1428
1339#: plugins/check_http.c:1248 plugins/check_http.c:1279 1429#: plugins/check_http.c:1504 plugins/check_http.c:1535
1340#, fuzzy 1430#, fuzzy
1341msgid "HTTP UNKNOWN - Could not allocate URL\n" 1431msgid "HTTP UNKNOWN - Could not allocate URL\n"
1342msgstr "HTTP UNKNOWN - Konnte·url·nicht·zuweisen\n" 1432msgstr "HTTP UNKNOWN - Konnte·url·nicht·zuweisen\n"
1343 1433
1344#: plugins/check_http.c:1257 1434#: plugins/check_http.c:1513
1345#, c-format 1435#, c-format
1346msgid "HTTP UNKNOWN - Could not find redirect location - %s%s\n" 1436msgid "HTTP UNKNOWN - Could not find redirect location - %s%s\n"
1347msgstr "" 1437msgstr ""
1348 1438
1349#: plugins/check_http.c:1272 1439#: plugins/check_http.c:1528
1350#, fuzzy, c-format 1440#, fuzzy, c-format
1351msgid "HTTP UNKNOWN - Empty redirect location%s\n" 1441msgid "HTTP UNKNOWN - Empty redirect location%s\n"
1352msgstr "HTTP UNKNOWN - Serverdatum unbekannt\n" 1442msgstr "HTTP UNKNOWN - Serverdatum unbekannt\n"
1353 1443
1354#: plugins/check_http.c:1322 1444#: plugins/check_http.c:1590
1355#, c-format 1445#, c-format
1356msgid "HTTP UNKNOWN - Could not parse redirect location - %s%s\n" 1446msgid "HTTP UNKNOWN - Could not parse redirect location - %s%s\n"
1357msgstr "" 1447msgstr ""
1358 1448
1359#: plugins/check_http.c:1332 1449#: plugins/check_http.c:1600
1360#, fuzzy, c-format 1450#, fuzzy, c-format
1361msgid "HTTP WARNING - maximum redirection depth %d exceeded - %s://%s:%d%s%s\n" 1451msgid "HTTP WARNING - maximum redirection depth %d exceeded - %s://%s:%d%s%s\n"
1362msgstr "HTTP WARNING - Umleitung verursacht eine Schleife - %s://%s:%d%s%s\n" 1452msgstr "HTTP WARNING - Umleitung verursacht eine Schleife - %s://%s:%d%s%s\n"
1363 1453
1364#: plugins/check_http.c:1340 1454#: plugins/check_http.c:1608
1365#, c-format 1455#, fuzzy, c-format
1366msgid "HTTP WARNING - redirection creates an infinite loop - %s://%s:%d%s%s\n" 1456msgid "HTTP CRITICAL - redirection creates an infinite loop - %s://%s:%d%s%s\n"
1367msgstr "HTTP WARNING - Umleitung verursacht eine Schleife - %s://%s:%d%s%s\n" 1457msgstr "HTTP WARNING - Umleitung verursacht eine Schleife - %s://%s:%d%s%s\n"
1368 1458
1369#: plugins/check_http.c:1361 1459#: plugins/check_http.c:1629
1370#, fuzzy, c-format 1460#, fuzzy, c-format
1371msgid "HTTP UNKNOWN - Redirection to port above %d - %s://%s:%d%s%s\n" 1461msgid "HTTP UNKNOWN - Redirection to port above %d - %s://%s:%d%s%s\n"
1372msgstr "HTTP WARNING - Umleitung verursacht eine Schleife - %s://%s:%d%s%s\n" 1462msgstr "HTTP WARNING - Umleitung verursacht eine Schleife - %s://%s:%d%s%s\n"
1373 1463
1374#: plugins/check_http.c:1366 1464#: plugins/check_http.c:1637
1375#, c-format 1465#, c-format
1376msgid "Redirection to %s://%s:%d%s\n" 1466msgid "Redirection to %s://%s:%d%s\n"
1377msgstr "" 1467msgstr ""
1378 1468
1379#: plugins/check_http.c:1440 1469#: plugins/check_http.c:1712
1380#, fuzzy 1470#, fuzzy
1381msgid "This plugin tests the HTTP service on the specified host. It can test" 1471msgid "This plugin tests the HTTP service on the specified host. It can test"
1382msgstr "" 1472msgstr ""
1383"Testet den DNS Dienst auf dem angegebenen Host mit dig\n" 1473"Testet den DNS Dienst auf dem angegebenen Host mit dig\n"
1384"\n" 1474"\n"
1385 1475
1386#: plugins/check_http.c:1441 1476#: plugins/check_http.c:1713
1387msgid "normal (http) and secure (https) servers, follow redirects, search for" 1477msgid "normal (http) and secure (https) servers, follow redirects, search for"
1388msgstr "" 1478msgstr ""
1389 1479
1390#: plugins/check_http.c:1442 1480#: plugins/check_http.c:1714
1391msgid "strings and regular expressions, check connection times, and report on" 1481msgid "strings and regular expressions, check connection times, and report on"
1392msgstr "" 1482msgstr ""
1393 1483
1394#: plugins/check_http.c:1443 1484#: plugins/check_http.c:1715
1395#, fuzzy 1485#, fuzzy
1396msgid "certificate expiration times." 1486msgid "certificate expiration times."
1397msgstr "Clientzertifikat benötigt\n" 1487msgstr "Clientzertifikat benötigt\n"
1398 1488
1399#: plugins/check_http.c:1449 1489#: plugins/check_http.c:1722
1490#, c-format
1491msgid "In the first form, make an HTTP request."
1492msgstr ""
1493
1494#: plugins/check_http.c:1723
1495#, c-format
1496msgid ""
1497"In the second form, connect to the server and check the TLS certificate."
1498msgstr ""
1499
1500#: plugins/check_http.c:1725
1400#, c-format 1501#, c-format
1401msgid "NOTE: One or both of -H and -I must be specified" 1502msgid "NOTE: One or both of -H and -I must be specified"
1402msgstr "" 1503msgstr ""
1403 1504
1404#: plugins/check_http.c:1457 1505#: plugins/check_http.c:1733
1405msgid "Host name argument for servers using host headers (virtual host)" 1506msgid "Host name argument for servers using host headers (virtual host)"
1406msgstr "" 1507msgstr ""
1407 1508
1408#: plugins/check_http.c:1458 1509#: plugins/check_http.c:1734
1409msgid "Append a port to include it in the header (eg: example.com:5000)" 1510msgid "Append a port to include it in the header (eg: example.com:5000)"
1410msgstr "" 1511msgstr ""
1411 1512
1412#: plugins/check_http.c:1460 1513#: plugins/check_http.c:1736
1413msgid "" 1514msgid ""
1414"IP address or name (use numeric address if possible to bypass DNS lookup)." 1515"IP address or name (use numeric address if possible to bypass DNS lookup)."
1415msgstr "" 1516msgstr ""
1416 1517
1417#: plugins/check_http.c:1462 1518#: plugins/check_http.c:1738
1418msgid "Port number (default: " 1519msgid "Port number (default: "
1419msgstr "" 1520msgstr ""
1420 1521
1421#: plugins/check_http.c:1469 1522#: plugins/check_http.c:1745
1422msgid "" 1523msgid ""
1423"Connect via SSL. Port defaults to 443. VERSION is optional, and prevents" 1524"Connect via SSL. Port defaults to 443. VERSION is optional, and prevents"
1424msgstr "" 1525msgstr ""
1425 1526
1426#: plugins/check_http.c:1470 1527#: plugins/check_http.c:1746
1427msgid "auto-negotiation (1 = TLSv1, 2 = SSLv2, 3 = SSLv3)." 1528msgid "auto-negotiation (2 = SSLv2, 3 = SSLv3, 1 = TLSv1, 1.1 = TLSv1.1,"
1529msgstr ""
1530
1531#: plugins/check_http.c:1747
1532msgid "1.2 = TLSv1.2). With a '+' suffix, newer versions are also accepted."
1428msgstr "" 1533msgstr ""
1429 1534
1430#: plugins/check_http.c:1472 1535#: plugins/check_http.c:1749 plugins/check_smtp.c:856
1431msgid "Enable SSL/TLS hostname extension support (SNI)" 1536msgid "Enable SSL/TLS hostname extension support (SNI)"
1432msgstr "" 1537msgstr ""
1433 1538
1434#: plugins/check_http.c:1474 1539#: plugins/check_http.c:1751
1435msgid "" 1540msgid ""
1436"Minimum number of days a certificate has to be valid. Port defaults to 443" 1541"Minimum number of days a certificate has to be valid. Port defaults to 443"
1437msgstr "" 1542msgstr ""
1438 1543
1439#: plugins/check_http.c:1475 1544#: plugins/check_http.c:1752
1440msgid "(when this option is used the URL is not checked.)" 1545msgid ""
1546"(when this option is used the URL is not checked by default. You can use"
1441msgstr "" 1547msgstr ""
1442 1548
1443#: plugins/check_http.c:1477 1549#: plugins/check_http.c:1753
1550msgid " --continue-after-certificate to override this behavior)"
1551msgstr ""
1552
1553#: plugins/check_http.c:1755
1554msgid ""
1555"Allows the HTTP check to continue after performing the certificate check."
1556msgstr ""
1557
1558#: plugins/check_http.c:1756
1559msgid "Does nothing unless -C is used."
1560msgstr ""
1561
1562#: plugins/check_http.c:1758
1444msgid "Name of file that contains the client certificate (PEM format)" 1563msgid "Name of file that contains the client certificate (PEM format)"
1445msgstr "" 1564msgstr ""
1446 1565
1447#: plugins/check_http.c:1478 1566#: plugins/check_http.c:1759
1448msgid "to be used in establishing the SSL session" 1567msgid "to be used in establishing the SSL session"
1449msgstr "" 1568msgstr ""
1450 1569
1451#: plugins/check_http.c:1480 1570#: plugins/check_http.c:1761
1452msgid "Name of file containing the private key (PEM format)" 1571msgid "Name of file containing the private key (PEM format)"
1453msgstr "" 1572msgstr ""
1454 1573
1455#: plugins/check_http.c:1481 1574#: plugins/check_http.c:1762
1456msgid "matching the client certificate" 1575msgid "matching the client certificate"
1457msgstr "" 1576msgstr ""
1458 1577
1459#: plugins/check_http.c:1485 1578#: plugins/check_http.c:1766
1460msgid "Comma-delimited list of strings, at least one of them is expected in" 1579msgid "Comma-delimited list of strings, at least one of them is expected in"
1461msgstr "" 1580msgstr ""
1462 1581
1463#: plugins/check_http.c:1486 1582#: plugins/check_http.c:1767
1464msgid "the first (status) line of the server response (default: " 1583msgid "the first (status) line of the server response (default: "
1465msgstr "" 1584msgstr ""
1466 1585
1467#: plugins/check_http.c:1488 1586#: plugins/check_http.c:1769
1468msgid "" 1587msgid ""
1469"If specified skips all other status line logic (ex: 3xx, 4xx, 5xx processing)" 1588"If specified skips all other status line logic (ex: 3xx, 4xx, 5xx processing)"
1470msgstr "" 1589msgstr ""
1471 1590
1472#: plugins/check_http.c:1490 1591#: plugins/check_http.c:1771
1473msgid "String to expect in the response headers" 1592msgid "String to expect in the response headers"
1474msgstr "" 1593msgstr ""
1475 1594
1476#: plugins/check_http.c:1492 1595#: plugins/check_http.c:1773
1477msgid "String to expect in the content" 1596msgid "String to expect in the content"
1478msgstr "" 1597msgstr ""
1479 1598
1480#: plugins/check_http.c:1494 1599#: plugins/check_http.c:1775
1481msgid "URL to GET or POST (default: /)" 1600msgid "URL to GET or POST (default: /)"
1482msgstr "" 1601msgstr ""
1483 1602
1484#: plugins/check_http.c:1496 1603#: plugins/check_http.c:1777
1485msgid "URL encoded http POST data" 1604msgid "URL encoded http POST data"
1486msgstr "" 1605msgstr ""
1487 1606
1488#: plugins/check_http.c:1498 1607#: plugins/check_http.c:1779
1489msgid "Set HTTP method." 1608msgid "Set HTTP method."
1490msgstr "" 1609msgstr ""
1491 1610
1492#: plugins/check_http.c:1500 1611#: plugins/check_http.c:1781
1493msgid "Don't wait for document body: stop reading after headers." 1612msgid "Don't wait for document body: stop reading after headers."
1494msgstr "" 1613msgstr ""
1495 1614
1496#: plugins/check_http.c:1501 1615#: plugins/check_http.c:1782
1497msgid "(Note that this still does an HTTP GET or POST, not a HEAD.)" 1616msgid "(Note that this still does an HTTP GET or POST, not a HEAD.)"
1498msgstr "" 1617msgstr ""
1499 1618
1500#: plugins/check_http.c:1503 1619#: plugins/check_http.c:1784
1501msgid "Warn if document is more than SECONDS old. the number can also be of" 1620msgid "Warn if document is more than SECONDS old. the number can also be of"
1502msgstr "" 1621msgstr ""
1503 1622
1504#: plugins/check_http.c:1504 1623#: plugins/check_http.c:1785
1505msgid "the form \"10m\" for minutes, \"10h\" for hours, or \"10d\" for days." 1624msgid "the form \"10m\" for minutes, \"10h\" for hours, or \"10d\" for days."
1506msgstr "" 1625msgstr ""
1507 1626
1508#: plugins/check_http.c:1506 1627#: plugins/check_http.c:1787
1509msgid "specify Content-Type header media type when POSTing\n" 1628msgid "specify Content-Type header media type when POSTing\n"
1510msgstr "" 1629msgstr ""
1511 1630
1512#: plugins/check_http.c:1509 1631#: plugins/check_http.c:1790
1513msgid "Allow regex to span newlines (must precede -r or -R)" 1632msgid "Allow regex to span newlines (must precede -r or -R)"
1514msgstr "" 1633msgstr ""
1515 1634
1516#: plugins/check_http.c:1511 1635#: plugins/check_http.c:1792
1517msgid "Search page for regex STRING" 1636msgid "Search page for regex STRING"
1518msgstr "" 1637msgstr ""
1519 1638
1520#: plugins/check_http.c:1513 1639#: plugins/check_http.c:1794
1521msgid "Search page for case-insensitive regex STRING" 1640msgid "Search page for case-insensitive regex STRING"
1522msgstr "" 1641msgstr ""
1523 1642
1524#: plugins/check_http.c:1515 1643#: plugins/check_http.c:1796
1525msgid "Return CRITICAL if found, OK if not\n" 1644msgid "Return CRITICAL if found, OK if not\n"
1526msgstr "" 1645msgstr ""
1527 1646
1528#: plugins/check_http.c:1518 1647#: plugins/check_http.c:1799
1529msgid "Username:password on sites with basic authentication" 1648msgid "Username:password on sites with basic authentication"
1530msgstr "" 1649msgstr ""
1531 1650
1532#: plugins/check_http.c:1520 1651#: plugins/check_http.c:1801
1533msgid "Username:password on proxy-servers with basic authentication" 1652msgid "Username:password on proxy-servers with basic authentication"
1534msgstr "" 1653msgstr ""
1535 1654
1536#: plugins/check_http.c:1522 1655#: plugins/check_http.c:1803
1537msgid "String to be sent in http header as \"User Agent\"" 1656msgid "String to be sent in http header as \"User Agent\""
1538msgstr "" 1657msgstr ""
1539 1658
1540#: plugins/check_http.c:1524 1659#: plugins/check_http.c:1805
1541msgid "" 1660msgid ""
1542"Any other tags to be sent in http header. Use multiple times for additional " 1661"Any other tags to be sent in http header. Use multiple times for additional "
1543"headers" 1662"headers"
1544msgstr "" 1663msgstr ""
1545 1664
1546#: plugins/check_http.c:1526 1665#: plugins/check_http.c:1807
1547msgid "Print additional performance data" 1666msgid "Print additional performance data"
1548msgstr "" 1667msgstr ""
1549 1668
1550#: plugins/check_http.c:1528 1669#: plugins/check_http.c:1809
1670msgid "Print body content below status line"
1671msgstr ""
1672
1673#: plugins/check_http.c:1811
1551msgid "Wrap output in HTML link (obsoleted by urlize)" 1674msgid "Wrap output in HTML link (obsoleted by urlize)"
1552msgstr "" 1675msgstr ""
1553 1676
1554#: plugins/check_http.c:1530 1677#: plugins/check_http.c:1813
1555msgid "How to handle redirected pages. sticky is like follow but stick to the" 1678msgid "How to handle redirected pages. sticky is like follow but stick to the"
1556msgstr "" 1679msgstr ""
1557 1680
1558#: plugins/check_http.c:1531 1681#: plugins/check_http.c:1814
1559msgid "specified IP address. stickyport also ensures port stays the same." 1682msgid "specified IP address. stickyport also ensures port stays the same."
1560msgstr "" 1683msgstr ""
1561 1684
1562#: plugins/check_http.c:1533 1685#: plugins/check_http.c:1816
1686#, fuzzy
1687msgid "Maximal number of redirects (default: "
1688msgstr "Ungültige Portnummer"
1689
1690#: plugins/check_http.c:1819
1563msgid "Minimum page size required (bytes) : Maximum page size required (bytes)" 1691msgid "Minimum page size required (bytes) : Maximum page size required (bytes)"
1564msgstr "" 1692msgstr ""
1565 1693
1566#: plugins/check_http.c:1543 1694#: plugins/check_http.c:1828
1567#, fuzzy 1695#, fuzzy
1568msgid "This plugin will attempt to open an HTTP connection with the host." 1696msgid "This plugin will attempt to open an HTTP connection with the host."
1569msgstr "Dieses plugin testet Gameserververbindungen zum angegebenen Host." 1697msgstr "Dieses plugin testet Gameserververbindungen zum angegebenen Host."
1570 1698
1571#: plugins/check_http.c:1544 1699#: plugins/check_http.c:1829
1572msgid "" 1700msgid ""
1573"Successful connects return STATE_OK, refusals and timeouts return " 1701"Successful connects return STATE_OK, refusals and timeouts return "
1574"STATE_CRITICAL" 1702"STATE_CRITICAL"
1575msgstr "" 1703msgstr ""
1576 1704
1577#: plugins/check_http.c:1545 1705#: plugins/check_http.c:1830
1578msgid "" 1706msgid ""
1579"other errors return STATE_UNKNOWN. Successful connects, but incorrect " 1707"other errors return STATE_UNKNOWN. Successful connects, but incorrect "
1580"response" 1708"response"
1581msgstr "" 1709msgstr ""
1582 1710
1583#: plugins/check_http.c:1546 1711#: plugins/check_http.c:1831
1584msgid "" 1712msgid ""
1585"messages from the host result in STATE_WARNING return values. If you are" 1713"messages from the host result in STATE_WARNING return values. If you are"
1586msgstr "" 1714msgstr ""
1587 1715
1588#: plugins/check_http.c:1547 1716#: plugins/check_http.c:1832
1589msgid "" 1717msgid ""
1590"checking a virtual server that uses 'host headers' you must supply the FQDN" 1718"checking a virtual server that uses 'host headers' you must supply the FQDN"
1591msgstr "" 1719msgstr ""
1592 1720
1593#: plugins/check_http.c:1548 1721#: plugins/check_http.c:1833
1594msgid "(fully qualified domain name) as the [host_name] argument." 1722msgid "(fully qualified domain name) as the [host_name] argument."
1595msgstr "" 1723msgstr ""
1596 1724
1597#: plugins/check_http.c:1552 1725#: plugins/check_http.c:1837
1598msgid "This plugin can also check whether an SSL enabled web server is able to" 1726msgid "This plugin can also check whether an SSL enabled web server is able to"
1599msgstr "" 1727msgstr ""
1600 1728
1601#: plugins/check_http.c:1553 1729#: plugins/check_http.c:1838
1602msgid "serve content (optionally within a specified time) or whether the X509 " 1730msgid "serve content (optionally within a specified time) or whether the X509 "
1603msgstr "" 1731msgstr ""
1604 1732
1605#: plugins/check_http.c:1554 1733#: plugins/check_http.c:1839
1606msgid "certificate is still valid for the specified number of days." 1734msgid "certificate is still valid for the specified number of days."
1607msgstr "" 1735msgstr ""
1608 1736
1609#: plugins/check_http.c:1556 1737#: plugins/check_http.c:1841
1610#, fuzzy 1738#, fuzzy
1611msgid "Please note that this plugin does not check if the presented server" 1739msgid "Please note that this plugin does not check if the presented server"
1612msgstr "" 1740msgstr ""
1613"Testet den DNS Dienst auf dem angegebenen Host mit dig\n" 1741"Testet den DNS Dienst auf dem angegebenen Host mit dig\n"
1614"\n" 1742"\n"
1615 1743
1616#: plugins/check_http.c:1557 1744#: plugins/check_http.c:1842
1617msgid "certificate matches the hostname of the server, or if the certificate" 1745msgid "certificate matches the hostname of the server, or if the certificate"
1618msgstr "" 1746msgstr ""
1619 1747
1620#: plugins/check_http.c:1558 1748#: plugins/check_http.c:1843
1621msgid "has a valid chain of trust to one of the locally installed CAs." 1749msgid "has a valid chain of trust to one of the locally installed CAs."
1622msgstr "" 1750msgstr ""
1623 1751
1624#: plugins/check_http.c:1562 1752#: plugins/check_http.c:1847
1625msgid "" 1753msgid ""
1626"When the 'www.verisign.com' server returns its content within 5 seconds," 1754"When the 'www.verisign.com' server returns its content within 5 seconds,"
1627msgstr "" 1755msgstr ""
1628 1756
1629#: plugins/check_http.c:1563 1757#: plugins/check_http.c:1848 plugins/check_http.c:1867
1630msgid "" 1758msgid ""
1631"a STATE_OK will be returned. When the server returns its content but exceeds" 1759"a STATE_OK will be returned. When the server returns its content but exceeds"
1632msgstr "" 1760msgstr ""
1633 1761
1634#: plugins/check_http.c:1564 1762#: plugins/check_http.c:1849 plugins/check_http.c:1868
1635msgid "" 1763msgid ""
1636"the 5-second threshold, a STATE_WARNING will be returned. When an error " 1764"the 5-second threshold, a STATE_WARNING will be returned. When an error "
1637"occurs," 1765"occurs,"
1638msgstr "" 1766msgstr ""
1639 1767
1640#: plugins/check_http.c:1565 1768#: plugins/check_http.c:1850
1641msgid "a STATE_CRITICAL will be returned." 1769msgid "a STATE_CRITICAL will be returned."
1642msgstr "" 1770msgstr ""
1643 1771
1644#: plugins/check_http.c:1568 1772#: plugins/check_http.c:1853
1645msgid "" 1773msgid ""
1646"When the certificate of 'www.verisign.com' is valid for more than 14 days," 1774"When the certificate of 'www.verisign.com' is valid for more than 14 days,"
1647msgstr "" 1775msgstr ""
1648 1776
1649#: plugins/check_http.c:1569 plugins/check_http.c:1575 1777#: plugins/check_http.c:1854 plugins/check_http.c:1860
1650msgid "" 1778msgid ""
1651"a STATE_OK is returned. When the certificate is still valid, but for less " 1779"a STATE_OK is returned. When the certificate is still valid, but for less "
1652"than" 1780"than"
1653msgstr "" 1781msgstr ""
1654 1782
1655#: plugins/check_http.c:1570 1783#: plugins/check_http.c:1855
1656msgid "" 1784msgid ""
1657"14 days, a STATE_WARNING is returned. A STATE_CRITICAL will be returned when" 1785"14 days, a STATE_WARNING is returned. A STATE_CRITICAL will be returned when"
1658msgstr "" 1786msgstr ""
1659 1787
1660#: plugins/check_http.c:1571 1788#: plugins/check_http.c:1856
1661#, fuzzy 1789#, fuzzy
1662msgid "the certificate is expired." 1790msgid "the certificate is expired."
1663msgstr "Clientzertifikat benötigt\n" 1791msgstr "Clientzertifikat benötigt\n"
1664 1792
1665#: plugins/check_http.c:1574 1793#: plugins/check_http.c:1859
1666msgid "" 1794msgid ""
1667"When the certificate of 'www.verisign.com' is valid for more than 30 days," 1795"When the certificate of 'www.verisign.com' is valid for more than 30 days,"
1668msgstr "" 1796msgstr ""
1669 1797
1670#: plugins/check_http.c:1576 1798#: plugins/check_http.c:1861
1671msgid "30 days, but more than 14 days, a STATE_WARNING is returned." 1799msgid "30 days, but more than 14 days, a STATE_WARNING is returned."
1672msgstr "" 1800msgstr ""
1673 1801
1674#: plugins/check_http.c:1577 1802#: plugins/check_http.c:1862
1675msgid "" 1803msgid ""
1676"A STATE_CRITICAL will be returned when certificate expires in less than 14 " 1804"A STATE_CRITICAL will be returned when certificate expires in less than 14 "
1677"days" 1805"days"
1678msgstr "" 1806msgstr ""
1679 1807
1680#: plugins/check_ldap.c:133 1808#: plugins/check_http.c:1865
1809msgid ""
1810"check_http -I 192.168.100.35 -p 80 -u https://www.verisign.com/ -S -j "
1811"CONNECT -H www.verisign.com "
1812msgstr ""
1813
1814#: plugins/check_http.c:1866
1815msgid ""
1816"all these options are needed: -I <proxy> -p <proxy-port> -u <check-url> -"
1817"S(sl) -j CONNECT -H <webserver>"
1818msgstr ""
1819
1820#: plugins/check_http.c:1869
1821msgid ""
1822"a STATE_CRITICAL will be returned. By adding a colon to the method you can "
1823"set the method used"
1824msgstr ""
1825
1826#: plugins/check_http.c:1870
1827msgid "inside the proxied connection: -j CONNECT:POST"
1828msgstr ""
1829
1830#: plugins/check_ldap.c:142
1681#, c-format 1831#, c-format
1682msgid "Could not connect to the server at port %i\n" 1832msgid "Could not connect to the server at port %i\n"
1683msgstr "" 1833msgstr ""
1684 1834
1685#: plugins/check_ldap.c:142 1835#: plugins/check_ldap.c:151
1686#, c-format 1836#, c-format
1687msgid "Could not set protocol version %d\n" 1837msgid "Could not set protocol version %d\n"
1688msgstr "" 1838msgstr ""
1689 1839
1690#: plugins/check_ldap.c:157 1840#: plugins/check_ldap.c:166
1691#, fuzzy, c-format 1841#, fuzzy, c-format
1692msgid "Could not init TLS at port %i!\n" 1842msgid "Could not init TLS at port %i!\n"
1693msgstr "Konnte stderr nicht öffnen für: %s\n" 1843msgstr "Konnte stderr nicht öffnen für: %s\n"
1694 1844
1695#: plugins/check_ldap.c:161 1845#: plugins/check_ldap.c:170
1696#, c-format 1846#, c-format
1697msgid "TLS not supported by the libraries!\n" 1847msgid "TLS not supported by the libraries!\n"
1698msgstr "" 1848msgstr ""
1699 1849
1700#: plugins/check_ldap.c:181 1850#: plugins/check_ldap.c:190
1701#, fuzzy, c-format 1851#, fuzzy, c-format
1702msgid "Could not init startTLS at port %i!\n" 1852msgid "Could not init startTLS at port %i!\n"
1703msgstr "Konnte stderr nicht öffnen für: %s\n" 1853msgstr "Konnte stderr nicht öffnen für: %s\n"
1704 1854
1705#: plugins/check_ldap.c:185 1855#: plugins/check_ldap.c:194
1706#, c-format 1856#, c-format
1707msgid "startTLS not supported by the library, needs LDAPv3!\n" 1857msgid "startTLS not supported by the library, needs LDAPv3!\n"
1708msgstr "" 1858msgstr ""
1709 1859
1710#: plugins/check_ldap.c:195 1860#: plugins/check_ldap.c:204
1711#, c-format 1861#, c-format
1712msgid "Could not bind to the LDAP server\n" 1862msgid "Could not bind to the LDAP server\n"
1713msgstr "" 1863msgstr ""
1714 1864
1715#: plugins/check_ldap.c:204 1865#: plugins/check_ldap.c:213
1716#, c-format 1866#, c-format
1717msgid "Could not search/find objectclasses in %s\n" 1867msgid "Could not search/find objectclasses in %s\n"
1718msgstr "" 1868msgstr ""
1719 1869
1720#: plugins/check_ldap.c:227 1870#: plugins/check_ldap.c:252
1871#, fuzzy, c-format
1872msgid "LDAP %s - found %d entries in %.3f seconds|%s %s\n"
1873msgstr "HTTP OK %s - %.3f Sekunde Antwortzeit %s%s|%s %s\n"
1874
1875#: plugins/check_ldap.c:265
1721#, c-format 1876#, c-format
1722msgid "LDAP %s - %.3f seconds response time|%s\n" 1877msgid "LDAP %s - %.3f seconds response time|%s\n"
1723msgstr "" 1878msgstr ""
1724 1879
1725#: plugins/check_ldap.c:339 plugins/check_ldap.c:347 1880#: plugins/check_ldap.c:386 plugins/check_ldap.c:394
1726#, c-format 1881#, c-format
1727msgid "%s cannot be combined with %s" 1882msgid "%s cannot be combined with %s"
1728msgstr "" 1883msgstr ""
1729 1884
1730#: plugins/check_ldap.c:379 1885#: plugins/check_ldap.c:426
1731msgid "Please specify the host name\n" 1886msgid "Please specify the host name\n"
1732msgstr "" 1887msgstr ""
1733 1888
1734#: plugins/check_ldap.c:382 1889#: plugins/check_ldap.c:429
1735msgid "Please specify the LDAP base\n" 1890msgid "Please specify the LDAP base\n"
1736msgstr "" 1891msgstr ""
1737 1892
1738#: plugins/check_ldap.c:411 1893#: plugins/check_ldap.c:465
1739msgid "ldap attribute to search (default: \"(objectclass=*)\"" 1894msgid "ldap attribute to search (default: \"(objectclass=*)\""
1740msgstr "" 1895msgstr ""
1741 1896
1742#: plugins/check_ldap.c:413 1897#: plugins/check_ldap.c:467
1743msgid "ldap base (eg. ou=my unit, o=my org, c=at" 1898msgid "ldap base (eg. ou=my unit, o=my org, c=at"
1744msgstr "" 1899msgstr ""
1745 1900
1746#: plugins/check_ldap.c:415 1901#: plugins/check_ldap.c:469
1747msgid "ldap bind DN (if required)" 1902msgid "ldap bind DN (if required)"
1748msgstr "" 1903msgstr ""
1749 1904
1750#: plugins/check_ldap.c:417 1905#: plugins/check_ldap.c:471
1751msgid "ldap password (if required)" 1906msgid ""
1907"ldap password (if required, or set the password through environment variable "
1908"'LDAP_PASSWORD')"
1752msgstr "" 1909msgstr ""
1753 1910
1754#: plugins/check_ldap.c:419 1911#: plugins/check_ldap.c:473
1755msgid "use starttls mechanism introduced in protocol version 3" 1912msgid "use starttls mechanism introduced in protocol version 3"
1756msgstr "" 1913msgstr ""
1757 1914
1758#: plugins/check_ldap.c:421 1915#: plugins/check_ldap.c:475
1759msgid "use ldaps (ldap v2 ssl method). this also sets the default port to" 1916msgid "use ldaps (ldap v2 ssl method). this also sets the default port to"
1760msgstr "" 1917msgstr ""
1761 1918
1762#: plugins/check_ldap.c:425 1919#: plugins/check_ldap.c:479
1763msgid "use ldap protocol version 2" 1920msgid "use ldap protocol version 2"
1764msgstr "" 1921msgstr ""
1765 1922
1766#: plugins/check_ldap.c:427 1923#: plugins/check_ldap.c:481
1767msgid "use ldap protocol version 3" 1924msgid "use ldap protocol version 3"
1768msgstr "" 1925msgstr ""
1769 1926
1770#: plugins/check_ldap.c:428 1927#: plugins/check_ldap.c:482
1771msgid "default protocol version:" 1928msgid "default protocol version:"
1772msgstr "" 1929msgstr ""
1773 1930
1774#: plugins/check_ldap.c:439 1931#: plugins/check_ldap.c:488
1932msgid "Number of found entries to result in warning status"
1933msgstr ""
1934
1935#: plugins/check_ldap.c:490
1936msgid "Number of found entries to result in critical status"
1937msgstr ""
1938
1939#: plugins/check_ldap.c:498
1775msgid "If this plugin is called via 'check_ldaps', method 'STARTTLS' will be" 1940msgid "If this plugin is called via 'check_ldaps', method 'STARTTLS' will be"
1776msgstr "" 1941msgstr ""
1777 1942
1778#: plugins/check_ldap.c:440 1943#: plugins/check_ldap.c:499
1779#, c-format 1944#, c-format
1780msgid "" 1945msgid ""
1781" implied (using default port %i) unless --port=636 is specified. In that " 1946" implied (using default port %i) unless --port=636 is specified. In that "
1782"case\n" 1947"case\n"
1783msgstr "" 1948msgstr ""
1784 1949
1785#: plugins/check_ldap.c:441 1950#: plugins/check_ldap.c:500
1786msgid "'SSL on connect' will be used no matter how the plugin was called." 1951msgid "'SSL on connect' will be used no matter how the plugin was called."
1787msgstr "" 1952msgstr ""
1788 1953
1789#: plugins/check_ldap.c:442 1954#: plugins/check_ldap.c:501
1790msgid "" 1955msgid ""
1791"This detection is deprecated, please use 'check_ldap' with the '--starttls' " 1956"This detection is deprecated, please use 'check_ldap' with the '--starttls' "
1792"or '--ssl' flags" 1957"or '--ssl' flags"
1793msgstr "" 1958msgstr ""
1794 1959
1795#: plugins/check_ldap.c:443 1960#: plugins/check_ldap.c:502
1796msgid "to define the behaviour explicitly instead." 1961msgid "to define the behaviour explicitly instead."
1797msgstr "" 1962msgstr ""
1798 1963
1799#: plugins/check_load.c:87 1964#: plugins/check_ldap.c:503
1965msgid "The parameters --warn-entries and --crit-entries are optional."
1966msgstr ""
1967
1968#: plugins/check_load.c:93
1800msgid "Warning threshold must be float or float triplet!\n" 1969msgid "Warning threshold must be float or float triplet!\n"
1801msgstr "" 1970msgstr ""
1802 1971
1803#: plugins/check_load.c:132 plugins/check_load.c:148 1972#: plugins/check_load.c:138 plugins/check_load.c:154
1804#, c-format 1973#, c-format
1805msgid "Error opening %s\n" 1974msgid "Error opening %s\n"
1806msgstr "" 1975msgstr ""
1807 1976
1808#: plugins/check_load.c:163 1977#: plugins/check_load.c:169
1809#, fuzzy, c-format 1978#, fuzzy, c-format
1810msgid "could not parse load from uptime: %s\n" 1979msgid "could not parse load from uptime %s: %d\n"
1811msgstr "Argumente konnten nicht ausgewertet werden" 1980msgstr "Argumente konnten nicht ausgewertet werden"
1812 1981
1813#: plugins/check_load.c:169 1982#: plugins/check_load.c:175
1814#, c-format 1983#, c-format
1815msgid "Error code %d returned in %s\n" 1984msgid "Error code %d returned in %s\n"
1816msgstr "" 1985msgstr ""
1817 1986
1818#: plugins/check_load.c:184 1987#: plugins/check_load.c:183
1819#, c-format 1988#, c-format
1820msgid "Error in getloadavg()\n" 1989msgid "Error in getloadavg()\n"
1821msgstr "" 1990msgstr ""
1822 1991
1823#: plugins/check_load.c:187 plugins/check_load.c:189 1992#: plugins/check_load.c:186 plugins/check_load.c:188
1824#, c-format 1993#, c-format
1825msgid "Error processing %s\n" 1994msgid "Error processing %s\n"
1826msgstr "" 1995msgstr ""
1827 1996
1828#: plugins/check_load.c:198 1997#: plugins/check_load.c:197 plugins/check_load.c:212
1829#, c-format 1998#, c-format
1830msgid "load average: %.2f, %.2f, %.2f" 1999msgid "load average: %.2f, %.2f, %.2f"
1831msgstr "" 2000msgstr ""
1832 2001
1833#: plugins/check_load.c:291 2002#: plugins/check_load.c:327
1834#, fuzzy, c-format 2003#, fuzzy, c-format
1835msgid "Critical threshold for %d-minute load average is not specified\n" 2004msgid "Critical threshold for %d-minute load average is not specified\n"
1836msgstr "Critical threshold muss ein positiver Integer sein\n" 2005msgstr "Critical threshold muss ein positiver Integer sein\n"
1837 2006
1838#: plugins/check_load.c:293 2007#: plugins/check_load.c:329
1839#, fuzzy, c-format 2008#, fuzzy, c-format
1840msgid "Warning threshold for %d-minute load average is not specified\n" 2009msgid "Warning threshold for %d-minute load average is not specified\n"
1841msgstr "Warning threshold muss ein positiver Integer sein\n" 2010msgstr "Warning threshold muss ein positiver Integer sein\n"
1842 2011
1843#: plugins/check_load.c:295 2012#: plugins/check_load.c:331
1844#, c-format 2013#, c-format
1845msgid "" 2014msgid ""
1846"Parameter inconsistency: %d-minute \"warning load\" is greater than " 2015"Parameter inconsistency: %d-minute \"warning load\" is greater than "
1847"\"critical load\"\n" 2016"\"critical load\"\n"
1848msgstr "" 2017msgstr ""
1849 2018
1850#: plugins/check_load.c:311 2019#: plugins/check_load.c:346
1851#, c-format 2020#, c-format
1852msgid "This plugin tests the current system load average." 2021msgid "This plugin tests the current system load average."
1853msgstr "" 2022msgstr ""
1854 2023
1855#: plugins/check_load.c:321 2024#: plugins/check_load.c:356
1856msgid "Exit with WARNING status if load average exceeds WLOADn" 2025msgid "Exit with WARNING status if load average exceeds WLOADn"
1857msgstr "" 2026msgstr ""
1858 2027
1859#: plugins/check_load.c:323 2028#: plugins/check_load.c:358
1860msgid "Exit with CRITICAL status if load average exceed CLOADn" 2029msgid "Exit with CRITICAL status if load average exceed CLOADn"
1861msgstr "" 2030msgstr ""
1862 2031
1863#: plugins/check_load.c:324 2032#: plugins/check_load.c:359
1864msgid "the load average format is the same used by \"uptime\" and \"w\"" 2033msgid "the load average format is the same used by \"uptime\" and \"w\""
1865msgstr "" 2034msgstr ""
1866 2035
1867#: plugins/check_load.c:326 2036#: plugins/check_load.c:361
1868msgid "Divide the load averages by the number of CPUs (when possible)" 2037msgid "Divide the load averages by the number of CPUs (when possible)"
1869msgstr "" 2038msgstr ""
1870 2039
2040#: plugins/check_load.c:363
2041msgid "Number of processes to show when printing the top consuming processes."
2042msgstr ""
2043
2044#: plugins/check_load.c:364
2045msgid "NUMBER_OF_PROCS=0 disables this feature. Default value is 0"
2046msgstr ""
2047
2048#: plugins/check_load.c:401
2049#, c-format
2050msgid "'%s' exited with non-zero status.\n"
2051msgstr ""
2052
2053#: plugins/check_load.c:405
2054#, c-format
2055msgid "some error occurred getting procs list.\n"
2056msgstr ""
2057
1871#: plugins/check_mrtg.c:75 2058#: plugins/check_mrtg.c:75
1872msgid "Could not parse arguments\n" 2059msgid "Could not parse arguments\n"
1873msgstr "" 2060msgstr ""
@@ -2043,7 +2230,7 @@ msgstr ""
2043 2230
2044#: plugins/check_mrtgtraf.c:194 2231#: plugins/check_mrtgtraf.c:194
2045#, c-format 2232#, c-format
2046msgid "%s. In = %0.1f %s, %s. Out = %0.1f %s|%s %s\n" 2233msgid "%s. In = %0.1f %s/s, %s. Out = %0.1f %s/s|%s %s\n"
2047msgstr "" 2234msgstr ""
2048 2235
2049#: plugins/check_mrtgtraf.c:207 2236#: plugins/check_mrtgtraf.c:207
@@ -2128,130 +2315,134 @@ msgstr ""
2128msgid "Usage" 2315msgid "Usage"
2129msgstr "" 2316msgstr ""
2130 2317
2131#: plugins/check_mysql.c:171 2318#: plugins/check_mysql.c:185
2132#, c-format 2319#, c-format
2133msgid "status store_result error: %s\n" 2320msgid "status store_result error: %s\n"
2134msgstr "" 2321msgstr ""
2135 2322
2136#: plugins/check_mysql.c:202 2323#: plugins/check_mysql.c:216
2137#, c-format 2324#, c-format
2138msgid "slave query error: %s\n" 2325msgid "slave query error: %s\n"
2139msgstr "" 2326msgstr ""
2140 2327
2141#: plugins/check_mysql.c:209 2328#: plugins/check_mysql.c:223
2142#, c-format 2329#, c-format
2143msgid "slave store_result error: %s\n" 2330msgid "slave store_result error: %s\n"
2144msgstr "" 2331msgstr ""
2145 2332
2146#: plugins/check_mysql.c:215 2333#: plugins/check_mysql.c:229
2147msgid "No slaves defined" 2334msgid "No slaves defined"
2148msgstr "" 2335msgstr ""
2149 2336
2150#: plugins/check_mysql.c:223 2337#: plugins/check_mysql.c:237
2151#, c-format 2338#, c-format
2152msgid "slave fetch row error: %s\n" 2339msgid "slave fetch row error: %s\n"
2153msgstr "" 2340msgstr ""
2154 2341
2155#: plugins/check_mysql.c:228 2342#: plugins/check_mysql.c:242
2156#, c-format 2343#, c-format
2157msgid "Slave running: %s" 2344msgid "Slave running: %s"
2158msgstr "" 2345msgstr ""
2159 2346
2160#: plugins/check_mysql.c:505 2347#: plugins/check_mysql.c:520
2161msgid "This program tests connections to a MySQL server" 2348msgid "This program tests connections to a MySQL server"
2162msgstr "" 2349msgstr ""
2163 2350
2164#: plugins/check_mysql.c:516 2351#: plugins/check_mysql.c:531
2352msgid "Ignore authentication failure and check for mysql connectivity only"
2353msgstr ""
2354
2355#: plugins/check_mysql.c:534
2165msgid "Use the specified socket (has no effect if -H is used)" 2356msgid "Use the specified socket (has no effect if -H is used)"
2166msgstr "" 2357msgstr ""
2167 2358
2168#: plugins/check_mysql.c:519 2359#: plugins/check_mysql.c:537
2169msgid "Check database with indicated name" 2360msgid "Check database with indicated name"
2170msgstr "" 2361msgstr ""
2171 2362
2172#: plugins/check_mysql.c:521 2363#: plugins/check_mysql.c:539
2173msgid "Read from the specified client options file" 2364msgid "Read from the specified client options file"
2174msgstr "" 2365msgstr ""
2175 2366
2176#: plugins/check_mysql.c:523 2367#: plugins/check_mysql.c:541
2177msgid "Use a client options group" 2368msgid "Use a client options group"
2178msgstr "" 2369msgstr ""
2179 2370
2180#: plugins/check_mysql.c:525 2371#: plugins/check_mysql.c:543
2181msgid "Connect using the indicated username" 2372msgid "Connect using the indicated username"
2182msgstr "" 2373msgstr ""
2183 2374
2184#: plugins/check_mysql.c:527 2375#: plugins/check_mysql.c:545
2185msgid "Use the indicated password to authenticate the connection" 2376msgid "Use the indicated password to authenticate the connection"
2186msgstr "" 2377msgstr ""
2187 2378
2188#: plugins/check_mysql.c:528 2379#: plugins/check_mysql.c:546
2189msgid "IMPORTANT: THIS FORM OF AUTHENTICATION IS NOT SECURE!!!" 2380msgid "IMPORTANT: THIS FORM OF AUTHENTICATION IS NOT SECURE!!!"
2190msgstr "" 2381msgstr ""
2191 2382
2192#: plugins/check_mysql.c:529 2383#: plugins/check_mysql.c:547
2193msgid "Your clear-text password could be visible as a process table entry" 2384msgid "Your clear-text password could be visible as a process table entry"
2194msgstr "" 2385msgstr ""
2195 2386
2196#: plugins/check_mysql.c:531 2387#: plugins/check_mysql.c:549
2197msgid "Check if the slave thread is running properly." 2388msgid "Check if the slave thread is running properly."
2198msgstr "" 2389msgstr ""
2199 2390
2200#: plugins/check_mysql.c:533 2391#: plugins/check_mysql.c:551
2201msgid "Exit with WARNING status if slave server is more than INTEGER seconds" 2392msgid "Exit with WARNING status if slave server is more than INTEGER seconds"
2202msgstr "" 2393msgstr ""
2203 2394
2204#: plugins/check_mysql.c:534 plugins/check_mysql.c:537 2395#: plugins/check_mysql.c:552 plugins/check_mysql.c:555
2205msgid "behind master" 2396msgid "behind master"
2206msgstr "" 2397msgstr ""
2207 2398
2208#: plugins/check_mysql.c:536 2399#: plugins/check_mysql.c:554
2209msgid "Exit with CRITICAL status if slave server is more then INTEGER seconds" 2400msgid "Exit with CRITICAL status if slave server is more then INTEGER seconds"
2210msgstr "" 2401msgstr ""
2211 2402
2212#: plugins/check_mysql.c:539 2403#: plugins/check_mysql.c:557
2213msgid "Use ssl encryptation" 2404msgid "Use ssl encryption"
2214msgstr "" 2405msgstr ""
2215 2406
2216#: plugins/check_mysql.c:541 2407#: plugins/check_mysql.c:559
2217msgid "Path to CA signing the cert" 2408msgid "Path to CA signing the cert"
2218msgstr "" 2409msgstr ""
2219 2410
2220#: plugins/check_mysql.c:543 2411#: plugins/check_mysql.c:561
2221msgid "Path to SSL certificate" 2412msgid "Path to SSL certificate"
2222msgstr "" 2413msgstr ""
2223 2414
2224#: plugins/check_mysql.c:545 2415#: plugins/check_mysql.c:563
2225msgid "Path to private SSL key" 2416msgid "Path to private SSL key"
2226msgstr "" 2417msgstr ""
2227 2418
2228#: plugins/check_mysql.c:547 2419#: plugins/check_mysql.c:565
2229msgid "Path to CA directory" 2420msgid "Path to CA directory"
2230msgstr "" 2421msgstr ""
2231 2422
2232#: plugins/check_mysql.c:549 2423#: plugins/check_mysql.c:567
2233msgid "List of valid SSL ciphers" 2424msgid "List of valid SSL ciphers"
2234msgstr "" 2425msgstr ""
2235 2426
2236#: plugins/check_mysql.c:553 2427#: plugins/check_mysql.c:571
2237msgid "" 2428msgid ""
2238"There are no required arguments. By default, the local database is checked" 2429"There are no required arguments. By default, the local database is checked"
2239msgstr "" 2430msgstr ""
2240 2431
2241#: plugins/check_mysql.c:554 2432#: plugins/check_mysql.c:572
2242msgid "" 2433msgid ""
2243"using the default unix socket. You can force TCP on localhost by using an" 2434"using the default unix socket. You can force TCP on localhost by using an"
2244msgstr "" 2435msgstr ""
2245 2436
2246#: plugins/check_mysql.c:555 2437#: plugins/check_mysql.c:573
2247msgid "IP address or FQDN ('localhost' will use the socket as well)." 2438msgid "IP address or FQDN ('localhost' will use the socket as well)."
2248msgstr "" 2439msgstr ""
2249 2440
2250#: plugins/check_mysql.c:559 2441#: plugins/check_mysql.c:577
2251msgid "You must specify -p with an empty string to force an empty password," 2442msgid "You must specify -p with an empty string to force an empty password,"
2252msgstr "" 2443msgstr ""
2253 2444
2254#: plugins/check_mysql.c:560 2445#: plugins/check_mysql.c:578
2255msgid "overriding any my.cnf settings." 2446msgid "overriding any my.cnf settings."
2256msgstr "" 2447msgstr ""
2257 2448
@@ -2272,7 +2463,7 @@ msgstr ""
2272msgid "Cannot parse Nagios log file for valid time" 2463msgid "Cannot parse Nagios log file for valid time"
2273msgstr "" 2464msgstr ""
2274 2465
2275#: plugins/check_nagios.c:183 plugins/check_procs.c:356 2466#: plugins/check_nagios.c:183 plugins/check_procs.c:379
2276#, c-format 2467#, c-format
2277msgid "%d process" 2468msgid "%d process"
2278msgid_plural "%d processes" 2469msgid_plural "%d processes"
@@ -2351,7 +2542,7 @@ msgstr ""
2351msgid "Wrong client version - running: %s, required: %s" 2542msgid "Wrong client version - running: %s, required: %s"
2352msgstr "" 2543msgstr ""
2353 2544
2354#: plugins/check_nt.c:153 plugins/check_nt.c:218 2545#: plugins/check_nt.c:153 plugins/check_nt.c:239
2355msgid "missing -l parameters" 2546msgid "missing -l parameters"
2356msgstr "" 2547msgstr ""
2357 2548
@@ -2377,494 +2568,515 @@ msgstr ""
2377msgid "not enough values for -l parameters" 2568msgid "not enough values for -l parameters"
2378msgstr "" 2569msgstr ""
2379 2570
2380#: plugins/check_nt.c:206 2571#: plugins/check_nt.c:208 plugins/check_nt.c:241
2381#, c-format 2572msgid "wrong -l argument"
2382msgid "System Uptime - %u day(s) %u hour(s) %u minute(s)"
2383msgstr "" 2573msgstr ""
2384 2574
2385#: plugins/check_nt.c:220 2575#: plugins/check_nt.c:225
2386msgid "wrong -l argument" 2576#, c-format
2577msgid "System Uptime - %u day(s) %u hour(s) %u minute(s) |uptime=%lu"
2387msgstr "" 2578msgstr ""
2388 2579
2389#: plugins/check_nt.c:236 2580#: plugins/check_nt.c:257
2390#, c-format 2581#, c-format
2391msgid "%s:\\ - total: %.2f Gb - used: %.2f Gb (%.0f%%) - free %.2f Gb (%.0f%%)" 2582msgid "%s:\\ - total: %.2f Gb - used: %.2f Gb (%.0f%%) - free %.2f Gb (%.0f%%)"
2392msgstr "" 2583msgstr ""
2393 2584
2394#: plugins/check_nt.c:239 2585#: plugins/check_nt.c:260
2395#, c-format 2586#, c-format
2396msgid "'%s:\\ Used Space'=%.2fGb;%.2f;%.2f;0.00;%.2f" 2587msgid "'%s:\\ Used Space'=%.2fGb;%.2f;%.2f;0.00;%.2f"
2397msgstr "" 2588msgstr ""
2398 2589
2399#: plugins/check_nt.c:253 2590#: plugins/check_nt.c:274
2400msgid "Free disk space : Invalid drive" 2591msgid "Free disk space : Invalid drive"
2401msgstr "" 2592msgstr ""
2402 2593
2403#: plugins/check_nt.c:263 2594#: plugins/check_nt.c:284
2404msgid "No service/process specified" 2595msgid "No service/process specified"
2405msgstr "" 2596msgstr ""
2406 2597
2407#: plugins/check_nt.c:271 plugins/check_nt.c:284 plugins/check_nt.c:288 2598#: plugins/check_nt.c:292 plugins/check_nt.c:305 plugins/check_nt.c:309
2408#: plugins/check_nt.c:622 2599#: plugins/check_nt.c:643
2409msgid "could not fetch information from server\n" 2600msgid "could not fetch information from server\n"
2410msgstr "" 2601msgstr ""
2411 2602
2412#: plugins/check_nt.c:296 2603#: plugins/check_nt.c:317
2413#, c-format 2604#, c-format
2414msgid "" 2605msgid ""
2415"Memory usage: total:%.2f Mb - used: %.2f Mb (%.0f%%) - free: %.2f Mb (%.0f%%)" 2606"Memory usage: total:%.2f MB - used: %.2f MB (%.0f%%) - free: %.2f MB (%.0f%%)"
2416msgstr "" 2607msgstr ""
2417 2608
2418#: plugins/check_nt.c:299 2609#: plugins/check_nt.c:320
2419#, c-format 2610#, c-format
2420msgid "'Memory usage'=%.2fMb;%.2f;%.2f;0.00;%.2f" 2611msgid "'Memory usage'=%.2fMB;%.2f;%.2f;0.00;%.2f"
2421msgstr "" 2612msgstr ""
2422 2613
2423#: plugins/check_nt.c:335 plugins/check_nt.c:420 plugins/check_nt.c:450 2614#: plugins/check_nt.c:356 plugins/check_nt.c:441 plugins/check_nt.c:471
2424msgid "No counter specified" 2615msgid "No counter specified"
2425msgstr "" 2616msgstr ""
2426 2617
2427#: plugins/check_nt.c:367 2618#: plugins/check_nt.c:388
2428msgid "Minimum value contains non-numbers" 2619msgid "Minimum value contains non-numbers"
2429msgstr "" 2620msgstr ""
2430 2621
2431#: plugins/check_nt.c:371 2622#: plugins/check_nt.c:392
2432msgid "Maximum value contains non-numbers" 2623msgid "Maximum value contains non-numbers"
2433msgstr "" 2624msgstr ""
2434 2625
2435#: plugins/check_nt.c:378 2626#: plugins/check_nt.c:399
2436msgid "No unit counter specified" 2627msgid "No unit counter specified"
2437msgstr "" 2628msgstr ""
2438 2629
2439#: plugins/check_nt.c:465 2630#: plugins/check_nt.c:486
2440msgid "Please specify a variable to check" 2631msgid "Please specify a variable to check"
2441msgstr "" 2632msgstr ""
2442 2633
2443#: plugins/check_nt.c:549 2634#: plugins/check_nt.c:570
2444#, fuzzy 2635#, fuzzy
2445msgid "Server port must be an integer\n" 2636msgid "Server port must be an integer\n"
2446msgstr "skip lines muss ein Integer sein" 2637msgstr "skip lines muss ein Integer sein"
2447 2638
2448#: plugins/check_nt.c:603 2639#: plugins/check_nt.c:624
2449#, fuzzy 2640#, fuzzy
2450msgid "You must provide a server address or host name" 2641msgid "You must provide a server address or host name"
2451msgstr "Hostname oder Serveradresse muss angegeben werden" 2642msgstr "Hostname oder Serveradresse muss angegeben werden"
2452 2643
2453#: plugins/check_nt.c:609 2644#: plugins/check_nt.c:630
2454msgid "None" 2645msgid "None"
2455msgstr "" 2646msgstr ""
2456 2647
2457#: plugins/check_nt.c:666 2648#: plugins/check_nt.c:687
2458msgid "This plugin collects data from the NSClient service running on a" 2649msgid "This plugin collects data from the NSClient service running on a"
2459msgstr "" 2650msgstr ""
2460 2651
2461#: plugins/check_nt.c:667 2652#: plugins/check_nt.c:688
2462msgid "Windows NT/2000/XP/2003 server." 2653msgid "Windows NT/2000/XP/2003 server."
2463msgstr "" 2654msgstr ""
2464 2655
2465#: plugins/check_nt.c:678 2656#: plugins/check_nt.c:699
2466msgid "Name of the host to check" 2657msgid "Name of the host to check"
2467msgstr "" 2658msgstr ""
2468 2659
2469#: plugins/check_nt.c:680 2660#: plugins/check_nt.c:701
2470#, fuzzy 2661#, fuzzy
2471msgid "Optional port number (default: " 2662msgid "Optional port number (default: "
2472msgstr "Ungültige Portnummer" 2663msgstr "Ungültige Portnummer"
2473 2664
2474#: plugins/check_nt.c:683 2665#: plugins/check_nt.c:704
2475msgid "Password needed for the request" 2666msgid "Password needed for the request"
2476msgstr "" 2667msgstr ""
2477 2668
2478#: plugins/check_nt.c:685 plugins/check_nwstat.c:1661 2669#: plugins/check_nt.c:706 plugins/check_nwstat.c:1661
2479#: plugins/check_overcr.c:432 2670#: plugins/check_overcr.c:432
2480msgid "Threshold which will result in a warning status" 2671msgid "Threshold which will result in a warning status"
2481msgstr "" 2672msgstr ""
2482 2673
2483#: plugins/check_nt.c:687 plugins/check_nwstat.c:1663 2674#: plugins/check_nt.c:708 plugins/check_nwstat.c:1663
2484#: plugins/check_overcr.c:434 2675#: plugins/check_overcr.c:434
2485msgid "Threshold which will result in a critical status" 2676msgid "Threshold which will result in a critical status"
2486msgstr "" 2677msgstr ""
2487 2678
2488#: plugins/check_nt.c:689 2679#: plugins/check_nt.c:710
2489msgid "Seconds before connection attempt times out (default: " 2680msgid "Seconds before connection attempt times out (default: "
2490msgstr "" 2681msgstr ""
2491 2682
2492#: plugins/check_nt.c:691 2683#: plugins/check_nt.c:712
2493msgid "Parameters passed to specified check (see below)" 2684msgid "Parameters passed to specified check (see below)"
2494msgstr "" 2685msgstr ""
2495 2686
2496#: plugins/check_nt.c:693 2687#: plugins/check_nt.c:714
2497msgid "Display options (currently only SHOWALL works)" 2688msgid "Display options (currently only SHOWALL works)"
2498msgstr "" 2689msgstr ""
2499 2690
2500#: plugins/check_nt.c:695 2691#: plugins/check_nt.c:716
2501msgid "Return UNKNOWN on timeouts" 2692msgid "Return UNKNOWN on timeouts"
2502msgstr "" 2693msgstr ""
2503 2694
2504#: plugins/check_nt.c:698 2695#: plugins/check_nt.c:719
2505msgid "Print this help screen" 2696msgid "Print this help screen"
2506msgstr "" 2697msgstr ""
2507 2698
2508#: plugins/check_nt.c:700 2699#: plugins/check_nt.c:721
2509msgid "Print version information" 2700msgid "Print version information"
2510msgstr "" 2701msgstr ""
2511 2702
2512#: plugins/check_nt.c:702 2703#: plugins/check_nt.c:723
2513msgid "Variable to check" 2704msgid "Variable to check"
2514msgstr "" 2705msgstr ""
2515 2706
2516#: plugins/check_nt.c:703 2707#: plugins/check_nt.c:724
2517msgid "Valid variables are:" 2708msgid "Valid variables are:"
2518msgstr "" 2709msgstr ""
2519 2710
2520#: plugins/check_nt.c:705 2711#: plugins/check_nt.c:726
2521msgid "Get the NSClient version" 2712msgid "Get the NSClient version"
2522msgstr "" 2713msgstr ""
2523 2714
2524#: plugins/check_nt.c:706 2715#: plugins/check_nt.c:727
2525msgid "If -l <version> is specified, will return warning if versions differ." 2716msgid "If -l <version> is specified, will return warning if versions differ."
2526msgstr "" 2717msgstr ""
2527 2718
2528#: plugins/check_nt.c:708 2719#: plugins/check_nt.c:729
2529msgid "Average CPU load on last x minutes." 2720msgid "Average CPU load on last x minutes."
2530msgstr "" 2721msgstr ""
2531 2722
2532#: plugins/check_nt.c:709 2723#: plugins/check_nt.c:730
2533msgid "Request a -l parameter with the following syntax:" 2724msgid "Request a -l parameter with the following syntax:"
2534msgstr "" 2725msgstr ""
2535 2726
2536#: plugins/check_nt.c:710 2727#: plugins/check_nt.c:731
2537msgid "-l <minutes range>,<warning threshold>,<critical threshold>." 2728msgid "-l <minutes range>,<warning threshold>,<critical threshold>."
2538msgstr "" 2729msgstr ""
2539 2730
2540#: plugins/check_nt.c:711 2731#: plugins/check_nt.c:732
2541msgid "<minute range> should be less than 24*60." 2732msgid "<minute range> should be less than 24*60."
2542msgstr "" 2733msgstr ""
2543 2734
2544#: plugins/check_nt.c:712 2735#: plugins/check_nt.c:733
2545msgid "" 2736msgid ""
2546"Thresholds are percentage and up to 10 requests can be done in one shot." 2737"Thresholds are percentage and up to 10 requests can be done in one shot."
2547msgstr "" 2738msgstr ""
2548 2739
2549#: plugins/check_nt.c:715 2740#: plugins/check_nt.c:736
2550msgid "Get the uptime of the machine." 2741msgid "Get the uptime of the machine."
2551msgstr "" 2742msgstr ""
2552 2743
2553#: plugins/check_nt.c:716 2744#: plugins/check_nt.c:737
2554msgid "No specific parameters. No warning or critical threshold" 2745msgid "-l <unit> "
2555msgstr "" 2746msgstr ""
2556 2747
2557#: plugins/check_nt.c:718 2748#: plugins/check_nt.c:738
2749msgid "<unit> = seconds, minutes, hours, or days. (default: minutes)"
2750msgstr ""
2751
2752#: plugins/check_nt.c:739
2753#, fuzzy
2754msgid "Thresholds will use the unit specified above."
2755msgstr ""
2756"Testet den DNS Dienst auf dem angegebenen Host mit dig\n"
2757"\n"
2758
2759#: plugins/check_nt.c:741
2558msgid "Size and percentage of disk use." 2760msgid "Size and percentage of disk use."
2559msgstr "" 2761msgstr ""
2560 2762
2561#: plugins/check_nt.c:719 2763#: plugins/check_nt.c:742
2562msgid "Request a -l parameter containing the drive letter only." 2764msgid "Request a -l parameter containing the drive letter only."
2563msgstr "" 2765msgstr ""
2564 2766
2565#: plugins/check_nt.c:720 plugins/check_nt.c:723 2767#: plugins/check_nt.c:743 plugins/check_nt.c:746
2566msgid "Warning and critical thresholds can be specified with -w and -c." 2768msgid "Warning and critical thresholds can be specified with -w and -c."
2567msgstr "" 2769msgstr ""
2568 2770
2569#: plugins/check_nt.c:722 2771#: plugins/check_nt.c:745
2570msgid "Memory use." 2772msgid "Memory use."
2571msgstr "" 2773msgstr ""
2572 2774
2573#: plugins/check_nt.c:725 2775#: plugins/check_nt.c:748
2574msgid "Check the state of one or several services." 2776msgid "Check the state of one or several services."
2575msgstr "" 2777msgstr ""
2576 2778
2577#: plugins/check_nt.c:726 plugins/check_nt.c:735 2779#: plugins/check_nt.c:749 plugins/check_nt.c:758
2578msgid "Request a -l parameters with the following syntax:" 2780msgid "Request a -l parameters with the following syntax:"
2579msgstr "" 2781msgstr ""
2580 2782
2581#: plugins/check_nt.c:727 2783#: plugins/check_nt.c:750
2582msgid "-l <service1>,<service2>,<service3>,..." 2784msgid "-l <service1>,<service2>,<service3>,..."
2583msgstr "" 2785msgstr ""
2584 2786
2585#: plugins/check_nt.c:728 2787#: plugins/check_nt.c:751
2586msgid "You can specify -d SHOWALL in case you want to see working services" 2788msgid "You can specify -d SHOWALL in case you want to see working services"
2587msgstr "" 2789msgstr ""
2588 2790
2589#: plugins/check_nt.c:729 2791#: plugins/check_nt.c:752
2590msgid "in the returned string." 2792msgid "in the returned string."
2591msgstr "" 2793msgstr ""
2592 2794
2593#: plugins/check_nt.c:731 2795#: plugins/check_nt.c:754
2594msgid "Check if one or several process are running." 2796msgid "Check if one or several process are running."
2595msgstr "" 2797msgstr ""
2596 2798
2597#: plugins/check_nt.c:732 2799#: plugins/check_nt.c:755
2598msgid "Same syntax as SERVICESTATE." 2800msgid "Same syntax as SERVICESTATE."
2599msgstr "" 2801msgstr ""
2600 2802
2601#: plugins/check_nt.c:734 2803#: plugins/check_nt.c:757
2602msgid "Check any performance counter of Windows NT/2000." 2804msgid "Check any performance counter of Windows NT/2000."
2603msgstr "" 2805msgstr ""
2604 2806
2605#: plugins/check_nt.c:736 2807#: plugins/check_nt.c:759
2606msgid "-l \"\\\\<performance object>\\\\counter\",\"<description>" 2808msgid "-l \"\\\\<performance object>\\\\counter\",\"<description>"
2607msgstr "" 2809msgstr ""
2608 2810
2609#: plugins/check_nt.c:737 2811#: plugins/check_nt.c:760
2610msgid "The <description> parameter is optional and is given to a printf " 2812msgid "The <description> parameter is optional and is given to a printf "
2611msgstr "" 2813msgstr ""
2612 2814
2613#: plugins/check_nt.c:738 2815#: plugins/check_nt.c:761
2614msgid "output command which requires a float parameter." 2816msgid "output command which requires a float parameter."
2615msgstr "" 2817msgstr ""
2616 2818
2617#: plugins/check_nt.c:739 2819#: plugins/check_nt.c:762
2618#, c-format 2820#, c-format
2619msgid "If <description> does not include \"%%\", it is used as a label." 2821msgid "If <description> does not include \"%%\", it is used as a label."
2620msgstr "" 2822msgstr ""
2621 2823
2622#: plugins/check_nt.c:740 plugins/check_nt.c:755 2824#: plugins/check_nt.c:763 plugins/check_nt.c:778
2623msgid "Some examples:" 2825msgid "Some examples:"
2624msgstr "" 2826msgstr ""
2625 2827
2626#: plugins/check_nt.c:744 2828#: plugins/check_nt.c:767
2627msgid "Check any performance counter object of Windows NT/2000." 2829msgid "Check any performance counter object of Windows NT/2000."
2628msgstr "" 2830msgstr ""
2629 2831
2630#: plugins/check_nt.c:745 2832#: plugins/check_nt.c:768
2631msgid "" 2833msgid ""
2632"Syntax: check_nt -H <hostname> -p <port> -v INSTANCES -l <counter object>" 2834"Syntax: check_nt -H <hostname> -p <port> -v INSTANCES -l <counter object>"
2633msgstr "" 2835msgstr ""
2634 2836
2635#: plugins/check_nt.c:746 2837#: plugins/check_nt.c:769
2636msgid "<counter object> is a Windows Perfmon Counter object (eg. Process)," 2838msgid "<counter object> is a Windows Perfmon Counter object (eg. Process),"
2637msgstr "" 2839msgstr ""
2638 2840
2639#: plugins/check_nt.c:747 2841#: plugins/check_nt.c:770
2640msgid "if it is two words, it should be enclosed in quotes" 2842msgid "if it is two words, it should be enclosed in quotes"
2641msgstr "" 2843msgstr ""
2642 2844
2643#: plugins/check_nt.c:748 2845#: plugins/check_nt.c:771
2644msgid "The returned results will be a comma-separated list of instances on " 2846msgid "The returned results will be a comma-separated list of instances on "
2645msgstr "" 2847msgstr ""
2646 2848
2647#: plugins/check_nt.c:749 2849#: plugins/check_nt.c:772
2648msgid " the selected computer for that object." 2850msgid " the selected computer for that object."
2649msgstr "" 2851msgstr ""
2650 2852
2651#: plugins/check_nt.c:750 2853#: plugins/check_nt.c:773
2652msgid "" 2854msgid ""
2653"The purpose of this is to be run from command line to determine what " 2855"The purpose of this is to be run from command line to determine what "
2654"instances" 2856"instances"
2655msgstr "" 2857msgstr ""
2656 2858
2657#: plugins/check_nt.c:751 2859#: plugins/check_nt.c:774
2658msgid "" 2860msgid ""
2659" are available for monitoring without having to log onto the Windows server" 2861" are available for monitoring without having to log onto the Windows server"
2660msgstr "" 2862msgstr ""
2661 2863
2662#: plugins/check_nt.c:752 2864#: plugins/check_nt.c:775
2663msgid " to run Perfmon directly." 2865msgid " to run Perfmon directly."
2664msgstr "" 2866msgstr ""
2665 2867
2666#: plugins/check_nt.c:753 2868#: plugins/check_nt.c:776
2667msgid "" 2869msgid ""
2668"It can also be used in scripts that automatically create the monitoring " 2870"It can also be used in scripts that automatically create the monitoring "
2669"service" 2871"service"
2670msgstr "" 2872msgstr ""
2671 2873
2672#: plugins/check_nt.c:754 2874#: plugins/check_nt.c:777
2673msgid " configuration files." 2875msgid " configuration files."
2674msgstr "" 2876msgstr ""
2675 2877
2676#: plugins/check_nt.c:756 2878#: plugins/check_nt.c:779
2677msgid "check_nt -H 192.168.1.1 -p 1248 -v INSTANCES -l Process" 2879msgid "check_nt -H 192.168.1.1 -p 1248 -v INSTANCES -l Process"
2678msgstr "" 2880msgstr ""
2679 2881
2680#: plugins/check_nt.c:759 2882#: plugins/check_nt.c:782
2681msgid "" 2883msgid ""
2682"- The NSClient service should be running on the server to get any information" 2884"- The NSClient service should be running on the server to get any information"
2683msgstr "" 2885msgstr ""
2684 2886
2685#: plugins/check_nt.c:761 2887#: plugins/check_nt.c:784
2686msgid "- Critical thresholds should be lower than warning thresholds" 2888msgid "- Critical thresholds should be lower than warning thresholds"
2687msgstr "" 2889msgstr ""
2688 2890
2689#: plugins/check_nt.c:762 2891#: plugins/check_nt.c:785
2690msgid "- Default port 1248 is sometimes in use by other services. The error" 2892msgid "- Default port 1248 is sometimes in use by other services. The error"
2691msgstr "" 2893msgstr ""
2692 2894
2693#: plugins/check_nt.c:763 2895#: plugins/check_nt.c:786
2694msgid "" 2896msgid ""
2695"output when this happens contains \"Cannot map xxxxx to protocol number\"." 2897"output when this happens contains \"Cannot map xxxxx to protocol number\"."
2696msgstr "" 2898msgstr ""
2697 2899
2698#: plugins/check_nt.c:764 2900#: plugins/check_nt.c:787
2699msgid "One fix for this is to change the port to something else on check_nt " 2901msgid "One fix for this is to change the port to something else on check_nt "
2700msgstr "" 2902msgstr ""
2701 2903
2702#: plugins/check_nt.c:765 2904#: plugins/check_nt.c:788
2703msgid "and on the client service it's connecting to." 2905msgid "and on the client service it's connecting to."
2704msgstr "" 2906msgstr ""
2705 2907
2706#: plugins/check_ntp.c:807 plugins/check_ntp_peer.c:612 2908#: plugins/check_ntp.c:629
2707#: plugins/check_ntp_time.c:571 2909#, c-format
2910msgid "jitter response too large (%lu bytes)\n"
2911msgstr ""
2912
2913#: plugins/check_ntp.c:817 plugins/check_ntp_peer.c:619
2914#: plugins/check_ntp_time.c:576
2708msgid "NTP CRITICAL:" 2915msgid "NTP CRITICAL:"
2709msgstr "NTP CRITICAL:" 2916msgstr "NTP CRITICAL:"
2710 2917
2711#: plugins/check_ntp.c:810 plugins/check_ntp_peer.c:615 2918#: plugins/check_ntp.c:820 plugins/check_ntp_peer.c:622
2712#: plugins/check_ntp_time.c:574 2919#: plugins/check_ntp_time.c:579
2713msgid "NTP WARNING:" 2920msgid "NTP WARNING:"
2714msgstr "NTP WARNING:" 2921msgstr "NTP WARNING:"
2715 2922
2716#: plugins/check_ntp.c:813 plugins/check_ntp_peer.c:618 2923#: plugins/check_ntp.c:823 plugins/check_ntp_peer.c:625
2717#: plugins/check_ntp_time.c:577 2924#: plugins/check_ntp_time.c:582
2718msgid "NTP OK:" 2925msgid "NTP OK:"
2719msgstr "NTP OK:" 2926msgstr "NTP OK:"
2720 2927
2721#: plugins/check_ntp.c:816 plugins/check_ntp_peer.c:621 2928#: plugins/check_ntp.c:826 plugins/check_ntp_peer.c:628
2722#: plugins/check_ntp_time.c:580 2929#: plugins/check_ntp_time.c:585
2723msgid "NTP UNKNOWN:" 2930msgid "NTP UNKNOWN:"
2724msgstr "NTP UNKNOWN:" 2931msgstr "NTP UNKNOWN:"
2725 2932
2726#: plugins/check_ntp.c:820 plugins/check_ntp_peer.c:630 2933#: plugins/check_ntp.c:830 plugins/check_ntp_peer.c:637
2727#: plugins/check_ntp_time.c:584 2934#: plugins/check_ntp_time.c:589
2728msgid "Offset unknown" 2935msgid "Offset unknown"
2729msgstr "" 2936msgstr ""
2730 2937
2731#: plugins/check_ntp.c:823 plugins/check_ntp_peer.c:633 2938#: plugins/check_ntp.c:833 plugins/check_ntp_peer.c:640
2732#: plugins/check_ntp_time.c:587 2939#: plugins/check_ntp_peer.c:642 plugins/check_ntp_peer.c:644
2940#: plugins/check_ntp_time.c:592
2733msgid "Offset" 2941msgid "Offset"
2734msgstr "" 2942msgstr ""
2735 2943
2736#: plugins/check_ntp.c:844 plugins/check_ntp_peer.c:662 2944#: plugins/check_ntp.c:854 plugins/check_ntp_peer.c:690
2737#, fuzzy 2945#, fuzzy
2738msgid "This plugin checks the selected ntp server" 2946msgid "This plugin checks the selected ntp server"
2739msgstr "" 2947msgstr ""
2740"Testet den DNS Dienst auf dem angegebenen Host mit dig\n" 2948"Testet den DNS Dienst auf dem angegebenen Host mit dig\n"
2741"\n" 2949"\n"
2742 2950
2743#: plugins/check_ntp.c:854 plugins/check_ntp_peer.c:674 2951#: plugins/check_ntp.c:864 plugins/check_ntp_peer.c:702
2744#: plugins/check_ntp_time.c:614 2952#: plugins/check_ntp_time.c:619
2745msgid "Offset to result in warning status (seconds)" 2953msgid "Offset to result in warning status (seconds)"
2746msgstr "" 2954msgstr ""
2747 2955
2748#: plugins/check_ntp.c:856 plugins/check_ntp_peer.c:676 2956#: plugins/check_ntp.c:866 plugins/check_ntp_peer.c:704
2749#: plugins/check_ntp_time.c:616 2957#: plugins/check_ntp_time.c:621
2750msgid "Offset to result in critical status (seconds)" 2958msgid "Offset to result in critical status (seconds)"
2751msgstr "" 2959msgstr ""
2752 2960
2753#: plugins/check_ntp.c:858 plugins/check_ntp_peer.c:682 2961#: plugins/check_ntp.c:868 plugins/check_ntp_peer.c:710
2754#, fuzzy 2962#, fuzzy
2755msgid "Warning threshold for jitter" 2963msgid "Warning threshold for jitter"
2756msgstr "Warning threshold Integer sein" 2964msgstr "Warning threshold Integer sein"
2757 2965
2758#: plugins/check_ntp.c:860 plugins/check_ntp_peer.c:684 2966#: plugins/check_ntp.c:870 plugins/check_ntp_peer.c:712
2759#, fuzzy 2967#, fuzzy
2760msgid "Critical threshold for jitter" 2968msgid "Critical threshold for jitter"
2761msgstr "Critical threshold muss ein Integer sein" 2969msgstr "Critical threshold muss ein Integer sein"
2762 2970
2763#: plugins/check_ntp.c:870 2971#: plugins/check_ntp.c:880
2764msgid "Normal offset check:" 2972msgid "Normal offset check:"
2765msgstr "" 2973msgstr ""
2766 2974
2767#: plugins/check_ntp.c:873 plugins/check_ntp_peer.c:709 2975#: plugins/check_ntp.c:883 plugins/check_ntp_peer.c:737
2768msgid "" 2976msgid ""
2769"Check jitter too, avoiding critical notifications if jitter isn't available" 2977"Check jitter too, avoiding critical notifications if jitter isn't available"
2770msgstr "" 2978msgstr ""
2771 2979
2772#: plugins/check_ntp.c:874 plugins/check_ntp_peer.c:710 2980#: plugins/check_ntp.c:884 plugins/check_ntp_peer.c:738
2773msgid "(See Notes above for more details on thresholds formats):" 2981msgid "(See Notes above for more details on thresholds formats):"
2774msgstr "" 2982msgstr ""
2775 2983
2776#: plugins/check_ntp.c:879 plugins/check_ntp.c:886 2984#: plugins/check_ntp.c:889 plugins/check_ntp.c:896
2777msgid "WARNING: check_ntp is deprecated. Please use check_ntp_peer or" 2985msgid "WARNING: check_ntp is deprecated. Please use check_ntp_peer or"
2778msgstr "" 2986msgstr ""
2779 2987
2780#: plugins/check_ntp.c:880 plugins/check_ntp.c:887 2988#: plugins/check_ntp.c:890 plugins/check_ntp.c:897
2781msgid "check_ntp_time instead." 2989msgid "check_ntp_time instead."
2782msgstr "" 2990msgstr ""
2783 2991
2784#: plugins/check_ntp_peer.c:625 2992#: plugins/check_ntp_peer.c:632
2785msgid "Server not synchronized" 2993msgid "Server not synchronized"
2786msgstr "" 2994msgstr ""
2787 2995
2788#: plugins/check_ntp_peer.c:627 2996#: plugins/check_ntp_peer.c:634
2789msgid "Server has the LI_ALARM bit set" 2997msgid "Server has the LI_ALARM bit set"
2790msgstr "" 2998msgstr ""
2791 2999
2792#: plugins/check_ntp_peer.c:672 3000#: plugins/check_ntp_peer.c:700
2793msgid "" 3001msgid ""
2794"Returns UNKNOWN instead of CRITICAL or WARNING if server isn't synchronized" 3002"Returns UNKNOWN instead of CRITICAL or WARNING if server isn't synchronized"
2795msgstr "" 3003msgstr ""
2796 3004
2797#: plugins/check_ntp_peer.c:678 3005#: plugins/check_ntp_peer.c:706
2798#, fuzzy 3006#, fuzzy
2799msgid "Warning threshold for stratum of server's synchronization peer" 3007msgid "Warning threshold for stratum of server's synchronization peer"
2800msgstr "Warning threshold Integer sein" 3008msgstr "Warning threshold Integer sein"
2801 3009
2802#: plugins/check_ntp_peer.c:680 3010#: plugins/check_ntp_peer.c:708
2803#, fuzzy 3011#, fuzzy
2804msgid "Critical threshold for stratum of server's synchronization peer" 3012msgid "Critical threshold for stratum of server's synchronization peer"
2805msgstr "Critical threshold muss ein Integer sein" 3013msgstr "Critical threshold muss ein Integer sein"
2806 3014
2807#: plugins/check_ntp_peer.c:686 3015#: plugins/check_ntp_peer.c:714
2808#, fuzzy 3016#, fuzzy
2809msgid "Warning threshold for number of usable time sources (\"truechimers\")" 3017msgid "Warning threshold for number of usable time sources (\"truechimers\")"
2810msgstr "Warning threshold muss ein positiver Integer sein\n" 3018msgstr "Warning threshold muss ein positiver Integer sein\n"
2811 3019
2812#: plugins/check_ntp_peer.c:688 3020#: plugins/check_ntp_peer.c:716
2813#, fuzzy 3021#, fuzzy
2814msgid "Critical threshold for number of usable time sources (\"truechimers\")" 3022msgid "Critical threshold for number of usable time sources (\"truechimers\")"
2815msgstr "Critical threshold muss ein positiver Integer sein\n" 3023msgstr "Critical threshold muss ein positiver Integer sein\n"
2816 3024
2817#: plugins/check_ntp_peer.c:693 3025#: plugins/check_ntp_peer.c:721
2818msgid "This plugin checks an NTP server independent of any commandline" 3026msgid "This plugin checks an NTP server independent of any commandline"
2819msgstr "" 3027msgstr ""
2820 3028
2821#: plugins/check_ntp_peer.c:694 3029#: plugins/check_ntp_peer.c:722
2822msgid "programs or external libraries." 3030msgid "programs or external libraries."
2823msgstr "" 3031msgstr ""
2824 3032
2825#: plugins/check_ntp_peer.c:697 3033#: plugins/check_ntp_peer.c:725
2826#, fuzzy 3034#, fuzzy
2827msgid "Use this plugin to check the health of an NTP server. It supports" 3035msgid "Use this plugin to check the health of an NTP server. It supports"
2828msgstr "" 3036msgstr ""
2829"Testet den DNS Dienst auf dem angegebenen Host mit dig\n" 3037"Testet den DNS Dienst auf dem angegebenen Host mit dig\n"
2830"\n" 3038"\n"
2831 3039
2832#: plugins/check_ntp_peer.c:698 3040#: plugins/check_ntp_peer.c:726
2833msgid "checking the offset with the sync peer, the jitter and stratum. This" 3041msgid "checking the offset with the sync peer, the jitter and stratum. This"
2834msgstr "" 3042msgstr ""
2835 3043
2836#: plugins/check_ntp_peer.c:699 3044#: plugins/check_ntp_peer.c:727
2837msgid "plugin will not check the clock offset between the local host and NTP" 3045msgid "plugin will not check the clock offset between the local host and NTP"
2838msgstr "" 3046msgstr ""
2839 3047
2840#: plugins/check_ntp_peer.c:700 3048#: plugins/check_ntp_peer.c:728
2841msgid "server; please use check_ntp_time for that purpose." 3049msgid "server; please use check_ntp_time for that purpose."
2842msgstr "" 3050msgstr ""
2843 3051
2844#: plugins/check_ntp_peer.c:706 3052#: plugins/check_ntp_peer.c:734
2845msgid "Simple NTP server check:" 3053msgid "Simple NTP server check:"
2846msgstr "" 3054msgstr ""
2847 3055
2848#: plugins/check_ntp_peer.c:713 3056#: plugins/check_ntp_peer.c:741
2849msgid "Only check the number of usable time sources (\"truechimers\"):" 3057msgid "Only check the number of usable time sources (\"truechimers\"):"
2850msgstr "" 3058msgstr ""
2851 3059
2852#: plugins/check_ntp_peer.c:716 3060#: plugins/check_ntp_peer.c:744
2853msgid "Check only stratum:" 3061msgid "Check only stratum:"
2854msgstr "" 3062msgstr ""
2855 3063
2856#: plugins/check_ntp_time.c:602 3064#: plugins/check_ntp_time.c:607
2857#, fuzzy 3065#, fuzzy
2858msgid "This plugin checks the clock offset with the ntp server" 3066msgid "This plugin checks the clock offset with the ntp server"
2859msgstr "" 3067msgstr ""
2860"Testet den DNS Dienst auf dem angegebenen Host mit dig\n" 3068"Testet den DNS Dienst auf dem angegebenen Host mit dig\n"
2861"\n" 3069"\n"
2862 3070
2863#: plugins/check_ntp_time.c:612 3071#: plugins/check_ntp_time.c:617
2864msgid "Returns UNKNOWN instead of CRITICAL if offset cannot be found" 3072msgid "Returns UNKNOWN instead of CRITICAL if offset cannot be found"
2865msgstr "" 3073msgstr ""
2866 3074
2867#: plugins/check_ntp_time.c:621 3075#: plugins/check_ntp_time.c:623
3076msgid "Expected offset of the ntp server relative to local server (seconds)"
3077msgstr ""
3078
3079#: plugins/check_ntp_time.c:628
2868#, fuzzy 3080#, fuzzy
2869msgid "This plugin checks the clock offset between the local host and a" 3081msgid "This plugin checks the clock offset between the local host and a"
2870msgstr "" 3082msgstr ""
@@ -2873,22 +3085,30 @@ msgstr ""
2873"unterschritten wird.\n" 3085"unterschritten wird.\n"
2874"\n" 3086"\n"
2875 3087
2876#: plugins/check_ntp_time.c:622 3088#: plugins/check_ntp_time.c:629
2877msgid "remote NTP server. It is independent of any commandline programs or" 3089msgid "remote NTP server. It is independent of any commandline programs or"
2878msgstr "" 3090msgstr ""
2879 3091
2880#: plugins/check_ntp_time.c:623 3092#: plugins/check_ntp_time.c:630
2881msgid "external libraries." 3093msgid "external libraries."
2882msgstr "" 3094msgstr ""
2883 3095
2884#: plugins/check_ntp_time.c:627 3096#: plugins/check_ntp_time.c:634
2885msgid "If you'd rather want to monitor an NTP server, please use" 3097msgid "If you'd rather want to monitor an NTP server, please use"
2886msgstr "" 3098msgstr ""
2887 3099
2888#: plugins/check_ntp_time.c:628 3100#: plugins/check_ntp_time.c:635
2889msgid "check_ntp_peer." 3101msgid "check_ntp_peer."
2890msgstr "" 3102msgstr ""
2891 3103
3104#: plugins/check_ntp_time.c:636
3105msgid "--time-offset is useful for compensating for servers with known"
3106msgstr ""
3107
3108#: plugins/check_ntp_time.c:637
3109msgid "and expected clock skew."
3110msgstr ""
3111
2892#: plugins/check_nwstat.c:194 3112#: plugins/check_nwstat.c:194
2893#, c-format 3113#, c-format
2894msgid "NetWare %s: " 3114msgid "NetWare %s: "
@@ -3457,600 +3677,635 @@ msgid ""
3457"higher than the warning threshold value, EXCEPT with the uptime variable" 3677"higher than the warning threshold value, EXCEPT with the uptime variable"
3458msgstr "" 3678msgstr ""
3459 3679
3460#: plugins/check_pgsql.c:222 3680#: plugins/check_pgsql.c:224
3461#, c-format 3681#, c-format
3462msgid "CRITICAL - no connection to '%s' (%s).\n" 3682msgid "CRITICAL - no connection to '%s' (%s).\n"
3463msgstr "" 3683msgstr ""
3464 3684
3465#: plugins/check_pgsql.c:250 3685#: plugins/check_pgsql.c:252
3466#, c-format 3686#, c-format
3467msgid " %s - database %s (%f sec.)|%s\n" 3687msgid " %s - database %s (%f sec.)|%s\n"
3468msgstr "" 3688msgstr ""
3469 3689
3470#: plugins/check_pgsql.c:317 plugins/check_time.c:277 plugins/check_time.c:289 3690#: plugins/check_pgsql.c:320 plugins/check_time.c:277 plugins/check_time.c:289
3471#: plugins/check_users.c:181 3691#: plugins/check_users.c:228
3472msgid "Critical threshold must be a positive integer" 3692msgid "Critical threshold must be a positive integer"
3473msgstr "Critical threshold muss ein positiver Integer sein" 3693msgstr "Critical threshold muss ein positiver Integer sein"
3474 3694
3475#: plugins/check_pgsql.c:323 plugins/check_time.c:258 plugins/check_time.c:282 3695#: plugins/check_pgsql.c:326 plugins/check_time.c:258 plugins/check_time.c:282
3476#: plugins/check_users.c:187 plugins/check_users.c:197 3696#: plugins/check_users.c:226
3477#: plugins/check_users.c:203
3478msgid "Warning threshold must be a positive integer" 3697msgid "Warning threshold must be a positive integer"
3479msgstr "Warning threshold muss ein positiver Integer sein" 3698msgstr "Warning threshold muss ein positiver Integer sein"
3480 3699
3481#: plugins/check_pgsql.c:347 3700#: plugins/check_pgsql.c:350
3482msgid "Database name is not valid" 3701msgid "Database name exceeds the maximum length"
3483msgstr "" 3702msgstr ""
3484 3703
3485#: plugins/check_pgsql.c:353 3704#: plugins/check_pgsql.c:356
3486msgid "User name is not valid" 3705msgid "User name is not valid"
3487msgstr "" 3706msgstr ""
3488 3707
3489#: plugins/check_pgsql.c:504 3708#: plugins/check_pgsql.c:471
3490#, c-format 3709#, c-format
3491msgid "Test whether a PostgreSQL Database is accepting connections." 3710msgid "Test whether a PostgreSQL Database is accepting connections."
3492msgstr "" 3711msgstr ""
3493 3712
3494#: plugins/check_pgsql.c:516 3713#: plugins/check_pgsql.c:483
3495msgid "Database to check " 3714msgid "Database to check "
3496msgstr "" 3715msgstr ""
3497 3716
3498#: plugins/check_pgsql.c:517 3717#: plugins/check_pgsql.c:484
3499#, c-format 3718#, c-format
3500msgid "(default: %s)" 3719msgid "(default: %s)\n"
3501msgstr "" 3720msgstr ""
3502 3721
3503#: plugins/check_pgsql.c:519 3722#: plugins/check_pgsql.c:486
3504msgid "Login name of user" 3723msgid "Login name of user"
3505msgstr "" 3724msgstr ""
3506 3725
3507#: plugins/check_pgsql.c:521 3726#: plugins/check_pgsql.c:488
3508msgid "Password (BIG SECURITY ISSUE)" 3727msgid "Password (BIG SECURITY ISSUE)"
3509msgstr "" 3728msgstr ""
3510 3729
3511#: plugins/check_pgsql.c:523 3730#: plugins/check_pgsql.c:490
3512msgid "Connection parameters (keyword = value), see below" 3731msgid "Connection parameters (keyword = value), see below"
3513msgstr "" 3732msgstr ""
3514 3733
3515#: plugins/check_pgsql.c:530 3734#: plugins/check_pgsql.c:497
3516msgid "SQL query to run. Only first column in first row will be read" 3735msgid "SQL query to run. Only first column in first row will be read"
3517msgstr "" 3736msgstr ""
3518 3737
3519#: plugins/check_pgsql.c:532 3738#: plugins/check_pgsql.c:499
3739msgid "A name for the query, this string is used instead of the query"
3740msgstr ""
3741
3742#: plugins/check_pgsql.c:500
3743msgid "in the long output of the plugin"
3744msgstr ""
3745
3746#: plugins/check_pgsql.c:502
3520msgid "SQL query value to result in warning status (double)" 3747msgid "SQL query value to result in warning status (double)"
3521msgstr "" 3748msgstr ""
3522 3749
3523#: plugins/check_pgsql.c:534 3750#: plugins/check_pgsql.c:504
3524msgid "SQL query value to result in critical status (double)" 3751msgid "SQL query value to result in critical status (double)"
3525msgstr "" 3752msgstr ""
3526 3753
3527#: plugins/check_pgsql.c:539 3754#: plugins/check_pgsql.c:509
3528msgid "All parameters are optional." 3755msgid "All parameters are optional."
3529msgstr "" 3756msgstr ""
3530 3757
3531#: plugins/check_pgsql.c:540 3758#: plugins/check_pgsql.c:510
3532msgid "" 3759msgid ""
3533"This plugin tests a PostgreSQL DBMS to determine whether it is active and" 3760"This plugin tests a PostgreSQL DBMS to determine whether it is active and"
3534msgstr "" 3761msgstr ""
3535 3762
3536#: plugins/check_pgsql.c:541 3763#: plugins/check_pgsql.c:511
3537msgid "accepting queries. In its current operation, it simply connects to the" 3764msgid "accepting queries. In its current operation, it simply connects to the"
3538msgstr "" 3765msgstr ""
3539 3766
3540#: plugins/check_pgsql.c:542 3767#: plugins/check_pgsql.c:512
3541msgid "" 3768msgid ""
3542"specified database, and then disconnects. If no database is specified, it" 3769"specified database, and then disconnects. If no database is specified, it"
3543msgstr "" 3770msgstr ""
3544 3771
3545#: plugins/check_pgsql.c:543 3772#: plugins/check_pgsql.c:513
3546msgid "" 3773msgid ""
3547"connects to the template1 database, which is present in every functioning" 3774"connects to the template1 database, which is present in every functioning"
3548msgstr "" 3775msgstr ""
3549 3776
3550#: plugins/check_pgsql.c:544 3777#: plugins/check_pgsql.c:514
3551msgid "PostgreSQL DBMS." 3778msgid "PostgreSQL DBMS."
3552msgstr "" 3779msgstr ""
3553 3780
3554#: plugins/check_pgsql.c:546 3781#: plugins/check_pgsql.c:516
3555msgid "If a query is specified using the -q option, it will be executed after" 3782msgid "If a query is specified using the -q option, it will be executed after"
3556msgstr "" 3783msgstr ""
3557 3784
3558#: plugins/check_pgsql.c:547 3785#: plugins/check_pgsql.c:517
3559msgid "connecting to the server. The result from the query has to be numeric." 3786msgid "connecting to the server. The result from the query has to be numeric."
3560msgstr "" 3787msgstr ""
3561 3788
3562#: plugins/check_pgsql.c:548 3789#: plugins/check_pgsql.c:518
3563msgid "" 3790msgid ""
3564"Multiple SQL commands, separated by semicolon, are allowed but the result " 3791"Multiple SQL commands, separated by semicolon, are allowed but the result "
3565msgstr "" 3792msgstr ""
3566 3793
3567#: plugins/check_pgsql.c:549 3794#: plugins/check_pgsql.c:519
3568msgid "of the last command is taken into account only. The value of the first" 3795msgid "of the last command is taken into account only. The value of the first"
3569msgstr "" 3796msgstr ""
3570 3797
3571#: plugins/check_pgsql.c:550 3798#: plugins/check_pgsql.c:520
3572msgid "column in the first row is used as the check result." 3799msgid ""
3800"column in the first row is used as the check result. If a second column is"
3801msgstr ""
3802
3803#: plugins/check_pgsql.c:521
3804msgid "present in the result set, this is added to the plugin output with a"
3573msgstr "" 3805msgstr ""
3574 3806
3575#: plugins/check_pgsql.c:552 3807#: plugins/check_pgsql.c:522
3808msgid ""
3809"prefix of \"Extra Info:\". This information can be displayed in the system"
3810msgstr ""
3811
3812#: plugins/check_pgsql.c:523
3813msgid "executing the plugin."
3814msgstr ""
3815
3816#: plugins/check_pgsql.c:525
3576msgid "" 3817msgid ""
3577"See the chapter \"Monitoring Database Activity\" of the PostgreSQL manual" 3818"See the chapter \"Monitoring Database Activity\" of the PostgreSQL manual"
3578msgstr "" 3819msgstr ""
3579 3820
3580#: plugins/check_pgsql.c:553 3821#: plugins/check_pgsql.c:526
3581msgid "" 3822msgid ""
3582"for details about how to access internal statistics of the database server." 3823"for details about how to access internal statistics of the database server."
3583msgstr "" 3824msgstr ""
3584 3825
3585#: plugins/check_pgsql.c:555 3826#: plugins/check_pgsql.c:528
3586msgid "" 3827msgid ""
3587"For a list of available connection parameters which may be used with the -o" 3828"For a list of available connection parameters which may be used with the -o"
3588msgstr "" 3829msgstr ""
3589 3830
3590#: plugins/check_pgsql.c:556 3831#: plugins/check_pgsql.c:529
3591msgid "" 3832msgid ""
3592"command line option, see the documentation for PQconnectdb() in the chapter" 3833"command line option, see the documentation for PQconnectdb() in the chapter"
3593msgstr "" 3834msgstr ""
3594 3835
3595#: plugins/check_pgsql.c:557 3836#: plugins/check_pgsql.c:530
3596msgid "" 3837msgid ""
3597"\"libpq - C Library\" of the PostgreSQL manual. For example, this may be" 3838"\"libpq - C Library\" of the PostgreSQL manual. For example, this may be"
3598msgstr "" 3839msgstr ""
3599 3840
3600#: plugins/check_pgsql.c:558 3841#: plugins/check_pgsql.c:531
3601msgid "" 3842msgid ""
3602"used to specify a service name in pg_service.conf to be used for additional" 3843"used to specify a service name in pg_service.conf to be used for additional"
3603msgstr "" 3844msgstr ""
3604 3845
3605#: plugins/check_pgsql.c:559 3846#: plugins/check_pgsql.c:532
3606msgid "connection parameters: -o 'service=<name>' or to specify the SSL mode:" 3847msgid "connection parameters: -o 'service=<name>' or to specify the SSL mode:"
3607msgstr "" 3848msgstr ""
3608 3849
3609#: plugins/check_pgsql.c:560 3850#: plugins/check_pgsql.c:533
3610msgid "-o 'sslmode=require'." 3851msgid "-o 'sslmode=require'."
3611msgstr "" 3852msgstr ""
3612 3853
3613#: plugins/check_pgsql.c:562 3854#: plugins/check_pgsql.c:535
3614msgid "" 3855msgid ""
3615"The plugin will connect to a local postmaster if no host is specified. To" 3856"The plugin will connect to a local postmaster if no host is specified. To"
3616msgstr "" 3857msgstr ""
3617 3858
3618#: plugins/check_pgsql.c:563 3859#: plugins/check_pgsql.c:536
3619msgid "" 3860msgid ""
3620"connect to a remote host, be sure that the remote postmaster accepts TCP/IP" 3861"connect to a remote host, be sure that the remote postmaster accepts TCP/IP"
3621msgstr "" 3862msgstr ""
3622 3863
3623#: plugins/check_pgsql.c:564 3864#: plugins/check_pgsql.c:537
3624msgid "connections (start the postmaster with the -i option)." 3865msgid "connections (start the postmaster with the -i option)."
3625msgstr "" 3866msgstr ""
3626 3867
3627#: plugins/check_pgsql.c:566 3868#: plugins/check_pgsql.c:539
3628msgid "" 3869msgid ""
3629"Typically, the monitoring user (unless the --logname option is used) should " 3870"Typically, the monitoring user (unless the --logname option is used) should "
3630"be" 3871"be"
3631msgstr "" 3872msgstr ""
3632 3873
3633#: plugins/check_pgsql.c:567 3874#: plugins/check_pgsql.c:540
3634msgid "" 3875msgid ""
3635"able to connect to the database without a password. The plugin can also send" 3876"able to connect to the database without a password. The plugin can also send"
3636msgstr "" 3877msgstr ""
3637 3878
3638#: plugins/check_pgsql.c:568 3879#: plugins/check_pgsql.c:541
3639msgid "a password, but no effort is made to obscure or encrypt the password." 3880msgid "a password, but no effort is made to obscure or encrypt the password."
3640msgstr "" 3881msgstr ""
3641 3882
3642#: plugins/check_pgsql.c:601 3883#: plugins/check_pgsql.c:575
3643#, c-format 3884#, c-format
3644msgid "QUERY %s - %s: %s.\n" 3885msgid "QUERY %s - %s: %s.\n"
3645msgstr "" 3886msgstr ""
3646 3887
3647#: plugins/check_pgsql.c:601 3888#: plugins/check_pgsql.c:575
3648msgid "Error with query" 3889msgid "Error with query"
3649msgstr "" 3890msgstr ""
3650 3891
3651#: plugins/check_pgsql.c:607 3892#: plugins/check_pgsql.c:581
3652msgid "No rows returned" 3893msgid "No rows returned"
3653msgstr "" 3894msgstr ""
3654 3895
3655#: plugins/check_pgsql.c:612 3896#: plugins/check_pgsql.c:586
3656msgid "No columns returned" 3897msgid "No columns returned"
3657msgstr "" 3898msgstr ""
3658 3899
3659#: plugins/check_pgsql.c:618 3900#: plugins/check_pgsql.c:592
3660#, fuzzy 3901#, fuzzy
3661msgid "No data returned" 3902msgid "No data returned"
3662msgstr "Keine Daten empfangen %s\n" 3903msgstr "Keine Daten empfangen %s\n"
3663 3904
3664#: plugins/check_pgsql.c:627 3905#: plugins/check_pgsql.c:601
3665msgid "Is not a numeric" 3906msgid "Is not a numeric"
3666msgstr "" 3907msgstr ""
3667 3908
3668#: plugins/check_pgsql.c:644 3909#: plugins/check_pgsql.c:619
3910#, fuzzy, c-format
3911msgid "%s returned %f"
3912msgstr "%s hat %s zurückgegeben"
3913
3914#: plugins/check_pgsql.c:622
3669#, fuzzy, c-format 3915#, fuzzy, c-format
3670msgid "'%s' returned %f" 3916msgid "'%s' returned %f"
3671msgstr "%s hat %s zurückgegeben" 3917msgstr "%s hat %s zurückgegeben"
3672 3918
3673#: plugins/check_ping.c:141 3919#: plugins/check_ping.c:143
3674msgid "CRITICAL - Could not interpret output from ping command\n" 3920msgid "CRITICAL - Could not interpret output from ping command\n"
3675msgstr "" 3921msgstr ""
3676 3922
3677#: plugins/check_ping.c:157 3923#: plugins/check_ping.c:159
3678#, c-format 3924#, c-format
3679msgid "PING %s - %sPacket loss = %d%%" 3925msgid "PING %s - %sPacket loss = %d%%"
3680msgstr "" 3926msgstr ""
3681 3927
3682#: plugins/check_ping.c:160 3928#: plugins/check_ping.c:162
3683#, c-format 3929#, c-format
3684msgid "PING %s - %sPacket loss = %d%%, RTA = %2.2f ms" 3930msgid "PING %s - %sPacket loss = %d%%, RTA = %2.2f ms"
3685msgstr "" 3931msgstr ""
3686 3932
3687#: plugins/check_ping.c:257 3933#: plugins/check_ping.c:263
3688msgid "Could not realloc() addresses\n" 3934msgid "Could not realloc() addresses\n"
3689msgstr "" 3935msgstr ""
3690 3936
3691#: plugins/check_ping.c:272 plugins/check_ping.c:352 3937#: plugins/check_ping.c:278 plugins/check_ping.c:358
3692#, c-format 3938#, c-format
3693msgid "<max_packets> (%s) must be a non-negative number\n" 3939msgid "<max_packets> (%s) must be a non-negative number\n"
3694msgstr "" 3940msgstr ""
3695 3941
3696#: plugins/check_ping.c:306 3942#: plugins/check_ping.c:312
3697#, c-format 3943#, c-format
3698msgid "<wpl> (%s) must be an integer percentage\n" 3944msgid "<wpl> (%s) must be an integer percentage\n"
3699msgstr "" 3945msgstr ""
3700 3946
3701#: plugins/check_ping.c:317 3947#: plugins/check_ping.c:323
3702#, c-format 3948#, c-format
3703msgid "<cpl> (%s) must be an integer percentage\n" 3949msgid "<cpl> (%s) must be an integer percentage\n"
3704msgstr "" 3950msgstr ""
3705 3951
3706#: plugins/check_ping.c:328 3952#: plugins/check_ping.c:334
3707#, c-format 3953#, c-format
3708msgid "<wrta> (%s) must be a non-negative number\n" 3954msgid "<wrta> (%s) must be a non-negative number\n"
3709msgstr "" 3955msgstr ""
3710 3956
3711#: plugins/check_ping.c:339 3957#: plugins/check_ping.c:345
3712#, c-format 3958#, c-format
3713msgid "<crta> (%s) must be a non-negative number\n" 3959msgid "<crta> (%s) must be a non-negative number\n"
3714msgstr "" 3960msgstr ""
3715 3961
3716#: plugins/check_ping.c:372 3962#: plugins/check_ping.c:378
3717#, c-format 3963#, c-format
3718msgid "" 3964msgid ""
3719"%s: Warning threshold must be integer or percentage!\n" 3965"%s: Warning threshold must be integer or percentage!\n"
3720"\n" 3966"\n"
3721msgstr "" 3967msgstr ""
3722 3968
3723#: plugins/check_ping.c:385 3969#: plugins/check_ping.c:391
3724#, c-format 3970#, c-format
3725msgid "<wrta> was not set\n" 3971msgid "<wrta> was not set\n"
3726msgstr "" 3972msgstr ""
3727 3973
3728#: plugins/check_ping.c:389 3974#: plugins/check_ping.c:395
3729#, c-format 3975#, c-format
3730msgid "<crta> was not set\n" 3976msgid "<crta> was not set\n"
3731msgstr "" 3977msgstr ""
3732 3978
3733#: plugins/check_ping.c:393 3979#: plugins/check_ping.c:399
3734#, c-format 3980#, c-format
3735msgid "<wpl> was not set\n" 3981msgid "<wpl> was not set\n"
3736msgstr "" 3982msgstr ""
3737 3983
3738#: plugins/check_ping.c:397 3984#: plugins/check_ping.c:403
3739#, c-format 3985#, c-format
3740msgid "<cpl> was not set\n" 3986msgid "<cpl> was not set\n"
3741msgstr "" 3987msgstr ""
3742 3988
3743#: plugins/check_ping.c:401 3989#: plugins/check_ping.c:407
3744#, c-format 3990#, c-format
3745msgid "<wrta> (%f) cannot be larger than <crta> (%f)\n" 3991msgid "<wrta> (%f) cannot be larger than <crta> (%f)\n"
3746msgstr "" 3992msgstr ""
3747 3993
3748#: plugins/check_ping.c:405 3994#: plugins/check_ping.c:411
3749#, c-format 3995#, c-format
3750msgid "<wpl> (%d) cannot be larger than <cpl> (%d)\n" 3996msgid "<wpl> (%d) cannot be larger than <cpl> (%d)\n"
3751msgstr "" 3997msgstr ""
3752 3998
3753#: plugins/check_ping.c:442 3999#: plugins/check_ping.c:448
3754#, c-format 4000#, c-format
3755msgid "Cannot open stderr for %s\n" 4001msgid "Cannot open stderr for %s\n"
3756msgstr "" 4002msgstr ""
3757 4003
3758#: plugins/check_ping.c:492 plugins/check_ping.c:494 4004#: plugins/check_ping.c:505 plugins/check_ping.c:507
3759msgid "System call sent warnings to stderr " 4005msgid "System call sent warnings to stderr "
3760msgstr "" 4006msgstr ""
3761 4007
3762#: plugins/check_ping.c:519 4008#: plugins/check_ping.c:533
3763#, fuzzy, c-format 4009#, fuzzy, c-format
3764msgid "CRITICAL - Network Unreachable (%s)\n" 4010msgid "CRITICAL - Network Unreachable (%s)\n"
3765msgstr "CRITICAL - Netzwerk nicht erreichbar (%s)" 4011msgstr "CRITICAL - Netzwerk nicht erreichbar (%s)"
3766 4012
3767#: plugins/check_ping.c:521 4013#: plugins/check_ping.c:535
3768#, fuzzy, c-format 4014#, fuzzy, c-format
3769msgid "CRITICAL - Host Unreachable (%s)\n" 4015msgid "CRITICAL - Host Unreachable (%s)\n"
3770msgstr "CRITICAL - Netzwerk nicht erreichbar (%s)" 4016msgstr "CRITICAL - Netzwerk nicht erreichbar (%s)"
3771 4017
3772#: plugins/check_ping.c:523 4018#: plugins/check_ping.c:537
3773#, fuzzy, c-format 4019#, fuzzy, c-format
3774msgid "CRITICAL - Bogus ICMP: Port Unreachable (%s)\n" 4020msgid "CRITICAL - Bogus ICMP: Port Unreachable (%s)\n"
3775msgstr "CRITICAL - Netzwerk nicht erreichbar (%s)" 4021msgstr "CRITICAL - Netzwerk nicht erreichbar (%s)"
3776 4022
3777#: plugins/check_ping.c:525 4023#: plugins/check_ping.c:539
3778#, fuzzy, c-format 4024#, fuzzy, c-format
3779msgid "CRITICAL - Bogus ICMP: Protocol Unreachable (%s)\n" 4025msgid "CRITICAL - Bogus ICMP: Protocol Unreachable (%s)\n"
3780msgstr "CRITICAL - Netzwerk nicht erreichbar (%s)" 4026msgstr "CRITICAL - Netzwerk nicht erreichbar (%s)"
3781 4027
3782#: plugins/check_ping.c:527 4028#: plugins/check_ping.c:541
3783#, fuzzy, c-format 4029#, fuzzy, c-format
3784msgid "CRITICAL - Network Prohibited (%s)\n" 4030msgid "CRITICAL - Network Prohibited (%s)\n"
3785msgstr "CRITICAL - Netzwerk nicht erreichbar (%s)" 4031msgstr "CRITICAL - Netzwerk nicht erreichbar (%s)"
3786 4032
3787#: plugins/check_ping.c:529 4033#: plugins/check_ping.c:543
3788#, fuzzy, c-format 4034#, fuzzy, c-format
3789msgid "CRITICAL - Host Prohibited (%s)\n" 4035msgid "CRITICAL - Host Prohibited (%s)\n"
3790msgstr "CRITICAL - Netzwerk nicht erreichbar (%s)" 4036msgstr "CRITICAL - Netzwerk nicht erreichbar (%s)"
3791 4037
3792#: plugins/check_ping.c:531 4038#: plugins/check_ping.c:545
3793#, fuzzy, c-format 4039#, fuzzy, c-format
3794msgid "CRITICAL - Packet Filtered (%s)\n" 4040msgid "CRITICAL - Packet Filtered (%s)\n"
3795msgstr "CRITICAL - Netzwerk nicht erreichbar (%s)" 4041msgstr "CRITICAL - Netzwerk nicht erreichbar (%s)"
3796 4042
3797#: plugins/check_ping.c:533 4043#: plugins/check_ping.c:547
3798#, fuzzy, c-format 4044#, fuzzy, c-format
3799msgid "CRITICAL - Host not found (%s)\n" 4045msgid "CRITICAL - Host not found (%s)\n"
3800msgstr "CRITICAL - Text nicht gefunden%s|%s %s\n" 4046msgstr "CRITICAL - Text nicht gefunden%s|%s %s\n"
3801 4047
3802#: plugins/check_ping.c:535 4048#: plugins/check_ping.c:549
3803#, fuzzy, c-format 4049#, fuzzy, c-format
3804msgid "CRITICAL - Time to live exceeded (%s)\n" 4050msgid "CRITICAL - Time to live exceeded (%s)\n"
3805msgstr "CRITICAL - Netzwerk nicht erreichbar (%s)" 4051msgstr "CRITICAL - Netzwerk nicht erreichbar (%s)"
3806 4052
3807#: plugins/check_ping.c:537 4053#: plugins/check_ping.c:551
3808#, fuzzy, c-format 4054#, fuzzy, c-format
3809msgid "CRITICAL - Destination Unreachable (%s)\n" 4055msgid "CRITICAL - Destination Unreachable (%s)\n"
3810msgstr "CRITICAL - Netzwerk nicht erreichbar (%s)" 4056msgstr "CRITICAL - Netzwerk nicht erreichbar (%s)"
3811 4057
3812#: plugins/check_ping.c:544 4058#: plugins/check_ping.c:558
3813msgid "Unable to realloc warn_text\n" 4059msgid "Unable to realloc warn_text\n"
3814msgstr "" 4060msgstr ""
3815 4061
3816#: plugins/check_ping.c:561 4062#: plugins/check_ping.c:575
3817#, c-format 4063#, c-format
3818msgid "Use ping to check connection statistics for a remote host." 4064msgid "Use ping to check connection statistics for a remote host."
3819msgstr "" 4065msgstr ""
3820 4066
3821#: plugins/check_ping.c:573 4067#: plugins/check_ping.c:587
3822msgid "host to ping" 4068msgid "host to ping"
3823msgstr "" 4069msgstr ""
3824 4070
3825#: plugins/check_ping.c:579 4071#: plugins/check_ping.c:593
3826msgid "number of ICMP ECHO packets to send" 4072msgid "number of ICMP ECHO packets to send"
3827msgstr "" 4073msgstr ""
3828 4074
3829#: plugins/check_ping.c:580 4075#: plugins/check_ping.c:594
3830#, c-format 4076#, c-format
3831msgid "(Default: %d)\n" 4077msgid "(Default: %d)\n"
3832msgstr "" 4078msgstr ""
3833 4079
3834#: plugins/check_ping.c:582 4080#: plugins/check_ping.c:596
3835msgid "show HTML in the plugin output (obsoleted by urlize)" 4081msgid "show HTML in the plugin output (obsoleted by urlize)"
3836msgstr "" 4082msgstr ""
3837 4083
3838#: plugins/check_ping.c:587 4084#: plugins/check_ping.c:601
3839msgid "THRESHOLD is <rta>,<pl>% where <rta> is the round trip average travel" 4085msgid "THRESHOLD is <rta>,<pl>% where <rta> is the round trip average travel"
3840msgstr "" 4086msgstr ""
3841 4087
3842#: plugins/check_ping.c:588 4088#: plugins/check_ping.c:602
3843msgid "time (ms) which triggers a WARNING or CRITICAL state, and <pl> is the" 4089msgid "time (ms) which triggers a WARNING or CRITICAL state, and <pl> is the"
3844msgstr "" 4090msgstr ""
3845 4091
3846#: plugins/check_ping.c:589 4092#: plugins/check_ping.c:603
3847msgid "percentage of packet loss to trigger an alarm state." 4093msgid "percentage of packet loss to trigger an alarm state."
3848msgstr "" 4094msgstr ""
3849 4095
3850#: plugins/check_ping.c:592 4096#: plugins/check_ping.c:606
3851#, fuzzy 4097#, fuzzy
3852msgid "" 4098msgid ""
3853"This plugin uses the ping command to probe the specified host for packet loss" 4099"This plugin uses the ping command to probe the specified host for packet loss"
3854msgstr "Dieses plugin testet Gameserververbindungen zum angegebenen Host." 4100msgstr "Dieses plugin testet Gameserververbindungen zum angegebenen Host."
3855 4101
3856#: plugins/check_ping.c:593 4102#: plugins/check_ping.c:607
3857msgid "" 4103msgid ""
3858"(percentage) and round trip average (milliseconds). It can produce HTML " 4104"(percentage) and round trip average (milliseconds). It can produce HTML "
3859"output" 4105"output"
3860msgstr "" 4106msgstr ""
3861 4107
3862#: plugins/check_ping.c:594 4108#: plugins/check_ping.c:608
3863msgid "" 4109msgid ""
3864"linking to a traceroute CGI contributed by Ian Cass. The CGI can be found in" 4110"linking to a traceroute CGI contributed by Ian Cass. The CGI can be found in"
3865msgstr "" 4111msgstr ""
3866 4112
3867#: plugins/check_ping.c:595 4113#: plugins/check_ping.c:609
3868msgid "the contrib area of the downloads section at http://www.nagios.org/" 4114msgid "the contrib area of the downloads section at http://www.nagios.org/"
3869msgstr "" 4115msgstr ""
3870 4116
3871#: plugins/check_procs.c:193 4117#: plugins/check_procs.c:197
3872#, c-format 4118#, c-format
3873msgid "CMD: %s\n" 4119msgid "CMD: %s\n"
3874msgstr "" 4120msgstr ""
3875 4121
3876#: plugins/check_procs.c:198 4122#: plugins/check_procs.c:202
3877msgid "System call sent warnings to stderr" 4123msgid "System call sent warnings to stderr"
3878msgstr "" 4124msgstr ""
3879 4125
3880#: plugins/check_procs.c:326 4126#: plugins/check_procs.c:349
3881#, c-format 4127#, c-format
3882msgid "Not parseable: %s" 4128msgid "Not parseable: %s"
3883msgstr "" 4129msgstr ""
3884 4130
3885#: plugins/check_procs.c:331 4131#: plugins/check_procs.c:354
3886#, c-format 4132#, c-format
3887msgid "Unable to read output\n" 4133msgid "Unable to read output\n"
3888msgstr "" 4134msgstr ""
3889 4135
3890#: plugins/check_procs.c:348 4136#: plugins/check_procs.c:371
3891#, c-format 4137#, c-format
3892msgid "%d warn out of " 4138msgid "%d warn out of "
3893msgstr "" 4139msgstr ""
3894 4140
3895#: plugins/check_procs.c:353 4141#: plugins/check_procs.c:376
3896#, c-format 4142#, c-format
3897msgid "%d crit, %d warn out of " 4143msgid "%d crit, %d warn out of "
3898msgstr "" 4144msgstr ""
3899 4145
3900#: plugins/check_procs.c:359 4146#: plugins/check_procs.c:382
3901#, c-format 4147#, c-format
3902msgid " with %s" 4148msgid " with %s"
3903msgstr "" 4149msgstr ""
3904 4150
3905#: plugins/check_procs.c:453 4151#: plugins/check_procs.c:477
3906#, fuzzy 4152#, fuzzy
3907msgid "Parent Process ID must be an integer!" 4153msgid "Parent Process ID must be an integer!"
3908msgstr "Argument für check_dummy muss ein Integer sein" 4154msgstr "Argument für check_dummy muss ein Integer sein"
3909 4155
3910#: plugins/check_procs.c:459 plugins/check_procs.c:586 4156#: plugins/check_procs.c:483 plugins/check_procs.c:627
3911#, c-format 4157#, c-format
3912msgid "%s%sSTATE = %s" 4158msgid "%s%sSTATE = %s"
3913msgstr "" 4159msgstr ""
3914 4160
3915#: plugins/check_procs.c:468 4161#: plugins/check_procs.c:492
3916#, fuzzy 4162#, fuzzy
3917msgid "UID was not found" 4163msgid "UID was not found"
3918msgstr "%s [%s nicht gefunden]" 4164msgstr "%s [%s nicht gefunden]"
3919 4165
3920#: plugins/check_procs.c:474 4166#: plugins/check_procs.c:498
3921#, fuzzy 4167#, fuzzy
3922msgid "User name was not found" 4168msgid "User name was not found"
3923msgstr "%s [%s nicht gefunden]" 4169msgstr "%s [%s nicht gefunden]"
3924 4170
3925#: plugins/check_procs.c:489 4171#: plugins/check_procs.c:513
3926#, c-format 4172#, c-format
3927msgid "%s%scommand name '%s'" 4173msgid "%s%scommand name '%s'"
3928msgstr "" 4174msgstr ""
3929 4175
3930#: plugins/check_procs.c:524 4176#: plugins/check_procs.c:522
4177#, c-format
4178msgid "%s%sexclude progs '%s'"
4179msgstr ""
4180
4181#: plugins/check_procs.c:565
3931#, fuzzy 4182#, fuzzy
3932msgid "RSS must be an integer!" 4183msgid "RSS must be an integer!"
3933msgstr "skip lines muss ein Integer sein" 4184msgstr "skip lines muss ein Integer sein"
3934 4185
3935#: plugins/check_procs.c:531 4186#: plugins/check_procs.c:572
3936#, fuzzy 4187#, fuzzy
3937msgid "VSZ must be an integer!" 4188msgid "VSZ must be an integer!"
3938msgstr "skip lines muss ein Integer sein" 4189msgstr "skip lines muss ein Integer sein"
3939 4190
3940#: plugins/check_procs.c:539 4191#: plugins/check_procs.c:580
3941msgid "PCPU must be a float!" 4192msgid "PCPU must be a float!"
3942msgstr "" 4193msgstr ""
3943 4194
3944#: plugins/check_procs.c:563 4195#: plugins/check_procs.c:604
3945msgid "Metric must be one of PROCS, VSZ, RSS, CPU, ELAPSED!" 4196msgid "Metric must be one of PROCS, VSZ, RSS, CPU, ELAPSED!"
3946msgstr "" 4197msgstr ""
3947 4198
3948#: plugins/check_procs.c:694 4199#: plugins/check_procs.c:735
3949msgid "" 4200msgid ""
3950"Checks all processes and generates WARNING or CRITICAL states if the " 4201"Checks all processes and generates WARNING or CRITICAL states if the "
3951"specified" 4202"specified"
3952msgstr "" 4203msgstr ""
3953 4204
3954#: plugins/check_procs.c:695 4205#: plugins/check_procs.c:736
3955msgid "" 4206msgid ""
3956"metric is outside the required threshold ranges. The metric defaults to " 4207"metric is outside the required threshold ranges. The metric defaults to "
3957"number" 4208"number"
3958msgstr "" 4209msgstr ""
3959 4210
3960#: plugins/check_procs.c:696 4211#: plugins/check_procs.c:737
3961msgid "" 4212msgid ""
3962"of processes. Search filters can be applied to limit the processes to check." 4213"of processes. Search filters can be applied to limit the processes to check."
3963msgstr "" 4214msgstr ""
3964 4215
3965#: plugins/check_procs.c:705 4216#: plugins/check_procs.c:746
3966msgid "Generate warning state if metric is outside this range" 4217msgid "Generate warning state if metric is outside this range"
3967msgstr "" 4218msgstr ""
3968 4219
3969#: plugins/check_procs.c:707 4220#: plugins/check_procs.c:748
3970msgid "Generate critical state if metric is outside this range" 4221msgid "Generate critical state if metric is outside this range"
3971msgstr "" 4222msgstr ""
3972 4223
3973#: plugins/check_procs.c:709 4224#: plugins/check_procs.c:750
3974msgid "Check thresholds against metric. Valid types:" 4225msgid "Check thresholds against metric. Valid types:"
3975msgstr "" 4226msgstr ""
3976 4227
3977#: plugins/check_procs.c:710 4228#: plugins/check_procs.c:751
3978msgid "PROCS - number of processes (default)" 4229msgid "PROCS - number of processes (default)"
3979msgstr "" 4230msgstr ""
3980 4231
3981#: plugins/check_procs.c:711 4232#: plugins/check_procs.c:752
3982msgid "VSZ - virtual memory size" 4233msgid "VSZ - virtual memory size"
3983msgstr "" 4234msgstr ""
3984 4235
3985#: plugins/check_procs.c:712 4236#: plugins/check_procs.c:753
3986msgid "RSS - resident set memory size" 4237msgid "RSS - resident set memory size"
3987msgstr "" 4238msgstr ""
3988 4239
3989#: plugins/check_procs.c:713 4240#: plugins/check_procs.c:754
3990msgid "CPU - percentage CPU" 4241msgid "CPU - percentage CPU"
3991msgstr "" 4242msgstr ""
3992 4243
3993#: plugins/check_procs.c:716 4244#: plugins/check_procs.c:757
3994msgid "ELAPSED - time elapsed in seconds" 4245msgid "ELAPSED - time elapsed in seconds"
3995msgstr "" 4246msgstr ""
3996 4247
3997#: plugins/check_procs.c:721 4248#: plugins/check_procs.c:762
3998msgid "Extra information. Up to 3 verbosity levels" 4249msgid "Extra information. Up to 3 verbosity levels"
3999msgstr "" 4250msgstr ""
4000 4251
4001#: plugins/check_procs.c:724 4252#: plugins/check_procs.c:765
4002msgid "Filter own process the traditional way by PID instead of /proc/pid/exe" 4253msgid "Filter own process the traditional way by PID instead of /proc/pid/exe"
4003msgstr "" 4254msgstr ""
4004 4255
4005#: plugins/check_procs.c:729 4256#: plugins/check_procs.c:770
4006msgid "Only scan for processes that have, in the output of `ps`, one or" 4257msgid "Only scan for processes that have, in the output of `ps`, one or"
4007msgstr "" 4258msgstr ""
4008 4259
4009#: plugins/check_procs.c:730 4260#: plugins/check_procs.c:771
4010msgid "more of the status flags you specify (for example R, Z, S, RS," 4261msgid "more of the status flags you specify (for example R, Z, S, RS,"
4011msgstr "" 4262msgstr ""
4012 4263
4013#: plugins/check_procs.c:731 4264#: plugins/check_procs.c:772
4014msgid "RSZDT, plus others based on the output of your 'ps' command)." 4265msgid "RSZDT, plus others based on the output of your 'ps' command)."
4015msgstr "" 4266msgstr ""
4016 4267
4017#: plugins/check_procs.c:733 4268#: plugins/check_procs.c:774
4018msgid "Only scan for children of the parent process ID indicated." 4269msgid "Only scan for children of the parent process ID indicated."
4019msgstr "" 4270msgstr ""
4020 4271
4021#: plugins/check_procs.c:735 4272#: plugins/check_procs.c:776
4022msgid "Only scan for processes with VSZ higher than indicated." 4273msgid "Only scan for processes with VSZ higher than indicated."
4023msgstr "" 4274msgstr ""
4024 4275
4025#: plugins/check_procs.c:737 4276#: plugins/check_procs.c:778
4026msgid "Only scan for processes with RSS higher than indicated." 4277msgid "Only scan for processes with RSS higher than indicated."
4027msgstr "" 4278msgstr ""
4028 4279
4029#: plugins/check_procs.c:739 4280#: plugins/check_procs.c:780
4030msgid "Only scan for processes with PCPU higher than indicated." 4281msgid "Only scan for processes with PCPU higher than indicated."
4031msgstr "" 4282msgstr ""
4032 4283
4033#: plugins/check_procs.c:741 4284#: plugins/check_procs.c:782
4034msgid "Only scan for processes with user name or ID indicated." 4285msgid "Only scan for processes with user name or ID indicated."
4035msgstr "" 4286msgstr ""
4036 4287
4037#: plugins/check_procs.c:743 4288#: plugins/check_procs.c:784
4038msgid "Only scan for processes with args that contain STRING." 4289msgid "Only scan for processes with args that contain STRING."
4039msgstr "" 4290msgstr ""
4040 4291
4041#: plugins/check_procs.c:745 4292#: plugins/check_procs.c:786
4042msgid "Only scan for processes with args that contain the regex STRING." 4293msgid "Only scan for processes with args that contain the regex STRING."
4043msgstr "" 4294msgstr ""
4044 4295
4045#: plugins/check_procs.c:747 4296#: plugins/check_procs.c:788
4046msgid "Only scan for exact matches of COMMAND (without path)." 4297msgid "Only scan for exact matches of COMMAND (without path)."
4047msgstr "" 4298msgstr ""
4048 4299
4049#: plugins/check_procs.c:749 4300#: plugins/check_procs.c:790
4301msgid "Exclude processes which match this comma separated list"
4302msgstr ""
4303
4304#: plugins/check_procs.c:792
4050msgid "Only scan for non kernel threads (works on Linux only)." 4305msgid "Only scan for non kernel threads (works on Linux only)."
4051msgstr "" 4306msgstr ""
4052 4307
4053#: plugins/check_procs.c:751 4308#: plugins/check_procs.c:794
4054#, c-format 4309#, c-format
4055msgid "" 4310msgid ""
4056"\n" 4311"\n"
@@ -4060,7 +4315,7 @@ msgid ""
4060"\n" 4315"\n"
4061msgstr "" 4316msgstr ""
4062 4317
4063#: plugins/check_procs.c:756 4318#: plugins/check_procs.c:799
4064#, c-format 4319#, c-format
4065msgid "" 4320msgid ""
4066"This plugin checks the number of currently running processes and\n" 4321"This plugin checks the number of currently running processes and\n"
@@ -4071,166 +4326,181 @@ msgid ""
4071"\n" 4326"\n"
4072msgstr "" 4327msgstr ""
4073 4328
4074#: plugins/check_procs.c:765 4329#: plugins/check_procs.c:808
4075msgid "Warning if not two processes with command name portsentry." 4330msgid "Warning if not two processes with command name portsentry."
4076msgstr "" 4331msgstr ""
4077 4332
4078#: plugins/check_procs.c:766 4333#: plugins/check_procs.c:809
4079msgid "Critical if < 2 or > 1024 processes" 4334msgid "Critical if < 2 or > 1024 processes"
4080msgstr "" 4335msgstr ""
4081 4336
4082#: plugins/check_procs.c:768 4337#: plugins/check_procs.c:811
4083msgid "Warning alert if > 10 processes with command arguments containing" 4338msgid "Critical if not at least 1 process with command sshd"
4084msgstr "" 4339msgstr ""
4085 4340
4086#: plugins/check_procs.c:769 4341#: plugins/check_procs.c:813
4087msgid "'/usr/local/bin/perl' and owned by root" 4342msgid "Warning if > 1024 processes with command name sshd."
4088msgstr "" 4343msgstr ""
4089 4344
4090#: plugins/check_procs.c:771 4345#: plugins/check_procs.c:814
4091msgid "Alert if VSZ of any processes over 50K or 100K" 4346msgid "Critical if < 1 processes with command name sshd."
4092msgstr "" 4347msgstr ""
4093 4348
4094#: plugins/check_procs.c:773 4349#: plugins/check_procs.c:816
4095#, c-format 4350msgid "Warning alert if > 10 processes with command arguments containing"
4096msgid "Alert if CPU of any processes over 10%% or 20%%" 4351msgstr ""
4352
4353#: plugins/check_procs.c:817
4354msgid "'/usr/local/bin/perl' and owned by root"
4097msgstr "" 4355msgstr ""
4098 4356
4099#: plugins/check_radius.c:165 4357#: plugins/check_procs.c:819
4100msgid "Config file error" 4358msgid "Alert if VSZ of any processes over 50K or 100K"
4101msgstr "" 4359msgstr ""
4102 4360
4103#: plugins/check_radius.c:174 4361#: plugins/check_procs.c:821
4104msgid "Out of Memory?" 4362msgid "Alert if CPU of any processes over 10% or 20%"
4105msgstr "" 4363msgstr ""
4106 4364
4107#: plugins/check_radius.c:178 4365#: plugins/check_radius.c:181
4108msgid "Invalid NAS-Identifier" 4366msgid "Config file error\n"
4109msgstr "" 4367msgstr ""
4110 4368
4111#: plugins/check_radius.c:183 plugins/check_radius.c:185 4369#: plugins/check_radius.c:190
4112#: plugins/check_radius.c:191 4370#, fuzzy
4371msgid "Out of Memory?\n"
4372msgstr "Kein Papier"
4373
4374#: plugins/check_radius.c:194
4113#, fuzzy 4375#, fuzzy
4114msgid "Invalid NAS-IP-Address" 4376msgid "Invalid NAS-Identifier\n"
4115msgstr "Ungültige(r) Hostname/Adresse" 4377msgstr "Ungültige(r) Hostname/Adresse"
4116 4378
4117#: plugins/check_radius.c:188 4379#: plugins/check_radius.c:199 plugins/check_smtp.c:156
4118msgid "Can't find local IP for NAS-IP-Address" 4380#, c-format
4381msgid "gethostname() failed!\n"
4119msgstr "" 4382msgstr ""
4120 4383
4121#: plugins/check_radius.c:202 4384#: plugins/check_radius.c:203 plugins/check_radius.c:206
4122msgid "Timeout" 4385#, fuzzy
4123msgstr "" 4386msgid "Invalid NAS-IP-Address\n"
4387msgstr "Ungültige(r) Hostname/Adresse"
4124 4388
4125#: plugins/check_radius.c:204 4389#: plugins/check_radius.c:217
4126msgid "Auth Error" 4390msgid "Timeout\n"
4127msgstr "" 4391msgstr ""
4128 4392
4129#: plugins/check_radius.c:206 4393#: plugins/check_radius.c:219
4130msgid "Auth Failed" 4394msgid "Auth Error\n"
4131msgstr "" 4395msgstr ""
4132 4396
4133#: plugins/check_radius.c:208 4397#: plugins/check_radius.c:221
4134msgid "Bad Response" 4398#, fuzzy
4399msgid "Auth Failed\n"
4400msgstr "Fehlgeschlagen"
4401
4402#: plugins/check_radius.c:223
4403msgid "Bad Response\n"
4135msgstr "" 4404msgstr ""
4136 4405
4137#: plugins/check_radius.c:212 4406#: plugins/check_radius.c:227
4138msgid "Auth OK" 4407msgid "Auth OK\n"
4139msgstr "" 4408msgstr ""
4140 4409
4141#: plugins/check_radius.c:213 4410#: plugins/check_radius.c:228
4142#, fuzzy, c-format 4411#, fuzzy, c-format
4143msgid "Unexpected result code %d" 4412msgid "Unexpected result code %d"
4144msgstr "Erwartet: %s aber: %s erhalten" 4413msgstr "Erwartet: %s aber: %s erhalten"
4145 4414
4146#: plugins/check_radius.c:302 4415#: plugins/check_radius.c:317
4147msgid "Number of retries must be a positive integer" 4416msgid "Number of retries must be a positive integer"
4148msgstr "" 4417msgstr ""
4149 4418
4150#: plugins/check_radius.c:316 4419#: plugins/check_radius.c:331
4151msgid "User not specified" 4420msgid "User not specified"
4152msgstr "" 4421msgstr ""
4153 4422
4154#: plugins/check_radius.c:318 4423#: plugins/check_radius.c:333
4155msgid "Password not specified" 4424msgid "Password not specified"
4156msgstr "" 4425msgstr ""
4157 4426
4158#: plugins/check_radius.c:320 4427#: plugins/check_radius.c:335
4159msgid "Configuration file not specified" 4428msgid "Configuration file not specified"
4160msgstr "" 4429msgstr ""
4161 4430
4162#: plugins/check_radius.c:338 4431#: plugins/check_radius.c:353
4163#, fuzzy 4432#, fuzzy
4164msgid "Tests to see if a RADIUS server is accepting connections." 4433msgid "Tests to see if a RADIUS server is accepting connections."
4165msgstr "Dieses plugin testet Gameserververbindungen zum angegebenen Host." 4434msgstr "Dieses plugin testet Gameserververbindungen zum angegebenen Host."
4166 4435
4167#: plugins/check_radius.c:350 4436#: plugins/check_radius.c:365
4168msgid "The user to authenticate" 4437msgid "The user to authenticate"
4169msgstr "" 4438msgstr ""
4170 4439
4171#: plugins/check_radius.c:352 4440#: plugins/check_radius.c:367
4172msgid "Password for authentication (SECURITY RISK)" 4441msgid "Password for authentication (SECURITY RISK)"
4173msgstr "" 4442msgstr ""
4174 4443
4175#: plugins/check_radius.c:354 4444#: plugins/check_radius.c:369
4176msgid "NAS identifier" 4445msgid "NAS identifier"
4177msgstr "" 4446msgstr ""
4178 4447
4179#: plugins/check_radius.c:356 4448#: plugins/check_radius.c:371
4180msgid "NAS IP Address" 4449msgid "NAS IP Address"
4181msgstr "" 4450msgstr ""
4182 4451
4183#: plugins/check_radius.c:358 4452#: plugins/check_radius.c:373
4184msgid "Configuration file" 4453msgid "Configuration file"
4185msgstr "" 4454msgstr ""
4186 4455
4187#: plugins/check_radius.c:360 4456#: plugins/check_radius.c:375
4188msgid "Response string to expect from the server" 4457msgid "Response string to expect from the server"
4189msgstr "" 4458msgstr ""
4190 4459
4191#: plugins/check_radius.c:362 4460#: plugins/check_radius.c:377
4192msgid "Number of times to retry a failed connection" 4461msgid "Number of times to retry a failed connection"
4193msgstr "" 4462msgstr ""
4194 4463
4195#: plugins/check_radius.c:367 4464#: plugins/check_radius.c:382
4196#, fuzzy 4465#, fuzzy
4197msgid "" 4466msgid ""
4198"This plugin tests a RADIUS server to see if it is accepting connections." 4467"This plugin tests a RADIUS server to see if it is accepting connections."
4199msgstr "Dieses plugin testet Gameserververbindungen zum angegebenen Host." 4468msgstr "Dieses plugin testet Gameserververbindungen zum angegebenen Host."
4200 4469
4201#: plugins/check_radius.c:368 4470#: plugins/check_radius.c:383
4202msgid "" 4471msgid ""
4203"The server to test must be specified in the invocation, as well as a user" 4472"The server to test must be specified in the invocation, as well as a user"
4204msgstr "" 4473msgstr ""
4205 4474
4206#: plugins/check_radius.c:369 4475#: plugins/check_radius.c:384
4207msgid "" 4476msgid ""
4208"name and password. A configuration file may also be present. The format of" 4477"name and password. A configuration file may also be present. The format of"
4209msgstr "" 4478msgstr ""
4210 4479
4211#: plugins/check_radius.c:370 4480#: plugins/check_radius.c:385
4212msgid "" 4481msgid ""
4213"the configuration file is described in the radiusclient library sources." 4482"the configuration file is described in the radiusclient library sources."
4214msgstr "" 4483msgstr ""
4215 4484
4216#: plugins/check_radius.c:371 4485#: plugins/check_radius.c:386
4217msgid "The password option presents a substantial security issue because the" 4486msgid "The password option presents a substantial security issue because the"
4218msgstr "" 4487msgstr ""
4219 4488
4220#: plugins/check_radius.c:372 4489#: plugins/check_radius.c:387
4221msgid "" 4490msgid ""
4222"password can possibly be determined by careful watching of the command line" 4491"password can possibly be determined by careful watching of the command line"
4223msgstr "" 4492msgstr ""
4224 4493
4225#: plugins/check_radius.c:373 4494#: plugins/check_radius.c:388
4226msgid "in a process listing. This risk is exacerbated because the monitor will" 4495msgid "in a process listing. This risk is exacerbated because the plugin will"
4227msgstr "" 4496msgstr ""
4228 4497
4229#: plugins/check_radius.c:374 4498#: plugins/check_radius.c:389
4230msgid "run the plugin at regular predictable intervals. Please be sure that" 4499msgid ""
4500"typically be executed at regular predictable intervals. Please be sure that"
4231msgstr "" 4501msgstr ""
4232 4502
4233#: plugins/check_radius.c:375 4503#: plugins/check_radius.c:390
4234msgid "the password used does not allow access to sensitive system resources." 4504msgid "the password used does not allow access to sensitive system resources."
4235msgstr "" 4505msgstr ""
4236 4506
@@ -4244,821 +4514,923 @@ msgstr ""
4244msgid "No data received from %s\n" 4514msgid "No data received from %s\n"
4245msgstr "" 4515msgstr ""
4246 4516
4247#: plugins/check_real.c:118 plugins/check_real.c:191 4517#: plugins/check_real.c:118 plugins/check_real.c:192
4248#, fuzzy 4518#, fuzzy
4249msgid "Invalid REAL response received from host" 4519msgid "Invalid REAL response received from host"
4250msgstr "Ungültige HTTP Antwort von Host empfangen\n" 4520msgstr "Ungültige HTTP Antwort von Host empfangen\n"
4251 4521
4252#: plugins/check_real.c:120 plugins/check_real.c:193 4522#: plugins/check_real.c:120 plugins/check_real.c:194
4253#, c-format 4523#, c-format
4254msgid "Invalid REAL response received from host on port %d\n" 4524msgid "Invalid REAL response received from host on port %d\n"
4255msgstr "" 4525msgstr ""
4256 4526
4257#: plugins/check_real.c:184 plugins/check_tcp.c:311 4527#: plugins/check_real.c:185 plugins/check_tcp.c:315
4258#, c-format 4528#, c-format
4259msgid "No data received from host\n" 4529msgid "No data received from host\n"
4260msgstr "" 4530msgstr ""
4261 4531
4262#: plugins/check_real.c:247 4532#: plugins/check_real.c:248
4263#, c-format 4533#, c-format
4264msgid "REAL %s - %d second response time\n" 4534msgid "REAL %s - %d second response time\n"
4265msgstr "" 4535msgstr ""
4266 4536
4267#: plugins/check_real.c:336 plugins/check_ups.c:536 4537#: plugins/check_real.c:337 plugins/check_ups.c:539
4268msgid "Warning time must be a positive integer" 4538msgid "Warning time must be a positive integer"
4269msgstr "Warnung time muss ein positiver Integer sein" 4539msgstr "Warnung time muss ein positiver Integer sein"
4270 4540
4271#: plugins/check_real.c:345 plugins/check_ups.c:527 4541#: plugins/check_real.c:346 plugins/check_ups.c:530
4272msgid "Critical time must be a positive integer" 4542msgid "Critical time must be a positive integer"
4273msgstr "Critical time muss ein positiver Integer sein" 4543msgstr "Critical time muss ein positiver Integer sein"
4274 4544
4275#: plugins/check_real.c:381 4545#: plugins/check_real.c:382
4276#, fuzzy 4546#, fuzzy
4277msgid "You must provide a server to check" 4547msgid "You must provide a server to check"
4278msgstr "%s: Hostname muss angegeben werden\n" 4548msgstr "%s: Hostname muss angegeben werden\n"
4279 4549
4280#: plugins/check_real.c:413 4550#: plugins/check_real.c:414
4281#, fuzzy 4551#, fuzzy
4282msgid "This plugin tests the REAL service on the specified host." 4552msgid "This plugin tests the REAL service on the specified host."
4283msgstr "" 4553msgstr ""
4284"Testet den DNS Dienst auf dem angegebenen Host mit dig\n" 4554"Testet den DNS Dienst auf dem angegebenen Host mit dig\n"
4285"\n" 4555"\n"
4286 4556
4287#: plugins/check_real.c:425 4557#: plugins/check_real.c:426
4288msgid "Connect to this url" 4558msgid "Connect to this url"
4289msgstr "" 4559msgstr ""
4290 4560
4291#: plugins/check_real.c:427 4561#: plugins/check_real.c:428
4292#, c-format 4562#, c-format
4293msgid "String to expect in first line of server response (default: %s)\n" 4563msgid "String to expect in first line of server response (default: %s)\n"
4294msgstr "" 4564msgstr ""
4295 4565
4296#: plugins/check_real.c:437 4566#: plugins/check_real.c:438
4297#, fuzzy 4567#, fuzzy
4298msgid "This plugin will attempt to open an RTSP connection with the host." 4568msgid "This plugin will attempt to open an RTSP connection with the host."
4299msgstr "Dieses plugin testet Gameserververbindungen zum angegebenen Host." 4569msgstr "Dieses plugin testet Gameserververbindungen zum angegebenen Host."
4300 4570
4301#: plugins/check_real.c:438 plugins/check_smtp.c:830 4571#: plugins/check_real.c:439 plugins/check_smtp.c:877
4302msgid "Successful connects return STATE_OK, refusals and timeouts return" 4572msgid "Successful connects return STATE_OK, refusals and timeouts return"
4303msgstr "" 4573msgstr ""
4304 4574
4305#: plugins/check_real.c:439 4575#: plugins/check_real.c:440
4306msgid "" 4576msgid ""
4307"STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful connects," 4577"STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful connects,"
4308msgstr "" 4578msgstr ""
4309 4579
4310#: plugins/check_real.c:440 4580#: plugins/check_real.c:441
4311msgid "" 4581msgid ""
4312"but incorrect response messages from the host result in STATE_WARNING return" 4582"but incorrect response messages from the host result in STATE_WARNING return"
4313msgstr "" 4583msgstr ""
4314 4584
4315#: plugins/check_real.c:441 4585#: plugins/check_real.c:442
4316msgid "values." 4586msgid "values."
4317msgstr "" 4587msgstr ""
4318 4588
4319#: plugins/check_smtp.c:150 plugins/check_swap.c:265 plugins/check_swap.c:271 4589#: plugins/check_smtp.c:152 plugins/check_swap.c:283 plugins/check_swap.c:289
4320#, c-format 4590#, c-format
4321msgid "malloc() failed!\n" 4591msgid "malloc() failed!\n"
4322msgstr "" 4592msgstr ""
4323 4593
4324#: plugins/check_smtp.c:154 4594#: plugins/check_smtp.c:200 plugins/check_smtp.c:212
4325#, c-format
4326msgid "gethostname() failed!\n"
4327msgstr ""
4328
4329#: plugins/check_smtp.c:189 plugins/check_smtp.c:213
4330#, c-format 4595#, c-format
4331msgid "recv() failed\n" 4596msgid "recv() failed\n"
4332msgstr "" 4597msgstr ""
4333 4598
4334#: plugins/check_smtp.c:200 4599#: plugins/check_smtp.c:222
4335#, fuzzy, c-format
4336msgid "Invalid SMTP response received from host: %s\n"
4337msgstr "Ungültige HTTP Antwort von Host empfangen\n"
4338
4339#: plugins/check_smtp.c:202
4340#, fuzzy, c-format
4341msgid "Invalid SMTP response received from host on port %d: %s\n"
4342msgstr "Ungültige HTTP Antwort von Host erhalten auf Port %d\n"
4343
4344#: plugins/check_smtp.c:223
4345#, c-format 4600#, c-format
4346msgid "WARNING - TLS not supported by server\n" 4601msgid "WARNING - TLS not supported by server\n"
4347msgstr "" 4602msgstr ""
4348 4603
4349#: plugins/check_smtp.c:235 4604#: plugins/check_smtp.c:234
4350#, c-format 4605#, c-format
4351msgid "Server does not support STARTTLS\n" 4606msgid "Server does not support STARTTLS\n"
4352msgstr "" 4607msgstr ""
4353 4608
4354#: plugins/check_smtp.c:241 4609#: plugins/check_smtp.c:240
4355#, c-format 4610#, c-format
4356msgid "CRITICAL - Cannot create SSL context.\n" 4611msgid "CRITICAL - Cannot create SSL context.\n"
4357msgstr "" 4612msgstr ""
4358 4613
4359#: plugins/check_smtp.c:261 4614#: plugins/check_smtp.c:260
4360msgid "SMTP UNKNOWN - Cannot send EHLO command via TLS." 4615msgid "SMTP UNKNOWN - Cannot send EHLO command via TLS."
4361msgstr "" 4616msgstr ""
4362 4617
4363#: plugins/check_smtp.c:266 4618#: plugins/check_smtp.c:265
4364#, c-format 4619#, c-format
4365msgid "sent %s" 4620msgid "sent %s"
4366msgstr "" 4621msgstr ""
4367 4622
4368#: plugins/check_smtp.c:268 4623#: plugins/check_smtp.c:267
4369msgid "SMTP UNKNOWN - Cannot read EHLO response via TLS." 4624msgid "SMTP UNKNOWN - Cannot read EHLO response via TLS."
4370msgstr "" 4625msgstr ""
4371 4626
4372#: plugins/check_smtp.c:303 plugins/check_snmp.c:806 4627#: plugins/check_smtp.c:297
4628#, fuzzy, c-format
4629msgid "Invalid SMTP response received from host: %s\n"
4630msgstr "Ungültige HTTP Antwort von Host empfangen\n"
4631
4632#: plugins/check_smtp.c:299
4633#, fuzzy, c-format
4634msgid "Invalid SMTP response received from host on port %d: %s\n"
4635msgstr "Ungültige HTTP Antwort von Host erhalten auf Port %d\n"
4636
4637#: plugins/check_smtp.c:322 plugins/check_snmp.c:865
4373#, c-format 4638#, c-format
4374msgid "Could Not Compile Regular Expression" 4639msgid "Could Not Compile Regular Expression"
4375msgstr "" 4640msgstr ""
4376 4641
4377#: plugins/check_smtp.c:312 4642#: plugins/check_smtp.c:331
4378#, c-format 4643#, c-format
4379msgid "SMTP %s - Invalid response '%s' to command '%s'\n" 4644msgid "SMTP %s - Invalid response '%s' to command '%s'\n"
4380msgstr "" 4645msgstr ""
4381 4646
4382#: plugins/check_smtp.c:316 plugins/check_snmp.c:511 4647#: plugins/check_smtp.c:335 plugins/check_snmp.c:540
4383#, c-format 4648#, c-format
4384msgid "Execute Error: %s\n" 4649msgid "Execute Error: %s\n"
4385msgstr "" 4650msgstr ""
4386 4651
4387#: plugins/check_smtp.c:330 4652#: plugins/check_smtp.c:349
4388msgid "no authuser specified, " 4653msgid "no authuser specified, "
4389msgstr "" 4654msgstr ""
4390 4655
4391#: plugins/check_smtp.c:335 4656#: plugins/check_smtp.c:354
4392msgid "no authpass specified, " 4657msgid "no authpass specified, "
4393msgstr "" 4658msgstr ""
4394 4659
4395#: plugins/check_smtp.c:342 plugins/check_smtp.c:363 plugins/check_smtp.c:383 4660#: plugins/check_smtp.c:361 plugins/check_smtp.c:382 plugins/check_smtp.c:402
4396#: plugins/check_smtp.c:688 4661#: plugins/check_smtp.c:727
4397#, c-format 4662#, c-format
4398msgid "sent %s\n" 4663msgid "sent %s\n"
4399msgstr "" 4664msgstr ""
4400 4665
4401#: plugins/check_smtp.c:345 4666#: plugins/check_smtp.c:364
4402#, fuzzy 4667#, fuzzy
4403msgid "recv() failed after AUTH LOGIN, " 4668msgid "recv() failed after AUTH LOGIN, "
4404msgstr "Ungültige HTTP Antwort von Host empfangen\n" 4669msgstr "Ungültige HTTP Antwort von Host empfangen\n"
4405 4670
4406#: plugins/check_smtp.c:350 plugins/check_smtp.c:371 plugins/check_smtp.c:391 4671#: plugins/check_smtp.c:369 plugins/check_smtp.c:390 plugins/check_smtp.c:410
4407#: plugins/check_smtp.c:699 4672#: plugins/check_smtp.c:738
4408#, fuzzy, c-format 4673#, fuzzy, c-format
4409msgid "received %s\n" 4674msgid "received %s\n"
4410msgstr "Keine Daten empfangen %s\n" 4675msgstr "Keine Daten empfangen %s\n"
4411 4676
4412#: plugins/check_smtp.c:354 4677#: plugins/check_smtp.c:373
4413#, fuzzy 4678#, fuzzy
4414msgid "invalid response received after AUTH LOGIN, " 4679msgid "invalid response received after AUTH LOGIN, "
4415msgstr "Ungültige HTTP Antwort von Host empfangen\n" 4680msgstr "Ungültige HTTP Antwort von Host empfangen\n"
4416 4681
4417#: plugins/check_smtp.c:367 4682#: plugins/check_smtp.c:386
4418msgid "recv() failed after sending authuser, " 4683msgid "recv() failed after sending authuser, "
4419msgstr "" 4684msgstr ""
4420 4685
4421#: plugins/check_smtp.c:375 4686#: plugins/check_smtp.c:394
4422#, fuzzy 4687#, fuzzy
4423msgid "invalid response received after authuser, " 4688msgid "invalid response received after authuser, "
4424msgstr "Ungültige HTTP Antwort von Host empfangen\n" 4689msgstr "Ungültige HTTP Antwort von Host empfangen\n"
4425 4690
4426#: plugins/check_smtp.c:387 4691#: plugins/check_smtp.c:406
4427msgid "recv() failed after sending authpass, " 4692msgid "recv() failed after sending authpass, "
4428msgstr "" 4693msgstr ""
4429 4694
4430#: plugins/check_smtp.c:395 4695#: plugins/check_smtp.c:414
4431#, fuzzy 4696#, fuzzy
4432msgid "invalid response received after authpass, " 4697msgid "invalid response received after authpass, "
4433msgstr "Ungültige HTTP Antwort von Host empfangen\n" 4698msgstr "Ungültige HTTP Antwort von Host empfangen\n"
4434 4699
4435#: plugins/check_smtp.c:402 4700#: plugins/check_smtp.c:421
4436msgid "only authtype LOGIN is supported, " 4701msgid "only authtype LOGIN is supported, "
4437msgstr "" 4702msgstr ""
4438 4703
4439#: plugins/check_smtp.c:426 4704#: plugins/check_smtp.c:445
4440#, fuzzy, c-format 4705#, fuzzy, c-format
4441msgid "SMTP %s - %s%.3f sec. response time%s%s|%s\n" 4706msgid "SMTP %s - %s%.3f sec. response time%s%s|%s\n"
4442msgstr " - %s - %.3f Sekunden Antwortzeit %s%s|%s %s\n" 4707msgstr " - %s - %.3f Sekunden Antwortzeit %s%s|%s %s\n"
4443 4708
4444#: plugins/check_smtp.c:536 plugins/check_smtp.c:548 4709#: plugins/check_smtp.c:562 plugins/check_smtp.c:574
4445#, c-format 4710#, c-format
4446msgid "Could not realloc() units [%d]\n" 4711msgid "Could not realloc() units [%d]\n"
4447msgstr "" 4712msgstr ""
4448 4713
4449#: plugins/check_smtp.c:556 4714#: plugins/check_smtp.c:582
4450#, fuzzy 4715#, fuzzy
4451msgid "Critical time must be a positive" 4716msgid "Critical time must be a positive"
4452msgstr "Critical time muss ein positiver Integer sein" 4717msgstr "Critical time muss ein positiver Integer sein"
4453 4718
4454#: plugins/check_smtp.c:564 4719#: plugins/check_smtp.c:590
4455#, fuzzy 4720#, fuzzy
4456msgid "Warning time must be a positive" 4721msgid "Warning time must be a positive"
4457msgstr "Warnung time muss ein positiver Integer sein" 4722msgstr "Warnung time muss ein positiver Integer sein"
4458 4723
4459#: plugins/check_smtp.c:611 4724#: plugins/check_smtp.c:633 plugins/check_smtp.c:644
4460msgid "SSL support not available - install OpenSSL and recompile" 4725msgid "SSL support not available - install OpenSSL and recompile"
4461msgstr "" 4726msgstr ""
4462 4727
4463#: plugins/check_smtp.c:679 plugins/check_smtp.c:684 4728#: plugins/check_smtp.c:718 plugins/check_smtp.c:723
4464#, c-format 4729#, c-format
4465msgid "Connection closed by server before sending QUIT command\n" 4730msgid "Connection closed by server before sending QUIT command\n"
4466msgstr "" 4731msgstr ""
4467 4732
4468#: plugins/check_smtp.c:694 4733#: plugins/check_smtp.c:733
4469#, fuzzy, c-format 4734#, fuzzy, c-format
4470msgid "recv() failed after QUIT." 4735msgid "recv() failed after QUIT."
4471msgstr "Ungültige HTTP Antwort von Host empfangen\n" 4736msgstr "Ungültige HTTP Antwort von Host empfangen\n"
4472 4737
4473#: plugins/check_smtp.c:696 4738#: plugins/check_smtp.c:735
4474#, c-format 4739#, c-format
4475msgid "Connection reset by peer." 4740msgid "Connection reset by peer."
4476msgstr "" 4741msgstr ""
4477 4742
4478#: plugins/check_smtp.c:784 4743#: plugins/check_smtp.c:825
4479#, fuzzy 4744#, fuzzy
4480msgid "This plugin will attempt to open an SMTP connection with the host." 4745msgid "This plugin will attempt to open an SMTP connection with the host."
4481msgstr "Dieses plugin testet Gameserververbindungen zum angegebenen Host." 4746msgstr "Dieses plugin testet Gameserververbindungen zum angegebenen Host."
4482 4747
4483#: plugins/check_smtp.c:798 4748#: plugins/check_smtp.c:839
4484#, c-format 4749#, c-format
4485msgid " String to expect in first line of server response (default: '%s')\n" 4750msgid " String to expect in first line of server response (default: '%s')\n"
4486msgstr "" 4751msgstr ""
4487 4752
4488#: plugins/check_smtp.c:800 4753#: plugins/check_smtp.c:841
4489msgid "SMTP command (may be used repeatedly)" 4754msgid "SMTP command (may be used repeatedly)"
4490msgstr "" 4755msgstr ""
4491 4756
4492#: plugins/check_smtp.c:802 4757#: plugins/check_smtp.c:843
4493msgid "Expected response to command (may be used repeatedly)" 4758msgid "Expected response to command (may be used repeatedly)"
4494msgstr "" 4759msgstr ""
4495 4760
4496#: plugins/check_smtp.c:804 4761#: plugins/check_smtp.c:845
4497msgid "FROM-address to include in MAIL command, required by Exchange 2000" 4762msgid "FROM-address to include in MAIL command, required by Exchange 2000"
4498msgstr "" 4763msgstr ""
4499 4764
4500#: plugins/check_smtp.c:806 4765#: plugins/check_smtp.c:847
4501msgid "FQDN used for HELO" 4766msgid "FQDN used for HELO"
4502msgstr "" 4767msgstr ""
4503 4768
4504#: plugins/check_smtp.c:809 plugins/check_tcp.c:665 4769#: plugins/check_smtp.c:849
4770msgid "Use PROXY protocol prefix for the connection."
4771msgstr "Benutze PROXY-Protokoll-Präfix für die Verbindung."
4772
4773#: plugins/check_smtp.c:852 plugins/check_tcp.c:689
4505msgid "Minimum number of days a certificate has to be valid." 4774msgid "Minimum number of days a certificate has to be valid."
4506msgstr "" 4775msgstr ""
4507 4776
4508#: plugins/check_smtp.c:811 4777#: plugins/check_smtp.c:854
4509msgid "Use STARTTLS for the connection." 4778msgid "Use STARTTLS for the connection."
4510msgstr "" 4779msgstr ""
4511 4780
4512#: plugins/check_smtp.c:815 4781#: plugins/check_smtp.c:860
4513msgid "SMTP AUTH type to check (default none, only LOGIN supported)" 4782msgid "SMTP AUTH type to check (default none, only LOGIN supported)"
4514msgstr "" 4783msgstr ""
4515 4784
4516#: plugins/check_smtp.c:817 4785#: plugins/check_smtp.c:862
4517msgid "SMTP AUTH username" 4786msgid "SMTP AUTH username"
4518msgstr "" 4787msgstr ""
4519 4788
4520#: plugins/check_smtp.c:819 4789#: plugins/check_smtp.c:864
4521msgid "SMTP AUTH password" 4790msgid "SMTP AUTH password"
4522msgstr "" 4791msgstr ""
4523 4792
4524#: plugins/check_smtp.c:821 4793#: plugins/check_smtp.c:866
4794msgid "Send LHLO instead of HELO/EHLO"
4795msgstr ""
4796
4797#: plugins/check_smtp.c:868
4525msgid "Ignore failure when sending QUIT command to server" 4798msgid "Ignore failure when sending QUIT command to server"
4526msgstr "" 4799msgstr ""
4527 4800
4528#: plugins/check_smtp.c:831 4801#: plugins/check_smtp.c:878
4529msgid "STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful" 4802msgid "STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful"
4530msgstr "" 4803msgstr ""
4531 4804
4532#: plugins/check_smtp.c:832 4805#: plugins/check_smtp.c:879
4533msgid "connects, but incorrect response messages from the host result in" 4806msgid "connects, but incorrect response messages from the host result in"
4534msgstr "" 4807msgstr ""
4535 4808
4536#: plugins/check_smtp.c:833 4809#: plugins/check_smtp.c:880
4537msgid "STATE_WARNING return values." 4810msgid "STATE_WARNING return values."
4538msgstr "" 4811msgstr ""
4539 4812
4540#: plugins/check_snmp.c:169 plugins/check_snmp.c:582 4813#: plugins/check_snmp.c:177 plugins/check_snmp.c:626
4541msgid "Cannot malloc" 4814msgid "Cannot malloc"
4542msgstr "" 4815msgstr ""
4543 4816
4544#: plugins/check_snmp.c:356 4817#: plugins/check_snmp.c:368
4545#, fuzzy, c-format 4818#, fuzzy, c-format
4546msgid "External command error: %s\n" 4819msgid "External command error: %s\n"
4547msgstr "Papierfehler" 4820msgstr "Papierfehler"
4548 4821
4549#: plugins/check_snmp.c:361 4822#: plugins/check_snmp.c:373
4550#, c-format 4823#, c-format
4551msgid "External command error with no output (return code: %d)\n" 4824msgid "External command error with no output (return code: %d)\n"
4552msgstr "" 4825msgstr ""
4553 4826
4554#: plugins/check_snmp.c:464 4827#: plugins/check_snmp.c:486 plugins/check_snmp.c:488 plugins/check_snmp.c:490
4828#: plugins/check_snmp.c:492
4555#, fuzzy, c-format 4829#, fuzzy, c-format
4556msgid "No valid data returned (%s)\n" 4830msgid "No valid data returned (%s)\n"
4557msgstr "Keine Daten empfangen %s\n" 4831msgstr "Keine Daten empfangen %s\n"
4558 4832
4559#: plugins/check_snmp.c:475 4833#: plugins/check_snmp.c:504
4560msgid "Time duration between plugin calls is invalid" 4834msgid "Time duration between plugin calls is invalid"
4561msgstr "" 4835msgstr ""
4562 4836
4563#: plugins/check_snmp.c:588 4837#: plugins/check_snmp.c:632
4564msgid "Cannot asprintf()" 4838msgid "Cannot asprintf()"
4565msgstr "" 4839msgstr ""
4566 4840
4567#: plugins/check_snmp.c:594 4841#: plugins/check_snmp.c:638
4568msgid "Cannot realloc()" 4842msgid "Cannot realloc()"
4569msgstr "" 4843msgstr ""
4570 4844
4571#: plugins/check_snmp.c:610 4845#: plugins/check_snmp.c:654
4572msgid "No previous data to calculate rate - assume okay" 4846msgid "No previous data to calculate rate - assume okay"
4573msgstr "" 4847msgstr ""
4574 4848
4575#: plugins/check_snmp.c:751 4849#: plugins/check_snmp.c:804
4576#, fuzzy 4850#, fuzzy
4577msgid "Retries interval must be a positive integer" 4851msgid "Retries interval must be a positive integer"
4578msgstr "Time interval muss ein positiver Integer sein" 4852msgstr "Time interval muss ein positiver Integer sein"
4579 4853
4580#: plugins/check_snmp.c:831 4854#: plugins/check_snmp.c:841
4855#, fuzzy
4856msgid "Exit status must be a positive integer"
4857msgstr "Maxbytes muss ein positiver Integer sein"
4858
4859#: plugins/check_snmp.c:890
4581#, fuzzy, c-format 4860#, fuzzy, c-format
4582msgid "Could not reallocate labels[%d]" 4861msgid "Could not reallocate labels[%d]"
4583msgstr "Konnte addr nicht zuweisen\n" 4862msgstr "Konnte addr nicht zuweisen\n"
4584 4863
4585#: plugins/check_snmp.c:844 4864#: plugins/check_snmp.c:903
4586#, fuzzy 4865#, fuzzy
4587msgid "Could not reallocate labels\n" 4866msgid "Could not reallocate labels\n"
4588msgstr "Konnte·url·nicht·zuweisen\n" 4867msgstr "Konnte·url·nicht·zuweisen\n"
4589 4868
4590#: plugins/check_snmp.c:860 4869#: plugins/check_snmp.c:919
4591#, fuzzy, c-format 4870#, fuzzy, c-format
4592msgid "Could not reallocate units [%d]\n" 4871msgid "Could not reallocate units [%d]\n"
4593msgstr "Konnte·url·nicht·zuweisen\n" 4872msgstr "Konnte·url·nicht·zuweisen\n"
4594 4873
4595#: plugins/check_snmp.c:872 4874#: plugins/check_snmp.c:931
4596msgid "Could not realloc() units\n" 4875msgid "Could not realloc() units\n"
4597msgstr "" 4876msgstr ""
4598 4877
4599#: plugins/check_snmp.c:889 4878#: plugins/check_snmp.c:948
4600#, fuzzy 4879#, fuzzy
4601msgid "Rate multiplier must be a positive integer" 4880msgid "Rate multiplier must be a positive integer"
4602msgstr "Paketgröße muss ein positiver Integer sein" 4881msgstr "Paketgröße muss ein positiver Integer sein"
4603 4882
4604#: plugins/check_snmp.c:947 4883#: plugins/check_snmp.c:1023
4605#, fuzzy 4884#, fuzzy
4606msgid "No host specified\n" 4885msgid "No host specified\n"
4607msgstr "" 4886msgstr ""
4608"Kein Hostname angegeben\n" 4887"Kein Hostname angegeben\n"
4609"\n" 4888"\n"
4610 4889
4611#: plugins/check_snmp.c:951 4890#: plugins/check_snmp.c:1027
4612#, fuzzy 4891#, fuzzy
4613msgid "No OIDs specified\n" 4892msgid "No OIDs specified\n"
4614msgstr "" 4893msgstr ""
4615"Kein Hostname angegeben\n" 4894"Kein Hostname angegeben\n"
4616"\n" 4895"\n"
4617 4896
4618#: plugins/check_snmp.c:973 4897#: plugins/check_snmp.c:1050 plugins/check_snmp.c:1068
4619msgid "Invalid seclevel" 4898#: plugins/check_snmp.c:1086
4620msgstr ""
4621
4622#: plugins/check_snmp.c:980 plugins/check_snmp.c:983 plugins/check_snmp.c:1001
4623#, c-format 4899#, c-format
4624msgid "Required parameter: %s\n" 4900msgid "Required parameter: %s\n"
4625msgstr "" 4901msgstr ""
4626 4902
4627#: plugins/check_snmp.c:1022 4903#: plugins/check_snmp.c:1061
4904msgid "Invalid seclevel"
4905msgstr ""
4906
4907#: plugins/check_snmp.c:1107
4628msgid "Invalid SNMP version" 4908msgid "Invalid SNMP version"
4629msgstr "" 4909msgstr ""
4630 4910
4631#: plugins/check_snmp.c:1039 4911#: plugins/check_snmp.c:1124
4632msgid "Unbalanced quotes\n" 4912msgid "Unbalanced quotes\n"
4633msgstr "" 4913msgstr ""
4634 4914
4635#: plugins/check_snmp.c:1088 4915#: plugins/check_snmp.c:1182
4916#, c-format
4917msgid "multiplier set (%.1f), but input is not a number: %s"
4918msgstr ""
4919
4920#: plugins/check_snmp.c:1211
4636msgid "Check status of remote machines and obtain system information via SNMP" 4921msgid "Check status of remote machines and obtain system information via SNMP"
4637msgstr "" 4922msgstr ""
4638 4923
4639#: plugins/check_snmp.c:1101 4924#: plugins/check_snmp.c:1225
4640msgid "Use SNMP GETNEXT instead of SNMP GET" 4925msgid "Use SNMP GETNEXT instead of SNMP GET"
4641msgstr "" 4926msgstr ""
4642 4927
4643#: plugins/check_snmp.c:1103 4928#: plugins/check_snmp.c:1227
4644msgid "SNMP protocol version" 4929msgid "SNMP protocol version"
4645msgstr "" 4930msgstr ""
4646 4931
4647#: plugins/check_snmp.c:1105 4932#: plugins/check_snmp.c:1229
4933msgid "SNMPv3 context"
4934msgstr ""
4935
4936#: plugins/check_snmp.c:1231
4648msgid "SNMPv3 securityLevel" 4937msgid "SNMPv3 securityLevel"
4649msgstr "" 4938msgstr ""
4650 4939
4651#: plugins/check_snmp.c:1107 4940#: plugins/check_snmp.c:1233
4652msgid "SNMPv3 auth proto" 4941msgid "SNMPv3 auth proto"
4653msgstr "" 4942msgstr ""
4654 4943
4655#: plugins/check_snmp.c:1109 4944#: plugins/check_snmp.c:1235
4656msgid "SNMPv3 priv proto (default DES)" 4945msgid "SNMPv3 priv proto (default DES)"
4657msgstr "" 4946msgstr ""
4658 4947
4659#: plugins/check_snmp.c:1113 4948#: plugins/check_snmp.c:1239
4660msgid "Optional community string for SNMP communication" 4949msgid "Optional community string for SNMP communication"
4661msgstr "" 4950msgstr ""
4662 4951
4663#: plugins/check_snmp.c:1114 4952#: plugins/check_snmp.c:1240
4664msgid "default is" 4953msgid "default is"
4665msgstr "" 4954msgstr ""
4666 4955
4667#: plugins/check_snmp.c:1116 4956#: plugins/check_snmp.c:1242
4668msgid "SNMPv3 username" 4957msgid "SNMPv3 username"
4669msgstr "" 4958msgstr ""
4670 4959
4671#: plugins/check_snmp.c:1118 4960#: plugins/check_snmp.c:1244
4672msgid "SNMPv3 authentication password" 4961msgid "SNMPv3 authentication password"
4673msgstr "" 4962msgstr ""
4674 4963
4675#: plugins/check_snmp.c:1120 4964#: plugins/check_snmp.c:1246
4676msgid "SNMPv3 privacy password" 4965msgid "SNMPv3 privacy password"
4677msgstr "" 4966msgstr ""
4678 4967
4679#: plugins/check_snmp.c:1124 4968#: plugins/check_snmp.c:1250
4680msgid "Object identifier(s) or SNMP variables whose value you wish to query" 4969msgid "Object identifier(s) or SNMP variables whose value you wish to query"
4681msgstr "" 4970msgstr ""
4682 4971
4683#: plugins/check_snmp.c:1126 4972#: plugins/check_snmp.c:1252
4684msgid "" 4973msgid ""
4685"List of MIBS to be loaded (default = none if using numeric OIDs or 'ALL'" 4974"List of MIBS to be loaded (default = none if using numeric OIDs or 'ALL'"
4686msgstr "" 4975msgstr ""
4687 4976
4688#: plugins/check_snmp.c:1127 4977#: plugins/check_snmp.c:1253
4689msgid "for symbolic OIDs.)" 4978msgid "for symbolic OIDs.)"
4690msgstr "" 4979msgstr ""
4691 4980
4692#: plugins/check_snmp.c:1129 4981#: plugins/check_snmp.c:1255
4693msgid "Delimiter to use when parsing returned data. Default is" 4982msgid "Delimiter to use when parsing returned data. Default is"
4694msgstr "" 4983msgstr ""
4695 4984
4696#: plugins/check_snmp.c:1130 4985#: plugins/check_snmp.c:1256
4697msgid "Any data on the right hand side of the delimiter is considered" 4986msgid "Any data on the right hand side of the delimiter is considered"
4698msgstr "" 4987msgstr ""
4699 4988
4700#: plugins/check_snmp.c:1131 4989#: plugins/check_snmp.c:1257
4701msgid "to be the data that should be used in the evaluation." 4990msgid "to be the data that should be used in the evaluation."
4702msgstr "" 4991msgstr ""
4703 4992
4704#: plugins/check_snmp.c:1135 4993#: plugins/check_snmp.c:1259
4994msgid "If the check returns a 0 length string or NULL value"
4995msgstr ""
4996
4997#: plugins/check_snmp.c:1260
4998msgid "This option allows you to choose what status you want it to exit"
4999msgstr ""
5000
5001#: plugins/check_snmp.c:1261
5002msgid "Excluding this option renders the default exit of 3(STATE_UNKNOWN)"
5003msgstr ""
5004
5005#: plugins/check_snmp.c:1262
5006msgid "0 = OK"
5007msgstr ""
5008
5009#: plugins/check_snmp.c:1263
5010#, fuzzy
5011msgid "1 = WARNING"
5012msgstr "WARNING"
5013
5014#: plugins/check_snmp.c:1264
5015#, fuzzy
5016msgid "2 = CRITICAL"
5017msgstr "CRITICAL"
5018
5019#: plugins/check_snmp.c:1265
5020#, fuzzy
5021msgid "3 = UNKNOWN"
5022msgstr "UNKNOWN"
5023
5024#: plugins/check_snmp.c:1269
4705#, fuzzy 5025#, fuzzy
4706msgid "Warning threshold range(s)" 5026msgid "Warning threshold range(s)"
4707msgstr "Warning threshold Integer sein" 5027msgstr "Warning threshold Integer sein"
4708 5028
4709#: plugins/check_snmp.c:1137 5029#: plugins/check_snmp.c:1271
4710#, fuzzy 5030#, fuzzy
4711msgid "Critical threshold range(s)" 5031msgid "Critical threshold range(s)"
4712msgstr "Critical threshold muss ein Integer sein" 5032msgstr "Critical threshold muss ein Integer sein"
4713 5033
4714#: plugins/check_snmp.c:1139 5034#: plugins/check_snmp.c:1273
4715msgid "Enable rate calculation. See 'Rate Calculation' below" 5035msgid "Enable rate calculation. See 'Rate Calculation' below"
4716msgstr "" 5036msgstr ""
4717 5037
4718#: plugins/check_snmp.c:1141 5038#: plugins/check_snmp.c:1275
4719msgid "" 5039msgid ""
4720"Converts rate per second. For example, set to 60 to convert to per minute" 5040"Converts rate per second. For example, set to 60 to convert to per minute"
4721msgstr "" 5041msgstr ""
4722 5042
4723#: plugins/check_snmp.c:1143 5043#: plugins/check_snmp.c:1277
4724msgid "Add/subtract the specified OFFSET to numeric sensor data" 5044msgid "Add/subtract the specified OFFSET to numeric sensor data"
4725msgstr "" 5045msgstr ""
4726 5046
4727#: plugins/check_snmp.c:1147 5047#: plugins/check_snmp.c:1281
4728msgid "Return OK state (for that OID) if STRING is an exact match" 5048msgid "Return OK state (for that OID) if STRING is an exact match"
4729msgstr "" 5049msgstr ""
4730 5050
4731#: plugins/check_snmp.c:1149 5051#: plugins/check_snmp.c:1283
4732msgid "" 5052msgid ""
4733"Return OK state (for that OID) if extended regular expression REGEX matches" 5053"Return OK state (for that OID) if extended regular expression REGEX matches"
4734msgstr "" 5054msgstr ""
4735 5055
4736#: plugins/check_snmp.c:1151 5056#: plugins/check_snmp.c:1285
4737msgid "" 5057msgid ""
4738"Return OK state (for that OID) if case-insensitive extended REGEX matches" 5058"Return OK state (for that OID) if case-insensitive extended REGEX matches"
4739msgstr "" 5059msgstr ""
4740 5060
4741#: plugins/check_snmp.c:1153 5061#: plugins/check_snmp.c:1287
4742msgid "Invert search result (CRITICAL if found)" 5062msgid "Invert search result (CRITICAL if found)"
4743msgstr "" 5063msgstr ""
4744 5064
4745#: plugins/check_snmp.c:1157 5065#: plugins/check_snmp.c:1291
4746msgid "Prefix label for output from plugin" 5066msgid "Prefix label for output from plugin"
4747msgstr "" 5067msgstr ""
4748 5068
4749#: plugins/check_snmp.c:1159 5069#: plugins/check_snmp.c:1293
4750msgid "Units label(s) for output data (e.g., 'sec.')." 5070msgid "Units label(s) for output data (e.g., 'sec.')."
4751msgstr "" 5071msgstr ""
4752 5072
4753#: plugins/check_snmp.c:1161 5073#: plugins/check_snmp.c:1295
4754msgid "Separates output on multiple OID requests" 5074msgid "Separates output on multiple OID requests"
4755msgstr "" 5075msgstr ""
4756 5076
4757#: plugins/check_snmp.c:1165 5077#: plugins/check_snmp.c:1297
4758msgid "Number of retries to be used in the requests" 5078msgid "Multiplies current value, 0 < n < 1 works as divider, defaults to 1"
5079msgstr ""
5080
5081#: plugins/check_snmp.c:1299
5082msgid "C-style format string for float values (see option -M)"
4759msgstr "" 5083msgstr ""
4760 5084
4761#: plugins/check_snmp.c:1168 5085#: plugins/check_snmp.c:1302
5086msgid ""
5087"NOTE the final timeout value is calculated using this formula: "
5088"timeout_interval * retries + 5"
5089msgstr ""
5090
5091#: plugins/check_snmp.c:1304
5092msgid "Number of retries to be used in the requests, default: "
5093msgstr ""
5094
5095#: plugins/check_snmp.c:1307
4762msgid "Label performance data with OIDs instead of --label's" 5096msgid "Label performance data with OIDs instead of --label's"
4763msgstr "" 5097msgstr ""
4764 5098
4765#: plugins/check_snmp.c:1173 5099#: plugins/check_snmp.c:1312
4766msgid "" 5100msgid ""
4767"This plugin uses the 'snmpget' command included with the NET-SNMP package." 5101"This plugin uses the 'snmpget' command included with the NET-SNMP package."
4768msgstr "" 5102msgstr ""
4769 5103
4770#: plugins/check_snmp.c:1174 5104#: plugins/check_snmp.c:1313
4771msgid "" 5105msgid ""
4772"if you don't have the package installed, you will need to download it from" 5106"if you don't have the package installed, you will need to download it from"
4773msgstr "" 5107msgstr ""
4774 5108
4775#: plugins/check_snmp.c:1175 5109#: plugins/check_snmp.c:1314
4776msgid "http://net-snmp.sourceforge.net before you can use this plugin." 5110msgid "http://net-snmp.sourceforge.net before you can use this plugin."
4777msgstr "" 5111msgstr ""
4778 5112
4779#: plugins/check_snmp.c:1179 5113#: plugins/check_snmp.c:1318
4780msgid "" 5114msgid ""
4781"- Multiple OIDs (and labels) may be indicated by a comma or space-delimited " 5115"- Multiple OIDs (and labels) may be indicated by a comma or space-delimited "
4782msgstr "" 5116msgstr ""
4783 5117
4784#: plugins/check_snmp.c:1180 5118#: plugins/check_snmp.c:1319
4785msgid "list (lists with internal spaces must be quoted)." 5119msgid "list (lists with internal spaces must be quoted)."
4786msgstr "" 5120msgstr ""
4787 5121
4788#: plugins/check_snmp.c:1184 5122#: plugins/check_snmp.c:1323
4789msgid "" 5123msgid ""
4790"- When checking multiple OIDs, separate ranges by commas like '-w " 5124"- When checking multiple OIDs, separate ranges by commas like '-w "
4791"1:10,1:,:20'" 5125"1:10,1:,:20'"
4792msgstr "" 5126msgstr ""
4793 5127
4794#: plugins/check_snmp.c:1185 5128#: plugins/check_snmp.c:1324
4795msgid "- Note that only one string and one regex may be checked at present" 5129msgid "- Note that only one string and one regex may be checked at present"
4796msgstr "" 5130msgstr ""
4797 5131
4798#: plugins/check_snmp.c:1186 5132#: plugins/check_snmp.c:1325
4799msgid "" 5133msgid ""
4800"- All evaluation methods other than PR, STR, and SUBSTR expect that the value" 5134"- All evaluation methods other than PR, STR, and SUBSTR expect that the value"
4801msgstr "" 5135msgstr ""
4802 5136
4803#: plugins/check_snmp.c:1187 5137#: plugins/check_snmp.c:1326
4804msgid "returned from the SNMP query is an unsigned integer." 5138msgid "returned from the SNMP query is an unsigned integer."
4805msgstr "" 5139msgstr ""
4806 5140
4807#: plugins/check_snmp.c:1190 5141#: plugins/check_snmp.c:1329
4808msgid "Rate Calculation:" 5142msgid "Rate Calculation:"
4809msgstr "" 5143msgstr ""
4810 5144
4811#: plugins/check_snmp.c:1191 5145#: plugins/check_snmp.c:1330
4812msgid "In many places, SNMP returns counters that are only meaningful when" 5146msgid "In many places, SNMP returns counters that are only meaningful when"
4813msgstr "" 5147msgstr ""
4814 5148
4815#: plugins/check_snmp.c:1192 5149#: plugins/check_snmp.c:1331
4816msgid "calculating the counter difference since the last check. check_snmp" 5150msgid "calculating the counter difference since the last check. check_snmp"
4817msgstr "" 5151msgstr ""
4818 5152
4819#: plugins/check_snmp.c:1193 5153#: plugins/check_snmp.c:1332
4820msgid "saves the last state information in a file so that the rate per second" 5154msgid "saves the last state information in a file so that the rate per second"
4821msgstr "" 5155msgstr ""
4822 5156
4823#: plugins/check_snmp.c:1194 5157#: plugins/check_snmp.c:1333
4824msgid "can be calculated. Use the --rate option to save state information." 5158msgid "can be calculated. Use the --rate option to save state information."
4825msgstr "" 5159msgstr ""
4826 5160
4827#: plugins/check_snmp.c:1195 5161#: plugins/check_snmp.c:1334
4828msgid "" 5162msgid ""
4829"On the first run, there will be no prior state - this will return with OK." 5163"On the first run, there will be no prior state - this will return with OK."
4830msgstr "" 5164msgstr ""
4831 5165
4832#: plugins/check_snmp.c:1196 5166#: plugins/check_snmp.c:1335
4833msgid "The state is uniquely determined by the arguments to the plugin, so" 5167msgid "The state is uniquely determined by the arguments to the plugin, so"
4834msgstr "" 5168msgstr ""
4835 5169
4836#: plugins/check_snmp.c:1197 5170#: plugins/check_snmp.c:1336
4837msgid "changing the arguments will create a new state file." 5171msgid "changing the arguments will create a new state file."
4838msgstr "" 5172msgstr ""
4839 5173
4840#: plugins/check_ssh.c:165 5174#: plugins/check_ssh.c:170
4841#, fuzzy 5175#, fuzzy
4842msgid "Port number must be a positive integer" 5176msgid "Port number must be a positive integer"
4843msgstr "Port muss ein positiver Integer sein" 5177msgstr "Port muss ein positiver Integer sein"
4844 5178
4845#: plugins/check_ssh.c:232 5179#: plugins/check_ssh.c:237
4846#, c-format 5180#, c-format
4847msgid "Server answer: %s" 5181msgid "Server answer: %s"
4848msgstr "" 5182msgstr ""
4849 5183
4850#: plugins/check_ssh.c:251 5184#: plugins/check_ssh.c:256
4851#, c-format 5185#, c-format
4852msgid "SSH WARNING - %s (protocol %s) version mismatch, expected '%s'\n" 5186msgid "SSH CRITICAL - %s (protocol %s) version mismatch, expected '%s'\n"
4853msgstr "" 5187msgstr ""
4854 5188
4855#: plugins/check_ssh.c:260 5189#: plugins/check_ssh.c:264
5190#, c-format
5191msgid ""
5192"SSH CRITICAL - %s (protocol %s) protocol version mismatch, expected '%s'\n"
5193msgstr ""
5194
5195#: plugins/check_ssh.c:273
4856#, c-format 5196#, c-format
4857msgid "SSH OK - %s (protocol %s) | %s\n" 5197msgid "SSH OK - %s (protocol %s) | %s\n"
4858msgstr "" 5198msgstr ""
4859 5199
4860#: plugins/check_ssh.c:281 5200#: plugins/check_ssh.c:294
4861msgid "Try to connect to an SSH server at specified server and port" 5201msgid "Try to connect to an SSH server at specified server and port"
4862msgstr "" 5202msgstr ""
4863 5203
4864#: plugins/check_ssh.c:297 5204#: plugins/check_ssh.c:310
4865msgid "" 5205msgid ""
4866"Warn if string doesn't match expected server version (ex: OpenSSH_3.9p1)" 5206"Alert if string doesn't match expected server version (ex: OpenSSH_3.9p1)"
5207msgstr ""
5208
5209#: plugins/check_ssh.c:313
5210msgid "Alert if protocol doesn't match expected protocol version (ex: 2.0)"
4867msgstr "" 5211msgstr ""
4868 5212
4869#: plugins/check_swap.c:169 5213#: plugins/check_swap.c:187
4870#, c-format 5214#, c-format
4871msgid "Command: %s\n" 5215msgid "Command: %s\n"
4872msgstr "" 5216msgstr ""
4873 5217
4874#: plugins/check_swap.c:171 5218#: plugins/check_swap.c:189
4875#, c-format 5219#, c-format
4876msgid "Format: %s\n" 5220msgid "Format: %s\n"
4877msgstr "" 5221msgstr ""
4878 5222
4879#: plugins/check_swap.c:207 5223#: plugins/check_swap.c:225
4880#, c-format 5224#, c-format
4881msgid "total=%.0f, used=%.0f, free=%.0f\n" 5225msgid "total=%.0f, used=%.0f, free=%.0f\n"
4882msgstr "" 5226msgstr ""
4883 5227
4884#: plugins/check_swap.c:221 5228#: plugins/check_swap.c:239
4885#, c-format 5229#, c-format
4886msgid "total=%.0f, free=%.0f\n" 5230msgid "total=%.0f, free=%.0f\n"
4887msgstr "" 5231msgstr ""
4888 5232
4889#: plugins/check_swap.c:253 5233#: plugins/check_swap.c:271
4890msgid "Error getting swap devices\n" 5234msgid "Error getting swap devices\n"
4891msgstr "" 5235msgstr ""
4892 5236
4893#: plugins/check_swap.c:256 5237#: plugins/check_swap.c:274
4894msgid "SWAP OK: No swap devices defined\n" 5238msgid "SWAP OK: No swap devices defined\n"
4895msgstr "" 5239msgstr ""
4896 5240
4897#: plugins/check_swap.c:277 plugins/check_swap.c:319 5241#: plugins/check_swap.c:295 plugins/check_swap.c:337
4898msgid "swapctl failed: " 5242msgid "swapctl failed: "
4899msgstr "" 5243msgstr ""
4900 5244
4901#: plugins/check_swap.c:278 plugins/check_swap.c:320 5245#: plugins/check_swap.c:296 plugins/check_swap.c:338
4902msgid "Error in swapctl call\n" 5246msgid "Error in swapctl call\n"
4903msgstr "" 5247msgstr ""
4904 5248
4905#: plugins/check_swap.c:357 5249#: plugins/check_swap.c:376
4906#, c-format 5250#, c-format
4907msgid "SWAP %s - %d%% free (%d MB out of %d MB) %s|" 5251msgid "SWAP %s - %d%% free (%dMB out of %dMB) %s|"
4908msgstr "" 5252msgstr ""
4909 5253
4910#: plugins/check_swap.c:435 5254#: plugins/check_swap.c:472
4911msgid "Warning threshold must be integer or percentage!" 5255#, fuzzy
5256msgid "Warning threshold percentage must be <= 100!"
5257msgstr "Warning threshold Integer sein"
5258
5259#: plugins/check_swap.c:482
5260#, fuzzy
5261msgid "Warning threshold be positive integer or percentage!"
4912msgstr "Warning threshold muss ein Integer oder ein Prozentwert sein" 5262msgstr "Warning threshold muss ein Integer oder ein Prozentwert sein"
4913 5263
4914#: plugins/check_swap.c:453 5264#: plugins/check_swap.c:502
4915msgid "Critical threshold must be integer or percentage!" 5265#, fuzzy
4916msgstr "Critical threshold muss ein Integer oder ein Prozentwert sein!" 5266msgid "Critical threshold percentage must be <= 100!"
5267msgstr "Critical threshold muss ein Integer sein"
4917 5268
4918#: plugins/check_swap.c:507 5269#: plugins/check_swap.c:512
4919#, fuzzy 5270#, fuzzy
4920msgid "Warning percentage should be more than critical percentage" 5271msgid "Critical threshold be positive integer or percentage!"
4921msgstr "Warning threshold muss ein Integer oder ein Prozentwert sein" 5272msgstr "Critical threshold muss ein Integer oder ein Prozentwert sein!"
4922 5273
4923#: plugins/check_swap.c:511 5274#: plugins/check_swap.c:521
4924msgid "Warning free space should be more than critical free space" 5275msgid ""
5276"no-swap result must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) "
5277"or integer (0-3)."
4925msgstr "" 5278msgstr ""
4926 5279
4927#: plugins/check_swap.c:525 5280#: plugins/check_swap.c:558
5281#, fuzzy
5282msgid "Warning should be more than critical"
5283msgstr "Warning threshold muss ein Integer oder ein Prozentwert sein"
5284
5285#: plugins/check_swap.c:572
4928msgid "Check swap space on local machine." 5286msgid "Check swap space on local machine."
4929msgstr "" 5287msgstr ""
4930 5288
4931#: plugins/check_swap.c:535 5289#: plugins/check_swap.c:582
4932msgid "" 5290msgid ""
4933"Exit with WARNING status if less than INTEGER bytes of swap space are free" 5291"Exit with WARNING status if less than INTEGER bytes of swap space are free"
4934msgstr "" 5292msgstr ""
4935 5293
4936#: plugins/check_swap.c:537 5294#: plugins/check_swap.c:584
4937msgid "Exit with WARNING status if less than PERCENT of swap space is free" 5295msgid "Exit with WARNING status if less than PERCENT of swap space is free"
4938msgstr "" 5296msgstr ""
4939 5297
4940#: plugins/check_swap.c:539 5298#: plugins/check_swap.c:586
4941msgid "" 5299msgid ""
4942"Exit with CRITICAL status if less than INTEGER bytes of swap space are free" 5300"Exit with CRITICAL status if less than INTEGER bytes of swap space are free"
4943msgstr "" 5301msgstr ""
4944 5302
4945#: plugins/check_swap.c:541 5303#: plugins/check_swap.c:588
4946msgid "Exit with CRITICAL status if less than PERCENT of swap space is free" 5304msgid "Exit with CRITICAL status if less than PERCENT of swap space is free"
4947msgstr "" 5305msgstr ""
4948 5306
4949#: plugins/check_swap.c:543 5307#: plugins/check_swap.c:590
4950msgid "Conduct comparisons for all swap partitions, one by one" 5308msgid "Conduct comparisons for all swap partitions, one by one"
4951msgstr "" 5309msgstr ""
4952 5310
4953#: plugins/check_swap.c:548 5311#: plugins/check_swap.c:592
5312msgid ""
5313"Resulting state when there is no swap regardless of thresholds. Default:"
5314msgstr ""
5315
5316#: plugins/check_swap.c:597
5317msgid ""
5318"Both INTEGER and PERCENT thresholds can be specified, they are all checked."
5319msgstr ""
5320
5321#: plugins/check_swap.c:598
4954msgid "On AIX, if -a is specified, uses lsps -a, otherwise uses lsps -s." 5322msgid "On AIX, if -a is specified, uses lsps -a, otherwise uses lsps -s."
4955msgstr "" 5323msgstr ""
4956 5324
4957#: plugins/check_tcp.c:206 5325#: plugins/check_tcp.c:210
4958msgid "CRITICAL - Generic check_tcp called with unknown service\n" 5326msgid "CRITICAL - Generic check_tcp called with unknown service\n"
4959msgstr "" 5327msgstr ""
4960 5328
4961#: plugins/check_tcp.c:230 5329#: plugins/check_tcp.c:234
4962msgid "With UDP checks, a send/expect string must be specified." 5330msgid "With UDP checks, a send/expect string must be specified."
4963msgstr "" 5331msgstr ""
4964 5332
4965#: plugins/check_tcp.c:431 5333#: plugins/check_tcp.c:445
4966msgid "No arguments found" 5334msgid "No arguments found"
4967msgstr "" 5335msgstr ""
4968 5336
4969#: plugins/check_tcp.c:534 5337#: plugins/check_tcp.c:548
4970msgid "Maxbytes must be a positive integer" 5338msgid "Maxbytes must be a positive integer"
4971msgstr "Maxbytes muss ein positiver Integer sein" 5339msgstr "Maxbytes muss ein positiver Integer sein"
4972 5340
4973#: plugins/check_tcp.c:552 5341#: plugins/check_tcp.c:566
4974msgid "Refuse must be one of ok, warn, crit" 5342msgid "Refuse must be one of ok, warn, crit"
4975msgstr "" 5343msgstr ""
4976 5344
4977#: plugins/check_tcp.c:562 5345#: plugins/check_tcp.c:576
4978msgid "Mismatch must be one of ok, warn, crit" 5346msgid "Mismatch must be one of ok, warn, crit"
4979msgstr "" 5347msgstr ""
4980 5348
4981#: plugins/check_tcp.c:568 5349#: plugins/check_tcp.c:582
4982msgid "Delay must be a positive integer" 5350msgid "Delay must be a positive integer"
4983msgstr "Delay muss ein positiver Integer sein" 5351msgstr "Delay muss ein positiver Integer sein"
4984 5352
4985#: plugins/check_tcp.c:613 5353#: plugins/check_tcp.c:637
4986#, fuzzy 5354#, fuzzy
4987msgid "You must provide a server address" 5355msgid "You must provide a server address"
4988msgstr "%s: Hostname muss angegeben werden\n" 5356msgstr "%s: Hostname muss angegeben werden\n"
4989 5357
4990#: plugins/check_tcp.c:615 5358#: plugins/check_tcp.c:639
4991#, fuzzy 5359#, fuzzy
4992msgid "Invalid hostname, address or socket" 5360msgid "Invalid hostname, address or socket"
4993msgstr "Ungültige(r) Hostname/Adresse" 5361msgstr "Ungültige(r) Hostname/Adresse"
4994 5362
4995#: plugins/check_tcp.c:629 5363#: plugins/check_tcp.c:653
4996#, fuzzy, c-format 5364#, fuzzy, c-format
4997msgid "" 5365msgid ""
4998"This plugin tests %s connections with the specified host (or unix socket).\n" 5366"This plugin tests %s connections with the specified host (or unix socket).\n"
4999"\n" 5367"\n"
5000msgstr "Dieses plugin testet Gameserververbindungen zum angegebenen Host." 5368msgstr "Dieses plugin testet Gameserververbindungen zum angegebenen Host."
5001 5369
5002#: plugins/check_tcp.c:642 5370#: plugins/check_tcp.c:666
5003msgid "" 5371msgid ""
5004"Can use \\n, \\r, \\t or \\ in send or quit string. Must come before send or " 5372"Can use \\n, \\r, \\t or \\\\ in send or quit string. Must come before send "
5005"quit option" 5373"or quit option"
5006msgstr "" 5374msgstr ""
5007 5375
5008#: plugins/check_tcp.c:643 5376#: plugins/check_tcp.c:667
5009msgid "Default: nothing added to send, \\r\\n added to end of quit" 5377msgid "Default: nothing added to send, \\r\\n added to end of quit"
5010msgstr "" 5378msgstr ""
5011 5379
5012#: plugins/check_tcp.c:645 5380#: plugins/check_tcp.c:669
5013msgid "String to send to the server" 5381msgid "String to send to the server"
5014msgstr "" 5382msgstr ""
5015 5383
5016#: plugins/check_tcp.c:647 5384#: plugins/check_tcp.c:671
5017msgid "String to expect in server response" 5385msgid "String to expect in server response"
5018msgstr "" 5386msgstr ""
5019 5387
5020#: plugins/check_tcp.c:647 5388#: plugins/check_tcp.c:671
5021msgid "(may be repeated)" 5389msgid "(may be repeated)"
5022msgstr "" 5390msgstr ""
5023 5391
5024#: plugins/check_tcp.c:649 5392#: plugins/check_tcp.c:673
5025msgid "All expect strings need to occur in server response. Default is any" 5393msgid "All expect strings need to occur in server response. Default is any"
5026msgstr "" 5394msgstr ""
5027 5395
5028#: plugins/check_tcp.c:651 5396#: plugins/check_tcp.c:675
5029msgid "String to send server to initiate a clean close of the connection" 5397msgid "String to send server to initiate a clean close of the connection"
5030msgstr "" 5398msgstr ""
5031 5399
5032#: plugins/check_tcp.c:653 5400#: plugins/check_tcp.c:677
5033msgid "Accept TCP refusals with states ok, warn, crit (default: crit)" 5401msgid "Accept TCP refusals with states ok, warn, crit (default: crit)"
5034msgstr "" 5402msgstr ""
5035 5403
5036#: plugins/check_tcp.c:655 5404#: plugins/check_tcp.c:679
5037msgid "" 5405msgid ""
5038"Accept expected string mismatches with states ok, warn, crit (default: warn)" 5406"Accept expected string mismatches with states ok, warn, crit (default: warn)"
5039msgstr "" 5407msgstr ""
5040 5408
5041#: plugins/check_tcp.c:657 5409#: plugins/check_tcp.c:681
5042#, fuzzy 5410#, fuzzy
5043msgid "Hide output from TCP socket" 5411msgid "Hide output from TCP socket"
5044msgstr "Konnte TCP socket nicht öffnen\n" 5412msgstr "Konnte TCP socket nicht öffnen\n"
5045 5413
5046#: plugins/check_tcp.c:659 5414#: plugins/check_tcp.c:683
5047msgid "Close connection once more than this number of bytes are received" 5415msgid "Close connection once more than this number of bytes are received"
5048msgstr "" 5416msgstr ""
5049 5417
5050#: plugins/check_tcp.c:661 5418#: plugins/check_tcp.c:685
5051msgid "Seconds to wait between sending string and polling for response" 5419msgid "Seconds to wait between sending string and polling for response"
5052msgstr "" 5420msgstr ""
5053 5421
5054#: plugins/check_tcp.c:666 5422#: plugins/check_tcp.c:690
5055msgid "1st is #days for warning, 2nd is critical (if not specified - 0)." 5423msgid "1st is #days for warning, 2nd is critical (if not specified - 0)."
5056msgstr "" 5424msgstr ""
5057 5425
5058#: plugins/check_tcp.c:668 5426#: plugins/check_tcp.c:692
5059msgid "Use SSL for the connection." 5427msgid "Use SSL for the connection."
5060msgstr "" 5428msgstr ""
5061 5429
5430#: plugins/check_tcp.c:694
5431msgid "SSL server_name"
5432msgstr ""
5433
5062#: plugins/check_time.c:102 5434#: plugins/check_time.c:102
5063#, c-format 5435#, c-format
5064msgid "TIME UNKNOWN - could not connect to server %s, port %d\n" 5436msgid "TIME UNKNOWN - could not connect to server %s, port %d\n"
@@ -5176,39 +5548,43 @@ msgstr ""
5176msgid "UPS does not support any available options\n" 5548msgid "UPS does not support any available options\n"
5177msgstr "IPv6 Unterstützung nicht vorhanden" 5549msgstr "IPv6 Unterstützung nicht vorhanden"
5178 5550
5179#: plugins/check_ups.c:348 plugins/check_ups.c:411 5551#: plugins/check_ups.c:348 plugins/check_ups.c:414
5180#, fuzzy 5552#, fuzzy
5181msgid "Invalid response received from host" 5553msgid "Invalid response received from host"
5182msgstr "Ungültige HTTP Antwort von Host empfangen\n" 5554msgstr "Ungültige HTTP Antwort von Host empfangen\n"
5183 5555
5184#: plugins/check_ups.c:420 5556#: plugins/check_ups.c:406
5557msgid "UPS name to long for buffer"
5558msgstr ""
5559
5560#: plugins/check_ups.c:423
5185#, fuzzy, c-format 5561#, fuzzy, c-format
5186msgid "CRITICAL - no such UPS '%s' on that host\n" 5562msgid "CRITICAL - no such UPS '%s' on that host\n"
5187msgstr "%s [%s nicht gefunden]" 5563msgstr "%s [%s nicht gefunden]"
5188 5564
5189#: plugins/check_ups.c:430 5565#: plugins/check_ups.c:433
5190#, fuzzy 5566#, fuzzy
5191msgid "CRITICAL - UPS data is stale" 5567msgid "CRITICAL - UPS data is stale"
5192msgstr "CRITICAL - Serverdatum \"%100s\" konnte nicht verarbeitet werden" 5568msgstr "CRITICAL - Serverdatum \"%100s\" konnte nicht verarbeitet werden"
5193 5569
5194#: plugins/check_ups.c:435 5570#: plugins/check_ups.c:438
5195#, fuzzy, c-format 5571#, fuzzy, c-format
5196msgid "Unknown error: %s\n" 5572msgid "Unknown error: %s\n"
5197msgstr "Papierfehler" 5573msgstr "Papierfehler"
5198 5574
5199#: plugins/check_ups.c:442 5575#: plugins/check_ups.c:445
5200msgid "Error: unable to parse variable" 5576msgid "Error: unable to parse variable"
5201msgstr "" 5577msgstr ""
5202 5578
5203#: plugins/check_ups.c:549 5579#: plugins/check_ups.c:552
5204msgid "Unrecognized UPS variable" 5580msgid "Unrecognized UPS variable"
5205msgstr "" 5581msgstr ""
5206 5582
5207#: plugins/check_ups.c:587 5583#: plugins/check_ups.c:590
5208msgid "Error : no UPS indicated" 5584msgid "Error : no UPS indicated"
5209msgstr "" 5585msgstr ""
5210 5586
5211#: plugins/check_ups.c:607 5587#: plugins/check_ups.c:610
5212#, fuzzy 5588#, fuzzy
5213msgid "" 5589msgid ""
5214"This plugin tests the UPS service on the specified host. Network UPS Tools" 5590"This plugin tests the UPS service on the specified host. Network UPS Tools"
@@ -5216,97 +5592,102 @@ msgstr ""
5216"Testet den DNS Dienst auf dem angegebenen Host mit dig\n" 5592"Testet den DNS Dienst auf dem angegebenen Host mit dig\n"
5217"\n" 5593"\n"
5218 5594
5219#: plugins/check_ups.c:608 5595#: plugins/check_ups.c:611
5220msgid "from www.networkupstools.org must be running for this plugin to work." 5596msgid "from www.networkupstools.org must be running for this plugin to work."
5221msgstr "" 5597msgstr ""
5222 5598
5223#: plugins/check_ups.c:620 5599#: plugins/check_ups.c:623
5224msgid "Name of UPS" 5600msgid "Name of UPS"
5225msgstr "" 5601msgstr ""
5226 5602
5227#: plugins/check_ups.c:622 5603#: plugins/check_ups.c:625
5228msgid "Output of temperatures in Celsius" 5604msgid "Output of temperatures in Celsius"
5229msgstr "" 5605msgstr ""
5230 5606
5231#: plugins/check_ups.c:624 5607#: plugins/check_ups.c:627
5232msgid "Valid values for STRING are" 5608msgid "Valid values for STRING are"
5233msgstr "" 5609msgstr ""
5234 5610
5235#: plugins/check_ups.c:635 5611#: plugins/check_ups.c:638
5236msgid "" 5612msgid ""
5237"This plugin attempts to determine the status of a UPS (Uninterruptible Power" 5613"This plugin attempts to determine the status of a UPS (Uninterruptible Power"
5238msgstr "" 5614msgstr ""
5239 5615
5240#: plugins/check_ups.c:636 5616#: plugins/check_ups.c:639
5241msgid "" 5617msgid ""
5242"Supply) on a local or remote host. If the UPS is online or calibrating, the" 5618"Supply) on a local or remote host. If the UPS is online or calibrating, the"
5243msgstr "" 5619msgstr ""
5244 5620
5245#: plugins/check_ups.c:637 5621#: plugins/check_ups.c:640
5246msgid "" 5622msgid ""
5247"plugin will return an OK state. If the battery is on it will return a WARNING" 5623"plugin will return an OK state. If the battery is on it will return a WARNING"
5248msgstr "" 5624msgstr ""
5249 5625
5250#: plugins/check_ups.c:638 5626#: plugins/check_ups.c:641
5251msgid "" 5627msgid ""
5252"state. If the UPS is off or has a low battery the plugin will return a " 5628"state. If the UPS is off or has a low battery the plugin will return a "
5253"CRITICAL" 5629"CRITICAL"
5254msgstr "" 5630msgstr ""
5255 5631
5256#: plugins/check_ups.c:643 5632#: plugins/check_ups.c:646
5257msgid "" 5633msgid ""
5258"You may also specify a variable to check (such as temperature, utility " 5634"You may also specify a variable to check (such as temperature, utility "
5259"voltage," 5635"voltage,"
5260msgstr "" 5636msgstr ""
5261 5637
5262#: plugins/check_ups.c:644 5638#: plugins/check_ups.c:647
5263msgid "" 5639msgid ""
5264"battery load, etc.) as well as warning and critical thresholds for the value" 5640"battery load, etc.) as well as warning and critical thresholds for the value"
5265msgstr "" 5641msgstr ""
5266 5642
5267#: plugins/check_ups.c:645 5643#: plugins/check_ups.c:648
5268msgid "" 5644msgid ""
5269"of that variable. If the remote host has multiple UPS that are being " 5645"of that variable. If the remote host has multiple UPS that are being "
5270"monitored" 5646"monitored"
5271msgstr "" 5647msgstr ""
5272 5648
5273#: plugins/check_ups.c:646 5649#: plugins/check_ups.c:649
5274msgid "you will have to use the --ups option to specify which UPS to check." 5650msgid "you will have to use the --ups option to specify which UPS to check."
5275msgstr "" 5651msgstr ""
5276 5652
5277#: plugins/check_ups.c:648 5653#: plugins/check_ups.c:651
5278msgid "" 5654msgid ""
5279"This plugin requires that the UPSD daemon distributed with Russell Kroll's" 5655"This plugin requires that the UPSD daemon distributed with Russell Kroll's"
5280msgstr "" 5656msgstr ""
5281 5657
5282#: plugins/check_ups.c:649 5658#: plugins/check_ups.c:652
5283msgid "" 5659msgid ""
5284"Network UPS Tools be installed on the remote host. If you do not have the" 5660"Network UPS Tools be installed on the remote host. If you do not have the"
5285msgstr "" 5661msgstr ""
5286 5662
5287#: plugins/check_ups.c:650 5663#: plugins/check_ups.c:653
5288msgid "package installed on your system, you can download it from" 5664msgid "package installed on your system, you can download it from"
5289msgstr "" 5665msgstr ""
5290 5666
5291#: plugins/check_ups.c:651 5667#: plugins/check_ups.c:654
5292msgid "http://www.networkupstools.org" 5668msgid "http://www.networkupstools.org"
5293msgstr "" 5669msgstr ""
5294 5670
5295#: plugins/check_users.c:110 5671#: plugins/check_users.c:91
5672#, fuzzy, c-format
5673msgid "Could not enumerate RD sessions: %d\n"
5674msgstr "Konnte·url·nicht·zuweisen\n"
5675
5676#: plugins/check_users.c:146
5296#, c-format 5677#, c-format
5297msgid "# users=%d" 5678msgid "# users=%d"
5298msgstr "" 5679msgstr ""
5299 5680
5300#: plugins/check_users.c:133 5681#: plugins/check_users.c:164
5301msgid "Unable to read output" 5682msgid "Unable to read output"
5302msgstr "" 5683msgstr ""
5303 5684
5304#: plugins/check_users.c:140 5685#: plugins/check_users.c:166
5305#, c-format 5686#, c-format
5306msgid "USERS %s - %d users currently logged in |%s\n" 5687msgid "USERS %s - %d users currently logged in |%s\n"
5307msgstr "" 5688msgstr ""
5308 5689
5309#: plugins/check_users.c:219 5690#: plugins/check_users.c:241
5310#, fuzzy 5691#, fuzzy
5311msgid "This plugin checks the number of users currently logged in on the local" 5692msgid "This plugin checks the number of users currently logged in on the local"
5312msgstr "" 5693msgstr ""
@@ -5315,230 +5696,266 @@ msgstr ""
5315"unterschritten wird.\n" 5696"unterschritten wird.\n"
5316"\n" 5697"\n"
5317 5698
5318#: plugins/check_users.c:220 5699#: plugins/check_users.c:242
5319msgid "" 5700msgid ""
5320"system and generates an error if the number exceeds the thresholds specified." 5701"system and generates an error if the number exceeds the thresholds specified."
5321msgstr "" 5702msgstr ""
5322 5703
5323#: plugins/check_users.c:230 5704#: plugins/check_users.c:252
5324msgid "Set WARNING status if more than INTEGER users are logged in" 5705msgid "Set WARNING status if more than INTEGER users are logged in"
5325msgstr "" 5706msgstr ""
5326 5707
5327#: plugins/check_users.c:232 5708#: plugins/check_users.c:254
5328msgid "Set CRITICAL status if more than INTEGER users are logged in" 5709msgid "Set CRITICAL status if more than INTEGER users are logged in"
5329msgstr "" 5710msgstr ""
5330 5711
5331#: plugins/check_ide_smart.c:256 5712#: plugins/check_ide_smart.c:218
5713msgid ""
5714"DEPRECATION WARNING: the -q switch (quiet output) is no longer \"quiet\"."
5715msgstr ""
5716
5717#: plugins/check_ide_smart.c:219
5718msgid "Nagios-compatible output is now always returned."
5719msgstr ""
5720
5721#: plugins/check_ide_smart.c:224
5722msgid "SMART commands are broken and have been disabled (See Notes in --help)."
5723msgstr ""
5724
5725#: plugins/check_ide_smart.c:228
5726msgid ""
5727"DEPRECATION WARNING: the -n switch (Nagios-compatible output) is now the"
5728msgstr ""
5729
5730#: plugins/check_ide_smart.c:229
5731msgid "default and will be removed from future releases."
5732msgstr ""
5733
5734#: plugins/check_ide_smart.c:257
5332#, fuzzy, c-format 5735#, fuzzy, c-format
5333msgid "CRITICAL - Couldn't open device %s: %s\n" 5736msgid "CRITICAL - Couldn't open device %s: %s\n"
5334msgstr "CRITICAL - Device konnte nicht geöffnet werden: %s\n" 5737msgstr "CRITICAL - Device konnte nicht geöffnet werden: %s\n"
5335 5738
5336#: plugins/check_ide_smart.c:261 5739#: plugins/check_ide_smart.c:262
5337#, c-format 5740#, c-format
5338msgid "CRITICAL - SMART_CMD_ENABLE\n" 5741msgid "CRITICAL - SMART_CMD_ENABLE\n"
5339msgstr "" 5742msgstr ""
5340 5743
5341#: plugins/check_ide_smart.c:323 plugins/check_ide_smart.c:350 5744#: plugins/check_ide_smart.c:303 plugins/check_ide_smart.c:330
5342#, c-format 5745#, c-format
5343msgid "CRITICAL - SMART_READ_VALUES: %s\n" 5746msgid "CRITICAL - SMART_READ_VALUES: %s\n"
5344msgstr "" 5747msgstr ""
5345 5748
5346#: plugins/check_ide_smart.c:421 5749#: plugins/check_ide_smart.c:376
5347#, c-format 5750#, c-format
5348msgid "CRITICAL - %d Harddrive PreFailure%cDetected! %d/%d tests failed.\n" 5751msgid "CRITICAL - %d Harddrive PreFailure%cDetected! %d/%d tests failed.\n"
5349msgstr "" 5752msgstr ""
5350 5753
5351#: plugins/check_ide_smart.c:429 5754#: plugins/check_ide_smart.c:384
5352#, c-format 5755#, c-format
5353msgid "WARNING - %d Harddrive Advisor%s Detected. %d/%d tests failed.\n" 5756msgid "WARNING - %d Harddrive Advisor%s Detected. %d/%d tests failed.\n"
5354msgstr "" 5757msgstr ""
5355 5758
5356#: plugins/check_ide_smart.c:437 5759#: plugins/check_ide_smart.c:392
5357#, c-format 5760#, c-format
5358msgid "OK - Operational (%d/%d tests passed)\n" 5761msgid "OK - Operational (%d/%d tests passed)\n"
5359msgstr "" 5762msgstr ""
5360 5763
5361#: plugins/check_ide_smart.c:441 5764#: plugins/check_ide_smart.c:396
5362#, c-format 5765#, c-format
5363msgid "ERROR - Status '%d' unknown. %d/%d tests passed\n" 5766msgid "ERROR - Status '%d' unknown. %d/%d tests passed\n"
5364msgstr "" 5767msgstr ""
5365 5768
5366#: plugins/check_ide_smart.c:474 5769#: plugins/check_ide_smart.c:429
5367#, c-format 5770#, c-format
5368msgid "OffLineStatus=%d {%s}, AutoOffLine=%s, OffLineTimeout=%d minutes\n" 5771msgid "OffLineStatus=%d {%s}, AutoOffLine=%s, OffLineTimeout=%d minutes\n"
5369msgstr "" 5772msgstr ""
5370 5773
5371#: plugins/check_ide_smart.c:480 5774#: plugins/check_ide_smart.c:435
5372#, c-format 5775#, c-format
5373msgid "OffLineCapability=%d {%s %s %s}\n" 5776msgid "OffLineCapability=%d {%s %s %s}\n"
5374msgstr "" 5777msgstr ""
5375 5778
5376#: plugins/check_ide_smart.c:486 5779#: plugins/check_ide_smart.c:441
5377#, c-format 5780#, c-format
5378msgid "SmartRevision=%d, CheckSum=%d, SmartCapability=%d {%s %s}\n" 5781msgid "SmartRevision=%d, CheckSum=%d, SmartCapability=%d {%s %s}\n"
5379msgstr "" 5782msgstr ""
5380 5783
5381#: plugins/check_ide_smart.c:508 plugins/check_ide_smart.c:532 5784#: plugins/check_ide_smart.c:463 plugins/check_ide_smart.c:492
5382#, c-format 5785#, c-format
5383msgid "CRITICAL - %s: %s\n" 5786msgid "CRITICAL - %s: %s\n"
5384msgstr "" 5787msgstr ""
5385 5788
5386#: plugins/check_ide_smart.c:553 plugins/check_ide_smart.c:580 5789#: plugins/check_ide_smart.c:467 plugins/check_ide_smart.c:496
5790#, c-format
5791msgid "OK - Command sent (%s)\n"
5792msgstr ""
5793
5794#: plugins/check_ide_smart.c:517 plugins/check_ide_smart.c:544
5387#, c-format 5795#, c-format
5388msgid "CRITICAL - SMART_READ_THRESHOLDS: %s\n" 5796msgid "CRITICAL - SMART_READ_THRESHOLDS: %s\n"
5389msgstr "" 5797msgstr ""
5390 5798
5391#: plugins/check_ide_smart.c:599 5799#: plugins/check_ide_smart.c:563
5392#, c-format 5800#, c-format
5393msgid "" 5801msgid ""
5394"This plugin checks a local hard drive with the (Linux specific) SMART " 5802"This plugin checks a local hard drive with the (Linux specific) SMART "
5395"interface [http://smartlinux.sourceforge.net/smart/index.php]." 5803"interface [http://smartlinux.sourceforge.net/smart/index.php]."
5396msgstr "" 5804msgstr ""
5397 5805
5398#: plugins/check_ide_smart.c:609 5806#: plugins/check_ide_smart.c:573
5399msgid "Select device DEVICE" 5807msgid "Select device DEVICE"
5400msgstr "" 5808msgstr ""
5401 5809
5402#: plugins/check_ide_smart.c:610 5810#: plugins/check_ide_smart.c:574
5403msgid "" 5811msgid ""
5404"Note: if the device is selected with this option, _no_ other options are " 5812"Note: if the device is specified without this option, any further option will"
5405"accepted"
5406msgstr "" 5813msgstr ""
5407 5814
5408#: plugins/check_ide_smart.c:612 5815#: plugins/check_ide_smart.c:575
5409msgid "Perform immediately offline tests" 5816msgid "be ignored."
5410msgstr "" 5817msgstr ""
5411 5818
5412#: plugins/check_ide_smart.c:614 5819#: plugins/check_ide_smart.c:581
5413msgid "Returns the number of failed tests" 5820msgid ""
5821"The SMART command modes (-i/--immediate, -0/--auto-off and -1/--auto-on) were"
5822msgstr ""
5823
5824#: plugins/check_ide_smart.c:582
5825msgid ""
5826"broken in an underhand manner and have been disabled. You can use smartctl"
5414msgstr "" 5827msgstr ""
5415 5828
5416#: plugins/check_ide_smart.c:616 5829#: plugins/check_ide_smart.c:583
5417msgid "Turn on automatic offline tests" 5830msgid "instead:"
5418msgstr "" 5831msgstr ""
5419 5832
5420#: plugins/check_ide_smart.c:618 5833#: plugins/check_ide_smart.c:584
5421msgid "Turn off automatic offline tests" 5834msgid "-0/--auto-off: use \"smartctl --offlineauto=off\""
5422msgstr "" 5835msgstr ""
5423 5836
5424#: plugins/check_ide_smart.c:620 5837#: plugins/check_ide_smart.c:585
5425msgid "Output suitable for the monitoring system" 5838msgid "-1/--auto-on: use \"smartctl --offlineauto=on\""
5426msgstr "" 5839msgstr ""
5427 5840
5428#: plugins/negate.c:99 5841#: plugins/check_ide_smart.c:586
5842msgid "-i/--immediate: use \"smartctl --test=offline\""
5843msgstr ""
5844
5845#: plugins/negate.c:96
5429#, fuzzy 5846#, fuzzy
5430msgid "No data returned from command\n" 5847msgid "No data returned from command\n"
5431msgstr "Keine Daten empfangen %s\n" 5848msgstr "Keine Daten empfangen %s\n"
5432 5849
5433#: plugins/negate.c:170 5850#: plugins/negate.c:166
5434msgid "" 5851msgid ""
5435"Timeout result must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) " 5852"Timeout result must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) "
5436"or integer (0-3)." 5853"or integer (0-3)."
5437msgstr "" 5854msgstr ""
5438 5855
5439#: plugins/negate.c:174 5856#: plugins/negate.c:170
5440msgid "" 5857msgid ""
5441"Ok must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or integer (0-" 5858"Ok must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or integer "
5442"3)." 5859"(0-3)."
5443msgstr "" 5860msgstr ""
5444 5861
5445#: plugins/negate.c:180 5862#: plugins/negate.c:176
5446msgid "" 5863msgid ""
5447"Warning must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or " 5864"Warning must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or "
5448"integer (0-3)." 5865"integer (0-3)."
5449msgstr "" 5866msgstr ""
5450 5867
5451#: plugins/negate.c:185 5868#: plugins/negate.c:181
5452msgid "" 5869msgid ""
5453"Critical must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or " 5870"Critical must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or "
5454"integer (0-3)." 5871"integer (0-3)."
5455msgstr "" 5872msgstr ""
5456 5873
5457#: plugins/negate.c:190 5874#: plugins/negate.c:186
5458msgid "" 5875msgid ""
5459"Unknown must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or " 5876"Unknown must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or "
5460"integer (0-3)." 5877"integer (0-3)."
5461msgstr "" 5878msgstr ""
5462 5879
5463#: plugins/negate.c:217 5880#: plugins/negate.c:213
5464msgid "Require path to command" 5881msgid "Require path to command"
5465msgstr "" 5882msgstr ""
5466 5883
5467#: plugins/negate.c:246 5884#: plugins/negate.c:224
5468msgid "" 5885msgid ""
5469"Negates the status of a plugin (returns OK for CRITICAL and vice-versa)." 5886"Negates the status of a plugin (returns OK for CRITICAL and vice-versa)."
5470msgstr "" 5887msgstr ""
5471 5888
5472#: plugins/negate.c:247 5889#: plugins/negate.c:225
5473msgid "Additional switches can be used to control which state becomes what." 5890msgid "Additional switches can be used to control which state becomes what."
5474msgstr "" 5891msgstr ""
5475 5892
5476#: plugins/negate.c:256 5893#: plugins/negate.c:234
5477msgid "Keep timeout longer than the plugin timeout to retain CRITICAL status." 5894msgid "Keep timeout longer than the plugin timeout to retain CRITICAL status."
5478msgstr "" 5895msgstr ""
5479 5896
5480#: plugins/negate.c:258 5897#: plugins/negate.c:236
5481msgid "Custom result on Negate timeouts; see below for STATUS definition\n" 5898msgid "Custom result on Negate timeouts; see below for STATUS definition\n"
5482msgstr "" 5899msgstr ""
5483 5900
5484#: plugins/negate.c:264 5901#: plugins/negate.c:242
5485#, c-format 5902#, c-format
5486msgid "" 5903msgid ""
5487" STATUS can be 'OK', 'WARNING', 'CRITICAL' or 'UNKNOWN' without single\n" 5904" STATUS can be 'OK', 'WARNING', 'CRITICAL' or 'UNKNOWN' without single\n"
5488msgstr "" 5905msgstr ""
5489 5906
5490#: plugins/negate.c:265 5907#: plugins/negate.c:243
5491#, c-format 5908#, c-format
5492msgid "" 5909msgid ""
5493" quotes. Numeric values are accepted. If nothing is specified, permutes\n" 5910" quotes. Numeric values are accepted. If nothing is specified, permutes\n"
5494msgstr "" 5911msgstr ""
5495 5912
5496#: plugins/negate.c:266 5913#: plugins/negate.c:244
5497#, c-format 5914#, c-format
5498msgid " OK and CRITICAL.\n" 5915msgid " OK and CRITICAL.\n"
5499msgstr "" 5916msgstr ""
5500 5917
5501#: plugins/negate.c:268 5918#: plugins/negate.c:246
5502#, c-format 5919#, c-format
5503msgid "" 5920msgid ""
5504" Substitute output text as well. Will only substitute text in CAPITALS\n" 5921" Substitute output text as well. Will only substitute text in CAPITALS\n"
5505msgstr "" 5922msgstr ""
5506 5923
5507#: plugins/negate.c:273 5924#: plugins/negate.c:251
5508msgid "Run check_ping and invert result. Must use full path to plugin" 5925msgid "Run check_ping and invert result. Must use full path to plugin"
5509msgstr "" 5926msgstr ""
5510 5927
5511#: plugins/negate.c:275 5928#: plugins/negate.c:253
5512msgid "This will return OK instead of WARNING and UNKNOWN instead of CRITICAL" 5929msgid "This will return OK instead of WARNING and UNKNOWN instead of CRITICAL"
5513msgstr "" 5930msgstr ""
5514 5931
5515#: plugins/negate.c:278 5932#: plugins/negate.c:256
5516msgid "" 5933msgid ""
5517"This plugin is a wrapper to take the output of another plugin and invert it." 5934"This plugin is a wrapper to take the output of another plugin and invert it."
5518msgstr "" 5935msgstr ""
5519 5936
5520#: plugins/negate.c:279 5937#: plugins/negate.c:257
5521msgid "The full path of the plugin must be provided." 5938msgid "The full path of the plugin must be provided."
5522msgstr "" 5939msgstr ""
5523 5940
5524#: plugins/negate.c:280 5941#: plugins/negate.c:258
5525msgid "If the wrapped plugin returns OK, the wrapper will return CRITICAL." 5942msgid "If the wrapped plugin returns OK, the wrapper will return CRITICAL."
5526msgstr "" 5943msgstr ""
5527 5944
5528#: plugins/negate.c:281 5945#: plugins/negate.c:259
5529msgid "If the wrapped plugin returns CRITICAL, the wrapper will return OK." 5946msgid "If the wrapped plugin returns CRITICAL, the wrapper will return OK."
5530msgstr "" 5947msgstr ""
5531 5948
5532#: plugins/negate.c:282 5949#: plugins/negate.c:260
5533msgid "Otherwise, the output state of the wrapped plugin is unchanged." 5950msgid "Otherwise, the output state of the wrapped plugin is unchanged."
5534msgstr "" 5951msgstr ""
5535 5952
5536#: plugins/negate.c:284 5953#: plugins/negate.c:262
5537msgid "" 5954msgid ""
5538"Using timeout-result, it is possible to override the timeout behaviour or a" 5955"Using timeout-result, it is possible to override the timeout behaviour or a"
5539msgstr "" 5956msgstr ""
5540 5957
5541#: plugins/negate.c:285 5958#: plugins/negate.c:263
5542msgid "plugin by setting the negate timeout a bit lower." 5959msgid "plugin by setting the negate timeout a bit lower."
5543msgstr "" 5960msgstr ""
5544 5961
@@ -5552,143 +5969,138 @@ msgstr "CRITICAL - Dokumentendatum ist %d Sekunden in der Zukunft\n"
5552msgid "%s - Abnormal timeout after %d seconds\n" 5969msgid "%s - Abnormal timeout after %d seconds\n"
5553msgstr "CRITICAL - Dokumentendatum ist %d Sekunden in der Zukunft\n" 5970msgstr "CRITICAL - Dokumentendatum ist %d Sekunden in der Zukunft\n"
5554 5971
5555#: plugins/netutils.c:79 plugins/netutils.c:281 5972#: plugins/netutils.c:79 plugins/netutils.c:292
5556msgid "Send failed" 5973msgid "Send failed"
5557msgstr "" 5974msgstr ""
5558 5975
5559#: plugins/netutils.c:96 plugins/netutils.c:296 5976#: plugins/netutils.c:96 plugins/netutils.c:307
5560#, fuzzy 5977#, fuzzy
5561msgid "No data was received from host!" 5978msgid "No data was received from host!"
5562msgstr "Keine Daten empfangen %s\n" 5979msgstr "Keine Daten empfangen %s\n"
5563 5980
5564#: plugins/netutils.c:204 plugins/netutils.c:240 5981#: plugins/netutils.c:209 plugins/netutils.c:245
5565msgid "Socket creation failed" 5982msgid "Socket creation failed"
5566msgstr "" 5983msgstr ""
5567 5984
5568#: plugins/netutils.c:233 5985#: plugins/netutils.c:238
5569msgid "Supplied path too long unix domain socket" 5986msgid "Supplied path too long unix domain socket"
5570msgstr "" 5987msgstr ""
5571 5988
5572#: plugins/netutils.c:305 5989#: plugins/netutils.c:316
5573msgid "Receive failed" 5990msgid "Receive failed"
5574msgstr "" 5991msgstr ""
5575 5992
5576#: plugins/netutils.c:331 plugins-root/check_dhcp.c:1342 5993#: plugins/netutils.c:342 plugins-root/check_dhcp.c:1310
5577#, fuzzy, c-format 5994#, fuzzy, c-format
5578msgid "Invalid hostname/address - %s" 5995msgid "Invalid hostname/address - %s"
5579msgstr "" 5996msgstr ""
5580"Ungültige(r) Name/Adresse: %s\n" 5997"Ungültige(r) Name/Adresse: %s\n"
5581"\n" 5998"\n"
5582 5999
5583#: plugins/popen.c:142 6000#: plugins/popen.c:133
5584#, fuzzy 6001#, fuzzy
5585msgid "Could not malloc argv array in popen()" 6002msgid "Could not malloc argv array in popen()"
5586msgstr "Konnte addr nicht zuweisen\n" 6003msgstr "Konnte addr nicht zuweisen\n"
5587 6004
5588#: plugins/popen.c:152 6005#: plugins/popen.c:143
5589#, fuzzy 6006#, fuzzy
5590msgid "CRITICAL - You need more args!!!" 6007msgid "CRITICAL - You need more args!!!"
5591msgstr "CRITICAL - Fehler: %s\n" 6008msgstr "CRITICAL - Fehler: %s\n"
5592 6009
5593#: plugins/popen.c:209 6010#: plugins/popen.c:201
5594#, fuzzy 6011#, fuzzy
5595msgid "Cannot catch SIGCHLD" 6012msgid "Cannot catch SIGCHLD"
5596msgstr "Konnte SIGALRM nicht erhalten" 6013msgstr "Konnte SIGALRM nicht erhalten"
5597 6014
5598#: plugins/popen.c:304 6015#: plugins/popen.c:287
5599#, fuzzy, c-format 6016#, fuzzy, c-format
5600msgid "CRITICAL - Plugin timed out after %d seconds\n" 6017msgid "CRITICAL - Plugin timed out after %d seconds\n"
5601msgstr "CRITICAL - Dokumentendatum ist %d Sekunden in der Zukunft\n" 6018msgstr "CRITICAL - Dokumentendatum ist %d Sekunden in der Zukunft\n"
5602 6019
5603#: plugins/popen.c:307 6020#: plugins/popen.c:290
5604msgid "CRITICAL - popen timeout received, but no child process" 6021msgid "CRITICAL - popen timeout received, but no child process"
5605msgstr "" 6022msgstr ""
5606 6023
5607#: plugins/popen.c:323 6024#: plugins/urlize.c:129
5608msgid "sysconf error for _SC_OPEN_MAX"
5609msgstr ""
5610
5611#: plugins/urlize.c:130
5612#, c-format 6025#, c-format
5613msgid "" 6026msgid ""
5614"%s UNKNOWN - No data received from host\n" 6027"%s UNKNOWN - No data received from host\n"
5615"CMD: %s</A>\n" 6028"CMD: %s</A>\n"
5616msgstr "" 6029msgstr ""
5617 6030
5618#: plugins/urlize.c:169 6031#: plugins/urlize.c:168
5619msgid "" 6032msgid ""
5620"This plugin wraps the text output of another command (plugin) in HTML <A>" 6033"This plugin wraps the text output of another command (plugin) in HTML <A>"
5621msgstr "" 6034msgstr ""
5622 6035
5623#: plugins/urlize.c:170 6036#: plugins/urlize.c:169
5624msgid "" 6037msgid ""
5625"tags, thus displaying the child plugin's output as a clickable link in " 6038"tags, thus displaying the child plugin's output as a clickable link in "
5626"compatible" 6039"compatible"
5627msgstr "" 6040msgstr ""
5628 6041
5629#: plugins/urlize.c:171 6042#: plugins/urlize.c:170
5630msgid "" 6043msgid ""
5631"monitoring status screen. This plugin returns the status of the invoked " 6044"monitoring status screen. This plugin returns the status of the invoked "
5632"plugin." 6045"plugin."
5633msgstr "" 6046msgstr ""
5634 6047
5635#: plugins/urlize.c:181 6048#: plugins/urlize.c:180
5636msgid "" 6049msgid ""
5637"Pay close attention to quoting to ensure that the shell passes the expected" 6050"Pay close attention to quoting to ensure that the shell passes the expected"
5638msgstr "" 6051msgstr ""
5639 6052
5640#: plugins/urlize.c:182 6053#: plugins/urlize.c:181
5641msgid "data to the plugin. For example, in:" 6054msgid "data to the plugin. For example, in:"
5642msgstr "" 6055msgstr ""
5643 6056
5644#: plugins/urlize.c:183 6057#: plugins/urlize.c:182
5645msgid "urlize http://example.com/ check_http -H example.com -r 'two words'" 6058msgid "urlize http://example.com/ check_http -H example.com -r 'two words'"
5646msgstr "" 6059msgstr ""
5647 6060
5648#: plugins/urlize.c:184 6061#: plugins/urlize.c:183
5649msgid "the shell will remove the single quotes and urlize will see:" 6062msgid "the shell will remove the single quotes and urlize will see:"
5650msgstr "" 6063msgstr ""
5651 6064
5652#: plugins/urlize.c:185 6065#: plugins/urlize.c:184
5653msgid "urlize http://example.com/ check_http -H example.com -r two words" 6066msgid "urlize http://example.com/ check_http -H example.com -r two words"
5654msgstr "" 6067msgstr ""
5655 6068
5656#: plugins/urlize.c:186 6069#: plugins/urlize.c:185
5657msgid "You probably want:" 6070msgid "You probably want:"
5658msgstr "" 6071msgstr ""
5659 6072
5660#: plugins/urlize.c:187 6073#: plugins/urlize.c:186
5661msgid "urlize http://example.com/ \"check_http -H example.com -r 'two words'\"" 6074msgid "urlize http://example.com/ \"check_http -H example.com -r 'two words'\""
5662msgstr "" 6075msgstr ""
5663 6076
5664#: plugins/utils.c:174 6077#: plugins/utils.c:479
5665#, fuzzy, c-format
5666msgid "%s - Plugin timed out after %d seconds\n"
5667msgstr "CRITICAL - Dokumentendatum ist %d Sekunden in der Zukunft\n"
5668
5669#: plugins/utils.c:469
5670#, fuzzy 6078#, fuzzy
5671msgid "failed realloc in strpcpy\n" 6079msgid "failed realloc in strpcpy\n"
5672msgstr "konnte keinen Speicher für '%s' reservieren\n" 6080msgstr "konnte keinen Speicher für '%s' reservieren\n"
5673 6081
5674#: plugins/utils.c:511 6082#: plugins/utils.c:521
5675#, fuzzy 6083#, fuzzy
5676msgid "failed malloc in strscat\n" 6084msgid "failed malloc in strscat\n"
5677msgstr "konnte keinen Speicher für '%s' reservieren\n" 6085msgstr "konnte keinen Speicher für '%s' reservieren\n"
5678 6086
5679#: plugins/utils.c:531 6087#: plugins/utils.c:541
5680#, fuzzy 6088#, fuzzy
5681msgid "failed malloc in xvasprintf\n" 6089msgid "failed malloc in xvasprintf\n"
5682msgstr "konnte keinen Speicher für '%s' reservieren\n" 6090msgstr "konnte keinen Speicher für '%s' reservieren\n"
5683 6091
5684#: plugins/utils.h:137 6092#: plugins/utils.c:819
6093msgid "sysconf error for _SC_OPEN_MAX\n"
6094msgstr ""
6095
6096#: plugins/utils.h:127
5685#, c-format 6097#, c-format
5686msgid "" 6098msgid ""
5687" %s (-h | --help) for detailed help\n" 6099" %s (-h | --help) for detailed help\n"
5688" %s (-V | --version) for version information\n" 6100" %s (-V | --version) for version information\n"
5689msgstr "" 6101msgstr ""
5690 6102
5691#: plugins/utils.h:141 6103#: plugins/utils.h:131
5692msgid "" 6104msgid ""
5693"\n" 6105"\n"
5694"Options:\n" 6106"Options:\n"
@@ -5698,7 +6110,7 @@ msgid ""
5698" Print version information\n" 6110" Print version information\n"
5699msgstr "" 6111msgstr ""
5700 6112
5701#: plugins/utils.h:148 6113#: plugins/utils.h:138
5702#, c-format 6114#, c-format
5703msgid "" 6115msgid ""
5704" -H, --hostname=ADDRESS\n" 6116" -H, --hostname=ADDRESS\n"
@@ -5707,7 +6119,7 @@ msgid ""
5707" Port number (default: %s)\n" 6119" Port number (default: %s)\n"
5708msgstr "" 6120msgstr ""
5709 6121
5710#: plugins/utils.h:154 6122#: plugins/utils.h:144
5711msgid "" 6123msgid ""
5712" -4, --use-ipv4\n" 6124" -4, --use-ipv4\n"
5713" Use IPv4 connection\n" 6125" Use IPv4 connection\n"
@@ -5715,14 +6127,14 @@ msgid ""
5715" Use IPv6 connection\n" 6127" Use IPv6 connection\n"
5716msgstr "" 6128msgstr ""
5717 6129
5718#: plugins/utils.h:160 6130#: plugins/utils.h:150
5719msgid "" 6131msgid ""
5720" -v, --verbose\n" 6132" -v, --verbose\n"
5721" Show details for command-line debugging (output may be truncated by\n" 6133" Show details for command-line debugging (output may be truncated by\n"
5722"\t\tthe monitoring system)\n" 6134" the monitoring system)\n"
5723msgstr "" 6135msgstr ""
5724 6136
5725#: plugins/utils.h:165 6137#: plugins/utils.h:155
5726msgid "" 6138msgid ""
5727" -w, --warning=DOUBLE\n" 6139" -w, --warning=DOUBLE\n"
5728" Response time to result in warning status (seconds)\n" 6140" Response time to result in warning status (seconds)\n"
@@ -5730,7 +6142,7 @@ msgid ""
5730" Response time to result in critical status (seconds)\n" 6142" Response time to result in critical status (seconds)\n"
5731msgstr "" 6143msgstr ""
5732 6144
5733#: plugins/utils.h:171 6145#: plugins/utils.h:161
5734msgid "" 6146msgid ""
5735" -w, --warning=RANGE\n" 6147" -w, --warning=RANGE\n"
5736" Warning range (format: start:end). Alert if outside this range\n" 6148" Warning range (format: start:end). Alert if outside this range\n"
@@ -5738,14 +6150,21 @@ msgid ""
5738" Critical range\n" 6150" Critical range\n"
5739msgstr "" 6151msgstr ""
5740 6152
5741#: plugins/utils.h:177 6153#: plugins/utils.h:167
5742#, c-format 6154#, c-format
5743msgid "" 6155msgid ""
5744" -t, --timeout=INTEGER\n" 6156" -t, --timeout=INTEGER\n"
5745" Seconds before connection times out (default: %d)\n" 6157" Seconds before connection times out (default: %d)\n"
5746msgstr "" 6158msgstr ""
5747 6159
5748#: plugins/utils.h:182 6160#: plugins/utils.h:171
6161#, c-format
6162msgid ""
6163" -t, --timeout=INTEGER\n"
6164" Seconds before plugin times out (default: %d)\n"
6165msgstr ""
6166
6167#: plugins/utils.h:176
5749msgid "" 6168msgid ""
5750" --extra-opts=[section][@file]\n" 6169" --extra-opts=[section][@file]\n"
5751" Read options from an ini file. See\n" 6170" Read options from an ini file. See\n"
@@ -5753,14 +6172,14 @@ msgid ""
5753" for usage and examples.\n" 6172" for usage and examples.\n"
5754msgstr "" 6173msgstr ""
5755 6174
5756#: plugins/utils.h:190 6175#: plugins/utils.h:185
5757msgid "" 6176msgid ""
5758" See:\n" 6177" See:\n"
5759" https://www.monitoring-plugins.org/doc/guidelines.html#THRESHOLDFORMAT\n" 6178" https://www.monitoring-plugins.org/doc/guidelines.html#THRESHOLDFORMAT\n"
5760" for THRESHOLD format and examples.\n" 6179" for THRESHOLD format and examples.\n"
5761msgstr "" 6180msgstr ""
5762 6181
5763#: plugins/utils.h:195 6182#: plugins/utils.h:190
5764msgid "" 6183msgid ""
5765"\n" 6184"\n"
5766"Send email to help@monitoring-plugins.org if you have questions regarding\n" 6185"Send email to help@monitoring-plugins.org if you have questions regarding\n"
@@ -5769,7 +6188,7 @@ msgid ""
5769"\n" 6188"\n"
5770msgstr "" 6189msgstr ""
5771 6190
5772#: plugins/utils.h:200 6191#: plugins/utils.h:195
5773msgid "" 6192msgid ""
5774"\n" 6193"\n"
5775"The Monitoring Plugins come with ABSOLUTELY NO WARRANTY. You may " 6194"The Monitoring Plugins come with ABSOLUTELY NO WARRANTY. You may "
@@ -5778,410 +6197,416 @@ msgid ""
5778"For more information about these matters, see the file named COPYING.\n" 6197"For more information about these matters, see the file named COPYING.\n"
5779msgstr "" 6198msgstr ""
5780 6199
5781#: plugins-root/check_dhcp.c:320 6200#: plugins-root/check_dhcp.c:317
5782#, c-format 6201#, c-format
5783msgid "Error: Could not get hardware address of interface '%s'\n" 6202msgid "Error: Could not get hardware address of interface '%s'\n"
5784msgstr "" 6203msgstr ""
5785 6204
5786#: plugins-root/check_dhcp.c:342 6205#: plugins-root/check_dhcp.c:340
5787#, c-format 6206#, c-format
5788msgid "Error: if_nametoindex error - %s.\n" 6207msgid "Error: if_nametoindex error - %s.\n"
5789msgstr "" 6208msgstr ""
5790 6209
5791#: plugins-root/check_dhcp.c:347 6210#: plugins-root/check_dhcp.c:345
5792#, c-format 6211#, c-format
5793msgid "Error: Couldn't get hardware address from %s. sysctl 1 error - %s.\n" 6212msgid "Error: Couldn't get hardware address from %s. sysctl 1 error - %s.\n"
5794msgstr "" 6213msgstr ""
5795 6214
5796#: plugins-root/check_dhcp.c:352 6215#: plugins-root/check_dhcp.c:350
5797#, c-format 6216#, c-format
5798msgid "" 6217msgid ""
5799"Error: Couldn't get hardware address from interface %s. malloc error - %s.\n" 6218"Error: Couldn't get hardware address from interface %s. malloc error - %s.\n"
5800msgstr "" 6219msgstr ""
5801 6220
5802#: plugins-root/check_dhcp.c:357 6221#: plugins-root/check_dhcp.c:355
5803#, c-format 6222#, c-format
5804msgid "Error: Couldn't get hardware address from %s. sysctl 2 error - %s.\n" 6223msgid "Error: Couldn't get hardware address from %s. sysctl 2 error - %s.\n"
5805msgstr "" 6224msgstr ""
5806 6225
5807#: plugins-root/check_dhcp.c:388 6226#: plugins-root/check_dhcp.c:386
5808#, c-format 6227#, c-format
5809msgid "" 6228msgid ""
5810"Error: can't find unit number in interface_name (%s) - expecting TypeNumber " 6229"Error: can't find unit number in interface_name (%s) - expecting TypeNumber "
5811"eg lnc0.\n" 6230"eg lnc0.\n"
5812msgstr "" 6231msgstr ""
5813 6232
5814#: plugins-root/check_dhcp.c:393 plugins-root/check_dhcp.c:405 6233#: plugins-root/check_dhcp.c:391 plugins-root/check_dhcp.c:403
5815#, c-format 6234#, c-format
5816msgid "" 6235msgid ""
5817"Error: can't read MAC address from DLPI streams interface for device %s unit " 6236"Error: can't read MAC address from DLPI streams interface for device %s unit "
5818"%d.\n" 6237"%d.\n"
5819msgstr "" 6238msgstr ""
5820 6239
5821#: plugins-root/check_dhcp.c:411 6240#: plugins-root/check_dhcp.c:409
5822#, c-format 6241#, c-format
5823msgid "" 6242msgid ""
5824"Error: can't get MAC address for this architecture. Use the --mac option.\n" 6243"Error: can't get MAC address for this architecture. Use the --mac option.\n"
5825msgstr "" 6244msgstr ""
5826 6245
5827#: plugins-root/check_dhcp.c:430 6246#: plugins-root/check_dhcp.c:428
5828#, c-format 6247#, c-format
5829msgid "Error: Cannot determine IP address of interface %s\n" 6248msgid "Error: Cannot determine IP address of interface %s\n"
5830msgstr "" 6249msgstr ""
5831 6250
5832#: plugins-root/check_dhcp.c:438 6251#: plugins-root/check_dhcp.c:436
5833#, c-format 6252#, c-format
5834msgid "Error: Cannot get interface IP address on this platform.\n" 6253msgid "Error: Cannot get interface IP address on this platform.\n"
5835msgstr "" 6254msgstr ""
5836 6255
5837#: plugins-root/check_dhcp.c:443 6256#: plugins-root/check_dhcp.c:441
5838#, c-format 6257#, c-format
5839msgid "Pretending to be relay client %s\n" 6258msgid "Pretending to be relay client %s\n"
5840msgstr "" 6259msgstr ""
5841 6260
5842#: plugins-root/check_dhcp.c:528 6261#: plugins-root/check_dhcp.c:521
5843#, c-format 6262#, c-format
5844msgid "DHCPDISCOVER to %s port %d\n" 6263msgid "DHCPDISCOVER to %s port %d\n"
5845msgstr "" 6264msgstr ""
5846 6265
5847#: plugins-root/check_dhcp.c:580 6266#: plugins-root/check_dhcp.c:573
5848#, c-format 6267#, c-format
5849msgid "Result=ERROR\n" 6268msgid "Result=ERROR\n"
5850msgstr "" 6269msgstr ""
5851 6270
5852#: plugins-root/check_dhcp.c:586 6271#: plugins-root/check_dhcp.c:579
5853#, c-format 6272#, c-format
5854msgid "Result=OK\n" 6273msgid "Result=OK\n"
5855msgstr "" 6274msgstr ""
5856 6275
5857#: plugins-root/check_dhcp.c:596 6276#: plugins-root/check_dhcp.c:589
5858#, c-format 6277#, c-format
5859msgid "DHCPOFFER from IP address %s" 6278msgid "DHCPOFFER from IP address %s"
5860msgstr "" 6279msgstr ""
5861 6280
5862#: plugins-root/check_dhcp.c:597 6281#: plugins-root/check_dhcp.c:590
5863#, c-format 6282#, c-format
5864msgid " via %s\n" 6283msgid " via %s\n"
5865msgstr "" 6284msgstr ""
5866 6285
5867#: plugins-root/check_dhcp.c:604 6286#: plugins-root/check_dhcp.c:597
5868#, c-format 6287#, c-format
5869msgid "" 6288msgid ""
5870"DHCPOFFER XID (%u) did not match DHCPDISCOVER XID (%u) - ignoring packet\n" 6289"DHCPOFFER XID (%u) did not match DHCPDISCOVER XID (%u) - ignoring packet\n"
5871msgstr "" 6290msgstr ""
5872 6291
5873#: plugins-root/check_dhcp.c:626 6292#: plugins-root/check_dhcp.c:619
5874#, c-format 6293#, c-format
5875msgid "DHCPOFFER hardware address did not match our own - ignoring packet\n" 6294msgid "DHCPOFFER hardware address did not match our own - ignoring packet\n"
5876msgstr "" 6295msgstr ""
5877 6296
5878#: plugins-root/check_dhcp.c:644 6297#: plugins-root/check_dhcp.c:637
5879#, c-format 6298#, c-format
5880msgid "Total responses seen on the wire: %d\n" 6299msgid "Total responses seen on the wire: %d\n"
5881msgstr "" 6300msgstr ""
5882 6301
5883#: plugins-root/check_dhcp.c:645 6302#: plugins-root/check_dhcp.c:638
5884#, fuzzy, c-format 6303#, fuzzy, c-format
5885msgid "Valid responses for this machine: %d\n" 6304msgid "Valid responses for this machine: %d\n"
5886msgstr "Keine Antwort vom Host \n" 6305msgstr "Keine Antwort vom Host \n"
5887 6306
5888#: plugins-root/check_dhcp.c:660 6307#: plugins-root/check_dhcp.c:653
5889#, c-format 6308#, c-format
5890msgid "send_dhcp_packet result: %d\n" 6309msgid "send_dhcp_packet result: %d\n"
5891msgstr "" 6310msgstr ""
5892 6311
5893#: plugins-root/check_dhcp.c:693 6312#: plugins-root/check_dhcp.c:686
5894#, fuzzy, c-format 6313#, fuzzy, c-format
5895msgid "No (more) data received (nfound: %d)\n" 6314msgid "No (more) data received (nfound: %d)\n"
5896msgstr "Keine Daten empfangen %s\n" 6315msgstr "Keine Daten empfangen %s\n"
5897 6316
5898#: plugins-root/check_dhcp.c:712 6317#: plugins-root/check_dhcp.c:699
5899#, c-format 6318#, c-format
5900msgid "recvfrom() failed, " 6319msgid "recvfrom() failed, "
5901msgstr "" 6320msgstr ""
5902 6321
5903#: plugins-root/check_dhcp.c:719 6322#: plugins-root/check_dhcp.c:706
5904#, c-format 6323#, c-format
5905msgid "receive_dhcp_packet() result: %d\n" 6324msgid "receive_dhcp_packet() result: %d\n"
5906msgstr "" 6325msgstr ""
5907 6326
5908#: plugins-root/check_dhcp.c:720 6327#: plugins-root/check_dhcp.c:707
5909#, c-format 6328#, c-format
5910msgid "receive_dhcp_packet() source: %s\n" 6329msgid "receive_dhcp_packet() source: %s\n"
5911msgstr "" 6330msgstr ""
5912 6331
5913#: plugins-root/check_dhcp.c:750 6332#: plugins-root/check_dhcp.c:737
5914#, c-format 6333#, c-format
5915msgid "Error: Could not create socket!\n" 6334msgid "Error: Could not create socket!\n"
5916msgstr "" 6335msgstr ""
5917 6336
5918#: plugins-root/check_dhcp.c:760 6337#: plugins-root/check_dhcp.c:747
5919#, c-format 6338#, c-format
5920msgid "Error: Could not set reuse address option on DHCP socket!\n" 6339msgid "Error: Could not set reuse address option on DHCP socket!\n"
5921msgstr "" 6340msgstr ""
5922 6341
5923#: plugins-root/check_dhcp.c:766 6342#: plugins-root/check_dhcp.c:753
5924#, c-format 6343#, c-format
5925msgid "Error: Could not set broadcast option on DHCP socket!\n" 6344msgid "Error: Could not set broadcast option on DHCP socket!\n"
5926msgstr "" 6345msgstr ""
5927 6346
5928#: plugins-root/check_dhcp.c:775 6347#: plugins-root/check_dhcp.c:762
5929#, c-format 6348#, c-format
5930msgid "" 6349msgid ""
5931"Error: Could not bind socket to interface %s. Check your privileges...\n" 6350"Error: Could not bind socket to interface %s. Check your privileges...\n"
5932msgstr "" 6351msgstr ""
5933 6352
5934#: plugins-root/check_dhcp.c:786 6353#: plugins-root/check_dhcp.c:773
5935#, c-format 6354#, c-format
5936msgid "" 6355msgid ""
5937"Error: Could not bind to DHCP socket (port %d)! Check your privileges...\n" 6356"Error: Could not bind to DHCP socket (port %d)! Check your privileges...\n"
5938msgstr "" 6357msgstr ""
5939 6358
5940#: plugins-root/check_dhcp.c:820 6359#: plugins-root/check_dhcp.c:807
5941#, c-format 6360#, c-format
5942msgid "Requested server address: %s\n" 6361msgid "Requested server address: %s\n"
5943msgstr "" 6362msgstr ""
5944 6363
5945#: plugins-root/check_dhcp.c:882 6364#: plugins-root/check_dhcp.c:869
5946#, c-format 6365#, c-format
5947msgid "Lease Time: Infinite\n" 6366msgid "Lease Time: Infinite\n"
5948msgstr "" 6367msgstr ""
5949 6368
5950#: plugins-root/check_dhcp.c:884 6369#: plugins-root/check_dhcp.c:871
5951#, c-format 6370#, c-format
5952msgid "Lease Time: %lu seconds\n" 6371msgid "Lease Time: %lu seconds\n"
5953msgstr "" 6372msgstr ""
5954 6373
5955#: plugins-root/check_dhcp.c:886 6374#: plugins-root/check_dhcp.c:873
5956#, c-format 6375#, c-format
5957msgid "Renewal Time: Infinite\n" 6376msgid "Renewal Time: Infinite\n"
5958msgstr "" 6377msgstr ""
5959 6378
5960#: plugins-root/check_dhcp.c:888 6379#: plugins-root/check_dhcp.c:875
5961#, c-format 6380#, c-format
5962msgid "Renewal Time: %lu seconds\n" 6381msgid "Renewal Time: %lu seconds\n"
5963msgstr "" 6382msgstr ""
5964 6383
5965#: plugins-root/check_dhcp.c:890 6384#: plugins-root/check_dhcp.c:877
5966#, c-format 6385#, c-format
5967msgid "Rebinding Time: Infinite\n" 6386msgid "Rebinding Time: Infinite\n"
5968msgstr "" 6387msgstr ""
5969 6388
5970#: plugins-root/check_dhcp.c:891 6389#: plugins-root/check_dhcp.c:878
5971#, c-format 6390#, c-format
5972msgid "Rebinding Time: %lu seconds\n" 6391msgid "Rebinding Time: %lu seconds\n"
5973msgstr "" 6392msgstr ""
5974 6393
5975#: plugins-root/check_dhcp.c:919 6394#: plugins-root/check_dhcp.c:906
5976#, c-format 6395#, c-format
5977msgid "Added offer from server @ %s" 6396msgid "Added offer from server @ %s"
5978msgstr "" 6397msgstr ""
5979 6398
5980#: plugins-root/check_dhcp.c:920 6399#: plugins-root/check_dhcp.c:907
5981#, c-format 6400#, c-format
5982msgid " of IP address %s\n" 6401msgid " of IP address %s\n"
5983msgstr "" 6402msgstr ""
5984 6403
5985#: plugins-root/check_dhcp.c:987 6404#: plugins-root/check_dhcp.c:974
5986#, c-format 6405#, c-format
5987msgid "DHCP Server Match: Offerer=%s" 6406msgid "DHCP Server Match: Offerer=%s"
5988msgstr "" 6407msgstr ""
5989 6408
5990#: plugins-root/check_dhcp.c:988 6409#: plugins-root/check_dhcp.c:975
5991#, c-format 6410#, c-format
5992msgid " Requested=%s" 6411msgid " Requested=%s"
5993msgstr "" 6412msgstr ""
5994 6413
5995#: plugins-root/check_dhcp.c:990 6414#: plugins-root/check_dhcp.c:977
5996#, c-format 6415#, c-format
5997msgid " (duplicate)" 6416msgid " (duplicate)"
5998msgstr "" 6417msgstr ""
5999 6418
6000#: plugins-root/check_dhcp.c:991 6419#: plugins-root/check_dhcp.c:978
6001#, c-format 6420#, c-format
6002msgid "\n" 6421msgid "\n"
6003msgstr "" 6422msgstr ""
6004 6423
6005#: plugins-root/check_dhcp.c:1039 6424#: plugins-root/check_dhcp.c:1026
6006#, c-format 6425#, c-format
6007msgid "No DHCPOFFERs were received.\n" 6426msgid "No DHCPOFFERs were received.\n"
6008msgstr "" 6427msgstr ""
6009 6428
6010#: plugins-root/check_dhcp.c:1043 6429#: plugins-root/check_dhcp.c:1030
6011#, c-format 6430#, c-format
6012msgid "Received %d DHCPOFFER(s)" 6431msgid "Received %d DHCPOFFER(s)"
6013msgstr "" 6432msgstr ""
6014 6433
6015#: plugins-root/check_dhcp.c:1046 6434#: plugins-root/check_dhcp.c:1033
6016#, c-format 6435#, c-format
6017msgid ", %s%d of %d requested servers responded" 6436msgid ", %s%d of %d requested servers responded"
6018msgstr "" 6437msgstr ""
6019 6438
6020#: plugins-root/check_dhcp.c:1049 6439#: plugins-root/check_dhcp.c:1036
6021#, c-format 6440#, c-format
6022msgid ", requested address (%s) was %soffered" 6441msgid ", requested address (%s) was %soffered"
6023msgstr "" 6442msgstr ""
6024 6443
6025#: plugins-root/check_dhcp.c:1049 6444#: plugins-root/check_dhcp.c:1036
6026msgid "not " 6445msgid "not "
6027msgstr "" 6446msgstr ""
6028 6447
6029#: plugins-root/check_dhcp.c:1051 6448#: plugins-root/check_dhcp.c:1038
6030#, c-format 6449#, c-format
6031msgid ", max lease time = " 6450msgid ", max lease time = "
6032msgstr "" 6451msgstr ""
6033 6452
6034#: plugins-root/check_dhcp.c:1053 6453#: plugins-root/check_dhcp.c:1040
6035#, c-format 6454#, c-format
6036msgid "Infinity" 6455msgid "Infinity"
6037msgstr "" 6456msgstr ""
6038 6457
6039#: plugins-root/check_dhcp.c:1234 6458#: plugins-root/check_dhcp.c:1160
6459msgid "Got unexpected non-option argument"
6460msgstr ""
6461
6462#: plugins-root/check_dhcp.c:1202
6040#, c-format 6463#, c-format
6041msgid "Error: DLPI stream API failed to get MAC in check_ctrl: %s.\n" 6464msgid "Error: DLPI stream API failed to get MAC in check_ctrl: %s.\n"
6042msgstr "" 6465msgstr ""
6043 6466
6044#: plugins-root/check_dhcp.c:1246 6467#: plugins-root/check_dhcp.c:1214
6045#, c-format 6468#, c-format
6046msgid "Error: DLPI stream API failed to get MAC in put_ctrl/putmsg(): %s.\n" 6469msgid "Error: DLPI stream API failed to get MAC in put_ctrl/putmsg(): %s.\n"
6047msgstr "" 6470msgstr ""
6048 6471
6049#: plugins-root/check_dhcp.c:1259 6472#: plugins-root/check_dhcp.c:1227
6050#, c-format 6473#, c-format
6051msgid "Error: DLPI stream API failed to get MAC in put_both/putmsg().\n" 6474msgid "Error: DLPI stream API failed to get MAC in put_both/putmsg().\n"
6052msgstr "" 6475msgstr ""
6053 6476
6054#: plugins-root/check_dhcp.c:1271 6477#: plugins-root/check_dhcp.c:1239
6055#, c-format 6478#, c-format
6056msgid "" 6479msgid ""
6057"Error: DLPI stream API failed to get MAC in dl_attach_req/open(%s..): %s.\n" 6480"Error: DLPI stream API failed to get MAC in dl_attach_req/open(%s..): %s.\n"
6058msgstr "" 6481msgstr ""
6059 6482
6060#: plugins-root/check_dhcp.c:1295 6483#: plugins-root/check_dhcp.c:1263
6061#, c-format 6484#, c-format
6062msgid "Error: DLPI stream API failed to get MAC in dl_bind/check_ctrl(): %s.\n" 6485msgid "Error: DLPI stream API failed to get MAC in dl_bind/check_ctrl(): %s.\n"
6063msgstr "" 6486msgstr ""
6064 6487
6065#: plugins-root/check_dhcp.c:1374 6488#: plugins-root/check_dhcp.c:1342
6066#, c-format 6489#, c-format
6067msgid "Hardware address: " 6490msgid "Hardware address: "
6068msgstr "" 6491msgstr ""
6069 6492
6070#: plugins-root/check_dhcp.c:1390 6493#: plugins-root/check_dhcp.c:1358
6071msgid "This plugin tests the availability of DHCP servers on a network." 6494msgid "This plugin tests the availability of DHCP servers on a network."
6072msgstr "" 6495msgstr ""
6073 6496
6074#: plugins-root/check_dhcp.c:1402 6497#: plugins-root/check_dhcp.c:1370
6075msgid "IP address of DHCP server that we must hear from" 6498msgid "IP address of DHCP server that we must hear from"
6076msgstr "" 6499msgstr ""
6077 6500
6078#: plugins-root/check_dhcp.c:1404 6501#: plugins-root/check_dhcp.c:1372
6079msgid "IP address that should be offered by at least one DHCP server" 6502msgid "IP address that should be offered by at least one DHCP server"
6080msgstr "" 6503msgstr ""
6081 6504
6082#: plugins-root/check_dhcp.c:1406 6505#: plugins-root/check_dhcp.c:1374
6083msgid "Seconds to wait for DHCPOFFER before timeout occurs" 6506msgid "Seconds to wait for DHCPOFFER before timeout occurs"
6084msgstr "" 6507msgstr ""
6085 6508
6086#: plugins-root/check_dhcp.c:1408 6509#: plugins-root/check_dhcp.c:1376
6087msgid "Interface to to use for listening (i.e. eth0)" 6510msgid "Interface to to use for listening (i.e. eth0)"
6088msgstr "" 6511msgstr ""
6089 6512
6090#: plugins-root/check_dhcp.c:1410 6513#: plugins-root/check_dhcp.c:1378
6091msgid "MAC address to use in the DHCP request" 6514msgid "MAC address to use in the DHCP request"
6092msgstr "" 6515msgstr ""
6093 6516
6094#: plugins-root/check_dhcp.c:1412 6517#: plugins-root/check_dhcp.c:1380
6095msgid "Unicast testing: mimic a DHCP relay, requires -s" 6518msgid "Unicast testing: mimic a DHCP relay, requires -s"
6096msgstr "" 6519msgstr ""
6097 6520
6098#: plugins-root/check_icmp.c:1295 6521#: plugins-root/check_icmp.c:1567
6099msgid "specify a target" 6522msgid "specify a target"
6100msgstr "" 6523msgstr ""
6101 6524
6102#: plugins-root/check_icmp.c:1297 6525#: plugins-root/check_icmp.c:1569
6526msgid "Use IPv4 (default) or IPv6 to communicate with the targets"
6527msgstr ""
6528
6529#: plugins-root/check_icmp.c:1571
6103#, fuzzy 6530#, fuzzy
6104msgid "warning threshold (currently " 6531msgid "warning threshold (currently "
6105msgstr "Warning threshold Integer sein" 6532msgstr "Warning threshold Integer sein"
6106 6533
6107#: plugins-root/check_icmp.c:1300 6534#: plugins-root/check_icmp.c:1574
6108#, fuzzy 6535#, fuzzy
6109msgid "critical threshold (currently " 6536msgid "critical threshold (currently "
6110msgstr "Critical threshold muss ein Integer sein" 6537msgstr "Critical threshold muss ein Integer sein"
6111 6538
6112#: plugins-root/check_icmp.c:1303 6539#: plugins-root/check_icmp.c:1577
6113#, fuzzy 6540#, fuzzy
6114msgid "specify a source IP address or device name" 6541msgid "specify a source IP address or device name"
6115msgstr "Hostname oder Serveradresse muss angegeben werden" 6542msgstr "Hostname oder Serveradresse muss angegeben werden"
6116 6543
6117#: plugins-root/check_icmp.c:1305 6544#: plugins-root/check_icmp.c:1579
6118msgid "number of packets to send (currently " 6545msgid "number of packets to send (currently "
6119msgstr "" 6546msgstr ""
6120 6547
6121#: plugins-root/check_icmp.c:1308 6548#: plugins-root/check_icmp.c:1582
6122msgid "max packet interval (currently " 6549msgid "max packet interval (currently "
6123msgstr "" 6550msgstr ""
6124 6551
6125#: plugins-root/check_icmp.c:1311 6552#: plugins-root/check_icmp.c:1585
6126msgid "max target interval (currently " 6553msgid "max target interval (currently "
6127msgstr "" 6554msgstr ""
6128 6555
6129#: plugins-root/check_icmp.c:1314 6556#: plugins-root/check_icmp.c:1588
6130msgid "number of alive hosts required for success" 6557msgid "number of alive hosts required for success"
6131msgstr "" 6558msgstr ""
6132 6559
6133#: plugins-root/check_icmp.c:1317 6560#: plugins-root/check_icmp.c:1591
6134msgid "TTL on outgoing packets (currently " 6561msgid "TTL on outgoing packets (currently "
6135msgstr "" 6562msgstr ""
6136 6563
6137#: plugins-root/check_icmp.c:1320 6564#: plugins-root/check_icmp.c:1594
6138msgid "timeout value (seconds, currently " 6565msgid "timeout value (seconds, currently "
6139msgstr "" 6566msgstr ""
6140 6567
6141#: plugins-root/check_icmp.c:1323 6568#: plugins-root/check_icmp.c:1597
6142msgid "Number of icmp data bytes to send" 6569msgid "Number of icmp data bytes to send"
6143msgstr "" 6570msgstr ""
6144 6571
6145#: plugins-root/check_icmp.c:1324 6572#: plugins-root/check_icmp.c:1598
6146msgid "Packet size will be data bytes + icmp header (currently" 6573msgid "Packet size will be data bytes + icmp header (currently"
6147msgstr "" 6574msgstr ""
6148 6575
6149#: plugins-root/check_icmp.c:1326 6576#: plugins-root/check_icmp.c:1600
6150msgid "verbose" 6577msgid "verbose"
6151msgstr "" 6578msgstr ""
6152 6579
6153#: plugins-root/check_icmp.c:1330 6580#: plugins-root/check_icmp.c:1604
6154msgid "The -H switch is optional. Naming a host (or several) to check is not." 6581msgid "The -H switch is optional. Naming a host (or several) to check is not."
6155msgstr "" 6582msgstr ""
6156 6583
6157#: plugins-root/check_icmp.c:1332 6584#: plugins-root/check_icmp.c:1606
6158msgid "" 6585msgid ""
6159"Threshold format for -w and -c is 200.25,60% for 200.25 msec RTA and 60%" 6586"Threshold format for -w and -c is 200.25,60% for 200.25 msec RTA and 60%"
6160msgstr "" 6587msgstr ""
6161 6588
6162#: plugins-root/check_icmp.c:1333 6589#: plugins-root/check_icmp.c:1607
6163msgid "packet loss. The default values should work well for most users." 6590msgid "packet loss. The default values should work well for most users."
6164msgstr "" 6591msgstr ""
6165 6592
6166#: plugins-root/check_icmp.c:1334 6593#: plugins-root/check_icmp.c:1608
6167msgid "" 6594msgid ""
6168"You can specify different RTA factors using the standardized abbreviations" 6595"You can specify different RTA factors using the standardized abbreviations"
6169msgstr "" 6596msgstr ""
6170 6597
6171#: plugins-root/check_icmp.c:1335 6598#: plugins-root/check_icmp.c:1609
6172msgid "" 6599msgid ""
6173"us (microseconds), ms (milliseconds, default) or just plain s for seconds." 6600"us (microseconds), ms (milliseconds, default) or just plain s for seconds."
6174msgstr "" 6601msgstr ""
6175 6602
6176#: plugins-root/check_icmp.c:1341 6603#: plugins-root/check_icmp.c:1615
6177msgid "The -v switch can be specified several times for increased verbosity." 6604msgid "The -v switch can be specified several times for increased verbosity."
6178msgstr "" 6605msgstr ""
6179 6606
6180#~ msgid "Critical threshold must be integer" 6607#, fuzzy, c-format
6181#~ msgstr "Critical threshold muss ein Integer sein" 6608#~ msgid "%s - Plugin timed out after %d seconds\n"
6182 6609#~ msgstr "CRITICAL - Dokumentendatum ist %d Sekunden in der Zukunft\n"
6183#~ msgid "Warning threshold must be integer"
6184#~ msgstr "Warning threshold Integer sein"
6185 6610
6186#, fuzzy 6611#, fuzzy
6187#~ msgid "Critical Process Count must be an integer!" 6612#~ msgid "Critical Process Count must be an integer!"
@@ -6230,18 +6655,10 @@ msgstr ""
6230#~ msgstr "HTTP CRITICAL - Text nicht gefunden%s|%s %s\n" 6655#~ msgstr "HTTP CRITICAL - Text nicht gefunden%s|%s %s\n"
6231 6656
6232#, fuzzy 6657#, fuzzy
6233#~ msgid "HTTP OK %s - %d bytes in %.3f seconds %s|%s %s\n"
6234#~ msgstr "HTTP OK %s - %.3f Sekunde Antwortzeit %s%s|%s %s\n"
6235
6236#, fuzzy
6237#~ msgid "HTTP UNKNOWN - could not allocate url\n" 6658#~ msgid "HTTP UNKNOWN - could not allocate url\n"
6238#~ msgstr "HTTP UNKNOWN - Konnte·url·nicht·zuweisen\n" 6659#~ msgstr "HTTP UNKNOWN - Konnte·url·nicht·zuweisen\n"
6239 6660
6240#, fuzzy 6661#, fuzzy
6241#~ msgid "HTTP UNKNOWN - Could not allocate server_url%s\n"
6242#~ msgstr "HTTP UNKNOWN - Konnte·url·nicht·zuweisen\n"
6243
6244#, fuzzy
6245#~ msgid "snmpget returned an error status" 6662#~ msgid "snmpget returned an error status"
6246#~ msgstr "dig hat einen Fehler zurückgegeben" 6663#~ msgstr "dig hat einen Fehler zurückgegeben"
6247 6664
@@ -6415,9 +6832,6 @@ msgstr ""
6415#~ msgid "Client Certificate Required\n" 6832#~ msgid "Client Certificate Required\n"
6416#~ msgstr "Clientzertifikat benötigt\n" 6833#~ msgstr "Clientzertifikat benötigt\n"
6417 6834
6418#~ msgid "Failed"
6419#~ msgstr "Fehlgeschlagen"
6420
6421#~ msgid "CRITICAL - Cannot create SSL context.\n" 6835#~ msgid "CRITICAL - Cannot create SSL context.\n"
6422#~ msgstr "CRITICAL - Konnte SSL Kontext nicht erzeugen.\n" 6836#~ msgstr "CRITICAL - Konnte SSL Kontext nicht erzeugen.\n"
6423 6837
diff --git a/po/fr.po b/po/fr.po
index fe74036..ef1b1be 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -10,7 +10,7 @@ msgid ""
10msgstr "" 10msgstr ""
11"Project-Id-Version: fr\n" 11"Project-Id-Version: fr\n"
12"Report-Msgid-Bugs-To: devel@monitoring-plugins.org\n" 12"Report-Msgid-Bugs-To: devel@monitoring-plugins.org\n"
13"POT-Creation-Date: 2014-01-19 16:30-0500\n" 13"POT-Creation-Date: 2023-06-12 20:31+0200\n"
14"PO-Revision-Date: 2010-04-21 23:38-0400\n" 14"PO-Revision-Date: 2010-04-21 23:38-0400\n"
15"Last-Translator: Thomas Guyot-Sionnest <dermoth@aei.ca>\n" 15"Last-Translator: Thomas Guyot-Sionnest <dermoth@aei.ca>\n"
16"Language-Team: Nagios Plugin Development Mailing List <nagiosplug-" 16"Language-Team: Nagios Plugin Development Mailing List <nagiosplug-"
@@ -22,98 +22,101 @@ msgstr ""
22"Plural-Forms: nplurals=2; plural=(n != 1);\n" 22"Plural-Forms: nplurals=2; plural=(n != 1);\n"
23"X-Generator: KBabel 1.11.4\n" 23"X-Generator: KBabel 1.11.4\n"
24 24
25#: plugins/check_by_ssh.c:86 plugins/check_cluster.c:76 plugins/check_dig.c:88 25#: plugins/check_by_ssh.c:88 plugins/check_cluster.c:76 plugins/check_dig.c:91
26#: plugins/check_disk.c:194 plugins/check_dns.c:102 plugins/check_dummy.c:52 26#: plugins/check_disk.c:206 plugins/check_dns.c:106 plugins/check_dummy.c:52
27#: plugins/check_fping.c:93 plugins/check_game.c:82 plugins/check_hpjd.c:103 27#: plugins/check_fping.c:95 plugins/check_game.c:82 plugins/check_hpjd.c:105
28#: plugins/check_http.c:167 plugins/check_ldap.c:109 plugins/check_load.c:122 28#: plugins/check_http.c:174 plugins/check_ldap.c:118 plugins/check_load.c:128
29#: plugins/check_mrtgtraf.c:83 plugins/check_mysql.c:122 29#: plugins/check_mrtgtraf.c:83 plugins/check_mysql.c:124
30#: plugins/check_nagios.c:91 plugins/check_nt.c:127 plugins/check_ntp.c:770 30#: plugins/check_nagios.c:91 plugins/check_nt.c:127 plugins/check_ntp.c:780
31#: plugins/check_ntp_peer.c:575 plugins/check_ntp_time.c:552 31#: plugins/check_ntp_peer.c:575 plugins/check_ntp_time.c:557
32#: plugins/check_nwstat.c:173 plugins/check_overcr.c:102 32#: plugins/check_nwstat.c:173 plugins/check_overcr.c:102
33#: plugins/check_pgsql.c:172 plugins/check_ping.c:95 plugins/check_procs.c:172 33#: plugins/check_pgsql.c:174 plugins/check_ping.c:97 plugins/check_procs.c:176
34#: plugins/check_radius.c:160 plugins/check_real.c:80 plugins/check_smtp.c:144 34#: plugins/check_radius.c:176 plugins/check_real.c:80 plugins/check_smtp.c:146
35#: plugins/check_snmp.c:240 plugins/check_ssh.c:73 plugins/check_swap.c:110 35#: plugins/check_snmp.c:248 plugins/check_ssh.c:74 plugins/check_swap.c:115
36#: plugins/check_tcp.c:218 plugins/check_time.c:78 plugins/check_ups.c:122 36#: plugins/check_tcp.c:222 plugins/check_time.c:78 plugins/check_ups.c:122
37#: plugins/check_users.c:77 plugins/negate.c:214 plugins-root/check_dhcp.c:270 37#: plugins/check_users.c:84 plugins/negate.c:210 plugins-root/check_dhcp.c:270
38msgid "Could not parse arguments" 38msgid "Could not parse arguments"
39msgstr "Impossible de décomposer les arguments" 39msgstr "Impossible de décomposer les arguments"
40 40
41#: plugins/check_by_ssh.c:90 plugins/check_dig.c:82 plugins/check_dns.c:95 41#: plugins/check_by_ssh.c:92 plugins/check_dig.c:85 plugins/check_dns.c:99
42#: plugins/check_nagios.c:95 plugins/check_pgsql.c:178 plugins/check_ping.c:99 42#: plugins/check_nagios.c:95 plugins/check_pgsql.c:180 plugins/check_ping.c:101
43#: plugins/check_procs.c:188 plugins/check_snmp.c:336 plugins/negate.c:79 43#: plugins/check_procs.c:192 plugins/check_snmp.c:348 plugins/negate.c:78
44msgid "Cannot catch SIGALRM" 44msgid "Cannot catch SIGALRM"
45msgstr "Impossible d'obtenir le signal SIGALRM" 45msgstr "Impossible d'obtenir le signal SIGALRM"
46 46
47#: plugins/check_by_ssh.c:110 47#: plugins/check_by_ssh.c:107
48#, fuzzy, c-format
49msgid "SSH connection failed: %s\n"
50msgstr "L'exécution de la commande à distance %s à échoué\n"
51
52#: plugins/check_by_ssh.c:126
48#, c-format 53#, c-format
49msgid "Remote command execution failed: %s\n" 54msgid "Remote command execution failed: %s\n"
50msgstr "L'exécution de la commande à distance %s à échoué\n" 55msgstr "L'exécution de la commande à distance %s à échoué\n"
51 56
52#: plugins/check_by_ssh.c:122 57#: plugins/check_by_ssh.c:141
53#, c-format 58#, c-format
54msgid "%s - check_by_ssh: Remote command '%s' returned status %d\n" 59msgid "%s - check_by_ssh: Remote command '%s' returned status %d\n"
55msgstr "" 60msgstr ""
56 61
57#: plugins/check_by_ssh.c:134 62#: plugins/check_by_ssh.c:153
58#, c-format 63#, c-format
59msgid "SSH WARNING: could not open %s\n" 64msgid "SSH WARNING: could not open %s\n"
60msgstr "SSH AVERTISSEMENT: impossible d'ouvrir %s\n" 65msgstr "SSH AVERTISSEMENT: impossible d'ouvrir %s\n"
61 66
62#: plugins/check_by_ssh.c:143 67#: plugins/check_by_ssh.c:162
63#, c-format 68#, c-format
64msgid "%s: Error parsing output\n" 69msgid "%s: Error parsing output\n"
65msgstr "%s: Erreur d'analyse du résultat\n" 70msgstr "%s: Erreur d'analyse du résultat\n"
66 71
67#: plugins/check_by_ssh.c:220 plugins/check_disk.c:476 72#: plugins/check_by_ssh.c:242 plugins/check_disk.c:568 plugins/check_http.c:292
68#: plugins/check_http.c:278 plugins/check_ldap.c:293 plugins/check_pgsql.c:311 73#: plugins/check_ldap.c:334 plugins/check_pgsql.c:314 plugins/check_procs.c:461
69#: plugins/check_procs.c:437 plugins/check_radius.c:308 74#: plugins/check_radius.c:323 plugins/check_real.c:357 plugins/check_smtp.c:607
70#: plugins/check_real.c:356 plugins/check_smtp.c:581 plugins/check_snmp.c:736 75#: plugins/check_snmp.c:789 plugins/check_ssh.c:140 plugins/check_tcp.c:519
71#: plugins/check_ssh.c:138 plugins/check_tcp.c:505 plugins/check_time.c:302 76#: plugins/check_time.c:302 plugins/check_ups.c:559 plugins/negate.c:160
72#: plugins/check_ups.c:556 plugins/negate.c:164
73msgid "Timeout interval must be a positive integer" 77msgid "Timeout interval must be a positive integer"
74msgstr "Le délai d'attente doit être un entier positif" 78msgstr "Le délai d'attente doit être un entier positif"
75 79
76#: plugins/check_by_ssh.c:230 plugins/check_pgsql.c:341 80#: plugins/check_by_ssh.c:254 plugins/check_pgsql.c:344
77#: plugins/check_radius.c:272 plugins/check_real.c:327 81#: plugins/check_radius.c:287 plugins/check_real.c:328 plugins/check_smtp.c:532
78#: plugins/check_smtp.c:506 plugins/check_tcp.c:511 plugins/check_time.c:296 82#: plugins/check_tcp.c:525 plugins/check_time.c:296 plugins/check_ups.c:521
79#: plugins/check_ups.c:518
80msgid "Port must be a positive integer" 83msgid "Port must be a positive integer"
81msgstr "Le numéro du port doit être un entier positif" 84msgstr "Le numéro du port doit être un entier positif"
82 85
83#: plugins/check_by_ssh.c:291 86#: plugins/check_by_ssh.c:315
84msgid "skip-stdout argument must be an integer" 87msgid "skip-stdout argument must be an integer"
85msgstr "Le nombres de lignes à sauter (skip-stdout) doit être un entier" 88msgstr "Le nombres de lignes à sauter (skip-stdout) doit être un entier"
86 89
87#: plugins/check_by_ssh.c:299 90#: plugins/check_by_ssh.c:323
88msgid "skip-stderr argument must be an integer" 91msgid "skip-stderr argument must be an integer"
89msgstr "Le nombres de lignes à sauter (skip-stderr) doit être un entier" 92msgstr "Le nombres de lignes à sauter (skip-stderr) doit être un entier"
90 93
91#: plugins/check_by_ssh.c:322 94#: plugins/check_by_ssh.c:349
92#, c-format 95#, c-format
93msgid "%s: You must provide a host name\n" 96msgid "%s: You must provide a host name\n"
94msgstr "%s: Vous devez fournir un nom d'hôte\n" 97msgstr "%s: Vous devez fournir un nom d'hôte\n"
95 98
96#: plugins/check_by_ssh.c:340 99#: plugins/check_by_ssh.c:366
97msgid "No remotecmd" 100msgid "No remotecmd"
98msgstr "Pas de commande distante" 101msgstr "Pas de commande distante"
99 102
100#: plugins/check_by_ssh.c:354 103#: plugins/check_by_ssh.c:380
101#, c-format 104#, c-format
102msgid "%s: Argument limit of %d exceeded\n" 105msgid "%s: Argument limit of %d exceeded\n"
103msgstr "" 106msgstr ""
104 107
105#: plugins/check_by_ssh.c:357 108#: plugins/check_by_ssh.c:383
106msgid "Can not (re)allocate 'commargv' buffer\n" 109msgid "Can not (re)allocate 'commargv' buffer\n"
107msgstr "Impossible de réallouer le tampon 'commargv'\n" 110msgstr "Impossible de réallouer le tampon 'commargv'\n"
108 111
109#: plugins/check_by_ssh.c:371 112#: plugins/check_by_ssh.c:397
110#, c-format 113#, c-format
111msgid "" 114msgid ""
112"%s: In passive mode, you must provide a service name for each command.\n" 115"%s: In passive mode, you must provide a service name for each command.\n"
113msgstr "" 116msgstr ""
114"%s: En mode passif, vous devez fournir un service pour chaque commande.\n" 117"%s: En mode passif, vous devez fournir un service pour chaque commande.\n"
115 118
116#: plugins/check_by_ssh.c:374 119#: plugins/check_by_ssh.c:400
117#, fuzzy, c-format 120#, fuzzy, c-format
118msgid "" 121msgid ""
119"%s: In passive mode, you must provide the host short name from the " 122"%s: In passive mode, you must provide the host short name from the "
@@ -122,471 +125,485 @@ msgstr ""
122"%s: En mode passif, vous devez fournir le nom court du hôte mentionné dans " 125"%s: En mode passif, vous devez fournir le nom court du hôte mentionné dans "
123"la configuration de nagios.\n" 126"la configuration de nagios.\n"
124 127
125#: plugins/check_by_ssh.c:388 128#: plugins/check_by_ssh.c:414
126#, c-format 129#, c-format
127msgid "This plugin uses SSH to execute commands on a remote host" 130msgid "This plugin uses SSH to execute commands on a remote host"
128msgstr "Ce plugin utilise SSH pour exécuter des commandes sur un hôte distant" 131msgstr "Ce plugin utilise SSH pour exécuter des commandes sur un hôte distant"
129 132
130#: plugins/check_by_ssh.c:403 133#: plugins/check_by_ssh.c:429
131msgid "tell ssh to use Protocol 1 [optional]" 134msgid "tell ssh to use Protocol 1 [optional]"
132msgstr "dire à ssh d'utiliser le protocole version 1 [optionnel]" 135msgstr "dire à ssh d'utiliser le protocole version 1 [optionnel]"
133 136
134#: plugins/check_by_ssh.c:405 137#: plugins/check_by_ssh.c:431
135msgid "tell ssh to use Protocol 2 [optional]" 138msgid "tell ssh to use Protocol 2 [optional]"
136msgstr "dire à ssh d'utiliser le protocole 2 [optionnel]" 139msgstr "dire à ssh d'utiliser le protocole 2 [optionnel]"
137 140
138#: plugins/check_by_ssh.c:407 141#: plugins/check_by_ssh.c:433
139msgid "Ignore all or (if specified) first n lines on STDOUT [optional]" 142msgid "Ignore all or (if specified) first n lines on STDOUT [optional]"
140msgstr "" 143msgstr ""
141 144
142#: plugins/check_by_ssh.c:409 145#: plugins/check_by_ssh.c:435
143msgid "Ignore all or (if specified) first n lines on STDERR [optional]" 146msgid "Ignore all or (if specified) first n lines on STDERR [optional]"
144msgstr "" 147msgstr ""
145 148
146#: plugins/check_by_ssh.c:411 149#: plugins/check_by_ssh.c:437
150msgid "Exit with an warning, if there is an output on STDERR"
151msgstr ""
152
153#: plugins/check_by_ssh.c:439
147msgid "" 154msgid ""
148"tells ssh to fork rather than create a tty [optional]. This will always " 155"tells ssh to fork rather than create a tty [optional]. This will always "
149"return OK if ssh is executed" 156"return OK if ssh is executed"
150msgstr "" 157msgstr ""
151 158
152#: plugins/check_by_ssh.c:413 159#: plugins/check_by_ssh.c:441
153msgid "command to execute on the remote machine" 160msgid "command to execute on the remote machine"
154msgstr "commande à exécuter sur la machine distante" 161msgstr "commande à exécuter sur la machine distante"
155 162
156#: plugins/check_by_ssh.c:415 163#: plugins/check_by_ssh.c:443
157msgid "SSH user name on remote host [optional]" 164msgid "SSH user name on remote host [optional]"
158msgstr "Nom d'utilisateur ssh sur la machine distante [optionnel]" 165msgstr "Nom d'utilisateur ssh sur la machine distante [optionnel]"
159 166
160#: plugins/check_by_ssh.c:417 167#: plugins/check_by_ssh.c:445
161msgid "identity of an authorized key [optional]" 168msgid "identity of an authorized key [optional]"
162msgstr "Identité de la clé autorisée [optionnel]" 169msgstr "Identité de la clé autorisée [optionnel]"
163 170
164#: plugins/check_by_ssh.c:419 171#: plugins/check_by_ssh.c:447
165#, fuzzy 172#, fuzzy
166msgid "external command file for monitoring [optional]" 173msgid "external command file for monitoring [optional]"
167msgstr "commande externe pour nagios [optionnel]" 174msgstr "commande externe pour nagios [optionnel]"
168 175
169#: plugins/check_by_ssh.c:421 176#: plugins/check_by_ssh.c:449
170#, fuzzy 177#, fuzzy
171msgid "list of monitoring service names, separated by ':' [optional]" 178msgid "list of monitoring service names, separated by ':' [optional]"
172msgstr "liste des services nagios, séparés par ':' [optionnel] " 179msgstr "liste des services nagios, séparés par ':' [optionnel] "
173 180
174#: plugins/check_by_ssh.c:423 181#: plugins/check_by_ssh.c:451
175#, fuzzy 182#, fuzzy
176msgid "short name of host in the monitoring configuration [optional]" 183msgid "short name of host in the monitoring configuration [optional]"
177msgstr "nom court de l'hôte dans la configuration nagios [optionnel]" 184msgstr "nom court de l'hôte dans la configuration nagios [optionnel]"
178 185
179#: plugins/check_by_ssh.c:425 186#: plugins/check_by_ssh.c:453
180msgid "Call ssh with '-o OPTION' (may be used multiple times) [optional]" 187msgid "Call ssh with '-o OPTION' (may be used multiple times) [optional]"
181msgstr "" 188msgstr ""
182"appelle ssh avec '-o OPTION' (peut être utilisé plusieurs fois) [optionnel]" 189"appelle ssh avec '-o OPTION' (peut être utilisé plusieurs fois) [optionnel]"
183 190
184#: plugins/check_by_ssh.c:427 191#: plugins/check_by_ssh.c:455
185#, fuzzy 192#, fuzzy
186msgid "Tell ssh to use this configfile [optional]" 193msgid "Tell ssh to use this configfile [optional]"
187msgstr "dire à ssh d'utiliser le protocole version 1 [optionnel]" 194msgstr "dire à ssh d'utiliser le protocole version 1 [optionnel]"
188 195
189#: plugins/check_by_ssh.c:429 196#: plugins/check_by_ssh.c:457
190msgid "Tell ssh to suppress warning and diagnostic messages [optional]" 197msgid "Tell ssh to suppress warning and diagnostic messages [optional]"
191msgstr "" 198msgstr ""
192"dire à ssh de supprimer les messages d'erreurs et de diagnostic [optionnel]" 199"dire à ssh de supprimer les messages d'erreurs et de diagnostic [optionnel]"
193 200
194#: plugins/check_by_ssh.c:434 201#: plugins/check_by_ssh.c:461
202msgid "Make connection problems return UNKNOWN instead of CRITICAL"
203msgstr ""
204
205#: plugins/check_by_ssh.c:464
195msgid "The most common mode of use is to refer to a local identity file with" 206msgid "The most common mode of use is to refer to a local identity file with"
196msgstr "" 207msgstr ""
197 208
198#: plugins/check_by_ssh.c:435 209#: plugins/check_by_ssh.c:465
199msgid "the '-i' option. In this mode, the identity pair should have a null" 210msgid "the '-i' option. In this mode, the identity pair should have a null"
200msgstr "" 211msgstr ""
201 212
202#: plugins/check_by_ssh.c:436 213#: plugins/check_by_ssh.c:466
203msgid "passphrase and the public key should be listed in the authorized_keys" 214msgid "passphrase and the public key should be listed in the authorized_keys"
204msgstr "" 215msgstr ""
205 216
206#: plugins/check_by_ssh.c:437 217#: plugins/check_by_ssh.c:467
207msgid "file of the remote host. Usually the key will be restricted to running" 218msgid "file of the remote host. Usually the key will be restricted to running"
208msgstr "" 219msgstr ""
209 220
210#: plugins/check_by_ssh.c:438 221#: plugins/check_by_ssh.c:468
211msgid "only one command on the remote server. If the remote SSH server tracks" 222msgid "only one command on the remote server. If the remote SSH server tracks"
212msgstr "" 223msgstr ""
213 224
214#: plugins/check_by_ssh.c:439 225#: plugins/check_by_ssh.c:469
215msgid "invocation arguments, the one remote program may be an agent that can" 226msgid "invocation arguments, the one remote program may be an agent that can"
216msgstr "" 227msgstr ""
217 228
218#: plugins/check_by_ssh.c:440 229#: plugins/check_by_ssh.c:470
219msgid "execute additional commands as proxy" 230msgid "execute additional commands as proxy"
220msgstr "" 231msgstr ""
221 232
222#: plugins/check_by_ssh.c:442 233#: plugins/check_by_ssh.c:472
223msgid "To use passive mode, provide multiple '-C' options, and provide" 234msgid "To use passive mode, provide multiple '-C' options, and provide"
224msgstr "Pour utiliser le mode passif, utilisez plusieurs fois l'option '-C',et" 235msgstr "Pour utiliser le mode passif, utilisez plusieurs fois l'option '-C',et"
225 236
226#: plugins/check_by_ssh.c:443 237#: plugins/check_by_ssh.c:473
227msgid "" 238msgid ""
228"all of -O, -s, and -n options (servicelist order must match '-C'options)" 239"all of -O, -s, and -n options (servicelist order must match '-C'options)"
229msgstr "" 240msgstr ""
230"et les options -O, -s, n (l'ordre des services doit correspondre aux " 241"et les options -O, -s, n (l'ordre des services doit correspondre aux "
231"multiples options '-C)" 242"multiples options '-C)"
232 243
233#: plugins/check_by_ssh.c:445 plugins/check_cluster.c:261 244#: plugins/check_by_ssh.c:475 plugins/check_cluster.c:271
234#: plugins/check_dig.c:355 plugins/check_disk.c:924 plugins/check_http.c:1560 245#: plugins/check_dig.c:364 plugins/check_disk.c:1000 plugins/check_http.c:1845
235#: plugins/check_nagios.c:312 plugins/check_ntp.c:869 246#: plugins/check_nagios.c:312 plugins/check_ntp.c:879
236#: plugins/check_ntp_peer.c:705 plugins/check_ntp_time.c:633 247#: plugins/check_ntp_peer.c:733 plugins/check_ntp_time.c:642
237#: plugins/check_procs.c:763 plugins/negate.c:271 plugins/urlize.c:180 248#: plugins/check_procs.c:806 plugins/negate.c:249 plugins/urlize.c:179
238msgid "Examples:" 249msgid "Examples:"
239msgstr "Exemples:" 250msgstr "Exemples:"
240 251
241#: plugins/check_by_ssh.c:460 plugins/check_cluster.c:274 252#: plugins/check_by_ssh.c:490 plugins/check_cluster.c:284
242#: plugins/check_dig.c:367 plugins/check_disk.c:941 plugins/check_dns.c:486 253#: plugins/check_dig.c:376 plugins/check_disk.c:1017 plugins/check_dns.c:617
243#: plugins/check_dummy.c:122 plugins/check_fping.c:505 254#: plugins/check_dummy.c:122 plugins/check_fping.c:524 plugins/check_game.c:331
244#: plugins/check_game.c:331 plugins/check_hpjd.c:414 plugins/check_http.c:1590 255#: plugins/check_hpjd.c:439 plugins/check_http.c:1883 plugins/check_ldap.c:511
245#: plugins/check_ldap.c:451 plugins/check_load.c:334 plugins/check_mrtg.c:382 256#: plugins/check_load.c:372 plugins/check_mrtg.c:382 plugins/check_mysql.c:587
246#: plugins/check_mysql.c:569 plugins/check_nagios.c:323 plugins/check_nt.c:774 257#: plugins/check_nagios.c:323 plugins/check_nt.c:797 plugins/check_ntp.c:898
247#: plugins/check_ntp.c:888 plugins/check_ntp_peer.c:725 258#: plugins/check_ntp_peer.c:753 plugins/check_ntp_time.c:651
248#: plugins/check_ntp_time.c:642 plugins/check_nwstat.c:1685 259#: plugins/check_nwstat.c:1685 plugins/check_overcr.c:467
249#: plugins/check_overcr.c:467 plugins/check_pgsql.c:578 260#: plugins/check_pgsql.c:551 plugins/check_ping.c:617 plugins/check_procs.c:829
250#: plugins/check_ping.c:603 plugins/check_procs.c:781 261#: plugins/check_radius.c:400 plugins/check_real.c:452 plugins/check_smtp.c:890
251#: plugins/check_radius.c:385 plugins/check_real.c:451 262#: plugins/check_snmp.c:1346 plugins/check_ssh.c:325 plugins/check_swap.c:607
252#: plugins/check_smtp.c:843 plugins/check_snmp.c:1207 plugins/check_ssh.c:309 263#: plugins/check_tcp.c:710 plugins/check_time.c:371 plugins/check_ups.c:663
253#: plugins/check_swap.c:558 plugins/check_tcp.c:684 plugins/check_time.c:371 264#: plugins/check_users.c:262 plugins/check_ide_smart.c:606 plugins/negate.c:273
254#: plugins/check_ups.c:660 plugins/check_users.c:240 265#: plugins/urlize.c:196 plugins-root/check_dhcp.c:1390
255#: plugins/check_ide_smart.c:640 plugins/negate.c:295 plugins/urlize.c:197 266#: plugins-root/check_icmp.c:1628
256#: plugins-root/check_dhcp.c:1422 plugins-root/check_icmp.c:1354
257msgid "Usage:" 267msgid "Usage:"
258msgstr "Utilisation:" 268msgstr "Utilisation:"
259 269
260#: plugins/check_cluster.c:230 270#: plugins/check_cluster.c:240
261#, fuzzy, c-format 271#, fuzzy, c-format
262msgid "Host/Service Cluster Plugin for Monitoring" 272msgid "Host/Service Cluster Plugin for Monitoring"
263msgstr "Plugin de Cluster d'Hôte/Service pour Nagios 2" 273msgstr "Plugin de Cluster d'Hôte/Service pour Nagios 2"
264 274
265#: plugins/check_cluster.c:236 plugins/check_nt.c:676 275#: plugins/check_cluster.c:246 plugins/check_nt.c:697
266msgid "Options:" 276msgid "Options:"
267msgstr "Options:" 277msgstr "Options:"
268 278
269#: plugins/check_cluster.c:239 279#: plugins/check_cluster.c:249
270msgid "Check service cluster status" 280msgid "Check service cluster status"
271msgstr "Vérifie l'état d'un cluster de services" 281msgstr "Vérifie l'état d'un cluster de services"
272 282
273#: plugins/check_cluster.c:241 283#: plugins/check_cluster.c:251
274msgid "Check host cluster status" 284msgid "Check host cluster status"
275msgstr "Vérifie l'état d'un cluster d'hôtes" 285msgstr "Vérifie l'état d'un cluster d'hôtes"
276 286
277#: plugins/check_cluster.c:243 287#: plugins/check_cluster.c:253
278msgid "Optional prepended text output (i.e. \"Host cluster\")" 288msgid "Optional prepended text output (i.e. \"Host cluster\")"
279msgstr "Texte optionnel accolé à la sortie (i.e. \"Cluster d'hôtes\")" 289msgstr "Texte optionnel accolé à la sortie (i.e. \"Cluster d'hôtes\")"
280 290
281#: plugins/check_cluster.c:245 plugins/check_cluster.c:248 291#: plugins/check_cluster.c:255 plugins/check_cluster.c:258
282msgid "Specifies the range of hosts or services in cluster that must be in a" 292msgid "Specifies the range of hosts or services in cluster that must be in a"
283msgstr "Défini le nombre d'hôtes ou de services du cluster qui doivent être" 293msgstr "Défini le nombre d'hôtes ou de services du cluster qui doivent être"
284 294
285#: plugins/check_cluster.c:246 295#: plugins/check_cluster.c:256
286msgid "non-OK state in order to return a WARNING status level" 296msgid "non-OK state in order to return a WARNING status level"
287msgstr "dans un état non-OK pour retourner un état AVERTISSEMENT" 297msgstr "dans un état non-OK pour retourner un état AVERTISSEMENT"
288 298
289#: plugins/check_cluster.c:249 299#: plugins/check_cluster.c:259
290msgid "non-OK state in order to return a CRITICAL status level" 300msgid "non-OK state in order to return a CRITICAL status level"
291msgstr "dans un état non-OK pour retourner un état CRITIQUE" 301msgstr "dans un état non-OK pour retourner un état CRITIQUE"
292 302
293#: plugins/check_cluster.c:251 303#: plugins/check_cluster.c:261
294msgid "The status codes of the hosts or services in the cluster, separated by" 304msgid "The status codes of the hosts or services in the cluster, separated by"
295msgstr "Les codes d'état des hôtes ou des services du cluster, séparés par des" 305msgstr "Les codes d'état des hôtes ou des services du cluster, séparés par des"
296 306
297#: plugins/check_cluster.c:252 307#: plugins/check_cluster.c:262
298msgid "commas" 308msgid "commas"
299msgstr "virgules" 309msgstr "virgules"
300 310
301#: plugins/check_cluster.c:257 plugins/check_game.c:318 311#: plugins/check_cluster.c:267 plugins/check_game.c:318
302#: plugins/check_http.c:1542 plugins/check_ldap.c:438 plugins/check_mrtg.c:363 312#: plugins/check_http.c:1827 plugins/check_ldap.c:497 plugins/check_mrtg.c:363
303#: plugins/check_mrtgtraf.c:361 plugins/check_mysql.c:558 313#: plugins/check_mrtgtraf.c:361 plugins/check_mysql.c:576
304#: plugins/check_nt.c:758 plugins/check_ntp.c:865 plugins/check_ntp_peer.c:696 314#: plugins/check_nt.c:781 plugins/check_ntp.c:875 plugins/check_ntp_peer.c:724
305#: plugins/check_ntp_time.c:626 plugins/check_nwstat.c:1670 315#: plugins/check_ntp_time.c:633 plugins/check_nwstat.c:1670
306#: plugins/check_overcr.c:456 plugins/check_snmp.c:1178 316#: plugins/check_overcr.c:456 plugins/check_snmp.c:1317
307#: plugins/check_swap.c:547 plugins/check_ups.c:642 plugins/negate.c:277 317#: plugins/check_swap.c:596 plugins/check_ups.c:645
308#: plugins-root/check_icmp.c:1329 318#: plugins/check_ide_smart.c:580 plugins/negate.c:255
319#: plugins-root/check_icmp.c:1603
309msgid "Notes:" 320msgid "Notes:"
310msgstr "Notes:" 321msgstr "Notes:"
311 322
312#: plugins/check_cluster.c:263 323#: plugins/check_cluster.c:273
313msgid "" 324msgid ""
314"Will alert critical if there are 3 or more service data points in a non-OK" 325"Will alert critical if there are 3 or more service data points in a non-OK"
315msgstr "" 326msgstr ""
316 327
317#: plugins/check_cluster.c:264 plugins/check_ups.c:639 328#: plugins/check_cluster.c:274 plugins/check_ups.c:642
318msgid "state." 329msgid "state."
319msgstr "" 330msgstr ""
320 331
321#: plugins/check_dig.c:100 plugins/check_dig.c:102 332#: plugins/check_dig.c:106 plugins/check_dig.c:108
322#, c-format 333#, c-format
323msgid "Looking for: '%s'\n" 334msgid "Looking for: '%s'\n"
324msgstr "Recherche de: '%s'\n" 335msgstr "Recherche de: '%s'\n"
325 336
326#: plugins/check_dig.c:109 337#: plugins/check_dig.c:115
327msgid "dig returned an error status" 338msgid "dig returned an error status"
328msgstr "dig à renvoyé un état d'erreur" 339msgstr "dig à renvoyé un état d'erreur"
329 340
330#: plugins/check_dig.c:134 341#: plugins/check_dig.c:140
331msgid "Server not found in ANSWER SECTION" 342msgid "Server not found in ANSWER SECTION"
332msgstr "Le serveur n'a pas été trouvé dans l'ANSWER SECTION" 343msgstr "Le serveur n'a pas été trouvé dans l'ANSWER SECTION"
333 344
334#: plugins/check_dig.c:144 345#: plugins/check_dig.c:150
335msgid "No ANSWER SECTION found" 346msgid "No ANSWER SECTION found"
336msgstr "Pas d' ANSWER SECTION trouvé" 347msgstr "Pas d' ANSWER SECTION trouvé"
337 348
338#: plugins/check_dig.c:171 349#: plugins/check_dig.c:177
339msgid "Probably a non-existent host/domain" 350msgid "Probably a non-existent host/domain"
340msgstr "Probablement un hôte/domaine inexistant" 351msgstr "Probablement un hôte/domaine inexistant"
341 352
342#: plugins/check_dig.c:233 353#: plugins/check_dig.c:239
343#, c-format 354#, c-format
344msgid "Port must be a positive integer - %s" 355msgid "Port must be a positive integer - %s"
345msgstr "Le numéro du port doit être un entier positif - %s" 356msgstr "Le numéro du port doit être un entier positif - %s"
346 357
347#: plugins/check_dig.c:244 358#: plugins/check_dig.c:250
348#, c-format 359#, c-format
349msgid "Warning interval must be a positive integer - %s" 360msgid "Warning interval must be a positive integer - %s"
350msgstr "Le seuil d'avertissement doit être un entier positif - %s" 361msgstr "Le seuil d'avertissement doit être un entier positif - %s"
351 362
352#: plugins/check_dig.c:252 363#: plugins/check_dig.c:258
353#, c-format 364#, c-format
354msgid "Critical interval must be a positive integer - %s" 365msgid "Critical interval must be a positive integer - %s"
355msgstr "Le seuil critique doit être un entier positif - %s" 366msgstr "Le seuil critique doit être un entier positif - %s"
356 367
357#: plugins/check_dig.c:260 368#: plugins/check_dig.c:266
358#, c-format 369#, c-format
359msgid "Timeout interval must be a positive integer - %s" 370msgid "Timeout interval must be a positive integer - %s"
360msgstr "Le délai d'attente doit être un entier positif - %s" 371msgstr "Le délai d'attente doit être un entier positif - %s"
361 372
362#: plugins/check_dig.c:325 373#: plugins/check_dig.c:334
363#, c-format 374#, fuzzy, c-format
364msgid "This plugin test the DNS service on the specified host using dig" 375msgid "This plugin tests the DNS service on the specified host using dig"
365msgstr "Ce plugin teste le service DNS sur l'hôte spécifié en utilisant dig" 376msgstr "Ce plugin teste le service DNS sur l'hôte spécifié en utilisant dig"
366 377
367#: plugins/check_dig.c:338 378#: plugins/check_dig.c:347
368msgid "Force dig to only use IPv4 query transport" 379msgid "Force dig to only use IPv4 query transport"
369msgstr "" 380msgstr ""
370 381
371#: plugins/check_dig.c:340 382#: plugins/check_dig.c:349
372msgid "Force dig to only use IPv6 query transport" 383msgid "Force dig to only use IPv6 query transport"
373msgstr "" 384msgstr ""
374 385
375#: plugins/check_dig.c:342 386#: plugins/check_dig.c:351
376msgid "Machine name to lookup" 387msgid "Machine name to lookup"
377msgstr "Nom de machine à rechercher" 388msgstr "Nom de machine à rechercher"
378 389
379#: plugins/check_dig.c:344 390#: plugins/check_dig.c:353
380msgid "Record type to lookup (default: A)" 391msgid "Record type to lookup (default: A)"
381msgstr "Type d'enregistrement à rechercher (par défaut: A)" 392msgstr "Type d'enregistrement à rechercher (par défaut: A)"
382 393
383#: plugins/check_dig.c:346 394#: plugins/check_dig.c:355
384msgid "" 395msgid ""
385"An address expected to be in the answer section. If not set, uses whatever" 396"An address expected to be in the answer section. If not set, uses whatever"
386msgstr "" 397msgstr ""
387"Une adresse qui devrait se trouver dans la section réponce. Si omit, utilise" 398"Une adresse qui devrait se trouver dans la section réponce. Si omit, utilise"
388 399
389#: plugins/check_dig.c:347 400#: plugins/check_dig.c:356
390msgid "was in -l" 401msgid "was in -l"
391msgstr "ce qui est passé au paramètre -l" 402msgstr "ce qui est passé au paramètre -l"
392 403
393#: plugins/check_dig.c:349 404#: plugins/check_dig.c:358
394msgid "Pass STRING as argument(s) to dig" 405msgid "Pass STRING as argument(s) to dig"
395msgstr "" 406msgstr ""
396 407
397#: plugins/check_disk.c:216 408#: plugins/check_disk.c:241
398#, c-format 409#, c-format
399msgid "DISK %s: %s not found\n" 410msgid "DISK %s: %s not found\n"
400msgstr "DISK %s: %s non trouvé\n" 411msgstr "DISK %s: %s non trouvé\n"
401 412
402#: plugins/check_disk.c:216 plugins/check_disk.c:956 plugins/check_dns.c:241 413#: plugins/check_disk.c:241 plugins/check_disk.c:1035 plugins/check_dns.c:295
403#: plugins/check_dummy.c:74 plugins/check_mysql.c:299 414#: plugins/check_dummy.c:74 plugins/check_mysql.c:313
404#: plugins/check_nagios.c:104 plugins/check_nagios.c:168 415#: plugins/check_nagios.c:104 plugins/check_nagios.c:168
405#: plugins/check_nagios.c:172 plugins/check_pgsql.c:601 416#: plugins/check_nagios.c:172 plugins/check_pgsql.c:575
406#: plugins/check_pgsql.c:618 plugins/check_pgsql.c:627 417#: plugins/check_pgsql.c:592 plugins/check_pgsql.c:601
407#: plugins/check_pgsql.c:642 plugins/check_procs.c:351 418#: plugins/check_pgsql.c:616 plugins/check_procs.c:374
408#, c-format 419#, c-format
409msgid "CRITICAL" 420msgid "CRITICAL"
410msgstr "CRITIQUE" 421msgstr "CRITIQUE"
411 422
412#: plugins/check_disk.c:550 423#: plugins/check_disk.c:645
413#, c-format 424#, c-format
414msgid "unit type %s not known\n" 425msgid "unit type %s not known\n"
415msgstr "unité de type %s inconnue\n" 426msgstr "unité de type %s inconnue\n"
416 427
417#: plugins/check_disk.c:553 428#: plugins/check_disk.c:648
418#, c-format 429#, c-format
419msgid "failed allocating storage for '%s'\n" 430msgid "failed allocating storage for '%s'\n"
420msgstr "Impossible d'allouer de l'espace pour '%s'\n" 431msgstr "Impossible d'allouer de l'espace pour '%s'\n"
421 432
422#: plugins/check_disk.c:577 plugins/check_disk.c:618 plugins/check_disk.c:626 433#: plugins/check_disk.c:676 plugins/check_disk.c:724 plugins/check_disk.c:732
423#: plugins/check_disk.c:633 plugins/check_disk.c:637 plugins/check_disk.c:677 434#: plugins/check_disk.c:740 plugins/check_disk.c:744 plugins/check_disk.c:789
424#: plugins/check_disk.c:683 plugins/check_disk.c:702 plugins/check_dummy.c:77 435#: plugins/check_disk.c:795 plugins/check_disk.c:818 plugins/check_dummy.c:77
425#: plugins/check_dummy.c:80 plugins/check_pgsql.c:643 436#: plugins/check_dummy.c:80 plugins/check_pgsql.c:617 plugins/check_procs.c:547
426#: plugins/check_procs.c:506
427#, c-format 437#, c-format
428msgid "UNKNOWN" 438msgid "UNKNOWN"
429msgstr "INCONNU" 439msgstr "INCONNU"
430 440
431#: plugins/check_disk.c:577 441#: plugins/check_disk.c:676
432msgid "Must set a threshold value before using -p\n" 442msgid "Must set a threshold value before using -p\n"
433msgstr "" 443msgstr ""
434 444
435#: plugins/check_disk.c:618 445#: plugins/check_disk.c:724
436msgid "Must set -E before selecting paths\n" 446msgid "Must set -E before selecting paths\n"
437msgstr "" 447msgstr ""
438 448
439#: plugins/check_disk.c:626 449#: plugins/check_disk.c:732
440msgid "Must set group value before selecting paths\n" 450msgid "Must set group value before selecting paths\n"
441msgstr "" 451msgstr ""
442 452
443#: plugins/check_disk.c:633 453#: plugins/check_disk.c:740
444msgid "" 454msgid ""
445"Paths need to be selected before using -i/-I. Use -A to select all paths " 455"Paths need to be selected before using -i/-I. Use -A to select all paths "
446"explicitly" 456"explicitly"
447msgstr "" 457msgstr ""
448 458
449#: plugins/check_disk.c:637 plugins/check_disk.c:683 plugins/check_procs.c:506 459#: plugins/check_disk.c:744 plugins/check_disk.c:795 plugins/check_procs.c:547
450msgid "Could not compile regular expression" 460msgid "Could not compile regular expression"
451msgstr "Impossible de compiler l'expression rationnelle" 461msgstr "Impossible de compiler l'expression rationnelle"
452 462
453#: plugins/check_disk.c:677 463#: plugins/check_disk.c:789
454msgid "Must set a threshold value before using -r/-R\n" 464msgid "Must set a threshold value before using -r/-R\n"
455msgstr "" 465msgstr ""
456 466
457#: plugins/check_disk.c:703 467#: plugins/check_disk.c:819
458msgid "Regular expression did not match any path or disk" 468msgid "Regular expression did not match any path or disk"
459msgstr "" 469msgstr ""
460 470
461#: plugins/check_disk.c:749 471#: plugins/check_disk.c:865
462msgid "Unknown argument" 472msgid "Unknown argument"
463msgstr "Argument inconnu" 473msgstr "Argument inconnu"
464 474
465#: plugins/check_disk.c:783 475#: plugins/check_disk.c:899
466#, c-format 476#, c-format
467msgid " for %s\n" 477msgid " for %s\n"
468msgstr " pour %s\n" 478msgstr " pour %s\n"
469 479
470#: plugins/check_disk.c:857 480#: plugins/check_disk.c:928
471msgid "" 481msgid ""
472"This plugin checks the amount of used disk space on a mounted file system" 482"This plugin checks the amount of used disk space on a mounted file system"
473msgstr "Ce plugin vérifie la place utilisé sur un système de fichier monté" 483msgstr "Ce plugin vérifie la place utilisé sur un système de fichier monté"
474 484
475#: plugins/check_disk.c:858 485#: plugins/check_disk.c:929
476msgid "" 486msgid ""
477"and generates an alert if free space is less than one of the threshold values" 487"and generates an alert if free space is less than one of the threshold values"
478msgstr "" 488msgstr ""
479"et génère une alerte si la place disponible est plus petite qu'un des seuils " 489"et génère une alerte si la place disponible est plus petite qu'un des seuils "
480"fourni" 490"fourni"
481 491
482#: plugins/check_disk.c:868 492#: plugins/check_disk.c:939
483msgid "Exit with WARNING status if less than INTEGER units of disk are free" 493msgid "Exit with WARNING status if less than INTEGER units of disk are free"
484msgstr "" 494msgstr ""
485"Sortir avec un résultat AVERTISSEMENT si moins de X unités de disques sont " 495"Sortir avec un résultat AVERTISSEMENT si moins de X unités de disques sont "
486"libres" 496"libres"
487 497
488#: plugins/check_disk.c:870 498#: plugins/check_disk.c:941
489msgid "Exit with WARNING status if less than PERCENT of disk space is free" 499msgid "Exit with WARNING status if less than PERCENT of disk space is free"
490msgstr "" 500msgstr ""
491"Sortir avec un résultat AVERTISSEMENT si moins de X pour-cent du disque est " 501"Sortir avec un résultat AVERTISSEMENT si moins de X pour-cent du disque est "
492"libre" 502"libre"
493 503
494#: plugins/check_disk.c:872 504#: plugins/check_disk.c:943
495msgid "Exit with CRITICAL status if less than INTEGER units of disk are free" 505msgid "Exit with CRITICAL status if less than INTEGER units of disk are free"
496msgstr "" 506msgstr ""
497"Sortir avec un résultat CRITIQUE si moins de X unités du disque sont libres" 507"Sortir avec un résultat CRITIQUE si moins de X unités du disque sont libres"
498 508
499#: plugins/check_disk.c:874 509#: plugins/check_disk.c:945
500#, fuzzy 510#, fuzzy
501msgid "Exit with CRITICAL status if less than PERCENT of disk space is free" 511msgid "Exit with CRITICAL status if less than PERCENT of disk space is free"
502msgstr "" 512msgstr ""
503"Sortir avec un résultat CRITIQUE si moins de X pour-cent du disque est libre" 513"Sortir avec un résultat CRITIQUE si moins de X pour-cent du disque est libre"
504 514
505#: plugins/check_disk.c:876 515#: plugins/check_disk.c:947
506msgid "Exit with WARNING status if less than PERCENT of inode space is free" 516msgid "Exit with WARNING status if less than PERCENT of inode space is free"
507msgstr "" 517msgstr ""
508"Sortir avec un résultat AVERTISSEMENT si moins de X pour-cent des inodes " 518"Sortir avec un résultat AVERTISSEMENT si moins de X pour-cent des inodes "
509"sont libres" 519"sont libres"
510 520
511#: plugins/check_disk.c:878 521#: plugins/check_disk.c:949
512msgid "Exit with CRITICAL status if less than PERCENT of inode space is free" 522msgid "Exit with CRITICAL status if less than PERCENT of inode space is free"
513msgstr "" 523msgstr ""
514"Sortir avec un résultat CRITIQUE si moins de X pour-cent des inodes sont " 524"Sortir avec un résultat CRITIQUE si moins de X pour-cent des inodes sont "
515"libres" 525"libres"
516 526
517#: plugins/check_disk.c:880 527#: plugins/check_disk.c:951
518msgid "Path or partition (may be repeated)" 528msgid ""
519msgstr "Répertoire ou partition (peut être utilisé plusieurs fois)" 529"Mount point or block device as emitted by the mount(8) command (may be "
530"repeated)"
531msgstr ""
520 532
521#: plugins/check_disk.c:882 533#: plugins/check_disk.c:953
522msgid "Ignore device (only works if -p unspecified)" 534msgid "Ignore device (only works if -p unspecified)"
523msgstr "Ignorer le périphérique (marche seulement lorsque -p est utilisé)" 535msgstr "Ignorer le périphérique (marche seulement lorsque -p est utilisé)"
524 536
525#: plugins/check_disk.c:884 537#: plugins/check_disk.c:955
526msgid "Clear thresholds" 538msgid "Clear thresholds"
527msgstr "Effacer les seuils" 539msgstr "Effacer les seuils"
528 540
529#: plugins/check_disk.c:886 541#: plugins/check_disk.c:957
530msgid "For paths or partitions specified with -p, only check for exact paths" 542msgid "For paths or partitions specified with -p, only check for exact paths"
531msgstr "" 543msgstr ""
532 544
533#: plugins/check_disk.c:888 545#: plugins/check_disk.c:959
534msgid "Display only devices/mountpoints with errors" 546msgid "Display only devices/mountpoints with errors"
535msgstr "Afficher seulement les périphériques/point de montage avec des erreurs" 547msgstr "Afficher seulement les périphériques/point de montage avec des erreurs"
536 548
537#: plugins/check_disk.c:890 549#: plugins/check_disk.c:961
538msgid "Don't account root-reserved blocks into freespace in perfdata" 550msgid "Don't account root-reserved blocks into freespace in perfdata"
539msgstr "" 551msgstr ""
540 552
541#: plugins/check_disk.c:892 553#: plugins/check_disk.c:963
554msgid "Display inode usage in perfdata"
555msgstr ""
556
557#: plugins/check_disk.c:965
542msgid "" 558msgid ""
543"Group paths. Thresholds apply to (free-)space of all partitions together" 559"Group paths. Thresholds apply to (free-)space of all partitions together"
544msgstr "" 560msgstr ""
545 561
546#: plugins/check_disk.c:894 562#: plugins/check_disk.c:967
547msgid "Same as '--units kB'" 563msgid "Same as '--units kB'"
548msgstr "Pareil à '--units kB'" 564msgstr "Pareil à '--units kB'"
549 565
550#: plugins/check_disk.c:896 566#: plugins/check_disk.c:969
551msgid "Only check local filesystems" 567msgid "Only check local filesystems"
552msgstr "Vérifier seulement les systèmes de fichiers locaux" 568msgstr "Vérifier seulement les systèmes de fichiers locaux"
553 569
554#: plugins/check_disk.c:898 570#: plugins/check_disk.c:971
555msgid "" 571msgid ""
556"Only check local filesystems against thresholds. Yet call stat on remote " 572"Only check local filesystems against thresholds. Yet call stat on remote "
557"filesystems" 573"filesystems"
558msgstr "" 574msgstr ""
559 575
560#: plugins/check_disk.c:899 576#: plugins/check_disk.c:972
561msgid "to test if they are accessible (e.g. to detect Stale NFS Handles)" 577msgid "to test if they are accessible (e.g. to detect Stale NFS Handles)"
562msgstr "" 578msgstr ""
563 579
564#: plugins/check_disk.c:901 580#: plugins/check_disk.c:974
565msgid "Display the mountpoint instead of the partition" 581#, fuzzy
582msgid "Display the (block) device instead of the mount point"
566msgstr "Afficher le point de montage au lieu de la partition" 583msgstr "Afficher le point de montage au lieu de la partition"
567 584
568#: plugins/check_disk.c:903 585#: plugins/check_disk.c:976
569msgid "Same as '--units MB'" 586msgid "Same as '--units MB'"
570msgstr "Pareil à '--units MB'" 587msgstr "Pareil à '--units MB'"
571 588
572#: plugins/check_disk.c:905 589#: plugins/check_disk.c:978
573msgid "Explicitly select all paths. This is equivalent to -R '.*'" 590msgid "Explicitly select all paths. This is equivalent to -R '.*'"
574msgstr "" 591msgstr ""
575 592
576#: plugins/check_disk.c:907 593#: plugins/check_disk.c:980
577msgid "" 594msgid ""
578"Case insensitive regular expression for path/partition (may be repeated)" 595"Case insensitive regular expression for path/partition (may be repeated)"
579msgstr "" 596msgstr ""
580"Expression rationnelle indépendante de la case pour un répertoire ou une " 597"Expression rationnelle indépendante de la case pour un répertoire ou une "
581"partition (peut être utilisé plusieurs fois)" 598"partition (peut être utilisé plusieurs fois)"
582 599
583#: plugins/check_disk.c:909 600#: plugins/check_disk.c:982
584msgid "Regular expression for path or partition (may be repeated)" 601msgid "Regular expression for path or partition (may be repeated)"
585msgstr "" 602msgstr ""
586"Expression rationnelle pour un répertoire ou une partition (peut être " 603"Expression rationnelle pour un répertoire ou une partition (peut être "
587"utilisé plusieurs fois)" 604"utilisé plusieurs fois)"
588 605
589#: plugins/check_disk.c:911 606#: plugins/check_disk.c:984
590msgid "" 607msgid ""
591"Regular expression to ignore selected path/partition (case insensitive) (may " 608"Regular expression to ignore selected path/partition (case insensitive) (may "
592"be repeated)" 609"be repeated)"
@@ -594,200 +611,225 @@ msgstr ""
594"Expression rationnelle pour ignorer un répertoire ou une partition (peut " 611"Expression rationnelle pour ignorer un répertoire ou une partition (peut "
595"être utilisé plusieurs fois)" 612"être utilisé plusieurs fois)"
596 613
597#: plugins/check_disk.c:913 614#: plugins/check_disk.c:986
598msgid "" 615msgid ""
599"Regular expression to ignore selected path or partition (may be repeated)" 616"Regular expression to ignore selected path or partition (may be repeated)"
600msgstr "" 617msgstr ""
601"Expression rationnelle pour ignorer un répertoire ou une partition (peut " 618"Expression rationnelle pour ignorer un répertoire ou une partition (peut "
602"être utilisé plusieurs fois)" 619"être utilisé plusieurs fois)"
603 620
604#: plugins/check_disk.c:916 621#: plugins/check_disk.c:988
622msgid ""
623"Return OK if no filesystem matches, filesystem does not exist or is "
624"inaccessible."
625msgstr ""
626
627#: plugins/check_disk.c:989
628msgid "(Provide this option before -p / -r / --ereg-path if used)"
629msgstr ""
630
631#: plugins/check_disk.c:992
605msgid "Choose bytes, kB, MB, GB, TB (default: MB)" 632msgid "Choose bytes, kB, MB, GB, TB (default: MB)"
606msgstr "Choisissez octets, kb, MB, GB, TB (par défaut: MB)" 633msgstr "Choisissez octets, kb, MB, GB, TB (par défaut: MB)"
607 634
608#: plugins/check_disk.c:919 635#: plugins/check_disk.c:995
609msgid "Ignore all filesystems of indicated type (may be repeated)" 636msgid "Ignore all filesystems of indicated type (may be repeated)"
610msgstr "" 637msgstr ""
611"Ignorer tout les systèmes de fichiers qui correspondent au type indiqué " 638"Ignorer tout les systèmes de fichiers qui correspondent au type indiqué "
612"(peut être utilisé plusieurs fois)" 639"(peut être utilisé plusieurs fois)"
613 640
614#: plugins/check_disk.c:921 641#: plugins/check_disk.c:997
615#, fuzzy 642#, fuzzy
616msgid "Check only filesystems of indicated type (may be repeated)" 643msgid "Check only filesystems of indicated type (may be repeated)"
617msgstr "" 644msgstr ""
618"Ignorer tout les systèmes de fichiers qui correspondent au type indiqué " 645"Ignorer tout les systèmes de fichiers qui correspondent au type indiqué "
619"(peut être utilisé plusieurs fois)" 646"(peut être utilisé plusieurs fois)"
620 647
621#: plugins/check_disk.c:926 648#: plugins/check_disk.c:1002
622msgid "Checks /tmp and /var at 10% and 5%, and / at 100MB and 50MB" 649msgid "Checks /tmp and /var at 10% and 5%, and / at 100MB and 50MB"
623msgstr "Vérifie /tmp à 10% et /var à 5% et / à 100MB et 50MB" 650msgstr "Vérifie /tmp à 10% et /var à 5% et / à 100MB et 50MB"
624 651
625#: plugins/check_disk.c:928 652#: plugins/check_disk.c:1004
626msgid "" 653msgid ""
627"Checks all filesystems not matching -r at 100M and 50M. The fs matching the -" 654"Checks all filesystems not matching -r at 100M and 50M. The fs matching the -"
628"r regex" 655"r regex"
629msgstr "" 656msgstr ""
630 657
631#: plugins/check_disk.c:929 658#: plugins/check_disk.c:1005
632msgid "" 659msgid ""
633"are grouped which means the freespace thresholds are applied to all disks " 660"are grouped which means the freespace thresholds are applied to all disks "
634"together" 661"together"
635msgstr "" 662msgstr ""
636 663
637#: plugins/check_disk.c:931 664#: plugins/check_disk.c:1007
638msgid "" 665msgid ""
639"Checks /foo for 1000M/500M and /bar for 5/3%. All remaining volumes use " 666"Checks /foo for 1000M/500M and /bar for 5/3%. All remaining volumes use "
640"100M/50M" 667"100M/50M"
641msgstr "" 668msgstr ""
642 669
643#: plugins/check_disk.c:957 670#: plugins/check_disk.c:1036
644#, c-format 671#, c-format
645msgid "%s %s: %s\n" 672msgid "%s %s: %s\n"
646msgstr "" 673msgstr ""
647 674
648#: plugins/check_disk.c:957 675#: plugins/check_disk.c:1036
649msgid "is not accessible" 676msgid "is not accessible"
650msgstr "" 677msgstr ""
651 678
652#: plugins/check_dns.c:116 679#: plugins/check_dns.c:120
653msgid "nslookup returned an error status" 680msgid "nslookup returned an error status"
654msgstr "nslookup à retourné un code d'erreur" 681msgstr "nslookup à retourné un code d'erreur"
655 682
656#: plugins/check_dns.c:134 683#: plugins/check_dns.c:138
657msgid "Warning plugin error" 684msgid "Warning plugin error"
658msgstr "Alerte erreur de plugin" 685msgstr "Alerte erreur de plugin"
659 686
660#: plugins/check_dns.c:154 687#: plugins/check_dns.c:156
688#, fuzzy, c-format
689msgid "DNS CRITICAL - '%s' returned empty server string\n"
690msgstr "DNS CRITIQUE - '%s' à retourné un nom d'hôte vide\n"
691
692#: plugins/check_dns.c:161
693#, fuzzy, c-format
694msgid "DNS CRITICAL - No response from DNS %s\n"
695msgstr "Pas de réponse du DNS %s\n"
696
697#: plugins/check_dns.c:180
661#, c-format 698#, c-format
662msgid "DNS CRITICAL - '%s' returned empty host name string\n" 699msgid "DNS CRITICAL - '%s' returned empty host name string\n"
663msgstr "DNS CRITIQUE - '%s' à retourné un nom d'hôte vide\n" 700msgstr "DNS CRITIQUE - '%s' à retourné un nom d'hôte vide\n"
664 701
665#: plugins/check_dns.c:160 702#: plugins/check_dns.c:186
666msgid "Non-authoritative answer:" 703msgid "Non-authoritative answer:"
667msgstr "Réponse non autoritative:" 704msgstr "Réponse non autoritative:"
668 705
669#: plugins/check_dns.c:201 706#: plugins/check_dns.c:215
707#, fuzzy, c-format
708msgid "Domain '%s' was not found by the server\n"
709msgstr "Le domaine %s n'a pas été trouvé par le serveur\n"
710
711#: plugins/check_dns.c:234
670#, c-format 712#, c-format
671msgid "DNS CRITICAL - '%s' msg parsing exited with no address\n" 713msgid "DNS CRITICAL - '%s' msg parsing exited with no address\n"
672msgstr "DNS CRITIQUE - '%s' n'a pas retourné d'adresse\n" 714msgstr "DNS CRITIQUE - '%s' n'a pas retourné d'adresse\n"
673 715
674#: plugins/check_dns.c:216 716#: plugins/check_dns.c:265
675#, c-format 717#, c-format
676msgid "expected '%s' but got '%s'" 718msgid "expected '%s' but got '%s'"
677msgstr "j'attendais '%s' mais j'ai reçu '%s'" 719msgstr "j'attendais '%s' mais j'ai reçu '%s'"
678 720
679#: plugins/check_dns.c:223 721#: plugins/check_dns.c:272
722#, fuzzy, c-format
723msgid "Domain '%s' was found by the server: '%s'\n"
724msgstr "Le domaine %s n'a pas été trouvé par le serveur\n"
725
726#: plugins/check_dns.c:282
680#, c-format 727#, c-format
681msgid "server %s is not authoritative for %s" 728msgid "server %s is not authoritative for %s"
682msgstr "serveur %s n'est pas autoritaire pour %s" 729msgstr "serveur %s n'est pas autoritaire pour %s"
683 730
684#: plugins/check_dns.c:237 plugins/check_dummy.c:68 plugins/check_nagios.c:182 731#: plugins/check_dns.c:291 plugins/check_dummy.c:68 plugins/check_nagios.c:182
685#: plugins/check_pgsql.c:638 plugins/check_procs.c:344 732#: plugins/check_pgsql.c:612 plugins/check_procs.c:367
686#, c-format 733#, c-format
687msgid "OK" 734msgid "OK"
688msgstr "OK" 735msgstr "OK"
689 736
690#: plugins/check_dns.c:239 plugins/check_dummy.c:71 plugins/check_mysql.c:296 737#: plugins/check_dns.c:293 plugins/check_dummy.c:71 plugins/check_mysql.c:310
691#: plugins/check_nagios.c:182 plugins/check_pgsql.c:607 738#: plugins/check_nagios.c:182 plugins/check_pgsql.c:581
692#: plugins/check_pgsql.c:612 plugins/check_pgsql.c:640 739#: plugins/check_pgsql.c:586 plugins/check_pgsql.c:614
693#: plugins/check_procs.c:346 740#: plugins/check_procs.c:369
694#, c-format 741#, c-format
695msgid "WARNING" 742msgid "WARNING"
696msgstr "AVERTISSEMENT" 743msgstr "AVERTISSEMENT"
697 744
698#: plugins/check_dns.c:243 745#: plugins/check_dns.c:297
699#, c-format 746#, c-format
700msgid "%.3f second response time" 747msgid "%.3f second response time"
701msgid_plural "%.3f seconds response time" 748msgid_plural "%.3f seconds response time"
702msgstr[0] "%.3f secondes de temps de réponse " 749msgstr[0] "%.3f secondes de temps de réponse "
703msgstr[1] "%.3f secondes de temps de réponse " 750msgstr[1] "%.3f secondes de temps de réponse "
704 751
705#: plugins/check_dns.c:244 752#: plugins/check_dns.c:298
706#, c-format 753#, c-format
707msgid ". %s returns %s" 754msgid ". %s returns %s"
708msgstr ". %s renvoie %s" 755msgstr ". %s renvoie %s"
709 756
710#: plugins/check_dns.c:248 757#: plugins/check_dns.c:318
711#, c-format 758#, c-format
712msgid "DNS WARNING - %s\n" 759msgid "DNS WARNING - %s\n"
713msgstr "DNS AVERTISSEMENT - %s\n" 760msgstr "DNS AVERTISSEMENT - %s\n"
714 761
715#: plugins/check_dns.c:249 plugins/check_dns.c:252 plugins/check_dns.c:255 762#: plugins/check_dns.c:319 plugins/check_dns.c:322 plugins/check_dns.c:325
716msgid " Probably a non-existent host/domain" 763msgid " Probably a non-existent host/domain"
717msgstr " Probablement un hôte/domaine inexistant" 764msgstr " Probablement un hôte/domaine inexistant"
718 765
719#: plugins/check_dns.c:251 766#: plugins/check_dns.c:321
720#, c-format 767#, c-format
721msgid "DNS CRITICAL - %s\n" 768msgid "DNS CRITICAL - %s\n"
722msgstr "DNS CRITIQUE - %s\n" 769msgstr "DNS CRITIQUE - %s\n"
723 770
724#: plugins/check_dns.c:254 771#: plugins/check_dns.c:324
725#, c-format 772#, c-format
726msgid "DNS UNKNOWN - %s\n" 773msgid "DNS UNKNOWN - %s\n"
727msgstr "DNS INCONNU - %s\n" 774msgstr "DNS INCONNU - %s\n"
728 775
729#: plugins/check_dns.c:267 776#: plugins/check_dns.c:368
730msgid "Note: nslookup is deprecated and may be removed from future releases." 777msgid "Note: nslookup is deprecated and may be removed from future releases."
731msgstr "" 778msgstr ""
732"Note: nslookup est obsolète et pourra être retiré dans les prochaines " 779"Note: nslookup est obsolète et pourra être retiré dans les prochaines "
733"versions." 780"versions."
734 781
735#: plugins/check_dns.c:268 782#: plugins/check_dns.c:369
736msgid "Consider using the `dig' or `host' programs instead. Run nslookup with" 783msgid "Consider using the `dig' or `host' programs instead. Run nslookup with"
737msgstr "" 784msgstr ""
738"Veuillez utiliser le programme 'dig' ou 'host' à la place. Faire fonctionner " 785"Veuillez utiliser le programme 'dig' ou 'host' à la place. Faire fonctionner "
739"nslookup avec" 786"nslookup avec"
740 787
741#: plugins/check_dns.c:269 788#: plugins/check_dns.c:370
742msgid "the `-sil[ent]' option to prevent this message from appearing." 789msgid "the `-sil[ent]' option to prevent this message from appearing."
743msgstr "L'option '-sil[ent]' empêche l'apparition de ce message." 790msgstr "L'option '-sil[ent]' empêche l'apparition de ce message."
744 791
745#: plugins/check_dns.c:274 792#: plugins/check_dns.c:375 plugins/check_dns.c:377
746#, c-format 793#, c-format
747msgid "No response from DNS %s\n" 794msgid "No response from DNS %s\n"
748msgstr "Pas de réponse du DNS %s\n" 795msgstr "Pas de réponse du DNS %s\n"
749 796
750#: plugins/check_dns.c:278 797#: plugins/check_dns.c:381
751#, c-format 798#, c-format
752msgid "DNS %s has no records\n" 799msgid "DNS %s has no records\n"
753msgstr "Le DNS %s n'a pas d'enregistrements\n" 800msgstr "Le DNS %s n'a pas d'enregistrements\n"
754 801
755#: plugins/check_dns.c:286 802#: plugins/check_dns.c:389
756#, c-format 803#, c-format
757msgid "Connection to DNS %s was refused\n" 804msgid "Connection to DNS %s was refused\n"
758msgstr "La connexion au DNS %s à été refusée\n" 805msgstr "La connexion au DNS %s à été refusée\n"
759 806
760#: plugins/check_dns.c:290 807#: plugins/check_dns.c:393
761#, c-format 808#, c-format
762msgid "Query was refused by DNS server at %s\n" 809msgid "Query was refused by DNS server at %s\n"
763msgstr "La requête à été refusée par le serveur DNS %s\n" 810msgstr "La requête à été refusée par le serveur DNS %s\n"
764 811
765#: plugins/check_dns.c:294 812#: plugins/check_dns.c:397
766#, c-format 813#, c-format
767msgid "No information returned by DNS server at %s\n" 814msgid "No information returned by DNS server at %s\n"
768msgstr "Pas d'information renvoyée par le serveur DNS %s\n" 815msgstr "Pas d'information renvoyée par le serveur DNS %s\n"
769 816
770#: plugins/check_dns.c:300 817#: plugins/check_dns.c:401
771#, c-format
772msgid "Domain %s was not found by the server\n"
773msgstr "Le domaine %s n'a pas été trouvé par le serveur\n"
774
775#: plugins/check_dns.c:304
776msgid "Network is unreachable\n" 818msgid "Network is unreachable\n"
777msgstr "Le réseau est inaccessible\n" 819msgstr "Le réseau est inaccessible\n"
778 820
779#: plugins/check_dns.c:308 821#: plugins/check_dns.c:405
780#, c-format 822#, c-format
781msgid "DNS failure for %s\n" 823msgid "DNS failure for %s\n"
782msgstr "DNS à échoué pour %s\n" 824msgstr "DNS à échoué pour %s\n"
783 825
784#: plugins/check_dns.c:372 plugins/check_dns.c:380 plugins/check_dns.c:387 826#: plugins/check_dns.c:471 plugins/check_dns.c:479 plugins/check_dns.c:486
785#: plugins/check_dns.c:392 plugins/check_dns.c:414 plugins/check_dns.c:422 827#: plugins/check_dns.c:491 plugins/check_dns.c:533 plugins/check_dns.c:541
786#: plugins/check_game.c:211 plugins/check_game.c:219 828#: plugins/check_game.c:211 plugins/check_game.c:219
787msgid "Input buffer overflow\n" 829msgid "Input buffer overflow\n"
788msgstr "Le tampon d'entrée a débordé\n" 830msgstr "Le tampon d'entrée a débordé\n"
789 831
790#: plugins/check_dns.c:450 832#: plugins/check_dns.c:576
791msgid "" 833msgid ""
792"This plugin uses the nslookup program to obtain the IP address for the given " 834"This plugin uses the nslookup program to obtain the IP address for the given "
793"host/domain query." 835"host/domain query."
@@ -795,11 +837,11 @@ msgstr ""
795"Ce plugin utilise le programme nslookup pour obtenir l'adresse IP de l'hôte/" 837"Ce plugin utilise le programme nslookup pour obtenir l'adresse IP de l'hôte/"
796"domaine à interroger." 838"domaine à interroger."
797 839
798#: plugins/check_dns.c:451 840#: plugins/check_dns.c:577
799msgid "An optional DNS server to use may be specified." 841msgid "An optional DNS server to use may be specified."
800msgstr "Un serveur DNS à utiliser peut être indiqué." 842msgstr "Un serveur DNS à utiliser peut être indiqué."
801 843
802#: plugins/check_dns.c:452 844#: plugins/check_dns.c:578
803msgid "" 845msgid ""
804"If no DNS server is specified, the default server(s) specified in /etc/" 846"If no DNS server is specified, the default server(s) specified in /etc/"
805"resolv.conf will be used." 847"resolv.conf will be used."
@@ -807,54 +849,66 @@ msgstr ""
807"Si aucun serveur DNS n'est spécifié, les serveurs spécifiés dans /etc/resolv." 849"Si aucun serveur DNS n'est spécifié, les serveurs spécifiés dans /etc/resolv."
808"conf seront utilisé." 850"conf seront utilisé."
809 851
810#: plugins/check_dns.c:462 852#: plugins/check_dns.c:588
811msgid "The name or address you want to query" 853msgid "The name or address you want to query"
812msgstr "Le nom ou l'adresse que vous voulez interroger" 854msgstr "Le nom ou l'adresse que vous voulez interroger"
813 855
814#: plugins/check_dns.c:464 856#: plugins/check_dns.c:590
815msgid "Optional DNS server you want to use for the lookup" 857msgid "Optional DNS server you want to use for the lookup"
816msgstr "Serveur DNS que vous voulez utiliser pour la recherche" 858msgstr "Serveur DNS que vous voulez utiliser pour la recherche"
817 859
818#: plugins/check_dns.c:466 860#: plugins/check_dns.c:592
861#, fuzzy
819msgid "" 862msgid ""
820"Optional IP-ADDRESS you expect the DNS server to return. HOST must end with" 863"Optional IP-ADDRESS/CIDR you expect the DNS server to return. HOST must end"
821msgstr "" 864msgstr ""
822"Adresse IP que le serveur DNS doit retourner. Les hôtes doivent se terminer " 865"Adresse IP que le serveur DNS doit retourner. Les hôtes doivent se terminer "
823 866
824#: plugins/check_dns.c:467 867#: plugins/check_dns.c:593
868#, fuzzy
825msgid "" 869msgid ""
826"a dot (.). This option can be repeated multiple times (Returns OK if any" 870"with a dot (.). This option can be repeated multiple times (Returns OK if any"
827msgstr "avec un point (.). Cette option peut être répétée (Retourne OK si une" 871msgstr "avec un point (.). Cette option peut être répétée (Retourne OK si une"
828 872
829#: plugins/check_dns.c:468 873#: plugins/check_dns.c:594
830msgid "" 874msgid "value matches)."
831"value match). If multiple addresses are returned at once, you have to match"
832msgstr "" 875msgstr ""
833"valeur correspond). Si plusieurs adresses sont retournées en même temps,"
834 876
835#: plugins/check_dns.c:469 877#: plugins/check_dns.c:596
836msgid "" 878msgid ""
837"the whole string of addresses separated with commas (sorted alphabetically)." 879"Expect the DNS server to return NXDOMAIN (i.e. the domain was not found)"
880msgstr ""
881
882#: plugins/check_dns.c:597
883msgid "Cannot be used together with -a"
838msgstr "" 884msgstr ""
839"vous devrez toutes les inscrire séparées pas des virgules (en ordre "
840"alphabétique)"
841 885
842#: plugins/check_dns.c:471 886#: plugins/check_dns.c:599
843msgid "Optionally expect the DNS server to be authoritative for the lookup" 887msgid "Optionally expect the DNS server to be authoritative for the lookup"
844msgstr "Serveur DNS qui doit normalement être autoritaire pour la recherche" 888msgstr "Serveur DNS qui doit normalement être autoritaire pour la recherche"
845 889
846#: plugins/check_dns.c:473 890#: plugins/check_dns.c:601
847msgid "Return warning if elapsed time exceeds value. Default off" 891msgid "Return warning if elapsed time exceeds value. Default off"
848msgstr "" 892msgstr ""
849"Renvoie une alerte si le temps écoulé dépasse la valeur indiquée. Désactivé " 893"Renvoie une alerte si le temps écoulé dépasse la valeur indiquée. Désactivé "
850"par défaut" 894"par défaut"
851 895
852#: plugins/check_dns.c:475 896#: plugins/check_dns.c:603
853msgid "Return critical if elapsed time exceeds value. Default off" 897msgid "Return critical if elapsed time exceeds value. Default off"
854msgstr "" 898msgstr ""
855"Renvoie critique si le temps utilisé dépasse la valeur indiquée. Désactivé " 899"Renvoie critique si le temps utilisé dépasse la valeur indiquée. Désactivé "
856"par défaut" 900"par défaut"
857 901
902#: plugins/check_dns.c:605
903msgid ""
904"Return critical if the list of expected addresses does not match all "
905"addresses"
906msgstr ""
907
908#: plugins/check_dns.c:606
909msgid "returned. Default off"
910msgstr ""
911
858#: plugins/check_dummy.c:62 912#: plugins/check_dummy.c:62
859msgid "Arguments to check_dummy must be an integer" 913msgid "Arguments to check_dummy must be an integer"
860msgstr "Les arguments pour check_dummy doivent être des entiers" 914msgstr "Les arguments pour check_dummy doivent être des entiers"
@@ -874,126 +928,131 @@ msgstr ""
874msgid "of the <state> argument with optional text" 928msgid "of the <state> argument with optional text"
875msgstr "du paramètre <state> avec un texte optionnel" 929msgstr "du paramètre <state> avec un texte optionnel"
876 930
877#: plugins/check_fping.c:125 plugins/check_hpjd.c:128 plugins/check_ping.c:438 931#: plugins/check_fping.c:127 plugins/check_hpjd.c:134 plugins/check_ping.c:444
878#: plugins/check_swap.c:175 plugins/check_users.c:94 plugins/urlize.c:110 932#: plugins/check_swap.c:193 plugins/check_users.c:130 plugins/urlize.c:109
879#, c-format 933#, c-format
880msgid "Could not open pipe: %s\n" 934msgid "Could not open pipe: %s\n"
881msgstr "Impossible d'ouvrir le pipe: %s\n" 935msgstr "Impossible d'ouvrir le pipe: %s\n"
882 936
883#: plugins/check_fping.c:131 plugins/check_hpjd.c:134 plugins/check_load.c:153 937#: plugins/check_fping.c:133 plugins/check_hpjd.c:140 plugins/check_load.c:159
884#: plugins/check_swap.c:181 plugins/check_users.c:100 plugins/urlize.c:116 938#: plugins/check_swap.c:199 plugins/check_users.c:136 plugins/urlize.c:115
885#, c-format 939#, c-format
886msgid "Could not open stderr for %s\n" 940msgid "Could not open stderr for %s\n"
887msgstr "Impossible d'ouvrir la sortie d'erreur standard pour %s\n" 941msgstr "Impossible d'ouvrir la sortie d'erreur standard pour %s\n"
888 942
889#: plugins/check_fping.c:157 943#: plugins/check_fping.c:161
890#, fuzzy 944#, fuzzy
891msgid "FPING UNKNOWN - IP address not found\n" 945msgid "FPING UNKNOWN - IP address not found\n"
892msgstr "PING INCONNU - Hôte non trouvé (%s)\n" 946msgstr "PING INCONNU - Hôte non trouvé (%s)\n"
893 947
894#: plugins/check_fping.c:160 948#: plugins/check_fping.c:164
895msgid "FPING UNKNOWN - invalid commandline argument\n" 949msgid "FPING UNKNOWN - invalid commandline argument\n"
896msgstr "" 950msgstr ""
897 951
898#: plugins/check_fping.c:163 952#: plugins/check_fping.c:167
899#, fuzzy 953#, fuzzy
900msgid "FPING UNKNOWN - failed system call\n" 954msgid "FPING UNKNOWN - failed system call\n"
901msgstr "PING INCONNU - Hôte non trouvé (%s)\n" 955msgstr "PING INCONNU - Hôte non trouvé (%s)\n"
902 956
903#: plugins/check_fping.c:187 957#: plugins/check_fping.c:194
958#, fuzzy, c-format
959msgid "FPING %s - %s (rta=%f ms)|%s\n"
960msgstr "FPING %s - %s (perte=%.0f%% )|%s\n"
961
962#: plugins/check_fping.c:202
904#, c-format 963#, c-format
905msgid "FPING UNKNOWN - %s not found\n" 964msgid "FPING UNKNOWN - %s not found\n"
906msgstr "PING INCONNU - Hôte non trouvé (%s)\n" 965msgstr "PING INCONNU - Hôte non trouvé (%s)\n"
907 966
908#: plugins/check_fping.c:191 967#: plugins/check_fping.c:206
909#, c-format 968#, c-format
910msgid "FPING CRITICAL - %s is unreachable\n" 969msgid "FPING CRITICAL - %s is unreachable\n"
911msgstr "PING CRITIQUE - Hôte inaccessible (%s)\n" 970msgstr "PING CRITIQUE - Hôte inaccessible (%s)\n"
912 971
913#: plugins/check_fping.c:196 972#: plugins/check_fping.c:211
914#, fuzzy, c-format 973#, fuzzy, c-format
915msgid "FPING UNKNOWN - %s parameter error\n" 974msgid "FPING UNKNOWN - %s parameter error\n"
916msgstr "PING INCONNU - Hôte non trouvé (%s)\n" 975msgstr "PING INCONNU - Hôte non trouvé (%s)\n"
917 976
918#: plugins/check_fping.c:200 plugins/check_fping.c:240 977#: plugins/check_fping.c:215 plugins/check_fping.c:255
919#, c-format 978#, c-format
920msgid "FPING CRITICAL - %s is down\n" 979msgid "FPING CRITICAL - %s is down\n"
921msgstr "FPING CRITIQUE - %s est en panne\n" 980msgstr "FPING CRITIQUE - %s est en panne\n"
922 981
923#: plugins/check_fping.c:227 982#: plugins/check_fping.c:242
924#, c-format 983#, c-format
925msgid "FPING %s - %s (loss=%.0f%%, rta=%f ms)|%s %s\n" 984msgid "FPING %s - %s (loss=%.0f%%, rta=%f ms)|%s %s\n"
926msgstr "FPING %s - %s (perte=%.0f%%, rta=%f ms)|%s %s\n" 985msgstr "FPING %s - %s (perte=%.0f%%, rta=%f ms)|%s %s\n"
927 986
928#: plugins/check_fping.c:253 987#: plugins/check_fping.c:268
929#, c-format 988#, c-format
930msgid "FPING %s - %s (loss=%.0f%% )|%s\n" 989msgid "FPING %s - %s (loss=%.0f%% )|%s\n"
931msgstr "FPING %s - %s (perte=%.0f%% )|%s\n" 990msgstr "FPING %s - %s (perte=%.0f%% )|%s\n"
932 991
933#: plugins/check_fping.c:326 plugins/check_fping.c:332 992#: plugins/check_fping.c:345 plugins/check_fping.c:351 plugins/check_hpjd.c:345
934#: plugins/check_hpjd.c:338 plugins/check_hpjd.c:361 plugins/check_mysql.c:371 993#: plugins/check_hpjd.c:376 plugins/check_mysql.c:389 plugins/check_mysql.c:476
935#: plugins/check_mysql.c:455 plugins/check_ntp.c:709 994#: plugins/check_ntp.c:719 plugins/check_ntp_peer.c:497
936#: plugins/check_ntp_peer.c:497 plugins/check_ntp_time.c:496 995#: plugins/check_ntp_time.c:498 plugins/check_pgsql.c:338
937#: plugins/check_pgsql.c:335 plugins/check_ping.c:295 plugins/check_ping.c:418 996#: plugins/check_ping.c:301 plugins/check_ping.c:424 plugins/check_radius.c:279
938#: plugins/check_radius.c:264 plugins/check_real.c:314 997#: plugins/check_real.c:315 plugins/check_real.c:377 plugins/check_smtp.c:525
939#: plugins/check_real.c:376 plugins/check_smtp.c:499 plugins/check_smtp.c:641 998#: plugins/check_smtp.c:680 plugins/check_ssh.c:162 plugins/check_time.c:240
940#: plugins/check_ssh.c:157 plugins/check_time.c:240 plugins/check_time.c:315 999#: plugins/check_time.c:315 plugins/check_ups.c:507 plugins/check_ups.c:576
941#: plugins/check_ups.c:504 plugins/check_ups.c:573
942msgid "Invalid hostname/address" 1000msgid "Invalid hostname/address"
943msgstr "Adresse/Nom d'hôte invalide" 1001msgstr "Adresse/Nom d'hôte invalide"
944 1002
945#: plugins/check_fping.c:345 plugins/check_ldap.c:353 plugins/check_ping.c:246 1003#: plugins/check_fping.c:364 plugins/check_ldap.c:400 plugins/check_ping.c:252
1004#: plugins-root/check_icmp.c:474
946msgid "IPv6 support not available\n" 1005msgid "IPv6 support not available\n"
947msgstr "Support IPv6 non disponible\n" 1006msgstr "Support IPv6 non disponible\n"
948 1007
949#: plugins/check_fping.c:378 1008#: plugins/check_fping.c:397
950msgid "Packet size must be a positive integer" 1009msgid "Packet size must be a positive integer"
951msgstr "La taille du paquet doit être un entier positif" 1010msgstr "La taille du paquet doit être un entier positif"
952 1011
953#: plugins/check_fping.c:384 1012#: plugins/check_fping.c:403
954msgid "Packet count must be a positive integer" 1013msgid "Packet count must be a positive integer"
955msgstr "Le nombre de paquets doit être un entier positif" 1014msgstr "Le nombre de paquets doit être un entier positif"
956 1015
957#: plugins/check_fping.c:390 1016#: plugins/check_fping.c:409
958msgid "Target timeout must be a positive integer" 1017msgid "Target timeout must be a positive integer"
959msgstr "Le seuil d'avertissement doit être un entier positif" 1018msgstr "Le seuil d'avertissement doit être un entier positif"
960 1019
961#: plugins/check_fping.c:396 1020#: plugins/check_fping.c:415
962msgid "Interval must be a positive integer" 1021msgid "Interval must be a positive integer"
963msgstr "Le délai d'attente doit être un entier positif" 1022msgstr "Le délai d'attente doit être un entier positif"
964 1023
965#: plugins/check_fping.c:402 plugins/check_ntp.c:733 1024#: plugins/check_fping.c:421 plugins/check_ntp.c:743
966#: plugins/check_ntp_peer.c:524 plugins/check_ntp_time.c:523 1025#: plugins/check_ntp_peer.c:524 plugins/check_ntp_time.c:528
967#: plugins/check_radius.c:314 plugins/check_time.c:319 1026#: plugins/check_radius.c:329 plugins/check_time.c:319
968msgid "Hostname was not supplied" 1027msgid "Hostname was not supplied"
969msgstr "Le nom de l'hôte n'a pas été spécifié" 1028msgstr "Le nom de l'hôte n'a pas été spécifié"
970 1029
971#: plugins/check_fping.c:422 1030#: plugins/check_fping.c:441
972#, c-format 1031#, c-format
973msgid "%s: Only one threshold may be packet loss (%s)\n" 1032msgid "%s: Only one threshold may be packet loss (%s)\n"
974msgstr "" 1033msgstr ""
975"%s: Seulement un seuil peut être utilisé pour les pertes de paquets (%s)\n" 1034"%s: Seulement un seuil peut être utilisé pour les pertes de paquets (%s)\n"
976 1035
977#: plugins/check_fping.c:426 1036#: plugins/check_fping.c:445
978#, c-format 1037#, c-format
979msgid "%s: Only one threshold must be packet loss (%s)\n" 1038msgid "%s: Only one threshold must be packet loss (%s)\n"
980msgstr "" 1039msgstr ""
981"%s: Seulement un seuil doit être utilisé pour les pertes de paquets (%s)\n" 1040"%s: Seulement un seuil doit être utilisé pour les pertes de paquets (%s)\n"
982 1041
983#: plugins/check_fping.c:458 1042#: plugins/check_fping.c:475
984msgid "" 1043msgid ""
985"This plugin will use the fping command to ping the specified host for a fast " 1044"This plugin will use the fping command to ping the specified host for a fast "
986"check" 1045"check"
987msgstr "" 1046msgstr ""
988"Ce plugin va utiliser la commande fping pour pinger l'hôte de manière rapide." 1047"Ce plugin va utiliser la commande fping pour pinger l'hôte de manière rapide."
989 1048
990#: plugins/check_fping.c:460 1049#: plugins/check_fping.c:477
991msgid "Note that it is necessary to set the suid flag on fping." 1050msgid "Note that it is necessary to set the suid flag on fping."
992msgstr "" 1051msgstr ""
993"Veuillez noter qu'il est nécessaire de mettre le bit suid sur le programme " 1052"Veuillez noter qu'il est nécessaire de mettre le bit suid sur le programme "
994"fping." 1053"fping."
995 1054
996#: plugins/check_fping.c:472 1055#: plugins/check_fping.c:489
997msgid "" 1056msgid ""
998"name or IP Address of host to ping (IP Address bypasses name lookup, " 1057"name or IP Address of host to ping (IP Address bypasses name lookup, "
999"reducing system load)" 1058"reducing system load)"
@@ -1001,39 +1060,43 @@ msgstr ""
1001"nom ou adresse IP des hôtes à pinger (l'indication d'un adresse IP évite une " 1060"nom ou adresse IP des hôtes à pinger (l'indication d'un adresse IP évite une "
1002"recherche sur le nom, ce qui réduit la charge système)" 1061"recherche sur le nom, ce qui réduit la charge système)"
1003 1062
1004#: plugins/check_fping.c:474 plugins/check_ping.c:575 1063#: plugins/check_fping.c:491 plugins/check_ping.c:589
1005msgid "warning threshold pair" 1064msgid "warning threshold pair"
1006msgstr "Valeurs pour le seuil d'avertissement" 1065msgstr "Valeurs pour le seuil d'avertissement"
1007 1066
1008#: plugins/check_fping.c:476 plugins/check_ping.c:577 1067#: plugins/check_fping.c:493 plugins/check_ping.c:591
1009msgid "critical threshold pair" 1068msgid "critical threshold pair"
1010msgstr "Valeurs pour le seuil critique" 1069msgstr "Valeurs pour le seuil critique"
1011 1070
1012#: plugins/check_fping.c:478 1071#: plugins/check_fping.c:495
1072msgid "Return OK after first successful reply"
1073msgstr ""
1074
1075#: plugins/check_fping.c:497
1013msgid "size of ICMP packet" 1076msgid "size of ICMP packet"
1014msgstr "taille du paquet ICMP" 1077msgstr "taille du paquet ICMP"
1015 1078
1016#: plugins/check_fping.c:480 1079#: plugins/check_fping.c:499
1017msgid "number of ICMP packets to send" 1080msgid "number of ICMP packets to send"
1018msgstr "nombre de paquets ICMP à envoyer" 1081msgstr "nombre de paquets ICMP à envoyer"
1019 1082
1020#: plugins/check_fping.c:482 1083#: plugins/check_fping.c:501
1021msgid "Target timeout (ms)" 1084msgid "Target timeout (ms)"
1022msgstr "" 1085msgstr ""
1023 1086
1024#: plugins/check_fping.c:484 1087#: plugins/check_fping.c:503
1025msgid "Interval (ms) between sending packets" 1088msgid "Interval (ms) between sending packets"
1026msgstr "" 1089msgstr ""
1027 1090
1028#: plugins/check_fping.c:486 1091#: plugins/check_fping.c:505
1029msgid "name or IP Address of sourceip" 1092msgid "name or IP Address of sourceip"
1030msgstr "" 1093msgstr ""
1031 1094
1032#: plugins/check_fping.c:488 1095#: plugins/check_fping.c:507
1033msgid "source interface name" 1096msgid "source interface name"
1034msgstr "" 1097msgstr ""
1035 1098
1036#: plugins/check_fping.c:491 1099#: plugins/check_fping.c:510
1037#, c-format 1100#, c-format
1038msgid "" 1101msgid ""
1039"THRESHOLD is <rta>,<pl>%% where <rta> is the round trip average travel time " 1102"THRESHOLD is <rta>,<pl>%% where <rta> is the round trip average travel time "
@@ -1042,18 +1105,18 @@ msgstr ""
1042"Le seuil est <rta>,<pl>%% ou <rta> est le temps moyen pour l'aller retour " 1105"Le seuil est <rta>,<pl>%% ou <rta> est le temps moyen pour l'aller retour "
1043"(ms)" 1106"(ms)"
1044 1107
1045#: plugins/check_fping.c:492 1108#: plugins/check_fping.c:511
1046msgid "" 1109msgid ""
1047"which triggers a WARNING or CRITICAL state, and <pl> is the percentage of" 1110"which triggers a WARNING or CRITICAL state, and <pl> is the percentage of"
1048msgstr "" 1111msgstr ""
1049"qui déclenche résultat AVERTISSEMENT ou CRITIQUE, et <pl> est le pourcentage " 1112"qui déclenche résultat AVERTISSEMENT ou CRITIQUE, et <pl> est le pourcentage "
1050"de" 1113"de"
1051 1114
1052#: plugins/check_fping.c:493 1115#: plugins/check_fping.c:512
1053msgid "packet loss to trigger an alarm state." 1116msgid "packet loss to trigger an alarm state."
1054msgstr "paquets perdu pour déclencher une alarme." 1117msgstr "paquets perdu pour déclencher une alarme."
1055 1118
1056#: plugins/check_fping.c:496 1119#: plugins/check_fping.c:515
1057msgid "IPv4 is used by default. Specify -6 to use IPv6." 1120msgid "IPv4 is used by default. Specify -6 to use IPv6."
1058msgstr "" 1121msgstr ""
1059 1122
@@ -1113,782 +1176,893 @@ msgstr ""
1113"Si vous n'avez pas le programme installé, vous devrez le télécharger depuis" 1176"Si vous n'avez pas le programme installé, vous devrez le télécharger depuis"
1114 1177
1115#: plugins/check_game.c:321 1178#: plugins/check_game.c:321
1116msgid "" 1179#, fuzzy
1117"http://www.activesw.com/people/steve/qstat.html before you can use this " 1180msgid "https://github.com/multiplay/qstat before you can use this plugin."
1118"plugin."
1119msgstr "" 1181msgstr ""
1120"http://www.activesw.com/people/steve/qstat.html avant de pouvoir utiliser ce " 1182"http://www.activesw.com/people/steve/qstat.html avant de pouvoir utiliser ce "
1121"plugin." 1183"plugin."
1122 1184
1123#: plugins/check_hpjd.c:239 1185#: plugins/check_hpjd.c:245
1124msgid "Paper Jam" 1186msgid "Paper Jam"
1125msgstr "Bourrage Papier" 1187msgstr "Bourrage Papier"
1126 1188
1127#: plugins/check_hpjd.c:243 1189#: plugins/check_hpjd.c:250
1128msgid "Out of Paper" 1190msgid "Out of Paper"
1129msgstr "Plus de Papier" 1191msgstr "Plus de Papier"
1130 1192
1131#: plugins/check_hpjd.c:248 1193#: plugins/check_hpjd.c:255
1132msgid "Printer Offline" 1194msgid "Printer Offline"
1133msgstr "Imprimante hors ligne" 1195msgstr "Imprimante hors ligne"
1134 1196
1135#: plugins/check_hpjd.c:253 1197#: plugins/check_hpjd.c:260
1136msgid "Peripheral Error" 1198msgid "Peripheral Error"
1137msgstr "Erreur du périphérique" 1199msgstr "Erreur du périphérique"
1138 1200
1139#: plugins/check_hpjd.c:257 1201#: plugins/check_hpjd.c:264
1140msgid "Intervention Required" 1202msgid "Intervention Required"
1141msgstr "Intervention Requise" 1203msgstr "Intervention Requise"
1142 1204
1143#: plugins/check_hpjd.c:261 1205#: plugins/check_hpjd.c:268
1144msgid "Toner Low" 1206msgid "Toner Low"
1145msgstr "Toner Faible" 1207msgstr "Toner Faible"
1146 1208
1147#: plugins/check_hpjd.c:265 1209#: plugins/check_hpjd.c:272
1148msgid "Insufficient Memory" 1210msgid "Insufficient Memory"
1149msgstr "Mémoire Insuffisante" 1211msgstr "Mémoire Insuffisante"
1150 1212
1151#: plugins/check_hpjd.c:269 1213#: plugins/check_hpjd.c:276
1152msgid "A Door is Open" 1214msgid "A Door is Open"
1153msgstr "Une porte est ouverte" 1215msgstr "Une porte est ouverte"
1154 1216
1155#: plugins/check_hpjd.c:273 1217#: plugins/check_hpjd.c:280
1156msgid "Output Tray is Full" 1218msgid "Output Tray is Full"
1157msgstr "Le bac de sortie est plein" 1219msgstr "Le bac de sortie est plein"
1158 1220
1159#: plugins/check_hpjd.c:277 1221#: plugins/check_hpjd.c:284
1160msgid "Data too Slow for Engine" 1222msgid "Data too Slow for Engine"
1161msgstr "Le données arrivent trop lentement pour l'imprimante" 1223msgstr "Le données arrivent trop lentement pour l'imprimante"
1162 1224
1163#: plugins/check_hpjd.c:281 1225#: plugins/check_hpjd.c:288
1164msgid "Unknown Paper Error" 1226msgid "Unknown Paper Error"
1165msgstr "Erreur de papier inconnue" 1227msgstr "Erreur de papier inconnue"
1166 1228
1167#: plugins/check_hpjd.c:286 1229#: plugins/check_hpjd.c:293
1168#, c-format 1230#, c-format
1169msgid "Printer ok - (%s)\n" 1231msgid "Printer ok - (%s)\n"
1170msgstr "Imprimante ok - (%s)\n" 1232msgstr "Imprimante ok - (%s)\n"
1171 1233
1172#: plugins/check_hpjd.c:391 1234#: plugins/check_hpjd.c:353
1235#, fuzzy
1236msgid "Port must be a positive short integer"
1237msgstr "Le numéro du port doit être un entier positif"
1238
1239#: plugins/check_hpjd.c:410
1173msgid "This plugin tests the STATUS of an HP printer with a JetDirect card." 1240msgid "This plugin tests the STATUS of an HP printer with a JetDirect card."
1174msgstr "Ce plugin teste l'état d'une imprimante HP avec une carte JetDirect." 1241msgstr "Ce plugin teste l'état d'une imprimante HP avec une carte JetDirect."
1175 1242
1176#: plugins/check_hpjd.c:392 1243#: plugins/check_hpjd.c:411
1177msgid "Net-snmp must be installed on the computer running the plugin." 1244msgid "Net-snmp must be installed on the computer running the plugin."
1178msgstr "Net-snmp doit être installé sur l'ordinateur qui exécute le plugin." 1245msgstr "Net-snmp doit être installé sur l'ordinateur qui exécute le plugin."
1179 1246
1180#: plugins/check_hpjd.c:402 1247#: plugins/check_hpjd.c:421
1181msgid "The SNMP community name " 1248msgid "The SNMP community name "
1182msgstr "Le nom de la communauté SNMP " 1249msgstr "Le nom de la communauté SNMP "
1183 1250
1184#: plugins/check_hpjd.c:403 1251#: plugins/check_hpjd.c:422 plugins/check_hpjd.c:426
1185#, c-format 1252#, c-format
1186msgid "(default=%s)" 1253msgid "(default=%s)"
1187msgstr "(défaut=%s)" 1254msgstr "(défaut=%s)"
1188 1255
1189#: plugins/check_http.c:189 1256#: plugins/check_hpjd.c:425
1257#, fuzzy
1258msgid "Specify the port to check "
1259msgstr "Nom de l'hôte à vérifier"
1260
1261#: plugins/check_hpjd.c:429
1262#, fuzzy
1263msgid "Disable paper check "
1264msgstr "Variable a vérifier"
1265
1266#: plugins/check_http.c:196
1190msgid "file does not exist or is not readable" 1267msgid "file does not exist or is not readable"
1191msgstr "" 1268msgstr ""
1192 1269
1193#: plugins/check_http.c:310 plugins/check_http.c:315 plugins/check_http.c:321 1270#: plugins/check_http.c:324 plugins/check_http.c:329 plugins/check_http.c:335
1194#: plugins/check_smtp.c:600 plugins/check_tcp.c:576 plugins/check_tcp.c:580 1271#: plugins/check_smtp.c:621 plugins/check_tcp.c:590 plugins/check_tcp.c:595
1195#: plugins/check_tcp.c:586 1272#: plugins/check_tcp.c:601
1196msgid "Invalid certificate expiration period" 1273msgid "Invalid certificate expiration period"
1197msgstr "Période d'expiration du certificat invalide" 1274msgstr "Période d'expiration du certificat invalide"
1198 1275
1199#: plugins/check_http.c:348 1276#: plugins/check_http.c:378
1200msgid "" 1277msgid ""
1201"Invalid option - Valid values for SSL Version are 1 (TLSv1), 2 (SSLv2) or 3 " 1278"Invalid option - Valid SSL/TLS versions: 2, 3, 1, 1.1, 1.2 (with optional "
1202"(SSLv3)" 1279"'+' suffix)"
1203msgstr "" 1280msgstr ""
1204 1281
1205#: plugins/check_http.c:354 plugins/check_tcp.c:599 1282#: plugins/check_http.c:384 plugins/check_tcp.c:614 plugins/check_tcp.c:623
1206msgid "Invalid option - SSL is not available" 1283msgid "Invalid option - SSL is not available"
1207msgstr "Option invalide - SSL n'est pas disponible" 1284msgstr "Option invalide - SSL n'est pas disponible"
1208 1285
1209#: plugins/check_http.c:375 1286#: plugins/check_http.c:392
1287msgid "Invalid max_redirs count"
1288msgstr ""
1289
1290#: plugins/check_http.c:412
1210msgid "Invalid onredirect option" 1291msgid "Invalid onredirect option"
1211msgstr "" 1292msgstr ""
1212 1293
1213#: plugins/check_http.c:377 1294#: plugins/check_http.c:414
1214#, c-format 1295#, c-format
1215msgid "option f:%d \n" 1296msgid "option f:%d \n"
1216msgstr "option f:%d \n" 1297msgstr "option f:%d \n"
1217 1298
1218#: plugins/check_http.c:398 1299#: plugins/check_http.c:449
1219msgid "Invalid port number" 1300msgid "Invalid port number"
1220msgstr "Numéro de port invalide" 1301msgstr "Numéro de port invalide"
1221 1302
1222#: plugins/check_http.c:450 1303#: plugins/check_http.c:507
1223#, c-format 1304#, c-format
1224msgid "Could Not Compile Regular Expression: %s" 1305msgid "Could Not Compile Regular Expression: %s"
1225msgstr "Impossible de compiler l'expression rationnelle: %s" 1306msgstr "Impossible de compiler l'expression rationnelle: %s"
1226 1307
1227#: plugins/check_http.c:464 plugins/check_ntp.c:722 1308#: plugins/check_http.c:521 plugins/check_ntp.c:732
1228#: plugins/check_ntp_peer.c:513 plugins/check_ntp_time.c:512 1309#: plugins/check_ntp_peer.c:513 plugins/check_ntp_time.c:517
1229#: plugins/check_smtp.c:621 plugins/check_ssh.c:149 plugins/check_tcp.c:477 1310#: plugins/check_smtp.c:660 plugins/check_ssh.c:151 plugins/check_tcp.c:491
1230msgid "IPv6 support not available" 1311msgid "IPv6 support not available"
1231msgstr "Support IPv6 non disponible" 1312msgstr "Support IPv6 non disponible"
1232 1313
1233#: plugins/check_http.c:529 plugins/check_ping.c:422 1314#: plugins/check_http.c:589 plugins/check_ping.c:428
1234msgid "You must specify a server address or host name" 1315msgid "You must specify a server address or host name"
1235msgstr "Vous devez spécifier une adresse ou un nom d'hôte" 1316msgstr "Vous devez spécifier une adresse ou un nom d'hôte"
1236 1317
1237#: plugins/check_http.c:543 1318#: plugins/check_http.c:606
1238msgid "" 1319msgid ""
1239"If you use a client certificate you must also specify a private key file" 1320"If you use a client certificate you must also specify a private key file"
1240msgstr "" 1321msgstr ""
1241 1322
1242#: plugins/check_http.c:667 plugins/check_http.c:835 1323#: plugins/check_http.c:733 plugins/check_http.c:901
1243msgid "HTTP UNKNOWN - Memory allocation error\n" 1324msgid "HTTP UNKNOWN - Memory allocation error\n"
1244msgstr "HTTP INCONNU - Impossible d'allouer la mémoire\n" 1325msgstr "HTTP INCONNU - Impossible d'allouer la mémoire\n"
1245 1326
1246#: plugins/check_http.c:739 1327#: plugins/check_http.c:805
1247#, c-format 1328#, c-format
1248msgid "%sServer date unknown, " 1329msgid "%sServer date unknown, "
1249msgstr "%sDate du serveur inconnue, " 1330msgstr "%sDate du serveur inconnue, "
1250 1331
1251#: plugins/check_http.c:742 1332#: plugins/check_http.c:808
1252#, c-format 1333#, c-format
1253msgid "%sDocument modification date unknown, " 1334msgid "%sDocument modification date unknown, "
1254msgstr "%sDate de modification du document inconnue, " 1335msgstr "%sDate de modification du document inconnue, "
1255 1336
1256#: plugins/check_http.c:749 1337#: plugins/check_http.c:815
1257#, c-format 1338#, c-format
1258msgid "%sServer date \"%100s\" unparsable, " 1339msgid "%sServer date \"%100s\" unparsable, "
1259msgstr "%sDate du serveur \"%100s\" illisible, " 1340msgstr "%sDate du serveur \"%100s\" illisible, "
1260 1341
1261#: plugins/check_http.c:752 1342#: plugins/check_http.c:818
1262#, c-format 1343#, c-format
1263msgid "%sDocument date \"%100s\" unparsable, " 1344msgid "%sDocument date \"%100s\" unparsable, "
1264msgstr "%sDate du document \"%100s\" illisible, " 1345msgstr "%sDate du document \"%100s\" illisible, "
1265 1346
1266#: plugins/check_http.c:755 1347#: plugins/check_http.c:821
1267#, c-format 1348#, c-format
1268msgid "%sDocument is %d seconds in the future, " 1349msgid "%sDocument is %d seconds in the future, "
1269msgstr "%sLa date du document est %d secondes dans le futur, " 1350msgstr "%sLa date du document est %d secondes dans le futur, "
1270 1351
1271#: plugins/check_http.c:760 1352#: plugins/check_http.c:826
1272#, c-format 1353#, c-format
1273msgid "%sLast modified %.1f days ago, " 1354msgid "%sLast modified %.1f days ago, "
1274msgstr "%sDernière modification %.1f jours auparavant, " 1355msgstr "%sDernière modification %.1f jours auparavant, "
1275 1356
1276#: plugins/check_http.c:763 1357#: plugins/check_http.c:829
1277#, c-format 1358#, c-format
1278msgid "%sLast modified %d:%02d:%02d ago, " 1359msgid "%sLast modified %d:%02d:%02d ago, "
1279msgstr "%sDernière modification %d:%02d:%02d auparavant, " 1360msgstr "%sDernière modification %d:%02d:%02d auparavant, "
1280 1361
1281#: plugins/check_http.c:876 1362#: plugins/check_http.c:943
1282msgid "HTTP CRITICAL - Unable to open TCP socket\n" 1363msgid "HTTP CRITICAL - Unable to open TCP socket\n"
1283msgstr "HTTP CRITIQUE - Impossible d'ouvrir un socket TCP\n" 1364msgstr "HTTP CRITIQUE - Impossible d'ouvrir un socket TCP\n"
1284 1365
1285#: plugins/check_http.c:995 1366#: plugins/check_http.c:1103
1367#, fuzzy
1368msgid "HTTP UNKNOWN - Could not allocate memory for full_page\n"
1369msgstr "HTTP INCONNU - Impossible d'allouer une adresse\n"
1370
1371#: plugins/check_http.c:1120
1286msgid "HTTP CRITICAL - Error on receive\n" 1372msgid "HTTP CRITICAL - Error on receive\n"
1287msgstr "HTTP CRITIQUE - Erreur dans la réception\n" 1373msgstr "HTTP CRITIQUE - Erreur dans la réception\n"
1288 1374
1289#: plugins/check_http.c:1005 1375#: plugins/check_http.c:1125
1290msgid "HTTP CRITICAL - No data received from host\n" 1376msgid "HTTP CRITICAL - No data received from host\n"
1291msgstr "HTTP CRITIQUE - Pas de données reçues de l'hôte\n" 1377msgstr "HTTP CRITIQUE - Pas de données reçues de l'hôte\n"
1292 1378
1293#: plugins/check_http.c:1056 1379#: plugins/check_http.c:1176
1294#, c-format 1380#, c-format
1295msgid "Invalid HTTP response received from host: %s\n" 1381msgid "Invalid HTTP response received from host: %s\n"
1296msgstr "Réponse HTTP reçue de l'hôte invalide: %s\n" 1382msgstr "Réponse HTTP reçue de l'hôte invalide: %s\n"
1297 1383
1298#: plugins/check_http.c:1060 1384#: plugins/check_http.c:1180
1299#, c-format 1385#, c-format
1300msgid "Invalid HTTP response received from host on port %d: %s\n" 1386msgid "Invalid HTTP response received from host on port %d: %s\n"
1301msgstr "Réponse HTTP reçue de l'hôte sur le port %d invalide: %s\n" 1387msgstr "Réponse HTTP reçue de l'hôte sur le port %d invalide: %s\n"
1302 1388
1303#: plugins/check_http.c:1069 1389#: plugins/check_http.c:1183 plugins/check_http.c:1376
1390#, c-format
1391msgid ""
1392"%s\n"
1393"%s"
1394msgstr ""
1395
1396#: plugins/check_http.c:1191
1304#, c-format 1397#, c-format
1305msgid "Status line output matched \"%s\" - " 1398msgid "Status line output matched \"%s\" - "
1306msgstr "La ligne d'état correspond à \"%s\" - " 1399msgstr "La ligne d'état correspond à \"%s\" - "
1307 1400
1308#: plugins/check_http.c:1080 1401#: plugins/check_http.c:1202
1309#, c-format 1402#, c-format
1310msgid "HTTP CRITICAL: Invalid Status Line (%s)\n" 1403msgid "HTTP CRITICAL: Invalid Status Line (%s)\n"
1311msgstr "HTTP CRITIQUE: Ligne d'état non valide (%s)\n" 1404msgstr "HTTP CRITIQUE: Ligne d'état non valide (%s)\n"
1312 1405
1313#: plugins/check_http.c:1087 1406#: plugins/check_http.c:1209
1314#, c-format 1407#, c-format
1315msgid "HTTP CRITICAL: Invalid Status (%s)\n" 1408msgid "HTTP CRITICAL: Invalid Status (%s)\n"
1316msgstr "HTTP CRITIQUE: Etat Invalide (%s)\n" 1409msgstr "HTTP CRITIQUE: Etat Invalide (%s)\n"
1317 1410
1318#: plugins/check_http.c:1091 plugins/check_http.c:1096 1411#: plugins/check_http.c:1213 plugins/check_http.c:1218
1319#: plugins/check_http.c:1106 plugins/check_http.c:1110 1412#: plugins/check_http.c:1228 plugins/check_http.c:1232
1320#, c-format 1413#, c-format
1321msgid "%s - " 1414msgid "%s - "
1322msgstr "" 1415msgstr ""
1323 1416
1324#: plugins/check_http.c:1129 1417#: plugins/check_http.c:1260
1325#, fuzzy, c-format 1418#, fuzzy, c-format
1326msgid "%sheader '%s' not found on '%s://%s:%d%s', " 1419msgid "%sheader '%s' not found on '%s://%s:%d%s', "
1327msgstr "%schaîne non trouvée, " 1420msgstr "%schaîne non trouvée, "
1328 1421
1329#: plugins/check_http.c:1141 1422#: plugins/check_http.c:1303
1330#, fuzzy, c-format 1423#, fuzzy, c-format
1331msgid "%sstring '%s' not found on '%s://%s:%d%s', " 1424msgid "%sstring '%s' not found on '%s://%s:%d%s', "
1332msgstr "%schaîne non trouvée, " 1425msgstr "%schaîne non trouvée, "
1333 1426
1334#: plugins/check_http.c:1154 1427#: plugins/check_http.c:1317
1335#, c-format 1428#, c-format
1336msgid "%spattern not found, " 1429msgid "%spattern not found, "
1337msgstr "%sexpression non trouvée, " 1430msgstr "%sexpression non trouvée, "
1338 1431
1339#: plugins/check_http.c:1156 1432#: plugins/check_http.c:1319
1340#, c-format 1433#, c-format
1341msgid "%spattern found, " 1434msgid "%spattern found, "
1342msgstr "%sexpression trouvée, " 1435msgstr "%sexpression trouvée, "
1343 1436
1344#: plugins/check_http.c:1162 1437#: plugins/check_http.c:1325
1345#, c-format 1438#, c-format
1346msgid "%sExecute Error: %s, " 1439msgid "%sExecute Error: %s, "
1347msgstr "%sErreur d'exécution: %s, " 1440msgstr "%sErreur d'exécution: %s, "
1348 1441
1349#: plugins/check_http.c:1178 1442#: plugins/check_http.c:1341
1350#, c-format 1443#, c-format
1351msgid "%spage size %d too large, " 1444msgid "%spage size %d too large, "
1352msgstr "%sla taille de la page est trop grande (%d), " 1445msgstr "%sla taille de la page est trop grande (%d), "
1353 1446
1354#: plugins/check_http.c:1181 1447#: plugins/check_http.c:1344
1355#, c-format 1448#, c-format
1356msgid "%spage size %d too small, " 1449msgid "%spage size %d too small, "
1357msgstr "%sla taille de la page est trop petite (%d), " 1450msgstr "%sla taille de la page est trop petite (%d), "
1358 1451
1359#: plugins/check_http.c:1194 1452#: plugins/check_http.c:1357
1360#, fuzzy, c-format 1453#, fuzzy, c-format
1361msgid "%s - %d bytes in %.3f second response time %s|%s %s %s %s %s %s %s" 1454msgid "%s - %d bytes in %.3f second response time %s|%s %s %s %s %s %s %s"
1362msgstr "%s - %d octets en %.3f secondes de temps de réponse %s|%s %s" 1455msgstr "%s - %d octets en %.3f secondes de temps de réponse %s|%s %s"
1363 1456
1364#: plugins/check_http.c:1206 1457#: plugins/check_http.c:1369
1365#, c-format 1458#, c-format
1366msgid "%s - %d bytes in %.3f second response time %s|%s %s" 1459msgid "%s - %d bytes in %.3f second response time %s|%s %s"
1367msgstr "%s - %d octets en %.3f secondes de temps de réponse %s|%s %s" 1460msgstr "%s - %d octets en %.3f secondes de temps de réponse %s|%s %s"
1368 1461
1369#: plugins/check_http.c:1244 1462#: plugins/check_http.c:1499
1370msgid "HTTP UNKNOWN - Could not allocate addr\n" 1463msgid "HTTP UNKNOWN - Could not allocate addr\n"
1371msgstr "HTTP INCONNU - Impossible d'allouer une adresse\n" 1464msgstr "HTTP INCONNU - Impossible d'allouer une adresse\n"
1372 1465
1373#: plugins/check_http.c:1248 plugins/check_http.c:1279 1466#: plugins/check_http.c:1504 plugins/check_http.c:1535
1374msgid "HTTP UNKNOWN - Could not allocate URL\n" 1467msgid "HTTP UNKNOWN - Could not allocate URL\n"
1375msgstr "HTTP INCONNU - Impossible d'allouer l'URL\n" 1468msgstr "HTTP INCONNU - Impossible d'allouer l'URL\n"
1376 1469
1377#: plugins/check_http.c:1257 1470#: plugins/check_http.c:1513
1378#, c-format 1471#, c-format
1379msgid "HTTP UNKNOWN - Could not find redirect location - %s%s\n" 1472msgid "HTTP UNKNOWN - Could not find redirect location - %s%s\n"
1380msgstr "" 1473msgstr ""
1381"HTTP INCONNU - Impossible de trouver l'endroit de la redirection - %s%s\n" 1474"HTTP INCONNU - Impossible de trouver l'endroit de la redirection - %s%s\n"
1382 1475
1383#: plugins/check_http.c:1272 1476#: plugins/check_http.c:1528
1384#, c-format 1477#, c-format
1385msgid "HTTP UNKNOWN - Empty redirect location%s\n" 1478msgid "HTTP UNKNOWN - Empty redirect location%s\n"
1386msgstr "HTTP INCONNU - endroit de redirection vide%s\n" 1479msgstr "HTTP INCONNU - endroit de redirection vide%s\n"
1387 1480
1388#: plugins/check_http.c:1322 1481#: plugins/check_http.c:1590
1389#, c-format 1482#, c-format
1390msgid "HTTP UNKNOWN - Could not parse redirect location - %s%s\n" 1483msgid "HTTP UNKNOWN - Could not parse redirect location - %s%s\n"
1391msgstr "" 1484msgstr ""
1392"HTTP INCONNU - Impossible de définir l'endroit de la redirection - %s%s\n" 1485"HTTP INCONNU - Impossible de définir l'endroit de la redirection - %s%s\n"
1393 1486
1394#: plugins/check_http.c:1332 1487#: plugins/check_http.c:1600
1395#, c-format 1488#, c-format
1396msgid "HTTP WARNING - maximum redirection depth %d exceeded - %s://%s:%d%s%s\n" 1489msgid "HTTP WARNING - maximum redirection depth %d exceeded - %s://%s:%d%s%s\n"
1397msgstr "" 1490msgstr ""
1398"HTTP AVERTISSEMENT - le niveau maximum de redirection %d à été dépassé - " 1491"HTTP AVERTISSEMENT - le niveau maximum de redirection %d à été dépassé - "
1399"%s://%s:%d%s%s\n" 1492"%s://%s:%d%s%s\n"
1400 1493
1401#: plugins/check_http.c:1340 1494#: plugins/check_http.c:1608
1402#, c-format 1495#, fuzzy, c-format
1403msgid "HTTP WARNING - redirection creates an infinite loop - %s://%s:%d%s%s\n" 1496msgid "HTTP CRITICAL - redirection creates an infinite loop - %s://%s:%d%s%s\n"
1404msgstr "" 1497msgstr ""
1405"HTTP AVERTISSEMENT - la redirection crée une boucle infinie - %s://%s:%d%s" 1498"HTTP AVERTISSEMENT - la redirection crée une boucle infinie - %s://%s:"
1406"%s\n" 1499"%d%s%s\n"
1407 1500
1408#: plugins/check_http.c:1361 1501#: plugins/check_http.c:1629
1409#, c-format 1502#, c-format
1410msgid "HTTP UNKNOWN - Redirection to port above %d - %s://%s:%d%s%s\n" 1503msgid "HTTP UNKNOWN - Redirection to port above %d - %s://%s:%d%s%s\n"
1411msgstr "HTTP INCONNU - Redirection à un port supérieur à %d - %s://%s:%d%s%s\n" 1504msgstr "HTTP INCONNU - Redirection à un port supérieur à %d - %s://%s:%d%s%s\n"
1412 1505
1413#: plugins/check_http.c:1366 1506#: plugins/check_http.c:1637
1414#, c-format 1507#, c-format
1415msgid "Redirection to %s://%s:%d%s\n" 1508msgid "Redirection to %s://%s:%d%s\n"
1416msgstr "Redirection vers %s://%s:%d%s\n" 1509msgstr "Redirection vers %s://%s:%d%s\n"
1417 1510
1418#: plugins/check_http.c:1440 1511#: plugins/check_http.c:1712
1419msgid "This plugin tests the HTTP service on the specified host. It can test" 1512msgid "This plugin tests the HTTP service on the specified host. It can test"
1420msgstr "" 1513msgstr ""
1421"Ce plugin teste le service HTTP sur l'hôte spécifié. Il peut tester les" 1514"Ce plugin teste le service HTTP sur l'hôte spécifié. Il peut tester les"
1422 1515
1423#: plugins/check_http.c:1441 1516#: plugins/check_http.c:1713
1424msgid "normal (http) and secure (https) servers, follow redirects, search for" 1517msgid "normal (http) and secure (https) servers, follow redirects, search for"
1425msgstr "" 1518msgstr ""
1426"serveurs normaux (http) et sécurisés (https), suivre les redirections, " 1519"serveurs normaux (http) et sécurisés (https), suivre les redirections, "
1427"rechercher des" 1520"rechercher des"
1428 1521
1429#: plugins/check_http.c:1442 1522#: plugins/check_http.c:1714
1430msgid "strings and regular expressions, check connection times, and report on" 1523msgid "strings and regular expressions, check connection times, and report on"
1431msgstr "" 1524msgstr ""
1432"chaînes de caractères et expressions rationnelles, vérifier le temps de " 1525"chaînes de caractères et expressions rationnelles, vérifier le temps de "
1433"réponse" 1526"réponse"
1434 1527
1435#: plugins/check_http.c:1443 1528#: plugins/check_http.c:1715
1436msgid "certificate expiration times." 1529msgid "certificate expiration times."
1437msgstr "et rapporter la date d'expiration du certificat." 1530msgstr "et rapporter la date d'expiration du certificat."
1438 1531
1439#: plugins/check_http.c:1449 1532#: plugins/check_http.c:1722
1533#, c-format
1534msgid "In the first form, make an HTTP request."
1535msgstr ""
1536
1537#: plugins/check_http.c:1723
1538#, c-format
1539msgid ""
1540"In the second form, connect to the server and check the TLS certificate."
1541msgstr ""
1542
1543#: plugins/check_http.c:1725
1440#, c-format 1544#, c-format
1441msgid "NOTE: One or both of -H and -I must be specified" 1545msgid "NOTE: One or both of -H and -I must be specified"
1442msgstr "NOTE: les paramètres -H et -I peuvent être spécifiés" 1546msgstr "NOTE: les paramètres -H et -I peuvent être spécifiés"
1443 1547
1444#: plugins/check_http.c:1457 1548#: plugins/check_http.c:1733
1445msgid "Host name argument for servers using host headers (virtual host)" 1549msgid "Host name argument for servers using host headers (virtual host)"
1446msgstr "" 1550msgstr ""
1447 1551
1448#: plugins/check_http.c:1458 1552#: plugins/check_http.c:1734
1449msgid "Append a port to include it in the header (eg: example.com:5000)" 1553msgid "Append a port to include it in the header (eg: example.com:5000)"
1450msgstr "" 1554msgstr ""
1451 1555
1452#: plugins/check_http.c:1460 1556#: plugins/check_http.c:1736
1453msgid "" 1557msgid ""
1454"IP address or name (use numeric address if possible to bypass DNS lookup)." 1558"IP address or name (use numeric address if possible to bypass DNS lookup)."
1455msgstr "" 1559msgstr ""
1456 1560
1457#: plugins/check_http.c:1462 1561#: plugins/check_http.c:1738
1458msgid "Port number (default: " 1562msgid "Port number (default: "
1459msgstr "Numéro du port (défaut: " 1563msgstr "Numéro du port (défaut: "
1460 1564
1461#: plugins/check_http.c:1469 1565#: plugins/check_http.c:1745
1462msgid "" 1566msgid ""
1463"Connect via SSL. Port defaults to 443. VERSION is optional, and prevents" 1567"Connect via SSL. Port defaults to 443. VERSION is optional, and prevents"
1464msgstr "" 1568msgstr ""
1465 1569
1466#: plugins/check_http.c:1470 1570#: plugins/check_http.c:1746
1467msgid "auto-negotiation (1 = TLSv1, 2 = SSLv2, 3 = SSLv3)." 1571msgid "auto-negotiation (2 = SSLv2, 3 = SSLv3, 1 = TLSv1, 1.1 = TLSv1.1,"
1572msgstr ""
1573
1574#: plugins/check_http.c:1747
1575msgid "1.2 = TLSv1.2). With a '+' suffix, newer versions are also accepted."
1468msgstr "" 1576msgstr ""
1469 1577
1470#: plugins/check_http.c:1472 1578#: plugins/check_http.c:1749 plugins/check_smtp.c:856
1471msgid "Enable SSL/TLS hostname extension support (SNI)" 1579msgid "Enable SSL/TLS hostname extension support (SNI)"
1472msgstr "" 1580msgstr ""
1473 1581
1474#: plugins/check_http.c:1474 1582#: plugins/check_http.c:1751
1475msgid "" 1583msgid ""
1476"Minimum number of days a certificate has to be valid. Port defaults to 443" 1584"Minimum number of days a certificate has to be valid. Port defaults to 443"
1477msgstr "" 1585msgstr ""
1478"Nombre de jours minimum pour que le certificat soit valide. Port par défaut " 1586"Nombre de jours minimum pour que le certificat soit valide. Port par défaut "
1479"443" 1587"443"
1480 1588
1481#: plugins/check_http.c:1475 1589#: plugins/check_http.c:1752
1482msgid "(when this option is used the URL is not checked.)" 1590msgid ""
1591"(when this option is used the URL is not checked by default. You can use"
1483msgstr "" 1592msgstr ""
1484 1593
1485#: plugins/check_http.c:1477 1594#: plugins/check_http.c:1753
1595msgid " --continue-after-certificate to override this behavior)"
1596msgstr ""
1597
1598#: plugins/check_http.c:1755
1599msgid ""
1600"Allows the HTTP check to continue after performing the certificate check."
1601msgstr ""
1602
1603#: plugins/check_http.c:1756
1604msgid "Does nothing unless -C is used."
1605msgstr ""
1606
1607#: plugins/check_http.c:1758
1486msgid "Name of file that contains the client certificate (PEM format)" 1608msgid "Name of file that contains the client certificate (PEM format)"
1487msgstr "" 1609msgstr ""
1488 1610
1489#: plugins/check_http.c:1478 1611#: plugins/check_http.c:1759
1490msgid "to be used in establishing the SSL session" 1612msgid "to be used in establishing the SSL session"
1491msgstr "" 1613msgstr ""
1492 1614
1493#: plugins/check_http.c:1480 1615#: plugins/check_http.c:1761
1494msgid "Name of file containing the private key (PEM format)" 1616msgid "Name of file containing the private key (PEM format)"
1495msgstr "" 1617msgstr ""
1496 1618
1497#: plugins/check_http.c:1481 1619#: plugins/check_http.c:1762
1498msgid "matching the client certificate" 1620msgid "matching the client certificate"
1499msgstr "" 1621msgstr ""
1500 1622
1501#: plugins/check_http.c:1485 1623#: plugins/check_http.c:1766
1502msgid "Comma-delimited list of strings, at least one of them is expected in" 1624msgid "Comma-delimited list of strings, at least one of them is expected in"
1503msgstr "" 1625msgstr ""
1504"Liste the chaines de charactères séparées par des virgules, au moins une " 1626"Liste the chaines de charactères séparées par des virgules, au moins une "
1505"d'elles" 1627"d'elles"
1506 1628
1507#: plugins/check_http.c:1486 1629#: plugins/check_http.c:1767
1508msgid "the first (status) line of the server response (default: " 1630msgid "the first (status) line of the server response (default: "
1509msgstr "est attendue dans la première ligne de réponse du serveur (défaut: " 1631msgstr "est attendue dans la première ligne de réponse du serveur (défaut: "
1510 1632
1511#: plugins/check_http.c:1488 1633#: plugins/check_http.c:1769
1512msgid "" 1634msgid ""
1513"If specified skips all other status line logic (ex: 3xx, 4xx, 5xx processing)" 1635"If specified skips all other status line logic (ex: 3xx, 4xx, 5xx processing)"
1514msgstr "" 1636msgstr ""
1515"Si spécifié, surpasse toute autre logique de status (ex: 3xx, 4xx, 5xx)" 1637"Si spécifié, surpasse toute autre logique de status (ex: 3xx, 4xx, 5xx)"
1516 1638
1517#: plugins/check_http.c:1490 1639#: plugins/check_http.c:1771
1518#, fuzzy 1640#, fuzzy
1519msgid "String to expect in the response headers" 1641msgid "String to expect in the response headers"
1520msgstr "Chaîne de caractères à attendre en réponse" 1642msgstr "Chaîne de caractères à attendre en réponse"
1521 1643
1522#: plugins/check_http.c:1492 1644#: plugins/check_http.c:1773
1523msgid "String to expect in the content" 1645msgid "String to expect in the content"
1524msgstr "Chaîne de caractère attendue dans le contenu" 1646msgstr "Chaîne de caractère attendue dans le contenu"
1525 1647
1526#: plugins/check_http.c:1494 1648#: plugins/check_http.c:1775
1527msgid "URL to GET or POST (default: /)" 1649msgid "URL to GET or POST (default: /)"
1528msgstr "URL pour le GET ou le POST (défaut: /)" 1650msgstr "URL pour le GET ou le POST (défaut: /)"
1529 1651
1530#: plugins/check_http.c:1496 1652#: plugins/check_http.c:1777
1531msgid "URL encoded http POST data" 1653msgid "URL encoded http POST data"
1532msgstr "" 1654msgstr ""
1533 1655
1534#: plugins/check_http.c:1498 1656#: plugins/check_http.c:1779
1535msgid "Set HTTP method." 1657msgid "Set HTTP method."
1536msgstr "" 1658msgstr ""
1537 1659
1538#: plugins/check_http.c:1500 1660#: plugins/check_http.c:1781
1539msgid "Don't wait for document body: stop reading after headers." 1661msgid "Don't wait for document body: stop reading after headers."
1540msgstr "" 1662msgstr ""
1541"Ne pas attendre pour le corps du document: arrêter de lire après les entêtes" 1663"Ne pas attendre pour le corps du document: arrêter de lire après les entêtes"
1542 1664
1543#: plugins/check_http.c:1501 1665#: plugins/check_http.c:1782
1544msgid "(Note that this still does an HTTP GET or POST, not a HEAD.)" 1666msgid "(Note that this still does an HTTP GET or POST, not a HEAD.)"
1545msgstr "(Veuillez noter qu'un HTTP GET ou POST est effectué, pas un HEAD.)" 1667msgstr "(Veuillez noter qu'un HTTP GET ou POST est effectué, pas un HEAD.)"
1546 1668
1547#: plugins/check_http.c:1503 1669#: plugins/check_http.c:1784
1548msgid "Warn if document is more than SECONDS old. the number can also be of" 1670msgid "Warn if document is more than SECONDS old. the number can also be of"
1549msgstr "" 1671msgstr ""
1550 1672
1551#: plugins/check_http.c:1504 1673#: plugins/check_http.c:1785
1552msgid "the form \"10m\" for minutes, \"10h\" for hours, or \"10d\" for days." 1674msgid "the form \"10m\" for minutes, \"10h\" for hours, or \"10d\" for days."
1553msgstr "" 1675msgstr ""
1554 1676
1555#: plugins/check_http.c:1506 1677#: plugins/check_http.c:1787
1556msgid "specify Content-Type header media type when POSTing\n" 1678msgid "specify Content-Type header media type when POSTing\n"
1557msgstr "" 1679msgstr ""
1558 1680
1559#: plugins/check_http.c:1509 1681#: plugins/check_http.c:1790
1560msgid "Allow regex to span newlines (must precede -r or -R)" 1682msgid "Allow regex to span newlines (must precede -r or -R)"
1561msgstr "" 1683msgstr ""
1562 1684
1563#: plugins/check_http.c:1511 1685#: plugins/check_http.c:1792
1564msgid "Search page for regex STRING" 1686msgid "Search page for regex STRING"
1565msgstr "" 1687msgstr ""
1566 1688
1567#: plugins/check_http.c:1513 1689#: plugins/check_http.c:1794
1568msgid "Search page for case-insensitive regex STRING" 1690msgid "Search page for case-insensitive regex STRING"
1569msgstr "" 1691msgstr ""
1570 1692
1571#: plugins/check_http.c:1515 1693#: plugins/check_http.c:1796
1572msgid "Return CRITICAL if found, OK if not\n" 1694msgid "Return CRITICAL if found, OK if not\n"
1573msgstr "" 1695msgstr ""
1574 1696
1575#: plugins/check_http.c:1518 1697#: plugins/check_http.c:1799
1576msgid "Username:password on sites with basic authentication" 1698msgid "Username:password on sites with basic authentication"
1577msgstr "" 1699msgstr ""
1578 1700
1579#: plugins/check_http.c:1520 1701#: plugins/check_http.c:1801
1580msgid "Username:password on proxy-servers with basic authentication" 1702msgid "Username:password on proxy-servers with basic authentication"
1581msgstr "" 1703msgstr ""
1582 1704
1583#: plugins/check_http.c:1522 1705#: plugins/check_http.c:1803
1584msgid "String to be sent in http header as \"User Agent\"" 1706msgid "String to be sent in http header as \"User Agent\""
1585msgstr "" 1707msgstr ""
1586 1708
1587#: plugins/check_http.c:1524 1709#: plugins/check_http.c:1805
1588msgid "" 1710msgid ""
1589"Any other tags to be sent in http header. Use multiple times for additional " 1711"Any other tags to be sent in http header. Use multiple times for additional "
1590"headers" 1712"headers"
1591msgstr "" 1713msgstr ""
1592 1714
1593#: plugins/check_http.c:1526 1715#: plugins/check_http.c:1807
1594msgid "Print additional performance data" 1716msgid "Print additional performance data"
1595msgstr "" 1717msgstr ""
1596 1718
1597#: plugins/check_http.c:1528 1719#: plugins/check_http.c:1809
1720msgid "Print body content below status line"
1721msgstr ""
1722
1723#: plugins/check_http.c:1811
1598msgid "Wrap output in HTML link (obsoleted by urlize)" 1724msgid "Wrap output in HTML link (obsoleted by urlize)"
1599msgstr "" 1725msgstr ""
1600 1726
1601#: plugins/check_http.c:1530 1727#: plugins/check_http.c:1813
1602msgid "How to handle redirected pages. sticky is like follow but stick to the" 1728msgid "How to handle redirected pages. sticky is like follow but stick to the"
1603msgstr "" 1729msgstr ""
1604 1730
1605#: plugins/check_http.c:1531 1731#: plugins/check_http.c:1814
1606msgid "specified IP address. stickyport also ensures port stays the same." 1732msgid "specified IP address. stickyport also ensures port stays the same."
1607msgstr "" 1733msgstr ""
1608 1734
1609#: plugins/check_http.c:1533 1735#: plugins/check_http.c:1816
1736#, fuzzy
1737msgid "Maximal number of redirects (default: "
1738msgstr "PROCS - nombre de processus (défaut)"
1739
1740#: plugins/check_http.c:1819
1610msgid "Minimum page size required (bytes) : Maximum page size required (bytes)" 1741msgid "Minimum page size required (bytes) : Maximum page size required (bytes)"
1611msgstr "" 1742msgstr ""
1612 1743
1613#: plugins/check_http.c:1543 1744#: plugins/check_http.c:1828
1614msgid "This plugin will attempt to open an HTTP connection with the host." 1745msgid "This plugin will attempt to open an HTTP connection with the host."
1615msgstr "Ce plugin va essayer d'ouvrir un connexion SMTP avec l'hôte." 1746msgstr "Ce plugin va essayer d'ouvrir un connexion SMTP avec l'hôte."
1616 1747
1617#: plugins/check_http.c:1544 1748#: plugins/check_http.c:1829
1618msgid "" 1749msgid ""
1619"Successful connects return STATE_OK, refusals and timeouts return " 1750"Successful connects return STATE_OK, refusals and timeouts return "
1620"STATE_CRITICAL" 1751"STATE_CRITICAL"
1621msgstr "" 1752msgstr ""
1622 1753
1623#: plugins/check_http.c:1545 1754#: plugins/check_http.c:1830
1624msgid "" 1755msgid ""
1625"other errors return STATE_UNKNOWN. Successful connects, but incorrect " 1756"other errors return STATE_UNKNOWN. Successful connects, but incorrect "
1626"response" 1757"response"
1627msgstr "" 1758msgstr ""
1628 1759
1629#: plugins/check_http.c:1546 1760#: plugins/check_http.c:1831
1630msgid "" 1761msgid ""
1631"messages from the host result in STATE_WARNING return values. If you are" 1762"messages from the host result in STATE_WARNING return values. If you are"
1632msgstr "" 1763msgstr ""
1633 1764
1634#: plugins/check_http.c:1547 1765#: plugins/check_http.c:1832
1635msgid "" 1766msgid ""
1636"checking a virtual server that uses 'host headers' you must supply the FQDN" 1767"checking a virtual server that uses 'host headers' you must supply the FQDN"
1637msgstr "" 1768msgstr ""
1638 1769
1639#: plugins/check_http.c:1548 1770#: plugins/check_http.c:1833
1640msgid "(fully qualified domain name) as the [host_name] argument." 1771msgid "(fully qualified domain name) as the [host_name] argument."
1641msgstr "" 1772msgstr ""
1642 1773
1643#: plugins/check_http.c:1552 1774#: plugins/check_http.c:1837
1644msgid "This plugin can also check whether an SSL enabled web server is able to" 1775msgid "This plugin can also check whether an SSL enabled web server is able to"
1645msgstr "" 1776msgstr ""
1646 1777
1647#: plugins/check_http.c:1553 1778#: plugins/check_http.c:1838
1648msgid "serve content (optionally within a specified time) or whether the X509 " 1779msgid "serve content (optionally within a specified time) or whether the X509 "
1649msgstr "" 1780msgstr ""
1650 1781
1651#: plugins/check_http.c:1554 1782#: plugins/check_http.c:1839
1652msgid "certificate is still valid for the specified number of days." 1783msgid "certificate is still valid for the specified number of days."
1653msgstr "" 1784msgstr ""
1654 1785
1655#: plugins/check_http.c:1556 1786#: plugins/check_http.c:1841
1656#, fuzzy 1787#, fuzzy
1657msgid "Please note that this plugin does not check if the presented server" 1788msgid "Please note that this plugin does not check if the presented server"
1658msgstr "Ce plugin vérifie le service ntp sur l'hôte" 1789msgstr "Ce plugin vérifie le service ntp sur l'hôte"
1659 1790
1660#: plugins/check_http.c:1557 1791#: plugins/check_http.c:1842
1661msgid "certificate matches the hostname of the server, or if the certificate" 1792msgid "certificate matches the hostname of the server, or if the certificate"
1662msgstr "" 1793msgstr ""
1663 1794
1664#: plugins/check_http.c:1558 1795#: plugins/check_http.c:1843
1665msgid "has a valid chain of trust to one of the locally installed CAs." 1796msgid "has a valid chain of trust to one of the locally installed CAs."
1666msgstr "" 1797msgstr ""
1667 1798
1668#: plugins/check_http.c:1562 1799#: plugins/check_http.c:1847
1669msgid "" 1800msgid ""
1670"When the 'www.verisign.com' server returns its content within 5 seconds," 1801"When the 'www.verisign.com' server returns its content within 5 seconds,"
1671msgstr "" 1802msgstr ""
1672 1803
1673#: plugins/check_http.c:1563 1804#: plugins/check_http.c:1848 plugins/check_http.c:1867
1674msgid "" 1805msgid ""
1675"a STATE_OK will be returned. When the server returns its content but exceeds" 1806"a STATE_OK will be returned. When the server returns its content but exceeds"
1676msgstr "" 1807msgstr ""
1677 1808
1678#: plugins/check_http.c:1564 1809#: plugins/check_http.c:1849 plugins/check_http.c:1868
1679msgid "" 1810msgid ""
1680"the 5-second threshold, a STATE_WARNING will be returned. When an error " 1811"the 5-second threshold, a STATE_WARNING will be returned. When an error "
1681"occurs," 1812"occurs,"
1682msgstr "" 1813msgstr ""
1683 1814
1684#: plugins/check_http.c:1565 1815#: plugins/check_http.c:1850
1685msgid "a STATE_CRITICAL will be returned." 1816msgid "a STATE_CRITICAL will be returned."
1686msgstr "" 1817msgstr ""
1687 1818
1688#: plugins/check_http.c:1568 1819#: plugins/check_http.c:1853
1689msgid "" 1820msgid ""
1690"When the certificate of 'www.verisign.com' is valid for more than 14 days," 1821"When the certificate of 'www.verisign.com' is valid for more than 14 days,"
1691msgstr "" 1822msgstr ""
1692 1823
1693#: plugins/check_http.c:1569 plugins/check_http.c:1575 1824#: plugins/check_http.c:1854 plugins/check_http.c:1860
1694msgid "" 1825msgid ""
1695"a STATE_OK is returned. When the certificate is still valid, but for less " 1826"a STATE_OK is returned. When the certificate is still valid, but for less "
1696"than" 1827"than"
1697msgstr "" 1828msgstr ""
1698 1829
1699#: plugins/check_http.c:1570 1830#: plugins/check_http.c:1855
1700msgid "" 1831msgid ""
1701"14 days, a STATE_WARNING is returned. A STATE_CRITICAL will be returned when" 1832"14 days, a STATE_WARNING is returned. A STATE_CRITICAL will be returned when"
1702msgstr "" 1833msgstr ""
1703 1834
1704#: plugins/check_http.c:1571 1835#: plugins/check_http.c:1856
1705msgid "the certificate is expired." 1836msgid "the certificate is expired."
1706msgstr "le certificat est expiré." 1837msgstr "le certificat est expiré."
1707 1838
1708#: plugins/check_http.c:1574 1839#: plugins/check_http.c:1859
1709msgid "" 1840msgid ""
1710"When the certificate of 'www.verisign.com' is valid for more than 30 days," 1841"When the certificate of 'www.verisign.com' is valid for more than 30 days,"
1711msgstr "" 1842msgstr ""
1712 1843
1713#: plugins/check_http.c:1576 1844#: plugins/check_http.c:1861
1714msgid "30 days, but more than 14 days, a STATE_WARNING is returned." 1845msgid "30 days, but more than 14 days, a STATE_WARNING is returned."
1715msgstr "" 1846msgstr ""
1716 1847
1717#: plugins/check_http.c:1577 1848#: plugins/check_http.c:1862
1718msgid "" 1849msgid ""
1719"A STATE_CRITICAL will be returned when certificate expires in less than 14 " 1850"A STATE_CRITICAL will be returned when certificate expires in less than 14 "
1720"days" 1851"days"
1721msgstr "" 1852msgstr ""
1722 1853
1723#: plugins/check_ldap.c:133 1854#: plugins/check_http.c:1865
1855msgid ""
1856"check_http -I 192.168.100.35 -p 80 -u https://www.verisign.com/ -S -j "
1857"CONNECT -H www.verisign.com "
1858msgstr ""
1859
1860#: plugins/check_http.c:1866
1861msgid ""
1862"all these options are needed: -I <proxy> -p <proxy-port> -u <check-url> -"
1863"S(sl) -j CONNECT -H <webserver>"
1864msgstr ""
1865
1866#: plugins/check_http.c:1869
1867msgid ""
1868"a STATE_CRITICAL will be returned. By adding a colon to the method you can "
1869"set the method used"
1870msgstr ""
1871
1872#: plugins/check_http.c:1870
1873msgid "inside the proxied connection: -j CONNECT:POST"
1874msgstr ""
1875
1876#: plugins/check_ldap.c:142
1724#, c-format 1877#, c-format
1725msgid "Could not connect to the server at port %i\n" 1878msgid "Could not connect to the server at port %i\n"
1726msgstr "Impossible de se connecter au serveur port %i\n" 1879msgstr "Impossible de se connecter au serveur port %i\n"
1727 1880
1728#: plugins/check_ldap.c:142 1881#: plugins/check_ldap.c:151
1729#, c-format 1882#, c-format
1730msgid "Could not set protocol version %d\n" 1883msgid "Could not set protocol version %d\n"
1731msgstr "Impossible d'utiliser le protocole version %d\n" 1884msgstr "Impossible d'utiliser le protocole version %d\n"
1732 1885
1733#: plugins/check_ldap.c:157 1886#: plugins/check_ldap.c:166
1734#, c-format 1887#, c-format
1735msgid "Could not init TLS at port %i!\n" 1888msgid "Could not init TLS at port %i!\n"
1736msgstr "Impossible d'initialiser TLS sur le port %i!\n" 1889msgstr "Impossible d'initialiser TLS sur le port %i!\n"
1737 1890
1738#: plugins/check_ldap.c:161 1891#: plugins/check_ldap.c:170
1739#, c-format 1892#, c-format
1740msgid "TLS not supported by the libraries!\n" 1893msgid "TLS not supported by the libraries!\n"
1741msgstr "TLS n'est pas supporté!\n" 1894msgstr "TLS n'est pas supporté!\n"
1742 1895
1743#: plugins/check_ldap.c:181 1896#: plugins/check_ldap.c:190
1744#, c-format 1897#, c-format
1745msgid "Could not init startTLS at port %i!\n" 1898msgid "Could not init startTLS at port %i!\n"
1746msgstr "Impossible d'initialiser startTLS sur le port %i!\n" 1899msgstr "Impossible d'initialiser startTLS sur le port %i!\n"
1747 1900
1748#: plugins/check_ldap.c:185 1901#: plugins/check_ldap.c:194
1749#, c-format 1902#, c-format
1750msgid "startTLS not supported by the library, needs LDAPv3!\n" 1903msgid "startTLS not supported by the library, needs LDAPv3!\n"
1751msgstr "" 1904msgstr ""
1752"startTLS n'est pas supporté par la librairie LDAP, j'ai besoin de LDAPv3!\n" 1905"startTLS n'est pas supporté par la librairie LDAP, j'ai besoin de LDAPv3!\n"
1753 1906
1754#: plugins/check_ldap.c:195 1907#: plugins/check_ldap.c:204
1755#, c-format 1908#, c-format
1756msgid "Could not bind to the LDAP server\n" 1909msgid "Could not bind to the LDAP server\n"
1757msgstr "Impossible de se connecter au serveur LDAP\n" 1910msgstr "Impossible de se connecter au serveur LDAP\n"
1758 1911
1759#: plugins/check_ldap.c:204 1912#: plugins/check_ldap.c:213
1760#, c-format 1913#, c-format
1761msgid "Could not search/find objectclasses in %s\n" 1914msgid "Could not search/find objectclasses in %s\n"
1762msgstr "Impossible de chercher/trouver les objectclasses dans %s\n" 1915msgstr "Impossible de chercher/trouver les objectclasses dans %s\n"
1763 1916
1764#: plugins/check_ldap.c:227 1917#: plugins/check_ldap.c:252
1918#, fuzzy, c-format
1919msgid "LDAP %s - found %d entries in %.3f seconds|%s %s\n"
1920msgstr "%s - %d octets en %.3f secondes de temps de réponse %s|%s %s"
1921
1922#: plugins/check_ldap.c:265
1765#, c-format 1923#, c-format
1766msgid "LDAP %s - %.3f seconds response time|%s\n" 1924msgid "LDAP %s - %.3f seconds response time|%s\n"
1767msgstr "LDAP %s - %.3f secondes de temps de réponse|%s\n" 1925msgstr "LDAP %s - %.3f secondes de temps de réponse|%s\n"
1768 1926
1769#: plugins/check_ldap.c:339 plugins/check_ldap.c:347 1927#: plugins/check_ldap.c:386 plugins/check_ldap.c:394
1770#, c-format 1928#, c-format
1771msgid "%s cannot be combined with %s" 1929msgid "%s cannot be combined with %s"
1772msgstr "" 1930msgstr ""
1773 1931
1774#: plugins/check_ldap.c:379 1932#: plugins/check_ldap.c:426
1775msgid "Please specify the host name\n" 1933msgid "Please specify the host name\n"
1776msgstr "Veuillez spécifier le nom de l'hôte\n" 1934msgstr "Veuillez spécifier le nom de l'hôte\n"
1777 1935
1778#: plugins/check_ldap.c:382 1936#: plugins/check_ldap.c:429
1779msgid "Please specify the LDAP base\n" 1937msgid "Please specify the LDAP base\n"
1780msgstr "Veuillez spécifier la base LDAP\n" 1938msgstr "Veuillez spécifier la base LDAP\n"
1781 1939
1782#: plugins/check_ldap.c:411 1940#: plugins/check_ldap.c:465
1783msgid "ldap attribute to search (default: \"(objectclass=*)\"" 1941msgid "ldap attribute to search (default: \"(objectclass=*)\""
1784msgstr "" 1942msgstr ""
1785 1943
1786#: plugins/check_ldap.c:413 1944#: plugins/check_ldap.c:467
1787msgid "ldap base (eg. ou=my unit, o=my org, c=at" 1945msgid "ldap base (eg. ou=my unit, o=my org, c=at"
1788msgstr "" 1946msgstr ""
1789 1947
1790#: plugins/check_ldap.c:415 1948#: plugins/check_ldap.c:469
1791msgid "ldap bind DN (if required)" 1949msgid "ldap bind DN (if required)"
1792msgstr "" 1950msgstr ""
1793 1951
1794#: plugins/check_ldap.c:417 1952#: plugins/check_ldap.c:471
1795msgid "ldap password (if required)" 1953msgid ""
1954"ldap password (if required, or set the password through environment variable "
1955"'LDAP_PASSWORD')"
1796msgstr "" 1956msgstr ""
1797 1957
1798#: plugins/check_ldap.c:419 1958#: plugins/check_ldap.c:473
1799msgid "use starttls mechanism introduced in protocol version 3" 1959msgid "use starttls mechanism introduced in protocol version 3"
1800msgstr "utiliser le fonctionnement starttls du protocole version 3" 1960msgstr "utiliser le fonctionnement starttls du protocole version 3"
1801 1961
1802#: plugins/check_ldap.c:421 1962#: plugins/check_ldap.c:475
1803msgid "use ldaps (ldap v2 ssl method). this also sets the default port to" 1963msgid "use ldaps (ldap v2 ssl method). this also sets the default port to"
1804msgstr "" 1964msgstr ""
1805 1965
1806#: plugins/check_ldap.c:425 1966#: plugins/check_ldap.c:479
1807msgid "use ldap protocol version 2" 1967msgid "use ldap protocol version 2"
1808msgstr "utiliser le protocole ldap version 2" 1968msgstr "utiliser le protocole ldap version 2"
1809 1969
1810#: plugins/check_ldap.c:427 1970#: plugins/check_ldap.c:481
1811msgid "use ldap protocol version 3" 1971msgid "use ldap protocol version 3"
1812msgstr "utiliser le protocole ldap version 3" 1972msgstr "utiliser le protocole ldap version 3"
1813 1973
1814#: plugins/check_ldap.c:428 1974#: plugins/check_ldap.c:482
1815msgid "default protocol version:" 1975msgid "default protocol version:"
1816msgstr "version du protocole par défaut:" 1976msgstr "version du protocole par défaut:"
1817 1977
1818#: plugins/check_ldap.c:439 1978#: plugins/check_ldap.c:488
1979#, fuzzy
1980msgid "Number of found entries to result in warning status"
1981msgstr "Décalage résultant en un avertissement (secondes)"
1982
1983#: plugins/check_ldap.c:490
1984#, fuzzy
1985msgid "Number of found entries to result in critical status"
1986msgstr "Décalage résultant en un état critique (secondes)"
1987
1988#: plugins/check_ldap.c:498
1819msgid "If this plugin is called via 'check_ldaps', method 'STARTTLS' will be" 1989msgid "If this plugin is called via 'check_ldaps', method 'STARTTLS' will be"
1820msgstr "" 1990msgstr ""
1821 1991
1822#: plugins/check_ldap.c:440 1992#: plugins/check_ldap.c:499
1823#, c-format 1993#, c-format
1824msgid "" 1994msgid ""
1825" implied (using default port %i) unless --port=636 is specified. In that " 1995" implied (using default port %i) unless --port=636 is specified. In that "
1826"case\n" 1996"case\n"
1827msgstr "" 1997msgstr ""
1828 1998
1829#: plugins/check_ldap.c:441 1999#: plugins/check_ldap.c:500
1830msgid "'SSL on connect' will be used no matter how the plugin was called." 2000msgid "'SSL on connect' will be used no matter how the plugin was called."
1831msgstr "" 2001msgstr ""
1832 2002
1833#: plugins/check_ldap.c:442 2003#: plugins/check_ldap.c:501
1834msgid "" 2004msgid ""
1835"This detection is deprecated, please use 'check_ldap' with the '--starttls' " 2005"This detection is deprecated, please use 'check_ldap' with the '--starttls' "
1836"or '--ssl' flags" 2006"or '--ssl' flags"
1837msgstr "" 2007msgstr ""
1838 2008
1839#: plugins/check_ldap.c:443 2009#: plugins/check_ldap.c:502
1840msgid "to define the behaviour explicitly instead." 2010msgid "to define the behaviour explicitly instead."
1841msgstr "" 2011msgstr ""
1842 2012
1843#: plugins/check_load.c:87 2013#: plugins/check_ldap.c:503
2014msgid "The parameters --warn-entries and --crit-entries are optional."
2015msgstr ""
2016
2017#: plugins/check_load.c:93
1844msgid "Warning threshold must be float or float triplet!\n" 2018msgid "Warning threshold must be float or float triplet!\n"
1845msgstr "Le seuil d'alerte doit être un nombre à virgule flottante!\n" 2019msgstr "Le seuil d'alerte doit être un nombre à virgule flottante!\n"
1846 2020
1847#: plugins/check_load.c:132 plugins/check_load.c:148 2021#: plugins/check_load.c:138 plugins/check_load.c:154
1848#, c-format 2022#, c-format
1849msgid "Error opening %s\n" 2023msgid "Error opening %s\n"
1850msgstr "Erreur à l'ouverture de %s\n" 2024msgstr "Erreur à l'ouverture de %s\n"
1851 2025
1852#: plugins/check_load.c:163 2026#: plugins/check_load.c:169
1853#, fuzzy, c-format 2027#, fuzzy, c-format
1854msgid "could not parse load from uptime: %s\n" 2028msgid "could not parse load from uptime %s: %d\n"
1855msgstr "Lecture des arguments impossible\n" 2029msgstr "Lecture des arguments impossible\n"
1856 2030
1857#: plugins/check_load.c:169 2031#: plugins/check_load.c:175
1858#, c-format 2032#, c-format
1859msgid "Error code %d returned in %s\n" 2033msgid "Error code %d returned in %s\n"
1860msgstr "Le code erreur %d à été retourné par %s\n" 2034msgstr "Le code erreur %d à été retourné par %s\n"
1861 2035
1862#: plugins/check_load.c:184 2036#: plugins/check_load.c:183
1863#, c-format 2037#, c-format
1864msgid "Error in getloadavg()\n" 2038msgid "Error in getloadavg()\n"
1865msgstr "Erreur dans la fonction getloadavg()\n" 2039msgstr "Erreur dans la fonction getloadavg()\n"
1866 2040
1867#: plugins/check_load.c:187 plugins/check_load.c:189 2041#: plugins/check_load.c:186 plugins/check_load.c:188
1868#, c-format 2042#, c-format
1869msgid "Error processing %s\n" 2043msgid "Error processing %s\n"
1870msgstr "Erreur lors de l'utilisation de %s\n" 2044msgstr "Erreur lors de l'utilisation de %s\n"
1871 2045
1872#: plugins/check_load.c:198 2046#: plugins/check_load.c:197 plugins/check_load.c:212
1873#, c-format 2047#, c-format
1874msgid "load average: %.2f, %.2f, %.2f" 2048msgid "load average: %.2f, %.2f, %.2f"
1875msgstr "Charge moyenne: %.2f, %.2f, %.2f" 2049msgstr "Charge moyenne: %.2f, %.2f, %.2f"
1876 2050
1877#: plugins/check_load.c:291 2051#: plugins/check_load.c:327
1878#, c-format 2052#, c-format
1879msgid "Critical threshold for %d-minute load average is not specified\n" 2053msgid "Critical threshold for %d-minute load average is not specified\n"
1880msgstr "" 2054msgstr ""
1881"Le seuil critique pour la charge système après %d minutes n'est pas " 2055"Le seuil critique pour la charge système après %d minutes n'est pas "
1882"spécifié\n" 2056"spécifié\n"
1883 2057
1884#: plugins/check_load.c:293 2058#: plugins/check_load.c:329
1885#, c-format 2059#, c-format
1886msgid "Warning threshold for %d-minute load average is not specified\n" 2060msgid "Warning threshold for %d-minute load average is not specified\n"
1887msgstr "" 2061msgstr ""
1888"Le seuil d'avertissement pour la charge système après %d minutes n'est pas " 2062"Le seuil d'avertissement pour la charge système après %d minutes n'est pas "
1889"spécifié\n" 2063"spécifié\n"
1890 2064
1891#: plugins/check_load.c:295 2065#: plugins/check_load.c:331
1892#, c-format 2066#, c-format
1893msgid "" 2067msgid ""
1894"Parameter inconsistency: %d-minute \"warning load\" is greater than " 2068"Parameter inconsistency: %d-minute \"warning load\" is greater than "
@@ -1897,28 +2071,46 @@ msgstr ""
1897"Arguments Incorrects: %d-minute \"alerte charge système\" est plus grand que " 2071"Arguments Incorrects: %d-minute \"alerte charge système\" est plus grand que "
1898"\"alerte critique charge système\"\n" 2072"\"alerte critique charge système\"\n"
1899 2073
1900#: plugins/check_load.c:311 2074#: plugins/check_load.c:346
1901#, c-format 2075#, c-format
1902msgid "This plugin tests the current system load average." 2076msgid "This plugin tests the current system load average."
1903msgstr "Ce plugin teste la charge système actuelle." 2077msgstr "Ce plugin teste la charge système actuelle."
1904 2078
1905#: plugins/check_load.c:321 2079#: plugins/check_load.c:356
1906msgid "Exit with WARNING status if load average exceeds WLOADn" 2080msgid "Exit with WARNING status if load average exceeds WLOADn"
1907msgstr "" 2081msgstr ""
1908"Sortir avec un résultat AVERTISSEMENT si la charge moyenne dépasse WLOAD" 2082"Sortir avec un résultat AVERTISSEMENT si la charge moyenne dépasse WLOAD"
1909 2083
1910#: plugins/check_load.c:323 2084#: plugins/check_load.c:358
1911msgid "Exit with CRITICAL status if load average exceed CLOADn" 2085msgid "Exit with CRITICAL status if load average exceed CLOADn"
1912msgstr "Sortir avec un résultat CRITIQUE si la charge moyenne excède CLOAD" 2086msgstr "Sortir avec un résultat CRITIQUE si la charge moyenne excède CLOAD"
1913 2087
1914#: plugins/check_load.c:324 2088#: plugins/check_load.c:359
1915msgid "the load average format is the same used by \"uptime\" and \"w\"" 2089msgid "the load average format is the same used by \"uptime\" and \"w\""
1916msgstr "" 2090msgstr ""
1917 2091
1918#: plugins/check_load.c:326 2092#: plugins/check_load.c:361
1919msgid "Divide the load averages by the number of CPUs (when possible)" 2093msgid "Divide the load averages by the number of CPUs (when possible)"
1920msgstr "" 2094msgstr ""
1921 2095
2096#: plugins/check_load.c:363
2097msgid "Number of processes to show when printing the top consuming processes."
2098msgstr ""
2099
2100#: plugins/check_load.c:364
2101msgid "NUMBER_OF_PROCS=0 disables this feature. Default value is 0"
2102msgstr ""
2103
2104#: plugins/check_load.c:401
2105#, c-format
2106msgid "'%s' exited with non-zero status.\n"
2107msgstr ""
2108
2109#: plugins/check_load.c:405
2110#, c-format
2111msgid "some error occurred getting procs list.\n"
2112msgstr ""
2113
1922#: plugins/check_mrtg.c:75 2114#: plugins/check_mrtg.c:75
1923msgid "Could not parse arguments\n" 2115msgid "Could not parse arguments\n"
1924msgstr "Lecture des arguments impossible\n" 2116msgstr "Lecture des arguments impossible\n"
@@ -2096,8 +2288,8 @@ msgid "Unable to process MRTG log file"
2096msgstr "Impossible de traiter le fichier de log de MRTG" 2288msgstr "Impossible de traiter le fichier de log de MRTG"
2097 2289
2098#: plugins/check_mrtgtraf.c:194 2290#: plugins/check_mrtgtraf.c:194
2099#, c-format 2291#, fuzzy, c-format
2100msgid "%s. In = %0.1f %s, %s. Out = %0.1f %s|%s %s\n" 2292msgid "%s. In = %0.1f %s/s, %s. Out = %0.1f %s/s|%s %s\n"
2101msgstr "%s. Entrée = %0.1f %s, %s. Sortie = %0.1f %s|%s %s\n" 2293msgstr "%s. Entrée = %0.1f %s, %s. Sortie = %0.1f %s|%s %s\n"
2102 2294
2103#: plugins/check_mrtgtraf.c:207 2295#: plugins/check_mrtgtraf.c:207
@@ -2181,133 +2373,137 @@ msgstr ""
2181msgid "Usage" 2373msgid "Usage"
2182msgstr "Utilisation" 2374msgstr "Utilisation"
2183 2375
2184#: plugins/check_mysql.c:171 2376#: plugins/check_mysql.c:185
2185#, fuzzy, c-format 2377#, fuzzy, c-format
2186msgid "status store_result error: %s\n" 2378msgid "status store_result error: %s\n"
2187msgstr "erreur slave store_result: %s\n" 2379msgstr "erreur slave store_result: %s\n"
2188 2380
2189#: plugins/check_mysql.c:202 2381#: plugins/check_mysql.c:216
2190#, c-format 2382#, c-format
2191msgid "slave query error: %s\n" 2383msgid "slave query error: %s\n"
2192msgstr "erreur de requête de l'esclave: %s\n" 2384msgstr "erreur de requête de l'esclave: %s\n"
2193 2385
2194#: plugins/check_mysql.c:209 2386#: plugins/check_mysql.c:223
2195#, c-format 2387#, c-format
2196msgid "slave store_result error: %s\n" 2388msgid "slave store_result error: %s\n"
2197msgstr "erreur slave store_result: %s\n" 2389msgstr "erreur slave store_result: %s\n"
2198 2390
2199#: plugins/check_mysql.c:215 2391#: plugins/check_mysql.c:229
2200msgid "No slaves defined" 2392msgid "No slaves defined"
2201msgstr "Pas d'esclave spécifié" 2393msgstr "Pas d'esclave spécifié"
2202 2394
2203#: plugins/check_mysql.c:223 2395#: plugins/check_mysql.c:237
2204#, c-format 2396#, c-format
2205msgid "slave fetch row error: %s\n" 2397msgid "slave fetch row error: %s\n"
2206msgstr "erreur esclave lecture d'une ligne: %s\n" 2398msgstr "erreur esclave lecture d'une ligne: %s\n"
2207 2399
2208#: plugins/check_mysql.c:228 2400#: plugins/check_mysql.c:242
2209#, c-format 2401#, c-format
2210msgid "Slave running: %s" 2402msgid "Slave running: %s"
2211msgstr "L'esclave fonctionne: %s" 2403msgstr "L'esclave fonctionne: %s"
2212 2404
2213#: plugins/check_mysql.c:505 2405#: plugins/check_mysql.c:520
2214msgid "This program tests connections to a MySQL server" 2406msgid "This program tests connections to a MySQL server"
2215msgstr "Ce plugin teste une connexion vers un serveur MySQL" 2407msgstr "Ce plugin teste une connexion vers un serveur MySQL"
2216 2408
2217#: plugins/check_mysql.c:516 2409#: plugins/check_mysql.c:531
2410msgid "Ignore authentication failure and check for mysql connectivity only"
2411msgstr ""
2412
2413#: plugins/check_mysql.c:534
2218msgid "Use the specified socket (has no effect if -H is used)" 2414msgid "Use the specified socket (has no effect if -H is used)"
2219msgstr "" 2415msgstr ""
2220 2416
2221#: plugins/check_mysql.c:519 2417#: plugins/check_mysql.c:537
2222msgid "Check database with indicated name" 2418msgid "Check database with indicated name"
2223msgstr "" 2419msgstr ""
2224 2420
2225#: plugins/check_mysql.c:521 2421#: plugins/check_mysql.c:539
2226msgid "Read from the specified client options file" 2422msgid "Read from the specified client options file"
2227msgstr "" 2423msgstr ""
2228 2424
2229#: plugins/check_mysql.c:523 2425#: plugins/check_mysql.c:541
2230msgid "Use a client options group" 2426msgid "Use a client options group"
2231msgstr "" 2427msgstr ""
2232 2428
2233#: plugins/check_mysql.c:525 2429#: plugins/check_mysql.c:543
2234msgid "Connect using the indicated username" 2430msgid "Connect using the indicated username"
2235msgstr "" 2431msgstr ""
2236 2432
2237#: plugins/check_mysql.c:527 2433#: plugins/check_mysql.c:545
2238msgid "Use the indicated password to authenticate the connection" 2434msgid "Use the indicated password to authenticate the connection"
2239msgstr "" 2435msgstr ""
2240 2436
2241#: plugins/check_mysql.c:528 2437#: plugins/check_mysql.c:546
2242msgid "IMPORTANT: THIS FORM OF AUTHENTICATION IS NOT SECURE!!!" 2438msgid "IMPORTANT: THIS FORM OF AUTHENTICATION IS NOT SECURE!!!"
2243msgstr "" 2439msgstr ""
2244 2440
2245#: plugins/check_mysql.c:529 2441#: plugins/check_mysql.c:547
2246msgid "Your clear-text password could be visible as a process table entry" 2442msgid "Your clear-text password could be visible as a process table entry"
2247msgstr "" 2443msgstr ""
2248 2444
2249#: plugins/check_mysql.c:531 2445#: plugins/check_mysql.c:549
2250msgid "Check if the slave thread is running properly." 2446msgid "Check if the slave thread is running properly."
2251msgstr "" 2447msgstr ""
2252 2448
2253#: plugins/check_mysql.c:533 2449#: plugins/check_mysql.c:551
2254msgid "Exit with WARNING status if slave server is more than INTEGER seconds" 2450msgid "Exit with WARNING status if slave server is more than INTEGER seconds"
2255msgstr "" 2451msgstr ""
2256"Sortir avec un résultat AVERTISSEMENT si le serveur esclave est plus de X " 2452"Sortir avec un résultat AVERTISSEMENT si le serveur esclave est plus de X "
2257 2453
2258#: plugins/check_mysql.c:534 plugins/check_mysql.c:537 2454#: plugins/check_mysql.c:552 plugins/check_mysql.c:555
2259msgid "behind master" 2455msgid "behind master"
2260msgstr "secondes en retard sur le maître" 2456msgstr "secondes en retard sur le maître"
2261 2457
2262#: plugins/check_mysql.c:536 2458#: plugins/check_mysql.c:554
2263msgid "Exit with CRITICAL status if slave server is more then INTEGER seconds" 2459msgid "Exit with CRITICAL status if slave server is more then INTEGER seconds"
2264msgstr "Sortir avec un résultat CRITIQUE si le serveur esclave est plus de X " 2460msgstr "Sortir avec un résultat CRITIQUE si le serveur esclave est plus de X "
2265 2461
2266#: plugins/check_mysql.c:539 2462#: plugins/check_mysql.c:557
2267msgid "Use ssl encryptation" 2463msgid "Use ssl encryption"
2268msgstr "" 2464msgstr ""
2269 2465
2270#: plugins/check_mysql.c:541 2466#: plugins/check_mysql.c:559
2271msgid "Path to CA signing the cert" 2467msgid "Path to CA signing the cert"
2272msgstr "" 2468msgstr ""
2273 2469
2274#: plugins/check_mysql.c:543 2470#: plugins/check_mysql.c:561
2275msgid "Path to SSL certificate" 2471msgid "Path to SSL certificate"
2276msgstr "" 2472msgstr ""
2277 2473
2278#: plugins/check_mysql.c:545 2474#: plugins/check_mysql.c:563
2279msgid "Path to private SSL key" 2475msgid "Path to private SSL key"
2280msgstr "" 2476msgstr ""
2281 2477
2282#: plugins/check_mysql.c:547 2478#: plugins/check_mysql.c:565
2283msgid "Path to CA directory" 2479msgid "Path to CA directory"
2284msgstr "" 2480msgstr ""
2285 2481
2286#: plugins/check_mysql.c:549 2482#: plugins/check_mysql.c:567
2287msgid "List of valid SSL ciphers" 2483msgid "List of valid SSL ciphers"
2288msgstr "" 2484msgstr ""
2289 2485
2290#: plugins/check_mysql.c:553 2486#: plugins/check_mysql.c:571
2291msgid "" 2487msgid ""
2292"There are no required arguments. By default, the local database is checked" 2488"There are no required arguments. By default, the local database is checked"
2293msgstr "" 2489msgstr ""
2294"Il n'y a pas d'arguments nécessaires. Par défaut la base de donnée locale " 2490"Il n'y a pas d'arguments nécessaires. Par défaut la base de donnée locale "
2295"est testée" 2491"est testée"
2296 2492
2297#: plugins/check_mysql.c:554 2493#: plugins/check_mysql.c:572
2298msgid "" 2494msgid ""
2299"using the default unix socket. You can force TCP on localhost by using an" 2495"using the default unix socket. You can force TCP on localhost by using an"
2300msgstr "" 2496msgstr ""
2301 2497
2302#: plugins/check_mysql.c:555 2498#: plugins/check_mysql.c:573
2303msgid "IP address or FQDN ('localhost' will use the socket as well)." 2499msgid "IP address or FQDN ('localhost' will use the socket as well)."
2304msgstr "" 2500msgstr ""
2305 2501
2306#: plugins/check_mysql.c:559 2502#: plugins/check_mysql.c:577
2307msgid "You must specify -p with an empty string to force an empty password," 2503msgid "You must specify -p with an empty string to force an empty password,"
2308msgstr "" 2504msgstr ""
2309 2505
2310#: plugins/check_mysql.c:560 2506#: plugins/check_mysql.c:578
2311msgid "overriding any my.cnf settings." 2507msgid "overriding any my.cnf settings."
2312msgstr "" 2508msgstr ""
2313 2509
@@ -2329,7 +2525,7 @@ msgid "Cannot parse Nagios log file for valid time"
2329msgstr "" 2525msgstr ""
2330"Impossible de trouver une date/heure valide dans le fichier de log de Nagios" 2526"Impossible de trouver une date/heure valide dans le fichier de log de Nagios"
2331 2527
2332#: plugins/check_nagios.c:183 plugins/check_procs.c:356 2528#: plugins/check_nagios.c:183 plugins/check_procs.c:379
2333#, c-format 2529#, c-format
2334msgid "%d process" 2530msgid "%d process"
2335msgid_plural "%d processes" 2531msgid_plural "%d processes"
@@ -2400,7 +2596,7 @@ msgstr ""
2400msgid "Wrong client version - running: %s, required: %s" 2596msgid "Wrong client version - running: %s, required: %s"
2401msgstr "Mauvaise version du client utilisée: %s, nécessaire: %s" 2597msgstr "Mauvaise version du client utilisée: %s, nécessaire: %s"
2402 2598
2403#: plugins/check_nt.c:153 plugins/check_nt.c:218 2599#: plugins/check_nt.c:153 plugins/check_nt.c:239
2404msgid "missing -l parameters" 2600msgid "missing -l parameters"
2405msgstr "Arguments -l manquants" 2601msgstr "Arguments -l manquants"
2406 2602
@@ -2426,524 +2622,551 @@ msgstr " '%lu Charge moyenne minimale'=%lu%%;%lu;%lu;0;100"
2426msgid "not enough values for -l parameters" 2622msgid "not enough values for -l parameters"
2427msgstr "pas assez de valeur pour l'argument -l" 2623msgstr "pas assez de valeur pour l'argument -l"
2428 2624
2429#: plugins/check_nt.c:206 2625#: plugins/check_nt.c:208 plugins/check_nt.c:241
2430#, c-format
2431msgid "System Uptime - %u day(s) %u hour(s) %u minute(s)"
2432msgstr "Système démarré - %u jour(s) %u heure(s) %u minute(s)"
2433
2434#: plugins/check_nt.c:220
2435msgid "wrong -l argument" 2626msgid "wrong -l argument"
2436msgstr "Argument -l erroné" 2627msgstr "Argument -l erroné"
2437 2628
2438#: plugins/check_nt.c:236 2629#: plugins/check_nt.c:225
2630#, fuzzy, c-format
2631msgid "System Uptime - %u day(s) %u hour(s) %u minute(s) |uptime=%lu"
2632msgstr "Système démarré - %u jour(s) %u heure(s) %u minute(s)"
2633
2634#: plugins/check_nt.c:257
2439#, c-format 2635#, c-format
2440msgid "%s:\\ - total: %.2f Gb - used: %.2f Gb (%.0f%%) - free %.2f Gb (%.0f%%)" 2636msgid "%s:\\ - total: %.2f Gb - used: %.2f Gb (%.0f%%) - free %.2f Gb (%.0f%%)"
2441msgstr "" 2637msgstr ""
2442"%s:\\ - total: %.2f Gb - utilisé: %.2f Gb (%.0f%%) - libre %.2f Gb (%.0f%%)" 2638"%s:\\ - total: %.2f Gb - utilisé: %.2f Gb (%.0f%%) - libre %.2f Gb (%.0f%%)"
2443 2639
2444#: plugins/check_nt.c:239 2640#: plugins/check_nt.c:260
2445#, c-format 2641#, c-format
2446msgid "'%s:\\ Used Space'=%.2fGb;%.2f;%.2f;0.00;%.2f" 2642msgid "'%s:\\ Used Space'=%.2fGb;%.2f;%.2f;0.00;%.2f"
2447msgstr "'%s:\\ Espace Utilisé'=%.2fGb;%.2f;%.2f;0.00;%.2f" 2643msgstr "'%s:\\ Espace Utilisé'=%.2fGb;%.2f;%.2f;0.00;%.2f"
2448 2644
2449#: plugins/check_nt.c:253 2645#: plugins/check_nt.c:274
2450msgid "Free disk space : Invalid drive" 2646msgid "Free disk space : Invalid drive"
2451msgstr "Espace disque libre : Lecteur invalide" 2647msgstr "Espace disque libre : Lecteur invalide"
2452 2648
2453#: plugins/check_nt.c:263 2649#: plugins/check_nt.c:284
2454msgid "No service/process specified" 2650msgid "No service/process specified"
2455msgstr "Pas de service/processus spécifié" 2651msgstr "Pas de service/processus spécifié"
2456 2652
2457#: plugins/check_nt.c:271 plugins/check_nt.c:284 plugins/check_nt.c:288 2653#: plugins/check_nt.c:292 plugins/check_nt.c:305 plugins/check_nt.c:309
2458#: plugins/check_nt.c:622 2654#: plugins/check_nt.c:643
2459msgid "could not fetch information from server\n" 2655msgid "could not fetch information from server\n"
2460msgstr "Impossible d'obtenir l'information depuis le serveur\n" 2656msgstr "Impossible d'obtenir l'information depuis le serveur\n"
2461 2657
2462#: plugins/check_nt.c:296 2658#: plugins/check_nt.c:317
2463#, c-format 2659#, fuzzy, c-format
2464msgid "" 2660msgid ""
2465"Memory usage: total:%.2f Mb - used: %.2f Mb (%.0f%%) - free: %.2f Mb (%.0f%%)" 2661"Memory usage: total:%.2f MB - used: %.2f MB (%.0f%%) - free: %.2f MB (%.0f%%)"
2466msgstr "" 2662msgstr ""
2467"Mémoire utilisée: total:%.2f Mb - utilisée: %.2f Mb (%.0f%%) - libre: %.2f " 2663"Mémoire utilisée: total:%.2f Mb - utilisée: %.2f Mb (%.0f%%) - libre: %.2f "
2468"Mb (%.0f%%)" 2664"Mb (%.0f%%)"
2469 2665
2470#: plugins/check_nt.c:299 2666#: plugins/check_nt.c:320
2471#, c-format 2667#, fuzzy, c-format
2472msgid "'Memory usage'=%.2fMb;%.2f;%.2f;0.00;%.2f" 2668msgid "'Memory usage'=%.2fMB;%.2f;%.2f;0.00;%.2f"
2473msgstr "'Mémoire utilisée'=%.2fMb;%.2f;%.2f;0.00;%.2f" 2669msgstr "'Mémoire utilisée'=%.2fMb;%.2f;%.2f;0.00;%.2f"
2474 2670
2475#: plugins/check_nt.c:335 plugins/check_nt.c:420 plugins/check_nt.c:450 2671#: plugins/check_nt.c:356 plugins/check_nt.c:441 plugins/check_nt.c:471
2476msgid "No counter specified" 2672msgid "No counter specified"
2477msgstr "Pas de compteur spécifié" 2673msgstr "Pas de compteur spécifié"
2478 2674
2479#: plugins/check_nt.c:367 2675#: plugins/check_nt.c:388
2480msgid "Minimum value contains non-numbers" 2676msgid "Minimum value contains non-numbers"
2481msgstr "La valeur minimum contient des caractères non numériques" 2677msgstr "La valeur minimum contient des caractères non numériques"
2482 2678
2483#: plugins/check_nt.c:371 2679#: plugins/check_nt.c:392
2484msgid "Maximum value contains non-numbers" 2680msgid "Maximum value contains non-numbers"
2485msgstr "La valeur maximum contient des caractères non numériques" 2681msgstr "La valeur maximum contient des caractères non numériques"
2486 2682
2487#: plugins/check_nt.c:378 2683#: plugins/check_nt.c:399
2488msgid "No unit counter specified" 2684msgid "No unit counter specified"
2489msgstr "Pas de compteur spécifié" 2685msgstr "Pas de compteur spécifié"
2490 2686
2491#: plugins/check_nt.c:465 2687#: plugins/check_nt.c:486
2492msgid "Please specify a variable to check" 2688msgid "Please specify a variable to check"
2493msgstr "Veuillez préciser une variable a vérifier" 2689msgstr "Veuillez préciser une variable a vérifier"
2494 2690
2495#: plugins/check_nt.c:549 2691#: plugins/check_nt.c:570
2496msgid "Server port must be an integer\n" 2692msgid "Server port must be an integer\n"
2497msgstr "Le port du serveur doit être un nombre entier\n" 2693msgstr "Le port du serveur doit être un nombre entier\n"
2498 2694
2499#: plugins/check_nt.c:603 2695#: plugins/check_nt.c:624
2500msgid "You must provide a server address or host name" 2696msgid "You must provide a server address or host name"
2501msgstr "Vous devez spécifier une adresse ou un nom d'hôte" 2697msgstr "Vous devez spécifier une adresse ou un nom d'hôte"
2502 2698
2503#: plugins/check_nt.c:609 2699#: plugins/check_nt.c:630
2504msgid "None" 2700msgid "None"
2505msgstr "Aucun" 2701msgstr "Aucun"
2506 2702
2507#: plugins/check_nt.c:666 2703#: plugins/check_nt.c:687
2508msgid "This plugin collects data from the NSClient service running on a" 2704msgid "This plugin collects data from the NSClient service running on a"
2509msgstr "" 2705msgstr ""
2510"Ce plugin collecte les données depuis le service NSClient tournant sur un" 2706"Ce plugin collecte les données depuis le service NSClient tournant sur un"
2511 2707
2512#: plugins/check_nt.c:667 2708#: plugins/check_nt.c:688
2513msgid "Windows NT/2000/XP/2003 server." 2709msgid "Windows NT/2000/XP/2003 server."
2514msgstr "Serveur Windows NT/2000/XP/2003." 2710msgstr "Serveur Windows NT/2000/XP/2003."
2515 2711
2516#: plugins/check_nt.c:678 2712#: plugins/check_nt.c:699
2517msgid "Name of the host to check" 2713msgid "Name of the host to check"
2518msgstr "Nom de l'hôte à vérifier" 2714msgstr "Nom de l'hôte à vérifier"
2519 2715
2520#: plugins/check_nt.c:680 2716#: plugins/check_nt.c:701
2521msgid "Optional port number (default: " 2717msgid "Optional port number (default: "
2522msgstr "Numéro de port optionnel (défaut: " 2718msgstr "Numéro de port optionnel (défaut: "
2523 2719
2524#: plugins/check_nt.c:683 2720#: plugins/check_nt.c:704
2525msgid "Password needed for the request" 2721msgid "Password needed for the request"
2526msgstr "Mot de passe nécessaire pour la requête" 2722msgstr "Mot de passe nécessaire pour la requête"
2527 2723
2528#: plugins/check_nt.c:685 plugins/check_nwstat.c:1661 2724#: plugins/check_nt.c:706 plugins/check_nwstat.c:1661
2529#: plugins/check_overcr.c:432 2725#: plugins/check_overcr.c:432
2530msgid "Threshold which will result in a warning status" 2726msgid "Threshold which will result in a warning status"
2531msgstr "" 2727msgstr ""
2532 2728
2533#: plugins/check_nt.c:687 plugins/check_nwstat.c:1663 2729#: plugins/check_nt.c:708 plugins/check_nwstat.c:1663
2534#: plugins/check_overcr.c:434 2730#: plugins/check_overcr.c:434
2535msgid "Threshold which will result in a critical status" 2731msgid "Threshold which will result in a critical status"
2536msgstr "" 2732msgstr ""
2537 2733
2538#: plugins/check_nt.c:689 2734#: plugins/check_nt.c:710
2539msgid "Seconds before connection attempt times out (default: " 2735msgid "Seconds before connection attempt times out (default: "
2540msgstr "" 2736msgstr ""
2541 2737
2542#: plugins/check_nt.c:691 2738#: plugins/check_nt.c:712
2543msgid "Parameters passed to specified check (see below)" 2739msgid "Parameters passed to specified check (see below)"
2544msgstr "" 2740msgstr ""
2545 2741
2546#: plugins/check_nt.c:693 2742#: plugins/check_nt.c:714
2547msgid "Display options (currently only SHOWALL works)" 2743msgid "Display options (currently only SHOWALL works)"
2548msgstr "" 2744msgstr ""
2549 2745
2550#: plugins/check_nt.c:695 2746#: plugins/check_nt.c:716
2551msgid "Return UNKNOWN on timeouts" 2747msgid "Return UNKNOWN on timeouts"
2552msgstr "" 2748msgstr ""
2553 2749
2554#: plugins/check_nt.c:698 2750#: plugins/check_nt.c:719
2555msgid "Print this help screen" 2751msgid "Print this help screen"
2556msgstr "Afficher l'écran d'aide" 2752msgstr "Afficher l'écran d'aide"
2557 2753
2558#: plugins/check_nt.c:700 2754#: plugins/check_nt.c:721
2559msgid "Print version information" 2755msgid "Print version information"
2560msgstr "Afficher la version" 2756msgstr "Afficher la version"
2561 2757
2562#: plugins/check_nt.c:702 2758#: plugins/check_nt.c:723
2563msgid "Variable to check" 2759msgid "Variable to check"
2564msgstr "Variable a vérifier" 2760msgstr "Variable a vérifier"
2565 2761
2566#: plugins/check_nt.c:703 2762#: plugins/check_nt.c:724
2567msgid "Valid variables are:" 2763msgid "Valid variables are:"
2568msgstr "Les variables valides sont" 2764msgstr "Les variables valides sont"
2569 2765
2570#: plugins/check_nt.c:705 2766#: plugins/check_nt.c:726
2571msgid "Get the NSClient version" 2767msgid "Get the NSClient version"
2572msgstr "Obtenir la version de NSClient" 2768msgstr "Obtenir la version de NSClient"
2573 2769
2574#: plugins/check_nt.c:706 2770#: plugins/check_nt.c:727
2575msgid "If -l <version> is specified, will return warning if versions differ." 2771msgid "If -l <version> is specified, will return warning if versions differ."
2576msgstr "" 2772msgstr ""
2577"si l'argument -l <version> est spécifié, une alerte AVERTISSEMENT sera " 2773"si l'argument -l <version> est spécifié, une alerte AVERTISSEMENT sera "
2578"renvoyée, si les versions sont différentes." 2774"renvoyée, si les versions sont différentes."
2579 2775
2580#: plugins/check_nt.c:708 2776#: plugins/check_nt.c:729
2581msgid "Average CPU load on last x minutes." 2777msgid "Average CPU load on last x minutes."
2582msgstr "Moyenne de la charge CPU sur les dernières x minutes." 2778msgstr "Moyenne de la charge CPU sur les dernières x minutes."
2583 2779
2584#: plugins/check_nt.c:709 2780#: plugins/check_nt.c:730
2585msgid "Request a -l parameter with the following syntax:" 2781msgid "Request a -l parameter with the following syntax:"
2586msgstr "Demande un paramètre -l avec la syntaxe suivante:" 2782msgstr "Demande un paramètre -l avec la syntaxe suivante:"
2587 2783
2588#: plugins/check_nt.c:710 2784#: plugins/check_nt.c:731
2589msgid "-l <minutes range>,<warning threshold>,<critical threshold>." 2785msgid "-l <minutes range>,<warning threshold>,<critical threshold>."
2590msgstr "-l <plage de minutes>,<seuil d'avertissement>,<seuil critique>." 2786msgstr "-l <plage de minutes>,<seuil d'avertissement>,<seuil critique>."
2591 2787
2592#: plugins/check_nt.c:711 2788#: plugins/check_nt.c:732
2593msgid "<minute range> should be less than 24*60." 2789msgid "<minute range> should be less than 24*60."
2594msgstr "<plage de minutes> devrait être inférieur à 24*60." 2790msgstr "<plage de minutes> devrait être inférieur à 24*60."
2595 2791
2596#: plugins/check_nt.c:712 2792#: plugins/check_nt.c:733
2597msgid "" 2793msgid ""
2598"Thresholds are percentage and up to 10 requests can be done in one shot." 2794"Thresholds are percentage and up to 10 requests can be done in one shot."
2599msgstr "" 2795msgstr ""
2600"Les seuils sonts en pourcentage et un maximum de 10 requêtes peuvent être " 2796"Les seuils sonts en pourcentage et un maximum de 10 requêtes peuvent être "
2601"effectuées à la fois." 2797"effectuées à la fois."
2602 2798
2603#: plugins/check_nt.c:715 2799#: plugins/check_nt.c:736
2604msgid "Get the uptime of the machine." 2800msgid "Get the uptime of the machine."
2605msgstr "Obtenir le temps de service de la machine." 2801msgstr "Obtenir le temps de service de la machine."
2606 2802
2607#: plugins/check_nt.c:716 2803#: plugins/check_nt.c:737
2608msgid "No specific parameters. No warning or critical threshold" 2804msgid "-l <unit> "
2609msgstr "Pas d'argument spécifique. Pas de seuil d'avertissement ou critique" 2805msgstr ""
2806
2807#: plugins/check_nt.c:738
2808msgid "<unit> = seconds, minutes, hours, or days. (default: minutes)"
2809msgstr ""
2810
2811#: plugins/check_nt.c:739
2812#, fuzzy
2813msgid "Thresholds will use the unit specified above."
2814msgstr "Ce plugin va vérifier l'heure sur l'hôte spécifié."
2610 2815
2611#: plugins/check_nt.c:718 2816#: plugins/check_nt.c:741
2612msgid "Size and percentage of disk use." 2817msgid "Size and percentage of disk use."
2613msgstr "Taille et pourcentage de l'utilisation disque." 2818msgstr "Taille et pourcentage de l'utilisation disque."
2614 2819
2615#: plugins/check_nt.c:719 2820#: plugins/check_nt.c:742
2616msgid "Request a -l parameter containing the drive letter only." 2821msgid "Request a -l parameter containing the drive letter only."
2617msgstr "Demande un paramètre -l contennant uniquement la lettre du lecteur." 2822msgstr "Demande un paramètre -l contennant uniquement la lettre du lecteur."
2618 2823
2619#: plugins/check_nt.c:720 plugins/check_nt.c:723 2824#: plugins/check_nt.c:743 plugins/check_nt.c:746
2620msgid "Warning and critical thresholds can be specified with -w and -c." 2825msgid "Warning and critical thresholds can be specified with -w and -c."
2621msgstr "Les seuils d'alerte et critiques peuvent être spécifiés avec -w et -c." 2826msgstr "Les seuils d'alerte et critiques peuvent être spécifiés avec -w et -c."
2622 2827
2623#: plugins/check_nt.c:722 2828#: plugins/check_nt.c:745
2624msgid "Memory use." 2829msgid "Memory use."
2625msgstr "Mémoire utilisée." 2830msgstr "Mémoire utilisée."
2626 2831
2627#: plugins/check_nt.c:725 2832#: plugins/check_nt.c:748
2628msgid "Check the state of one or several services." 2833msgid "Check the state of one or several services."
2629msgstr "Vérifier l'état d'un ou plusieurs services." 2834msgstr "Vérifier l'état d'un ou plusieurs services."
2630 2835
2631#: plugins/check_nt.c:726 plugins/check_nt.c:735 2836#: plugins/check_nt.c:749 plugins/check_nt.c:758
2632msgid "Request a -l parameters with the following syntax:" 2837msgid "Request a -l parameters with the following syntax:"
2633msgstr "Demande un paramètre -l avec la syntaxe suivante:" 2838msgstr "Demande un paramètre -l avec la syntaxe suivante:"
2634 2839
2635#: plugins/check_nt.c:727 2840#: plugins/check_nt.c:750
2636msgid "-l <service1>,<service2>,<service3>,..." 2841msgid "-l <service1>,<service2>,<service3>,..."
2637msgstr "-l <service1>,<service2>,<service3>,..." 2842msgstr "-l <service1>,<service2>,<service3>,..."
2638 2843
2639#: plugins/check_nt.c:728 2844#: plugins/check_nt.c:751
2640msgid "You can specify -d SHOWALL in case you want to see working services" 2845msgid "You can specify -d SHOWALL in case you want to see working services"
2641msgstr "Vous pouvez spécifier -d SHOWALL pour voir les services fonctionnant" 2846msgstr "Vous pouvez spécifier -d SHOWALL pour voir les services fonctionnant"
2642 2847
2643#: plugins/check_nt.c:729 2848#: plugins/check_nt.c:752
2644msgid "in the returned string." 2849msgid "in the returned string."
2645msgstr "dans la chaîne de caractère renvoyée." 2850msgstr "dans la chaîne de caractère renvoyée."
2646 2851
2647#: plugins/check_nt.c:731 2852#: plugins/check_nt.c:754
2648msgid "Check if one or several process are running." 2853msgid "Check if one or several process are running."
2649msgstr "Vérifie si un ou plusieurs processus sont démarrés." 2854msgstr "Vérifie si un ou plusieurs processus sont démarrés."
2650 2855
2651#: plugins/check_nt.c:732 2856#: plugins/check_nt.c:755
2652msgid "Same syntax as SERVICESTATE." 2857msgid "Same syntax as SERVICESTATE."
2653msgstr "Même syntaxe que SERVICESTATE." 2858msgstr "Même syntaxe que SERVICESTATE."
2654 2859
2655#: plugins/check_nt.c:734 2860#: plugins/check_nt.c:757
2656msgid "Check any performance counter of Windows NT/2000." 2861msgid "Check any performance counter of Windows NT/2000."
2657msgstr "Vérifier n'importe quel compteur de performance sur Windows NT/2000." 2862msgstr "Vérifier n'importe quel compteur de performance sur Windows NT/2000."
2658 2863
2659#: plugins/check_nt.c:736 2864#: plugins/check_nt.c:759
2660msgid "-l \"\\\\<performance object>\\\\counter\",\"<description>" 2865msgid "-l \"\\\\<performance object>\\\\counter\",\"<description>"
2661msgstr "-l \"\\\\<catégorie>\\\\compteur\",\"<description>" 2866msgstr "-l \"\\\\<catégorie>\\\\compteur\",\"<description>"
2662 2867
2663#: plugins/check_nt.c:737 2868#: plugins/check_nt.c:760
2664msgid "The <description> parameter is optional and is given to a printf " 2869msgid "The <description> parameter is optional and is given to a printf "
2665msgstr "Le paramètre <description> est optionnel et est passé à la fonction " 2870msgstr "Le paramètre <description> est optionnel et est passé à la fonction "
2666 2871
2667#: plugins/check_nt.c:738 2872#: plugins/check_nt.c:761
2668msgid "output command which requires a float parameter." 2873msgid "output command which requires a float parameter."
2669msgstr "de sortie printf qui demande un paramètre de type float." 2874msgstr "de sortie printf qui demande un paramètre de type float."
2670 2875
2671#: plugins/check_nt.c:739 2876#: plugins/check_nt.c:762
2672#, c-format 2877#, c-format
2673msgid "If <description> does not include \"%%\", it is used as a label." 2878msgid "If <description> does not include \"%%\", it is used as a label."
2674msgstr "Si <description> n'inclus pas \"%%\", il est utilisé comme étiquette." 2879msgstr "Si <description> n'inclus pas \"%%\", il est utilisé comme étiquette."
2675 2880
2676#: plugins/check_nt.c:740 plugins/check_nt.c:755 2881#: plugins/check_nt.c:763 plugins/check_nt.c:778
2677msgid "Some examples:" 2882msgid "Some examples:"
2678msgstr "Exemples:" 2883msgstr "Exemples:"
2679 2884
2680#: plugins/check_nt.c:744 2885#: plugins/check_nt.c:767
2681msgid "Check any performance counter object of Windows NT/2000." 2886msgid "Check any performance counter object of Windows NT/2000."
2682msgstr "Vérifie n'importe quel compteur de performance de Windows NT/2000." 2887msgstr "Vérifie n'importe quel compteur de performance de Windows NT/2000."
2683 2888
2684#: plugins/check_nt.c:745 2889#: plugins/check_nt.c:768
2685msgid "" 2890msgid ""
2686"Syntax: check_nt -H <hostname> -p <port> -v INSTANCES -l <counter object>" 2891"Syntax: check_nt -H <hostname> -p <port> -v INSTANCES -l <counter object>"
2687msgstr "" 2892msgstr ""
2688 2893
2689#: plugins/check_nt.c:746 2894#: plugins/check_nt.c:769
2690msgid "<counter object> is a Windows Perfmon Counter object (eg. Process)," 2895msgid "<counter object> is a Windows Perfmon Counter object (eg. Process),"
2691msgstr "" 2896msgstr ""
2692 2897
2693#: plugins/check_nt.c:747 2898#: plugins/check_nt.c:770
2694msgid "if it is two words, it should be enclosed in quotes" 2899msgid "if it is two words, it should be enclosed in quotes"
2695msgstr "" 2900msgstr ""
2696 2901
2697#: plugins/check_nt.c:748 2902#: plugins/check_nt.c:771
2698msgid "The returned results will be a comma-separated list of instances on " 2903msgid "The returned results will be a comma-separated list of instances on "
2699msgstr "" 2904msgstr ""
2700 2905
2701#: plugins/check_nt.c:749 2906#: plugins/check_nt.c:772
2702msgid " the selected computer for that object." 2907msgid " the selected computer for that object."
2703msgstr "" 2908msgstr ""
2704 2909
2705#: plugins/check_nt.c:750 2910#: plugins/check_nt.c:773
2706msgid "" 2911msgid ""
2707"The purpose of this is to be run from command line to determine what " 2912"The purpose of this is to be run from command line to determine what "
2708"instances" 2913"instances"
2709msgstr "" 2914msgstr ""
2710 2915
2711#: plugins/check_nt.c:751 2916#: plugins/check_nt.c:774
2712msgid "" 2917msgid ""
2713" are available for monitoring without having to log onto the Windows server" 2918" are available for monitoring without having to log onto the Windows server"
2714msgstr "" 2919msgstr ""
2715 2920
2716#: plugins/check_nt.c:752 2921#: plugins/check_nt.c:775
2717msgid " to run Perfmon directly." 2922msgid " to run Perfmon directly."
2718msgstr "" 2923msgstr ""
2719 2924
2720#: plugins/check_nt.c:753 2925#: plugins/check_nt.c:776
2721msgid "" 2926msgid ""
2722"It can also be used in scripts that automatically create the monitoring " 2927"It can also be used in scripts that automatically create the monitoring "
2723"service" 2928"service"
2724msgstr "" 2929msgstr ""
2725 2930
2726#: plugins/check_nt.c:754 2931#: plugins/check_nt.c:777
2727msgid " configuration files." 2932msgid " configuration files."
2728msgstr "" 2933msgstr ""
2729 2934
2730#: plugins/check_nt.c:756 2935#: plugins/check_nt.c:779
2731msgid "check_nt -H 192.168.1.1 -p 1248 -v INSTANCES -l Process" 2936msgid "check_nt -H 192.168.1.1 -p 1248 -v INSTANCES -l Process"
2732msgstr "" 2937msgstr ""
2733 2938
2734#: plugins/check_nt.c:759 2939#: plugins/check_nt.c:782
2735msgid "" 2940msgid ""
2736"- The NSClient service should be running on the server to get any information" 2941"- The NSClient service should be running on the server to get any information"
2737msgstr "" 2942msgstr ""
2738"- Le service NSClient doit rouler sur le serveur pour obtenir les " 2943"- Le service NSClient doit rouler sur le serveur pour obtenir les "
2739"informations" 2944"informations"
2740 2945
2741#: plugins/check_nt.c:761 2946#: plugins/check_nt.c:784
2742msgid "- Critical thresholds should be lower than warning thresholds" 2947msgid "- Critical thresholds should be lower than warning thresholds"
2743msgstr "" 2948msgstr ""
2744"- Les seuils critiques doivent être plus bas que les seuils d'avertissement" 2949"- Les seuils critiques doivent être plus bas que les seuils d'avertissement"
2745 2950
2746#: plugins/check_nt.c:762 2951#: plugins/check_nt.c:785
2747msgid "- Default port 1248 is sometimes in use by other services. The error" 2952msgid "- Default port 1248 is sometimes in use by other services. The error"
2748msgstr "" 2953msgstr ""
2749"- Le port par défaut 1248 est parfois utilisé par d'autres services. L'erreur" 2954"- Le port par défaut 1248 est parfois utilisé par d'autres services. L'erreur"
2750 2955
2751#: plugins/check_nt.c:763 2956#: plugins/check_nt.c:786
2752msgid "" 2957msgid ""
2753"output when this happens contains \"Cannot map xxxxx to protocol number\"." 2958"output when this happens contains \"Cannot map xxxxx to protocol number\"."
2754msgstr "qui en résulte contiens \"Cannot map xxxxx to protocol number\"." 2959msgstr "qui en résulte contiens \"Cannot map xxxxx to protocol number\"."
2755 2960
2756#: plugins/check_nt.c:764 2961#: plugins/check_nt.c:787
2757msgid "One fix for this is to change the port to something else on check_nt " 2962msgid "One fix for this is to change the port to something else on check_nt "
2758msgstr "" 2963msgstr ""
2759"Une possibilité pour corriger ce problème est de changer le port dans " 2964"Une possibilité pour corriger ce problème est de changer le port dans "
2760"check_nt " 2965"check_nt "
2761 2966
2762#: plugins/check_nt.c:765 2967#: plugins/check_nt.c:788
2763msgid "and on the client service it's connecting to." 2968msgid "and on the client service it's connecting to."
2764msgstr "et dans le service auquel il se connecte." 2969msgstr "et dans le service auquel il se connecte."
2765 2970
2766#: plugins/check_ntp.c:807 plugins/check_ntp_peer.c:612 2971#: plugins/check_ntp.c:629
2767#: plugins/check_ntp_time.c:571 2972#, c-format
2973msgid "jitter response too large (%lu bytes)\n"
2974msgstr ""
2975
2976#: plugins/check_ntp.c:817 plugins/check_ntp_peer.c:619
2977#: plugins/check_ntp_time.c:576
2768msgid "NTP CRITICAL:" 2978msgid "NTP CRITICAL:"
2769msgstr "NTP CRITIQUE:" 2979msgstr "NTP CRITIQUE:"
2770 2980
2771#: plugins/check_ntp.c:810 plugins/check_ntp_peer.c:615 2981#: plugins/check_ntp.c:820 plugins/check_ntp_peer.c:622
2772#: plugins/check_ntp_time.c:574 2982#: plugins/check_ntp_time.c:579
2773msgid "NTP WARNING:" 2983msgid "NTP WARNING:"
2774msgstr "NTP AVERTISSEMENT:" 2984msgstr "NTP AVERTISSEMENT:"
2775 2985
2776#: plugins/check_ntp.c:813 plugins/check_ntp_peer.c:618 2986#: plugins/check_ntp.c:823 plugins/check_ntp_peer.c:625
2777#: plugins/check_ntp_time.c:577 2987#: plugins/check_ntp_time.c:582
2778msgid "NTP OK:" 2988msgid "NTP OK:"
2779msgstr "NTP OK:" 2989msgstr "NTP OK:"
2780 2990
2781#: plugins/check_ntp.c:816 plugins/check_ntp_peer.c:621 2991#: plugins/check_ntp.c:826 plugins/check_ntp_peer.c:628
2782#: plugins/check_ntp_time.c:580 2992#: plugins/check_ntp_time.c:585
2783msgid "NTP UNKNOWN:" 2993msgid "NTP UNKNOWN:"
2784msgstr "NTP INCONNU:" 2994msgstr "NTP INCONNU:"
2785 2995
2786#: plugins/check_ntp.c:820 plugins/check_ntp_peer.c:630 2996#: plugins/check_ntp.c:830 plugins/check_ntp_peer.c:637
2787#: plugins/check_ntp_time.c:584 2997#: plugins/check_ntp_time.c:589
2788msgid "Offset unknown" 2998msgid "Offset unknown"
2789msgstr "Décalage inconnu" 2999msgstr "Décalage inconnu"
2790 3000
2791#: plugins/check_ntp.c:823 plugins/check_ntp_peer.c:633 3001#: plugins/check_ntp.c:833 plugins/check_ntp_peer.c:640
2792#: plugins/check_ntp_time.c:587 3002#: plugins/check_ntp_peer.c:642 plugins/check_ntp_peer.c:644
3003#: plugins/check_ntp_time.c:592
2793msgid "Offset" 3004msgid "Offset"
2794msgstr "Décalage" 3005msgstr "Décalage"
2795 3006
2796#: plugins/check_ntp.c:844 plugins/check_ntp_peer.c:662 3007#: plugins/check_ntp.c:854 plugins/check_ntp_peer.c:690
2797msgid "This plugin checks the selected ntp server" 3008msgid "This plugin checks the selected ntp server"
2798msgstr "Ce plugin vérifie le service ntp sur l'hôte" 3009msgstr "Ce plugin vérifie le service ntp sur l'hôte"
2799 3010
2800#: plugins/check_ntp.c:854 plugins/check_ntp_peer.c:674 3011#: plugins/check_ntp.c:864 plugins/check_ntp_peer.c:702
2801#: plugins/check_ntp_time.c:614 3012#: plugins/check_ntp_time.c:619
2802msgid "Offset to result in warning status (seconds)" 3013msgid "Offset to result in warning status (seconds)"
2803msgstr "Décalage résultant en un avertissement (secondes)" 3014msgstr "Décalage résultant en un avertissement (secondes)"
2804 3015
2805#: plugins/check_ntp.c:856 plugins/check_ntp_peer.c:676 3016#: plugins/check_ntp.c:866 plugins/check_ntp_peer.c:704
2806#: plugins/check_ntp_time.c:616 3017#: plugins/check_ntp_time.c:621
2807msgid "Offset to result in critical status (seconds)" 3018msgid "Offset to result in critical status (seconds)"
2808msgstr "Décalage résultant en un état critique (secondes)" 3019msgstr "Décalage résultant en un état critique (secondes)"
2809 3020
2810#: plugins/check_ntp.c:858 plugins/check_ntp_peer.c:682 3021#: plugins/check_ntp.c:868 plugins/check_ntp_peer.c:710
2811msgid "Warning threshold for jitter" 3022msgid "Warning threshold for jitter"
2812msgstr "Seuil d'avertissement pour la variation (jitter)" 3023msgstr "Seuil d'avertissement pour la variation (jitter)"
2813 3024
2814#: plugins/check_ntp.c:860 plugins/check_ntp_peer.c:684 3025#: plugins/check_ntp.c:870 plugins/check_ntp_peer.c:712
2815msgid "Critical threshold for jitter" 3026msgid "Critical threshold for jitter"
2816msgstr "Seuil critique pour la variation (jitter)" 3027msgstr "Seuil critique pour la variation (jitter)"
2817 3028
2818#: plugins/check_ntp.c:870 3029#: plugins/check_ntp.c:880
2819msgid "Normal offset check:" 3030msgid "Normal offset check:"
2820msgstr "Vérification normale du décalage:" 3031msgstr "Vérification normale du décalage:"
2821 3032
2822#: plugins/check_ntp.c:873 plugins/check_ntp_peer.c:709 3033#: plugins/check_ntp.c:883 plugins/check_ntp_peer.c:737
2823msgid "" 3034msgid ""
2824"Check jitter too, avoiding critical notifications if jitter isn't available" 3035"Check jitter too, avoiding critical notifications if jitter isn't available"
2825msgstr "" 3036msgstr ""
2826"Vérifier aussi la variation (jitter) en évitant les notifications s'il n'est " 3037"Vérifier aussi la variation (jitter) en évitant les notifications s'il n'est "
2827"pas dispoible" 3038"pas dispoible"
2828 3039
2829#: plugins/check_ntp.c:874 plugins/check_ntp_peer.c:710 3040#: plugins/check_ntp.c:884 plugins/check_ntp_peer.c:738
2830msgid "(See Notes above for more details on thresholds formats):" 3041msgid "(See Notes above for more details on thresholds formats):"
2831msgstr "" 3042msgstr ""
2832"(Voir les Notes ci-dessus pour plus de détails sur le format des seuils)" 3043"(Voir les Notes ci-dessus pour plus de détails sur le format des seuils)"
2833 3044
2834#: plugins/check_ntp.c:879 plugins/check_ntp.c:886 3045#: plugins/check_ntp.c:889 plugins/check_ntp.c:896
2835msgid "WARNING: check_ntp is deprecated. Please use check_ntp_peer or" 3046msgid "WARNING: check_ntp is deprecated. Please use check_ntp_peer or"
2836msgstr "ATTENTION: check_ntp est périmé, utilisez plutôt check_ntp_peer" 3047msgstr "ATTENTION: check_ntp est périmé, utilisez plutôt check_ntp_peer"
2837 3048
2838#: plugins/check_ntp.c:880 plugins/check_ntp.c:887 3049#: plugins/check_ntp.c:890 plugins/check_ntp.c:897
2839msgid "check_ntp_time instead." 3050msgid "check_ntp_time instead."
2840msgstr "ou check_ntp_time." 3051msgstr "ou check_ntp_time."
2841 3052
2842#: plugins/check_ntp_peer.c:625 3053#: plugins/check_ntp_peer.c:632
2843msgid "Server not synchronized" 3054msgid "Server not synchronized"
2844msgstr "Le serveur n'est pas synchronisé" 3055msgstr "Le serveur n'est pas synchronisé"
2845 3056
2846#: plugins/check_ntp_peer.c:627 3057#: plugins/check_ntp_peer.c:634
2847msgid "Server has the LI_ALARM bit set" 3058msgid "Server has the LI_ALARM bit set"
2848msgstr "" 3059msgstr ""
2849 3060
2850#: plugins/check_ntp_peer.c:672 3061#: plugins/check_ntp_peer.c:700
2851msgid "" 3062msgid ""
2852"Returns UNKNOWN instead of CRITICAL or WARNING if server isn't synchronized" 3063"Returns UNKNOWN instead of CRITICAL or WARNING if server isn't synchronized"
2853msgstr "" 3064msgstr ""
2854"Retourne INCONNU au lieu de CRITIQUE ou AVERTISSEMENT si le serveur n'est " 3065"Retourne INCONNU au lieu de CRITIQUE ou AVERTISSEMENT si le serveur n'est "
2855"pas synchronisé" 3066"pas synchronisé"
2856 3067
2857#: plugins/check_ntp_peer.c:678 3068#: plugins/check_ntp_peer.c:706
2858#, fuzzy 3069#, fuzzy
2859msgid "Warning threshold for stratum of server's synchronization peer" 3070msgid "Warning threshold for stratum of server's synchronization peer"
2860msgstr "Seuil d'avertissement pour le stratum" 3071msgstr "Seuil d'avertissement pour le stratum"
2861 3072
2862#: plugins/check_ntp_peer.c:680 3073#: plugins/check_ntp_peer.c:708
2863#, fuzzy 3074#, fuzzy
2864msgid "Critical threshold for stratum of server's synchronization peer" 3075msgid "Critical threshold for stratum of server's synchronization peer"
2865msgstr "Seuil critique pour le stratum" 3076msgstr "Seuil critique pour le stratum"
2866 3077
2867#: plugins/check_ntp_peer.c:686 3078#: plugins/check_ntp_peer.c:714
2868msgid "Warning threshold for number of usable time sources (\"truechimers\")" 3079msgid "Warning threshold for number of usable time sources (\"truechimers\")"
2869msgstr "" 3080msgstr ""
2870"Seuil d'avertissement pour le nombre de sources de temps utilisable " 3081"Seuil d'avertissement pour le nombre de sources de temps utilisable "
2871"(\"truechimers\")" 3082"(\"truechimers\")"
2872 3083
2873#: plugins/check_ntp_peer.c:688 3084#: plugins/check_ntp_peer.c:716
2874msgid "Critical threshold for number of usable time sources (\"truechimers\")" 3085msgid "Critical threshold for number of usable time sources (\"truechimers\")"
2875msgstr "" 3086msgstr ""
2876"Seuil critique pour le nombre de sources de temps utilisable (\"truechimers" 3087"Seuil critique pour le nombre de sources de temps utilisable "
2877"\")" 3088"(\"truechimers\")"
2878 3089
2879#: plugins/check_ntp_peer.c:693 3090#: plugins/check_ntp_peer.c:721
2880msgid "This plugin checks an NTP server independent of any commandline" 3091msgid "This plugin checks an NTP server independent of any commandline"
2881msgstr "Ce plugin vérifie un serveur NTP sans recours aux programmes de" 3092msgstr "Ce plugin vérifie un serveur NTP sans recours aux programmes de"
2882 3093
2883#: plugins/check_ntp_peer.c:694 3094#: plugins/check_ntp_peer.c:722
2884msgid "programs or external libraries." 3095msgid "programs or external libraries."
2885msgstr "la ligne de commande ou libraries externes" 3096msgstr "la ligne de commande ou libraries externes"
2886 3097
2887#: plugins/check_ntp_peer.c:697 3098#: plugins/check_ntp_peer.c:725
2888msgid "Use this plugin to check the health of an NTP server. It supports" 3099msgid "Use this plugin to check the health of an NTP server. It supports"
2889msgstr "" 3100msgstr ""
2890"Utilisez ce plugin pour vérifier le service NTP sur l'hôte. Il supporte la" 3101"Utilisez ce plugin pour vérifier le service NTP sur l'hôte. Il supporte la"
2891 3102
2892#: plugins/check_ntp_peer.c:698 3103#: plugins/check_ntp_peer.c:726
2893msgid "checking the offset with the sync peer, the jitter and stratum. This" 3104msgid "checking the offset with the sync peer, the jitter and stratum. This"
2894msgstr "" 3105msgstr ""
2895"vérification du décalage avec le pair se synchronisation, la variation " 3106"vérification du décalage avec le pair se synchronisation, la variation "
2896"(jitter) et le stratum." 3107"(jitter) et le stratum."
2897 3108
2898#: plugins/check_ntp_peer.c:699 3109#: plugins/check_ntp_peer.c:727
2899msgid "plugin will not check the clock offset between the local host and NTP" 3110msgid "plugin will not check the clock offset between the local host and NTP"
2900msgstr "" 3111msgstr ""
2901"Ce plugin ne vérifie pas le décalage entre le serveur local et le serveur" 3112"Ce plugin ne vérifie pas le décalage entre le serveur local et le serveur"
2902 3113
2903#: plugins/check_ntp_peer.c:700 3114#: plugins/check_ntp_peer.c:728
2904msgid "server; please use check_ntp_time for that purpose." 3115msgid "server; please use check_ntp_time for that purpose."
2905msgstr "NTP; utilisez plutôt check_ntp_time à cette fin." 3116msgstr "NTP; utilisez plutôt check_ntp_time à cette fin."
2906 3117
2907#: plugins/check_ntp_peer.c:706 3118#: plugins/check_ntp_peer.c:734
2908msgid "Simple NTP server check:" 3119msgid "Simple NTP server check:"
2909msgstr "Vérification simple du serveur NTP:" 3120msgstr "Vérification simple du serveur NTP:"
2910 3121
2911#: plugins/check_ntp_peer.c:713 3122#: plugins/check_ntp_peer.c:741
2912msgid "Only check the number of usable time sources (\"truechimers\"):" 3123msgid "Only check the number of usable time sources (\"truechimers\"):"
2913msgstr "" 3124msgstr ""
2914 3125
2915#: plugins/check_ntp_peer.c:716 3126#: plugins/check_ntp_peer.c:744
2916msgid "Check only stratum:" 3127msgid "Check only stratum:"
2917msgstr "Vérification du stratum seulement:" 3128msgstr "Vérification du stratum seulement:"
2918 3129
2919#: plugins/check_ntp_time.c:602 3130#: plugins/check_ntp_time.c:607
2920msgid "This plugin checks the clock offset with the ntp server" 3131msgid "This plugin checks the clock offset with the ntp server"
2921msgstr "Ce plugin vérifie le décalage de l'horloge avec le serveur ntp" 3132msgstr "Ce plugin vérifie le décalage de l'horloge avec le serveur ntp"
2922 3133
2923#: plugins/check_ntp_time.c:612 3134#: plugins/check_ntp_time.c:617
2924msgid "Returns UNKNOWN instead of CRITICAL if offset cannot be found" 3135msgid "Returns UNKNOWN instead of CRITICAL if offset cannot be found"
2925msgstr "Retourne INCONNU au lieu de CRITIQUE si le décalage est inconnu" 3136msgstr "Retourne INCONNU au lieu de CRITIQUE si le décalage est inconnu"
2926 3137
2927#: plugins/check_ntp_time.c:621 3138#: plugins/check_ntp_time.c:623
3139msgid "Expected offset of the ntp server relative to local server (seconds)"
3140msgstr ""
3141
3142#: plugins/check_ntp_time.c:628
2928msgid "This plugin checks the clock offset between the local host and a" 3143msgid "This plugin checks the clock offset between the local host and a"
2929msgstr "Ce plugin vérifie le décalage de l'horloge entre se serveur local et" 3144msgstr "Ce plugin vérifie le décalage de l'horloge entre se serveur local et"
2930 3145
2931#: plugins/check_ntp_time.c:622 3146#: plugins/check_ntp_time.c:629
2932msgid "remote NTP server. It is independent of any commandline programs or" 3147msgid "remote NTP server. It is independent of any commandline programs or"
2933msgstr "le serveur NTP distant. Il ne fait aucun recours aux programmes de" 3148msgstr "le serveur NTP distant. Il ne fait aucun recours aux programmes de"
2934 3149
2935#: plugins/check_ntp_time.c:623 3150#: plugins/check_ntp_time.c:630
2936msgid "external libraries." 3151msgid "external libraries."
2937msgstr "la ligne de commande ou libraries externes." 3152msgstr "la ligne de commande ou libraries externes."
2938 3153
2939#: plugins/check_ntp_time.c:627 3154#: plugins/check_ntp_time.c:634
2940msgid "If you'd rather want to monitor an NTP server, please use" 3155msgid "If you'd rather want to monitor an NTP server, please use"
2941msgstr "Si vous voulez plutôt surveiller un serveur NTP, veuillez" 3156msgstr "Si vous voulez plutôt surveiller un serveur NTP, veuillez"
2942 3157
2943#: plugins/check_ntp_time.c:628 3158#: plugins/check_ntp_time.c:635
2944msgid "check_ntp_peer." 3159msgid "check_ntp_peer."
2945msgstr "utiliser check_ntp_peer." 3160msgstr "utiliser check_ntp_peer."
2946 3161
3162#: plugins/check_ntp_time.c:636
3163msgid "--time-offset is useful for compensating for servers with known"
3164msgstr ""
3165
3166#: plugins/check_ntp_time.c:637
3167msgid "and expected clock skew."
3168msgstr ""
3169
2947#: plugins/check_nwstat.c:194 3170#: plugins/check_nwstat.c:194
2948#, c-format 3171#, c-format
2949msgid "NetWare %s: " 3172msgid "NetWare %s: "
@@ -3517,608 +3740,644 @@ msgid ""
3517"higher than the warning threshold value, EXCEPT with the uptime variable" 3740"higher than the warning threshold value, EXCEPT with the uptime variable"
3518msgstr "plus grand que le seuil d'alerte SAUF pour l'option uptime" 3741msgstr "plus grand que le seuil d'alerte SAUF pour l'option uptime"
3519 3742
3520#: plugins/check_pgsql.c:222 3743#: plugins/check_pgsql.c:224
3521#, c-format 3744#, c-format
3522msgid "CRITICAL - no connection to '%s' (%s).\n" 3745msgid "CRITICAL - no connection to '%s' (%s).\n"
3523msgstr "CRITIQUE - pas de connexion à '%s' (%s).\n" 3746msgstr "CRITIQUE - pas de connexion à '%s' (%s).\n"
3524 3747
3525#: plugins/check_pgsql.c:250 3748#: plugins/check_pgsql.c:252
3526#, fuzzy, c-format 3749#, fuzzy, c-format
3527msgid " %s - database %s (%f sec.)|%s\n" 3750msgid " %s - database %s (%f sec.)|%s\n"
3528msgstr " %s - base de données %s (%d sec.)|%s\n" 3751msgstr " %s - base de données %s (%d sec.)|%s\n"
3529 3752
3530#: plugins/check_pgsql.c:317 plugins/check_time.c:277 plugins/check_time.c:289 3753#: plugins/check_pgsql.c:320 plugins/check_time.c:277 plugins/check_time.c:289
3531#: plugins/check_users.c:181 3754#: plugins/check_users.c:228
3532msgid "Critical threshold must be a positive integer" 3755msgid "Critical threshold must be a positive integer"
3533msgstr "Le seuil critique doit être un entier positif" 3756msgstr "Le seuil critique doit être un entier positif"
3534 3757
3535#: plugins/check_pgsql.c:323 plugins/check_time.c:258 plugins/check_time.c:282 3758#: plugins/check_pgsql.c:326 plugins/check_time.c:258 plugins/check_time.c:282
3536#: plugins/check_users.c:187 plugins/check_users.c:197 3759#: plugins/check_users.c:226
3537#: plugins/check_users.c:203
3538msgid "Warning threshold must be a positive integer" 3760msgid "Warning threshold must be a positive integer"
3539msgstr "Le seuil d'avertissement doit être un entier positif" 3761msgstr "Le seuil d'avertissement doit être un entier positif"
3540 3762
3541#: plugins/check_pgsql.c:347 3763#: plugins/check_pgsql.c:350
3542msgid "Database name is not valid" 3764#, fuzzy
3765msgid "Database name exceeds the maximum length"
3543msgstr "Le nom de la base de données est invalide" 3766msgstr "Le nom de la base de données est invalide"
3544 3767
3545#: plugins/check_pgsql.c:353 3768#: plugins/check_pgsql.c:356
3546msgid "User name is not valid" 3769msgid "User name is not valid"
3547msgstr "Le nom de l'utilisateur est invalide" 3770msgstr "Le nom de l'utilisateur est invalide"
3548 3771
3549#: plugins/check_pgsql.c:504 3772#: plugins/check_pgsql.c:471
3550#, c-format 3773#, c-format
3551msgid "Test whether a PostgreSQL Database is accepting connections." 3774msgid "Test whether a PostgreSQL Database is accepting connections."
3552msgstr "Teste si une base de données Postgresql accepte les connections." 3775msgstr "Teste si une base de données Postgresql accepte les connections."
3553 3776
3554#: plugins/check_pgsql.c:516 3777#: plugins/check_pgsql.c:483
3555msgid "Database to check " 3778msgid "Database to check "
3556msgstr "" 3779msgstr ""
3557 3780
3558#: plugins/check_pgsql.c:517 3781#: plugins/check_pgsql.c:484
3559#, c-format 3782#, fuzzy, c-format
3560msgid "(default: %s)" 3783msgid "(default: %s)\n"
3561msgstr "" 3784msgstr "(Défaut: %d)\n"
3562 3785
3563#: plugins/check_pgsql.c:519 3786#: plugins/check_pgsql.c:486
3564msgid "Login name of user" 3787msgid "Login name of user"
3565msgstr "Le nom d'un utilisateur" 3788msgstr "Le nom d'un utilisateur"
3566 3789
3567#: plugins/check_pgsql.c:521 3790#: plugins/check_pgsql.c:488
3568msgid "Password (BIG SECURITY ISSUE)" 3791msgid "Password (BIG SECURITY ISSUE)"
3569msgstr "" 3792msgstr ""
3570 3793
3571#: plugins/check_pgsql.c:523 3794#: plugins/check_pgsql.c:490
3572msgid "Connection parameters (keyword = value), see below" 3795msgid "Connection parameters (keyword = value), see below"
3573msgstr "" 3796msgstr ""
3574 3797
3575#: plugins/check_pgsql.c:530 3798#: plugins/check_pgsql.c:497
3576msgid "SQL query to run. Only first column in first row will be read" 3799msgid "SQL query to run. Only first column in first row will be read"
3577msgstr "" 3800msgstr ""
3578 3801
3579#: plugins/check_pgsql.c:532 3802#: plugins/check_pgsql.c:499
3803msgid "A name for the query, this string is used instead of the query"
3804msgstr ""
3805
3806#: plugins/check_pgsql.c:500
3807msgid "in the long output of the plugin"
3808msgstr ""
3809
3810#: plugins/check_pgsql.c:502
3580#, fuzzy 3811#, fuzzy
3581msgid "SQL query value to result in warning status (double)" 3812msgid "SQL query value to result in warning status (double)"
3582msgstr "Décalage résultant en un avertissement (secondes)" 3813msgstr "Décalage résultant en un avertissement (secondes)"
3583 3814
3584#: plugins/check_pgsql.c:534 3815#: plugins/check_pgsql.c:504
3585#, fuzzy 3816#, fuzzy
3586msgid "SQL query value to result in critical status (double)" 3817msgid "SQL query value to result in critical status (double)"
3587msgstr "Décalage résultant en un état critique (secondes)" 3818msgstr "Décalage résultant en un état critique (secondes)"
3588 3819
3589#: plugins/check_pgsql.c:539 3820#: plugins/check_pgsql.c:509
3590msgid "All parameters are optional." 3821msgid "All parameters are optional."
3591msgstr "" 3822msgstr ""
3592 3823
3593#: plugins/check_pgsql.c:540 3824#: plugins/check_pgsql.c:510
3594msgid "" 3825msgid ""
3595"This plugin tests a PostgreSQL DBMS to determine whether it is active and" 3826"This plugin tests a PostgreSQL DBMS to determine whether it is active and"
3596msgstr "" 3827msgstr ""
3597 3828
3598#: plugins/check_pgsql.c:541 3829#: plugins/check_pgsql.c:511
3599msgid "accepting queries. In its current operation, it simply connects to the" 3830msgid "accepting queries. In its current operation, it simply connects to the"
3600msgstr "" 3831msgstr ""
3601 3832
3602#: plugins/check_pgsql.c:542 3833#: plugins/check_pgsql.c:512
3603msgid "" 3834msgid ""
3604"specified database, and then disconnects. If no database is specified, it" 3835"specified database, and then disconnects. If no database is specified, it"
3605msgstr "" 3836msgstr ""
3606 3837
3607#: plugins/check_pgsql.c:543 3838#: plugins/check_pgsql.c:513
3608msgid "" 3839msgid ""
3609"connects to the template1 database, which is present in every functioning" 3840"connects to the template1 database, which is present in every functioning"
3610msgstr "" 3841msgstr ""
3611 3842
3612#: plugins/check_pgsql.c:544 3843#: plugins/check_pgsql.c:514
3613msgid "PostgreSQL DBMS." 3844msgid "PostgreSQL DBMS."
3614msgstr "" 3845msgstr ""
3615 3846
3616#: plugins/check_pgsql.c:546 3847#: plugins/check_pgsql.c:516
3617msgid "If a query is specified using the -q option, it will be executed after" 3848msgid "If a query is specified using the -q option, it will be executed after"
3618msgstr "" 3849msgstr ""
3619 3850
3620#: plugins/check_pgsql.c:547 3851#: plugins/check_pgsql.c:517
3621msgid "connecting to the server. The result from the query has to be numeric." 3852msgid "connecting to the server. The result from the query has to be numeric."
3622msgstr "" 3853msgstr ""
3623 3854
3624#: plugins/check_pgsql.c:548 3855#: plugins/check_pgsql.c:518
3625msgid "" 3856msgid ""
3626"Multiple SQL commands, separated by semicolon, are allowed but the result " 3857"Multiple SQL commands, separated by semicolon, are allowed but the result "
3627msgstr "" 3858msgstr ""
3628 3859
3629#: plugins/check_pgsql.c:549 3860#: plugins/check_pgsql.c:519
3630msgid "of the last command is taken into account only. The value of the first" 3861msgid "of the last command is taken into account only. The value of the first"
3631msgstr "" 3862msgstr ""
3632 3863
3633#: plugins/check_pgsql.c:550 3864#: plugins/check_pgsql.c:520
3634msgid "column in the first row is used as the check result." 3865msgid ""
3866"column in the first row is used as the check result. If a second column is"
3635msgstr "" 3867msgstr ""
3636 3868
3637#: plugins/check_pgsql.c:552 3869#: plugins/check_pgsql.c:521
3870msgid "present in the result set, this is added to the plugin output with a"
3871msgstr ""
3872
3873#: plugins/check_pgsql.c:522
3874msgid ""
3875"prefix of \"Extra Info:\". This information can be displayed in the system"
3876msgstr ""
3877
3878#: plugins/check_pgsql.c:523
3879msgid "executing the plugin."
3880msgstr ""
3881
3882#: plugins/check_pgsql.c:525
3638msgid "" 3883msgid ""
3639"See the chapter \"Monitoring Database Activity\" of the PostgreSQL manual" 3884"See the chapter \"Monitoring Database Activity\" of the PostgreSQL manual"
3640msgstr "" 3885msgstr ""
3641 3886
3642#: plugins/check_pgsql.c:553 3887#: plugins/check_pgsql.c:526
3643msgid "" 3888msgid ""
3644"for details about how to access internal statistics of the database server." 3889"for details about how to access internal statistics of the database server."
3645msgstr "" 3890msgstr ""
3646 3891
3647#: plugins/check_pgsql.c:555 3892#: plugins/check_pgsql.c:528
3648msgid "" 3893msgid ""
3649"For a list of available connection parameters which may be used with the -o" 3894"For a list of available connection parameters which may be used with the -o"
3650msgstr "" 3895msgstr ""
3651 3896
3652#: plugins/check_pgsql.c:556 3897#: plugins/check_pgsql.c:529
3653msgid "" 3898msgid ""
3654"command line option, see the documentation for PQconnectdb() in the chapter" 3899"command line option, see the documentation for PQconnectdb() in the chapter"
3655msgstr "" 3900msgstr ""
3656 3901
3657#: plugins/check_pgsql.c:557 3902#: plugins/check_pgsql.c:530
3658msgid "" 3903msgid ""
3659"\"libpq - C Library\" of the PostgreSQL manual. For example, this may be" 3904"\"libpq - C Library\" of the PostgreSQL manual. For example, this may be"
3660msgstr "" 3905msgstr ""
3661 3906
3662#: plugins/check_pgsql.c:558 3907#: plugins/check_pgsql.c:531
3663msgid "" 3908msgid ""
3664"used to specify a service name in pg_service.conf to be used for additional" 3909"used to specify a service name in pg_service.conf to be used for additional"
3665msgstr "" 3910msgstr ""
3666 3911
3667#: plugins/check_pgsql.c:559 3912#: plugins/check_pgsql.c:532
3668msgid "connection parameters: -o 'service=<name>' or to specify the SSL mode:" 3913msgid "connection parameters: -o 'service=<name>' or to specify the SSL mode:"
3669msgstr "" 3914msgstr ""
3670 3915
3671#: plugins/check_pgsql.c:560 3916#: plugins/check_pgsql.c:533
3672msgid "-o 'sslmode=require'." 3917msgid "-o 'sslmode=require'."
3673msgstr "" 3918msgstr ""
3674 3919
3675#: plugins/check_pgsql.c:562 3920#: plugins/check_pgsql.c:535
3676msgid "" 3921msgid ""
3677"The plugin will connect to a local postmaster if no host is specified. To" 3922"The plugin will connect to a local postmaster if no host is specified. To"
3678msgstr "" 3923msgstr ""
3679"Ce plugin va se connecter sur un postmaster local si aucun hôte n'est " 3924"Ce plugin va se connecter sur un postmaster local si aucun hôte n'est "
3680"spécifié." 3925"spécifié."
3681 3926
3682#: plugins/check_pgsql.c:563 3927#: plugins/check_pgsql.c:536
3683msgid "" 3928msgid ""
3684"connect to a remote host, be sure that the remote postmaster accepts TCP/IP" 3929"connect to a remote host, be sure that the remote postmaster accepts TCP/IP"
3685msgstr "" 3930msgstr ""
3686 3931
3687#: plugins/check_pgsql.c:564 3932#: plugins/check_pgsql.c:537
3688msgid "connections (start the postmaster with the -i option)." 3933msgid "connections (start the postmaster with the -i option)."
3689msgstr "" 3934msgstr ""
3690 3935
3691#: plugins/check_pgsql.c:566 3936#: plugins/check_pgsql.c:539
3692msgid "" 3937msgid ""
3693"Typically, the monitoring user (unless the --logname option is used) should " 3938"Typically, the monitoring user (unless the --logname option is used) should "
3694"be" 3939"be"
3695msgstr "" 3940msgstr ""
3696 3941
3697#: plugins/check_pgsql.c:567 3942#: plugins/check_pgsql.c:540
3698msgid "" 3943msgid ""
3699"able to connect to the database without a password. The plugin can also send" 3944"able to connect to the database without a password. The plugin can also send"
3700msgstr "" 3945msgstr ""
3701 3946
3702#: plugins/check_pgsql.c:568 3947#: plugins/check_pgsql.c:541
3703msgid "a password, but no effort is made to obscure or encrypt the password." 3948msgid "a password, but no effort is made to obscure or encrypt the password."
3704msgstr "" 3949msgstr ""
3705 3950
3706#: plugins/check_pgsql.c:601 3951#: plugins/check_pgsql.c:575
3707#, c-format 3952#, c-format
3708msgid "QUERY %s - %s: %s.\n" 3953msgid "QUERY %s - %s: %s.\n"
3709msgstr "" 3954msgstr ""
3710 3955
3711#: plugins/check_pgsql.c:601 3956#: plugins/check_pgsql.c:575
3712msgid "Error with query" 3957msgid "Error with query"
3713msgstr "" 3958msgstr ""
3714 3959
3715#: plugins/check_pgsql.c:607 3960#: plugins/check_pgsql.c:581
3716#, fuzzy 3961#, fuzzy
3717msgid "No rows returned" 3962msgid "No rows returned"
3718msgstr "Pas de données valides reçues" 3963msgstr "Pas de données valides reçues"
3719 3964
3720#: plugins/check_pgsql.c:612 3965#: plugins/check_pgsql.c:586
3721#, fuzzy 3966#, fuzzy
3722msgid "No columns returned" 3967msgid "No columns returned"
3723msgstr "Pas de données valides reçues" 3968msgstr "Pas de données valides reçues"
3724 3969
3725#: plugins/check_pgsql.c:618 3970#: plugins/check_pgsql.c:592
3726#, fuzzy 3971#, fuzzy
3727msgid "No data returned" 3972msgid "No data returned"
3728msgstr "Pas de données valides reçues" 3973msgstr "Pas de données valides reçues"
3729 3974
3730#: plugins/check_pgsql.c:627 3975#: plugins/check_pgsql.c:601
3731msgid "Is not a numeric" 3976msgid "Is not a numeric"
3732msgstr "" 3977msgstr ""
3733 3978
3734#: plugins/check_pgsql.c:644 3979#: plugins/check_pgsql.c:619
3980#, fuzzy, c-format
3981msgid "%s returned %f"
3982msgstr ". %s renvoie %s"
3983
3984#: plugins/check_pgsql.c:622
3735#, fuzzy, c-format 3985#, fuzzy, c-format
3736msgid "'%s' returned %f" 3986msgid "'%s' returned %f"
3737msgstr ". %s renvoie %s" 3987msgstr ". %s renvoie %s"
3738 3988
3739#: plugins/check_ping.c:141 3989#: plugins/check_ping.c:143
3740msgid "CRITICAL - Could not interpret output from ping command\n" 3990msgid "CRITICAL - Could not interpret output from ping command\n"
3741msgstr "CRITIQUE - Impossible d'interpréter le réponse de la commande ping\n" 3991msgstr "CRITIQUE - Impossible d'interpréter le réponse de la commande ping\n"
3742 3992
3743#: plugins/check_ping.c:157 3993#: plugins/check_ping.c:159
3744#, c-format 3994#, c-format
3745msgid "PING %s - %sPacket loss = %d%%" 3995msgid "PING %s - %sPacket loss = %d%%"
3746msgstr "PING %s - %s Paquets perdus = %d%%" 3996msgstr "PING %s - %s Paquets perdus = %d%%"
3747 3997
3748#: plugins/check_ping.c:160 3998#: plugins/check_ping.c:162
3749#, c-format 3999#, c-format
3750msgid "PING %s - %sPacket loss = %d%%, RTA = %2.2f ms" 4000msgid "PING %s - %sPacket loss = %d%%, RTA = %2.2f ms"
3751msgstr "PING %s - %s Paquets perdus = %d%%, RTA = %2.2f ms" 4001msgstr "PING %s - %s Paquets perdus = %d%%, RTA = %2.2f ms"
3752 4002
3753#: plugins/check_ping.c:257 4003#: plugins/check_ping.c:263
3754msgid "Could not realloc() addresses\n" 4004msgid "Could not realloc() addresses\n"
3755msgstr "Impossible de réallouer les adresses\n" 4005msgstr "Impossible de réallouer les adresses\n"
3756 4006
3757#: plugins/check_ping.c:272 plugins/check_ping.c:352 4007#: plugins/check_ping.c:278 plugins/check_ping.c:358
3758#, c-format 4008#, c-format
3759msgid "<max_packets> (%s) must be a non-negative number\n" 4009msgid "<max_packets> (%s) must be a non-negative number\n"
3760msgstr "<max_packets> (%s) doit être un nombre positif\n" 4010msgstr "<max_packets> (%s) doit être un nombre positif\n"
3761 4011
3762#: plugins/check_ping.c:306 4012#: plugins/check_ping.c:312
3763#, c-format 4013#, c-format
3764msgid "<wpl> (%s) must be an integer percentage\n" 4014msgid "<wpl> (%s) must be an integer percentage\n"
3765msgstr "<wpl> (%s) doit être un pourcentage entier\n" 4015msgstr "<wpl> (%s) doit être un pourcentage entier\n"
3766 4016
3767#: plugins/check_ping.c:317 4017#: plugins/check_ping.c:323
3768#, c-format 4018#, c-format
3769msgid "<cpl> (%s) must be an integer percentage\n" 4019msgid "<cpl> (%s) must be an integer percentage\n"
3770msgstr "<cpl> (%s) doit être un pourcentage entier\n" 4020msgstr "<cpl> (%s) doit être un pourcentage entier\n"
3771 4021
3772#: plugins/check_ping.c:328 4022#: plugins/check_ping.c:334
3773#, c-format 4023#, c-format
3774msgid "<wrta> (%s) must be a non-negative number\n" 4024msgid "<wrta> (%s) must be a non-negative number\n"
3775msgstr "<wrta> (%s) doit être un nombre positif\n" 4025msgstr "<wrta> (%s) doit être un nombre positif\n"
3776 4026
3777#: plugins/check_ping.c:339 4027#: plugins/check_ping.c:345
3778#, c-format 4028#, c-format
3779msgid "<crta> (%s) must be a non-negative number\n" 4029msgid "<crta> (%s) must be a non-negative number\n"
3780msgstr "<crta> (%s) doit être un nombre positif\n" 4030msgstr "<crta> (%s) doit être un nombre positif\n"
3781 4031
3782#: plugins/check_ping.c:372 4032#: plugins/check_ping.c:378
3783#, c-format 4033#, c-format
3784msgid "" 4034msgid ""
3785"%s: Warning threshold must be integer or percentage!\n" 4035"%s: Warning threshold must be integer or percentage!\n"
3786"\n" 4036"\n"
3787msgstr "%s: Le seuil d'avertissement doit être un entier ou un pourcentage!\n" 4037msgstr "%s: Le seuil d'avertissement doit être un entier ou un pourcentage!\n"
3788 4038
3789#: plugins/check_ping.c:385 4039#: plugins/check_ping.c:391
3790#, c-format 4040#, c-format
3791msgid "<wrta> was not set\n" 4041msgid "<wrta> was not set\n"
3792msgstr "<wrta> n'a pas été indiqué\n" 4042msgstr "<wrta> n'a pas été indiqué\n"
3793 4043
3794#: plugins/check_ping.c:389 4044#: plugins/check_ping.c:395
3795#, c-format 4045#, c-format
3796msgid "<crta> was not set\n" 4046msgid "<crta> was not set\n"
3797msgstr "<crta> n'a pas été indiqué\n" 4047msgstr "<crta> n'a pas été indiqué\n"
3798 4048
3799#: plugins/check_ping.c:393 4049#: plugins/check_ping.c:399
3800#, c-format 4050#, c-format
3801msgid "<wpl> was not set\n" 4051msgid "<wpl> was not set\n"
3802msgstr " <wpl> n'a pas été indiqué\n" 4052msgstr " <wpl> n'a pas été indiqué\n"
3803 4053
3804#: plugins/check_ping.c:397 4054#: plugins/check_ping.c:403
3805#, c-format 4055#, c-format
3806msgid "<cpl> was not set\n" 4056msgid "<cpl> was not set\n"
3807msgstr "<cpl> n'a pas été indiqué\n" 4057msgstr "<cpl> n'a pas été indiqué\n"
3808 4058
3809#: plugins/check_ping.c:401 4059#: plugins/check_ping.c:407
3810#, c-format 4060#, c-format
3811msgid "<wrta> (%f) cannot be larger than <crta> (%f)\n" 4061msgid "<wrta> (%f) cannot be larger than <crta> (%f)\n"
3812msgstr "<wrta> (%f) ne peut pas être plus large que <crta> (%f)\n" 4062msgstr "<wrta> (%f) ne peut pas être plus large que <crta> (%f)\n"
3813 4063
3814#: plugins/check_ping.c:405 4064#: plugins/check_ping.c:411
3815#, c-format 4065#, c-format
3816msgid "<wpl> (%d) cannot be larger than <cpl> (%d)\n" 4066msgid "<wpl> (%d) cannot be larger than <cpl> (%d)\n"
3817msgstr "<wpl> (%d) ne peut pas être plus large que <cpl> (%d)\n" 4067msgstr "<wpl> (%d) ne peut pas être plus large que <cpl> (%d)\n"
3818 4068
3819#: plugins/check_ping.c:442 4069#: plugins/check_ping.c:448
3820#, c-format 4070#, c-format
3821msgid "Cannot open stderr for %s\n" 4071msgid "Cannot open stderr for %s\n"
3822msgstr "Impossible d'ouvrir le canal d'erreur standard pour %s\n" 4072msgstr "Impossible d'ouvrir le canal d'erreur standard pour %s\n"
3823 4073
3824#: plugins/check_ping.c:492 plugins/check_ping.c:494 4074#: plugins/check_ping.c:505 plugins/check_ping.c:507
3825msgid "System call sent warnings to stderr " 4075msgid "System call sent warnings to stderr "
3826msgstr "" 4076msgstr ""
3827"Les appel système enverront leurs messages d'avertissement vers le canal " 4077"Les appel système enverront leurs messages d'avertissement vers le canal "
3828"d'erreur standard" 4078"d'erreur standard"
3829 4079
3830#: plugins/check_ping.c:519 4080#: plugins/check_ping.c:533
3831#, fuzzy, c-format 4081#, fuzzy, c-format
3832msgid "CRITICAL - Network Unreachable (%s)\n" 4082msgid "CRITICAL - Network Unreachable (%s)\n"
3833msgstr "CRITIQUE - Le réseau est inaccessible (%s)" 4083msgstr "CRITIQUE - Le réseau est inaccessible (%s)"
3834 4084
3835#: plugins/check_ping.c:521 4085#: plugins/check_ping.c:535
3836#, fuzzy, c-format 4086#, fuzzy, c-format
3837msgid "CRITICAL - Host Unreachable (%s)\n" 4087msgid "CRITICAL - Host Unreachable (%s)\n"
3838msgstr "CRITIQUE - Hôte inaccessible (%s)" 4088msgstr "CRITIQUE - Hôte inaccessible (%s)"
3839 4089
3840#: plugins/check_ping.c:523 4090#: plugins/check_ping.c:537
3841#, fuzzy, c-format 4091#, fuzzy, c-format
3842msgid "CRITICAL - Bogus ICMP: Port Unreachable (%s)\n" 4092msgid "CRITICAL - Bogus ICMP: Port Unreachable (%s)\n"
3843msgstr "CRITIQUE - Paquet ICMP incorrect: Port inaccessible (%s)" 4093msgstr "CRITIQUE - Paquet ICMP incorrect: Port inaccessible (%s)"
3844 4094
3845#: plugins/check_ping.c:525 4095#: plugins/check_ping.c:539
3846#, fuzzy, c-format 4096#, fuzzy, c-format
3847msgid "CRITICAL - Bogus ICMP: Protocol Unreachable (%s)\n" 4097msgid "CRITICAL - Bogus ICMP: Protocol Unreachable (%s)\n"
3848msgstr "CRITIQUE - Paquet ICMP incorrect: Protocole inaccessible (%s)" 4098msgstr "CRITIQUE - Paquet ICMP incorrect: Protocole inaccessible (%s)"
3849 4099
3850#: plugins/check_ping.c:527 4100#: plugins/check_ping.c:541
3851#, fuzzy, c-format 4101#, fuzzy, c-format
3852msgid "CRITICAL - Network Prohibited (%s)\n" 4102msgid "CRITICAL - Network Prohibited (%s)\n"
3853msgstr "CRITIQUE - L'accès au réseau est interdit (%s)" 4103msgstr "CRITIQUE - L'accès au réseau est interdit (%s)"
3854 4104
3855#: plugins/check_ping.c:529 4105#: plugins/check_ping.c:543
3856#, fuzzy, c-format 4106#, fuzzy, c-format
3857msgid "CRITICAL - Host Prohibited (%s)\n" 4107msgid "CRITICAL - Host Prohibited (%s)\n"
3858msgstr "CRITIQUE - L'accès a l'hôte est interdit (%s)" 4108msgstr "CRITIQUE - L'accès a l'hôte est interdit (%s)"
3859 4109
3860#: plugins/check_ping.c:531 4110#: plugins/check_ping.c:545
3861#, fuzzy, c-format 4111#, fuzzy, c-format
3862msgid "CRITICAL - Packet Filtered (%s)\n" 4112msgid "CRITICAL - Packet Filtered (%s)\n"
3863msgstr "CRITIQUE - Paquet filtré (%s)" 4113msgstr "CRITIQUE - Paquet filtré (%s)"
3864 4114
3865#: plugins/check_ping.c:533 4115#: plugins/check_ping.c:547
3866#, fuzzy, c-format 4116#, fuzzy, c-format
3867msgid "CRITICAL - Host not found (%s)\n" 4117msgid "CRITICAL - Host not found (%s)\n"
3868msgstr "CRITIQUE - Hôte non trouvé (%s)" 4118msgstr "CRITIQUE - Hôte non trouvé (%s)"
3869 4119
3870#: plugins/check_ping.c:535 4120#: plugins/check_ping.c:549
3871#, fuzzy, c-format 4121#, fuzzy, c-format
3872msgid "CRITICAL - Time to live exceeded (%s)\n" 4122msgid "CRITICAL - Time to live exceeded (%s)\n"
3873msgstr "CRITIQUE - La durée de vie du paquet est dépassée (%s)" 4123msgstr "CRITIQUE - La durée de vie du paquet est dépassée (%s)"
3874 4124
3875#: plugins/check_ping.c:537 4125#: plugins/check_ping.c:551
3876#, fuzzy, c-format 4126#, fuzzy, c-format
3877msgid "CRITICAL - Destination Unreachable (%s)\n" 4127msgid "CRITICAL - Destination Unreachable (%s)\n"
3878msgstr "CRITIQUE - Hôte inaccessible (%s)" 4128msgstr "CRITIQUE - Hôte inaccessible (%s)"
3879 4129
3880#: plugins/check_ping.c:544 4130#: plugins/check_ping.c:558
3881#, fuzzy 4131#, fuzzy
3882msgid "Unable to realloc warn_text\n" 4132msgid "Unable to realloc warn_text\n"
3883msgstr "Impossible de réattribuer le texte d'avertissement" 4133msgstr "Impossible de réattribuer le texte d'avertissement"
3884 4134
3885#: plugins/check_ping.c:561 4135#: plugins/check_ping.c:575
3886#, c-format 4136#, c-format
3887msgid "Use ping to check connection statistics for a remote host." 4137msgid "Use ping to check connection statistics for a remote host."
3888msgstr "" 4138msgstr ""
3889"Utilise ping pour vérifier les statistiques de connections d'un hôte distant." 4139"Utilise ping pour vérifier les statistiques de connections d'un hôte distant."
3890 4140
3891#: plugins/check_ping.c:573 4141#: plugins/check_ping.c:587
3892msgid "host to ping" 4142msgid "host to ping"
3893msgstr "hôte à tester" 4143msgstr "hôte à tester"
3894 4144
3895#: plugins/check_ping.c:579 4145#: plugins/check_ping.c:593
3896msgid "number of ICMP ECHO packets to send" 4146msgid "number of ICMP ECHO packets to send"
3897msgstr "nombre de paquets ICMP à envoyer" 4147msgstr "nombre de paquets ICMP à envoyer"
3898 4148
3899#: plugins/check_ping.c:580 4149#: plugins/check_ping.c:594
3900#, c-format 4150#, c-format
3901msgid "(Default: %d)\n" 4151msgid "(Default: %d)\n"
3902msgstr "(Défaut: %d)\n" 4152msgstr "(Défaut: %d)\n"
3903 4153
3904#: plugins/check_ping.c:582 4154#: plugins/check_ping.c:596
3905msgid "show HTML in the plugin output (obsoleted by urlize)" 4155msgid "show HTML in the plugin output (obsoleted by urlize)"
3906msgstr "" 4156msgstr ""
3907 4157
3908#: plugins/check_ping.c:587 4158#: plugins/check_ping.c:601
3909msgid "THRESHOLD is <rta>,<pl>% where <rta> is the round trip average travel" 4159msgid "THRESHOLD is <rta>,<pl>% where <rta> is the round trip average travel"
3910msgstr "" 4160msgstr ""
3911"Le seuil est <rta>,<pl>% où <rta> est le temps moyen pour l'aller retour (ms)" 4161"Le seuil est <rta>,<pl>% où <rta> est le temps moyen pour l'aller retour (ms)"
3912 4162
3913#: plugins/check_ping.c:588 4163#: plugins/check_ping.c:602
3914msgid "time (ms) which triggers a WARNING or CRITICAL state, and <pl> is the" 4164msgid "time (ms) which triggers a WARNING or CRITICAL state, and <pl> is the"
3915msgstr "qui déclenche un résultat AVERTISSEMENT ou CRITIQUE, et <pl> est le " 4165msgstr "qui déclenche un résultat AVERTISSEMENT ou CRITIQUE, et <pl> est le "
3916 4166
3917#: plugins/check_ping.c:589 4167#: plugins/check_ping.c:603
3918msgid "percentage of packet loss to trigger an alarm state." 4168msgid "percentage of packet loss to trigger an alarm state."
3919msgstr "pourcentage de paquets perdus pour déclencher une alarme." 4169msgstr "pourcentage de paquets perdus pour déclencher une alarme."
3920 4170
3921#: plugins/check_ping.c:592 4171#: plugins/check_ping.c:606
3922msgid "" 4172msgid ""
3923"This plugin uses the ping command to probe the specified host for packet loss" 4173"This plugin uses the ping command to probe the specified host for packet loss"
3924msgstr "" 4174msgstr ""
3925"Ce plugin utilise la commande ping pour vérifier l'hôte spécifié pour les " 4175"Ce plugin utilise la commande ping pour vérifier l'hôte spécifié pour les "
3926"pertes de paquets" 4176"pertes de paquets"
3927 4177
3928#: plugins/check_ping.c:593 4178#: plugins/check_ping.c:607
3929msgid "" 4179msgid ""
3930"(percentage) and round trip average (milliseconds). It can produce HTML " 4180"(percentage) and round trip average (milliseconds). It can produce HTML "
3931"output" 4181"output"
3932msgstr "" 4182msgstr ""
3933 4183
3934#: plugins/check_ping.c:594 4184#: plugins/check_ping.c:608
3935msgid "" 4185msgid ""
3936"linking to a traceroute CGI contributed by Ian Cass. The CGI can be found in" 4186"linking to a traceroute CGI contributed by Ian Cass. The CGI can be found in"
3937msgstr "" 4187msgstr ""
3938 4188
3939#: plugins/check_ping.c:595 4189#: plugins/check_ping.c:609
3940msgid "the contrib area of the downloads section at http://www.nagios.org/" 4190msgid "the contrib area of the downloads section at http://www.nagios.org/"
3941msgstr "" 4191msgstr ""
3942 4192
3943#: plugins/check_procs.c:193 4193#: plugins/check_procs.c:197
3944#, c-format 4194#, c-format
3945msgid "CMD: %s\n" 4195msgid "CMD: %s\n"
3946msgstr "Commande: %s\n" 4196msgstr "Commande: %s\n"
3947 4197
3948#: plugins/check_procs.c:198 4198#: plugins/check_procs.c:202
3949msgid "System call sent warnings to stderr" 4199msgid "System call sent warnings to stderr"
3950msgstr "" 4200msgstr ""
3951"L'appel système à retourné des avertissement vers le canal d'erreur standard" 4201"L'appel système à retourné des avertissement vers le canal d'erreur standard"
3952 4202
3953#: plugins/check_procs.c:326 4203#: plugins/check_procs.c:349
3954#, c-format 4204#, c-format
3955msgid "Not parseable: %s" 4205msgid "Not parseable: %s"
3956msgstr "Impossible de parcourir les arguments: %s" 4206msgstr "Impossible de parcourir les arguments: %s"
3957 4207
3958#: plugins/check_procs.c:331 4208#: plugins/check_procs.c:354
3959#, c-format 4209#, c-format
3960msgid "Unable to read output\n" 4210msgid "Unable to read output\n"
3961msgstr "Impossible de lire les données en entrée\n" 4211msgstr "Impossible de lire les données en entrée\n"
3962 4212
3963#: plugins/check_procs.c:348 4213#: plugins/check_procs.c:371
3964#, c-format 4214#, c-format
3965msgid "%d warn out of " 4215msgid "%d warn out of "
3966msgstr "%d avertissements sur" 4216msgstr "%d avertissements sur"
3967 4217
3968#: plugins/check_procs.c:353 4218#: plugins/check_procs.c:376
3969#, c-format 4219#, c-format
3970msgid "%d crit, %d warn out of " 4220msgid "%d crit, %d warn out of "
3971msgstr "%d crit, %d alertes sur " 4221msgstr "%d crit, %d alertes sur "
3972 4222
3973#: plugins/check_procs.c:359 4223#: plugins/check_procs.c:382
3974#, c-format 4224#, c-format
3975msgid " with %s" 4225msgid " with %s"
3976msgstr " avec %s" 4226msgstr " avec %s"
3977 4227
3978#: plugins/check_procs.c:453 4228#: plugins/check_procs.c:477
3979msgid "Parent Process ID must be an integer!" 4229msgid "Parent Process ID must be an integer!"
3980msgstr "L'identifiant du processus parent doit être un entier!" 4230msgstr "L'identifiant du processus parent doit être un entier!"
3981 4231
3982#: plugins/check_procs.c:459 plugins/check_procs.c:586 4232#: plugins/check_procs.c:483 plugins/check_procs.c:627
3983#, c-format 4233#, c-format
3984msgid "%s%sSTATE = %s" 4234msgid "%s%sSTATE = %s"
3985msgstr "%s%sETAT = %s" 4235msgstr "%s%sETAT = %s"
3986 4236
3987#: plugins/check_procs.c:468 4237#: plugins/check_procs.c:492
3988msgid "UID was not found" 4238msgid "UID was not found"
3989msgstr "L'UID n'a pas été trouvé" 4239msgstr "L'UID n'a pas été trouvé"
3990 4240
3991#: plugins/check_procs.c:474 4241#: plugins/check_procs.c:498
3992msgid "User name was not found" 4242msgid "User name was not found"
3993msgstr "L'utilisateur n'a pas été trouvé" 4243msgstr "L'utilisateur n'a pas été trouvé"
3994 4244
3995#: plugins/check_procs.c:489 4245#: plugins/check_procs.c:513
3996#, c-format 4246#, c-format
3997msgid "%s%scommand name '%s'" 4247msgid "%s%scommand name '%s'"
3998msgstr "%s%snom de la commande '%s'" 4248msgstr "%s%snom de la commande '%s'"
3999 4249
4000#: plugins/check_procs.c:524 4250#: plugins/check_procs.c:522
4251#, c-format
4252msgid "%s%sexclude progs '%s'"
4253msgstr ""
4254
4255#: plugins/check_procs.c:565
4001msgid "RSS must be an integer!" 4256msgid "RSS must be an integer!"
4002msgstr "RSS doit être un entier!" 4257msgstr "RSS doit être un entier!"
4003 4258
4004#: plugins/check_procs.c:531 4259#: plugins/check_procs.c:572
4005msgid "VSZ must be an integer!" 4260msgid "VSZ must be an integer!"
4006msgstr "VSZ doit être un entier!" 4261msgstr "VSZ doit être un entier!"
4007 4262
4008#: plugins/check_procs.c:539 4263#: plugins/check_procs.c:580
4009msgid "PCPU must be a float!" 4264msgid "PCPU must be a float!"
4010msgstr "PCPU doit être un nombre en virgule flottante!" 4265msgstr "PCPU doit être un nombre en virgule flottante!"
4011 4266
4012#: plugins/check_procs.c:563 4267#: plugins/check_procs.c:604
4013msgid "Metric must be one of PROCS, VSZ, RSS, CPU, ELAPSED!" 4268msgid "Metric must be one of PROCS, VSZ, RSS, CPU, ELAPSED!"
4014msgstr "Metric doit être l'un des PROCS, VSZ, RSS, CPU, ELAPSED!" 4269msgstr "Metric doit être l'un des PROCS, VSZ, RSS, CPU, ELAPSED!"
4015 4270
4016#: plugins/check_procs.c:694 4271#: plugins/check_procs.c:735
4017msgid "" 4272msgid ""
4018"Checks all processes and generates WARNING or CRITICAL states if the " 4273"Checks all processes and generates WARNING or CRITICAL states if the "
4019"specified" 4274"specified"
4020msgstr "" 4275msgstr ""
4021 4276
4022#: plugins/check_procs.c:695 4277#: plugins/check_procs.c:736
4023msgid "" 4278msgid ""
4024"metric is outside the required threshold ranges. The metric defaults to " 4279"metric is outside the required threshold ranges. The metric defaults to "
4025"number" 4280"number"
4026msgstr "" 4281msgstr ""
4027 4282
4028#: plugins/check_procs.c:696 4283#: plugins/check_procs.c:737
4029msgid "" 4284msgid ""
4030"of processes. Search filters can be applied to limit the processes to check." 4285"of processes. Search filters can be applied to limit the processes to check."
4031msgstr "" 4286msgstr ""
4032 4287
4033#: plugins/check_procs.c:705 4288#: plugins/check_procs.c:746
4034msgid "Generate warning state if metric is outside this range" 4289msgid "Generate warning state if metric is outside this range"
4035msgstr "" 4290msgstr ""
4036 4291
4037#: plugins/check_procs.c:707 4292#: plugins/check_procs.c:748
4038msgid "Generate critical state if metric is outside this range" 4293msgid "Generate critical state if metric is outside this range"
4039msgstr "" 4294msgstr ""
4040 4295
4041#: plugins/check_procs.c:709 4296#: plugins/check_procs.c:750
4042msgid "Check thresholds against metric. Valid types:" 4297msgid "Check thresholds against metric. Valid types:"
4043msgstr "" 4298msgstr ""
4044 4299
4045#: plugins/check_procs.c:710 4300#: plugins/check_procs.c:751
4046msgid "PROCS - number of processes (default)" 4301msgid "PROCS - number of processes (default)"
4047msgstr "PROCS - nombre de processus (défaut)" 4302msgstr "PROCS - nombre de processus (défaut)"
4048 4303
4049#: plugins/check_procs.c:711 4304#: plugins/check_procs.c:752
4050msgid "VSZ - virtual memory size" 4305msgid "VSZ - virtual memory size"
4051msgstr "VSZ - taille mémoire virtuelle" 4306msgstr "VSZ - taille mémoire virtuelle"
4052 4307
4053#: plugins/check_procs.c:712 4308#: plugins/check_procs.c:753
4054msgid "RSS - resident set memory size" 4309msgid "RSS - resident set memory size"
4055msgstr "" 4310msgstr ""
4056 4311
4057#: plugins/check_procs.c:713 4312#: plugins/check_procs.c:754
4058msgid "CPU - percentage CPU" 4313msgid "CPU - percentage CPU"
4059msgstr "CPU - pourcentage du processeur" 4314msgstr "CPU - pourcentage du processeur"
4060 4315
4061#: plugins/check_procs.c:716 4316#: plugins/check_procs.c:757
4062msgid "ELAPSED - time elapsed in seconds" 4317msgid "ELAPSED - time elapsed in seconds"
4063msgstr "ELAPSED - temps écoulé en secondes" 4318msgstr "ELAPSED - temps écoulé en secondes"
4064 4319
4065#: plugins/check_procs.c:721 4320#: plugins/check_procs.c:762
4066msgid "Extra information. Up to 3 verbosity levels" 4321msgid "Extra information. Up to 3 verbosity levels"
4067msgstr "informations supplémentaires. Jusqu'à 3 niveaux de verbosité" 4322msgstr "informations supplémentaires. Jusqu'à 3 niveaux de verbosité"
4068 4323
4069#: plugins/check_procs.c:724 4324#: plugins/check_procs.c:765
4070msgid "Filter own process the traditional way by PID instead of /proc/pid/exe" 4325msgid "Filter own process the traditional way by PID instead of /proc/pid/exe"
4071msgstr "" 4326msgstr ""
4072 4327
4073#: plugins/check_procs.c:729 4328#: plugins/check_procs.c:770
4074msgid "Only scan for processes that have, in the output of `ps`, one or" 4329msgid "Only scan for processes that have, in the output of `ps`, one or"
4075msgstr "" 4330msgstr ""
4076 4331
4077#: plugins/check_procs.c:730 4332#: plugins/check_procs.c:771
4078msgid "more of the status flags you specify (for example R, Z, S, RS," 4333msgid "more of the status flags you specify (for example R, Z, S, RS,"
4079msgstr "" 4334msgstr ""
4080 4335
4081#: plugins/check_procs.c:731 4336#: plugins/check_procs.c:772
4082msgid "RSZDT, plus others based on the output of your 'ps' command)." 4337msgid "RSZDT, plus others based on the output of your 'ps' command)."
4083msgstr "" 4338msgstr ""
4084 4339
4085#: plugins/check_procs.c:733 4340#: plugins/check_procs.c:774
4086msgid "Only scan for children of the parent process ID indicated." 4341msgid "Only scan for children of the parent process ID indicated."
4087msgstr "" 4342msgstr ""
4088 4343
4089#: plugins/check_procs.c:735 4344#: plugins/check_procs.c:776
4090msgid "Only scan for processes with VSZ higher than indicated." 4345msgid "Only scan for processes with VSZ higher than indicated."
4091msgstr "" 4346msgstr ""
4092 4347
4093#: plugins/check_procs.c:737 4348#: plugins/check_procs.c:778
4094msgid "Only scan for processes with RSS higher than indicated." 4349msgid "Only scan for processes with RSS higher than indicated."
4095msgstr "" 4350msgstr ""
4096 4351
4097#: plugins/check_procs.c:739 4352#: plugins/check_procs.c:780
4098msgid "Only scan for processes with PCPU higher than indicated." 4353msgid "Only scan for processes with PCPU higher than indicated."
4099msgstr "" 4354msgstr ""
4100 4355
4101#: plugins/check_procs.c:741 4356#: plugins/check_procs.c:782
4102msgid "Only scan for processes with user name or ID indicated." 4357msgid "Only scan for processes with user name or ID indicated."
4103msgstr "" 4358msgstr ""
4104 4359
4105#: plugins/check_procs.c:743 4360#: plugins/check_procs.c:784
4106msgid "Only scan for processes with args that contain STRING." 4361msgid "Only scan for processes with args that contain STRING."
4107msgstr "" 4362msgstr ""
4108 4363
4109#: plugins/check_procs.c:745 4364#: plugins/check_procs.c:786
4110msgid "Only scan for processes with args that contain the regex STRING." 4365msgid "Only scan for processes with args that contain the regex STRING."
4111msgstr "" 4366msgstr ""
4112 4367
4113#: plugins/check_procs.c:747 4368#: plugins/check_procs.c:788
4114msgid "Only scan for exact matches of COMMAND (without path)." 4369msgid "Only scan for exact matches of COMMAND (without path)."
4115msgstr "" 4370msgstr ""
4116 4371
4117#: plugins/check_procs.c:749 4372#: plugins/check_procs.c:790
4373msgid "Exclude processes which match this comma separated list"
4374msgstr ""
4375
4376#: plugins/check_procs.c:792
4118msgid "Only scan for non kernel threads (works on Linux only)." 4377msgid "Only scan for non kernel threads (works on Linux only)."
4119msgstr "" 4378msgstr ""
4120 4379
4121#: plugins/check_procs.c:751 4380#: plugins/check_procs.c:794
4122#, c-format 4381#, c-format
4123msgid "" 4382msgid ""
4124"\n" 4383"\n"
@@ -4133,7 +4392,7 @@ msgstr ""
4133"est à l'intérieur du seuil\n" 4392"est à l'intérieur du seuil\n"
4134"\n" 4393"\n"
4135 4394
4136#: plugins/check_procs.c:756 4395#: plugins/check_procs.c:799
4137#, c-format 4396#, c-format
4138msgid "" 4397msgid ""
4139"This plugin checks the number of currently running processes and\n" 4398"This plugin checks the number of currently running processes and\n"
@@ -4150,165 +4409,186 @@ msgstr ""
4150"état actuel (ex: 'Z'), ou par le nombre de processus en cours d'exécution\n" 4409"état actuel (ex: 'Z'), ou par le nombre de processus en cours d'exécution\n"
4151"\n" 4410"\n"
4152 4411
4153#: plugins/check_procs.c:765 4412#: plugins/check_procs.c:808
4154msgid "Warning if not two processes with command name portsentry." 4413msgid "Warning if not two processes with command name portsentry."
4155msgstr "" 4414msgstr ""
4156 4415
4157#: plugins/check_procs.c:766 4416#: plugins/check_procs.c:809
4158msgid "Critical if < 2 or > 1024 processes" 4417msgid "Critical if < 2 or > 1024 processes"
4159msgstr "" 4418msgstr ""
4160 4419
4161#: plugins/check_procs.c:768 4420#: plugins/check_procs.c:811
4421msgid "Critical if not at least 1 process with command sshd"
4422msgstr ""
4423
4424#: plugins/check_procs.c:813
4425msgid "Warning if > 1024 processes with command name sshd."
4426msgstr ""
4427
4428#: plugins/check_procs.c:814
4429msgid "Critical if < 1 processes with command name sshd."
4430msgstr ""
4431
4432#: plugins/check_procs.c:816
4162msgid "Warning alert if > 10 processes with command arguments containing" 4433msgid "Warning alert if > 10 processes with command arguments containing"
4163msgstr "" 4434msgstr ""
4164 4435
4165#: plugins/check_procs.c:769 4436#: plugins/check_procs.c:817
4166msgid "'/usr/local/bin/perl' and owned by root" 4437msgid "'/usr/local/bin/perl' and owned by root"
4167msgstr "" 4438msgstr ""
4168 4439
4169#: plugins/check_procs.c:771 4440#: plugins/check_procs.c:819
4170msgid "Alert if VSZ of any processes over 50K or 100K" 4441msgid "Alert if VSZ of any processes over 50K or 100K"
4171msgstr "" 4442msgstr ""
4172 4443
4173#: plugins/check_procs.c:773 4444#: plugins/check_procs.c:821
4174#, c-format 4445msgid "Alert if CPU of any processes over 10% or 20%"
4175msgid "Alert if CPU of any processes over 10%% or 20%%"
4176msgstr "" 4446msgstr ""
4177 4447
4178#: plugins/check_radius.c:165 4448#: plugins/check_radius.c:181
4179msgid "Config file error" 4449#, fuzzy
4450msgid "Config file error\n"
4180msgstr "Erreur dans le fichier de configuration" 4451msgstr "Erreur dans le fichier de configuration"
4181 4452
4182#: plugins/check_radius.c:174 4453#: plugins/check_radius.c:190
4183msgid "Out of Memory?" 4454#, fuzzy
4455msgid "Out of Memory?\n"
4184msgstr "Manque de Mémoire?" 4456msgstr "Manque de Mémoire?"
4185 4457
4186#: plugins/check_radius.c:178 4458#: plugins/check_radius.c:194
4187msgid "Invalid NAS-Identifier" 4459#, fuzzy
4460msgid "Invalid NAS-Identifier\n"
4188msgstr "NAS-Identifier invalide" 4461msgstr "NAS-Identifier invalide"
4189 4462
4190#: plugins/check_radius.c:183 plugins/check_radius.c:185 4463#: plugins/check_radius.c:199 plugins/check_smtp.c:156
4191#: plugins/check_radius.c:191 4464#, c-format
4192msgid "Invalid NAS-IP-Address" 4465msgid "gethostname() failed!\n"
4193msgstr "NAS-IP-Address invalide" 4466msgstr "La commande gethostname() à échoué\n"
4194 4467
4195#: plugins/check_radius.c:188 4468#: plugins/check_radius.c:203 plugins/check_radius.c:206
4196msgid "Can't find local IP for NAS-IP-Address" 4469#, fuzzy
4197msgstr "Impossible de trouver une addresse IP locale pour le NAS-IP-Address" 4470msgid "Invalid NAS-IP-Address\n"
4471msgstr "NAS-IP-Address invalide"
4198 4472
4199#: plugins/check_radius.c:202 4473#: plugins/check_radius.c:217
4200msgid "Timeout" 4474#, fuzzy
4475msgid "Timeout\n"
4201msgstr "Temps dépassé" 4476msgstr "Temps dépassé"
4202 4477
4203#: plugins/check_radius.c:204 4478#: plugins/check_radius.c:219
4204msgid "Auth Error" 4479#, fuzzy
4480msgid "Auth Error\n"
4205msgstr "Erreur d'authentification" 4481msgstr "Erreur d'authentification"
4206 4482
4207#: plugins/check_radius.c:206 4483#: plugins/check_radius.c:221
4208msgid "Auth Failed" 4484#, fuzzy
4485msgid "Auth Failed\n"
4209msgstr "L'authentification à échoué" 4486msgstr "L'authentification à échoué"
4210 4487
4211#: plugins/check_radius.c:208 4488#: plugins/check_radius.c:223
4212msgid "Bad Response" 4489#, fuzzy
4490msgid "Bad Response\n"
4213msgstr "Réponse invalide" 4491msgstr "Réponse invalide"
4214 4492
4215#: plugins/check_radius.c:212 4493#: plugins/check_radius.c:227
4216msgid "Auth OK" 4494#, fuzzy
4495msgid "Auth OK\n"
4217msgstr "L'authentification à réussi" 4496msgstr "L'authentification à réussi"
4218 4497
4219#: plugins/check_radius.c:213 4498#: plugins/check_radius.c:228
4220#, c-format 4499#, c-format
4221msgid "Unexpected result code %d" 4500msgid "Unexpected result code %d"
4222msgstr "Résultat inattendu: %d" 4501msgstr "Résultat inattendu: %d"
4223 4502
4224#: plugins/check_radius.c:302 4503#: plugins/check_radius.c:317
4225msgid "Number of retries must be a positive integer" 4504msgid "Number of retries must be a positive integer"
4226msgstr "Le nombre d'essai doit être un entier positif" 4505msgstr "Le nombre d'essai doit être un entier positif"
4227 4506
4228#: plugins/check_radius.c:316 4507#: plugins/check_radius.c:331
4229msgid "User not specified" 4508msgid "User not specified"
4230msgstr "L'utilisateur n'a pas été spécifié" 4509msgstr "L'utilisateur n'a pas été spécifié"
4231 4510
4232#: plugins/check_radius.c:318 4511#: plugins/check_radius.c:333
4233msgid "Password not specified" 4512msgid "Password not specified"
4234msgstr "Le mot de passe n'a pas été spécifié" 4513msgstr "Le mot de passe n'a pas été spécifié"
4235 4514
4236#: plugins/check_radius.c:320 4515#: plugins/check_radius.c:335
4237msgid "Configuration file not specified" 4516msgid "Configuration file not specified"
4238msgstr "Le fichier de configuration n'a pas été spécifié" 4517msgstr "Le fichier de configuration n'a pas été spécifié"
4239 4518
4240#: plugins/check_radius.c:338 4519#: plugins/check_radius.c:353
4241msgid "Tests to see if a RADIUS server is accepting connections." 4520msgid "Tests to see if a RADIUS server is accepting connections."
4242msgstr "Teste si un serveur RADIUS accepte les connections." 4521msgstr "Teste si un serveur RADIUS accepte les connections."
4243 4522
4244#: plugins/check_radius.c:350 4523#: plugins/check_radius.c:365
4245msgid "The user to authenticate" 4524msgid "The user to authenticate"
4246msgstr "" 4525msgstr ""
4247 4526
4248#: plugins/check_radius.c:352 4527#: plugins/check_radius.c:367
4249msgid "Password for authentication (SECURITY RISK)" 4528msgid "Password for authentication (SECURITY RISK)"
4250msgstr "" 4529msgstr ""
4251 4530
4252#: plugins/check_radius.c:354 4531#: plugins/check_radius.c:369
4253msgid "NAS identifier" 4532msgid "NAS identifier"
4254msgstr "" 4533msgstr ""
4255 4534
4256#: plugins/check_radius.c:356 4535#: plugins/check_radius.c:371
4257msgid "NAS IP Address" 4536msgid "NAS IP Address"
4258msgstr "Adresse IP NAS" 4537msgstr "Adresse IP NAS"
4259 4538
4260#: plugins/check_radius.c:358 4539#: plugins/check_radius.c:373
4261msgid "Configuration file" 4540msgid "Configuration file"
4262msgstr "Fichier de configuration" 4541msgstr "Fichier de configuration"
4263 4542
4264#: plugins/check_radius.c:360 4543#: plugins/check_radius.c:375
4265msgid "Response string to expect from the server" 4544msgid "Response string to expect from the server"
4266msgstr "" 4545msgstr ""
4267 4546
4268#: plugins/check_radius.c:362 4547#: plugins/check_radius.c:377
4269msgid "Number of times to retry a failed connection" 4548msgid "Number of times to retry a failed connection"
4270msgstr "" 4549msgstr ""
4271 4550
4272#: plugins/check_radius.c:367 4551#: plugins/check_radius.c:382
4273msgid "" 4552msgid ""
4274"This plugin tests a RADIUS server to see if it is accepting connections." 4553"This plugin tests a RADIUS server to see if it is accepting connections."
4275msgstr "" 4554msgstr ""
4276"Ce plugin teste un serveur RADIUS afin de vérifier si il accepte les " 4555"Ce plugin teste un serveur RADIUS afin de vérifier si il accepte les "
4277"connections." 4556"connections."
4278 4557
4279#: plugins/check_radius.c:368 4558#: plugins/check_radius.c:383
4280msgid "" 4559msgid ""
4281"The server to test must be specified in the invocation, as well as a user" 4560"The server to test must be specified in the invocation, as well as a user"
4282msgstr "" 4561msgstr ""
4283 4562
4284#: plugins/check_radius.c:369 4563#: plugins/check_radius.c:384
4285msgid "" 4564msgid ""
4286"name and password. A configuration file may also be present. The format of" 4565"name and password. A configuration file may also be present. The format of"
4287msgstr "" 4566msgstr ""
4288 4567
4289#: plugins/check_radius.c:370 4568#: plugins/check_radius.c:385
4290msgid "" 4569msgid ""
4291"the configuration file is described in the radiusclient library sources." 4570"the configuration file is described in the radiusclient library sources."
4292msgstr "" 4571msgstr ""
4293 4572
4294#: plugins/check_radius.c:371 4573#: plugins/check_radius.c:386
4295msgid "The password option presents a substantial security issue because the" 4574msgid "The password option presents a substantial security issue because the"
4296msgstr "" 4575msgstr ""
4297 4576
4298#: plugins/check_radius.c:372 4577#: plugins/check_radius.c:387
4299msgid "" 4578msgid ""
4300"password can possibly be determined by careful watching of the command line" 4579"password can possibly be determined by careful watching of the command line"
4301msgstr "" 4580msgstr ""
4302 4581
4303#: plugins/check_radius.c:373 4582#: plugins/check_radius.c:388
4304msgid "in a process listing. This risk is exacerbated because the monitor will" 4583msgid "in a process listing. This risk is exacerbated because the plugin will"
4305msgstr "" 4584msgstr ""
4306 4585
4307#: plugins/check_radius.c:374 4586#: plugins/check_radius.c:389
4308msgid "run the plugin at regular predictable intervals. Please be sure that" 4587msgid ""
4588"typically be executed at regular predictable intervals. Please be sure that"
4309msgstr "" 4589msgstr ""
4310 4590
4311#: plugins/check_radius.c:375 4591#: plugins/check_radius.c:390
4312msgid "the password used does not allow access to sensitive system resources." 4592msgid "the password used does not allow access to sensitive system resources."
4313msgstr "" 4593msgstr ""
4314 4594
@@ -4322,760 +4602,868 @@ msgstr "Impossible de se connecter à %s sur le port %d\n"
4322msgid "No data received from %s\n" 4602msgid "No data received from %s\n"
4323msgstr "Pas de données reçues de %s\n" 4603msgstr "Pas de données reçues de %s\n"
4324 4604
4325#: plugins/check_real.c:118 plugins/check_real.c:191 4605#: plugins/check_real.c:118 plugins/check_real.c:192
4326msgid "Invalid REAL response received from host" 4606msgid "Invalid REAL response received from host"
4327msgstr "Réponses REAL invalide reçue de l'hôte" 4607msgstr "Réponses REAL invalide reçue de l'hôte"
4328 4608
4329#: plugins/check_real.c:120 plugins/check_real.c:193 4609#: plugins/check_real.c:120 plugins/check_real.c:194
4330#, c-format 4610#, c-format
4331msgid "Invalid REAL response received from host on port %d\n" 4611msgid "Invalid REAL response received from host on port %d\n"
4332msgstr "Réponses REAL invalide reçue de l'hôte sur le port %d\n" 4612msgstr "Réponses REAL invalide reçue de l'hôte sur le port %d\n"
4333 4613
4334#: plugins/check_real.c:184 plugins/check_tcp.c:311 4614#: plugins/check_real.c:185 plugins/check_tcp.c:315
4335#, c-format 4615#, c-format
4336msgid "No data received from host\n" 4616msgid "No data received from host\n"
4337msgstr "Pas de données reçues de l'hôte\n" 4617msgstr "Pas de données reçues de l'hôte\n"
4338 4618
4339#: plugins/check_real.c:247 4619#: plugins/check_real.c:248
4340#, c-format 4620#, c-format
4341msgid "REAL %s - %d second response time\n" 4621msgid "REAL %s - %d second response time\n"
4342msgstr "REAL %s - %d secondes de temps de réponse\n" 4622msgstr "REAL %s - %d secondes de temps de réponse\n"
4343 4623
4344#: plugins/check_real.c:336 plugins/check_ups.c:536 4624#: plugins/check_real.c:337 plugins/check_ups.c:539
4345msgid "Warning time must be a positive integer" 4625msgid "Warning time must be a positive integer"
4346msgstr "Le seuil d'avertissement doit être un entier positif" 4626msgstr "Le seuil d'avertissement doit être un entier positif"
4347 4627
4348#: plugins/check_real.c:345 plugins/check_ups.c:527 4628#: plugins/check_real.c:346 plugins/check_ups.c:530
4349msgid "Critical time must be a positive integer" 4629msgid "Critical time must be a positive integer"
4350msgstr "Le seuil critique doit être un entier positif" 4630msgstr "Le seuil critique doit être un entier positif"
4351 4631
4352#: plugins/check_real.c:381 4632#: plugins/check_real.c:382
4353msgid "You must provide a server to check" 4633msgid "You must provide a server to check"
4354msgstr "Vous devez fournir un serveur à vérifier" 4634msgstr "Vous devez fournir un serveur à vérifier"
4355 4635
4356#: plugins/check_real.c:413 4636#: plugins/check_real.c:414
4357msgid "This plugin tests the REAL service on the specified host." 4637msgid "This plugin tests the REAL service on the specified host."
4358msgstr "Ce plugin teste le service REAL sur l'hôte spécifié." 4638msgstr "Ce plugin teste le service REAL sur l'hôte spécifié."
4359 4639
4360#: plugins/check_real.c:425 4640#: plugins/check_real.c:426
4361msgid "Connect to this url" 4641msgid "Connect to this url"
4362msgstr "" 4642msgstr ""
4363 4643
4364#: plugins/check_real.c:427 4644#: plugins/check_real.c:428
4365#, c-format 4645#, c-format
4366msgid "String to expect in first line of server response (default: %s)\n" 4646msgid "String to expect in first line of server response (default: %s)\n"
4367msgstr "" 4647msgstr ""
4368"Texte attendu dans la première ligne de réponse du serveur (défaut: %s)\n" 4648"Texte attendu dans la première ligne de réponse du serveur (défaut: %s)\n"
4369 4649
4370#: plugins/check_real.c:437 4650#: plugins/check_real.c:438
4371msgid "This plugin will attempt to open an RTSP connection with the host." 4651msgid "This plugin will attempt to open an RTSP connection with the host."
4372msgstr "Ce plugin va essayer d'ouvrir un connexion RTSP avec l'hôte." 4652msgstr "Ce plugin va essayer d'ouvrir un connexion RTSP avec l'hôte."
4373 4653
4374#: plugins/check_real.c:438 plugins/check_smtp.c:830 4654#: plugins/check_real.c:439 plugins/check_smtp.c:877
4375msgid "Successful connects return STATE_OK, refusals and timeouts return" 4655msgid "Successful connects return STATE_OK, refusals and timeouts return"
4376msgstr "" 4656msgstr ""
4377 4657
4378#: plugins/check_real.c:439 4658#: plugins/check_real.c:440
4379msgid "" 4659msgid ""
4380"STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful connects," 4660"STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful connects,"
4381msgstr "" 4661msgstr ""
4382 4662
4383#: plugins/check_real.c:440 4663#: plugins/check_real.c:441
4384msgid "" 4664msgid ""
4385"but incorrect response messages from the host result in STATE_WARNING return" 4665"but incorrect response messages from the host result in STATE_WARNING return"
4386msgstr "" 4666msgstr ""
4387 4667
4388#: plugins/check_real.c:441 4668#: plugins/check_real.c:442
4389msgid "values." 4669msgid "values."
4390msgstr "" 4670msgstr ""
4391 4671
4392#: plugins/check_smtp.c:150 plugins/check_swap.c:265 plugins/check_swap.c:271 4672#: plugins/check_smtp.c:152 plugins/check_swap.c:283 plugins/check_swap.c:289
4393#, c-format 4673#, c-format
4394msgid "malloc() failed!\n" 4674msgid "malloc() failed!\n"
4395msgstr "l'allocation mémoire à échoué!\n" 4675msgstr "l'allocation mémoire à échoué!\n"
4396 4676
4397#: plugins/check_smtp.c:154 4677#: plugins/check_smtp.c:200 plugins/check_smtp.c:212
4398#, c-format
4399msgid "gethostname() failed!\n"
4400msgstr "La commande gethostname() à échoué\n"
4401
4402#: plugins/check_smtp.c:189 plugins/check_smtp.c:213
4403#, c-format 4678#, c-format
4404msgid "recv() failed\n" 4679msgid "recv() failed\n"
4405msgstr "La commande recv() à échoué\n" 4680msgstr "La commande recv() à échoué\n"
4406 4681
4407#: plugins/check_smtp.c:200 4682#: plugins/check_smtp.c:222
4408#, c-format
4409msgid "Invalid SMTP response received from host: %s\n"
4410msgstr "Réponse SMTP reçue de l'hôte invalide: %s\n"
4411
4412#: plugins/check_smtp.c:202
4413#, c-format
4414msgid "Invalid SMTP response received from host on port %d: %s\n"
4415msgstr "Réponse SMTP reçue de l'hôte sur le port %d invalide: %s\n"
4416
4417#: plugins/check_smtp.c:223
4418#, c-format 4683#, c-format
4419msgid "WARNING - TLS not supported by server\n" 4684msgid "WARNING - TLS not supported by server\n"
4420msgstr "AVERTISSEMENT: - TLS n'est pas supporté par ce serveur\n" 4685msgstr "AVERTISSEMENT: - TLS n'est pas supporté par ce serveur\n"
4421 4686
4422#: plugins/check_smtp.c:235 4687#: plugins/check_smtp.c:234
4423#, c-format 4688#, c-format
4424msgid "Server does not support STARTTLS\n" 4689msgid "Server does not support STARTTLS\n"
4425msgstr "Le serveur ne supporte pas STARTTLS\n" 4690msgstr "Le serveur ne supporte pas STARTTLS\n"
4426 4691
4427#: plugins/check_smtp.c:241 4692#: plugins/check_smtp.c:240
4428#, c-format 4693#, c-format
4429msgid "CRITICAL - Cannot create SSL context.\n" 4694msgid "CRITICAL - Cannot create SSL context.\n"
4430msgstr "CRITIQUE - Impossible de créer le contexte SSL.\n" 4695msgstr "CRITIQUE - Impossible de créer le contexte SSL.\n"
4431 4696
4432#: plugins/check_smtp.c:261 4697#: plugins/check_smtp.c:260
4433msgid "SMTP UNKNOWN - Cannot send EHLO command via TLS." 4698msgid "SMTP UNKNOWN - Cannot send EHLO command via TLS."
4434msgstr "" 4699msgstr ""
4435 4700
4436#: plugins/check_smtp.c:266 4701#: plugins/check_smtp.c:265
4437#, c-format 4702#, c-format
4438msgid "sent %s" 4703msgid "sent %s"
4439msgstr "envoyé %s" 4704msgstr "envoyé %s"
4440 4705
4441#: plugins/check_smtp.c:268 4706#: plugins/check_smtp.c:267
4442msgid "SMTP UNKNOWN - Cannot read EHLO response via TLS." 4707msgid "SMTP UNKNOWN - Cannot read EHLO response via TLS."
4443msgstr "" 4708msgstr ""
4444 4709
4445#: plugins/check_smtp.c:303 plugins/check_snmp.c:806 4710#: plugins/check_smtp.c:297
4711#, c-format
4712msgid "Invalid SMTP response received from host: %s\n"
4713msgstr "Réponse SMTP reçue de l'hôte invalide: %s\n"
4714
4715#: plugins/check_smtp.c:299
4716#, c-format
4717msgid "Invalid SMTP response received from host on port %d: %s\n"
4718msgstr "Réponse SMTP reçue de l'hôte sur le port %d invalide: %s\n"
4719
4720#: plugins/check_smtp.c:322 plugins/check_snmp.c:865
4446#, c-format 4721#, c-format
4447msgid "Could Not Compile Regular Expression" 4722msgid "Could Not Compile Regular Expression"
4448msgstr "Impossible de compiler l'expression rationnelle" 4723msgstr "Impossible de compiler l'expression rationnelle"
4449 4724
4450#: plugins/check_smtp.c:312 4725#: plugins/check_smtp.c:331
4451#, c-format 4726#, c-format
4452msgid "SMTP %s - Invalid response '%s' to command '%s'\n" 4727msgid "SMTP %s - Invalid response '%s' to command '%s'\n"
4453msgstr "SMTP %s - réponse invalide de '%s' à la commande '%s'\n" 4728msgstr "SMTP %s - réponse invalide de '%s' à la commande '%s'\n"
4454 4729
4455#: plugins/check_smtp.c:316 plugins/check_snmp.c:511 4730#: plugins/check_smtp.c:335 plugins/check_snmp.c:540
4456#, c-format 4731#, c-format
4457msgid "Execute Error: %s\n" 4732msgid "Execute Error: %s\n"
4458msgstr "Erreur d'exécution: %s\n" 4733msgstr "Erreur d'exécution: %s\n"
4459 4734
4460#: plugins/check_smtp.c:330 4735#: plugins/check_smtp.c:349
4461msgid "no authuser specified, " 4736msgid "no authuser specified, "
4462msgstr "Pas d'utilisateur pour l'authentification spécifié, " 4737msgstr "Pas d'utilisateur pour l'authentification spécifié, "
4463 4738
4464#: plugins/check_smtp.c:335 4739#: plugins/check_smtp.c:354
4465msgid "no authpass specified, " 4740msgid "no authpass specified, "
4466msgstr "pas de mot de passe spécifié, " 4741msgstr "pas de mot de passe spécifié, "
4467 4742
4468#: plugins/check_smtp.c:342 plugins/check_smtp.c:363 plugins/check_smtp.c:383 4743#: plugins/check_smtp.c:361 plugins/check_smtp.c:382 plugins/check_smtp.c:402
4469#: plugins/check_smtp.c:688 4744#: plugins/check_smtp.c:727
4470#, c-format 4745#, c-format
4471msgid "sent %s\n" 4746msgid "sent %s\n"
4472msgstr "envoyé %s\n" 4747msgstr "envoyé %s\n"
4473 4748
4474#: plugins/check_smtp.c:345 4749#: plugins/check_smtp.c:364
4475msgid "recv() failed after AUTH LOGIN, " 4750msgid "recv() failed after AUTH LOGIN, "
4476msgstr "recv() à échoué après AUTH LOGIN, " 4751msgstr "recv() à échoué après AUTH LOGIN, "
4477 4752
4478#: plugins/check_smtp.c:350 plugins/check_smtp.c:371 plugins/check_smtp.c:391 4753#: plugins/check_smtp.c:369 plugins/check_smtp.c:390 plugins/check_smtp.c:410
4479#: plugins/check_smtp.c:699 4754#: plugins/check_smtp.c:738
4480#, c-format 4755#, c-format
4481msgid "received %s\n" 4756msgid "received %s\n"
4482msgstr "reçu %s\n" 4757msgstr "reçu %s\n"
4483 4758
4484#: plugins/check_smtp.c:354 4759#: plugins/check_smtp.c:373
4485msgid "invalid response received after AUTH LOGIN, " 4760msgid "invalid response received after AUTH LOGIN, "
4486msgstr "Réponse invalide reçue après AUTH LOGIN, " 4761msgstr "Réponse invalide reçue après AUTH LOGIN, "
4487 4762
4488#: plugins/check_smtp.c:367 4763#: plugins/check_smtp.c:386
4489msgid "recv() failed after sending authuser, " 4764msgid "recv() failed after sending authuser, "
4490msgstr "La commande recv() a échoué après authuser, " 4765msgstr "La commande recv() a échoué après authuser, "
4491 4766
4492#: plugins/check_smtp.c:375 4767#: plugins/check_smtp.c:394
4493msgid "invalid response received after authuser, " 4768msgid "invalid response received after authuser, "
4494msgstr "Réponse invalide reçue après authuser, " 4769msgstr "Réponse invalide reçue après authuser, "
4495 4770
4496#: plugins/check_smtp.c:387 4771#: plugins/check_smtp.c:406
4497msgid "recv() failed after sending authpass, " 4772msgid "recv() failed after sending authpass, "
4498msgstr "la commande recv() à échoué après authpass, " 4773msgstr "la commande recv() à échoué après authpass, "
4499 4774
4500#: plugins/check_smtp.c:395 4775#: plugins/check_smtp.c:414
4501msgid "invalid response received after authpass, " 4776msgid "invalid response received after authpass, "
4502msgstr "Réponse invalide reçue après authpass, " 4777msgstr "Réponse invalide reçue après authpass, "
4503 4778
4504#: plugins/check_smtp.c:402 4779#: plugins/check_smtp.c:421
4505msgid "only authtype LOGIN is supported, " 4780msgid "only authtype LOGIN is supported, "
4506msgstr "seul la méthode d'authentification LOGIN est supportée, " 4781msgstr "seul la méthode d'authentification LOGIN est supportée, "
4507 4782
4508#: plugins/check_smtp.c:426 4783#: plugins/check_smtp.c:445
4509#, c-format 4784#, c-format
4510msgid "SMTP %s - %s%.3f sec. response time%s%s|%s\n" 4785msgid "SMTP %s - %s%.3f sec. response time%s%s|%s\n"
4511msgstr "SMTP %s - %s%.3f sec. de temps de réponse%s%s|%s\n" 4786msgstr "SMTP %s - %s%.3f sec. de temps de réponse%s%s|%s\n"
4512 4787
4513#: plugins/check_smtp.c:536 plugins/check_smtp.c:548 4788#: plugins/check_smtp.c:562 plugins/check_smtp.c:574
4514#, c-format 4789#, c-format
4515msgid "Could not realloc() units [%d]\n" 4790msgid "Could not realloc() units [%d]\n"
4516msgstr "Impossible de réallouer des unités [%d]\n" 4791msgstr "Impossible de réallouer des unités [%d]\n"
4517 4792
4518#: plugins/check_smtp.c:556 4793#: plugins/check_smtp.c:582
4519#, fuzzy 4794#, fuzzy
4520msgid "Critical time must be a positive" 4795msgid "Critical time must be a positive"
4521msgstr "Le seuil critique doit être un entier positif" 4796msgstr "Le seuil critique doit être un entier positif"
4522 4797
4523#: plugins/check_smtp.c:564 4798#: plugins/check_smtp.c:590
4524#, fuzzy 4799#, fuzzy
4525msgid "Warning time must be a positive" 4800msgid "Warning time must be a positive"
4526msgstr "Le seuil d'avertissement doit être un entier positif" 4801msgstr "Le seuil d'avertissement doit être un entier positif"
4527 4802
4528#: plugins/check_smtp.c:611 4803#: plugins/check_smtp.c:633 plugins/check_smtp.c:644
4529msgid "SSL support not available - install OpenSSL and recompile" 4804msgid "SSL support not available - install OpenSSL and recompile"
4530msgstr "SSL n'est pas disponible - installer OpenSSL et recompilez" 4805msgstr "SSL n'est pas disponible - installer OpenSSL et recompilez"
4531 4806
4532#: plugins/check_smtp.c:679 plugins/check_smtp.c:684 4807#: plugins/check_smtp.c:718 plugins/check_smtp.c:723
4533#, c-format 4808#, c-format
4534msgid "Connection closed by server before sending QUIT command\n" 4809msgid "Connection closed by server before sending QUIT command\n"
4535msgstr "" 4810msgstr ""
4536 4811
4537#: plugins/check_smtp.c:694 4812#: plugins/check_smtp.c:733
4538#, c-format 4813#, c-format
4539msgid "recv() failed after QUIT." 4814msgid "recv() failed after QUIT."
4540msgstr "recv() à échoué après QUIT." 4815msgstr "recv() à échoué après QUIT."
4541 4816
4542#: plugins/check_smtp.c:696 4817#: plugins/check_smtp.c:735
4543#, c-format 4818#, c-format
4544msgid "Connection reset by peer." 4819msgid "Connection reset by peer."
4545msgstr "" 4820msgstr ""
4546 4821
4547#: plugins/check_smtp.c:784 4822#: plugins/check_smtp.c:825
4548msgid "This plugin will attempt to open an SMTP connection with the host." 4823msgid "This plugin will attempt to open an SMTP connection with the host."
4549msgstr "Ce plugin va essayer d'ouvrir un connexion SMTP avec l'hôte." 4824msgstr "Ce plugin va essayer d'ouvrir un connexion SMTP avec l'hôte."
4550 4825
4551#: plugins/check_smtp.c:798 4826#: plugins/check_smtp.c:839
4552#, c-format 4827#, c-format
4553msgid " String to expect in first line of server response (default: '%s')\n" 4828msgid " String to expect in first line of server response (default: '%s')\n"
4554msgstr "" 4829msgstr ""
4555" Texte attendu dans la première ligne de réponse du serveur (défaut: " 4830" Texte attendu dans la première ligne de réponse du serveur (défaut: "
4556"'%s')\n" 4831"'%s')\n"
4557 4832
4558#: plugins/check_smtp.c:800 4833#: plugins/check_smtp.c:841
4559msgid "SMTP command (may be used repeatedly)" 4834msgid "SMTP command (may be used repeatedly)"
4560msgstr "Commande SMTP (peut être utilisé plusieurs fois)" 4835msgstr "Commande SMTP (peut être utilisé plusieurs fois)"
4561 4836
4562#: plugins/check_smtp.c:802 4837#: plugins/check_smtp.c:843
4563msgid "Expected response to command (may be used repeatedly)" 4838msgid "Expected response to command (may be used repeatedly)"
4564msgstr "" 4839msgstr ""
4565 4840
4566#: plugins/check_smtp.c:804 4841#: plugins/check_smtp.c:845
4567msgid "FROM-address to include in MAIL command, required by Exchange 2000" 4842msgid "FROM-address to include in MAIL command, required by Exchange 2000"
4568msgstr "" 4843msgstr ""
4569 4844
4570#: plugins/check_smtp.c:806 4845#: plugins/check_smtp.c:847
4571msgid "FQDN used for HELO" 4846msgid "FQDN used for HELO"
4572msgstr "" 4847msgstr ""
4573 4848
4574#: plugins/check_smtp.c:809 plugins/check_tcp.c:665 4849#: plugins/check_smtp.c:849
4850msgid "Use PROXY protocol prefix for the connection."
4851msgstr "Utiliser le préfixe du protocole PROXY pour la connexion."
4852
4853#: plugins/check_smtp.c:852 plugins/check_tcp.c:689
4575msgid "Minimum number of days a certificate has to be valid." 4854msgid "Minimum number of days a certificate has to be valid."
4576msgstr "Nombre de jours minimum pour que le certificat soit valide." 4855msgstr "Nombre de jours minimum pour que le certificat soit valide."
4577 4856
4578#: plugins/check_smtp.c:811 4857#: plugins/check_smtp.c:854
4579msgid "Use STARTTLS for the connection." 4858msgid "Use STARTTLS for the connection."
4580msgstr "" 4859msgstr ""
4581 4860
4582#: plugins/check_smtp.c:815 4861#: plugins/check_smtp.c:860
4583msgid "SMTP AUTH type to check (default none, only LOGIN supported)" 4862msgid "SMTP AUTH type to check (default none, only LOGIN supported)"
4584msgstr "" 4863msgstr ""
4585 4864
4586#: plugins/check_smtp.c:817 4865#: plugins/check_smtp.c:862
4587msgid "SMTP AUTH username" 4866msgid "SMTP AUTH username"
4588msgstr "" 4867msgstr ""
4589 4868
4590#: plugins/check_smtp.c:819 4869#: plugins/check_smtp.c:864
4591msgid "SMTP AUTH password" 4870msgid "SMTP AUTH password"
4592msgstr "" 4871msgstr ""
4593 4872
4594#: plugins/check_smtp.c:821 4873#: plugins/check_smtp.c:866
4874msgid "Send LHLO instead of HELO/EHLO"
4875msgstr ""
4876
4877#: plugins/check_smtp.c:868
4595msgid "Ignore failure when sending QUIT command to server" 4878msgid "Ignore failure when sending QUIT command to server"
4596msgstr "" 4879msgstr ""
4597 4880
4598#: plugins/check_smtp.c:831 4881#: plugins/check_smtp.c:878
4599msgid "STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful" 4882msgid "STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful"
4600msgstr "" 4883msgstr ""
4601 4884
4602#: plugins/check_smtp.c:832 4885#: plugins/check_smtp.c:879
4603msgid "connects, but incorrect response messages from the host result in" 4886msgid "connects, but incorrect response messages from the host result in"
4604msgstr "" 4887msgstr ""
4605 4888
4606#: plugins/check_smtp.c:833 4889#: plugins/check_smtp.c:880
4607msgid "STATE_WARNING return values." 4890msgid "STATE_WARNING return values."
4608msgstr "" 4891msgstr ""
4609 4892
4610#: plugins/check_snmp.c:169 plugins/check_snmp.c:582 4893#: plugins/check_snmp.c:177 plugins/check_snmp.c:626
4611msgid "Cannot malloc" 4894msgid "Cannot malloc"
4612msgstr "" 4895msgstr ""
4613 4896
4614#: plugins/check_snmp.c:356 4897#: plugins/check_snmp.c:368
4615#, c-format 4898#, c-format
4616msgid "External command error: %s\n" 4899msgid "External command error: %s\n"
4617msgstr "Erreur d'exécution de commande externe: %s\n" 4900msgstr "Erreur d'exécution de commande externe: %s\n"
4618 4901
4619#: plugins/check_snmp.c:361 4902#: plugins/check_snmp.c:373
4620#, c-format 4903#, c-format
4621msgid "External command error with no output (return code: %d)\n" 4904msgid "External command error with no output (return code: %d)\n"
4622msgstr "" 4905msgstr ""
4623 4906
4624#: plugins/check_snmp.c:464 4907#: plugins/check_snmp.c:486 plugins/check_snmp.c:488 plugins/check_snmp.c:490
4908#: plugins/check_snmp.c:492
4625#, fuzzy, c-format 4909#, fuzzy, c-format
4626msgid "No valid data returned (%s)\n" 4910msgid "No valid data returned (%s)\n"
4627msgstr "Pas de données valides reçues" 4911msgstr "Pas de données valides reçues"
4628 4912
4629#: plugins/check_snmp.c:475 4913#: plugins/check_snmp.c:504
4630msgid "Time duration between plugin calls is invalid" 4914msgid "Time duration between plugin calls is invalid"
4631msgstr "" 4915msgstr ""
4632 4916
4633#: plugins/check_snmp.c:588 4917#: plugins/check_snmp.c:632
4634msgid "Cannot asprintf()" 4918msgid "Cannot asprintf()"
4635msgstr "" 4919msgstr ""
4636 4920
4637#: plugins/check_snmp.c:594 4921#: plugins/check_snmp.c:638
4638#, fuzzy 4922#, fuzzy
4639msgid "Cannot realloc()" 4923msgid "Cannot realloc()"
4640msgstr "Impossible de réallouer des unités\n" 4924msgstr "Impossible de réallouer des unités\n"
4641 4925
4642#: plugins/check_snmp.c:610 4926#: plugins/check_snmp.c:654
4643msgid "No previous data to calculate rate - assume okay" 4927msgid "No previous data to calculate rate - assume okay"
4644msgstr "" 4928msgstr ""
4645 4929
4646#: plugins/check_snmp.c:751 4930#: plugins/check_snmp.c:804
4647msgid "Retries interval must be a positive integer" 4931msgid "Retries interval must be a positive integer"
4648msgstr "L'intervalle pour les essais doit être un entier positif" 4932msgstr "L'intervalle pour les essais doit être un entier positif"
4649 4933
4650#: plugins/check_snmp.c:831 4934#: plugins/check_snmp.c:841
4935#, fuzzy
4936msgid "Exit status must be a positive integer"
4937msgstr "Maxbytes doit être un entier positif"
4938
4939#: plugins/check_snmp.c:890
4651#, c-format 4940#, c-format
4652msgid "Could not reallocate labels[%d]" 4941msgid "Could not reallocate labels[%d]"
4653msgstr "Impossible de réallouer des labels[%d]" 4942msgstr "Impossible de réallouer des labels[%d]"
4654 4943
4655#: plugins/check_snmp.c:844 4944#: plugins/check_snmp.c:903
4656msgid "Could not reallocate labels\n" 4945msgid "Could not reallocate labels\n"
4657msgstr "Impossible de réallouer des labels\n" 4946msgstr "Impossible de réallouer des labels\n"
4658 4947
4659#: plugins/check_snmp.c:860 4948#: plugins/check_snmp.c:919
4660#, c-format 4949#, c-format
4661msgid "Could not reallocate units [%d]\n" 4950msgid "Could not reallocate units [%d]\n"
4662msgstr "Impossible de réallouer des unités [%d]\n" 4951msgstr "Impossible de réallouer des unités [%d]\n"
4663 4952
4664#: plugins/check_snmp.c:872 4953#: plugins/check_snmp.c:931
4665msgid "Could not realloc() units\n" 4954msgid "Could not realloc() units\n"
4666msgstr "Impossible de réallouer des unités\n" 4955msgstr "Impossible de réallouer des unités\n"
4667 4956
4668#: plugins/check_snmp.c:889 4957#: plugins/check_snmp.c:948
4669#, fuzzy 4958#, fuzzy
4670msgid "Rate multiplier must be a positive integer" 4959msgid "Rate multiplier must be a positive integer"
4671msgstr "La taille du paquet doit être un entier positif" 4960msgstr "La taille du paquet doit être un entier positif"
4672 4961
4673#: plugins/check_snmp.c:947 4962#: plugins/check_snmp.c:1023
4674msgid "No host specified\n" 4963msgid "No host specified\n"
4675msgstr "Pas d'hôte spécifié\n" 4964msgstr "Pas d'hôte spécifié\n"
4676 4965
4677#: plugins/check_snmp.c:951 4966#: plugins/check_snmp.c:1027
4678msgid "No OIDs specified\n" 4967msgid "No OIDs specified\n"
4679msgstr "Pas de compteur spécifié\n" 4968msgstr "Pas de compteur spécifié\n"
4680 4969
4681#: plugins/check_snmp.c:973 4970#: plugins/check_snmp.c:1050 plugins/check_snmp.c:1068
4682msgid "Invalid seclevel" 4971#: plugins/check_snmp.c:1086
4683msgstr ""
4684
4685#: plugins/check_snmp.c:980 plugins/check_snmp.c:983 plugins/check_snmp.c:1001
4686#, c-format 4972#, c-format
4687msgid "Required parameter: %s\n" 4973msgid "Required parameter: %s\n"
4688msgstr "" 4974msgstr ""
4689 4975
4690#: plugins/check_snmp.c:1022 4976#: plugins/check_snmp.c:1061
4977msgid "Invalid seclevel"
4978msgstr ""
4979
4980#: plugins/check_snmp.c:1107
4691msgid "Invalid SNMP version" 4981msgid "Invalid SNMP version"
4692msgstr "Version de SNMP invalide" 4982msgstr "Version de SNMP invalide"
4693 4983
4694#: plugins/check_snmp.c:1039 4984#: plugins/check_snmp.c:1124
4695msgid "Unbalanced quotes\n" 4985msgid "Unbalanced quotes\n"
4696msgstr "Guillemets manquants\n" 4986msgstr "Guillemets manquants\n"
4697 4987
4698#: plugins/check_snmp.c:1088 4988#: plugins/check_snmp.c:1182
4989#, c-format
4990msgid "multiplier set (%.1f), but input is not a number: %s"
4991msgstr ""
4992
4993#: plugins/check_snmp.c:1211
4699msgid "Check status of remote machines and obtain system information via SNMP" 4994msgid "Check status of remote machines and obtain system information via SNMP"
4700msgstr "" 4995msgstr ""
4701"Vérifie l'état des machines distantes et obtient l'information système via " 4996"Vérifie l'état des machines distantes et obtient l'information système via "
4702"SNMP" 4997"SNMP"
4703 4998
4704#: plugins/check_snmp.c:1101 4999#: plugins/check_snmp.c:1225
4705msgid "Use SNMP GETNEXT instead of SNMP GET" 5000msgid "Use SNMP GETNEXT instead of SNMP GET"
4706msgstr "Utiliser SNMP GETNEXT au lieu de SNMP GET" 5001msgstr "Utiliser SNMP GETNEXT au lieu de SNMP GET"
4707 5002
4708#: plugins/check_snmp.c:1103 5003#: plugins/check_snmp.c:1227
4709msgid "SNMP protocol version" 5004msgid "SNMP protocol version"
4710msgstr "Version du protocole SNMP" 5005msgstr "Version du protocole SNMP"
4711 5006
4712#: plugins/check_snmp.c:1105 5007#: plugins/check_snmp.c:1229
5008#, fuzzy
5009msgid "SNMPv3 context"
5010msgstr "Nom d'utilisateur SNMPv3"
5011
5012#: plugins/check_snmp.c:1231
4713msgid "SNMPv3 securityLevel" 5013msgid "SNMPv3 securityLevel"
4714msgstr "Niveau de sécurité SNMPv3 (securityLevel)" 5014msgstr "Niveau de sécurité SNMPv3 (securityLevel)"
4715 5015
4716#: plugins/check_snmp.c:1107 5016#: plugins/check_snmp.c:1233
4717msgid "SNMPv3 auth proto" 5017msgid "SNMPv3 auth proto"
4718msgstr "Protocole d'authentification SNMPv3" 5018msgstr "Protocole d'authentification SNMPv3"
4719 5019
4720#: plugins/check_snmp.c:1109 5020#: plugins/check_snmp.c:1235
4721msgid "SNMPv3 priv proto (default DES)" 5021msgid "SNMPv3 priv proto (default DES)"
4722msgstr "" 5022msgstr ""
4723 5023
4724#: plugins/check_snmp.c:1113 5024#: plugins/check_snmp.c:1239
4725msgid "Optional community string for SNMP communication" 5025msgid "Optional community string for SNMP communication"
4726msgstr "Communauté optionnelle pour la communication SNMP" 5026msgstr "Communauté optionnelle pour la communication SNMP"
4727 5027
4728#: plugins/check_snmp.c:1114 5028#: plugins/check_snmp.c:1240
4729msgid "default is" 5029msgid "default is"
4730msgstr "défaut:" 5030msgstr "défaut:"
4731 5031
4732#: plugins/check_snmp.c:1116 5032#: plugins/check_snmp.c:1242
4733msgid "SNMPv3 username" 5033msgid "SNMPv3 username"
4734msgstr "Nom d'utilisateur SNMPv3" 5034msgstr "Nom d'utilisateur SNMPv3"
4735 5035
4736#: plugins/check_snmp.c:1118 5036#: plugins/check_snmp.c:1244
4737msgid "SNMPv3 authentication password" 5037msgid "SNMPv3 authentication password"
4738msgstr "Mot de passe d'authentification SNMPv3" 5038msgstr "Mot de passe d'authentification SNMPv3"
4739 5039
4740#: plugins/check_snmp.c:1120 5040#: plugins/check_snmp.c:1246
4741msgid "SNMPv3 privacy password" 5041msgid "SNMPv3 privacy password"
4742msgstr "Mot de passe de confidentialité SNMPv3" 5042msgstr "Mot de passe de confidentialité SNMPv3"
4743 5043
4744#: plugins/check_snmp.c:1124 5044#: plugins/check_snmp.c:1250
4745msgid "Object identifier(s) or SNMP variables whose value you wish to query" 5045msgid "Object identifier(s) or SNMP variables whose value you wish to query"
4746msgstr "" 5046msgstr ""
4747 5047
4748#: plugins/check_snmp.c:1126 5048#: plugins/check_snmp.c:1252
4749msgid "" 5049msgid ""
4750"List of MIBS to be loaded (default = none if using numeric OIDs or 'ALL'" 5050"List of MIBS to be loaded (default = none if using numeric OIDs or 'ALL'"
4751msgstr "" 5051msgstr ""
4752 5052
4753#: plugins/check_snmp.c:1127 5053#: plugins/check_snmp.c:1253
4754msgid "for symbolic OIDs.)" 5054msgid "for symbolic OIDs.)"
4755msgstr "" 5055msgstr ""
4756 5056
4757#: plugins/check_snmp.c:1129 5057#: plugins/check_snmp.c:1255
4758msgid "Delimiter to use when parsing returned data. Default is" 5058msgid "Delimiter to use when parsing returned data. Default is"
4759msgstr "" 5059msgstr ""
4760 5060
4761#: plugins/check_snmp.c:1130 5061#: plugins/check_snmp.c:1256
4762msgid "Any data on the right hand side of the delimiter is considered" 5062msgid "Any data on the right hand side of the delimiter is considered"
4763msgstr "" 5063msgstr ""
4764 5064
4765#: plugins/check_snmp.c:1131 5065#: plugins/check_snmp.c:1257
4766msgid "to be the data that should be used in the evaluation." 5066msgid "to be the data that should be used in the evaluation."
4767msgstr "" 5067msgstr ""
4768 5068
4769#: plugins/check_snmp.c:1135 5069#: plugins/check_snmp.c:1259
5070msgid "If the check returns a 0 length string or NULL value"
5071msgstr ""
5072
5073#: plugins/check_snmp.c:1260
5074msgid "This option allows you to choose what status you want it to exit"
5075msgstr ""
5076
5077#: plugins/check_snmp.c:1261
5078msgid "Excluding this option renders the default exit of 3(STATE_UNKNOWN)"
5079msgstr ""
5080
5081#: plugins/check_snmp.c:1262
5082msgid "0 = OK"
5083msgstr ""
5084
5085#: plugins/check_snmp.c:1263
5086#, fuzzy
5087msgid "1 = WARNING"
5088msgstr "AVERTISSEMENT"
5089
5090#: plugins/check_snmp.c:1264
5091#, fuzzy
5092msgid "2 = CRITICAL"
5093msgstr "CRITIQUE"
5094
5095#: plugins/check_snmp.c:1265
5096#, fuzzy
5097msgid "3 = UNKNOWN"
5098msgstr "INCONNU"
5099
5100#: plugins/check_snmp.c:1269
4770msgid "Warning threshold range(s)" 5101msgid "Warning threshold range(s)"
4771msgstr "Valeurs pour le seuil d'avertissement" 5102msgstr "Valeurs pour le seuil d'avertissement"
4772 5103
4773#: plugins/check_snmp.c:1137 5104#: plugins/check_snmp.c:1271
4774msgid "Critical threshold range(s)" 5105msgid "Critical threshold range(s)"
4775msgstr "Valeurs pour le seuil critique" 5106msgstr "Valeurs pour le seuil critique"
4776 5107
4777#: plugins/check_snmp.c:1139 5108#: plugins/check_snmp.c:1273
4778msgid "Enable rate calculation. See 'Rate Calculation' below" 5109msgid "Enable rate calculation. See 'Rate Calculation' below"
4779msgstr "" 5110msgstr ""
4780 5111
4781#: plugins/check_snmp.c:1141 5112#: plugins/check_snmp.c:1275
4782msgid "" 5113msgid ""
4783"Converts rate per second. For example, set to 60 to convert to per minute" 5114"Converts rate per second. For example, set to 60 to convert to per minute"
4784msgstr "" 5115msgstr ""
4785 5116
4786#: plugins/check_snmp.c:1143 5117#: plugins/check_snmp.c:1277
4787msgid "Add/subtract the specified OFFSET to numeric sensor data" 5118msgid "Add/subtract the specified OFFSET to numeric sensor data"
4788msgstr "" 5119msgstr ""
4789 5120
4790#: plugins/check_snmp.c:1147 5121#: plugins/check_snmp.c:1281
4791msgid "Return OK state (for that OID) if STRING is an exact match" 5122msgid "Return OK state (for that OID) if STRING is an exact match"
4792msgstr "" 5123msgstr ""
4793 5124
4794#: plugins/check_snmp.c:1149 5125#: plugins/check_snmp.c:1283
4795msgid "" 5126msgid ""
4796"Return OK state (for that OID) if extended regular expression REGEX matches" 5127"Return OK state (for that OID) if extended regular expression REGEX matches"
4797msgstr "" 5128msgstr ""
4798 5129
4799#: plugins/check_snmp.c:1151 5130#: plugins/check_snmp.c:1285
4800msgid "" 5131msgid ""
4801"Return OK state (for that OID) if case-insensitive extended REGEX matches" 5132"Return OK state (for that OID) if case-insensitive extended REGEX matches"
4802msgstr "" 5133msgstr ""
4803 5134
4804#: plugins/check_snmp.c:1153 5135#: plugins/check_snmp.c:1287
4805msgid "Invert search result (CRITICAL if found)" 5136msgid "Invert search result (CRITICAL if found)"
4806msgstr "" 5137msgstr ""
4807 5138
4808#: plugins/check_snmp.c:1157 5139#: plugins/check_snmp.c:1291
4809msgid "Prefix label for output from plugin" 5140msgid "Prefix label for output from plugin"
4810msgstr "" 5141msgstr ""
4811 5142
4812#: plugins/check_snmp.c:1159 5143#: plugins/check_snmp.c:1293
4813msgid "Units label(s) for output data (e.g., 'sec.')." 5144msgid "Units label(s) for output data (e.g., 'sec.')."
4814msgstr "" 5145msgstr ""
4815 5146
4816#: plugins/check_snmp.c:1161 5147#: plugins/check_snmp.c:1295
4817msgid "Separates output on multiple OID requests" 5148msgid "Separates output on multiple OID requests"
4818msgstr "" 5149msgstr ""
4819 5150
4820#: plugins/check_snmp.c:1165 5151#: plugins/check_snmp.c:1297
4821msgid "Number of retries to be used in the requests" 5152msgid "Multiplies current value, 0 < n < 1 works as divider, defaults to 1"
5153msgstr ""
5154
5155#: plugins/check_snmp.c:1299
5156msgid "C-style format string for float values (see option -M)"
5157msgstr ""
5158
5159#: plugins/check_snmp.c:1302
5160msgid ""
5161"NOTE the final timeout value is calculated using this formula: "
5162"timeout_interval * retries + 5"
5163msgstr ""
5164
5165#: plugins/check_snmp.c:1304
5166#, fuzzy
5167msgid "Number of retries to be used in the requests, default: "
4822msgstr "Le nombre d'essai pour les requêtes" 5168msgstr "Le nombre d'essai pour les requêtes"
4823 5169
4824#: plugins/check_snmp.c:1168 5170#: plugins/check_snmp.c:1307
4825msgid "Label performance data with OIDs instead of --label's" 5171msgid "Label performance data with OIDs instead of --label's"
4826msgstr "" 5172msgstr ""
4827 5173
4828#: plugins/check_snmp.c:1173 5174#: plugins/check_snmp.c:1312
4829msgid "" 5175msgid ""
4830"This plugin uses the 'snmpget' command included with the NET-SNMP package." 5176"This plugin uses the 'snmpget' command included with the NET-SNMP package."
4831msgstr "" 5177msgstr ""
4832 5178
4833#: plugins/check_snmp.c:1174 5179#: plugins/check_snmp.c:1313
4834msgid "" 5180msgid ""
4835"if you don't have the package installed, you will need to download it from" 5181"if you don't have the package installed, you will need to download it from"
4836msgstr "" 5182msgstr ""
4837"Si vous n'avez pas le programme installé, vous devrez le télécharger depuis" 5183"Si vous n'avez pas le programme installé, vous devrez le télécharger depuis"
4838 5184
4839#: plugins/check_snmp.c:1175 5185#: plugins/check_snmp.c:1314
4840msgid "http://net-snmp.sourceforge.net before you can use this plugin." 5186msgid "http://net-snmp.sourceforge.net before you can use this plugin."
4841msgstr "http://net-snmp.sourceforge.net avant de pouvoir utiliser ce plugin." 5187msgstr "http://net-snmp.sourceforge.net avant de pouvoir utiliser ce plugin."
4842 5188
4843#: plugins/check_snmp.c:1179 5189#: plugins/check_snmp.c:1318
4844#, fuzzy 5190#, fuzzy
4845msgid "" 5191msgid ""
4846"- Multiple OIDs (and labels) may be indicated by a comma or space-delimited " 5192"- Multiple OIDs (and labels) may be indicated by a comma or space-delimited "
4847msgstr "" 5193msgstr ""
4848"- Des OIDs multiples peuvent être séparées par des virgules ou des espaces" 5194"- Des OIDs multiples peuvent être séparées par des virgules ou des espaces"
4849 5195
4850#: plugins/check_snmp.c:1180 5196#: plugins/check_snmp.c:1319
4851#, fuzzy 5197#, fuzzy
4852msgid "list (lists with internal spaces must be quoted)." 5198msgid "list (lists with internal spaces must be quoted)."
4853msgstr "(Les liste avec espaces doivent être entre guillemets). Max:" 5199msgstr "(Les liste avec espaces doivent être entre guillemets). Max:"
4854 5200
4855#: plugins/check_snmp.c:1184 5201#: plugins/check_snmp.c:1323
4856msgid "" 5202msgid ""
4857"- When checking multiple OIDs, separate ranges by commas like '-w " 5203"- When checking multiple OIDs, separate ranges by commas like '-w "
4858"1:10,1:,:20'" 5204"1:10,1:,:20'"
4859msgstr "" 5205msgstr ""
4860 5206
4861#: plugins/check_snmp.c:1185 5207#: plugins/check_snmp.c:1324
4862msgid "- Note that only one string and one regex may be checked at present" 5208msgid "- Note that only one string and one regex may be checked at present"
4863msgstr "" 5209msgstr ""
4864 5210
4865#: plugins/check_snmp.c:1186 5211#: plugins/check_snmp.c:1325
4866msgid "" 5212msgid ""
4867"- All evaluation methods other than PR, STR, and SUBSTR expect that the value" 5213"- All evaluation methods other than PR, STR, and SUBSTR expect that the value"
4868msgstr "" 5214msgstr ""
4869 5215
4870#: plugins/check_snmp.c:1187 5216#: plugins/check_snmp.c:1326
4871msgid "returned from the SNMP query is an unsigned integer." 5217msgid "returned from the SNMP query is an unsigned integer."
4872msgstr "" 5218msgstr ""
4873 5219
4874#: plugins/check_snmp.c:1190 5220#: plugins/check_snmp.c:1329
4875msgid "Rate Calculation:" 5221msgid "Rate Calculation:"
4876msgstr "" 5222msgstr ""
4877 5223
4878#: plugins/check_snmp.c:1191 5224#: plugins/check_snmp.c:1330
4879msgid "In many places, SNMP returns counters that are only meaningful when" 5225msgid "In many places, SNMP returns counters that are only meaningful when"
4880msgstr "" 5226msgstr ""
4881 5227
4882#: plugins/check_snmp.c:1192 5228#: plugins/check_snmp.c:1331
4883msgid "calculating the counter difference since the last check. check_snmp" 5229msgid "calculating the counter difference since the last check. check_snmp"
4884msgstr "" 5230msgstr ""
4885 5231
4886#: plugins/check_snmp.c:1193 5232#: plugins/check_snmp.c:1332
4887msgid "saves the last state information in a file so that the rate per second" 5233msgid "saves the last state information in a file so that the rate per second"
4888msgstr "" 5234msgstr ""
4889 5235
4890#: plugins/check_snmp.c:1194 5236#: plugins/check_snmp.c:1333
4891msgid "can be calculated. Use the --rate option to save state information." 5237msgid "can be calculated. Use the --rate option to save state information."
4892msgstr "" 5238msgstr ""
4893 5239
4894#: plugins/check_snmp.c:1195 5240#: plugins/check_snmp.c:1334
4895msgid "" 5241msgid ""
4896"On the first run, there will be no prior state - this will return with OK." 5242"On the first run, there will be no prior state - this will return with OK."
4897msgstr "" 5243msgstr ""
4898 5244
4899#: plugins/check_snmp.c:1196 5245#: plugins/check_snmp.c:1335
4900msgid "The state is uniquely determined by the arguments to the plugin, so" 5246msgid "The state is uniquely determined by the arguments to the plugin, so"
4901msgstr "" 5247msgstr ""
4902 5248
4903#: plugins/check_snmp.c:1197 5249#: plugins/check_snmp.c:1336
4904msgid "changing the arguments will create a new state file." 5250msgid "changing the arguments will create a new state file."
4905msgstr "" 5251msgstr ""
4906 5252
4907#: plugins/check_ssh.c:165 5253#: plugins/check_ssh.c:170
4908msgid "Port number must be a positive integer" 5254msgid "Port number must be a positive integer"
4909msgstr "Le numéro du port doit être un nombre entier positif" 5255msgstr "Le numéro du port doit être un nombre entier positif"
4910 5256
4911#: plugins/check_ssh.c:232 5257#: plugins/check_ssh.c:237
4912#, c-format 5258#, c-format
4913msgid "Server answer: %s" 5259msgid "Server answer: %s"
4914msgstr "Réponse du serveur: %s" 5260msgstr "Réponse du serveur: %s"
4915 5261
4916#: plugins/check_ssh.c:251 5262#: plugins/check_ssh.c:256
4917#, c-format 5263#, fuzzy, c-format
4918msgid "SSH WARNING - %s (protocol %s) version mismatch, expected '%s'\n" 5264msgid "SSH CRITICAL - %s (protocol %s) version mismatch, expected '%s'\n"
4919msgstr "" 5265msgstr ""
4920"SSH AVERTISSEMENT - %s (protocole %s) différence de version, attendu'%s'\n" 5266"SSH AVERTISSEMENT - %s (protocole %s) différence de version, attendu'%s'\n"
4921 5267
4922#: plugins/check_ssh.c:260 5268#: plugins/check_ssh.c:264
5269#, fuzzy, c-format
5270msgid ""
5271"SSH CRITICAL - %s (protocol %s) protocol version mismatch, expected '%s'\n"
5272msgstr ""
5273"SSH AVERTISSEMENT - %s (protocole %s) différence de version, attendu'%s'\n"
5274
5275#: plugins/check_ssh.c:273
4923#, fuzzy, c-format 5276#, fuzzy, c-format
4924msgid "SSH OK - %s (protocol %s) | %s\n" 5277msgid "SSH OK - %s (protocol %s) | %s\n"
4925msgstr "SSH OK - %s (protocole %s)\n" 5278msgstr "SSH OK - %s (protocole %s)\n"
4926 5279
4927#: plugins/check_ssh.c:281 5280#: plugins/check_ssh.c:294
4928msgid "Try to connect to an SSH server at specified server and port" 5281msgid "Try to connect to an SSH server at specified server and port"
4929msgstr "Essaye de se connecter à un serveur SSH précisé à un port précis" 5282msgstr "Essaye de se connecter à un serveur SSH précisé à un port précis"
4930 5283
4931#: plugins/check_ssh.c:297 5284#: plugins/check_ssh.c:310
5285#, fuzzy
4932msgid "" 5286msgid ""
4933"Warn if string doesn't match expected server version (ex: OpenSSH_3.9p1)" 5287"Alert if string doesn't match expected server version (ex: OpenSSH_3.9p1)"
5288msgstr ""
5289"AVERTISSEMENT si la chaîne ne correspond pas à la version précisée (ex: "
5290"OpenSSH_3.9p1)"
5291
5292#: plugins/check_ssh.c:313
5293#, fuzzy
5294msgid "Alert if protocol doesn't match expected protocol version (ex: 2.0)"
4934msgstr "" 5295msgstr ""
4935"AVERTISSEMENT si la chaîne ne correspond pas à la version précisée (ex: " 5296"AVERTISSEMENT si la chaîne ne correspond pas à la version précisée (ex: "
4936"OpenSSH_3.9p1)" 5297"OpenSSH_3.9p1)"
4937 5298
4938#: plugins/check_swap.c:169 5299#: plugins/check_swap.c:187
4939#, c-format 5300#, c-format
4940msgid "Command: %s\n" 5301msgid "Command: %s\n"
4941msgstr "Commande: %s\n" 5302msgstr "Commande: %s\n"
4942 5303
4943#: plugins/check_swap.c:171 5304#: plugins/check_swap.c:189
4944#, c-format 5305#, c-format
4945msgid "Format: %s\n" 5306msgid "Format: %s\n"
4946msgstr "Format: %s\n" 5307msgstr "Format: %s\n"
4947 5308
4948#: plugins/check_swap.c:207 5309#: plugins/check_swap.c:225
4949#, c-format 5310#, c-format
4950msgid "total=%.0f, used=%.0f, free=%.0f\n" 5311msgid "total=%.0f, used=%.0f, free=%.0f\n"
4951msgstr "total=%.0f, utilisé=%.0f, libre=%.0ff\n" 5312msgstr "total=%.0f, utilisé=%.0f, libre=%.0ff\n"
4952 5313
4953#: plugins/check_swap.c:221 5314#: plugins/check_swap.c:239
4954#, c-format 5315#, c-format
4955msgid "total=%.0f, free=%.0f\n" 5316msgid "total=%.0f, free=%.0f\n"
4956msgstr "total=%.0f, libre=%.0f\n" 5317msgstr "total=%.0f, libre=%.0f\n"
4957 5318
4958#: plugins/check_swap.c:253 5319#: plugins/check_swap.c:271
4959msgid "Error getting swap devices\n" 5320msgid "Error getting swap devices\n"
4960msgstr "" 5321msgstr ""
4961 5322
4962#: plugins/check_swap.c:256 5323#: plugins/check_swap.c:274
4963msgid "SWAP OK: No swap devices defined\n" 5324msgid "SWAP OK: No swap devices defined\n"
4964msgstr "SWAP OK: Pas de périphériques swap définis\n" 5325msgstr "SWAP OK: Pas de périphériques swap définis\n"
4965 5326
4966#: plugins/check_swap.c:277 plugins/check_swap.c:319 5327#: plugins/check_swap.c:295 plugins/check_swap.c:337
4967msgid "swapctl failed: " 5328msgid "swapctl failed: "
4968msgstr "swapctl à échoué:" 5329msgstr "swapctl à échoué:"
4969 5330
4970#: plugins/check_swap.c:278 plugins/check_swap.c:320 5331#: plugins/check_swap.c:296 plugins/check_swap.c:338
4971msgid "Error in swapctl call\n" 5332msgid "Error in swapctl call\n"
4972msgstr "" 5333msgstr ""
4973 5334
4974#: plugins/check_swap.c:357 5335#: plugins/check_swap.c:376
4975#, c-format 5336#, fuzzy, c-format
4976msgid "SWAP %s - %d%% free (%d MB out of %d MB) %s|" 5337msgid "SWAP %s - %d%% free (%dMB out of %dMB) %s|"
4977msgstr "SWAP %s - %d%% libre (%d MB sur un total de %d MB) %s|" 5338msgstr "SWAP %s - %d%% libre (%d MB sur un total de %d MB) %s|"
4978 5339
4979#: plugins/check_swap.c:435 5340#: plugins/check_swap.c:472
4980msgid "Warning threshold must be integer or percentage!" 5341#, fuzzy
5342msgid "Warning threshold percentage must be <= 100!"
5343msgstr "Le seuil d'avertissement doit être un entier positif"
5344
5345#: plugins/check_swap.c:482
5346#, fuzzy
5347msgid "Warning threshold be positive integer or percentage!"
4981msgstr "Le seuil d'avertissement doit être un entier ou un pourcentage!" 5348msgstr "Le seuil d'avertissement doit être un entier ou un pourcentage!"
4982 5349
4983#: plugins/check_swap.c:453 5350#: plugins/check_swap.c:502
4984msgid "Critical threshold must be integer or percentage!" 5351#, fuzzy
5352msgid "Critical threshold percentage must be <= 100!"
5353msgstr "le seuil critique doit être un entier positif"
5354
5355#: plugins/check_swap.c:512
5356#, fuzzy
5357msgid "Critical threshold be positive integer or percentage!"
4985msgstr "Le seuil critique doit être un entier ou un pourcentage!" 5358msgstr "Le seuil critique doit être un entier ou un pourcentage!"
4986 5359
4987#: plugins/check_swap.c:507 5360#: plugins/check_swap.c:521
4988msgid "Warning percentage should be more than critical percentage" 5361#, fuzzy
5362msgid ""
5363"no-swap result must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) "
5364"or integer (0-3)."
4989msgstr "" 5365msgstr ""
4990"Le pourcentage d'avertissement doit être plus important que le pourcentage " 5366"Le résultat de temps dépassé doit être un nom d'état valide (OK, WARNING, "
4991"critique" 5367"CRITICAL, UNKNOWN) ou un nombre entier (0-3)."
4992 5368
4993#: plugins/check_swap.c:511 5369#: plugins/check_swap.c:558
4994msgid "Warning free space should be more than critical free space" 5370#, fuzzy
5371msgid "Warning should be more than critical"
4995msgstr "" 5372msgstr ""
4996"Le seuil d'avertissement pour la place libre doit être plus grand que le " 5373"Le pourcentage d'avertissement doit être plus important que le pourcentage "
4997"seuil critique" 5374"critique"
4998 5375
4999#: plugins/check_swap.c:525 5376#: plugins/check_swap.c:572
5000msgid "Check swap space on local machine." 5377msgid "Check swap space on local machine."
5001msgstr "Vérifie l'espace swap sur la machine locale." 5378msgstr "Vérifie l'espace swap sur la machine locale."
5002 5379
5003#: plugins/check_swap.c:535 5380#: plugins/check_swap.c:582
5004msgid "" 5381msgid ""
5005"Exit with WARNING status if less than INTEGER bytes of swap space are free" 5382"Exit with WARNING status if less than INTEGER bytes of swap space are free"
5006msgstr "" 5383msgstr ""
5007"Sortir avec un résultat AVERTISSEMENT si moins de X octets de mémoire " 5384"Sortir avec un résultat AVERTISSEMENT si moins de X octets de mémoire "
5008"virtuelle sont libres" 5385"virtuelle sont libres"
5009 5386
5010#: plugins/check_swap.c:537 5387#: plugins/check_swap.c:584
5011msgid "Exit with WARNING status if less than PERCENT of swap space is free" 5388msgid "Exit with WARNING status if less than PERCENT of swap space is free"
5012msgstr "" 5389msgstr ""
5013"Sortir avec un résultat AVERTISSEMENT si moins de X pour cent de mémoire " 5390"Sortir avec un résultat AVERTISSEMENT si moins de X pour cent de mémoire "
5014"virtuelle est libre" 5391"virtuelle est libre"
5015 5392
5016#: plugins/check_swap.c:539 5393#: plugins/check_swap.c:586
5017msgid "" 5394msgid ""
5018"Exit with CRITICAL status if less than INTEGER bytes of swap space are free" 5395"Exit with CRITICAL status if less than INTEGER bytes of swap space are free"
5019msgstr "" 5396msgstr ""
5020"Sortir avec un résultat CRITIQUE si moins de X octets de mémoire virtuelle " 5397"Sortir avec un résultat CRITIQUE si moins de X octets de mémoire virtuelle "
5021"sont libres" 5398"sont libres"
5022 5399
5023#: plugins/check_swap.c:541 5400#: plugins/check_swap.c:588
5024msgid "Exit with CRITICAL status if less than PERCENT of swap space is free" 5401msgid "Exit with CRITICAL status if less than PERCENT of swap space is free"
5025msgstr "" 5402msgstr ""
5026"Sortir avec un résultat CRITIQUE si moins de X pour cent de mémoire " 5403"Sortir avec un résultat CRITIQUE si moins de X pour cent de mémoire "
5027"virtuelle est libre" 5404"virtuelle est libre"
5028 5405
5029#: plugins/check_swap.c:543 5406#: plugins/check_swap.c:590
5030msgid "Conduct comparisons for all swap partitions, one by one" 5407msgid "Conduct comparisons for all swap partitions, one by one"
5031msgstr "Vérifier chacune des partitions de mémoire virtuelle séparément" 5408msgstr "Vérifier chacune des partitions de mémoire virtuelle séparément"
5032 5409
5033#: plugins/check_swap.c:548 5410#: plugins/check_swap.c:592
5411msgid ""
5412"Resulting state when there is no swap regardless of thresholds. Default:"
5413msgstr ""
5414
5415#: plugins/check_swap.c:597
5416#, fuzzy
5417msgid ""
5418"Both INTEGER and PERCENT thresholds can be specified, they are all checked."
5419msgstr "Les seuils d'alerte et critiques peuvent être spécifiés avec -w et -c."
5420
5421#: plugins/check_swap.c:598
5034msgid "On AIX, if -a is specified, uses lsps -a, otherwise uses lsps -s." 5422msgid "On AIX, if -a is specified, uses lsps -a, otherwise uses lsps -s."
5035msgstr "" 5423msgstr ""
5036"Sur AIX, si -a est spécifié, le plugin utilise lsps -a, sinon il utilise " 5424"Sur AIX, si -a est spécifié, le plugin utilise lsps -a, sinon il utilise "
5037"lsps -s." 5425"lsps -s."
5038 5426
5039#: plugins/check_tcp.c:206 5427#: plugins/check_tcp.c:210
5040msgid "CRITICAL - Generic check_tcp called with unknown service\n" 5428msgid "CRITICAL - Generic check_tcp called with unknown service\n"
5041msgstr "" 5429msgstr ""
5042"CRITIQUE -check_tcp version générique utilisé avec un service inconnu\n" 5430"CRITIQUE -check_tcp version générique utilisé avec un service inconnu\n"
5043 5431
5044#: plugins/check_tcp.c:230 5432#: plugins/check_tcp.c:234
5045msgid "With UDP checks, a send/expect string must be specified." 5433msgid "With UDP checks, a send/expect string must be specified."
5046msgstr "" 5434msgstr ""
5047"Avec la surveillance UDP, une chaîne d'envoi et un chaîne de réponse doit " 5435"Avec la surveillance UDP, une chaîne d'envoi et un chaîne de réponse doit "
5048"être spécifiée." 5436"être spécifiée."
5049 5437
5050#: plugins/check_tcp.c:431 5438#: plugins/check_tcp.c:445
5051msgid "No arguments found" 5439msgid "No arguments found"
5052msgstr "Pas de paramètres" 5440msgstr "Pas de paramètres"
5053 5441
5054#: plugins/check_tcp.c:534 5442#: plugins/check_tcp.c:548
5055msgid "Maxbytes must be a positive integer" 5443msgid "Maxbytes must be a positive integer"
5056msgstr "Maxbytes doit être un entier positif" 5444msgstr "Maxbytes doit être un entier positif"
5057 5445
5058#: plugins/check_tcp.c:552 5446#: plugins/check_tcp.c:566
5059msgid "Refuse must be one of ok, warn, crit" 5447msgid "Refuse must be one of ok, warn, crit"
5060msgstr "Refuse doit être parmis ok, warn, crit" 5448msgstr "Refuse doit être parmis ok, warn, crit"
5061 5449
5062#: plugins/check_tcp.c:562 5450#: plugins/check_tcp.c:576
5063msgid "Mismatch must be one of ok, warn, crit" 5451msgid "Mismatch must be one of ok, warn, crit"
5064msgstr "Mismatch doit être parmis ok, warn, crit" 5452msgstr "Mismatch doit être parmis ok, warn, crit"
5065 5453
5066#: plugins/check_tcp.c:568 5454#: plugins/check_tcp.c:582
5067msgid "Delay must be a positive integer" 5455msgid "Delay must be a positive integer"
5068msgstr "Delay doit être un entier positif" 5456msgstr "Delay doit être un entier positif"
5069 5457
5070#: plugins/check_tcp.c:613 5458#: plugins/check_tcp.c:637
5071msgid "You must provide a server address" 5459msgid "You must provide a server address"
5072msgstr "Vous devez fournir une adresse serveur" 5460msgstr "Vous devez fournir une adresse serveur"
5073 5461
5074#: plugins/check_tcp.c:615 5462#: plugins/check_tcp.c:639
5075msgid "Invalid hostname, address or socket" 5463msgid "Invalid hostname, address or socket"
5076msgstr "Adresse/Nom/Socket invalide" 5464msgstr "Adresse/Nom/Socket invalide"
5077 5465
5078#: plugins/check_tcp.c:629 5466#: plugins/check_tcp.c:653
5079#, c-format 5467#, c-format
5080msgid "" 5468msgid ""
5081"This plugin tests %s connections with the specified host (or unix socket).\n" 5469"This plugin tests %s connections with the specified host (or unix socket).\n"
@@ -5084,70 +5472,76 @@ msgstr ""
5084"Ce plugin teste %s connections avec l'hôte spécifié (ou socket unix).\n" 5472"Ce plugin teste %s connections avec l'hôte spécifié (ou socket unix).\n"
5085"\n" 5473"\n"
5086 5474
5087#: plugins/check_tcp.c:642 5475#: plugins/check_tcp.c:666
5476#, fuzzy
5088msgid "" 5477msgid ""
5089"Can use \\n, \\r, \\t or \\ in send or quit string. Must come before send or " 5478"Can use \\n, \\r, \\t or \\\\ in send or quit string. Must come before send "
5090"quit option" 5479"or quit option"
5091msgstr "" 5480msgstr ""
5092"Permet d'utiliser \\n, \\r, \\t ou \\ dans la chaîne de caractères send ou " 5481"Permet d'utiliser \\n, \\r, \\t ou \\ dans la chaîne de caractères send ou "
5093"quit. Doit être placé avant ces dernières." 5482"quit. Doit être placé avant ces dernières."
5094 5483
5095#: plugins/check_tcp.c:643 5484#: plugins/check_tcp.c:667
5096msgid "Default: nothing added to send, \\r\\n added to end of quit" 5485msgid "Default: nothing added to send, \\r\\n added to end of quit"
5097msgstr "" 5486msgstr ""
5098"Par défaut: Rien n'est ajouté à send, \\r\\n est ajouté à la fin de quit" 5487"Par défaut: Rien n'est ajouté à send, \\r\\n est ajouté à la fin de quit"
5099 5488
5100#: plugins/check_tcp.c:645 5489#: plugins/check_tcp.c:669
5101msgid "String to send to the server" 5490msgid "String to send to the server"
5102msgstr "Chaîne de caractères à envoyer au serveur" 5491msgstr "Chaîne de caractères à envoyer au serveur"
5103 5492
5104#: plugins/check_tcp.c:647 5493#: plugins/check_tcp.c:671
5105msgid "String to expect in server response" 5494msgid "String to expect in server response"
5106msgstr "Chaîne de caractères à attendre en réponse" 5495msgstr "Chaîne de caractères à attendre en réponse"
5107 5496
5108#: plugins/check_tcp.c:647 5497#: plugins/check_tcp.c:671
5109msgid "(may be repeated)" 5498msgid "(may be repeated)"
5110msgstr "(peut être utilisé plusieurs fois)" 5499msgstr "(peut être utilisé plusieurs fois)"
5111 5500
5112#: plugins/check_tcp.c:649 5501#: plugins/check_tcp.c:673
5113msgid "All expect strings need to occur in server response. Default is any" 5502msgid "All expect strings need to occur in server response. Default is any"
5114msgstr "" 5503msgstr ""
5115"Toutes les chaînes attendus (expect) doivent être repérés dans la réponse. " 5504"Toutes les chaînes attendus (expect) doivent être repérés dans la réponse. "
5116"Par défaut, n'importe laquelle suffit." 5505"Par défaut, n'importe laquelle suffit."
5117 5506
5118#: plugins/check_tcp.c:651 5507#: plugins/check_tcp.c:675
5119msgid "String to send server to initiate a clean close of the connection" 5508msgid "String to send server to initiate a clean close of the connection"
5120msgstr "Chaîne de caractères à envoyer pour fermer gracieusement la connection" 5509msgstr "Chaîne de caractères à envoyer pour fermer gracieusement la connection"
5121 5510
5122#: plugins/check_tcp.c:653 5511#: plugins/check_tcp.c:677
5123msgid "Accept TCP refusals with states ok, warn, crit (default: crit)" 5512msgid "Accept TCP refusals with states ok, warn, crit (default: crit)"
5124msgstr "" 5513msgstr ""
5125 5514
5126#: plugins/check_tcp.c:655 5515#: plugins/check_tcp.c:679
5127msgid "" 5516msgid ""
5128"Accept expected string mismatches with states ok, warn, crit (default: warn)" 5517"Accept expected string mismatches with states ok, warn, crit (default: warn)"
5129msgstr "" 5518msgstr ""
5130 5519
5131#: plugins/check_tcp.c:657 5520#: plugins/check_tcp.c:681
5132msgid "Hide output from TCP socket" 5521msgid "Hide output from TCP socket"
5133msgstr "Cacher la réponse provenant du socket TCP" 5522msgstr "Cacher la réponse provenant du socket TCP"
5134 5523
5135#: plugins/check_tcp.c:659 5524#: plugins/check_tcp.c:683
5136msgid "Close connection once more than this number of bytes are received" 5525msgid "Close connection once more than this number of bytes are received"
5137msgstr "" 5526msgstr ""
5138 5527
5139#: plugins/check_tcp.c:661 5528#: plugins/check_tcp.c:685
5140msgid "Seconds to wait between sending string and polling for response" 5529msgid "Seconds to wait between sending string and polling for response"
5141msgstr "" 5530msgstr ""
5142 5531
5143#: plugins/check_tcp.c:666 5532#: plugins/check_tcp.c:690
5144msgid "1st is #days for warning, 2nd is critical (if not specified - 0)." 5533msgid "1st is #days for warning, 2nd is critical (if not specified - 0)."
5145msgstr "" 5534msgstr ""
5146 5535
5147#: plugins/check_tcp.c:668 5536#: plugins/check_tcp.c:692
5148msgid "Use SSL for the connection." 5537msgid "Use SSL for the connection."
5149msgstr "" 5538msgstr ""
5150 5539
5540#: plugins/check_tcp.c:694
5541#, fuzzy
5542msgid "SSL server_name"
5543msgstr "Nom d'utilisateur SNMPv3"
5544
5151#: plugins/check_time.c:102 5545#: plugins/check_time.c:102
5152#, c-format 5546#, c-format
5153msgid "TIME UNKNOWN - could not connect to server %s, port %d\n" 5547msgid "TIME UNKNOWN - could not connect to server %s, port %d\n"
@@ -5263,221 +5657,260 @@ msgstr ", Inconnu"
5263msgid "UPS does not support any available options\n" 5657msgid "UPS does not support any available options\n"
5264msgstr "L'UPS ne supporte aucune des options disponibles\n" 5658msgstr "L'UPS ne supporte aucune des options disponibles\n"
5265 5659
5266#: plugins/check_ups.c:348 plugins/check_ups.c:411 5660#: plugins/check_ups.c:348 plugins/check_ups.c:414
5267msgid "Invalid response received from host" 5661msgid "Invalid response received from host"
5268msgstr "Réponse invalide reçue de l'hôte" 5662msgstr "Réponse invalide reçue de l'hôte"
5269 5663
5270#: plugins/check_ups.c:420 5664#: plugins/check_ups.c:406
5665msgid "UPS name to long for buffer"
5666msgstr ""
5667
5668#: plugins/check_ups.c:423
5271#, c-format 5669#, c-format
5272msgid "CRITICAL - no such UPS '%s' on that host\n" 5670msgid "CRITICAL - no such UPS '%s' on that host\n"
5273msgstr "CRITIQUE - pas d'UPS '%s' sur cet hôte\n" 5671msgstr "CRITIQUE - pas d'UPS '%s' sur cet hôte\n"
5274 5672
5275#: plugins/check_ups.c:430 5673#: plugins/check_ups.c:433
5276msgid "CRITICAL - UPS data is stale" 5674msgid "CRITICAL - UPS data is stale"
5277msgstr "CRITIQUE - les données de l'ups ne sont plus valables" 5675msgstr "CRITIQUE - les données de l'ups ne sont plus valables"
5278 5676
5279#: plugins/check_ups.c:435 5677#: plugins/check_ups.c:438
5280#, c-format 5678#, c-format
5281msgid "Unknown error: %s\n" 5679msgid "Unknown error: %s\n"
5282msgstr "Erreur inconnue: %s\n" 5680msgstr "Erreur inconnue: %s\n"
5283 5681
5284#: plugins/check_ups.c:442 5682#: plugins/check_ups.c:445
5285msgid "Error: unable to parse variable" 5683msgid "Error: unable to parse variable"
5286msgstr "Erreur: impossible de lire la variable" 5684msgstr "Erreur: impossible de lire la variable"
5287 5685
5288#: plugins/check_ups.c:549 5686#: plugins/check_ups.c:552
5289msgid "Unrecognized UPS variable" 5687msgid "Unrecognized UPS variable"
5290msgstr "Variable d'UPS non reconnue" 5688msgstr "Variable d'UPS non reconnue"
5291 5689
5292#: plugins/check_ups.c:587 5690#: plugins/check_ups.c:590
5293msgid "Error : no UPS indicated" 5691msgid "Error : no UPS indicated"
5294msgstr "Erreur: pas d'UPS indiqué" 5692msgstr "Erreur: pas d'UPS indiqué"
5295 5693
5296#: plugins/check_ups.c:607 5694#: plugins/check_ups.c:610
5297msgid "" 5695msgid ""
5298"This plugin tests the UPS service on the specified host. Network UPS Tools" 5696"This plugin tests the UPS service on the specified host. Network UPS Tools"
5299msgstr "Ce plugin teste le service UPS sur l'hôte spécifié. Network UPS Tools" 5697msgstr "Ce plugin teste le service UPS sur l'hôte spécifié. Network UPS Tools"
5300 5698
5301#: plugins/check_ups.c:608 5699#: plugins/check_ups.c:611
5302msgid "from www.networkupstools.org must be running for this plugin to work." 5700msgid "from www.networkupstools.org must be running for this plugin to work."
5303msgstr "" 5701msgstr ""
5304"de www.networkupstools.org doit s'exécuter sur l'hôte pour que ce plugin " 5702"de www.networkupstools.org doit s'exécuter sur l'hôte pour que ce plugin "
5305"fonctionne." 5703"fonctionne."
5306 5704
5307#: plugins/check_ups.c:620 5705#: plugins/check_ups.c:623
5308msgid "Name of UPS" 5706msgid "Name of UPS"
5309msgstr "" 5707msgstr ""
5310 5708
5311#: plugins/check_ups.c:622 5709#: plugins/check_ups.c:625
5312msgid "Output of temperatures in Celsius" 5710msgid "Output of temperatures in Celsius"
5313msgstr "Affichage des températures en Celsius" 5711msgstr "Affichage des températures en Celsius"
5314 5712
5315#: plugins/check_ups.c:624 5713#: plugins/check_ups.c:627
5316msgid "Valid values for STRING are" 5714msgid "Valid values for STRING are"
5317msgstr "Les variables valides pour STRING sont" 5715msgstr "Les variables valides pour STRING sont"
5318 5716
5319#: plugins/check_ups.c:635 5717#: plugins/check_ups.c:638
5320msgid "" 5718msgid ""
5321"This plugin attempts to determine the status of a UPS (Uninterruptible Power" 5719"This plugin attempts to determine the status of a UPS (Uninterruptible Power"
5322msgstr "" 5720msgstr ""
5323 5721
5324#: plugins/check_ups.c:636 5722#: plugins/check_ups.c:639
5325msgid "" 5723msgid ""
5326"Supply) on a local or remote host. If the UPS is online or calibrating, the" 5724"Supply) on a local or remote host. If the UPS is online or calibrating, the"
5327msgstr "" 5725msgstr ""
5328 5726
5329#: plugins/check_ups.c:637 5727#: plugins/check_ups.c:640
5330msgid "" 5728msgid ""
5331"plugin will return an OK state. If the battery is on it will return a WARNING" 5729"plugin will return an OK state. If the battery is on it will return a WARNING"
5332msgstr "" 5730msgstr ""
5333 5731
5334#: plugins/check_ups.c:638 5732#: plugins/check_ups.c:641
5335msgid "" 5733msgid ""
5336"state. If the UPS is off or has a low battery the plugin will return a " 5734"state. If the UPS is off or has a low battery the plugin will return a "
5337"CRITICAL" 5735"CRITICAL"
5338msgstr "" 5736msgstr ""
5339 5737
5340#: plugins/check_ups.c:643 5738#: plugins/check_ups.c:646
5341msgid "" 5739msgid ""
5342"You may also specify a variable to check (such as temperature, utility " 5740"You may also specify a variable to check (such as temperature, utility "
5343"voltage," 5741"voltage,"
5344msgstr "" 5742msgstr ""
5345 5743
5346#: plugins/check_ups.c:644 5744#: plugins/check_ups.c:647
5347msgid "" 5745msgid ""
5348"battery load, etc.) as well as warning and critical thresholds for the value" 5746"battery load, etc.) as well as warning and critical thresholds for the value"
5349msgstr "" 5747msgstr ""
5350 5748
5351#: plugins/check_ups.c:645 5749#: plugins/check_ups.c:648
5352msgid "" 5750msgid ""
5353"of that variable. If the remote host has multiple UPS that are being " 5751"of that variable. If the remote host has multiple UPS that are being "
5354"monitored" 5752"monitored"
5355msgstr "" 5753msgstr ""
5356 5754
5357#: plugins/check_ups.c:646 5755#: plugins/check_ups.c:649
5358msgid "you will have to use the --ups option to specify which UPS to check." 5756msgid "you will have to use the --ups option to specify which UPS to check."
5359msgstr "" 5757msgstr ""
5360 5758
5361#: plugins/check_ups.c:648 5759#: plugins/check_ups.c:651
5362msgid "" 5760msgid ""
5363"This plugin requires that the UPSD daemon distributed with Russell Kroll's" 5761"This plugin requires that the UPSD daemon distributed with Russell Kroll's"
5364msgstr "" 5762msgstr ""
5365 5763
5366#: plugins/check_ups.c:649 5764#: plugins/check_ups.c:652
5367msgid "" 5765msgid ""
5368"Network UPS Tools be installed on the remote host. If you do not have the" 5766"Network UPS Tools be installed on the remote host. If you do not have the"
5369msgstr "" 5767msgstr ""
5370 5768
5371#: plugins/check_ups.c:650 5769#: plugins/check_ups.c:653
5372msgid "package installed on your system, you can download it from" 5770msgid "package installed on your system, you can download it from"
5373msgstr "" 5771msgstr ""
5374 5772
5375#: plugins/check_ups.c:651 5773#: plugins/check_ups.c:654
5376msgid "http://www.networkupstools.org" 5774msgid "http://www.networkupstools.org"
5377msgstr "" 5775msgstr ""
5378 5776
5379#: plugins/check_users.c:110 5777#: plugins/check_users.c:91
5778#, fuzzy, c-format
5779msgid "Could not enumerate RD sessions: %d\n"
5780msgstr "Impossible d'utiliser le protocole version %d\n"
5781
5782#: plugins/check_users.c:146
5380#, c-format 5783#, c-format
5381msgid "# users=%d" 5784msgid "# users=%d"
5382msgstr "# utilisateurs=%d" 5785msgstr "# utilisateurs=%d"
5383 5786
5384#: plugins/check_users.c:133 5787#: plugins/check_users.c:164
5385msgid "Unable to read output" 5788msgid "Unable to read output"
5386msgstr "Impossible de lire les données en entrée" 5789msgstr "Impossible de lire les données en entrée"
5387 5790
5388#: plugins/check_users.c:140 5791#: plugins/check_users.c:166
5389#, c-format 5792#, c-format
5390msgid "USERS %s - %d users currently logged in |%s\n" 5793msgid "USERS %s - %d users currently logged in |%s\n"
5391msgstr "UTILISATEURS %s - %d utilisateurs actuellement connectés sur |%s\n" 5794msgstr "UTILISATEURS %s - %d utilisateurs actuellement connectés sur |%s\n"
5392 5795
5393#: plugins/check_users.c:219 5796#: plugins/check_users.c:241
5394msgid "This plugin checks the number of users currently logged in on the local" 5797msgid "This plugin checks the number of users currently logged in on the local"
5395msgstr "" 5798msgstr ""
5396"Ce plugin vérifie le nombre d'utilisateurs actuellement connecté sur le " 5799"Ce plugin vérifie le nombre d'utilisateurs actuellement connecté sur le "
5397"système local" 5800"système local"
5398 5801
5399#: plugins/check_users.c:220 5802#: plugins/check_users.c:242
5400msgid "" 5803msgid ""
5401"system and generates an error if the number exceeds the thresholds specified." 5804"system and generates an error if the number exceeds the thresholds specified."
5402msgstr "et génère une erreur si le nombre excède le seuil spécifié." 5805msgstr "et génère une erreur si le nombre excède le seuil spécifié."
5403 5806
5404#: plugins/check_users.c:230 5807#: plugins/check_users.c:252
5405msgid "Set WARNING status if more than INTEGER users are logged in" 5808msgid "Set WARNING status if more than INTEGER users are logged in"
5406msgstr "" 5809msgstr ""
5407"Sortir avec un résultat AVERTISSEMENT si plus de INTEGER utilisateurs sont " 5810"Sortir avec un résultat AVERTISSEMENT si plus de INTEGER utilisateurs sont "
5408"connectés" 5811"connectés"
5409 5812
5410#: plugins/check_users.c:232 5813#: plugins/check_users.c:254
5411msgid "Set CRITICAL status if more than INTEGER users are logged in" 5814msgid "Set CRITICAL status if more than INTEGER users are logged in"
5412msgstr "" 5815msgstr ""
5413"Sortir avec un résultat CRITIQUE si plus de INTEGER utilisateurs sont " 5816"Sortir avec un résultat CRITIQUE si plus de INTEGER utilisateurs sont "
5414"connectés" 5817"connectés"
5415 5818
5416#: plugins/check_ide_smart.c:256 5819#: plugins/check_ide_smart.c:218
5820msgid ""
5821"DEPRECATION WARNING: the -q switch (quiet output) is no longer \"quiet\"."
5822msgstr ""
5823
5824#: plugins/check_ide_smart.c:219
5825msgid "Nagios-compatible output is now always returned."
5826msgstr ""
5827
5828#: plugins/check_ide_smart.c:224
5829msgid "SMART commands are broken and have been disabled (See Notes in --help)."
5830msgstr ""
5831
5832#: plugins/check_ide_smart.c:228
5833msgid ""
5834"DEPRECATION WARNING: the -n switch (Nagios-compatible output) is now the"
5835msgstr ""
5836
5837#: plugins/check_ide_smart.c:229
5838#, fuzzy
5839msgid "default and will be removed from future releases."
5840msgstr ""
5841"Note: nslookup est obsolète et pourra être retiré dans les prochaines "
5842"versions."
5843
5844#: plugins/check_ide_smart.c:257
5417#, c-format 5845#, c-format
5418msgid "CRITICAL - Couldn't open device %s: %s\n" 5846msgid "CRITICAL - Couldn't open device %s: %s\n"
5419msgstr "Critique - Impossible d'ouvrir le périphérique %s: %s\n" 5847msgstr "Critique - Impossible d'ouvrir le périphérique %s: %s\n"
5420 5848
5421#: plugins/check_ide_smart.c:261 5849#: plugins/check_ide_smart.c:262
5422#, c-format 5850#, c-format
5423msgid "CRITICAL - SMART_CMD_ENABLE\n" 5851msgid "CRITICAL - SMART_CMD_ENABLE\n"
5424msgstr "CRITIQUE - SMART_CMD_ENABLE\n" 5852msgstr "CRITIQUE - SMART_CMD_ENABLE\n"
5425 5853
5426#: plugins/check_ide_smart.c:323 plugins/check_ide_smart.c:350 5854#: plugins/check_ide_smart.c:303 plugins/check_ide_smart.c:330
5427#, c-format 5855#, c-format
5428msgid "CRITICAL - SMART_READ_VALUES: %s\n" 5856msgid "CRITICAL - SMART_READ_VALUES: %s\n"
5429msgstr "CRITIQUE - SMART_READ_VALUES: %s\n" 5857msgstr "CRITIQUE - SMART_READ_VALUES: %s\n"
5430 5858
5431#: plugins/check_ide_smart.c:421 5859#: plugins/check_ide_smart.c:376
5432#, c-format 5860#, c-format
5433msgid "CRITICAL - %d Harddrive PreFailure%cDetected! %d/%d tests failed.\n" 5861msgid "CRITICAL - %d Harddrive PreFailure%cDetected! %d/%d tests failed.\n"
5434msgstr "" 5862msgstr ""
5435"CRITIQUE - %d État de pré-panne %c Détecté! %d/%d les tests on échoués.\n" 5863"CRITIQUE - %d État de pré-panne %c Détecté! %d/%d les tests on échoués.\n"
5436 5864
5437#: plugins/check_ide_smart.c:429 5865#: plugins/check_ide_smart.c:384
5438#, c-format 5866#, c-format
5439msgid "WARNING - %d Harddrive Advisor%s Detected. %d/%d tests failed.\n" 5867msgid "WARNING - %d Harddrive Advisor%s Detected. %d/%d tests failed.\n"
5440msgstr "" 5868msgstr ""
5441"AVERTISSEMENT - %d État de pré-panne %s Détecté! %d/%d les tests on " 5869"AVERTISSEMENT - %d État de pré-panne %s Détecté! %d/%d les tests on "
5442"échoués.\n" 5870"échoués.\n"
5443 5871
5444#: plugins/check_ide_smart.c:437 5872#: plugins/check_ide_smart.c:392
5445#, c-format 5873#, c-format
5446msgid "OK - Operational (%d/%d tests passed)\n" 5874msgid "OK - Operational (%d/%d tests passed)\n"
5447msgstr "OK - En fonctionnement (%d/%d les tests on été réussi)\n" 5875msgstr "OK - En fonctionnement (%d/%d les tests on été réussi)\n"
5448 5876
5449#: plugins/check_ide_smart.c:441 5877#: plugins/check_ide_smart.c:396
5450#, c-format 5878#, c-format
5451msgid "ERROR - Status '%d' unknown. %d/%d tests passed\n" 5879msgid "ERROR - Status '%d' unknown. %d/%d tests passed\n"
5452msgstr "ERREUR - État '%d' inconnu. %d/%d les tests on réussi\n" 5880msgstr "ERREUR - État '%d' inconnu. %d/%d les tests on réussi\n"
5453 5881
5454#: plugins/check_ide_smart.c:474 5882#: plugins/check_ide_smart.c:429
5455#, c-format 5883#, c-format
5456msgid "OffLineStatus=%d {%s}, AutoOffLine=%s, OffLineTimeout=%d minutes\n" 5884msgid "OffLineStatus=%d {%s}, AutoOffLine=%s, OffLineTimeout=%d minutes\n"
5457msgstr "" 5885msgstr ""
5458"Etat Hors Ligne=%d {%s}, Hors Ligne Auto=%s, Temps avant arrêt=%d minutes\n" 5886"Etat Hors Ligne=%d {%s}, Hors Ligne Auto=%s, Temps avant arrêt=%d minutes\n"
5459 5887
5460#: plugins/check_ide_smart.c:480 5888#: plugins/check_ide_smart.c:435
5461#, c-format 5889#, c-format
5462msgid "OffLineCapability=%d {%s %s %s}\n" 5890msgid "OffLineCapability=%d {%s %s %s}\n"
5463msgstr "Capacité Hors Ligne=%d {%s %s %s}\n" 5891msgstr "Capacité Hors Ligne=%d {%s %s %s}\n"
5464 5892
5465#: plugins/check_ide_smart.c:486 5893#: plugins/check_ide_smart.c:441
5466#, c-format 5894#, c-format
5467msgid "SmartRevision=%d, CheckSum=%d, SmartCapability=%d {%s %s}\n" 5895msgid "SmartRevision=%d, CheckSum=%d, SmartCapability=%d {%s %s}\n"
5468msgstr "Révision Smart=%d, Somme de contrôle=%d, Capacité Smart=%d {%s %s}\n" 5896msgstr "Révision Smart=%d, Somme de contrôle=%d, Capacité Smart=%d {%s %s}\n"
5469 5897
5470#: plugins/check_ide_smart.c:508 plugins/check_ide_smart.c:532 5898#: plugins/check_ide_smart.c:463 plugins/check_ide_smart.c:492
5471#, c-format 5899#, c-format
5472msgid "CRITICAL - %s: %s\n" 5900msgid "CRITICAL - %s: %s\n"
5473msgstr "CRITIQUE - %s: %s\n" 5901msgstr "CRITIQUE - %s: %s\n"
5474 5902
5475#: plugins/check_ide_smart.c:553 plugins/check_ide_smart.c:580 5903#: plugins/check_ide_smart.c:467 plugins/check_ide_smart.c:496
5904#, fuzzy, c-format
5905msgid "OK - Command sent (%s)\n"
5906msgstr "Commande: %s\n"
5907
5908#: plugins/check_ide_smart.c:517 plugins/check_ide_smart.c:544
5476#, c-format 5909#, c-format
5477msgid "CRITICAL - SMART_READ_THRESHOLDS: %s\n" 5910msgid "CRITICAL - SMART_READ_THRESHOLDS: %s\n"
5478msgstr "CRITIQUE - SMART_READ_THRESHOLDS: %s\n" 5911msgstr "CRITIQUE - SMART_READ_THRESHOLDS: %s\n"
5479 5912
5480#: plugins/check_ide_smart.c:599 5913#: plugins/check_ide_smart.c:563
5481#, c-format 5914#, c-format
5482msgid "" 5915msgid ""
5483"This plugin checks a local hard drive with the (Linux specific) SMART " 5916"This plugin checks a local hard drive with the (Linux specific) SMART "
@@ -5486,41 +5919,50 @@ msgstr ""
5486"Ce plugin vérifie un disque dur local à l'aide de l'interface SMART (pour " 5919"Ce plugin vérifie un disque dur local à l'aide de l'interface SMART (pour "
5487"Linux) [http://smartlinux.sourceforge.net/smart/index.php]." 5920"Linux) [http://smartlinux.sourceforge.net/smart/index.php]."
5488 5921
5489#: plugins/check_ide_smart.c:609 5922#: plugins/check_ide_smart.c:573
5490msgid "Select device DEVICE" 5923msgid "Select device DEVICE"
5491msgstr "" 5924msgstr ""
5492 5925
5493#: plugins/check_ide_smart.c:610 5926#: plugins/check_ide_smart.c:574
5494msgid "" 5927msgid ""
5495"Note: if the device is selected with this option, _no_ other options are " 5928"Note: if the device is specified without this option, any further option will"
5496"accepted"
5497msgstr "" 5929msgstr ""
5498 5930
5499#: plugins/check_ide_smart.c:612 5931#: plugins/check_ide_smart.c:575
5500msgid "Perform immediately offline tests" 5932msgid "be ignored."
5501msgstr "" 5933msgstr ""
5502 5934
5503#: plugins/check_ide_smart.c:614 5935#: plugins/check_ide_smart.c:581
5504msgid "Returns the number of failed tests" 5936msgid ""
5937"The SMART command modes (-i/--immediate, -0/--auto-off and -1/--auto-on) were"
5938msgstr ""
5939
5940#: plugins/check_ide_smart.c:582
5941msgid ""
5942"broken in an underhand manner and have been disabled. You can use smartctl"
5505msgstr "" 5943msgstr ""
5506 5944
5507#: plugins/check_ide_smart.c:616 5945#: plugins/check_ide_smart.c:583
5508msgid "Turn on automatic offline tests" 5946msgid "instead:"
5509msgstr "" 5947msgstr ""
5510 5948
5511#: plugins/check_ide_smart.c:618 5949#: plugins/check_ide_smart.c:584
5512msgid "Turn off automatic offline tests" 5950msgid "-0/--auto-off: use \"smartctl --offlineauto=off\""
5513msgstr "" 5951msgstr ""
5514 5952
5515#: plugins/check_ide_smart.c:620 5953#: plugins/check_ide_smart.c:585
5516msgid "Output suitable for the monitoring system" 5954msgid "-1/--auto-on: use \"smartctl --offlineauto=on\""
5517msgstr "" 5955msgstr ""
5518 5956
5519#: plugins/negate.c:99 5957#: plugins/check_ide_smart.c:586
5958msgid "-i/--immediate: use \"smartctl --test=offline\""
5959msgstr ""
5960
5961#: plugins/negate.c:96
5520msgid "No data returned from command\n" 5962msgid "No data returned from command\n"
5521msgstr "Pas de données reçues de la commande\n" 5963msgstr "Pas de données reçues de la commande\n"
5522 5964
5523#: plugins/negate.c:170 5965#: plugins/negate.c:166
5524msgid "" 5966msgid ""
5525"Timeout result must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) " 5967"Timeout result must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) "
5526"or integer (0-3)." 5968"or integer (0-3)."
@@ -5528,7 +5970,7 @@ msgstr ""
5528"Le résultat de temps dépassé doit être un nom d'état valide (OK, WARNING, " 5970"Le résultat de temps dépassé doit être un nom d'état valide (OK, WARNING, "
5529"CRITICAL, UNKNOWN) ou un nombre entier (0-3)." 5971"CRITICAL, UNKNOWN) ou un nombre entier (0-3)."
5530 5972
5531#: plugins/negate.c:174 5973#: plugins/negate.c:170
5532msgid "" 5974msgid ""
5533"Ok must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or integer " 5975"Ok must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or integer "
5534"(0-3)." 5976"(0-3)."
@@ -5536,7 +5978,7 @@ msgstr ""
5536"Ok doit être un nom d'état valide (OK, WARNING, CRITICAL, UNKNOWN) ou un " 5978"Ok doit être un nom d'état valide (OK, WARNING, CRITICAL, UNKNOWN) ou un "
5537"nombre entier (0-3)." 5979"nombre entier (0-3)."
5538 5980
5539#: plugins/negate.c:180 5981#: plugins/negate.c:176
5540msgid "" 5982msgid ""
5541"Warning must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or " 5983"Warning must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or "
5542"integer (0-3)." 5984"integer (0-3)."
@@ -5544,7 +5986,7 @@ msgstr ""
5544"Warning doit être un nom d'état valide (OK, WARNING, CRITICAL, UNKNOWN) ou " 5986"Warning doit être un nom d'état valide (OK, WARNING, CRITICAL, UNKNOWN) ou "
5545"un nombre entier (0-3)." 5987"un nombre entier (0-3)."
5546 5988
5547#: plugins/negate.c:185 5989#: plugins/negate.c:181
5548msgid "" 5990msgid ""
5549"Critical must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or " 5991"Critical must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or "
5550"integer (0-3)." 5992"integer (0-3)."
@@ -5552,7 +5994,7 @@ msgstr ""
5552"Critical doit être un nom d'état valide (OK, WARNING, CRITICAL, UNKNOWN) ou " 5994"Critical doit être un nom d'état valide (OK, WARNING, CRITICAL, UNKNOWN) ou "
5553"un nombre entier (0-3)." 5995"un nombre entier (0-3)."
5554 5996
5555#: plugins/negate.c:190 5997#: plugins/negate.c:186
5556msgid "" 5998msgid ""
5557"Unknown must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or " 5999"Unknown must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or "
5558"integer (0-3)." 6000"integer (0-3)."
@@ -5560,33 +6002,33 @@ msgstr ""
5560"Unknown doit être un nom d'état valide (OK, WARNING, CRITICAL, UNKNOWN) ou " 6002"Unknown doit être un nom d'état valide (OK, WARNING, CRITICAL, UNKNOWN) ou "
5561"un nombre entier (0-3)." 6003"un nombre entier (0-3)."
5562 6004
5563#: plugins/negate.c:217 6005#: plugins/negate.c:213
5564msgid "Require path to command" 6006msgid "Require path to command"
5565msgstr "Chemin vers la commande requis" 6007msgstr "Chemin vers la commande requis"
5566 6008
5567#: plugins/negate.c:246 6009#: plugins/negate.c:224
5568msgid "" 6010msgid ""
5569"Negates the status of a plugin (returns OK for CRITICAL and vice-versa)." 6011"Negates the status of a plugin (returns OK for CRITICAL and vice-versa)."
5570msgstr "" 6012msgstr ""
5571"Inverse le statut d'un plugin (retourne OK pour CRITIQUE et vice-versa)." 6013"Inverse le statut d'un plugin (retourne OK pour CRITIQUE et vice-versa)."
5572 6014
5573#: plugins/negate.c:247 6015#: plugins/negate.c:225
5574msgid "Additional switches can be used to control which state becomes what." 6016msgid "Additional switches can be used to control which state becomes what."
5575msgstr "" 6017msgstr ""
5576"Des options additionnelles peuvent être utilisées pour contrôler quel état " 6018"Des options additionnelles peuvent être utilisées pour contrôler quel état "
5577"devient quoi." 6019"devient quoi."
5578 6020
5579#: plugins/negate.c:256 6021#: plugins/negate.c:234
5580msgid "Keep timeout longer than the plugin timeout to retain CRITICAL status." 6022msgid "Keep timeout longer than the plugin timeout to retain CRITICAL status."
5581msgstr "" 6023msgstr ""
5582"Utilisez un délai de réponse plus long que celui du plugin afin de conserver " 6024"Utilisez un délai de réponse plus long que celui du plugin afin de conserver "
5583"les résultats CRITIQUE" 6025"les résultats CRITIQUE"
5584 6026
5585#: plugins/negate.c:258 6027#: plugins/negate.c:236
5586msgid "Custom result on Negate timeouts; see below for STATUS definition\n" 6028msgid "Custom result on Negate timeouts; see below for STATUS definition\n"
5587msgstr "" 6029msgstr ""
5588 6030
5589#: plugins/negate.c:264 6031#: plugins/negate.c:242
5590#, c-format 6032#, c-format
5591msgid "" 6033msgid ""
5592" STATUS can be 'OK', 'WARNING', 'CRITICAL' or 'UNKNOWN' without single\n" 6034" STATUS can be 'OK', 'WARNING', 'CRITICAL' or 'UNKNOWN' without single\n"
@@ -5594,63 +6036,63 @@ msgstr ""
5594" STATUS peut être 'OK', 'WARNING', 'CRITICAL' ou 'UNKNOWN' sans les " 6036" STATUS peut être 'OK', 'WARNING', 'CRITICAL' ou 'UNKNOWN' sans les "
5595"simple\n" 6037"simple\n"
5596 6038
5597#: plugins/negate.c:265 6039#: plugins/negate.c:243
5598#, c-format 6040#, c-format
5599msgid "" 6041msgid ""
5600" quotes. Numeric values are accepted. If nothing is specified, permutes\n" 6042" quotes. Numeric values are accepted. If nothing is specified, permutes\n"
5601msgstr " quotes. Les valeurs numériques sont acceptées. Si rien n'est\n" 6043msgstr " quotes. Les valeurs numériques sont acceptées. Si rien n'est\n"
5602 6044
5603#: plugins/negate.c:266 6045#: plugins/negate.c:244
5604#, c-format 6046#, c-format
5605msgid " OK and CRITICAL.\n" 6047msgid " OK and CRITICAL.\n"
5606msgstr " spécifié, inverse OK et CRITIQUE.\n" 6048msgstr " spécifié, inverse OK et CRITIQUE.\n"
5607 6049
5608#: plugins/negate.c:268 6050#: plugins/negate.c:246
5609#, c-format 6051#, c-format
5610msgid "" 6052msgid ""
5611" Substitute output text as well. Will only substitute text in CAPITALS\n" 6053" Substitute output text as well. Will only substitute text in CAPITALS\n"
5612msgstr "" 6054msgstr ""
5613 6055
5614#: plugins/negate.c:273 6056#: plugins/negate.c:251
5615msgid "Run check_ping and invert result. Must use full path to plugin" 6057msgid "Run check_ping and invert result. Must use full path to plugin"
5616msgstr "" 6058msgstr ""
5617"Execute check_ping et inverse le résultat. Le chemin complet du plug-in doit " 6059"Execute check_ping et inverse le résultat. Le chemin complet du plug-in doit "
5618"être spécifié" 6060"être spécifié"
5619 6061
5620#: plugins/negate.c:275 6062#: plugins/negate.c:253
5621msgid "This will return OK instead of WARNING and UNKNOWN instead of CRITICAL" 6063msgid "This will return OK instead of WARNING and UNKNOWN instead of CRITICAL"
5622msgstr "" 6064msgstr ""
5623"Ceci retournera OK au lieu de AVERTISSEMENT et INCONNU au lieu de CRITIQUE" 6065"Ceci retournera OK au lieu de AVERTISSEMENT et INCONNU au lieu de CRITIQUE"
5624 6066
5625#: plugins/negate.c:278 6067#: plugins/negate.c:256
5626msgid "" 6068msgid ""
5627"This plugin is a wrapper to take the output of another plugin and invert it." 6069"This plugin is a wrapper to take the output of another plugin and invert it."
5628msgstr "" 6070msgstr ""
5629"Ce plugin est un adaptateur qui prends l'état d'un autre plug-in et " 6071"Ce plugin est un adaptateur qui prends l'état d'un autre plug-in et "
5630"l'inverse." 6072"l'inverse."
5631 6073
5632#: plugins/negate.c:279 6074#: plugins/negate.c:257
5633msgid "The full path of the plugin must be provided." 6075msgid "The full path of the plugin must be provided."
5634msgstr "Le chemin complet du plugin doit être spécifié." 6076msgstr "Le chemin complet du plugin doit être spécifié."
5635 6077
5636#: plugins/negate.c:280 6078#: plugins/negate.c:258
5637msgid "If the wrapped plugin returns OK, the wrapper will return CRITICAL." 6079msgid "If the wrapped plugin returns OK, the wrapper will return CRITICAL."
5638msgstr "Si le plugin executé retourne OK, l'adaptateur retournera CRITIQUE." 6080msgstr "Si le plugin executé retourne OK, l'adaptateur retournera CRITIQUE."
5639 6081
5640#: plugins/negate.c:281 6082#: plugins/negate.c:259
5641msgid "If the wrapped plugin returns CRITICAL, the wrapper will return OK." 6083msgid "If the wrapped plugin returns CRITICAL, the wrapper will return OK."
5642msgstr "Si le plugin executé retourne CRITIQUE, l'adaptateur retournera OK." 6084msgstr "Si le plugin executé retourne CRITIQUE, l'adaptateur retournera OK."
5643 6085
5644#: plugins/negate.c:282 6086#: plugins/negate.c:260
5645msgid "Otherwise, the output state of the wrapped plugin is unchanged." 6087msgid "Otherwise, the output state of the wrapped plugin is unchanged."
5646msgstr "Autrement, l'état du plugin executé reste inchangé." 6088msgstr "Autrement, l'état du plugin executé reste inchangé."
5647 6089
5648#: plugins/negate.c:284 6090#: plugins/negate.c:262
5649msgid "" 6091msgid ""
5650"Using timeout-result, it is possible to override the timeout behaviour or a" 6092"Using timeout-result, it is possible to override the timeout behaviour or a"
5651msgstr "" 6093msgstr ""
5652 6094
5653#: plugins/negate.c:285 6095#: plugins/negate.c:263
5654msgid "plugin by setting the negate timeout a bit lower." 6096msgid "plugin by setting the negate timeout a bit lower."
5655msgstr "" 6097msgstr ""
5656 6098
@@ -5664,59 +6106,55 @@ msgstr "%s - Le socket n'a pas répondu dans les %d secondes\n"
5664msgid "%s - Abnormal timeout after %d seconds\n" 6106msgid "%s - Abnormal timeout after %d seconds\n"
5665msgstr "%s - Dépassement anormal du temps de réponse après %d secondes\n" 6107msgstr "%s - Dépassement anormal du temps de réponse après %d secondes\n"
5666 6108
5667#: plugins/netutils.c:79 plugins/netutils.c:281 6109#: plugins/netutils.c:79 plugins/netutils.c:292
5668msgid "Send failed" 6110msgid "Send failed"
5669msgstr "L'envoi à échoué" 6111msgstr "L'envoi à échoué"
5670 6112
5671#: plugins/netutils.c:96 plugins/netutils.c:296 6113#: plugins/netutils.c:96 plugins/netutils.c:307
5672msgid "No data was received from host!" 6114msgid "No data was received from host!"
5673msgstr "Pas de données reçues de l'hôte!" 6115msgstr "Pas de données reçues de l'hôte!"
5674 6116
5675#: plugins/netutils.c:204 plugins/netutils.c:240 6117#: plugins/netutils.c:209 plugins/netutils.c:245
5676msgid "Socket creation failed" 6118msgid "Socket creation failed"
5677msgstr "La création du socket à échoué " 6119msgstr "La création du socket à échoué "
5678 6120
5679#: plugins/netutils.c:233 6121#: plugins/netutils.c:238
5680msgid "Supplied path too long unix domain socket" 6122msgid "Supplied path too long unix domain socket"
5681msgstr "Le chemin fourni est trop long pour un socket unix" 6123msgstr "Le chemin fourni est trop long pour un socket unix"
5682 6124
5683#: plugins/netutils.c:305 6125#: plugins/netutils.c:316
5684msgid "Receive failed" 6126msgid "Receive failed"
5685msgstr "La réception à échoué" 6127msgstr "La réception à échoué"
5686 6128
5687#: plugins/netutils.c:331 plugins-root/check_dhcp.c:1342 6129#: plugins/netutils.c:342 plugins-root/check_dhcp.c:1310
5688#, c-format 6130#, c-format
5689msgid "Invalid hostname/address - %s" 6131msgid "Invalid hostname/address - %s"
5690msgstr "Adresse/Nom invalide - %s" 6132msgstr "Adresse/Nom invalide - %s"
5691 6133
5692#: plugins/popen.c:142 6134#: plugins/popen.c:133
5693msgid "Could not malloc argv array in popen()" 6135msgid "Could not malloc argv array in popen()"
5694msgstr "Impossible de réallouer un tableau pour les paramètres dans popen()" 6136msgstr "Impossible de réallouer un tableau pour les paramètres dans popen()"
5695 6137
5696#: plugins/popen.c:152 6138#: plugins/popen.c:143
5697msgid "CRITICAL - You need more args!!!" 6139msgid "CRITICAL - You need more args!!!"
5698msgstr "CRITIQUE - Vous devez spécifier plus d'arguments!!!" 6140msgstr "CRITIQUE - Vous devez spécifier plus d'arguments!!!"
5699 6141
5700#: plugins/popen.c:209 6142#: plugins/popen.c:201
5701msgid "Cannot catch SIGCHLD" 6143msgid "Cannot catch SIGCHLD"
5702msgstr "impossible d'obtenir le signal SIGCHLD" 6144msgstr "impossible d'obtenir le signal SIGCHLD"
5703 6145
5704#: plugins/popen.c:304 6146#: plugins/popen.c:287
5705#, c-format 6147#, c-format
5706msgid "CRITICAL - Plugin timed out after %d seconds\n" 6148msgid "CRITICAL - Plugin timed out after %d seconds\n"
5707msgstr "CRITIQUE - Le plugin n'as pas répondu dans les %d secondes\n" 6149msgstr "CRITIQUE - Le plugin n'as pas répondu dans les %d secondes\n"
5708 6150
5709#: plugins/popen.c:307 6151#: plugins/popen.c:290
5710msgid "CRITICAL - popen timeout received, but no child process" 6152msgid "CRITICAL - popen timeout received, but no child process"
5711msgstr "" 6153msgstr ""
5712"CRITIQUE - le temps d'attente à été dépassé dans la fonction popen, mais il " 6154"CRITIQUE - le temps d'attente à été dépassé dans la fonction popen, mais il "
5713"n'y a pas de processus fils" 6155"n'y a pas de processus fils"
5714 6156
5715#: plugins/popen.c:323 6157#: plugins/urlize.c:129
5716msgid "sysconf error for _SC_OPEN_MAX"
5717msgstr ""
5718
5719#: plugins/urlize.c:130
5720#, c-format 6158#, c-format
5721msgid "" 6159msgid ""
5722"%s UNKNOWN - No data received from host\n" 6160"%s UNKNOWN - No data received from host\n"
@@ -5725,7 +6163,7 @@ msgstr ""
5725"%s INCONNU - Pas de données reçues de l'hôte\n" 6163"%s INCONNU - Pas de données reçues de l'hôte\n"
5726"Commande: %s</A>\n" 6164"Commande: %s</A>\n"
5727 6165
5728#: plugins/urlize.c:169 6166#: plugins/urlize.c:168
5729#, fuzzy 6167#, fuzzy
5730msgid "" 6168msgid ""
5731"This plugin wraps the text output of another command (plugin) in HTML <A>" 6169"This plugin wraps the text output of another command (plugin) in HTML <A>"
@@ -5733,66 +6171,65 @@ msgstr ""
5733"Ce plugin est un adaptateur qui prends l'état d'un autre plug-in et " 6171"Ce plugin est un adaptateur qui prends l'état d'un autre plug-in et "
5734"l'inverse." 6172"l'inverse."
5735 6173
5736#: plugins/urlize.c:170 6174#: plugins/urlize.c:169
5737msgid "" 6175msgid ""
5738"tags, thus displaying the child plugin's output as a clickable link in " 6176"tags, thus displaying the child plugin's output as a clickable link in "
5739"compatible" 6177"compatible"
5740msgstr "" 6178msgstr ""
5741 6179
5742#: plugins/urlize.c:171 6180#: plugins/urlize.c:170
5743msgid "" 6181msgid ""
5744"monitoring status screen. This plugin returns the status of the invoked " 6182"monitoring status screen. This plugin returns the status of the invoked "
5745"plugin." 6183"plugin."
5746msgstr "" 6184msgstr ""
5747 6185
5748#: plugins/urlize.c:181 6186#: plugins/urlize.c:180
5749msgid "" 6187msgid ""
5750"Pay close attention to quoting to ensure that the shell passes the expected" 6188"Pay close attention to quoting to ensure that the shell passes the expected"
5751msgstr "" 6189msgstr ""
5752 6190
5753#: plugins/urlize.c:182 6191#: plugins/urlize.c:181
5754msgid "data to the plugin. For example, in:" 6192msgid "data to the plugin. For example, in:"
5755msgstr "" 6193msgstr ""
5756 6194
5757#: plugins/urlize.c:183 6195#: plugins/urlize.c:182
5758msgid "urlize http://example.com/ check_http -H example.com -r 'two words'" 6196msgid "urlize http://example.com/ check_http -H example.com -r 'two words'"
5759msgstr "" 6197msgstr ""
5760 6198
5761#: plugins/urlize.c:184 6199#: plugins/urlize.c:183
5762msgid "the shell will remove the single quotes and urlize will see:" 6200msgid "the shell will remove the single quotes and urlize will see:"
5763msgstr "" 6201msgstr ""
5764 6202
5765#: plugins/urlize.c:185 6203#: plugins/urlize.c:184
5766msgid "urlize http://example.com/ check_http -H example.com -r two words" 6204msgid "urlize http://example.com/ check_http -H example.com -r two words"
5767msgstr "" 6205msgstr ""
5768 6206
5769#: plugins/urlize.c:186 6207#: plugins/urlize.c:185
5770msgid "You probably want:" 6208msgid "You probably want:"
5771msgstr "" 6209msgstr ""
5772 6210
5773#: plugins/urlize.c:187 6211#: plugins/urlize.c:186
5774msgid "urlize http://example.com/ \"check_http -H example.com -r 'two words'\"" 6212msgid "urlize http://example.com/ \"check_http -H example.com -r 'two words'\""
5775msgstr "" 6213msgstr ""
5776 6214
5777#: plugins/utils.c:174 6215#: plugins/utils.c:479
5778#, c-format
5779msgid "%s - Plugin timed out after %d seconds\n"
5780msgstr "%s - Le plugin n'as pas répondu dans les %d secondes\n"
5781
5782#: plugins/utils.c:469
5783msgid "failed realloc in strpcpy\n" 6216msgid "failed realloc in strpcpy\n"
5784msgstr "La fonction realloc à échoué dans strpcpy\n" 6217msgstr "La fonction realloc à échoué dans strpcpy\n"
5785 6218
5786#: plugins/utils.c:511 6219#: plugins/utils.c:521
5787msgid "failed malloc in strscat\n" 6220msgid "failed malloc in strscat\n"
5788msgstr "La fonction malloc à échoué dans strscat\n" 6221msgstr "La fonction malloc à échoué dans strscat\n"
5789 6222
5790#: plugins/utils.c:531 6223#: plugins/utils.c:541
5791#, fuzzy 6224#, fuzzy
5792msgid "failed malloc in xvasprintf\n" 6225msgid "failed malloc in xvasprintf\n"
5793msgstr "La fonction malloc à échoué dans strscat\n" 6226msgstr "La fonction malloc à échoué dans strscat\n"
5794 6227
5795#: plugins/utils.h:137 6228#: plugins/utils.c:819
6229msgid "sysconf error for _SC_OPEN_MAX\n"
6230msgstr ""
6231
6232#: plugins/utils.h:127
5796#, c-format 6233#, c-format
5797msgid "" 6234msgid ""
5798" %s (-h | --help) for detailed help\n" 6235" %s (-h | --help) for detailed help\n"
@@ -5801,7 +6238,7 @@ msgstr ""
5801" %s (-h | --help) pour l'aide détaillée\n" 6238" %s (-h | --help) pour l'aide détaillée\n"
5802" %s (-V | --version) pour les informations relative à la version\n" 6239" %s (-V | --version) pour les informations relative à la version\n"
5803 6240
5804#: plugins/utils.h:141 6241#: plugins/utils.h:131
5805msgid "" 6242msgid ""
5806"\n" 6243"\n"
5807"Options:\n" 6244"Options:\n"
@@ -5817,7 +6254,7 @@ msgstr ""
5817" -V, --version\n" 6254" -V, --version\n"
5818" Afficher les informations relative à la version\n" 6255" Afficher les informations relative à la version\n"
5819 6256
5820#: plugins/utils.h:148 6257#: plugins/utils.h:138
5821#, c-format 6258#, c-format
5822msgid "" 6259msgid ""
5823" -H, --hostname=ADDRESS\n" 6260" -H, --hostname=ADDRESS\n"
@@ -5830,7 +6267,7 @@ msgstr ""
5830" -%c, --port=INTEGER\n" 6267" -%c, --port=INTEGER\n"
5831" Numéro de port (défaut: %s)\n" 6268" Numéro de port (défaut: %s)\n"
5832 6269
5833#: plugins/utils.h:154 6270#: plugins/utils.h:144
5834msgid "" 6271msgid ""
5835" -4, --use-ipv4\n" 6272" -4, --use-ipv4\n"
5836" Use IPv4 connection\n" 6273" Use IPv4 connection\n"
@@ -5842,18 +6279,18 @@ msgstr ""
5842" -6, --use-ipv6\n" 6279" -6, --use-ipv6\n"
5843" Utiliser une connection IPv6\n" 6280" Utiliser une connection IPv6\n"
5844 6281
5845#: plugins/utils.h:160 6282#: plugins/utils.h:150
5846#, fuzzy 6283#, fuzzy
5847msgid "" 6284msgid ""
5848" -v, --verbose\n" 6285" -v, --verbose\n"
5849" Show details for command-line debugging (output may be truncated by\n" 6286" Show details for command-line debugging (output may be truncated by\n"
5850"\t\tthe monitoring system)\n" 6287" the monitoring system)\n"
5851msgstr "" 6288msgstr ""
5852" -v, --verbose\n" 6289" -v, --verbose\n"
5853" Affiche les informations de déboguage en ligne de commande (Nagios peut " 6290" Affiche les informations de déboguage en ligne de commande (Nagios peut "
5854"tronquer la sortie)\n" 6291"tronquer la sortie)\n"
5855 6292
5856#: plugins/utils.h:165 6293#: plugins/utils.h:155
5857msgid "" 6294msgid ""
5858" -w, --warning=DOUBLE\n" 6295" -w, --warning=DOUBLE\n"
5859" Response time to result in warning status (seconds)\n" 6296" Response time to result in warning status (seconds)\n"
@@ -5865,7 +6302,7 @@ msgstr ""
5865" -c, --critical=DOUBLE\n" 6302" -c, --critical=DOUBLE\n"
5866" Temps de réponse résultant en un état critique (secondes)\n" 6303" Temps de réponse résultant en un état critique (secondes)\n"
5867 6304
5868#: plugins/utils.h:171 6305#: plugins/utils.h:161
5869msgid "" 6306msgid ""
5870" -w, --warning=RANGE\n" 6307" -w, --warning=RANGE\n"
5871" Warning range (format: start:end). Alert if outside this range\n" 6308" Warning range (format: start:end). Alert if outside this range\n"
@@ -5878,7 +6315,7 @@ msgstr ""
5878" -c, --critical=RANGE\n" 6315" -c, --critical=RANGE\n"
5879" Seuil critique\n" 6316" Seuil critique\n"
5880 6317
5881#: plugins/utils.h:177 6318#: plugins/utils.h:167
5882#, c-format 6319#, c-format
5883msgid "" 6320msgid ""
5884" -t, --timeout=INTEGER\n" 6321" -t, --timeout=INTEGER\n"
@@ -5887,7 +6324,16 @@ msgstr ""
5887" -t, --timeout=INTEGER\n" 6324" -t, --timeout=INTEGER\n"
5888" Délais de connection en secondes (défaut: %d)\n" 6325" Délais de connection en secondes (défaut: %d)\n"
5889 6326
5890#: plugins/utils.h:182 6327#: plugins/utils.h:171
6328#, fuzzy, c-format
6329msgid ""
6330" -t, --timeout=INTEGER\n"
6331" Seconds before plugin times out (default: %d)\n"
6332msgstr ""
6333" -t, --timeout=INTEGER\n"
6334" Délais de connection en secondes (défaut: %d)\n"
6335
6336#: plugins/utils.h:176
5891#, fuzzy 6337#, fuzzy
5892msgid "" 6338msgid ""
5893" --extra-opts=[section][@file]\n" 6339" --extra-opts=[section][@file]\n"
@@ -5900,7 +6346,7 @@ msgstr ""
5900" https://www.monitoring-plugins.org/doc/extra-opts.html\n" 6346" https://www.monitoring-plugins.org/doc/extra-opts.html\n"
5901" pour les instructions et examples.\n" 6347" pour les instructions et examples.\n"
5902 6348
5903#: plugins/utils.h:190 6349#: plugins/utils.h:185
5904#, fuzzy 6350#, fuzzy
5905msgid "" 6351msgid ""
5906" See:\n" 6352" See:\n"
@@ -5912,7 +6358,7 @@ msgstr ""
5912"html#THRESHOLDFORMAT\n" 6358"html#THRESHOLDFORMAT\n"
5913" pour le format et examples des seuils (THRESHOLD).\n" 6359" pour le format et examples des seuils (THRESHOLD).\n"
5914 6360
5915#: plugins/utils.h:195 6361#: plugins/utils.h:190
5916#, fuzzy 6362#, fuzzy
5917msgid "" 6363msgid ""
5918"\n" 6364"\n"
@@ -5922,14 +6368,13 @@ msgid ""
5922"\n" 6368"\n"
5923msgstr "" 6369msgstr ""
5924"\n" 6370"\n"
5925"Envoyez un email à help@monitoring-plugins.org si vous avez des " 6371"Envoyez un email à help@monitoring-plugins.org si vous avez des questions\n"
5926"questions\n"
5927"reliées à l'utilisation de ce logiciel. Pour envoyer des patches ou suggérer " 6372"reliées à l'utilisation de ce logiciel. Pour envoyer des patches ou suggérer "
5928"des\n" 6373"des\n"
5929"améliorations, envoyez un email à devel@monitoring-plugins.org\n" 6374"améliorations, envoyez un email à devel@monitoring-plugins.org\n"
5930"\n" 6375"\n"
5931 6376
5932#: plugins/utils.h:200 6377#: plugins/utils.h:195
5933#, fuzzy 6378#, fuzzy
5934msgid "" 6379msgid ""
5935"\n" 6380"\n"
@@ -5943,25 +6388,25 @@ msgstr ""
5943"des copies des plugins selon les termes de la GNU General Public License.\n" 6388"des copies des plugins selon les termes de la GNU General Public License.\n"
5944"Pour de plus ample informations, voir le fichier COPYING.\n" 6389"Pour de plus ample informations, voir le fichier COPYING.\n"
5945 6390
5946#: plugins-root/check_dhcp.c:320 6391#: plugins-root/check_dhcp.c:317
5947#, c-format 6392#, c-format
5948msgid "Error: Could not get hardware address of interface '%s'\n" 6393msgid "Error: Could not get hardware address of interface '%s'\n"
5949msgstr "" 6394msgstr ""
5950"Erreur: Impossible d'obtenir l'adresse matérielle pour l'interface '%s'\n" 6395"Erreur: Impossible d'obtenir l'adresse matérielle pour l'interface '%s'\n"
5951 6396
5952#: plugins-root/check_dhcp.c:342 6397#: plugins-root/check_dhcp.c:340
5953#, c-format 6398#, c-format
5954msgid "Error: if_nametoindex error - %s.\n" 6399msgid "Error: if_nametoindex error - %s.\n"
5955msgstr "Erreur: if_nametoindex erreur - %s.\n" 6400msgstr "Erreur: if_nametoindex erreur - %s.\n"
5956 6401
5957#: plugins-root/check_dhcp.c:347 6402#: plugins-root/check_dhcp.c:345
5958#, c-format 6403#, c-format
5959msgid "Error: Couldn't get hardware address from %s. sysctl 1 error - %s.\n" 6404msgid "Error: Couldn't get hardware address from %s. sysctl 1 error - %s.\n"
5960msgstr "" 6405msgstr ""
5961"Erreur: Impossible d'obtenir l'adresse matérielle depuis %s. erreur sysctl 1 " 6406"Erreur: Impossible d'obtenir l'adresse matérielle depuis %s. erreur sysctl 1 "
5962"- %s.\n" 6407"- %s.\n"
5963 6408
5964#: plugins-root/check_dhcp.c:352 6409#: plugins-root/check_dhcp.c:350
5965#, c-format 6410#, c-format
5966msgid "" 6411msgid ""
5967"Error: Couldn't get hardware address from interface %s. malloc error - %s.\n" 6412"Error: Couldn't get hardware address from interface %s. malloc error - %s.\n"
@@ -5969,14 +6414,14 @@ msgstr ""
5969"Erreur: Impossible d'obtenir l'adresse matérielle depuis l'interface %s\n" 6414"Erreur: Impossible d'obtenir l'adresse matérielle depuis l'interface %s\n"
5970" erreur malloc - %s.\n" 6415" erreur malloc - %s.\n"
5971 6416
5972#: plugins-root/check_dhcp.c:357 6417#: plugins-root/check_dhcp.c:355
5973#, c-format 6418#, c-format
5974msgid "Error: Couldn't get hardware address from %s. sysctl 2 error - %s.\n" 6419msgid "Error: Couldn't get hardware address from %s. sysctl 2 error - %s.\n"
5975msgstr "" 6420msgstr ""
5976"Erreur: Impossible d'obtenir l'adresse matérielle depuis %s erreur sysctl 2 " 6421"Erreur: Impossible d'obtenir l'adresse matérielle depuis %s erreur sysctl 2 "
5977"- %s.\n" 6422"- %s.\n"
5978 6423
5979#: plugins-root/check_dhcp.c:388 6424#: plugins-root/check_dhcp.c:386
5980#, c-format 6425#, c-format
5981msgid "" 6426msgid ""
5982"Error: can't find unit number in interface_name (%s) - expecting TypeNumber " 6427"Error: can't find unit number in interface_name (%s) - expecting TypeNumber "
@@ -5985,7 +6430,7 @@ msgstr ""
5985"Erreur: impossible de trouver le numéro dans le nom de l'interface (%s).\n" 6430"Erreur: impossible de trouver le numéro dans le nom de l'interface (%s).\n"
5986"J'attendais le nom suivi du type ex lnc0.\n" 6431"J'attendais le nom suivi du type ex lnc0.\n"
5987 6432
5988#: plugins-root/check_dhcp.c:393 plugins-root/check_dhcp.c:405 6433#: plugins-root/check_dhcp.c:391 plugins-root/check_dhcp.c:403
5989#, c-format 6434#, c-format
5990msgid "" 6435msgid ""
5991"Error: can't read MAC address from DLPI streams interface for device %s unit " 6436"Error: can't read MAC address from DLPI streams interface for device %s unit "
@@ -5994,7 +6439,7 @@ msgstr ""
5994"Erreur: impossible de lire l'adresse MAC depuis l'interface DLPI pour le \n" 6439"Erreur: impossible de lire l'adresse MAC depuis l'interface DLPI pour le \n"
5995"périphérique %s numéro %d.\n" 6440"périphérique %s numéro %d.\n"
5996 6441
5997#: plugins-root/check_dhcp.c:411 6442#: plugins-root/check_dhcp.c:409
5998#, c-format 6443#, c-format
5999msgid "" 6444msgid ""
6000"Error: can't get MAC address for this architecture. Use the --mac option.\n" 6445"Error: can't get MAC address for this architecture. Use the --mac option.\n"
@@ -6002,47 +6447,47 @@ msgstr ""
6002"Erreur: impossible d'obtenir l'adresse MAC sur cette architecture. Utilisez " 6447"Erreur: impossible d'obtenir l'adresse MAC sur cette architecture. Utilisez "
6003"l'option --mac.\n" 6448"l'option --mac.\n"
6004 6449
6005#: plugins-root/check_dhcp.c:430 6450#: plugins-root/check_dhcp.c:428
6006#, c-format 6451#, c-format
6007msgid "Error: Cannot determine IP address of interface %s\n" 6452msgid "Error: Cannot determine IP address of interface %s\n"
6008msgstr "Erreur: Impossible d'obtenir l'adresse IP de l'interface %s\n" 6453msgstr "Erreur: Impossible d'obtenir l'adresse IP de l'interface %s\n"
6009 6454
6010#: plugins-root/check_dhcp.c:438 6455#: plugins-root/check_dhcp.c:436
6011#, c-format 6456#, c-format
6012msgid "Error: Cannot get interface IP address on this platform.\n" 6457msgid "Error: Cannot get interface IP address on this platform.\n"
6013msgstr "Erreur: Impossible d'obtenir l'adresse IP sur cette architecture.\n" 6458msgstr "Erreur: Impossible d'obtenir l'adresse IP sur cette architecture.\n"
6014 6459
6015#: plugins-root/check_dhcp.c:443 6460#: plugins-root/check_dhcp.c:441
6016#, c-format 6461#, c-format
6017msgid "Pretending to be relay client %s\n" 6462msgid "Pretending to be relay client %s\n"
6018msgstr "" 6463msgstr ""
6019 6464
6020#: plugins-root/check_dhcp.c:528 6465#: plugins-root/check_dhcp.c:521
6021#, c-format 6466#, c-format
6022msgid "DHCPDISCOVER to %s port %d\n" 6467msgid "DHCPDISCOVER to %s port %d\n"
6023msgstr "DHCPDISCOVER vers %s port %d\n" 6468msgstr "DHCPDISCOVER vers %s port %d\n"
6024 6469
6025#: plugins-root/check_dhcp.c:580 6470#: plugins-root/check_dhcp.c:573
6026#, c-format 6471#, c-format
6027msgid "Result=ERROR\n" 6472msgid "Result=ERROR\n"
6028msgstr "Résultat=ERREUR\n" 6473msgstr "Résultat=ERREUR\n"
6029 6474
6030#: plugins-root/check_dhcp.c:586 6475#: plugins-root/check_dhcp.c:579
6031#, c-format 6476#, c-format
6032msgid "Result=OK\n" 6477msgid "Result=OK\n"
6033msgstr "Résultat=OK\n" 6478msgstr "Résultat=OK\n"
6034 6479
6035#: plugins-root/check_dhcp.c:596 6480#: plugins-root/check_dhcp.c:589
6036#, c-format 6481#, c-format
6037msgid "DHCPOFFER from IP address %s" 6482msgid "DHCPOFFER from IP address %s"
6038msgstr "DHCPOFFER depuis l'adresse IP %s" 6483msgstr "DHCPOFFER depuis l'adresse IP %s"
6039 6484
6040#: plugins-root/check_dhcp.c:597 6485#: plugins-root/check_dhcp.c:590
6041#, c-format 6486#, c-format
6042msgid " via %s\n" 6487msgid " via %s\n"
6043msgstr " depuis %s\n" 6488msgstr " depuis %s\n"
6044 6489
6045#: plugins-root/check_dhcp.c:604 6490#: plugins-root/check_dhcp.c:597
6046#, c-format 6491#, c-format
6047msgid "" 6492msgid ""
6048"DHCPOFFER XID (%u) did not match DHCPDISCOVER XID (%u) - ignoring packet\n" 6493"DHCPOFFER XID (%u) did not match DHCPDISCOVER XID (%u) - ignoring packet\n"
@@ -6050,67 +6495,67 @@ msgstr ""
6050"DHCPOFFER XID (%u) ne correspond pas au DHCPDISCOVER XID (%u) - paquet " 6495"DHCPOFFER XID (%u) ne correspond pas au DHCPDISCOVER XID (%u) - paquet "
6051"ignoré\n" 6496"ignoré\n"
6052 6497
6053#: plugins-root/check_dhcp.c:626 6498#: plugins-root/check_dhcp.c:619
6054#, c-format 6499#, c-format
6055msgid "DHCPOFFER hardware address did not match our own - ignoring packet\n" 6500msgid "DHCPOFFER hardware address did not match our own - ignoring packet\n"
6056msgstr "" 6501msgstr ""
6057"l'adresse matérielle du DHCPOFFER ne correspond pas à la notre paquet " 6502"l'adresse matérielle du DHCPOFFER ne correspond pas à la notre paquet "
6058"ignoré\n" 6503"ignoré\n"
6059 6504
6060#: plugins-root/check_dhcp.c:644 6505#: plugins-root/check_dhcp.c:637
6061#, c-format 6506#, c-format
6062msgid "Total responses seen on the wire: %d\n" 6507msgid "Total responses seen on the wire: %d\n"
6063msgstr "Nombre total de réponses vues: %d\n" 6508msgstr "Nombre total de réponses vues: %d\n"
6064 6509
6065#: plugins-root/check_dhcp.c:645 6510#: plugins-root/check_dhcp.c:638
6066#, c-format 6511#, c-format
6067msgid "Valid responses for this machine: %d\n" 6512msgid "Valid responses for this machine: %d\n"
6068msgstr "Nombre de réponse valides pour cette machine: %d\n" 6513msgstr "Nombre de réponse valides pour cette machine: %d\n"
6069 6514
6070#: plugins-root/check_dhcp.c:660 6515#: plugins-root/check_dhcp.c:653
6071#, c-format 6516#, c-format
6072msgid "send_dhcp_packet result: %d\n" 6517msgid "send_dhcp_packet result: %d\n"
6073msgstr "résultat de send_dchp_packet: %d\n" 6518msgstr "résultat de send_dchp_packet: %d\n"
6074 6519
6075#: plugins-root/check_dhcp.c:693 6520#: plugins-root/check_dhcp.c:686
6076#, c-format 6521#, c-format
6077msgid "No (more) data received (nfound: %d)\n" 6522msgid "No (more) data received (nfound: %d)\n"
6078msgstr "Plus de données reçues (nfound: %d)\n" 6523msgstr "Plus de données reçues (nfound: %d)\n"
6079 6524
6080#: plugins-root/check_dhcp.c:712 6525#: plugins-root/check_dhcp.c:699
6081#, c-format 6526#, c-format
6082msgid "recvfrom() failed, " 6527msgid "recvfrom() failed, "
6083msgstr "recvfrom() a échoué, " 6528msgstr "recvfrom() a échoué, "
6084 6529
6085#: plugins-root/check_dhcp.c:719 6530#: plugins-root/check_dhcp.c:706
6086#, c-format 6531#, c-format
6087msgid "receive_dhcp_packet() result: %d\n" 6532msgid "receive_dhcp_packet() result: %d\n"
6088msgstr "résultat de receive_dchp_packet(): %d\n" 6533msgstr "résultat de receive_dchp_packet(): %d\n"
6089 6534
6090#: plugins-root/check_dhcp.c:720 6535#: plugins-root/check_dhcp.c:707
6091#, c-format 6536#, c-format
6092msgid "receive_dhcp_packet() source: %s\n" 6537msgid "receive_dhcp_packet() source: %s\n"
6093msgstr "source de receive_dchp_packet(): %s\n" 6538msgstr "source de receive_dchp_packet(): %s\n"
6094 6539
6095#: plugins-root/check_dhcp.c:750 6540#: plugins-root/check_dhcp.c:737
6096#, c-format 6541#, c-format
6097msgid "Error: Could not create socket!\n" 6542msgid "Error: Could not create socket!\n"
6098msgstr "Erreur: Impossible de créer un socket!\n" 6543msgstr "Erreur: Impossible de créer un socket!\n"
6099 6544
6100#: plugins-root/check_dhcp.c:760 6545#: plugins-root/check_dhcp.c:747
6101#, c-format 6546#, c-format
6102msgid "Error: Could not set reuse address option on DHCP socket!\n" 6547msgid "Error: Could not set reuse address option on DHCP socket!\n"
6103msgstr "" 6548msgstr ""
6104"Erreur: Impossible de configurer l'option de réutilisation de l'adresse sur\n" 6549"Erreur: Impossible de configurer l'option de réutilisation de l'adresse sur\n"
6105"le socket DHCP!\n" 6550"le socket DHCP!\n"
6106 6551
6107#: plugins-root/check_dhcp.c:766 6552#: plugins-root/check_dhcp.c:753
6108#, c-format 6553#, c-format
6109msgid "Error: Could not set broadcast option on DHCP socket!\n" 6554msgid "Error: Could not set broadcast option on DHCP socket!\n"
6110msgstr "" 6555msgstr ""
6111"Erreur: Impossible de configurer l'option broadcast sur le socket DHCP!\n" 6556"Erreur: Impossible de configurer l'option broadcast sur le socket DHCP!\n"
6112 6557
6113#: plugins-root/check_dhcp.c:775 6558#: plugins-root/check_dhcp.c:762
6114#, c-format 6559#, c-format
6115msgid "" 6560msgid ""
6116"Error: Could not bind socket to interface %s. Check your privileges...\n" 6561"Error: Could not bind socket to interface %s. Check your privileges...\n"
@@ -6118,7 +6563,7 @@ msgstr ""
6118"Erreur: Impossible de connecter le socket à l'interface %s.\n" 6563"Erreur: Impossible de connecter le socket à l'interface %s.\n"
6119"Vérifiez vos droits...\n" 6564"Vérifiez vos droits...\n"
6120 6565
6121#: plugins-root/check_dhcp.c:786 6566#: plugins-root/check_dhcp.c:773
6122#, c-format 6567#, c-format
6123msgid "" 6568msgid ""
6124"Error: Could not bind to DHCP socket (port %d)! Check your privileges...\n" 6569"Error: Could not bind to DHCP socket (port %d)! Check your privileges...\n"
@@ -6126,256 +6571,289 @@ msgstr ""
6126"Erreur: Impossible de se connecter au socket (port %d)! Vérifiez vos " 6571"Erreur: Impossible de se connecter au socket (port %d)! Vérifiez vos "
6127"droits..\n" 6572"droits..\n"
6128 6573
6129#: plugins-root/check_dhcp.c:820 6574#: plugins-root/check_dhcp.c:807
6130#, c-format 6575#, c-format
6131msgid "Requested server address: %s\n" 6576msgid "Requested server address: %s\n"
6132msgstr "Adresse serveur demandée: %s\n" 6577msgstr "Adresse serveur demandée: %s\n"
6133 6578
6134#: plugins-root/check_dhcp.c:882 6579#: plugins-root/check_dhcp.c:869
6135#, c-format 6580#, c-format
6136msgid "Lease Time: Infinite\n" 6581msgid "Lease Time: Infinite\n"
6137msgstr "Durée du Bail: Infini\n" 6582msgstr "Durée du Bail: Infini\n"
6138 6583
6139#: plugins-root/check_dhcp.c:884 6584#: plugins-root/check_dhcp.c:871
6140#, c-format 6585#, c-format
6141msgid "Lease Time: %lu seconds\n" 6586msgid "Lease Time: %lu seconds\n"
6142msgstr "Durée du Bail: %lu secondes\n" 6587msgstr "Durée du Bail: %lu secondes\n"
6143 6588
6144#: plugins-root/check_dhcp.c:886 6589#: plugins-root/check_dhcp.c:873
6145#, c-format 6590#, c-format
6146msgid "Renewal Time: Infinite\n" 6591msgid "Renewal Time: Infinite\n"
6147msgstr "Renouvellement du bail: Infini\n" 6592msgstr "Renouvellement du bail: Infini\n"
6148 6593
6149#: plugins-root/check_dhcp.c:888 6594#: plugins-root/check_dhcp.c:875
6150#, c-format 6595#, c-format
6151msgid "Renewal Time: %lu seconds\n" 6596msgid "Renewal Time: %lu seconds\n"
6152msgstr "Durée du renouvellement = %lu secondes\n" 6597msgstr "Durée du renouvellement = %lu secondes\n"
6153 6598
6154#: plugins-root/check_dhcp.c:890 6599#: plugins-root/check_dhcp.c:877
6155#, c-format 6600#, c-format
6156msgid "Rebinding Time: Infinite\n" 6601msgid "Rebinding Time: Infinite\n"
6157msgstr "Délai de nouvelle demande: Infini\n" 6602msgstr "Délai de nouvelle demande: Infini\n"
6158 6603
6159#: plugins-root/check_dhcp.c:891 6604#: plugins-root/check_dhcp.c:878
6160#, c-format 6605#, c-format
6161msgid "Rebinding Time: %lu seconds\n" 6606msgid "Rebinding Time: %lu seconds\n"
6162msgstr "Délai de nouvelle demande: %lu secondes\n" 6607msgstr "Délai de nouvelle demande: %lu secondes\n"
6163 6608
6164#: plugins-root/check_dhcp.c:919 6609#: plugins-root/check_dhcp.c:906
6165#, c-format 6610#, c-format
6166msgid "Added offer from server @ %s" 6611msgid "Added offer from server @ %s"
6167msgstr "Rajouté offre du serveur @ %s" 6612msgstr "Rajouté offre du serveur @ %s"
6168 6613
6169#: plugins-root/check_dhcp.c:920 6614#: plugins-root/check_dhcp.c:907
6170#, c-format 6615#, c-format
6171msgid " of IP address %s\n" 6616msgid " of IP address %s\n"
6172msgstr "de l'adresse IP %s\n" 6617msgstr "de l'adresse IP %s\n"
6173 6618
6174#: plugins-root/check_dhcp.c:987 6619#: plugins-root/check_dhcp.c:974
6175#, c-format 6620#, c-format
6176msgid "DHCP Server Match: Offerer=%s" 6621msgid "DHCP Server Match: Offerer=%s"
6177msgstr "Correspondance du serveur DHCP: Offrant=%s" 6622msgstr "Correspondance du serveur DHCP: Offrant=%s"
6178 6623
6179#: plugins-root/check_dhcp.c:988 6624#: plugins-root/check_dhcp.c:975
6180#, c-format 6625#, c-format
6181msgid " Requested=%s" 6626msgid " Requested=%s"
6182msgstr " Demandé=%s" 6627msgstr " Demandé=%s"
6183 6628
6184#: plugins-root/check_dhcp.c:990 6629#: plugins-root/check_dhcp.c:977
6185#, c-format 6630#, c-format
6186msgid " (duplicate)" 6631msgid " (duplicate)"
6187msgstr "" 6632msgstr ""
6188 6633
6189#: plugins-root/check_dhcp.c:991 6634#: plugins-root/check_dhcp.c:978
6190#, c-format 6635#, c-format
6191msgid "\n" 6636msgid "\n"
6192msgstr "" 6637msgstr ""
6193 6638
6194#: plugins-root/check_dhcp.c:1039 6639#: plugins-root/check_dhcp.c:1026
6195#, c-format 6640#, c-format
6196msgid "No DHCPOFFERs were received.\n" 6641msgid "No DHCPOFFERs were received.\n"
6197msgstr "Pas de DHCPOFFERs reçus.\n" 6642msgstr "Pas de DHCPOFFERs reçus.\n"
6198 6643
6199#: plugins-root/check_dhcp.c:1043 6644#: plugins-root/check_dhcp.c:1030
6200#, c-format 6645#, c-format
6201msgid "Received %d DHCPOFFER(s)" 6646msgid "Received %d DHCPOFFER(s)"
6202msgstr "Reçu %d DHCPOFFER(s)" 6647msgstr "Reçu %d DHCPOFFER(s)"
6203 6648
6204#: plugins-root/check_dhcp.c:1046 6649#: plugins-root/check_dhcp.c:1033
6205#, c-format 6650#, c-format
6206msgid ", %s%d of %d requested servers responded" 6651msgid ", %s%d of %d requested servers responded"
6207msgstr ", %s%d de %d serveurs ont répondus" 6652msgstr ", %s%d de %d serveurs ont répondus"
6208 6653
6209#: plugins-root/check_dhcp.c:1049 6654#: plugins-root/check_dhcp.c:1036
6210#, c-format 6655#, c-format
6211msgid ", requested address (%s) was %soffered" 6656msgid ", requested address (%s) was %soffered"
6212msgstr ", l'adresse demandée (%s) %s été offerte" 6657msgstr ", l'adresse demandée (%s) %s été offerte"
6213 6658
6214#: plugins-root/check_dhcp.c:1049 6659#: plugins-root/check_dhcp.c:1036
6215msgid "not " 6660msgid "not "
6216msgstr "n'as pas" 6661msgstr "n'as pas"
6217 6662
6218#: plugins-root/check_dhcp.c:1051 6663#: plugins-root/check_dhcp.c:1038
6219#, c-format 6664#, c-format
6220msgid ", max lease time = " 6665msgid ", max lease time = "
6221msgstr ", bail maximum = " 6666msgstr ", bail maximum = "
6222 6667
6223#: plugins-root/check_dhcp.c:1053 6668#: plugins-root/check_dhcp.c:1040
6224#, c-format 6669#, c-format
6225msgid "Infinity" 6670msgid "Infinity"
6226msgstr "Infini" 6671msgstr "Infini"
6227 6672
6228#: plugins-root/check_dhcp.c:1234 6673#: plugins-root/check_dhcp.c:1160
6674msgid "Got unexpected non-option argument"
6675msgstr ""
6676
6677#: plugins-root/check_dhcp.c:1202
6229#, c-format 6678#, c-format
6230msgid "Error: DLPI stream API failed to get MAC in check_ctrl: %s.\n" 6679msgid "Error: DLPI stream API failed to get MAC in check_ctrl: %s.\n"
6231msgstr "" 6680msgstr ""
6232"Erreur: Impossible d'obtenir la MAC par l'API DLPI dans check_ctrl: %s.\n" 6681"Erreur: Impossible d'obtenir la MAC par l'API DLPI dans check_ctrl: %s.\n"
6233 6682
6234#: plugins-root/check_dhcp.c:1246 6683#: plugins-root/check_dhcp.c:1214
6235#, c-format 6684#, c-format
6236msgid "Error: DLPI stream API failed to get MAC in put_ctrl/putmsg(): %s.\n" 6685msgid "Error: DLPI stream API failed to get MAC in put_ctrl/putmsg(): %s.\n"
6237msgstr "" 6686msgstr ""
6238"Erreur: Impossible d'obtenir la MAC par l'API DLPI dans put_ctrl/putmsg(): " 6687"Erreur: Impossible d'obtenir la MAC par l'API DLPI dans put_ctrl/putmsg(): "
6239"%s.\n" 6688"%s.\n"
6240 6689
6241#: plugins-root/check_dhcp.c:1259 6690#: plugins-root/check_dhcp.c:1227
6242#, c-format 6691#, c-format
6243msgid "Error: DLPI stream API failed to get MAC in put_both/putmsg().\n" 6692msgid "Error: DLPI stream API failed to get MAC in put_both/putmsg().\n"
6244msgstr "" 6693msgstr ""
6245"Erreur: Impossible d'obtenir la MAC par l'API DLPI dans put_both/putmsg().\n" 6694"Erreur: Impossible d'obtenir la MAC par l'API DLPI dans put_both/putmsg().\n"
6246 6695
6247#: plugins-root/check_dhcp.c:1271 6696#: plugins-root/check_dhcp.c:1239
6248#, c-format 6697#, c-format
6249msgid "" 6698msgid ""
6250"Error: DLPI stream API failed to get MAC in dl_attach_req/open(%s..): %s.\n" 6699"Error: DLPI stream API failed to get MAC in dl_attach_req/open(%s..): %s.\n"
6251msgstr "" 6700msgstr ""
6252"Erreur: Impossible d'obtenir la MAC par l'API DLPI dans dl_attach_req/open" 6701"Erreur: Impossible d'obtenir la MAC par l'API DLPI dans dl_attach_req/"
6253"(%s..): %s.\n" 6702"open(%s..): %s.\n"
6254 6703
6255#: plugins-root/check_dhcp.c:1295 6704#: plugins-root/check_dhcp.c:1263
6256#, c-format 6705#, c-format
6257msgid "Error: DLPI stream API failed to get MAC in dl_bind/check_ctrl(): %s.\n" 6706msgid "Error: DLPI stream API failed to get MAC in dl_bind/check_ctrl(): %s.\n"
6258msgstr "" 6707msgstr ""
6259"Erreur: Impossible d'obtenir la MAC par l'API DLPI dans dl_bind/check_ctrl" 6708"Erreur: Impossible d'obtenir la MAC par l'API DLPI dans dl_bind/"
6260"(): %s.\n" 6709"check_ctrl(): %s.\n"
6261 6710
6262#: plugins-root/check_dhcp.c:1374 6711#: plugins-root/check_dhcp.c:1342
6263#, c-format 6712#, c-format
6264msgid "Hardware address: " 6713msgid "Hardware address: "
6265msgstr "Adresse matérielle: " 6714msgstr "Adresse matérielle: "
6266 6715
6267#: plugins-root/check_dhcp.c:1390 6716#: plugins-root/check_dhcp.c:1358
6268msgid "This plugin tests the availability of DHCP servers on a network." 6717msgid "This plugin tests the availability of DHCP servers on a network."
6269msgstr "Ce plugin teste la disponibilité de serveurs DHCP dans un réseau." 6718msgstr "Ce plugin teste la disponibilité de serveurs DHCP dans un réseau."
6270 6719
6271#: plugins-root/check_dhcp.c:1402 6720#: plugins-root/check_dhcp.c:1370
6272msgid "IP address of DHCP server that we must hear from" 6721msgid "IP address of DHCP server that we must hear from"
6273msgstr "" 6722msgstr ""
6274 6723
6275#: plugins-root/check_dhcp.c:1404 6724#: plugins-root/check_dhcp.c:1372
6276msgid "IP address that should be offered by at least one DHCP server" 6725msgid "IP address that should be offered by at least one DHCP server"
6277msgstr "" 6726msgstr ""
6278 6727
6279#: plugins-root/check_dhcp.c:1406 6728#: plugins-root/check_dhcp.c:1374
6280msgid "Seconds to wait for DHCPOFFER before timeout occurs" 6729msgid "Seconds to wait for DHCPOFFER before timeout occurs"
6281msgstr "" 6730msgstr ""
6282 6731
6283#: plugins-root/check_dhcp.c:1408 6732#: plugins-root/check_dhcp.c:1376
6284msgid "Interface to to use for listening (i.e. eth0)" 6733msgid "Interface to to use for listening (i.e. eth0)"
6285msgstr "" 6734msgstr ""
6286 6735
6287#: plugins-root/check_dhcp.c:1410 6736#: plugins-root/check_dhcp.c:1378
6288msgid "MAC address to use in the DHCP request" 6737msgid "MAC address to use in the DHCP request"
6289msgstr "" 6738msgstr ""
6290 6739
6291#: plugins-root/check_dhcp.c:1412 6740#: plugins-root/check_dhcp.c:1380
6292msgid "Unicast testing: mimic a DHCP relay, requires -s" 6741msgid "Unicast testing: mimic a DHCP relay, requires -s"
6293msgstr "" 6742msgstr ""
6294 6743
6295#: plugins-root/check_icmp.c:1295 6744#: plugins-root/check_icmp.c:1567
6296msgid "specify a target" 6745msgid "specify a target"
6297msgstr "" 6746msgstr ""
6298 6747
6299#: plugins-root/check_icmp.c:1297 6748#: plugins-root/check_icmp.c:1569
6749msgid "Use IPv4 (default) or IPv6 to communicate with the targets"
6750msgstr ""
6751
6752#: plugins-root/check_icmp.c:1571
6300msgid "warning threshold (currently " 6753msgid "warning threshold (currently "
6301msgstr "Valeurs pour le seuil d'avertissement (actuellement " 6754msgstr "Valeurs pour le seuil d'avertissement (actuellement "
6302 6755
6303#: plugins-root/check_icmp.c:1300 6756#: plugins-root/check_icmp.c:1574
6304msgid "critical threshold (currently " 6757msgid "critical threshold (currently "
6305msgstr "Valeurs pour le seuil critique (actuellement " 6758msgstr "Valeurs pour le seuil critique (actuellement "
6306 6759
6307#: plugins-root/check_icmp.c:1303 6760#: plugins-root/check_icmp.c:1577
6308msgid "specify a source IP address or device name" 6761msgid "specify a source IP address or device name"
6309msgstr "spécifiez une adresse ou un nom d'hôte" 6762msgstr "spécifiez une adresse ou un nom d'hôte"
6310 6763
6311#: plugins-root/check_icmp.c:1305 6764#: plugins-root/check_icmp.c:1579
6312msgid "number of packets to send (currently " 6765msgid "number of packets to send (currently "
6313msgstr "nombre de paquets à envoyer (actuellement " 6766msgstr "nombre de paquets à envoyer (actuellement "
6314 6767
6315#: plugins-root/check_icmp.c:1308 6768#: plugins-root/check_icmp.c:1582
6316msgid "max packet interval (currently " 6769msgid "max packet interval (currently "
6317msgstr "" 6770msgstr ""
6318 6771
6319#: plugins-root/check_icmp.c:1311 6772#: plugins-root/check_icmp.c:1585
6320msgid "max target interval (currently " 6773msgid "max target interval (currently "
6321msgstr "" 6774msgstr ""
6322 6775
6323#: plugins-root/check_icmp.c:1314 6776#: plugins-root/check_icmp.c:1588
6324msgid "number of alive hosts required for success" 6777msgid "number of alive hosts required for success"
6325msgstr "nombre d'hôtes vivants requis pour réussite" 6778msgstr "nombre d'hôtes vivants requis pour réussite"
6326 6779
6327#: plugins-root/check_icmp.c:1317 6780#: plugins-root/check_icmp.c:1591
6328msgid "TTL on outgoing packets (currently " 6781msgid "TTL on outgoing packets (currently "
6329msgstr "" 6782msgstr ""
6330 6783
6331#: plugins-root/check_icmp.c:1320 6784#: plugins-root/check_icmp.c:1594
6332msgid "timeout value (seconds, currently " 6785msgid "timeout value (seconds, currently "
6333msgstr "" 6786msgstr ""
6334 6787
6335#: plugins-root/check_icmp.c:1323 6788#: plugins-root/check_icmp.c:1597
6336msgid "Number of icmp data bytes to send" 6789msgid "Number of icmp data bytes to send"
6337msgstr "Nombre de paquets ICMP à envoyer" 6790msgstr "Nombre de paquets ICMP à envoyer"
6338 6791
6339#: plugins-root/check_icmp.c:1324 6792#: plugins-root/check_icmp.c:1598
6340msgid "Packet size will be data bytes + icmp header (currently" 6793msgid "Packet size will be data bytes + icmp header (currently"
6341msgstr "" 6794msgstr ""
6342 6795
6343#: plugins-root/check_icmp.c:1326 6796#: plugins-root/check_icmp.c:1600
6344msgid "verbose" 6797msgid "verbose"
6345msgstr "" 6798msgstr ""
6346 6799
6347#: plugins-root/check_icmp.c:1330 6800#: plugins-root/check_icmp.c:1604
6348msgid "The -H switch is optional. Naming a host (or several) to check is not." 6801msgid "The -H switch is optional. Naming a host (or several) to check is not."
6349msgstr "" 6802msgstr ""
6350 6803
6351#: plugins-root/check_icmp.c:1332 6804#: plugins-root/check_icmp.c:1606
6352msgid "" 6805msgid ""
6353"Threshold format for -w and -c is 200.25,60% for 200.25 msec RTA and 60%" 6806"Threshold format for -w and -c is 200.25,60% for 200.25 msec RTA and 60%"
6354msgstr "" 6807msgstr ""
6355 6808
6356#: plugins-root/check_icmp.c:1333 6809#: plugins-root/check_icmp.c:1607
6357msgid "packet loss. The default values should work well for most users." 6810msgid "packet loss. The default values should work well for most users."
6358msgstr "" 6811msgstr ""
6359 6812
6360#: plugins-root/check_icmp.c:1334 6813#: plugins-root/check_icmp.c:1608
6361msgid "" 6814msgid ""
6362"You can specify different RTA factors using the standardized abbreviations" 6815"You can specify different RTA factors using the standardized abbreviations"
6363msgstr "" 6816msgstr ""
6364 6817
6365#: plugins-root/check_icmp.c:1335 6818#: plugins-root/check_icmp.c:1609
6366msgid "" 6819msgid ""
6367"us (microseconds), ms (milliseconds, default) or just plain s for seconds." 6820"us (microseconds), ms (milliseconds, default) or just plain s for seconds."
6368msgstr "" 6821msgstr ""
6369 6822
6370#: plugins-root/check_icmp.c:1341 6823#: plugins-root/check_icmp.c:1615
6371msgid "The -v switch can be specified several times for increased verbosity." 6824msgid "The -v switch can be specified several times for increased verbosity."
6372msgstr "" 6825msgstr ""
6373 6826
6374#~ msgid "Critical threshold must be integer" 6827#~ msgid "Path or partition (may be repeated)"
6375#~ msgstr "le seuil critique doit être un entier positif" 6828#~ msgstr "Répertoire ou partition (peut être utilisé plusieurs fois)"
6829
6830#~ msgid ""
6831#~ "value match). If multiple addresses are returned at once, you have to "
6832#~ "match"
6833#~ msgstr ""
6834#~ "valeur correspond). Si plusieurs adresses sont retournées en même temps,"
6835
6836#~ msgid ""
6837#~ "the whole string of addresses separated with commas (sorted "
6838#~ "alphabetically)."
6839#~ msgstr ""
6840#~ "vous devrez toutes les inscrire séparées pas des virgules (en ordre "
6841#~ "alphabétique)"
6842
6843#~ msgid "No specific parameters. No warning or critical threshold"
6844#~ msgstr "Pas d'argument spécifique. Pas de seuil d'avertissement ou critique"
6376 6845
6377#~ msgid "Warning threshold must be integer" 6846#~ msgid "Can't find local IP for NAS-IP-Address"
6378#~ msgstr "Le seuil d'avertissement doit être un entier positif" 6847#~ msgstr "Impossible de trouver une addresse IP locale pour le NAS-IP-Address"
6848
6849#~ msgid "Warning free space should be more than critical free space"
6850#~ msgstr ""
6851#~ "Le seuil d'avertissement pour la place libre doit être plus grand que le "
6852#~ "seuil critique"
6853
6854#, c-format
6855#~ msgid "%s - Plugin timed out after %d seconds\n"
6856#~ msgstr "%s - Le plugin n'as pas répondu dans les %d secondes\n"
6379 6857
6380#~ msgid "Critical Process Count must be an integer!" 6858#~ msgid "Critical Process Count must be an integer!"
6381#~ msgstr "Critique Le total des processus doit être un nombre entier!" 6859#~ msgstr "Critique Le total des processus doit être un nombre entier!"
diff --git a/po/monitoring-plugins.pot b/po/monitoring-plugins.pot
index 1535db8..471aae8 100644
--- a/po/monitoring-plugins.pot
+++ b/po/monitoring-plugins.pot
@@ -8,7 +8,7 @@ msgid ""
8msgstr "" 8msgstr ""
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: 2014-01-19 16:30-0500\n" 11"POT-Creation-Date: 2023-06-12 20:31+0200\n"
12"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" 13"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14"Language-Team: LANGUAGE <LL@li.org>\n" 14"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18,785 +18,839 @@ msgstr ""
18"Content-Transfer-Encoding: 8bit\n" 18"Content-Transfer-Encoding: 8bit\n"
19"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" 19"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
20 20
21#: plugins/check_by_ssh.c:86 plugins/check_cluster.c:76 plugins/check_dig.c:88 21#: plugins/check_by_ssh.c:88 plugins/check_cluster.c:76 plugins/check_dig.c:91
22#: plugins/check_disk.c:194 plugins/check_dns.c:102 plugins/check_dummy.c:52 22#: plugins/check_disk.c:206 plugins/check_dns.c:106 plugins/check_dummy.c:52
23#: plugins/check_fping.c:93 plugins/check_game.c:82 plugins/check_hpjd.c:103 23#: plugins/check_fping.c:95 plugins/check_game.c:82 plugins/check_hpjd.c:105
24#: plugins/check_http.c:167 plugins/check_ldap.c:109 plugins/check_load.c:122 24#: plugins/check_http.c:174 plugins/check_ldap.c:118 plugins/check_load.c:128
25#: plugins/check_mrtgtraf.c:83 plugins/check_mysql.c:122 25#: plugins/check_mrtgtraf.c:83 plugins/check_mysql.c:124
26#: plugins/check_nagios.c:91 plugins/check_nt.c:127 plugins/check_ntp.c:770 26#: plugins/check_nagios.c:91 plugins/check_nt.c:127 plugins/check_ntp.c:780
27#: plugins/check_ntp_peer.c:575 plugins/check_ntp_time.c:552 27#: plugins/check_ntp_peer.c:575 plugins/check_ntp_time.c:557
28#: plugins/check_nwstat.c:173 plugins/check_overcr.c:102 28#: plugins/check_nwstat.c:173 plugins/check_overcr.c:102
29#: plugins/check_pgsql.c:172 plugins/check_ping.c:95 plugins/check_procs.c:172 29#: plugins/check_pgsql.c:174 plugins/check_ping.c:97 plugins/check_procs.c:176
30#: plugins/check_radius.c:160 plugins/check_real.c:80 plugins/check_smtp.c:144 30#: plugins/check_radius.c:176 plugins/check_real.c:80 plugins/check_smtp.c:146
31#: plugins/check_snmp.c:240 plugins/check_ssh.c:73 plugins/check_swap.c:110 31#: plugins/check_snmp.c:248 plugins/check_ssh.c:74 plugins/check_swap.c:115
32#: plugins/check_tcp.c:218 plugins/check_time.c:78 plugins/check_ups.c:122 32#: plugins/check_tcp.c:222 plugins/check_time.c:78 plugins/check_ups.c:122
33#: plugins/check_users.c:77 plugins/negate.c:214 plugins-root/check_dhcp.c:270 33#: plugins/check_users.c:84 plugins/negate.c:210 plugins-root/check_dhcp.c:270
34msgid "Could not parse arguments" 34msgid "Could not parse arguments"
35msgstr "" 35msgstr ""
36 36
37#: plugins/check_by_ssh.c:90 plugins/check_dig.c:82 plugins/check_dns.c:95 37#: plugins/check_by_ssh.c:92 plugins/check_dig.c:85 plugins/check_dns.c:99
38#: plugins/check_nagios.c:95 plugins/check_pgsql.c:178 plugins/check_ping.c:99 38#: plugins/check_nagios.c:95 plugins/check_pgsql.c:180 plugins/check_ping.c:101
39#: plugins/check_procs.c:188 plugins/check_snmp.c:336 plugins/negate.c:79 39#: plugins/check_procs.c:192 plugins/check_snmp.c:348 plugins/negate.c:78
40msgid "Cannot catch SIGALRM" 40msgid "Cannot catch SIGALRM"
41msgstr "" 41msgstr ""
42 42
43#: plugins/check_by_ssh.c:110 43#: plugins/check_by_ssh.c:107
44#, c-format
45msgid "SSH connection failed: %s\n"
46msgstr ""
47
48#: plugins/check_by_ssh.c:126
44#, c-format 49#, c-format
45msgid "Remote command execution failed: %s\n" 50msgid "Remote command execution failed: %s\n"
46msgstr "" 51msgstr ""
47 52
48#: plugins/check_by_ssh.c:122 53#: plugins/check_by_ssh.c:141
49#, c-format 54#, c-format
50msgid "%s - check_by_ssh: Remote command '%s' returned status %d\n" 55msgid "%s - check_by_ssh: Remote command '%s' returned status %d\n"
51msgstr "" 56msgstr ""
52 57
53#: plugins/check_by_ssh.c:134 58#: plugins/check_by_ssh.c:153
54#, c-format 59#, c-format
55msgid "SSH WARNING: could not open %s\n" 60msgid "SSH WARNING: could not open %s\n"
56msgstr "" 61msgstr ""
57 62
58#: plugins/check_by_ssh.c:143 63#: plugins/check_by_ssh.c:162
59#, c-format 64#, c-format
60msgid "%s: Error parsing output\n" 65msgid "%s: Error parsing output\n"
61msgstr "" 66msgstr ""
62 67
63#: plugins/check_by_ssh.c:220 plugins/check_disk.c:476 68#: plugins/check_by_ssh.c:242 plugins/check_disk.c:568 plugins/check_http.c:292
64#: plugins/check_http.c:278 plugins/check_ldap.c:293 plugins/check_pgsql.c:311 69#: plugins/check_ldap.c:334 plugins/check_pgsql.c:314 plugins/check_procs.c:461
65#: plugins/check_procs.c:437 plugins/check_radius.c:308 70#: plugins/check_radius.c:323 plugins/check_real.c:357 plugins/check_smtp.c:607
66#: plugins/check_real.c:356 plugins/check_smtp.c:581 plugins/check_snmp.c:736 71#: plugins/check_snmp.c:789 plugins/check_ssh.c:140 plugins/check_tcp.c:519
67#: plugins/check_ssh.c:138 plugins/check_tcp.c:505 plugins/check_time.c:302 72#: plugins/check_time.c:302 plugins/check_ups.c:559 plugins/negate.c:160
68#: plugins/check_ups.c:556 plugins/negate.c:164
69msgid "Timeout interval must be a positive integer" 73msgid "Timeout interval must be a positive integer"
70msgstr "" 74msgstr ""
71 75
72#: plugins/check_by_ssh.c:230 plugins/check_pgsql.c:341 76#: plugins/check_by_ssh.c:254 plugins/check_pgsql.c:344
73#: plugins/check_radius.c:272 plugins/check_real.c:327 77#: plugins/check_radius.c:287 plugins/check_real.c:328 plugins/check_smtp.c:532
74#: plugins/check_smtp.c:506 plugins/check_tcp.c:511 plugins/check_time.c:296 78#: plugins/check_tcp.c:525 plugins/check_time.c:296 plugins/check_ups.c:521
75#: plugins/check_ups.c:518
76msgid "Port must be a positive integer" 79msgid "Port must be a positive integer"
77msgstr "" 80msgstr ""
78 81
79#: plugins/check_by_ssh.c:291 82#: plugins/check_by_ssh.c:315
80msgid "skip-stdout argument must be an integer" 83msgid "skip-stdout argument must be an integer"
81msgstr "" 84msgstr ""
82 85
83#: plugins/check_by_ssh.c:299 86#: plugins/check_by_ssh.c:323
84msgid "skip-stderr argument must be an integer" 87msgid "skip-stderr argument must be an integer"
85msgstr "" 88msgstr ""
86 89
87#: plugins/check_by_ssh.c:322 90#: plugins/check_by_ssh.c:349
88#, c-format 91#, c-format
89msgid "%s: You must provide a host name\n" 92msgid "%s: You must provide a host name\n"
90msgstr "" 93msgstr ""
91 94
92#: plugins/check_by_ssh.c:340 95#: plugins/check_by_ssh.c:366
93msgid "No remotecmd" 96msgid "No remotecmd"
94msgstr "" 97msgstr ""
95 98
96#: plugins/check_by_ssh.c:354 99#: plugins/check_by_ssh.c:380
97#, c-format 100#, c-format
98msgid "%s: Argument limit of %d exceeded\n" 101msgid "%s: Argument limit of %d exceeded\n"
99msgstr "" 102msgstr ""
100 103
101#: plugins/check_by_ssh.c:357 104#: plugins/check_by_ssh.c:383
102msgid "Can not (re)allocate 'commargv' buffer\n" 105msgid "Can not (re)allocate 'commargv' buffer\n"
103msgstr "" 106msgstr ""
104 107
105#: plugins/check_by_ssh.c:371 108#: plugins/check_by_ssh.c:397
106#, c-format 109#, c-format
107msgid "" 110msgid ""
108"%s: In passive mode, you must provide a service name for each command.\n" 111"%s: In passive mode, you must provide a service name for each command.\n"
109msgstr "" 112msgstr ""
110 113
111#: plugins/check_by_ssh.c:374 114#: plugins/check_by_ssh.c:400
112#, c-format 115#, c-format
113msgid "" 116msgid ""
114"%s: In passive mode, you must provide the host short name from the " 117"%s: In passive mode, you must provide the host short name from the "
115"monitoring configs.\n" 118"monitoring configs.\n"
116msgstr "" 119msgstr ""
117 120
118#: plugins/check_by_ssh.c:388 121#: plugins/check_by_ssh.c:414
119#, c-format 122#, c-format
120msgid "This plugin uses SSH to execute commands on a remote host" 123msgid "This plugin uses SSH to execute commands on a remote host"
121msgstr "" 124msgstr ""
122 125
123#: plugins/check_by_ssh.c:403 126#: plugins/check_by_ssh.c:429
124msgid "tell ssh to use Protocol 1 [optional]" 127msgid "tell ssh to use Protocol 1 [optional]"
125msgstr "" 128msgstr ""
126 129
127#: plugins/check_by_ssh.c:405 130#: plugins/check_by_ssh.c:431
128msgid "tell ssh to use Protocol 2 [optional]" 131msgid "tell ssh to use Protocol 2 [optional]"
129msgstr "" 132msgstr ""
130 133
131#: plugins/check_by_ssh.c:407 134#: plugins/check_by_ssh.c:433
132msgid "Ignore all or (if specified) first n lines on STDOUT [optional]" 135msgid "Ignore all or (if specified) first n lines on STDOUT [optional]"
133msgstr "" 136msgstr ""
134 137
135#: plugins/check_by_ssh.c:409 138#: plugins/check_by_ssh.c:435
136msgid "Ignore all or (if specified) first n lines on STDERR [optional]" 139msgid "Ignore all or (if specified) first n lines on STDERR [optional]"
137msgstr "" 140msgstr ""
138 141
139#: plugins/check_by_ssh.c:411 142#: plugins/check_by_ssh.c:437
143msgid "Exit with an warning, if there is an output on STDERR"
144msgstr ""
145
146#: plugins/check_by_ssh.c:439
140msgid "" 147msgid ""
141"tells ssh to fork rather than create a tty [optional]. This will always " 148"tells ssh to fork rather than create a tty [optional]. This will always "
142"return OK if ssh is executed" 149"return OK if ssh is executed"
143msgstr "" 150msgstr ""
144 151
145#: plugins/check_by_ssh.c:413 152#: plugins/check_by_ssh.c:441
146msgid "command to execute on the remote machine" 153msgid "command to execute on the remote machine"
147msgstr "" 154msgstr ""
148 155
149#: plugins/check_by_ssh.c:415 156#: plugins/check_by_ssh.c:443
150msgid "SSH user name on remote host [optional]" 157msgid "SSH user name on remote host [optional]"
151msgstr "" 158msgstr ""
152 159
153#: plugins/check_by_ssh.c:417 160#: plugins/check_by_ssh.c:445
154msgid "identity of an authorized key [optional]" 161msgid "identity of an authorized key [optional]"
155msgstr "" 162msgstr ""
156 163
157#: plugins/check_by_ssh.c:419 164#: plugins/check_by_ssh.c:447
158msgid "external command file for monitoring [optional]" 165msgid "external command file for monitoring [optional]"
159msgstr "" 166msgstr ""
160 167
161#: plugins/check_by_ssh.c:421 168#: plugins/check_by_ssh.c:449
162msgid "list of monitoring service names, separated by ':' [optional]" 169msgid "list of monitoring service names, separated by ':' [optional]"
163msgstr "" 170msgstr ""
164 171
165#: plugins/check_by_ssh.c:423 172#: plugins/check_by_ssh.c:451
166msgid "short name of host in the monitoring configuration [optional]" 173msgid "short name of host in the monitoring configuration [optional]"
167msgstr "" 174msgstr ""
168 175
169#: plugins/check_by_ssh.c:425 176#: plugins/check_by_ssh.c:453
170msgid "Call ssh with '-o OPTION' (may be used multiple times) [optional]" 177msgid "Call ssh with '-o OPTION' (may be used multiple times) [optional]"
171msgstr "" 178msgstr ""
172 179
173#: plugins/check_by_ssh.c:427 180#: plugins/check_by_ssh.c:455
174msgid "Tell ssh to use this configfile [optional]" 181msgid "Tell ssh to use this configfile [optional]"
175msgstr "" 182msgstr ""
176 183
177#: plugins/check_by_ssh.c:429 184#: plugins/check_by_ssh.c:457
178msgid "Tell ssh to suppress warning and diagnostic messages [optional]" 185msgid "Tell ssh to suppress warning and diagnostic messages [optional]"
179msgstr "" 186msgstr ""
180 187
181#: plugins/check_by_ssh.c:434 188#: plugins/check_by_ssh.c:461
189msgid "Make connection problems return UNKNOWN instead of CRITICAL"
190msgstr ""
191
192#: plugins/check_by_ssh.c:464
182msgid "The most common mode of use is to refer to a local identity file with" 193msgid "The most common mode of use is to refer to a local identity file with"
183msgstr "" 194msgstr ""
184 195
185#: plugins/check_by_ssh.c:435 196#: plugins/check_by_ssh.c:465
186msgid "the '-i' option. In this mode, the identity pair should have a null" 197msgid "the '-i' option. In this mode, the identity pair should have a null"
187msgstr "" 198msgstr ""
188 199
189#: plugins/check_by_ssh.c:436 200#: plugins/check_by_ssh.c:466
190msgid "passphrase and the public key should be listed in the authorized_keys" 201msgid "passphrase and the public key should be listed in the authorized_keys"
191msgstr "" 202msgstr ""
192 203
193#: plugins/check_by_ssh.c:437 204#: plugins/check_by_ssh.c:467
194msgid "file of the remote host. Usually the key will be restricted to running" 205msgid "file of the remote host. Usually the key will be restricted to running"
195msgstr "" 206msgstr ""
196 207
197#: plugins/check_by_ssh.c:438 208#: plugins/check_by_ssh.c:468
198msgid "only one command on the remote server. If the remote SSH server tracks" 209msgid "only one command on the remote server. If the remote SSH server tracks"
199msgstr "" 210msgstr ""
200 211
201#: plugins/check_by_ssh.c:439 212#: plugins/check_by_ssh.c:469
202msgid "invocation arguments, the one remote program may be an agent that can" 213msgid "invocation arguments, the one remote program may be an agent that can"
203msgstr "" 214msgstr ""
204 215
205#: plugins/check_by_ssh.c:440 216#: plugins/check_by_ssh.c:470
206msgid "execute additional commands as proxy" 217msgid "execute additional commands as proxy"
207msgstr "" 218msgstr ""
208 219
209#: plugins/check_by_ssh.c:442 220#: plugins/check_by_ssh.c:472
210msgid "To use passive mode, provide multiple '-C' options, and provide" 221msgid "To use passive mode, provide multiple '-C' options, and provide"
211msgstr "" 222msgstr ""
212 223
213#: plugins/check_by_ssh.c:443 224#: plugins/check_by_ssh.c:473
214msgid "" 225msgid ""
215"all of -O, -s, and -n options (servicelist order must match '-C'options)" 226"all of -O, -s, and -n options (servicelist order must match '-C'options)"
216msgstr "" 227msgstr ""
217 228
218#: plugins/check_by_ssh.c:445 plugins/check_cluster.c:261 229#: plugins/check_by_ssh.c:475 plugins/check_cluster.c:271
219#: plugins/check_dig.c:355 plugins/check_disk.c:924 plugins/check_http.c:1560 230#: plugins/check_dig.c:364 plugins/check_disk.c:1000 plugins/check_http.c:1845
220#: plugins/check_nagios.c:312 plugins/check_ntp.c:869 231#: plugins/check_nagios.c:312 plugins/check_ntp.c:879
221#: plugins/check_ntp_peer.c:705 plugins/check_ntp_time.c:633 232#: plugins/check_ntp_peer.c:733 plugins/check_ntp_time.c:642
222#: plugins/check_procs.c:763 plugins/negate.c:271 plugins/urlize.c:180 233#: plugins/check_procs.c:806 plugins/negate.c:249 plugins/urlize.c:179
223msgid "Examples:" 234msgid "Examples:"
224msgstr "" 235msgstr ""
225 236
226#: plugins/check_by_ssh.c:460 plugins/check_cluster.c:274 237#: plugins/check_by_ssh.c:490 plugins/check_cluster.c:284
227#: plugins/check_dig.c:367 plugins/check_disk.c:941 plugins/check_dns.c:486 238#: plugins/check_dig.c:376 plugins/check_disk.c:1017 plugins/check_dns.c:617
228#: plugins/check_dummy.c:122 plugins/check_fping.c:505 239#: plugins/check_dummy.c:122 plugins/check_fping.c:524 plugins/check_game.c:331
229#: plugins/check_game.c:331 plugins/check_hpjd.c:414 plugins/check_http.c:1590 240#: plugins/check_hpjd.c:439 plugins/check_http.c:1883 plugins/check_ldap.c:511
230#: plugins/check_ldap.c:451 plugins/check_load.c:334 plugins/check_mrtg.c:382 241#: plugins/check_load.c:372 plugins/check_mrtg.c:382 plugins/check_mysql.c:587
231#: plugins/check_mysql.c:569 plugins/check_nagios.c:323 plugins/check_nt.c:774 242#: plugins/check_nagios.c:323 plugins/check_nt.c:797 plugins/check_ntp.c:898
232#: plugins/check_ntp.c:888 plugins/check_ntp_peer.c:725 243#: plugins/check_ntp_peer.c:753 plugins/check_ntp_time.c:651
233#: plugins/check_ntp_time.c:642 plugins/check_nwstat.c:1685 244#: plugins/check_nwstat.c:1685 plugins/check_overcr.c:467
234#: plugins/check_overcr.c:467 plugins/check_pgsql.c:578 245#: plugins/check_pgsql.c:551 plugins/check_ping.c:617 plugins/check_procs.c:829
235#: plugins/check_ping.c:603 plugins/check_procs.c:781 246#: plugins/check_radius.c:400 plugins/check_real.c:452 plugins/check_smtp.c:890
236#: plugins/check_radius.c:385 plugins/check_real.c:451 247#: plugins/check_snmp.c:1346 plugins/check_ssh.c:325 plugins/check_swap.c:607
237#: plugins/check_smtp.c:843 plugins/check_snmp.c:1207 plugins/check_ssh.c:309 248#: plugins/check_tcp.c:710 plugins/check_time.c:371 plugins/check_ups.c:663
238#: plugins/check_swap.c:558 plugins/check_tcp.c:684 plugins/check_time.c:371 249#: plugins/check_users.c:262 plugins/check_ide_smart.c:606 plugins/negate.c:273
239#: plugins/check_ups.c:660 plugins/check_users.c:240 250#: plugins/urlize.c:196 plugins-root/check_dhcp.c:1390
240#: plugins/check_ide_smart.c:640 plugins/negate.c:295 plugins/urlize.c:197 251#: plugins-root/check_icmp.c:1628
241#: plugins-root/check_dhcp.c:1422 plugins-root/check_icmp.c:1354
242msgid "Usage:" 252msgid "Usage:"
243msgstr "" 253msgstr ""
244 254
245#: plugins/check_cluster.c:230 255#: plugins/check_cluster.c:240
246#, c-format 256#, c-format
247msgid "Host/Service Cluster Plugin for Monitoring" 257msgid "Host/Service Cluster Plugin for Monitoring"
248msgstr "" 258msgstr ""
249 259
250#: plugins/check_cluster.c:236 plugins/check_nt.c:676 260#: plugins/check_cluster.c:246 plugins/check_nt.c:697
251msgid "Options:" 261msgid "Options:"
252msgstr "" 262msgstr ""
253 263
254#: plugins/check_cluster.c:239 264#: plugins/check_cluster.c:249
255msgid "Check service cluster status" 265msgid "Check service cluster status"
256msgstr "" 266msgstr ""
257 267
258#: plugins/check_cluster.c:241 268#: plugins/check_cluster.c:251
259msgid "Check host cluster status" 269msgid "Check host cluster status"
260msgstr "" 270msgstr ""
261 271
262#: plugins/check_cluster.c:243 272#: plugins/check_cluster.c:253
263msgid "Optional prepended text output (i.e. \"Host cluster\")" 273msgid "Optional prepended text output (i.e. \"Host cluster\")"
264msgstr "" 274msgstr ""
265 275
266#: plugins/check_cluster.c:245 plugins/check_cluster.c:248 276#: plugins/check_cluster.c:255 plugins/check_cluster.c:258
267msgid "Specifies the range of hosts or services in cluster that must be in a" 277msgid "Specifies the range of hosts or services in cluster that must be in a"
268msgstr "" 278msgstr ""
269 279
270#: plugins/check_cluster.c:246 280#: plugins/check_cluster.c:256
271msgid "non-OK state in order to return a WARNING status level" 281msgid "non-OK state in order to return a WARNING status level"
272msgstr "" 282msgstr ""
273 283
274#: plugins/check_cluster.c:249 284#: plugins/check_cluster.c:259
275msgid "non-OK state in order to return a CRITICAL status level" 285msgid "non-OK state in order to return a CRITICAL status level"
276msgstr "" 286msgstr ""
277 287
278#: plugins/check_cluster.c:251 288#: plugins/check_cluster.c:261
279msgid "The status codes of the hosts or services in the cluster, separated by" 289msgid "The status codes of the hosts or services in the cluster, separated by"
280msgstr "" 290msgstr ""
281 291
282#: plugins/check_cluster.c:252 292#: plugins/check_cluster.c:262
283msgid "commas" 293msgid "commas"
284msgstr "" 294msgstr ""
285 295
286#: plugins/check_cluster.c:257 plugins/check_game.c:318 296#: plugins/check_cluster.c:267 plugins/check_game.c:318
287#: plugins/check_http.c:1542 plugins/check_ldap.c:438 plugins/check_mrtg.c:363 297#: plugins/check_http.c:1827 plugins/check_ldap.c:497 plugins/check_mrtg.c:363
288#: plugins/check_mrtgtraf.c:361 plugins/check_mysql.c:558 298#: plugins/check_mrtgtraf.c:361 plugins/check_mysql.c:576
289#: plugins/check_nt.c:758 plugins/check_ntp.c:865 plugins/check_ntp_peer.c:696 299#: plugins/check_nt.c:781 plugins/check_ntp.c:875 plugins/check_ntp_peer.c:724
290#: plugins/check_ntp_time.c:626 plugins/check_nwstat.c:1670 300#: plugins/check_ntp_time.c:633 plugins/check_nwstat.c:1670
291#: plugins/check_overcr.c:456 plugins/check_snmp.c:1178 301#: plugins/check_overcr.c:456 plugins/check_snmp.c:1317
292#: plugins/check_swap.c:547 plugins/check_ups.c:642 plugins/negate.c:277 302#: plugins/check_swap.c:596 plugins/check_ups.c:645
293#: plugins-root/check_icmp.c:1329 303#: plugins/check_ide_smart.c:580 plugins/negate.c:255
304#: plugins-root/check_icmp.c:1603
294msgid "Notes:" 305msgid "Notes:"
295msgstr "" 306msgstr ""
296 307
297#: plugins/check_cluster.c:263 308#: plugins/check_cluster.c:273
298msgid "" 309msgid ""
299"Will alert critical if there are 3 or more service data points in a non-OK" 310"Will alert critical if there are 3 or more service data points in a non-OK"
300msgstr "" 311msgstr ""
301 312
302#: plugins/check_cluster.c:264 plugins/check_ups.c:639 313#: plugins/check_cluster.c:274 plugins/check_ups.c:642
303msgid "state." 314msgid "state."
304msgstr "" 315msgstr ""
305 316
306#: plugins/check_dig.c:100 plugins/check_dig.c:102 317#: plugins/check_dig.c:106 plugins/check_dig.c:108
307#, c-format 318#, c-format
308msgid "Looking for: '%s'\n" 319msgid "Looking for: '%s'\n"
309msgstr "" 320msgstr ""
310 321
311#: plugins/check_dig.c:109 322#: plugins/check_dig.c:115
312msgid "dig returned an error status" 323msgid "dig returned an error status"
313msgstr "" 324msgstr ""
314 325
315#: plugins/check_dig.c:134 326#: plugins/check_dig.c:140
316msgid "Server not found in ANSWER SECTION" 327msgid "Server not found in ANSWER SECTION"
317msgstr "" 328msgstr ""
318 329
319#: plugins/check_dig.c:144 330#: plugins/check_dig.c:150
320msgid "No ANSWER SECTION found" 331msgid "No ANSWER SECTION found"
321msgstr "" 332msgstr ""
322 333
323#: plugins/check_dig.c:171 334#: plugins/check_dig.c:177
324msgid "Probably a non-existent host/domain" 335msgid "Probably a non-existent host/domain"
325msgstr "" 336msgstr ""
326 337
327#: plugins/check_dig.c:233 338#: plugins/check_dig.c:239
328#, c-format 339#, c-format
329msgid "Port must be a positive integer - %s" 340msgid "Port must be a positive integer - %s"
330msgstr "" 341msgstr ""
331 342
332#: plugins/check_dig.c:244 343#: plugins/check_dig.c:250
333#, c-format 344#, c-format
334msgid "Warning interval must be a positive integer - %s" 345msgid "Warning interval must be a positive integer - %s"
335msgstr "" 346msgstr ""
336 347
337#: plugins/check_dig.c:252 348#: plugins/check_dig.c:258
338#, c-format 349#, c-format
339msgid "Critical interval must be a positive integer - %s" 350msgid "Critical interval must be a positive integer - %s"
340msgstr "" 351msgstr ""
341 352
342#: plugins/check_dig.c:260 353#: plugins/check_dig.c:266
343#, c-format 354#, c-format
344msgid "Timeout interval must be a positive integer - %s" 355msgid "Timeout interval must be a positive integer - %s"
345msgstr "" 356msgstr ""
346 357
347#: plugins/check_dig.c:325 358#: plugins/check_dig.c:334
348#, c-format 359#, c-format
349msgid "This plugin test the DNS service on the specified host using dig" 360msgid "This plugin tests the DNS service on the specified host using dig"
350msgstr "" 361msgstr ""
351 362
352#: plugins/check_dig.c:338 363#: plugins/check_dig.c:347
353msgid "Force dig to only use IPv4 query transport" 364msgid "Force dig to only use IPv4 query transport"
354msgstr "" 365msgstr ""
355 366
356#: plugins/check_dig.c:340 367#: plugins/check_dig.c:349
357msgid "Force dig to only use IPv6 query transport" 368msgid "Force dig to only use IPv6 query transport"
358msgstr "" 369msgstr ""
359 370
360#: plugins/check_dig.c:342 371#: plugins/check_dig.c:351
361msgid "Machine name to lookup" 372msgid "Machine name to lookup"
362msgstr "" 373msgstr ""
363 374
364#: plugins/check_dig.c:344 375#: plugins/check_dig.c:353
365msgid "Record type to lookup (default: A)" 376msgid "Record type to lookup (default: A)"
366msgstr "" 377msgstr ""
367 378
368#: plugins/check_dig.c:346 379#: plugins/check_dig.c:355
369msgid "" 380msgid ""
370"An address expected to be in the answer section. If not set, uses whatever" 381"An address expected to be in the answer section. If not set, uses whatever"
371msgstr "" 382msgstr ""
372 383
373#: plugins/check_dig.c:347 384#: plugins/check_dig.c:356
374msgid "was in -l" 385msgid "was in -l"
375msgstr "" 386msgstr ""
376 387
377#: plugins/check_dig.c:349 388#: plugins/check_dig.c:358
378msgid "Pass STRING as argument(s) to dig" 389msgid "Pass STRING as argument(s) to dig"
379msgstr "" 390msgstr ""
380 391
381#: plugins/check_disk.c:216 392#: plugins/check_disk.c:241
382#, c-format 393#, c-format
383msgid "DISK %s: %s not found\n" 394msgid "DISK %s: %s not found\n"
384msgstr "" 395msgstr ""
385 396
386#: plugins/check_disk.c:216 plugins/check_disk.c:956 plugins/check_dns.c:241 397#: plugins/check_disk.c:241 plugins/check_disk.c:1035 plugins/check_dns.c:295
387#: plugins/check_dummy.c:74 plugins/check_mysql.c:299 398#: plugins/check_dummy.c:74 plugins/check_mysql.c:313
388#: plugins/check_nagios.c:104 plugins/check_nagios.c:168 399#: plugins/check_nagios.c:104 plugins/check_nagios.c:168
389#: plugins/check_nagios.c:172 plugins/check_pgsql.c:601 400#: plugins/check_nagios.c:172 plugins/check_pgsql.c:575
390#: plugins/check_pgsql.c:618 plugins/check_pgsql.c:627 401#: plugins/check_pgsql.c:592 plugins/check_pgsql.c:601
391#: plugins/check_pgsql.c:642 plugins/check_procs.c:351 402#: plugins/check_pgsql.c:616 plugins/check_procs.c:374
392#, c-format 403#, c-format
393msgid "CRITICAL" 404msgid "CRITICAL"
394msgstr "" 405msgstr ""
395 406
396#: plugins/check_disk.c:550 407#: plugins/check_disk.c:645
397#, c-format 408#, c-format
398msgid "unit type %s not known\n" 409msgid "unit type %s not known\n"
399msgstr "" 410msgstr ""
400 411
401#: plugins/check_disk.c:553 412#: plugins/check_disk.c:648
402#, c-format 413#, c-format
403msgid "failed allocating storage for '%s'\n" 414msgid "failed allocating storage for '%s'\n"
404msgstr "" 415msgstr ""
405 416
406#: plugins/check_disk.c:577 plugins/check_disk.c:618 plugins/check_disk.c:626 417#: plugins/check_disk.c:676 plugins/check_disk.c:724 plugins/check_disk.c:732
407#: plugins/check_disk.c:633 plugins/check_disk.c:637 plugins/check_disk.c:677 418#: plugins/check_disk.c:740 plugins/check_disk.c:744 plugins/check_disk.c:789
408#: plugins/check_disk.c:683 plugins/check_disk.c:702 plugins/check_dummy.c:77 419#: plugins/check_disk.c:795 plugins/check_disk.c:818 plugins/check_dummy.c:77
409#: plugins/check_dummy.c:80 plugins/check_pgsql.c:643 420#: plugins/check_dummy.c:80 plugins/check_pgsql.c:617 plugins/check_procs.c:547
410#: plugins/check_procs.c:506
411#, c-format 421#, c-format
412msgid "UNKNOWN" 422msgid "UNKNOWN"
413msgstr "" 423msgstr ""
414 424
415#: plugins/check_disk.c:577 425#: plugins/check_disk.c:676
416msgid "Must set a threshold value before using -p\n" 426msgid "Must set a threshold value before using -p\n"
417msgstr "" 427msgstr ""
418 428
419#: plugins/check_disk.c:618 429#: plugins/check_disk.c:724
420msgid "Must set -E before selecting paths\n" 430msgid "Must set -E before selecting paths\n"
421msgstr "" 431msgstr ""
422 432
423#: plugins/check_disk.c:626 433#: plugins/check_disk.c:732
424msgid "Must set group value before selecting paths\n" 434msgid "Must set group value before selecting paths\n"
425msgstr "" 435msgstr ""
426 436
427#: plugins/check_disk.c:633 437#: plugins/check_disk.c:740
428msgid "" 438msgid ""
429"Paths need to be selected before using -i/-I. Use -A to select all paths " 439"Paths need to be selected before using -i/-I. Use -A to select all paths "
430"explicitly" 440"explicitly"
431msgstr "" 441msgstr ""
432 442
433#: plugins/check_disk.c:637 plugins/check_disk.c:683 plugins/check_procs.c:506 443#: plugins/check_disk.c:744 plugins/check_disk.c:795 plugins/check_procs.c:547
434msgid "Could not compile regular expression" 444msgid "Could not compile regular expression"
435msgstr "" 445msgstr ""
436 446
437#: plugins/check_disk.c:677 447#: plugins/check_disk.c:789
438msgid "Must set a threshold value before using -r/-R\n" 448msgid "Must set a threshold value before using -r/-R\n"
439msgstr "" 449msgstr ""
440 450
441#: plugins/check_disk.c:703 451#: plugins/check_disk.c:819
442msgid "Regular expression did not match any path or disk" 452msgid "Regular expression did not match any path or disk"
443msgstr "" 453msgstr ""
444 454
445#: plugins/check_disk.c:749 455#: plugins/check_disk.c:865
446msgid "Unknown argument" 456msgid "Unknown argument"
447msgstr "" 457msgstr ""
448 458
449#: plugins/check_disk.c:783 459#: plugins/check_disk.c:899
450#, c-format 460#, c-format
451msgid " for %s\n" 461msgid " for %s\n"
452msgstr "" 462msgstr ""
453 463
454#: plugins/check_disk.c:857 464#: plugins/check_disk.c:928
455msgid "" 465msgid ""
456"This plugin checks the amount of used disk space on a mounted file system" 466"This plugin checks the amount of used disk space on a mounted file system"
457msgstr "" 467msgstr ""
458 468
459#: plugins/check_disk.c:858 469#: plugins/check_disk.c:929
460msgid "" 470msgid ""
461"and generates an alert if free space is less than one of the threshold values" 471"and generates an alert if free space is less than one of the threshold values"
462msgstr "" 472msgstr ""
463 473
464#: plugins/check_disk.c:868 474#: plugins/check_disk.c:939
465msgid "Exit with WARNING status if less than INTEGER units of disk are free" 475msgid "Exit with WARNING status if less than INTEGER units of disk are free"
466msgstr "" 476msgstr ""
467 477
468#: plugins/check_disk.c:870 478#: plugins/check_disk.c:941
469msgid "Exit with WARNING status if less than PERCENT of disk space is free" 479msgid "Exit with WARNING status if less than PERCENT of disk space is free"
470msgstr "" 480msgstr ""
471 481
472#: plugins/check_disk.c:872 482#: plugins/check_disk.c:943
473msgid "Exit with CRITICAL status if less than INTEGER units of disk are free" 483msgid "Exit with CRITICAL status if less than INTEGER units of disk are free"
474msgstr "" 484msgstr ""
475 485
476#: plugins/check_disk.c:874 486#: plugins/check_disk.c:945
477msgid "Exit with CRITICAL status if less than PERCENT of disk space is free" 487msgid "Exit with CRITICAL status if less than PERCENT of disk space is free"
478msgstr "" 488msgstr ""
479 489
480#: plugins/check_disk.c:876 490#: plugins/check_disk.c:947
481msgid "Exit with WARNING status if less than PERCENT of inode space is free" 491msgid "Exit with WARNING status if less than PERCENT of inode space is free"
482msgstr "" 492msgstr ""
483 493
484#: plugins/check_disk.c:878 494#: plugins/check_disk.c:949
485msgid "Exit with CRITICAL status if less than PERCENT of inode space is free" 495msgid "Exit with CRITICAL status if less than PERCENT of inode space is free"
486msgstr "" 496msgstr ""
487 497
488#: plugins/check_disk.c:880 498#: plugins/check_disk.c:951
489msgid "Path or partition (may be repeated)" 499msgid ""
500"Mount point or block device as emitted by the mount(8) command (may be "
501"repeated)"
490msgstr "" 502msgstr ""
491 503
492#: plugins/check_disk.c:882 504#: plugins/check_disk.c:953
493msgid "Ignore device (only works if -p unspecified)" 505msgid "Ignore device (only works if -p unspecified)"
494msgstr "" 506msgstr ""
495 507
496#: plugins/check_disk.c:884 508#: plugins/check_disk.c:955
497msgid "Clear thresholds" 509msgid "Clear thresholds"
498msgstr "" 510msgstr ""
499 511
500#: plugins/check_disk.c:886 512#: plugins/check_disk.c:957
501msgid "For paths or partitions specified with -p, only check for exact paths" 513msgid "For paths or partitions specified with -p, only check for exact paths"
502msgstr "" 514msgstr ""
503 515
504#: plugins/check_disk.c:888 516#: plugins/check_disk.c:959
505msgid "Display only devices/mountpoints with errors" 517msgid "Display only devices/mountpoints with errors"
506msgstr "" 518msgstr ""
507 519
508#: plugins/check_disk.c:890 520#: plugins/check_disk.c:961
509msgid "Don't account root-reserved blocks into freespace in perfdata" 521msgid "Don't account root-reserved blocks into freespace in perfdata"
510msgstr "" 522msgstr ""
511 523
512#: plugins/check_disk.c:892 524#: plugins/check_disk.c:963
525msgid "Display inode usage in perfdata"
526msgstr ""
527
528#: plugins/check_disk.c:965
513msgid "" 529msgid ""
514"Group paths. Thresholds apply to (free-)space of all partitions together" 530"Group paths. Thresholds apply to (free-)space of all partitions together"
515msgstr "" 531msgstr ""
516 532
517#: plugins/check_disk.c:894 533#: plugins/check_disk.c:967
518msgid "Same as '--units kB'" 534msgid "Same as '--units kB'"
519msgstr "" 535msgstr ""
520 536
521#: plugins/check_disk.c:896 537#: plugins/check_disk.c:969
522msgid "Only check local filesystems" 538msgid "Only check local filesystems"
523msgstr "" 539msgstr ""
524 540
525#: plugins/check_disk.c:898 541#: plugins/check_disk.c:971
526msgid "" 542msgid ""
527"Only check local filesystems against thresholds. Yet call stat on remote " 543"Only check local filesystems against thresholds. Yet call stat on remote "
528"filesystems" 544"filesystems"
529msgstr "" 545msgstr ""
530 546
531#: plugins/check_disk.c:899 547#: plugins/check_disk.c:972
532msgid "to test if they are accessible (e.g. to detect Stale NFS Handles)" 548msgid "to test if they are accessible (e.g. to detect Stale NFS Handles)"
533msgstr "" 549msgstr ""
534 550
535#: plugins/check_disk.c:901 551#: plugins/check_disk.c:974
536msgid "Display the mountpoint instead of the partition" 552msgid "Display the (block) device instead of the mount point"
537msgstr "" 553msgstr ""
538 554
539#: plugins/check_disk.c:903 555#: plugins/check_disk.c:976
540msgid "Same as '--units MB'" 556msgid "Same as '--units MB'"
541msgstr "" 557msgstr ""
542 558
543#: plugins/check_disk.c:905 559#: plugins/check_disk.c:978
544msgid "Explicitly select all paths. This is equivalent to -R '.*'" 560msgid "Explicitly select all paths. This is equivalent to -R '.*'"
545msgstr "" 561msgstr ""
546 562
547#: plugins/check_disk.c:907 563#: plugins/check_disk.c:980
548msgid "" 564msgid ""
549"Case insensitive regular expression for path/partition (may be repeated)" 565"Case insensitive regular expression for path/partition (may be repeated)"
550msgstr "" 566msgstr ""
551 567
552#: plugins/check_disk.c:909 568#: plugins/check_disk.c:982
553msgid "Regular expression for path or partition (may be repeated)" 569msgid "Regular expression for path or partition (may be repeated)"
554msgstr "" 570msgstr ""
555 571
556#: plugins/check_disk.c:911 572#: plugins/check_disk.c:984
557msgid "" 573msgid ""
558"Regular expression to ignore selected path/partition (case insensitive) (may " 574"Regular expression to ignore selected path/partition (case insensitive) (may "
559"be repeated)" 575"be repeated)"
560msgstr "" 576msgstr ""
561 577
562#: plugins/check_disk.c:913 578#: plugins/check_disk.c:986
563msgid "" 579msgid ""
564"Regular expression to ignore selected path or partition (may be repeated)" 580"Regular expression to ignore selected path or partition (may be repeated)"
565msgstr "" 581msgstr ""
566 582
567#: plugins/check_disk.c:916 583#: plugins/check_disk.c:988
584msgid ""
585"Return OK if no filesystem matches, filesystem does not exist or is "
586"inaccessible."
587msgstr ""
588
589#: plugins/check_disk.c:989
590msgid "(Provide this option before -p / -r / --ereg-path if used)"
591msgstr ""
592
593#: plugins/check_disk.c:992
568msgid "Choose bytes, kB, MB, GB, TB (default: MB)" 594msgid "Choose bytes, kB, MB, GB, TB (default: MB)"
569msgstr "" 595msgstr ""
570 596
571#: plugins/check_disk.c:919 597#: plugins/check_disk.c:995
572msgid "Ignore all filesystems of indicated type (may be repeated)" 598msgid "Ignore all filesystems of indicated type (may be repeated)"
573msgstr "" 599msgstr ""
574 600
575#: plugins/check_disk.c:921 601#: plugins/check_disk.c:997
576msgid "Check only filesystems of indicated type (may be repeated)" 602msgid "Check only filesystems of indicated type (may be repeated)"
577msgstr "" 603msgstr ""
578 604
579#: plugins/check_disk.c:926 605#: plugins/check_disk.c:1002
580msgid "Checks /tmp and /var at 10% and 5%, and / at 100MB and 50MB" 606msgid "Checks /tmp and /var at 10% and 5%, and / at 100MB and 50MB"
581msgstr "" 607msgstr ""
582 608
583#: plugins/check_disk.c:928 609#: plugins/check_disk.c:1004
584msgid "" 610msgid ""
585"Checks all filesystems not matching -r at 100M and 50M. The fs matching the -" 611"Checks all filesystems not matching -r at 100M and 50M. The fs matching the -"
586"r regex" 612"r regex"
587msgstr "" 613msgstr ""
588 614
589#: plugins/check_disk.c:929 615#: plugins/check_disk.c:1005
590msgid "" 616msgid ""
591"are grouped which means the freespace thresholds are applied to all disks " 617"are grouped which means the freespace thresholds are applied to all disks "
592"together" 618"together"
593msgstr "" 619msgstr ""
594 620
595#: plugins/check_disk.c:931 621#: plugins/check_disk.c:1007
596msgid "" 622msgid ""
597"Checks /foo for 1000M/500M and /bar for 5/3%. All remaining volumes use " 623"Checks /foo for 1000M/500M and /bar for 5/3%. All remaining volumes use "
598"100M/50M" 624"100M/50M"
599msgstr "" 625msgstr ""
600 626
601#: plugins/check_disk.c:957 627#: plugins/check_disk.c:1036
602#, c-format 628#, c-format
603msgid "%s %s: %s\n" 629msgid "%s %s: %s\n"
604msgstr "" 630msgstr ""
605 631
606#: plugins/check_disk.c:957 632#: plugins/check_disk.c:1036
607msgid "is not accessible" 633msgid "is not accessible"
608msgstr "" 634msgstr ""
609 635
610#: plugins/check_dns.c:116 636#: plugins/check_dns.c:120
611msgid "nslookup returned an error status" 637msgid "nslookup returned an error status"
612msgstr "" 638msgstr ""
613 639
614#: plugins/check_dns.c:134 640#: plugins/check_dns.c:138
615msgid "Warning plugin error" 641msgid "Warning plugin error"
616msgstr "" 642msgstr ""
617 643
618#: plugins/check_dns.c:154 644#: plugins/check_dns.c:156
645#, c-format
646msgid "DNS CRITICAL - '%s' returned empty server string\n"
647msgstr ""
648
649#: plugins/check_dns.c:161
650#, c-format
651msgid "DNS CRITICAL - No response from DNS %s\n"
652msgstr ""
653
654#: plugins/check_dns.c:180
619#, c-format 655#, c-format
620msgid "DNS CRITICAL - '%s' returned empty host name string\n" 656msgid "DNS CRITICAL - '%s' returned empty host name string\n"
621msgstr "" 657msgstr ""
622 658
623#: plugins/check_dns.c:160 659#: plugins/check_dns.c:186
624msgid "Non-authoritative answer:" 660msgid "Non-authoritative answer:"
625msgstr "" 661msgstr ""
626 662
627#: plugins/check_dns.c:201 663#: plugins/check_dns.c:215
664#, c-format
665msgid "Domain '%s' was not found by the server\n"
666msgstr ""
667
668#: plugins/check_dns.c:234
628#, c-format 669#, c-format
629msgid "DNS CRITICAL - '%s' msg parsing exited with no address\n" 670msgid "DNS CRITICAL - '%s' msg parsing exited with no address\n"
630msgstr "" 671msgstr ""
631 672
632#: plugins/check_dns.c:216 673#: plugins/check_dns.c:265
633#, c-format 674#, c-format
634msgid "expected '%s' but got '%s'" 675msgid "expected '%s' but got '%s'"
635msgstr "" 676msgstr ""
636 677
637#: plugins/check_dns.c:223 678#: plugins/check_dns.c:272
679#, c-format
680msgid "Domain '%s' was found by the server: '%s'\n"
681msgstr ""
682
683#: plugins/check_dns.c:282
638#, c-format 684#, c-format
639msgid "server %s is not authoritative for %s" 685msgid "server %s is not authoritative for %s"
640msgstr "" 686msgstr ""
641 687
642#: plugins/check_dns.c:237 plugins/check_dummy.c:68 plugins/check_nagios.c:182 688#: plugins/check_dns.c:291 plugins/check_dummy.c:68 plugins/check_nagios.c:182
643#: plugins/check_pgsql.c:638 plugins/check_procs.c:344 689#: plugins/check_pgsql.c:612 plugins/check_procs.c:367
644#, c-format 690#, c-format
645msgid "OK" 691msgid "OK"
646msgstr "" 692msgstr ""
647 693
648#: plugins/check_dns.c:239 plugins/check_dummy.c:71 plugins/check_mysql.c:296 694#: plugins/check_dns.c:293 plugins/check_dummy.c:71 plugins/check_mysql.c:310
649#: plugins/check_nagios.c:182 plugins/check_pgsql.c:607 695#: plugins/check_nagios.c:182 plugins/check_pgsql.c:581
650#: plugins/check_pgsql.c:612 plugins/check_pgsql.c:640 696#: plugins/check_pgsql.c:586 plugins/check_pgsql.c:614
651#: plugins/check_procs.c:346 697#: plugins/check_procs.c:369
652#, c-format 698#, c-format
653msgid "WARNING" 699msgid "WARNING"
654msgstr "" 700msgstr ""
655 701
656#: plugins/check_dns.c:243 702#: plugins/check_dns.c:297
657#, c-format 703#, c-format
658msgid "%.3f second response time" 704msgid "%.3f second response time"
659msgid_plural "%.3f seconds response time" 705msgid_plural "%.3f seconds response time"
660msgstr[0] "" 706msgstr[0] ""
661msgstr[1] "" 707msgstr[1] ""
662 708
663#: plugins/check_dns.c:244 709#: plugins/check_dns.c:298
664#, c-format 710#, c-format
665msgid ". %s returns %s" 711msgid ". %s returns %s"
666msgstr "" 712msgstr ""
667 713
668#: plugins/check_dns.c:248 714#: plugins/check_dns.c:318
669#, c-format 715#, c-format
670msgid "DNS WARNING - %s\n" 716msgid "DNS WARNING - %s\n"
671msgstr "" 717msgstr ""
672 718
673#: plugins/check_dns.c:249 plugins/check_dns.c:252 plugins/check_dns.c:255 719#: plugins/check_dns.c:319 plugins/check_dns.c:322 plugins/check_dns.c:325
674msgid " Probably a non-existent host/domain" 720msgid " Probably a non-existent host/domain"
675msgstr "" 721msgstr ""
676 722
677#: plugins/check_dns.c:251 723#: plugins/check_dns.c:321
678#, c-format 724#, c-format
679msgid "DNS CRITICAL - %s\n" 725msgid "DNS CRITICAL - %s\n"
680msgstr "" 726msgstr ""
681 727
682#: plugins/check_dns.c:254 728#: plugins/check_dns.c:324
683#, c-format 729#, c-format
684msgid "DNS UNKNOWN - %s\n" 730msgid "DNS UNKNOWN - %s\n"
685msgstr "" 731msgstr ""
686 732
687#: plugins/check_dns.c:267 733#: plugins/check_dns.c:368
688msgid "Note: nslookup is deprecated and may be removed from future releases." 734msgid "Note: nslookup is deprecated and may be removed from future releases."
689msgstr "" 735msgstr ""
690 736
691#: plugins/check_dns.c:268 737#: plugins/check_dns.c:369
692msgid "Consider using the `dig' or `host' programs instead. Run nslookup with" 738msgid "Consider using the `dig' or `host' programs instead. Run nslookup with"
693msgstr "" 739msgstr ""
694 740
695#: plugins/check_dns.c:269 741#: plugins/check_dns.c:370
696msgid "the `-sil[ent]' option to prevent this message from appearing." 742msgid "the `-sil[ent]' option to prevent this message from appearing."
697msgstr "" 743msgstr ""
698 744
699#: plugins/check_dns.c:274 745#: plugins/check_dns.c:375 plugins/check_dns.c:377
700#, c-format 746#, c-format
701msgid "No response from DNS %s\n" 747msgid "No response from DNS %s\n"
702msgstr "" 748msgstr ""
703 749
704#: plugins/check_dns.c:278 750#: plugins/check_dns.c:381
705#, c-format 751#, c-format
706msgid "DNS %s has no records\n" 752msgid "DNS %s has no records\n"
707msgstr "" 753msgstr ""
708 754
709#: plugins/check_dns.c:286 755#: plugins/check_dns.c:389
710#, c-format 756#, c-format
711msgid "Connection to DNS %s was refused\n" 757msgid "Connection to DNS %s was refused\n"
712msgstr "" 758msgstr ""
713 759
714#: plugins/check_dns.c:290 760#: plugins/check_dns.c:393
715#, c-format 761#, c-format
716msgid "Query was refused by DNS server at %s\n" 762msgid "Query was refused by DNS server at %s\n"
717msgstr "" 763msgstr ""
718 764
719#: plugins/check_dns.c:294 765#: plugins/check_dns.c:397
720#, c-format 766#, c-format
721msgid "No information returned by DNS server at %s\n" 767msgid "No information returned by DNS server at %s\n"
722msgstr "" 768msgstr ""
723 769
724#: plugins/check_dns.c:300 770#: plugins/check_dns.c:401
725#, c-format
726msgid "Domain %s was not found by the server\n"
727msgstr ""
728
729#: plugins/check_dns.c:304
730msgid "Network is unreachable\n" 771msgid "Network is unreachable\n"
731msgstr "" 772msgstr ""
732 773
733#: plugins/check_dns.c:308 774#: plugins/check_dns.c:405
734#, c-format 775#, c-format
735msgid "DNS failure for %s\n" 776msgid "DNS failure for %s\n"
736msgstr "" 777msgstr ""
737 778
738#: plugins/check_dns.c:372 plugins/check_dns.c:380 plugins/check_dns.c:387 779#: plugins/check_dns.c:471 plugins/check_dns.c:479 plugins/check_dns.c:486
739#: plugins/check_dns.c:392 plugins/check_dns.c:414 plugins/check_dns.c:422 780#: plugins/check_dns.c:491 plugins/check_dns.c:533 plugins/check_dns.c:541
740#: plugins/check_game.c:211 plugins/check_game.c:219 781#: plugins/check_game.c:211 plugins/check_game.c:219
741msgid "Input buffer overflow\n" 782msgid "Input buffer overflow\n"
742msgstr "" 783msgstr ""
743 784
744#: plugins/check_dns.c:450 785#: plugins/check_dns.c:576
745msgid "" 786msgid ""
746"This plugin uses the nslookup program to obtain the IP address for the given " 787"This plugin uses the nslookup program to obtain the IP address for the given "
747"host/domain query." 788"host/domain query."
748msgstr "" 789msgstr ""
749 790
750#: plugins/check_dns.c:451 791#: plugins/check_dns.c:577
751msgid "An optional DNS server to use may be specified." 792msgid "An optional DNS server to use may be specified."
752msgstr "" 793msgstr ""
753 794
754#: plugins/check_dns.c:452 795#: plugins/check_dns.c:578
755msgid "" 796msgid ""
756"If no DNS server is specified, the default server(s) specified in /etc/" 797"If no DNS server is specified, the default server(s) specified in /etc/"
757"resolv.conf will be used." 798"resolv.conf will be used."
758msgstr "" 799msgstr ""
759 800
760#: plugins/check_dns.c:462 801#: plugins/check_dns.c:588
761msgid "The name or address you want to query" 802msgid "The name or address you want to query"
762msgstr "" 803msgstr ""
763 804
764#: plugins/check_dns.c:464 805#: plugins/check_dns.c:590
765msgid "Optional DNS server you want to use for the lookup" 806msgid "Optional DNS server you want to use for the lookup"
766msgstr "" 807msgstr ""
767 808
768#: plugins/check_dns.c:466 809#: plugins/check_dns.c:592
769msgid "" 810msgid ""
770"Optional IP-ADDRESS you expect the DNS server to return. HOST must end with" 811"Optional IP-ADDRESS/CIDR you expect the DNS server to return. HOST must end"
771msgstr "" 812msgstr ""
772 813
773#: plugins/check_dns.c:467 814#: plugins/check_dns.c:593
774msgid "" 815msgid ""
775"a dot (.). This option can be repeated multiple times (Returns OK if any" 816"with a dot (.). This option can be repeated multiple times (Returns OK if any"
776msgstr "" 817msgstr ""
777 818
778#: plugins/check_dns.c:468 819#: plugins/check_dns.c:594
779msgid "" 820msgid "value matches)."
780"value match). If multiple addresses are returned at once, you have to match"
781msgstr "" 821msgstr ""
782 822
783#: plugins/check_dns.c:469 823#: plugins/check_dns.c:596
784msgid "" 824msgid ""
785"the whole string of addresses separated with commas (sorted alphabetically)." 825"Expect the DNS server to return NXDOMAIN (i.e. the domain was not found)"
826msgstr ""
827
828#: plugins/check_dns.c:597
829msgid "Cannot be used together with -a"
786msgstr "" 830msgstr ""
787 831
788#: plugins/check_dns.c:471 832#: plugins/check_dns.c:599
789msgid "Optionally expect the DNS server to be authoritative for the lookup" 833msgid "Optionally expect the DNS server to be authoritative for the lookup"
790msgstr "" 834msgstr ""
791 835
792#: plugins/check_dns.c:473 836#: plugins/check_dns.c:601
793msgid "Return warning if elapsed time exceeds value. Default off" 837msgid "Return warning if elapsed time exceeds value. Default off"
794msgstr "" 838msgstr ""
795 839
796#: plugins/check_dns.c:475 840#: plugins/check_dns.c:603
797msgid "Return critical if elapsed time exceeds value. Default off" 841msgid "Return critical if elapsed time exceeds value. Default off"
798msgstr "" 842msgstr ""
799 843
844#: plugins/check_dns.c:605
845msgid ""
846"Return critical if the list of expected addresses does not match all "
847"addresses"
848msgstr ""
849
850#: plugins/check_dns.c:606
851msgid "returned. Default off"
852msgstr ""
853
800#: plugins/check_dummy.c:62 854#: plugins/check_dummy.c:62
801msgid "Arguments to check_dummy must be an integer" 855msgid "Arguments to check_dummy must be an integer"
802msgstr "" 856msgstr ""
@@ -815,173 +869,182 @@ msgstr ""
815msgid "of the <state> argument with optional text" 869msgid "of the <state> argument with optional text"
816msgstr "" 870msgstr ""
817 871
818#: plugins/check_fping.c:125 plugins/check_hpjd.c:128 plugins/check_ping.c:438 872#: plugins/check_fping.c:127 plugins/check_hpjd.c:134 plugins/check_ping.c:444
819#: plugins/check_swap.c:175 plugins/check_users.c:94 plugins/urlize.c:110 873#: plugins/check_swap.c:193 plugins/check_users.c:130 plugins/urlize.c:109
820#, c-format 874#, c-format
821msgid "Could not open pipe: %s\n" 875msgid "Could not open pipe: %s\n"
822msgstr "" 876msgstr ""
823 877
824#: plugins/check_fping.c:131 plugins/check_hpjd.c:134 plugins/check_load.c:153 878#: plugins/check_fping.c:133 plugins/check_hpjd.c:140 plugins/check_load.c:159
825#: plugins/check_swap.c:181 plugins/check_users.c:100 plugins/urlize.c:116 879#: plugins/check_swap.c:199 plugins/check_users.c:136 plugins/urlize.c:115
826#, c-format 880#, c-format
827msgid "Could not open stderr for %s\n" 881msgid "Could not open stderr for %s\n"
828msgstr "" 882msgstr ""
829 883
830#: plugins/check_fping.c:157 884#: plugins/check_fping.c:161
831msgid "FPING UNKNOWN - IP address not found\n" 885msgid "FPING UNKNOWN - IP address not found\n"
832msgstr "" 886msgstr ""
833 887
834#: plugins/check_fping.c:160 888#: plugins/check_fping.c:164
835msgid "FPING UNKNOWN - invalid commandline argument\n" 889msgid "FPING UNKNOWN - invalid commandline argument\n"
836msgstr "" 890msgstr ""
837 891
838#: plugins/check_fping.c:163 892#: plugins/check_fping.c:167
839msgid "FPING UNKNOWN - failed system call\n" 893msgid "FPING UNKNOWN - failed system call\n"
840msgstr "" 894msgstr ""
841 895
842#: plugins/check_fping.c:187 896#: plugins/check_fping.c:194
897#, c-format
898msgid "FPING %s - %s (rta=%f ms)|%s\n"
899msgstr ""
900
901#: plugins/check_fping.c:202
843#, c-format 902#, c-format
844msgid "FPING UNKNOWN - %s not found\n" 903msgid "FPING UNKNOWN - %s not found\n"
845msgstr "" 904msgstr ""
846 905
847#: plugins/check_fping.c:191 906#: plugins/check_fping.c:206
848#, c-format 907#, c-format
849msgid "FPING CRITICAL - %s is unreachable\n" 908msgid "FPING CRITICAL - %s is unreachable\n"
850msgstr "" 909msgstr ""
851 910
852#: plugins/check_fping.c:196 911#: plugins/check_fping.c:211
853#, c-format 912#, c-format
854msgid "FPING UNKNOWN - %s parameter error\n" 913msgid "FPING UNKNOWN - %s parameter error\n"
855msgstr "" 914msgstr ""
856 915
857#: plugins/check_fping.c:200 plugins/check_fping.c:240 916#: plugins/check_fping.c:215 plugins/check_fping.c:255
858#, c-format 917#, c-format
859msgid "FPING CRITICAL - %s is down\n" 918msgid "FPING CRITICAL - %s is down\n"
860msgstr "" 919msgstr ""
861 920
862#: plugins/check_fping.c:227 921#: plugins/check_fping.c:242
863#, c-format 922#, c-format
864msgid "FPING %s - %s (loss=%.0f%%, rta=%f ms)|%s %s\n" 923msgid "FPING %s - %s (loss=%.0f%%, rta=%f ms)|%s %s\n"
865msgstr "" 924msgstr ""
866 925
867#: plugins/check_fping.c:253 926#: plugins/check_fping.c:268
868#, c-format 927#, c-format
869msgid "FPING %s - %s (loss=%.0f%% )|%s\n" 928msgid "FPING %s - %s (loss=%.0f%% )|%s\n"
870msgstr "" 929msgstr ""
871 930
872#: plugins/check_fping.c:326 plugins/check_fping.c:332 931#: plugins/check_fping.c:345 plugins/check_fping.c:351 plugins/check_hpjd.c:345
873#: plugins/check_hpjd.c:338 plugins/check_hpjd.c:361 plugins/check_mysql.c:371 932#: plugins/check_hpjd.c:376 plugins/check_mysql.c:389 plugins/check_mysql.c:476
874#: plugins/check_mysql.c:455 plugins/check_ntp.c:709 933#: plugins/check_ntp.c:719 plugins/check_ntp_peer.c:497
875#: plugins/check_ntp_peer.c:497 plugins/check_ntp_time.c:496 934#: plugins/check_ntp_time.c:498 plugins/check_pgsql.c:338
876#: plugins/check_pgsql.c:335 plugins/check_ping.c:295 plugins/check_ping.c:418 935#: plugins/check_ping.c:301 plugins/check_ping.c:424 plugins/check_radius.c:279
877#: plugins/check_radius.c:264 plugins/check_real.c:314 936#: plugins/check_real.c:315 plugins/check_real.c:377 plugins/check_smtp.c:525
878#: plugins/check_real.c:376 plugins/check_smtp.c:499 plugins/check_smtp.c:641 937#: plugins/check_smtp.c:680 plugins/check_ssh.c:162 plugins/check_time.c:240
879#: plugins/check_ssh.c:157 plugins/check_time.c:240 plugins/check_time.c:315 938#: plugins/check_time.c:315 plugins/check_ups.c:507 plugins/check_ups.c:576
880#: plugins/check_ups.c:504 plugins/check_ups.c:573
881msgid "Invalid hostname/address" 939msgid "Invalid hostname/address"
882msgstr "" 940msgstr ""
883 941
884#: plugins/check_fping.c:345 plugins/check_ldap.c:353 plugins/check_ping.c:246 942#: plugins/check_fping.c:364 plugins/check_ldap.c:400 plugins/check_ping.c:252
943#: plugins-root/check_icmp.c:474
885msgid "IPv6 support not available\n" 944msgid "IPv6 support not available\n"
886msgstr "" 945msgstr ""
887 946
888#: plugins/check_fping.c:378 947#: plugins/check_fping.c:397
889msgid "Packet size must be a positive integer" 948msgid "Packet size must be a positive integer"
890msgstr "" 949msgstr ""
891 950
892#: plugins/check_fping.c:384 951#: plugins/check_fping.c:403
893msgid "Packet count must be a positive integer" 952msgid "Packet count must be a positive integer"
894msgstr "" 953msgstr ""
895 954
896#: plugins/check_fping.c:390 955#: plugins/check_fping.c:409
897msgid "Target timeout must be a positive integer" 956msgid "Target timeout must be a positive integer"
898msgstr "" 957msgstr ""
899 958
900#: plugins/check_fping.c:396 959#: plugins/check_fping.c:415
901msgid "Interval must be a positive integer" 960msgid "Interval must be a positive integer"
902msgstr "" 961msgstr ""
903 962
904#: plugins/check_fping.c:402 plugins/check_ntp.c:733 963#: plugins/check_fping.c:421 plugins/check_ntp.c:743
905#: plugins/check_ntp_peer.c:524 plugins/check_ntp_time.c:523 964#: plugins/check_ntp_peer.c:524 plugins/check_ntp_time.c:528
906#: plugins/check_radius.c:314 plugins/check_time.c:319 965#: plugins/check_radius.c:329 plugins/check_time.c:319
907msgid "Hostname was not supplied" 966msgid "Hostname was not supplied"
908msgstr "" 967msgstr ""
909 968
910#: plugins/check_fping.c:422 969#: plugins/check_fping.c:441
911#, c-format 970#, c-format
912msgid "%s: Only one threshold may be packet loss (%s)\n" 971msgid "%s: Only one threshold may be packet loss (%s)\n"
913msgstr "" 972msgstr ""
914 973
915#: plugins/check_fping.c:426 974#: plugins/check_fping.c:445
916#, c-format 975#, c-format
917msgid "%s: Only one threshold must be packet loss (%s)\n" 976msgid "%s: Only one threshold must be packet loss (%s)\n"
918msgstr "" 977msgstr ""
919 978
920#: plugins/check_fping.c:458 979#: plugins/check_fping.c:475
921msgid "" 980msgid ""
922"This plugin will use the fping command to ping the specified host for a fast " 981"This plugin will use the fping command to ping the specified host for a fast "
923"check" 982"check"
924msgstr "" 983msgstr ""
925 984
926#: plugins/check_fping.c:460 985#: plugins/check_fping.c:477
927msgid "Note that it is necessary to set the suid flag on fping." 986msgid "Note that it is necessary to set the suid flag on fping."
928msgstr "" 987msgstr ""
929 988
930#: plugins/check_fping.c:472 989#: plugins/check_fping.c:489
931msgid "" 990msgid ""
932"name or IP Address of host to ping (IP Address bypasses name lookup, " 991"name or IP Address of host to ping (IP Address bypasses name lookup, "
933"reducing system load)" 992"reducing system load)"
934msgstr "" 993msgstr ""
935 994
936#: plugins/check_fping.c:474 plugins/check_ping.c:575 995#: plugins/check_fping.c:491 plugins/check_ping.c:589
937msgid "warning threshold pair" 996msgid "warning threshold pair"
938msgstr "" 997msgstr ""
939 998
940#: plugins/check_fping.c:476 plugins/check_ping.c:577 999#: plugins/check_fping.c:493 plugins/check_ping.c:591
941msgid "critical threshold pair" 1000msgid "critical threshold pair"
942msgstr "" 1001msgstr ""
943 1002
944#: plugins/check_fping.c:478 1003#: plugins/check_fping.c:495
1004msgid "Return OK after first successful reply"
1005msgstr ""
1006
1007#: plugins/check_fping.c:497
945msgid "size of ICMP packet" 1008msgid "size of ICMP packet"
946msgstr "" 1009msgstr ""
947 1010
948#: plugins/check_fping.c:480 1011#: plugins/check_fping.c:499
949msgid "number of ICMP packets to send" 1012msgid "number of ICMP packets to send"
950msgstr "" 1013msgstr ""
951 1014
952#: plugins/check_fping.c:482 1015#: plugins/check_fping.c:501
953msgid "Target timeout (ms)" 1016msgid "Target timeout (ms)"
954msgstr "" 1017msgstr ""
955 1018
956#: plugins/check_fping.c:484 1019#: plugins/check_fping.c:503
957msgid "Interval (ms) between sending packets" 1020msgid "Interval (ms) between sending packets"
958msgstr "" 1021msgstr ""
959 1022
960#: plugins/check_fping.c:486 1023#: plugins/check_fping.c:505
961msgid "name or IP Address of sourceip" 1024msgid "name or IP Address of sourceip"
962msgstr "" 1025msgstr ""
963 1026
964#: plugins/check_fping.c:488 1027#: plugins/check_fping.c:507
965msgid "source interface name" 1028msgid "source interface name"
966msgstr "" 1029msgstr ""
967 1030
968#: plugins/check_fping.c:491 1031#: plugins/check_fping.c:510
969#, c-format 1032#, c-format
970msgid "" 1033msgid ""
971"THRESHOLD is <rta>,<pl>%% where <rta> is the round trip average travel time " 1034"THRESHOLD is <rta>,<pl>%% where <rta> is the round trip average travel time "
972"(ms)" 1035"(ms)"
973msgstr "" 1036msgstr ""
974 1037
975#: plugins/check_fping.c:492 1038#: plugins/check_fping.c:511
976msgid "" 1039msgid ""
977"which triggers a WARNING or CRITICAL state, and <pl> is the percentage of" 1040"which triggers a WARNING or CRITICAL state, and <pl> is the percentage of"
978msgstr "" 1041msgstr ""
979 1042
980#: plugins/check_fping.c:493 1043#: plugins/check_fping.c:512
981msgid "packet loss to trigger an alarm state." 1044msgid "packet loss to trigger an alarm state."
982msgstr "" 1045msgstr ""
983 1046
984#: plugins/check_fping.c:496 1047#: plugins/check_fping.c:515
985msgid "IPv4 is used by default. Specify -6 to use IPv6." 1048msgid "IPv4 is used by default. Specify -6 to use IPv6."
986msgstr "" 1049msgstr ""
987 1050
@@ -1038,783 +1101,904 @@ msgid ""
1038msgstr "" 1101msgstr ""
1039 1102
1040#: plugins/check_game.c:321 1103#: plugins/check_game.c:321
1041msgid "" 1104msgid "https://github.com/multiplay/qstat before you can use this plugin."
1042"http://www.activesw.com/people/steve/qstat.html before you can use this "
1043"plugin."
1044msgstr "" 1105msgstr ""
1045 1106
1046#: plugins/check_hpjd.c:239 1107#: plugins/check_hpjd.c:245
1047msgid "Paper Jam" 1108msgid "Paper Jam"
1048msgstr "" 1109msgstr ""
1049 1110
1050#: plugins/check_hpjd.c:243 1111#: plugins/check_hpjd.c:250
1051msgid "Out of Paper" 1112msgid "Out of Paper"
1052msgstr "" 1113msgstr ""
1053 1114
1054#: plugins/check_hpjd.c:248 1115#: plugins/check_hpjd.c:255
1055msgid "Printer Offline" 1116msgid "Printer Offline"
1056msgstr "" 1117msgstr ""
1057 1118
1058#: plugins/check_hpjd.c:253 1119#: plugins/check_hpjd.c:260
1059msgid "Peripheral Error" 1120msgid "Peripheral Error"
1060msgstr "" 1121msgstr ""
1061 1122
1062#: plugins/check_hpjd.c:257 1123#: plugins/check_hpjd.c:264
1063msgid "Intervention Required" 1124msgid "Intervention Required"
1064msgstr "" 1125msgstr ""
1065 1126
1066#: plugins/check_hpjd.c:261 1127#: plugins/check_hpjd.c:268
1067msgid "Toner Low" 1128msgid "Toner Low"
1068msgstr "" 1129msgstr ""
1069 1130
1070#: plugins/check_hpjd.c:265 1131#: plugins/check_hpjd.c:272
1071msgid "Insufficient Memory" 1132msgid "Insufficient Memory"
1072msgstr "" 1133msgstr ""
1073 1134
1074#: plugins/check_hpjd.c:269 1135#: plugins/check_hpjd.c:276
1075msgid "A Door is Open" 1136msgid "A Door is Open"
1076msgstr "" 1137msgstr ""
1077 1138
1078#: plugins/check_hpjd.c:273 1139#: plugins/check_hpjd.c:280
1079msgid "Output Tray is Full" 1140msgid "Output Tray is Full"
1080msgstr "" 1141msgstr ""
1081 1142
1082#: plugins/check_hpjd.c:277 1143#: plugins/check_hpjd.c:284
1083msgid "Data too Slow for Engine" 1144msgid "Data too Slow for Engine"
1084msgstr "" 1145msgstr ""
1085 1146
1086#: plugins/check_hpjd.c:281 1147#: plugins/check_hpjd.c:288
1087msgid "Unknown Paper Error" 1148msgid "Unknown Paper Error"
1088msgstr "" 1149msgstr ""
1089 1150
1090#: plugins/check_hpjd.c:286 1151#: plugins/check_hpjd.c:293
1091#, c-format 1152#, c-format
1092msgid "Printer ok - (%s)\n" 1153msgid "Printer ok - (%s)\n"
1093msgstr "" 1154msgstr ""
1094 1155
1095#: plugins/check_hpjd.c:391 1156#: plugins/check_hpjd.c:353
1157msgid "Port must be a positive short integer"
1158msgstr ""
1159
1160#: plugins/check_hpjd.c:410
1096msgid "This plugin tests the STATUS of an HP printer with a JetDirect card." 1161msgid "This plugin tests the STATUS of an HP printer with a JetDirect card."
1097msgstr "" 1162msgstr ""
1098 1163
1099#: plugins/check_hpjd.c:392 1164#: plugins/check_hpjd.c:411
1100msgid "Net-snmp must be installed on the computer running the plugin." 1165msgid "Net-snmp must be installed on the computer running the plugin."
1101msgstr "" 1166msgstr ""
1102 1167
1103#: plugins/check_hpjd.c:402 1168#: plugins/check_hpjd.c:421
1104msgid "The SNMP community name " 1169msgid "The SNMP community name "
1105msgstr "" 1170msgstr ""
1106 1171
1107#: plugins/check_hpjd.c:403 1172#: plugins/check_hpjd.c:422 plugins/check_hpjd.c:426
1108#, c-format 1173#, c-format
1109msgid "(default=%s)" 1174msgid "(default=%s)"
1110msgstr "" 1175msgstr ""
1111 1176
1112#: plugins/check_http.c:189 1177#: plugins/check_hpjd.c:425
1178msgid "Specify the port to check "
1179msgstr ""
1180
1181#: plugins/check_hpjd.c:429
1182msgid "Disable paper check "
1183msgstr ""
1184
1185#: plugins/check_http.c:196
1113msgid "file does not exist or is not readable" 1186msgid "file does not exist or is not readable"
1114msgstr "" 1187msgstr ""
1115 1188
1116#: plugins/check_http.c:310 plugins/check_http.c:315 plugins/check_http.c:321 1189#: plugins/check_http.c:324 plugins/check_http.c:329 plugins/check_http.c:335
1117#: plugins/check_smtp.c:600 plugins/check_tcp.c:576 plugins/check_tcp.c:580 1190#: plugins/check_smtp.c:621 plugins/check_tcp.c:590 plugins/check_tcp.c:595
1118#: plugins/check_tcp.c:586 1191#: plugins/check_tcp.c:601
1119msgid "Invalid certificate expiration period" 1192msgid "Invalid certificate expiration period"
1120msgstr "" 1193msgstr ""
1121 1194
1122#: plugins/check_http.c:348 1195#: plugins/check_http.c:378
1123msgid "" 1196msgid ""
1124"Invalid option - Valid values for SSL Version are 1 (TLSv1), 2 (SSLv2) or 3 " 1197"Invalid option - Valid SSL/TLS versions: 2, 3, 1, 1.1, 1.2 (with optional "
1125"(SSLv3)" 1198"'+' suffix)"
1126msgstr "" 1199msgstr ""
1127 1200
1128#: plugins/check_http.c:354 plugins/check_tcp.c:599 1201#: plugins/check_http.c:384 plugins/check_tcp.c:614 plugins/check_tcp.c:623
1129msgid "Invalid option - SSL is not available" 1202msgid "Invalid option - SSL is not available"
1130msgstr "" 1203msgstr ""
1131 1204
1132#: plugins/check_http.c:375 1205#: plugins/check_http.c:392
1206msgid "Invalid max_redirs count"
1207msgstr ""
1208
1209#: plugins/check_http.c:412
1133msgid "Invalid onredirect option" 1210msgid "Invalid onredirect option"
1134msgstr "" 1211msgstr ""
1135 1212
1136#: plugins/check_http.c:377 1213#: plugins/check_http.c:414
1137#, c-format 1214#, c-format
1138msgid "option f:%d \n" 1215msgid "option f:%d \n"
1139msgstr "" 1216msgstr ""
1140 1217
1141#: plugins/check_http.c:398 1218#: plugins/check_http.c:449
1142msgid "Invalid port number" 1219msgid "Invalid port number"
1143msgstr "" 1220msgstr ""
1144 1221
1145#: plugins/check_http.c:450 1222#: plugins/check_http.c:507
1146#, c-format 1223#, c-format
1147msgid "Could Not Compile Regular Expression: %s" 1224msgid "Could Not Compile Regular Expression: %s"
1148msgstr "" 1225msgstr ""
1149 1226
1150#: plugins/check_http.c:464 plugins/check_ntp.c:722 1227#: plugins/check_http.c:521 plugins/check_ntp.c:732
1151#: plugins/check_ntp_peer.c:513 plugins/check_ntp_time.c:512 1228#: plugins/check_ntp_peer.c:513 plugins/check_ntp_time.c:517
1152#: plugins/check_smtp.c:621 plugins/check_ssh.c:149 plugins/check_tcp.c:477 1229#: plugins/check_smtp.c:660 plugins/check_ssh.c:151 plugins/check_tcp.c:491
1153msgid "IPv6 support not available" 1230msgid "IPv6 support not available"
1154msgstr "" 1231msgstr ""
1155 1232
1156#: plugins/check_http.c:529 plugins/check_ping.c:422 1233#: plugins/check_http.c:589 plugins/check_ping.c:428
1157msgid "You must specify a server address or host name" 1234msgid "You must specify a server address or host name"
1158msgstr "" 1235msgstr ""
1159 1236
1160#: plugins/check_http.c:543 1237#: plugins/check_http.c:606
1161msgid "" 1238msgid ""
1162"If you use a client certificate you must also specify a private key file" 1239"If you use a client certificate you must also specify a private key file"
1163msgstr "" 1240msgstr ""
1164 1241
1165#: plugins/check_http.c:667 plugins/check_http.c:835 1242#: plugins/check_http.c:733 plugins/check_http.c:901
1166msgid "HTTP UNKNOWN - Memory allocation error\n" 1243msgid "HTTP UNKNOWN - Memory allocation error\n"
1167msgstr "" 1244msgstr ""
1168 1245
1169#: plugins/check_http.c:739 1246#: plugins/check_http.c:805
1170#, c-format 1247#, c-format
1171msgid "%sServer date unknown, " 1248msgid "%sServer date unknown, "
1172msgstr "" 1249msgstr ""
1173 1250
1174#: plugins/check_http.c:742 1251#: plugins/check_http.c:808
1175#, c-format 1252#, c-format
1176msgid "%sDocument modification date unknown, " 1253msgid "%sDocument modification date unknown, "
1177msgstr "" 1254msgstr ""
1178 1255
1179#: plugins/check_http.c:749 1256#: plugins/check_http.c:815
1180#, c-format 1257#, c-format
1181msgid "%sServer date \"%100s\" unparsable, " 1258msgid "%sServer date \"%100s\" unparsable, "
1182msgstr "" 1259msgstr ""
1183 1260
1184#: plugins/check_http.c:752 1261#: plugins/check_http.c:818
1185#, c-format 1262#, c-format
1186msgid "%sDocument date \"%100s\" unparsable, " 1263msgid "%sDocument date \"%100s\" unparsable, "
1187msgstr "" 1264msgstr ""
1188 1265
1189#: plugins/check_http.c:755 1266#: plugins/check_http.c:821
1190#, c-format 1267#, c-format
1191msgid "%sDocument is %d seconds in the future, " 1268msgid "%sDocument is %d seconds in the future, "
1192msgstr "" 1269msgstr ""
1193 1270
1194#: plugins/check_http.c:760 1271#: plugins/check_http.c:826
1195#, c-format 1272#, c-format
1196msgid "%sLast modified %.1f days ago, " 1273msgid "%sLast modified %.1f days ago, "
1197msgstr "" 1274msgstr ""
1198 1275
1199#: plugins/check_http.c:763 1276#: plugins/check_http.c:829
1200#, c-format 1277#, c-format
1201msgid "%sLast modified %d:%02d:%02d ago, " 1278msgid "%sLast modified %d:%02d:%02d ago, "
1202msgstr "" 1279msgstr ""
1203 1280
1204#: plugins/check_http.c:876 1281#: plugins/check_http.c:943
1205msgid "HTTP CRITICAL - Unable to open TCP socket\n" 1282msgid "HTTP CRITICAL - Unable to open TCP socket\n"
1206msgstr "" 1283msgstr ""
1207 1284
1208#: plugins/check_http.c:995 1285#: plugins/check_http.c:1103
1286msgid "HTTP UNKNOWN - Could not allocate memory for full_page\n"
1287msgstr ""
1288
1289#: plugins/check_http.c:1120
1209msgid "HTTP CRITICAL - Error on receive\n" 1290msgid "HTTP CRITICAL - Error on receive\n"
1210msgstr "" 1291msgstr ""
1211 1292
1212#: plugins/check_http.c:1005 1293#: plugins/check_http.c:1125
1213msgid "HTTP CRITICAL - No data received from host\n" 1294msgid "HTTP CRITICAL - No data received from host\n"
1214msgstr "" 1295msgstr ""
1215 1296
1216#: plugins/check_http.c:1056 1297#: plugins/check_http.c:1176
1217#, c-format 1298#, c-format
1218msgid "Invalid HTTP response received from host: %s\n" 1299msgid "Invalid HTTP response received from host: %s\n"
1219msgstr "" 1300msgstr ""
1220 1301
1221#: plugins/check_http.c:1060 1302#: plugins/check_http.c:1180
1222#, c-format 1303#, c-format
1223msgid "Invalid HTTP response received from host on port %d: %s\n" 1304msgid "Invalid HTTP response received from host on port %d: %s\n"
1224msgstr "" 1305msgstr ""
1225 1306
1226#: plugins/check_http.c:1069 1307#: plugins/check_http.c:1183 plugins/check_http.c:1376
1308#, c-format
1309msgid ""
1310"%s\n"
1311"%s"
1312msgstr ""
1313
1314#: plugins/check_http.c:1191
1227#, c-format 1315#, c-format
1228msgid "Status line output matched \"%s\" - " 1316msgid "Status line output matched \"%s\" - "
1229msgstr "" 1317msgstr ""
1230 1318
1231#: plugins/check_http.c:1080 1319#: plugins/check_http.c:1202
1232#, c-format 1320#, c-format
1233msgid "HTTP CRITICAL: Invalid Status Line (%s)\n" 1321msgid "HTTP CRITICAL: Invalid Status Line (%s)\n"
1234msgstr "" 1322msgstr ""
1235 1323
1236#: plugins/check_http.c:1087 1324#: plugins/check_http.c:1209
1237#, c-format 1325#, c-format
1238msgid "HTTP CRITICAL: Invalid Status (%s)\n" 1326msgid "HTTP CRITICAL: Invalid Status (%s)\n"
1239msgstr "" 1327msgstr ""
1240 1328
1241#: plugins/check_http.c:1091 plugins/check_http.c:1096 1329#: plugins/check_http.c:1213 plugins/check_http.c:1218
1242#: plugins/check_http.c:1106 plugins/check_http.c:1110 1330#: plugins/check_http.c:1228 plugins/check_http.c:1232
1243#, c-format 1331#, c-format
1244msgid "%s - " 1332msgid "%s - "
1245msgstr "" 1333msgstr ""
1246 1334
1247#: plugins/check_http.c:1129 1335#: plugins/check_http.c:1260
1248#, c-format 1336#, c-format
1249msgid "%sheader '%s' not found on '%s://%s:%d%s', " 1337msgid "%sheader '%s' not found on '%s://%s:%d%s', "
1250msgstr "" 1338msgstr ""
1251 1339
1252#: plugins/check_http.c:1141 1340#: plugins/check_http.c:1303
1253#, c-format 1341#, c-format
1254msgid "%sstring '%s' not found on '%s://%s:%d%s', " 1342msgid "%sstring '%s' not found on '%s://%s:%d%s', "
1255msgstr "" 1343msgstr ""
1256 1344
1257#: plugins/check_http.c:1154 1345#: plugins/check_http.c:1317
1258#, c-format 1346#, c-format
1259msgid "%spattern not found, " 1347msgid "%spattern not found, "
1260msgstr "" 1348msgstr ""
1261 1349
1262#: plugins/check_http.c:1156 1350#: plugins/check_http.c:1319
1263#, c-format 1351#, c-format
1264msgid "%spattern found, " 1352msgid "%spattern found, "
1265msgstr "" 1353msgstr ""
1266 1354
1267#: plugins/check_http.c:1162 1355#: plugins/check_http.c:1325
1268#, c-format 1356#, c-format
1269msgid "%sExecute Error: %s, " 1357msgid "%sExecute Error: %s, "
1270msgstr "" 1358msgstr ""
1271 1359
1272#: plugins/check_http.c:1178 1360#: plugins/check_http.c:1341
1273#, c-format 1361#, c-format
1274msgid "%spage size %d too large, " 1362msgid "%spage size %d too large, "
1275msgstr "" 1363msgstr ""
1276 1364
1277#: plugins/check_http.c:1181 1365#: plugins/check_http.c:1344
1278#, c-format 1366#, c-format
1279msgid "%spage size %d too small, " 1367msgid "%spage size %d too small, "
1280msgstr "" 1368msgstr ""
1281 1369
1282#: plugins/check_http.c:1194 1370#: plugins/check_http.c:1357
1283#, c-format 1371#, c-format
1284msgid "%s - %d bytes in %.3f second response time %s|%s %s %s %s %s %s %s" 1372msgid "%s - %d bytes in %.3f second response time %s|%s %s %s %s %s %s %s"
1285msgstr "" 1373msgstr ""
1286 1374
1287#: plugins/check_http.c:1206 1375#: plugins/check_http.c:1369
1288#, c-format 1376#, c-format
1289msgid "%s - %d bytes in %.3f second response time %s|%s %s" 1377msgid "%s - %d bytes in %.3f second response time %s|%s %s"
1290msgstr "" 1378msgstr ""
1291 1379
1292#: plugins/check_http.c:1244 1380#: plugins/check_http.c:1499
1293msgid "HTTP UNKNOWN - Could not allocate addr\n" 1381msgid "HTTP UNKNOWN - Could not allocate addr\n"
1294msgstr "" 1382msgstr ""
1295 1383
1296#: plugins/check_http.c:1248 plugins/check_http.c:1279 1384#: plugins/check_http.c:1504 plugins/check_http.c:1535
1297msgid "HTTP UNKNOWN - Could not allocate URL\n" 1385msgid "HTTP UNKNOWN - Could not allocate URL\n"
1298msgstr "" 1386msgstr ""
1299 1387
1300#: plugins/check_http.c:1257 1388#: plugins/check_http.c:1513
1301#, c-format 1389#, c-format
1302msgid "HTTP UNKNOWN - Could not find redirect location - %s%s\n" 1390msgid "HTTP UNKNOWN - Could not find redirect location - %s%s\n"
1303msgstr "" 1391msgstr ""
1304 1392
1305#: plugins/check_http.c:1272 1393#: plugins/check_http.c:1528
1306#, c-format 1394#, c-format
1307msgid "HTTP UNKNOWN - Empty redirect location%s\n" 1395msgid "HTTP UNKNOWN - Empty redirect location%s\n"
1308msgstr "" 1396msgstr ""
1309 1397
1310#: plugins/check_http.c:1322 1398#: plugins/check_http.c:1590
1311#, c-format 1399#, c-format
1312msgid "HTTP UNKNOWN - Could not parse redirect location - %s%s\n" 1400msgid "HTTP UNKNOWN - Could not parse redirect location - %s%s\n"
1313msgstr "" 1401msgstr ""
1314 1402
1315#: plugins/check_http.c:1332 1403#: plugins/check_http.c:1600
1316#, c-format 1404#, c-format
1317msgid "HTTP WARNING - maximum redirection depth %d exceeded - %s://%s:%d%s%s\n" 1405msgid "HTTP WARNING - maximum redirection depth %d exceeded - %s://%s:%d%s%s\n"
1318msgstr "" 1406msgstr ""
1319 1407
1320#: plugins/check_http.c:1340 1408#: plugins/check_http.c:1608
1321#, c-format 1409#, c-format
1322msgid "HTTP WARNING - redirection creates an infinite loop - %s://%s:%d%s%s\n" 1410msgid "HTTP CRITICAL - redirection creates an infinite loop - %s://%s:%d%s%s\n"
1323msgstr "" 1411msgstr ""
1324 1412
1325#: plugins/check_http.c:1361 1413#: plugins/check_http.c:1629
1326#, c-format 1414#, c-format
1327msgid "HTTP UNKNOWN - Redirection to port above %d - %s://%s:%d%s%s\n" 1415msgid "HTTP UNKNOWN - Redirection to port above %d - %s://%s:%d%s%s\n"
1328msgstr "" 1416msgstr ""
1329 1417
1330#: plugins/check_http.c:1366 1418#: plugins/check_http.c:1637
1331#, c-format 1419#, c-format
1332msgid "Redirection to %s://%s:%d%s\n" 1420msgid "Redirection to %s://%s:%d%s\n"
1333msgstr "" 1421msgstr ""
1334 1422
1335#: plugins/check_http.c:1440 1423#: plugins/check_http.c:1712
1336msgid "This plugin tests the HTTP service on the specified host. It can test" 1424msgid "This plugin tests the HTTP service on the specified host. It can test"
1337msgstr "" 1425msgstr ""
1338 1426
1339#: plugins/check_http.c:1441 1427#: plugins/check_http.c:1713
1340msgid "normal (http) and secure (https) servers, follow redirects, search for" 1428msgid "normal (http) and secure (https) servers, follow redirects, search for"
1341msgstr "" 1429msgstr ""
1342 1430
1343#: plugins/check_http.c:1442 1431#: plugins/check_http.c:1714
1344msgid "strings and regular expressions, check connection times, and report on" 1432msgid "strings and regular expressions, check connection times, and report on"
1345msgstr "" 1433msgstr ""
1346 1434
1347#: plugins/check_http.c:1443 1435#: plugins/check_http.c:1715
1348msgid "certificate expiration times." 1436msgid "certificate expiration times."
1349msgstr "" 1437msgstr ""
1350 1438
1351#: plugins/check_http.c:1449 1439#: plugins/check_http.c:1722
1440#, c-format
1441msgid "In the first form, make an HTTP request."
1442msgstr ""
1443
1444#: plugins/check_http.c:1723
1445#, c-format
1446msgid ""
1447"In the second form, connect to the server and check the TLS certificate."
1448msgstr ""
1449
1450#: plugins/check_http.c:1725
1352#, c-format 1451#, c-format
1353msgid "NOTE: One or both of -H and -I must be specified" 1452msgid "NOTE: One or both of -H and -I must be specified"
1354msgstr "" 1453msgstr ""
1355 1454
1356#: plugins/check_http.c:1457 1455#: plugins/check_http.c:1733
1357msgid "Host name argument for servers using host headers (virtual host)" 1456msgid "Host name argument for servers using host headers (virtual host)"
1358msgstr "" 1457msgstr ""
1359 1458
1360#: plugins/check_http.c:1458 1459#: plugins/check_http.c:1734
1361msgid "Append a port to include it in the header (eg: example.com:5000)" 1460msgid "Append a port to include it in the header (eg: example.com:5000)"
1362msgstr "" 1461msgstr ""
1363 1462
1364#: plugins/check_http.c:1460 1463#: plugins/check_http.c:1736
1365msgid "" 1464msgid ""
1366"IP address or name (use numeric address if possible to bypass DNS lookup)." 1465"IP address or name (use numeric address if possible to bypass DNS lookup)."
1367msgstr "" 1466msgstr ""
1368 1467
1369#: plugins/check_http.c:1462 1468#: plugins/check_http.c:1738
1370msgid "Port number (default: " 1469msgid "Port number (default: "
1371msgstr "" 1470msgstr ""
1372 1471
1373#: plugins/check_http.c:1469 1472#: plugins/check_http.c:1745
1374msgid "" 1473msgid ""
1375"Connect via SSL. Port defaults to 443. VERSION is optional, and prevents" 1474"Connect via SSL. Port defaults to 443. VERSION is optional, and prevents"
1376msgstr "" 1475msgstr ""
1377 1476
1378#: plugins/check_http.c:1470 1477#: plugins/check_http.c:1746
1379msgid "auto-negotiation (1 = TLSv1, 2 = SSLv2, 3 = SSLv3)." 1478msgid "auto-negotiation (2 = SSLv2, 3 = SSLv3, 1 = TLSv1, 1.1 = TLSv1.1,"
1479msgstr ""
1480
1481#: plugins/check_http.c:1747
1482msgid "1.2 = TLSv1.2). With a '+' suffix, newer versions are also accepted."
1380msgstr "" 1483msgstr ""
1381 1484
1382#: plugins/check_http.c:1472 1485#: plugins/check_http.c:1749 plugins/check_smtp.c:856
1383msgid "Enable SSL/TLS hostname extension support (SNI)" 1486msgid "Enable SSL/TLS hostname extension support (SNI)"
1384msgstr "" 1487msgstr ""
1385 1488
1386#: plugins/check_http.c:1474 1489#: plugins/check_http.c:1751
1387msgid "" 1490msgid ""
1388"Minimum number of days a certificate has to be valid. Port defaults to 443" 1491"Minimum number of days a certificate has to be valid. Port defaults to 443"
1389msgstr "" 1492msgstr ""
1390 1493
1391#: plugins/check_http.c:1475 1494#: plugins/check_http.c:1752
1392msgid "(when this option is used the URL is not checked.)" 1495msgid ""
1496"(when this option is used the URL is not checked by default. You can use"
1497msgstr ""
1498
1499#: plugins/check_http.c:1753
1500msgid " --continue-after-certificate to override this behavior)"
1501msgstr ""
1502
1503#: plugins/check_http.c:1755
1504msgid ""
1505"Allows the HTTP check to continue after performing the certificate check."
1506msgstr ""
1507
1508#: plugins/check_http.c:1756
1509msgid "Does nothing unless -C is used."
1393msgstr "" 1510msgstr ""
1394 1511
1395#: plugins/check_http.c:1477 1512#: plugins/check_http.c:1758
1396msgid "Name of file that contains the client certificate (PEM format)" 1513msgid "Name of file that contains the client certificate (PEM format)"
1397msgstr "" 1514msgstr ""
1398 1515
1399#: plugins/check_http.c:1478 1516#: plugins/check_http.c:1759
1400msgid "to be used in establishing the SSL session" 1517msgid "to be used in establishing the SSL session"
1401msgstr "" 1518msgstr ""
1402 1519
1403#: plugins/check_http.c:1480 1520#: plugins/check_http.c:1761
1404msgid "Name of file containing the private key (PEM format)" 1521msgid "Name of file containing the private key (PEM format)"
1405msgstr "" 1522msgstr ""
1406 1523
1407#: plugins/check_http.c:1481 1524#: plugins/check_http.c:1762
1408msgid "matching the client certificate" 1525msgid "matching the client certificate"
1409msgstr "" 1526msgstr ""
1410 1527
1411#: plugins/check_http.c:1485 1528#: plugins/check_http.c:1766
1412msgid "Comma-delimited list of strings, at least one of them is expected in" 1529msgid "Comma-delimited list of strings, at least one of them is expected in"
1413msgstr "" 1530msgstr ""
1414 1531
1415#: plugins/check_http.c:1486 1532#: plugins/check_http.c:1767
1416msgid "the first (status) line of the server response (default: " 1533msgid "the first (status) line of the server response (default: "
1417msgstr "" 1534msgstr ""
1418 1535
1419#: plugins/check_http.c:1488 1536#: plugins/check_http.c:1769
1420msgid "" 1537msgid ""
1421"If specified skips all other status line logic (ex: 3xx, 4xx, 5xx processing)" 1538"If specified skips all other status line logic (ex: 3xx, 4xx, 5xx processing)"
1422msgstr "" 1539msgstr ""
1423 1540
1424#: plugins/check_http.c:1490 1541#: plugins/check_http.c:1771
1425msgid "String to expect in the response headers" 1542msgid "String to expect in the response headers"
1426msgstr "" 1543msgstr ""
1427 1544
1428#: plugins/check_http.c:1492 1545#: plugins/check_http.c:1773
1429msgid "String to expect in the content" 1546msgid "String to expect in the content"
1430msgstr "" 1547msgstr ""
1431 1548
1432#: plugins/check_http.c:1494 1549#: plugins/check_http.c:1775
1433msgid "URL to GET or POST (default: /)" 1550msgid "URL to GET or POST (default: /)"
1434msgstr "" 1551msgstr ""
1435 1552
1436#: plugins/check_http.c:1496 1553#: plugins/check_http.c:1777
1437msgid "URL encoded http POST data" 1554msgid "URL encoded http POST data"
1438msgstr "" 1555msgstr ""
1439 1556
1440#: plugins/check_http.c:1498 1557#: plugins/check_http.c:1779
1441msgid "Set HTTP method." 1558msgid "Set HTTP method."
1442msgstr "" 1559msgstr ""
1443 1560
1444#: plugins/check_http.c:1500 1561#: plugins/check_http.c:1781
1445msgid "Don't wait for document body: stop reading after headers." 1562msgid "Don't wait for document body: stop reading after headers."
1446msgstr "" 1563msgstr ""
1447 1564
1448#: plugins/check_http.c:1501 1565#: plugins/check_http.c:1782
1449msgid "(Note that this still does an HTTP GET or POST, not a HEAD.)" 1566msgid "(Note that this still does an HTTP GET or POST, not a HEAD.)"
1450msgstr "" 1567msgstr ""
1451 1568
1452#: plugins/check_http.c:1503 1569#: plugins/check_http.c:1784
1453msgid "Warn if document is more than SECONDS old. the number can also be of" 1570msgid "Warn if document is more than SECONDS old. the number can also be of"
1454msgstr "" 1571msgstr ""
1455 1572
1456#: plugins/check_http.c:1504 1573#: plugins/check_http.c:1785
1457msgid "the form \"10m\" for minutes, \"10h\" for hours, or \"10d\" for days." 1574msgid "the form \"10m\" for minutes, \"10h\" for hours, or \"10d\" for days."
1458msgstr "" 1575msgstr ""
1459 1576
1460#: plugins/check_http.c:1506 1577#: plugins/check_http.c:1787
1461msgid "specify Content-Type header media type when POSTing\n" 1578msgid "specify Content-Type header media type when POSTing\n"
1462msgstr "" 1579msgstr ""
1463 1580
1464#: plugins/check_http.c:1509 1581#: plugins/check_http.c:1790
1465msgid "Allow regex to span newlines (must precede -r or -R)" 1582msgid "Allow regex to span newlines (must precede -r or -R)"
1466msgstr "" 1583msgstr ""
1467 1584
1468#: plugins/check_http.c:1511 1585#: plugins/check_http.c:1792
1469msgid "Search page for regex STRING" 1586msgid "Search page for regex STRING"
1470msgstr "" 1587msgstr ""
1471 1588
1472#: plugins/check_http.c:1513 1589#: plugins/check_http.c:1794
1473msgid "Search page for case-insensitive regex STRING" 1590msgid "Search page for case-insensitive regex STRING"
1474msgstr "" 1591msgstr ""
1475 1592
1476#: plugins/check_http.c:1515 1593#: plugins/check_http.c:1796
1477msgid "Return CRITICAL if found, OK if not\n" 1594msgid "Return CRITICAL if found, OK if not\n"
1478msgstr "" 1595msgstr ""
1479 1596
1480#: plugins/check_http.c:1518 1597#: plugins/check_http.c:1799
1481msgid "Username:password on sites with basic authentication" 1598msgid "Username:password on sites with basic authentication"
1482msgstr "" 1599msgstr ""
1483 1600
1484#: plugins/check_http.c:1520 1601#: plugins/check_http.c:1801
1485msgid "Username:password on proxy-servers with basic authentication" 1602msgid "Username:password on proxy-servers with basic authentication"
1486msgstr "" 1603msgstr ""
1487 1604
1488#: plugins/check_http.c:1522 1605#: plugins/check_http.c:1803
1489msgid "String to be sent in http header as \"User Agent\"" 1606msgid "String to be sent in http header as \"User Agent\""
1490msgstr "" 1607msgstr ""
1491 1608
1492#: plugins/check_http.c:1524 1609#: plugins/check_http.c:1805
1493msgid "" 1610msgid ""
1494"Any other tags to be sent in http header. Use multiple times for additional " 1611"Any other tags to be sent in http header. Use multiple times for additional "
1495"headers" 1612"headers"
1496msgstr "" 1613msgstr ""
1497 1614
1498#: plugins/check_http.c:1526 1615#: plugins/check_http.c:1807
1499msgid "Print additional performance data" 1616msgid "Print additional performance data"
1500msgstr "" 1617msgstr ""
1501 1618
1502#: plugins/check_http.c:1528 1619#: plugins/check_http.c:1809
1620msgid "Print body content below status line"
1621msgstr ""
1622
1623#: plugins/check_http.c:1811
1503msgid "Wrap output in HTML link (obsoleted by urlize)" 1624msgid "Wrap output in HTML link (obsoleted by urlize)"
1504msgstr "" 1625msgstr ""
1505 1626
1506#: plugins/check_http.c:1530 1627#: plugins/check_http.c:1813
1507msgid "How to handle redirected pages. sticky is like follow but stick to the" 1628msgid "How to handle redirected pages. sticky is like follow but stick to the"
1508msgstr "" 1629msgstr ""
1509 1630
1510#: plugins/check_http.c:1531 1631#: plugins/check_http.c:1814
1511msgid "specified IP address. stickyport also ensures port stays the same." 1632msgid "specified IP address. stickyport also ensures port stays the same."
1512msgstr "" 1633msgstr ""
1513 1634
1514#: plugins/check_http.c:1533 1635#: plugins/check_http.c:1816
1636msgid "Maximal number of redirects (default: "
1637msgstr ""
1638
1639#: plugins/check_http.c:1819
1515msgid "Minimum page size required (bytes) : Maximum page size required (bytes)" 1640msgid "Minimum page size required (bytes) : Maximum page size required (bytes)"
1516msgstr "" 1641msgstr ""
1517 1642
1518#: plugins/check_http.c:1543 1643#: plugins/check_http.c:1828
1519msgid "This plugin will attempt to open an HTTP connection with the host." 1644msgid "This plugin will attempt to open an HTTP connection with the host."
1520msgstr "" 1645msgstr ""
1521 1646
1522#: plugins/check_http.c:1544 1647#: plugins/check_http.c:1829
1523msgid "" 1648msgid ""
1524"Successful connects return STATE_OK, refusals and timeouts return " 1649"Successful connects return STATE_OK, refusals and timeouts return "
1525"STATE_CRITICAL" 1650"STATE_CRITICAL"
1526msgstr "" 1651msgstr ""
1527 1652
1528#: plugins/check_http.c:1545 1653#: plugins/check_http.c:1830
1529msgid "" 1654msgid ""
1530"other errors return STATE_UNKNOWN. Successful connects, but incorrect " 1655"other errors return STATE_UNKNOWN. Successful connects, but incorrect "
1531"response" 1656"response"
1532msgstr "" 1657msgstr ""
1533 1658
1534#: plugins/check_http.c:1546 1659#: plugins/check_http.c:1831
1535msgid "" 1660msgid ""
1536"messages from the host result in STATE_WARNING return values. If you are" 1661"messages from the host result in STATE_WARNING return values. If you are"
1537msgstr "" 1662msgstr ""
1538 1663
1539#: plugins/check_http.c:1547 1664#: plugins/check_http.c:1832
1540msgid "" 1665msgid ""
1541"checking a virtual server that uses 'host headers' you must supply the FQDN" 1666"checking a virtual server that uses 'host headers' you must supply the FQDN"
1542msgstr "" 1667msgstr ""
1543 1668
1544#: plugins/check_http.c:1548 1669#: plugins/check_http.c:1833
1545msgid "(fully qualified domain name) as the [host_name] argument." 1670msgid "(fully qualified domain name) as the [host_name] argument."
1546msgstr "" 1671msgstr ""
1547 1672
1548#: plugins/check_http.c:1552 1673#: plugins/check_http.c:1837
1549msgid "This plugin can also check whether an SSL enabled web server is able to" 1674msgid "This plugin can also check whether an SSL enabled web server is able to"
1550msgstr "" 1675msgstr ""
1551 1676
1552#: plugins/check_http.c:1553 1677#: plugins/check_http.c:1838
1553msgid "serve content (optionally within a specified time) or whether the X509 " 1678msgid "serve content (optionally within a specified time) or whether the X509 "
1554msgstr "" 1679msgstr ""
1555 1680
1556#: plugins/check_http.c:1554 1681#: plugins/check_http.c:1839
1557msgid "certificate is still valid for the specified number of days." 1682msgid "certificate is still valid for the specified number of days."
1558msgstr "" 1683msgstr ""
1559 1684
1560#: plugins/check_http.c:1556 1685#: plugins/check_http.c:1841
1561msgid "Please note that this plugin does not check if the presented server" 1686msgid "Please note that this plugin does not check if the presented server"
1562msgstr "" 1687msgstr ""
1563 1688
1564#: plugins/check_http.c:1557 1689#: plugins/check_http.c:1842
1565msgid "certificate matches the hostname of the server, or if the certificate" 1690msgid "certificate matches the hostname of the server, or if the certificate"
1566msgstr "" 1691msgstr ""
1567 1692
1568#: plugins/check_http.c:1558 1693#: plugins/check_http.c:1843
1569msgid "has a valid chain of trust to one of the locally installed CAs." 1694msgid "has a valid chain of trust to one of the locally installed CAs."
1570msgstr "" 1695msgstr ""
1571 1696
1572#: plugins/check_http.c:1562 1697#: plugins/check_http.c:1847
1573msgid "" 1698msgid ""
1574"When the 'www.verisign.com' server returns its content within 5 seconds," 1699"When the 'www.verisign.com' server returns its content within 5 seconds,"
1575msgstr "" 1700msgstr ""
1576 1701
1577#: plugins/check_http.c:1563 1702#: plugins/check_http.c:1848 plugins/check_http.c:1867
1578msgid "" 1703msgid ""
1579"a STATE_OK will be returned. When the server returns its content but exceeds" 1704"a STATE_OK will be returned. When the server returns its content but exceeds"
1580msgstr "" 1705msgstr ""
1581 1706
1582#: plugins/check_http.c:1564 1707#: plugins/check_http.c:1849 plugins/check_http.c:1868
1583msgid "" 1708msgid ""
1584"the 5-second threshold, a STATE_WARNING will be returned. When an error " 1709"the 5-second threshold, a STATE_WARNING will be returned. When an error "
1585"occurs," 1710"occurs,"
1586msgstr "" 1711msgstr ""
1587 1712
1588#: plugins/check_http.c:1565 1713#: plugins/check_http.c:1850
1589msgid "a STATE_CRITICAL will be returned." 1714msgid "a STATE_CRITICAL will be returned."
1590msgstr "" 1715msgstr ""
1591 1716
1592#: plugins/check_http.c:1568 1717#: plugins/check_http.c:1853
1593msgid "" 1718msgid ""
1594"When the certificate of 'www.verisign.com' is valid for more than 14 days," 1719"When the certificate of 'www.verisign.com' is valid for more than 14 days,"
1595msgstr "" 1720msgstr ""
1596 1721
1597#: plugins/check_http.c:1569 plugins/check_http.c:1575 1722#: plugins/check_http.c:1854 plugins/check_http.c:1860
1598msgid "" 1723msgid ""
1599"a STATE_OK is returned. When the certificate is still valid, but for less " 1724"a STATE_OK is returned. When the certificate is still valid, but for less "
1600"than" 1725"than"
1601msgstr "" 1726msgstr ""
1602 1727
1603#: plugins/check_http.c:1570 1728#: plugins/check_http.c:1855
1604msgid "" 1729msgid ""
1605"14 days, a STATE_WARNING is returned. A STATE_CRITICAL will be returned when" 1730"14 days, a STATE_WARNING is returned. A STATE_CRITICAL will be returned when"
1606msgstr "" 1731msgstr ""
1607 1732
1608#: plugins/check_http.c:1571 1733#: plugins/check_http.c:1856
1609msgid "the certificate is expired." 1734msgid "the certificate is expired."
1610msgstr "" 1735msgstr ""
1611 1736
1612#: plugins/check_http.c:1574 1737#: plugins/check_http.c:1859
1613msgid "" 1738msgid ""
1614"When the certificate of 'www.verisign.com' is valid for more than 30 days," 1739"When the certificate of 'www.verisign.com' is valid for more than 30 days,"
1615msgstr "" 1740msgstr ""
1616 1741
1617#: plugins/check_http.c:1576 1742#: plugins/check_http.c:1861
1618msgid "30 days, but more than 14 days, a STATE_WARNING is returned." 1743msgid "30 days, but more than 14 days, a STATE_WARNING is returned."
1619msgstr "" 1744msgstr ""
1620 1745
1621#: plugins/check_http.c:1577 1746#: plugins/check_http.c:1862
1622msgid "" 1747msgid ""
1623"A STATE_CRITICAL will be returned when certificate expires in less than 14 " 1748"A STATE_CRITICAL will be returned when certificate expires in less than 14 "
1624"days" 1749"days"
1625msgstr "" 1750msgstr ""
1626 1751
1627#: plugins/check_ldap.c:133 1752#: plugins/check_http.c:1865
1753msgid ""
1754"check_http -I 192.168.100.35 -p 80 -u https://www.verisign.com/ -S -j "
1755"CONNECT -H www.verisign.com "
1756msgstr ""
1757
1758#: plugins/check_http.c:1866
1759msgid ""
1760"all these options are needed: -I <proxy> -p <proxy-port> -u <check-url> -"
1761"S(sl) -j CONNECT -H <webserver>"
1762msgstr ""
1763
1764#: plugins/check_http.c:1869
1765msgid ""
1766"a STATE_CRITICAL will be returned. By adding a colon to the method you can "
1767"set the method used"
1768msgstr ""
1769
1770#: plugins/check_http.c:1870
1771msgid "inside the proxied connection: -j CONNECT:POST"
1772msgstr ""
1773
1774#: plugins/check_ldap.c:142
1628#, c-format 1775#, c-format
1629msgid "Could not connect to the server at port %i\n" 1776msgid "Could not connect to the server at port %i\n"
1630msgstr "" 1777msgstr ""
1631 1778
1632#: plugins/check_ldap.c:142 1779#: plugins/check_ldap.c:151
1633#, c-format 1780#, c-format
1634msgid "Could not set protocol version %d\n" 1781msgid "Could not set protocol version %d\n"
1635msgstr "" 1782msgstr ""
1636 1783
1637#: plugins/check_ldap.c:157 1784#: plugins/check_ldap.c:166
1638#, c-format 1785#, c-format
1639msgid "Could not init TLS at port %i!\n" 1786msgid "Could not init TLS at port %i!\n"
1640msgstr "" 1787msgstr ""
1641 1788
1642#: plugins/check_ldap.c:161 1789#: plugins/check_ldap.c:170
1643#, c-format 1790#, c-format
1644msgid "TLS not supported by the libraries!\n" 1791msgid "TLS not supported by the libraries!\n"
1645msgstr "" 1792msgstr ""
1646 1793
1647#: plugins/check_ldap.c:181 1794#: plugins/check_ldap.c:190
1648#, c-format 1795#, c-format
1649msgid "Could not init startTLS at port %i!\n" 1796msgid "Could not init startTLS at port %i!\n"
1650msgstr "" 1797msgstr ""
1651 1798
1652#: plugins/check_ldap.c:185 1799#: plugins/check_ldap.c:194
1653#, c-format 1800#, c-format
1654msgid "startTLS not supported by the library, needs LDAPv3!\n" 1801msgid "startTLS not supported by the library, needs LDAPv3!\n"
1655msgstr "" 1802msgstr ""
1656 1803
1657#: plugins/check_ldap.c:195 1804#: plugins/check_ldap.c:204
1658#, c-format 1805#, c-format
1659msgid "Could not bind to the LDAP server\n" 1806msgid "Could not bind to the LDAP server\n"
1660msgstr "" 1807msgstr ""
1661 1808
1662#: plugins/check_ldap.c:204 1809#: plugins/check_ldap.c:213
1663#, c-format 1810#, c-format
1664msgid "Could not search/find objectclasses in %s\n" 1811msgid "Could not search/find objectclasses in %s\n"
1665msgstr "" 1812msgstr ""
1666 1813
1667#: plugins/check_ldap.c:227 1814#: plugins/check_ldap.c:252
1815#, c-format
1816msgid "LDAP %s - found %d entries in %.3f seconds|%s %s\n"
1817msgstr ""
1818
1819#: plugins/check_ldap.c:265
1668#, c-format 1820#, c-format
1669msgid "LDAP %s - %.3f seconds response time|%s\n" 1821msgid "LDAP %s - %.3f seconds response time|%s\n"
1670msgstr "" 1822msgstr ""
1671 1823
1672#: plugins/check_ldap.c:339 plugins/check_ldap.c:347 1824#: plugins/check_ldap.c:386 plugins/check_ldap.c:394
1673#, c-format 1825#, c-format
1674msgid "%s cannot be combined with %s" 1826msgid "%s cannot be combined with %s"
1675msgstr "" 1827msgstr ""
1676 1828
1677#: plugins/check_ldap.c:379 1829#: plugins/check_ldap.c:426
1678msgid "Please specify the host name\n" 1830msgid "Please specify the host name\n"
1679msgstr "" 1831msgstr ""
1680 1832
1681#: plugins/check_ldap.c:382 1833#: plugins/check_ldap.c:429
1682msgid "Please specify the LDAP base\n" 1834msgid "Please specify the LDAP base\n"
1683msgstr "" 1835msgstr ""
1684 1836
1685#: plugins/check_ldap.c:411 1837#: plugins/check_ldap.c:465
1686msgid "ldap attribute to search (default: \"(objectclass=*)\"" 1838msgid "ldap attribute to search (default: \"(objectclass=*)\""
1687msgstr "" 1839msgstr ""
1688 1840
1689#: plugins/check_ldap.c:413 1841#: plugins/check_ldap.c:467
1690msgid "ldap base (eg. ou=my unit, o=my org, c=at" 1842msgid "ldap base (eg. ou=my unit, o=my org, c=at"
1691msgstr "" 1843msgstr ""
1692 1844
1693#: plugins/check_ldap.c:415 1845#: plugins/check_ldap.c:469
1694msgid "ldap bind DN (if required)" 1846msgid "ldap bind DN (if required)"
1695msgstr "" 1847msgstr ""
1696 1848
1697#: plugins/check_ldap.c:417 1849#: plugins/check_ldap.c:471
1698msgid "ldap password (if required)" 1850msgid ""
1851"ldap password (if required, or set the password through environment variable "
1852"'LDAP_PASSWORD')"
1699msgstr "" 1853msgstr ""
1700 1854
1701#: plugins/check_ldap.c:419 1855#: plugins/check_ldap.c:473
1702msgid "use starttls mechanism introduced in protocol version 3" 1856msgid "use starttls mechanism introduced in protocol version 3"
1703msgstr "" 1857msgstr ""
1704 1858
1705#: plugins/check_ldap.c:421 1859#: plugins/check_ldap.c:475
1706msgid "use ldaps (ldap v2 ssl method). this also sets the default port to" 1860msgid "use ldaps (ldap v2 ssl method). this also sets the default port to"
1707msgstr "" 1861msgstr ""
1708 1862
1709#: plugins/check_ldap.c:425 1863#: plugins/check_ldap.c:479
1710msgid "use ldap protocol version 2" 1864msgid "use ldap protocol version 2"
1711msgstr "" 1865msgstr ""
1712 1866
1713#: plugins/check_ldap.c:427 1867#: plugins/check_ldap.c:481
1714msgid "use ldap protocol version 3" 1868msgid "use ldap protocol version 3"
1715msgstr "" 1869msgstr ""
1716 1870
1717#: plugins/check_ldap.c:428 1871#: plugins/check_ldap.c:482
1718msgid "default protocol version:" 1872msgid "default protocol version:"
1719msgstr "" 1873msgstr ""
1720 1874
1721#: plugins/check_ldap.c:439 1875#: plugins/check_ldap.c:488
1876msgid "Number of found entries to result in warning status"
1877msgstr ""
1878
1879#: plugins/check_ldap.c:490
1880msgid "Number of found entries to result in critical status"
1881msgstr ""
1882
1883#: plugins/check_ldap.c:498
1722msgid "If this plugin is called via 'check_ldaps', method 'STARTTLS' will be" 1884msgid "If this plugin is called via 'check_ldaps', method 'STARTTLS' will be"
1723msgstr "" 1885msgstr ""
1724 1886
1725#: plugins/check_ldap.c:440 1887#: plugins/check_ldap.c:499
1726#, c-format 1888#, c-format
1727msgid "" 1889msgid ""
1728" implied (using default port %i) unless --port=636 is specified. In that " 1890" implied (using default port %i) unless --port=636 is specified. In that "
1729"case\n" 1891"case\n"
1730msgstr "" 1892msgstr ""
1731 1893
1732#: plugins/check_ldap.c:441 1894#: plugins/check_ldap.c:500
1733msgid "'SSL on connect' will be used no matter how the plugin was called." 1895msgid "'SSL on connect' will be used no matter how the plugin was called."
1734msgstr "" 1896msgstr ""
1735 1897
1736#: plugins/check_ldap.c:442 1898#: plugins/check_ldap.c:501
1737msgid "" 1899msgid ""
1738"This detection is deprecated, please use 'check_ldap' with the '--starttls' " 1900"This detection is deprecated, please use 'check_ldap' with the '--starttls' "
1739"or '--ssl' flags" 1901"or '--ssl' flags"
1740msgstr "" 1902msgstr ""
1741 1903
1742#: plugins/check_ldap.c:443 1904#: plugins/check_ldap.c:502
1743msgid "to define the behaviour explicitly instead." 1905msgid "to define the behaviour explicitly instead."
1744msgstr "" 1906msgstr ""
1745 1907
1746#: plugins/check_load.c:87 1908#: plugins/check_ldap.c:503
1909msgid "The parameters --warn-entries and --crit-entries are optional."
1910msgstr ""
1911
1912#: plugins/check_load.c:93
1747msgid "Warning threshold must be float or float triplet!\n" 1913msgid "Warning threshold must be float or float triplet!\n"
1748msgstr "" 1914msgstr ""
1749 1915
1750#: plugins/check_load.c:132 plugins/check_load.c:148 1916#: plugins/check_load.c:138 plugins/check_load.c:154
1751#, c-format 1917#, c-format
1752msgid "Error opening %s\n" 1918msgid "Error opening %s\n"
1753msgstr "" 1919msgstr ""
1754 1920
1755#: plugins/check_load.c:163 1921#: plugins/check_load.c:169
1756#, c-format 1922#, c-format
1757msgid "could not parse load from uptime: %s\n" 1923msgid "could not parse load from uptime %s: %d\n"
1758msgstr "" 1924msgstr ""
1759 1925
1760#: plugins/check_load.c:169 1926#: plugins/check_load.c:175
1761#, c-format 1927#, c-format
1762msgid "Error code %d returned in %s\n" 1928msgid "Error code %d returned in %s\n"
1763msgstr "" 1929msgstr ""
1764 1930
1765#: plugins/check_load.c:184 1931#: plugins/check_load.c:183
1766#, c-format 1932#, c-format
1767msgid "Error in getloadavg()\n" 1933msgid "Error in getloadavg()\n"
1768msgstr "" 1934msgstr ""
1769 1935
1770#: plugins/check_load.c:187 plugins/check_load.c:189 1936#: plugins/check_load.c:186 plugins/check_load.c:188
1771#, c-format 1937#, c-format
1772msgid "Error processing %s\n" 1938msgid "Error processing %s\n"
1773msgstr "" 1939msgstr ""
1774 1940
1775#: plugins/check_load.c:198 1941#: plugins/check_load.c:197 plugins/check_load.c:212
1776#, c-format 1942#, c-format
1777msgid "load average: %.2f, %.2f, %.2f" 1943msgid "load average: %.2f, %.2f, %.2f"
1778msgstr "" 1944msgstr ""
1779 1945
1780#: plugins/check_load.c:291 1946#: plugins/check_load.c:327
1781#, c-format 1947#, c-format
1782msgid "Critical threshold for %d-minute load average is not specified\n" 1948msgid "Critical threshold for %d-minute load average is not specified\n"
1783msgstr "" 1949msgstr ""
1784 1950
1785#: plugins/check_load.c:293 1951#: plugins/check_load.c:329
1786#, c-format 1952#, c-format
1787msgid "Warning threshold for %d-minute load average is not specified\n" 1953msgid "Warning threshold for %d-minute load average is not specified\n"
1788msgstr "" 1954msgstr ""
1789 1955
1790#: plugins/check_load.c:295 1956#: plugins/check_load.c:331
1791#, c-format 1957#, c-format
1792msgid "" 1958msgid ""
1793"Parameter inconsistency: %d-minute \"warning load\" is greater than " 1959"Parameter inconsistency: %d-minute \"warning load\" is greater than "
1794"\"critical load\"\n" 1960"\"critical load\"\n"
1795msgstr "" 1961msgstr ""
1796 1962
1797#: plugins/check_load.c:311 1963#: plugins/check_load.c:346
1798#, c-format 1964#, c-format
1799msgid "This plugin tests the current system load average." 1965msgid "This plugin tests the current system load average."
1800msgstr "" 1966msgstr ""
1801 1967
1802#: plugins/check_load.c:321 1968#: plugins/check_load.c:356
1803msgid "Exit with WARNING status if load average exceeds WLOADn" 1969msgid "Exit with WARNING status if load average exceeds WLOADn"
1804msgstr "" 1970msgstr ""
1805 1971
1806#: plugins/check_load.c:323 1972#: plugins/check_load.c:358
1807msgid "Exit with CRITICAL status if load average exceed CLOADn" 1973msgid "Exit with CRITICAL status if load average exceed CLOADn"
1808msgstr "" 1974msgstr ""
1809 1975
1810#: plugins/check_load.c:324 1976#: plugins/check_load.c:359
1811msgid "the load average format is the same used by \"uptime\" and \"w\"" 1977msgid "the load average format is the same used by \"uptime\" and \"w\""
1812msgstr "" 1978msgstr ""
1813 1979
1814#: plugins/check_load.c:326 1980#: plugins/check_load.c:361
1815msgid "Divide the load averages by the number of CPUs (when possible)" 1981msgid "Divide the load averages by the number of CPUs (when possible)"
1816msgstr "" 1982msgstr ""
1817 1983
1984#: plugins/check_load.c:363
1985msgid "Number of processes to show when printing the top consuming processes."
1986msgstr ""
1987
1988#: plugins/check_load.c:364
1989msgid "NUMBER_OF_PROCS=0 disables this feature. Default value is 0"
1990msgstr ""
1991
1992#: plugins/check_load.c:401
1993#, c-format
1994msgid "'%s' exited with non-zero status.\n"
1995msgstr ""
1996
1997#: plugins/check_load.c:405
1998#, c-format
1999msgid "some error occurred getting procs list.\n"
2000msgstr ""
2001
1818#: plugins/check_mrtg.c:75 2002#: plugins/check_mrtg.c:75
1819msgid "Could not parse arguments\n" 2003msgid "Could not parse arguments\n"
1820msgstr "" 2004msgstr ""
@@ -1989,7 +2173,7 @@ msgstr ""
1989 2173
1990#: plugins/check_mrtgtraf.c:194 2174#: plugins/check_mrtgtraf.c:194
1991#, c-format 2175#, c-format
1992msgid "%s. In = %0.1f %s, %s. Out = %0.1f %s|%s %s\n" 2176msgid "%s. In = %0.1f %s/s, %s. Out = %0.1f %s/s|%s %s\n"
1993msgstr "" 2177msgstr ""
1994 2178
1995#: plugins/check_mrtgtraf.c:207 2179#: plugins/check_mrtgtraf.c:207
@@ -2072,130 +2256,134 @@ msgstr ""
2072msgid "Usage" 2256msgid "Usage"
2073msgstr "" 2257msgstr ""
2074 2258
2075#: plugins/check_mysql.c:171 2259#: plugins/check_mysql.c:185
2076#, c-format 2260#, c-format
2077msgid "status store_result error: %s\n" 2261msgid "status store_result error: %s\n"
2078msgstr "" 2262msgstr ""
2079 2263
2080#: plugins/check_mysql.c:202 2264#: plugins/check_mysql.c:216
2081#, c-format 2265#, c-format
2082msgid "slave query error: %s\n" 2266msgid "slave query error: %s\n"
2083msgstr "" 2267msgstr ""
2084 2268
2085#: plugins/check_mysql.c:209 2269#: plugins/check_mysql.c:223
2086#, c-format 2270#, c-format
2087msgid "slave store_result error: %s\n" 2271msgid "slave store_result error: %s\n"
2088msgstr "" 2272msgstr ""
2089 2273
2090#: plugins/check_mysql.c:215 2274#: plugins/check_mysql.c:229
2091msgid "No slaves defined" 2275msgid "No slaves defined"
2092msgstr "" 2276msgstr ""
2093 2277
2094#: plugins/check_mysql.c:223 2278#: plugins/check_mysql.c:237
2095#, c-format 2279#, c-format
2096msgid "slave fetch row error: %s\n" 2280msgid "slave fetch row error: %s\n"
2097msgstr "" 2281msgstr ""
2098 2282
2099#: plugins/check_mysql.c:228 2283#: plugins/check_mysql.c:242
2100#, c-format 2284#, c-format
2101msgid "Slave running: %s" 2285msgid "Slave running: %s"
2102msgstr "" 2286msgstr ""
2103 2287
2104#: plugins/check_mysql.c:505 2288#: plugins/check_mysql.c:520
2105msgid "This program tests connections to a MySQL server" 2289msgid "This program tests connections to a MySQL server"
2106msgstr "" 2290msgstr ""
2107 2291
2108#: plugins/check_mysql.c:516 2292#: plugins/check_mysql.c:531
2293msgid "Ignore authentication failure and check for mysql connectivity only"
2294msgstr ""
2295
2296#: plugins/check_mysql.c:534
2109msgid "Use the specified socket (has no effect if -H is used)" 2297msgid "Use the specified socket (has no effect if -H is used)"
2110msgstr "" 2298msgstr ""
2111 2299
2112#: plugins/check_mysql.c:519 2300#: plugins/check_mysql.c:537
2113msgid "Check database with indicated name" 2301msgid "Check database with indicated name"
2114msgstr "" 2302msgstr ""
2115 2303
2116#: plugins/check_mysql.c:521 2304#: plugins/check_mysql.c:539
2117msgid "Read from the specified client options file" 2305msgid "Read from the specified client options file"
2118msgstr "" 2306msgstr ""
2119 2307
2120#: plugins/check_mysql.c:523 2308#: plugins/check_mysql.c:541
2121msgid "Use a client options group" 2309msgid "Use a client options group"
2122msgstr "" 2310msgstr ""
2123 2311
2124#: plugins/check_mysql.c:525 2312#: plugins/check_mysql.c:543
2125msgid "Connect using the indicated username" 2313msgid "Connect using the indicated username"
2126msgstr "" 2314msgstr ""
2127 2315
2128#: plugins/check_mysql.c:527 2316#: plugins/check_mysql.c:545
2129msgid "Use the indicated password to authenticate the connection" 2317msgid "Use the indicated password to authenticate the connection"
2130msgstr "" 2318msgstr ""
2131 2319
2132#: plugins/check_mysql.c:528 2320#: plugins/check_mysql.c:546
2133msgid "IMPORTANT: THIS FORM OF AUTHENTICATION IS NOT SECURE!!!" 2321msgid "IMPORTANT: THIS FORM OF AUTHENTICATION IS NOT SECURE!!!"
2134msgstr "" 2322msgstr ""
2135 2323
2136#: plugins/check_mysql.c:529 2324#: plugins/check_mysql.c:547
2137msgid "Your clear-text password could be visible as a process table entry" 2325msgid "Your clear-text password could be visible as a process table entry"
2138msgstr "" 2326msgstr ""
2139 2327
2140#: plugins/check_mysql.c:531 2328#: plugins/check_mysql.c:549
2141msgid "Check if the slave thread is running properly." 2329msgid "Check if the slave thread is running properly."
2142msgstr "" 2330msgstr ""
2143 2331
2144#: plugins/check_mysql.c:533 2332#: plugins/check_mysql.c:551
2145msgid "Exit with WARNING status if slave server is more than INTEGER seconds" 2333msgid "Exit with WARNING status if slave server is more than INTEGER seconds"
2146msgstr "" 2334msgstr ""
2147 2335
2148#: plugins/check_mysql.c:534 plugins/check_mysql.c:537 2336#: plugins/check_mysql.c:552 plugins/check_mysql.c:555
2149msgid "behind master" 2337msgid "behind master"
2150msgstr "" 2338msgstr ""
2151 2339
2152#: plugins/check_mysql.c:536 2340#: plugins/check_mysql.c:554
2153msgid "Exit with CRITICAL status if slave server is more then INTEGER seconds" 2341msgid "Exit with CRITICAL status if slave server is more then INTEGER seconds"
2154msgstr "" 2342msgstr ""
2155 2343
2156#: plugins/check_mysql.c:539 2344#: plugins/check_mysql.c:557
2157msgid "Use ssl encryptation" 2345msgid "Use ssl encryption"
2158msgstr "" 2346msgstr ""
2159 2347
2160#: plugins/check_mysql.c:541 2348#: plugins/check_mysql.c:559
2161msgid "Path to CA signing the cert" 2349msgid "Path to CA signing the cert"
2162msgstr "" 2350msgstr ""
2163 2351
2164#: plugins/check_mysql.c:543 2352#: plugins/check_mysql.c:561
2165msgid "Path to SSL certificate" 2353msgid "Path to SSL certificate"
2166msgstr "" 2354msgstr ""
2167 2355
2168#: plugins/check_mysql.c:545 2356#: plugins/check_mysql.c:563
2169msgid "Path to private SSL key" 2357msgid "Path to private SSL key"
2170msgstr "" 2358msgstr ""
2171 2359
2172#: plugins/check_mysql.c:547 2360#: plugins/check_mysql.c:565
2173msgid "Path to CA directory" 2361msgid "Path to CA directory"
2174msgstr "" 2362msgstr ""
2175 2363
2176#: plugins/check_mysql.c:549 2364#: plugins/check_mysql.c:567
2177msgid "List of valid SSL ciphers" 2365msgid "List of valid SSL ciphers"
2178msgstr "" 2366msgstr ""
2179 2367
2180#: plugins/check_mysql.c:553 2368#: plugins/check_mysql.c:571
2181msgid "" 2369msgid ""
2182"There are no required arguments. By default, the local database is checked" 2370"There are no required arguments. By default, the local database is checked"
2183msgstr "" 2371msgstr ""
2184 2372
2185#: plugins/check_mysql.c:554 2373#: plugins/check_mysql.c:572
2186msgid "" 2374msgid ""
2187"using the default unix socket. You can force TCP on localhost by using an" 2375"using the default unix socket. You can force TCP on localhost by using an"
2188msgstr "" 2376msgstr ""
2189 2377
2190#: plugins/check_mysql.c:555 2378#: plugins/check_mysql.c:573
2191msgid "IP address or FQDN ('localhost' will use the socket as well)." 2379msgid "IP address or FQDN ('localhost' will use the socket as well)."
2192msgstr "" 2380msgstr ""
2193 2381
2194#: plugins/check_mysql.c:559 2382#: plugins/check_mysql.c:577
2195msgid "You must specify -p with an empty string to force an empty password," 2383msgid "You must specify -p with an empty string to force an empty password,"
2196msgstr "" 2384msgstr ""
2197 2385
2198#: plugins/check_mysql.c:560 2386#: plugins/check_mysql.c:578
2199msgid "overriding any my.cnf settings." 2387msgid "overriding any my.cnf settings."
2200msgstr "" 2388msgstr ""
2201 2389
@@ -2216,7 +2404,7 @@ msgstr ""
2216msgid "Cannot parse Nagios log file for valid time" 2404msgid "Cannot parse Nagios log file for valid time"
2217msgstr "" 2405msgstr ""
2218 2406
2219#: plugins/check_nagios.c:183 plugins/check_procs.c:356 2407#: plugins/check_nagios.c:183 plugins/check_procs.c:379
2220#, c-format 2408#, c-format
2221msgid "%d process" 2409msgid "%d process"
2222msgid_plural "%d processes" 2410msgid_plural "%d processes"
@@ -2286,7 +2474,7 @@ msgstr ""
2286msgid "Wrong client version - running: %s, required: %s" 2474msgid "Wrong client version - running: %s, required: %s"
2287msgstr "" 2475msgstr ""
2288 2476
2289#: plugins/check_nt.c:153 plugins/check_nt.c:218 2477#: plugins/check_nt.c:153 plugins/check_nt.c:239
2290msgid "missing -l parameters" 2478msgid "missing -l parameters"
2291msgstr "" 2479msgstr ""
2292 2480
@@ -2312,495 +2500,521 @@ msgstr ""
2312msgid "not enough values for -l parameters" 2500msgid "not enough values for -l parameters"
2313msgstr "" 2501msgstr ""
2314 2502
2315#: plugins/check_nt.c:206 2503#: plugins/check_nt.c:208 plugins/check_nt.c:241
2316#, c-format 2504msgid "wrong -l argument"
2317msgid "System Uptime - %u day(s) %u hour(s) %u minute(s)"
2318msgstr "" 2505msgstr ""
2319 2506
2320#: plugins/check_nt.c:220 2507#: plugins/check_nt.c:225
2321msgid "wrong -l argument" 2508#, c-format
2509msgid "System Uptime - %u day(s) %u hour(s) %u minute(s) |uptime=%lu"
2322msgstr "" 2510msgstr ""
2323 2511
2324#: plugins/check_nt.c:236 2512#: plugins/check_nt.c:257
2325#, c-format 2513#, c-format
2326msgid "%s:\\ - total: %.2f Gb - used: %.2f Gb (%.0f%%) - free %.2f Gb (%.0f%%)" 2514msgid "%s:\\ - total: %.2f Gb - used: %.2f Gb (%.0f%%) - free %.2f Gb (%.0f%%)"
2327msgstr "" 2515msgstr ""
2328 2516
2329#: plugins/check_nt.c:239 2517#: plugins/check_nt.c:260
2330#, c-format 2518#, c-format
2331msgid "'%s:\\ Used Space'=%.2fGb;%.2f;%.2f;0.00;%.2f" 2519msgid "'%s:\\ Used Space'=%.2fGb;%.2f;%.2f;0.00;%.2f"
2332msgstr "" 2520msgstr ""
2333 2521
2334#: plugins/check_nt.c:253 2522#: plugins/check_nt.c:274
2335msgid "Free disk space : Invalid drive" 2523msgid "Free disk space : Invalid drive"
2336msgstr "" 2524msgstr ""
2337 2525
2338#: plugins/check_nt.c:263 2526#: plugins/check_nt.c:284
2339msgid "No service/process specified" 2527msgid "No service/process specified"
2340msgstr "" 2528msgstr ""
2341 2529
2342#: plugins/check_nt.c:271 plugins/check_nt.c:284 plugins/check_nt.c:288 2530#: plugins/check_nt.c:292 plugins/check_nt.c:305 plugins/check_nt.c:309
2343#: plugins/check_nt.c:622 2531#: plugins/check_nt.c:643
2344msgid "could not fetch information from server\n" 2532msgid "could not fetch information from server\n"
2345msgstr "" 2533msgstr ""
2346 2534
2347#: plugins/check_nt.c:296 2535#: plugins/check_nt.c:317
2348#, c-format 2536#, c-format
2349msgid "" 2537msgid ""
2350"Memory usage: total:%.2f Mb - used: %.2f Mb (%.0f%%) - free: %.2f Mb (%.0f%%)" 2538"Memory usage: total:%.2f MB - used: %.2f MB (%.0f%%) - free: %.2f MB (%.0f%%)"
2351msgstr "" 2539msgstr ""
2352 2540
2353#: plugins/check_nt.c:299 2541#: plugins/check_nt.c:320
2354#, c-format 2542#, c-format
2355msgid "'Memory usage'=%.2fMb;%.2f;%.2f;0.00;%.2f" 2543msgid "'Memory usage'=%.2fMB;%.2f;%.2f;0.00;%.2f"
2356msgstr "" 2544msgstr ""
2357 2545
2358#: plugins/check_nt.c:335 plugins/check_nt.c:420 plugins/check_nt.c:450 2546#: plugins/check_nt.c:356 plugins/check_nt.c:441 plugins/check_nt.c:471
2359msgid "No counter specified" 2547msgid "No counter specified"
2360msgstr "" 2548msgstr ""
2361 2549
2362#: plugins/check_nt.c:367 2550#: plugins/check_nt.c:388
2363msgid "Minimum value contains non-numbers" 2551msgid "Minimum value contains non-numbers"
2364msgstr "" 2552msgstr ""
2365 2553
2366#: plugins/check_nt.c:371 2554#: plugins/check_nt.c:392
2367msgid "Maximum value contains non-numbers" 2555msgid "Maximum value contains non-numbers"
2368msgstr "" 2556msgstr ""
2369 2557
2370#: plugins/check_nt.c:378 2558#: plugins/check_nt.c:399
2371msgid "No unit counter specified" 2559msgid "No unit counter specified"
2372msgstr "" 2560msgstr ""
2373 2561
2374#: plugins/check_nt.c:465 2562#: plugins/check_nt.c:486
2375msgid "Please specify a variable to check" 2563msgid "Please specify a variable to check"
2376msgstr "" 2564msgstr ""
2377 2565
2378#: plugins/check_nt.c:549 2566#: plugins/check_nt.c:570
2379msgid "Server port must be an integer\n" 2567msgid "Server port must be an integer\n"
2380msgstr "" 2568msgstr ""
2381 2569
2382#: plugins/check_nt.c:603 2570#: plugins/check_nt.c:624
2383msgid "You must provide a server address or host name" 2571msgid "You must provide a server address or host name"
2384msgstr "" 2572msgstr ""
2385 2573
2386#: plugins/check_nt.c:609 2574#: plugins/check_nt.c:630
2387msgid "None" 2575msgid "None"
2388msgstr "" 2576msgstr ""
2389 2577
2390#: plugins/check_nt.c:666 2578#: plugins/check_nt.c:687
2391msgid "This plugin collects data from the NSClient service running on a" 2579msgid "This plugin collects data from the NSClient service running on a"
2392msgstr "" 2580msgstr ""
2393 2581
2394#: plugins/check_nt.c:667 2582#: plugins/check_nt.c:688
2395msgid "Windows NT/2000/XP/2003 server." 2583msgid "Windows NT/2000/XP/2003 server."
2396msgstr "" 2584msgstr ""
2397 2585
2398#: plugins/check_nt.c:678 2586#: plugins/check_nt.c:699
2399msgid "Name of the host to check" 2587msgid "Name of the host to check"
2400msgstr "" 2588msgstr ""
2401 2589
2402#: plugins/check_nt.c:680 2590#: plugins/check_nt.c:701
2403msgid "Optional port number (default: " 2591msgid "Optional port number (default: "
2404msgstr "" 2592msgstr ""
2405 2593
2406#: plugins/check_nt.c:683 2594#: plugins/check_nt.c:704
2407msgid "Password needed for the request" 2595msgid "Password needed for the request"
2408msgstr "" 2596msgstr ""
2409 2597
2410#: plugins/check_nt.c:685 plugins/check_nwstat.c:1661 2598#: plugins/check_nt.c:706 plugins/check_nwstat.c:1661
2411#: plugins/check_overcr.c:432 2599#: plugins/check_overcr.c:432
2412msgid "Threshold which will result in a warning status" 2600msgid "Threshold which will result in a warning status"
2413msgstr "" 2601msgstr ""
2414 2602
2415#: plugins/check_nt.c:687 plugins/check_nwstat.c:1663 2603#: plugins/check_nt.c:708 plugins/check_nwstat.c:1663
2416#: plugins/check_overcr.c:434 2604#: plugins/check_overcr.c:434
2417msgid "Threshold which will result in a critical status" 2605msgid "Threshold which will result in a critical status"
2418msgstr "" 2606msgstr ""
2419 2607
2420#: plugins/check_nt.c:689 2608#: plugins/check_nt.c:710
2421msgid "Seconds before connection attempt times out (default: " 2609msgid "Seconds before connection attempt times out (default: "
2422msgstr "" 2610msgstr ""
2423 2611
2424#: plugins/check_nt.c:691 2612#: plugins/check_nt.c:712
2425msgid "Parameters passed to specified check (see below)" 2613msgid "Parameters passed to specified check (see below)"
2426msgstr "" 2614msgstr ""
2427 2615
2428#: plugins/check_nt.c:693 2616#: plugins/check_nt.c:714
2429msgid "Display options (currently only SHOWALL works)" 2617msgid "Display options (currently only SHOWALL works)"
2430msgstr "" 2618msgstr ""
2431 2619
2432#: plugins/check_nt.c:695 2620#: plugins/check_nt.c:716
2433msgid "Return UNKNOWN on timeouts" 2621msgid "Return UNKNOWN on timeouts"
2434msgstr "" 2622msgstr ""
2435 2623
2436#: plugins/check_nt.c:698 2624#: plugins/check_nt.c:719
2437msgid "Print this help screen" 2625msgid "Print this help screen"
2438msgstr "" 2626msgstr ""
2439 2627
2440#: plugins/check_nt.c:700 2628#: plugins/check_nt.c:721
2441msgid "Print version information" 2629msgid "Print version information"
2442msgstr "" 2630msgstr ""
2443 2631
2444#: plugins/check_nt.c:702 2632#: plugins/check_nt.c:723
2445msgid "Variable to check" 2633msgid "Variable to check"
2446msgstr "" 2634msgstr ""
2447 2635
2448#: plugins/check_nt.c:703 2636#: plugins/check_nt.c:724
2449msgid "Valid variables are:" 2637msgid "Valid variables are:"
2450msgstr "" 2638msgstr ""
2451 2639
2452#: plugins/check_nt.c:705 2640#: plugins/check_nt.c:726
2453msgid "Get the NSClient version" 2641msgid "Get the NSClient version"
2454msgstr "" 2642msgstr ""
2455 2643
2456#: plugins/check_nt.c:706 2644#: plugins/check_nt.c:727
2457msgid "If -l <version> is specified, will return warning if versions differ." 2645msgid "If -l <version> is specified, will return warning if versions differ."
2458msgstr "" 2646msgstr ""
2459 2647
2460#: plugins/check_nt.c:708 2648#: plugins/check_nt.c:729
2461msgid "Average CPU load on last x minutes." 2649msgid "Average CPU load on last x minutes."
2462msgstr "" 2650msgstr ""
2463 2651
2464#: plugins/check_nt.c:709 2652#: plugins/check_nt.c:730
2465msgid "Request a -l parameter with the following syntax:" 2653msgid "Request a -l parameter with the following syntax:"
2466msgstr "" 2654msgstr ""
2467 2655
2468#: plugins/check_nt.c:710 2656#: plugins/check_nt.c:731
2469msgid "-l <minutes range>,<warning threshold>,<critical threshold>." 2657msgid "-l <minutes range>,<warning threshold>,<critical threshold>."
2470msgstr "" 2658msgstr ""
2471 2659
2472#: plugins/check_nt.c:711 2660#: plugins/check_nt.c:732
2473msgid "<minute range> should be less than 24*60." 2661msgid "<minute range> should be less than 24*60."
2474msgstr "" 2662msgstr ""
2475 2663
2476#: plugins/check_nt.c:712 2664#: plugins/check_nt.c:733
2477msgid "" 2665msgid ""
2478"Thresholds are percentage and up to 10 requests can be done in one shot." 2666"Thresholds are percentage and up to 10 requests can be done in one shot."
2479msgstr "" 2667msgstr ""
2480 2668
2481#: plugins/check_nt.c:715 2669#: plugins/check_nt.c:736
2482msgid "Get the uptime of the machine." 2670msgid "Get the uptime of the machine."
2483msgstr "" 2671msgstr ""
2484 2672
2485#: plugins/check_nt.c:716 2673#: plugins/check_nt.c:737
2486msgid "No specific parameters. No warning or critical threshold" 2674msgid "-l <unit> "
2675msgstr ""
2676
2677#: plugins/check_nt.c:738
2678msgid "<unit> = seconds, minutes, hours, or days. (default: minutes)"
2487msgstr "" 2679msgstr ""
2488 2680
2489#: plugins/check_nt.c:718 2681#: plugins/check_nt.c:739
2682msgid "Thresholds will use the unit specified above."
2683msgstr ""
2684
2685#: plugins/check_nt.c:741
2490msgid "Size and percentage of disk use." 2686msgid "Size and percentage of disk use."
2491msgstr "" 2687msgstr ""
2492 2688
2493#: plugins/check_nt.c:719 2689#: plugins/check_nt.c:742
2494msgid "Request a -l parameter containing the drive letter only." 2690msgid "Request a -l parameter containing the drive letter only."
2495msgstr "" 2691msgstr ""
2496 2692
2497#: plugins/check_nt.c:720 plugins/check_nt.c:723 2693#: plugins/check_nt.c:743 plugins/check_nt.c:746
2498msgid "Warning and critical thresholds can be specified with -w and -c." 2694msgid "Warning and critical thresholds can be specified with -w and -c."
2499msgstr "" 2695msgstr ""
2500 2696
2501#: plugins/check_nt.c:722 2697#: plugins/check_nt.c:745
2502msgid "Memory use." 2698msgid "Memory use."
2503msgstr "" 2699msgstr ""
2504 2700
2505#: plugins/check_nt.c:725 2701#: plugins/check_nt.c:748
2506msgid "Check the state of one or several services." 2702msgid "Check the state of one or several services."
2507msgstr "" 2703msgstr ""
2508 2704
2509#: plugins/check_nt.c:726 plugins/check_nt.c:735 2705#: plugins/check_nt.c:749 plugins/check_nt.c:758
2510msgid "Request a -l parameters with the following syntax:" 2706msgid "Request a -l parameters with the following syntax:"
2511msgstr "" 2707msgstr ""
2512 2708
2513#: plugins/check_nt.c:727 2709#: plugins/check_nt.c:750
2514msgid "-l <service1>,<service2>,<service3>,..." 2710msgid "-l <service1>,<service2>,<service3>,..."
2515msgstr "" 2711msgstr ""
2516 2712
2517#: plugins/check_nt.c:728 2713#: plugins/check_nt.c:751
2518msgid "You can specify -d SHOWALL in case you want to see working services" 2714msgid "You can specify -d SHOWALL in case you want to see working services"
2519msgstr "" 2715msgstr ""
2520 2716
2521#: plugins/check_nt.c:729 2717#: plugins/check_nt.c:752
2522msgid "in the returned string." 2718msgid "in the returned string."
2523msgstr "" 2719msgstr ""
2524 2720
2525#: plugins/check_nt.c:731 2721#: plugins/check_nt.c:754
2526msgid "Check if one or several process are running." 2722msgid "Check if one or several process are running."
2527msgstr "" 2723msgstr ""
2528 2724
2529#: plugins/check_nt.c:732 2725#: plugins/check_nt.c:755
2530msgid "Same syntax as SERVICESTATE." 2726msgid "Same syntax as SERVICESTATE."
2531msgstr "" 2727msgstr ""
2532 2728
2533#: plugins/check_nt.c:734 2729#: plugins/check_nt.c:757
2534msgid "Check any performance counter of Windows NT/2000." 2730msgid "Check any performance counter of Windows NT/2000."
2535msgstr "" 2731msgstr ""
2536 2732
2537#: plugins/check_nt.c:736 2733#: plugins/check_nt.c:759
2538msgid "-l \"\\\\<performance object>\\\\counter\",\"<description>" 2734msgid "-l \"\\\\<performance object>\\\\counter\",\"<description>"
2539msgstr "" 2735msgstr ""
2540 2736
2541#: plugins/check_nt.c:737 2737#: plugins/check_nt.c:760
2542msgid "The <description> parameter is optional and is given to a printf " 2738msgid "The <description> parameter is optional and is given to a printf "
2543msgstr "" 2739msgstr ""
2544 2740
2545#: plugins/check_nt.c:738 2741#: plugins/check_nt.c:761
2546msgid "output command which requires a float parameter." 2742msgid "output command which requires a float parameter."
2547msgstr "" 2743msgstr ""
2548 2744
2549#: plugins/check_nt.c:739 2745#: plugins/check_nt.c:762
2550#, c-format 2746#, c-format
2551msgid "If <description> does not include \"%%\", it is used as a label." 2747msgid "If <description> does not include \"%%\", it is used as a label."
2552msgstr "" 2748msgstr ""
2553 2749
2554#: plugins/check_nt.c:740 plugins/check_nt.c:755 2750#: plugins/check_nt.c:763 plugins/check_nt.c:778
2555msgid "Some examples:" 2751msgid "Some examples:"
2556msgstr "" 2752msgstr ""
2557 2753
2558#: plugins/check_nt.c:744 2754#: plugins/check_nt.c:767
2559msgid "Check any performance counter object of Windows NT/2000." 2755msgid "Check any performance counter object of Windows NT/2000."
2560msgstr "" 2756msgstr ""
2561 2757
2562#: plugins/check_nt.c:745 2758#: plugins/check_nt.c:768
2563msgid "" 2759msgid ""
2564"Syntax: check_nt -H <hostname> -p <port> -v INSTANCES -l <counter object>" 2760"Syntax: check_nt -H <hostname> -p <port> -v INSTANCES -l <counter object>"
2565msgstr "" 2761msgstr ""
2566 2762
2567#: plugins/check_nt.c:746 2763#: plugins/check_nt.c:769
2568msgid "<counter object> is a Windows Perfmon Counter object (eg. Process)," 2764msgid "<counter object> is a Windows Perfmon Counter object (eg. Process),"
2569msgstr "" 2765msgstr ""
2570 2766
2571#: plugins/check_nt.c:747 2767#: plugins/check_nt.c:770
2572msgid "if it is two words, it should be enclosed in quotes" 2768msgid "if it is two words, it should be enclosed in quotes"
2573msgstr "" 2769msgstr ""
2574 2770
2575#: plugins/check_nt.c:748 2771#: plugins/check_nt.c:771
2576msgid "The returned results will be a comma-separated list of instances on " 2772msgid "The returned results will be a comma-separated list of instances on "
2577msgstr "" 2773msgstr ""
2578 2774
2579#: plugins/check_nt.c:749 2775#: plugins/check_nt.c:772
2580msgid " the selected computer for that object." 2776msgid " the selected computer for that object."
2581msgstr "" 2777msgstr ""
2582 2778
2583#: plugins/check_nt.c:750 2779#: plugins/check_nt.c:773
2584msgid "" 2780msgid ""
2585"The purpose of this is to be run from command line to determine what " 2781"The purpose of this is to be run from command line to determine what "
2586"instances" 2782"instances"
2587msgstr "" 2783msgstr ""
2588 2784
2589#: plugins/check_nt.c:751 2785#: plugins/check_nt.c:774
2590msgid "" 2786msgid ""
2591" are available for monitoring without having to log onto the Windows server" 2787" are available for monitoring without having to log onto the Windows server"
2592msgstr "" 2788msgstr ""
2593 2789
2594#: plugins/check_nt.c:752 2790#: plugins/check_nt.c:775
2595msgid " to run Perfmon directly." 2791msgid " to run Perfmon directly."
2596msgstr "" 2792msgstr ""
2597 2793
2598#: plugins/check_nt.c:753 2794#: plugins/check_nt.c:776
2599msgid "" 2795msgid ""
2600"It can also be used in scripts that automatically create the monitoring " 2796"It can also be used in scripts that automatically create the monitoring "
2601"service" 2797"service"
2602msgstr "" 2798msgstr ""
2603 2799
2604#: plugins/check_nt.c:754 2800#: plugins/check_nt.c:777
2605msgid " configuration files." 2801msgid " configuration files."
2606msgstr "" 2802msgstr ""
2607 2803
2608#: plugins/check_nt.c:756 2804#: plugins/check_nt.c:779
2609msgid "check_nt -H 192.168.1.1 -p 1248 -v INSTANCES -l Process" 2805msgid "check_nt -H 192.168.1.1 -p 1248 -v INSTANCES -l Process"
2610msgstr "" 2806msgstr ""
2611 2807
2612#: plugins/check_nt.c:759 2808#: plugins/check_nt.c:782
2613msgid "" 2809msgid ""
2614"- The NSClient service should be running on the server to get any information" 2810"- The NSClient service should be running on the server to get any information"
2615msgstr "" 2811msgstr ""
2616 2812
2617#: plugins/check_nt.c:761 2813#: plugins/check_nt.c:784
2618msgid "- Critical thresholds should be lower than warning thresholds" 2814msgid "- Critical thresholds should be lower than warning thresholds"
2619msgstr "" 2815msgstr ""
2620 2816
2621#: plugins/check_nt.c:762 2817#: plugins/check_nt.c:785
2622msgid "- Default port 1248 is sometimes in use by other services. The error" 2818msgid "- Default port 1248 is sometimes in use by other services. The error"
2623msgstr "" 2819msgstr ""
2624 2820
2625#: plugins/check_nt.c:763 2821#: plugins/check_nt.c:786
2626msgid "" 2822msgid ""
2627"output when this happens contains \"Cannot map xxxxx to protocol number\"." 2823"output when this happens contains \"Cannot map xxxxx to protocol number\"."
2628msgstr "" 2824msgstr ""
2629 2825
2630#: plugins/check_nt.c:764 2826#: plugins/check_nt.c:787
2631msgid "One fix for this is to change the port to something else on check_nt " 2827msgid "One fix for this is to change the port to something else on check_nt "
2632msgstr "" 2828msgstr ""
2633 2829
2634#: plugins/check_nt.c:765 2830#: plugins/check_nt.c:788
2635msgid "and on the client service it's connecting to." 2831msgid "and on the client service it's connecting to."
2636msgstr "" 2832msgstr ""
2637 2833
2638#: plugins/check_ntp.c:807 plugins/check_ntp_peer.c:612 2834#: plugins/check_ntp.c:629
2639#: plugins/check_ntp_time.c:571 2835#, c-format
2836msgid "jitter response too large (%lu bytes)\n"
2837msgstr ""
2838
2839#: plugins/check_ntp.c:817 plugins/check_ntp_peer.c:619
2840#: plugins/check_ntp_time.c:576
2640msgid "NTP CRITICAL:" 2841msgid "NTP CRITICAL:"
2641msgstr "" 2842msgstr ""
2642 2843
2643#: plugins/check_ntp.c:810 plugins/check_ntp_peer.c:615 2844#: plugins/check_ntp.c:820 plugins/check_ntp_peer.c:622
2644#: plugins/check_ntp_time.c:574 2845#: plugins/check_ntp_time.c:579
2645msgid "NTP WARNING:" 2846msgid "NTP WARNING:"
2646msgstr "" 2847msgstr ""
2647 2848
2648#: plugins/check_ntp.c:813 plugins/check_ntp_peer.c:618 2849#: plugins/check_ntp.c:823 plugins/check_ntp_peer.c:625
2649#: plugins/check_ntp_time.c:577 2850#: plugins/check_ntp_time.c:582
2650msgid "NTP OK:" 2851msgid "NTP OK:"
2651msgstr "" 2852msgstr ""
2652 2853
2653#: plugins/check_ntp.c:816 plugins/check_ntp_peer.c:621 2854#: plugins/check_ntp.c:826 plugins/check_ntp_peer.c:628
2654#: plugins/check_ntp_time.c:580 2855#: plugins/check_ntp_time.c:585
2655msgid "NTP UNKNOWN:" 2856msgid "NTP UNKNOWN:"
2656msgstr "" 2857msgstr ""
2657 2858
2658#: plugins/check_ntp.c:820 plugins/check_ntp_peer.c:630 2859#: plugins/check_ntp.c:830 plugins/check_ntp_peer.c:637
2659#: plugins/check_ntp_time.c:584 2860#: plugins/check_ntp_time.c:589
2660msgid "Offset unknown" 2861msgid "Offset unknown"
2661msgstr "" 2862msgstr ""
2662 2863
2663#: plugins/check_ntp.c:823 plugins/check_ntp_peer.c:633 2864#: plugins/check_ntp.c:833 plugins/check_ntp_peer.c:640
2664#: plugins/check_ntp_time.c:587 2865#: plugins/check_ntp_peer.c:642 plugins/check_ntp_peer.c:644
2866#: plugins/check_ntp_time.c:592
2665msgid "Offset" 2867msgid "Offset"
2666msgstr "" 2868msgstr ""
2667 2869
2668#: plugins/check_ntp.c:844 plugins/check_ntp_peer.c:662 2870#: plugins/check_ntp.c:854 plugins/check_ntp_peer.c:690
2669msgid "This plugin checks the selected ntp server" 2871msgid "This plugin checks the selected ntp server"
2670msgstr "" 2872msgstr ""
2671 2873
2672#: plugins/check_ntp.c:854 plugins/check_ntp_peer.c:674 2874#: plugins/check_ntp.c:864 plugins/check_ntp_peer.c:702
2673#: plugins/check_ntp_time.c:614 2875#: plugins/check_ntp_time.c:619
2674msgid "Offset to result in warning status (seconds)" 2876msgid "Offset to result in warning status (seconds)"
2675msgstr "" 2877msgstr ""
2676 2878
2677#: plugins/check_ntp.c:856 plugins/check_ntp_peer.c:676 2879#: plugins/check_ntp.c:866 plugins/check_ntp_peer.c:704
2678#: plugins/check_ntp_time.c:616 2880#: plugins/check_ntp_time.c:621
2679msgid "Offset to result in critical status (seconds)" 2881msgid "Offset to result in critical status (seconds)"
2680msgstr "" 2882msgstr ""
2681 2883
2682#: plugins/check_ntp.c:858 plugins/check_ntp_peer.c:682 2884#: plugins/check_ntp.c:868 plugins/check_ntp_peer.c:710
2683msgid "Warning threshold for jitter" 2885msgid "Warning threshold for jitter"
2684msgstr "" 2886msgstr ""
2685 2887
2686#: plugins/check_ntp.c:860 plugins/check_ntp_peer.c:684 2888#: plugins/check_ntp.c:870 plugins/check_ntp_peer.c:712
2687msgid "Critical threshold for jitter" 2889msgid "Critical threshold for jitter"
2688msgstr "" 2890msgstr ""
2689 2891
2690#: plugins/check_ntp.c:870 2892#: plugins/check_ntp.c:880
2691msgid "Normal offset check:" 2893msgid "Normal offset check:"
2692msgstr "" 2894msgstr ""
2693 2895
2694#: plugins/check_ntp.c:873 plugins/check_ntp_peer.c:709 2896#: plugins/check_ntp.c:883 plugins/check_ntp_peer.c:737
2695msgid "" 2897msgid ""
2696"Check jitter too, avoiding critical notifications if jitter isn't available" 2898"Check jitter too, avoiding critical notifications if jitter isn't available"
2697msgstr "" 2899msgstr ""
2698 2900
2699#: plugins/check_ntp.c:874 plugins/check_ntp_peer.c:710 2901#: plugins/check_ntp.c:884 plugins/check_ntp_peer.c:738
2700msgid "(See Notes above for more details on thresholds formats):" 2902msgid "(See Notes above for more details on thresholds formats):"
2701msgstr "" 2903msgstr ""
2702 2904
2703#: plugins/check_ntp.c:879 plugins/check_ntp.c:886 2905#: plugins/check_ntp.c:889 plugins/check_ntp.c:896
2704msgid "WARNING: check_ntp is deprecated. Please use check_ntp_peer or" 2906msgid "WARNING: check_ntp is deprecated. Please use check_ntp_peer or"
2705msgstr "" 2907msgstr ""
2706 2908
2707#: plugins/check_ntp.c:880 plugins/check_ntp.c:887 2909#: plugins/check_ntp.c:890 plugins/check_ntp.c:897
2708msgid "check_ntp_time instead." 2910msgid "check_ntp_time instead."
2709msgstr "" 2911msgstr ""
2710 2912
2711#: plugins/check_ntp_peer.c:625 2913#: plugins/check_ntp_peer.c:632
2712msgid "Server not synchronized" 2914msgid "Server not synchronized"
2713msgstr "" 2915msgstr ""
2714 2916
2715#: plugins/check_ntp_peer.c:627 2917#: plugins/check_ntp_peer.c:634
2716msgid "Server has the LI_ALARM bit set" 2918msgid "Server has the LI_ALARM bit set"
2717msgstr "" 2919msgstr ""
2718 2920
2719#: plugins/check_ntp_peer.c:672 2921#: plugins/check_ntp_peer.c:700
2720msgid "" 2922msgid ""
2721"Returns UNKNOWN instead of CRITICAL or WARNING if server isn't synchronized" 2923"Returns UNKNOWN instead of CRITICAL or WARNING if server isn't synchronized"
2722msgstr "" 2924msgstr ""
2723 2925
2724#: plugins/check_ntp_peer.c:678 2926#: plugins/check_ntp_peer.c:706
2725msgid "Warning threshold for stratum of server's synchronization peer" 2927msgid "Warning threshold for stratum of server's synchronization peer"
2726msgstr "" 2928msgstr ""
2727 2929
2728#: plugins/check_ntp_peer.c:680 2930#: plugins/check_ntp_peer.c:708
2729msgid "Critical threshold for stratum of server's synchronization peer" 2931msgid "Critical threshold for stratum of server's synchronization peer"
2730msgstr "" 2932msgstr ""
2731 2933
2732#: plugins/check_ntp_peer.c:686 2934#: plugins/check_ntp_peer.c:714
2733msgid "Warning threshold for number of usable time sources (\"truechimers\")" 2935msgid "Warning threshold for number of usable time sources (\"truechimers\")"
2734msgstr "" 2936msgstr ""
2735 2937
2736#: plugins/check_ntp_peer.c:688 2938#: plugins/check_ntp_peer.c:716
2737msgid "Critical threshold for number of usable time sources (\"truechimers\")" 2939msgid "Critical threshold for number of usable time sources (\"truechimers\")"
2738msgstr "" 2940msgstr ""
2739 2941
2740#: plugins/check_ntp_peer.c:693 2942#: plugins/check_ntp_peer.c:721
2741msgid "This plugin checks an NTP server independent of any commandline" 2943msgid "This plugin checks an NTP server independent of any commandline"
2742msgstr "" 2944msgstr ""
2743 2945
2744#: plugins/check_ntp_peer.c:694 2946#: plugins/check_ntp_peer.c:722
2745msgid "programs or external libraries." 2947msgid "programs or external libraries."
2746msgstr "" 2948msgstr ""
2747 2949
2748#: plugins/check_ntp_peer.c:697 2950#: plugins/check_ntp_peer.c:725
2749msgid "Use this plugin to check the health of an NTP server. It supports" 2951msgid "Use this plugin to check the health of an NTP server. It supports"
2750msgstr "" 2952msgstr ""
2751 2953
2752#: plugins/check_ntp_peer.c:698 2954#: plugins/check_ntp_peer.c:726
2753msgid "checking the offset with the sync peer, the jitter and stratum. This" 2955msgid "checking the offset with the sync peer, the jitter and stratum. This"
2754msgstr "" 2956msgstr ""
2755 2957
2756#: plugins/check_ntp_peer.c:699 2958#: plugins/check_ntp_peer.c:727
2757msgid "plugin will not check the clock offset between the local host and NTP" 2959msgid "plugin will not check the clock offset between the local host and NTP"
2758msgstr "" 2960msgstr ""
2759 2961
2760#: plugins/check_ntp_peer.c:700 2962#: plugins/check_ntp_peer.c:728
2761msgid "server; please use check_ntp_time for that purpose." 2963msgid "server; please use check_ntp_time for that purpose."
2762msgstr "" 2964msgstr ""
2763 2965
2764#: plugins/check_ntp_peer.c:706 2966#: plugins/check_ntp_peer.c:734
2765msgid "Simple NTP server check:" 2967msgid "Simple NTP server check:"
2766msgstr "" 2968msgstr ""
2767 2969
2768#: plugins/check_ntp_peer.c:713 2970#: plugins/check_ntp_peer.c:741
2769msgid "Only check the number of usable time sources (\"truechimers\"):" 2971msgid "Only check the number of usable time sources (\"truechimers\"):"
2770msgstr "" 2972msgstr ""
2771 2973
2772#: plugins/check_ntp_peer.c:716 2974#: plugins/check_ntp_peer.c:744
2773msgid "Check only stratum:" 2975msgid "Check only stratum:"
2774msgstr "" 2976msgstr ""
2775 2977
2776#: plugins/check_ntp_time.c:602 2978#: plugins/check_ntp_time.c:607
2777msgid "This plugin checks the clock offset with the ntp server" 2979msgid "This plugin checks the clock offset with the ntp server"
2778msgstr "" 2980msgstr ""
2779 2981
2780#: plugins/check_ntp_time.c:612 2982#: plugins/check_ntp_time.c:617
2781msgid "Returns UNKNOWN instead of CRITICAL if offset cannot be found" 2983msgid "Returns UNKNOWN instead of CRITICAL if offset cannot be found"
2782msgstr "" 2984msgstr ""
2783 2985
2784#: plugins/check_ntp_time.c:621 2986#: plugins/check_ntp_time.c:623
2987msgid "Expected offset of the ntp server relative to local server (seconds)"
2988msgstr ""
2989
2990#: plugins/check_ntp_time.c:628
2785msgid "This plugin checks the clock offset between the local host and a" 2991msgid "This plugin checks the clock offset between the local host and a"
2786msgstr "" 2992msgstr ""
2787 2993
2788#: plugins/check_ntp_time.c:622 2994#: plugins/check_ntp_time.c:629
2789msgid "remote NTP server. It is independent of any commandline programs or" 2995msgid "remote NTP server. It is independent of any commandline programs or"
2790msgstr "" 2996msgstr ""
2791 2997
2792#: plugins/check_ntp_time.c:623 2998#: plugins/check_ntp_time.c:630
2793msgid "external libraries." 2999msgid "external libraries."
2794msgstr "" 3000msgstr ""
2795 3001
2796#: plugins/check_ntp_time.c:627 3002#: plugins/check_ntp_time.c:634
2797msgid "If you'd rather want to monitor an NTP server, please use" 3003msgid "If you'd rather want to monitor an NTP server, please use"
2798msgstr "" 3004msgstr ""
2799 3005
2800#: plugins/check_ntp_time.c:628 3006#: plugins/check_ntp_time.c:635
2801msgid "check_ntp_peer." 3007msgid "check_ntp_peer."
2802msgstr "" 3008msgstr ""
2803 3009
3010#: plugins/check_ntp_time.c:636
3011msgid "--time-offset is useful for compensating for servers with known"
3012msgstr ""
3013
3014#: plugins/check_ntp_time.c:637
3015msgid "and expected clock skew."
3016msgstr ""
3017
2804#: plugins/check_nwstat.c:194 3018#: plugins/check_nwstat.c:194
2805#, c-format 3019#, c-format
2806msgid "NetWare %s: " 3020msgid "NetWare %s: "
@@ -3367,593 +3581,628 @@ msgid ""
3367"higher than the warning threshold value, EXCEPT with the uptime variable" 3581"higher than the warning threshold value, EXCEPT with the uptime variable"
3368msgstr "" 3582msgstr ""
3369 3583
3370#: plugins/check_pgsql.c:222 3584#: plugins/check_pgsql.c:224
3371#, c-format 3585#, c-format
3372msgid "CRITICAL - no connection to '%s' (%s).\n" 3586msgid "CRITICAL - no connection to '%s' (%s).\n"
3373msgstr "" 3587msgstr ""
3374 3588
3375#: plugins/check_pgsql.c:250 3589#: plugins/check_pgsql.c:252
3376#, c-format 3590#, c-format
3377msgid " %s - database %s (%f sec.)|%s\n" 3591msgid " %s - database %s (%f sec.)|%s\n"
3378msgstr "" 3592msgstr ""
3379 3593
3380#: plugins/check_pgsql.c:317 plugins/check_time.c:277 plugins/check_time.c:289 3594#: plugins/check_pgsql.c:320 plugins/check_time.c:277 plugins/check_time.c:289
3381#: plugins/check_users.c:181 3595#: plugins/check_users.c:228
3382msgid "Critical threshold must be a positive integer" 3596msgid "Critical threshold must be a positive integer"
3383msgstr "" 3597msgstr ""
3384 3598
3385#: plugins/check_pgsql.c:323 plugins/check_time.c:258 plugins/check_time.c:282 3599#: plugins/check_pgsql.c:326 plugins/check_time.c:258 plugins/check_time.c:282
3386#: plugins/check_users.c:187 plugins/check_users.c:197 3600#: plugins/check_users.c:226
3387#: plugins/check_users.c:203
3388msgid "Warning threshold must be a positive integer" 3601msgid "Warning threshold must be a positive integer"
3389msgstr "" 3602msgstr ""
3390 3603
3391#: plugins/check_pgsql.c:347 3604#: plugins/check_pgsql.c:350
3392msgid "Database name is not valid" 3605msgid "Database name exceeds the maximum length"
3393msgstr "" 3606msgstr ""
3394 3607
3395#: plugins/check_pgsql.c:353 3608#: plugins/check_pgsql.c:356
3396msgid "User name is not valid" 3609msgid "User name is not valid"
3397msgstr "" 3610msgstr ""
3398 3611
3399#: plugins/check_pgsql.c:504 3612#: plugins/check_pgsql.c:471
3400#, c-format 3613#, c-format
3401msgid "Test whether a PostgreSQL Database is accepting connections." 3614msgid "Test whether a PostgreSQL Database is accepting connections."
3402msgstr "" 3615msgstr ""
3403 3616
3404#: plugins/check_pgsql.c:516 3617#: plugins/check_pgsql.c:483
3405msgid "Database to check " 3618msgid "Database to check "
3406msgstr "" 3619msgstr ""
3407 3620
3408#: plugins/check_pgsql.c:517 3621#: plugins/check_pgsql.c:484
3409#, c-format 3622#, c-format
3410msgid "(default: %s)" 3623msgid "(default: %s)\n"
3411msgstr "" 3624msgstr ""
3412 3625
3413#: plugins/check_pgsql.c:519 3626#: plugins/check_pgsql.c:486
3414msgid "Login name of user" 3627msgid "Login name of user"
3415msgstr "" 3628msgstr ""
3416 3629
3417#: plugins/check_pgsql.c:521 3630#: plugins/check_pgsql.c:488
3418msgid "Password (BIG SECURITY ISSUE)" 3631msgid "Password (BIG SECURITY ISSUE)"
3419msgstr "" 3632msgstr ""
3420 3633
3421#: plugins/check_pgsql.c:523 3634#: plugins/check_pgsql.c:490
3422msgid "Connection parameters (keyword = value), see below" 3635msgid "Connection parameters (keyword = value), see below"
3423msgstr "" 3636msgstr ""
3424 3637
3425#: plugins/check_pgsql.c:530 3638#: plugins/check_pgsql.c:497
3426msgid "SQL query to run. Only first column in first row will be read" 3639msgid "SQL query to run. Only first column in first row will be read"
3427msgstr "" 3640msgstr ""
3428 3641
3429#: plugins/check_pgsql.c:532 3642#: plugins/check_pgsql.c:499
3643msgid "A name for the query, this string is used instead of the query"
3644msgstr ""
3645
3646#: plugins/check_pgsql.c:500
3647msgid "in the long output of the plugin"
3648msgstr ""
3649
3650#: plugins/check_pgsql.c:502
3430msgid "SQL query value to result in warning status (double)" 3651msgid "SQL query value to result in warning status (double)"
3431msgstr "" 3652msgstr ""
3432 3653
3433#: plugins/check_pgsql.c:534 3654#: plugins/check_pgsql.c:504
3434msgid "SQL query value to result in critical status (double)" 3655msgid "SQL query value to result in critical status (double)"
3435msgstr "" 3656msgstr ""
3436 3657
3437#: plugins/check_pgsql.c:539 3658#: plugins/check_pgsql.c:509
3438msgid "All parameters are optional." 3659msgid "All parameters are optional."
3439msgstr "" 3660msgstr ""
3440 3661
3441#: plugins/check_pgsql.c:540 3662#: plugins/check_pgsql.c:510
3442msgid "" 3663msgid ""
3443"This plugin tests a PostgreSQL DBMS to determine whether it is active and" 3664"This plugin tests a PostgreSQL DBMS to determine whether it is active and"
3444msgstr "" 3665msgstr ""
3445 3666
3446#: plugins/check_pgsql.c:541 3667#: plugins/check_pgsql.c:511
3447msgid "accepting queries. In its current operation, it simply connects to the" 3668msgid "accepting queries. In its current operation, it simply connects to the"
3448msgstr "" 3669msgstr ""
3449 3670
3450#: plugins/check_pgsql.c:542 3671#: plugins/check_pgsql.c:512
3451msgid "" 3672msgid ""
3452"specified database, and then disconnects. If no database is specified, it" 3673"specified database, and then disconnects. If no database is specified, it"
3453msgstr "" 3674msgstr ""
3454 3675
3455#: plugins/check_pgsql.c:543 3676#: plugins/check_pgsql.c:513
3456msgid "" 3677msgid ""
3457"connects to the template1 database, which is present in every functioning" 3678"connects to the template1 database, which is present in every functioning"
3458msgstr "" 3679msgstr ""
3459 3680
3460#: plugins/check_pgsql.c:544 3681#: plugins/check_pgsql.c:514
3461msgid "PostgreSQL DBMS." 3682msgid "PostgreSQL DBMS."
3462msgstr "" 3683msgstr ""
3463 3684
3464#: plugins/check_pgsql.c:546 3685#: plugins/check_pgsql.c:516
3465msgid "If a query is specified using the -q option, it will be executed after" 3686msgid "If a query is specified using the -q option, it will be executed after"
3466msgstr "" 3687msgstr ""
3467 3688
3468#: plugins/check_pgsql.c:547 3689#: plugins/check_pgsql.c:517
3469msgid "connecting to the server. The result from the query has to be numeric." 3690msgid "connecting to the server. The result from the query has to be numeric."
3470msgstr "" 3691msgstr ""
3471 3692
3472#: plugins/check_pgsql.c:548 3693#: plugins/check_pgsql.c:518
3473msgid "" 3694msgid ""
3474"Multiple SQL commands, separated by semicolon, are allowed but the result " 3695"Multiple SQL commands, separated by semicolon, are allowed but the result "
3475msgstr "" 3696msgstr ""
3476 3697
3477#: plugins/check_pgsql.c:549 3698#: plugins/check_pgsql.c:519
3478msgid "of the last command is taken into account only. The value of the first" 3699msgid "of the last command is taken into account only. The value of the first"
3479msgstr "" 3700msgstr ""
3480 3701
3481#: plugins/check_pgsql.c:550 3702#: plugins/check_pgsql.c:520
3482msgid "column in the first row is used as the check result." 3703msgid ""
3704"column in the first row is used as the check result. If a second column is"
3705msgstr ""
3706
3707#: plugins/check_pgsql.c:521
3708msgid "present in the result set, this is added to the plugin output with a"
3709msgstr ""
3710
3711#: plugins/check_pgsql.c:522
3712msgid ""
3713"prefix of \"Extra Info:\". This information can be displayed in the system"
3483msgstr "" 3714msgstr ""
3484 3715
3485#: plugins/check_pgsql.c:552 3716#: plugins/check_pgsql.c:523
3717msgid "executing the plugin."
3718msgstr ""
3719
3720#: plugins/check_pgsql.c:525
3486msgid "" 3721msgid ""
3487"See the chapter \"Monitoring Database Activity\" of the PostgreSQL manual" 3722"See the chapter \"Monitoring Database Activity\" of the PostgreSQL manual"
3488msgstr "" 3723msgstr ""
3489 3724
3490#: plugins/check_pgsql.c:553 3725#: plugins/check_pgsql.c:526
3491msgid "" 3726msgid ""
3492"for details about how to access internal statistics of the database server." 3727"for details about how to access internal statistics of the database server."
3493msgstr "" 3728msgstr ""
3494 3729
3495#: plugins/check_pgsql.c:555 3730#: plugins/check_pgsql.c:528
3496msgid "" 3731msgid ""
3497"For a list of available connection parameters which may be used with the -o" 3732"For a list of available connection parameters which may be used with the -o"
3498msgstr "" 3733msgstr ""
3499 3734
3500#: plugins/check_pgsql.c:556 3735#: plugins/check_pgsql.c:529
3501msgid "" 3736msgid ""
3502"command line option, see the documentation for PQconnectdb() in the chapter" 3737"command line option, see the documentation for PQconnectdb() in the chapter"
3503msgstr "" 3738msgstr ""
3504 3739
3505#: plugins/check_pgsql.c:557 3740#: plugins/check_pgsql.c:530
3506msgid "" 3741msgid ""
3507"\"libpq - C Library\" of the PostgreSQL manual. For example, this may be" 3742"\"libpq - C Library\" of the PostgreSQL manual. For example, this may be"
3508msgstr "" 3743msgstr ""
3509 3744
3510#: plugins/check_pgsql.c:558 3745#: plugins/check_pgsql.c:531
3511msgid "" 3746msgid ""
3512"used to specify a service name in pg_service.conf to be used for additional" 3747"used to specify a service name in pg_service.conf to be used for additional"
3513msgstr "" 3748msgstr ""
3514 3749
3515#: plugins/check_pgsql.c:559 3750#: plugins/check_pgsql.c:532
3516msgid "connection parameters: -o 'service=<name>' or to specify the SSL mode:" 3751msgid "connection parameters: -o 'service=<name>' or to specify the SSL mode:"
3517msgstr "" 3752msgstr ""
3518 3753
3519#: plugins/check_pgsql.c:560 3754#: plugins/check_pgsql.c:533
3520msgid "-o 'sslmode=require'." 3755msgid "-o 'sslmode=require'."
3521msgstr "" 3756msgstr ""
3522 3757
3523#: plugins/check_pgsql.c:562 3758#: plugins/check_pgsql.c:535
3524msgid "" 3759msgid ""
3525"The plugin will connect to a local postmaster if no host is specified. To" 3760"The plugin will connect to a local postmaster if no host is specified. To"
3526msgstr "" 3761msgstr ""
3527 3762
3528#: plugins/check_pgsql.c:563 3763#: plugins/check_pgsql.c:536
3529msgid "" 3764msgid ""
3530"connect to a remote host, be sure that the remote postmaster accepts TCP/IP" 3765"connect to a remote host, be sure that the remote postmaster accepts TCP/IP"
3531msgstr "" 3766msgstr ""
3532 3767
3533#: plugins/check_pgsql.c:564 3768#: plugins/check_pgsql.c:537
3534msgid "connections (start the postmaster with the -i option)." 3769msgid "connections (start the postmaster with the -i option)."
3535msgstr "" 3770msgstr ""
3536 3771
3537#: plugins/check_pgsql.c:566 3772#: plugins/check_pgsql.c:539
3538msgid "" 3773msgid ""
3539"Typically, the monitoring user (unless the --logname option is used) should " 3774"Typically, the monitoring user (unless the --logname option is used) should "
3540"be" 3775"be"
3541msgstr "" 3776msgstr ""
3542 3777
3543#: plugins/check_pgsql.c:567 3778#: plugins/check_pgsql.c:540
3544msgid "" 3779msgid ""
3545"able to connect to the database without a password. The plugin can also send" 3780"able to connect to the database without a password. The plugin can also send"
3546msgstr "" 3781msgstr ""
3547 3782
3548#: plugins/check_pgsql.c:568 3783#: plugins/check_pgsql.c:541
3549msgid "a password, but no effort is made to obscure or encrypt the password." 3784msgid "a password, but no effort is made to obscure or encrypt the password."
3550msgstr "" 3785msgstr ""
3551 3786
3552#: plugins/check_pgsql.c:601 3787#: plugins/check_pgsql.c:575
3553#, c-format 3788#, c-format
3554msgid "QUERY %s - %s: %s.\n" 3789msgid "QUERY %s - %s: %s.\n"
3555msgstr "" 3790msgstr ""
3556 3791
3557#: plugins/check_pgsql.c:601 3792#: plugins/check_pgsql.c:575
3558msgid "Error with query" 3793msgid "Error with query"
3559msgstr "" 3794msgstr ""
3560 3795
3561#: plugins/check_pgsql.c:607 3796#: plugins/check_pgsql.c:581
3562msgid "No rows returned" 3797msgid "No rows returned"
3563msgstr "" 3798msgstr ""
3564 3799
3565#: plugins/check_pgsql.c:612 3800#: plugins/check_pgsql.c:586
3566msgid "No columns returned" 3801msgid "No columns returned"
3567msgstr "" 3802msgstr ""
3568 3803
3569#: plugins/check_pgsql.c:618 3804#: plugins/check_pgsql.c:592
3570msgid "No data returned" 3805msgid "No data returned"
3571msgstr "" 3806msgstr ""
3572 3807
3573#: plugins/check_pgsql.c:627 3808#: plugins/check_pgsql.c:601
3574msgid "Is not a numeric" 3809msgid "Is not a numeric"
3575msgstr "" 3810msgstr ""
3576 3811
3577#: plugins/check_pgsql.c:644 3812#: plugins/check_pgsql.c:619
3813#, c-format
3814msgid "%s returned %f"
3815msgstr ""
3816
3817#: plugins/check_pgsql.c:622
3578#, c-format 3818#, c-format
3579msgid "'%s' returned %f" 3819msgid "'%s' returned %f"
3580msgstr "" 3820msgstr ""
3581 3821
3582#: plugins/check_ping.c:141 3822#: plugins/check_ping.c:143
3583msgid "CRITICAL - Could not interpret output from ping command\n" 3823msgid "CRITICAL - Could not interpret output from ping command\n"
3584msgstr "" 3824msgstr ""
3585 3825
3586#: plugins/check_ping.c:157 3826#: plugins/check_ping.c:159
3587#, c-format 3827#, c-format
3588msgid "PING %s - %sPacket loss = %d%%" 3828msgid "PING %s - %sPacket loss = %d%%"
3589msgstr "" 3829msgstr ""
3590 3830
3591#: plugins/check_ping.c:160 3831#: plugins/check_ping.c:162
3592#, c-format 3832#, c-format
3593msgid "PING %s - %sPacket loss = %d%%, RTA = %2.2f ms" 3833msgid "PING %s - %sPacket loss = %d%%, RTA = %2.2f ms"
3594msgstr "" 3834msgstr ""
3595 3835
3596#: plugins/check_ping.c:257 3836#: plugins/check_ping.c:263
3597msgid "Could not realloc() addresses\n" 3837msgid "Could not realloc() addresses\n"
3598msgstr "" 3838msgstr ""
3599 3839
3600#: plugins/check_ping.c:272 plugins/check_ping.c:352 3840#: plugins/check_ping.c:278 plugins/check_ping.c:358
3601#, c-format 3841#, c-format
3602msgid "<max_packets> (%s) must be a non-negative number\n" 3842msgid "<max_packets> (%s) must be a non-negative number\n"
3603msgstr "" 3843msgstr ""
3604 3844
3605#: plugins/check_ping.c:306 3845#: plugins/check_ping.c:312
3606#, c-format 3846#, c-format
3607msgid "<wpl> (%s) must be an integer percentage\n" 3847msgid "<wpl> (%s) must be an integer percentage\n"
3608msgstr "" 3848msgstr ""
3609 3849
3610#: plugins/check_ping.c:317 3850#: plugins/check_ping.c:323
3611#, c-format 3851#, c-format
3612msgid "<cpl> (%s) must be an integer percentage\n" 3852msgid "<cpl> (%s) must be an integer percentage\n"
3613msgstr "" 3853msgstr ""
3614 3854
3615#: plugins/check_ping.c:328 3855#: plugins/check_ping.c:334
3616#, c-format 3856#, c-format
3617msgid "<wrta> (%s) must be a non-negative number\n" 3857msgid "<wrta> (%s) must be a non-negative number\n"
3618msgstr "" 3858msgstr ""
3619 3859
3620#: plugins/check_ping.c:339 3860#: plugins/check_ping.c:345
3621#, c-format 3861#, c-format
3622msgid "<crta> (%s) must be a non-negative number\n" 3862msgid "<crta> (%s) must be a non-negative number\n"
3623msgstr "" 3863msgstr ""
3624 3864
3625#: plugins/check_ping.c:372 3865#: plugins/check_ping.c:378
3626#, c-format 3866#, c-format
3627msgid "" 3867msgid ""
3628"%s: Warning threshold must be integer or percentage!\n" 3868"%s: Warning threshold must be integer or percentage!\n"
3629"\n" 3869"\n"
3630msgstr "" 3870msgstr ""
3631 3871
3632#: plugins/check_ping.c:385 3872#: plugins/check_ping.c:391
3633#, c-format 3873#, c-format
3634msgid "<wrta> was not set\n" 3874msgid "<wrta> was not set\n"
3635msgstr "" 3875msgstr ""
3636 3876
3637#: plugins/check_ping.c:389 3877#: plugins/check_ping.c:395
3638#, c-format 3878#, c-format
3639msgid "<crta> was not set\n" 3879msgid "<crta> was not set\n"
3640msgstr "" 3880msgstr ""
3641 3881
3642#: plugins/check_ping.c:393 3882#: plugins/check_ping.c:399
3643#, c-format 3883#, c-format
3644msgid "<wpl> was not set\n" 3884msgid "<wpl> was not set\n"
3645msgstr "" 3885msgstr ""
3646 3886
3647#: plugins/check_ping.c:397 3887#: plugins/check_ping.c:403
3648#, c-format 3888#, c-format
3649msgid "<cpl> was not set\n" 3889msgid "<cpl> was not set\n"
3650msgstr "" 3890msgstr ""
3651 3891
3652#: plugins/check_ping.c:401 3892#: plugins/check_ping.c:407
3653#, c-format 3893#, c-format
3654msgid "<wrta> (%f) cannot be larger than <crta> (%f)\n" 3894msgid "<wrta> (%f) cannot be larger than <crta> (%f)\n"
3655msgstr "" 3895msgstr ""
3656 3896
3657#: plugins/check_ping.c:405 3897#: plugins/check_ping.c:411
3658#, c-format 3898#, c-format
3659msgid "<wpl> (%d) cannot be larger than <cpl> (%d)\n" 3899msgid "<wpl> (%d) cannot be larger than <cpl> (%d)\n"
3660msgstr "" 3900msgstr ""
3661 3901
3662#: plugins/check_ping.c:442 3902#: plugins/check_ping.c:448
3663#, c-format 3903#, c-format
3664msgid "Cannot open stderr for %s\n" 3904msgid "Cannot open stderr for %s\n"
3665msgstr "" 3905msgstr ""
3666 3906
3667#: plugins/check_ping.c:492 plugins/check_ping.c:494 3907#: plugins/check_ping.c:505 plugins/check_ping.c:507
3668msgid "System call sent warnings to stderr " 3908msgid "System call sent warnings to stderr "
3669msgstr "" 3909msgstr ""
3670 3910
3671#: plugins/check_ping.c:519 3911#: plugins/check_ping.c:533
3672#, c-format 3912#, c-format
3673msgid "CRITICAL - Network Unreachable (%s)\n" 3913msgid "CRITICAL - Network Unreachable (%s)\n"
3674msgstr "" 3914msgstr ""
3675 3915
3676#: plugins/check_ping.c:521 3916#: plugins/check_ping.c:535
3677#, c-format 3917#, c-format
3678msgid "CRITICAL - Host Unreachable (%s)\n" 3918msgid "CRITICAL - Host Unreachable (%s)\n"
3679msgstr "" 3919msgstr ""
3680 3920
3681#: plugins/check_ping.c:523 3921#: plugins/check_ping.c:537
3682#, c-format 3922#, c-format
3683msgid "CRITICAL - Bogus ICMP: Port Unreachable (%s)\n" 3923msgid "CRITICAL - Bogus ICMP: Port Unreachable (%s)\n"
3684msgstr "" 3924msgstr ""
3685 3925
3686#: plugins/check_ping.c:525 3926#: plugins/check_ping.c:539
3687#, c-format 3927#, c-format
3688msgid "CRITICAL - Bogus ICMP: Protocol Unreachable (%s)\n" 3928msgid "CRITICAL - Bogus ICMP: Protocol Unreachable (%s)\n"
3689msgstr "" 3929msgstr ""
3690 3930
3691#: plugins/check_ping.c:527 3931#: plugins/check_ping.c:541
3692#, c-format 3932#, c-format
3693msgid "CRITICAL - Network Prohibited (%s)\n" 3933msgid "CRITICAL - Network Prohibited (%s)\n"
3694msgstr "" 3934msgstr ""
3695 3935
3696#: plugins/check_ping.c:529 3936#: plugins/check_ping.c:543
3697#, c-format 3937#, c-format
3698msgid "CRITICAL - Host Prohibited (%s)\n" 3938msgid "CRITICAL - Host Prohibited (%s)\n"
3699msgstr "" 3939msgstr ""
3700 3940
3701#: plugins/check_ping.c:531 3941#: plugins/check_ping.c:545
3702#, c-format 3942#, c-format
3703msgid "CRITICAL - Packet Filtered (%s)\n" 3943msgid "CRITICAL - Packet Filtered (%s)\n"
3704msgstr "" 3944msgstr ""
3705 3945
3706#: plugins/check_ping.c:533 3946#: plugins/check_ping.c:547
3707#, c-format 3947#, c-format
3708msgid "CRITICAL - Host not found (%s)\n" 3948msgid "CRITICAL - Host not found (%s)\n"
3709msgstr "" 3949msgstr ""
3710 3950
3711#: plugins/check_ping.c:535 3951#: plugins/check_ping.c:549
3712#, c-format 3952#, c-format
3713msgid "CRITICAL - Time to live exceeded (%s)\n" 3953msgid "CRITICAL - Time to live exceeded (%s)\n"
3714msgstr "" 3954msgstr ""
3715 3955
3716#: plugins/check_ping.c:537 3956#: plugins/check_ping.c:551
3717#, c-format 3957#, c-format
3718msgid "CRITICAL - Destination Unreachable (%s)\n" 3958msgid "CRITICAL - Destination Unreachable (%s)\n"
3719msgstr "" 3959msgstr ""
3720 3960
3721#: plugins/check_ping.c:544 3961#: plugins/check_ping.c:558
3722msgid "Unable to realloc warn_text\n" 3962msgid "Unable to realloc warn_text\n"
3723msgstr "" 3963msgstr ""
3724 3964
3725#: plugins/check_ping.c:561 3965#: plugins/check_ping.c:575
3726#, c-format 3966#, c-format
3727msgid "Use ping to check connection statistics for a remote host." 3967msgid "Use ping to check connection statistics for a remote host."
3728msgstr "" 3968msgstr ""
3729 3969
3730#: plugins/check_ping.c:573 3970#: plugins/check_ping.c:587
3731msgid "host to ping" 3971msgid "host to ping"
3732msgstr "" 3972msgstr ""
3733 3973
3734#: plugins/check_ping.c:579 3974#: plugins/check_ping.c:593
3735msgid "number of ICMP ECHO packets to send" 3975msgid "number of ICMP ECHO packets to send"
3736msgstr "" 3976msgstr ""
3737 3977
3738#: plugins/check_ping.c:580 3978#: plugins/check_ping.c:594
3739#, c-format 3979#, c-format
3740msgid "(Default: %d)\n" 3980msgid "(Default: %d)\n"
3741msgstr "" 3981msgstr ""
3742 3982
3743#: plugins/check_ping.c:582 3983#: plugins/check_ping.c:596
3744msgid "show HTML in the plugin output (obsoleted by urlize)" 3984msgid "show HTML in the plugin output (obsoleted by urlize)"
3745msgstr "" 3985msgstr ""
3746 3986
3747#: plugins/check_ping.c:587 3987#: plugins/check_ping.c:601
3748msgid "THRESHOLD is <rta>,<pl>% where <rta> is the round trip average travel" 3988msgid "THRESHOLD is <rta>,<pl>% where <rta> is the round trip average travel"
3749msgstr "" 3989msgstr ""
3750 3990
3751#: plugins/check_ping.c:588 3991#: plugins/check_ping.c:602
3752msgid "time (ms) which triggers a WARNING or CRITICAL state, and <pl> is the" 3992msgid "time (ms) which triggers a WARNING or CRITICAL state, and <pl> is the"
3753msgstr "" 3993msgstr ""
3754 3994
3755#: plugins/check_ping.c:589 3995#: plugins/check_ping.c:603
3756msgid "percentage of packet loss to trigger an alarm state." 3996msgid "percentage of packet loss to trigger an alarm state."
3757msgstr "" 3997msgstr ""
3758 3998
3759#: plugins/check_ping.c:592 3999#: plugins/check_ping.c:606
3760msgid "" 4000msgid ""
3761"This plugin uses the ping command to probe the specified host for packet loss" 4001"This plugin uses the ping command to probe the specified host for packet loss"
3762msgstr "" 4002msgstr ""
3763 4003
3764#: plugins/check_ping.c:593 4004#: plugins/check_ping.c:607
3765msgid "" 4005msgid ""
3766"(percentage) and round trip average (milliseconds). It can produce HTML " 4006"(percentage) and round trip average (milliseconds). It can produce HTML "
3767"output" 4007"output"
3768msgstr "" 4008msgstr ""
3769 4009
3770#: plugins/check_ping.c:594 4010#: plugins/check_ping.c:608
3771msgid "" 4011msgid ""
3772"linking to a traceroute CGI contributed by Ian Cass. The CGI can be found in" 4012"linking to a traceroute CGI contributed by Ian Cass. The CGI can be found in"
3773msgstr "" 4013msgstr ""
3774 4014
3775#: plugins/check_ping.c:595 4015#: plugins/check_ping.c:609
3776msgid "the contrib area of the downloads section at http://www.nagios.org/" 4016msgid "the contrib area of the downloads section at http://www.nagios.org/"
3777msgstr "" 4017msgstr ""
3778 4018
3779#: plugins/check_procs.c:193 4019#: plugins/check_procs.c:197
3780#, c-format 4020#, c-format
3781msgid "CMD: %s\n" 4021msgid "CMD: %s\n"
3782msgstr "" 4022msgstr ""
3783 4023
3784#: plugins/check_procs.c:198 4024#: plugins/check_procs.c:202
3785msgid "System call sent warnings to stderr" 4025msgid "System call sent warnings to stderr"
3786msgstr "" 4026msgstr ""
3787 4027
3788#: plugins/check_procs.c:326 4028#: plugins/check_procs.c:349
3789#, c-format 4029#, c-format
3790msgid "Not parseable: %s" 4030msgid "Not parseable: %s"
3791msgstr "" 4031msgstr ""
3792 4032
3793#: plugins/check_procs.c:331 4033#: plugins/check_procs.c:354
3794#, c-format 4034#, c-format
3795msgid "Unable to read output\n" 4035msgid "Unable to read output\n"
3796msgstr "" 4036msgstr ""
3797 4037
3798#: plugins/check_procs.c:348 4038#: plugins/check_procs.c:371
3799#, c-format 4039#, c-format
3800msgid "%d warn out of " 4040msgid "%d warn out of "
3801msgstr "" 4041msgstr ""
3802 4042
3803#: plugins/check_procs.c:353 4043#: plugins/check_procs.c:376
3804#, c-format 4044#, c-format
3805msgid "%d crit, %d warn out of " 4045msgid "%d crit, %d warn out of "
3806msgstr "" 4046msgstr ""
3807 4047
3808#: plugins/check_procs.c:359 4048#: plugins/check_procs.c:382
3809#, c-format 4049#, c-format
3810msgid " with %s" 4050msgid " with %s"
3811msgstr "" 4051msgstr ""
3812 4052
3813#: plugins/check_procs.c:453 4053#: plugins/check_procs.c:477
3814msgid "Parent Process ID must be an integer!" 4054msgid "Parent Process ID must be an integer!"
3815msgstr "" 4055msgstr ""
3816 4056
3817#: plugins/check_procs.c:459 plugins/check_procs.c:586 4057#: plugins/check_procs.c:483 plugins/check_procs.c:627
3818#, c-format 4058#, c-format
3819msgid "%s%sSTATE = %s" 4059msgid "%s%sSTATE = %s"
3820msgstr "" 4060msgstr ""
3821 4061
3822#: plugins/check_procs.c:468 4062#: plugins/check_procs.c:492
3823msgid "UID was not found" 4063msgid "UID was not found"
3824msgstr "" 4064msgstr ""
3825 4065
3826#: plugins/check_procs.c:474 4066#: plugins/check_procs.c:498
3827msgid "User name was not found" 4067msgid "User name was not found"
3828msgstr "" 4068msgstr ""
3829 4069
3830#: plugins/check_procs.c:489 4070#: plugins/check_procs.c:513
3831#, c-format 4071#, c-format
3832msgid "%s%scommand name '%s'" 4072msgid "%s%scommand name '%s'"
3833msgstr "" 4073msgstr ""
3834 4074
3835#: plugins/check_procs.c:524 4075#: plugins/check_procs.c:522
4076#, c-format
4077msgid "%s%sexclude progs '%s'"
4078msgstr ""
4079
4080#: plugins/check_procs.c:565
3836msgid "RSS must be an integer!" 4081msgid "RSS must be an integer!"
3837msgstr "" 4082msgstr ""
3838 4083
3839#: plugins/check_procs.c:531 4084#: plugins/check_procs.c:572
3840msgid "VSZ must be an integer!" 4085msgid "VSZ must be an integer!"
3841msgstr "" 4086msgstr ""
3842 4087
3843#: plugins/check_procs.c:539 4088#: plugins/check_procs.c:580
3844msgid "PCPU must be a float!" 4089msgid "PCPU must be a float!"
3845msgstr "" 4090msgstr ""
3846 4091
3847#: plugins/check_procs.c:563 4092#: plugins/check_procs.c:604
3848msgid "Metric must be one of PROCS, VSZ, RSS, CPU, ELAPSED!" 4093msgid "Metric must be one of PROCS, VSZ, RSS, CPU, ELAPSED!"
3849msgstr "" 4094msgstr ""
3850 4095
3851#: plugins/check_procs.c:694 4096#: plugins/check_procs.c:735
3852msgid "" 4097msgid ""
3853"Checks all processes and generates WARNING or CRITICAL states if the " 4098"Checks all processes and generates WARNING or CRITICAL states if the "
3854"specified" 4099"specified"
3855msgstr "" 4100msgstr ""
3856 4101
3857#: plugins/check_procs.c:695 4102#: plugins/check_procs.c:736
3858msgid "" 4103msgid ""
3859"metric is outside the required threshold ranges. The metric defaults to " 4104"metric is outside the required threshold ranges. The metric defaults to "
3860"number" 4105"number"
3861msgstr "" 4106msgstr ""
3862 4107
3863#: plugins/check_procs.c:696 4108#: plugins/check_procs.c:737
3864msgid "" 4109msgid ""
3865"of processes. Search filters can be applied to limit the processes to check." 4110"of processes. Search filters can be applied to limit the processes to check."
3866msgstr "" 4111msgstr ""
3867 4112
3868#: plugins/check_procs.c:705 4113#: plugins/check_procs.c:746
3869msgid "Generate warning state if metric is outside this range" 4114msgid "Generate warning state if metric is outside this range"
3870msgstr "" 4115msgstr ""
3871 4116
3872#: plugins/check_procs.c:707 4117#: plugins/check_procs.c:748
3873msgid "Generate critical state if metric is outside this range" 4118msgid "Generate critical state if metric is outside this range"
3874msgstr "" 4119msgstr ""
3875 4120
3876#: plugins/check_procs.c:709 4121#: plugins/check_procs.c:750
3877msgid "Check thresholds against metric. Valid types:" 4122msgid "Check thresholds against metric. Valid types:"
3878msgstr "" 4123msgstr ""
3879 4124
3880#: plugins/check_procs.c:710 4125#: plugins/check_procs.c:751
3881msgid "PROCS - number of processes (default)" 4126msgid "PROCS - number of processes (default)"
3882msgstr "" 4127msgstr ""
3883 4128
3884#: plugins/check_procs.c:711 4129#: plugins/check_procs.c:752
3885msgid "VSZ - virtual memory size" 4130msgid "VSZ - virtual memory size"
3886msgstr "" 4131msgstr ""
3887 4132
3888#: plugins/check_procs.c:712 4133#: plugins/check_procs.c:753
3889msgid "RSS - resident set memory size" 4134msgid "RSS - resident set memory size"
3890msgstr "" 4135msgstr ""
3891 4136
3892#: plugins/check_procs.c:713 4137#: plugins/check_procs.c:754
3893msgid "CPU - percentage CPU" 4138msgid "CPU - percentage CPU"
3894msgstr "" 4139msgstr ""
3895 4140
3896#: plugins/check_procs.c:716 4141#: plugins/check_procs.c:757
3897msgid "ELAPSED - time elapsed in seconds" 4142msgid "ELAPSED - time elapsed in seconds"
3898msgstr "" 4143msgstr ""
3899 4144
3900#: plugins/check_procs.c:721 4145#: plugins/check_procs.c:762
3901msgid "Extra information. Up to 3 verbosity levels" 4146msgid "Extra information. Up to 3 verbosity levels"
3902msgstr "" 4147msgstr ""
3903 4148
3904#: plugins/check_procs.c:724 4149#: plugins/check_procs.c:765
3905msgid "Filter own process the traditional way by PID instead of /proc/pid/exe" 4150msgid "Filter own process the traditional way by PID instead of /proc/pid/exe"
3906msgstr "" 4151msgstr ""
3907 4152
3908#: plugins/check_procs.c:729 4153#: plugins/check_procs.c:770
3909msgid "Only scan for processes that have, in the output of `ps`, one or" 4154msgid "Only scan for processes that have, in the output of `ps`, one or"
3910msgstr "" 4155msgstr ""
3911 4156
3912#: plugins/check_procs.c:730 4157#: plugins/check_procs.c:771
3913msgid "more of the status flags you specify (for example R, Z, S, RS," 4158msgid "more of the status flags you specify (for example R, Z, S, RS,"
3914msgstr "" 4159msgstr ""
3915 4160
3916#: plugins/check_procs.c:731 4161#: plugins/check_procs.c:772
3917msgid "RSZDT, plus others based on the output of your 'ps' command)." 4162msgid "RSZDT, plus others based on the output of your 'ps' command)."
3918msgstr "" 4163msgstr ""
3919 4164
3920#: plugins/check_procs.c:733 4165#: plugins/check_procs.c:774
3921msgid "Only scan for children of the parent process ID indicated." 4166msgid "Only scan for children of the parent process ID indicated."
3922msgstr "" 4167msgstr ""
3923 4168
3924#: plugins/check_procs.c:735 4169#: plugins/check_procs.c:776
3925msgid "Only scan for processes with VSZ higher than indicated." 4170msgid "Only scan for processes with VSZ higher than indicated."
3926msgstr "" 4171msgstr ""
3927 4172
3928#: plugins/check_procs.c:737 4173#: plugins/check_procs.c:778
3929msgid "Only scan for processes with RSS higher than indicated." 4174msgid "Only scan for processes with RSS higher than indicated."
3930msgstr "" 4175msgstr ""
3931 4176
3932#: plugins/check_procs.c:739 4177#: plugins/check_procs.c:780
3933msgid "Only scan for processes with PCPU higher than indicated." 4178msgid "Only scan for processes with PCPU higher than indicated."
3934msgstr "" 4179msgstr ""
3935 4180
3936#: plugins/check_procs.c:741 4181#: plugins/check_procs.c:782
3937msgid "Only scan for processes with user name or ID indicated." 4182msgid "Only scan for processes with user name or ID indicated."
3938msgstr "" 4183msgstr ""
3939 4184
3940#: plugins/check_procs.c:743 4185#: plugins/check_procs.c:784
3941msgid "Only scan for processes with args that contain STRING." 4186msgid "Only scan for processes with args that contain STRING."
3942msgstr "" 4187msgstr ""
3943 4188
3944#: plugins/check_procs.c:745 4189#: plugins/check_procs.c:786
3945msgid "Only scan for processes with args that contain the regex STRING." 4190msgid "Only scan for processes with args that contain the regex STRING."
3946msgstr "" 4191msgstr ""
3947 4192
3948#: plugins/check_procs.c:747 4193#: plugins/check_procs.c:788
3949msgid "Only scan for exact matches of COMMAND (without path)." 4194msgid "Only scan for exact matches of COMMAND (without path)."
3950msgstr "" 4195msgstr ""
3951 4196
3952#: plugins/check_procs.c:749 4197#: plugins/check_procs.c:790
4198msgid "Exclude processes which match this comma separated list"
4199msgstr ""
4200
4201#: plugins/check_procs.c:792
3953msgid "Only scan for non kernel threads (works on Linux only)." 4202msgid "Only scan for non kernel threads (works on Linux only)."
3954msgstr "" 4203msgstr ""
3955 4204
3956#: plugins/check_procs.c:751 4205#: plugins/check_procs.c:794
3957#, c-format 4206#, c-format
3958msgid "" 4207msgid ""
3959"\n" 4208"\n"
@@ -3963,7 +4212,7 @@ msgid ""
3963"\n" 4212"\n"
3964msgstr "" 4213msgstr ""
3965 4214
3966#: plugins/check_procs.c:756 4215#: plugins/check_procs.c:799
3967#, c-format 4216#, c-format
3968msgid "" 4217msgid ""
3969"This plugin checks the number of currently running processes and\n" 4218"This plugin checks the number of currently running processes and\n"
@@ -3974,163 +4223,175 @@ msgid ""
3974"\n" 4223"\n"
3975msgstr "" 4224msgstr ""
3976 4225
3977#: plugins/check_procs.c:765 4226#: plugins/check_procs.c:808
3978msgid "Warning if not two processes with command name portsentry." 4227msgid "Warning if not two processes with command name portsentry."
3979msgstr "" 4228msgstr ""
3980 4229
3981#: plugins/check_procs.c:766 4230#: plugins/check_procs.c:809
3982msgid "Critical if < 2 or > 1024 processes" 4231msgid "Critical if < 2 or > 1024 processes"
3983msgstr "" 4232msgstr ""
3984 4233
3985#: plugins/check_procs.c:768 4234#: plugins/check_procs.c:811
4235msgid "Critical if not at least 1 process with command sshd"
4236msgstr ""
4237
4238#: plugins/check_procs.c:813
4239msgid "Warning if > 1024 processes with command name sshd."
4240msgstr ""
4241
4242#: plugins/check_procs.c:814
4243msgid "Critical if < 1 processes with command name sshd."
4244msgstr ""
4245
4246#: plugins/check_procs.c:816
3986msgid "Warning alert if > 10 processes with command arguments containing" 4247msgid "Warning alert if > 10 processes with command arguments containing"
3987msgstr "" 4248msgstr ""
3988 4249
3989#: plugins/check_procs.c:769 4250#: plugins/check_procs.c:817
3990msgid "'/usr/local/bin/perl' and owned by root" 4251msgid "'/usr/local/bin/perl' and owned by root"
3991msgstr "" 4252msgstr ""
3992 4253
3993#: plugins/check_procs.c:771 4254#: plugins/check_procs.c:819
3994msgid "Alert if VSZ of any processes over 50K or 100K" 4255msgid "Alert if VSZ of any processes over 50K or 100K"
3995msgstr "" 4256msgstr ""
3996 4257
3997#: plugins/check_procs.c:773 4258#: plugins/check_procs.c:821
3998#, c-format 4259msgid "Alert if CPU of any processes over 10% or 20%"
3999msgid "Alert if CPU of any processes over 10%% or 20%%"
4000msgstr "" 4260msgstr ""
4001 4261
4002#: plugins/check_radius.c:165 4262#: plugins/check_radius.c:181
4003msgid "Config file error" 4263msgid "Config file error\n"
4004msgstr "" 4264msgstr ""
4005 4265
4006#: plugins/check_radius.c:174 4266#: plugins/check_radius.c:190
4007msgid "Out of Memory?" 4267msgid "Out of Memory?\n"
4008msgstr "" 4268msgstr ""
4009 4269
4010#: plugins/check_radius.c:178 4270#: plugins/check_radius.c:194
4011msgid "Invalid NAS-Identifier" 4271msgid "Invalid NAS-Identifier\n"
4012msgstr "" 4272msgstr ""
4013 4273
4014#: plugins/check_radius.c:183 plugins/check_radius.c:185 4274#: plugins/check_radius.c:199 plugins/check_smtp.c:156
4015#: plugins/check_radius.c:191 4275#, c-format
4016msgid "Invalid NAS-IP-Address" 4276msgid "gethostname() failed!\n"
4017msgstr "" 4277msgstr ""
4018 4278
4019#: plugins/check_radius.c:188 4279#: plugins/check_radius.c:203 plugins/check_radius.c:206
4020msgid "Can't find local IP for NAS-IP-Address" 4280msgid "Invalid NAS-IP-Address\n"
4021msgstr "" 4281msgstr ""
4022 4282
4023#: plugins/check_radius.c:202 4283#: plugins/check_radius.c:217
4024msgid "Timeout" 4284msgid "Timeout\n"
4025msgstr "" 4285msgstr ""
4026 4286
4027#: plugins/check_radius.c:204 4287#: plugins/check_radius.c:219
4028msgid "Auth Error" 4288msgid "Auth Error\n"
4029msgstr "" 4289msgstr ""
4030 4290
4031#: plugins/check_radius.c:206 4291#: plugins/check_radius.c:221
4032msgid "Auth Failed" 4292msgid "Auth Failed\n"
4033msgstr "" 4293msgstr ""
4034 4294
4035#: plugins/check_radius.c:208 4295#: plugins/check_radius.c:223
4036msgid "Bad Response" 4296msgid "Bad Response\n"
4037msgstr "" 4297msgstr ""
4038 4298
4039#: plugins/check_radius.c:212 4299#: plugins/check_radius.c:227
4040msgid "Auth OK" 4300msgid "Auth OK\n"
4041msgstr "" 4301msgstr ""
4042 4302
4043#: plugins/check_radius.c:213 4303#: plugins/check_radius.c:228
4044#, c-format 4304#, c-format
4045msgid "Unexpected result code %d" 4305msgid "Unexpected result code %d"
4046msgstr "" 4306msgstr ""
4047 4307
4048#: plugins/check_radius.c:302 4308#: plugins/check_radius.c:317
4049msgid "Number of retries must be a positive integer" 4309msgid "Number of retries must be a positive integer"
4050msgstr "" 4310msgstr ""
4051 4311
4052#: plugins/check_radius.c:316 4312#: plugins/check_radius.c:331
4053msgid "User not specified" 4313msgid "User not specified"
4054msgstr "" 4314msgstr ""
4055 4315
4056#: plugins/check_radius.c:318 4316#: plugins/check_radius.c:333
4057msgid "Password not specified" 4317msgid "Password not specified"
4058msgstr "" 4318msgstr ""
4059 4319
4060#: plugins/check_radius.c:320 4320#: plugins/check_radius.c:335
4061msgid "Configuration file not specified" 4321msgid "Configuration file not specified"
4062msgstr "" 4322msgstr ""
4063 4323
4064#: plugins/check_radius.c:338 4324#: plugins/check_radius.c:353
4065msgid "Tests to see if a RADIUS server is accepting connections." 4325msgid "Tests to see if a RADIUS server is accepting connections."
4066msgstr "" 4326msgstr ""
4067 4327
4068#: plugins/check_radius.c:350 4328#: plugins/check_radius.c:365
4069msgid "The user to authenticate" 4329msgid "The user to authenticate"
4070msgstr "" 4330msgstr ""
4071 4331
4072#: plugins/check_radius.c:352 4332#: plugins/check_radius.c:367
4073msgid "Password for authentication (SECURITY RISK)" 4333msgid "Password for authentication (SECURITY RISK)"
4074msgstr "" 4334msgstr ""
4075 4335
4076#: plugins/check_radius.c:354 4336#: plugins/check_radius.c:369
4077msgid "NAS identifier" 4337msgid "NAS identifier"
4078msgstr "" 4338msgstr ""
4079 4339
4080#: plugins/check_radius.c:356 4340#: plugins/check_radius.c:371
4081msgid "NAS IP Address" 4341msgid "NAS IP Address"
4082msgstr "" 4342msgstr ""
4083 4343
4084#: plugins/check_radius.c:358 4344#: plugins/check_radius.c:373
4085msgid "Configuration file" 4345msgid "Configuration file"
4086msgstr "" 4346msgstr ""
4087 4347
4088#: plugins/check_radius.c:360 4348#: plugins/check_radius.c:375
4089msgid "Response string to expect from the server" 4349msgid "Response string to expect from the server"
4090msgstr "" 4350msgstr ""
4091 4351
4092#: plugins/check_radius.c:362 4352#: plugins/check_radius.c:377
4093msgid "Number of times to retry a failed connection" 4353msgid "Number of times to retry a failed connection"
4094msgstr "" 4354msgstr ""
4095 4355
4096#: plugins/check_radius.c:367 4356#: plugins/check_radius.c:382
4097msgid "" 4357msgid ""
4098"This plugin tests a RADIUS server to see if it is accepting connections." 4358"This plugin tests a RADIUS server to see if it is accepting connections."
4099msgstr "" 4359msgstr ""
4100 4360
4101#: plugins/check_radius.c:368 4361#: plugins/check_radius.c:383
4102msgid "" 4362msgid ""
4103"The server to test must be specified in the invocation, as well as a user" 4363"The server to test must be specified in the invocation, as well as a user"
4104msgstr "" 4364msgstr ""
4105 4365
4106#: plugins/check_radius.c:369 4366#: plugins/check_radius.c:384
4107msgid "" 4367msgid ""
4108"name and password. A configuration file may also be present. The format of" 4368"name and password. A configuration file may also be present. The format of"
4109msgstr "" 4369msgstr ""
4110 4370
4111#: plugins/check_radius.c:370 4371#: plugins/check_radius.c:385
4112msgid "" 4372msgid ""
4113"the configuration file is described in the radiusclient library sources." 4373"the configuration file is described in the radiusclient library sources."
4114msgstr "" 4374msgstr ""
4115 4375
4116#: plugins/check_radius.c:371 4376#: plugins/check_radius.c:386
4117msgid "The password option presents a substantial security issue because the" 4377msgid "The password option presents a substantial security issue because the"
4118msgstr "" 4378msgstr ""
4119 4379
4120#: plugins/check_radius.c:372 4380#: plugins/check_radius.c:387
4121msgid "" 4381msgid ""
4122"password can possibly be determined by careful watching of the command line" 4382"password can possibly be determined by careful watching of the command line"
4123msgstr "" 4383msgstr ""
4124 4384
4125#: plugins/check_radius.c:373 4385#: plugins/check_radius.c:388
4126msgid "in a process listing. This risk is exacerbated because the monitor will" 4386msgid "in a process listing. This risk is exacerbated because the plugin will"
4127msgstr "" 4387msgstr ""
4128 4388
4129#: plugins/check_radius.c:374 4389#: plugins/check_radius.c:389
4130msgid "run the plugin at regular predictable intervals. Please be sure that" 4390msgid ""
4391"typically be executed at regular predictable intervals. Please be sure that"
4131msgstr "" 4392msgstr ""
4132 4393
4133#: plugins/check_radius.c:375 4394#: plugins/check_radius.c:390
4134msgid "the password used does not allow access to sensitive system resources." 4395msgid "the password used does not allow access to sensitive system resources."
4135msgstr "" 4396msgstr ""
4136 4397
@@ -4144,792 +4405,886 @@ msgstr ""
4144msgid "No data received from %s\n" 4405msgid "No data received from %s\n"
4145msgstr "" 4406msgstr ""
4146 4407
4147#: plugins/check_real.c:118 plugins/check_real.c:191 4408#: plugins/check_real.c:118 plugins/check_real.c:192
4148msgid "Invalid REAL response received from host" 4409msgid "Invalid REAL response received from host"
4149msgstr "" 4410msgstr ""
4150 4411
4151#: plugins/check_real.c:120 plugins/check_real.c:193 4412#: plugins/check_real.c:120 plugins/check_real.c:194
4152#, c-format 4413#, c-format
4153msgid "Invalid REAL response received from host on port %d\n" 4414msgid "Invalid REAL response received from host on port %d\n"
4154msgstr "" 4415msgstr ""
4155 4416
4156#: plugins/check_real.c:184 plugins/check_tcp.c:311 4417#: plugins/check_real.c:185 plugins/check_tcp.c:315
4157#, c-format 4418#, c-format
4158msgid "No data received from host\n" 4419msgid "No data received from host\n"
4159msgstr "" 4420msgstr ""
4160 4421
4161#: plugins/check_real.c:247 4422#: plugins/check_real.c:248
4162#, c-format 4423#, c-format
4163msgid "REAL %s - %d second response time\n" 4424msgid "REAL %s - %d second response time\n"
4164msgstr "" 4425msgstr ""
4165 4426
4166#: plugins/check_real.c:336 plugins/check_ups.c:536 4427#: plugins/check_real.c:337 plugins/check_ups.c:539
4167msgid "Warning time must be a positive integer" 4428msgid "Warning time must be a positive integer"
4168msgstr "" 4429msgstr ""
4169 4430
4170#: plugins/check_real.c:345 plugins/check_ups.c:527 4431#: plugins/check_real.c:346 plugins/check_ups.c:530
4171msgid "Critical time must be a positive integer" 4432msgid "Critical time must be a positive integer"
4172msgstr "" 4433msgstr ""
4173 4434
4174#: plugins/check_real.c:381 4435#: plugins/check_real.c:382
4175msgid "You must provide a server to check" 4436msgid "You must provide a server to check"
4176msgstr "" 4437msgstr ""
4177 4438
4178#: plugins/check_real.c:413 4439#: plugins/check_real.c:414
4179msgid "This plugin tests the REAL service on the specified host." 4440msgid "This plugin tests the REAL service on the specified host."
4180msgstr "" 4441msgstr ""
4181 4442
4182#: plugins/check_real.c:425 4443#: plugins/check_real.c:426
4183msgid "Connect to this url" 4444msgid "Connect to this url"
4184msgstr "" 4445msgstr ""
4185 4446
4186#: plugins/check_real.c:427 4447#: plugins/check_real.c:428
4187#, c-format 4448#, c-format
4188msgid "String to expect in first line of server response (default: %s)\n" 4449msgid "String to expect in first line of server response (default: %s)\n"
4189msgstr "" 4450msgstr ""
4190 4451
4191#: plugins/check_real.c:437 4452#: plugins/check_real.c:438
4192msgid "This plugin will attempt to open an RTSP connection with the host." 4453msgid "This plugin will attempt to open an RTSP connection with the host."
4193msgstr "" 4454msgstr ""
4194 4455
4195#: plugins/check_real.c:438 plugins/check_smtp.c:830 4456#: plugins/check_real.c:439 plugins/check_smtp.c:877
4196msgid "Successful connects return STATE_OK, refusals and timeouts return" 4457msgid "Successful connects return STATE_OK, refusals and timeouts return"
4197msgstr "" 4458msgstr ""
4198 4459
4199#: plugins/check_real.c:439 4460#: plugins/check_real.c:440
4200msgid "" 4461msgid ""
4201"STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful connects," 4462"STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful connects,"
4202msgstr "" 4463msgstr ""
4203 4464
4204#: plugins/check_real.c:440 4465#: plugins/check_real.c:441
4205msgid "" 4466msgid ""
4206"but incorrect response messages from the host result in STATE_WARNING return" 4467"but incorrect response messages from the host result in STATE_WARNING return"
4207msgstr "" 4468msgstr ""
4208 4469
4209#: plugins/check_real.c:441 4470#: plugins/check_real.c:442
4210msgid "values." 4471msgid "values."
4211msgstr "" 4472msgstr ""
4212 4473
4213#: plugins/check_smtp.c:150 plugins/check_swap.c:265 plugins/check_swap.c:271 4474#: plugins/check_smtp.c:152 plugins/check_swap.c:283 plugins/check_swap.c:289
4214#, c-format 4475#, c-format
4215msgid "malloc() failed!\n" 4476msgid "malloc() failed!\n"
4216msgstr "" 4477msgstr ""
4217 4478
4218#: plugins/check_smtp.c:154 4479#: plugins/check_smtp.c:200 plugins/check_smtp.c:212
4219#, c-format
4220msgid "gethostname() failed!\n"
4221msgstr ""
4222
4223#: plugins/check_smtp.c:189 plugins/check_smtp.c:213
4224#, c-format 4480#, c-format
4225msgid "recv() failed\n" 4481msgid "recv() failed\n"
4226msgstr "" 4482msgstr ""
4227 4483
4228#: plugins/check_smtp.c:200 4484#: plugins/check_smtp.c:222
4229#, c-format
4230msgid "Invalid SMTP response received from host: %s\n"
4231msgstr ""
4232
4233#: plugins/check_smtp.c:202
4234#, c-format
4235msgid "Invalid SMTP response received from host on port %d: %s\n"
4236msgstr ""
4237
4238#: plugins/check_smtp.c:223
4239#, c-format 4485#, c-format
4240msgid "WARNING - TLS not supported by server\n" 4486msgid "WARNING - TLS not supported by server\n"
4241msgstr "" 4487msgstr ""
4242 4488
4243#: plugins/check_smtp.c:235 4489#: plugins/check_smtp.c:234
4244#, c-format 4490#, c-format
4245msgid "Server does not support STARTTLS\n" 4491msgid "Server does not support STARTTLS\n"
4246msgstr "" 4492msgstr ""
4247 4493
4248#: plugins/check_smtp.c:241 4494#: plugins/check_smtp.c:240
4249#, c-format 4495#, c-format
4250msgid "CRITICAL - Cannot create SSL context.\n" 4496msgid "CRITICAL - Cannot create SSL context.\n"
4251msgstr "" 4497msgstr ""
4252 4498
4253#: plugins/check_smtp.c:261 4499#: plugins/check_smtp.c:260
4254msgid "SMTP UNKNOWN - Cannot send EHLO command via TLS." 4500msgid "SMTP UNKNOWN - Cannot send EHLO command via TLS."
4255msgstr "" 4501msgstr ""
4256 4502
4257#: plugins/check_smtp.c:266 4503#: plugins/check_smtp.c:265
4258#, c-format 4504#, c-format
4259msgid "sent %s" 4505msgid "sent %s"
4260msgstr "" 4506msgstr ""
4261 4507
4262#: plugins/check_smtp.c:268 4508#: plugins/check_smtp.c:267
4263msgid "SMTP UNKNOWN - Cannot read EHLO response via TLS." 4509msgid "SMTP UNKNOWN - Cannot read EHLO response via TLS."
4264msgstr "" 4510msgstr ""
4265 4511
4266#: plugins/check_smtp.c:303 plugins/check_snmp.c:806 4512#: plugins/check_smtp.c:297
4513#, c-format
4514msgid "Invalid SMTP response received from host: %s\n"
4515msgstr ""
4516
4517#: plugins/check_smtp.c:299
4518#, c-format
4519msgid "Invalid SMTP response received from host on port %d: %s\n"
4520msgstr ""
4521
4522#: plugins/check_smtp.c:322 plugins/check_snmp.c:865
4267#, c-format 4523#, c-format
4268msgid "Could Not Compile Regular Expression" 4524msgid "Could Not Compile Regular Expression"
4269msgstr "" 4525msgstr ""
4270 4526
4271#: plugins/check_smtp.c:312 4527#: plugins/check_smtp.c:331
4272#, c-format 4528#, c-format
4273msgid "SMTP %s - Invalid response '%s' to command '%s'\n" 4529msgid "SMTP %s - Invalid response '%s' to command '%s'\n"
4274msgstr "" 4530msgstr ""
4275 4531
4276#: plugins/check_smtp.c:316 plugins/check_snmp.c:511 4532#: plugins/check_smtp.c:335 plugins/check_snmp.c:540
4277#, c-format 4533#, c-format
4278msgid "Execute Error: %s\n" 4534msgid "Execute Error: %s\n"
4279msgstr "" 4535msgstr ""
4280 4536
4281#: plugins/check_smtp.c:330 4537#: plugins/check_smtp.c:349
4282msgid "no authuser specified, " 4538msgid "no authuser specified, "
4283msgstr "" 4539msgstr ""
4284 4540
4285#: plugins/check_smtp.c:335 4541#: plugins/check_smtp.c:354
4286msgid "no authpass specified, " 4542msgid "no authpass specified, "
4287msgstr "" 4543msgstr ""
4288 4544
4289#: plugins/check_smtp.c:342 plugins/check_smtp.c:363 plugins/check_smtp.c:383 4545#: plugins/check_smtp.c:361 plugins/check_smtp.c:382 plugins/check_smtp.c:402
4290#: plugins/check_smtp.c:688 4546#: plugins/check_smtp.c:727
4291#, c-format 4547#, c-format
4292msgid "sent %s\n" 4548msgid "sent %s\n"
4293msgstr "" 4549msgstr ""
4294 4550
4295#: plugins/check_smtp.c:345 4551#: plugins/check_smtp.c:364
4296msgid "recv() failed after AUTH LOGIN, " 4552msgid "recv() failed after AUTH LOGIN, "
4297msgstr "" 4553msgstr ""
4298 4554
4299#: plugins/check_smtp.c:350 plugins/check_smtp.c:371 plugins/check_smtp.c:391 4555#: plugins/check_smtp.c:369 plugins/check_smtp.c:390 plugins/check_smtp.c:410
4300#: plugins/check_smtp.c:699 4556#: plugins/check_smtp.c:738
4301#, c-format 4557#, c-format
4302msgid "received %s\n" 4558msgid "received %s\n"
4303msgstr "" 4559msgstr ""
4304 4560
4305#: plugins/check_smtp.c:354 4561#: plugins/check_smtp.c:373
4306msgid "invalid response received after AUTH LOGIN, " 4562msgid "invalid response received after AUTH LOGIN, "
4307msgstr "" 4563msgstr ""
4308 4564
4309#: plugins/check_smtp.c:367 4565#: plugins/check_smtp.c:386
4310msgid "recv() failed after sending authuser, " 4566msgid "recv() failed after sending authuser, "
4311msgstr "" 4567msgstr ""
4312 4568
4313#: plugins/check_smtp.c:375 4569#: plugins/check_smtp.c:394
4314msgid "invalid response received after authuser, " 4570msgid "invalid response received after authuser, "
4315msgstr "" 4571msgstr ""
4316 4572
4317#: plugins/check_smtp.c:387 4573#: plugins/check_smtp.c:406
4318msgid "recv() failed after sending authpass, " 4574msgid "recv() failed after sending authpass, "
4319msgstr "" 4575msgstr ""
4320 4576
4321#: plugins/check_smtp.c:395 4577#: plugins/check_smtp.c:414
4322msgid "invalid response received after authpass, " 4578msgid "invalid response received after authpass, "
4323msgstr "" 4579msgstr ""
4324 4580
4325#: plugins/check_smtp.c:402 4581#: plugins/check_smtp.c:421
4326msgid "only authtype LOGIN is supported, " 4582msgid "only authtype LOGIN is supported, "
4327msgstr "" 4583msgstr ""
4328 4584
4329#: plugins/check_smtp.c:426 4585#: plugins/check_smtp.c:445
4330#, c-format 4586#, c-format
4331msgid "SMTP %s - %s%.3f sec. response time%s%s|%s\n" 4587msgid "SMTP %s - %s%.3f sec. response time%s%s|%s\n"
4332msgstr "" 4588msgstr ""
4333 4589
4334#: plugins/check_smtp.c:536 plugins/check_smtp.c:548 4590#: plugins/check_smtp.c:562 plugins/check_smtp.c:574
4335#, c-format 4591#, c-format
4336msgid "Could not realloc() units [%d]\n" 4592msgid "Could not realloc() units [%d]\n"
4337msgstr "" 4593msgstr ""
4338 4594
4339#: plugins/check_smtp.c:556 4595#: plugins/check_smtp.c:582
4340msgid "Critical time must be a positive" 4596msgid "Critical time must be a positive"
4341msgstr "" 4597msgstr ""
4342 4598
4343#: plugins/check_smtp.c:564 4599#: plugins/check_smtp.c:590
4344msgid "Warning time must be a positive" 4600msgid "Warning time must be a positive"
4345msgstr "" 4601msgstr ""
4346 4602
4347#: plugins/check_smtp.c:611 4603#: plugins/check_smtp.c:633 plugins/check_smtp.c:644
4348msgid "SSL support not available - install OpenSSL and recompile" 4604msgid "SSL support not available - install OpenSSL and recompile"
4349msgstr "" 4605msgstr ""
4350 4606
4351#: plugins/check_smtp.c:679 plugins/check_smtp.c:684 4607#: plugins/check_smtp.c:718 plugins/check_smtp.c:723
4352#, c-format 4608#, c-format
4353msgid "Connection closed by server before sending QUIT command\n" 4609msgid "Connection closed by server before sending QUIT command\n"
4354msgstr "" 4610msgstr ""
4355 4611
4356#: plugins/check_smtp.c:694 4612#: plugins/check_smtp.c:733
4357#, c-format 4613#, c-format
4358msgid "recv() failed after QUIT." 4614msgid "recv() failed after QUIT."
4359msgstr "" 4615msgstr ""
4360 4616
4361#: plugins/check_smtp.c:696 4617#: plugins/check_smtp.c:735
4362#, c-format 4618#, c-format
4363msgid "Connection reset by peer." 4619msgid "Connection reset by peer."
4364msgstr "" 4620msgstr ""
4365 4621
4366#: plugins/check_smtp.c:784 4622#: plugins/check_smtp.c:825
4367msgid "This plugin will attempt to open an SMTP connection with the host." 4623msgid "This plugin will attempt to open an SMTP connection with the host."
4368msgstr "" 4624msgstr ""
4369 4625
4370#: plugins/check_smtp.c:798 4626#: plugins/check_smtp.c:839
4371#, c-format 4627#, c-format
4372msgid " String to expect in first line of server response (default: '%s')\n" 4628msgid " String to expect in first line of server response (default: '%s')\n"
4373msgstr "" 4629msgstr ""
4374 4630
4375#: plugins/check_smtp.c:800 4631#: plugins/check_smtp.c:841
4376msgid "SMTP command (may be used repeatedly)" 4632msgid "SMTP command (may be used repeatedly)"
4377msgstr "" 4633msgstr ""
4378 4634
4379#: plugins/check_smtp.c:802 4635#: plugins/check_smtp.c:843
4380msgid "Expected response to command (may be used repeatedly)" 4636msgid "Expected response to command (may be used repeatedly)"
4381msgstr "" 4637msgstr ""
4382 4638
4383#: plugins/check_smtp.c:804 4639#: plugins/check_smtp.c:845
4384msgid "FROM-address to include in MAIL command, required by Exchange 2000" 4640msgid "FROM-address to include in MAIL command, required by Exchange 2000"
4385msgstr "" 4641msgstr ""
4386 4642
4387#: plugins/check_smtp.c:806 4643#: plugins/check_smtp.c:847
4388msgid "FQDN used for HELO" 4644msgid "FQDN used for HELO"
4389msgstr "" 4645msgstr ""
4390 4646
4391#: plugins/check_smtp.c:809 plugins/check_tcp.c:665 4647#: plugins/check_smtp.c:849
4648msgid "Use PROXY protocol prefix for the connection."
4649msgstr ""
4650
4651#: plugins/check_smtp.c:852 plugins/check_tcp.c:689
4392msgid "Minimum number of days a certificate has to be valid." 4652msgid "Minimum number of days a certificate has to be valid."
4393msgstr "" 4653msgstr ""
4394 4654
4395#: plugins/check_smtp.c:811 4655#: plugins/check_smtp.c:854
4396msgid "Use STARTTLS for the connection." 4656msgid "Use STARTTLS for the connection."
4397msgstr "" 4657msgstr ""
4398 4658
4399#: plugins/check_smtp.c:815 4659#: plugins/check_smtp.c:860
4400msgid "SMTP AUTH type to check (default none, only LOGIN supported)" 4660msgid "SMTP AUTH type to check (default none, only LOGIN supported)"
4401msgstr "" 4661msgstr ""
4402 4662
4403#: plugins/check_smtp.c:817 4663#: plugins/check_smtp.c:862
4404msgid "SMTP AUTH username" 4664msgid "SMTP AUTH username"
4405msgstr "" 4665msgstr ""
4406 4666
4407#: plugins/check_smtp.c:819 4667#: plugins/check_smtp.c:864
4408msgid "SMTP AUTH password" 4668msgid "SMTP AUTH password"
4409msgstr "" 4669msgstr ""
4410 4670
4411#: plugins/check_smtp.c:821 4671#: plugins/check_smtp.c:866
4672msgid "Send LHLO instead of HELO/EHLO"
4673msgstr ""
4674
4675#: plugins/check_smtp.c:868
4412msgid "Ignore failure when sending QUIT command to server" 4676msgid "Ignore failure when sending QUIT command to server"
4413msgstr "" 4677msgstr ""
4414 4678
4415#: plugins/check_smtp.c:831 4679#: plugins/check_smtp.c:878
4416msgid "STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful" 4680msgid "STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful"
4417msgstr "" 4681msgstr ""
4418 4682
4419#: plugins/check_smtp.c:832 4683#: plugins/check_smtp.c:879
4420msgid "connects, but incorrect response messages from the host result in" 4684msgid "connects, but incorrect response messages from the host result in"
4421msgstr "" 4685msgstr ""
4422 4686
4423#: plugins/check_smtp.c:833 4687#: plugins/check_smtp.c:880
4424msgid "STATE_WARNING return values." 4688msgid "STATE_WARNING return values."
4425msgstr "" 4689msgstr ""
4426 4690
4427#: plugins/check_snmp.c:169 plugins/check_snmp.c:582 4691#: plugins/check_snmp.c:177 plugins/check_snmp.c:626
4428msgid "Cannot malloc" 4692msgid "Cannot malloc"
4429msgstr "" 4693msgstr ""
4430 4694
4431#: plugins/check_snmp.c:356 4695#: plugins/check_snmp.c:368
4432#, c-format 4696#, c-format
4433msgid "External command error: %s\n" 4697msgid "External command error: %s\n"
4434msgstr "" 4698msgstr ""
4435 4699
4436#: plugins/check_snmp.c:361 4700#: plugins/check_snmp.c:373
4437#, c-format 4701#, c-format
4438msgid "External command error with no output (return code: %d)\n" 4702msgid "External command error with no output (return code: %d)\n"
4439msgstr "" 4703msgstr ""
4440 4704
4441#: plugins/check_snmp.c:464 4705#: plugins/check_snmp.c:486 plugins/check_snmp.c:488 plugins/check_snmp.c:490
4706#: plugins/check_snmp.c:492
4442#, c-format 4707#, c-format
4443msgid "No valid data returned (%s)\n" 4708msgid "No valid data returned (%s)\n"
4444msgstr "" 4709msgstr ""
4445 4710
4446#: plugins/check_snmp.c:475 4711#: plugins/check_snmp.c:504
4447msgid "Time duration between plugin calls is invalid" 4712msgid "Time duration between plugin calls is invalid"
4448msgstr "" 4713msgstr ""
4449 4714
4450#: plugins/check_snmp.c:588 4715#: plugins/check_snmp.c:632
4451msgid "Cannot asprintf()" 4716msgid "Cannot asprintf()"
4452msgstr "" 4717msgstr ""
4453 4718
4454#: plugins/check_snmp.c:594 4719#: plugins/check_snmp.c:638
4455msgid "Cannot realloc()" 4720msgid "Cannot realloc()"
4456msgstr "" 4721msgstr ""
4457 4722
4458#: plugins/check_snmp.c:610 4723#: plugins/check_snmp.c:654
4459msgid "No previous data to calculate rate - assume okay" 4724msgid "No previous data to calculate rate - assume okay"
4460msgstr "" 4725msgstr ""
4461 4726
4462#: plugins/check_snmp.c:751 4727#: plugins/check_snmp.c:804
4463msgid "Retries interval must be a positive integer" 4728msgid "Retries interval must be a positive integer"
4464msgstr "" 4729msgstr ""
4465 4730
4466#: plugins/check_snmp.c:831 4731#: plugins/check_snmp.c:841
4732msgid "Exit status must be a positive integer"
4733msgstr ""
4734
4735#: plugins/check_snmp.c:890
4467#, c-format 4736#, c-format
4468msgid "Could not reallocate labels[%d]" 4737msgid "Could not reallocate labels[%d]"
4469msgstr "" 4738msgstr ""
4470 4739
4471#: plugins/check_snmp.c:844 4740#: plugins/check_snmp.c:903
4472msgid "Could not reallocate labels\n" 4741msgid "Could not reallocate labels\n"
4473msgstr "" 4742msgstr ""
4474 4743
4475#: plugins/check_snmp.c:860 4744#: plugins/check_snmp.c:919
4476#, c-format 4745#, c-format
4477msgid "Could not reallocate units [%d]\n" 4746msgid "Could not reallocate units [%d]\n"
4478msgstr "" 4747msgstr ""
4479 4748
4480#: plugins/check_snmp.c:872 4749#: plugins/check_snmp.c:931
4481msgid "Could not realloc() units\n" 4750msgid "Could not realloc() units\n"
4482msgstr "" 4751msgstr ""
4483 4752
4484#: plugins/check_snmp.c:889 4753#: plugins/check_snmp.c:948
4485msgid "Rate multiplier must be a positive integer" 4754msgid "Rate multiplier must be a positive integer"
4486msgstr "" 4755msgstr ""
4487 4756
4488#: plugins/check_snmp.c:947 4757#: plugins/check_snmp.c:1023
4489msgid "No host specified\n" 4758msgid "No host specified\n"
4490msgstr "" 4759msgstr ""
4491 4760
4492#: plugins/check_snmp.c:951 4761#: plugins/check_snmp.c:1027
4493msgid "No OIDs specified\n" 4762msgid "No OIDs specified\n"
4494msgstr "" 4763msgstr ""
4495 4764
4496#: plugins/check_snmp.c:973 4765#: plugins/check_snmp.c:1050 plugins/check_snmp.c:1068
4497msgid "Invalid seclevel" 4766#: plugins/check_snmp.c:1086
4498msgstr ""
4499
4500#: plugins/check_snmp.c:980 plugins/check_snmp.c:983 plugins/check_snmp.c:1001
4501#, c-format 4767#, c-format
4502msgid "Required parameter: %s\n" 4768msgid "Required parameter: %s\n"
4503msgstr "" 4769msgstr ""
4504 4770
4505#: plugins/check_snmp.c:1022 4771#: plugins/check_snmp.c:1061
4772msgid "Invalid seclevel"
4773msgstr ""
4774
4775#: plugins/check_snmp.c:1107
4506msgid "Invalid SNMP version" 4776msgid "Invalid SNMP version"
4507msgstr "" 4777msgstr ""
4508 4778
4509#: plugins/check_snmp.c:1039 4779#: plugins/check_snmp.c:1124
4510msgid "Unbalanced quotes\n" 4780msgid "Unbalanced quotes\n"
4511msgstr "" 4781msgstr ""
4512 4782
4513#: plugins/check_snmp.c:1088 4783#: plugins/check_snmp.c:1182
4784#, c-format
4785msgid "multiplier set (%.1f), but input is not a number: %s"
4786msgstr ""
4787
4788#: plugins/check_snmp.c:1211
4514msgid "Check status of remote machines and obtain system information via SNMP" 4789msgid "Check status of remote machines and obtain system information via SNMP"
4515msgstr "" 4790msgstr ""
4516 4791
4517#: plugins/check_snmp.c:1101 4792#: plugins/check_snmp.c:1225
4518msgid "Use SNMP GETNEXT instead of SNMP GET" 4793msgid "Use SNMP GETNEXT instead of SNMP GET"
4519msgstr "" 4794msgstr ""
4520 4795
4521#: plugins/check_snmp.c:1103 4796#: plugins/check_snmp.c:1227
4522msgid "SNMP protocol version" 4797msgid "SNMP protocol version"
4523msgstr "" 4798msgstr ""
4524 4799
4525#: plugins/check_snmp.c:1105 4800#: plugins/check_snmp.c:1229
4801msgid "SNMPv3 context"
4802msgstr ""
4803
4804#: plugins/check_snmp.c:1231
4526msgid "SNMPv3 securityLevel" 4805msgid "SNMPv3 securityLevel"
4527msgstr "" 4806msgstr ""
4528 4807
4529#: plugins/check_snmp.c:1107 4808#: plugins/check_snmp.c:1233
4530msgid "SNMPv3 auth proto" 4809msgid "SNMPv3 auth proto"
4531msgstr "" 4810msgstr ""
4532 4811
4533#: plugins/check_snmp.c:1109 4812#: plugins/check_snmp.c:1235
4534msgid "SNMPv3 priv proto (default DES)" 4813msgid "SNMPv3 priv proto (default DES)"
4535msgstr "" 4814msgstr ""
4536 4815
4537#: plugins/check_snmp.c:1113 4816#: plugins/check_snmp.c:1239
4538msgid "Optional community string for SNMP communication" 4817msgid "Optional community string for SNMP communication"
4539msgstr "" 4818msgstr ""
4540 4819
4541#: plugins/check_snmp.c:1114 4820#: plugins/check_snmp.c:1240
4542msgid "default is" 4821msgid "default is"
4543msgstr "" 4822msgstr ""
4544 4823
4545#: plugins/check_snmp.c:1116 4824#: plugins/check_snmp.c:1242
4546msgid "SNMPv3 username" 4825msgid "SNMPv3 username"
4547msgstr "" 4826msgstr ""
4548 4827
4549#: plugins/check_snmp.c:1118 4828#: plugins/check_snmp.c:1244
4550msgid "SNMPv3 authentication password" 4829msgid "SNMPv3 authentication password"
4551msgstr "" 4830msgstr ""
4552 4831
4553#: plugins/check_snmp.c:1120 4832#: plugins/check_snmp.c:1246
4554msgid "SNMPv3 privacy password" 4833msgid "SNMPv3 privacy password"
4555msgstr "" 4834msgstr ""
4556 4835
4557#: plugins/check_snmp.c:1124 4836#: plugins/check_snmp.c:1250
4558msgid "Object identifier(s) or SNMP variables whose value you wish to query" 4837msgid "Object identifier(s) or SNMP variables whose value you wish to query"
4559msgstr "" 4838msgstr ""
4560 4839
4561#: plugins/check_snmp.c:1126 4840#: plugins/check_snmp.c:1252
4562msgid "" 4841msgid ""
4563"List of MIBS to be loaded (default = none if using numeric OIDs or 'ALL'" 4842"List of MIBS to be loaded (default = none if using numeric OIDs or 'ALL'"
4564msgstr "" 4843msgstr ""
4565 4844
4566#: plugins/check_snmp.c:1127 4845#: plugins/check_snmp.c:1253
4567msgid "for symbolic OIDs.)" 4846msgid "for symbolic OIDs.)"
4568msgstr "" 4847msgstr ""
4569 4848
4570#: plugins/check_snmp.c:1129 4849#: plugins/check_snmp.c:1255
4571msgid "Delimiter to use when parsing returned data. Default is" 4850msgid "Delimiter to use when parsing returned data. Default is"
4572msgstr "" 4851msgstr ""
4573 4852
4574#: plugins/check_snmp.c:1130 4853#: plugins/check_snmp.c:1256
4575msgid "Any data on the right hand side of the delimiter is considered" 4854msgid "Any data on the right hand side of the delimiter is considered"
4576msgstr "" 4855msgstr ""
4577 4856
4578#: plugins/check_snmp.c:1131 4857#: plugins/check_snmp.c:1257
4579msgid "to be the data that should be used in the evaluation." 4858msgid "to be the data that should be used in the evaluation."
4580msgstr "" 4859msgstr ""
4581 4860
4582#: plugins/check_snmp.c:1135 4861#: plugins/check_snmp.c:1259
4862msgid "If the check returns a 0 length string or NULL value"
4863msgstr ""
4864
4865#: plugins/check_snmp.c:1260
4866msgid "This option allows you to choose what status you want it to exit"
4867msgstr ""
4868
4869#: plugins/check_snmp.c:1261
4870msgid "Excluding this option renders the default exit of 3(STATE_UNKNOWN)"
4871msgstr ""
4872
4873#: plugins/check_snmp.c:1262
4874msgid "0 = OK"
4875msgstr ""
4876
4877#: plugins/check_snmp.c:1263
4878msgid "1 = WARNING"
4879msgstr ""
4880
4881#: plugins/check_snmp.c:1264
4882msgid "2 = CRITICAL"
4883msgstr ""
4884
4885#: plugins/check_snmp.c:1265
4886msgid "3 = UNKNOWN"
4887msgstr ""
4888
4889#: plugins/check_snmp.c:1269
4583msgid "Warning threshold range(s)" 4890msgid "Warning threshold range(s)"
4584msgstr "" 4891msgstr ""
4585 4892
4586#: plugins/check_snmp.c:1137 4893#: plugins/check_snmp.c:1271
4587msgid "Critical threshold range(s)" 4894msgid "Critical threshold range(s)"
4588msgstr "" 4895msgstr ""
4589 4896
4590#: plugins/check_snmp.c:1139 4897#: plugins/check_snmp.c:1273
4591msgid "Enable rate calculation. See 'Rate Calculation' below" 4898msgid "Enable rate calculation. See 'Rate Calculation' below"
4592msgstr "" 4899msgstr ""
4593 4900
4594#: plugins/check_snmp.c:1141 4901#: plugins/check_snmp.c:1275
4595msgid "" 4902msgid ""
4596"Converts rate per second. For example, set to 60 to convert to per minute" 4903"Converts rate per second. For example, set to 60 to convert to per minute"
4597msgstr "" 4904msgstr ""
4598 4905
4599#: plugins/check_snmp.c:1143 4906#: plugins/check_snmp.c:1277
4600msgid "Add/subtract the specified OFFSET to numeric sensor data" 4907msgid "Add/subtract the specified OFFSET to numeric sensor data"
4601msgstr "" 4908msgstr ""
4602 4909
4603#: plugins/check_snmp.c:1147 4910#: plugins/check_snmp.c:1281
4604msgid "Return OK state (for that OID) if STRING is an exact match" 4911msgid "Return OK state (for that OID) if STRING is an exact match"
4605msgstr "" 4912msgstr ""
4606 4913
4607#: plugins/check_snmp.c:1149 4914#: plugins/check_snmp.c:1283
4608msgid "" 4915msgid ""
4609"Return OK state (for that OID) if extended regular expression REGEX matches" 4916"Return OK state (for that OID) if extended regular expression REGEX matches"
4610msgstr "" 4917msgstr ""
4611 4918
4612#: plugins/check_snmp.c:1151 4919#: plugins/check_snmp.c:1285
4613msgid "" 4920msgid ""
4614"Return OK state (for that OID) if case-insensitive extended REGEX matches" 4921"Return OK state (for that OID) if case-insensitive extended REGEX matches"
4615msgstr "" 4922msgstr ""
4616 4923
4617#: plugins/check_snmp.c:1153 4924#: plugins/check_snmp.c:1287
4618msgid "Invert search result (CRITICAL if found)" 4925msgid "Invert search result (CRITICAL if found)"
4619msgstr "" 4926msgstr ""
4620 4927
4621#: plugins/check_snmp.c:1157 4928#: plugins/check_snmp.c:1291
4622msgid "Prefix label for output from plugin" 4929msgid "Prefix label for output from plugin"
4623msgstr "" 4930msgstr ""
4624 4931
4625#: plugins/check_snmp.c:1159 4932#: plugins/check_snmp.c:1293
4626msgid "Units label(s) for output data (e.g., 'sec.')." 4933msgid "Units label(s) for output data (e.g., 'sec.')."
4627msgstr "" 4934msgstr ""
4628 4935
4629#: plugins/check_snmp.c:1161 4936#: plugins/check_snmp.c:1295
4630msgid "Separates output on multiple OID requests" 4937msgid "Separates output on multiple OID requests"
4631msgstr "" 4938msgstr ""
4632 4939
4633#: plugins/check_snmp.c:1165 4940#: plugins/check_snmp.c:1297
4634msgid "Number of retries to be used in the requests" 4941msgid "Multiplies current value, 0 < n < 1 works as divider, defaults to 1"
4942msgstr ""
4943
4944#: plugins/check_snmp.c:1299
4945msgid "C-style format string for float values (see option -M)"
4635msgstr "" 4946msgstr ""
4636 4947
4637#: plugins/check_snmp.c:1168 4948#: plugins/check_snmp.c:1302
4949msgid ""
4950"NOTE the final timeout value is calculated using this formula: "
4951"timeout_interval * retries + 5"
4952msgstr ""
4953
4954#: plugins/check_snmp.c:1304
4955msgid "Number of retries to be used in the requests, default: "
4956msgstr ""
4957
4958#: plugins/check_snmp.c:1307
4638msgid "Label performance data with OIDs instead of --label's" 4959msgid "Label performance data with OIDs instead of --label's"
4639msgstr "" 4960msgstr ""
4640 4961
4641#: plugins/check_snmp.c:1173 4962#: plugins/check_snmp.c:1312
4642msgid "" 4963msgid ""
4643"This plugin uses the 'snmpget' command included with the NET-SNMP package." 4964"This plugin uses the 'snmpget' command included with the NET-SNMP package."
4644msgstr "" 4965msgstr ""
4645 4966
4646#: plugins/check_snmp.c:1174 4967#: plugins/check_snmp.c:1313
4647msgid "" 4968msgid ""
4648"if you don't have the package installed, you will need to download it from" 4969"if you don't have the package installed, you will need to download it from"
4649msgstr "" 4970msgstr ""
4650 4971
4651#: plugins/check_snmp.c:1175 4972#: plugins/check_snmp.c:1314
4652msgid "http://net-snmp.sourceforge.net before you can use this plugin." 4973msgid "http://net-snmp.sourceforge.net before you can use this plugin."
4653msgstr "" 4974msgstr ""
4654 4975
4655#: plugins/check_snmp.c:1179 4976#: plugins/check_snmp.c:1318
4656msgid "" 4977msgid ""
4657"- Multiple OIDs (and labels) may be indicated by a comma or space-delimited " 4978"- Multiple OIDs (and labels) may be indicated by a comma or space-delimited "
4658msgstr "" 4979msgstr ""
4659 4980
4660#: plugins/check_snmp.c:1180 4981#: plugins/check_snmp.c:1319
4661msgid "list (lists with internal spaces must be quoted)." 4982msgid "list (lists with internal spaces must be quoted)."
4662msgstr "" 4983msgstr ""
4663 4984
4664#: plugins/check_snmp.c:1184 4985#: plugins/check_snmp.c:1323
4665msgid "" 4986msgid ""
4666"- When checking multiple OIDs, separate ranges by commas like '-w " 4987"- When checking multiple OIDs, separate ranges by commas like '-w "
4667"1:10,1:,:20'" 4988"1:10,1:,:20'"
4668msgstr "" 4989msgstr ""
4669 4990
4670#: plugins/check_snmp.c:1185 4991#: plugins/check_snmp.c:1324
4671msgid "- Note that only one string and one regex may be checked at present" 4992msgid "- Note that only one string and one regex may be checked at present"
4672msgstr "" 4993msgstr ""
4673 4994
4674#: plugins/check_snmp.c:1186 4995#: plugins/check_snmp.c:1325
4675msgid "" 4996msgid ""
4676"- All evaluation methods other than PR, STR, and SUBSTR expect that the value" 4997"- All evaluation methods other than PR, STR, and SUBSTR expect that the value"
4677msgstr "" 4998msgstr ""
4678 4999
4679#: plugins/check_snmp.c:1187 5000#: plugins/check_snmp.c:1326
4680msgid "returned from the SNMP query is an unsigned integer." 5001msgid "returned from the SNMP query is an unsigned integer."
4681msgstr "" 5002msgstr ""
4682 5003
4683#: plugins/check_snmp.c:1190 5004#: plugins/check_snmp.c:1329
4684msgid "Rate Calculation:" 5005msgid "Rate Calculation:"
4685msgstr "" 5006msgstr ""
4686 5007
4687#: plugins/check_snmp.c:1191 5008#: plugins/check_snmp.c:1330
4688msgid "In many places, SNMP returns counters that are only meaningful when" 5009msgid "In many places, SNMP returns counters that are only meaningful when"
4689msgstr "" 5010msgstr ""
4690 5011
4691#: plugins/check_snmp.c:1192 5012#: plugins/check_snmp.c:1331
4692msgid "calculating the counter difference since the last check. check_snmp" 5013msgid "calculating the counter difference since the last check. check_snmp"
4693msgstr "" 5014msgstr ""
4694 5015
4695#: plugins/check_snmp.c:1193 5016#: plugins/check_snmp.c:1332
4696msgid "saves the last state information in a file so that the rate per second" 5017msgid "saves the last state information in a file so that the rate per second"
4697msgstr "" 5018msgstr ""
4698 5019
4699#: plugins/check_snmp.c:1194 5020#: plugins/check_snmp.c:1333
4700msgid "can be calculated. Use the --rate option to save state information." 5021msgid "can be calculated. Use the --rate option to save state information."
4701msgstr "" 5022msgstr ""
4702 5023
4703#: plugins/check_snmp.c:1195 5024#: plugins/check_snmp.c:1334
4704msgid "" 5025msgid ""
4705"On the first run, there will be no prior state - this will return with OK." 5026"On the first run, there will be no prior state - this will return with OK."
4706msgstr "" 5027msgstr ""
4707 5028
4708#: plugins/check_snmp.c:1196 5029#: plugins/check_snmp.c:1335
4709msgid "The state is uniquely determined by the arguments to the plugin, so" 5030msgid "The state is uniquely determined by the arguments to the plugin, so"
4710msgstr "" 5031msgstr ""
4711 5032
4712#: plugins/check_snmp.c:1197 5033#: plugins/check_snmp.c:1336
4713msgid "changing the arguments will create a new state file." 5034msgid "changing the arguments will create a new state file."
4714msgstr "" 5035msgstr ""
4715 5036
4716#: plugins/check_ssh.c:165 5037#: plugins/check_ssh.c:170
4717msgid "Port number must be a positive integer" 5038msgid "Port number must be a positive integer"
4718msgstr "" 5039msgstr ""
4719 5040
4720#: plugins/check_ssh.c:232 5041#: plugins/check_ssh.c:237
4721#, c-format 5042#, c-format
4722msgid "Server answer: %s" 5043msgid "Server answer: %s"
4723msgstr "" 5044msgstr ""
4724 5045
4725#: plugins/check_ssh.c:251 5046#: plugins/check_ssh.c:256
5047#, c-format
5048msgid "SSH CRITICAL - %s (protocol %s) version mismatch, expected '%s'\n"
5049msgstr ""
5050
5051#: plugins/check_ssh.c:264
4726#, c-format 5052#, c-format
4727msgid "SSH WARNING - %s (protocol %s) version mismatch, expected '%s'\n" 5053msgid ""
5054"SSH CRITICAL - %s (protocol %s) protocol version mismatch, expected '%s'\n"
4728msgstr "" 5055msgstr ""
4729 5056
4730#: plugins/check_ssh.c:260 5057#: plugins/check_ssh.c:273
4731#, c-format 5058#, c-format
4732msgid "SSH OK - %s (protocol %s) | %s\n" 5059msgid "SSH OK - %s (protocol %s) | %s\n"
4733msgstr "" 5060msgstr ""
4734 5061
4735#: plugins/check_ssh.c:281 5062#: plugins/check_ssh.c:294
4736msgid "Try to connect to an SSH server at specified server and port" 5063msgid "Try to connect to an SSH server at specified server and port"
4737msgstr "" 5064msgstr ""
4738 5065
4739#: plugins/check_ssh.c:297 5066#: plugins/check_ssh.c:310
4740msgid "" 5067msgid ""
4741"Warn if string doesn't match expected server version (ex: OpenSSH_3.9p1)" 5068"Alert if string doesn't match expected server version (ex: OpenSSH_3.9p1)"
5069msgstr ""
5070
5071#: plugins/check_ssh.c:313
5072msgid "Alert if protocol doesn't match expected protocol version (ex: 2.0)"
4742msgstr "" 5073msgstr ""
4743 5074
4744#: plugins/check_swap.c:169 5075#: plugins/check_swap.c:187
4745#, c-format 5076#, c-format
4746msgid "Command: %s\n" 5077msgid "Command: %s\n"
4747msgstr "" 5078msgstr ""
4748 5079
4749#: plugins/check_swap.c:171 5080#: plugins/check_swap.c:189
4750#, c-format 5081#, c-format
4751msgid "Format: %s\n" 5082msgid "Format: %s\n"
4752msgstr "" 5083msgstr ""
4753 5084
4754#: plugins/check_swap.c:207 5085#: plugins/check_swap.c:225
4755#, c-format 5086#, c-format
4756msgid "total=%.0f, used=%.0f, free=%.0f\n" 5087msgid "total=%.0f, used=%.0f, free=%.0f\n"
4757msgstr "" 5088msgstr ""
4758 5089
4759#: plugins/check_swap.c:221 5090#: plugins/check_swap.c:239
4760#, c-format 5091#, c-format
4761msgid "total=%.0f, free=%.0f\n" 5092msgid "total=%.0f, free=%.0f\n"
4762msgstr "" 5093msgstr ""
4763 5094
4764#: plugins/check_swap.c:253 5095#: plugins/check_swap.c:271
4765msgid "Error getting swap devices\n" 5096msgid "Error getting swap devices\n"
4766msgstr "" 5097msgstr ""
4767 5098
4768#: plugins/check_swap.c:256 5099#: plugins/check_swap.c:274
4769msgid "SWAP OK: No swap devices defined\n" 5100msgid "SWAP OK: No swap devices defined\n"
4770msgstr "" 5101msgstr ""
4771 5102
4772#: plugins/check_swap.c:277 plugins/check_swap.c:319 5103#: plugins/check_swap.c:295 plugins/check_swap.c:337
4773msgid "swapctl failed: " 5104msgid "swapctl failed: "
4774msgstr "" 5105msgstr ""
4775 5106
4776#: plugins/check_swap.c:278 plugins/check_swap.c:320 5107#: plugins/check_swap.c:296 plugins/check_swap.c:338
4777msgid "Error in swapctl call\n" 5108msgid "Error in swapctl call\n"
4778msgstr "" 5109msgstr ""
4779 5110
4780#: plugins/check_swap.c:357 5111#: plugins/check_swap.c:376
4781#, c-format 5112#, c-format
4782msgid "SWAP %s - %d%% free (%d MB out of %d MB) %s|" 5113msgid "SWAP %s - %d%% free (%dMB out of %dMB) %s|"
5114msgstr ""
5115
5116#: plugins/check_swap.c:472
5117msgid "Warning threshold percentage must be <= 100!"
5118msgstr ""
5119
5120#: plugins/check_swap.c:482
5121msgid "Warning threshold be positive integer or percentage!"
4783msgstr "" 5122msgstr ""
4784 5123
4785#: plugins/check_swap.c:435 5124#: plugins/check_swap.c:502
4786msgid "Warning threshold must be integer or percentage!" 5125msgid "Critical threshold percentage must be <= 100!"
4787msgstr "" 5126msgstr ""
4788 5127
4789#: plugins/check_swap.c:453 5128#: plugins/check_swap.c:512
4790msgid "Critical threshold must be integer or percentage!" 5129msgid "Critical threshold be positive integer or percentage!"
4791msgstr "" 5130msgstr ""
4792 5131
4793#: plugins/check_swap.c:507 5132#: plugins/check_swap.c:521
4794msgid "Warning percentage should be more than critical percentage" 5133msgid ""
5134"no-swap result must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) "
5135"or integer (0-3)."
4795msgstr "" 5136msgstr ""
4796 5137
4797#: plugins/check_swap.c:511 5138#: plugins/check_swap.c:558
4798msgid "Warning free space should be more than critical free space" 5139msgid "Warning should be more than critical"
4799msgstr "" 5140msgstr ""
4800 5141
4801#: plugins/check_swap.c:525 5142#: plugins/check_swap.c:572
4802msgid "Check swap space on local machine." 5143msgid "Check swap space on local machine."
4803msgstr "" 5144msgstr ""
4804 5145
4805#: plugins/check_swap.c:535 5146#: plugins/check_swap.c:582
4806msgid "" 5147msgid ""
4807"Exit with WARNING status if less than INTEGER bytes of swap space are free" 5148"Exit with WARNING status if less than INTEGER bytes of swap space are free"
4808msgstr "" 5149msgstr ""
4809 5150
4810#: plugins/check_swap.c:537 5151#: plugins/check_swap.c:584
4811msgid "Exit with WARNING status if less than PERCENT of swap space is free" 5152msgid "Exit with WARNING status if less than PERCENT of swap space is free"
4812msgstr "" 5153msgstr ""
4813 5154
4814#: plugins/check_swap.c:539 5155#: plugins/check_swap.c:586
4815msgid "" 5156msgid ""
4816"Exit with CRITICAL status if less than INTEGER bytes of swap space are free" 5157"Exit with CRITICAL status if less than INTEGER bytes of swap space are free"
4817msgstr "" 5158msgstr ""
4818 5159
4819#: plugins/check_swap.c:541 5160#: plugins/check_swap.c:588
4820msgid "Exit with CRITICAL status if less than PERCENT of swap space is free" 5161msgid "Exit with CRITICAL status if less than PERCENT of swap space is free"
4821msgstr "" 5162msgstr ""
4822 5163
4823#: plugins/check_swap.c:543 5164#: plugins/check_swap.c:590
4824msgid "Conduct comparisons for all swap partitions, one by one" 5165msgid "Conduct comparisons for all swap partitions, one by one"
4825msgstr "" 5166msgstr ""
4826 5167
4827#: plugins/check_swap.c:548 5168#: plugins/check_swap.c:592
5169msgid ""
5170"Resulting state when there is no swap regardless of thresholds. Default:"
5171msgstr ""
5172
5173#: plugins/check_swap.c:597
5174msgid ""
5175"Both INTEGER and PERCENT thresholds can be specified, they are all checked."
5176msgstr ""
5177
5178#: plugins/check_swap.c:598
4828msgid "On AIX, if -a is specified, uses lsps -a, otherwise uses lsps -s." 5179msgid "On AIX, if -a is specified, uses lsps -a, otherwise uses lsps -s."
4829msgstr "" 5180msgstr ""
4830 5181
4831#: plugins/check_tcp.c:206 5182#: plugins/check_tcp.c:210
4832msgid "CRITICAL - Generic check_tcp called with unknown service\n" 5183msgid "CRITICAL - Generic check_tcp called with unknown service\n"
4833msgstr "" 5184msgstr ""
4834 5185
4835#: plugins/check_tcp.c:230 5186#: plugins/check_tcp.c:234
4836msgid "With UDP checks, a send/expect string must be specified." 5187msgid "With UDP checks, a send/expect string must be specified."
4837msgstr "" 5188msgstr ""
4838 5189
4839#: plugins/check_tcp.c:431 5190#: plugins/check_tcp.c:445
4840msgid "No arguments found" 5191msgid "No arguments found"
4841msgstr "" 5192msgstr ""
4842 5193
4843#: plugins/check_tcp.c:534 5194#: plugins/check_tcp.c:548
4844msgid "Maxbytes must be a positive integer" 5195msgid "Maxbytes must be a positive integer"
4845msgstr "" 5196msgstr ""
4846 5197
4847#: plugins/check_tcp.c:552 5198#: plugins/check_tcp.c:566
4848msgid "Refuse must be one of ok, warn, crit" 5199msgid "Refuse must be one of ok, warn, crit"
4849msgstr "" 5200msgstr ""
4850 5201
4851#: plugins/check_tcp.c:562 5202#: plugins/check_tcp.c:576
4852msgid "Mismatch must be one of ok, warn, crit" 5203msgid "Mismatch must be one of ok, warn, crit"
4853msgstr "" 5204msgstr ""
4854 5205
4855#: plugins/check_tcp.c:568 5206#: plugins/check_tcp.c:582
4856msgid "Delay must be a positive integer" 5207msgid "Delay must be a positive integer"
4857msgstr "" 5208msgstr ""
4858 5209
4859#: plugins/check_tcp.c:613 5210#: plugins/check_tcp.c:637
4860msgid "You must provide a server address" 5211msgid "You must provide a server address"
4861msgstr "" 5212msgstr ""
4862 5213
4863#: plugins/check_tcp.c:615 5214#: plugins/check_tcp.c:639
4864msgid "Invalid hostname, address or socket" 5215msgid "Invalid hostname, address or socket"
4865msgstr "" 5216msgstr ""
4866 5217
4867#: plugins/check_tcp.c:629 5218#: plugins/check_tcp.c:653
4868#, c-format 5219#, c-format
4869msgid "" 5220msgid ""
4870"This plugin tests %s connections with the specified host (or unix socket).\n" 5221"This plugin tests %s connections with the specified host (or unix socket).\n"
4871"\n" 5222"\n"
4872msgstr "" 5223msgstr ""
4873 5224
4874#: plugins/check_tcp.c:642 5225#: plugins/check_tcp.c:666
4875msgid "" 5226msgid ""
4876"Can use \\n, \\r, \\t or \\ in send or quit string. Must come before send or " 5227"Can use \\n, \\r, \\t or \\\\ in send or quit string. Must come before send "
4877"quit option" 5228"or quit option"
4878msgstr "" 5229msgstr ""
4879 5230
4880#: plugins/check_tcp.c:643 5231#: plugins/check_tcp.c:667
4881msgid "Default: nothing added to send, \\r\\n added to end of quit" 5232msgid "Default: nothing added to send, \\r\\n added to end of quit"
4882msgstr "" 5233msgstr ""
4883 5234
4884#: plugins/check_tcp.c:645 5235#: plugins/check_tcp.c:669
4885msgid "String to send to the server" 5236msgid "String to send to the server"
4886msgstr "" 5237msgstr ""
4887 5238
4888#: plugins/check_tcp.c:647 5239#: plugins/check_tcp.c:671
4889msgid "String to expect in server response" 5240msgid "String to expect in server response"
4890msgstr "" 5241msgstr ""
4891 5242
4892#: plugins/check_tcp.c:647 5243#: plugins/check_tcp.c:671
4893msgid "(may be repeated)" 5244msgid "(may be repeated)"
4894msgstr "" 5245msgstr ""
4895 5246
4896#: plugins/check_tcp.c:649 5247#: plugins/check_tcp.c:673
4897msgid "All expect strings need to occur in server response. Default is any" 5248msgid "All expect strings need to occur in server response. Default is any"
4898msgstr "" 5249msgstr ""
4899 5250
4900#: plugins/check_tcp.c:651 5251#: plugins/check_tcp.c:675
4901msgid "String to send server to initiate a clean close of the connection" 5252msgid "String to send server to initiate a clean close of the connection"
4902msgstr "" 5253msgstr ""
4903 5254
4904#: plugins/check_tcp.c:653 5255#: plugins/check_tcp.c:677
4905msgid "Accept TCP refusals with states ok, warn, crit (default: crit)" 5256msgid "Accept TCP refusals with states ok, warn, crit (default: crit)"
4906msgstr "" 5257msgstr ""
4907 5258
4908#: plugins/check_tcp.c:655 5259#: plugins/check_tcp.c:679
4909msgid "" 5260msgid ""
4910"Accept expected string mismatches with states ok, warn, crit (default: warn)" 5261"Accept expected string mismatches with states ok, warn, crit (default: warn)"
4911msgstr "" 5262msgstr ""
4912 5263
4913#: plugins/check_tcp.c:657 5264#: plugins/check_tcp.c:681
4914msgid "Hide output from TCP socket" 5265msgid "Hide output from TCP socket"
4915msgstr "" 5266msgstr ""
4916 5267
4917#: plugins/check_tcp.c:659 5268#: plugins/check_tcp.c:683
4918msgid "Close connection once more than this number of bytes are received" 5269msgid "Close connection once more than this number of bytes are received"
4919msgstr "" 5270msgstr ""
4920 5271
4921#: plugins/check_tcp.c:661 5272#: plugins/check_tcp.c:685
4922msgid "Seconds to wait between sending string and polling for response" 5273msgid "Seconds to wait between sending string and polling for response"
4923msgstr "" 5274msgstr ""
4924 5275
4925#: plugins/check_tcp.c:666 5276#: plugins/check_tcp.c:690
4926msgid "1st is #days for warning, 2nd is critical (if not specified - 0)." 5277msgid "1st is #days for warning, 2nd is critical (if not specified - 0)."
4927msgstr "" 5278msgstr ""
4928 5279
4929#: plugins/check_tcp.c:668 5280#: plugins/check_tcp.c:692
4930msgid "Use SSL for the connection." 5281msgid "Use SSL for the connection."
4931msgstr "" 5282msgstr ""
4932 5283
5284#: plugins/check_tcp.c:694
5285msgid "SSL server_name"
5286msgstr ""
5287
4933#: plugins/check_time.c:102 5288#: plugins/check_time.c:102
4934#, c-format 5289#, c-format
4935msgid "TIME UNKNOWN - could not connect to server %s, port %d\n" 5290msgid "TIME UNKNOWN - could not connect to server %s, port %d\n"
@@ -5043,358 +5398,403 @@ msgstr ""
5043msgid "UPS does not support any available options\n" 5398msgid "UPS does not support any available options\n"
5044msgstr "" 5399msgstr ""
5045 5400
5046#: plugins/check_ups.c:348 plugins/check_ups.c:411 5401#: plugins/check_ups.c:348 plugins/check_ups.c:414
5047msgid "Invalid response received from host" 5402msgid "Invalid response received from host"
5048msgstr "" 5403msgstr ""
5049 5404
5050#: plugins/check_ups.c:420 5405#: plugins/check_ups.c:406
5406msgid "UPS name to long for buffer"
5407msgstr ""
5408
5409#: plugins/check_ups.c:423
5051#, c-format 5410#, c-format
5052msgid "CRITICAL - no such UPS '%s' on that host\n" 5411msgid "CRITICAL - no such UPS '%s' on that host\n"
5053msgstr "" 5412msgstr ""
5054 5413
5055#: plugins/check_ups.c:430 5414#: plugins/check_ups.c:433
5056msgid "CRITICAL - UPS data is stale" 5415msgid "CRITICAL - UPS data is stale"
5057msgstr "" 5416msgstr ""
5058 5417
5059#: plugins/check_ups.c:435 5418#: plugins/check_ups.c:438
5060#, c-format 5419#, c-format
5061msgid "Unknown error: %s\n" 5420msgid "Unknown error: %s\n"
5062msgstr "" 5421msgstr ""
5063 5422
5064#: plugins/check_ups.c:442 5423#: plugins/check_ups.c:445
5065msgid "Error: unable to parse variable" 5424msgid "Error: unable to parse variable"
5066msgstr "" 5425msgstr ""
5067 5426
5068#: plugins/check_ups.c:549 5427#: plugins/check_ups.c:552
5069msgid "Unrecognized UPS variable" 5428msgid "Unrecognized UPS variable"
5070msgstr "" 5429msgstr ""
5071 5430
5072#: plugins/check_ups.c:587 5431#: plugins/check_ups.c:590
5073msgid "Error : no UPS indicated" 5432msgid "Error : no UPS indicated"
5074msgstr "" 5433msgstr ""
5075 5434
5076#: plugins/check_ups.c:607 5435#: plugins/check_ups.c:610
5077msgid "" 5436msgid ""
5078"This plugin tests the UPS service on the specified host. Network UPS Tools" 5437"This plugin tests the UPS service on the specified host. Network UPS Tools"
5079msgstr "" 5438msgstr ""
5080 5439
5081#: plugins/check_ups.c:608 5440#: plugins/check_ups.c:611
5082msgid "from www.networkupstools.org must be running for this plugin to work." 5441msgid "from www.networkupstools.org must be running for this plugin to work."
5083msgstr "" 5442msgstr ""
5084 5443
5085#: plugins/check_ups.c:620 5444#: plugins/check_ups.c:623
5086msgid "Name of UPS" 5445msgid "Name of UPS"
5087msgstr "" 5446msgstr ""
5088 5447
5089#: plugins/check_ups.c:622 5448#: plugins/check_ups.c:625
5090msgid "Output of temperatures in Celsius" 5449msgid "Output of temperatures in Celsius"
5091msgstr "" 5450msgstr ""
5092 5451
5093#: plugins/check_ups.c:624 5452#: plugins/check_ups.c:627
5094msgid "Valid values for STRING are" 5453msgid "Valid values for STRING are"
5095msgstr "" 5454msgstr ""
5096 5455
5097#: plugins/check_ups.c:635 5456#: plugins/check_ups.c:638
5098msgid "" 5457msgid ""
5099"This plugin attempts to determine the status of a UPS (Uninterruptible Power" 5458"This plugin attempts to determine the status of a UPS (Uninterruptible Power"
5100msgstr "" 5459msgstr ""
5101 5460
5102#: plugins/check_ups.c:636 5461#: plugins/check_ups.c:639
5103msgid "" 5462msgid ""
5104"Supply) on a local or remote host. If the UPS is online or calibrating, the" 5463"Supply) on a local or remote host. If the UPS is online or calibrating, the"
5105msgstr "" 5464msgstr ""
5106 5465
5107#: plugins/check_ups.c:637 5466#: plugins/check_ups.c:640
5108msgid "" 5467msgid ""
5109"plugin will return an OK state. If the battery is on it will return a WARNING" 5468"plugin will return an OK state. If the battery is on it will return a WARNING"
5110msgstr "" 5469msgstr ""
5111 5470
5112#: plugins/check_ups.c:638 5471#: plugins/check_ups.c:641
5113msgid "" 5472msgid ""
5114"state. If the UPS is off or has a low battery the plugin will return a " 5473"state. If the UPS is off or has a low battery the plugin will return a "
5115"CRITICAL" 5474"CRITICAL"
5116msgstr "" 5475msgstr ""
5117 5476
5118#: plugins/check_ups.c:643 5477#: plugins/check_ups.c:646
5119msgid "" 5478msgid ""
5120"You may also specify a variable to check (such as temperature, utility " 5479"You may also specify a variable to check (such as temperature, utility "
5121"voltage," 5480"voltage,"
5122msgstr "" 5481msgstr ""
5123 5482
5124#: plugins/check_ups.c:644 5483#: plugins/check_ups.c:647
5125msgid "" 5484msgid ""
5126"battery load, etc.) as well as warning and critical thresholds for the value" 5485"battery load, etc.) as well as warning and critical thresholds for the value"
5127msgstr "" 5486msgstr ""
5128 5487
5129#: plugins/check_ups.c:645 5488#: plugins/check_ups.c:648
5130msgid "" 5489msgid ""
5131"of that variable. If the remote host has multiple UPS that are being " 5490"of that variable. If the remote host has multiple UPS that are being "
5132"monitored" 5491"monitored"
5133msgstr "" 5492msgstr ""
5134 5493
5135#: plugins/check_ups.c:646 5494#: plugins/check_ups.c:649
5136msgid "you will have to use the --ups option to specify which UPS to check." 5495msgid "you will have to use the --ups option to specify which UPS to check."
5137msgstr "" 5496msgstr ""
5138 5497
5139#: plugins/check_ups.c:648 5498#: plugins/check_ups.c:651
5140msgid "" 5499msgid ""
5141"This plugin requires that the UPSD daemon distributed with Russell Kroll's" 5500"This plugin requires that the UPSD daemon distributed with Russell Kroll's"
5142msgstr "" 5501msgstr ""
5143 5502
5144#: plugins/check_ups.c:649 5503#: plugins/check_ups.c:652
5145msgid "" 5504msgid ""
5146"Network UPS Tools be installed on the remote host. If you do not have the" 5505"Network UPS Tools be installed on the remote host. If you do not have the"
5147msgstr "" 5506msgstr ""
5148 5507
5149#: plugins/check_ups.c:650 5508#: plugins/check_ups.c:653
5150msgid "package installed on your system, you can download it from" 5509msgid "package installed on your system, you can download it from"
5151msgstr "" 5510msgstr ""
5152 5511
5153#: plugins/check_ups.c:651 5512#: plugins/check_ups.c:654
5154msgid "http://www.networkupstools.org" 5513msgid "http://www.networkupstools.org"
5155msgstr "" 5514msgstr ""
5156 5515
5157#: plugins/check_users.c:110 5516#: plugins/check_users.c:91
5517#, c-format
5518msgid "Could not enumerate RD sessions: %d\n"
5519msgstr ""
5520
5521#: plugins/check_users.c:146
5158#, c-format 5522#, c-format
5159msgid "# users=%d" 5523msgid "# users=%d"
5160msgstr "" 5524msgstr ""
5161 5525
5162#: plugins/check_users.c:133 5526#: plugins/check_users.c:164
5163msgid "Unable to read output" 5527msgid "Unable to read output"
5164msgstr "" 5528msgstr ""
5165 5529
5166#: plugins/check_users.c:140 5530#: plugins/check_users.c:166
5167#, c-format 5531#, c-format
5168msgid "USERS %s - %d users currently logged in |%s\n" 5532msgid "USERS %s - %d users currently logged in |%s\n"
5169msgstr "" 5533msgstr ""
5170 5534
5171#: plugins/check_users.c:219 5535#: plugins/check_users.c:241
5172msgid "This plugin checks the number of users currently logged in on the local" 5536msgid "This plugin checks the number of users currently logged in on the local"
5173msgstr "" 5537msgstr ""
5174 5538
5175#: plugins/check_users.c:220 5539#: plugins/check_users.c:242
5176msgid "" 5540msgid ""
5177"system and generates an error if the number exceeds the thresholds specified." 5541"system and generates an error if the number exceeds the thresholds specified."
5178msgstr "" 5542msgstr ""
5179 5543
5180#: plugins/check_users.c:230 5544#: plugins/check_users.c:252
5181msgid "Set WARNING status if more than INTEGER users are logged in" 5545msgid "Set WARNING status if more than INTEGER users are logged in"
5182msgstr "" 5546msgstr ""
5183 5547
5184#: plugins/check_users.c:232 5548#: plugins/check_users.c:254
5185msgid "Set CRITICAL status if more than INTEGER users are logged in" 5549msgid "Set CRITICAL status if more than INTEGER users are logged in"
5186msgstr "" 5550msgstr ""
5187 5551
5188#: plugins/check_ide_smart.c:256 5552#: plugins/check_ide_smart.c:218
5553msgid ""
5554"DEPRECATION WARNING: the -q switch (quiet output) is no longer \"quiet\"."
5555msgstr ""
5556
5557#: plugins/check_ide_smart.c:219
5558msgid "Nagios-compatible output is now always returned."
5559msgstr ""
5560
5561#: plugins/check_ide_smart.c:224
5562msgid "SMART commands are broken and have been disabled (See Notes in --help)."
5563msgstr ""
5564
5565#: plugins/check_ide_smart.c:228
5566msgid ""
5567"DEPRECATION WARNING: the -n switch (Nagios-compatible output) is now the"
5568msgstr ""
5569
5570#: plugins/check_ide_smart.c:229
5571msgid "default and will be removed from future releases."
5572msgstr ""
5573
5574#: plugins/check_ide_smart.c:257
5189#, c-format 5575#, c-format
5190msgid "CRITICAL - Couldn't open device %s: %s\n" 5576msgid "CRITICAL - Couldn't open device %s: %s\n"
5191msgstr "" 5577msgstr ""
5192 5578
5193#: plugins/check_ide_smart.c:261 5579#: plugins/check_ide_smart.c:262
5194#, c-format 5580#, c-format
5195msgid "CRITICAL - SMART_CMD_ENABLE\n" 5581msgid "CRITICAL - SMART_CMD_ENABLE\n"
5196msgstr "" 5582msgstr ""
5197 5583
5198#: plugins/check_ide_smart.c:323 plugins/check_ide_smart.c:350 5584#: plugins/check_ide_smart.c:303 plugins/check_ide_smart.c:330
5199#, c-format 5585#, c-format
5200msgid "CRITICAL - SMART_READ_VALUES: %s\n" 5586msgid "CRITICAL - SMART_READ_VALUES: %s\n"
5201msgstr "" 5587msgstr ""
5202 5588
5203#: plugins/check_ide_smart.c:421 5589#: plugins/check_ide_smart.c:376
5204#, c-format 5590#, c-format
5205msgid "CRITICAL - %d Harddrive PreFailure%cDetected! %d/%d tests failed.\n" 5591msgid "CRITICAL - %d Harddrive PreFailure%cDetected! %d/%d tests failed.\n"
5206msgstr "" 5592msgstr ""
5207 5593
5208#: plugins/check_ide_smart.c:429 5594#: plugins/check_ide_smart.c:384
5209#, c-format 5595#, c-format
5210msgid "WARNING - %d Harddrive Advisor%s Detected. %d/%d tests failed.\n" 5596msgid "WARNING - %d Harddrive Advisor%s Detected. %d/%d tests failed.\n"
5211msgstr "" 5597msgstr ""
5212 5598
5213#: plugins/check_ide_smart.c:437 5599#: plugins/check_ide_smart.c:392
5214#, c-format 5600#, c-format
5215msgid "OK - Operational (%d/%d tests passed)\n" 5601msgid "OK - Operational (%d/%d tests passed)\n"
5216msgstr "" 5602msgstr ""
5217 5603
5218#: plugins/check_ide_smart.c:441 5604#: plugins/check_ide_smart.c:396
5219#, c-format 5605#, c-format
5220msgid "ERROR - Status '%d' unknown. %d/%d tests passed\n" 5606msgid "ERROR - Status '%d' unknown. %d/%d tests passed\n"
5221msgstr "" 5607msgstr ""
5222 5608
5223#: plugins/check_ide_smart.c:474 5609#: plugins/check_ide_smart.c:429
5224#, c-format 5610#, c-format
5225msgid "OffLineStatus=%d {%s}, AutoOffLine=%s, OffLineTimeout=%d minutes\n" 5611msgid "OffLineStatus=%d {%s}, AutoOffLine=%s, OffLineTimeout=%d minutes\n"
5226msgstr "" 5612msgstr ""
5227 5613
5228#: plugins/check_ide_smart.c:480 5614#: plugins/check_ide_smart.c:435
5229#, c-format 5615#, c-format
5230msgid "OffLineCapability=%d {%s %s %s}\n" 5616msgid "OffLineCapability=%d {%s %s %s}\n"
5231msgstr "" 5617msgstr ""
5232 5618
5233#: plugins/check_ide_smart.c:486 5619#: plugins/check_ide_smart.c:441
5234#, c-format 5620#, c-format
5235msgid "SmartRevision=%d, CheckSum=%d, SmartCapability=%d {%s %s}\n" 5621msgid "SmartRevision=%d, CheckSum=%d, SmartCapability=%d {%s %s}\n"
5236msgstr "" 5622msgstr ""
5237 5623
5238#: plugins/check_ide_smart.c:508 plugins/check_ide_smart.c:532 5624#: plugins/check_ide_smart.c:463 plugins/check_ide_smart.c:492
5239#, c-format 5625#, c-format
5240msgid "CRITICAL - %s: %s\n" 5626msgid "CRITICAL - %s: %s\n"
5241msgstr "" 5627msgstr ""
5242 5628
5243#: plugins/check_ide_smart.c:553 plugins/check_ide_smart.c:580 5629#: plugins/check_ide_smart.c:467 plugins/check_ide_smart.c:496
5630#, c-format
5631msgid "OK - Command sent (%s)\n"
5632msgstr ""
5633
5634#: plugins/check_ide_smart.c:517 plugins/check_ide_smart.c:544
5244#, c-format 5635#, c-format
5245msgid "CRITICAL - SMART_READ_THRESHOLDS: %s\n" 5636msgid "CRITICAL - SMART_READ_THRESHOLDS: %s\n"
5246msgstr "" 5637msgstr ""
5247 5638
5248#: plugins/check_ide_smart.c:599 5639#: plugins/check_ide_smart.c:563
5249#, c-format 5640#, c-format
5250msgid "" 5641msgid ""
5251"This plugin checks a local hard drive with the (Linux specific) SMART " 5642"This plugin checks a local hard drive with the (Linux specific) SMART "
5252"interface [http://smartlinux.sourceforge.net/smart/index.php]." 5643"interface [http://smartlinux.sourceforge.net/smart/index.php]."
5253msgstr "" 5644msgstr ""
5254 5645
5255#: plugins/check_ide_smart.c:609 5646#: plugins/check_ide_smart.c:573
5256msgid "Select device DEVICE" 5647msgid "Select device DEVICE"
5257msgstr "" 5648msgstr ""
5258 5649
5259#: plugins/check_ide_smart.c:610 5650#: plugins/check_ide_smart.c:574
5651msgid ""
5652"Note: if the device is specified without this option, any further option will"
5653msgstr ""
5654
5655#: plugins/check_ide_smart.c:575
5656msgid "be ignored."
5657msgstr ""
5658
5659#: plugins/check_ide_smart.c:581
5260msgid "" 5660msgid ""
5261"Note: if the device is selected with this option, _no_ other options are " 5661"The SMART command modes (-i/--immediate, -0/--auto-off and -1/--auto-on) were"
5262"accepted"
5263msgstr "" 5662msgstr ""
5264 5663
5265#: plugins/check_ide_smart.c:612 5664#: plugins/check_ide_smart.c:582
5266msgid "Perform immediately offline tests" 5665msgid ""
5666"broken in an underhand manner and have been disabled. You can use smartctl"
5267msgstr "" 5667msgstr ""
5268 5668
5269#: plugins/check_ide_smart.c:614 5669#: plugins/check_ide_smart.c:583
5270msgid "Returns the number of failed tests" 5670msgid "instead:"
5271msgstr "" 5671msgstr ""
5272 5672
5273#: plugins/check_ide_smart.c:616 5673#: plugins/check_ide_smart.c:584
5274msgid "Turn on automatic offline tests" 5674msgid "-0/--auto-off: use \"smartctl --offlineauto=off\""
5275msgstr "" 5675msgstr ""
5276 5676
5277#: plugins/check_ide_smart.c:618 5677#: plugins/check_ide_smart.c:585
5278msgid "Turn off automatic offline tests" 5678msgid "-1/--auto-on: use \"smartctl --offlineauto=on\""
5279msgstr "" 5679msgstr ""
5280 5680
5281#: plugins/check_ide_smart.c:620 5681#: plugins/check_ide_smart.c:586
5282msgid "Output suitable for the monitoring system" 5682msgid "-i/--immediate: use \"smartctl --test=offline\""
5283msgstr "" 5683msgstr ""
5284 5684
5285#: plugins/negate.c:99 5685#: plugins/negate.c:96
5286msgid "No data returned from command\n" 5686msgid "No data returned from command\n"
5287msgstr "" 5687msgstr ""
5288 5688
5289#: plugins/negate.c:170 5689#: plugins/negate.c:166
5290msgid "" 5690msgid ""
5291"Timeout result must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) " 5691"Timeout result must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) "
5292"or integer (0-3)." 5692"or integer (0-3)."
5293msgstr "" 5693msgstr ""
5294 5694
5295#: plugins/negate.c:174 5695#: plugins/negate.c:170
5296msgid "" 5696msgid ""
5297"Ok must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or integer " 5697"Ok must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or integer "
5298"(0-3)." 5698"(0-3)."
5299msgstr "" 5699msgstr ""
5300 5700
5301#: plugins/negate.c:180 5701#: plugins/negate.c:176
5302msgid "" 5702msgid ""
5303"Warning must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or " 5703"Warning must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or "
5304"integer (0-3)." 5704"integer (0-3)."
5305msgstr "" 5705msgstr ""
5306 5706
5307#: plugins/negate.c:185 5707#: plugins/negate.c:181
5308msgid "" 5708msgid ""
5309"Critical must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or " 5709"Critical must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or "
5310"integer (0-3)." 5710"integer (0-3)."
5311msgstr "" 5711msgstr ""
5312 5712
5313#: plugins/negate.c:190 5713#: plugins/negate.c:186
5314msgid "" 5714msgid ""
5315"Unknown must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or " 5715"Unknown must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or "
5316"integer (0-3)." 5716"integer (0-3)."
5317msgstr "" 5717msgstr ""
5318 5718
5319#: plugins/negate.c:217 5719#: plugins/negate.c:213
5320msgid "Require path to command" 5720msgid "Require path to command"
5321msgstr "" 5721msgstr ""
5322 5722
5323#: plugins/negate.c:246 5723#: plugins/negate.c:224
5324msgid "" 5724msgid ""
5325"Negates the status of a plugin (returns OK for CRITICAL and vice-versa)." 5725"Negates the status of a plugin (returns OK for CRITICAL and vice-versa)."
5326msgstr "" 5726msgstr ""
5327 5727
5328#: plugins/negate.c:247 5728#: plugins/negate.c:225
5329msgid "Additional switches can be used to control which state becomes what." 5729msgid "Additional switches can be used to control which state becomes what."
5330msgstr "" 5730msgstr ""
5331 5731
5332#: plugins/negate.c:256 5732#: plugins/negate.c:234
5333msgid "Keep timeout longer than the plugin timeout to retain CRITICAL status." 5733msgid "Keep timeout longer than the plugin timeout to retain CRITICAL status."
5334msgstr "" 5734msgstr ""
5335 5735
5336#: plugins/negate.c:258 5736#: plugins/negate.c:236
5337msgid "Custom result on Negate timeouts; see below for STATUS definition\n" 5737msgid "Custom result on Negate timeouts; see below for STATUS definition\n"
5338msgstr "" 5738msgstr ""
5339 5739
5340#: plugins/negate.c:264 5740#: plugins/negate.c:242
5341#, c-format 5741#, c-format
5342msgid "" 5742msgid ""
5343" STATUS can be 'OK', 'WARNING', 'CRITICAL' or 'UNKNOWN' without single\n" 5743" STATUS can be 'OK', 'WARNING', 'CRITICAL' or 'UNKNOWN' without single\n"
5344msgstr "" 5744msgstr ""
5345 5745
5346#: plugins/negate.c:265 5746#: plugins/negate.c:243
5347#, c-format 5747#, c-format
5348msgid "" 5748msgid ""
5349" quotes. Numeric values are accepted. If nothing is specified, permutes\n" 5749" quotes. Numeric values are accepted. If nothing is specified, permutes\n"
5350msgstr "" 5750msgstr ""
5351 5751
5352#: plugins/negate.c:266 5752#: plugins/negate.c:244
5353#, c-format 5753#, c-format
5354msgid " OK and CRITICAL.\n" 5754msgid " OK and CRITICAL.\n"
5355msgstr "" 5755msgstr ""
5356 5756
5357#: plugins/negate.c:268 5757#: plugins/negate.c:246
5358#, c-format 5758#, c-format
5359msgid "" 5759msgid ""
5360" Substitute output text as well. Will only substitute text in CAPITALS\n" 5760" Substitute output text as well. Will only substitute text in CAPITALS\n"
5361msgstr "" 5761msgstr ""
5362 5762
5363#: plugins/negate.c:273 5763#: plugins/negate.c:251
5364msgid "Run check_ping and invert result. Must use full path to plugin" 5764msgid "Run check_ping and invert result. Must use full path to plugin"
5365msgstr "" 5765msgstr ""
5366 5766
5367#: plugins/negate.c:275 5767#: plugins/negate.c:253
5368msgid "This will return OK instead of WARNING and UNKNOWN instead of CRITICAL" 5768msgid "This will return OK instead of WARNING and UNKNOWN instead of CRITICAL"
5369msgstr "" 5769msgstr ""
5370 5770
5371#: plugins/negate.c:278 5771#: plugins/negate.c:256
5372msgid "" 5772msgid ""
5373"This plugin is a wrapper to take the output of another plugin and invert it." 5773"This plugin is a wrapper to take the output of another plugin and invert it."
5374msgstr "" 5774msgstr ""
5375 5775
5376#: plugins/negate.c:279 5776#: plugins/negate.c:257
5377msgid "The full path of the plugin must be provided." 5777msgid "The full path of the plugin must be provided."
5378msgstr "" 5778msgstr ""
5379 5779
5380#: plugins/negate.c:280 5780#: plugins/negate.c:258
5381msgid "If the wrapped plugin returns OK, the wrapper will return CRITICAL." 5781msgid "If the wrapped plugin returns OK, the wrapper will return CRITICAL."
5382msgstr "" 5782msgstr ""
5383 5783
5384#: plugins/negate.c:281 5784#: plugins/negate.c:259
5385msgid "If the wrapped plugin returns CRITICAL, the wrapper will return OK." 5785msgid "If the wrapped plugin returns CRITICAL, the wrapper will return OK."
5386msgstr "" 5786msgstr ""
5387 5787
5388#: plugins/negate.c:282 5788#: plugins/negate.c:260
5389msgid "Otherwise, the output state of the wrapped plugin is unchanged." 5789msgid "Otherwise, the output state of the wrapped plugin is unchanged."
5390msgstr "" 5790msgstr ""
5391 5791
5392#: plugins/negate.c:284 5792#: plugins/negate.c:262
5393msgid "" 5793msgid ""
5394"Using timeout-result, it is possible to override the timeout behaviour or a" 5794"Using timeout-result, it is possible to override the timeout behaviour or a"
5395msgstr "" 5795msgstr ""
5396 5796
5397#: plugins/negate.c:285 5797#: plugins/negate.c:263
5398msgid "plugin by setting the negate timeout a bit lower." 5798msgid "plugin by setting the negate timeout a bit lower."
5399msgstr "" 5799msgstr ""
5400 5800
@@ -5408,134 +5808,129 @@ msgstr ""
5408msgid "%s - Abnormal timeout after %d seconds\n" 5808msgid "%s - Abnormal timeout after %d seconds\n"
5409msgstr "" 5809msgstr ""
5410 5810
5411#: plugins/netutils.c:79 plugins/netutils.c:281 5811#: plugins/netutils.c:79 plugins/netutils.c:292
5412msgid "Send failed" 5812msgid "Send failed"
5413msgstr "" 5813msgstr ""
5414 5814
5415#: plugins/netutils.c:96 plugins/netutils.c:296 5815#: plugins/netutils.c:96 plugins/netutils.c:307
5416msgid "No data was received from host!" 5816msgid "No data was received from host!"
5417msgstr "" 5817msgstr ""
5418 5818
5419#: plugins/netutils.c:204 plugins/netutils.c:240 5819#: plugins/netutils.c:209 plugins/netutils.c:245
5420msgid "Socket creation failed" 5820msgid "Socket creation failed"
5421msgstr "" 5821msgstr ""
5422 5822
5423#: plugins/netutils.c:233 5823#: plugins/netutils.c:238
5424msgid "Supplied path too long unix domain socket" 5824msgid "Supplied path too long unix domain socket"
5425msgstr "" 5825msgstr ""
5426 5826
5427#: plugins/netutils.c:305 5827#: plugins/netutils.c:316
5428msgid "Receive failed" 5828msgid "Receive failed"
5429msgstr "" 5829msgstr ""
5430 5830
5431#: plugins/netutils.c:331 plugins-root/check_dhcp.c:1342 5831#: plugins/netutils.c:342 plugins-root/check_dhcp.c:1310
5432#, c-format 5832#, c-format
5433msgid "Invalid hostname/address - %s" 5833msgid "Invalid hostname/address - %s"
5434msgstr "" 5834msgstr ""
5435 5835
5436#: plugins/popen.c:142 5836#: plugins/popen.c:133
5437msgid "Could not malloc argv array in popen()" 5837msgid "Could not malloc argv array in popen()"
5438msgstr "" 5838msgstr ""
5439 5839
5440#: plugins/popen.c:152 5840#: plugins/popen.c:143
5441msgid "CRITICAL - You need more args!!!" 5841msgid "CRITICAL - You need more args!!!"
5442msgstr "" 5842msgstr ""
5443 5843
5444#: plugins/popen.c:209 5844#: plugins/popen.c:201
5445msgid "Cannot catch SIGCHLD" 5845msgid "Cannot catch SIGCHLD"
5446msgstr "" 5846msgstr ""
5447 5847
5448#: plugins/popen.c:304 5848#: plugins/popen.c:287
5449#, c-format 5849#, c-format
5450msgid "CRITICAL - Plugin timed out after %d seconds\n" 5850msgid "CRITICAL - Plugin timed out after %d seconds\n"
5451msgstr "" 5851msgstr ""
5452 5852
5453#: plugins/popen.c:307 5853#: plugins/popen.c:290
5454msgid "CRITICAL - popen timeout received, but no child process" 5854msgid "CRITICAL - popen timeout received, but no child process"
5455msgstr "" 5855msgstr ""
5456 5856
5457#: plugins/popen.c:323 5857#: plugins/urlize.c:129
5458msgid "sysconf error for _SC_OPEN_MAX"
5459msgstr ""
5460
5461#: plugins/urlize.c:130
5462#, c-format 5858#, c-format
5463msgid "" 5859msgid ""
5464"%s UNKNOWN - No data received from host\n" 5860"%s UNKNOWN - No data received from host\n"
5465"CMD: %s</A>\n" 5861"CMD: %s</A>\n"
5466msgstr "" 5862msgstr ""
5467 5863
5468#: plugins/urlize.c:169 5864#: plugins/urlize.c:168
5469msgid "" 5865msgid ""
5470"This plugin wraps the text output of another command (plugin) in HTML <A>" 5866"This plugin wraps the text output of another command (plugin) in HTML <A>"
5471msgstr "" 5867msgstr ""
5472 5868
5473#: plugins/urlize.c:170 5869#: plugins/urlize.c:169
5474msgid "" 5870msgid ""
5475"tags, thus displaying the child plugin's output as a clickable link in " 5871"tags, thus displaying the child plugin's output as a clickable link in "
5476"compatible" 5872"compatible"
5477msgstr "" 5873msgstr ""
5478 5874
5479#: plugins/urlize.c:171 5875#: plugins/urlize.c:170
5480msgid "" 5876msgid ""
5481"monitoring status screen. This plugin returns the status of the invoked " 5877"monitoring status screen. This plugin returns the status of the invoked "
5482"plugin." 5878"plugin."
5483msgstr "" 5879msgstr ""
5484 5880
5485#: plugins/urlize.c:181 5881#: plugins/urlize.c:180
5486msgid "" 5882msgid ""
5487"Pay close attention to quoting to ensure that the shell passes the expected" 5883"Pay close attention to quoting to ensure that the shell passes the expected"
5488msgstr "" 5884msgstr ""
5489 5885
5490#: plugins/urlize.c:182 5886#: plugins/urlize.c:181
5491msgid "data to the plugin. For example, in:" 5887msgid "data to the plugin. For example, in:"
5492msgstr "" 5888msgstr ""
5493 5889
5494#: plugins/urlize.c:183 5890#: plugins/urlize.c:182
5495msgid "urlize http://example.com/ check_http -H example.com -r 'two words'" 5891msgid "urlize http://example.com/ check_http -H example.com -r 'two words'"
5496msgstr "" 5892msgstr ""
5497 5893
5498#: plugins/urlize.c:184 5894#: plugins/urlize.c:183
5499msgid "the shell will remove the single quotes and urlize will see:" 5895msgid "the shell will remove the single quotes and urlize will see:"
5500msgstr "" 5896msgstr ""
5501 5897
5502#: plugins/urlize.c:185 5898#: plugins/urlize.c:184
5503msgid "urlize http://example.com/ check_http -H example.com -r two words" 5899msgid "urlize http://example.com/ check_http -H example.com -r two words"
5504msgstr "" 5900msgstr ""
5505 5901
5506#: plugins/urlize.c:186 5902#: plugins/urlize.c:185
5507msgid "You probably want:" 5903msgid "You probably want:"
5508msgstr "" 5904msgstr ""
5509 5905
5510#: plugins/urlize.c:187 5906#: plugins/urlize.c:186
5511msgid "urlize http://example.com/ \"check_http -H example.com -r 'two words'\"" 5907msgid "urlize http://example.com/ \"check_http -H example.com -r 'two words'\""
5512msgstr "" 5908msgstr ""
5513 5909
5514#: plugins/utils.c:174 5910#: plugins/utils.c:479
5515#, c-format
5516msgid "%s - Plugin timed out after %d seconds\n"
5517msgstr ""
5518
5519#: plugins/utils.c:469
5520msgid "failed realloc in strpcpy\n" 5911msgid "failed realloc in strpcpy\n"
5521msgstr "" 5912msgstr ""
5522 5913
5523#: plugins/utils.c:511 5914#: plugins/utils.c:521
5524msgid "failed malloc in strscat\n" 5915msgid "failed malloc in strscat\n"
5525msgstr "" 5916msgstr ""
5526 5917
5527#: plugins/utils.c:531 5918#: plugins/utils.c:541
5528msgid "failed malloc in xvasprintf\n" 5919msgid "failed malloc in xvasprintf\n"
5529msgstr "" 5920msgstr ""
5530 5921
5531#: plugins/utils.h:137 5922#: plugins/utils.c:819
5923msgid "sysconf error for _SC_OPEN_MAX\n"
5924msgstr ""
5925
5926#: plugins/utils.h:127
5532#, c-format 5927#, c-format
5533msgid "" 5928msgid ""
5534" %s (-h | --help) for detailed help\n" 5929" %s (-h | --help) for detailed help\n"
5535" %s (-V | --version) for version information\n" 5930" %s (-V | --version) for version information\n"
5536msgstr "" 5931msgstr ""
5537 5932
5538#: plugins/utils.h:141 5933#: plugins/utils.h:131
5539msgid "" 5934msgid ""
5540"\n" 5935"\n"
5541"Options:\n" 5936"Options:\n"
@@ -5545,7 +5940,7 @@ msgid ""
5545" Print version information\n" 5940" Print version information\n"
5546msgstr "" 5941msgstr ""
5547 5942
5548#: plugins/utils.h:148 5943#: plugins/utils.h:138
5549#, c-format 5944#, c-format
5550msgid "" 5945msgid ""
5551" -H, --hostname=ADDRESS\n" 5946" -H, --hostname=ADDRESS\n"
@@ -5554,7 +5949,7 @@ msgid ""
5554" Port number (default: %s)\n" 5949" Port number (default: %s)\n"
5555msgstr "" 5950msgstr ""
5556 5951
5557#: plugins/utils.h:154 5952#: plugins/utils.h:144
5558msgid "" 5953msgid ""
5559" -4, --use-ipv4\n" 5954" -4, --use-ipv4\n"
5560" Use IPv4 connection\n" 5955" Use IPv4 connection\n"
@@ -5562,14 +5957,14 @@ msgid ""
5562" Use IPv6 connection\n" 5957" Use IPv6 connection\n"
5563msgstr "" 5958msgstr ""
5564 5959
5565#: plugins/utils.h:160 5960#: plugins/utils.h:150
5566msgid "" 5961msgid ""
5567" -v, --verbose\n" 5962" -v, --verbose\n"
5568" Show details for command-line debugging (output may be truncated by\n" 5963" Show details for command-line debugging (output may be truncated by\n"
5569"\t\tthe monitoring system)\n" 5964" the monitoring system)\n"
5570msgstr "" 5965msgstr ""
5571 5966
5572#: plugins/utils.h:165 5967#: plugins/utils.h:155
5573msgid "" 5968msgid ""
5574" -w, --warning=DOUBLE\n" 5969" -w, --warning=DOUBLE\n"
5575" Response time to result in warning status (seconds)\n" 5970" Response time to result in warning status (seconds)\n"
@@ -5577,7 +5972,7 @@ msgid ""
5577" Response time to result in critical status (seconds)\n" 5972" Response time to result in critical status (seconds)\n"
5578msgstr "" 5973msgstr ""
5579 5974
5580#: plugins/utils.h:171 5975#: plugins/utils.h:161
5581msgid "" 5976msgid ""
5582" -w, --warning=RANGE\n" 5977" -w, --warning=RANGE\n"
5583" Warning range (format: start:end). Alert if outside this range\n" 5978" Warning range (format: start:end). Alert if outside this range\n"
@@ -5585,14 +5980,21 @@ msgid ""
5585" Critical range\n" 5980" Critical range\n"
5586msgstr "" 5981msgstr ""
5587 5982
5588#: plugins/utils.h:177 5983#: plugins/utils.h:167
5589#, c-format 5984#, c-format
5590msgid "" 5985msgid ""
5591" -t, --timeout=INTEGER\n" 5986" -t, --timeout=INTEGER\n"
5592" Seconds before connection times out (default: %d)\n" 5987" Seconds before connection times out (default: %d)\n"
5593msgstr "" 5988msgstr ""
5594 5989
5595#: plugins/utils.h:182 5990#: plugins/utils.h:171
5991#, c-format
5992msgid ""
5993" -t, --timeout=INTEGER\n"
5994" Seconds before plugin times out (default: %d)\n"
5995msgstr ""
5996
5997#: plugins/utils.h:176
5596msgid "" 5998msgid ""
5597" --extra-opts=[section][@file]\n" 5999" --extra-opts=[section][@file]\n"
5598" Read options from an ini file. See\n" 6000" Read options from an ini file. See\n"
@@ -5600,14 +6002,14 @@ msgid ""
5600" for usage and examples.\n" 6002" for usage and examples.\n"
5601msgstr "" 6003msgstr ""
5602 6004
5603#: plugins/utils.h:190 6005#: plugins/utils.h:185
5604msgid "" 6006msgid ""
5605" See:\n" 6007" See:\n"
5606" https://www.monitoring-plugins.org/doc/guidelines.html#THRESHOLDFORMAT\n" 6008" https://www.monitoring-plugins.org/doc/guidelines.html#THRESHOLDFORMAT\n"
5607" for THRESHOLD format and examples.\n" 6009" for THRESHOLD format and examples.\n"
5608msgstr "" 6010msgstr ""
5609 6011
5610#: plugins/utils.h:195 6012#: plugins/utils.h:190
5611msgid "" 6013msgid ""
5612"\n" 6014"\n"
5613"Send email to help@monitoring-plugins.org if you have questions regarding\n" 6015"Send email to help@monitoring-plugins.org if you have questions regarding\n"
@@ -5616,7 +6018,7 @@ msgid ""
5616"\n" 6018"\n"
5617msgstr "" 6019msgstr ""
5618 6020
5619#: plugins/utils.h:200 6021#: plugins/utils.h:195
5620msgid "" 6022msgid ""
5621"\n" 6023"\n"
5622"The Monitoring Plugins come with ABSOLUTELY NO WARRANTY. You may " 6024"The Monitoring Plugins come with ABSOLUTELY NO WARRANTY. You may "
@@ -5625,398 +6027,406 @@ msgid ""
5625"For more information about these matters, see the file named COPYING.\n" 6027"For more information about these matters, see the file named COPYING.\n"
5626msgstr "" 6028msgstr ""
5627 6029
5628#: plugins-root/check_dhcp.c:320 6030#: plugins-root/check_dhcp.c:317
5629#, c-format 6031#, c-format
5630msgid "Error: Could not get hardware address of interface '%s'\n" 6032msgid "Error: Could not get hardware address of interface '%s'\n"
5631msgstr "" 6033msgstr ""
5632 6034
5633#: plugins-root/check_dhcp.c:342 6035#: plugins-root/check_dhcp.c:340
5634#, c-format 6036#, c-format
5635msgid "Error: if_nametoindex error - %s.\n" 6037msgid "Error: if_nametoindex error - %s.\n"
5636msgstr "" 6038msgstr ""
5637 6039
5638#: plugins-root/check_dhcp.c:347 6040#: plugins-root/check_dhcp.c:345
5639#, c-format 6041#, c-format
5640msgid "Error: Couldn't get hardware address from %s. sysctl 1 error - %s.\n" 6042msgid "Error: Couldn't get hardware address from %s. sysctl 1 error - %s.\n"
5641msgstr "" 6043msgstr ""
5642 6044
5643#: plugins-root/check_dhcp.c:352 6045#: plugins-root/check_dhcp.c:350
5644#, c-format 6046#, c-format
5645msgid "" 6047msgid ""
5646"Error: Couldn't get hardware address from interface %s. malloc error - %s.\n" 6048"Error: Couldn't get hardware address from interface %s. malloc error - %s.\n"
5647msgstr "" 6049msgstr ""
5648 6050
5649#: plugins-root/check_dhcp.c:357 6051#: plugins-root/check_dhcp.c:355
5650#, c-format 6052#, c-format
5651msgid "Error: Couldn't get hardware address from %s. sysctl 2 error - %s.\n" 6053msgid "Error: Couldn't get hardware address from %s. sysctl 2 error - %s.\n"
5652msgstr "" 6054msgstr ""
5653 6055
5654#: plugins-root/check_dhcp.c:388 6056#: plugins-root/check_dhcp.c:386
5655#, c-format 6057#, c-format
5656msgid "" 6058msgid ""
5657"Error: can't find unit number in interface_name (%s) - expecting TypeNumber " 6059"Error: can't find unit number in interface_name (%s) - expecting TypeNumber "
5658"eg lnc0.\n" 6060"eg lnc0.\n"
5659msgstr "" 6061msgstr ""
5660 6062
5661#: plugins-root/check_dhcp.c:393 plugins-root/check_dhcp.c:405 6063#: plugins-root/check_dhcp.c:391 plugins-root/check_dhcp.c:403
5662#, c-format 6064#, c-format
5663msgid "" 6065msgid ""
5664"Error: can't read MAC address from DLPI streams interface for device %s unit " 6066"Error: can't read MAC address from DLPI streams interface for device %s unit "
5665"%d.\n" 6067"%d.\n"
5666msgstr "" 6068msgstr ""
5667 6069
5668#: plugins-root/check_dhcp.c:411 6070#: plugins-root/check_dhcp.c:409
5669#, c-format 6071#, c-format
5670msgid "" 6072msgid ""
5671"Error: can't get MAC address for this architecture. Use the --mac option.\n" 6073"Error: can't get MAC address for this architecture. Use the --mac option.\n"
5672msgstr "" 6074msgstr ""
5673 6075
5674#: plugins-root/check_dhcp.c:430 6076#: plugins-root/check_dhcp.c:428
5675#, c-format 6077#, c-format
5676msgid "Error: Cannot determine IP address of interface %s\n" 6078msgid "Error: Cannot determine IP address of interface %s\n"
5677msgstr "" 6079msgstr ""
5678 6080
5679#: plugins-root/check_dhcp.c:438 6081#: plugins-root/check_dhcp.c:436
5680#, c-format 6082#, c-format
5681msgid "Error: Cannot get interface IP address on this platform.\n" 6083msgid "Error: Cannot get interface IP address on this platform.\n"
5682msgstr "" 6084msgstr ""
5683 6085
5684#: plugins-root/check_dhcp.c:443 6086#: plugins-root/check_dhcp.c:441
5685#, c-format 6087#, c-format
5686msgid "Pretending to be relay client %s\n" 6088msgid "Pretending to be relay client %s\n"
5687msgstr "" 6089msgstr ""
5688 6090
5689#: plugins-root/check_dhcp.c:528 6091#: plugins-root/check_dhcp.c:521
5690#, c-format 6092#, c-format
5691msgid "DHCPDISCOVER to %s port %d\n" 6093msgid "DHCPDISCOVER to %s port %d\n"
5692msgstr "" 6094msgstr ""
5693 6095
5694#: plugins-root/check_dhcp.c:580 6096#: plugins-root/check_dhcp.c:573
5695#, c-format 6097#, c-format
5696msgid "Result=ERROR\n" 6098msgid "Result=ERROR\n"
5697msgstr "" 6099msgstr ""
5698 6100
5699#: plugins-root/check_dhcp.c:586 6101#: plugins-root/check_dhcp.c:579
5700#, c-format 6102#, c-format
5701msgid "Result=OK\n" 6103msgid "Result=OK\n"
5702msgstr "" 6104msgstr ""
5703 6105
5704#: plugins-root/check_dhcp.c:596 6106#: plugins-root/check_dhcp.c:589
5705#, c-format 6107#, c-format
5706msgid "DHCPOFFER from IP address %s" 6108msgid "DHCPOFFER from IP address %s"
5707msgstr "" 6109msgstr ""
5708 6110
5709#: plugins-root/check_dhcp.c:597 6111#: plugins-root/check_dhcp.c:590
5710#, c-format 6112#, c-format
5711msgid " via %s\n" 6113msgid " via %s\n"
5712msgstr "" 6114msgstr ""
5713 6115
5714#: plugins-root/check_dhcp.c:604 6116#: plugins-root/check_dhcp.c:597
5715#, c-format 6117#, c-format
5716msgid "" 6118msgid ""
5717"DHCPOFFER XID (%u) did not match DHCPDISCOVER XID (%u) - ignoring packet\n" 6119"DHCPOFFER XID (%u) did not match DHCPDISCOVER XID (%u) - ignoring packet\n"
5718msgstr "" 6120msgstr ""
5719 6121
5720#: plugins-root/check_dhcp.c:626 6122#: plugins-root/check_dhcp.c:619
5721#, c-format 6123#, c-format
5722msgid "DHCPOFFER hardware address did not match our own - ignoring packet\n" 6124msgid "DHCPOFFER hardware address did not match our own - ignoring packet\n"
5723msgstr "" 6125msgstr ""
5724 6126
5725#: plugins-root/check_dhcp.c:644 6127#: plugins-root/check_dhcp.c:637
5726#, c-format 6128#, c-format
5727msgid "Total responses seen on the wire: %d\n" 6129msgid "Total responses seen on the wire: %d\n"
5728msgstr "" 6130msgstr ""
5729 6131
5730#: plugins-root/check_dhcp.c:645 6132#: plugins-root/check_dhcp.c:638
5731#, c-format 6133#, c-format
5732msgid "Valid responses for this machine: %d\n" 6134msgid "Valid responses for this machine: %d\n"
5733msgstr "" 6135msgstr ""
5734 6136
5735#: plugins-root/check_dhcp.c:660 6137#: plugins-root/check_dhcp.c:653
5736#, c-format 6138#, c-format
5737msgid "send_dhcp_packet result: %d\n" 6139msgid "send_dhcp_packet result: %d\n"
5738msgstr "" 6140msgstr ""
5739 6141
5740#: plugins-root/check_dhcp.c:693 6142#: plugins-root/check_dhcp.c:686
5741#, c-format 6143#, c-format
5742msgid "No (more) data received (nfound: %d)\n" 6144msgid "No (more) data received (nfound: %d)\n"
5743msgstr "" 6145msgstr ""
5744 6146
5745#: plugins-root/check_dhcp.c:712 6147#: plugins-root/check_dhcp.c:699
5746#, c-format 6148#, c-format
5747msgid "recvfrom() failed, " 6149msgid "recvfrom() failed, "
5748msgstr "" 6150msgstr ""
5749 6151
5750#: plugins-root/check_dhcp.c:719 6152#: plugins-root/check_dhcp.c:706
5751#, c-format 6153#, c-format
5752msgid "receive_dhcp_packet() result: %d\n" 6154msgid "receive_dhcp_packet() result: %d\n"
5753msgstr "" 6155msgstr ""
5754 6156
5755#: plugins-root/check_dhcp.c:720 6157#: plugins-root/check_dhcp.c:707
5756#, c-format 6158#, c-format
5757msgid "receive_dhcp_packet() source: %s\n" 6159msgid "receive_dhcp_packet() source: %s\n"
5758msgstr "" 6160msgstr ""
5759 6161
5760#: plugins-root/check_dhcp.c:750 6162#: plugins-root/check_dhcp.c:737
5761#, c-format 6163#, c-format
5762msgid "Error: Could not create socket!\n" 6164msgid "Error: Could not create socket!\n"
5763msgstr "" 6165msgstr ""
5764 6166
5765#: plugins-root/check_dhcp.c:760 6167#: plugins-root/check_dhcp.c:747
5766#, c-format 6168#, c-format
5767msgid "Error: Could not set reuse address option on DHCP socket!\n" 6169msgid "Error: Could not set reuse address option on DHCP socket!\n"
5768msgstr "" 6170msgstr ""
5769 6171
5770#: plugins-root/check_dhcp.c:766 6172#: plugins-root/check_dhcp.c:753
5771#, c-format 6173#, c-format
5772msgid "Error: Could not set broadcast option on DHCP socket!\n" 6174msgid "Error: Could not set broadcast option on DHCP socket!\n"
5773msgstr "" 6175msgstr ""
5774 6176
5775#: plugins-root/check_dhcp.c:775 6177#: plugins-root/check_dhcp.c:762
5776#, c-format 6178#, c-format
5777msgid "" 6179msgid ""
5778"Error: Could not bind socket to interface %s. Check your privileges...\n" 6180"Error: Could not bind socket to interface %s. Check your privileges...\n"
5779msgstr "" 6181msgstr ""
5780 6182
5781#: plugins-root/check_dhcp.c:786 6183#: plugins-root/check_dhcp.c:773
5782#, c-format 6184#, c-format
5783msgid "" 6185msgid ""
5784"Error: Could not bind to DHCP socket (port %d)! Check your privileges...\n" 6186"Error: Could not bind to DHCP socket (port %d)! Check your privileges...\n"
5785msgstr "" 6187msgstr ""
5786 6188
5787#: plugins-root/check_dhcp.c:820 6189#: plugins-root/check_dhcp.c:807
5788#, c-format 6190#, c-format
5789msgid "Requested server address: %s\n" 6191msgid "Requested server address: %s\n"
5790msgstr "" 6192msgstr ""
5791 6193
5792#: plugins-root/check_dhcp.c:882 6194#: plugins-root/check_dhcp.c:869
5793#, c-format 6195#, c-format
5794msgid "Lease Time: Infinite\n" 6196msgid "Lease Time: Infinite\n"
5795msgstr "" 6197msgstr ""
5796 6198
5797#: plugins-root/check_dhcp.c:884 6199#: plugins-root/check_dhcp.c:871
5798#, c-format 6200#, c-format
5799msgid "Lease Time: %lu seconds\n" 6201msgid "Lease Time: %lu seconds\n"
5800msgstr "" 6202msgstr ""
5801 6203
5802#: plugins-root/check_dhcp.c:886 6204#: plugins-root/check_dhcp.c:873
5803#, c-format 6205#, c-format
5804msgid "Renewal Time: Infinite\n" 6206msgid "Renewal Time: Infinite\n"
5805msgstr "" 6207msgstr ""
5806 6208
5807#: plugins-root/check_dhcp.c:888 6209#: plugins-root/check_dhcp.c:875
5808#, c-format 6210#, c-format
5809msgid "Renewal Time: %lu seconds\n" 6211msgid "Renewal Time: %lu seconds\n"
5810msgstr "" 6212msgstr ""
5811 6213
5812#: plugins-root/check_dhcp.c:890 6214#: plugins-root/check_dhcp.c:877
5813#, c-format 6215#, c-format
5814msgid "Rebinding Time: Infinite\n" 6216msgid "Rebinding Time: Infinite\n"
5815msgstr "" 6217msgstr ""
5816 6218
5817#: plugins-root/check_dhcp.c:891 6219#: plugins-root/check_dhcp.c:878
5818#, c-format 6220#, c-format
5819msgid "Rebinding Time: %lu seconds\n" 6221msgid "Rebinding Time: %lu seconds\n"
5820msgstr "" 6222msgstr ""
5821 6223
5822#: plugins-root/check_dhcp.c:919 6224#: plugins-root/check_dhcp.c:906
5823#, c-format 6225#, c-format
5824msgid "Added offer from server @ %s" 6226msgid "Added offer from server @ %s"
5825msgstr "" 6227msgstr ""
5826 6228
5827#: plugins-root/check_dhcp.c:920 6229#: plugins-root/check_dhcp.c:907
5828#, c-format 6230#, c-format
5829msgid " of IP address %s\n" 6231msgid " of IP address %s\n"
5830msgstr "" 6232msgstr ""
5831 6233
5832#: plugins-root/check_dhcp.c:987 6234#: plugins-root/check_dhcp.c:974
5833#, c-format 6235#, c-format
5834msgid "DHCP Server Match: Offerer=%s" 6236msgid "DHCP Server Match: Offerer=%s"
5835msgstr "" 6237msgstr ""
5836 6238
5837#: plugins-root/check_dhcp.c:988 6239#: plugins-root/check_dhcp.c:975
5838#, c-format 6240#, c-format
5839msgid " Requested=%s" 6241msgid " Requested=%s"
5840msgstr "" 6242msgstr ""
5841 6243
5842#: plugins-root/check_dhcp.c:990 6244#: plugins-root/check_dhcp.c:977
5843#, c-format 6245#, c-format
5844msgid " (duplicate)" 6246msgid " (duplicate)"
5845msgstr "" 6247msgstr ""
5846 6248
5847#: plugins-root/check_dhcp.c:991 6249#: plugins-root/check_dhcp.c:978
5848#, c-format 6250#, c-format
5849msgid "\n" 6251msgid "\n"
5850msgstr "" 6252msgstr ""
5851 6253
5852#: plugins-root/check_dhcp.c:1039 6254#: plugins-root/check_dhcp.c:1026
5853#, c-format 6255#, c-format
5854msgid "No DHCPOFFERs were received.\n" 6256msgid "No DHCPOFFERs were received.\n"
5855msgstr "" 6257msgstr ""
5856 6258
5857#: plugins-root/check_dhcp.c:1043 6259#: plugins-root/check_dhcp.c:1030
5858#, c-format 6260#, c-format
5859msgid "Received %d DHCPOFFER(s)" 6261msgid "Received %d DHCPOFFER(s)"
5860msgstr "" 6262msgstr ""
5861 6263
5862#: plugins-root/check_dhcp.c:1046 6264#: plugins-root/check_dhcp.c:1033
5863#, c-format 6265#, c-format
5864msgid ", %s%d of %d requested servers responded" 6266msgid ", %s%d of %d requested servers responded"
5865msgstr "" 6267msgstr ""
5866 6268
5867#: plugins-root/check_dhcp.c:1049 6269#: plugins-root/check_dhcp.c:1036
5868#, c-format 6270#, c-format
5869msgid ", requested address (%s) was %soffered" 6271msgid ", requested address (%s) was %soffered"
5870msgstr "" 6272msgstr ""
5871 6273
5872#: plugins-root/check_dhcp.c:1049 6274#: plugins-root/check_dhcp.c:1036
5873msgid "not " 6275msgid "not "
5874msgstr "" 6276msgstr ""
5875 6277
5876#: plugins-root/check_dhcp.c:1051 6278#: plugins-root/check_dhcp.c:1038
5877#, c-format 6279#, c-format
5878msgid ", max lease time = " 6280msgid ", max lease time = "
5879msgstr "" 6281msgstr ""
5880 6282
5881#: plugins-root/check_dhcp.c:1053 6283#: plugins-root/check_dhcp.c:1040
5882#, c-format 6284#, c-format
5883msgid "Infinity" 6285msgid "Infinity"
5884msgstr "" 6286msgstr ""
5885 6287
5886#: plugins-root/check_dhcp.c:1234 6288#: plugins-root/check_dhcp.c:1160
6289msgid "Got unexpected non-option argument"
6290msgstr ""
6291
6292#: plugins-root/check_dhcp.c:1202
5887#, c-format 6293#, c-format
5888msgid "Error: DLPI stream API failed to get MAC in check_ctrl: %s.\n" 6294msgid "Error: DLPI stream API failed to get MAC in check_ctrl: %s.\n"
5889msgstr "" 6295msgstr ""
5890 6296
5891#: plugins-root/check_dhcp.c:1246 6297#: plugins-root/check_dhcp.c:1214
5892#, c-format 6298#, c-format
5893msgid "Error: DLPI stream API failed to get MAC in put_ctrl/putmsg(): %s.\n" 6299msgid "Error: DLPI stream API failed to get MAC in put_ctrl/putmsg(): %s.\n"
5894msgstr "" 6300msgstr ""
5895 6301
5896#: plugins-root/check_dhcp.c:1259 6302#: plugins-root/check_dhcp.c:1227
5897#, c-format 6303#, c-format
5898msgid "Error: DLPI stream API failed to get MAC in put_both/putmsg().\n" 6304msgid "Error: DLPI stream API failed to get MAC in put_both/putmsg().\n"
5899msgstr "" 6305msgstr ""
5900 6306
5901#: plugins-root/check_dhcp.c:1271 6307#: plugins-root/check_dhcp.c:1239
5902#, c-format 6308#, c-format
5903msgid "" 6309msgid ""
5904"Error: DLPI stream API failed to get MAC in dl_attach_req/open(%s..): %s.\n" 6310"Error: DLPI stream API failed to get MAC in dl_attach_req/open(%s..): %s.\n"
5905msgstr "" 6311msgstr ""
5906 6312
5907#: plugins-root/check_dhcp.c:1295 6313#: plugins-root/check_dhcp.c:1263
5908#, c-format 6314#, c-format
5909msgid "Error: DLPI stream API failed to get MAC in dl_bind/check_ctrl(): %s.\n" 6315msgid "Error: DLPI stream API failed to get MAC in dl_bind/check_ctrl(): %s.\n"
5910msgstr "" 6316msgstr ""
5911 6317
5912#: plugins-root/check_dhcp.c:1374 6318#: plugins-root/check_dhcp.c:1342
5913#, c-format 6319#, c-format
5914msgid "Hardware address: " 6320msgid "Hardware address: "
5915msgstr "" 6321msgstr ""
5916 6322
5917#: plugins-root/check_dhcp.c:1390 6323#: plugins-root/check_dhcp.c:1358
5918msgid "This plugin tests the availability of DHCP servers on a network." 6324msgid "This plugin tests the availability of DHCP servers on a network."
5919msgstr "" 6325msgstr ""
5920 6326
5921#: plugins-root/check_dhcp.c:1402 6327#: plugins-root/check_dhcp.c:1370
5922msgid "IP address of DHCP server that we must hear from" 6328msgid "IP address of DHCP server that we must hear from"
5923msgstr "" 6329msgstr ""
5924 6330
5925#: plugins-root/check_dhcp.c:1404 6331#: plugins-root/check_dhcp.c:1372
5926msgid "IP address that should be offered by at least one DHCP server" 6332msgid "IP address that should be offered by at least one DHCP server"
5927msgstr "" 6333msgstr ""
5928 6334
5929#: plugins-root/check_dhcp.c:1406 6335#: plugins-root/check_dhcp.c:1374
5930msgid "Seconds to wait for DHCPOFFER before timeout occurs" 6336msgid "Seconds to wait for DHCPOFFER before timeout occurs"
5931msgstr "" 6337msgstr ""
5932 6338
5933#: plugins-root/check_dhcp.c:1408 6339#: plugins-root/check_dhcp.c:1376
5934msgid "Interface to to use for listening (i.e. eth0)" 6340msgid "Interface to to use for listening (i.e. eth0)"
5935msgstr "" 6341msgstr ""
5936 6342
5937#: plugins-root/check_dhcp.c:1410 6343#: plugins-root/check_dhcp.c:1378
5938msgid "MAC address to use in the DHCP request" 6344msgid "MAC address to use in the DHCP request"
5939msgstr "" 6345msgstr ""
5940 6346
5941#: plugins-root/check_dhcp.c:1412 6347#: plugins-root/check_dhcp.c:1380
5942msgid "Unicast testing: mimic a DHCP relay, requires -s" 6348msgid "Unicast testing: mimic a DHCP relay, requires -s"
5943msgstr "" 6349msgstr ""
5944 6350
5945#: plugins-root/check_icmp.c:1295 6351#: plugins-root/check_icmp.c:1567
5946msgid "specify a target" 6352msgid "specify a target"
5947msgstr "" 6353msgstr ""
5948 6354
5949#: plugins-root/check_icmp.c:1297 6355#: plugins-root/check_icmp.c:1569
6356msgid "Use IPv4 (default) or IPv6 to communicate with the targets"
6357msgstr ""
6358
6359#: plugins-root/check_icmp.c:1571
5950msgid "warning threshold (currently " 6360msgid "warning threshold (currently "
5951msgstr "" 6361msgstr ""
5952 6362
5953#: plugins-root/check_icmp.c:1300 6363#: plugins-root/check_icmp.c:1574
5954msgid "critical threshold (currently " 6364msgid "critical threshold (currently "
5955msgstr "" 6365msgstr ""
5956 6366
5957#: plugins-root/check_icmp.c:1303 6367#: plugins-root/check_icmp.c:1577
5958msgid "specify a source IP address or device name" 6368msgid "specify a source IP address or device name"
5959msgstr "" 6369msgstr ""
5960 6370
5961#: plugins-root/check_icmp.c:1305 6371#: plugins-root/check_icmp.c:1579
5962msgid "number of packets to send (currently " 6372msgid "number of packets to send (currently "
5963msgstr "" 6373msgstr ""
5964 6374
5965#: plugins-root/check_icmp.c:1308 6375#: plugins-root/check_icmp.c:1582
5966msgid "max packet interval (currently " 6376msgid "max packet interval (currently "
5967msgstr "" 6377msgstr ""
5968 6378
5969#: plugins-root/check_icmp.c:1311 6379#: plugins-root/check_icmp.c:1585
5970msgid "max target interval (currently " 6380msgid "max target interval (currently "
5971msgstr "" 6381msgstr ""
5972 6382
5973#: plugins-root/check_icmp.c:1314 6383#: plugins-root/check_icmp.c:1588
5974msgid "number of alive hosts required for success" 6384msgid "number of alive hosts required for success"
5975msgstr "" 6385msgstr ""
5976 6386
5977#: plugins-root/check_icmp.c:1317 6387#: plugins-root/check_icmp.c:1591
5978msgid "TTL on outgoing packets (currently " 6388msgid "TTL on outgoing packets (currently "
5979msgstr "" 6389msgstr ""
5980 6390
5981#: plugins-root/check_icmp.c:1320 6391#: plugins-root/check_icmp.c:1594
5982msgid "timeout value (seconds, currently " 6392msgid "timeout value (seconds, currently "
5983msgstr "" 6393msgstr ""
5984 6394
5985#: plugins-root/check_icmp.c:1323 6395#: plugins-root/check_icmp.c:1597
5986msgid "Number of icmp data bytes to send" 6396msgid "Number of icmp data bytes to send"
5987msgstr "" 6397msgstr ""
5988 6398
5989#: plugins-root/check_icmp.c:1324 6399#: plugins-root/check_icmp.c:1598
5990msgid "Packet size will be data bytes + icmp header (currently" 6400msgid "Packet size will be data bytes + icmp header (currently"
5991msgstr "" 6401msgstr ""
5992 6402
5993#: plugins-root/check_icmp.c:1326 6403#: plugins-root/check_icmp.c:1600
5994msgid "verbose" 6404msgid "verbose"
5995msgstr "" 6405msgstr ""
5996 6406
5997#: plugins-root/check_icmp.c:1330 6407#: plugins-root/check_icmp.c:1604
5998msgid "The -H switch is optional. Naming a host (or several) to check is not." 6408msgid "The -H switch is optional. Naming a host (or several) to check is not."
5999msgstr "" 6409msgstr ""
6000 6410
6001#: plugins-root/check_icmp.c:1332 6411#: plugins-root/check_icmp.c:1606
6002msgid "" 6412msgid ""
6003"Threshold format for -w and -c is 200.25,60% for 200.25 msec RTA and 60%" 6413"Threshold format for -w and -c is 200.25,60% for 200.25 msec RTA and 60%"
6004msgstr "" 6414msgstr ""
6005 6415
6006#: plugins-root/check_icmp.c:1333 6416#: plugins-root/check_icmp.c:1607
6007msgid "packet loss. The default values should work well for most users." 6417msgid "packet loss. The default values should work well for most users."
6008msgstr "" 6418msgstr ""
6009 6419
6010#: plugins-root/check_icmp.c:1334 6420#: plugins-root/check_icmp.c:1608
6011msgid "" 6421msgid ""
6012"You can specify different RTA factors using the standardized abbreviations" 6422"You can specify different RTA factors using the standardized abbreviations"
6013msgstr "" 6423msgstr ""
6014 6424
6015#: plugins-root/check_icmp.c:1335 6425#: plugins-root/check_icmp.c:1609
6016msgid "" 6426msgid ""
6017"us (microseconds), ms (milliseconds, default) or just plain s for seconds." 6427"us (microseconds), ms (milliseconds, default) or just plain s for seconds."
6018msgstr "" 6428msgstr ""
6019 6429
6020#: plugins-root/check_icmp.c:1341 6430#: plugins-root/check_icmp.c:1615
6021msgid "The -v switch can be specified several times for increased verbosity." 6431msgid "The -v switch can be specified several times for increased verbosity."
6022msgstr "" 6432msgstr ""