diff options
94 files changed, 2477 insertions, 5234 deletions
diff --git a/.github/NPTest.cache b/.github/NPTest.cache index 232305a..d488d1b 100644 --- a/.github/NPTest.cache +++ b/.github/NPTest.cache | |||
@@ -25,8 +25,9 @@ | |||
25 | 'NP_HOST_TCP_POP' => 'pop.web.de', | 25 | 'NP_HOST_TCP_POP' => 'pop.web.de', |
26 | 'NP_HOST_TCP_PROXY' => 'localhost', | 26 | 'NP_HOST_TCP_PROXY' => 'localhost', |
27 | 'NP_HOST_TCP_SMTP' => 'localhost', | 27 | 'NP_HOST_TCP_SMTP' => 'localhost', |
28 | 'NP_HOST_TCP_SMTP_NOTLS' => '', | 28 | 'NP_HOST_TCP_SMTP_NOSTARTTLS' => '', |
29 | 'NP_HOST_TCP_SMTP_TLS' => '', | 29 | 'NP_HOST_TCP_SMTP_STARTTLS' => 'localhost', |
30 | 'NP_HOST_TCP_SMTP_TLS' => 'localhost', | ||
30 | 'NP_HOST_TLS_CERT' => 'localhost', | 31 | 'NP_HOST_TLS_CERT' => 'localhost', |
31 | 'NP_HOST_TLS_HTTP' => 'localhost', | 32 | 'NP_HOST_TLS_HTTP' => 'localhost', |
32 | 'NP_HOST_UDP_TIME' => 'none', | 33 | 'NP_HOST_UDP_TIME' => 'none', |
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 | --- | ||
1 | version: 2 | 2 | version: 2 |
2 | updates: | 3 | updates: |
3 | - package-ecosystem: github-actions | 4 | - package-ecosystem: github-actions |
diff --git a/.github/prepare_debian.sh b/.github/prepare_debian.sh index 5222659..dcf778b 100755 --- a/.github/prepare_debian.sh +++ b/.github/prepare_debian.sh | |||
@@ -5,13 +5,18 @@ set -e | |||
5 | 5 | ||
6 | export DEBIAN_FRONTEND=noninteractive | 6 | export DEBIAN_FRONTEND=noninteractive |
7 | 7 | ||
8 | sed "s/main/non-free contrib/g" /etc/apt/sources.list.d/debian.sources > /etc/apt/sources.list.d/debian-nonfree.sources | 8 | source /etc/os-release |
9 | apt-get update | 9 | |
10 | apt-get -y install software-properties-common | 10 | if [ ${ID} = "debian" ]; then |
11 | if [ $(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 | ||
14 | fi | 18 | fi |
19 | apt-get update | ||
15 | apt-get -y install perl \ | 20 | apt-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 | |||
83 | service squid start | 88 | service squid start |
84 | 89 | ||
85 | # mariadb | 90 | # mariadb |
86 | service mariadb start | 91 | service mariadb start || service mysql start |
87 | mysql -e "create database IF NOT EXISTS test;" -uroot | 92 | mysql -e "create database IF NOT EXISTS test;" -uroot |
88 | 93 | ||
89 | # ldap | 94 | # ldap |
@@ -103,12 +108,7 @@ ssh -tt localhost </dev/null >/dev/null 2>/dev/null & | |||
103 | disown %1 | 108 | disown %1 |
104 | 109 | ||
105 | # snmpd | 110 | # snmpd |
106 | for DIR in /usr/share/snmp/mibs /usr/share/mibs; do | 111 | service snmpd stop |
107 | rm -f $DIR/ietf/SNMPv2-PDU \ | ||
108 | $DIR/ietf/IPSEC-SPD-MIB \ | ||
109 | $DIR/ietf/IPATM-IPMC-MIB \ | ||
110 | $DIR/iana/IANA-IPPM-METRICS-REGISTRY-MIB | ||
111 | done | ||
112 | mkdir -p /var/lib/snmp/mib_indexes | 112 | mkdir -p /var/lib/snmp/mib_indexes |
113 | sed -e 's/^agentaddress.*/agentaddress 127.0.0.1/' -i /etc/snmp/snmpd.conf | 113 | sed -e 's/^agentaddress.*/agentaddress 127.0.0.1/' -i /etc/snmp/snmpd.conf |
114 | service snmpd start | 114 | service snmpd start |
@@ -116,7 +116,11 @@ service snmpd start | |||
116 | # start cron, will be used by check_nagios | 116 | # start cron, will be used by check_nagios |
117 | cron | 117 | cron |
118 | 118 | ||
119 | # start postfix | 119 | # postfix |
120 | cat <<EOD >> /etc/postfix/master.cf | ||
121 | smtps inet n - n - - smtpd | ||
122 | -o smtpd_tls_wrappermode=yes | ||
123 | EOD | ||
120 | service postfix start | 124 | service postfix start |
121 | 125 | ||
122 | # start ftpd | 126 | # start ftpd |
diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index ab8bfaa..0317c8c 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 | ||
14 | on: | 15 | on: |
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@v4 |
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 80d49f7..77b09f4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml | |||
@@ -1,15 +1,48 @@ | |||
1 | --- | ||
1 | name: Test | 2 | name: Test |
2 | 3 | ||
3 | on: | 4 | on: |
4 | push: | 5 | push: |
5 | branches: | 6 | branches: |
6 | - '*' | 7 | - '*' |
8 | # Run test for any PRs | ||
7 | pull_request: | 9 | pull_request: |
8 | 10 | ||
9 | jobs: | 11 | jobs: |
12 | codespell: | ||
13 | name: codespell | ||
14 | strategy: | ||
15 | fail-fast: false | ||
16 | runs-on: ubuntu-latest | ||
17 | steps: | ||
18 | - name: Checkout | ||
19 | uses: actions/checkout@v4 | ||
20 | - name: Codespell | ||
21 | uses: codespell-project/actions-codespell@v2 | ||
22 | with: | ||
23 | skip: "./.git,./.gitignore,./ABOUT-NLS,*.po,./gl,./po,./tools/squid.conf,./build-aux/ltmain.sh" | ||
24 | ignore_words_list: allright,gord,didi,hda,nd,alis,clen,scrit,ser,fot,te,parm,isnt,consol,oneliners | ||
25 | check_filenames: true | ||
26 | check_hidden: true | ||
27 | # super-linter: | ||
28 | # name: super-linter | ||
29 | # strategy: | ||
30 | # fail-fast: false | ||
31 | # runs-on: ubuntu-latest | ||
32 | # steps: | ||
33 | # - name: Checkout | ||
34 | # uses: actions/checkout@v4 | ||
35 | # - name: Lint Code Base | ||
36 | # uses: github/super-linter@v5.0.0 | ||
37 | # env: | ||
38 | # DEFAULT_BRANCH: master | ||
39 | # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
10 | # macos: | 40 | # macos: |
11 | # ... | 41 | # ... |
12 | linux: | 42 | linux: |
43 | needs: | ||
44 | - codespell | ||
45 | # - super-linter | ||
13 | runs-on: ubuntu-latest | 46 | runs-on: ubuntu-latest |
14 | name: Running tests on ${{ matrix.distro }} | 47 | name: Running tests on ${{ matrix.distro }} |
15 | strategy: | 48 | strategy: |
@@ -24,7 +57,7 @@ jobs: | |||
24 | #... | 57 | #... |
25 | steps: | 58 | steps: |
26 | - name: Git clone repository | 59 | - name: Git clone repository |
27 | uses: actions/checkout@v3 | 60 | uses: actions/checkout@v4 |
28 | #- name: Setup tmate session, see https://github.com/marketplace/actions/debugging-with-tmate | 61 | #- name: Setup tmate session, see https://github.com/marketplace/actions/debugging-with-tmate |
29 | # uses: mxschmitt/action-tmate@v3 | 62 | # uses: mxschmitt/action-tmate@v3 |
30 | - name: Run the tests on ${{ matrix.distro }} | 63 | - name: Run the tests on ${{ matrix.distro }} |
@@ -41,6 +74,10 @@ jobs: | |||
41 | /bin/sh -c '${{ matrix.prepare }} && \ | 74 | /bin/sh -c '${{ matrix.prepare }} && \ |
42 | tools/setup && \ | 75 | tools/setup && \ |
43 | ./configure --enable-libtap --with-ipv6=no && \ | 76 | ./configure --enable-libtap --with-ipv6=no && \ |
77 | set -x && \ | ||
78 | tmp_dir=$(mktemp -d -t test-XXXX) && cp -a po/ $tmp_dir/ && \ | ||
79 | cd po && make update-po && cd .. && \ | ||
80 | diff -Nur $tmp_dir/po/*.po po/*.po | tee -a /tmp/po.diff && diff -Nur $tmp_dir/po/*.pot po/*.pot | tee -a /tmp/po.diff && if [ $(wc -l /tmp/po.diff | cut -f 1 -d" ") -gt 0 ]; then echo "Error: Translations needs to be updated with make update-po!" && exit 1; fi && \ | ||
44 | make && \ | 81 | make && \ |
45 | make test' | 82 | make test' |
46 | docker container prune -f | 83 | docker container prune -f |
@@ -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/ACKNOWLEDGEMENTS b/ACKNOWLEDGEMENTS index d73be54..af29c15 100644 --- a/ACKNOWLEDGEMENTS +++ b/ACKNOWLEDGEMENTS | |||
@@ -20,7 +20,7 @@ Using the DLPI support on SysV systems to get the host MAC address in check_dhcp | |||
20 | Stenberg, Daniel | 20 | Stenberg, Daniel |
21 | Copyright (c) 1996 - 2004, Daniel Stenberg, <daniel@haxx.se> | 21 | Copyright (c) 1996 - 2004, Daniel Stenberg, <daniel@haxx.se> |
22 | http://curl.haxx.se/ | 22 | http://curl.haxx.se/ |
23 | Use of duplication of macros in m4/np_curl.m4 (slighly adapted for m4/uriparser.m4 too) | 23 | Use of duplication of macros in m4/np_curl.m4 (slightly adapted for m4/uriparser.m4 too) |
24 | 24 | ||
25 | Coreutils team | 25 | Coreutils team |
26 | Copyright (C) 91, 1995-2004 Free Software Foundation, Inc. | 26 | Copyright (C) 91, 1995-2004 Free Software Foundation, Inc. |
@@ -9,12 +9,12 @@ This file documents the major additions and syntax changes between releases. | |||
9 | check_http/check_curl: add chunked encoding test | 9 | check_http/check_curl: add chunked encoding test |
10 | check_log: Added --exclude to exclude patterns | 10 | check_log: Added --exclude to exclude patterns |
11 | check_log: Add tests | 11 | check_log: Add tests |
12 | check_disk: Clarify usage possibilites | 12 | check_disk: Clarify usage possibilities |
13 | 13 | ||
14 | FIXES | 14 | FIXES |
15 | fixed two PRId64 to PRIu64 in perfdata_uint64 | 15 | fixed two PRId64 to PRIu64 in perfdata_uint64 |
16 | check_pgsql: Removing is_pg_dbname alltogether,using postgres API. | 16 | check_pgsql: Removing is_pg_dbname altogether,using postgres API. |
17 | check_http: Remove superflous CRLF in HTTP-Requests | 17 | check_http: Remove superfluous CRLF in HTTP-Requests |
18 | check_curl: detect ipv6 | 18 | check_curl: detect ipv6 |
19 | check_icmp: fix parsing help/version long options | 19 | check_icmp: fix parsing help/version long options |
20 | check_http: fix test plan | 20 | check_http: fix test plan |
@@ -40,7 +40,7 @@ This file documents the major additions and syntax changes between releases. | |||
40 | 40 | ||
41 | 2.3.2 20th Oct 2022 | 41 | 2.3.2 20th Oct 2022 |
42 | GENERAL | 42 | GENERAL |
43 | Use netcat-openbsd for debian explicitely (by @RincewindsHat #1704) | 43 | Use netcat-openbsd for debian explicitly (by @RincewindsHat #1704) |
44 | Replace egrep with grep -E (by @RincewindsHat #1791) | 44 | Replace egrep with grep -E (by @RincewindsHat #1791) |
45 | Use silent automake by default (by @RincewindsHat #1747) | 45 | Use silent automake by default (by @RincewindsHat #1747) |
46 | 46 | ||
@@ -123,7 +123,7 @@ This file documents the major additions and syntax changes between releases. | |||
123 | check_log: Modernize check log (by @RincewindsHat #1692) | 123 | check_log: Modernize check log (by @RincewindsHat #1692) |
124 | check_mailq: remove duplicate W=i/C=i args in check_mailq.pl (by @ichdasich #1755) | 124 | check_mailq: remove duplicate W=i/C=i args in check_mailq.pl (by @ichdasich #1755) |
125 | check_ntp: Check ntp remove unused variables (by @RincewindsHat #1781) | 125 | check_ntp: Check ntp remove unused variables (by @RincewindsHat #1781) |
126 | check_pgsql: Using snprintf which honors the buffers size and guarantees null temination. (Closes: #1601) (by @waja #1663) | 126 | check_pgsql: Using snprintf which honors the buffers size and guarantees null termination. (Closes: #1601) (by @waja #1663) |
127 | check_procs: Fix double percentage sign in usage (by @RincewindsHat #1743) | 127 | check_procs: Fix double percentage sign in usage (by @RincewindsHat #1743) |
128 | check_sensors.sh: Make shellcheck happier (by @RincewindsHat #1679) | 128 | check_sensors.sh: Make shellcheck happier (by @RincewindsHat #1679) |
129 | check_snmp: Fixed option description authpassword -> authpasswd + whitespaces (by @RincewindsHat #1676) | 129 | check_snmp: Fixed option description authpassword -> authpasswd + whitespaces (by @RincewindsHat #1676) |
@@ -165,7 +165,7 @@ This file documents the major additions and syntax changes between releases. | |||
165 | check_apt: adding packages-warning option | 165 | check_apt: adding packages-warning option |
166 | check_load: Adding top consuming processes option | 166 | check_load: Adding top consuming processes option |
167 | check_http: Adding Proxy-Authorization and extra headers | 167 | check_http: Adding Proxy-Authorization and extra headers |
168 | check_snmp: make calcualtion of timeout value in help output more clear | 168 | check_snmp: make calculation of timeout value in help output more clear |
169 | check_uptime: new plugin for checking uptime to see how long the system is running | 169 | check_uptime: new plugin for checking uptime to see how long the system is running |
170 | check_curl: check_http replacement based on libcurl | 170 | check_curl: check_http replacement based on libcurl |
171 | check_http: Allow user to specify HTTP method after proxy CONNECT | 171 | check_http: Allow user to specify HTTP method after proxy CONNECT |
@@ -195,7 +195,7 @@ This file documents the major additions and syntax changes between releases. | |||
195 | check_procs: improve command examples for 'at least' processes | 195 | check_procs: improve command examples for 'at least' processes |
196 | check_swap: repaired "-n" behaviour | 196 | check_swap: repaired "-n" behaviour |
197 | check_disk: include -P switch in help | 197 | check_disk: include -P switch in help |
198 | check_mailq: restore accidentially removed options | 198 | check_mailq: restore accidentally removed options |
199 | 199 | ||
200 | 2.2 29th November 2016 | 200 | 2.2 29th November 2016 |
201 | ENHANCEMENTS | 201 | ENHANCEMENTS |
@@ -236,7 +236,7 @@ This file documents the major additions and syntax changes between releases. | |||
236 | check_ssh now returns CRITICAL for protocol/version errors | 236 | check_ssh now returns CRITICAL for protocol/version errors |
237 | If a plugin is invoked with -h/--help or -V/--version, the exit status | 237 | If a plugin is invoked with -h/--help or -V/--version, the exit status |
238 | is now UNKNOWN | 238 | is now UNKNOWN |
239 | The superseeded check_ntp.pl was removed, please use check_ntp_peer or | 239 | The superseded check_ntp.pl was removed, please use check_ntp_peer or |
240 | check_ntp_time instead | 240 | check_ntp_time instead |
241 | 241 | ||
242 | 2.1.2 16th October 2015 | 242 | 2.1.2 16th October 2015 |
@@ -263,7 +263,7 @@ This file documents the major additions and syntax changes between releases. | |||
263 | New check_mysql -n option to ignore authentication failures | 263 | New check_mysql -n option to ignore authentication failures |
264 | Added IP and port or socket name to error messages | 264 | Added IP and port or socket name to error messages |
265 | New check_ntp_time -o option to add expected offset | 265 | New check_ntp_time -o option to add expected offset |
266 | check_disk shows now troubled partions in verbose mode | 266 | check_disk shows now troubled partitions in verbose mode |
267 | check_dig has now support for drill and dig | 267 | check_dig has now support for drill and dig |
268 | check_dig has now support for -6 option | 268 | check_dig has now support for -6 option |
269 | Add performance data to check_file_age | 269 | Add performance data to check_file_age |
@@ -357,10 +357,10 @@ This file documents the major additions and syntax changes between releases. | |||
357 | New check_procs -k option to ignore kernel threads (on Linux) | 357 | New check_procs -k option to ignore kernel threads (on Linux) |
358 | Let check_procs use /proc/<PID>/exe (if available) instead of getpid(2), unless -T is specified | 358 | Let check_procs use /proc/<PID>/exe (if available) instead of getpid(2), unless -T is specified |
359 | Let check_mysql support SSL | 359 | Let check_mysql support SSL |
360 | Let check_mysql add perfromance metrics for all checks | 360 | Let check_mysql add performance metrics for all checks |
361 | New check_mysql -f option to specify a client options file | 361 | New check_mysql -f option to specify a client options file |
362 | New check_mysql -g option to specify a client options group | 362 | New check_mysql -g option to specify a client options group |
363 | New check_snmp --offset option to allow for adding/substracting an offset value to sensor data | 363 | New check_snmp --offset option to allow for adding/subtracting an offset value to sensor data |
364 | Let check_snmp support an arbitrary number of OIDs | 364 | Let check_snmp support an arbitrary number of OIDs |
365 | Let check_ide_smart support NetBSD | 365 | Let check_ide_smart support NetBSD |
366 | 366 | ||
@@ -375,7 +375,7 @@ This file documents the major additions and syntax changes between releases. | |||
375 | Fix deprecated imports of check_nmap.py | 375 | Fix deprecated imports of check_nmap.py |
376 | 376 | ||
377 | WARNINGS | 377 | WARNINGS |
378 | check_http behaviour of -k/--header changed since it does not seperate multiple headers by semicolons anymore. Use multiple -k switches instead. | 378 | check_http behaviour of -k/--header changed since it does not separate multiple headers by semicolons anymore. Use multiple -k switches instead. |
379 | check_http's --proxy_authorization option is now called --proxy-authorization (it was always documented this way) | 379 | check_http's --proxy_authorization option is now called --proxy-authorization (it was always documented this way) |
380 | The contrib directory has been removed from this distribution | 380 | The contrib directory has been removed from this distribution |
381 | 381 | ||
@@ -526,7 +526,7 @@ This file documents the major additions and syntax changes between releases. | |||
526 | check_ntp and check_ntp_peer now show proper jitter/stratum thresholds longopts in --help | 526 | check_ntp and check_ntp_peer now show proper jitter/stratum thresholds longopts in --help |
527 | check_dns now allow to repeat -a to match multiple possibly returned address (common with load balancers) | 527 | check_dns now allow to repeat -a to match multiple possibly returned address (common with load balancers) |
528 | check_mysql and check_radius now try clearing password in processlist just like check_mysql_query | 528 | check_mysql and check_radius now try clearing password in processlist just like check_mysql_query |
529 | check_mysql and check_mysql_query now support sockets explicitely (-s, --socket) | 529 | check_mysql and check_mysql_query now support sockets explicitly (-s, --socket) |
530 | negate now has the ability to replace the status text as well (-s, --substitute) | 530 | negate now has the ability to replace the status text as well (-s, --substitute) |
531 | Added performance data to check_ping | 531 | Added performance data to check_ping |
532 | Added support for --extra-opts in all C plugins (disabled by default, see configure --help) | 532 | Added support for --extra-opts in all C plugins (disabled by default, see configure --help) |
@@ -566,7 +566,7 @@ This file documents the major additions and syntax changes between releases. | |||
566 | New check_disk option -L: Only check local filesystems, but call stat() on remote ones, too. | 566 | New check_disk option -L: Only check local filesystems, but call stat() on remote ones, too. |
567 | Thus accessibility of remote filesystems can be checked without any threshold comparison. | 567 | Thus accessibility of remote filesystems can be checked without any threshold comparison. |
568 | Check_disk's --help now prints some examples for the new features introduced in 1.4.8 | 568 | Check_disk's --help now prints some examples for the new features introduced in 1.4.8 |
569 | New check_disk -i/-I option to ignore pathes/partitions based on regular expressions | 569 | New check_disk -i/-I option to ignore paths/partitions based on regular expressions |
570 | New check_disk -A option to select all filesystems explicitly | 570 | New check_disk -A option to select all filesystems explicitly |
571 | WARNING: check_disk's -E option must now be passed before -p or -r/-R arguments | 571 | WARNING: check_disk's -E option must now be passed before -p or -r/-R arguments |
572 | Passing -E after -p or -r results in UNKNOWN state, now | 572 | Passing -E after -p or -r results in UNKNOWN state, now |
@@ -615,7 +615,7 @@ This file documents the major additions and syntax changes between releases. | |||
615 | Fixed MKINSTALLDIRS problem in po/ | 615 | Fixed MKINSTALLDIRS problem in po/ |
616 | ./configure now detects if possible to compile check_mysql | 616 | ./configure now detects if possible to compile check_mysql |
617 | Fixed broken HELO in check_smtp | 617 | Fixed broken HELO in check_smtp |
618 | check_icmp now allows to set a minimum number of hosts required for successs (-m) | 618 | check_icmp now allows to set a minimum number of hosts required for success (-m) |
619 | check_icmp fix for *BSD when running for long time | 619 | check_icmp fix for *BSD when running for long time |
620 | check_ping times out 1 second quicker if host is unreachable | 620 | check_ping times out 1 second quicker if host is unreachable |
621 | Root plugins installed with world executable | 621 | Root plugins installed with world executable |
@@ -151,14 +151,14 @@ of testing against a set of desired exit status values. | |||
151 | =item * | 151 | =item * |
152 | 152 | ||
153 | Firstly, if C<$desiredExitStatus> is a reference to an array of exit | 153 | Firstly, if C<$desiredExitStatus> is a reference to an array of exit |
154 | stati, if the actual exit status of the command is present in the | 154 | statuses, if the actual exit status of the command is present in the |
155 | array, it is used in the call to C<Test::ok(...)> when testing the | 155 | array, it is used in the call to C<Test::ok(...)> when testing the |
156 | exit status. | 156 | exit status. |
157 | 157 | ||
158 | =item * | 158 | =item * |
159 | 159 | ||
160 | Alternatively, if C<$desiredExitStatus> is a reference to a hash of | 160 | Alternatively, if C<$desiredExitStatus> is a reference to a hash of |
161 | exit stati (mapped to the strings "continue" or "skip"), similar | 161 | exit statuses(mapped to the strings "continue" or "skip"), similar |
162 | processing to the above occurs with the side affect of determining if | 162 | processing to the above occurs with the side affect of determining if |
163 | any generated output testing should proceed. Note: only the string | 163 | any generated output testing should proceed. Note: only the string |
164 | "skip" will result in generated output testing being skipped. | 164 | "skip" will result in generated output testing being skipped. |
@@ -207,7 +207,7 @@ under the same terms as the Monitoring Plugins release. | |||
207 | 207 | ||
208 | my( %CACHE ) = (); | 208 | my( %CACHE ) = (); |
209 | 209 | ||
210 | # I'm not really sure wether to house a site-specific cache inside | 210 | # I'm not really sure whether to house a site-specific cache inside |
211 | # or outside of the extracted source / build tree - lets default to outside | 211 | # or outside of the extracted source / build tree - lets default to outside |
212 | my( $CACHEFILENAME ) = ( exists( $ENV{'NPTEST_CACHE'} ) && $ENV{'NPTEST_CACHE'} ) | 212 | my( $CACHEFILENAME ) = ( exists( $ENV{'NPTEST_CACHE'} ) && $ENV{'NPTEST_CACHE'} ) |
213 | ? $ENV{'NPTEST_CACHE'} : "/var/tmp/NPTest.cache"; # "../Cache.pdd"; | 213 | ? $ENV{'NPTEST_CACHE'} : "/var/tmp/NPTest.cache"; # "../Cache.pdd"; |
@@ -7,7 +7,7 @@ With that done, it's time to figure out what we are doing for release | |||
7 | 1.3 development. I have a few ideas. Maybe others do as well. | 7 | 1.3 development. I have a few ideas. Maybe others do as well. |
8 | 8 | ||
9 | DOCUMENTATION: | 9 | DOCUMENTATION: |
10 | We pretty much have decieded that we will doing something along | 10 | We pretty much have decided that we will doing something along |
11 | the lines of a literate programming model. So far, we have site | 11 | the lines of a literate programming model. So far, we have site |
12 | documentation in DocBook. I have some ideas here, which I will | 12 | documentation in DocBook. I have some ideas here, which I will |
13 | discuss in a separate thread. | 13 | discuss in a separate thread. |
@@ -39,9 +39,9 @@ inconsistent mess and I'd love to ditch it. I only created it to | |||
39 | satisfy people that wanted reverse compatibility and did not have | 39 | satisfy people that wanted reverse compatibility and did not have |
40 | GNU getopt. | 40 | GNU getopt. |
41 | 41 | ||
42 | Bu I would like to urge that all standard plugins contain | 42 | But I would like to urge that all standard plugins contain |
43 | validate_arguments(). I think this will help convey the idea that | 43 | validate_arguments(). I think this will help convey the idea that |
44 | validations hould be done, even if we don't insist on the specific | 44 | validations should be done, even if we don't insist on the specific |
45 | extent that each plugin must do that validation. | 45 | extent that each plugin must do that validation. |
46 | 46 | ||
47 | This is the set of standard options I envision: | 47 | This is the set of standard options I envision: |
@@ -59,7 +59,7 @@ Reserved: | |||
59 | -F, --file = STRING (usually input) | 59 | -F, --file = STRING (usually input) |
60 | -O, --output = STRING (output file) | 60 | -O, --output = STRING (output file) |
61 | 61 | ||
62 | Recommended, but not reserverd: | 62 | Recommended, but not reserved: |
63 | 63 | ||
64 | -I, --ipaddress = STRING | 64 | -I, --ipaddress = STRING |
65 | -C, --community = STRING | 65 | -C, --community = STRING |
@@ -69,7 +69,7 @@ Recommended, but not reserverd: | |||
69 | -P, --port = INT | 69 | -P, --port = INT |
70 | -u, --url = STRING (also --username if --url is not needed) | 70 | -u, --url = STRING (also --username if --url is not needed) |
71 | 71 | ||
72 | I am suggesting that port alway be '-P' (uppercase) -- we are | 72 | I am suggesting that port always be '-P' (uppercase) -- we are |
73 | currently inconsistent in that regard. | 73 | currently inconsistent in that regard. |
74 | 74 | ||
75 | I am also adding '-q' for silent running. This is totally self | 75 | I am also adding '-q' for silent running. This is totally self |
@@ -87,12 +87,12 @@ Programming: | |||
87 | length character assignments, at least to the extent possible, | 87 | length character assignments, at least to the extent possible, |
88 | from the C-based plugins. To that end, I have made strscpy and | 88 | from the C-based plugins. To that end, I have made strscpy and |
89 | friends in utils.c -- I'd like to deploy them. I have comments | 89 | friends in utils.c -- I'd like to deploy them. I have comments |
90 | that there is alot of duplicated code, and techniques used that | 90 | that there is a lot of duplicated code, and techniques used that |
91 | should be cleaned up. Details in a separate thread. | 91 | should be cleaned up. Details in a separate thread. |
92 | 92 | ||
93 | Remote checks: | 93 | Remote checks: |
94 | I have a proposal in hand to incorporate ssh check into spopen() | 94 | I have a proposal in hand to incorporate ssh check into spopen() |
95 | so that remote machine checks can be seemless. A nice idea, but | 95 | so that remote machine checks can be seamless. A nice idea, but |
96 | complex enough to require discussion. Another thread. | 96 | complex enough to require discussion. Another thread. |
97 | 97 | ||
98 | I also have a wish list, and I'm sure I've forgot some items. I'll | 98 | I also have a wish list, and I'm sure I've forgot some items. I'll |
@@ -405,3 +405,4 @@ Robert Bohne | |||
405 | Wolfgang Nieder | 405 | Wolfgang Nieder |
406 | andrew bezella | 406 | andrew bezella |
407 | Lorenz Gruenwald | 407 | Lorenz Gruenwald |
408 | John Morrissey | ||
diff --git a/build-aux/ltmain.sh b/build-aux/ltmain.sh index 33f642a..2e8548d 100644 --- a/build-aux/ltmain.sh +++ b/build-aux/ltmain.sh | |||
@@ -189,7 +189,7 @@ func_basename () | |||
189 | # to NONDIR_REPLACEMENT. | 189 | # to NONDIR_REPLACEMENT. |
190 | # value returned in "$func_dirname_result" | 190 | # value returned in "$func_dirname_result" |
191 | # basename: Compute filename of FILE. | 191 | # basename: Compute filename of FILE. |
192 | # value retuned in "$func_basename_result" | 192 | # value returned in "$func_basename_result" |
193 | # Implementation must be kept synchronized with func_dirname | 193 | # Implementation must be kept synchronized with func_dirname |
194 | # and func_basename. For efficiency, we do not delegate to | 194 | # and func_basename. For efficiency, we do not delegate to |
195 | # those functions but instead duplicate the functionality here. | 195 | # those functions but instead duplicate the functionality here. |
@@ -522,7 +522,7 @@ func_mkdir_p () | |||
522 | # While some portion of DIR does not yet exist... | 522 | # While some portion of DIR does not yet exist... |
523 | while test ! -d "$my_directory_path"; do | 523 | while test ! -d "$my_directory_path"; do |
524 | # ...make a list in topmost first order. Use a colon delimited | 524 | # ...make a list in topmost first order. Use a colon delimited |
525 | # list incase some portion of path contains whitespace. | 525 | # list in case some portion of path contains whitespace. |
526 | my_dir_list="$my_directory_path:$my_dir_list" | 526 | my_dir_list="$my_directory_path:$my_dir_list" |
527 | 527 | ||
528 | # If the last portion added has no slash in it, the list is done | 528 | # If the last portion added has no slash in it, the list is done |
@@ -4394,7 +4394,7 @@ EOF | |||
4394 | { | 4394 | { |
4395 | /* however, if there is an option in the LTWRAPPER_OPTION_PREFIX | 4395 | /* however, if there is an option in the LTWRAPPER_OPTION_PREFIX |
4396 | namespace, but it is not one of the ones we know about and | 4396 | namespace, but it is not one of the ones we know about and |
4397 | have already dealt with, above (inluding dump-script), then | 4397 | have already dealt with, above (including dump-script), then |
4398 | report an error. Otherwise, targets might begin to believe | 4398 | report an error. Otherwise, targets might begin to believe |
4399 | they are allowed to use options in the LTWRAPPER_OPTION_PREFIX | 4399 | they are allowed to use options in the LTWRAPPER_OPTION_PREFIX |
4400 | namespace. The first time any user complains about this, we'll | 4400 | namespace. The first time any user complains about this, we'll |
diff --git a/config_test/child_test.c b/config_test/child_test.c index 4bf8504..2add3bc 100644 --- a/config_test/child_test.c +++ b/config_test/child_test.c | |||
@@ -30,7 +30,7 @@ int main(){ | |||
30 | /* pipefd[1] is for writing to the pipe. We want the output | 30 | /* pipefd[1] is for writing to the pipe. We want the output |
31 | * that used to go to the standard output (file descriptor 1) | 31 | * that used to go to the standard output (file descriptor 1) |
32 | * to be written to the pipe. The following command does this, | 32 | * to be written to the pipe. The following command does this, |
33 | * creating a new file descripter 1 (the lowest available) | 33 | * creating a new file descriptor 1 (the lowest available) |
34 | * that writes where pipefd[1] goes. */ | 34 | * that writes where pipefd[1] goes. */ |
35 | dup (pipefd[1]); /* points pipefd at file descriptor */ | 35 | dup (pipefd[1]); /* points pipefd at file descriptor */ |
36 | /* the child isn't going to read from the pipe, so | 36 | /* the child isn't going to read from the pipe, so |
diff --git a/configure.ac b/configure.ac index 0c7169e..a294b00 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -328,6 +328,25 @@ AS_IF([test "x$with_ldap" != "xno"], [ | |||
328 | LIBS="$_SAVEDLIBS" | 328 | LIBS="$_SAVEDLIBS" |
329 | ]) | 329 | ]) |
330 | 330 | ||
331 | |||
332 | AC_ARG_WITH([systemd], [AS_HELP_STRING([--without-systemd], [Skips systemd support])]) | ||
333 | |||
334 | dnl Check for libsystemd | ||
335 | AS_IF([test "x$with_systemd" != "xno"], [ | ||
336 | _SAVEDLIBS="$LIBS" | ||
337 | AC_CHECK_LIB(systemd,sd_get_sessions,,,-lsystemd) | ||
338 | if test "$ac_cv_lib_systemd_sd_get_sessions" = "yes"; then | ||
339 | SYSTEMDLIBS="-lsystemd" | ||
340 | SYSTEMDINCLUDE="" | ||
341 | AC_SUBST(SYSTEMDLIBS) | ||
342 | AC_SUBST(SYSTEMDINCLUDE) | ||
343 | else | ||
344 | AC_MSG_WARN([Skipping systemd support]) | ||
345 | fi | ||
346 | LIBS="$_SAVEDLIBS" | ||
347 | ]) | ||
348 | |||
349 | |||
331 | dnl Check for headers used by check_ide_smart | 350 | dnl Check for headers used by check_ide_smart |
332 | case $host in | 351 | case $host in |
333 | *linux*) | 352 | *linux*) |
@@ -932,7 +951,7 @@ elif ps -Ao 's comm vsz rss uid user pid ppid args' 2>/dev/null | \ | |||
932 | then | 951 | then |
933 | ac_cv_ps_varlist="[procstat,&procuid,&procpid,&procppid,&procvsz,&procrss,&procpcpu,procprog,&pos]" | 952 | ac_cv_ps_varlist="[procstat,&procuid,&procpid,&procppid,&procvsz,&procrss,&procpcpu,procprog,&pos]" |
934 | ac_cv_ps_command="$PATH_TO_PS -Ao 's uid pid ppid vsz rss pcpu comm args'" | 953 | ac_cv_ps_command="$PATH_TO_PS -Ao 's uid pid ppid vsz rss pcpu comm args'" |
935 | # There must be no space between the %s and %n due to a wierd problem in sscanf where | 954 | # There must be no space between the %s and %n due to a weird problem in sscanf where |
936 | # it will return %n as longer than the line length | 955 | # it will return %n as longer than the line length |
937 | ac_cv_ps_format="%s %d %d %d %d %d %f %s%n" | 956 | ac_cv_ps_format="%s %d %d %d %d %d %f %s%n" |
938 | ac_cv_ps_cols=9 | 957 | ac_cv_ps_cols=9 |
@@ -1552,7 +1571,7 @@ if test -n "$PATH_TO_SUDO" | |||
1552 | then | 1571 | then |
1553 | AC_DEFINE_UNQUOTED(PATH_TO_SUDO,"$PATH_TO_SUDO",[path to sudo]) | 1572 | AC_DEFINE_UNQUOTED(PATH_TO_SUDO,"$PATH_TO_SUDO",[path to sudo]) |
1554 | else | 1573 | else |
1555 | AC_MSG_WARN([Could not find sudo or eqivalent]) | 1574 | AC_MSG_WARN([Could not find sudo or equivalent]) |
1556 | fi | 1575 | fi |
1557 | 1576 | ||
1558 | AC_PATH_PROG(PATH_TO_MAILQ,mailq) | 1577 | AC_PATH_PROG(PATH_TO_MAILQ,mailq) |
@@ -1563,7 +1582,7 @@ if test -n "$PATH_TO_MAILQ" | |||
1563 | then | 1582 | then |
1564 | AC_DEFINE_UNQUOTED(PATH_TO_MAILQ,"$PATH_TO_MAILQ",[path to mailq]) | 1583 | AC_DEFINE_UNQUOTED(PATH_TO_MAILQ,"$PATH_TO_MAILQ",[path to mailq]) |
1565 | else | 1584 | else |
1566 | AC_MSG_WARN([Could not find mailq or eqivalent]) | 1585 | AC_MSG_WARN([Could not find mailq or equivalent]) |
1567 | fi | 1586 | fi |
1568 | 1587 | ||
1569 | AC_PATH_PROG(PATH_TO_QMAIL_QSTAT,qmail-qstat) | 1588 | AC_PATH_PROG(PATH_TO_QMAIL_QSTAT,qmail-qstat) |
@@ -1574,7 +1593,7 @@ if test -n "$PATH_TO_QMAIL_QSTAT" | |||
1574 | then | 1593 | then |
1575 | AC_DEFINE_UNQUOTED(PATH_TO_QMAIL_QSTAT,"$PATH_TO_QMAIL_QSTAT",[path to qmail-qstat]) | 1594 | AC_DEFINE_UNQUOTED(PATH_TO_QMAIL_QSTAT,"$PATH_TO_QMAIL_QSTAT",[path to qmail-qstat]) |
1576 | else | 1595 | else |
1577 | AC_MSG_WARN([Could not find qmail-qstat or eqivalent]) | 1596 | AC_MSG_WARN([Could not find qmail-qstat or equivalent]) |
1578 | fi | 1597 | fi |
1579 | 1598 | ||
1580 | dnl SWAP info required is amount allocated/available and amount free | 1599 | dnl SWAP info required is amount allocated/available and amount free |
@@ -1592,13 +1611,13 @@ then | |||
1592 | grep -E -i "^lswap +path +pri +swaplo +blocks +free +maxswap" \ | 1611 | grep -E -i "^lswap +path +pri +swaplo +blocks +free +maxswap" \ |
1593 | >/dev/null] | 1612 | >/dev/null] |
1594 | then | 1613 | then |
1595 | ac_cv_swap_format=[" %*d %*s %*d,%*d %*d %*d %f %f"] | 1614 | ac_cv_swap_format=[" %*d %*s %*d,%*d %*d %*d %lu %lu"] |
1596 | ac_cv_swap_conv=2048 | 1615 | ac_cv_swap_conv=2048 |
1597 | AC_MSG_RESULT([using IRIX format swap]) | 1616 | AC_MSG_RESULT([using IRIX format swap]) |
1598 | 1617 | ||
1599 | elif [$PATH_TO_SWAP -l 2>/dev/null | grep -E -i "^path +dev +swaplo +blocks +free" >/dev/null] | 1618 | elif [$PATH_TO_SWAP -l 2>/dev/null | grep -E -i "^path +dev +swaplo +blocks +free" >/dev/null] |
1600 | then | 1619 | then |
1601 | ac_cv_swap_format=["%*s %*[0-9,-] %*d %f %f"] | 1620 | ac_cv_swap_format=["%*s %*[0-9,-] %*d %lu %lu"] |
1602 | ac_cv_swap_conv=2048 | 1621 | ac_cv_swap_conv=2048 |
1603 | AC_MSG_RESULT([using Unixware format swap]) | 1622 | AC_MSG_RESULT([using Unixware format swap]) |
1604 | else | 1623 | else |
@@ -1622,7 +1641,7 @@ then | |||
1622 | 1641 | ||
1623 | if [$PATH_TO_SWAPINFO -k 2>/dev/null | grep -E -i "^Device +1K-blocks +Used +Avail" >/dev/null] | 1642 | if [$PATH_TO_SWAPINFO -k 2>/dev/null | grep -E -i "^Device +1K-blocks +Used +Avail" >/dev/null] |
1624 | then | 1643 | then |
1625 | ac_cv_swap_format=["%*s %f %*d %f"] | 1644 | ac_cv_swap_format=["%*s %lu %*d %lu"] |
1626 | ac_cv_swap_conv=1024 | 1645 | ac_cv_swap_conv=1024 |
1627 | AC_MSG_RESULT([using FreeBSD format swapinfo]) | 1646 | AC_MSG_RESULT([using FreeBSD format swapinfo]) |
1628 | fi | 1647 | fi |
@@ -1631,7 +1650,7 @@ elif [$PATH_TO_SWAPINFO -dfM 2>/dev/null | grep -E -i "^TYPE +AVAIL +USED +FREE" | |||
1631 | then | 1650 | then |
1632 | ac_cv_have_swap=yes | 1651 | ac_cv_have_swap=yes |
1633 | ac_cv_swap_command="$PATH_TO_SWAPINFO -dfM" | 1652 | ac_cv_swap_command="$PATH_TO_SWAPINFO -dfM" |
1634 | ac_cv_swap_format=["%*s %f %*d %f"] | 1653 | ac_cv_swap_format=["%*s %lu %*d %lu"] |
1635 | ac_cv_swap_conv=1024 | 1654 | ac_cv_swap_conv=1024 |
1636 | AC_MSG_RESULT([using HP-UX format swapinfo]) | 1655 | AC_MSG_RESULT([using HP-UX format swapinfo]) |
1637 | fi | 1656 | fi |
@@ -1646,7 +1665,7 @@ if [$PATH_TO_LSPS -a 2>/dev/null | grep -E -i "^Page Space" > /dev/null] | |||
1646 | then | 1665 | then |
1647 | ac_cv_have_swap=yes | 1666 | ac_cv_have_swap=yes |
1648 | ac_cv_swap_command="$PATH_TO_LSPS -a" | 1667 | ac_cv_swap_command="$PATH_TO_LSPS -a" |
1649 | ac_cv_swap_format=["%*s %*s %*s %f%*s %f %*s"] | 1668 | ac_cv_swap_format=["%*s %*s %*s %lu%*s %lu %*s"] |
1650 | ac_cv_swap_conv=1 | 1669 | ac_cv_swap_conv=1 |
1651 | AC_MSG_RESULT([using AIX lsps]) | 1670 | AC_MSG_RESULT([using AIX lsps]) |
1652 | fi | 1671 | fi |
@@ -1832,7 +1851,7 @@ AM_GNU_GETTEXT([external], [need-ngettext]) | |||
1832 | AM_GNU_GETTEXT_VERSION(0.15) | 1851 | AM_GNU_GETTEXT_VERSION(0.15) |
1833 | 1852 | ||
1834 | dnl Check for Redhat spopen problem | 1853 | dnl Check for Redhat spopen problem |
1835 | dnl Wierd problem where ECHILD is returned from a wait call in error | 1854 | dnl Weird problem where ECHILD is returned from a wait call in error |
1836 | dnl Only appears to affect nslookup and dig calls. Only affects redhat around | 1855 | dnl Only appears to affect nslookup and dig calls. Only affects redhat around |
1837 | dnl 2.6.9-11 (okay in 2.6.9-5). Redhat investigating root cause | 1856 | dnl 2.6.9-11 (okay in 2.6.9-5). Redhat investigating root cause |
1838 | dnl We patch plugins/popen.c | 1857 | dnl We patch plugins/popen.c |
diff --git a/doc/developer-guidelines.sgml b/doc/developer-guidelines.sgml index 28674e0..37c963e 100644 --- a/doc/developer-guidelines.sgml +++ b/doc/developer-guidelines.sgml | |||
@@ -31,7 +31,7 @@ | |||
31 | 31 | ||
32 | <preface id="preface"><title>Preface</title> | 32 | <preface id="preface"><title>Preface</title> |
33 | <para>The purpose of this guidelines is to provide a reference for | 33 | <para>The purpose of this guidelines is to provide a reference for |
34 | the plugin developers and encourage the standarization of the | 34 | the plugin developers and encourage the standardization of the |
35 | different kind of plugins: C, shell, perl, python, etc.</para> | 35 | different kind of plugins: C, shell, perl, python, etc.</para> |
36 | 36 | ||
37 | <para>Monitoring Plugins Development Guidelines Copyright (C) 2000-2013 | 37 | <para>Monitoring Plugins Development Guidelines Copyright (C) 2000-2013 |
@@ -374,7 +374,7 @@ | |||
374 | <listitem><para>s - seconds (also us, ms)</para></listitem> | 374 | <listitem><para>s - seconds (also us, ms)</para></listitem> |
375 | <listitem><para>% - percentage</para></listitem> | 375 | <listitem><para>% - percentage</para></listitem> |
376 | <listitem><para>B - bytes (also KB, MB, TB)</para></listitem> | 376 | <listitem><para>B - bytes (also KB, MB, TB)</para></listitem> |
377 | <listitem><para>c - a continous counter (such as bytes | 377 | <listitem><para>c - a continuous counter (such as bytes |
378 | transmitted on an interface)</para></listitem> | 378 | transmitted on an interface)</para></listitem> |
379 | </orderedlist> | 379 | </orderedlist> |
380 | </listitem> | 380 | </listitem> |
@@ -397,7 +397,7 @@ | |||
397 | <section><title>Don't execute system commands without specifying their | 397 | <section><title>Don't execute system commands without specifying their |
398 | full path</title> | 398 | full path</title> |
399 | <para>Don't use exec(), popen(), etc. to execute external | 399 | <para>Don't use exec(), popen(), etc. to execute external |
400 | commands without explicity using the full path of the external | 400 | commands without explicitly using the full path of the external |
401 | program.</para> | 401 | program.</para> |
402 | 402 | ||
403 | <para>Doing otherwise makes the plugin vulnerable to hijacking | 403 | <para>Doing otherwise makes the plugin vulnerable to hijacking |
@@ -655,7 +655,7 @@ | |||
655 | <para>If possible when writing lists, use tokens to make the | 655 | <para>If possible when writing lists, use tokens to make the |
656 | list easy to remember and non-order dependent - so | 656 | list easy to remember and non-order dependent - so |
657 | check_disk uses '-c 10000,10%' so that it is clear which is | 657 | check_disk uses '-c 10000,10%' so that it is clear which is |
658 | the precentage and which is the KB values (note that due to | 658 | the percentage and which is the KB values (note that due to |
659 | my own lack of foresight, that used to be '-c 10000:10%' but | 659 | my own lack of foresight, that used to be '-c 10000:10%' but |
660 | such constructs should all be changed for consistency, | 660 | such constructs should all be changed for consistency, |
661 | though providing reverse compatibility is fairly | 661 | though providing reverse compatibility is fairly |
@@ -686,7 +686,7 @@ all the current tests and report an overall success rate. | |||
686 | <para>These use perl's Test::More. To do a one time test, run "cd plugins && perl t/check_disk.t". | 686 | <para>These use perl's Test::More. To do a one time test, run "cd plugins && perl t/check_disk.t". |
687 | </para> | 687 | </para> |
688 | 688 | ||
689 | <para>There will somtimes be failures seen in this output which are known failures that | 689 | <para>There will sometimes be failures seen in this output which are known failures that |
690 | need to be fixed. As long as the return code is 0, it will be reported as "test pass". | 690 | need to be fixed. As long as the return code is 0, it will be reported as "test pass". |
691 | (If you have a fix so that the specific test passes, that will be gratefully received!) | 691 | (If you have a fix so that the specific test passes, that will be gratefully received!) |
692 | </para> | 692 | </para> |
@@ -733,12 +733,9 @@ setup the tests. Run "make test" to run all the tests. | |||
733 | <para>Variables should be declared at the beginning of code blocks and | 733 | <para>Variables should be declared at the beginning of code blocks and |
734 | not inline because of portability with older compilers.</para> | 734 | not inline because of portability with older compilers.</para> |
735 | 735 | ||
736 | <para>You should use /* */ for comments and not // as some compilers | 736 | <para>You should use the type "bool" and its values |
737 | do not handle the latter form.</para> | 737 | "true" and "false" instead of the "int" type for booleans. |
738 | 738 | </para> | |
739 | <para>You should also avoid using the type "bool" and its values | ||
740 | "true" and "false". Instead use the "int" type and the plugins' own | ||
741 | "TRUE"/"FALSE" values to keep the code uniformly.</para> | ||
742 | </section> | 739 | </section> |
743 | 740 | ||
744 | <section><title>Crediting sources</title> | 741 | <section><title>Crediting sources</title> |
@@ -846,7 +843,7 @@ setup the tests. Run "make test" to run all the tests. | |||
846 | <para>It is determined to be not redundant (for instance, we would not | 843 | <para>It is determined to be not redundant (for instance, we would not |
847 | add a new version of check_disk just because someone had provide | 844 | add a new version of check_disk just because someone had provide |
848 | a plugin that had perf checking - we would incorporate the features | 845 | a plugin that had perf checking - we would incorporate the features |
849 | into an exisiting plugin)</para> | 846 | into an existing plugin)</para> |
850 | </listitem> | 847 | </listitem> |
851 | <listitem> | 848 | <listitem> |
852 | <para>One of the developers has had the time to audit the code and declare | 849 | <para>One of the developers has had the time to audit the code and declare |
diff --git a/lib/parse_ini.c b/lib/parse_ini.c index 25abc89..547af43 100644 --- a/lib/parse_ini.c +++ b/lib/parse_ini.c | |||
@@ -78,7 +78,7 @@ static char *default_file_in_path(void); | |||
78 | /* | 78 | /* |
79 | * Parse_locator decomposes a string of the form | 79 | * Parse_locator decomposes a string of the form |
80 | * [stanza][@filename] | 80 | * [stanza][@filename] |
81 | * into its seperate parts. | 81 | * into its separate parts. |
82 | */ | 82 | */ |
83 | static void | 83 | static void |
84 | parse_locator(const char *locator, const char *def_stanza, np_ini_info *i) | 84 | parse_locator(const char *locator, const char *def_stanza, np_ini_info *i) |
@@ -169,7 +169,7 @@ read_defaults(FILE *f, const char *stanza, np_arg_list **opts) | |||
169 | if (isspace(c)) | 169 | if (isspace(c)) |
170 | continue; | 170 | continue; |
171 | switch (c) { | 171 | switch (c) { |
172 | /* globble up coment lines */ | 172 | /* globble up comment lines */ |
173 | case ';': | 173 | case ';': |
174 | case '#': | 174 | case '#': |
175 | GOBBLE_TO(f, c, '\n'); | 175 | GOBBLE_TO(f, c, '\n'); |
diff --git a/lib/tests/test_cmd.c b/lib/tests/test_cmd.c index 29ca42a..4bb60aa 100644 --- a/lib/tests/test_cmd.c +++ b/lib/tests/test_cmd.c | |||
@@ -176,14 +176,14 @@ main (int argc, char **argv) | |||
176 | ok (result == UNSET, "(initialised) Checking exit code is reset"); | 176 | ok (result == UNSET, "(initialised) Checking exit code is reset"); |
177 | 177 | ||
178 | command = (char *)malloc(COMMAND_LINE); | 178 | command = (char *)malloc(COMMAND_LINE); |
179 | strcpy(command, "/bin/echo3456 non-existant command"); | 179 | strcpy(command, "/bin/echo3456 non-existent command"); |
180 | result = cmd_run (command, &chld_out, &chld_err, 0); | 180 | result = cmd_run (command, &chld_out, &chld_err, 0); |
181 | 181 | ||
182 | ok (chld_out.lines == 0, | 182 | ok (chld_out.lines == 0, |
183 | "Non existant command, so no output"); | 183 | "Non existent command, so no output"); |
184 | ok (chld_err.lines == 0, | 184 | ok (chld_err.lines == 0, |
185 | "No stderr either"); | 185 | "No stderr either"); |
186 | ok (result == 3, "Get return code 3 (?) for non-existant command"); | 186 | ok (result == 3, "Get return code 3 (?) for non-existent command"); |
187 | 187 | ||
188 | 188 | ||
189 | /* ensure everything is empty again */ | 189 | /* ensure everything is empty again */ |
@@ -192,14 +192,14 @@ main (int argc, char **argv) | |||
192 | result = UNSET; | 192 | result = UNSET; |
193 | 193 | ||
194 | command = (char *)malloc(COMMAND_LINE); | 194 | command = (char *)malloc(COMMAND_LINE); |
195 | strcpy(command, "/bin/sh non-existant-file"); | 195 | strcpy(command, "/bin/sh non-existent-file"); |
196 | result = cmd_run (command, &chld_out, &chld_err, 0); | 196 | result = cmd_run (command, &chld_out, &chld_err, 0); |
197 | 197 | ||
198 | ok (chld_out.lines == 0, | 198 | ok (chld_out.lines == 0, |
199 | "/bin/sh returns no stdout when file is missing..."); | 199 | "/bin/sh returns no stdout when file is missing..."); |
200 | ok (chld_err.lines == 1, | 200 | ok (chld_err.lines == 1, |
201 | "...but does give an error line"); | 201 | "...but does give an error line"); |
202 | ok (strstr(chld_err.line[0],"non-existant-file") != NULL, "And missing filename is in error message"); | 202 | ok (strstr(chld_err.line[0],"non-existent-file") != NULL, "And missing filename is in error message"); |
203 | ok (result != 0, "Get non-zero return code from /bin/sh"); | 203 | ok (result != 0, "Get non-zero return code from /bin/sh"); |
204 | 204 | ||
205 | 205 | ||
@@ -219,11 +219,11 @@ main (int argc, char **argv) | |||
219 | result = UNSET; | 219 | result = UNSET; |
220 | 220 | ||
221 | command = (char *)malloc(COMMAND_LINE); | 221 | command = (char *)malloc(COMMAND_LINE); |
222 | strcpy(command, "/bin/non-existant-command"); | 222 | strcpy(command, "/bin/non-existent-command"); |
223 | result = cmd_run (command, &chld_out, &chld_err, 0); | 223 | result = cmd_run (command, &chld_out, &chld_err, 0); |
224 | 224 | ||
225 | ok (chld_out.lines == 0, | 225 | ok (chld_out.lines == 0, |
226 | "/bin/non-existant-command returns no stdout..."); | 226 | "/bin/non-existent-command returns no stdout..."); |
227 | ok (chld_err.lines == 0, | 227 | ok (chld_err.lines == 0, |
228 | "...and no stderr output either"); | 228 | "...and no stderr output either"); |
229 | ok (result == 3, "Get return code 3 = UNKNOWN when command does not exist"); | 229 | ok (result == 3, "Get return code 3 = UNKNOWN when command does not exist"); |
diff --git a/lib/tests/test_disk.c b/lib/tests/test_disk.c index f6477ac..9bd68c7 100644 --- a/lib/tests/test_disk.c +++ b/lib/tests/test_disk.c | |||
@@ -88,10 +88,10 @@ main (int argc, char **argv) | |||
88 | cflags, 3,strdup("regex on dev names:")); | 88 | cflags, 3,strdup("regex on dev names:")); |
89 | np_test_mount_entry_regex(dummy_mount_list, strdup("/foo"), | 89 | np_test_mount_entry_regex(dummy_mount_list, strdup("/foo"), |
90 | cflags, 0, | 90 | cflags, 0, |
91 | strdup("regex on non existant dev/path:")); | 91 | strdup("regex on non existent dev/path:")); |
92 | np_test_mount_entry_regex(dummy_mount_list, strdup("/Foo"), | 92 | np_test_mount_entry_regex(dummy_mount_list, strdup("/Foo"), |
93 | cflags | REG_ICASE,0, | 93 | cflags | REG_ICASE,0, |
94 | strdup("regi on non existant dev/path:")); | 94 | strdup("regi on non existent dev/path:")); |
95 | np_test_mount_entry_regex(dummy_mount_list, strdup("/c.t0"), | 95 | np_test_mount_entry_regex(dummy_mount_list, strdup("/c.t0"), |
96 | cflags, 3, | 96 | cflags, 3, |
97 | strdup("partial devname regex match:")); | 97 | strdup("partial devname regex match:")); |
diff --git a/lib/tests/test_ini3.t b/lib/tests/test_ini3.t index a2ca94a..41169db 100755 --- a/lib/tests/test_ini3.t +++ b/lib/tests/test_ini3.t | |||
@@ -10,7 +10,7 @@ if (! -e "./test_ini3") { | |||
10 | # array of argument arrays | 10 | # array of argument arrays |
11 | # - First value is the expected return code | 11 | # - First value is the expected return code |
12 | # - 2nd value is the NAGIOS_CONFIG_PATH | 12 | # - 2nd value is the NAGIOS_CONFIG_PATH |
13 | # TODO: looks like we look in default path after looking trough this variable - shall we? | 13 | # TODO: looks like we look in default path after looking through this variable - shall we? |
14 | # - 3rd value is the plugin name | 14 | # - 3rd value is the plugin name |
15 | # - 4th is the ini locator | 15 | # - 4th is the ini locator |
16 | my @TESTS = ( | 16 | my @TESTS = ( |
diff --git a/lib/tests/test_opts3.t b/lib/tests/test_opts3.t index 8d974ca..d77a35c 100755 --- a/lib/tests/test_opts3.t +++ b/lib/tests/test_opts3.t | |||
@@ -10,7 +10,7 @@ if (! -e "./test_opts3") { | |||
10 | # array of argument arrays | 10 | # array of argument arrays |
11 | # - First value is the expected return code | 11 | # - First value is the expected return code |
12 | # - 2nd value is the NAGIOS_CONFIG_PATH | 12 | # - 2nd value is the NAGIOS_CONFIG_PATH |
13 | # TODO: looks like we look in default path after looking trough this variable - shall we? | 13 | # TODO: looks like we look in default path after looking through this variable - shall we? |
14 | # - 3rd value is the plugin name | 14 | # - 3rd value is the plugin name |
15 | # - 4th and up are arguments | 15 | # - 4th and up are arguments |
16 | my @TESTS = ( | 16 | my @TESTS = ( |
diff --git a/lib/tests/test_utils.c b/lib/tests/test_utils.c index bc00fac..7b10494 100644 --- a/lib/tests/test_utils.c +++ b/lib/tests/test_utils.c | |||
@@ -395,7 +395,7 @@ main (int argc, char **argv) | |||
395 | ok( temp_state_data==NULL, "Older data version gives NULL" ); | 395 | ok( temp_state_data==NULL, "Older data version gives NULL" ); |
396 | temp_state_key->data_version=54; | 396 | temp_state_key->data_version=54; |
397 | 397 | ||
398 | temp_state_key->_filename="var/nonexistant"; | 398 | temp_state_key->_filename="var/nonexistent"; |
399 | temp_state_data = np_state_read(); | 399 | temp_state_data = np_state_read(); |
400 | ok( temp_state_data==NULL, "Missing file gives NULL" ); | 400 | ok( temp_state_data==NULL, "Missing file gives NULL" ); |
401 | ok( this_monitoring_plugin->state->state_data==NULL, "No state information" ); | 401 | ok( this_monitoring_plugin->state->state_data==NULL, "No state information" ); |
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_cmd.c b/lib/utils_cmd.c index 795840d..34fb390 100644 --- a/lib/utils_cmd.c +++ b/lib/utils_cmd.c | |||
@@ -118,10 +118,6 @@ _cmd_open (char *const *argv, int *pfd, int *pfderr) | |||
118 | 118 | ||
119 | int i = 0; | 119 | int i = 0; |
120 | 120 | ||
121 | /* if no command was passed, return with no error */ | ||
122 | if (argv == NULL) | ||
123 | return -1; | ||
124 | |||
125 | if (!_cmd_pids) | 121 | if (!_cmd_pids) |
126 | CMD_INIT; | 122 | CMD_INIT; |
127 | 123 | ||
@@ -161,7 +157,7 @@ _cmd_open (char *const *argv, int *pfd, int *pfderr) | |||
161 | } | 157 | } |
162 | 158 | ||
163 | /* parent picks up execution here */ | 159 | /* parent picks up execution here */ |
164 | /* close childs descriptors in our address space */ | 160 | /* close children descriptors in our address space */ |
165 | close (pfd[1]); | 161 | close (pfd[1]); |
166 | close (pfderr[1]); | 162 | close (pfderr[1]); |
167 | 163 | ||
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/m4/np_mysqlclient.m4 b/m4/np_mysqlclient.m4 index 5099a02..9f533ea 100644 --- a/m4/np_mysqlclient.m4 +++ b/m4/np_mysqlclient.m4 | |||
@@ -81,7 +81,7 @@ AC_DEFUN([np_check_lib_mariadbclient], | |||
81 | ], [with_mysql=no], [$np_mysql_libs]) | 81 | ], [with_mysql=no], [$np_mysql_libs]) |
82 | ]) | 82 | ]) |
83 | 83 | ||
84 | dnl Will take $1, find last occurrance of -LDIR and add DIR to LD_RUN_PATH | 84 | dnl Will take $1, find last occurrence of -LDIR and add DIR to LD_RUN_PATH |
85 | AC_DEFUN([np_add_to_runpath], | 85 | AC_DEFUN([np_add_to_runpath], |
86 | [ | 86 | [ |
87 | dnl Need [[ ]] so autoconf gives us just one set | 87 | dnl Need [[ ]] so autoconf gives us just one set |
diff --git a/m4/uriparser.m4 b/m4/uriparser.m4 index dbb8a55..5113638 100644 --- a/m4/uriparser.m4 +++ b/m4/uriparser.m4 | |||
@@ -1,4 +1,4 @@ | |||
1 | # (this check is rougly based on and inspired libcurl.m4) | 1 | # (this check is roughly based on and inspired libcurl.m4) |
2 | # URIPARSER_CHECK ([DEFAULT-ACTION], [MINIMUM-VERSION], | 2 | # URIPARSER_CHECK ([DEFAULT-ACTION], [MINIMUM-VERSION], |
3 | # [ACTION-IF-YES], [ACTION-IF-NO]) | 3 | # [ACTION-IF-YES], [ACTION-IF-NO]) |
4 | # Checks for uriparser library. DEFAULT-ACTION is the string yes or no to | 4 | # Checks for uriparser library. DEFAULT-ACTION is the string yes or no to |
diff --git a/plugins-root/check_dhcp.c b/plugins-root/check_dhcp.c index ad67323..2d22619 100644 --- a/plugins-root/check_dhcp.c +++ b/plugins-root/check_dhcp.c | |||
@@ -229,7 +229,7 @@ struct in_addr requested_address; | |||
229 | 229 | ||
230 | int process_arguments(int, char **); | 230 | int process_arguments(int, char **); |
231 | int call_getopt(int, char **); | 231 | int call_getopt(int, char **); |
232 | int validate_arguments(int, int); | 232 | int validate_arguments(int); |
233 | void print_usage(void); | 233 | void print_usage(void); |
234 | void print_help(void); | 234 | void print_help(void); |
235 | 235 | ||
@@ -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 | ||
@@ -1059,8 +1055,8 @@ int process_arguments(int argc, char **argv){ | |||
1059 | return ERROR; | 1055 | return ERROR; |
1060 | 1056 | ||
1061 | arg_index = call_getopt(argc,argv); | 1057 | arg_index = call_getopt(argc,argv); |
1062 | return validate_arguments(argc,arg_index); | 1058 | return validate_arguments(argc); |
1063 | } | 1059 | } |
1064 | 1060 | ||
1065 | 1061 | ||
1066 | 1062 | ||
@@ -1158,13 +1154,13 @@ int call_getopt(int argc, char **argv){ | |||
1158 | } | 1154 | } |
1159 | 1155 | ||
1160 | 1156 | ||
1161 | int validate_arguments(int argc, int arg_index){ | 1157 | int validate_arguments(int argc){ |
1162 | 1158 | ||
1163 | if(argc-optind > 0) | 1159 | if(argc - optind > 0) |
1164 | usage(_("Got unexpected non-option argument")); | 1160 | usage(_("Got unexpected non-option argument")); |
1165 | 1161 | ||
1166 | return OK; | 1162 | return OK; |
1167 | } | 1163 | } |
1168 | 1164 | ||
1169 | 1165 | ||
1170 | #if defined(__sun__) || defined(__solaris__) || defined(__hpux__) | 1166 | #if defined(__sun__) || defined(__solaris__) || defined(__hpux__) |
diff --git a/plugins-root/check_icmp.c b/plugins-root/check_icmp.c index c3be2ef..1d47e9f 100644 --- a/plugins-root/check_icmp.c +++ b/plugins-root/check_icmp.c | |||
@@ -274,7 +274,7 @@ get_icmp_error_msg(unsigned char icmp_type, unsigned char icmp_code) | |||
274 | break; | 274 | break; |
275 | 275 | ||
276 | case ICMP_TIMXCEED: | 276 | case ICMP_TIMXCEED: |
277 | /* really 'out of reach', or non-existant host behind a router serving | 277 | /* really 'out of reach', or non-existent host behind a router serving |
278 | * two different subnets */ | 278 | * two different subnets */ |
279 | switch(icmp_code) { | 279 | switch(icmp_code) { |
280 | case ICMP_TIMXCEED_INTRANS: msg = "Time to live exceeded in transit"; break; | 280 | case ICMP_TIMXCEED_INTRANS: msg = "Time to live exceeded in transit"; break; |
@@ -1432,15 +1432,20 @@ get_ip_address(const char *ifname) | |||
1432 | { | 1432 | { |
1433 | // TODO: Rewrite this so the function return an error and we exit somewhere else | 1433 | // TODO: Rewrite this so the function return an error and we exit somewhere else |
1434 | struct sockaddr_in ip; | 1434 | struct sockaddr_in ip; |
1435 | ip.sin_addr.s_addr = 0; // Fake initialization to make compiler happy | ||
1435 | #if defined(SIOCGIFADDR) | 1436 | #if defined(SIOCGIFADDR) |
1436 | struct ifreq ifr; | 1437 | struct ifreq ifr; |
1437 | 1438 | ||
1438 | strncpy(ifr.ifr_name, ifname, sizeof(ifr.ifr_name) - 1); | 1439 | strncpy(ifr.ifr_name, ifname, sizeof(ifr.ifr_name) - 1); |
1440 | |||
1439 | ifr.ifr_name[sizeof(ifr.ifr_name) - 1] = '\0'; | 1441 | ifr.ifr_name[sizeof(ifr.ifr_name) - 1] = '\0'; |
1442 | |||
1440 | if(ioctl(icmp_sock, SIOCGIFADDR, &ifr) == -1) | 1443 | if(ioctl(icmp_sock, SIOCGIFADDR, &ifr) == -1) |
1441 | crash("Cannot determine IP address of interface %s", ifname); | 1444 | crash("Cannot determine IP address of interface %s", ifname); |
1445 | |||
1442 | memcpy(&ip, &ifr.ifr_addr, sizeof(ip)); | 1446 | memcpy(&ip, &ifr.ifr_addr, sizeof(ip)); |
1443 | #else | 1447 | #else |
1448 | (void) ifname; | ||
1444 | errno = 0; | 1449 | errno = 0; |
1445 | crash("Cannot get interface IP address on this platform."); | 1450 | crash("Cannot get interface IP address on this platform."); |
1446 | #endif | 1451 | #endif |
diff --git a/plugins-root/pst3.c b/plugins-root/pst3.c index c3589f0..1f69f3a 100644 --- a/plugins-root/pst3.c +++ b/plugins-root/pst3.c | |||
@@ -257,6 +257,6 @@ void usage() { | |||
257 | printf("\tRSS - Real memory usage (kilobytes)\n"); | 257 | printf("\tRSS - Real memory usage (kilobytes)\n"); |
258 | printf("\t%%CPU - CPU usage\n"); | 258 | printf("\t%%CPU - CPU usage\n"); |
259 | printf("\tCOMMAND - Command being run\n"); | 259 | printf("\tCOMMAND - Command being run\n"); |
260 | printf("\tARGS - Full command line with arguements\n"); | 260 | printf("\tARGS - Full command line with arguments\n"); |
261 | return; | 261 | return; |
262 | } | 262 | } |
diff --git a/plugins-root/t/check_icmp.t b/plugins-root/t/check_icmp.t index f6aa681..96addd3 100644 --- a/plugins-root/t/check_icmp.t +++ b/plugins-root/t/check_icmp.t | |||
@@ -92,5 +92,5 @@ like( $res->output, $successOutput, "Output OK" ); | |||
92 | $res = NPTest->testCmd( | 92 | $res = NPTest->testCmd( |
93 | "$sudo ./check_icmp -H $host_responsive -b 65507" | 93 | "$sudo ./check_icmp -H $host_responsive -b 65507" |
94 | ); | 94 | ); |
95 | is( $res->return_code, 0, "Try max paket size" ); | 95 | is( $res->return_code, 0, "Try max packet size" ); |
96 | like( $res->output, $successOutput, "Output OK - Didn't overflow" ); | 96 | like( $res->output, $successOutput, "Output OK - Didn't overflow" ); |
diff --git a/plugins-scripts/Makefile.am b/plugins-scripts/Makefile.am index 088a445..7879791 100644 --- a/plugins-scripts/Makefile.am +++ b/plugins-scripts/Makefile.am | |||
@@ -16,13 +16,13 @@ VPATH=$(top_srcdir) $(top_srcdir)/plugins-scripts $(top_srcdir)/plugins-scripts/ | |||
16 | libexec_SCRIPTS = check_breeze check_disk_smb check_flexlm check_ircd \ | 16 | libexec_SCRIPTS = check_breeze check_disk_smb check_flexlm check_ircd \ |
17 | check_log check_oracle check_rpc check_sensors check_wave \ | 17 | check_log check_oracle check_rpc check_sensors check_wave \ |
18 | check_ifstatus check_ifoperstatus check_mailq check_file_age \ | 18 | check_ifstatus check_ifoperstatus check_mailq check_file_age \ |
19 | check_uptime \ | 19 | check_uptime check_mssql \ |
20 | utils.sh utils.pm | 20 | utils.sh utils.pm |
21 | 21 | ||
22 | EXTRA_DIST=check_breeze.pl check_disk_smb.pl check_flexlm.pl check_ircd.pl \ | 22 | EXTRA_DIST=check_breeze.pl check_disk_smb.pl check_flexlm.pl check_ircd.pl \ |
23 | check_log.sh check_oracle.sh check_rpc.pl check_sensors.sh \ | 23 | check_log.sh check_oracle.sh check_rpc.pl check_sensors.sh \ |
24 | check_ifstatus.pl check_ifoperstatus.pl check_wave.pl check_mailq.pl check_file_age.pl \ | 24 | check_ifstatus.pl check_ifoperstatus.pl check_wave.pl check_mailq.pl check_file_age.pl \ |
25 | check_uptime.pl \ | 25 | check_uptime.pl check_mssql.pl \ |
26 | utils.sh.in utils.pm.in t | 26 | utils.sh.in utils.pm.in t |
27 | 27 | ||
28 | EDIT = sed \ | 28 | EDIT = sed \ |
diff --git a/plugins-scripts/check_breeze.pl b/plugins-scripts/check_breeze.pl index 05b9920..531625c 100755 --- a/plugins-scripts/check_breeze.pl +++ b/plugins-scripts/check_breeze.pl | |||
@@ -14,8 +14,9 @@ sub print_help (); | |||
14 | sub print_usage (); | 14 | sub print_usage (); |
15 | 15 | ||
16 | $ENV{'PATH'}='@TRUSTED_PATH@'; | 16 | $ENV{'PATH'}='@TRUSTED_PATH@'; |
17 | $ENV{'BASH_ENV'}=''; | 17 | $ENV{'BASH_ENV'}=''; |
18 | $ENV{'ENV'}=''; | 18 | $ENV{'ENV'}=''; |
19 | $ENV{'CDPATH'}=''; | ||
19 | 20 | ||
20 | Getopt::Long::Configure('bundling'); | 21 | Getopt::Long::Configure('bundling'); |
21 | GetOptions | 22 | GetOptions |
diff --git a/plugins-scripts/check_disk_smb.pl b/plugins-scripts/check_disk_smb.pl index 15d1634..f4d33a7 100644 --- a/plugins-scripts/check_disk_smb.pl +++ b/plugins-scripts/check_disk_smb.pl | |||
@@ -28,7 +28,7 @@ use FindBin; | |||
28 | use lib "$FindBin::Bin"; | 28 | use lib "$FindBin::Bin"; |
29 | use utils qw($TIMEOUT %ERRORS &print_revision &support &usage); | 29 | use utils qw($TIMEOUT %ERRORS &print_revision &support &usage); |
30 | 30 | ||
31 | # make us session leader which makes all childs exit if we do | 31 | # make us session leader which makes all children exit if we do |
32 | setsid; | 32 | setsid; |
33 | 33 | ||
34 | sub print_help (); | 34 | sub print_help (); |
diff --git a/plugins-scripts/check_ifoperstatus.pl b/plugins-scripts/check_ifoperstatus.pl index c190ce9..e335cda 100755 --- a/plugins-scripts/check_ifoperstatus.pl +++ b/plugins-scripts/check_ifoperstatus.pl | |||
@@ -134,7 +134,7 @@ if (defined $ifdescr || defined $iftype) { | |||
134 | } | 134 | } |
135 | if ($status==0) { | 135 | if ($status==0) { |
136 | $state = "UNKNOWN"; | 136 | $state = "UNKNOWN"; |
137 | printf "$state: could not retrive ifdescr/iftype snmpkey - $status-$snmpkey\n"; | 137 | printf "$state: could not retrieve ifdescr/iftype snmpkey - $status-$snmpkey\n"; |
138 | $session->close; | 138 | $session->close; |
139 | exit $ERRORS{$state}; | 139 | exit $ERRORS{$state}; |
140 | } | 140 | } |
@@ -187,7 +187,7 @@ if (defined $ifXTable) { | |||
187 | $name = $response->{$snmpIfDescr} ; | 187 | $name = $response->{$snmpIfDescr} ; |
188 | } | 188 | } |
189 | 189 | ||
190 | ## if AdminStatus is down - some one made a consious effort to change config | 190 | ## if AdminStatus is down - some one made a conscious effort to change config |
191 | ## | 191 | ## |
192 | if ( not ($response->{$snmpIfAdminStatus} == 1) ) { | 192 | if ( not ($response->{$snmpIfAdminStatus} == 1) ) { |
193 | $answer = "Interface $name (index $snmpkey) is administratively down."; | 193 | $answer = "Interface $name (index $snmpkey) is administratively down."; |
@@ -286,7 +286,7 @@ sub print_usage() { | |||
286 | printf "check_ifoperstatus -k <IF_KEY> -H <HOSTNAME> [-C <community>]\n"; | 286 | printf "check_ifoperstatus -k <IF_KEY> -H <HOSTNAME> [-C <community>]\n"; |
287 | printf "Copyright (C) 2000 Christoph Kron\n"; | 287 | printf "Copyright (C) 2000 Christoph Kron\n"; |
288 | printf "check_ifoperstatus.pl comes with ABSOLUTELY NO WARRANTY\n"; | 288 | printf "check_ifoperstatus.pl comes with ABSOLUTELY NO WARRANTY\n"; |
289 | printf "This programm is licensed under the terms of the "; | 289 | printf "This program is licensed under the terms of the "; |
290 | printf "GNU General Public License\n(check source code for details)\n"; | 290 | printf "GNU General Public License\n(check source code for details)\n"; |
291 | printf "\n\n"; | 291 | printf "\n\n"; |
292 | } | 292 | } |
@@ -424,7 +424,7 @@ sub process_arguments() { | |||
424 | if (defined $seclevel && defined $secname) { | 424 | if (defined $seclevel && defined $secname) { |
425 | $session_opts{'-username'} = $secname; | 425 | $session_opts{'-username'} = $secname; |
426 | 426 | ||
427 | # Must define a security level even though defualt is noAuthNoPriv | 427 | # Must define a security level even though default is noAuthNoPriv |
428 | unless ( grep /^$seclevel$/, qw(noAuthNoPriv authNoPriv authPriv) ) { | 428 | unless ( grep /^$seclevel$/, qw(noAuthNoPriv authNoPriv authPriv) ) { |
429 | usage("Must define a valid security level even though default is noAuthNoPriv"); | 429 | usage("Must define a valid security level even though default is noAuthNoPriv"); |
430 | } | 430 | } |
diff --git a/plugins-scripts/check_ifstatus.pl b/plugins-scripts/check_ifstatus.pl index 0ae3b4c..f0b7c49 100755 --- a/plugins-scripts/check_ifstatus.pl +++ b/plugins-scripts/check_ifstatus.pl | |||
@@ -370,7 +370,7 @@ sub process_arguments() { | |||
370 | if (defined $seclevel && defined $secname) { | 370 | if (defined $seclevel && defined $secname) { |
371 | $session_opts{'-username'} = $secname; | 371 | $session_opts{'-username'} = $secname; |
372 | 372 | ||
373 | # Must define a security level even though defualt is noAuthNoPriv | 373 | # Must define a security level even though default is noAuthNoPriv |
374 | unless ( grep /^$seclevel$/, qw(noAuthNoPriv authNoPriv authPriv) ) { | 374 | unless ( grep /^$seclevel$/, qw(noAuthNoPriv authNoPriv authPriv) ) { |
375 | usage("Must define a valid security level even though default is noAuthNoPriv"); | 375 | usage("Must define a valid security level even though default is noAuthNoPriv"); |
376 | } | 376 | } |
diff --git a/plugins-scripts/check_ircd.pl b/plugins-scripts/check_ircd.pl index d869ae7..84f2022 100755 --- a/plugins-scripts/check_ircd.pl +++ b/plugins-scripts/check_ircd.pl | |||
@@ -60,7 +60,7 @@ sub print_usage (); | |||
60 | sub connection ($$$$); | 60 | sub connection ($$$$); |
61 | sub bindRemote ($$); | 61 | sub bindRemote ($$); |
62 | 62 | ||
63 | # -------------------------------------------------------------[ Enviroment ]-- | 63 | # -------------------------------------------------------------[ Environment ]-- |
64 | 64 | ||
65 | $ENV{'PATH'}='@TRUSTED_PATH@'; | 65 | $ENV{'PATH'}='@TRUSTED_PATH@'; |
66 | $ENV{'BASH_ENV'}=''; | 66 | $ENV{'BASH_ENV'}=''; |
@@ -208,7 +208,7 @@ MAIN: | |||
208 | 208 | ||
209 | # Just in case of problems, let's not hang the monitoring system | 209 | # Just in case of problems, let's not hang the monitoring system |
210 | $SIG{'ALRM'} = sub { | 210 | $SIG{'ALRM'} = sub { |
211 | print "Somthing is Taking a Long Time, Increase Your TIMEOUT (Currently Set At $TIMEOUT Seconds)\n"; | 211 | print "Something is Taking a Long Time, Increase Your TIMEOUT (Currently Set At $TIMEOUT Seconds)\n"; |
212 | exit $ERRORS{"UNKNOWN"}; | 212 | exit $ERRORS{"UNKNOWN"}; |
213 | }; | 213 | }; |
214 | 214 | ||
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_mailq.pl b/plugins-scripts/check_mailq.pl index 27073d3..49156af 100755 --- a/plugins-scripts/check_mailq.pl +++ b/plugins-scripts/check_mailq.pl | |||
@@ -4,7 +4,7 @@ | |||
4 | # transmittal. | 4 | # transmittal. |
5 | # | 5 | # |
6 | # Initial version support sendmail's mailq command | 6 | # Initial version support sendmail's mailq command |
7 | # Support for mutiple sendmail queues (Carlos Canau) | 7 | # Support for multiple sendmail queues (Carlos Canau) |
8 | # Support for qmail (Benjamin Schmid) | 8 | # Support for qmail (Benjamin Schmid) |
9 | 9 | ||
10 | # License Information: | 10 | # License Information: |
@@ -149,7 +149,26 @@ if ($mailq eq "sendmail") { | |||
149 | ##/var/spool/mqueue/qF/df is empty | 149 | ##/var/spool/mqueue/qF/df is empty |
150 | ## Total Requests: 1 | 150 | ## Total Requests: 1 |
151 | 151 | ||
152 | 152 | # separate submission/transport queues, empty | |
153 | ## MSP Queue status... | ||
154 | ## /var/spool/mqueue-client is empty | ||
155 | ## Total requests: 0 | ||
156 | ## MTA Queue status... | ||
157 | ## /var/spool/mqueue is empty | ||
158 | ## Total requests: 0 | ||
159 | # separate submission/transport queues: 1 | ||
160 | ## MSP Queue status... | ||
161 | ## /var/spool/mqueue-client (1 request) | ||
162 | ## -----Q-ID----- --Size-- -----Q-Time----- ------------Sender/Recipient----------- | ||
163 | ## oAJEfhdW014123 5 Fri Nov 19 14:41 jwm | ||
164 | ## (Deferred: Connection refused by [127.0.0.1]) | ||
165 | ## root | ||
166 | ## Total requests: 1 | ||
167 | ## MTA Queue status... | ||
168 | ## /var/spool/mqueue is empty | ||
169 | ## Total requests: 0 | ||
170 | |||
171 | my $this_msg_q = 0; | ||
153 | while (<MAILQ>) { | 172 | while (<MAILQ>) { |
154 | 173 | ||
155 | # match email addr on queue listing | 174 | # match email addr on queue listing |
@@ -189,13 +208,18 @@ if ($mailq eq "sendmail") { | |||
189 | # | 208 | # |
190 | # single queue: first line | 209 | # single queue: first line |
191 | # multi queue: one for each queue. overwrite on multi queue below | 210 | # multi queue: one for each queue. overwrite on multi queue below |
192 | $msg_q = $1 ; | 211 | $this_msg_q = $1 ; |
212 | $msg_q += $1 ; | ||
193 | } | 213 | } |
194 | } elsif (/^\s+Total\sRequests:\s(\d+)$/i) { | 214 | } elsif (/^\s+Total\sRequests:\s(\d+)$/i) { |
195 | print "$utils::PATH_TO_MAILQ = $_ \n" if $verbose ; | 215 | if ($this_msg_q) { |
196 | # | 216 | $this_msg_q = 0 ; |
197 | # multi queue: last line | 217 | } else { |
198 | $msg_q = $1 ; | 218 | print "$utils::PATH_TO_MAILQ = $_ \n" if $verbose ; |
219 | # | ||
220 | # multi queue: last line | ||
221 | $msg_q += $1 ; | ||
222 | } | ||
199 | } | 223 | } |
200 | 224 | ||
201 | } | 225 | } |
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 |
87 | case "$cmd" in | 87 | case "$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 | ;; |
104 | esac | 104 | esac |
105 | 105 | ||
diff --git a/plugins-scripts/check_rpc.pl b/plugins-scripts/check_rpc.pl index 47d6e49..8a56b9f 100755 --- a/plugins-scripts/check_rpc.pl +++ b/plugins-scripts/check_rpc.pl | |||
@@ -5,7 +5,7 @@ | |||
5 | # usage: | 5 | # usage: |
6 | # check_rpc host service | 6 | # check_rpc host service |
7 | # | 7 | # |
8 | # Check if an rpc serice is registered and running | 8 | # Check if an rpc service is registered and running |
9 | # using rpcinfo - $proto $host $prognum 2>&1 |"; | 9 | # using rpcinfo - $proto $host $prognum 2>&1 |"; |
10 | # | 10 | # |
11 | # Use these hosts.cfg entries as examples | 11 | # Use these hosts.cfg entries as examples |
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() { | |||
26 | case "$1" in | 26 | case "$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-scripts/check_uptime.pl b/plugins-scripts/check_uptime.pl index f954287..d73e40e 100755 --- a/plugins-scripts/check_uptime.pl +++ b/plugins-scripts/check_uptime.pl | |||
@@ -110,7 +110,7 @@ $pretty_uptime .= sprintf( "%d week%s, ", $weeks, $weeks == 1 ? "" : "s" ) if | |||
110 | $pretty_uptime .= sprintf( "%d day%s, ", $days, $days == 1 ? "" : "s" ) if $days; | 110 | $pretty_uptime .= sprintf( "%d day%s, ", $days, $days == 1 ? "" : "s" ) if $days; |
111 | $pretty_uptime .= sprintf( "%d hour%s, ", $hours, $hours == 1 ? "" : "s" ) if $hours; | 111 | $pretty_uptime .= sprintf( "%d hour%s, ", $hours, $hours == 1 ? "" : "s" ) if $hours; |
112 | $pretty_uptime .= sprintf( "%d minute%s, ", $mins, $mins == 1 ? "" : "s" ) if $mins; | 112 | $pretty_uptime .= sprintf( "%d minute%s, ", $mins, $mins == 1 ? "" : "s" ) if $mins; |
113 | # Replace last occurence of comma with "and" | 113 | # Replace last occurrence of comma with "and" |
114 | $pretty_uptime =~ s/, $/ and /; | 114 | $pretty_uptime =~ s/, $/ and /; |
115 | # Always print the seconds (though it may be 0 seconds) | 115 | # Always print the seconds (though it may be 0 seconds) |
116 | $pretty_uptime .= sprintf( "%d second%s", $secs, $secs == 1 ? "" : "s" ); | 116 | $pretty_uptime .= sprintf( "%d second%s", $secs, $secs == 1 ? "" : "s" ); |
diff --git a/plugins-scripts/check_wave.pl b/plugins-scripts/check_wave.pl index 41e15f5..c24015c 100755 --- a/plugins-scripts/check_wave.pl +++ b/plugins-scripts/check_wave.pl | |||
@@ -19,6 +19,7 @@ sub print_usage (); | |||
19 | $ENV{'PATH'}='@TRUSTED_PATH@'; | 19 | $ENV{'PATH'}='@TRUSTED_PATH@'; |
20 | $ENV{'BASH_ENV'}=''; | 20 | $ENV{'BASH_ENV'}=''; |
21 | $ENV{'ENV'}=''; | 21 | $ENV{'ENV'}=''; |
22 | $ENV{'CDPATH'}=''; | ||
22 | 23 | ||
23 | Getopt::Long::Configure('bundling'); | 24 | Getopt::Long::Configure('bundling'); |
24 | GetOptions | 25 | GetOptions |
@@ -50,34 +51,34 @@ my $critical = $1 if ($opt_c =~ /([0-9]+)/); | |||
50 | ($opt_w) || ($opt_w = shift) || ($opt_w = 60); | 51 | ($opt_w) || ($opt_w = shift) || ($opt_w = 60); |
51 | my $warning = $1 if ($opt_w =~ /([0-9]+)/); | 52 | my $warning = $1 if ($opt_w =~ /([0-9]+)/); |
52 | 53 | ||
53 | $low1 = `snmpget $host public .1.3.6.1.4.1.74.2.21.1.2.1.8.1`; | 54 | $low1 = `$utils::PATH_TO_SNMPGET $host public .1.3.6.1.4.1.74.2.21.1.2.1.8.1`; |
54 | @test = split(/ /,$low1); | 55 | @test = split(/ /,$low1); |
55 | $low1 = $test[2]; | 56 | $low1 = $test[2]; |
56 | 57 | ||
57 | $med1 = `snmpget $host public .1.3.6.1.4.1.74.2.21.1.2.1.9.1`; | 58 | $med1 = `$utils::PATH_TO_SNMPGET $host public .1.3.6.1.4.1.74.2.21.1.2.1.9.1`; |
58 | @test = split(/ /,$med1); | 59 | @test = split(/ /,$med1); |
59 | $med1 = $test[2]; | 60 | $med1 = $test[2]; |
60 | 61 | ||
61 | $high1 = `snmpget $host public .1.3.6.1.4.1.74.2.21.1.2.1.10.1`; | 62 | $high1 = `$utils::PATH_TO_SNMPGET $host public .1.3.6.1.4.1.74.2.21.1.2.1.10.1`; |
62 | @test = split(/ /,$high1); | 63 | @test = split(/ /,$high1); |
63 | $high1 = $test[2]; | 64 | $high1 = $test[2]; |
64 | 65 | ||
65 | sleep(2); | 66 | sleep(2); |
66 | 67 | ||
67 | $snr = `snmpget $host public .1.3.6.1.4.1.762.2.5.2.1.17.1`; | 68 | $snr = `$utils::PATH_TO_SNMPGET $host public .1.3.6.1.4.1.762.2.5.2.1.17.1`; |
68 | @test = split(/ /,$snr); | 69 | @test = split(/ /,$snr); |
69 | $snr = $test[2]; | 70 | $snr = $test[2]; |
70 | $snr = int($snr*25); | 71 | $snr = int($snr*25); |
71 | 72 | ||
72 | $low2 = `snmpget $host public .1.3.6.1.4.1.74.2.21.1.2.1.8.1`; | 73 | $low2 = `$utils::PATH_TO_SNMPGET $host public .1.3.6.1.4.1.74.2.21.1.2.1.8.1`; |
73 | @test = split(/ /,$low2); | 74 | @test = split(/ /,$low2); |
74 | $low2 = $test[2]; | 75 | $low2 = $test[2]; |
75 | 76 | ||
76 | $med2 = `snmpget $host public .1.3.6.1.4.1.74.2.21.1.2.1.9.1`; | 77 | $med2 = `$utils::PATH_TO_SNMPGET $host public .1.3.6.1.4.1.74.2.21.1.2.1.9.1`; |
77 | @test = split(/ /,$med2); | 78 | @test = split(/ /,$med2); |
78 | $med2 = $test[2]; | 79 | $med2 = $test[2]; |
79 | 80 | ||
80 | $high2 = `snmpget $host public .1.3.6.1.4.1.74.2.21.1.2.1.10.1`; | 81 | $high2 = `$utils::PATH_TO_SNMPGET $host public .1.3.6.1.4.1.74.2.21.1.2.1.10.1`; |
81 | @test = split(/ /,$high2); | 82 | @test = split(/ /,$high2); |
82 | $high2 = $test[2]; | 83 | $high2 = $test[2]; |
83 | 84 | ||
diff --git a/plugins-scripts/utils.pm.in b/plugins-scripts/utils.pm.in index 386831e..c84769f 100644 --- a/plugins-scripts/utils.pm.in +++ b/plugins-scripts/utils.pm.in | |||
@@ -23,6 +23,7 @@ $PATH_TO_LMSTAT = "@PATH_TO_LMSTAT@" ; | |||
23 | $PATH_TO_SMBCLIENT = "@PATH_TO_SMBCLIENT@" ; | 23 | $PATH_TO_SMBCLIENT = "@PATH_TO_SMBCLIENT@" ; |
24 | $PATH_TO_MAILQ = "@PATH_TO_MAILQ@"; | 24 | $PATH_TO_MAILQ = "@PATH_TO_MAILQ@"; |
25 | $PATH_TO_QMAIL_QSTAT = "@PATH_TO_QMAIL_QSTAT@"; | 25 | $PATH_TO_QMAIL_QSTAT = "@PATH_TO_QMAIL_QSTAT@"; |
26 | $PATH_TO_SNMPGET = "@PATH_TO_SNMPGET@"; | ||
26 | 27 | ||
27 | ## common variables | 28 | ## common variables |
28 | $TIMEOUT = 15; | 29 | $TIMEOUT = 15; |
diff --git a/plugins/Makefile.am b/plugins/Makefile.am index ab59eb7..49086b7 100644 --- a/plugins/Makefile.am +++ b/plugins/Makefile.am | |||
@@ -112,7 +112,7 @@ check_tcp_LDADD = $(SSLOBJS) | |||
112 | check_time_LDADD = $(NETLIBS) | 112 | check_time_LDADD = $(NETLIBS) |
113 | check_ntp_time_LDADD = $(NETLIBS) $(MATHLIBS) | 113 | check_ntp_time_LDADD = $(NETLIBS) $(MATHLIBS) |
114 | check_ups_LDADD = $(NETLIBS) | 114 | check_ups_LDADD = $(NETLIBS) |
115 | check_users_LDADD = $(BASEOBJS) $(WTSAPI32LIBS) | 115 | check_users_LDADD = $(BASEOBJS) $(WTSAPI32LIBS) $(SYSTEMDLIBS) |
116 | check_by_ssh_LDADD = $(NETLIBS) | 116 | check_by_ssh_LDADD = $(NETLIBS) |
117 | check_ide_smart_LDADD = $(BASEOBJS) | 117 | check_ide_smart_LDADD = $(BASEOBJS) |
118 | negate_LDADD = $(BASEOBJS) | 118 | negate_LDADD = $(BASEOBJS) |
diff --git a/plugins/check_curl.c b/plugins/check_curl.c index c37d45d..d0871c4 100644 --- a/plugins/check_curl.c +++ b/plugins/check_curl.c | |||
@@ -55,6 +55,7 @@ const char *email = "devel@monitoring-plugins.org"; | |||
55 | #include "uriparser/Uri.h" | 55 | #include "uriparser/Uri.h" |
56 | 56 | ||
57 | #include <arpa/inet.h> | 57 | #include <arpa/inet.h> |
58 | #include <netinet/in.h> | ||
58 | 59 | ||
59 | #if defined(HAVE_SSL) && defined(USE_OPENSSL) | 60 | #if defined(HAVE_SSL) && defined(USE_OPENSSL) |
60 | #include <openssl/opensslv.h> | 61 | #include <openssl/opensslv.h> |
@@ -243,7 +244,7 @@ void curlhelp_freewritebuffer (curlhelp_write_curlbuf*); | |||
243 | int curlhelp_initreadbuffer (curlhelp_read_curlbuf *, const char *, size_t); | 244 | int curlhelp_initreadbuffer (curlhelp_read_curlbuf *, const char *, size_t); |
244 | int curlhelp_buffer_read_callback (void *, size_t , size_t , void *); | 245 | int curlhelp_buffer_read_callback (void *, size_t , size_t , void *); |
245 | void curlhelp_freereadbuffer (curlhelp_read_curlbuf *); | 246 | void curlhelp_freereadbuffer (curlhelp_read_curlbuf *); |
246 | curlhelp_ssl_library curlhelp_get_ssl_library (CURL*); | 247 | curlhelp_ssl_library curlhelp_get_ssl_library (); |
247 | const char* curlhelp_get_ssl_library_string (curlhelp_ssl_library); | 248 | const char* curlhelp_get_ssl_library_string (curlhelp_ssl_library); |
248 | int net_noopenssl_check_certificate (cert_ptr_union*, int, int); | 249 | int net_noopenssl_check_certificate (cert_ptr_union*, int, int); |
249 | 250 | ||
@@ -296,6 +297,7 @@ main (int argc, char **argv) | |||
296 | 297 | ||
297 | int verify_callback(int preverify_ok, X509_STORE_CTX *x509_ctx) | 298 | int verify_callback(int preverify_ok, X509_STORE_CTX *x509_ctx) |
298 | { | 299 | { |
300 | (void) preverify_ok; | ||
299 | /* TODO: we get all certificates of the chain, so which ones | 301 | /* TODO: we get all certificates of the chain, so which ones |
300 | * should we test? | 302 | * should we test? |
301 | * TODO: is the last certificate always the server certificate? | 303 | * TODO: is the last certificate always the server certificate? |
@@ -320,6 +322,8 @@ int verify_callback(int preverify_ok, X509_STORE_CTX *x509_ctx) | |||
320 | 322 | ||
321 | CURLcode sslctxfun(CURL *curl, SSL_CTX *sslctx, void *parm) | 323 | CURLcode sslctxfun(CURL *curl, SSL_CTX *sslctx, void *parm) |
322 | { | 324 | { |
325 | (void) curl; // ignore unused parameter | ||
326 | (void) parm; // ignore unused parameter | ||
323 | SSL_CTX_set_verify(sslctx, SSL_VERIFY_PEER, verify_callback); | 327 | SSL_CTX_set_verify(sslctx, SSL_VERIFY_PEER, verify_callback); |
324 | 328 | ||
325 | return CURLE_OK; | 329 | return CURLE_OK; |
@@ -374,8 +378,12 @@ void | |||
374 | handle_curl_option_return_code (CURLcode res, const char* option) | 378 | handle_curl_option_return_code (CURLcode res, const char* option) |
375 | { | 379 | { |
376 | if (res != CURLE_OK) { | 380 | if (res != CURLE_OK) { |
377 | snprintf (msg, DEFAULT_BUFFER_SIZE, _("Error while setting cURL option '%s': cURL returned %d - %s"), | 381 | snprintf (msg, |
378 | option, res, curl_easy_strerror(res)); | 382 | DEFAULT_BUFFER_SIZE, |
383 | _("Error while setting cURL option '%s': cURL returned %d - %s"), | ||
384 | option, | ||
385 | res, | ||
386 | curl_easy_strerror(res)); | ||
379 | die (STATE_CRITICAL, "HTTP CRITICAL - %s\n", msg); | 387 | die (STATE_CRITICAL, "HTTP CRITICAL - %s\n", msg); |
380 | } | 388 | } |
381 | } | 389 | } |
@@ -384,8 +392,11 @@ int | |||
384 | lookup_host (const char *host, char *buf, size_t buflen) | 392 | lookup_host (const char *host, char *buf, size_t buflen) |
385 | { | 393 | { |
386 | struct addrinfo hints, *res, *result; | 394 | struct addrinfo hints, *res, *result; |
395 | char addrstr[100]; | ||
396 | size_t addrstr_len; | ||
387 | int errcode; | 397 | int errcode; |
388 | void *ptr; | 398 | void *ptr; |
399 | size_t buflen_remaining = buflen - 1; | ||
389 | 400 | ||
390 | memset (&hints, 0, sizeof (hints)); | 401 | memset (&hints, 0, sizeof (hints)); |
391 | hints.ai_family = address_family; | 402 | hints.ai_family = address_family; |
@@ -395,26 +406,40 @@ lookup_host (const char *host, char *buf, size_t buflen) | |||
395 | errcode = getaddrinfo (host, NULL, &hints, &result); | 406 | errcode = getaddrinfo (host, NULL, &hints, &result); |
396 | if (errcode != 0) | 407 | if (errcode != 0) |
397 | return errcode; | 408 | return errcode; |
398 | 409 | ||
410 | strcpy(buf, ""); | ||
399 | res = result; | 411 | res = result; |
400 | 412 | ||
401 | while (res) { | 413 | while (res) { |
402 | inet_ntop (res->ai_family, res->ai_addr->sa_data, buf, buflen); | 414 | switch (res->ai_family) { |
403 | switch (res->ai_family) { | 415 | case AF_INET: |
404 | case AF_INET: | 416 | ptr = &((struct sockaddr_in *) res->ai_addr)->sin_addr; |
405 | ptr = &((struct sockaddr_in *) res->ai_addr)->sin_addr; | 417 | break; |
406 | break; | 418 | case AF_INET6: |
407 | case AF_INET6: | 419 | ptr = &((struct sockaddr_in6 *) res->ai_addr)->sin6_addr; |
408 | ptr = &((struct sockaddr_in6 *) res->ai_addr)->sin6_addr; | 420 | break; |
409 | break; | ||
410 | } | 421 | } |
411 | inet_ntop (res->ai_family, ptr, buf, buflen); | 422 | |
412 | if (verbose >= 1) | 423 | inet_ntop (res->ai_family, ptr, addrstr, 100); |
424 | if (verbose >= 1) { | ||
413 | printf ("* getaddrinfo IPv%d address: %s\n", | 425 | printf ("* getaddrinfo IPv%d address: %s\n", |
414 | res->ai_family == PF_INET6 ? 6 : 4, buf); | 426 | res->ai_family == PF_INET6 ? 6 : 4, addrstr); |
427 | } | ||
428 | |||
429 | // Append all IPs to buf as a comma-separated string | ||
430 | addrstr_len = strlen(addrstr); | ||
431 | if (buflen_remaining > addrstr_len + 1) { | ||
432 | if (buf[0] != '\0') { | ||
433 | strncat(buf, ",", buflen_remaining); | ||
434 | buflen_remaining -= 1; | ||
435 | } | ||
436 | strncat(buf, addrstr, buflen_remaining); | ||
437 | buflen_remaining -= addrstr_len; | ||
438 | } | ||
439 | |||
415 | res = res->ai_next; | 440 | res = res->ai_next; |
416 | } | 441 | } |
417 | 442 | ||
418 | freeaddrinfo(result); | 443 | freeaddrinfo(result); |
419 | 444 | ||
420 | return 0; | 445 | return 0; |
@@ -445,7 +470,7 @@ check_http (void) | |||
445 | int i; | 470 | int i; |
446 | char *force_host_header = NULL; | 471 | char *force_host_header = NULL; |
447 | struct curl_slist *host = NULL; | 472 | struct curl_slist *host = NULL; |
448 | char addrstr[100]; | 473 | char addrstr[DEFAULT_BUFFER_SIZE/2]; |
449 | char dnscache[DEFAULT_BUFFER_SIZE]; | 474 | char dnscache[DEFAULT_BUFFER_SIZE]; |
450 | 475 | ||
451 | /* initialize curl */ | 476 | /* initialize curl */ |
@@ -497,10 +522,14 @@ check_http (void) | |||
497 | 522 | ||
498 | // fill dns resolve cache to make curl connect to the given server_address instead of the host_name, only required for ssl, because we use the host_name later on to make SNI happy | 523 | // fill dns resolve cache to make curl connect to the given server_address instead of the host_name, only required for ssl, because we use the host_name later on to make SNI happy |
499 | if(use_ssl && host_name != NULL) { | 524 | if(use_ssl && host_name != NULL) { |
500 | if ( (res=lookup_host (server_address, addrstr, 100)) != 0) { | 525 | if ( (res=lookup_host (server_address, addrstr, DEFAULT_BUFFER_SIZE/2)) != 0) { |
501 | snprintf (msg, DEFAULT_BUFFER_SIZE, _("Unable to lookup IP address for '%s': getaddrinfo returned %d - %s"), | 526 | snprintf (msg, |
502 | server_address, res, gai_strerror (res)); | 527 | DEFAULT_BUFFER_SIZE, |
503 | die (STATE_CRITICAL, "HTTP CRITICAL - %s\n", msg); | 528 | _("Unable to lookup IP address for '%s': getaddrinfo returned %d - %s"), |
529 | server_address, | ||
530 | res, | ||
531 | gai_strerror (res)); | ||
532 | die (STATE_CRITICAL, "HTTP CRITICAL - %s\n", msg); | ||
504 | } | 533 | } |
505 | snprintf (dnscache, DEFAULT_BUFFER_SIZE, "%s:%d:%s", host_name, server_port, addrstr); | 534 | snprintf (dnscache, DEFAULT_BUFFER_SIZE, "%s:%d:%s", host_name, server_port, addrstr); |
506 | host = curl_slist_append(NULL, dnscache); | 535 | host = curl_slist_append(NULL, dnscache); |
@@ -524,7 +553,7 @@ check_http (void) | |||
524 | /* compose URL: use the address we want to connect to, set Host: header later */ | 553 | /* compose URL: use the address we want to connect to, set Host: header later */ |
525 | snprintf (url, DEFAULT_BUFFER_SIZE, "%s://%s:%d%s", | 554 | snprintf (url, DEFAULT_BUFFER_SIZE, "%s://%s:%d%s", |
526 | use_ssl ? "https" : "http", | 555 | use_ssl ? "https" : "http", |
527 | use_ssl & host_name != NULL ? host_name : server_address, | 556 | ( use_ssl & ( host_name != NULL ) ) ? host_name : server_address, |
528 | server_port, | 557 | server_port, |
529 | server_url | 558 | server_url |
530 | ); | 559 | ); |
@@ -600,7 +629,7 @@ check_http (void) | |||
600 | 629 | ||
601 | #ifdef LIBCURL_FEATURE_SSL | 630 | #ifdef LIBCURL_FEATURE_SSL |
602 | 631 | ||
603 | /* set SSL version, warn about unsecure or unsupported versions */ | 632 | /* set SSL version, warn about insecure or unsupported versions */ |
604 | if (use_ssl) { | 633 | if (use_ssl) { |
605 | handle_curl_option_return_code (curl_easy_setopt (curl, CURLOPT_SSLVERSION, ssl_version), "CURLOPT_SSLVERSION"); | 634 | handle_curl_option_return_code (curl_easy_setopt (curl, CURLOPT_SSLVERSION, ssl_version), "CURLOPT_SSLVERSION"); |
606 | } | 635 | } |
@@ -628,7 +657,7 @@ check_http (void) | |||
628 | } | 657 | } |
629 | 658 | ||
630 | /* detect SSL library used by libcurl */ | 659 | /* detect SSL library used by libcurl */ |
631 | ssl_library = curlhelp_get_ssl_library (curl); | 660 | ssl_library = curlhelp_get_ssl_library (); |
632 | 661 | ||
633 | /* try hard to get a stack of certificates to verify against */ | 662 | /* try hard to get a stack of certificates to verify against */ |
634 | if (check_cert) { | 663 | if (check_cert) { |
@@ -792,12 +821,19 @@ check_http (void) | |||
792 | /* free header and server IP resolve lists, we don't need it anymore */ | 821 | /* free header and server IP resolve lists, we don't need it anymore */ |
793 | curl_slist_free_all (header_list); header_list = NULL; | 822 | curl_slist_free_all (header_list); header_list = NULL; |
794 | curl_slist_free_all (server_ips); server_ips = NULL; | 823 | curl_slist_free_all (server_ips); server_ips = NULL; |
824 | if (host) { | ||
825 | curl_slist_free_all (host); host = NULL; | ||
826 | } | ||
795 | 827 | ||
796 | /* Curl errors, result in critical Nagios state */ | 828 | /* Curl errors, result in critical Nagios state */ |
797 | if (res != CURLE_OK) { | 829 | if (res != CURLE_OK) { |
798 | snprintf (msg, DEFAULT_BUFFER_SIZE, _("Invalid HTTP response received from host on port %d: cURL returned %d - %s"), | 830 | snprintf (msg, |
799 | server_port, res, errbuf[0] ? errbuf : curl_easy_strerror(res)); | 831 | DEFAULT_BUFFER_SIZE, |
800 | die (STATE_CRITICAL, "HTTP CRITICAL - %s\n", msg); | 832 | _("Invalid HTTP response received from host on port %d: cURL returned %d - %s"), |
833 | server_port, | ||
834 | res, | ||
835 | errbuf[0] ? errbuf : curl_easy_strerror(res)); | ||
836 | die (STATE_CRITICAL, "HTTP CRITICAL - %s\n", msg); | ||
801 | } | 837 | } |
802 | 838 | ||
803 | /* certificate checks */ | 839 | /* certificate checks */ |
@@ -840,15 +876,19 @@ check_http (void) | |||
840 | } | 876 | } |
841 | GOT_FIRST_CERT: | 877 | GOT_FIRST_CERT: |
842 | if (!raw_cert) { | 878 | if (!raw_cert) { |
843 | snprintf (msg, DEFAULT_BUFFER_SIZE, _("Cannot retrieve certificates from CERTINFO information - certificate data was empty")); | 879 | snprintf (msg, |
844 | die (STATE_CRITICAL, "HTTP CRITICAL - %s\n", msg); | 880 | DEFAULT_BUFFER_SIZE, |
881 | _("Cannot retrieve certificates from CERTINFO information - certificate data was empty")); | ||
882 | die (STATE_CRITICAL, "HTTP CRITICAL - %s\n", msg); | ||
845 | } | 883 | } |
846 | BIO* cert_BIO = BIO_new (BIO_s_mem()); | 884 | BIO* cert_BIO = BIO_new (BIO_s_mem()); |
847 | BIO_write (cert_BIO, raw_cert, strlen(raw_cert)); | 885 | BIO_write (cert_BIO, raw_cert, strlen(raw_cert)); |
848 | cert = PEM_read_bio_X509 (cert_BIO, NULL, NULL, NULL); | 886 | cert = PEM_read_bio_X509 (cert_BIO, NULL, NULL, NULL); |
849 | if (!cert) { | 887 | if (!cert) { |
850 | snprintf (msg, DEFAULT_BUFFER_SIZE, _("Cannot read certificate from CERTINFO information - BIO error")); | 888 | snprintf (msg, |
851 | die (STATE_CRITICAL, "HTTP CRITICAL - %s\n", msg); | 889 | DEFAULT_BUFFER_SIZE, |
890 | _("Cannot read certificate from CERTINFO information - BIO error")); | ||
891 | die (STATE_CRITICAL, "HTTP CRITICAL - %s\n", msg); | ||
852 | } | 892 | } |
853 | BIO_free (cert_BIO); | 893 | BIO_free (cert_BIO); |
854 | result = np_net_ssl_check_certificate(cert, days_till_exp_warn, days_till_exp_crit); | 894 | result = np_net_ssl_check_certificate(cert, days_till_exp_warn, days_till_exp_crit); |
@@ -865,9 +905,12 @@ GOT_FIRST_CERT: | |||
865 | } | 905 | } |
866 | #endif /* USE_OPENSSL */ | 906 | #endif /* USE_OPENSSL */ |
867 | } else { | 907 | } else { |
868 | snprintf (msg, DEFAULT_BUFFER_SIZE, _("Cannot retrieve certificates - cURL returned %d - %s"), | 908 | snprintf (msg, |
869 | res, curl_easy_strerror(res)); | 909 | DEFAULT_BUFFER_SIZE, |
870 | die (STATE_CRITICAL, "HTTP CRITICAL - %s\n", msg); | 910 | _("Cannot retrieve certificates - cURL returned %d - %s"), |
911 | res, | ||
912 | curl_easy_strerror(res)); | ||
913 | die (STATE_CRITICAL, "HTTP CRITICAL - %s\n", msg); | ||
871 | } | 914 | } |
872 | } | 915 | } |
873 | } | 916 | } |
@@ -906,8 +949,11 @@ GOT_FIRST_CERT: | |||
906 | 949 | ||
907 | /* get status line of answer, check sanity of HTTP code */ | 950 | /* get status line of answer, check sanity of HTTP code */ |
908 | if (curlhelp_parse_statusline (header_buf.buf, &status_line) < 0) { | 951 | if (curlhelp_parse_statusline (header_buf.buf, &status_line) < 0) { |
909 | snprintf (msg, DEFAULT_BUFFER_SIZE, "Unparsable status line in %.3g seconds response time|%s\n", | 952 | snprintf (msg, |
910 | total_time, perfstring); | 953 | DEFAULT_BUFFER_SIZE, |
954 | "Unparsable status line in %.3g seconds response time|%s\n", | ||
955 | total_time, | ||
956 | perfstring); | ||
911 | /* we cannot know the major/minor version here for sure as we cannot parse the first line */ | 957 | /* we cannot know the major/minor version here for sure as we cannot parse the first line */ |
912 | die (STATE_CRITICAL, "HTTP CRITICAL HTTP/x.x %ld unknown - %s", code, msg); | 958 | die (STATE_CRITICAL, "HTTP CRITICAL HTTP/x.x %ld unknown - %s", code, msg); |
913 | } | 959 | } |
@@ -927,9 +973,16 @@ GOT_FIRST_CERT: | |||
927 | /* make sure the status line matches the response we are looking for */ | 973 | /* make sure the status line matches the response we are looking for */ |
928 | if (!expected_statuscode(status_line.first_line, server_expect)) { | 974 | if (!expected_statuscode(status_line.first_line, server_expect)) { |
929 | if (server_port == HTTP_PORT) | 975 | if (server_port == HTTP_PORT) |
930 | snprintf(msg, DEFAULT_BUFFER_SIZE, _("Invalid HTTP response received from host: %s\n"), status_line.first_line); | 976 | snprintf(msg, |
977 | DEFAULT_BUFFER_SIZE, | ||
978 | _("Invalid HTTP response received from host: %s\n"), | ||
979 | status_line.first_line); | ||
931 | else | 980 | else |
932 | snprintf(msg, DEFAULT_BUFFER_SIZE, _("Invalid HTTP response received from host on port %d: %s\n"), server_port, status_line.first_line); | 981 | snprintf(msg, |
982 | DEFAULT_BUFFER_SIZE, | ||
983 | _("Invalid HTTP response received from host on port %d: %s\n"), | ||
984 | server_port, | ||
985 | status_line.first_line); | ||
933 | die (STATE_CRITICAL, "HTTP CRITICAL - %s%s%s", msg, | 986 | die (STATE_CRITICAL, "HTTP CRITICAL - %s%s%s", msg, |
934 | show_body ? "\n" : "", | 987 | show_body ? "\n" : "", |
935 | show_body ? body_buf.buf : ""); | 988 | show_body ? body_buf.buf : ""); |
@@ -965,7 +1018,7 @@ GOT_FIRST_CERT: | |||
965 | } | 1018 | } |
966 | } else { | 1019 | } else { |
967 | /* this is a specific code in the command line to | 1020 | /* this is a specific code in the command line to |
968 | * be returned when a redirection is encoutered | 1021 | * be returned when a redirection is encountered |
969 | */ | 1022 | */ |
970 | } | 1023 | } |
971 | result = max_state_alt (onredirect, result); | 1024 | result = max_state_alt (onredirect, result); |
@@ -1002,23 +1055,55 @@ GOT_FIRST_CERT: | |||
1002 | 1055 | ||
1003 | if (strlen (header_expect)) { | 1056 | if (strlen (header_expect)) { |
1004 | if (!strstr (header_buf.buf, header_expect)) { | 1057 | if (!strstr (header_buf.buf, header_expect)) { |
1058 | |||
1005 | strncpy(&output_header_search[0],header_expect,sizeof(output_header_search)); | 1059 | strncpy(&output_header_search[0],header_expect,sizeof(output_header_search)); |
1060 | |||
1006 | if(output_header_search[sizeof(output_header_search)-1]!='\0') { | 1061 | if(output_header_search[sizeof(output_header_search)-1]!='\0') { |
1007 | bcopy("...",&output_header_search[sizeof(output_header_search)-4],4); | 1062 | bcopy("...",&output_header_search[sizeof(output_header_search)-4],4); |
1008 | } | 1063 | } |
1009 | snprintf (msg, DEFAULT_BUFFER_SIZE, _("%sheader '%s' not found on '%s://%s:%d%s', "), msg, output_header_search, use_ssl ? "https" : "http", host_name ? host_name : server_address, server_port, server_url); | 1064 | |
1010 | result = STATE_CRITICAL; | 1065 | char tmp[DEFAULT_BUFFER_SIZE]; |
1066 | |||
1067 | snprintf (tmp, | ||
1068 | DEFAULT_BUFFER_SIZE, | ||
1069 | _("%sheader '%s' not found on '%s://%s:%d%s', "), | ||
1070 | msg, | ||
1071 | output_header_search, | ||
1072 | use_ssl ? "https" : "http", | ||
1073 | host_name ? host_name : server_address, | ||
1074 | server_port, | ||
1075 | server_url); | ||
1076 | |||
1077 | strcpy(msg, tmp); | ||
1078 | |||
1079 | result = STATE_CRITICAL; | ||
1011 | } | 1080 | } |
1012 | } | 1081 | } |
1013 | 1082 | ||
1014 | if (strlen (string_expect)) { | 1083 | if (strlen (string_expect)) { |
1015 | if (!strstr (body_buf.buf, string_expect)) { | 1084 | if (!strstr (body_buf.buf, string_expect)) { |
1085 | |||
1016 | strncpy(&output_string_search[0],string_expect,sizeof(output_string_search)); | 1086 | strncpy(&output_string_search[0],string_expect,sizeof(output_string_search)); |
1087 | |||
1017 | if(output_string_search[sizeof(output_string_search)-1]!='\0') { | 1088 | if(output_string_search[sizeof(output_string_search)-1]!='\0') { |
1018 | bcopy("...",&output_string_search[sizeof(output_string_search)-4],4); | 1089 | bcopy("...",&output_string_search[sizeof(output_string_search)-4],4); |
1019 | } | 1090 | } |
1020 | snprintf (msg, DEFAULT_BUFFER_SIZE, _("%sstring '%s' not found on '%s://%s:%d%s', "), msg, output_string_search, use_ssl ? "https" : "http", host_name ? host_name : server_address, server_port, server_url); | 1091 | |
1021 | result = STATE_CRITICAL; | 1092 | char tmp[DEFAULT_BUFFER_SIZE]; |
1093 | |||
1094 | snprintf (tmp, | ||
1095 | DEFAULT_BUFFER_SIZE, | ||
1096 | _("%sstring '%s' not found on '%s://%s:%d%s', "), | ||
1097 | msg, | ||
1098 | output_string_search, | ||
1099 | use_ssl ? "https" : "http", | ||
1100 | host_name ? host_name : server_address, | ||
1101 | server_port, | ||
1102 | server_url); | ||
1103 | |||
1104 | strcpy(msg, tmp); | ||
1105 | |||
1106 | result = STATE_CRITICAL; | ||
1022 | } | 1107 | } |
1023 | } | 1108 | } |
1024 | 1109 | ||
@@ -1029,27 +1114,48 @@ GOT_FIRST_CERT: | |||
1029 | result = max_state_alt(STATE_OK, result); | 1114 | result = max_state_alt(STATE_OK, result); |
1030 | } | 1115 | } |
1031 | else if ((errcode == REG_NOMATCH && !invert_regex) || (errcode == 0 && invert_regex)) { | 1116 | else if ((errcode == REG_NOMATCH && !invert_regex) || (errcode == 0 && invert_regex)) { |
1032 | if (!invert_regex) | 1117 | if (!invert_regex) { |
1033 | snprintf (msg, DEFAULT_BUFFER_SIZE, _("%spattern not found, "), msg); | 1118 | char tmp[DEFAULT_BUFFER_SIZE]; |
1034 | else | 1119 | |
1035 | snprintf (msg, DEFAULT_BUFFER_SIZE, _("%spattern found, "), msg); | 1120 | snprintf (tmp, DEFAULT_BUFFER_SIZE, _("%spattern not found, "), msg); |
1036 | result = STATE_CRITICAL; | 1121 | strcpy(msg, tmp); |
1037 | } | 1122 | |
1038 | else { | 1123 | } else { |
1039 | regerror (errcode, &preg, errbuf, MAX_INPUT_BUFFER); | 1124 | char tmp[DEFAULT_BUFFER_SIZE]; |
1040 | snprintf (msg, DEFAULT_BUFFER_SIZE, _("%sExecute Error: %s, "), msg, errbuf); | 1125 | |
1041 | result = STATE_UNKNOWN; | 1126 | snprintf (tmp, DEFAULT_BUFFER_SIZE, _("%spattern found, "), msg); |
1042 | } | 1127 | strcpy(msg, tmp); |
1128 | |||
1129 | } | ||
1130 | result = STATE_CRITICAL; | ||
1131 | } else { | ||
1132 | regerror (errcode, &preg, errbuf, MAX_INPUT_BUFFER); | ||
1133 | |||
1134 | char tmp[DEFAULT_BUFFER_SIZE]; | ||
1135 | |||
1136 | snprintf (tmp, DEFAULT_BUFFER_SIZE, _("%sExecute Error: %s, "), msg, errbuf); | ||
1137 | strcpy(msg, tmp); | ||
1138 | result = STATE_UNKNOWN; | ||
1139 | } | ||
1043 | } | 1140 | } |
1044 | 1141 | ||
1045 | /* make sure the page is of an appropriate size */ | 1142 | /* make sure the page is of an appropriate size */ |
1046 | if ((max_page_len > 0) && (page_len > max_page_len)) { | 1143 | if ((max_page_len > 0) && (page_len > max_page_len)) { |
1047 | snprintf (msg, DEFAULT_BUFFER_SIZE, _("%spage size %d too large, "), msg, page_len); | 1144 | char tmp[DEFAULT_BUFFER_SIZE]; |
1048 | result = max_state_alt(STATE_WARNING, result); | 1145 | |
1049 | } else if ((min_page_len > 0) && (page_len < min_page_len)) { | 1146 | snprintf (tmp, DEFAULT_BUFFER_SIZE, _("%spage size %d too large, "), msg, page_len); |
1050 | snprintf (msg, DEFAULT_BUFFER_SIZE, _("%spage size %d too small, "), msg, page_len); | 1147 | |
1051 | result = max_state_alt(STATE_WARNING, result); | 1148 | strcpy(msg, tmp); |
1052 | } | 1149 | |
1150 | result = max_state_alt(STATE_WARNING, result); | ||
1151 | |||
1152 | } else if ((min_page_len > 0) && (page_len < min_page_len)) { | ||
1153 | char tmp[DEFAULT_BUFFER_SIZE]; | ||
1154 | |||
1155 | snprintf (tmp, DEFAULT_BUFFER_SIZE, _("%spage size %d too small, "), msg, page_len); | ||
1156 | strcpy(msg, tmp); | ||
1157 | result = max_state_alt(STATE_WARNING, result); | ||
1158 | } | ||
1053 | 1159 | ||
1054 | /* -w, -c: check warning and critical level */ | 1160 | /* -w, -c: check warning and critical level */ |
1055 | result = max_state_alt(get_status(total_time, thlds), result); | 1161 | result = max_state_alt(get_status(total_time, thlds), result); |
@@ -1633,6 +1739,7 @@ process_arguments (int argc, char **argv) | |||
1633 | break; | 1739 | break; |
1634 | case 'R': /* regex */ | 1740 | case 'R': /* regex */ |
1635 | cflags |= REG_ICASE; | 1741 | cflags |= REG_ICASE; |
1742 | // fall through | ||
1636 | case 'r': /* regex */ | 1743 | case 'r': /* regex */ |
1637 | strncpy (regexp, optarg, MAX_RE_SIZE - 1); | 1744 | strncpy (regexp, optarg, MAX_RE_SIZE - 1); |
1638 | regexp[MAX_RE_SIZE - 1] = 0; | 1745 | regexp[MAX_RE_SIZE - 1] = 0; |
@@ -2030,7 +2137,7 @@ print_usage (void) | |||
2030 | printf (" %s -H <vhost> | -I <IP-address> [-u <uri>] [-p <port>]\n",progname); | 2137 | printf (" %s -H <vhost> | -I <IP-address> [-u <uri>] [-p <port>]\n",progname); |
2031 | printf (" [-J <client certificate file>] [-K <private key>] [--ca-cert <CA certificate file>] [-D]\n"); | 2138 | printf (" [-J <client certificate file>] [-K <private key>] [--ca-cert <CA certificate file>] [-D]\n"); |
2032 | printf (" [-w <warn time>] [-c <critical time>] [-t <timeout>] [-L] [-E] [-a auth]\n"); | 2139 | printf (" [-w <warn time>] [-c <critical time>] [-t <timeout>] [-L] [-E] [-a auth]\n"); |
2033 | printf (" [-b proxy_auth] [-f <ok|warning|critcal|follow|sticky|stickyport|curl>]\n"); | 2140 | printf (" [-b proxy_auth] [-f <ok|warning|critical|follow|sticky|stickyport|curl>]\n"); |
2034 | printf (" [-e <expect>] [-d string] [-s string] [-l] [-r <regex> | -R <case-insensitive regex>]\n"); | 2141 | printf (" [-e <expect>] [-d string] [-s string] [-l] [-r <regex> | -R <case-insensitive regex>]\n"); |
2035 | printf (" [-P string] [-m <min_pg_size>:<max_pg_size>] [-4|-6] [-N] [-M <age>]\n"); | 2142 | printf (" [-P string] [-m <min_pg_size>:<max_pg_size>] [-4|-6] [-N] [-M <age>]\n"); |
2036 | printf (" [-A string] [-k string] [-S <version>] [--sni]\n"); | 2143 | printf (" [-A string] [-k string] [-S <version>] [--sni]\n"); |
@@ -2196,11 +2303,10 @@ curlhelp_parse_statusline (const char *buf, curlhelp_statusline *status_line) | |||
2196 | if( strchr( p, '.' ) != NULL ) { | 2303 | if( strchr( p, '.' ) != NULL ) { |
2197 | 2304 | ||
2198 | /* HTTP 1.x case */ | 2305 | /* HTTP 1.x case */ |
2199 | char *ppp; | 2306 | strtok( p, "." ); |
2200 | ppp = strtok( p, "." ); | ||
2201 | status_line->http_major = (int)strtol( p, &pp, 10 ); | 2307 | status_line->http_major = (int)strtol( p, &pp, 10 ); |
2202 | if( *pp != '\0' ) { free( first_line_buf ); return -1; } | 2308 | if( *pp != '\0' ) { free( first_line_buf ); return -1; } |
2203 | ppp = strtok( NULL, " " ); | 2309 | strtok( NULL, " " ); |
2204 | status_line->http_minor = (int)strtol( p, &pp, 10 ); | 2310 | status_line->http_minor = (int)strtol( p, &pp, 10 ); |
2205 | if( *pp != '\0' ) { free( first_line_buf ); return -1; } | 2311 | if( *pp != '\0' ) { free( first_line_buf ); return -1; } |
2206 | p += 4; /* 1.x SP */ | 2312 | p += 4; /* 1.x SP */ |
@@ -2287,37 +2393,67 @@ check_document_dates (const curlhelp_write_curlbuf *header_buf, char (*msg)[DEFA | |||
2287 | server_date = get_header_value (headers, nof_headers, "date"); | 2393 | server_date = get_header_value (headers, nof_headers, "date"); |
2288 | document_date = get_header_value (headers, nof_headers, "last-modified"); | 2394 | document_date = get_header_value (headers, nof_headers, "last-modified"); |
2289 | 2395 | ||
2290 | if (!server_date || !*server_date) { | 2396 | if (!server_date || !*server_date) { |
2291 | snprintf (*msg, DEFAULT_BUFFER_SIZE, _("%sServer date unknown, "), *msg); | 2397 | char tmp[DEFAULT_BUFFER_SIZE]; |
2292 | date_result = max_state_alt(STATE_UNKNOWN, date_result); | 2398 | |
2293 | } else if (!document_date || !*document_date) { | 2399 | snprintf (tmp, DEFAULT_BUFFER_SIZE, _("%sServer date unknown, "), *msg); |
2294 | snprintf (*msg, DEFAULT_BUFFER_SIZE, _("%sDocument modification date unknown, "), *msg); | 2400 | strcpy(*msg, tmp); |
2295 | date_result = max_state_alt(STATE_CRITICAL, date_result); | 2401 | |
2402 | date_result = max_state_alt(STATE_UNKNOWN, date_result); | ||
2403 | |||
2404 | } else if (!document_date || !*document_date) { | ||
2405 | char tmp[DEFAULT_BUFFER_SIZE]; | ||
2406 | |||
2407 | snprintf (tmp, DEFAULT_BUFFER_SIZE, _("%sDocument modification date unknown, "), *msg); | ||
2408 | strcpy(*msg, tmp); | ||
2409 | |||
2410 | date_result = max_state_alt(STATE_CRITICAL, date_result); | ||
2411 | |||
2296 | } else { | 2412 | } else { |
2297 | time_t srv_data = curl_getdate (server_date, NULL); | 2413 | time_t srv_data = curl_getdate (server_date, NULL); |
2298 | time_t doc_data = curl_getdate (document_date, NULL); | 2414 | time_t doc_data = curl_getdate (document_date, NULL); |
2299 | if (verbose >= 2) | 2415 | if (verbose >= 2) |
2300 | printf ("* server date: '%s' (%d), doc_date: '%s' (%d)\n", server_date, (int)srv_data, document_date, (int)doc_data); | 2416 | printf ("* server date: '%s' (%d), doc_date: '%s' (%d)\n", server_date, (int)srv_data, document_date, (int)doc_data); |
2301 | if (srv_data <= 0) { | 2417 | if (srv_data <= 0) { |
2302 | snprintf (*msg, DEFAULT_BUFFER_SIZE, _("%sServer date \"%100s\" unparsable, "), *msg, server_date); | 2418 | char tmp[DEFAULT_BUFFER_SIZE]; |
2303 | date_result = max_state_alt(STATE_CRITICAL, date_result); | 2419 | |
2304 | } else if (doc_data <= 0) { | 2420 | snprintf (tmp, DEFAULT_BUFFER_SIZE, _("%sServer date \"%100s\" unparsable, "), *msg, server_date); |
2305 | snprintf (*msg, DEFAULT_BUFFER_SIZE, _("%sDocument date \"%100s\" unparsable, "), *msg, document_date); | 2421 | strcpy(*msg, tmp); |
2306 | date_result = max_state_alt(STATE_CRITICAL, date_result); | 2422 | |
2307 | } else if (doc_data > srv_data + 30) { | 2423 | date_result = max_state_alt(STATE_CRITICAL, date_result); |
2308 | snprintf (*msg, DEFAULT_BUFFER_SIZE, _("%sDocument is %d seconds in the future, "), *msg, (int)doc_data - (int)srv_data); | 2424 | } else if (doc_data <= 0) { |
2309 | date_result = max_state_alt(STATE_CRITICAL, date_result); | 2425 | char tmp[DEFAULT_BUFFER_SIZE]; |
2310 | } else if (doc_data < srv_data - maximum_age) { | 2426 | |
2311 | int n = (srv_data - doc_data); | 2427 | snprintf (tmp, DEFAULT_BUFFER_SIZE, _("%sDocument date \"%100s\" unparsable, "), *msg, document_date); |
2312 | if (n > (60 * 60 * 24 * 2)) { | 2428 | strcpy(*msg, tmp); |
2313 | snprintf (*msg, DEFAULT_BUFFER_SIZE, _("%sLast modified %.1f days ago, "), *msg, ((float) n) / (60 * 60 * 24)); | 2429 | |
2314 | date_result = max_state_alt(STATE_CRITICAL, date_result); | 2430 | date_result = max_state_alt(STATE_CRITICAL, date_result); |
2315 | } else { | 2431 | } else if (doc_data > srv_data + 30) { |
2316 | snprintf (*msg, DEFAULT_BUFFER_SIZE, _("%sLast modified %d:%02d:%02d ago, "), *msg, n / (60 * 60), (n / 60) % 60, n % 60); | 2432 | char tmp[DEFAULT_BUFFER_SIZE]; |
2317 | date_result = max_state_alt(STATE_CRITICAL, date_result); | 2433 | |
2318 | } | 2434 | snprintf (tmp, DEFAULT_BUFFER_SIZE, _("%sDocument is %d seconds in the future, "), *msg, (int)doc_data - (int)srv_data); |
2319 | } | 2435 | strcpy(*msg, tmp); |
2320 | } | 2436 | |
2437 | date_result = max_state_alt(STATE_CRITICAL, date_result); | ||
2438 | } else if (doc_data < srv_data - maximum_age) { | ||
2439 | int n = (srv_data - doc_data); | ||
2440 | if (n > (60 * 60 * 24 * 2)) { | ||
2441 | char tmp[DEFAULT_BUFFER_SIZE]; | ||
2442 | |||
2443 | snprintf (tmp, DEFAULT_BUFFER_SIZE, _("%sLast modified %.1f days ago, "), *msg, ((float) n) / (60 * 60 * 24)); | ||
2444 | strcpy(*msg, tmp); | ||
2445 | |||
2446 | date_result = max_state_alt(STATE_CRITICAL, date_result); | ||
2447 | } else { | ||
2448 | char tmp[DEFAULT_BUFFER_SIZE]; | ||
2449 | |||
2450 | snprintf (tmp, DEFAULT_BUFFER_SIZE, _("%sLast modified %d:%02d:%02d ago, "), *msg, n / (60 * 60), (n / 60) % 60, n % 60); | ||
2451 | strcpy(*msg, tmp); | ||
2452 | |||
2453 | date_result = max_state_alt(STATE_CRITICAL, date_result); | ||
2454 | } | ||
2455 | } | ||
2456 | } | ||
2321 | 2457 | ||
2322 | if (server_date) free (server_date); | 2458 | if (server_date) free (server_date); |
2323 | if (document_date) free (document_date); | 2459 | if (document_date) free (document_date); |
@@ -2359,7 +2495,7 @@ get_content_length (const curlhelp_write_curlbuf* header_buf, const curlhelp_wri | |||
2359 | 2495 | ||
2360 | /* TODO: is there a better way in libcurl to check for the SSL library? */ | 2496 | /* TODO: is there a better way in libcurl to check for the SSL library? */ |
2361 | curlhelp_ssl_library | 2497 | curlhelp_ssl_library |
2362 | curlhelp_get_ssl_library (CURL* curl) | 2498 | curlhelp_get_ssl_library () |
2363 | { | 2499 | { |
2364 | curl_version_info_data* version_data; | 2500 | curl_version_info_data* version_data; |
2365 | char *ssl_version; | 2501 | char *ssl_version; |
diff --git a/plugins/check_dbi.c b/plugins/check_dbi.c index ced13d0..c24ca24 100644 --- a/plugins/check_dbi.c +++ b/plugins/check_dbi.c | |||
@@ -141,21 +141,28 @@ main (int argc, char **argv) | |||
141 | if (verbose > 2) | 141 | if (verbose > 2) |
142 | printf ("Initializing DBI\n"); | 142 | printf ("Initializing DBI\n"); |
143 | 143 | ||
144 | if (dbi_initialize (NULL) < 0) { | 144 | dbi_inst *instance_p; |
145 | |||
146 | if (dbi_initialize_r(NULL, instance_p) < 0) { | ||
145 | printf ("UNKNOWN - failed to initialize DBI; possibly you don't have any drivers installed.\n"); | 147 | printf ("UNKNOWN - failed to initialize DBI; possibly you don't have any drivers installed.\n"); |
146 | return STATE_UNKNOWN; | 148 | return STATE_UNKNOWN; |
147 | } | 149 | } |
148 | 150 | ||
151 | if (instance_p == NULL) { | ||
152 | printf ("UNKNOWN - failed to initialize DBI.\n"); | ||
153 | return STATE_UNKNOWN; | ||
154 | } | ||
155 | |||
149 | if (verbose) | 156 | if (verbose) |
150 | printf ("Opening DBI driver '%s'\n", np_dbi_driver); | 157 | printf ("Opening DBI driver '%s'\n", np_dbi_driver); |
151 | 158 | ||
152 | driver = dbi_driver_open (np_dbi_driver); | 159 | driver = dbi_driver_open_r(np_dbi_driver, instance_p); |
153 | if (! driver) { | 160 | if (! driver) { |
154 | printf ("UNKNOWN - failed to open DBI driver '%s'; possibly it's not installed.\n", | 161 | printf ("UNKNOWN - failed to open DBI driver '%s'; possibly it's not installed.\n", |
155 | np_dbi_driver); | 162 | np_dbi_driver); |
156 | 163 | ||
157 | printf ("Known drivers:\n"); | 164 | printf ("Known drivers:\n"); |
158 | for (driver = dbi_driver_list (NULL); driver; driver = dbi_driver_list (driver)) { | 165 | for (driver = dbi_driver_list_r(NULL, instance_p); driver; driver = dbi_driver_list_r(driver, instance_p)) { |
159 | printf (" - %s\n", dbi_driver_get_name (driver)); | 166 | printf (" - %s\n", dbi_driver_get_name (driver)); |
160 | } | 167 | } |
161 | return STATE_UNKNOWN; | 168 | return STATE_UNKNOWN; |
@@ -426,6 +433,7 @@ process_arguments (int argc, char **argv) | |||
426 | else | 433 | else |
427 | timeout_interval = atoi (optarg); | 434 | timeout_interval = atoi (optarg); |
428 | 435 | ||
436 | break; | ||
429 | case 'H': /* host */ | 437 | case 'H': /* host */ |
430 | if (!is_host (optarg)) | 438 | if (!is_host (optarg)) |
431 | usage2 (_("Invalid hostname/address"), optarg); | 439 | usage2 (_("Invalid hostname/address"), optarg); |
diff --git a/plugins/check_disk.c b/plugins/check_disk.c index bd84c82..05e5502 100644 --- a/plugins/check_disk.c +++ b/plugins/check_disk.c | |||
@@ -131,9 +131,6 @@ bool stat_path (struct parameter_list *p); | |||
131 | void get_stats (struct parameter_list *p, struct fs_usage *fsp); | 131 | void get_stats (struct parameter_list *p, struct fs_usage *fsp); |
132 | void get_path_stats (struct parameter_list *p, struct fs_usage *fsp); | 132 | void get_path_stats (struct parameter_list *p, struct fs_usage *fsp); |
133 | 133 | ||
134 | double w_dfp = -1.0; | ||
135 | double c_dfp = -1.0; | ||
136 | char *path; | ||
137 | char *exclude_device; | 134 | char *exclude_device; |
138 | char *units; | 135 | char *units; |
139 | uintmax_t mult = 1024 * 1024; | 136 | uintmax_t mult = 1024 * 1024; |
@@ -587,7 +584,7 @@ process_arguments (int argc, char **argv) | |||
587 | 584 | ||
588 | /* Awful mistake where the range values do not make sense. Normally, | 585 | /* Awful mistake where the range values do not make sense. Normally, |
589 | you alert if the value is within the range, but since we are using | 586 | you alert if the value is within the range, but since we are using |
590 | freespace, we have to alert if outside the range. Thus we artifically | 587 | freespace, we have to alert if outside the range. Thus we artificially |
591 | force @ at the beginning of the range, so that it is backwards compatible | 588 | force @ at the beginning of the range, so that it is backwards compatible |
592 | */ | 589 | */ |
593 | case 'c': /* critical threshold */ | 590 | case 'c': /* critical threshold */ |
@@ -626,21 +623,36 @@ process_arguments (int argc, char **argv) | |||
626 | if (! strcasecmp (optarg, "bytes")) { | 623 | if (! strcasecmp (optarg, "bytes")) { |
627 | mult = (uintmax_t)1; | 624 | mult = (uintmax_t)1; |
628 | units = strdup ("B"); | 625 | units = strdup ("B"); |
629 | } else if ( (! strcmp (optarg, "kB")) || (!strcmp(optarg, "KiB")) ) { | 626 | } else if (!strcmp(optarg, "KiB")) { |
630 | mult = (uintmax_t)1024; | 627 | mult = (uintmax_t)1024; |
631 | units = strdup ("kiB"); | 628 | units = strdup ("KiB"); |
632 | } else if ( (! strcmp (optarg, "MB")) || (!strcmp(optarg, "MiB")) ) { | 629 | } else if (! strcmp (optarg, "kB")) { |
630 | mult = (uintmax_t)1000; | ||
631 | units = strdup ("kB"); | ||
632 | } else if (!strcmp(optarg, "MiB")) { | ||
633 | mult = (uintmax_t)1024 * 1024; | 633 | mult = (uintmax_t)1024 * 1024; |
634 | units = strdup ("MiB"); | 634 | units = strdup ("MiB"); |
635 | } else if ( (! strcmp (optarg, "GB")) || (!strcmp(optarg, "GiB")) ) { | 635 | } else if (! strcmp (optarg, "MB")) { |
636 | mult = (uintmax_t)1000 * 1000; | ||
637 | units = strdup ("MB"); | ||
638 | } else if (!strcmp(optarg, "GiB")) { | ||
636 | mult = (uintmax_t)1024 * 1024 * 1024; | 639 | mult = (uintmax_t)1024 * 1024 * 1024; |
637 | units = strdup ("GiB"); | 640 | units = strdup ("GiB"); |
638 | } else if ( (! strcmp (optarg, "TB")) || (!strcmp(optarg, "TiB")) ) { | 641 | } else if (! strcmp (optarg, "GB")){ |
642 | mult = (uintmax_t)1000 * 1000 * 1000; | ||
643 | units = strdup ("GB"); | ||
644 | } else if (!strcmp(optarg, "TiB")) { | ||
639 | mult = (uintmax_t)1024 * 1024 * 1024 * 1024; | 645 | mult = (uintmax_t)1024 * 1024 * 1024 * 1024; |
640 | units = strdup ("TiB"); | 646 | units = strdup ("TiB"); |
641 | } else if ( (! strcmp (optarg, "PB")) || (!strcmp(optarg, "PiB")) ) { | 647 | } else if (! strcmp (optarg, "TB")) { |
648 | mult = (uintmax_t)1000 * 1000 * 1000 * 1000; | ||
649 | units = strdup ("TB"); | ||
650 | } else if (!strcmp(optarg, "PiB")) { | ||
642 | mult = (uintmax_t)1024 * 1024 * 1024 * 1024 * 1024; | 651 | mult = (uintmax_t)1024 * 1024 * 1024 * 1024 * 1024; |
643 | units = strdup ("PiB"); | 652 | units = strdup ("PiB"); |
653 | } else if (! strcmp (optarg, "PB")){ | ||
654 | mult = (uintmax_t)1000 * 1000 * 1000 * 1000 * 1000; | ||
655 | units = strdup ("PB"); | ||
644 | } else { | 656 | } else { |
645 | die (STATE_UNKNOWN, _("unit type %s not known\n"), optarg); | 657 | die (STATE_UNKNOWN, _("unit type %s not known\n"), optarg); |
646 | } | 658 | } |
@@ -874,7 +886,7 @@ process_arguments (int argc, char **argv) | |||
874 | if (crit_usedspace_percent == NULL && argc > c && is_intnonneg (argv[c])) | 886 | if (crit_usedspace_percent == NULL && argc > c && is_intnonneg (argv[c])) |
875 | crit_usedspace_percent = argv[c++]; | 887 | crit_usedspace_percent = argv[c++]; |
876 | 888 | ||
877 | if (argc > c && path == NULL) { | 889 | if (argc > c) { |
878 | se = np_add_parameter(&path_select_list, strdup(argv[c++])); | 890 | se = np_add_parameter(&path_select_list, strdup(argv[c++])); |
879 | path_selected = TRUE; | 891 | path_selected = TRUE; |
880 | set_all_thresholds(se); | 892 | set_all_thresholds(se); |
@@ -1115,7 +1127,7 @@ get_path_stats (struct parameter_list *p, struct fs_usage *fsp) { | |||
1115 | p->available_to_root = fsp->fsu_bfree; | 1127 | p->available_to_root = fsp->fsu_bfree; |
1116 | p->used = fsp->fsu_blocks - fsp->fsu_bfree; | 1128 | p->used = fsp->fsu_blocks - fsp->fsu_bfree; |
1117 | if (freespace_ignore_reserved) { | 1129 | if (freespace_ignore_reserved) { |
1118 | /* option activated : we substract the root-reserved space from the total */ | 1130 | /* option activated : we subtract the root-reserved space from the total */ |
1119 | p->total = fsp->fsu_blocks - p->available_to_root + p->available; | 1131 | p->total = fsp->fsu_blocks - p->available_to_root + p->available; |
1120 | } else { | 1132 | } else { |
1121 | /* default behaviour : take all the blocks into account */ | 1133 | /* default behaviour : take all the blocks into account */ |
@@ -1130,7 +1142,7 @@ get_path_stats (struct parameter_list *p, struct fs_usage *fsp) { | |||
1130 | p->inodes_free_to_root = fsp->fsu_ffree; /* Free file nodes for root. */ | 1142 | p->inodes_free_to_root = fsp->fsu_ffree; /* Free file nodes for root. */ |
1131 | p->inodes_used = fsp->fsu_files - fsp->fsu_ffree; | 1143 | p->inodes_used = fsp->fsu_files - fsp->fsu_ffree; |
1132 | if (freespace_ignore_reserved) { | 1144 | if (freespace_ignore_reserved) { |
1133 | /* option activated : we substract the root-reserved inodes from the total */ | 1145 | /* option activated : we subtract the root-reserved inodes from the total */ |
1134 | /* not all OS report fsp->fsu_favail, only the ones with statvfs syscall */ | 1146 | /* not all OS report fsp->fsu_favail, only the ones with statvfs syscall */ |
1135 | /* for others, fsp->fsu_ffree == fsp->fsu_favail */ | 1147 | /* for others, fsp->fsu_ffree == fsp->fsu_favail */ |
1136 | p->inodes_total = fsp->fsu_files - p->inodes_free_to_root + p->inodes_free; | 1148 | p->inodes_total = fsp->fsu_files - p->inodes_free_to_root + p->inodes_free; |
diff --git a/plugins/check_dns.c b/plugins/check_dns.c index 9de6caf..7ffce98 100644 --- a/plugins/check_dns.c +++ b/plugins/check_dns.c | |||
@@ -75,7 +75,7 @@ main (int argc, char **argv) | |||
75 | { | 75 | { |
76 | char *command_line = NULL; | 76 | char *command_line = NULL; |
77 | char input_buffer[MAX_INPUT_BUFFER]; | 77 | char input_buffer[MAX_INPUT_BUFFER]; |
78 | char *address = NULL; /* comma seperated str with addrs/ptrs (sorted) */ | 78 | char *address = NULL; /* comma separated str with addrs/ptrs (sorted) */ |
79 | char **addresses = NULL; | 79 | char **addresses = NULL; |
80 | int n_addresses = 0; | 80 | int n_addresses = 0; |
81 | char *msg = NULL; | 81 | char *msg = NULL; |
diff --git a/plugins/check_fping.c b/plugins/check_fping.c index db43316..23a9e99 100644 --- a/plugins/check_fping.c +++ b/plugins/check_fping.c | |||
@@ -73,7 +73,7 @@ int wrta_p = FALSE; | |||
73 | int | 73 | int |
74 | main (int argc, char **argv) | 74 | main (int argc, char **argv) |
75 | { | 75 | { |
76 | /* normaly should be int result = STATE_UNKNOWN; */ | 76 | /* normally should be int result = STATE_UNKNOWN; */ |
77 | 77 | ||
78 | int status = STATE_UNKNOWN; | 78 | int status = STATE_UNKNOWN; |
79 | int result = 0; | 79 | int result = 0; |
@@ -354,6 +354,7 @@ process_arguments (int argc, char **argv) | |||
354 | break; | 354 | break; |
355 | case 'I': /* sourceip */ | 355 | case 'I': /* sourceip */ |
356 | sourceif = strscpy (sourceif, optarg); | 356 | sourceif = strscpy (sourceif, optarg); |
357 | break; | ||
357 | case '4': /* IPv4 only */ | 358 | case '4': /* IPv4 only */ |
358 | address_family = AF_INET; | 359 | address_family = AF_INET; |
359 | break; | 360 | break; |
diff --git a/plugins/check_hpjd.c b/plugins/check_hpjd.c index c4b4417..c34bb08 100644 --- a/plugins/check_hpjd.c +++ b/plugins/check_hpjd.c | |||
@@ -353,6 +353,7 @@ process_arguments (int argc, char **argv) | |||
353 | usage2 (_("Port must be a positive short integer"), optarg); | 353 | usage2 (_("Port must be a positive short integer"), optarg); |
354 | else | 354 | else |
355 | port = atoi(optarg); | 355 | port = atoi(optarg); |
356 | break; | ||
356 | case 'D': /* disable paper out check*/ | 357 | case 'D': /* disable paper out check*/ |
357 | check_paper_out = 0; | 358 | check_paper_out = 0; |
358 | break; | 359 | break; |
diff --git a/plugins/check_http.c b/plugins/check_http.c index 8dda046..718c8ee 100644 --- a/plugins/check_http.c +++ b/plugins/check_http.c | |||
@@ -198,7 +198,7 @@ test_file (char *path) | |||
198 | 198 | ||
199 | /* | 199 | /* |
200 | * process command-line arguments | 200 | * process command-line arguments |
201 | * returns true on succes, false otherwise | 201 | * returns true on success, false otherwise |
202 | */ | 202 | */ |
203 | bool process_arguments (int argc, char **argv) | 203 | bool process_arguments (int argc, char **argv) |
204 | { | 204 | { |
@@ -498,6 +498,7 @@ bool process_arguments (int argc, char **argv) | |||
498 | break; | 498 | break; |
499 | case 'R': /* regex */ | 499 | case 'R': /* regex */ |
500 | cflags |= REG_ICASE; | 500 | cflags |= REG_ICASE; |
501 | // fall through | ||
501 | case 'r': /* regex */ | 502 | case 'r': /* regex */ |
502 | strncpy (regexp, optarg, MAX_RE_SIZE - 1); | 503 | strncpy (regexp, optarg, MAX_RE_SIZE - 1); |
503 | regexp[MAX_RE_SIZE - 1] = 0; | 504 | regexp[MAX_RE_SIZE - 1] = 0; |
@@ -1278,7 +1279,7 @@ check_http (void) | |||
1278 | 1279 | ||
1279 | regmatch_t chre_pmatch[1]; // We actually do not care about this, since we only want to know IF it was found | 1280 | regmatch_t chre_pmatch[1]; // We actually do not care about this, since we only want to know IF it was found |
1280 | 1281 | ||
1281 | if (regexec(&chunked_header_regex, header, 1, chre_pmatch, 0) == 0) { | 1282 | if (!no_body && regexec(&chunked_header_regex, header, 1, chre_pmatch, 0) == 0) { |
1282 | if (verbose) { | 1283 | if (verbose) { |
1283 | printf("Found chunked content\n"); | 1284 | printf("Found chunked content\n"); |
1284 | } | 1285 | } |
@@ -1391,7 +1392,6 @@ char *unchunk_content(const char *content) { | |||
1391 | // https://en.wikipedia.org/wiki/Chunked_transfer_encoding | 1392 | // https://en.wikipedia.org/wiki/Chunked_transfer_encoding |
1392 | // https://www.rfc-editor.org/rfc/rfc7230#section-4.1 | 1393 | // https://www.rfc-editor.org/rfc/rfc7230#section-4.1 |
1393 | char *result = NULL; | 1394 | char *result = NULL; |
1394 | size_t content_length = strlen(content); | ||
1395 | char *start_of_chunk; | 1395 | char *start_of_chunk; |
1396 | char* end_of_chunk; | 1396 | char* end_of_chunk; |
1397 | long size_of_chunk; | 1397 | long size_of_chunk; |
@@ -1885,7 +1885,7 @@ print_usage (void) | |||
1885 | printf (" %s -H <vhost> | -I <IP-address> [-u <uri>] [-p <port>]\n",progname); | 1885 | printf (" %s -H <vhost> | -I <IP-address> [-u <uri>] [-p <port>]\n",progname); |
1886 | printf (" [-J <client certificate file>] [-K <private key>]\n"); | 1886 | printf (" [-J <client certificate file>] [-K <private key>]\n"); |
1887 | printf (" [-w <warn time>] [-c <critical time>] [-t <timeout>] [-L] [-E] [-a auth]\n"); | 1887 | printf (" [-w <warn time>] [-c <critical time>] [-t <timeout>] [-L] [-E] [-a auth]\n"); |
1888 | printf (" [-b proxy_auth] [-f <ok|warning|critcal|follow|sticky|stickyport>]\n"); | 1888 | printf (" [-b proxy_auth] [-f <ok|warning|critical|follow|sticky|stickyport>]\n"); |
1889 | printf (" [-e <expect>] [-d string] [-s string] [-l] [-r <regex> | -R <case-insensitive regex>]\n"); | 1889 | printf (" [-e <expect>] [-d string] [-s string] [-l] [-r <regex> | -R <case-insensitive regex>]\n"); |
1890 | printf (" [-P string] [-m <min_pg_size>:<max_pg_size>] [-4|-6] [-N] [-M <age>]\n"); | 1890 | printf (" [-P string] [-m <min_pg_size>:<max_pg_size>] [-4|-6] [-N] [-M <age>]\n"); |
1891 | printf (" [-A string] [-k string] [-S <version>] [--sni]\n"); | 1891 | printf (" [-A string] [-k string] [-S <version>] [--sni]\n"); |
diff --git a/plugins/check_ldap.c b/plugins/check_ldap.c index 845a4f5..a1bfe1b 100644 --- a/plugins/check_ldap.c +++ b/plugins/check_ldap.c | |||
@@ -222,7 +222,7 @@ main (int argc, char *argv[]) | |||
222 | /* reset the alarm handler */ | 222 | /* reset the alarm handler */ |
223 | alarm (0); | 223 | alarm (0); |
224 | 224 | ||
225 | /* calcutate the elapsed time and compare to thresholds */ | 225 | /* calculate the elapsed time and compare to thresholds */ |
226 | 226 | ||
227 | microsec = deltime (tv); | 227 | microsec = deltime (tv); |
228 | elapsed_time = (double)microsec / 1.0e6; | 228 | elapsed_time = (double)microsec / 1.0e6; |
diff --git a/plugins/check_load.c b/plugins/check_load.c index 00f7c87..313df8a 100644 --- a/plugins/check_load.c +++ b/plugins/check_load.c | |||
@@ -107,7 +107,7 @@ main (int argc, char **argv) | |||
107 | int i; | 107 | int i; |
108 | long numcpus; | 108 | long numcpus; |
109 | 109 | ||
110 | double la[3] = { 0.0, 0.0, 0.0 }; /* NetBSD complains about unitialized arrays */ | 110 | double la[3] = { 0.0, 0.0, 0.0 }; /* NetBSD complains about uninitialized arrays */ |
111 | #ifndef HAVE_GETLOADAVG | 111 | #ifndef HAVE_GETLOADAVG |
112 | char input_buffer[MAX_INPUT_BUFFER]; | 112 | char input_buffer[MAX_INPUT_BUFFER]; |
113 | # ifdef HAVE_PROC_LOADAVG | 113 | # ifdef HAVE_PROC_LOADAVG |
diff --git a/plugins/check_mysql.c b/plugins/check_mysql.c index 0cba50e..7d85554 100644 --- a/plugins/check_mysql.c +++ b/plugins/check_mysql.c | |||
@@ -34,7 +34,7 @@ const char *progname = "check_mysql"; | |||
34 | const char *copyright = "1999-2011"; | 34 | const char *copyright = "1999-2011"; |
35 | const char *email = "devel@monitoring-plugins.org"; | 35 | const char *email = "devel@monitoring-plugins.org"; |
36 | 36 | ||
37 | #define SLAVERESULTSIZE 70 | 37 | #define SLAVERESULTSIZE 96 |
38 | 38 | ||
39 | #include "common.h" | 39 | #include "common.h" |
40 | #include "utils.h" | 40 | #include "utils.h" |
@@ -89,6 +89,8 @@ static const char *metric_counter[LENGTH_METRIC_COUNTER] = { | |||
89 | "Uptime" | 89 | "Uptime" |
90 | }; | 90 | }; |
91 | 91 | ||
92 | #define MYSQLDUMP_THREADS_QUERY "SELECT COUNT(1) mysqldumpThreads FROM information_schema.processlist WHERE info LIKE 'SELECT /*!40001 SQL_NO_CACHE */%'" | ||
93 | |||
92 | thresholds *my_threshold = NULL; | 94 | thresholds *my_threshold = NULL; |
93 | 95 | ||
94 | int process_arguments (int, char **); | 96 | int process_arguments (int, char **); |
@@ -108,7 +110,7 @@ main (int argc, char **argv) | |||
108 | 110 | ||
109 | char *result = NULL; | 111 | char *result = NULL; |
110 | char *error = NULL; | 112 | char *error = NULL; |
111 | char slaveresult[SLAVERESULTSIZE]; | 113 | char slaveresult[SLAVERESULTSIZE] = { 0 }; |
112 | char* perf; | 114 | char* perf; |
113 | 115 | ||
114 | perf = strdup (""); | 116 | perf = strdup (""); |
@@ -138,7 +140,10 @@ main (int argc, char **argv) | |||
138 | mysql_ssl_set(&mysql,key,cert,ca_cert,ca_dir,ciphers); | 140 | mysql_ssl_set(&mysql,key,cert,ca_cert,ca_dir,ciphers); |
139 | /* establish a connection to the server and error checking */ | 141 | /* 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)) { | 142 | 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) | 143 | /* Depending on internally-selected auth plugin MySQL might return */ |
144 | /* ER_ACCESS_DENIED_NO_PASSWORD_ERROR or ER_ACCESS_DENIED_ERROR. */ | ||
145 | /* Semantically these errors are the same. */ | ||
146 | if (ignore_auth && (mysql_errno (&mysql) == ER_ACCESS_DENIED_ERROR || mysql_errno (&mysql) == ER_ACCESS_DENIED_NO_PASSWORD_ERROR)) | ||
142 | { | 147 | { |
143 | printf("MySQL OK - Version: %s (protocol %d)\n", | 148 | printf("MySQL OK - Version: %s (protocol %d)\n", |
144 | mysql_get_server_info(&mysql), | 149 | mysql_get_server_info(&mysql), |
@@ -275,11 +280,30 @@ main (int argc, char **argv) | |||
275 | /* Save slave status in slaveresult */ | 280 | /* Save slave status in slaveresult */ |
276 | snprintf (slaveresult, SLAVERESULTSIZE, "Slave IO: %s Slave SQL: %s Seconds Behind Master: %s", row[slave_io_field], row[slave_sql_field], seconds_behind_field!=-1?row[seconds_behind_field]:"Unknown"); | 281 | snprintf (slaveresult, SLAVERESULTSIZE, "Slave IO: %s Slave SQL: %s Seconds Behind Master: %s", row[slave_io_field], row[slave_sql_field], seconds_behind_field!=-1?row[seconds_behind_field]:"Unknown"); |
277 | 282 | ||
278 | /* Raise critical error if SQL THREAD or IO THREAD are stopped */ | 283 | /* Raise critical error if SQL THREAD or IO THREAD are stopped, but only if there are no mysqldump threads running */ |
279 | if (strcmp (row[slave_io_field], "Yes") != 0 || strcmp (row[slave_sql_field], "Yes") != 0) { | 284 | if (strcmp (row[slave_io_field], "Yes") != 0 || strcmp (row[slave_sql_field], "Yes") != 0) { |
280 | mysql_free_result (res); | 285 | MYSQL_RES *res_mysqldump; |
281 | mysql_close (&mysql); | 286 | MYSQL_ROW row_mysqldump; |
282 | die (STATE_CRITICAL, "%s\n", slaveresult); | 287 | unsigned int mysqldump_threads = 0; |
288 | |||
289 | if (mysql_query (&mysql, MYSQLDUMP_THREADS_QUERY) == 0) { | ||
290 | /* store the result */ | ||
291 | if ( (res_mysqldump = mysql_store_result (&mysql)) != NULL) { | ||
292 | if (mysql_num_rows(res_mysqldump) == 1) { | ||
293 | if ( (row_mysqldump = mysql_fetch_row (res_mysqldump)) != NULL) { | ||
294 | mysqldump_threads = atoi(row_mysqldump[0]); | ||
295 | } | ||
296 | } | ||
297 | /* free the result */ | ||
298 | mysql_free_result (res_mysqldump); | ||
299 | } | ||
300 | mysql_close (&mysql); | ||
301 | } | ||
302 | if (mysqldump_threads == 0) { | ||
303 | die (STATE_CRITICAL, "%s\n", slaveresult); | ||
304 | } else { | ||
305 | strncat(slaveresult, " Mysqldump: in progress", SLAVERESULTSIZE-1); | ||
306 | } | ||
283 | } | 307 | } |
284 | 308 | ||
285 | if (verbose >=3) { | 309 | if (verbose >=3) { |
@@ -291,7 +315,7 @@ main (int argc, char **argv) | |||
291 | } | 315 | } |
292 | 316 | ||
293 | /* Check Seconds Behind against threshold */ | 317 | /* Check Seconds Behind against threshold */ |
294 | if ((seconds_behind_field != -1) && (strcmp (row[seconds_behind_field], "NULL") != 0)) { | 318 | if ((seconds_behind_field != -1) && (row[seconds_behind_field] != NULL && strcmp (row[seconds_behind_field], "NULL") != 0)) { |
295 | double value = atof(row[seconds_behind_field]); | 319 | double value = atof(row[seconds_behind_field]); |
296 | int status; | 320 | int status; |
297 | 321 | ||
@@ -551,7 +575,7 @@ print_help (void) | |||
551 | printf (" %s\n", _("Exit with CRITICAL status if slave server is more then INTEGER seconds")); | 575 | printf (" %s\n", _("Exit with CRITICAL status if slave server is more then INTEGER seconds")); |
552 | printf (" %s\n", _("behind master")); | 576 | printf (" %s\n", _("behind master")); |
553 | printf (" %s\n", "-l, --ssl"); | 577 | printf (" %s\n", "-l, --ssl"); |
554 | printf (" %s\n", _("Use ssl encryptation")); | 578 | printf (" %s\n", _("Use ssl encryption")); |
555 | printf (" %s\n", "-C, --ca-cert=STRING"); | 579 | printf (" %s\n", "-C, --ca-cert=STRING"); |
556 | printf (" %s\n", _("Path to CA signing the cert")); | 580 | printf (" %s\n", _("Path to CA signing the cert")); |
557 | printf (" %s\n", "-a, --cert=STRING"); | 581 | 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_ntp.c b/plugins/check_ntp.c index 8b776ba..3614650 100644 --- a/plugins/check_ntp.c +++ b/plugins/check_ntp.c | |||
@@ -10,7 +10,7 @@ | |||
10 | * | 10 | * |
11 | * This file contains the check_ntp plugin | 11 | * This file contains the check_ntp plugin |
12 | * | 12 | * |
13 | * This plugin to check ntp servers independant of any commandline | 13 | * This plugin to check ntp servers independent of any commandline |
14 | * programs or external libraries. | 14 | * programs or external libraries. |
15 | * | 15 | * |
16 | * | 16 | * |
@@ -79,7 +79,7 @@ typedef struct { | |||
79 | /* this structure holds data about results from querying offset from a peer */ | 79 | /* this structure holds data about results from querying offset from a peer */ |
80 | typedef struct { | 80 | typedef struct { |
81 | time_t waiting; /* ts set when we started waiting for a response */ | 81 | time_t waiting; /* ts set when we started waiting for a response */ |
82 | int num_responses; /* number of successfully recieved responses */ | 82 | int num_responses; /* number of successfully received responses */ |
83 | uint8_t stratum; /* copied verbatim from the ntp_message */ | 83 | uint8_t stratum; /* copied verbatim from the ntp_message */ |
84 | double rtdelay; /* converted from the ntp_message */ | 84 | double rtdelay; /* converted from the ntp_message */ |
85 | double rtdisp; /* converted from the ntp_message */ | 85 | double rtdisp; /* converted from the ntp_message */ |
@@ -100,7 +100,7 @@ typedef struct { | |||
100 | /* NB: not necessarily NULL terminated! */ | 100 | /* NB: not necessarily NULL terminated! */ |
101 | } ntp_control_message; | 101 | } ntp_control_message; |
102 | 102 | ||
103 | /* this is an association/status-word pair found in control packet reponses */ | 103 | /* this is an association/status-word pair found in control packet responses */ |
104 | typedef struct { | 104 | typedef struct { |
105 | uint16_t assoc; | 105 | uint16_t assoc; |
106 | uint16_t status; | 106 | uint16_t status; |
@@ -575,7 +575,7 @@ double jitter_request(int *status){ | |||
575 | } | 575 | } |
576 | } | 576 | } |
577 | } | 577 | } |
578 | if(verbose) printf("%d candiate peers available\n", num_candidates); | 578 | if(verbose) printf("%d candidate peers available\n", num_candidates); |
579 | if(verbose && syncsource_found) printf("synchronization source found\n"); | 579 | if(verbose && syncsource_found) printf("synchronization source found\n"); |
580 | if(! syncsource_found){ | 580 | if(! syncsource_found){ |
581 | *status = STATE_UNKNOWN; | 581 | *status = STATE_UNKNOWN; |
@@ -597,7 +597,7 @@ double jitter_request(int *status){ | |||
597 | /* By spec, putting the variable name "jitter" in the request | 597 | /* By spec, putting the variable name "jitter" in the request |
598 | * should cause the server to provide _only_ the jitter value. | 598 | * should cause the server to provide _only_ the jitter value. |
599 | * thus reducing net traffic, guaranteeing us only a single | 599 | * thus reducing net traffic, guaranteeing us only a single |
600 | * datagram in reply, and making intepretation much simpler | 600 | * datagram in reply, and making interpretation much simpler |
601 | */ | 601 | */ |
602 | /* Older servers doesn't know what jitter is, so if we get an | 602 | /* Older servers doesn't know what jitter is, so if we get an |
603 | * error on the first pass we redo it with "dispersion" */ | 603 | * error on the first pass we redo it with "dispersion" */ |
diff --git a/plugins/check_ntp_peer.c b/plugins/check_ntp_peer.c index 6842842..49cb100 100644 --- a/plugins/check_ntp_peer.c +++ b/plugins/check_ntp_peer.c | |||
@@ -86,7 +86,7 @@ typedef struct { | |||
86 | /* NB: not necessarily NULL terminated! */ | 86 | /* NB: not necessarily NULL terminated! */ |
87 | } ntp_control_message; | 87 | } ntp_control_message; |
88 | 88 | ||
89 | /* this is an association/status-word pair found in control packet reponses */ | 89 | /* this is an association/status-word pair found in control packet responses */ |
90 | typedef struct { | 90 | typedef struct { |
91 | uint16_t assoc; | 91 | uint16_t assoc; |
92 | uint16_t status; | 92 | uint16_t status; |
@@ -189,7 +189,7 @@ setup_control_request(ntp_control_message *p, uint8_t opcode, uint16_t seq){ | |||
189 | } | 189 | } |
190 | 190 | ||
191 | /* This function does all the actual work; roughly here's what it does | 191 | /* This function does all the actual work; roughly here's what it does |
192 | * beside setting the offest, jitter and stratum passed as argument: | 192 | * beside setting the offset, jitter and stratum passed as argument: |
193 | * - offset can be negative, so if it cannot get the offset, offset_result | 193 | * - offset can be negative, so if it cannot get the offset, offset_result |
194 | * is set to UNKNOWN, otherwise OK. | 194 | * is set to UNKNOWN, otherwise OK. |
195 | * - jitter and stratum are set to -1 if they cannot be retrieved so any | 195 | * - jitter and stratum are set to -1 if they cannot be retrieved so any |
@@ -199,7 +199,7 @@ setup_control_request(ntp_control_message *p, uint8_t opcode, uint16_t seq){ | |||
199 | * status is pretty much useless as syncsource_found is a global variable | 199 | * status is pretty much useless as syncsource_found is a global variable |
200 | * used later in main to check is the server was synchronized. It works | 200 | * used later in main to check is the server was synchronized. It works |
201 | * so I left it alone */ | 201 | * so I left it alone */ |
202 | int ntp_request(const char *host, double *offset, int *offset_result, double *jitter, int *stratum, int *num_truechimers){ | 202 | int ntp_request(double *offset, int *offset_result, double *jitter, int *stratum, int *num_truechimers){ |
203 | int conn=-1, i, npeers=0, num_candidates=0; | 203 | int conn=-1, i, npeers=0, num_candidates=0; |
204 | double tmp_offset = 0; | 204 | double tmp_offset = 0; |
205 | int min_peer_sel=PEER_INCLUDED; | 205 | int min_peer_sel=PEER_INCLUDED; |
@@ -306,7 +306,7 @@ int ntp_request(const char *host, double *offset, int *offset_result, double *ji | |||
306 | /* Putting the wanted variable names in the request | 306 | /* Putting the wanted variable names in the request |
307 | * cause the server to provide _only_ the requested values. | 307 | * cause the server to provide _only_ the requested values. |
308 | * thus reducing net traffic, guaranteeing us only a single | 308 | * thus reducing net traffic, guaranteeing us only a single |
309 | * datagram in reply, and making intepretation much simpler | 309 | * datagram in reply, and making interpretation much simpler |
310 | */ | 310 | */ |
311 | /* Older servers doesn't know what jitter is, so if we get an | 311 | /* Older servers doesn't know what jitter is, so if we get an |
312 | * error on the first pass we redo it with "dispersion" */ | 312 | * error on the first pass we redo it with "dispersion" */ |
@@ -585,8 +585,8 @@ int main(int argc, char *argv[]){ | |||
585 | /* set socket timeout */ | 585 | /* set socket timeout */ |
586 | alarm (socket_timeout); | 586 | alarm (socket_timeout); |
587 | 587 | ||
588 | /* This returns either OK or WARNING (See comment preceeding ntp_request) */ | 588 | /* This returns either OK or WARNING (See comment preceding ntp_request) */ |
589 | result = ntp_request(server_address, &offset, &offset_result, &jitter, &stratum, &num_truechimers); | 589 | result = ntp_request(&offset, &offset_result, &jitter, &stratum, &num_truechimers); |
590 | 590 | ||
591 | if(offset_result == STATE_UNKNOWN) { | 591 | if(offset_result == STATE_UNKNOWN) { |
592 | /* if there's no sync peer (this overrides ntp_request output): */ | 592 | /* if there's no sync peer (this overrides ntp_request output): */ |
diff --git a/plugins/check_ntp_time.c b/plugins/check_ntp_time.c index 391b2df..46cc604 100644 --- a/plugins/check_ntp_time.c +++ b/plugins/check_ntp_time.c | |||
@@ -81,7 +81,7 @@ typedef struct { | |||
81 | /* this structure holds data about results from querying offset from a peer */ | 81 | /* this structure holds data about results from querying offset from a peer */ |
82 | typedef struct { | 82 | typedef struct { |
83 | time_t waiting; /* ts set when we started waiting for a response */ | 83 | time_t waiting; /* ts set when we started waiting for a response */ |
84 | int num_responses; /* number of successfully recieved responses */ | 84 | int num_responses; /* number of successfully received responses */ |
85 | uint8_t stratum; /* copied verbatim from the ntp_message */ | 85 | uint8_t stratum; /* copied verbatim from the ntp_message */ |
86 | double rtdelay; /* converted from the ntp_message */ | 86 | double rtdelay; /* converted from the ntp_message */ |
87 | double rtdisp; /* converted from the ntp_message */ | 87 | double rtdisp; /* converted from the ntp_message */ |
diff --git a/plugins/check_nwstat.c b/plugins/check_nwstat.c index e7e8de0..3c9d23e 100644 --- a/plugins/check_nwstat.c +++ b/plugins/check_nwstat.c | |||
@@ -1668,7 +1668,7 @@ void print_help(void) | |||
1668 | 1668 | ||
1669 | printf ("\n"); | 1669 | printf ("\n"); |
1670 | printf ("%s\n", _("Notes:")); | 1670 | printf ("%s\n", _("Notes:")); |
1671 | printf (" %s\n", _("- This plugin requres that the MRTGEXT.NLM file from James Drews' MRTG")); | 1671 | printf (" %s\n", _("- This plugin requires that the MRTGEXT.NLM file from James Drews' MRTG")); |
1672 | printf (" %s\n", _(" extension for NetWare be loaded on the Novell servers you wish to check.")); | 1672 | printf (" %s\n", _(" extension for NetWare be loaded on the Novell servers you wish to check.")); |
1673 | printf (" %s\n", _(" (available from http://www.engr.wisc.edu/~drews/mrtg/)")); | 1673 | printf (" %s\n", _(" (available from http://www.engr.wisc.edu/~drews/mrtg/)")); |
1674 | printf (" %s\n", _("- Values for critical thresholds should be lower than warning thresholds")); | 1674 | printf (" %s\n", _("- Values for critical thresholds should be lower than warning thresholds")); |
diff --git a/plugins/check_pgsql.c b/plugins/check_pgsql.c index c26cd43..6199033 100644 --- a/plugins/check_pgsql.c +++ b/plugins/check_pgsql.c | |||
@@ -93,7 +93,7 @@ int verbose = 0; | |||
93 | 93 | ||
94 | /****************************************************************************** | 94 | /****************************************************************************** |
95 | 95 | ||
96 | The (psuedo?)literate programming XML is contained within \@\@\- <XML> \-\@\@ | 96 | The (pseudo?)literate programming XML is contained within \@\@\- <XML> \-\@\@ |
97 | tags in the comments. With in the tags, the XML is assembled sequentially. | 97 | tags in the comments. With in the tags, the XML is assembled sequentially. |
98 | You can define entities in tags. You also have all the #defines available as | 98 | You can define entities in tags. You also have all the #defines available as |
99 | entities. | 99 | entities. |
@@ -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_procs.c b/plugins/check_procs.c index a025ee8..c17c699 100644 --- a/plugins/check_procs.c +++ b/plugins/check_procs.c | |||
@@ -70,6 +70,7 @@ int options = 0; /* bitmask of filter criteria to test against */ | |||
70 | #define PCPU 256 | 70 | #define PCPU 256 |
71 | #define ELAPSED 512 | 71 | #define ELAPSED 512 |
72 | #define EREG_ARGS 1024 | 72 | #define EREG_ARGS 1024 |
73 | #define EXCLUDE_PROGS 2048 | ||
73 | 74 | ||
74 | #define KTHREAD_PARENT "kthreadd" /* the parent process of kernel threads: | 75 | #define KTHREAD_PARENT "kthreadd" /* the parent process of kernel threads: |
75 | ppid of procs are compared to pid of this proc*/ | 76 | ppid of procs are compared to pid of this proc*/ |
@@ -93,6 +94,9 @@ int rss; | |||
93 | float pcpu; | 94 | float pcpu; |
94 | char *statopts; | 95 | char *statopts; |
95 | char *prog; | 96 | char *prog; |
97 | char *exclude_progs; | ||
98 | char **exclude_progs_arr = NULL; | ||
99 | char exclude_progs_counter = 0; | ||
96 | char *args; | 100 | char *args; |
97 | char *input_filename = NULL; | 101 | char *input_filename = NULL; |
98 | regex_t re_args; | 102 | regex_t re_args; |
@@ -250,7 +254,26 @@ main (int argc, char **argv) | |||
250 | continue; | 254 | continue; |
251 | } | 255 | } |
252 | 256 | ||
253 | /* filter kernel threads (childs of KTHREAD_PARENT)*/ | 257 | /* Ignore excluded processes by name */ |
258 | if(options & EXCLUDE_PROGS) { | ||
259 | int found = 0; | ||
260 | int i = 0; | ||
261 | |||
262 | for(i=0; i < (exclude_progs_counter); i++) { | ||
263 | if(!strcmp(procprog, exclude_progs_arr[i])) { | ||
264 | found = 1; | ||
265 | } | ||
266 | } | ||
267 | if(found == 0) { | ||
268 | resultsum |= EXCLUDE_PROGS; | ||
269 | } else | ||
270 | { | ||
271 | if(verbose >= 3) | ||
272 | printf("excluding - by ignorelist\n"); | ||
273 | } | ||
274 | } | ||
275 | |||
276 | /* filter kernel threads (children of KTHREAD_PARENT)*/ | ||
254 | /* TODO adapt for other OSes than GNU/Linux | 277 | /* TODO adapt for other OSes than GNU/Linux |
255 | sorry for not doing that, but I've no other OSes to test :-( */ | 278 | sorry for not doing that, but I've no other OSes to test :-( */ |
256 | if (kthread_filter == 1) { | 279 | if (kthread_filter == 1) { |
@@ -409,6 +432,7 @@ process_arguments (int argc, char **argv) | |||
409 | {"input-file", required_argument, 0, CHAR_MAX+2}, | 432 | {"input-file", required_argument, 0, CHAR_MAX+2}, |
410 | {"no-kthreads", required_argument, 0, 'k'}, | 433 | {"no-kthreads", required_argument, 0, 'k'}, |
411 | {"traditional-filter", no_argument, 0, 'T'}, | 434 | {"traditional-filter", no_argument, 0, 'T'}, |
435 | {"exclude-process", required_argument, 0, 'X'}, | ||
412 | {0, 0, 0, 0} | 436 | {0, 0, 0, 0} |
413 | }; | 437 | }; |
414 | 438 | ||
@@ -417,7 +441,7 @@ process_arguments (int argc, char **argv) | |||
417 | strcpy (argv[c], "-t"); | 441 | strcpy (argv[c], "-t"); |
418 | 442 | ||
419 | while (1) { | 443 | while (1) { |
420 | c = getopt_long (argc, argv, "Vvhkt:c:w:p:s:u:C:a:z:r:m:P:T", | 444 | c = getopt_long (argc, argv, "Vvhkt:c:w:p:s:u:C:a:z:r:m:P:T:X:", |
421 | longopts, &option); | 445 | longopts, &option); |
422 | 446 | ||
423 | if (c == -1 || c == EOF) | 447 | if (c == -1 || c == EOF) |
@@ -490,6 +514,23 @@ process_arguments (int argc, char **argv) | |||
490 | prog); | 514 | prog); |
491 | options |= PROG; | 515 | options |= PROG; |
492 | break; | 516 | break; |
517 | case 'X': | ||
518 | if(exclude_progs) | ||
519 | break; | ||
520 | else | ||
521 | exclude_progs = optarg; | ||
522 | xasprintf (&fmt, _("%s%sexclude progs '%s'"), (fmt ? fmt : ""), (options ? ", " : ""), | ||
523 | exclude_progs); | ||
524 | char *p = strtok(exclude_progs, ","); | ||
525 | |||
526 | while(p){ | ||
527 | exclude_progs_arr = realloc(exclude_progs_arr, sizeof(char*) * ++exclude_progs_counter); | ||
528 | exclude_progs_arr[exclude_progs_counter-1] = p; | ||
529 | p = strtok(NULL, ","); | ||
530 | } | ||
531 | |||
532 | options |= EXCLUDE_PROGS; | ||
533 | break; | ||
493 | case 'a': /* args (full path name with args) */ | 534 | case 'a': /* args (full path name with args) */ |
494 | /* TODO: allow this to be passed in with --metric */ | 535 | /* TODO: allow this to be passed in with --metric */ |
495 | if (args) | 536 | if (args) |
@@ -745,6 +786,8 @@ print_help (void) | |||
745 | printf (" %s\n", _("Only scan for processes with args that contain the regex STRING.")); | 786 | printf (" %s\n", _("Only scan for processes with args that contain the regex STRING.")); |
746 | printf (" %s\n", "-C, --command=COMMAND"); | 787 | printf (" %s\n", "-C, --command=COMMAND"); |
747 | printf (" %s\n", _("Only scan for exact matches of COMMAND (without path).")); | 788 | printf (" %s\n", _("Only scan for exact matches of COMMAND (without path).")); |
789 | printf (" %s\n", "-X, --exclude-process"); | ||
790 | printf (" %s\n", _("Exclude processes which match this comma separated list")); | ||
748 | printf (" %s\n", "-k, --no-kthreads"); | 791 | printf (" %s\n", "-k, --no-kthreads"); |
749 | printf (" %s\n", _("Only scan for non kernel threads (works on Linux only).")); | 792 | printf (" %s\n", _("Only scan for non kernel threads (works on Linux only).")); |
750 | 793 | ||
@@ -786,5 +829,5 @@ print_usage (void) | |||
786 | printf ("%s\n", _("Usage:")); | 829 | printf ("%s\n", _("Usage:")); |
787 | printf ("%s -w <range> -c <range> [-m metric] [-s state] [-p ppid]\n", progname); | 830 | printf ("%s -w <range> -c <range> [-m metric] [-s state] [-p ppid]\n", progname); |
788 | printf (" [-u user] [-r rss] [-z vsz] [-P %%cpu] [-a argument-array]\n"); | 831 | printf (" [-u user] [-r rss] [-z vsz] [-P %%cpu] [-a argument-array]\n"); |
789 | printf (" [-C command] [-k] [-t timeout] [-v]\n"); | 832 | printf (" [-C command] [-X process_to_exclude] [-k] [-t timeout] [-v]\n"); |
790 | } | 833 | } |
diff --git a/plugins/check_radius.c b/plugins/check_radius.c index be1001b..b1b4938 100644 --- a/plugins/check_radius.c +++ b/plugins/check_radius.c | |||
@@ -97,7 +97,7 @@ int verbose = FALSE; | |||
97 | 97 | ||
98 | /****************************************************************************** | 98 | /****************************************************************************** |
99 | 99 | ||
100 | The (psuedo?)literate programming XML is contained within \@\@\- <XML> \-\@\@ | 100 | The (pseudo?)literate programming XML is contained within \@\@\- <XML> \-\@\@ |
101 | tags in the comments. With in the tags, the XML is assembled sequentially. | 101 | tags in the comments. With in the tags, the XML is assembled sequentially. |
102 | You can define entities in tags. You also have all the #defines available as | 102 | You can define entities in tags. You also have all the #defines available as |
103 | entities. | 103 | entities. |
@@ -155,7 +155,11 @@ main (int argc, char **argv) | |||
155 | { | 155 | { |
156 | struct sockaddr_storage ss; | 156 | struct sockaddr_storage ss; |
157 | char name[HOST_NAME_MAX]; | 157 | char name[HOST_NAME_MAX]; |
158 | #ifdef RC_BUFFER_LEN | ||
159 | char msg[RC_BUFFER_LEN]; | ||
160 | #else | ||
158 | char msg[BUFFER_LEN]; | 161 | char msg[BUFFER_LEN]; |
162 | #endif | ||
159 | SEND_DATA data; | 163 | SEND_DATA data; |
160 | int result = STATE_UNKNOWN; | 164 | int result = STATE_UNKNOWN; |
161 | uint32_t client_id, service; | 165 | uint32_t client_id, service; |
@@ -377,7 +381,7 @@ print_help (void) | |||
377 | printf ("\n"); | 381 | printf ("\n"); |
378 | printf ("%s\n", _("This plugin tests a RADIUS server to see if it is accepting connections.")); | 382 | printf ("%s\n", _("This plugin tests a RADIUS server to see if it is accepting connections.")); |
379 | printf ("%s\n", _("The server to test must be specified in the invocation, as well as a user")); | 383 | printf ("%s\n", _("The server to test must be specified in the invocation, as well as a user")); |
380 | printf ("%s\n", _("name and password. A configuration file may also be present. The format of")); | 384 | printf ("%s\n", _("name and password. A configuration file must be present. The format of")); |
381 | printf ("%s\n", _("the configuration file is described in the radiusclient library sources.")); | 385 | printf ("%s\n", _("the configuration file is described in the radiusclient library sources.")); |
382 | printf ("%s\n", _("The password option presents a substantial security issue because the")); | 386 | printf ("%s\n", _("The password option presents a substantial security issue because the")); |
383 | printf ("%s\n", _("password can possibly be determined by careful watching of the command line")); | 387 | printf ("%s\n", _("password can possibly be determined by careful watching of the command line")); |
diff --git a/plugins/check_real.c b/plugins/check_real.c index 0f1a1ba..fbdb70f 100644 --- a/plugins/check_real.c +++ b/plugins/check_real.c | |||
@@ -178,7 +178,7 @@ main (int argc, char **argv) | |||
178 | 178 | ||
179 | /* watch for the REAL connection string */ | 179 | /* watch for the REAL connection string */ |
180 | result = recv (sd, buffer, MAX_INPUT_BUFFER - 1, 0); | 180 | result = recv (sd, buffer, MAX_INPUT_BUFFER - 1, 0); |
181 | buffer[result] = '\0'; /* null terminate recieved buffer */ | 181 | buffer[result] = '\0'; /* null terminate received buffer */ |
182 | 182 | ||
183 | /* return a CRITICAL status if we couldn't read any data */ | 183 | /* return a CRITICAL status if we couldn't read any data */ |
184 | if (result == -1) { | 184 | if (result == -1) { |
@@ -436,7 +436,7 @@ print_help (void) | |||
436 | 436 | ||
437 | printf ("\n"); | 437 | printf ("\n"); |
438 | printf ("%s\n", _("This plugin will attempt to open an RTSP connection with the host.")); | 438 | printf ("%s\n", _("This plugin will attempt to open an RTSP connection with the host.")); |
439 | printf ("%s\n", _("Successul connects return STATE_OK, refusals and timeouts return")); | 439 | printf ("%s\n", _("Successful connects return STATE_OK, refusals and timeouts return")); |
440 | printf ("%s\n", _("STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful connects,")); | 440 | printf ("%s\n", _("STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful connects,")); |
441 | printf ("%s\n", _("but incorrect response messages from the host result in STATE_WARNING return")); | 441 | printf ("%s\n", _("but incorrect response messages from the host result in STATE_WARNING return")); |
442 | printf ("%s\n", _("values.")); | 442 | printf ("%s\n", _("values.")); |
diff --git a/plugins/check_smtp.c b/plugins/check_smtp.c index c1e92df..fc0ae2c 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 | * |
@@ -42,16 +42,18 @@ const char *email = "devel@monitoring-plugins.org"; | |||
42 | #ifdef HAVE_SSL | 42 | #ifdef HAVE_SSL |
43 | int check_cert = FALSE; | 43 | int check_cert = FALSE; |
44 | int days_till_exp_warn, days_till_exp_crit; | 44 | int days_till_exp_warn, days_till_exp_crit; |
45 | # define my_recv(buf, len) ((use_ssl && ssl_established) ? np_net_ssl_read(buf, len) : read(sd, buf, len)) | 45 | # define my_recv(buf, len) (((use_starttls || use_ssl) && ssl_established) ? np_net_ssl_read(buf, len) : read(sd, buf, len)) |
46 | # define my_send(buf, len) ((use_ssl && ssl_established) ? np_net_ssl_write(buf, len) : send(sd, buf, len, 0)) | 46 | # define my_send(buf, len) (((use_starttls || use_ssl) && ssl_established) ? np_net_ssl_write(buf, len) : send(sd, buf, len, 0)) |
47 | #else /* ifndef HAVE_SSL */ | 47 | #else /* ifndef HAVE_SSL */ |
48 | # define my_recv(buf, len) read(sd, buf, len) | 48 | # define my_recv(buf, len) read(sd, buf, len) |
49 | # define my_send(buf, len) send(sd, buf, len, 0) | 49 | # define my_send(buf, len) send(sd, buf, len, 0) |
50 | #endif | 50 | #endif |
51 | 51 | ||
52 | enum { | 52 | enum { |
53 | SMTP_PORT = 25 | 53 | SMTP_PORT = 25, |
54 | SMTPS_PORT = 465 | ||
54 | }; | 55 | }; |
56 | #define PROXY_PREFIX "PROXY TCP4 0.0.0.0 0.0.0.0 25 25\r\n" | ||
55 | #define SMTP_EXPECT "220" | 57 | #define SMTP_EXPECT "220" |
56 | #define SMTP_HELO "HELO " | 58 | #define SMTP_HELO "HELO " |
57 | #define SMTP_EHLO "EHLO " | 59 | #define SMTP_EHLO "EHLO " |
@@ -82,6 +84,7 @@ int eflags = 0; | |||
82 | int errcode, excode; | 84 | int errcode, excode; |
83 | 85 | ||
84 | int server_port = SMTP_PORT; | 86 | int server_port = SMTP_PORT; |
87 | int server_port_option = 0; | ||
85 | char *server_address = NULL; | 88 | char *server_address = NULL; |
86 | char *server_expect = NULL; | 89 | char *server_expect = NULL; |
87 | char *mail_command = NULL; | 90 | char *mail_command = NULL; |
@@ -102,6 +105,9 @@ double critical_time = 0; | |||
102 | int check_critical_time = FALSE; | 105 | int check_critical_time = FALSE; |
103 | int verbose = 0; | 106 | int verbose = 0; |
104 | int use_ssl = FALSE; | 107 | int use_ssl = FALSE; |
108 | int use_starttls = FALSE; | ||
109 | int use_sni = FALSE; | ||
110 | short use_proxy_prefix = FALSE; | ||
105 | short use_ehlo = FALSE; | 111 | short use_ehlo = FALSE; |
106 | short use_lhlo = FALSE; | 112 | short use_lhlo = FALSE; |
107 | short ssl_established = 0; | 113 | short ssl_established = 0; |
@@ -183,6 +189,26 @@ main (int argc, char **argv) | |||
183 | result = my_tcp_connect (server_address, server_port, &sd); | 189 | result = my_tcp_connect (server_address, server_port, &sd); |
184 | 190 | ||
185 | if (result == STATE_OK) { /* we connected */ | 191 | if (result == STATE_OK) { /* we connected */ |
192 | /* If requested, send PROXY header */ | ||
193 | if (use_proxy_prefix) { | ||
194 | if (verbose) | ||
195 | printf ("Sending header %s\n", PROXY_PREFIX); | ||
196 | my_send(PROXY_PREFIX, strlen(PROXY_PREFIX)); | ||
197 | } | ||
198 | |||
199 | #ifdef HAVE_SSL | ||
200 | if (use_ssl) { | ||
201 | result = np_net_ssl_init_with_hostname(sd, (use_sni ? server_address : NULL)); | ||
202 | if (result != STATE_OK) { | ||
203 | printf (_("CRITICAL - Cannot create SSL context.\n")); | ||
204 | close(sd); | ||
205 | np_net_ssl_cleanup(); | ||
206 | return STATE_CRITICAL; | ||
207 | } else { | ||
208 | ssl_established = 1; | ||
209 | } | ||
210 | } | ||
211 | #endif | ||
186 | 212 | ||
187 | /* watch for the SMTP connection string and */ | 213 | /* watch for the SMTP connection string and */ |
188 | /* return a WARNING status if we couldn't read any data */ | 214 | /* return a WARNING status if we couldn't read any data */ |
@@ -195,7 +221,7 @@ main (int argc, char **argv) | |||
195 | xasprintf(&server_response, "%s", buffer); | 221 | xasprintf(&server_response, "%s", buffer); |
196 | 222 | ||
197 | /* send the HELO/EHLO command */ | 223 | /* send the HELO/EHLO command */ |
198 | send(sd, helocmd, strlen(helocmd), 0); | 224 | my_send(helocmd, strlen(helocmd)); |
199 | 225 | ||
200 | /* allow for response to helo command to reach us */ | 226 | /* allow for response to helo command to reach us */ |
201 | if (recvlines(buffer, MAX_INPUT_BUFFER) <= 0) { | 227 | if (recvlines(buffer, MAX_INPUT_BUFFER) <= 0) { |
@@ -208,14 +234,14 @@ main (int argc, char **argv) | |||
208 | } | 234 | } |
209 | } | 235 | } |
210 | 236 | ||
211 | if(use_ssl && ! supports_tls){ | 237 | if(use_starttls && ! supports_tls){ |
212 | printf(_("WARNING - TLS not supported by server\n")); | 238 | printf(_("WARNING - TLS not supported by server\n")); |
213 | smtp_quit(); | 239 | smtp_quit(); |
214 | return STATE_WARNING; | 240 | return STATE_WARNING; |
215 | } | 241 | } |
216 | 242 | ||
217 | #ifdef HAVE_SSL | 243 | #ifdef HAVE_SSL |
218 | if(use_ssl) { | 244 | if(use_starttls) { |
219 | /* send the STARTTLS command */ | 245 | /* send the STARTTLS command */ |
220 | send(sd, SMTP_STARTTLS, strlen(SMTP_STARTTLS), 0); | 246 | send(sd, SMTP_STARTTLS, strlen(SMTP_STARTTLS), 0); |
221 | 247 | ||
@@ -225,7 +251,7 @@ main (int argc, char **argv) | |||
225 | smtp_quit(); | 251 | smtp_quit(); |
226 | return STATE_UNKNOWN; | 252 | return STATE_UNKNOWN; |
227 | } | 253 | } |
228 | result = np_net_ssl_init(sd); | 254 | result = np_net_ssl_init_with_hostname(sd, (use_sni ? server_address : NULL)); |
229 | if(result != STATE_OK) { | 255 | if(result != STATE_OK) { |
230 | printf (_("CRITICAL - Cannot create SSL context.\n")); | 256 | printf (_("CRITICAL - Cannot create SSL context.\n")); |
231 | close(sd); | 257 | close(sd); |
@@ -454,6 +480,10 @@ process_arguments (int argc, char **argv) | |||
454 | int c; | 480 | int c; |
455 | char* temp; | 481 | char* temp; |
456 | 482 | ||
483 | enum { | ||
484 | SNI_OPTION | ||
485 | }; | ||
486 | |||
457 | int option = 0; | 487 | int option = 0; |
458 | static struct option longopts[] = { | 488 | static struct option longopts[] = { |
459 | {"hostname", required_argument, 0, 'H'}, | 489 | {"hostname", required_argument, 0, 'H'}, |
@@ -475,9 +505,13 @@ process_arguments (int argc, char **argv) | |||
475 | {"use-ipv6", no_argument, 0, '6'}, | 505 | {"use-ipv6", no_argument, 0, '6'}, |
476 | {"help", no_argument, 0, 'h'}, | 506 | {"help", no_argument, 0, 'h'}, |
477 | {"lmtp", no_argument, 0, 'L'}, | 507 | {"lmtp", no_argument, 0, 'L'}, |
508 | {"ssl", no_argument, 0, 's'}, | ||
509 | {"tls", no_argument, 0, 's'}, | ||
478 | {"starttls",no_argument,0,'S'}, | 510 | {"starttls",no_argument,0,'S'}, |
511 | {"sni", no_argument, 0, SNI_OPTION}, | ||
479 | {"certificate",required_argument,0,'D'}, | 512 | {"certificate",required_argument,0,'D'}, |
480 | {"ignore-quit-failure",no_argument,0,'q'}, | 513 | {"ignore-quit-failure",no_argument,0,'q'}, |
514 | {"proxy",no_argument,0,'r'}, | ||
481 | {0, 0, 0, 0} | 515 | {0, 0, 0, 0} |
482 | }; | 516 | }; |
483 | 517 | ||
@@ -494,7 +528,7 @@ process_arguments (int argc, char **argv) | |||
494 | } | 528 | } |
495 | 529 | ||
496 | while (1) { | 530 | while (1) { |
497 | c = getopt_long (argc, argv, "+hVv46Lt:p:f:e:c:w:H:C:R:SD:F:A:U:P:q", | 531 | c = getopt_long (argc, argv, "+hVv46Lrt:p:f:e:c:w:H:C:R:sSD:F:A:U:P:q", |
498 | longopts, &option); | 532 | longopts, &option); |
499 | 533 | ||
500 | if (c == -1 || c == EOF) | 534 | if (c == -1 || c == EOF) |
@@ -511,7 +545,7 @@ process_arguments (int argc, char **argv) | |||
511 | break; | 545 | break; |
512 | case 'p': /* port */ | 546 | case 'p': /* port */ |
513 | if (is_intpos (optarg)) | 547 | if (is_intpos (optarg)) |
514 | server_port = atoi (optarg); | 548 | server_port_option = atoi (optarg); |
515 | else | 549 | else |
516 | usage4 (_("Port must be a positive integer")); | 550 | usage4 (_("Port must be a positive integer")); |
517 | break; | 551 | break; |
@@ -616,11 +650,26 @@ process_arguments (int argc, char **argv) | |||
616 | #else | 650 | #else |
617 | usage (_("SSL support not available - install OpenSSL and recompile")); | 651 | usage (_("SSL support not available - install OpenSSL and recompile")); |
618 | #endif | 652 | #endif |
653 | case 's': | ||
654 | /* ssl */ | ||
655 | use_ssl = TRUE; | ||
656 | server_port = SMTPS_PORT; | ||
657 | break; | ||
619 | case 'S': | 658 | case 'S': |
620 | /* starttls */ | 659 | /* starttls */ |
621 | use_ssl = TRUE; | 660 | use_starttls = TRUE; |
622 | use_ehlo = TRUE; | 661 | use_ehlo = TRUE; |
623 | break; | 662 | break; |
663 | case SNI_OPTION: | ||
664 | #ifdef HAVE_SSL | ||
665 | use_sni = TRUE; | ||
666 | #else | ||
667 | usage (_("SSL support not available - install OpenSSL and recompile")); | ||
668 | #endif | ||
669 | break; | ||
670 | case 'r': | ||
671 | use_proxy_prefix = TRUE; | ||
672 | break; | ||
624 | case 'L': | 673 | case 'L': |
625 | use_lhlo = TRUE; | 674 | use_lhlo = TRUE; |
626 | break; | 675 | break; |
@@ -667,6 +716,14 @@ process_arguments (int argc, char **argv) | |||
667 | if (from_arg==NULL) | 716 | if (from_arg==NULL) |
668 | from_arg = strdup(" "); | 717 | from_arg = strdup(" "); |
669 | 718 | ||
719 | if (use_starttls && use_ssl) { | ||
720 | usage4 (_("Set either -s/--ssl/--tls or -S/--starttls")); | ||
721 | } | ||
722 | |||
723 | if (server_port_option != 0) { | ||
724 | server_port = server_port_option; | ||
725 | } | ||
726 | |||
670 | return validate_arguments (); | 727 | return validate_arguments (); |
671 | } | 728 | } |
672 | 729 | ||
@@ -819,11 +876,18 @@ print_help (void) | |||
819 | printf (" %s\n", _("FROM-address to include in MAIL command, required by Exchange 2000")), | 876 | printf (" %s\n", _("FROM-address to include in MAIL command, required by Exchange 2000")), |
820 | printf (" %s\n", "-F, --fqdn=STRING"); | 877 | printf (" %s\n", "-F, --fqdn=STRING"); |
821 | printf (" %s\n", _("FQDN used for HELO")); | 878 | printf (" %s\n", _("FQDN used for HELO")); |
879 | printf (" %s\n", "-r, --proxy"); | ||
880 | printf (" %s\n", _("Use PROXY protocol prefix for the connection.")); | ||
822 | #ifdef HAVE_SSL | 881 | #ifdef HAVE_SSL |
823 | printf (" %s\n", "-D, --certificate=INTEGER[,INTEGER]"); | 882 | printf (" %s\n", "-D, --certificate=INTEGER[,INTEGER]"); |
824 | printf (" %s\n", _("Minimum number of days a certificate has to be valid.")); | 883 | printf (" %s\n", _("Minimum number of days a certificate has to be valid.")); |
884 | printf (" %s\n", "-s, --ssl, --tls"); | ||
885 | printf (" %s\n", _("Use SSL/TLS for the connection.")); | ||
886 | printf (_(" Sets default port to %d.\n"), SMTPS_PORT); | ||
825 | printf (" %s\n", "-S, --starttls"); | 887 | printf (" %s\n", "-S, --starttls"); |
826 | printf (" %s\n", _("Use STARTTLS for the connection.")); | 888 | printf (" %s\n", _("Use STARTTLS for the connection.")); |
889 | printf (" %s\n", "--sni"); | ||
890 | printf (" %s\n", _("Enable SSL/TLS hostname extension support (SNI)")); | ||
827 | #endif | 891 | #endif |
828 | 892 | ||
829 | printf (" %s\n", "-A, --authtype=STRING"); | 893 | printf (" %s\n", "-A, --authtype=STRING"); |
@@ -844,7 +908,7 @@ print_help (void) | |||
844 | printf (UT_VERBOSE); | 908 | printf (UT_VERBOSE); |
845 | 909 | ||
846 | printf("\n"); | 910 | printf("\n"); |
847 | printf ("%s\n", _("Successul connects return STATE_OK, refusals and timeouts return")); | 911 | printf ("%s\n", _("Successful connects return STATE_OK, refusals and timeouts return")); |
848 | printf ("%s\n", _("STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful")); | 912 | printf ("%s\n", _("STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful")); |
849 | printf ("%s\n", _("connects, but incorrect response messages from the host result in")); | 913 | printf ("%s\n", _("connects, but incorrect response messages from the host result in")); |
850 | printf ("%s\n", _("STATE_WARNING return values.")); | 914 | printf ("%s\n", _("STATE_WARNING return values.")); |
@@ -860,6 +924,6 @@ print_usage (void) | |||
860 | printf ("%s\n", _("Usage:")); | 924 | printf ("%s\n", _("Usage:")); |
861 | printf ("%s -H host [-p port] [-4|-6] [-e expect] [-C command] [-R response] [-f from addr]\n", progname); | 925 | printf ("%s -H host [-p port] [-4|-6] [-e expect] [-C command] [-R response] [-f from addr]\n", progname); |
862 | printf ("[-A authtype -U authuser -P authpass] [-w warn] [-c crit] [-t timeout] [-q]\n"); | 926 | printf ("[-A authtype -U authuser -P authpass] [-w warn] [-c crit] [-t timeout] [-q]\n"); |
863 | printf ("[-F fqdn] [-S] [-L] [-D warn days cert expire[,crit days cert expire]] [-v] \n"); | 927 | printf ("[-F fqdn] [-S] [-L] [-D warn days cert expire[,crit days cert expire]] [-r] [--sni] [-v] \n"); |
864 | } | 928 | } |
865 | 929 | ||
diff --git a/plugins/check_snmp.c b/plugins/check_snmp.c index d3968a2..56a586a 100644 --- a/plugins/check_snmp.c +++ b/plugins/check_snmp.c | |||
@@ -46,6 +46,7 @@ const char *email = "devel@monitoring-plugins.org"; | |||
46 | #define DEFAULT_PRIV_PROTOCOL "DES" | 46 | #define DEFAULT_PRIV_PROTOCOL "DES" |
47 | #define DEFAULT_DELIMITER "=" | 47 | #define DEFAULT_DELIMITER "=" |
48 | #define DEFAULT_OUTPUT_DELIMITER " " | 48 | #define DEFAULT_OUTPUT_DELIMITER " " |
49 | #define DEFAULT_BUFFER_SIZE 100 | ||
49 | 50 | ||
50 | #define mark(a) ((a)!=0?"*":"") | 51 | #define mark(a) ((a)!=0?"*":"") |
51 | 52 | ||
@@ -64,6 +65,7 @@ const char *email = "devel@monitoring-plugins.org"; | |||
64 | #define L_RATE_MULTIPLIER CHAR_MAX+2 | 65 | #define L_RATE_MULTIPLIER CHAR_MAX+2 |
65 | #define L_INVERT_SEARCH CHAR_MAX+3 | 66 | #define L_INVERT_SEARCH CHAR_MAX+3 |
66 | #define L_OFFSET CHAR_MAX+4 | 67 | #define L_OFFSET CHAR_MAX+4 |
68 | #define L_IGNORE_MIB_PARSING_ERRORS CHAR_MAX+5 | ||
67 | 69 | ||
68 | /* Gobble to string - stop incrementing c when c[0] match one of the | 70 | /* Gobble to string - stop incrementing c when c[0] match one of the |
69 | * characters in s */ | 71 | * characters in s */ |
@@ -157,6 +159,9 @@ int perf_labels = 1; | |||
157 | char* ip_version = ""; | 159 | char* ip_version = ""; |
158 | double multiplier = 1.0; | 160 | double multiplier = 1.0; |
159 | char *fmtstr = ""; | 161 | char *fmtstr = ""; |
162 | bool fmtstr_set = false; | ||
163 | char buffer[DEFAULT_BUFFER_SIZE]; | ||
164 | bool ignore_mib_parsing_errors = false; | ||
160 | 165 | ||
161 | static char *fix_snmp_range(char *th) | 166 | static char *fix_snmp_range(char *th) |
162 | { | 167 | { |
@@ -304,42 +309,55 @@ main (int argc, char **argv) | |||
304 | } | 309 | } |
305 | 310 | ||
306 | /* 10 arguments to pass before context and authpriv options + 1 for host and numoids. Add one for terminating NULL */ | 311 | /* 10 arguments to pass before context and authpriv options + 1 for host and numoids. Add one for terminating NULL */ |
307 | command_line = calloc (10 + numcontext + numauthpriv + 1 + numoids + 1, sizeof (char *)); | 312 | |
308 | command_line[0] = snmpcmd; | 313 | unsigned index = 0; |
309 | command_line[1] = strdup ("-Le"); | 314 | command_line = calloc (11 + numcontext + numauthpriv + 1 + numoids + 1, sizeof (char *)); |
310 | command_line[2] = strdup ("-t"); | 315 | |
311 | xasprintf (&command_line[3], "%d", timeout_interval); | 316 | command_line[index++] = snmpcmd; |
312 | command_line[4] = strdup ("-r"); | 317 | command_line[index++] = strdup ("-Le"); |
313 | xasprintf (&command_line[5], "%d", retries); | 318 | command_line[index++] = strdup ("-t"); |
314 | command_line[6] = strdup ("-m"); | 319 | xasprintf (&command_line[index++], "%d", timeout_interval); |
315 | command_line[7] = strdup (miblist); | 320 | command_line[index++] = strdup ("-r"); |
316 | command_line[8] = "-v"; | 321 | xasprintf (&command_line[index++], "%d", retries); |
317 | command_line[9] = strdup (proto); | 322 | command_line[index++] = strdup ("-m"); |
323 | command_line[index++] = strdup (miblist); | ||
324 | command_line[index++] = "-v"; | ||
325 | command_line[index++] = strdup (proto); | ||
326 | |||
327 | xasprintf(&cl_hidden_auth, "%s -Le -t %d -r %d -m %s -v %s", | ||
328 | snmpcmd, timeout_interval, retries, strlen(miblist) ? miblist : "''", proto); | ||
329 | |||
330 | if (ignore_mib_parsing_errors) { | ||
331 | command_line[index++] = "-Pe"; | ||
332 | xasprintf(&cl_hidden_auth, "%s -Pe", cl_hidden_auth); | ||
333 | } | ||
334 | |||
318 | 335 | ||
319 | for (i = 0; i < numcontext; i++) { | 336 | for (i = 0; i < numcontext; i++) { |
320 | command_line[10 + i] = contextargs[i]; | 337 | command_line[index++] = contextargs[i]; |
321 | } | 338 | } |
322 | 339 | ||
323 | for (i = 0; i < numauthpriv; i++) { | 340 | for (i = 0; i < numauthpriv; i++) { |
324 | command_line[10 + numcontext + i] = authpriv[i]; | 341 | command_line[index++] = authpriv[i]; |
325 | } | 342 | } |
326 | 343 | ||
327 | xasprintf (&command_line[10 + numcontext + numauthpriv], "%s:%s", server_address, port); | 344 | xasprintf (&command_line[index++], "%s:%s", server_address, port); |
328 | 345 | ||
329 | /* This is just for display purposes, so it can remain a string */ | 346 | xasprintf(&cl_hidden_auth, "%s [context] [authpriv] %s:%s", |
330 | xasprintf(&cl_hidden_auth, "%s -Le -t %d -r %d -m %s -v %s %s %s %s:%s", | 347 | cl_hidden_auth, |
331 | snmpcmd, timeout_interval, retries, strlen(miblist) ? miblist : "''", proto, "[context]", "[authpriv]", | 348 | server_address, |
332 | server_address, port); | 349 | port); |
333 | 350 | ||
334 | for (i = 0; i < numoids; i++) { | 351 | for (i = 0; i < numoids; i++) { |
335 | command_line[10 + numcontext + numauthpriv + 1 + i] = oids[i]; | 352 | command_line[index++] = oids[i]; |
336 | xasprintf(&cl_hidden_auth, "%s %s", cl_hidden_auth, oids[i]); | 353 | xasprintf(&cl_hidden_auth, "%s %s", cl_hidden_auth, oids[i]); |
337 | } | 354 | } |
338 | 355 | ||
339 | command_line[10 + numcontext + numauthpriv + 1 + numoids] = NULL; | 356 | command_line[index++] = NULL; |
340 | 357 | ||
341 | if (verbose) | 358 | if (verbose) { |
342 | printf ("%s\n", cl_hidden_auth); | 359 | printf ("%s\n", cl_hidden_auth); |
360 | } | ||
343 | 361 | ||
344 | /* Set signal handling and alarm */ | 362 | /* Set signal handling and alarm */ |
345 | if (signal (SIGALRM, runcmd_timeout_alarm_handler) == SIG_ERR) { | 363 | if (signal (SIGALRM, runcmd_timeout_alarm_handler) == SIG_ERR) { |
@@ -420,7 +438,8 @@ main (int argc, char **argv) | |||
420 | } | 438 | } |
421 | else if (strstr (response, "INTEGER: ")) { | 439 | else if (strstr (response, "INTEGER: ")) { |
422 | show = multiply (strstr (response, "INTEGER: ") + 9); | 440 | show = multiply (strstr (response, "INTEGER: ") + 9); |
423 | if (fmtstr != "") { | 441 | |
442 | if (fmtstr_set) { | ||
424 | conv = fmtstr; | 443 | conv = fmtstr; |
425 | } | 444 | } |
426 | } | 445 | } |
@@ -594,8 +613,9 @@ main (int argc, char **argv) | |||
594 | len = sizeof(perfstr)-strlen(perfstr)-1; | 613 | len = sizeof(perfstr)-strlen(perfstr)-1; |
595 | strncat(perfstr, show, len>ptr-show ? ptr-show : len); | 614 | strncat(perfstr, show, len>ptr-show ? ptr-show : len); |
596 | 615 | ||
597 | if (type) | 616 | if (strcmp(type, "") != 0) { |
598 | strncat(perfstr, type, sizeof(perfstr)-strlen(perfstr)-1); | 617 | strncat(perfstr, type, sizeof(perfstr)-strlen(perfstr)-1); |
618 | } | ||
599 | 619 | ||
600 | if (warning_thresholds) { | 620 | if (warning_thresholds) { |
601 | strncat(perfstr, ";", sizeof(perfstr)-strlen(perfstr)-1); | 621 | strncat(perfstr, ";", sizeof(perfstr)-strlen(perfstr)-1); |
@@ -706,6 +726,7 @@ process_arguments (int argc, char **argv) | |||
706 | {"ipv6", no_argument, 0, '6'}, | 726 | {"ipv6", no_argument, 0, '6'}, |
707 | {"multiplier", required_argument, 0, 'M'}, | 727 | {"multiplier", required_argument, 0, 'M'}, |
708 | {"fmtstr", required_argument, 0, 'f'}, | 728 | {"fmtstr", required_argument, 0, 'f'}, |
729 | {"ignore-mib-parsing-errors", no_argument, false, L_IGNORE_MIB_PARSING_ERRORS}, | ||
709 | {0, 0, 0, 0} | 730 | {0, 0, 0, 0} |
710 | }; | 731 | }; |
711 | 732 | ||
@@ -853,6 +874,7 @@ process_arguments (int argc, char **argv) | |||
853 | break; | 874 | break; |
854 | case 'R': /* regex */ | 875 | case 'R': /* regex */ |
855 | cflags = REG_ICASE; | 876 | cflags = REG_ICASE; |
877 | // fall through | ||
856 | case 'r': /* regex */ | 878 | case 'r': /* regex */ |
857 | cflags |= REG_EXTENDED | REG_NOSUB | REG_NEWLINE; | 879 | cflags |= REG_EXTENDED | REG_NOSUB | REG_NEWLINE; |
858 | strncpy (regex_expect, optarg, sizeof (regex_expect) - 1); | 880 | strncpy (regex_expect, optarg, sizeof (regex_expect) - 1); |
@@ -969,8 +991,11 @@ process_arguments (int argc, char **argv) | |||
969 | case 'f': | 991 | case 'f': |
970 | if (multiplier != 1.0) { | 992 | if (multiplier != 1.0) { |
971 | fmtstr=optarg; | 993 | fmtstr=optarg; |
994 | fmtstr_set = true; | ||
972 | } | 995 | } |
973 | break; | 996 | break; |
997 | case L_IGNORE_MIB_PARSING_ERRORS: | ||
998 | ignore_mib_parsing_errors = true; | ||
974 | } | 999 | } |
975 | } | 1000 | } |
976 | 1001 | ||
@@ -1169,33 +1194,33 @@ multiply (char *str) | |||
1169 | double val; | 1194 | double val; |
1170 | char *conv = "%f"; | 1195 | char *conv = "%f"; |
1171 | 1196 | ||
1197 | if(multiplier == 1) | ||
1198 | return(str); | ||
1199 | |||
1172 | if(verbose>2) | 1200 | if(verbose>2) |
1173 | printf(" multiply input: %s\n", str); | 1201 | printf(" multiply input: %s\n", str); |
1174 | 1202 | ||
1175 | val = strtod (str, &endptr); | 1203 | val = strtod (str, &endptr); |
1176 | if ((val == 0.0) && (endptr == str)) { | 1204 | if ((val == 0.0) && (endptr == str)) { |
1177 | if(multiplier != 1) { | 1205 | die(STATE_UNKNOWN, _("multiplier set (%.1f), but input is not a number: %s"), multiplier, str); |
1178 | die(STATE_UNKNOWN, _("multiplier set (%.1f), but input is not a number: %s"), multiplier, str); | ||
1179 | } | ||
1180 | return str; | ||
1181 | } | 1206 | } |
1182 | 1207 | ||
1183 | if(verbose>2) | 1208 | if(verbose>2) |
1184 | printf(" multiply extracted double: %f\n", val); | 1209 | printf(" multiply extracted double: %f\n", val); |
1185 | val *= multiplier; | 1210 | val *= multiplier; |
1186 | if (fmtstr != "") { | 1211 | if (fmtstr_set) { |
1187 | conv = fmtstr; | 1212 | conv = fmtstr; |
1188 | } | 1213 | } |
1189 | if (val == (int)val) { | 1214 | if (val == (int)val) { |
1190 | sprintf(str, "%.0f", val); | 1215 | snprintf(buffer, DEFAULT_BUFFER_SIZE, "%.0f", val); |
1191 | } else { | 1216 | } else { |
1192 | if(verbose>2) | 1217 | if(verbose>2) |
1193 | printf(" multiply using format: %s\n", conv); | 1218 | printf(" multiply using format: %s\n", conv); |
1194 | sprintf(str, conv, val); | 1219 | snprintf(buffer, DEFAULT_BUFFER_SIZE, conv, val); |
1195 | } | 1220 | } |
1196 | if(verbose>2) | 1221 | if(verbose>2) |
1197 | printf(" multiply result: %s\n", str); | 1222 | printf(" multiply result: %s\n", buffer); |
1198 | return str; | 1223 | return buffer; |
1199 | } | 1224 | } |
1200 | 1225 | ||
1201 | 1226 | ||
@@ -1272,7 +1297,7 @@ print_help (void) | |||
1272 | printf (" %s\n", "--rate-multiplier"); | 1297 | printf (" %s\n", "--rate-multiplier"); |
1273 | printf (" %s\n", _("Converts rate per second. For example, set to 60 to convert to per minute")); | 1298 | printf (" %s\n", _("Converts rate per second. For example, set to 60 to convert to per minute")); |
1274 | printf (" %s\n", "--offset=OFFSET"); | 1299 | printf (" %s\n", "--offset=OFFSET"); |
1275 | printf (" %s\n", _("Add/substract the specified OFFSET to numeric sensor data")); | 1300 | printf (" %s\n", _("Add/subtract the specified OFFSET to numeric sensor data")); |
1276 | 1301 | ||
1277 | /* Tests Against Strings */ | 1302 | /* Tests Against Strings */ |
1278 | printf (" %s\n", "-s, --string=STRING"); | 1303 | printf (" %s\n", "-s, --string=STRING"); |
@@ -1304,6 +1329,9 @@ print_help (void) | |||
1304 | printf (" %s\n", "-O, --perf-oids"); | 1329 | printf (" %s\n", "-O, --perf-oids"); |
1305 | printf (" %s\n", _("Label performance data with OIDs instead of --label's")); | 1330 | printf (" %s\n", _("Label performance data with OIDs instead of --label's")); |
1306 | 1331 | ||
1332 | printf (" %s\n", "--ignore-mib-parsing-errors"); | ||
1333 | printf (" %s\n", _("Tell snmpget to not print errors encountered when parsing MIB files")); | ||
1334 | |||
1307 | printf (UT_VERBOSE); | 1335 | printf (UT_VERBOSE); |
1308 | 1336 | ||
1309 | printf ("\n"); | 1337 | printf ("\n"); |
diff --git a/plugins/check_swap.c b/plugins/check_swap.c index a607da1..cd965e3 100644 --- a/plugins/check_swap.c +++ b/plugins/check_swap.c | |||
@@ -34,9 +34,6 @@ const char *email = "devel@monitoring-plugins.org"; | |||
34 | #include "common.h" | 34 | #include "common.h" |
35 | #include "popen.h" | 35 | #include "popen.h" |
36 | #include "utils.h" | 36 | #include "utils.h" |
37 | #include <string.h> | ||
38 | #include <math.h> | ||
39 | #include <libintl.h> | ||
40 | 37 | ||
41 | #ifdef HAVE_DECL_SWAPCTL | 38 | #ifdef HAVE_DECL_SWAPCTL |
42 | # ifdef HAVE_SYS_PARAM_H | 39 | # ifdef HAVE_SYS_PARAM_H |
@@ -181,7 +178,7 @@ main (int argc, char **argv) | |||
181 | # ifdef _AIX | 178 | # ifdef _AIX |
182 | if (!allswaps) { | 179 | if (!allswaps) { |
183 | xasprintf(&swap_command, "%s", "/usr/sbin/lsps -s"); | 180 | xasprintf(&swap_command, "%s", "/usr/sbin/lsps -s"); |
184 | xasprintf(&swap_format, "%s", "%f%*s %f"); | 181 | xasprintf(&swap_format, "%s", "%lu%*s %lu"); |
185 | conv_factor = 1; | 182 | conv_factor = 1; |
186 | } | 183 | } |
187 | # endif | 184 | # endif |
@@ -208,9 +205,9 @@ main (int argc, char **argv) | |||
208 | temp_buffer = strtok (input_buffer, " \n"); | 205 | temp_buffer = strtok (input_buffer, " \n"); |
209 | while (temp_buffer) { | 206 | while (temp_buffer) { |
210 | if (strstr (temp_buffer, "blocks")) | 207 | if (strstr (temp_buffer, "blocks")) |
211 | sprintf (str, "%s %s", str, "%f"); | 208 | sprintf (str, "%s %s", str, "%lu"); |
212 | else if (strstr (temp_buffer, "dskfree")) | 209 | else if (strstr (temp_buffer, "dskfree")) |
213 | sprintf (str, "%s %s", str, "%f"); | 210 | sprintf (str, "%s %s", str, "%lu"); |
214 | else | 211 | else |
215 | sprintf (str, "%s %s", str, "%*s"); | 212 | sprintf (str, "%s %s", str, "%*s"); |
216 | temp_buffer = strtok (NULL, " \n"); | 213 | temp_buffer = strtok (NULL, " \n"); |
@@ -555,7 +552,7 @@ validate_arguments (void) | |||
555 | } | 552 | } |
556 | else if ((warn.is_percentage == crit.is_percentage) && (warn.value < crit.value)) { | 553 | else if ((warn.is_percentage == crit.is_percentage) && (warn.value < crit.value)) { |
557 | /* This is NOT triggered if warn and crit are different units, e.g warn is percentage | 554 | /* This is NOT triggered if warn and crit are different units, e.g warn is percentage |
558 | * and crit is absolut. We cannot determine the condition at this point since we | 555 | * and crit is absolute. We cannot determine the condition at this point since we |
559 | * dont know the value of total swap yet | 556 | * dont know the value of total swap yet |
560 | */ | 557 | */ |
561 | usage4(_("Warning should be more than critical")); | 558 | usage4(_("Warning should be more than critical")); |
diff --git a/plugins/check_tcp.c b/plugins/check_tcp.c index 1365b9c..1d307cf 100644 --- a/plugins/check_tcp.c +++ b/plugins/check_tcp.c | |||
@@ -128,7 +128,7 @@ main (int argc, char **argv) | |||
128 | SERVICE[i] = toupper(SERVICE[i]); | 128 | SERVICE[i] = toupper(SERVICE[i]); |
129 | } | 129 | } |
130 | 130 | ||
131 | /* set up a resonable buffer at first (will be realloc()'ed if | 131 | /* set up a reasonable buffer at first (will be realloc()'ed if |
132 | * user specifies other options) */ | 132 | * user specifies other options) */ |
133 | server_expect = calloc(sizeof(char *), 2); | 133 | server_expect = calloc(sizeof(char *), 2); |
134 | 134 | ||
diff --git a/plugins/check_ups.c b/plugins/check_ups.c index 0de37a2..68737c4 100644 --- a/plugins/check_ups.c +++ b/plugins/check_ups.c | |||
@@ -89,7 +89,7 @@ char *ups_status; | |||
89 | int temp_output_c = 0; | 89 | int temp_output_c = 0; |
90 | 90 | ||
91 | int determine_status (void); | 91 | int determine_status (void); |
92 | int get_ups_variable (const char *, char *, size_t); | 92 | int get_ups_variable (const char *, char *); |
93 | 93 | ||
94 | int process_arguments (int, char **); | 94 | int process_arguments (int, char **); |
95 | int validate_arguments (void); | 95 | int validate_arguments (void); |
@@ -189,7 +189,7 @@ main (int argc, char **argv) | |||
189 | } | 189 | } |
190 | 190 | ||
191 | /* get the ups utility voltage if possible */ | 191 | /* get the ups utility voltage if possible */ |
192 | res=get_ups_variable ("input.voltage", temp_buffer, sizeof (temp_buffer)); | 192 | res=get_ups_variable ("input.voltage", temp_buffer); |
193 | if (res == NOSUCHVAR) supported_options &= ~UPS_UTILITY; | 193 | if (res == NOSUCHVAR) supported_options &= ~UPS_UTILITY; |
194 | else if (res != OK) | 194 | else if (res != OK) |
195 | return STATE_CRITICAL; | 195 | return STATE_CRITICAL; |
@@ -224,7 +224,7 @@ main (int argc, char **argv) | |||
224 | } | 224 | } |
225 | 225 | ||
226 | /* get the ups battery percent if possible */ | 226 | /* get the ups battery percent if possible */ |
227 | res=get_ups_variable ("battery.charge", temp_buffer, sizeof (temp_buffer)); | 227 | res=get_ups_variable ("battery.charge", temp_buffer); |
228 | if (res == NOSUCHVAR) supported_options &= ~UPS_BATTPCT; | 228 | if (res == NOSUCHVAR) supported_options &= ~UPS_BATTPCT; |
229 | else if ( res != OK) | 229 | else if ( res != OK) |
230 | return STATE_CRITICAL; | 230 | return STATE_CRITICAL; |
@@ -253,7 +253,7 @@ main (int argc, char **argv) | |||
253 | } | 253 | } |
254 | 254 | ||
255 | /* get the ups load percent if possible */ | 255 | /* get the ups load percent if possible */ |
256 | res=get_ups_variable ("ups.load", temp_buffer, sizeof (temp_buffer)); | 256 | res=get_ups_variable ("ups.load", temp_buffer); |
257 | if ( res == NOSUCHVAR ) supported_options &= ~UPS_LOADPCT; | 257 | if ( res == NOSUCHVAR ) supported_options &= ~UPS_LOADPCT; |
258 | else if ( res != OK) | 258 | else if ( res != OK) |
259 | return STATE_CRITICAL; | 259 | return STATE_CRITICAL; |
@@ -282,7 +282,7 @@ main (int argc, char **argv) | |||
282 | } | 282 | } |
283 | 283 | ||
284 | /* get the ups temperature if possible */ | 284 | /* get the ups temperature if possible */ |
285 | res=get_ups_variable ("ups.temperature", temp_buffer, sizeof (temp_buffer)); | 285 | res=get_ups_variable ("ups.temperature", temp_buffer); |
286 | if ( res == NOSUCHVAR ) supported_options &= ~UPS_TEMP; | 286 | if ( res == NOSUCHVAR ) supported_options &= ~UPS_TEMP; |
287 | else if ( res != OK) | 287 | else if ( res != OK) |
288 | return STATE_CRITICAL; | 288 | return STATE_CRITICAL; |
@@ -342,7 +342,7 @@ determine_status (void) | |||
342 | char *ptr; | 342 | char *ptr; |
343 | int res; | 343 | int res; |
344 | 344 | ||
345 | res=get_ups_variable ("ups.status", recv_buffer, sizeof (recv_buffer)); | 345 | res=get_ups_variable ("ups.status", recv_buffer); |
346 | if (res == NOSUCHVAR) return OK; | 346 | if (res == NOSUCHVAR) return OK; |
347 | if (res != STATE_OK) { | 347 | if (res != STATE_OK) { |
348 | printf ("%s\n", _("Invalid response received from host")); | 348 | printf ("%s\n", _("Invalid response received from host")); |
@@ -388,7 +388,7 @@ determine_status (void) | |||
388 | 388 | ||
389 | /* gets a variable value for a specific UPS */ | 389 | /* gets a variable value for a specific UPS */ |
390 | int | 390 | int |
391 | get_ups_variable (const char *varname, char *buf, size_t buflen) | 391 | get_ups_variable (const char *varname, char *buf) |
392 | { | 392 | { |
393 | /* char command[MAX_INPUT_BUFFER]; */ | 393 | /* char command[MAX_INPUT_BUFFER]; */ |
394 | char temp_buffer[MAX_INPUT_BUFFER]; | 394 | char temp_buffer[MAX_INPUT_BUFFER]; |
@@ -507,7 +507,7 @@ process_arguments (int argc, char **argv) | |||
507 | usage2 (_("Invalid hostname/address"), optarg); | 507 | usage2 (_("Invalid hostname/address"), optarg); |
508 | } | 508 | } |
509 | break; | 509 | break; |
510 | case 'T': /* FIXME: to be improved (ie "-T C" for Celsius or "-T F" for Farenheit) */ | 510 | case 'T': /* FIXME: to be improved (ie "-T C" for Celsius or "-T F" for Fahrenheit) */ |
511 | temp_output_c = 1; | 511 | temp_output_c = 1; |
512 | break; | 512 | break; |
513 | case 'u': /* ups name */ | 513 | case 'u': /* ups name */ |
diff --git a/plugins/check_users.c b/plugins/check_users.c index f6f4b36..2a9ee98 100644 --- a/plugins/check_users.c +++ b/plugins/check_users.c | |||
@@ -1,33 +1,33 @@ | |||
1 | /***************************************************************************** | 1 | /***************************************************************************** |
2 | * | 2 | * |
3 | * Monitoring check_users plugin | 3 | * Monitoring check_users plugin |
4 | * | 4 | * |
5 | * License: GPL | 5 | * License: GPL |
6 | * Copyright (c) 2000-2012 Monitoring Plugins Development Team | 6 | * Copyright (c) 2000-2012 Monitoring Plugins Development Team |
7 | * | 7 | * |
8 | * Description: | 8 | * Description: |
9 | * | 9 | * |
10 | * This file contains the check_users plugin | 10 | * This file contains the check_users plugin |
11 | * | 11 | * |
12 | * This plugin checks the number of users currently logged in on the local | 12 | * This plugin checks the number of users currently logged in on the local |
13 | * system and generates an error if the number exceeds the thresholds | 13 | * system and generates an error if the number exceeds the thresholds |
14 | * specified. | 14 | * specified. |
15 | * | 15 | * |
16 | * | 16 | * |
17 | * This program is free software: you can redistribute it and/or modify | 17 | * This program is free software: you can redistribute it and/or modify |
18 | * it under the terms of the GNU General Public License as published by | 18 | * it under the terms of the GNU General Public License as published by |
19 | * the Free Software Foundation, either version 3 of the License, or | 19 | * the Free Software Foundation, either version 3 of the License, or |
20 | * (at your option) any later version. | 20 | * (at your option) any later version. |
21 | * | 21 | * |
22 | * This program is distributed in the hope that it will be useful, | 22 | * This program is distributed in the hope that it will be useful, |
23 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | 23 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
24 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 24 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
25 | * GNU General Public License for more details. | 25 | * GNU General Public License for more details. |
26 | * | 26 | * |
27 | * You should have received a copy of the GNU General Public License | 27 | * You should have received a copy of the GNU General Public License |
28 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | 28 | * along with this program. If not, see <http://www.gnu.org/licenses/>. |
29 | * | 29 | * |
30 | * | 30 | * |
31 | *****************************************************************************/ | 31 | *****************************************************************************/ |
32 | 32 | ||
33 | const char *progname = "check_users"; | 33 | const char *progname = "check_users"; |
@@ -48,6 +48,11 @@ const char *email = "devel@monitoring-plugins.org"; | |||
48 | # include "popen.h" | 48 | # include "popen.h" |
49 | #endif | 49 | #endif |
50 | 50 | ||
51 | #ifdef HAVE_LIBSYSTEMD | ||
52 | #include <systemd/sd-daemon.h> | ||
53 | #include <systemd/sd-login.h> | ||
54 | #endif | ||
55 | |||
51 | #define possibly_set(a,b) ((a) == 0 ? (b) : 0) | 56 | #define possibly_set(a,b) ((a) == 0 ? (b) : 0) |
52 | 57 | ||
53 | int process_arguments (int, char **); | 58 | int process_arguments (int, char **); |
@@ -85,6 +90,11 @@ main (int argc, char **argv) | |||
85 | 90 | ||
86 | users = 0; | 91 | users = 0; |
87 | 92 | ||
93 | #ifdef HAVE_LIBSYSTEMD | ||
94 | if (sd_booted () > 0) | ||
95 | users = sd_get_sessions (NULL); | ||
96 | else { | ||
97 | #endif | ||
88 | #if HAVE_WTSAPI32_H | 98 | #if HAVE_WTSAPI32_H |
89 | if (!WTSEnumerateSessions(WTS_CURRENT_SERVER_HANDLE, | 99 | if (!WTSEnumerateSessions(WTS_CURRENT_SERVER_HANDLE, |
90 | 0, 1, &wtsinfo, &wtscount)) { | 100 | 0, 1, &wtsinfo, &wtscount)) { |
@@ -156,6 +166,9 @@ main (int argc, char **argv) | |||
156 | if (spclose (child_process)) | 166 | if (spclose (child_process)) |
157 | result = possibly_set (result, STATE_UNKNOWN); | 167 | result = possibly_set (result, STATE_UNKNOWN); |
158 | #endif | 168 | #endif |
169 | #ifdef HAVE_LIBSYSTEMD | ||
170 | } | ||
171 | #endif | ||
159 | 172 | ||
160 | /* check the user count against warning and critical thresholds */ | 173 | /* check the user count against warning and critical thresholds */ |
161 | result = get_status((double)users, thlds); | 174 | result = get_status((double)users, thlds); |
@@ -163,7 +176,7 @@ main (int argc, char **argv) | |||
163 | if (result == STATE_UNKNOWN) | 176 | if (result == STATE_UNKNOWN) |
164 | printf ("%s\n", _("Unable to read output")); | 177 | printf ("%s\n", _("Unable to read output")); |
165 | else { | 178 | else { |
166 | printf (_("USERS %s - %d users currently logged in |%s\n"), | 179 | printf (_("USERS %s - %d users currently logged in |%s\n"), |
167 | state_text(result), users, | 180 | state_text(result), users, |
168 | sperfdata_int("users", users, "", warning_range, | 181 | sperfdata_int("users", users, "", warning_range, |
169 | critical_range, TRUE, 0, FALSE, 0)); | 182 | critical_range, TRUE, 0, FALSE, 0)); |
diff --git a/plugins/picohttpparser/picohttpparser.c b/plugins/picohttpparser/picohttpparser.c index d9680b7..d0bfac6 100644 --- a/plugins/picohttpparser/picohttpparser.c +++ b/plugins/picohttpparser/picohttpparser.c | |||
@@ -400,7 +400,7 @@ int phr_parse_request(const char *buf_start, size_t len, const char **method, si | |||
400 | *num_headers = 0; | 400 | *num_headers = 0; |
401 | 401 | ||
402 | /* if last_len != 0, check if the request is complete (a fast countermeasure | 402 | /* if last_len != 0, check if the request is complete (a fast countermeasure |
403 | againt slowloris */ | 403 | against slowloris */ |
404 | if (last_len != 0 && is_complete(buf, buf_end, last_len, &r) == NULL) { | 404 | if (last_len != 0 && is_complete(buf, buf_end, last_len, &r) == NULL) { |
405 | return r; | 405 | return r; |
406 | } | 406 | } |
@@ -435,7 +435,7 @@ static const char *parse_response(const char *buf, const char *buf_end, int *maj | |||
435 | } | 435 | } |
436 | PARSE_INT_3(status); | 436 | PARSE_INT_3(status); |
437 | 437 | ||
438 | /* get message includig preceding space */ | 438 | /* get message including preceding space */ |
439 | if ((buf = get_token_to_eol(buf, buf_end, msg, msg_len, ret)) == NULL) { | 439 | if ((buf = get_token_to_eol(buf, buf_end, msg, msg_len, ret)) == NULL) { |
440 | return NULL; | 440 | return NULL; |
441 | } | 441 | } |
diff --git a/plugins/popen.c b/plugins/popen.c index 9eb49b6..723817d 100644 --- a/plugins/popen.c +++ b/plugins/popen.c | |||
@@ -14,7 +14,7 @@ | |||
14 | * FILE * spopen(const char *); | 14 | * FILE * spopen(const char *); |
15 | * int spclose(FILE *); | 15 | * int spclose(FILE *); |
16 | * | 16 | * |
17 | * Code taken with liitle modification from "Advanced Programming for the Unix | 17 | * Code taken with little modification from "Advanced Programming for the Unix |
18 | * Environment" by W. Richard Stevens | 18 | * Environment" by W. Richard Stevens |
19 | * | 19 | * |
20 | * This is considered safe in that no shell is spawned, and the environment | 20 | * This is considered safe in that no shell is spawned, and the environment |
diff --git a/plugins/runcmd.c b/plugins/runcmd.c index a7155d2..102191e 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) |
@@ -114,10 +116,6 @@ np_runcmd_open(const char *cmdstring, int *pfd, int *pfderr) | |||
114 | env[0] = strdup("LC_ALL=C"); | 116 | env[0] = strdup("LC_ALL=C"); |
115 | env[1] = '\0'; | 117 | env[1] = '\0'; |
116 | 118 | ||
117 | /* if no command was passed, return with no error */ | ||
118 | if (cmdstring == NULL) | ||
119 | return -1; | ||
120 | |||
121 | /* make copy of command string so strtok() doesn't silently modify it */ | 119 | /* make copy of command string so strtok() doesn't silently modify it */ |
122 | /* (the calling program may want to access it later) */ | 120 | /* (the calling program may want to access it later) */ |
123 | cmdlen = strlen(cmdstring); | 121 | cmdlen = strlen(cmdstring); |
@@ -203,7 +201,7 @@ np_runcmd_open(const char *cmdstring, int *pfd, int *pfderr) | |||
203 | } | 201 | } |
204 | 202 | ||
205 | /* parent picks up execution here */ | 203 | /* parent picks up execution here */ |
206 | /* close childs descriptors in our address space */ | 204 | /* close children descriptors in our address space */ |
207 | close(pfd[1]); | 205 | close(pfd[1]); |
208 | close(pfderr[1]); | 206 | close(pfderr[1]); |
209 | 207 | ||
diff --git a/plugins/t/check_by_ssh.t b/plugins/t/check_by_ssh.t index 1d2939e..b6479f1 100644 --- a/plugins/t/check_by_ssh.t +++ b/plugins/t/check_by_ssh.t | |||
@@ -19,19 +19,19 @@ plan skip_all => "SSH_HOST and SSH_IDENTITY must be defined" unless ($ssh_servic | |||
19 | plan tests => 42; | 19 | plan tests => 42; |
20 | 20 | ||
21 | # Some random check strings/response | 21 | # Some random check strings/response |
22 | my @responce = ('OK: Everything is fine', | 22 | my @response = ('OK: Everything is fine', |
23 | 'WARNING: Hey, pick me, pick me', | 23 | 'WARNING: Hey, pick me, pick me', |
24 | 'CRITICAL: Shit happens', | 24 | 'CRITICAL: Shit happens', |
25 | 'UNKNOWN: What can I do for ya', | 25 | 'UNKNOWN: What can I do for ya', |
26 | 'WOOPS: What did I smoke', | 26 | 'WOOPS: What did I smoke', |
27 | ); | 27 | ); |
28 | my @responce_re; | 28 | my @response_re; |
29 | my @check; | 29 | my @check; |
30 | for (@responce) { | 30 | for (@response) { |
31 | push(@check, "echo $_"); | 31 | push(@check, "echo $_"); |
32 | my $re_str = $_; | 32 | my $re_str = $_; |
33 | $re_str =~ s{(.)} { "\Q$1" }ge; | 33 | $re_str =~ s{(.)} { "\Q$1" }ge; |
34 | push(@responce_re, $re_str); | 34 | push(@response_re, $re_str); |
35 | } | 35 | } |
36 | 36 | ||
37 | my $result; | 37 | my $result; |
@@ -47,7 +47,7 @@ for (my $i=0; $i<4; $i++) { | |||
47 | "./check_by_ssh -i $ssh_key -H $ssh_service -C '$check[$i]; exit $i'" | 47 | "./check_by_ssh -i $ssh_key -H $ssh_service -C '$check[$i]; exit $i'" |
48 | ); | 48 | ); |
49 | cmp_ok($result->return_code, '==', $i, "Exit with return code $i"); | 49 | cmp_ok($result->return_code, '==', $i, "Exit with return code $i"); |
50 | is($result->output, $responce[$i], "Status text is correct for check $i"); | 50 | is($result->output, $response[$i], "Status text is correct for check $i"); |
51 | } | 51 | } |
52 | 52 | ||
53 | $result = NPTest->testCmd( | 53 | $result = NPTest->testCmd( |
@@ -84,7 +84,7 @@ $result = NPTest->testCmd( | |||
84 | "./check_by_ssh -i $ssh_key -H $ssh_service -C '$check[4]; exit 8'" | 84 | "./check_by_ssh -i $ssh_key -H $ssh_service -C '$check[4]; exit 8'" |
85 | ); | 85 | ); |
86 | cmp_ok($result->return_code, '==', 8, "Exit with return code 8 (out of bounds)"); | 86 | cmp_ok($result->return_code, '==', 8, "Exit with return code 8 (out of bounds)"); |
87 | is($result->output, $responce[4], "Return proper status text even with unknown status codes"); | 87 | is($result->output, $response[4], "Return proper status text even with unknown status codes"); |
88 | 88 | ||
89 | $result = NPTest->testCmd( | 89 | $result = NPTest->testCmd( |
90 | "./check_by_ssh -i $ssh_key -H $ssh_service -F $ssh_conf -C 'exit 0'" | 90 | "./check_by_ssh -i $ssh_key -H $ssh_service -F $ssh_conf -C 'exit 0'" |
@@ -108,7 +108,7 @@ my %linemap = ( | |||
108 | foreach my $line (0, 2, 4, 6) { | 108 | foreach my $line (0, 2, 4, 6) { |
109 | my $code = $linemap{$line}; | 109 | my $code = $linemap{$line}; |
110 | my $statline = $line+1; | 110 | my $statline = $line+1; |
111 | is($lines[$line], "$responce[$code]", "multiple checks status text is correct for line $line"); | 111 | is($lines[$line], "$response[$code]", "multiple checks status text is correct for line $line"); |
112 | is($lines[$statline], "STATUS CODE: $code", "multiple check status code is correct for line $line"); | 112 | is($lines[$statline], "STATUS CODE: $code", "multiple check status code is correct for line $line"); |
113 | } | 113 | } |
114 | 114 | ||
@@ -124,7 +124,7 @@ close(PASV) or die("Unable to close '/tmp/check_by_ssh.$$': $!"); | |||
124 | cmp_ok(scalar(@pasv), '==', 1, 'One passive result for one check performed'); | 124 | cmp_ok(scalar(@pasv), '==', 1, 'One passive result for one check performed'); |
125 | for (0) { | 125 | for (0) { |
126 | if ($pasv[$_]) { | 126 | if ($pasv[$_]) { |
127 | like($pasv[$_], '/^\[\d+\] PROCESS_SERVICE_CHECK_RESULT;flint;serv;2;' . $responce_re[2] . '$/', 'proper result for passive check'); | 127 | like($pasv[$_], '/^\[\d+\] PROCESS_SERVICE_CHECK_RESULT;flint;serv;2;' . $response_re[2] . '$/', 'proper result for passive check'); |
128 | } else { | 128 | } else { |
129 | fail('proper result for passive check'); | 129 | fail('proper result for passive check'); |
130 | } | 130 | } |
@@ -144,7 +144,7 @@ for (0, 1, 2, 3, 4) { | |||
144 | if ($pasv[$_]) { | 144 | if ($pasv[$_]) { |
145 | my $ret = $_; | 145 | my $ret = $_; |
146 | $ret = 9 if ($_ == 4); | 146 | $ret = 9 if ($_ == 4); |
147 | like($pasv[$_], '/^\[\d+\] PROCESS_SERVICE_CHECK_RESULT;flint;c' . $_ . ';' . $ret . ';' . $responce_re[$_] . '$/', "proper result for passive check $_"); | 147 | like($pasv[$_], '/^\[\d+\] PROCESS_SERVICE_CHECK_RESULT;flint;c' . $_ . ';' . $ret . ';' . $response_re[$_] . '$/', "proper result for passive check $_"); |
148 | } else { | 148 | } else { |
149 | fail("proper result for passive check $_"); | 149 | fail("proper result for passive check $_"); |
150 | } | 150 | } |
diff --git a/plugins/t/check_disk.t b/plugins/t/check_disk.t index c8f08f5..ca035ce 100644 --- a/plugins/t/check_disk.t +++ b/plugins/t/check_disk.t | |||
@@ -326,19 +326,19 @@ cmp_ok( $result->return_code, '==', 0, "grouping: exit ok if the sum of free meg | |||
326 | $result = NPTest->testCmd( "./check_disk -w ". ($free_mb_on_all - 1) ." -c ". ($free_mb_on_all - 1) ." -p $mountpoint_valid -g group -p $mountpoint2_valid" ); | 326 | $result = NPTest->testCmd( "./check_disk -w ". ($free_mb_on_all - 1) ." -c ". ($free_mb_on_all - 1) ." -p $mountpoint_valid -g group -p $mountpoint2_valid" ); |
327 | cmp_ok( $result->return_code, '==', 3, "Invalid options: -p must come after groupname"); | 327 | cmp_ok( $result->return_code, '==', 3, "Invalid options: -p must come after groupname"); |
328 | 328 | ||
329 | # regex: exit unknown if given regex is not compileable | 329 | # regex: exit unknown if given regex is not compilable |
330 | $result = NPTest->testCmd( "./check_disk -w 1 -c 1 -r '('" ); | 330 | $result = NPTest->testCmd( "./check_disk -w 1 -c 1 -r '('" ); |
331 | cmp_ok( $result->return_code, '==', 3, "Exit UNKNOWN if regex is not compileable"); | 331 | cmp_ok( $result->return_code, '==', 3, "Exit UNKNOWN if regex is not compilable"); |
332 | 332 | ||
333 | # ignore: exit unknown, if all pathes are deselected using -i | 333 | # ignore: exit unknown, if all paths are deselected using -i |
334 | $result = NPTest->testCmd( "./check_disk -w 0% -c 0% -p $mountpoint_valid -p $mountpoint2_valid -i '$mountpoint_valid' -i '$mountpoint2_valid'" ); | 334 | $result = NPTest->testCmd( "./check_disk -w 0% -c 0% -p $mountpoint_valid -p $mountpoint2_valid -i '$mountpoint_valid' -i '$mountpoint2_valid'" ); |
335 | cmp_ok( $result->return_code, '==', 3, "ignore-ereg: Unknown if all fs are ignored (case sensitive)"); | 335 | cmp_ok( $result->return_code, '==', 3, "ignore-ereg: Unknown if all fs are ignored (case sensitive)"); |
336 | 336 | ||
337 | # ignore: exit unknown, if all pathes are deselected using -I | 337 | # ignore: exit unknown, if all paths are deselected using -I |
338 | $result = NPTest->testCmd( "./check_disk -w 0% -c 0% -p $mountpoint_valid -p $mountpoint2_valid -I '".uc($mountpoint_valid)."' -I '".uc($mountpoint2_valid)."'" ); | 338 | $result = NPTest->testCmd( "./check_disk -w 0% -c 0% -p $mountpoint_valid -p $mountpoint2_valid -I '".uc($mountpoint_valid)."' -I '".uc($mountpoint2_valid)."'" ); |
339 | cmp_ok( $result->return_code, '==', 3, "ignore-ereg: Unknown if all fs are ignored (case insensitive)"); | 339 | cmp_ok( $result->return_code, '==', 3, "ignore-ereg: Unknown if all fs are ignored (case insensitive)"); |
340 | 340 | ||
341 | # ignore: exit unknown, if all pathes are deselected using -i | 341 | # ignore: exit unknown, if all paths are deselected using -i |
342 | $result = NPTest->testCmd( "./check_disk -w 0% -c 0% -p $mountpoint_valid -p $mountpoint2_valid -i '.*'" ); | 342 | $result = NPTest->testCmd( "./check_disk -w 0% -c 0% -p $mountpoint_valid -p $mountpoint2_valid -i '.*'" ); |
343 | cmp_ok( $result->return_code, '==', 3, "ignore-ereg: Unknown if all fs are ignored using -i '.*'"); | 343 | cmp_ok( $result->return_code, '==', 3, "ignore-ereg: Unknown if all fs are ignored using -i '.*'"); |
344 | 344 | ||
@@ -347,7 +347,7 @@ $result = NPTest->testCmd( "./check_disk -w 0% -c 0% -p $mountpoint_valid -p $mo | |||
347 | like( $result->output, qr/$mountpoint_valid/, "output data does have $mountpoint_valid in it"); | 347 | like( $result->output, qr/$mountpoint_valid/, "output data does have $mountpoint_valid in it"); |
348 | unlike( $result->output, qr/$mountpoint2_valid/, "output data does not have $mountpoint2_valid in it"); | 348 | unlike( $result->output, qr/$mountpoint2_valid/, "output data does not have $mountpoint2_valid in it"); |
349 | 349 | ||
350 | # ignore: test if all pathes are listed when ignore regex doesn't match | 350 | # ignore: test if all paths are listed when ignore regex doesn't match |
351 | $result = NPTest->testCmd( "./check_disk -w 0% -c 0% -p $mountpoint_valid -p $mountpoint2_valid -i '^barbazJodsf\$'"); | 351 | $result = NPTest->testCmd( "./check_disk -w 0% -c 0% -p $mountpoint_valid -p $mountpoint2_valid -i '^barbazJodsf\$'"); |
352 | like( $result->output, qr/$mountpoint_valid/, "ignore: output data does have $mountpoint_valid when regex doesn't match"); | 352 | like( $result->output, qr/$mountpoint_valid/, "ignore: output data does have $mountpoint_valid when regex doesn't match"); |
353 | like( $result->output, qr/$mountpoint2_valid/,"ignore: output data does have $mountpoint2_valid when regex doesn't match"); | 353 | like( $result->output, qr/$mountpoint2_valid/,"ignore: output data does have $mountpoint2_valid when regex doesn't match"); |
diff --git a/plugins/t/check_http.t b/plugins/t/check_http.t index 1ca52f6..1f2fbdf 100644 --- a/plugins/t/check_http.t +++ b/plugins/t/check_http.t | |||
@@ -178,13 +178,13 @@ SKIP: { | |||
178 | 178 | ||
179 | $res = NPTest->testCmd( "./$plugin -I $host_tcp_proxy -p $port_tcp_proxy -u http://$host_tcp_http -e 200,301,302"); | 179 | $res = NPTest->testCmd( "./$plugin -I $host_tcp_proxy -p $port_tcp_proxy -u http://$host_tcp_http -e 200,301,302"); |
180 | is( $res->return_code, 0, "Proxy HTTP works"); | 180 | is( $res->return_code, 0, "Proxy HTTP works"); |
181 | like($res->output, qr/OK: Status line output matched/, "Proxy HTTP Output is sufficent"); | 181 | like($res->output, qr/OK: Status line output matched/, "Proxy HTTP Output is sufficient"); |
182 | 182 | ||
183 | $res = NPTest->testCmd( "./$plugin -I $host_tcp_proxy -p $port_tcp_proxy -H $host_tls_http -S -j CONNECT"); | 183 | $res = NPTest->testCmd( "./$plugin -I $host_tcp_proxy -p $port_tcp_proxy -H $host_tls_http -S -j CONNECT"); |
184 | is( $res->return_code, 0, "Proxy HTTP CONNECT works"); | 184 | is( $res->return_code, 0, "Proxy HTTP CONNECT works"); |
185 | like($res->output, qr/HTTP OK:/, "Proxy HTTP CONNECT output sufficent"); | 185 | like($res->output, qr/HTTP OK:/, "Proxy HTTP CONNECT output sufficient"); |
186 | 186 | ||
187 | $res = NPTest->testCmd( "./$plugin -I $host_tcp_proxy -p $port_tcp_proxy -H $host_tls_http -S -j CONNECT:HEAD"); | 187 | $res = NPTest->testCmd( "./$plugin -I $host_tcp_proxy -p $port_tcp_proxy -H $host_tls_http -S -j CONNECT:HEAD"); |
188 | is( $res->return_code, 0, "Proxy HTTP CONNECT works with override method"); | 188 | is( $res->return_code, 0, "Proxy HTTP CONNECT works with override method"); |
189 | like($res->output, qr/HTTP OK:/, "Proxy HTTP CONNECT output sufficent"); | 189 | like($res->output, qr/HTTP OK:/, "Proxy HTTP CONNECT output sufficient"); |
190 | } | 190 | } |
diff --git a/plugins/t/check_mysql.t b/plugins/t/check_mysql.t index e426bf5..baf3acc 100644 --- a/plugins/t/check_mysql.t +++ b/plugins/t/check_mysql.t | |||
@@ -5,7 +5,7 @@ | |||
5 | # | 5 | # |
6 | # | 6 | # |
7 | # These are the database permissions required for this test: | 7 | # These are the database permissions required for this test: |
8 | # GRANT SELECT ON $db.* TO $user@$host INDENTIFIED BY '$password'; | 8 | # GRANT SELECT ON $db.* TO $user@$host IDENTIFIED BY '$password'; |
9 | # GRANT SUPER, REPLICATION CLIENT ON *.* TO $user@$host; | 9 | # GRANT SUPER, REPLICATION CLIENT ON *.* TO $user@$host; |
10 | # Check with: | 10 | # Check with: |
11 | # mysql -u$user -p$password -h$host $db | 11 | # mysql -u$user -p$password -h$host $db |
@@ -23,9 +23,9 @@ plan tests => 15; | |||
23 | my $bad_login_output = '/Access denied for user /'; | 23 | my $bad_login_output = '/Access denied for user /'; |
24 | my $mysqlserver = getTestParameter("NP_MYSQL_SERVER", "A MySQL Server hostname or IP with no slaves setup"); | 24 | my $mysqlserver = getTestParameter("NP_MYSQL_SERVER", "A MySQL Server hostname or IP with no slaves setup"); |
25 | my $mysqlsocket = getTestParameter("NP_MYSQL_SOCKET", "Full path to a MySQL Server socket with no slaves setup"); | 25 | my $mysqlsocket = getTestParameter("NP_MYSQL_SOCKET", "Full path to a MySQL Server socket with no slaves setup"); |
26 | my $mysql_login_details = getTestParameter("NP_MYSQL_LOGIN_DETAILS", "Command line parameters to specify login access (requires REPLICATION CLIENT privleges)", "-u test -ptest"); | 26 | my $mysql_login_details = getTestParameter("NP_MYSQL_LOGIN_DETAILS", "Command line parameters to specify login access (requires REPLICATION CLIENT privileges)", "-u test -ptest"); |
27 | my $with_slave = getTestParameter("NP_MYSQL_WITH_SLAVE", "MySQL server with slaves setup"); | 27 | my $with_slave = getTestParameter("NP_MYSQL_WITH_SLAVE", "MySQL server with slaves setup"); |
28 | my $with_slave_login = getTestParameter("NP_MYSQL_WITH_SLAVE_LOGIN", "Login details for server with slave (requires REPLICATION CLIENT privleges)", $mysql_login_details || "-u test -ptest"); | 28 | my $with_slave_login = getTestParameter("NP_MYSQL_WITH_SLAVE_LOGIN", "Login details for server with slave (requires REPLICATION CLIENT privileges)", $mysql_login_details || "-u test -ptest"); |
29 | 29 | ||
30 | my $result; | 30 | my $result; |
31 | 31 | ||
diff --git a/plugins/t/check_mysql_query.t b/plugins/t/check_mysql_query.t index 96899ac..c30245b 100644 --- a/plugins/t/check_mysql_query.t +++ b/plugins/t/check_mysql_query.t | |||
@@ -31,7 +31,7 @@ $result = NPTest->testCmd("./check_mysql_query -q 'SELECT 1+1' -H $mysqlserver $ | |||
31 | cmp_ok( $result->return_code, '==', 0, "Can run query"); | 31 | cmp_ok( $result->return_code, '==', 0, "Can run query"); |
32 | 32 | ||
33 | $result = NPTest->testCmd("./check_mysql_query -H $mysqlserver $mysql_login_details"); | 33 | $result = NPTest->testCmd("./check_mysql_query -H $mysqlserver $mysql_login_details"); |
34 | cmp_ok( $result->return_code, '==', 3, "Missing query parmeter"); | 34 | cmp_ok( $result->return_code, '==', 3, "Missing query parameter"); |
35 | like( $result->output, "/Must specify a SQL query to run/", "Missing query error message"); | 35 | like( $result->output, "/Must specify a SQL query to run/", "Missing query error message"); |
36 | 36 | ||
37 | $result = NPTest->testCmd("./check_mysql_query -q 'SELECT 1+1' -H $mysqlserver -u dummy -d mysql"); | 37 | $result = NPTest->testCmd("./check_mysql_query -q 'SELECT 1+1' -H $mysqlserver -u dummy -d mysql"); |
diff --git a/plugins/t/check_nagios.t b/plugins/t/check_nagios.t index 81fc24d..f38f5e9 100644 --- a/plugins/t/check_nagios.t +++ b/plugins/t/check_nagios.t | |||
@@ -36,7 +36,7 @@ cmp_ok( $result->return_code, '==', 1, "Log over 5 minutes old" ); | |||
36 | like ( $result->output, $warningOutput, "Output for warning correct" ); | 36 | like ( $result->output, $warningOutput, "Output for warning correct" ); |
37 | 37 | ||
38 | my $now = time; | 38 | my $now = time; |
39 | # This substitution is dependant on the testcase | 39 | # This substitution is dependent on the testcase |
40 | system( "perl -pe 's/1133537544/$now/' $nagios1 > $nagios1.tmp" ) == 0 or die "Problem with munging $nagios1"; | 40 | system( "perl -pe 's/1133537544/$now/' $nagios1 > $nagios1.tmp" ) == 0 or die "Problem with munging $nagios1"; |
41 | 41 | ||
42 | $result = NPTest->testCmd( | 42 | $result = NPTest->testCmd( |
diff --git a/plugins/t/check_smtp.t b/plugins/t/check_smtp.t index aa6dae4..1a1ebe3 100644 --- a/plugins/t/check_smtp.t +++ b/plugins/t/check_smtp.t | |||
@@ -8,12 +8,14 @@ use strict; | |||
8 | use Test::More; | 8 | use Test::More; |
9 | use NPTest; | 9 | use NPTest; |
10 | 10 | ||
11 | my $host_tcp_smtp = getTestParameter( "NP_HOST_TCP_SMTP", | 11 | my $host_tcp_smtp = getTestParameter( "NP_HOST_TCP_SMTP", |
12 | "A host providing an SMTP Service (a mail server)", "mailhost"); | 12 | "A host providing an SMTP Service (a mail server)", "mailhost"); |
13 | my $host_tcp_smtp_tls = getTestParameter( "NP_HOST_TCP_SMTP_TLS", | 13 | my $host_tcp_smtp_starttls = getTestParameter( "NP_HOST_TCP_SMTP_STARTTLS", |
14 | "A host providing SMTP with STARTTLS", $host_tcp_smtp); | ||
15 | my $host_tcp_smtp_nostarttls = getTestParameter( "NP_HOST_TCP_SMTP_NOSTARTTLS", | ||
16 | "A host providing SMTP without STARTTLS", ""); | ||
17 | my $host_tcp_smtp_tls = getTestParameter( "NP_HOST_TCP_SMTP_TLS", | ||
14 | "A host providing SMTP with TLS", $host_tcp_smtp); | 18 | "A host providing SMTP with TLS", $host_tcp_smtp); |
15 | my $host_tcp_smtp_notls = getTestParameter( "NP_HOST_TCP_SMTP_NOTLS", | ||
16 | "A host providing SMTP without TLS", ""); | ||
17 | 19 | ||
18 | my $host_nonresponsive = getTestParameter( "NP_HOST_NONRESPONSIVE", | 20 | my $host_nonresponsive = getTestParameter( "NP_HOST_NONRESPONSIVE", |
19 | "The hostname of system not responsive to network requests", "10.0.0.1" ); | 21 | "The hostname of system not responsive to network requests", "10.0.0.1" ); |
@@ -22,7 +24,7 @@ my $hostname_invalid = getTestParameter( "NP_HOSTNAME_INVALID", | |||
22 | "An invalid (not known to DNS) hostname", "nosuchhost" ); | 24 | "An invalid (not known to DNS) hostname", "nosuchhost" ); |
23 | my $res; | 25 | my $res; |
24 | 26 | ||
25 | plan tests => 10; | 27 | plan tests => 16; |
26 | 28 | ||
27 | SKIP: { | 29 | SKIP: { |
28 | skip "No SMTP server defined", 4 unless $host_tcp_smtp; | 30 | skip "No SMTP server defined", 4 unless $host_tcp_smtp; |
@@ -42,22 +44,38 @@ SKIP: { | |||
42 | local $TODO = "Output is over two lines"; | 44 | local $TODO = "Output is over two lines"; |
43 | like ( $res->output, qr/^SMTP WARNING/, "Correct error message" ); | 45 | like ( $res->output, qr/^SMTP WARNING/, "Correct error message" ); |
44 | } | 46 | } |
47 | |||
48 | $res = NPTest->testCmd( "./check_smtp -H $host_tcp_smtp --ssl -p 25" ); | ||
49 | is ($res->return_code, 2, "Check rc of connecting to $host_tcp_smtp with TLS on standard SMTP port" ); | ||
50 | like ($res->output, qr/^CRITICAL - Cannot make SSL connection\./, "Check output of connecting to $host_tcp_smtp with TLS on standard SMTP port"); | ||
45 | } | 51 | } |
46 | 52 | ||
47 | SKIP: { | 53 | SKIP: { |
48 | skip "No SMTP server with TLS defined", 1 unless $host_tcp_smtp_tls; | 54 | skip "No SMTP server with STARTTLS defined", 1 unless $host_tcp_smtp_starttls; |
49 | # SSL connection for TLS | 55 | # SSL connection for STARTTLS |
50 | $res = NPTest->testCmd( "./check_smtp -H $host_tcp_smtp_tls -p 25 -S" ); | 56 | $res = NPTest->testCmd( "./check_smtp -H $host_tcp_smtp_starttls -p 25 -S" ); |
51 | is ($res->return_code, 0, "OK, with STARTTLS" ); | 57 | is ($res->return_code, 0, "OK, with STARTTLS" ); |
52 | } | 58 | } |
53 | 59 | ||
54 | SKIP: { | 60 | SKIP: { |
55 | skip "No SMTP server without TLS defined", 2 unless $host_tcp_smtp_notls; | 61 | skip "No SMTP server without STARTTLS defined", 2 unless $host_tcp_smtp_nostarttls; |
56 | $res = NPTest->testCmd( "./check_smtp -H $host_tcp_smtp_notls -p 25 -S" ); | 62 | $res = NPTest->testCmd( "./check_smtp -H $host_tcp_smtp_nostarttls -p 25 -S" ); |
57 | is ($res->return_code, 1, "OK, got warning from server without TLS"); | 63 | is ($res->return_code, 1, "OK, got warning from server without STARTTLS"); |
58 | is ($res->output, "WARNING - TLS not supported by server", "Right error message" ); | 64 | is ($res->output, "WARNING - TLS not supported by server", "Right error message" ); |
59 | } | 65 | } |
60 | 66 | ||
67 | SKIP: { | ||
68 | skip "No SMTP server with TLS defined", 1 unless $host_tcp_smtp_tls; | ||
69 | $res = NPTest->testCmd( "./check_smtp -H $host_tcp_smtp_tls --ssl" ); | ||
70 | is ($res->return_code, 0, "Check rc of connecting to $host_tcp_smtp_tls with TLS" ); | ||
71 | like ($res->output, qr/^SMTP OK - /, "Check output of connecting to $host_tcp_smtp_tls with TLS" ); | ||
72 | |||
73 | my $unused_port = 4465; | ||
74 | $res = NPTest->testCmd( "./check_smtp -H $host_tcp_smtp_tls -p $unused_port --ssl" ); | ||
75 | is ($res->return_code, 2, "Check rc of connecting to $host_tcp_smtp_tls with TLS on unused port $unused_port" ); | ||
76 | like ($res->output, qr/^connect to address $host_tcp_smtp_tls and port $unused_port: Connection refused/, "Check output of connecting to $host_tcp_smtp_tls with TLS on unused port $unused_port"); | ||
77 | } | ||
78 | |||
61 | $res = NPTest->testCmd( "./check_smtp $host_nonresponsive" ); | 79 | $res = NPTest->testCmd( "./check_smtp $host_nonresponsive" ); |
62 | is ($res->return_code, 2, "CRITICAL - host non responding" ); | 80 | is ($res->return_code, 2, "CRITICAL - host non responding" ); |
63 | 81 | ||
diff --git a/plugins/t/check_snmp.t b/plugins/t/check_snmp.t index f2f218f..576cc50 100644 --- a/plugins/t/check_snmp.t +++ b/plugins/t/check_snmp.t | |||
@@ -26,22 +26,22 @@ $res = NPTest->testCmd( "./check_snmp -t 1" ); | |||
26 | is( $res->return_code, 3, "No host name" ); | 26 | is( $res->return_code, 3, "No host name" ); |
27 | is( $res->output, "No host specified" ); | 27 | is( $res->output, "No host specified" ); |
28 | 28 | ||
29 | $res = NPTest->testCmd( "./check_snmp -H fakehostname" ); | 29 | $res = NPTest->testCmd( "./check_snmp -H fakehostname --ignore-mib-parsing-errors" ); |
30 | is( $res->return_code, 3, "No OIDs specified" ); | 30 | is( $res->return_code, 3, "No OIDs specified" ); |
31 | is( $res->output, "No OIDs specified" ); | 31 | is( $res->output, "No OIDs specified" ); |
32 | 32 | ||
33 | $res = NPTest->testCmd( "./check_snmp -H fakehost -o oids -P 3 -U not_a_user --seclevel=rubbish" ); | 33 | $res = NPTest->testCmd( "./check_snmp -H fakehost --ignore-mib-parsing-errors -o oids -P 3 -U not_a_user --seclevel=rubbish" ); |
34 | is( $res->return_code, 3, "Invalid seclevel" ); | 34 | is( $res->return_code, 3, "Invalid seclevel" ); |
35 | like( $res->output, "/check_snmp: Invalid seclevel - rubbish/" ); | 35 | like( $res->output, "/check_snmp: Invalid seclevel - rubbish/" ); |
36 | 36 | ||
37 | $res = NPTest->testCmd( "./check_snmp -H fakehost -o oids -P 3c" ); | 37 | $res = NPTest->testCmd( "./check_snmp -H fakehost --ignore-mib-parsing-errors -o oids -P 3c" ); |
38 | is( $res->return_code, 3, "Invalid protocol" ); | 38 | is( $res->return_code, 3, "Invalid protocol" ); |
39 | like( $res->output, "/check_snmp: Invalid SNMP version - 3c/" ); | 39 | like( $res->output, "/check_snmp: Invalid SNMP version - 3c/" ); |
40 | 40 | ||
41 | SKIP: { | 41 | SKIP: { |
42 | skip "no snmp host defined", 50 if ( ! $host_snmp ); | 42 | skip "no snmp host defined", 50 if ( ! $host_snmp ); |
43 | 43 | ||
44 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp -C $snmp_community -o system.sysUpTime.0 -w 1: -c 1:"); | 44 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp --ignore-mib-parsing-errors -C $snmp_community -o system.sysUpTime.0 -w 1: -c 1:"); |
45 | cmp_ok( $res->return_code, '==', 0, "Exit OK when querying uptime" ); | 45 | cmp_ok( $res->return_code, '==', 0, "Exit OK when querying uptime" ); |
46 | like($res->output, '/^SNMP OK - (\d+)/', "String contains SNMP OK"); | 46 | like($res->output, '/^SNMP OK - (\d+)/', "String contains SNMP OK"); |
47 | $res->output =~ /^SNMP OK - (\d+)/; | 47 | $res->output =~ /^SNMP OK - (\d+)/; |
@@ -51,111 +51,111 @@ SKIP: { | |||
51 | 51 | ||
52 | 52 | ||
53 | # some more threshold tests | 53 | # some more threshold tests |
54 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp -C $snmp_community -o system.sysUpTime.0 -c 1"); | 54 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp --ignore-mib-parsing-errors -C $snmp_community -o system.sysUpTime.0 -c 1"); |
55 | cmp_ok( $res->return_code, '==', 2, "Threshold test -c 1" ); | 55 | cmp_ok( $res->return_code, '==', 2, "Threshold test -c 1" ); |
56 | 56 | ||
57 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp -C $snmp_community -o system.sysUpTime.0 -c 1:"); | 57 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp --ignore-mib-parsing-errors -C $snmp_community -o system.sysUpTime.0 -c 1:"); |
58 | cmp_ok( $res->return_code, '==', 0, "Threshold test -c 1:" ); | 58 | cmp_ok( $res->return_code, '==', 0, "Threshold test -c 1:" ); |
59 | 59 | ||
60 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp -C $snmp_community -o system.sysUpTime.0 -c ~:1"); | 60 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp --ignore-mib-parsing-errors -C $snmp_community -o system.sysUpTime.0 -c ~:1"); |
61 | cmp_ok( $res->return_code, '==', 2, "Threshold test -c ~:1" ); | 61 | cmp_ok( $res->return_code, '==', 2, "Threshold test -c ~:1" ); |
62 | 62 | ||
63 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp -C $snmp_community -o system.sysUpTime.0 -c 1:10"); | 63 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp --ignore-mib-parsing-errors -C $snmp_community -o system.sysUpTime.0 -c 1:10"); |
64 | cmp_ok( $res->return_code, '==', 2, "Threshold test -c 1:10" ); | 64 | cmp_ok( $res->return_code, '==', 2, "Threshold test -c 1:10" ); |
65 | 65 | ||
66 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp -C $snmp_community -o system.sysUpTime.0 -c \@1:10"); | 66 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp --ignore-mib-parsing-errors -C $snmp_community -o system.sysUpTime.0 -c \@1:10"); |
67 | cmp_ok( $res->return_code, '==', 0, "Threshold test -c \@1:10" ); | 67 | cmp_ok( $res->return_code, '==', 0, "Threshold test -c \@1:10" ); |
68 | 68 | ||
69 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp -C $snmp_community -o system.sysUpTime.0 -c 10:1"); | 69 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp --ignore-mib-parsing-errors -C $snmp_community -o system.sysUpTime.0 -c 10:1"); |
70 | cmp_ok( $res->return_code, '==', 0, "Threshold test -c 10:1" ); | 70 | cmp_ok( $res->return_code, '==', 0, "Threshold test -c 10:1" ); |
71 | 71 | ||
72 | 72 | ||
73 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp -C $snmp_community -o .1.3.6.1.2.1.1.3.0 -w 1: -c 1:"); | 73 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp --ignore-mib-parsing-errors -C $snmp_community -o .1.3.6.1.2.1.1.3.0 -w 1: -c 1:"); |
74 | cmp_ok( $res->return_code, '==', 0, "Test with numeric OID (no mibs loaded)" ); | 74 | cmp_ok( $res->return_code, '==', 0, "Test with numeric OID (no mibs loaded)" ); |
75 | like($res->output, '/^SNMP OK - \d+/', "String contains SNMP OK"); | 75 | like($res->output, '/^SNMP OK - \d+/', "String contains SNMP OK"); |
76 | 76 | ||
77 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp -C $snmp_community -o system.sysDescr.0"); | 77 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp --ignore-mib-parsing-errors -C $snmp_community -o system.sysDescr.0"); |
78 | cmp_ok( $res->return_code, '==', 0, "Exit OK when querying sysDescr" ); | 78 | cmp_ok( $res->return_code, '==', 0, "Exit OK when querying sysDescr" ); |
79 | unlike($res->perf_output, '/sysDescr/', "Perfdata doesn't contain string values"); | 79 | unlike($res->perf_output, '/sysDescr/', "Perfdata doesn't contain string values"); |
80 | 80 | ||
81 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp -C $snmp_community -o system.sysDescr.0,system.sysDescr.0"); | 81 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp --ignore-mib-parsing-errors -C $snmp_community -o system.sysDescr.0,system.sysDescr.0"); |
82 | cmp_ok( $res->return_code, '==', 0, "Exit OK when querying two string OIDs, comma-separated" ); | 82 | cmp_ok( $res->return_code, '==', 0, "Exit OK when querying two string OIDs, comma-separated" ); |
83 | like($res->output, '/^SNMP OK - /', "String contains SNMP OK"); | 83 | like($res->output, '/^SNMP OK - /', "String contains SNMP OK"); |
84 | 84 | ||
85 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp -C $snmp_community -o system.sysDescr.0 -o system.sysDescr.0"); | 85 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp --ignore-mib-parsing-errors -C $snmp_community -o system.sysDescr.0 -o system.sysDescr.0"); |
86 | cmp_ok( $res->return_code, '==', 0, "Exit OK when querying two string OIDs, repeated option" ); | 86 | cmp_ok( $res->return_code, '==', 0, "Exit OK when querying two string OIDs, repeated option" ); |
87 | like($res->output, '/^SNMP OK - /', "String contains SNMP OK"); | 87 | like($res->output, '/^SNMP OK - /', "String contains SNMP OK"); |
88 | 88 | ||
89 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp -C $snmp_community -o host.hrSWRun.hrSWRunTable.hrSWRunEntry.hrSWRunIndex.1 -w 1:1 -c 1:1"); | 89 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp --ignore-mib-parsing-errors -C $snmp_community -o host.hrSWRun.hrSWRunTable.hrSWRunEntry.hrSWRunIndex.1 -w 1:1 -c 1:1"); |
90 | cmp_ok( $res->return_code, '==', 0, "Exit OK when querying hrSWRunIndex.1" ); | 90 | cmp_ok( $res->return_code, '==', 0, "Exit OK when querying hrSWRunIndex.1" ); |
91 | like($res->output, '/^SNMP OK - 1\s.*$/', "String fits SNMP OK and output format"); | 91 | like($res->output, '/^SNMP OK - 1\s.*$/', "String fits SNMP OK and output format"); |
92 | 92 | ||
93 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp -C $snmp_community -o host.hrSWRun.hrSWRunTable.hrSWRunEntry.hrSWRunIndex.1 -w 0 -c 1:"); | 93 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp --ignore-mib-parsing-errors -C $snmp_community -o host.hrSWRun.hrSWRunTable.hrSWRunEntry.hrSWRunIndex.1 -w 0 -c 1:"); |
94 | cmp_ok( $res->return_code, '==', 1, "Exit WARNING when querying hrSWRunIndex.1 and warn-th doesn't apply " ); | 94 | cmp_ok( $res->return_code, '==', 1, "Exit WARNING when querying hrSWRunIndex.1 and warn-th doesn't apply " ); |
95 | like($res->output, '/^SNMP WARNING - \*1\*\s.*$/', "String matches SNMP WARNING and output format"); | 95 | like($res->output, '/^SNMP WARNING - \*1\*\s.*$/', "String matches SNMP WARNING and output format"); |
96 | 96 | ||
97 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp -C $snmp_community -o host.hrSWRun.hrSWRunTable.hrSWRunEntry.hrSWRunIndex.1 -w :0 -c 0"); | 97 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp --ignore-mib-parsing-errors -C $snmp_community -o host.hrSWRun.hrSWRunTable.hrSWRunEntry.hrSWRunIndex.1 -w :0 -c 0"); |
98 | cmp_ok( $res->return_code, '==', 2, "Exit CRITICAL when querying hrSWRunIndex.1 and crit-th doesn't apply" ); | 98 | cmp_ok( $res->return_code, '==', 2, "Exit CRITICAL when querying hrSWRunIndex.1 and crit-th doesn't apply" ); |
99 | like($res->output, '/^SNMP CRITICAL - \*1\*\s.*$/', "String matches SNMP CRITICAL and output format"); | 99 | like($res->output, '/^SNMP CRITICAL - \*1\*\s.*$/', "String matches SNMP CRITICAL and output format"); |
100 | 100 | ||
101 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp -C $snmp_community -o ifIndex.2,ifIndex.1 -w 1:2 -c 1:2"); | 101 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp --ignore-mib-parsing-errors -C $snmp_community -o ifIndex.2,ifIndex.1 -w 1:2 -c 1:2"); |
102 | cmp_ok( $res->return_code, '==', 0, "Checking two OIDs at once" ); | 102 | cmp_ok( $res->return_code, '==', 0, "Checking two OIDs at once" ); |
103 | like($res->output, "/^SNMP OK - 2 1/", "Got two values back" ); | 103 | like($res->output, "/^SNMP OK - 2 1/", "Got two values back" ); |
104 | like( $res->perf_output, "/ifIndex.2=2/", "Got 1st perf data" ); | 104 | like( $res->perf_output, "/ifIndex.2=2/", "Got 1st perf data" ); |
105 | like( $res->perf_output, "/ifIndex.1=1/", "Got 2nd perf data" ); | 105 | like( $res->perf_output, "/ifIndex.1=1/", "Got 2nd perf data" ); |
106 | 106 | ||
107 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp -C $snmp_community -o ifIndex.2,ifIndex.1 -w 1:2,1:2 -c 2:2,2:2"); | 107 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp --ignore-mib-parsing-errors -C $snmp_community -o ifIndex.2,ifIndex.1 -w 1:2,1:2 -c 2:2,2:2"); |
108 | cmp_ok( $res->return_code, '==', 2, "Checking critical threshold is passed if any one value crosses" ); | 108 | cmp_ok( $res->return_code, '==', 2, "Checking critical threshold is passed if any one value crosses" ); |
109 | like($res->output, "/^SNMP CRITICAL - 2 *1*/", "Got two values back" ); | 109 | like($res->output, "/^SNMP CRITICAL - 2 *1*/", "Got two values back" ); |
110 | like( $res->perf_output, "/ifIndex.2=2/", "Got 1st perf data" ); | 110 | like( $res->perf_output, "/ifIndex.2=2/", "Got 1st perf data" ); |
111 | like( $res->perf_output, "/ifIndex.1=1/", "Got 2nd perf data" ); | 111 | like( $res->perf_output, "/ifIndex.1=1/", "Got 2nd perf data" ); |
112 | 112 | ||
113 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp -C $snmp_community -o host.hrStorage.hrMemorySize.0,host.hrSystem.hrSystemProcesses.0 -w 1:,1: -c 1:,1:"); | 113 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp --ignore-mib-parsing-errors -C $snmp_community -o host.hrStorage.hrMemorySize.0,host.hrSystem.hrSystemProcesses.0 -w 1:,1: -c 1:,1:"); |
114 | cmp_ok( $res->return_code, '==', 0, "Exit OK when querying hrMemorySize and hrSystemProcesses"); | 114 | cmp_ok( $res->return_code, '==', 0, "Exit OK when querying hrMemorySize and hrSystemProcesses"); |
115 | like($res->output, '/^SNMP OK - \d+ \d+/', "String contains hrMemorySize and hrSystemProcesses"); | 115 | like($res->output, '/^SNMP OK - \d+ \d+/', "String contains hrMemorySize and hrSystemProcesses"); |
116 | 116 | ||
117 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp -C $snmp_community -o host.hrSWRun.hrSWRunTable.hrSWRunEntry.hrSWRunIndex.1 -w \@:0 -c \@0"); | 117 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp --ignore-mib-parsing-errors -C $snmp_community -o host.hrSWRun.hrSWRunTable.hrSWRunEntry.hrSWRunIndex.1 -w \@:0 -c \@0"); |
118 | cmp_ok( $res->return_code, '==', 0, "Exit OK with inside-range thresholds"); | 118 | cmp_ok( $res->return_code, '==', 0, "Exit OK with inside-range thresholds"); |
119 | like($res->output, '/^SNMP OK - 1\s.*$/', "String matches SNMP OK and output format"); | 119 | like($res->output, '/^SNMP OK - 1\s.*$/', "String matches SNMP OK and output format"); |
120 | 120 | ||
121 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp -C $snmp_community -o enterprises.ucdavis.laTable.laEntry.laLoad.3"); | 121 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp --ignore-mib-parsing-errors -C $snmp_community -o enterprises.ucdavis.laTable.laEntry.laLoad.3"); |
122 | $res->output =~ m/^SNMP OK - (\d+\.\d{2})\s.*$/; | 122 | $res->output =~ m/^SNMP OK - (\d+\.\d{2})\s.*$/; |
123 | my $lower = $1 - 0.05; | 123 | my $lower = $1 - 0.05; |
124 | my $higher = $1 + 0.05; | 124 | my $higher = $1 + 0.05; |
125 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp -C $snmp_community -o enterprises.ucdavis.laTable.laEntry.laLoad.3 -w $lower -c $higher"); | 125 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp --ignore-mib-parsing-errors -C $snmp_community -o enterprises.ucdavis.laTable.laEntry.laLoad.3 -w $lower -c $higher"); |
126 | cmp_ok( $res->return_code, '==', 1, "Exit WARNING with fractionnal arguments"); | 126 | cmp_ok( $res->return_code, '==', 1, "Exit WARNING with fractionnal arguments"); |
127 | 127 | ||
128 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp -C $snmp_community -o system.sysUpTime.0,host.hrSWRun.hrSWRunTable.hrSWRunEntry.hrSWRunIndex.1 -w ,:0 -c ,:2"); | 128 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp --ignore-mib-parsing-errors -C $snmp_community -o system.sysUpTime.0,host.hrSWRun.hrSWRunTable.hrSWRunEntry.hrSWRunIndex.1 -w ,:0 -c ,:2"); |
129 | cmp_ok( $res->return_code, '==', 1, "Exit WARNING on 2nd threshold"); | 129 | cmp_ok( $res->return_code, '==', 1, "Exit WARNING on 2nd threshold"); |
130 | like($res->output, '/^SNMP WARNING - Timeticks:\s\(\d+\)\s+(?:\d+ days?,\s+)?\d+:\d+:\d+\.\d+\s+\*1\*\s.*$/', "First OID returned as string, 2nd checked for thresholds"); | 130 | like($res->output, '/^SNMP WARNING - Timeticks:\s\(\d+\)\s+(?:\d+ days?,\s+)?\d+:\d+:\d+\.\d+\s+\*1\*\s.*$/', "First OID returned as string, 2nd checked for thresholds"); |
131 | 131 | ||
132 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp -C $snmp_community -o host.hrSWRun.hrSWRunTable.hrSWRunEntry.hrSWRunIndex.1 -w '' -c ''"); | 132 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp --ignore-mib-parsing-errors -C $snmp_community -o host.hrSWRun.hrSWRunTable.hrSWRunEntry.hrSWRunIndex.1 -w '' -c ''"); |
133 | cmp_ok( $res->return_code, '==', 0, "Empty thresholds doesn't crash"); | 133 | cmp_ok( $res->return_code, '==', 0, "Empty thresholds doesn't crash"); |
134 | 134 | ||
135 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp -C $snmp_community -o host.hrStorage.hrMemorySize.0,host.hrSystem.hrSystemProcesses.0 -w ,,1 -c ,,2"); | 135 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp --ignore-mib-parsing-errors -C $snmp_community -o host.hrStorage.hrMemorySize.0,host.hrSystem.hrSystemProcesses.0 -w ,,1 -c ,,2"); |
136 | cmp_ok( $res->return_code, '==', 0, "Skipping first two thresholds on 2 OID check"); | 136 | cmp_ok( $res->return_code, '==', 0, "Skipping first two thresholds on 2 OID check"); |
137 | like($res->output, '/^SNMP OK - \d+ \w+ \d+\s.*$/', "Skipping first two thresholds, result printed rather than parsed"); | 137 | like($res->output, '/^SNMP OK - \d+ \w+ \d+\s.*$/', "Skipping first two thresholds, result printed rather than parsed"); |
138 | 138 | ||
139 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp -C $snmp_community -o host.hrStorage.hrMemorySize.0,host.hrSystem.hrSystemProcesses.0 -w ,, -c ,,"); | 139 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp --ignore-mib-parsing-errors -C $snmp_community -o host.hrStorage.hrMemorySize.0,host.hrSystem.hrSystemProcesses.0 -w ,, -c ,,"); |
140 | cmp_ok( $res->return_code, '==', 0, "Skipping all thresholds"); | 140 | cmp_ok( $res->return_code, '==', 0, "Skipping all thresholds"); |
141 | like($res->output, '/^SNMP OK - \d+ \w+ \d+\s.*$/', "Skipping all thresholds, result printed rather than parsed"); | 141 | like($res->output, '/^SNMP OK - \d+ \w+ \d+\s.*$/', "Skipping all thresholds, result printed rather than parsed"); |
142 | 142 | ||
143 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp -C $snmp_community -o system.sysUpTime.0 -c 1000000000000: -u '1/100 sec'"); | 143 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp --ignore-mib-parsing-errors -C $snmp_community -o system.sysUpTime.0 -c 1000000000000: -u '1/100 sec'"); |
144 | cmp_ok( $res->return_code, '==', 2, "Timetick used as a threshold"); | 144 | cmp_ok( $res->return_code, '==', 2, "Timetick used as a threshold"); |
145 | like($res->output, '/^SNMP CRITICAL - \*\d+\* 1\/100 sec.*$/', "Timetick used as a threshold, parsed as numeric"); | 145 | like($res->output, '/^SNMP CRITICAL - \*\d+\* 1\/100 sec.*$/', "Timetick used as a threshold, parsed as numeric"); |
146 | 146 | ||
147 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp -C $snmp_community -o system.sysUpTime.0"); | 147 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp --ignore-mib-parsing-errors -C $snmp_community -o system.sysUpTime.0"); |
148 | cmp_ok( $res->return_code, '==', 0, "Timetick used as a string"); | 148 | cmp_ok( $res->return_code, '==', 0, "Timetick used as a string"); |
149 | like($res->output, '/^SNMP OK - Timeticks:\s\(\d+\)\s+(?:\d+ days?,\s+)?\d+:\d+:\d+\.\d+\s.*$/', "Timetick used as a string, result printed rather than parsed"); | 149 | like($res->output, '/^SNMP OK - Timeticks:\s\(\d+\)\s+(?:\d+ days?,\s+)?\d+:\d+:\d+\.\d+\s.*$/', "Timetick used as a string, result printed rather than parsed"); |
150 | 150 | ||
151 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp -C $snmp_community -o HOST-RESOURCES-MIB::hrSWRunName.1"); | 151 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp --ignore-mib-parsing-errors -C $snmp_community -o HOST-RESOURCES-MIB::hrSWRunName.1"); |
152 | cmp_ok( $res->return_code, '==', 0, "snmp response without datatype"); | 152 | cmp_ok( $res->return_code, '==', 0, "snmp response without datatype"); |
153 | like( $res->output, '/^SNMP OK - "(systemd|init)" \| $/', "snmp response without datatype" ); | 153 | like( $res->output, '/^SNMP OK - "(systemd|init)" \| $/', "snmp response without datatype" ); |
154 | } | 154 | } |
155 | 155 | ||
156 | SKIP: { | 156 | SKIP: { |
157 | skip "no SNMP user defined", 1 if ( ! $user_snmp ); | 157 | skip "no SNMP user defined", 1 if ( ! $user_snmp ); |
158 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp -o HOST-RESOURCES-MIB::hrSystemUptime.0 -P 3 -U $user_snmp -L noAuthNoPriv"); | 158 | $res = NPTest->testCmd( "./check_snmp -H $host_snmp --ignore-mib-parsing-errors -o HOST-RESOURCES-MIB::hrSystemUptime.0 -P 3 -U $user_snmp -L noAuthNoPriv"); |
159 | like( $res->output, '/^SNMP OK - Timeticks:\s\(\d+\)\s+(?:\d+ days?,\s+)?\d+:\d+:\d+\.\d+\s.*$/', "noAuthNoPriv security level works properly" ); | 159 | like( $res->output, '/^SNMP OK - Timeticks:\s\(\d+\)\s+(?:\d+ days?,\s+)?\d+:\d+:\d+\.\d+\s.*$/', "noAuthNoPriv security level works properly" ); |
160 | } | 160 | } |
161 | 161 | ||
@@ -163,14 +163,14 @@ SKIP: { | |||
163 | # the tests can run on hosts w/o snmp host/community in NPTest.cache. Execution will fail anyway | 163 | # the tests can run on hosts w/o snmp host/community in NPTest.cache. Execution will fail anyway |
164 | SKIP: { | 164 | SKIP: { |
165 | skip "no non responsive host defined", 2 if ( ! $host_nonresponsive ); | 165 | skip "no non responsive host defined", 2 if ( ! $host_nonresponsive ); |
166 | $res = NPTest->testCmd( "./check_snmp -H $host_nonresponsive -C np_foobar -o system.sysUpTime.0 -w 1: -c 1:"); | 166 | $res = NPTest->testCmd( "./check_snmp -H $host_nonresponsive --ignore-mib-parsing-errors -C np_foobar -o system.sysUpTime.0 -w 1: -c 1:"); |
167 | cmp_ok( $res->return_code, '==', 2, "Exit CRITICAL with non responsive host" ); | 167 | cmp_ok( $res->return_code, '==', 2, "Exit CRITICAL with non responsive host" ); |
168 | like($res->output, '/Plugin timed out while executing system call/', "String matches timeout problem"); | 168 | like($res->output, '/Plugin timed out while executing system call/', "String matches timeout problem"); |
169 | } | 169 | } |
170 | 170 | ||
171 | SKIP: { | 171 | SKIP: { |
172 | skip "no non invalid host defined", 2 if ( ! $hostname_invalid ); | 172 | skip "no non invalid host defined", 2 if ( ! $hostname_invalid ); |
173 | $res = NPTest->testCmd( "./check_snmp -H $hostname_invalid -C np_foobar -o system.sysUpTime.0 -w 1: -c 1:"); | 173 | $res = NPTest->testCmd( "./check_snmp -H $hostname_invalid --ignore-mib-parsing-errors -C np_foobar -o system.sysUpTime.0 -w 1: -c 1:"); |
174 | cmp_ok( $res->return_code, '==', 3, "Exit UNKNOWN with non responsive host" ); | 174 | cmp_ok( $res->return_code, '==', 3, "Exit UNKNOWN with non responsive host" ); |
175 | like($res->output, '/External command error: .*(nosuchhost|Name or service not known|Unknown host)/', "String matches invalid host"); | 175 | like($res->output, '/External command error: .*(nosuchhost|Name or service not known|Unknown host).*/s', "String matches invalid host"); |
176 | } | 176 | } |
diff --git a/plugins/t/negate.t b/plugins/t/negate.t index d96a109..5ec1c84 100644 --- a/plugins/t/negate.t +++ b/plugins/t/negate.t | |||
@@ -84,7 +84,7 @@ foreach my $current_state (keys(%state)) { | |||
84 | foreach my $new_state (keys(%state)) { | 84 | foreach my $new_state (keys(%state)) { |
85 | $res = NPTest->testCmd( "./negate -s --$current_state=$new_state ./check_dummy ".$state{$current_state}." 'Fake $new_state'" ); | 85 | $res = NPTest->testCmd( "./negate -s --$current_state=$new_state ./check_dummy ".$state{$current_state}." 'Fake $new_state'" ); |
86 | is( $res->return_code, $state{$new_state}, "Got fake $new_state (with substitute)" ); | 86 | is( $res->return_code, $state{$new_state}, "Got fake $new_state (with substitute)" ); |
87 | is( $res->output, uc($new_state).": Fake $new_state", "Substitued fake $new_state output"); | 87 | is( $res->output, uc($new_state).": Fake $new_state", "Substituted fake $new_state output"); |
88 | } | 88 | } |
89 | } | 89 | } |
90 | 90 | ||
diff --git a/plugins/tests/check_procs.t b/plugins/tests/check_procs.t index 3af218f..b3a0a30 100755 --- a/plugins/tests/check_procs.t +++ b/plugins/tests/check_procs.t | |||
@@ -8,7 +8,7 @@ use Test::More; | |||
8 | use NPTest; | 8 | use NPTest; |
9 | 9 | ||
10 | if (-x "./check_procs") { | 10 | if (-x "./check_procs") { |
11 | plan tests => 52; | 11 | plan tests => 54; |
12 | } else { | 12 | } else { |
13 | plan skip_all => "No check_procs compiled"; | 13 | plan skip_all => "No check_procs compiled"; |
14 | } | 14 | } |
@@ -34,9 +34,13 @@ is( $result->return_code, 0, "Checking no threshold breeched" ); | |||
34 | is( $result->output, "PROCS OK: 95 processes | procs=95;100;200;0;", "Output correct" ); | 34 | is( $result->output, "PROCS OK: 95 processes | procs=95;100;200;0;", "Output correct" ); |
35 | 35 | ||
36 | $result = NPTest->testCmd( "$command -C launchd -c 5" ); | 36 | $result = NPTest->testCmd( "$command -C launchd -c 5" ); |
37 | is( $result->return_code, 2, "Checking processes filtered by command name" ); | 37 | is( $result->return_code, 2, "Checking processes matched by command name" ); |
38 | is( $result->output, "PROCS CRITICAL: 6 processes with command name 'launchd' | procs=6;;5;0;", "Output correct" ); | 38 | is( $result->output, "PROCS CRITICAL: 6 processes with command name 'launchd' | procs=6;;5;0;", "Output correct" ); |
39 | 39 | ||
40 | $result = NPTest->testCmd( "$command -X bash -c 5" ); | ||
41 | is( $result->return_code, 2, "Checking processes excluded by command name" ); | ||
42 | is( $result->output, "PROCS CRITICAL: 95 processes with exclude progs 'bash' | procs=95;;5;0;", "Output correct" ); | ||
43 | |||
40 | SKIP: { | 44 | SKIP: { |
41 | skip 'user with uid 501 required', 4 unless getpwuid(501); | 45 | skip 'user with uid 501 required', 4 unless getpwuid(501); |
42 | 46 | ||
diff --git a/plugins/tests/check_snmp.t b/plugins/tests/check_snmp.t index bc03ec6..bfe42e1 100755 --- a/plugins/tests/check_snmp.t +++ b/plugins/tests/check_snmp.t | |||
@@ -53,7 +53,7 @@ if ($pid) { | |||
53 | #print "child\n"; | 53 | #print "child\n"; |
54 | 54 | ||
55 | print "Please contact SNMP at: $port_snmp\n"; | 55 | print "Please contact SNMP at: $port_snmp\n"; |
56 | close(STDERR); # Coment out to debug snmpd problems (most errors sent there are OK) | 56 | close(STDERR); # Comment out to debug snmpd problems (most errors sent there are OK) |
57 | exec("snmpd -c tests/conf/snmpd.conf -C -f -r udp:$port_snmp"); | 57 | exec("snmpd -c tests/conf/snmpd.conf -C -f -r udp:$port_snmp"); |
58 | } | 58 | } |
59 | 59 | ||
@@ -227,7 +227,7 @@ is($res->output, 'SNMP OK - "555\"I said\"" | ', "Check string with a double quo | |||
227 | 227 | ||
228 | $res = NPTest->testCmd( "./check_snmp -H 127.0.0.1 -C public -p $port_snmp -o .1.3.6.1.4.1.8072.3.2.67.15 -r 'CUSTOM CHECK OK'" ); | 228 | $res = NPTest->testCmd( "./check_snmp -H 127.0.0.1 -C public -p $port_snmp -o .1.3.6.1.4.1.8072.3.2.67.15 -r 'CUSTOM CHECK OK'" ); |
229 | is($res->return_code, 0, "String check should check whole string, not a parsed number" ); | 229 | is($res->return_code, 0, "String check should check whole string, not a parsed number" ); |
230 | is($res->output, 'SNMP OK - "CUSTOM CHECK OK: foo is 12345" | ', "String check witn numbers returns whole string"); | 230 | is($res->output, 'SNMP OK - "CUSTOM CHECK OK: foo is 12345" | ', "String check with numbers returns whole string"); |
231 | 231 | ||
232 | $res = NPTest->testCmd( "./check_snmp -H 127.0.0.1 -C public -p $port_snmp -o .1.3.6.1.4.1.8072.3.2.67.16 -w -2: -c -3:" ); | 232 | $res = NPTest->testCmd( "./check_snmp -H 127.0.0.1 -C public -p $port_snmp -o .1.3.6.1.4.1.8072.3.2.67.16 -w -2: -c -3:" ); |
233 | is($res->return_code, 0, "Negative integer check OK" ); | 233 | is($res->return_code, 0, "Negative integer check OK" ); |
diff --git a/plugins/utils.h b/plugins/utils.h index 5b54da3..c76b321 100644 --- a/plugins/utils.h +++ b/plugins/utils.h | |||
@@ -7,7 +7,7 @@ | |||
7 | /* The purpose of this package is to provide safer alternatives to C | 7 | /* The purpose of this package is to provide safer alternatives to C |
8 | functions that might otherwise be vulnerable to hacking. This | 8 | functions that might otherwise be vulnerable to hacking. This |
9 | currently includes a standard suite of validation routines to be sure | 9 | currently includes a standard suite of validation routines to be sure |
10 | that an string argument acually converts to its intended type and a | 10 | that an string argument actually converts to its intended type and a |
11 | suite of string handling routine that do their own memory management | 11 | suite of string handling routine that do their own memory management |
12 | in order to resist overflow attacks. In addition, a few functions are | 12 | in order to resist overflow attacks. In addition, a few functions are |
13 | provided to standardize version and error reporting across the entire | 13 | provided to standardize version and error reporting across the entire |
diff --git a/po/Makevars b/po/Makevars index 1bf1e0d..b35f5ad 100644 --- a/po/Makevars +++ b/po/Makevars | |||
@@ -8,7 +8,7 @@ subdir = po | |||
8 | top_builddir = .. | 8 | top_builddir = .. |
9 | 9 | ||
10 | # These options get passed to xgettext. | 10 | # These options get passed to xgettext. |
11 | XGETTEXT_OPTIONS = --keyword=_ --keyword=N_ --flag=error:3:c-format --flag=error_at_line:5:c-format --flag=asprintf:2:c-format --flag=vasprintf:2:c-format | 11 | XGETTEXT_OPTIONS = --keyword=_ --keyword=N_ --flag=error:3:c-format --flag=error_at_line:5:c-format --flag=asprintf:2:c-format --flag=vasprintf:2:c-format --no-location |
12 | 12 | ||
13 | # This is the copyright holder that gets inserted into the header of the | 13 | # This is the copyright holder that gets inserted into the header of the |
14 | # $(DOMAIN).pot file. Set this to the copyright holder of the surrounding | 14 | # $(DOMAIN).pot file. Set this to the copyright holder of the surrounding |
@@ -1,119 +1,86 @@ | |||
1 | # translation of de.po to | 1 | # translation of de.po to |
2 | # German Language Translation File. | 2 | # German Language Translation File. |
3 | # This file is distributed under the same license as the nagios-plugins package. | 3 | # This file is distributed under the same license as the nagios-plugins package. |
4 | # Copyright (C) 2004 Nagios Plugin Development Group. | 4 | # Copyright (C) 2023 Nagios Plugin Development Group. |
5 | # Karl DeBisschop <kdebisschop@users.sourceforge.net>, 2003, 2004. | 5 | # Karl DeBisschop <kdebisschop@users.sourceforge.net>, 2003, 2004. |
6 | # | 6 | # |
7 | # | 7 | # |
8 | msgid "" | 8 | msgid "" |
9 | msgstr "" | 9 | msgstr "" |
10 | "Project-Id-Version: nagiosplug\n" | 10 | "Project-Id-Version: PACKAGE VERSION\n" |
11 | "Report-Msgid-Bugs-To: devel@monitoring-plugins.org\n" | 11 | "Report-Msgid-Bugs-To: devel@monitoring-plugins.org\n" |
12 | "POT-Creation-Date: 2014-01-19 16:30-0500\n" | 12 | "POT-Creation-Date: 2023-09-05 00:31+0200\n" |
13 | "PO-Revision-Date: 2004-12-23 17:46+0100\n" | 13 | "PO-Revision-Date: 2004-12-23 17:46+0100\n" |
14 | "Last-Translator: <>\n" | 14 | "Last-Translator: \n" |
15 | "Language-Team: English <en@li.org>\n" | 15 | "Language-Team: Monitoring Plugin Development Team <devel@monitoring-plugins.org>\n" |
16 | "Language: de\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=UTF-8\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);\n" |
20 | "Plural-Forms: nplurals=2; plural=(n > 1);X-Generator: KBabel 1.3.1\n" | 21 | "X-Generator: KBabel 1.3.1\n" |
21 | 22 | ||
22 | #: plugins/check_by_ssh.c:86 plugins/check_cluster.c:76 plugins/check_dig.c:88 | ||
23 | #: plugins/check_disk.c:194 plugins/check_dns.c:102 plugins/check_dummy.c:52 | ||
24 | #: plugins/check_fping.c:93 plugins/check_game.c:82 plugins/check_hpjd.c:103 | ||
25 | #: plugins/check_http.c:167 plugins/check_ldap.c:109 plugins/check_load.c:122 | ||
26 | #: plugins/check_mrtgtraf.c:83 plugins/check_mysql.c:122 | ||
27 | #: plugins/check_nagios.c:91 plugins/check_nt.c:127 plugins/check_ntp.c:770 | ||
28 | #: plugins/check_ntp_peer.c:575 plugins/check_ntp_time.c:552 | ||
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 | ||
31 | #: plugins/check_radius.c:160 plugins/check_real.c:80 plugins/check_smtp.c:144 | ||
32 | #: plugins/check_snmp.c:240 plugins/check_ssh.c:73 plugins/check_swap.c:110 | ||
33 | #: plugins/check_tcp.c:218 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 | ||
35 | msgid "Could not parse arguments" | 23 | msgid "Could not parse arguments" |
36 | msgstr "Argumente konnten nicht ausgewertet werden" | 24 | msgstr "Argumente konnten nicht ausgewertet werden" |
37 | 25 | ||
38 | #: plugins/check_by_ssh.c:90 plugins/check_dig.c:82 plugins/check_dns.c:95 | ||
39 | #: plugins/check_nagios.c:95 plugins/check_pgsql.c:178 plugins/check_ping.c:99 | ||
40 | #: plugins/check_procs.c:188 plugins/check_snmp.c:336 plugins/negate.c:79 | ||
41 | msgid "Cannot catch SIGALRM" | 26 | msgid "Cannot catch SIGALRM" |
42 | msgstr "Konnte SIGALRM nicht erhalten" | 27 | msgstr "Konnte SIGALRM nicht erhalten" |
43 | 28 | ||
44 | #: plugins/check_by_ssh.c:110 | 29 | #, c-format |
30 | msgid "SSH connection failed: %s\n" | ||
31 | msgstr "" | ||
32 | |||
45 | #, c-format | 33 | #, c-format |
46 | msgid "Remote command execution failed: %s\n" | 34 | msgid "Remote command execution failed: %s\n" |
47 | msgstr "" | 35 | msgstr "" |
48 | 36 | ||
49 | #: plugins/check_by_ssh.c:122 | ||
50 | #, c-format | 37 | #, c-format |
51 | msgid "%s - check_by_ssh: Remote command '%s' returned status %d\n" | 38 | msgid "%s - check_by_ssh: Remote command '%s' returned status %d\n" |
52 | msgstr "" | 39 | msgstr "" |
53 | 40 | ||
54 | #: plugins/check_by_ssh.c:134 | ||
55 | #, c-format | 41 | #, c-format |
56 | msgid "SSH WARNING: could not open %s\n" | 42 | msgid "SSH WARNING: could not open %s\n" |
57 | msgstr "SSH WARNING: Konnte %s nicht öffnen\n" | 43 | msgstr "SSH WARNING: Konnte %s nicht öffnen\n" |
58 | 44 | ||
59 | #: plugins/check_by_ssh.c:143 | ||
60 | #, c-format | 45 | #, c-format |
61 | msgid "%s: Error parsing output\n" | 46 | msgid "%s: Error parsing output\n" |
62 | msgstr "" | 47 | msgstr "" |
63 | 48 | ||
64 | #: plugins/check_by_ssh.c:220 plugins/check_disk.c:476 | ||
65 | #: plugins/check_http.c:278 plugins/check_ldap.c:293 plugins/check_pgsql.c:311 | ||
66 | #: plugins/check_procs.c:437 plugins/check_radius.c:308 | ||
67 | #: plugins/check_real.c:356 plugins/check_smtp.c:581 plugins/check_snmp.c:736 | ||
68 | #: plugins/check_ssh.c:138 plugins/check_tcp.c:505 plugins/check_time.c:302 | ||
69 | #: plugins/check_ups.c:556 plugins/negate.c:164 | ||
70 | msgid "Timeout interval must be a positive integer" | 49 | msgid "Timeout interval must be a positive integer" |
71 | msgstr "Timeout interval muss ein positiver Integer sein" | 50 | msgstr "Timeout interval muss ein positiver Integer sein" |
72 | 51 | ||
73 | #: plugins/check_by_ssh.c:230 plugins/check_pgsql.c:341 | ||
74 | #: plugins/check_radius.c:272 plugins/check_real.c:327 | ||
75 | #: plugins/check_smtp.c:506 plugins/check_tcp.c:511 plugins/check_time.c:296 | ||
76 | #: plugins/check_ups.c:518 | ||
77 | msgid "Port must be a positive integer" | 52 | msgid "Port must be a positive integer" |
78 | msgstr "Port muss ein positiver Integer sein" | 53 | msgstr "Port muss ein positiver Integer sein" |
79 | 54 | ||
80 | #: plugins/check_by_ssh.c:291 | ||
81 | #, fuzzy | 55 | #, fuzzy |
82 | msgid "skip-stdout argument must be an integer" | 56 | msgid "skip-stdout argument must be an integer" |
83 | msgstr "skip-stdout argument muss ein Integer sein" | 57 | msgstr "skip-stdout argument muss ein Integer sein" |
84 | 58 | ||
85 | #: plugins/check_by_ssh.c:299 | ||
86 | #, fuzzy | 59 | #, fuzzy |
87 | msgid "skip-stderr argument must be an integer" | 60 | msgid "skip-stderr argument must be an integer" |
88 | msgstr "skip-stderr argument muss ein Integer sein" | 61 | msgstr "skip-stderr argument muss ein Integer sein" |
89 | 62 | ||
90 | #: plugins/check_by_ssh.c:322 | ||
91 | #, c-format | 63 | #, c-format |
92 | msgid "%s: You must provide a host name\n" | 64 | msgid "%s: You must provide a host name\n" |
93 | msgstr "%s: Hostname muss angegeben werden\n" | 65 | msgstr "%s: Hostname muss angegeben werden\n" |
94 | 66 | ||
95 | #: plugins/check_by_ssh.c:340 | ||
96 | msgid "No remotecmd" | 67 | msgid "No remotecmd" |
97 | msgstr "Kein remotecm" | 68 | msgstr "Kein remotecm" |
98 | 69 | ||
99 | #: plugins/check_by_ssh.c:354 | ||
100 | #, c-format | 70 | #, c-format |
101 | msgid "%s: Argument limit of %d exceeded\n" | 71 | msgid "%s: Argument limit of %d exceeded\n" |
102 | msgstr "" | 72 | msgstr "" |
103 | 73 | ||
104 | #: plugins/check_by_ssh.c:357 | ||
105 | #, fuzzy | 74 | #, fuzzy |
106 | msgid "Can not (re)allocate 'commargv' buffer\n" | 75 | msgid "Can not (re)allocate 'commargv' buffer\n" |
107 | msgstr "Konnte·url·nicht·zuweisen\n" | 76 | msgstr "Konnte·url·nicht·zuweisen\n" |
108 | 77 | ||
109 | #: plugins/check_by_ssh.c:371 | ||
110 | #, c-format | 78 | #, c-format |
111 | msgid "" | 79 | msgid "" |
112 | "%s: In passive mode, you must provide a service name for each command.\n" | 80 | "%s: In passive mode, you must provide a service name for each command.\n" |
113 | msgstr "" | 81 | msgstr "" |
114 | "%s: Im passive mode muss ein Servicename für jeden Befehl angegeben werden.\n" | 82 | "%s: Im passive mode muss ein Servicename für jeden Befehl angegeben werden.\n" |
115 | 83 | ||
116 | #: plugins/check_by_ssh.c:374 | ||
117 | #, fuzzy, c-format | 84 | #, fuzzy, c-format |
118 | msgid "" | 85 | msgid "" |
119 | "%s: In passive mode, you must provide the host short name from the " | 86 | "%s: In passive mode, you must provide the host short name from the " |
@@ -122,262 +89,188 @@ msgstr "" | |||
122 | "%s: Im passive mode muss der \"host short name\" aus der Nagios " | 89 | "%s: Im passive mode muss der \"host short name\" aus der Nagios " |
123 | "Konfiguration angegeben werden\n" | 90 | "Konfiguration angegeben werden\n" |
124 | 91 | ||
125 | #: plugins/check_by_ssh.c:388 | ||
126 | #, fuzzy, c-format | 92 | #, fuzzy, c-format |
127 | msgid "This plugin uses SSH to execute commands on a remote host" | 93 | msgid "This plugin uses SSH to execute commands on a remote host" |
128 | msgstr "" | 94 | msgstr "" |
129 | "Dieses Plugin nutzt SSH um Befehle auf dem entfernten Rechner auszuführen\n" | 95 | "Dieses Plugin nutzt SSH um Befehle auf dem entfernten Rechner auszuführen\n" |
130 | "\n" | 96 | "\n" |
131 | 97 | ||
132 | #: plugins/check_by_ssh.c:403 | ||
133 | msgid "tell ssh to use Protocol 1 [optional]" | 98 | msgid "tell ssh to use Protocol 1 [optional]" |
134 | msgstr "" | 99 | msgstr "" |
135 | 100 | ||
136 | #: plugins/check_by_ssh.c:405 | ||
137 | msgid "tell ssh to use Protocol 2 [optional]" | 101 | msgid "tell ssh to use Protocol 2 [optional]" |
138 | msgstr "" | 102 | msgstr "" |
139 | 103 | ||
140 | #: plugins/check_by_ssh.c:407 | ||
141 | msgid "Ignore all or (if specified) first n lines on STDOUT [optional]" | 104 | msgid "Ignore all or (if specified) first n lines on STDOUT [optional]" |
142 | msgstr "" | 105 | msgstr "" |
143 | 106 | ||
144 | #: plugins/check_by_ssh.c:409 | ||
145 | msgid "Ignore all or (if specified) first n lines on STDERR [optional]" | 107 | msgid "Ignore all or (if specified) first n lines on STDERR [optional]" |
146 | msgstr "" | 108 | msgstr "" |
147 | 109 | ||
148 | #: plugins/check_by_ssh.c:411 | 110 | msgid "Exit with an warning, if there is an output on STDERR" |
111 | msgstr "" | ||
112 | |||
149 | msgid "" | 113 | msgid "" |
150 | "tells ssh to fork rather than create a tty [optional]. This will always " | 114 | "tells ssh to fork rather than create a tty [optional]. This will always " |
151 | "return OK if ssh is executed" | 115 | "return OK if ssh is executed" |
152 | msgstr "" | 116 | msgstr "" |
153 | 117 | ||
154 | #: plugins/check_by_ssh.c:413 | ||
155 | msgid "command to execute on the remote machine" | 118 | msgid "command to execute on the remote machine" |
156 | msgstr "" | 119 | msgstr "" |
157 | 120 | ||
158 | #: plugins/check_by_ssh.c:415 | ||
159 | msgid "SSH user name on remote host [optional]" | 121 | msgid "SSH user name on remote host [optional]" |
160 | msgstr "" | 122 | msgstr "" |
161 | 123 | ||
162 | #: plugins/check_by_ssh.c:417 | ||
163 | msgid "identity of an authorized key [optional]" | 124 | msgid "identity of an authorized key [optional]" |
164 | msgstr "" | 125 | msgstr "" |
165 | 126 | ||
166 | #: plugins/check_by_ssh.c:419 | ||
167 | msgid "external command file for monitoring [optional]" | 127 | msgid "external command file for monitoring [optional]" |
168 | msgstr "" | 128 | msgstr "" |
169 | 129 | ||
170 | #: plugins/check_by_ssh.c:421 | ||
171 | msgid "list of monitoring service names, separated by ':' [optional]" | 130 | msgid "list of monitoring service names, separated by ':' [optional]" |
172 | msgstr "" | 131 | msgstr "" |
173 | 132 | ||
174 | #: plugins/check_by_ssh.c:423 | ||
175 | msgid "short name of host in the monitoring configuration [optional]" | 133 | msgid "short name of host in the monitoring configuration [optional]" |
176 | msgstr "" | 134 | msgstr "" |
177 | 135 | ||
178 | #: plugins/check_by_ssh.c:425 | ||
179 | msgid "Call ssh with '-o OPTION' (may be used multiple times) [optional]" | 136 | msgid "Call ssh with '-o OPTION' (may be used multiple times) [optional]" |
180 | msgstr "" | 137 | msgstr "" |
181 | 138 | ||
182 | #: plugins/check_by_ssh.c:427 | ||
183 | msgid "Tell ssh to use this configfile [optional]" | 139 | msgid "Tell ssh to use this configfile [optional]" |
184 | msgstr "" | 140 | msgstr "" |
185 | 141 | ||
186 | #: plugins/check_by_ssh.c:429 | ||
187 | msgid "Tell ssh to suppress warning and diagnostic messages [optional]" | 142 | msgid "Tell ssh to suppress warning and diagnostic messages [optional]" |
188 | msgstr "" | 143 | msgstr "" |
189 | 144 | ||
190 | #: plugins/check_by_ssh.c:434 | 145 | msgid "Make connection problems return UNKNOWN instead of CRITICAL" |
146 | msgstr "" | ||
147 | |||
191 | msgid "The most common mode of use is to refer to a local identity file with" | 148 | msgid "The most common mode of use is to refer to a local identity file with" |
192 | msgstr "" | 149 | msgstr "" |
193 | 150 | ||
194 | #: plugins/check_by_ssh.c:435 | ||
195 | msgid "the '-i' option. In this mode, the identity pair should have a null" | 151 | msgid "the '-i' option. In this mode, the identity pair should have a null" |
196 | msgstr "" | 152 | msgstr "" |
197 | 153 | ||
198 | #: plugins/check_by_ssh.c:436 | ||
199 | msgid "passphrase and the public key should be listed in the authorized_keys" | 154 | msgid "passphrase and the public key should be listed in the authorized_keys" |
200 | msgstr "" | 155 | msgstr "" |
201 | 156 | ||
202 | #: plugins/check_by_ssh.c:437 | ||
203 | msgid "file of the remote host. Usually the key will be restricted to running" | 157 | msgid "file of the remote host. Usually the key will be restricted to running" |
204 | msgstr "" | 158 | msgstr "" |
205 | 159 | ||
206 | #: plugins/check_by_ssh.c:438 | ||
207 | msgid "only one command on the remote server. If the remote SSH server tracks" | 160 | msgid "only one command on the remote server. If the remote SSH server tracks" |
208 | msgstr "" | 161 | msgstr "" |
209 | 162 | ||
210 | #: plugins/check_by_ssh.c:439 | ||
211 | msgid "invocation arguments, the one remote program may be an agent that can" | 163 | msgid "invocation arguments, the one remote program may be an agent that can" |
212 | msgstr "" | 164 | msgstr "" |
213 | 165 | ||
214 | #: plugins/check_by_ssh.c:440 | ||
215 | msgid "execute additional commands as proxy" | 166 | msgid "execute additional commands as proxy" |
216 | msgstr "" | 167 | msgstr "" |
217 | 168 | ||
218 | #: plugins/check_by_ssh.c:442 | ||
219 | msgid "To use passive mode, provide multiple '-C' options, and provide" | 169 | msgid "To use passive mode, provide multiple '-C' options, and provide" |
220 | msgstr "" | 170 | msgstr "" |
221 | 171 | ||
222 | #: plugins/check_by_ssh.c:443 | ||
223 | msgid "" | 172 | msgid "" |
224 | "all of -O, -s, and -n options (servicelist order must match '-C'options)" | 173 | "all of -O, -s, and -n options (servicelist order must match '-C'options)" |
225 | msgstr "" | 174 | msgstr "" |
226 | 175 | ||
227 | #: plugins/check_by_ssh.c:445 plugins/check_cluster.c:261 | ||
228 | #: plugins/check_dig.c:355 plugins/check_disk.c:924 plugins/check_http.c:1560 | ||
229 | #: plugins/check_nagios.c:312 plugins/check_ntp.c:869 | ||
230 | #: plugins/check_ntp_peer.c:705 plugins/check_ntp_time.c:633 | ||
231 | #: plugins/check_procs.c:763 plugins/negate.c:271 plugins/urlize.c:180 | ||
232 | msgid "Examples:" | 176 | msgid "Examples:" |
233 | msgstr "" | 177 | msgstr "" |
234 | 178 | ||
235 | #: plugins/check_by_ssh.c:460 plugins/check_cluster.c:274 | ||
236 | #: plugins/check_dig.c:367 plugins/check_disk.c:941 plugins/check_dns.c:486 | ||
237 | #: plugins/check_dummy.c:122 plugins/check_fping.c:505 | ||
238 | #: plugins/check_game.c:331 plugins/check_hpjd.c:414 plugins/check_http.c:1590 | ||
239 | #: plugins/check_ldap.c:451 plugins/check_load.c:334 plugins/check_mrtg.c:382 | ||
240 | #: plugins/check_mysql.c:569 plugins/check_nagios.c:323 plugins/check_nt.c:774 | ||
241 | #: plugins/check_ntp.c:888 plugins/check_ntp_peer.c:725 | ||
242 | #: plugins/check_ntp_time.c:642 plugins/check_nwstat.c:1685 | ||
243 | #: plugins/check_overcr.c:467 plugins/check_pgsql.c:578 | ||
244 | #: plugins/check_ping.c:603 plugins/check_procs.c:781 | ||
245 | #: plugins/check_radius.c:385 plugins/check_real.c:451 | ||
246 | #: plugins/check_smtp.c:843 plugins/check_snmp.c:1207 plugins/check_ssh.c:309 | ||
247 | #: plugins/check_swap.c:558 plugins/check_tcp.c:684 plugins/check_time.c:371 | ||
248 | #: plugins/check_ups.c:660 plugins/check_users.c:240 | ||
249 | #: plugins/check_ide_smart.c:640 plugins/negate.c:295 plugins/urlize.c:197 | ||
250 | #: plugins-root/check_dhcp.c:1422 plugins-root/check_icmp.c:1354 | ||
251 | msgid "Usage:" | 179 | msgid "Usage:" |
252 | msgstr "" | 180 | msgstr "" |
253 | 181 | ||
254 | #: plugins/check_cluster.c:230 | ||
255 | #, c-format | 182 | #, c-format |
256 | msgid "Host/Service Cluster Plugin for Monitoring" | 183 | msgid "Host/Service Cluster Plugin for Monitoring" |
257 | msgstr "" | 184 | msgstr "" |
258 | 185 | ||
259 | #: plugins/check_cluster.c:236 plugins/check_nt.c:676 | ||
260 | msgid "Options:" | 186 | msgid "Options:" |
261 | msgstr "" | 187 | msgstr "" |
262 | 188 | ||
263 | #: plugins/check_cluster.c:239 | ||
264 | msgid "Check service cluster status" | 189 | msgid "Check service cluster status" |
265 | msgstr "" | 190 | msgstr "" |
266 | 191 | ||
267 | #: plugins/check_cluster.c:241 | ||
268 | msgid "Check host cluster status" | 192 | msgid "Check host cluster status" |
269 | msgstr "" | 193 | msgstr "" |
270 | 194 | ||
271 | #: plugins/check_cluster.c:243 | ||
272 | msgid "Optional prepended text output (i.e. \"Host cluster\")" | 195 | msgid "Optional prepended text output (i.e. \"Host cluster\")" |
273 | msgstr "" | 196 | msgstr "" |
274 | 197 | ||
275 | #: plugins/check_cluster.c:245 plugins/check_cluster.c:248 | ||
276 | msgid "Specifies the range of hosts or services in cluster that must be in a" | 198 | msgid "Specifies the range of hosts or services in cluster that must be in a" |
277 | msgstr "" | 199 | msgstr "" |
278 | 200 | ||
279 | #: plugins/check_cluster.c:246 | ||
280 | msgid "non-OK state in order to return a WARNING status level" | 201 | msgid "non-OK state in order to return a WARNING status level" |
281 | msgstr "" | 202 | msgstr "" |
282 | 203 | ||
283 | #: plugins/check_cluster.c:249 | ||
284 | msgid "non-OK state in order to return a CRITICAL status level" | 204 | msgid "non-OK state in order to return a CRITICAL status level" |
285 | msgstr "" | 205 | msgstr "" |
286 | 206 | ||
287 | #: plugins/check_cluster.c:251 | ||
288 | msgid "The status codes of the hosts or services in the cluster, separated by" | 207 | msgid "The status codes of the hosts or services in the cluster, separated by" |
289 | msgstr "" | 208 | msgstr "" |
290 | 209 | ||
291 | #: plugins/check_cluster.c:252 | ||
292 | msgid "commas" | 210 | msgid "commas" |
293 | msgstr "" | 211 | msgstr "" |
294 | 212 | ||
295 | #: plugins/check_cluster.c:257 plugins/check_game.c:318 | ||
296 | #: plugins/check_http.c:1542 plugins/check_ldap.c:438 plugins/check_mrtg.c:363 | ||
297 | #: plugins/check_mrtgtraf.c:361 plugins/check_mysql.c:558 | ||
298 | #: plugins/check_nt.c:758 plugins/check_ntp.c:865 plugins/check_ntp_peer.c:696 | ||
299 | #: plugins/check_ntp_time.c:626 plugins/check_nwstat.c:1670 | ||
300 | #: plugins/check_overcr.c:456 plugins/check_snmp.c:1178 | ||
301 | #: plugins/check_swap.c:547 plugins/check_ups.c:642 plugins/negate.c:277 | ||
302 | #: plugins-root/check_icmp.c:1329 | ||
303 | msgid "Notes:" | 213 | msgid "Notes:" |
304 | msgstr "" | 214 | msgstr "" |
305 | 215 | ||
306 | #: plugins/check_cluster.c:263 | ||
307 | msgid "" | 216 | msgid "" |
308 | "Will alert critical if there are 3 or more service data points in a non-OK" | 217 | "Will alert critical if there are 3 or more service data points in a non-OK" |
309 | msgstr "" | 218 | msgstr "" |
310 | 219 | ||
311 | #: plugins/check_cluster.c:264 plugins/check_ups.c:639 | ||
312 | msgid "state." | 220 | msgid "state." |
313 | msgstr "" | 221 | msgstr "" |
314 | 222 | ||
315 | #: plugins/check_dig.c:100 plugins/check_dig.c:102 | ||
316 | #, c-format | 223 | #, c-format |
317 | msgid "Looking for: '%s'\n" | 224 | msgid "Looking for: '%s'\n" |
318 | msgstr "" | 225 | msgstr "" |
319 | 226 | ||
320 | #: plugins/check_dig.c:109 | ||
321 | msgid "dig returned an error status" | 227 | msgid "dig returned an error status" |
322 | msgstr "dig hat einen Fehler zurückgegeben" | 228 | msgstr "dig hat einen Fehler zurückgegeben" |
323 | 229 | ||
324 | #: plugins/check_dig.c:134 | ||
325 | msgid "Server not found in ANSWER SECTION" | 230 | msgid "Server not found in ANSWER SECTION" |
326 | msgstr "Server nicht gefunden in ANSWER SECTION" | 231 | msgstr "Server nicht gefunden in ANSWER SECTION" |
327 | 232 | ||
328 | #: plugins/check_dig.c:144 | ||
329 | msgid "No ANSWER SECTION found" | 233 | msgid "No ANSWER SECTION found" |
330 | msgstr "Keine ANSWER SECTION gefunden" | 234 | msgstr "Keine ANSWER SECTION gefunden" |
331 | 235 | ||
332 | #: plugins/check_dig.c:171 | ||
333 | #, fuzzy | 236 | #, fuzzy |
334 | msgid "Probably a non-existent host/domain" | 237 | msgid "Probably a non-existent host/domain" |
335 | msgstr "nicht existierender Host/Domain" | 238 | msgstr "nicht existierender Host/Domain" |
336 | 239 | ||
337 | #: plugins/check_dig.c:233 | ||
338 | #, fuzzy, c-format | 240 | #, fuzzy, c-format |
339 | msgid "Port must be a positive integer - %s" | 241 | msgid "Port must be a positive integer - %s" |
340 | msgstr "Port muss ein positiver Integer sein - %s" | 242 | msgstr "Port muss ein positiver Integer sein - %s" |
341 | 243 | ||
342 | #: plugins/check_dig.c:244 | ||
343 | #, fuzzy, c-format | 244 | #, fuzzy, c-format |
344 | msgid "Warning interval must be a positive integer - %s" | 245 | msgid "Warning interval must be a positive integer - %s" |
345 | msgstr "Warning interval muss ein positiver Integer sein - %s" | 246 | msgstr "Warning interval muss ein positiver Integer sein - %s" |
346 | 247 | ||
347 | #: plugins/check_dig.c:252 | ||
348 | #, fuzzy, c-format | 248 | #, fuzzy, c-format |
349 | msgid "Critical interval must be a positive integer - %s" | 249 | msgid "Critical interval must be a positive integer - %s" |
350 | msgstr "Critical interval muss ein positiver Integer sein - %s" | 250 | msgstr "Critical interval muss ein positiver Integer sein - %s" |
351 | 251 | ||
352 | #: plugins/check_dig.c:260 | ||
353 | #, fuzzy, c-format | 252 | #, fuzzy, c-format |
354 | msgid "Timeout interval must be a positive integer - %s" | 253 | msgid "Timeout interval must be a positive integer - %s" |
355 | msgstr "Timeout interval muss ein positiver Integer sein - %s" | 254 | msgstr "Timeout interval muss ein positiver Integer sein - %s" |
356 | 255 | ||
357 | #: plugins/check_dig.c:325 | ||
358 | #, fuzzy, c-format | 256 | #, fuzzy, c-format |
359 | msgid "This plugin test the DNS service on the specified host using dig" | 257 | msgid "This plugin tests the DNS service on the specified host using dig" |
360 | msgstr "Testet den DNS Dienst auf dem angegebenen Host mit dig" | 258 | msgstr "Testet den DNS Dienst auf dem angegebenen Host mit dig" |
361 | 259 | ||
362 | #: plugins/check_dig.c:338 | ||
363 | msgid "Force dig to only use IPv4 query transport" | 260 | msgid "Force dig to only use IPv4 query transport" |
364 | msgstr "" | 261 | msgstr "" |
365 | 262 | ||
366 | #: plugins/check_dig.c:340 | ||
367 | msgid "Force dig to only use IPv6 query transport" | 263 | msgid "Force dig to only use IPv6 query transport" |
368 | msgstr "" | 264 | msgstr "" |
369 | 265 | ||
370 | #: plugins/check_dig.c:342 | ||
371 | #, fuzzy | 266 | #, fuzzy |
372 | msgid "Machine name to lookup" | 267 | msgid "Machine name to lookup" |
373 | msgstr "zu prüfender Hostname" | 268 | msgstr "zu prüfender Hostname" |
374 | 269 | ||
375 | #: plugins/check_dig.c:344 | ||
376 | #, fuzzy | 270 | #, fuzzy |
377 | msgid "Record type to lookup (default: A)" | 271 | msgid "Record type to lookup (default: A)" |
378 | msgstr "abzufragender Datensatztyp (Default: A)" | 272 | msgstr "abzufragender Datensatztyp (Default: A)" |
379 | 273 | ||
380 | #: plugins/check_dig.c:346 | ||
381 | #, fuzzy | 274 | #, fuzzy |
382 | msgid "" | 275 | msgid "" |
383 | "An address expected to be in the answer section. If not set, uses whatever" | 276 | "An address expected to be in the answer section. If not set, uses whatever" |
@@ -385,96 +278,69 @@ msgstr "" | |||
385 | "Adresse die in der ANSWER SECTION erwartet wird.wenn nicht gesetzt, " | 278 | "Adresse die in der ANSWER SECTION erwartet wird.wenn nicht gesetzt, " |
386 | "ubernommen aus -l" | 279 | "ubernommen aus -l" |
387 | 280 | ||
388 | #: plugins/check_dig.c:347 | ||
389 | msgid "was in -l" | 281 | msgid "was in -l" |
390 | msgstr "" | 282 | msgstr "" |
391 | 283 | ||
392 | #: plugins/check_dig.c:349 | ||
393 | msgid "Pass STRING as argument(s) to dig" | 284 | msgid "Pass STRING as argument(s) to dig" |
394 | msgstr "" | 285 | msgstr "" |
395 | 286 | ||
396 | #: plugins/check_disk.c:216 | ||
397 | #, fuzzy, c-format | 287 | #, fuzzy, c-format |
398 | msgid "DISK %s: %s not found\n" | 288 | msgid "DISK %s: %s not found\n" |
399 | msgstr "%s [%s nicht gefunden]" | 289 | msgstr "%s [%s nicht gefunden]" |
400 | 290 | ||
401 | #: plugins/check_disk.c:216 plugins/check_disk.c:956 plugins/check_dns.c:241 | ||
402 | #: plugins/check_dummy.c:74 plugins/check_mysql.c:299 | ||
403 | #: plugins/check_nagios.c:104 plugins/check_nagios.c:168 | ||
404 | #: plugins/check_nagios.c:172 plugins/check_pgsql.c:601 | ||
405 | #: plugins/check_pgsql.c:618 plugins/check_pgsql.c:627 | ||
406 | #: plugins/check_pgsql.c:642 plugins/check_procs.c:351 | ||
407 | #, c-format | 291 | #, c-format |
408 | msgid "CRITICAL" | 292 | msgid "CRITICAL" |
409 | msgstr "CRITICAL" | 293 | msgstr "CRITICAL" |
410 | 294 | ||
411 | #: plugins/check_disk.c:550 | ||
412 | #, c-format | 295 | #, c-format |
413 | msgid "unit type %s not known\n" | 296 | msgid "unit type %s not known\n" |
414 | msgstr "unbekannter unit type: %s\n" | 297 | msgstr "unbekannter unit type: %s\n" |
415 | 298 | ||
416 | #: plugins/check_disk.c:553 | ||
417 | #, c-format | 299 | #, c-format |
418 | msgid "failed allocating storage for '%s'\n" | 300 | msgid "failed allocating storage for '%s'\n" |
419 | msgstr "konnte keinen Speicher für '%s' reservieren\n" | 301 | msgstr "konnte keinen Speicher für '%s' reservieren\n" |
420 | 302 | ||
421 | #: plugins/check_disk.c:577 plugins/check_disk.c:618 plugins/check_disk.c:626 | ||
422 | #: plugins/check_disk.c:633 plugins/check_disk.c:637 plugins/check_disk.c:677 | ||
423 | #: plugins/check_disk.c:683 plugins/check_disk.c:702 plugins/check_dummy.c:77 | ||
424 | #: plugins/check_dummy.c:80 plugins/check_pgsql.c:643 | ||
425 | #: plugins/check_procs.c:506 | ||
426 | #, c-format | 303 | #, c-format |
427 | msgid "UNKNOWN" | 304 | msgid "UNKNOWN" |
428 | msgstr "UNKNOWN" | 305 | msgstr "UNKNOWN" |
429 | 306 | ||
430 | #: plugins/check_disk.c:577 | ||
431 | msgid "Must set a threshold value before using -p\n" | 307 | msgid "Must set a threshold value before using -p\n" |
432 | msgstr "" | 308 | msgstr "" |
433 | 309 | ||
434 | #: plugins/check_disk.c:618 | ||
435 | msgid "Must set -E before selecting paths\n" | 310 | msgid "Must set -E before selecting paths\n" |
436 | msgstr "" | 311 | msgstr "" |
437 | 312 | ||
438 | #: plugins/check_disk.c:626 | ||
439 | msgid "Must set group value before selecting paths\n" | 313 | msgid "Must set group value before selecting paths\n" |
440 | msgstr "" | 314 | msgstr "" |
441 | 315 | ||
442 | #: plugins/check_disk.c:633 | ||
443 | msgid "" | 316 | msgid "" |
444 | "Paths need to be selected before using -i/-I. Use -A to select all paths " | 317 | "Paths need to be selected before using -i/-I. Use -A to select all paths " |
445 | "explicitly" | 318 | "explicitly" |
446 | msgstr "" | 319 | msgstr "" |
447 | 320 | ||
448 | #: plugins/check_disk.c:637 plugins/check_disk.c:683 plugins/check_procs.c:506 | ||
449 | msgid "Could not compile regular expression" | 321 | msgid "Could not compile regular expression" |
450 | msgstr "" | 322 | msgstr "" |
451 | 323 | ||
452 | #: plugins/check_disk.c:677 | ||
453 | msgid "Must set a threshold value before using -r/-R\n" | 324 | msgid "Must set a threshold value before using -r/-R\n" |
454 | msgstr "" | 325 | msgstr "" |
455 | 326 | ||
456 | #: plugins/check_disk.c:703 | ||
457 | msgid "Regular expression did not match any path or disk" | 327 | msgid "Regular expression did not match any path or disk" |
458 | msgstr "" | 328 | msgstr "" |
459 | 329 | ||
460 | #: plugins/check_disk.c:749 | ||
461 | #, fuzzy | 330 | #, fuzzy |
462 | msgid "Unknown argument" | 331 | msgid "Unknown argument" |
463 | msgstr "Unbekanntes Argument" | 332 | msgstr "Unbekanntes Argument" |
464 | 333 | ||
465 | #: plugins/check_disk.c:783 | ||
466 | #, c-format | 334 | #, c-format |
467 | msgid " for %s\n" | 335 | msgid " for %s\n" |
468 | msgstr "" | 336 | msgstr "" |
469 | 337 | ||
470 | #: plugins/check_disk.c:857 | ||
471 | #, fuzzy | 338 | #, fuzzy |
472 | msgid "" | 339 | msgid "" |
473 | "This plugin checks the amount of used disk space on a mounted file system" | 340 | "This plugin checks the amount of used disk space on a mounted file system" |
474 | msgstr "" | 341 | msgstr "" |
475 | "Dieses Plugin prüft den freien Speicher auf einem gemounteten Filesystem" | 342 | "Dieses Plugin prüft den freien Speicher auf einem gemounteten Filesystem" |
476 | 343 | ||
477 | #: plugins/check_disk.c:858 | ||
478 | #, fuzzy | 344 | #, fuzzy |
479 | msgid "" | 345 | msgid "" |
480 | "and generates an alert if free space is less than one of the threshold values" | 346 | "and generates an alert if free space is less than one of the threshold values" |
@@ -482,3575 +348,2937 @@ msgstr "" | |||
482 | "und erzeugt einen Alarm wenn einer der angegebenen Schwellwerte " | 348 | "und erzeugt einen Alarm wenn einer der angegebenen Schwellwerte " |
483 | "unterschritten wird." | 349 | "unterschritten wird." |
484 | 350 | ||
485 | #: plugins/check_disk.c:868 | ||
486 | msgid "Exit with WARNING status if less than INTEGER units of disk are free" | 351 | msgid "Exit with WARNING status if less than INTEGER units of disk are free" |
487 | msgstr "" | 352 | msgstr "" |
488 | 353 | ||
489 | #: plugins/check_disk.c:870 | ||
490 | msgid "Exit with WARNING status if less than PERCENT of disk space is free" | 354 | msgid "Exit with WARNING status if less than PERCENT of disk space is free" |
491 | msgstr "" | 355 | msgstr "" |
492 | 356 | ||
493 | #: plugins/check_disk.c:872 | ||
494 | msgid "Exit with CRITICAL status if less than INTEGER units of disk are free" | 357 | msgid "Exit with CRITICAL status if less than INTEGER units of disk are free" |
495 | msgstr "" | 358 | msgstr "" |
496 | 359 | ||
497 | #: plugins/check_disk.c:874 | ||
498 | msgid "Exit with CRITICAL status if less than PERCENT of disk space is free" | 360 | msgid "Exit with CRITICAL status if less than PERCENT of disk space is free" |
499 | msgstr "" | 361 | msgstr "" |
500 | 362 | ||
501 | #: plugins/check_disk.c:876 | ||
502 | msgid "Exit with WARNING status if less than PERCENT of inode space is free" | 363 | msgid "Exit with WARNING status if less than PERCENT of inode space is free" |
503 | msgstr "" | 364 | msgstr "" |
504 | 365 | ||
505 | #: plugins/check_disk.c:878 | ||
506 | msgid "Exit with CRITICAL status if less than PERCENT of inode space is free" | 366 | msgid "Exit with CRITICAL status if less than PERCENT of inode space is free" |
507 | msgstr "" | 367 | msgstr "" |
508 | 368 | ||
509 | #: plugins/check_disk.c:880 | 369 | msgid "" |
510 | msgid "Path or partition (may be repeated)" | 370 | "Mount point or block device as emitted by the mount(8) command (may be " |
371 | "repeated)" | ||
511 | msgstr "" | 372 | msgstr "" |
512 | 373 | ||
513 | #: plugins/check_disk.c:882 | ||
514 | msgid "Ignore device (only works if -p unspecified)" | 374 | msgid "Ignore device (only works if -p unspecified)" |
515 | msgstr "" | 375 | msgstr "" |
516 | 376 | ||
517 | #: plugins/check_disk.c:884 | ||
518 | msgid "Clear thresholds" | 377 | msgid "Clear thresholds" |
519 | msgstr "" | 378 | msgstr "" |
520 | 379 | ||
521 | #: plugins/check_disk.c:886 | ||
522 | msgid "For paths or partitions specified with -p, only check for exact paths" | 380 | msgid "For paths or partitions specified with -p, only check for exact paths" |
523 | msgstr "" | 381 | msgstr "" |
524 | 382 | ||
525 | #: plugins/check_disk.c:888 | ||
526 | msgid "Display only devices/mountpoints with errors" | 383 | msgid "Display only devices/mountpoints with errors" |
527 | msgstr "" | 384 | msgstr "" |
528 | 385 | ||
529 | #: plugins/check_disk.c:890 | ||
530 | msgid "Don't account root-reserved blocks into freespace in perfdata" | 386 | msgid "Don't account root-reserved blocks into freespace in perfdata" |
531 | msgstr "" | 387 | msgstr "" |
532 | 388 | ||
533 | #: plugins/check_disk.c:892 | 389 | msgid "Display inode usage in perfdata" |
390 | msgstr "" | ||
391 | |||
534 | msgid "" | 392 | msgid "" |
535 | "Group paths. Thresholds apply to (free-)space of all partitions together" | 393 | "Group paths. Thresholds apply to (free-)space of all partitions together" |
536 | msgstr "" | 394 | msgstr "" |
537 | 395 | ||
538 | #: plugins/check_disk.c:894 | ||
539 | msgid "Same as '--units kB'" | 396 | msgid "Same as '--units kB'" |
540 | msgstr "" | 397 | msgstr "" |
541 | 398 | ||
542 | #: plugins/check_disk.c:896 | ||
543 | msgid "Only check local filesystems" | 399 | msgid "Only check local filesystems" |
544 | msgstr "" | 400 | msgstr "" |
545 | 401 | ||
546 | #: plugins/check_disk.c:898 | ||
547 | msgid "" | 402 | msgid "" |
548 | "Only check local filesystems against thresholds. Yet call stat on remote " | 403 | "Only check local filesystems against thresholds. Yet call stat on remote " |
549 | "filesystems" | 404 | "filesystems" |
550 | msgstr "" | 405 | msgstr "" |
551 | 406 | ||
552 | #: plugins/check_disk.c:899 | ||
553 | msgid "to test if they are accessible (e.g. to detect Stale NFS Handles)" | 407 | msgid "to test if they are accessible (e.g. to detect Stale NFS Handles)" |
554 | msgstr "" | 408 | msgstr "" |
555 | 409 | ||
556 | #: plugins/check_disk.c:901 | 410 | msgid "Display the (block) device instead of the mount point" |
557 | msgid "Display the mountpoint instead of the partition" | ||
558 | msgstr "" | 411 | msgstr "" |
559 | 412 | ||
560 | #: plugins/check_disk.c:903 | ||
561 | msgid "Same as '--units MB'" | 413 | msgid "Same as '--units MB'" |
562 | msgstr "" | 414 | msgstr "" |
563 | 415 | ||
564 | #: plugins/check_disk.c:905 | ||
565 | msgid "Explicitly select all paths. This is equivalent to -R '.*'" | 416 | msgid "Explicitly select all paths. This is equivalent to -R '.*'" |
566 | msgstr "" | 417 | msgstr "" |
567 | 418 | ||
568 | #: plugins/check_disk.c:907 | ||
569 | msgid "" | 419 | msgid "" |
570 | "Case insensitive regular expression for path/partition (may be repeated)" | 420 | "Case insensitive regular expression for path/partition (may be repeated)" |
571 | msgstr "" | 421 | msgstr "" |
572 | 422 | ||
573 | #: plugins/check_disk.c:909 | ||
574 | msgid "Regular expression for path or partition (may be repeated)" | 423 | msgid "Regular expression for path or partition (may be repeated)" |
575 | msgstr "" | 424 | msgstr "" |
576 | 425 | ||
577 | #: plugins/check_disk.c:911 | ||
578 | msgid "" | 426 | msgid "" |
579 | "Regular expression to ignore selected path/partition (case insensitive) (may " | 427 | "Regular expression to ignore selected path/partition (case insensitive) (may " |
580 | "be repeated)" | 428 | "be repeated)" |
581 | msgstr "" | 429 | msgstr "" |
582 | 430 | ||
583 | #: plugins/check_disk.c:913 | ||
584 | msgid "" | 431 | msgid "" |
585 | "Regular expression to ignore selected path or partition (may be repeated)" | 432 | "Regular expression to ignore selected path or partition (may be repeated)" |
586 | msgstr "" | 433 | msgstr "" |
587 | 434 | ||
588 | #: plugins/check_disk.c:916 | 435 | msgid "" |
436 | "Return OK if no filesystem matches, filesystem does not exist or is " | ||
437 | "inaccessible." | ||
438 | msgstr "" | ||
439 | |||
440 | msgid "(Provide this option before -p / -r / --ereg-path if used)" | ||
441 | msgstr "" | ||
442 | |||
589 | msgid "Choose bytes, kB, MB, GB, TB (default: MB)" | 443 | msgid "Choose bytes, kB, MB, GB, TB (default: MB)" |
590 | msgstr "" | 444 | msgstr "" |
591 | 445 | ||
592 | #: plugins/check_disk.c:919 | ||
593 | msgid "Ignore all filesystems of indicated type (may be repeated)" | 446 | msgid "Ignore all filesystems of indicated type (may be repeated)" |
594 | msgstr "" | 447 | msgstr "" |
595 | 448 | ||
596 | #: plugins/check_disk.c:921 | ||
597 | msgid "Check only filesystems of indicated type (may be repeated)" | 449 | msgid "Check only filesystems of indicated type (may be repeated)" |
598 | msgstr "" | 450 | msgstr "" |
599 | 451 | ||
600 | #: plugins/check_disk.c:926 | ||
601 | msgid "Checks /tmp and /var at 10% and 5%, and / at 100MB and 50MB" | 452 | msgid "Checks /tmp and /var at 10% and 5%, and / at 100MB and 50MB" |
602 | msgstr "" | 453 | msgstr "" |
603 | 454 | ||
604 | #: plugins/check_disk.c:928 | ||
605 | msgid "" | 455 | msgid "" |
606 | "Checks all filesystems not matching -r at 100M and 50M. The fs matching the -" | 456 | "Checks all filesystems not matching -r at 100M and 50M. The fs matching the -" |
607 | "r regex" | 457 | "r regex" |
608 | msgstr "" | 458 | msgstr "" |
609 | 459 | ||
610 | #: plugins/check_disk.c:929 | ||
611 | msgid "" | 460 | msgid "" |
612 | "are grouped which means the freespace thresholds are applied to all disks " | 461 | "are grouped which means the freespace thresholds are applied to all disks " |
613 | "together" | 462 | "together" |
614 | msgstr "" | 463 | msgstr "" |
615 | 464 | ||
616 | #: plugins/check_disk.c:931 | ||
617 | msgid "" | 465 | msgid "" |
618 | "Checks /foo for 1000M/500M and /bar for 5/3%. All remaining volumes use " | 466 | "Checks /foo for 1000M/500M and /bar for 5/3%. All remaining volumes use " |
619 | "100M/50M" | 467 | "100M/50M" |
620 | msgstr "" | 468 | msgstr "" |
621 | 469 | ||
622 | #: plugins/check_disk.c:957 | ||
623 | #, c-format | 470 | #, c-format |
624 | msgid "%s %s: %s\n" | 471 | msgid "%s %s: %s\n" |
625 | msgstr "" | 472 | msgstr "" |
626 | 473 | ||
627 | #: plugins/check_disk.c:957 | ||
628 | msgid "is not accessible" | 474 | msgid "is not accessible" |
629 | msgstr "" | 475 | msgstr "" |
630 | 476 | ||
631 | #: plugins/check_dns.c:116 | ||
632 | #, fuzzy | 477 | #, fuzzy |
633 | msgid "nslookup returned an error status" | 478 | msgid "nslookup returned an error status" |
634 | msgstr "nslookup hat einen Fehler zurückgegeben" | 479 | msgstr "nslookup hat einen Fehler zurückgegeben" |
635 | 480 | ||
636 | #: plugins/check_dns.c:134 | ||
637 | msgid "Warning plugin error" | 481 | msgid "Warning plugin error" |
638 | msgstr "Warnung Plugin Fehler" | 482 | msgstr "Warnung Plugin Fehler" |
639 | 483 | ||
640 | #: plugins/check_dns.c:154 | 484 | #, fuzzy, c-format |
485 | msgid "DNS CRITICAL - '%s' returned empty server string\n" | ||
486 | msgstr "DNS CRITICAL - '%s' hat einen leeren Hostnamen zurückgegeben\n" | ||
487 | |||
488 | #, fuzzy, c-format | ||
489 | msgid "DNS CRITICAL - No response from DNS %s\n" | ||
490 | msgstr "Keine Antwort von DNS %s\n" | ||
491 | |||
641 | #, c-format | 492 | #, c-format |
642 | msgid "DNS CRITICAL - '%s' returned empty host name string\n" | 493 | msgid "DNS CRITICAL - '%s' returned empty host name string\n" |
643 | msgstr "DNS CRITICAL - '%s' hat einen leeren Hostnamen zurückgegeben\n" | 494 | msgstr "DNS CRITICAL - '%s' hat einen leeren Hostnamen zurückgegeben\n" |
644 | 495 | ||
645 | #: plugins/check_dns.c:160 | ||
646 | msgid "Non-authoritative answer:" | 496 | msgid "Non-authoritative answer:" |
647 | msgstr "" | 497 | msgstr "" |
648 | 498 | ||
649 | #: plugins/check_dns.c:201 | 499 | #, fuzzy, c-format |
500 | msgid "Domain '%s' was not found by the server\n" | ||
501 | msgstr "Domäne %s wurde vom Server nicht gefunden\n" | ||
502 | |||
650 | #, fuzzy, c-format | 503 | #, fuzzy, c-format |
651 | msgid "DNS CRITICAL - '%s' msg parsing exited with no address\n" | 504 | msgid "DNS CRITICAL - '%s' msg parsing exited with no address\n" |
652 | msgstr "DNS CRITICAL - '%s' Ausgabeverarbeitung hat keine Adresse ergeben\n" | 505 | msgstr "DNS CRITICAL - '%s' Ausgabeverarbeitung hat keine Adresse ergeben\n" |
653 | 506 | ||
654 | #: plugins/check_dns.c:216 | ||
655 | #, fuzzy, c-format | 507 | #, fuzzy, c-format |
656 | msgid "expected '%s' but got '%s'" | 508 | msgid "expected '%s' but got '%s'" |
657 | msgstr "Erwartet: %s aber: %s erhalten" | 509 | msgstr "Erwartet: %s aber: %s erhalten" |
658 | 510 | ||
659 | #: plugins/check_dns.c:223 | 511 | #, fuzzy, c-format |
512 | msgid "Domain '%s' was found by the server: '%s'\n" | ||
513 | msgstr "Domäne %s wurde vom Server nicht gefunden\n" | ||
514 | |||
660 | #, c-format | 515 | #, c-format |
661 | msgid "server %s is not authoritative for %s" | 516 | msgid "server %s is not authoritative for %s" |
662 | msgstr "Server %s ist nicht autoritativ für %s" | 517 | msgstr "Server %s ist nicht autoritativ für %s" |
663 | 518 | ||
664 | #: plugins/check_dns.c:237 plugins/check_dummy.c:68 plugins/check_nagios.c:182 | ||
665 | #: plugins/check_pgsql.c:638 plugins/check_procs.c:344 | ||
666 | #, c-format | 519 | #, c-format |
667 | msgid "OK" | 520 | msgid "OK" |
668 | msgstr "OK" | 521 | msgstr "OK" |
669 | 522 | ||
670 | #: plugins/check_dns.c:239 plugins/check_dummy.c:71 plugins/check_mysql.c:296 | ||
671 | #: plugins/check_nagios.c:182 plugins/check_pgsql.c:607 | ||
672 | #: plugins/check_pgsql.c:612 plugins/check_pgsql.c:640 | ||
673 | #: plugins/check_procs.c:346 | ||
674 | #, c-format | 523 | #, c-format |
675 | msgid "WARNING" | 524 | msgid "WARNING" |
676 | msgstr "WARNING" | 525 | msgstr "WARNING" |
677 | 526 | ||
678 | #: plugins/check_dns.c:243 | ||
679 | #, fuzzy, c-format | 527 | #, fuzzy, c-format |
680 | msgid "%.3f second response time" | 528 | msgid "%.3f second response time" |
681 | msgid_plural "%.3f seconds response time" | 529 | msgid_plural "%.3f seconds response time" |
682 | msgstr[0] "%.3f Sekunden Antwortzeit " | 530 | msgstr[0] "%.3f Sekunden Antwortzeit " |
683 | msgstr[1] "%.3f Sekunden Antwortzeit " | 531 | msgstr[1] "%.3f Sekunden Antwortzeit " |
684 | 532 | ||
685 | #: plugins/check_dns.c:244 | ||
686 | #, fuzzy, c-format | 533 | #, fuzzy, c-format |
687 | msgid ". %s returns %s" | 534 | msgid ". %s returns %s" |
688 | msgstr "%s hat %s zurückgegeben" | 535 | msgstr "%s hat %s zurückgegeben" |
689 | 536 | ||
690 | #: plugins/check_dns.c:248 | ||
691 | #, c-format | 537 | #, c-format |
692 | msgid "DNS WARNING - %s\n" | 538 | msgid "DNS WARNING - %s\n" |
693 | msgstr "DNS WARNING - %s\n" | 539 | msgstr "DNS WARNING - %s\n" |
694 | 540 | ||
695 | #: plugins/check_dns.c:249 plugins/check_dns.c:252 plugins/check_dns.c:255 | ||
696 | msgid " Probably a non-existent host/domain" | 541 | msgid " Probably a non-existent host/domain" |
697 | msgstr "nicht existierender Host/Domain" | 542 | msgstr "nicht existierender Host/Domain" |
698 | 543 | ||
699 | #: plugins/check_dns.c:251 | ||
700 | #, c-format | 544 | #, c-format |
701 | msgid "DNS CRITICAL - %s\n" | 545 | msgid "DNS CRITICAL - %s\n" |
702 | msgstr "DNS CRITICAL - %s\n" | 546 | msgstr "DNS CRITICAL - %s\n" |
703 | 547 | ||
704 | #: plugins/check_dns.c:254 | ||
705 | #, fuzzy, c-format | 548 | #, fuzzy, c-format |
706 | msgid "DNS UNKNOWN - %s\n" | 549 | msgid "DNS UNKNOWN - %s\n" |
707 | msgstr "DNS UNKNOWN - %s\n" | 550 | msgstr "DNS UNKNOWN - %s\n" |
708 | 551 | ||
709 | #: plugins/check_dns.c:267 | ||
710 | msgid "Note: nslookup is deprecated and may be removed from future releases." | 552 | msgid "Note: nslookup is deprecated and may be removed from future releases." |
711 | msgstr "" | 553 | msgstr "" |
712 | 554 | ||
713 | #: plugins/check_dns.c:268 | ||
714 | msgid "Consider using the `dig' or `host' programs instead. Run nslookup with" | 555 | msgid "Consider using the `dig' or `host' programs instead. Run nslookup with" |
715 | msgstr "" | 556 | msgstr "" |
716 | 557 | ||
717 | #: plugins/check_dns.c:269 | ||
718 | msgid "the `-sil[ent]' option to prevent this message from appearing." | 558 | msgid "the `-sil[ent]' option to prevent this message from appearing." |
719 | msgstr "" | 559 | msgstr "" |
720 | 560 | ||
721 | #: plugins/check_dns.c:274 | ||
722 | #, c-format | 561 | #, c-format |
723 | msgid "No response from DNS %s\n" | 562 | msgid "No response from DNS %s\n" |
724 | msgstr "Keine Antwort von DNS %s\n" | 563 | msgstr "Keine Antwort von DNS %s\n" |
725 | 564 | ||
726 | #: plugins/check_dns.c:278 | ||
727 | #, c-format | 565 | #, c-format |
728 | msgid "DNS %s has no records\n" | 566 | msgid "DNS %s has no records\n" |
729 | msgstr "Nameserver %s hat keine Datensätze\n" | 567 | msgstr "Nameserver %s hat keine Datensätze\n" |
730 | 568 | ||
731 | #: plugins/check_dns.c:286 | ||
732 | #, c-format | 569 | #, c-format |
733 | msgid "Connection to DNS %s was refused\n" | 570 | msgid "Connection to DNS %s was refused\n" |
734 | msgstr "Verbindung zum Nameserver %s wurde verweigert\n" | 571 | msgstr "Verbindung zum Nameserver %s wurde verweigert\n" |
735 | 572 | ||
736 | #: plugins/check_dns.c:290 | ||
737 | #, c-format | 573 | #, c-format |
738 | msgid "Query was refused by DNS server at %s\n" | 574 | msgid "Query was refused by DNS server at %s\n" |
739 | msgstr "" | 575 | msgstr "" |
740 | 576 | ||
741 | #: plugins/check_dns.c:294 | ||
742 | #, c-format | 577 | #, c-format |
743 | msgid "No information returned by DNS server at %s\n" | 578 | msgid "No information returned by DNS server at %s\n" |
744 | msgstr "" | 579 | msgstr "" |
745 | 580 | ||
746 | #: plugins/check_dns.c:300 | ||
747 | #, c-format | ||
748 | msgid "Domain %s was not found by the server\n" | ||
749 | msgstr "Domäne %s wurde vom Server nicht gefunden\n" | ||
750 | |||
751 | #: plugins/check_dns.c:304 | ||
752 | msgid "Network is unreachable\n" | 581 | msgid "Network is unreachable\n" |
753 | msgstr "Netzwerk nicht erreichbar\n" | 582 | msgstr "Netzwerk nicht erreichbar\n" |
754 | 583 | ||
755 | #: plugins/check_dns.c:308 | ||
756 | #, c-format | 584 | #, c-format |
757 | msgid "DNS failure for %s\n" | 585 | msgid "DNS failure for %s\n" |
758 | msgstr "DNS Fehler für %s\n" | 586 | msgstr "DNS Fehler für %s\n" |
759 | 587 | ||
760 | #: plugins/check_dns.c:372 plugins/check_dns.c:380 plugins/check_dns.c:387 | ||
761 | #: plugins/check_dns.c:392 plugins/check_dns.c:414 plugins/check_dns.c:422 | ||
762 | #: plugins/check_game.c:211 plugins/check_game.c:219 | ||
763 | msgid "Input buffer overflow\n" | 588 | msgid "Input buffer overflow\n" |
764 | msgstr "Eingabe-Pufferüberlauf\n" | 589 | msgstr "Eingabe-Pufferüberlauf\n" |
765 | 590 | ||
766 | #: plugins/check_dns.c:450 | ||
767 | msgid "" | 591 | msgid "" |
768 | "This plugin uses the nslookup program to obtain the IP address for the given " | 592 | "This plugin uses the nslookup program to obtain the IP address for the given " |
769 | "host/domain query." | 593 | "host/domain query." |
770 | msgstr "" | 594 | msgstr "" |
771 | 595 | ||
772 | #: plugins/check_dns.c:451 | ||
773 | msgid "An optional DNS server to use may be specified." | 596 | msgid "An optional DNS server to use may be specified." |
774 | msgstr "" | 597 | msgstr "" |
775 | 598 | ||
776 | #: plugins/check_dns.c:452 | ||
777 | msgid "" | 599 | msgid "" |
778 | "If no DNS server is specified, the default server(s) specified in /etc/" | 600 | "If no DNS server is specified, the default server(s) specified in /etc/" |
779 | "resolv.conf will be used." | 601 | "resolv.conf will be used." |
780 | msgstr "" | 602 | msgstr "" |
781 | 603 | ||
782 | #: plugins/check_dns.c:462 | ||
783 | msgid "The name or address you want to query" | 604 | msgid "The name or address you want to query" |
784 | msgstr "" | 605 | msgstr "" |
785 | 606 | ||
786 | #: plugins/check_dns.c:464 | ||
787 | msgid "Optional DNS server you want to use for the lookup" | 607 | msgid "Optional DNS server you want to use for the lookup" |
788 | msgstr "" | 608 | msgstr "" |
789 | 609 | ||
790 | #: plugins/check_dns.c:466 | ||
791 | msgid "" | 610 | msgid "" |
792 | "Optional IP-ADDRESS you expect the DNS server to return. HOST must end with" | 611 | "Optional IP-ADDRESS/CIDR you expect the DNS server to return. HOST must end" |
793 | msgstr "" | 612 | msgstr "" |
794 | 613 | ||
795 | #: plugins/check_dns.c:467 | ||
796 | msgid "" | 614 | msgid "" |
797 | "a dot (.). This option can be repeated multiple times (Returns OK if any" | 615 | "with a dot (.). This option can be repeated multiple times (Returns OK if any" |
798 | msgstr "" | 616 | msgstr "" |
799 | 617 | ||
800 | #: plugins/check_dns.c:468 | 618 | msgid "value matches)." |
801 | msgid "" | ||
802 | "value match). If multiple addresses are returned at once, you have to match" | ||
803 | msgstr "" | 619 | msgstr "" |
804 | 620 | ||
805 | #: plugins/check_dns.c:469 | ||
806 | msgid "" | 621 | msgid "" |
807 | "the whole string of addresses separated with commas (sorted alphabetically)." | 622 | "Expect the DNS server to return NXDOMAIN (i.e. the domain was not found)" |
623 | msgstr "" | ||
624 | |||
625 | msgid "Cannot be used together with -a" | ||
808 | msgstr "" | 626 | msgstr "" |
809 | 627 | ||
810 | #: plugins/check_dns.c:471 | ||
811 | msgid "Optionally expect the DNS server to be authoritative for the lookup" | 628 | msgid "Optionally expect the DNS server to be authoritative for the lookup" |
812 | msgstr "" | 629 | msgstr "" |
813 | 630 | ||
814 | #: plugins/check_dns.c:473 | ||
815 | msgid "Return warning if elapsed time exceeds value. Default off" | 631 | msgid "Return warning if elapsed time exceeds value. Default off" |
816 | msgstr "" | 632 | msgstr "" |
817 | 633 | ||
818 | #: plugins/check_dns.c:475 | ||
819 | msgid "Return critical if elapsed time exceeds value. Default off" | 634 | msgid "Return critical if elapsed time exceeds value. Default off" |
820 | msgstr "" | 635 | msgstr "" |
821 | 636 | ||
822 | #: plugins/check_dummy.c:62 | 637 | msgid "" |
638 | "Return critical if the list of expected addresses does not match all " | ||
639 | "addresses" | ||
640 | msgstr "" | ||
641 | |||
642 | msgid "returned. Default off" | ||
643 | msgstr "" | ||
644 | |||
823 | msgid "Arguments to check_dummy must be an integer" | 645 | msgid "Arguments to check_dummy must be an integer" |
824 | msgstr "Argument für check_dummy muss ein Integer sein" | 646 | msgstr "Argument für check_dummy muss ein Integer sein" |
825 | 647 | ||
826 | #: plugins/check_dummy.c:82 | ||
827 | #, c-format | 648 | #, c-format |
828 | msgid "Status %d is not a supported error state\n" | 649 | msgid "Status %d is not a supported error state\n" |
829 | msgstr "Status %d ist kein bekannter Fehlerstatus\n" | 650 | msgstr "Status %d ist kein bekannter Fehlerstatus\n" |
830 | 651 | ||
831 | #: plugins/check_dummy.c:104 | ||
832 | msgid "" | 652 | msgid "" |
833 | "This plugin will simply return the state corresponding to the numeric value" | 653 | "This plugin will simply return the state corresponding to the numeric value" |
834 | msgstr "" | 654 | msgstr "" |
835 | 655 | ||
836 | #: plugins/check_dummy.c:106 | ||
837 | msgid "of the <state> argument with optional text" | 656 | msgid "of the <state> argument with optional text" |
838 | msgstr "" | 657 | msgstr "" |
839 | 658 | ||
840 | #: plugins/check_fping.c:125 plugins/check_hpjd.c:128 plugins/check_ping.c:438 | ||
841 | #: plugins/check_swap.c:175 plugins/check_users.c:94 plugins/urlize.c:110 | ||
842 | #, c-format | 659 | #, c-format |
843 | msgid "Could not open pipe: %s\n" | 660 | msgid "Could not open pipe: %s\n" |
844 | msgstr "Pipe: %s konnte nicht geöffnet werden\n" | 661 | msgstr "Pipe: %s konnte nicht geöffnet werden\n" |
845 | 662 | ||
846 | #: plugins/check_fping.c:131 plugins/check_hpjd.c:134 plugins/check_load.c:153 | ||
847 | #: plugins/check_swap.c:181 plugins/check_users.c:100 plugins/urlize.c:116 | ||
848 | #, c-format | 663 | #, c-format |
849 | msgid "Could not open stderr for %s\n" | 664 | msgid "Could not open stderr for %s\n" |
850 | msgstr "Konnte stderr nicht öffnen für: %s\n" | 665 | msgstr "Konnte stderr nicht öffnen für: %s\n" |
851 | 666 | ||
852 | #: plugins/check_fping.c:157 | ||
853 | #, fuzzy | 667 | #, fuzzy |
854 | msgid "FPING UNKNOWN - IP address not found\n" | 668 | msgid "FPING UNKNOWN - IP address not found\n" |
855 | msgstr "FPING UNKNOWN - %s nicht gefunden\n" | 669 | msgstr "FPING UNKNOWN - %s nicht gefunden\n" |
856 | 670 | ||
857 | #: plugins/check_fping.c:160 | ||
858 | msgid "FPING UNKNOWN - invalid commandline argument\n" | 671 | msgid "FPING UNKNOWN - invalid commandline argument\n" |
859 | msgstr "" | 672 | msgstr "" |
860 | 673 | ||
861 | #: plugins/check_fping.c:163 | ||
862 | #, fuzzy | 674 | #, fuzzy |
863 | msgid "FPING UNKNOWN - failed system call\n" | 675 | msgid "FPING UNKNOWN - failed system call\n" |
864 | msgstr "FPING UNKNOWN - %s nicht gefunden\n" | 676 | msgstr "FPING UNKNOWN - %s nicht gefunden\n" |
865 | 677 | ||
866 | #: plugins/check_fping.c:187 | 678 | #, fuzzy, c-format |
679 | msgid "FPING %s - %s (rta=%f ms)|%s\n" | ||
680 | msgstr "FPING %s - %s (verloren=%.0f%% )|%s\n" | ||
681 | |||
867 | #, c-format | 682 | #, c-format |
868 | msgid "FPING UNKNOWN - %s not found\n" | 683 | msgid "FPING UNKNOWN - %s not found\n" |
869 | msgstr "FPING UNKNOWN - %s nicht gefunden\n" | 684 | msgstr "FPING UNKNOWN - %s nicht gefunden\n" |
870 | 685 | ||
871 | #: plugins/check_fping.c:191 | ||
872 | #, c-format | 686 | #, c-format |
873 | msgid "FPING CRITICAL - %s is unreachable\n" | 687 | msgid "FPING CRITICAL - %s is unreachable\n" |
874 | msgstr "FPING CRITICAL - %s ist nicht erreichbar\n" | 688 | msgstr "FPING CRITICAL - %s ist nicht erreichbar\n" |
875 | 689 | ||
876 | #: plugins/check_fping.c:196 | ||
877 | #, fuzzy, c-format | 690 | #, fuzzy, c-format |
878 | msgid "FPING UNKNOWN - %s parameter error\n" | 691 | msgid "FPING UNKNOWN - %s parameter error\n" |
879 | msgstr "FPING UNKNOWN - %s nicht gefunden\n" | 692 | msgstr "FPING UNKNOWN - %s nicht gefunden\n" |
880 | 693 | ||
881 | #: plugins/check_fping.c:200 plugins/check_fping.c:240 | ||
882 | #, c-format | 694 | #, c-format |
883 | msgid "FPING CRITICAL - %s is down\n" | 695 | msgid "FPING CRITICAL - %s is down\n" |
884 | msgstr "FPING CRITICAL - %s ist down\n" | 696 | msgstr "FPING CRITICAL - %s ist down\n" |
885 | 697 | ||
886 | #: plugins/check_fping.c:227 | ||
887 | #, c-format | 698 | #, c-format |
888 | msgid "FPING %s - %s (loss=%.0f%%, rta=%f ms)|%s %s\n" | 699 | msgid "FPING %s - %s (loss=%.0f%%, rta=%f ms)|%s %s\n" |
889 | msgstr "FPING %s - %s (verloren=%.0f%%, rta=%f ms)|%s %s\n" | 700 | msgstr "FPING %s - %s (verloren=%.0f%%, rta=%f ms)|%s %s\n" |
890 | 701 | ||
891 | #: plugins/check_fping.c:253 | ||
892 | #, c-format | 702 | #, c-format |
893 | msgid "FPING %s - %s (loss=%.0f%% )|%s\n" | 703 | msgid "FPING %s - %s (loss=%.0f%% )|%s\n" |
894 | msgstr "FPING %s - %s (verloren=%.0f%% )|%s\n" | 704 | msgstr "FPING %s - %s (verloren=%.0f%% )|%s\n" |
895 | 705 | ||
896 | #: plugins/check_fping.c:326 plugins/check_fping.c:332 | ||
897 | #: plugins/check_hpjd.c:338 plugins/check_hpjd.c:361 plugins/check_mysql.c:371 | ||
898 | #: plugins/check_mysql.c:455 plugins/check_ntp.c:709 | ||
899 | #: plugins/check_ntp_peer.c:497 plugins/check_ntp_time.c:496 | ||
900 | #: plugins/check_pgsql.c:335 plugins/check_ping.c:295 plugins/check_ping.c:418 | ||
901 | #: plugins/check_radius.c:264 plugins/check_real.c:314 | ||
902 | #: plugins/check_real.c:376 plugins/check_smtp.c:499 plugins/check_smtp.c:641 | ||
903 | #: plugins/check_ssh.c:157 plugins/check_time.c:240 plugins/check_time.c:315 | ||
904 | #: plugins/check_ups.c:504 plugins/check_ups.c:573 | ||
905 | msgid "Invalid hostname/address" | 706 | msgid "Invalid hostname/address" |
906 | msgstr "Ungültige(r) Hostname/Adresse" | 707 | msgstr "Ungültige(r) Hostname/Adresse" |
907 | 708 | ||
908 | #: plugins/check_fping.c:345 plugins/check_ldap.c:353 plugins/check_ping.c:246 | ||
909 | msgid "IPv6 support not available\n" | 709 | msgid "IPv6 support not available\n" |
910 | msgstr "" | 710 | msgstr "" |
911 | 711 | ||
912 | #: plugins/check_fping.c:378 | ||
913 | msgid "Packet size must be a positive integer" | 712 | msgid "Packet size must be a positive integer" |
914 | msgstr "Paketgröße muss ein positiver Integer sein" | 713 | msgstr "Paketgröße muss ein positiver Integer sein" |
915 | 714 | ||
916 | #: plugins/check_fping.c:384 | ||
917 | msgid "Packet count must be a positive integer" | 715 | msgid "Packet count must be a positive integer" |
918 | msgstr "Paketanzahl muss ein positiver Integer sein" | 716 | msgstr "Paketanzahl muss ein positiver Integer sein" |
919 | 717 | ||
920 | #: plugins/check_fping.c:390 | ||
921 | #, fuzzy | 718 | #, fuzzy |
922 | msgid "Target timeout must be a positive integer" | 719 | msgid "Target timeout must be a positive integer" |
923 | msgstr "Warnung time muss ein positiver Integer sein" | 720 | msgstr "Warnung time muss ein positiver Integer sein" |
924 | 721 | ||
925 | #: plugins/check_fping.c:396 | ||
926 | #, fuzzy | 722 | #, fuzzy |
927 | msgid "Interval must be a positive integer" | 723 | msgid "Interval must be a positive integer" |
928 | msgstr "Timeout interval muss ein positiver Integer sein" | 724 | msgstr "Timeout interval muss ein positiver Integer sein" |
929 | 725 | ||
930 | #: plugins/check_fping.c:402 plugins/check_ntp.c:733 | ||
931 | #: plugins/check_ntp_peer.c:524 plugins/check_ntp_time.c:523 | ||
932 | #: plugins/check_radius.c:314 plugins/check_time.c:319 | ||
933 | msgid "Hostname was not supplied" | 726 | msgid "Hostname was not supplied" |
934 | msgstr "" | 727 | msgstr "" |
935 | 728 | ||
936 | #: plugins/check_fping.c:422 | ||
937 | #, c-format | 729 | #, c-format |
938 | msgid "%s: Only one threshold may be packet loss (%s)\n" | 730 | msgid "%s: Only one threshold may be packet loss (%s)\n" |
939 | msgstr "%s: Nur ein Wert darf für paket loss angegeben werden (%s)\n" | 731 | msgstr "%s: Nur ein Wert darf für packet loss angegeben werden (%s)\n" |
940 | 732 | ||
941 | #: plugins/check_fping.c:426 | ||
942 | #, c-format | 733 | #, c-format |
943 | msgid "%s: Only one threshold must be packet loss (%s)\n" | 734 | msgid "%s: Only one threshold must be packet loss (%s)\n" |
944 | msgstr "%s: Nur ein Wert darf für paket loss angegeben werden (%s)\n" | 735 | msgstr "%s: Nur ein Wert darf für packet loss angegeben werden (%s)\n" |
945 | 736 | ||
946 | #: plugins/check_fping.c:458 | ||
947 | msgid "" | 737 | msgid "" |
948 | "This plugin will use the fping command to ping the specified host for a fast " | 738 | "This plugin will use the fping command to ping the specified host for a fast " |
949 | "check" | 739 | "check" |
950 | msgstr "" | 740 | msgstr "" |
951 | 741 | ||
952 | #: plugins/check_fping.c:460 | ||
953 | msgid "Note that it is necessary to set the suid flag on fping." | 742 | msgid "Note that it is necessary to set the suid flag on fping." |
954 | msgstr "" | 743 | msgstr "" |
955 | 744 | ||
956 | #: plugins/check_fping.c:472 | ||
957 | msgid "" | 745 | msgid "" |
958 | "name or IP Address of host to ping (IP Address bypasses name lookup, " | 746 | "name or IP Address of host to ping (IP Address bypasses name lookup, " |
959 | "reducing system load)" | 747 | "reducing system load)" |
960 | msgstr "" | 748 | msgstr "" |
961 | 749 | ||
962 | #: plugins/check_fping.c:474 plugins/check_ping.c:575 | ||
963 | #, fuzzy | 750 | #, fuzzy |
964 | msgid "warning threshold pair" | 751 | msgid "warning threshold pair" |
965 | msgstr "Warning threshold Integer sein" | 752 | msgstr "Warning threshold Integer sein" |
966 | 753 | ||
967 | #: plugins/check_fping.c:476 plugins/check_ping.c:577 | ||
968 | #, fuzzy | 754 | #, fuzzy |
969 | msgid "critical threshold pair" | 755 | msgid "critical threshold pair" |
970 | msgstr "Critical threshold muss ein Integer sein" | 756 | msgstr "Critical threshold muss ein Integer sein" |
971 | 757 | ||
972 | #: plugins/check_fping.c:478 | 758 | msgid "Return OK after first successful reply" |
759 | msgstr "" | ||
760 | |||
973 | msgid "size of ICMP packet" | 761 | msgid "size of ICMP packet" |
974 | msgstr "" | 762 | msgstr "" |
975 | 763 | ||
976 | #: plugins/check_fping.c:480 | ||
977 | msgid "number of ICMP packets to send" | 764 | msgid "number of ICMP packets to send" |
978 | msgstr "" | 765 | msgstr "" |
979 | 766 | ||
980 | #: plugins/check_fping.c:482 | ||
981 | msgid "Target timeout (ms)" | 767 | msgid "Target timeout (ms)" |
982 | msgstr "" | 768 | msgstr "" |
983 | 769 | ||
984 | #: plugins/check_fping.c:484 | ||
985 | msgid "Interval (ms) between sending packets" | 770 | msgid "Interval (ms) between sending packets" |
986 | msgstr "" | 771 | msgstr "" |
987 | 772 | ||
988 | #: plugins/check_fping.c:486 | ||
989 | msgid "name or IP Address of sourceip" | 773 | msgid "name or IP Address of sourceip" |
990 | msgstr "" | 774 | msgstr "" |
991 | 775 | ||
992 | #: plugins/check_fping.c:488 | ||
993 | msgid "source interface name" | 776 | msgid "source interface name" |
994 | msgstr "" | 777 | msgstr "" |
995 | 778 | ||
996 | #: plugins/check_fping.c:491 | ||
997 | #, c-format | 779 | #, c-format |
998 | msgid "" | 780 | msgid "" |
999 | "THRESHOLD is <rta>,<pl>%% where <rta> is the round trip average travel time " | 781 | "THRESHOLD is <rta>,<pl>%% where <rta> is the round trip average travel time " |
1000 | "(ms)" | 782 | "(ms)" |
1001 | msgstr "" | 783 | msgstr "" |
1002 | 784 | ||
1003 | #: plugins/check_fping.c:492 | ||
1004 | msgid "" | 785 | msgid "" |
1005 | "which triggers a WARNING or CRITICAL state, and <pl> is the percentage of" | 786 | "which triggers a WARNING or CRITICAL state, and <pl> is the percentage of" |
1006 | msgstr "" | 787 | msgstr "" |
1007 | 788 | ||
1008 | #: plugins/check_fping.c:493 | ||
1009 | msgid "packet loss to trigger an alarm state." | 789 | msgid "packet loss to trigger an alarm state." |
1010 | msgstr "" | 790 | msgstr "" |
1011 | 791 | ||
1012 | #: plugins/check_fping.c:496 | ||
1013 | msgid "IPv4 is used by default. Specify -6 to use IPv6." | 792 | msgid "IPv4 is used by default. Specify -6 to use IPv6." |
1014 | msgstr "" | 793 | msgstr "" |
1015 | 794 | ||
1016 | #: plugins/check_game.c:111 | ||
1017 | #, c-format | 795 | #, c-format |
1018 | msgid "CRITICAL - Host type parameter incorrect!\n" | 796 | msgid "CRITICAL - Host type parameter incorrect!\n" |
1019 | msgstr "CRITICAL - Host type parameter unkorrekt!\n" | 797 | msgstr "CRITICAL - Host type parameter unkorrekt!\n" |
1020 | 798 | ||
1021 | #: plugins/check_game.c:126 | ||
1022 | #, fuzzy, c-format | 799 | #, fuzzy, c-format |
1023 | msgid "CRITICAL - Host not found\n" | 800 | msgid "CRITICAL - Host not found\n" |
1024 | msgstr "CRITICAL - Text nicht gefunden%s|%s %s\n" | 801 | msgstr "CRITICAL - Text nicht gefunden%s|%s %s\n" |
1025 | 802 | ||
1026 | #: plugins/check_game.c:130 | ||
1027 | #, fuzzy, c-format | 803 | #, fuzzy, c-format |
1028 | msgid "CRITICAL - Game server down or unavailable\n" | 804 | msgid "CRITICAL - Game server down or unavailable\n" |
1029 | msgstr "CRITICAL - Serverdatum \"%100s\" konnte nicht verarbeitet werden" | 805 | msgstr "CRITICAL - Serverdatum \"%100s\" konnte nicht verarbeitet werden" |
1030 | 806 | ||
1031 | #: plugins/check_game.c:134 | ||
1032 | #, fuzzy, c-format | 807 | #, fuzzy, c-format |
1033 | msgid "CRITICAL - Game server timeout\n" | 808 | msgid "CRITICAL - Game server timeout\n" |
1034 | msgstr "CRITICAL - Konnte kein Serverzertifikat erhalten\n" | 809 | msgstr "CRITICAL - Konnte kein Serverzertifikat erhalten\n" |
1035 | 810 | ||
1036 | #: plugins/check_game.c:297 | ||
1037 | #, c-format | 811 | #, c-format |
1038 | msgid "This plugin tests game server connections with the specified host." | 812 | msgid "This plugin tests game server connections with the specified host." |
1039 | msgstr "Dieses plugin testet Gameserververbindungen zum angegebenen Host." | 813 | msgstr "Dieses plugin testet Gameserververbindungen zum angegebenen Host." |
1040 | 814 | ||
1041 | #: plugins/check_game.c:307 | ||
1042 | msgid "Optional port of which to connect" | 815 | msgid "Optional port of which to connect" |
1043 | msgstr "" | 816 | msgstr "" |
1044 | 817 | ||
1045 | #: plugins/check_game.c:309 | ||
1046 | msgid "Field number in raw qstat output that contains game name" | 818 | msgid "Field number in raw qstat output that contains game name" |
1047 | msgstr "" | 819 | msgstr "" |
1048 | 820 | ||
1049 | #: plugins/check_game.c:311 | ||
1050 | msgid "Field number in raw qstat output that contains map name" | 821 | msgid "Field number in raw qstat output that contains map name" |
1051 | msgstr "" | 822 | msgstr "" |
1052 | 823 | ||
1053 | #: plugins/check_game.c:313 | ||
1054 | msgid "Field number in raw qstat output that contains ping time" | 824 | msgid "Field number in raw qstat output that contains ping time" |
1055 | msgstr "" | 825 | msgstr "" |
1056 | 826 | ||
1057 | #: plugins/check_game.c:319 | ||
1058 | #, fuzzy | 827 | #, fuzzy |
1059 | msgid "" | 828 | msgid "" |
1060 | "This plugin uses the 'qstat' command, the popular game server status query " | 829 | "This plugin uses the 'qstat' command, the popular game server status query " |
1061 | "tool." | 830 | "tool." |
1062 | msgstr "Dieses plugin testet Gameserververbindungen zum angegebenen Host." | 831 | msgstr "Dieses plugin testet Gameserververbindungen zum angegebenen Host." |
1063 | 832 | ||
1064 | #: plugins/check_game.c:320 | ||
1065 | msgid "" | 833 | msgid "" |
1066 | "If you don't have the package installed, you will need to download it from" | 834 | "If you don't have the package installed, you will need to download it from" |
1067 | msgstr "" | 835 | msgstr "" |
1068 | 836 | ||
1069 | #: plugins/check_game.c:321 | 837 | msgid "https://github.com/multiplay/qstat before you can use this plugin." |
1070 | msgid "" | ||
1071 | "http://www.activesw.com/people/steve/qstat.html before you can use this " | ||
1072 | "plugin." | ||
1073 | msgstr "" | 838 | msgstr "" |
1074 | 839 | ||
1075 | #: plugins/check_hpjd.c:239 | ||
1076 | msgid "Paper Jam" | 840 | msgid "Paper Jam" |
1077 | msgstr "Papierstau" | 841 | msgstr "Papierstau" |
1078 | 842 | ||
1079 | #: plugins/check_hpjd.c:243 | ||
1080 | msgid "Out of Paper" | 843 | msgid "Out of Paper" |
1081 | msgstr "Kein Papier" | 844 | msgstr "Kein Papier" |
1082 | 845 | ||
1083 | #: plugins/check_hpjd.c:248 | ||
1084 | msgid "Printer Offline" | 846 | msgid "Printer Offline" |
1085 | msgstr "Drucker ausgeschaltet" | 847 | msgstr "Drucker ausgeschaltet" |
1086 | 848 | ||
1087 | #: plugins/check_hpjd.c:253 | ||
1088 | msgid "Peripheral Error" | 849 | msgid "Peripheral Error" |
1089 | msgstr "Peripheriefehler" | 850 | msgstr "Peripheriefehler" |
1090 | 851 | ||
1091 | #: plugins/check_hpjd.c:257 | ||
1092 | msgid "Intervention Required" | 852 | msgid "Intervention Required" |
1093 | msgstr "Eingriff benötigt" | 853 | msgstr "Eingriff benötigt" |
1094 | 854 | ||
1095 | #: plugins/check_hpjd.c:261 | ||
1096 | msgid "Toner Low" | 855 | msgid "Toner Low" |
1097 | msgstr "Wenig Toner" | 856 | msgstr "Wenig Toner" |
1098 | 857 | ||
1099 | #: plugins/check_hpjd.c:265 | ||
1100 | msgid "Insufficient Memory" | 858 | msgid "Insufficient Memory" |
1101 | msgstr "Nicht genügend Speicher" | 859 | msgstr "Nicht genügend Speicher" |
1102 | 860 | ||
1103 | #: plugins/check_hpjd.c:269 | ||
1104 | msgid "A Door is Open" | 861 | msgid "A Door is Open" |
1105 | msgstr "Eine Abdeckung ist offen" | 862 | msgstr "Eine Abdeckung ist offen" |
1106 | 863 | ||
1107 | #: plugins/check_hpjd.c:273 | ||
1108 | msgid "Output Tray is Full" | 864 | msgid "Output Tray is Full" |
1109 | msgstr "Ausgabeschacht ist voll" | 865 | msgstr "Ausgabeschacht ist voll" |
1110 | 866 | ||
1111 | #: plugins/check_hpjd.c:277 | ||
1112 | msgid "Data too Slow for Engine" | 867 | msgid "Data too Slow for Engine" |
1113 | msgstr "" | 868 | msgstr "" |
1114 | 869 | ||
1115 | #: plugins/check_hpjd.c:281 | ||
1116 | msgid "Unknown Paper Error" | 870 | msgid "Unknown Paper Error" |
1117 | msgstr "Papierfehler" | 871 | msgstr "Papierfehler" |
1118 | 872 | ||
1119 | #: plugins/check_hpjd.c:286 | ||
1120 | #, c-format | 873 | #, c-format |
1121 | msgid "Printer ok - (%s)\n" | 874 | msgid "Printer ok - (%s)\n" |
1122 | msgstr "Printer ok - (%s)\n" | 875 | msgstr "Printer ok - (%s)\n" |
1123 | 876 | ||
1124 | #: plugins/check_hpjd.c:391 | 877 | #, fuzzy |
878 | msgid "Port must be a positive short integer" | ||
879 | msgstr "Port muss ein positiver Integer sein" | ||
880 | |||
1125 | #, fuzzy | 881 | #, fuzzy |
1126 | msgid "This plugin tests the STATUS of an HP printer with a JetDirect card." | 882 | msgid "This plugin tests the STATUS of an HP printer with a JetDirect card." |
1127 | msgstr "" | 883 | msgstr "" |
1128 | "Dieses Plugin testet den STATUS eines HP Druckers mit einer JetDirect " | 884 | "Dieses Plugin testet den STATUS eines HP Druckers mit einer JetDirect " |
1129 | "Karte.\n" | 885 | "Karte.\n" |
1130 | "Net-snmp muss auf dem ausführenden Computer installiert sein.\n" | 886 | "Net-snmp muss auf dem ausführenden Computer installiert sein.\n" |
1131 | "\n" | 887 | "\n" |
1132 | 888 | ||
1133 | #: plugins/check_hpjd.c:392 | ||
1134 | #, fuzzy | 889 | #, fuzzy |
1135 | msgid "Net-snmp must be installed on the computer running the plugin." | 890 | msgid "Net-snmp must be installed on the computer running the plugin." |
1136 | msgstr "" | 891 | msgstr "" |
1137 | "Dieses Plugin testet den STATUS eines HP Druckers mit einer JetDirect " | 892 | "Dieses Plugin testet den STATUS eines HP Druckers mit einer JetDirect " |
1138 | "Karte.\n" | 893 | "Karte.\n" |
1139 | "Net-snmp muss auf dem ausführenden Computer installiert sein.\n" | 894 | "Net-snmp muss auf dem ausführenden Computer installiert sein.\n" |
1140 | "\n" | 895 | "\n" |
1141 | 896 | ||
1142 | #: plugins/check_hpjd.c:402 | ||
1143 | msgid "The SNMP community name " | 897 | msgid "The SNMP community name " |
1144 | msgstr "" | 898 | msgstr "" |
1145 | 899 | ||
1146 | #: plugins/check_hpjd.c:403 | ||
1147 | #, c-format | 900 | #, c-format |
1148 | msgid "(default=%s)" | 901 | msgid "(default=%s)" |
1149 | msgstr "" | 902 | msgstr "" |
1150 | 903 | ||
1151 | #: plugins/check_http.c:189 | 904 | msgid "Specify the port to check " |
905 | msgstr "" | ||
906 | |||
907 | msgid "Disable paper check " | ||
908 | msgstr "" | ||
909 | |||
1152 | msgid "file does not exist or is not readable" | 910 | msgid "file does not exist or is not readable" |
1153 | msgstr "" | 911 | msgstr "" |
1154 | 912 | ||
1155 | #: plugins/check_http.c:310 plugins/check_http.c:315 plugins/check_http.c:321 | ||
1156 | #: plugins/check_smtp.c:600 plugins/check_tcp.c:576 plugins/check_tcp.c:580 | ||
1157 | #: plugins/check_tcp.c:586 | ||
1158 | msgid "Invalid certificate expiration period" | 913 | msgid "Invalid certificate expiration period" |
1159 | msgstr "Ungültiger Zertifikatsablauftermin" | 914 | msgstr "Ungültiger Zertifikatsablauftermin" |
1160 | 915 | ||
1161 | #: plugins/check_http.c:348 | ||
1162 | msgid "" | 916 | msgid "" |
1163 | "Invalid option - Valid values for SSL Version are 1 (TLSv1), 2 (SSLv2) or 3 " | 917 | "Invalid option - Valid SSL/TLS versions: 2, 3, 1, 1.1, 1.2 (with optional " |
1164 | "(SSLv3)" | 918 | "'+' suffix)" |
1165 | msgstr "" | 919 | msgstr "" |
1166 | 920 | ||
1167 | #: plugins/check_http.c:354 plugins/check_tcp.c:599 | ||
1168 | #, fuzzy | 921 | #, fuzzy |
1169 | msgid "Invalid option - SSL is not available" | 922 | msgid "Invalid option - SSL is not available" |
1170 | msgstr "Ungültige Option - SSL ist nicht verfügbar\n" | 923 | msgstr "Ungültige Option - SSL ist nicht verfügbar\n" |
924 | |||
925 | msgid "Invalid max_redirs count" | ||
926 | msgstr "" | ||
1171 | 927 | ||
1172 | #: plugins/check_http.c:375 | ||
1173 | msgid "Invalid onredirect option" | 928 | msgid "Invalid onredirect option" |
1174 | msgstr "" | 929 | msgstr "" |
1175 | 930 | ||
1176 | #: plugins/check_http.c:377 | ||
1177 | #, c-format | 931 | #, c-format |
1178 | msgid "option f:%d \n" | 932 | msgid "option f:%d \n" |
1179 | msgstr "Option f:%d \n" | 933 | msgstr "Option f:%d \n" |
1180 | 934 | ||
1181 | #: plugins/check_http.c:398 | ||
1182 | msgid "Invalid port number" | 935 | msgid "Invalid port number" |
1183 | msgstr "Ungültige Portnummer" | 936 | msgstr "Ungültige Portnummer" |
1184 | 937 | ||
1185 | #: plugins/check_http.c:450 | ||
1186 | #, c-format | 938 | #, c-format |
1187 | msgid "Could Not Compile Regular Expression: %s" | 939 | msgid "Could Not Compile Regular Expression: %s" |
1188 | msgstr "" | 940 | msgstr "" |
1189 | 941 | ||
1190 | #: plugins/check_http.c:464 plugins/check_ntp.c:722 | ||
1191 | #: plugins/check_ntp_peer.c:513 plugins/check_ntp_time.c:512 | ||
1192 | #: plugins/check_smtp.c:621 plugins/check_ssh.c:149 plugins/check_tcp.c:477 | ||
1193 | msgid "IPv6 support not available" | 942 | msgid "IPv6 support not available" |
1194 | msgstr "IPv6 Unterstützung nicht vorhanden" | 943 | msgstr "IPv6 Unterstützung nicht vorhanden" |
1195 | 944 | ||
1196 | #: plugins/check_http.c:529 plugins/check_ping.c:422 | ||
1197 | msgid "You must specify a server address or host name" | 945 | msgid "You must specify a server address or host name" |
1198 | msgstr "Hostname oder Serveradresse muss angegeben werden" | 946 | msgstr "Hostname oder Serveradresse muss angegeben werden" |
1199 | 947 | ||
1200 | #: plugins/check_http.c:543 | ||
1201 | msgid "" | 948 | msgid "" |
1202 | "If you use a client certificate you must also specify a private key file" | 949 | "If you use a client certificate you must also specify a private key file" |
1203 | msgstr "" | 950 | msgstr "" |
1204 | 951 | ||
1205 | #: plugins/check_http.c:667 plugins/check_http.c:835 | ||
1206 | #, fuzzy | 952 | #, fuzzy |
1207 | msgid "HTTP UNKNOWN - Memory allocation error\n" | 953 | msgid "HTTP UNKNOWN - Memory allocation error\n" |
1208 | msgstr "HTTP UNKNOWN - Konnte·url·nicht·zuweisen\n" | 954 | msgstr "HTTP UNKNOWN - Konnte·url·nicht·zuweisen\n" |
1209 | 955 | ||
1210 | #: plugins/check_http.c:739 | ||
1211 | #, fuzzy, c-format | 956 | #, fuzzy, c-format |
1212 | msgid "%sServer date unknown, " | 957 | msgid "%sServer date unknown, " |
1213 | msgstr "HTTP UNKNOWN - Serverdatum unbekannt\n" | 958 | msgstr "HTTP UNKNOWN - Serverdatum unbekannt\n" |
1214 | 959 | ||
1215 | #: plugins/check_http.c:742 | ||
1216 | #, fuzzy, c-format | 960 | #, fuzzy, c-format |
1217 | msgid "%sDocument modification date unknown, " | 961 | msgid "%sDocument modification date unknown, " |
1218 | msgstr "HTTP CRITICAL - Datum der letzten Änderung unbekannt\n" | 962 | msgstr "HTTP CRITICAL - Datum der letzten Änderung unbekannt\n" |
1219 | 963 | ||
1220 | #: plugins/check_http.c:749 | ||
1221 | #, fuzzy, c-format | 964 | #, fuzzy, c-format |
1222 | msgid "%sServer date \"%100s\" unparsable, " | 965 | msgid "%sServer date \"%100s\" unparsable, " |
1223 | msgstr "HTTP CRITICAL - Serverdatum \"%100s\" konnte nicht verarbeitet werden" | 966 | msgstr "HTTP CRITICAL - Serverdatum \"%100s\" konnte nicht verarbeitet werden" |
1224 | 967 | ||
1225 | #: plugins/check_http.c:752 | ||
1226 | #, fuzzy, c-format | 968 | #, fuzzy, c-format |
1227 | msgid "%sDocument date \"%100s\" unparsable, " | 969 | msgid "%sDocument date \"%100s\" unparsable, " |
1228 | msgstr "" | 970 | msgstr "" |
1229 | "HTTP CRITICAL - Dokumentendatum \"%100s\" konnte nicht verarbeitet werden" | 971 | "HTTP CRITICAL - Dokumentendatum \"%100s\" konnte nicht verarbeitet werden" |
1230 | 972 | ||
1231 | #: plugins/check_http.c:755 | ||
1232 | #, fuzzy, c-format | 973 | #, fuzzy, c-format |
1233 | msgid "%sDocument is %d seconds in the future, " | 974 | msgid "%sDocument is %d seconds in the future, " |
1234 | msgstr "HTTP CRITICAL - Dokumentendatum ist %d Sekunden in der Zukunft\n" | 975 | msgstr "HTTP CRITICAL - Dokumentendatum ist %d Sekunden in der Zukunft\n" |
1235 | 976 | ||
1236 | #: plugins/check_http.c:760 | ||
1237 | #, fuzzy, c-format | 977 | #, fuzzy, c-format |
1238 | msgid "%sLast modified %.1f days ago, " | 978 | msgid "%sLast modified %.1f days ago, " |
1239 | msgstr "HTTP CRITICAL - Letzte Änderung vor %.1f Tagen\n" | 979 | msgstr "HTTP CRITICAL - Letzte Änderung vor %.1f Tagen\n" |
1240 | 980 | ||
1241 | #: plugins/check_http.c:763 | ||
1242 | #, fuzzy, c-format | 981 | #, fuzzy, c-format |
1243 | msgid "%sLast modified %d:%02d:%02d ago, " | 982 | msgid "%sLast modified %d:%02d:%02d ago, " |
1244 | msgstr "HTTP CRITICAL - Letzte Änderung vor %d:%02d:%02d \n" | 983 | msgstr "HTTP CRITICAL - Letzte Änderung vor %d:%02d:%02d \n" |
1245 | 984 | ||
1246 | #: plugins/check_http.c:876 | ||
1247 | msgid "HTTP CRITICAL - Unable to open TCP socket\n" | 985 | msgid "HTTP CRITICAL - Unable to open TCP socket\n" |
1248 | msgstr "HTTP CRITICAL - Konnte TCP socket nicht öffnen\n" | 986 | msgstr "HTTP CRITICAL - Konnte TCP socket nicht öffnen\n" |
987 | |||
988 | #, fuzzy | ||
989 | msgid "HTTP UNKNOWN - Could not allocate memory for full_page\n" | ||
990 | msgstr "HTTP UNKNOWN - Konnte·url·nicht·zuweisen\n" | ||
1249 | 991 | ||
1250 | #: plugins/check_http.c:995 | ||
1251 | msgid "HTTP CRITICAL - Error on receive\n" | 992 | msgid "HTTP CRITICAL - Error on receive\n" |
1252 | msgstr "HTTP CRITICAL - Fehler beim Empfangen\n" | 993 | msgstr "HTTP CRITICAL - Fehler beim Empfangen\n" |
1253 | 994 | ||
1254 | #: plugins/check_http.c:1005 | ||
1255 | #, fuzzy | 995 | #, fuzzy |
1256 | msgid "HTTP CRITICAL - No data received from host\n" | 996 | msgid "HTTP CRITICAL - No data received from host\n" |
1257 | msgstr "HTTP CRITICAL - Keine Daten empfangen\n" | 997 | msgstr "HTTP CRITICAL - Keine Daten empfangen\n" |
1258 | 998 | ||
1259 | #: plugins/check_http.c:1056 | ||
1260 | #, fuzzy, c-format | 999 | #, fuzzy, c-format |
1261 | msgid "Invalid HTTP response received from host: %s\n" | 1000 | msgid "Invalid HTTP response received from host: %s\n" |
1262 | msgstr "Ungültige HTTP Antwort von Host empfangen\n" | 1001 | msgstr "Ungültige HTTP Antwort von Host empfangen\n" |
1263 | 1002 | ||
1264 | #: plugins/check_http.c:1060 | ||
1265 | #, fuzzy, c-format | 1003 | #, fuzzy, c-format |
1266 | msgid "Invalid HTTP response received from host on port %d: %s\n" | 1004 | msgid "Invalid HTTP response received from host on port %d: %s\n" |
1267 | msgstr "Ungültige HTTP Antwort von Host erhalten auf Port %d\n" | 1005 | msgstr "Ungültige HTTP Antwort von Host erhalten auf Port %d\n" |
1006 | |||
1007 | #, c-format | ||
1008 | msgid "" | ||
1009 | "%s\n" | ||
1010 | "%s" | ||
1011 | msgstr "" | ||
1268 | 1012 | ||
1269 | #: plugins/check_http.c:1069 | ||
1270 | #, fuzzy, c-format | 1013 | #, fuzzy, c-format |
1271 | msgid "Status line output matched \"%s\" - " | 1014 | msgid "Status line output matched \"%s\" - " |
1272 | msgstr "HTTP OK: Statusausgabe passt auf \"%s\"\n" | 1015 | msgstr "HTTP OK: Statusausgabe passt auf \"%s\"\n" |
1273 | 1016 | ||
1274 | #: plugins/check_http.c:1080 | ||
1275 | #, c-format | 1017 | #, c-format |
1276 | msgid "HTTP CRITICAL: Invalid Status Line (%s)\n" | 1018 | msgid "HTTP CRITICAL: Invalid Status Line (%s)\n" |
1277 | msgstr "HTTP CRITICAL: Ungültige Statusmeldung (%s)\n" | 1019 | msgstr "HTTP CRITICAL: Ungültige Statusmeldung (%s)\n" |
1278 | 1020 | ||
1279 | #: plugins/check_http.c:1087 | ||
1280 | #, c-format | 1021 | #, c-format |
1281 | msgid "HTTP CRITICAL: Invalid Status (%s)\n" | 1022 | msgid "HTTP CRITICAL: Invalid Status (%s)\n" |
1282 | msgstr "HTTP CRITICAL: Ungültiger Status (%s)\n" | 1023 | msgstr "HTTP CRITICAL: Ungültiger Status (%s)\n" |
1283 | 1024 | ||
1284 | #: plugins/check_http.c:1091 plugins/check_http.c:1096 | ||
1285 | #: plugins/check_http.c:1106 plugins/check_http.c:1110 | ||
1286 | #, c-format | 1025 | #, c-format |
1287 | msgid "%s - " | 1026 | msgid "%s - " |
1288 | msgstr "" | 1027 | msgstr "" |
1289 | 1028 | ||
1290 | #: plugins/check_http.c:1129 | ||
1291 | #, fuzzy, c-format | 1029 | #, fuzzy, c-format |
1292 | msgid "%sheader '%s' not found on '%s://%s:%d%s', " | 1030 | msgid "%sheader '%s' not found on '%s://%s:%d%s', " |
1293 | msgstr "CRITICAL - Muster nicht gefunden%s|%s %s\n" | 1031 | msgstr "CRITICAL - Muster nicht gefunden%s|%s %s\n" |
1294 | 1032 | ||
1295 | #: plugins/check_http.c:1141 | ||
1296 | #, fuzzy, c-format | 1033 | #, fuzzy, c-format |
1297 | msgid "%sstring '%s' not found on '%s://%s:%d%s', " | 1034 | msgid "%sstring '%s' not found on '%s://%s:%d%s', " |
1298 | msgstr "CRITICAL - Muster nicht gefunden%s|%s %s\n" | 1035 | msgstr "CRITICAL - Muster nicht gefunden%s|%s %s\n" |
1299 | 1036 | ||
1300 | #: plugins/check_http.c:1154 | ||
1301 | #, fuzzy, c-format | 1037 | #, fuzzy, c-format |
1302 | msgid "%spattern not found, " | 1038 | msgid "%spattern not found, " |
1303 | msgstr "CRITICAL - Muster nicht gefunden%s|%s %s\n" | 1039 | msgstr "CRITICAL - Muster nicht gefunden%s|%s %s\n" |
1304 | 1040 | ||
1305 | #: plugins/check_http.c:1156 | ||
1306 | #, fuzzy, c-format | 1041 | #, fuzzy, c-format |
1307 | msgid "%spattern found, " | 1042 | msgid "%spattern found, " |
1308 | msgstr "CRITICAL - Muster nicht gefunden%s|%s %s\n" | 1043 | msgstr "CRITICAL - Muster nicht gefunden%s|%s %s\n" |
1309 | 1044 | ||
1310 | #: plugins/check_http.c:1162 | ||
1311 | #, fuzzy, c-format | 1045 | #, fuzzy, c-format |
1312 | msgid "%sExecute Error: %s, " | 1046 | msgid "%sExecute Error: %s, " |
1313 | msgstr "HTTP CRITICAL - Fehler: %s\n" | 1047 | msgstr "HTTP CRITICAL - Fehler: %s\n" |
1314 | 1048 | ||
1315 | #: plugins/check_http.c:1178 | ||
1316 | #, fuzzy, c-format | 1049 | #, fuzzy, c-format |
1317 | msgid "%spage size %d too large, " | 1050 | msgid "%spage size %d too large, " |
1318 | msgstr "HTTP WARNING: Seitengröße %d zu klein%s|%s\n" | 1051 | msgstr "HTTP WARNING: Seitengröße %d zu klein%s|%s\n" |
1319 | 1052 | ||
1320 | #: plugins/check_http.c:1181 | ||
1321 | #, fuzzy, c-format | 1053 | #, fuzzy, c-format |
1322 | msgid "%spage size %d too small, " | 1054 | msgid "%spage size %d too small, " |
1323 | msgstr "HTTP WARNING: Seitengröße %d zu klein%s|%s\n" | 1055 | msgstr "HTTP WARNING: Seitengröße %d zu klein%s|%s\n" |
1324 | 1056 | ||
1325 | #: plugins/check_http.c:1194 | ||
1326 | #, fuzzy, c-format | 1057 | #, fuzzy, c-format |
1327 | msgid "%s - %d bytes in %.3f second response time %s|%s %s %s %s %s %s %s" | 1058 | msgid "%s - %d bytes in %.3f second response time %s|%s %s %s %s %s %s %s" |
1328 | msgstr " - %s - %.3f Sekunden Antwortzeit %s%s|%s %s\n" | 1059 | msgstr " - %s - %.3f Sekunden Antwortzeit %s%s|%s %s\n" |
1329 | 1060 | ||
1330 | #: plugins/check_http.c:1206 | ||
1331 | #, fuzzy, c-format | 1061 | #, fuzzy, c-format |
1332 | msgid "%s - %d bytes in %.3f second response time %s|%s %s" | 1062 | msgid "%s - %d bytes in %.3f second response time %s|%s %s" |
1333 | msgstr " - %s - %.3f Sekunden Antwortzeit %s%s|%s %s\n" | 1063 | msgstr " - %s - %.3f Sekunden Antwortzeit %s%s|%s %s\n" |
1334 | 1064 | ||
1335 | #: plugins/check_http.c:1244 | ||
1336 | msgid "HTTP UNKNOWN - Could not allocate addr\n" | 1065 | msgid "HTTP UNKNOWN - Could not allocate addr\n" |
1337 | msgstr "HTTP UNKNOWN - Konnte addr nicht zuweisen\n" | 1066 | msgstr "HTTP UNKNOWN - Konnte addr nicht zuweisen\n" |
1338 | 1067 | ||
1339 | #: plugins/check_http.c:1248 plugins/check_http.c:1279 | ||
1340 | #, fuzzy | 1068 | #, fuzzy |
1341 | msgid "HTTP UNKNOWN - Could not allocate URL\n" | 1069 | msgid "HTTP UNKNOWN - Could not allocate URL\n" |
1342 | msgstr "HTTP UNKNOWN - Konnte·url·nicht·zuweisen\n" | 1070 | msgstr "HTTP UNKNOWN - Konnte·url·nicht·zuweisen\n" |
1343 | 1071 | ||
1344 | #: plugins/check_http.c:1257 | ||
1345 | #, c-format | 1072 | #, c-format |
1346 | msgid "HTTP UNKNOWN - Could not find redirect location - %s%s\n" | 1073 | msgid "HTTP UNKNOWN - Could not find redirect location - %s%s\n" |
1347 | msgstr "" | 1074 | msgstr "" |
1348 | 1075 | ||
1349 | #: plugins/check_http.c:1272 | ||
1350 | #, fuzzy, c-format | 1076 | #, fuzzy, c-format |
1351 | msgid "HTTP UNKNOWN - Empty redirect location%s\n" | 1077 | msgid "HTTP UNKNOWN - Empty redirect location%s\n" |
1352 | msgstr "HTTP UNKNOWN - Serverdatum unbekannt\n" | 1078 | msgstr "HTTP UNKNOWN - Serverdatum unbekannt\n" |
1353 | 1079 | ||
1354 | #: plugins/check_http.c:1322 | ||
1355 | #, c-format | 1080 | #, c-format |
1356 | msgid "HTTP UNKNOWN - Could not parse redirect location - %s%s\n" | 1081 | msgid "HTTP UNKNOWN - Could not parse redirect location - %s%s\n" |
1357 | msgstr "" | 1082 | msgstr "" |
1358 | 1083 | ||
1359 | #: plugins/check_http.c:1332 | ||
1360 | #, fuzzy, c-format | 1084 | #, fuzzy, c-format |
1361 | msgid "HTTP WARNING - maximum redirection depth %d exceeded - %s://%s:%d%s%s\n" | 1085 | msgid "HTTP WARNING - maximum redirection depth %d exceeded - %s://%s:%d%s%s\n" |
1362 | msgstr "HTTP WARNING - Umleitung verursacht eine Schleife - %s://%s:%d%s%s\n" | 1086 | msgstr "HTTP WARNING - Umleitung verursacht eine Schleife - %s://%s:%d%s%s\n" |
1363 | 1087 | ||
1364 | #: plugins/check_http.c:1340 | 1088 | #, fuzzy, c-format |
1365 | #, c-format | 1089 | msgid "HTTP CRITICAL - redirection creates an infinite loop - %s://%s:%d%s%s\n" |
1366 | msgid "HTTP WARNING - redirection creates an infinite loop - %s://%s:%d%s%s\n" | ||
1367 | msgstr "HTTP WARNING - Umleitung verursacht eine Schleife - %s://%s:%d%s%s\n" | 1090 | msgstr "HTTP WARNING - Umleitung verursacht eine Schleife - %s://%s:%d%s%s\n" |
1368 | 1091 | ||
1369 | #: plugins/check_http.c:1361 | ||
1370 | #, fuzzy, c-format | 1092 | #, fuzzy, c-format |
1371 | msgid "HTTP UNKNOWN - Redirection to port above %d - %s://%s:%d%s%s\n" | 1093 | msgid "HTTP UNKNOWN - Redirection to port above %d - %s://%s:%d%s%s\n" |
1372 | msgstr "HTTP WARNING - Umleitung verursacht eine Schleife - %s://%s:%d%s%s\n" | 1094 | msgstr "HTTP WARNING - Umleitung verursacht eine Schleife - %s://%s:%d%s%s\n" |
1373 | 1095 | ||
1374 | #: plugins/check_http.c:1366 | ||
1375 | #, c-format | 1096 | #, c-format |
1376 | msgid "Redirection to %s://%s:%d%s\n" | 1097 | msgid "Redirection to %s://%s:%d%s\n" |
1377 | msgstr "" | 1098 | msgstr "" |
1378 | 1099 | ||
1379 | #: plugins/check_http.c:1440 | ||
1380 | #, fuzzy | 1100 | #, fuzzy |
1381 | msgid "This plugin tests the HTTP service on the specified host. It can test" | 1101 | msgid "This plugin tests the HTTP service on the specified host. It can test" |
1382 | msgstr "" | 1102 | msgstr "" |
1383 | "Testet den DNS Dienst auf dem angegebenen Host mit dig\n" | 1103 | "Testet den DNS Dienst auf dem angegebenen Host mit dig\n" |
1384 | "\n" | 1104 | "\n" |
1385 | 1105 | ||
1386 | #: plugins/check_http.c:1441 | ||
1387 | msgid "normal (http) and secure (https) servers, follow redirects, search for" | 1106 | msgid "normal (http) and secure (https) servers, follow redirects, search for" |
1388 | msgstr "" | 1107 | msgstr "" |
1389 | 1108 | ||
1390 | #: plugins/check_http.c:1442 | ||
1391 | msgid "strings and regular expressions, check connection times, and report on" | 1109 | msgid "strings and regular expressions, check connection times, and report on" |
1392 | msgstr "" | 1110 | msgstr "" |
1393 | 1111 | ||
1394 | #: plugins/check_http.c:1443 | ||
1395 | #, fuzzy | 1112 | #, fuzzy |
1396 | msgid "certificate expiration times." | 1113 | msgid "certificate expiration times." |
1397 | msgstr "Clientzertifikat benötigt\n" | 1114 | msgstr "Clientzertifikat benötigt\n" |
1115 | |||
1116 | #, c-format | ||
1117 | msgid "In the first form, make an HTTP request." | ||
1118 | msgstr "" | ||
1119 | |||
1120 | #, c-format | ||
1121 | msgid "" | ||
1122 | "In the second form, connect to the server and check the TLS certificate." | ||
1123 | msgstr "" | ||
1398 | 1124 | ||
1399 | #: plugins/check_http.c:1449 | ||
1400 | #, c-format | 1125 | #, c-format |
1401 | msgid "NOTE: One or both of -H and -I must be specified" | 1126 | msgid "NOTE: One or both of -H and -I must be specified" |
1402 | msgstr "" | 1127 | msgstr "" |
1403 | 1128 | ||
1404 | #: plugins/check_http.c:1457 | ||
1405 | msgid "Host name argument for servers using host headers (virtual host)" | 1129 | msgid "Host name argument for servers using host headers (virtual host)" |
1406 | msgstr "" | 1130 | msgstr "" |
1407 | 1131 | ||
1408 | #: plugins/check_http.c:1458 | ||
1409 | msgid "Append a port to include it in the header (eg: example.com:5000)" | 1132 | msgid "Append a port to include it in the header (eg: example.com:5000)" |
1410 | msgstr "" | 1133 | msgstr "" |
1411 | 1134 | ||
1412 | #: plugins/check_http.c:1460 | ||
1413 | msgid "" | 1135 | msgid "" |
1414 | "IP address or name (use numeric address if possible to bypass DNS lookup)." | 1136 | "IP address or name (use numeric address if possible to bypass DNS lookup)." |
1415 | msgstr "" | 1137 | msgstr "" |
1416 | 1138 | ||
1417 | #: plugins/check_http.c:1462 | ||
1418 | msgid "Port number (default: " | 1139 | msgid "Port number (default: " |
1419 | msgstr "" | 1140 | msgstr "" |
1420 | 1141 | ||
1421 | #: plugins/check_http.c:1469 | ||
1422 | msgid "" | 1142 | msgid "" |
1423 | "Connect via SSL. Port defaults to 443. VERSION is optional, and prevents" | 1143 | "Connect via SSL. Port defaults to 443. VERSION is optional, and prevents" |
1424 | msgstr "" | 1144 | msgstr "" |
1425 | 1145 | ||
1426 | #: plugins/check_http.c:1470 | 1146 | msgid "auto-negotiation (2 = SSLv2, 3 = SSLv3, 1 = TLSv1, 1.1 = TLSv1.1," |
1427 | msgid "auto-negotiation (1 = TLSv1, 2 = SSLv2, 3 = SSLv3)." | 1147 | msgstr "" |
1148 | |||
1149 | msgid "1.2 = TLSv1.2). With a '+' suffix, newer versions are also accepted." | ||
1428 | msgstr "" | 1150 | msgstr "" |
1429 | 1151 | ||
1430 | #: plugins/check_http.c:1472 | ||
1431 | msgid "Enable SSL/TLS hostname extension support (SNI)" | 1152 | msgid "Enable SSL/TLS hostname extension support (SNI)" |
1432 | msgstr "" | 1153 | msgstr "" |
1433 | 1154 | ||
1434 | #: plugins/check_http.c:1474 | ||
1435 | msgid "" | 1155 | msgid "" |
1436 | "Minimum number of days a certificate has to be valid. Port defaults to 443" | 1156 | "Minimum number of days a certificate has to be valid. Port defaults to 443" |
1437 | msgstr "" | 1157 | msgstr "" |
1438 | 1158 | ||
1439 | #: plugins/check_http.c:1475 | 1159 | msgid "" |
1440 | msgid "(when this option is used the URL is not checked.)" | 1160 | "(when this option is used the URL is not checked by default. You can use" |
1161 | msgstr "" | ||
1162 | |||
1163 | msgid " --continue-after-certificate to override this behavior)" | ||
1164 | msgstr "" | ||
1165 | |||
1166 | msgid "" | ||
1167 | "Allows the HTTP check to continue after performing the certificate check." | ||
1168 | msgstr "" | ||
1169 | |||
1170 | msgid "Does nothing unless -C is used." | ||
1441 | msgstr "" | 1171 | msgstr "" |
1442 | 1172 | ||
1443 | #: plugins/check_http.c:1477 | ||
1444 | msgid "Name of file that contains the client certificate (PEM format)" | 1173 | msgid "Name of file that contains the client certificate (PEM format)" |
1445 | msgstr "" | 1174 | msgstr "" |
1446 | 1175 | ||
1447 | #: plugins/check_http.c:1478 | ||
1448 | msgid "to be used in establishing the SSL session" | 1176 | msgid "to be used in establishing the SSL session" |
1449 | msgstr "" | 1177 | msgstr "" |
1450 | 1178 | ||
1451 | #: plugins/check_http.c:1480 | ||
1452 | msgid "Name of file containing the private key (PEM format)" | 1179 | msgid "Name of file containing the private key (PEM format)" |
1453 | msgstr "" | 1180 | msgstr "" |
1454 | 1181 | ||
1455 | #: plugins/check_http.c:1481 | ||
1456 | msgid "matching the client certificate" | 1182 | msgid "matching the client certificate" |
1457 | msgstr "" | 1183 | msgstr "" |
1458 | 1184 | ||
1459 | #: plugins/check_http.c:1485 | ||
1460 | msgid "Comma-delimited list of strings, at least one of them is expected in" | 1185 | msgid "Comma-delimited list of strings, at least one of them is expected in" |
1461 | msgstr "" | 1186 | msgstr "" |
1462 | 1187 | ||
1463 | #: plugins/check_http.c:1486 | ||
1464 | msgid "the first (status) line of the server response (default: " | 1188 | msgid "the first (status) line of the server response (default: " |
1465 | msgstr "" | 1189 | msgstr "" |
1466 | 1190 | ||
1467 | #: plugins/check_http.c:1488 | ||
1468 | msgid "" | 1191 | msgid "" |
1469 | "If specified skips all other status line logic (ex: 3xx, 4xx, 5xx processing)" | 1192 | "If specified skips all other status line logic (ex: 3xx, 4xx, 5xx processing)" |
1470 | msgstr "" | 1193 | msgstr "" |
1471 | 1194 | ||
1472 | #: plugins/check_http.c:1490 | ||
1473 | msgid "String to expect in the response headers" | 1195 | msgid "String to expect in the response headers" |
1474 | msgstr "" | 1196 | msgstr "" |
1475 | 1197 | ||
1476 | #: plugins/check_http.c:1492 | ||
1477 | msgid "String to expect in the content" | 1198 | msgid "String to expect in the content" |
1478 | msgstr "" | 1199 | msgstr "" |
1479 | 1200 | ||
1480 | #: plugins/check_http.c:1494 | ||
1481 | msgid "URL to GET or POST (default: /)" | 1201 | msgid "URL to GET or POST (default: /)" |
1482 | msgstr "" | 1202 | msgstr "" |
1483 | 1203 | ||
1484 | #: plugins/check_http.c:1496 | ||
1485 | msgid "URL encoded http POST data" | 1204 | msgid "URL encoded http POST data" |
1486 | msgstr "" | 1205 | msgstr "" |
1487 | 1206 | ||
1488 | #: plugins/check_http.c:1498 | ||
1489 | msgid "Set HTTP method." | 1207 | msgid "Set HTTP method." |
1490 | msgstr "" | 1208 | msgstr "" |
1491 | 1209 | ||
1492 | #: plugins/check_http.c:1500 | ||
1493 | msgid "Don't wait for document body: stop reading after headers." | 1210 | msgid "Don't wait for document body: stop reading after headers." |
1494 | msgstr "" | 1211 | msgstr "" |
1495 | 1212 | ||
1496 | #: plugins/check_http.c:1501 | ||
1497 | msgid "(Note that this still does an HTTP GET or POST, not a HEAD.)" | 1213 | msgid "(Note that this still does an HTTP GET or POST, not a HEAD.)" |
1498 | msgstr "" | 1214 | msgstr "" |
1499 | 1215 | ||
1500 | #: plugins/check_http.c:1503 | ||
1501 | msgid "Warn if document is more than SECONDS old. the number can also be of" | 1216 | msgid "Warn if document is more than SECONDS old. the number can also be of" |
1502 | msgstr "" | 1217 | msgstr "" |
1503 | 1218 | ||
1504 | #: plugins/check_http.c:1504 | ||
1505 | msgid "the form \"10m\" for minutes, \"10h\" for hours, or \"10d\" for days." | 1219 | msgid "the form \"10m\" for minutes, \"10h\" for hours, or \"10d\" for days." |
1506 | msgstr "" | 1220 | msgstr "" |
1507 | 1221 | ||
1508 | #: plugins/check_http.c:1506 | ||
1509 | msgid "specify Content-Type header media type when POSTing\n" | 1222 | msgid "specify Content-Type header media type when POSTing\n" |
1510 | msgstr "" | 1223 | msgstr "" |
1511 | 1224 | ||
1512 | #: plugins/check_http.c:1509 | ||
1513 | msgid "Allow regex to span newlines (must precede -r or -R)" | 1225 | msgid "Allow regex to span newlines (must precede -r or -R)" |
1514 | msgstr "" | 1226 | msgstr "" |
1515 | 1227 | ||
1516 | #: plugins/check_http.c:1511 | ||
1517 | msgid "Search page for regex STRING" | 1228 | msgid "Search page for regex STRING" |
1518 | msgstr "" | 1229 | msgstr "" |
1519 | 1230 | ||
1520 | #: plugins/check_http.c:1513 | ||
1521 | msgid "Search page for case-insensitive regex STRING" | 1231 | msgid "Search page for case-insensitive regex STRING" |
1522 | msgstr "" | 1232 | msgstr "" |
1523 | 1233 | ||
1524 | #: plugins/check_http.c:1515 | ||
1525 | msgid "Return CRITICAL if found, OK if not\n" | 1234 | msgid "Return CRITICAL if found, OK if not\n" |
1526 | msgstr "" | 1235 | msgstr "" |
1527 | 1236 | ||
1528 | #: plugins/check_http.c:1518 | ||
1529 | msgid "Username:password on sites with basic authentication" | 1237 | msgid "Username:password on sites with basic authentication" |
1530 | msgstr "" | 1238 | msgstr "" |
1531 | 1239 | ||
1532 | #: plugins/check_http.c:1520 | ||
1533 | msgid "Username:password on proxy-servers with basic authentication" | 1240 | msgid "Username:password on proxy-servers with basic authentication" |
1534 | msgstr "" | 1241 | msgstr "" |
1535 | 1242 | ||
1536 | #: plugins/check_http.c:1522 | ||
1537 | msgid "String to be sent in http header as \"User Agent\"" | 1243 | msgid "String to be sent in http header as \"User Agent\"" |
1538 | msgstr "" | 1244 | msgstr "" |
1539 | 1245 | ||
1540 | #: plugins/check_http.c:1524 | ||
1541 | msgid "" | 1246 | msgid "" |
1542 | "Any other tags to be sent in http header. Use multiple times for additional " | 1247 | "Any other tags to be sent in http header. Use multiple times for additional " |
1543 | "headers" | 1248 | "headers" |
1544 | msgstr "" | 1249 | msgstr "" |
1545 | 1250 | ||
1546 | #: plugins/check_http.c:1526 | ||
1547 | msgid "Print additional performance data" | 1251 | msgid "Print additional performance data" |
1548 | msgstr "" | 1252 | msgstr "" |
1549 | 1253 | ||
1550 | #: plugins/check_http.c:1528 | 1254 | msgid "Print body content below status line" |
1255 | msgstr "" | ||
1256 | |||
1551 | msgid "Wrap output in HTML link (obsoleted by urlize)" | 1257 | msgid "Wrap output in HTML link (obsoleted by urlize)" |
1552 | msgstr "" | 1258 | msgstr "" |
1553 | 1259 | ||
1554 | #: plugins/check_http.c:1530 | ||
1555 | msgid "How to handle redirected pages. sticky is like follow but stick to the" | 1260 | msgid "How to handle redirected pages. sticky is like follow but stick to the" |
1556 | msgstr "" | 1261 | msgstr "" |
1557 | 1262 | ||
1558 | #: plugins/check_http.c:1531 | ||
1559 | msgid "specified IP address. stickyport also ensures port stays the same." | 1263 | msgid "specified IP address. stickyport also ensures port stays the same." |
1560 | msgstr "" | 1264 | msgstr "" |
1561 | 1265 | ||
1562 | #: plugins/check_http.c:1533 | 1266 | #, fuzzy |
1267 | msgid "Maximal number of redirects (default: " | ||
1268 | msgstr "Ungültige Portnummer" | ||
1269 | |||
1563 | msgid "Minimum page size required (bytes) : Maximum page size required (bytes)" | 1270 | msgid "Minimum page size required (bytes) : Maximum page size required (bytes)" |
1564 | msgstr "" | 1271 | msgstr "" |
1565 | 1272 | ||
1566 | #: plugins/check_http.c:1543 | ||
1567 | #, fuzzy | 1273 | #, fuzzy |
1568 | msgid "This plugin will attempt to open an HTTP connection with the host." | 1274 | msgid "This plugin will attempt to open an HTTP connection with the host." |
1569 | msgstr "Dieses plugin testet Gameserververbindungen zum angegebenen Host." | 1275 | msgstr "Dieses plugin testet Gameserververbindungen zum angegebenen Host." |
1570 | 1276 | ||
1571 | #: plugins/check_http.c:1544 | ||
1572 | msgid "" | 1277 | msgid "" |
1573 | "Successful connects return STATE_OK, refusals and timeouts return " | 1278 | "Successful connects return STATE_OK, refusals and timeouts return " |
1574 | "STATE_CRITICAL" | 1279 | "STATE_CRITICAL" |
1575 | msgstr "" | 1280 | msgstr "" |
1576 | 1281 | ||
1577 | #: plugins/check_http.c:1545 | ||
1578 | msgid "" | 1282 | msgid "" |
1579 | "other errors return STATE_UNKNOWN. Successful connects, but incorrect " | 1283 | "other errors return STATE_UNKNOWN. Successful connects, but incorrect " |
1580 | "response" | 1284 | "response" |
1581 | msgstr "" | 1285 | msgstr "" |
1582 | 1286 | ||
1583 | #: plugins/check_http.c:1546 | ||
1584 | msgid "" | 1287 | msgid "" |
1585 | "messages from the host result in STATE_WARNING return values. If you are" | 1288 | "messages from the host result in STATE_WARNING return values. If you are" |
1586 | msgstr "" | 1289 | msgstr "" |
1587 | 1290 | ||
1588 | #: plugins/check_http.c:1547 | ||
1589 | msgid "" | 1291 | msgid "" |
1590 | "checking a virtual server that uses 'host headers' you must supply the FQDN" | 1292 | "checking a virtual server that uses 'host headers' you must supply the FQDN" |
1591 | msgstr "" | 1293 | msgstr "" |
1592 | 1294 | ||
1593 | #: plugins/check_http.c:1548 | ||
1594 | msgid "(fully qualified domain name) as the [host_name] argument." | 1295 | msgid "(fully qualified domain name) as the [host_name] argument." |
1595 | msgstr "" | 1296 | msgstr "" |
1596 | 1297 | ||
1597 | #: plugins/check_http.c:1552 | ||
1598 | msgid "This plugin can also check whether an SSL enabled web server is able to" | 1298 | msgid "This plugin can also check whether an SSL enabled web server is able to" |
1599 | msgstr "" | 1299 | msgstr "" |
1600 | 1300 | ||
1601 | #: plugins/check_http.c:1553 | ||
1602 | msgid "serve content (optionally within a specified time) or whether the X509 " | 1301 | msgid "serve content (optionally within a specified time) or whether the X509 " |
1603 | msgstr "" | 1302 | msgstr "" |
1604 | 1303 | ||
1605 | #: plugins/check_http.c:1554 | ||
1606 | msgid "certificate is still valid for the specified number of days." | 1304 | msgid "certificate is still valid for the specified number of days." |
1607 | msgstr "" | 1305 | msgstr "" |
1608 | 1306 | ||
1609 | #: plugins/check_http.c:1556 | ||
1610 | #, fuzzy | 1307 | #, fuzzy |
1611 | msgid "Please note that this plugin does not check if the presented server" | 1308 | msgid "Please note that this plugin does not check if the presented server" |
1612 | msgstr "" | 1309 | msgstr "" |
1613 | "Testet den DNS Dienst auf dem angegebenen Host mit dig\n" | 1310 | "Testet den DNS Dienst auf dem angegebenen Host mit dig\n" |
1614 | "\n" | 1311 | "\n" |
1615 | 1312 | ||
1616 | #: plugins/check_http.c:1557 | ||
1617 | msgid "certificate matches the hostname of the server, or if the certificate" | 1313 | msgid "certificate matches the hostname of the server, or if the certificate" |
1618 | msgstr "" | 1314 | msgstr "" |
1619 | 1315 | ||
1620 | #: plugins/check_http.c:1558 | ||
1621 | msgid "has a valid chain of trust to one of the locally installed CAs." | 1316 | msgid "has a valid chain of trust to one of the locally installed CAs." |
1622 | msgstr "" | 1317 | msgstr "" |
1623 | 1318 | ||
1624 | #: plugins/check_http.c:1562 | ||
1625 | msgid "" | 1319 | msgid "" |
1626 | "When the 'www.verisign.com' server returns its content within 5 seconds," | 1320 | "When the 'www.verisign.com' server returns its content within 5 seconds," |
1627 | msgstr "" | 1321 | msgstr "" |
1628 | 1322 | ||
1629 | #: plugins/check_http.c:1563 | ||
1630 | msgid "" | 1323 | msgid "" |
1631 | "a STATE_OK will be returned. When the server returns its content but exceeds" | 1324 | "a STATE_OK will be returned. When the server returns its content but exceeds" |
1632 | msgstr "" | 1325 | msgstr "" |
1633 | 1326 | ||
1634 | #: plugins/check_http.c:1564 | ||
1635 | msgid "" | 1327 | msgid "" |
1636 | "the 5-second threshold, a STATE_WARNING will be returned. When an error " | 1328 | "the 5-second threshold, a STATE_WARNING will be returned. When an error " |
1637 | "occurs," | 1329 | "occurs," |
1638 | msgstr "" | 1330 | msgstr "" |
1639 | 1331 | ||
1640 | #: plugins/check_http.c:1565 | ||
1641 | msgid "a STATE_CRITICAL will be returned." | 1332 | msgid "a STATE_CRITICAL will be returned." |
1642 | msgstr "" | 1333 | msgstr "" |
1643 | 1334 | ||
1644 | #: plugins/check_http.c:1568 | ||
1645 | msgid "" | 1335 | msgid "" |
1646 | "When the certificate of 'www.verisign.com' is valid for more than 14 days," | 1336 | "When the certificate of 'www.verisign.com' is valid for more than 14 days," |
1647 | msgstr "" | 1337 | msgstr "" |
1648 | 1338 | ||
1649 | #: plugins/check_http.c:1569 plugins/check_http.c:1575 | ||
1650 | msgid "" | 1339 | msgid "" |
1651 | "a STATE_OK is returned. When the certificate is still valid, but for less " | 1340 | "a STATE_OK is returned. When the certificate is still valid, but for less " |
1652 | "than" | 1341 | "than" |
1653 | msgstr "" | 1342 | msgstr "" |
1654 | 1343 | ||
1655 | #: plugins/check_http.c:1570 | ||
1656 | msgid "" | 1344 | msgid "" |
1657 | "14 days, a STATE_WARNING is returned. A STATE_CRITICAL will be returned when" | 1345 | "14 days, a STATE_WARNING is returned. A STATE_CRITICAL will be returned when" |
1658 | msgstr "" | 1346 | msgstr "" |
1659 | 1347 | ||
1660 | #: plugins/check_http.c:1571 | ||
1661 | #, fuzzy | 1348 | #, fuzzy |
1662 | msgid "the certificate is expired." | 1349 | msgid "the certificate is expired." |
1663 | msgstr "Clientzertifikat benötigt\n" | 1350 | msgstr "Clientzertifikat benötigt\n" |
1664 | 1351 | ||
1665 | #: plugins/check_http.c:1574 | ||
1666 | msgid "" | 1352 | msgid "" |
1667 | "When the certificate of 'www.verisign.com' is valid for more than 30 days," | 1353 | "When the certificate of 'www.verisign.com' is valid for more than 30 days," |
1668 | msgstr "" | 1354 | msgstr "" |
1669 | 1355 | ||
1670 | #: plugins/check_http.c:1576 | ||
1671 | msgid "30 days, but more than 14 days, a STATE_WARNING is returned." | 1356 | msgid "30 days, but more than 14 days, a STATE_WARNING is returned." |
1672 | msgstr "" | 1357 | msgstr "" |
1673 | 1358 | ||
1674 | #: plugins/check_http.c:1577 | ||
1675 | msgid "" | 1359 | msgid "" |
1676 | "A STATE_CRITICAL will be returned when certificate expires in less than 14 " | 1360 | "A STATE_CRITICAL will be returned when certificate expires in less than 14 " |
1677 | "days" | 1361 | "days" |
1678 | msgstr "" | 1362 | msgstr "" |
1679 | 1363 | ||
1680 | #: plugins/check_ldap.c:133 | 1364 | msgid "" |
1365 | "check_http -I 192.168.100.35 -p 80 -u https://www.verisign.com/ -S -j " | ||
1366 | "CONNECT -H www.verisign.com " | ||
1367 | msgstr "" | ||
1368 | |||
1369 | msgid "" | ||
1370 | "all these options are needed: -I <proxy> -p <proxy-port> -u <check-url> -" | ||
1371 | "S(sl) -j CONNECT -H <webserver>" | ||
1372 | msgstr "" | ||
1373 | |||
1374 | msgid "" | ||
1375 | "a STATE_CRITICAL will be returned. By adding a colon to the method you can " | ||
1376 | "set the method used" | ||
1377 | msgstr "" | ||
1378 | |||
1379 | msgid "inside the proxied connection: -j CONNECT:POST" | ||
1380 | msgstr "" | ||
1381 | |||
1681 | #, c-format | 1382 | #, c-format |
1682 | msgid "Could not connect to the server at port %i\n" | 1383 | msgid "Could not connect to the server at port %i\n" |
1683 | msgstr "" | 1384 | msgstr "" |
1684 | 1385 | ||
1685 | #: plugins/check_ldap.c:142 | ||
1686 | #, c-format | 1386 | #, c-format |
1687 | msgid "Could not set protocol version %d\n" | 1387 | msgid "Could not set protocol version %d\n" |
1688 | msgstr "" | 1388 | msgstr "" |
1689 | 1389 | ||
1690 | #: plugins/check_ldap.c:157 | ||
1691 | #, fuzzy, c-format | 1390 | #, fuzzy, c-format |
1692 | msgid "Could not init TLS at port %i!\n" | 1391 | msgid "Could not init TLS at port %i!\n" |
1693 | msgstr "Konnte stderr nicht öffnen für: %s\n" | 1392 | msgstr "Konnte stderr nicht öffnen für: %s\n" |
1694 | 1393 | ||
1695 | #: plugins/check_ldap.c:161 | ||
1696 | #, c-format | 1394 | #, c-format |
1697 | msgid "TLS not supported by the libraries!\n" | 1395 | msgid "TLS not supported by the libraries!\n" |
1698 | msgstr "" | 1396 | msgstr "" |
1699 | 1397 | ||
1700 | #: plugins/check_ldap.c:181 | ||
1701 | #, fuzzy, c-format | 1398 | #, fuzzy, c-format |
1702 | msgid "Could not init startTLS at port %i!\n" | 1399 | msgid "Could not init startTLS at port %i!\n" |
1703 | msgstr "Konnte stderr nicht öffnen für: %s\n" | 1400 | msgstr "Konnte stderr nicht öffnen für: %s\n" |
1704 | 1401 | ||
1705 | #: plugins/check_ldap.c:185 | ||
1706 | #, c-format | 1402 | #, c-format |
1707 | msgid "startTLS not supported by the library, needs LDAPv3!\n" | 1403 | msgid "startTLS not supported by the library, needs LDAPv3!\n" |
1708 | msgstr "" | 1404 | msgstr "" |
1709 | 1405 | ||
1710 | #: plugins/check_ldap.c:195 | ||
1711 | #, c-format | 1406 | #, c-format |
1712 | msgid "Could not bind to the LDAP server\n" | 1407 | msgid "Could not bind to the LDAP server\n" |
1713 | msgstr "" | 1408 | msgstr "" |
1714 | 1409 | ||
1715 | #: plugins/check_ldap.c:204 | ||
1716 | #, c-format | 1410 | #, c-format |
1717 | msgid "Could not search/find objectclasses in %s\n" | 1411 | msgid "Could not search/find objectclasses in %s\n" |
1718 | msgstr "" | 1412 | msgstr "" |
1719 | 1413 | ||
1720 | #: plugins/check_ldap.c:227 | 1414 | #, fuzzy, c-format |
1415 | msgid "LDAP %s - found %d entries in %.3f seconds|%s %s\n" | ||
1416 | msgstr "HTTP OK %s - %.3f Sekunde Antwortzeit %s%s|%s %s\n" | ||
1417 | |||
1721 | #, c-format | 1418 | #, c-format |
1722 | msgid "LDAP %s - %.3f seconds response time|%s\n" | 1419 | msgid "LDAP %s - %.3f seconds response time|%s\n" |
1723 | msgstr "" | 1420 | msgstr "" |
1724 | 1421 | ||
1725 | #: plugins/check_ldap.c:339 plugins/check_ldap.c:347 | ||
1726 | #, c-format | 1422 | #, c-format |
1727 | msgid "%s cannot be combined with %s" | 1423 | msgid "%s cannot be combined with %s" |
1728 | msgstr "" | 1424 | msgstr "" |
1729 | 1425 | ||
1730 | #: plugins/check_ldap.c:379 | ||
1731 | msgid "Please specify the host name\n" | 1426 | msgid "Please specify the host name\n" |
1732 | msgstr "" | 1427 | msgstr "" |
1733 | 1428 | ||
1734 | #: plugins/check_ldap.c:382 | ||
1735 | msgid "Please specify the LDAP base\n" | 1429 | msgid "Please specify the LDAP base\n" |
1736 | msgstr "" | 1430 | msgstr "" |
1737 | 1431 | ||
1738 | #: plugins/check_ldap.c:411 | ||
1739 | msgid "ldap attribute to search (default: \"(objectclass=*)\"" | 1432 | msgid "ldap attribute to search (default: \"(objectclass=*)\"" |
1740 | msgstr "" | 1433 | msgstr "" |
1741 | 1434 | ||
1742 | #: plugins/check_ldap.c:413 | ||
1743 | msgid "ldap base (eg. ou=my unit, o=my org, c=at" | 1435 | msgid "ldap base (eg. ou=my unit, o=my org, c=at" |
1744 | msgstr "" | 1436 | msgstr "" |
1745 | 1437 | ||
1746 | #: plugins/check_ldap.c:415 | ||
1747 | msgid "ldap bind DN (if required)" | 1438 | msgid "ldap bind DN (if required)" |
1748 | msgstr "" | 1439 | msgstr "" |
1749 | 1440 | ||
1750 | #: plugins/check_ldap.c:417 | 1441 | msgid "" |
1751 | msgid "ldap password (if required)" | 1442 | "ldap password (if required, or set the password through environment variable " |
1443 | "'LDAP_PASSWORD')" | ||
1752 | msgstr "" | 1444 | msgstr "" |
1753 | 1445 | ||
1754 | #: plugins/check_ldap.c:419 | ||
1755 | msgid "use starttls mechanism introduced in protocol version 3" | 1446 | msgid "use starttls mechanism introduced in protocol version 3" |
1756 | msgstr "" | 1447 | msgstr "" |
1757 | 1448 | ||
1758 | #: plugins/check_ldap.c:421 | ||
1759 | msgid "use ldaps (ldap v2 ssl method). this also sets the default port to" | 1449 | msgid "use ldaps (ldap v2 ssl method). this also sets the default port to" |
1760 | msgstr "" | 1450 | msgstr "" |
1761 | 1451 | ||
1762 | #: plugins/check_ldap.c:425 | ||
1763 | msgid "use ldap protocol version 2" | 1452 | msgid "use ldap protocol version 2" |
1764 | msgstr "" | 1453 | msgstr "" |
1765 | 1454 | ||
1766 | #: plugins/check_ldap.c:427 | ||
1767 | msgid "use ldap protocol version 3" | 1455 | msgid "use ldap protocol version 3" |
1768 | msgstr "" | 1456 | msgstr "" |
1769 | 1457 | ||
1770 | #: plugins/check_ldap.c:428 | ||
1771 | msgid "default protocol version:" | 1458 | msgid "default protocol version:" |
1772 | msgstr "" | 1459 | msgstr "" |
1773 | 1460 | ||
1774 | #: plugins/check_ldap.c:439 | 1461 | msgid "Number of found entries to result in warning status" |
1462 | msgstr "" | ||
1463 | |||
1464 | msgid "Number of found entries to result in critical status" | ||
1465 | msgstr "" | ||
1466 | |||
1775 | msgid "If this plugin is called via 'check_ldaps', method 'STARTTLS' will be" | 1467 | msgid "If this plugin is called via 'check_ldaps', method 'STARTTLS' will be" |
1776 | msgstr "" | 1468 | msgstr "" |
1777 | 1469 | ||
1778 | #: plugins/check_ldap.c:440 | ||
1779 | #, c-format | 1470 | #, c-format |
1780 | msgid "" | 1471 | msgid "" |
1781 | " implied (using default port %i) unless --port=636 is specified. In that " | 1472 | " implied (using default port %i) unless --port=636 is specified. In that " |
1782 | "case\n" | 1473 | "case\n" |
1783 | msgstr "" | 1474 | msgstr "" |
1784 | 1475 | ||
1785 | #: plugins/check_ldap.c:441 | ||
1786 | msgid "'SSL on connect' will be used no matter how the plugin was called." | 1476 | msgid "'SSL on connect' will be used no matter how the plugin was called." |
1787 | msgstr "" | 1477 | msgstr "" |
1788 | 1478 | ||
1789 | #: plugins/check_ldap.c:442 | ||
1790 | msgid "" | 1479 | msgid "" |
1791 | "This detection is deprecated, please use 'check_ldap' with the '--starttls' " | 1480 | "This detection is deprecated, please use 'check_ldap' with the '--starttls' " |
1792 | "or '--ssl' flags" | 1481 | "or '--ssl' flags" |
1793 | msgstr "" | 1482 | msgstr "" |
1794 | 1483 | ||
1795 | #: plugins/check_ldap.c:443 | ||
1796 | msgid "to define the behaviour explicitly instead." | 1484 | msgid "to define the behaviour explicitly instead." |
1797 | msgstr "" | 1485 | msgstr "" |
1798 | 1486 | ||
1799 | #: plugins/check_load.c:87 | 1487 | msgid "The parameters --warn-entries and --crit-entries are optional." |
1488 | msgstr "" | ||
1489 | |||
1800 | msgid "Warning threshold must be float or float triplet!\n" | 1490 | msgid "Warning threshold must be float or float triplet!\n" |
1801 | msgstr "" | 1491 | msgstr "" |
1802 | 1492 | ||
1803 | #: plugins/check_load.c:132 plugins/check_load.c:148 | ||
1804 | #, c-format | 1493 | #, c-format |
1805 | msgid "Error opening %s\n" | 1494 | msgid "Error opening %s\n" |
1806 | msgstr "" | 1495 | msgstr "" |
1807 | 1496 | ||
1808 | #: plugins/check_load.c:163 | ||
1809 | #, fuzzy, c-format | 1497 | #, fuzzy, c-format |
1810 | msgid "could not parse load from uptime: %s\n" | 1498 | msgid "could not parse load from uptime %s: %d\n" |
1811 | msgstr "Argumente konnten nicht ausgewertet werden" | 1499 | msgstr "Argumente konnten nicht ausgewertet werden" |
1812 | 1500 | ||
1813 | #: plugins/check_load.c:169 | ||
1814 | #, c-format | 1501 | #, c-format |
1815 | msgid "Error code %d returned in %s\n" | 1502 | msgid "Error code %d returned in %s\n" |
1816 | msgstr "" | 1503 | msgstr "" |
1817 | 1504 | ||
1818 | #: plugins/check_load.c:184 | ||
1819 | #, c-format | 1505 | #, c-format |
1820 | msgid "Error in getloadavg()\n" | 1506 | msgid "Error in getloadavg()\n" |
1821 | msgstr "" | 1507 | msgstr "" |
1822 | 1508 | ||
1823 | #: plugins/check_load.c:187 plugins/check_load.c:189 | ||
1824 | #, c-format | 1509 | #, c-format |
1825 | msgid "Error processing %s\n" | 1510 | msgid "Error processing %s\n" |
1826 | msgstr "" | 1511 | msgstr "" |
1827 | 1512 | ||
1828 | #: plugins/check_load.c:198 | ||
1829 | #, c-format | 1513 | #, c-format |
1830 | msgid "load average: %.2f, %.2f, %.2f" | 1514 | msgid "load average: %.2f, %.2f, %.2f" |
1831 | msgstr "" | 1515 | msgstr "" |
1832 | 1516 | ||
1833 | #: plugins/check_load.c:291 | ||
1834 | #, fuzzy, c-format | 1517 | #, fuzzy, c-format |
1835 | msgid "Critical threshold for %d-minute load average is not specified\n" | 1518 | msgid "Critical threshold for %d-minute load average is not specified\n" |
1836 | msgstr "Critical threshold muss ein positiver Integer sein\n" | 1519 | msgstr "Critical threshold muss ein positiver Integer sein\n" |
1837 | 1520 | ||
1838 | #: plugins/check_load.c:293 | ||
1839 | #, fuzzy, c-format | 1521 | #, fuzzy, c-format |
1840 | msgid "Warning threshold for %d-minute load average is not specified\n" | 1522 | msgid "Warning threshold for %d-minute load average is not specified\n" |
1841 | msgstr "Warning threshold muss ein positiver Integer sein\n" | 1523 | msgstr "Warning threshold muss ein positiver Integer sein\n" |
1842 | 1524 | ||
1843 | #: plugins/check_load.c:295 | ||
1844 | #, c-format | 1525 | #, c-format |
1845 | msgid "" | 1526 | msgid "" |
1846 | "Parameter inconsistency: %d-minute \"warning load\" is greater than " | 1527 | "Parameter inconsistency: %d-minute \"warning load\" is greater than " |
1847 | "\"critical load\"\n" | 1528 | "\"critical load\"\n" |
1848 | msgstr "" | 1529 | msgstr "" |
1849 | 1530 | ||
1850 | #: plugins/check_load.c:311 | ||
1851 | #, c-format | 1531 | #, c-format |
1852 | msgid "This plugin tests the current system load average." | 1532 | msgid "This plugin tests the current system load average." |
1853 | msgstr "" | 1533 | msgstr "" |
1854 | 1534 | ||
1855 | #: plugins/check_load.c:321 | ||
1856 | msgid "Exit with WARNING status if load average exceeds WLOADn" | 1535 | msgid "Exit with WARNING status if load average exceeds WLOADn" |
1857 | msgstr "" | 1536 | msgstr "" |
1858 | 1537 | ||
1859 | #: plugins/check_load.c:323 | ||
1860 | msgid "Exit with CRITICAL status if load average exceed CLOADn" | 1538 | msgid "Exit with CRITICAL status if load average exceed CLOADn" |
1861 | msgstr "" | 1539 | msgstr "" |
1862 | 1540 | ||
1863 | #: plugins/check_load.c:324 | ||
1864 | msgid "the load average format is the same used by \"uptime\" and \"w\"" | 1541 | msgid "the load average format is the same used by \"uptime\" and \"w\"" |
1865 | msgstr "" | 1542 | msgstr "" |
1866 | 1543 | ||
1867 | #: plugins/check_load.c:326 | ||
1868 | msgid "Divide the load averages by the number of CPUs (when possible)" | 1544 | msgid "Divide the load averages by the number of CPUs (when possible)" |
1869 | msgstr "" | 1545 | msgstr "" |
1870 | 1546 | ||
1871 | #: plugins/check_mrtg.c:75 | 1547 | msgid "Number of processes to show when printing the top consuming processes." |
1548 | msgstr "" | ||
1549 | |||
1550 | msgid "NUMBER_OF_PROCS=0 disables this feature. Default value is 0" | ||
1551 | msgstr "" | ||
1552 | |||
1553 | #, c-format | ||
1554 | msgid "'%s' exited with non-zero status.\n" | ||
1555 | msgstr "" | ||
1556 | |||
1557 | #, c-format | ||
1558 | msgid "some error occurred getting procs list.\n" | ||
1559 | msgstr "" | ||
1560 | |||
1872 | msgid "Could not parse arguments\n" | 1561 | msgid "Could not parse arguments\n" |
1873 | msgstr "" | 1562 | msgstr "" |
1874 | 1563 | ||
1875 | #: plugins/check_mrtg.c:80 | ||
1876 | #, c-format | 1564 | #, c-format |
1877 | msgid "Unable to open MRTG log file\n" | 1565 | msgid "Unable to open MRTG log file\n" |
1878 | msgstr "" | 1566 | msgstr "" |
1879 | 1567 | ||
1880 | #: plugins/check_mrtg.c:127 | ||
1881 | #, c-format | 1568 | #, c-format |
1882 | msgid "Unable to process MRTG log file\n" | 1569 | msgid "Unable to process MRTG log file\n" |
1883 | msgstr "" | 1570 | msgstr "" |
1884 | 1571 | ||
1885 | #: plugins/check_mrtg.c:135 plugins/check_mrtgtraf.c:136 | ||
1886 | #, c-format | 1572 | #, c-format |
1887 | msgid "MRTG data has expired (%d minutes old)\n" | 1573 | msgid "MRTG data has expired (%d minutes old)\n" |
1888 | msgstr "" | 1574 | msgstr "" |
1889 | 1575 | ||
1890 | #: plugins/check_mrtg.c:152 plugins/check_mrtgtraf.c:195 | ||
1891 | #: plugins/check_mrtgtraf.c:196 | ||
1892 | msgid "Avg" | 1576 | msgid "Avg" |
1893 | msgstr "" | 1577 | msgstr "" |
1894 | 1578 | ||
1895 | #: plugins/check_mrtg.c:152 plugins/check_mrtgtraf.c:195 | ||
1896 | #: plugins/check_mrtgtraf.c:196 | ||
1897 | msgid "Max" | 1579 | msgid "Max" |
1898 | msgstr "" | 1580 | msgstr "" |
1899 | 1581 | ||
1900 | #: plugins/check_mrtg.c:221 | ||
1901 | msgid "Invalid variable number" | 1582 | msgid "Invalid variable number" |
1902 | msgstr "" | 1583 | msgstr "" |
1903 | 1584 | ||
1904 | #: plugins/check_mrtg.c:256 | ||
1905 | #, c-format | 1585 | #, c-format |
1906 | msgid "" | 1586 | msgid "" |
1907 | "%s is not a valid expiration time\n" | 1587 | "%s is not a valid expiration time\n" |
1908 | "Use '%s -h' for additional help\n" | 1588 | "Use '%s -h' for additional help\n" |
1909 | msgstr "" | 1589 | msgstr "" |
1910 | 1590 | ||
1911 | #: plugins/check_mrtg.c:273 | ||
1912 | msgid "Invalid variable number\n" | 1591 | msgid "Invalid variable number\n" |
1913 | msgstr "" | 1592 | msgstr "" |
1914 | 1593 | ||
1915 | #: plugins/check_mrtg.c:300 | ||
1916 | msgid "You must supply the variable number" | 1594 | msgid "You must supply the variable number" |
1917 | msgstr "" | 1595 | msgstr "" |
1918 | 1596 | ||
1919 | #: plugins/check_mrtg.c:321 | ||
1920 | msgid "" | 1597 | msgid "" |
1921 | "This plugin will check either the average or maximum value of one of the" | 1598 | "This plugin will check either the average or maximum value of one of the" |
1922 | msgstr "" | 1599 | msgstr "" |
1923 | 1600 | ||
1924 | #: plugins/check_mrtg.c:322 | ||
1925 | #, fuzzy | 1601 | #, fuzzy |
1926 | msgid "two variables recorded in an MRTG log file." | 1602 | msgid "two variables recorded in an MRTG log file." |
1927 | msgstr "Konnte MRTG Logfile nicht öffnen" | 1603 | msgstr "Konnte MRTG Logfile nicht öffnen" |
1928 | 1604 | ||
1929 | #: plugins/check_mrtg.c:332 | ||
1930 | msgid "The MRTG log file containing the data you want to monitor" | 1605 | msgid "The MRTG log file containing the data you want to monitor" |
1931 | msgstr "" | 1606 | msgstr "" |
1932 | 1607 | ||
1933 | #: plugins/check_mrtg.c:334 | ||
1934 | msgid "Minutes before MRTG data is considered to be too old" | 1608 | msgid "Minutes before MRTG data is considered to be too old" |
1935 | msgstr "" | 1609 | msgstr "" |
1936 | 1610 | ||
1937 | #: plugins/check_mrtg.c:336 | ||
1938 | msgid "Should we check average or maximum values?" | 1611 | msgid "Should we check average or maximum values?" |
1939 | msgstr "" | 1612 | msgstr "" |
1940 | 1613 | ||
1941 | #: plugins/check_mrtg.c:338 | ||
1942 | msgid "Which variable set should we inspect? (1 or 2)" | 1614 | msgid "Which variable set should we inspect? (1 or 2)" |
1943 | msgstr "" | 1615 | msgstr "" |
1944 | 1616 | ||
1945 | #: plugins/check_mrtg.c:340 | ||
1946 | msgid "Threshold value for data to result in WARNING status" | 1617 | msgid "Threshold value for data to result in WARNING status" |
1947 | msgstr "" | 1618 | msgstr "" |
1948 | 1619 | ||
1949 | #: plugins/check_mrtg.c:342 | ||
1950 | msgid "Threshold value for data to result in CRITICAL status" | 1620 | msgid "Threshold value for data to result in CRITICAL status" |
1951 | msgstr "" | 1621 | msgstr "" |
1952 | 1622 | ||
1953 | #: plugins/check_mrtg.c:344 | ||
1954 | msgid "Type label for data (Examples: Conns, \"Processor Load\", In, Out)" | 1623 | msgid "Type label for data (Examples: Conns, \"Processor Load\", In, Out)" |
1955 | msgstr "" | 1624 | msgstr "" |
1956 | 1625 | ||
1957 | #: plugins/check_mrtg.c:346 | ||
1958 | msgid "Option units label for data (Example: Packets/Sec, Errors/Sec," | 1626 | msgid "Option units label for data (Example: Packets/Sec, Errors/Sec," |
1959 | msgstr "" | 1627 | msgstr "" |
1960 | 1628 | ||
1961 | #: plugins/check_mrtg.c:347 | ||
1962 | #, c-format | 1629 | #, c-format |
1963 | msgid "\"Bytes Per Second\", \"%% Utilization\")" | 1630 | msgid "\"Bytes Per Second\", \"%% Utilization\")" |
1964 | msgstr "" | 1631 | msgstr "" |
1965 | 1632 | ||
1966 | #: plugins/check_mrtg.c:350 | ||
1967 | msgid "" | 1633 | msgid "" |
1968 | "If the value exceeds the <vwl> threshold, a WARNING status is returned. If" | 1634 | "If the value exceeds the <vwl> threshold, a WARNING status is returned. If" |
1969 | msgstr "" | 1635 | msgstr "" |
1970 | 1636 | ||
1971 | #: plugins/check_mrtg.c:351 | ||
1972 | msgid "" | 1637 | msgid "" |
1973 | "the value exceeds the <vcl> threshold, a CRITICAL status is returned. If" | 1638 | "the value exceeds the <vcl> threshold, a CRITICAL status is returned. If" |
1974 | msgstr "" | 1639 | msgstr "" |
1975 | 1640 | ||
1976 | #: plugins/check_mrtg.c:352 | ||
1977 | msgid "the data in the log file is older than <expire_minutes> old, a WARNING" | 1641 | msgid "the data in the log file is older than <expire_minutes> old, a WARNING" |
1978 | msgstr "" | 1642 | msgstr "" |
1979 | 1643 | ||
1980 | #: plugins/check_mrtg.c:353 | ||
1981 | msgid "status is returned and a warning message is printed." | 1644 | msgid "status is returned and a warning message is printed." |
1982 | msgstr "" | 1645 | msgstr "" |
1983 | 1646 | ||
1984 | #: plugins/check_mrtg.c:356 | ||
1985 | msgid "" | 1647 | msgid "" |
1986 | "This plugin is useful for monitoring MRTG data that does not correspond to" | 1648 | "This plugin is useful for monitoring MRTG data that does not correspond to" |
1987 | msgstr "" | 1649 | msgstr "" |
1988 | 1650 | ||
1989 | #: plugins/check_mrtg.c:357 | ||
1990 | msgid "" | 1651 | msgid "" |
1991 | "bandwidth usage. (Use the check_mrtgtraf plugin for monitoring bandwidth)." | 1652 | "bandwidth usage. (Use the check_mrtgtraf plugin for monitoring bandwidth)." |
1992 | msgstr "" | 1653 | msgstr "" |
1993 | 1654 | ||
1994 | #: plugins/check_mrtg.c:358 | ||
1995 | msgid "" | 1655 | msgid "" |
1996 | "It can be used to monitor any kind of data that MRTG is monitoring - errors," | 1656 | "It can be used to monitor any kind of data that MRTG is monitoring - errors," |
1997 | msgstr "" | 1657 | msgstr "" |
1998 | 1658 | ||
1999 | #: plugins/check_mrtg.c:359 | ||
2000 | msgid "" | 1659 | msgid "" |
2001 | "packets/sec, etc. I use MRTG in conjunction with the Novell NLM that allows" | 1660 | "packets/sec, etc. I use MRTG in conjunction with the Novell NLM that allows" |
2002 | msgstr "" | 1661 | msgstr "" |
2003 | 1662 | ||
2004 | #: plugins/check_mrtg.c:360 | ||
2005 | msgid "" | 1663 | msgid "" |
2006 | "me to track processor utilization, user connections, drive space, etc and" | 1664 | "me to track processor utilization, user connections, drive space, etc and" |
2007 | msgstr "" | 1665 | msgstr "" |
2008 | 1666 | ||
2009 | #: plugins/check_mrtg.c:361 | ||
2010 | msgid "this plugin works well for monitoring that kind of data as well." | 1667 | msgid "this plugin works well for monitoring that kind of data as well." |
2011 | msgstr "" | 1668 | msgstr "" |
2012 | 1669 | ||
2013 | #: plugins/check_mrtg.c:364 | ||
2014 | msgid "" | 1670 | msgid "" |
2015 | "- This plugin only monitors one of the two variables stored in the MRTG log" | 1671 | "- This plugin only monitors one of the two variables stored in the MRTG log" |
2016 | msgstr "" | 1672 | msgstr "" |
2017 | 1673 | ||
2018 | #: plugins/check_mrtg.c:365 | ||
2019 | msgid "file. If you want to monitor both values you will have to define two" | 1674 | msgid "file. If you want to monitor both values you will have to define two" |
2020 | msgstr "" | 1675 | msgstr "" |
2021 | 1676 | ||
2022 | #: plugins/check_mrtg.c:366 | ||
2023 | msgid "commands with different values for the <variable> argument. Of course," | 1677 | msgid "commands with different values for the <variable> argument. Of course," |
2024 | msgstr "" | 1678 | msgstr "" |
2025 | 1679 | ||
2026 | #: plugins/check_mrtg.c:367 | ||
2027 | msgid "you can always hack the code to make this plugin work for you..." | 1680 | msgid "you can always hack the code to make this plugin work for you..." |
2028 | msgstr "" | 1681 | msgstr "" |
2029 | 1682 | ||
2030 | #: plugins/check_mrtg.c:368 | ||
2031 | msgid "" | 1683 | msgid "" |
2032 | "- MRTG stands for the Multi Router Traffic Grapher. It can be downloaded " | 1684 | "- MRTG stands for the Multi Router Traffic Grapher. It can be downloaded " |
2033 | "from" | 1685 | "from" |
2034 | msgstr "" | 1686 | msgstr "" |
2035 | 1687 | ||
2036 | #: plugins/check_mrtgtraf.c:88 | ||
2037 | msgid "Unable to open MRTG log file" | 1688 | msgid "Unable to open MRTG log file" |
2038 | msgstr "Konnte MRTG Logfile nicht öffnen" | 1689 | msgstr "Konnte MRTG Logfile nicht öffnen" |
2039 | 1690 | ||
2040 | #: plugins/check_mrtgtraf.c:130 | ||
2041 | msgid "Unable to process MRTG log file" | 1691 | msgid "Unable to process MRTG log file" |
2042 | msgstr "" | 1692 | msgstr "" |
2043 | 1693 | ||
2044 | #: plugins/check_mrtgtraf.c:194 | ||
2045 | #, c-format | 1694 | #, c-format |
2046 | msgid "%s. In = %0.1f %s, %s. Out = %0.1f %s|%s %s\n" | 1695 | msgid "%s. In = %0.1f %s/s, %s. Out = %0.1f %s/s|%s %s\n" |
2047 | msgstr "" | 1696 | msgstr "" |
2048 | 1697 | ||
2049 | #: plugins/check_mrtgtraf.c:207 | ||
2050 | #, c-format | 1698 | #, c-format |
2051 | msgid "Traffic %s - %s\n" | 1699 | msgid "Traffic %s - %s\n" |
2052 | msgstr "" | 1700 | msgstr "" |
2053 | 1701 | ||
2054 | #: plugins/check_mrtgtraf.c:335 | ||
2055 | msgid "" | 1702 | msgid "" |
2056 | "This plugin will check the incoming/outgoing transfer rates of a router," | 1703 | "This plugin will check the incoming/outgoing transfer rates of a router," |
2057 | msgstr "" | 1704 | msgstr "" |
2058 | 1705 | ||
2059 | #: plugins/check_mrtgtraf.c:336 | ||
2060 | msgid "switch, etc recorded in an MRTG log. If the newest log entry is older" | 1706 | msgid "switch, etc recorded in an MRTG log. If the newest log entry is older" |
2061 | msgstr "" | 1707 | msgstr "" |
2062 | 1708 | ||
2063 | #: plugins/check_mrtgtraf.c:337 | ||
2064 | msgid "than <expire_minutes>, a WARNING status is returned. If either the" | 1709 | msgid "than <expire_minutes>, a WARNING status is returned. If either the" |
2065 | msgstr "" | 1710 | msgstr "" |
2066 | 1711 | ||
2067 | #: plugins/check_mrtgtraf.c:338 | ||
2068 | msgid "incoming or outgoing rates exceed the <icl> or <ocl> thresholds (in" | 1712 | msgid "incoming or outgoing rates exceed the <icl> or <ocl> thresholds (in" |
2069 | msgstr "" | 1713 | msgstr "" |
2070 | 1714 | ||
2071 | #: plugins/check_mrtgtraf.c:339 | ||
2072 | msgid "Bytes/sec), a CRITICAL status results. If either of the rates exceed" | 1715 | msgid "Bytes/sec), a CRITICAL status results. If either of the rates exceed" |
2073 | msgstr "" | 1716 | msgstr "" |
2074 | 1717 | ||
2075 | #: plugins/check_mrtgtraf.c:340 | ||
2076 | msgid "the <iwl> or <owl> thresholds (in Bytes/sec), a WARNING status results." | 1718 | msgid "the <iwl> or <owl> thresholds (in Bytes/sec), a WARNING status results." |
2077 | msgstr "" | 1719 | msgstr "" |
2078 | 1720 | ||
2079 | #: plugins/check_mrtgtraf.c:350 | ||
2080 | msgid "File to read log from" | 1721 | msgid "File to read log from" |
2081 | msgstr "" | 1722 | msgstr "" |
2082 | 1723 | ||
2083 | #: plugins/check_mrtgtraf.c:352 | ||
2084 | msgid "Minutes after which log expires" | 1724 | msgid "Minutes after which log expires" |
2085 | msgstr "" | 1725 | msgstr "" |
2086 | 1726 | ||
2087 | #: plugins/check_mrtgtraf.c:354 | ||
2088 | msgid "Test average or maximum" | 1727 | msgid "Test average or maximum" |
2089 | msgstr "" | 1728 | msgstr "" |
2090 | 1729 | ||
2091 | #: plugins/check_mrtgtraf.c:356 | ||
2092 | #, fuzzy | 1730 | #, fuzzy |
2093 | msgid "Warning threshold pair <incoming>,<outgoing>" | 1731 | msgid "Warning threshold pair <incoming>,<outgoing>" |
2094 | msgstr "Warning threshold Integer sein" | 1732 | msgstr "Warning threshold Integer sein" |
2095 | 1733 | ||
2096 | #: plugins/check_mrtgtraf.c:358 | ||
2097 | #, fuzzy | 1734 | #, fuzzy |
2098 | msgid "Critical threshold pair <incoming>,<outgoing>" | 1735 | msgid "Critical threshold pair <incoming>,<outgoing>" |
2099 | msgstr "Critical threshold muss ein Integer sein" | 1736 | msgstr "Critical threshold muss ein Integer sein" |
2100 | 1737 | ||
2101 | #: plugins/check_mrtgtraf.c:362 | ||
2102 | msgid "" | 1738 | msgid "" |
2103 | "- MRTG stands for Multi Router Traffic Grapher. It can be downloaded from" | 1739 | "- MRTG stands for Multi Router Traffic Grapher. It can be downloaded from" |
2104 | msgstr "" | 1740 | msgstr "" |
2105 | 1741 | ||
2106 | #: plugins/check_mrtgtraf.c:364 | ||
2107 | msgid "- While MRTG can monitor things other than traffic rates, this" | 1742 | msgid "- While MRTG can monitor things other than traffic rates, this" |
2108 | msgstr "" | 1743 | msgstr "" |
2109 | 1744 | ||
2110 | #: plugins/check_mrtgtraf.c:365 | ||
2111 | msgid " plugin probably won't work with much else without modification." | 1745 | msgid " plugin probably won't work with much else without modification." |
2112 | msgstr "" | 1746 | msgstr "" |
2113 | 1747 | ||
2114 | #: plugins/check_mrtgtraf.c:366 | ||
2115 | msgid "- The calculated i/o rates are a little off from what MRTG actually" | 1748 | msgid "- The calculated i/o rates are a little off from what MRTG actually" |
2116 | msgstr "" | 1749 | msgstr "" |
2117 | 1750 | ||
2118 | #: plugins/check_mrtgtraf.c:367 | ||
2119 | msgid " reports. I'm not sure why this is right now, but will look into it" | 1751 | msgid " reports. I'm not sure why this is right now, but will look into it" |
2120 | msgstr "" | 1752 | msgstr "" |
2121 | 1753 | ||
2122 | #: plugins/check_mrtgtraf.c:368 | ||
2123 | msgid " for future enhancements of this plugin." | 1754 | msgid " for future enhancements of this plugin." |
2124 | msgstr "" | 1755 | msgstr "" |
2125 | 1756 | ||
2126 | #: plugins/check_mrtgtraf.c:378 | ||
2127 | #, c-format | 1757 | #, c-format |
2128 | msgid "Usage" | 1758 | msgid "Usage" |
2129 | msgstr "" | 1759 | msgstr "" |
2130 | 1760 | ||
2131 | #: plugins/check_mysql.c:171 | ||
2132 | #, c-format | 1761 | #, c-format |
2133 | msgid "status store_result error: %s\n" | 1762 | msgid "status store_result error: %s\n" |
2134 | msgstr "" | 1763 | msgstr "" |
2135 | 1764 | ||
2136 | #: plugins/check_mysql.c:202 | ||
2137 | #, c-format | 1765 | #, c-format |
2138 | msgid "slave query error: %s\n" | 1766 | msgid "slave query error: %s\n" |
2139 | msgstr "" | 1767 | msgstr "" |
2140 | 1768 | ||
2141 | #: plugins/check_mysql.c:209 | ||
2142 | #, c-format | 1769 | #, c-format |
2143 | msgid "slave store_result error: %s\n" | 1770 | msgid "slave store_result error: %s\n" |
2144 | msgstr "" | 1771 | msgstr "" |
2145 | 1772 | ||
2146 | #: plugins/check_mysql.c:215 | ||
2147 | msgid "No slaves defined" | 1773 | msgid "No slaves defined" |
2148 | msgstr "" | 1774 | msgstr "" |
2149 | 1775 | ||
2150 | #: plugins/check_mysql.c:223 | ||
2151 | #, c-format | 1776 | #, c-format |
2152 | msgid "slave fetch row error: %s\n" | 1777 | msgid "slave fetch row error: %s\n" |
2153 | msgstr "" | 1778 | msgstr "" |
2154 | 1779 | ||
2155 | #: plugins/check_mysql.c:228 | ||
2156 | #, c-format | 1780 | #, c-format |
2157 | msgid "Slave running: %s" | 1781 | msgid "Slave running: %s" |
2158 | msgstr "" | 1782 | msgstr "" |
2159 | 1783 | ||
2160 | #: plugins/check_mysql.c:505 | ||
2161 | msgid "This program tests connections to a MySQL server" | 1784 | msgid "This program tests connections to a MySQL server" |
2162 | msgstr "" | 1785 | msgstr "" |
2163 | 1786 | ||
2164 | #: plugins/check_mysql.c:516 | 1787 | msgid "Ignore authentication failure and check for mysql connectivity only" |
1788 | msgstr "" | ||
1789 | |||
2165 | msgid "Use the specified socket (has no effect if -H is used)" | 1790 | msgid "Use the specified socket (has no effect if -H is used)" |
2166 | msgstr "" | 1791 | msgstr "" |
2167 | 1792 | ||
2168 | #: plugins/check_mysql.c:519 | ||
2169 | msgid "Check database with indicated name" | 1793 | msgid "Check database with indicated name" |
2170 | msgstr "" | 1794 | msgstr "" |
2171 | 1795 | ||
2172 | #: plugins/check_mysql.c:521 | ||
2173 | msgid "Read from the specified client options file" | 1796 | msgid "Read from the specified client options file" |
2174 | msgstr "" | 1797 | msgstr "" |
2175 | 1798 | ||
2176 | #: plugins/check_mysql.c:523 | ||
2177 | msgid "Use a client options group" | 1799 | msgid "Use a client options group" |
2178 | msgstr "" | 1800 | msgstr "" |
2179 | 1801 | ||
2180 | #: plugins/check_mysql.c:525 | ||
2181 | msgid "Connect using the indicated username" | 1802 | msgid "Connect using the indicated username" |
2182 | msgstr "" | 1803 | msgstr "" |
2183 | 1804 | ||
2184 | #: plugins/check_mysql.c:527 | ||
2185 | msgid "Use the indicated password to authenticate the connection" | 1805 | msgid "Use the indicated password to authenticate the connection" |
2186 | msgstr "" | 1806 | msgstr "" |
2187 | 1807 | ||
2188 | #: plugins/check_mysql.c:528 | ||
2189 | msgid "IMPORTANT: THIS FORM OF AUTHENTICATION IS NOT SECURE!!!" | 1808 | msgid "IMPORTANT: THIS FORM OF AUTHENTICATION IS NOT SECURE!!!" |
2190 | msgstr "" | 1809 | msgstr "" |
2191 | 1810 | ||
2192 | #: plugins/check_mysql.c:529 | ||
2193 | msgid "Your clear-text password could be visible as a process table entry" | 1811 | msgid "Your clear-text password could be visible as a process table entry" |
2194 | msgstr "" | 1812 | msgstr "" |
2195 | 1813 | ||
2196 | #: plugins/check_mysql.c:531 | ||
2197 | msgid "Check if the slave thread is running properly." | 1814 | msgid "Check if the slave thread is running properly." |
2198 | msgstr "" | 1815 | msgstr "" |
2199 | 1816 | ||
2200 | #: plugins/check_mysql.c:533 | ||
2201 | msgid "Exit with WARNING status if slave server is more than INTEGER seconds" | 1817 | msgid "Exit with WARNING status if slave server is more than INTEGER seconds" |
2202 | msgstr "" | 1818 | msgstr "" |
2203 | 1819 | ||
2204 | #: plugins/check_mysql.c:534 plugins/check_mysql.c:537 | ||
2205 | msgid "behind master" | 1820 | msgid "behind master" |
2206 | msgstr "" | 1821 | msgstr "" |
2207 | 1822 | ||
2208 | #: plugins/check_mysql.c:536 | ||
2209 | msgid "Exit with CRITICAL status if slave server is more then INTEGER seconds" | 1823 | msgid "Exit with CRITICAL status if slave server is more then INTEGER seconds" |
2210 | msgstr "" | 1824 | msgstr "" |
2211 | 1825 | ||
2212 | #: plugins/check_mysql.c:539 | 1826 | msgid "Use ssl encryption" |
2213 | msgid "Use ssl encryptation" | ||
2214 | msgstr "" | 1827 | msgstr "" |
2215 | 1828 | ||
2216 | #: plugins/check_mysql.c:541 | ||
2217 | msgid "Path to CA signing the cert" | 1829 | msgid "Path to CA signing the cert" |
2218 | msgstr "" | 1830 | msgstr "" |
2219 | 1831 | ||
2220 | #: plugins/check_mysql.c:543 | ||
2221 | msgid "Path to SSL certificate" | 1832 | msgid "Path to SSL certificate" |
2222 | msgstr "" | 1833 | msgstr "" |
2223 | 1834 | ||
2224 | #: plugins/check_mysql.c:545 | ||
2225 | msgid "Path to private SSL key" | 1835 | msgid "Path to private SSL key" |
2226 | msgstr "" | 1836 | msgstr "" |
2227 | 1837 | ||
2228 | #: plugins/check_mysql.c:547 | ||
2229 | msgid "Path to CA directory" | 1838 | msgid "Path to CA directory" |
2230 | msgstr "" | 1839 | msgstr "" |
2231 | 1840 | ||
2232 | #: plugins/check_mysql.c:549 | ||
2233 | msgid "List of valid SSL ciphers" | 1841 | msgid "List of valid SSL ciphers" |
2234 | msgstr "" | 1842 | msgstr "" |
2235 | 1843 | ||
2236 | #: plugins/check_mysql.c:553 | ||
2237 | msgid "" | 1844 | msgid "" |
2238 | "There are no required arguments. By default, the local database is checked" | 1845 | "There are no required arguments. By default, the local database is checked" |
2239 | msgstr "" | 1846 | msgstr "" |
2240 | 1847 | ||
2241 | #: plugins/check_mysql.c:554 | ||
2242 | msgid "" | 1848 | msgid "" |
2243 | "using the default unix socket. You can force TCP on localhost by using an" | 1849 | "using the default unix socket. You can force TCP on localhost by using an" |
2244 | msgstr "" | 1850 | msgstr "" |
2245 | 1851 | ||
2246 | #: plugins/check_mysql.c:555 | ||
2247 | msgid "IP address or FQDN ('localhost' will use the socket as well)." | 1852 | msgid "IP address or FQDN ('localhost' will use the socket as well)." |
2248 | msgstr "" | 1853 | msgstr "" |
2249 | 1854 | ||
2250 | #: plugins/check_mysql.c:559 | ||
2251 | msgid "You must specify -p with an empty string to force an empty password," | 1855 | msgid "You must specify -p with an empty string to force an empty password," |
2252 | msgstr "" | 1856 | msgstr "" |
2253 | 1857 | ||
2254 | #: plugins/check_mysql.c:560 | ||
2255 | msgid "overriding any my.cnf settings." | 1858 | msgid "overriding any my.cnf settings." |
2256 | msgstr "" | 1859 | msgstr "" |
2257 | 1860 | ||
2258 | #: plugins/check_nagios.c:104 | ||
2259 | msgid "Cannot open status log for reading!" | 1861 | msgid "Cannot open status log for reading!" |
2260 | msgstr "" | 1862 | msgstr "" |
2261 | 1863 | ||
2262 | #: plugins/check_nagios.c:154 | ||
2263 | #, c-format | 1864 | #, c-format |
2264 | msgid "Found process: %s %s\n" | 1865 | msgid "Found process: %s %s\n" |
2265 | msgstr "" | 1866 | msgstr "" |
2266 | 1867 | ||
2267 | #: plugins/check_nagios.c:168 | ||
2268 | msgid "Could not locate a running Nagios process!" | 1868 | msgid "Could not locate a running Nagios process!" |
2269 | msgstr "" | 1869 | msgstr "" |
2270 | 1870 | ||
2271 | #: plugins/check_nagios.c:172 | ||
2272 | msgid "Cannot parse Nagios log file for valid time" | 1871 | msgid "Cannot parse Nagios log file for valid time" |
2273 | msgstr "" | 1872 | msgstr "" |
2274 | 1873 | ||
2275 | #: plugins/check_nagios.c:183 plugins/check_procs.c:356 | ||
2276 | #, c-format | 1874 | #, c-format |
2277 | msgid "%d process" | 1875 | msgid "%d process" |
2278 | msgid_plural "%d processes" | 1876 | msgid_plural "%d processes" |
2279 | msgstr[0] "" | 1877 | msgstr[0] "" |
2280 | msgstr[1] "" | 1878 | msgstr[1] "" |
2281 | 1879 | ||
2282 | #: plugins/check_nagios.c:186 | ||
2283 | #, c-format | 1880 | #, c-format |
2284 | msgid "status log updated %d second ago" | 1881 | msgid "status log updated %d second ago" |
2285 | msgid_plural "status log updated %d seconds ago" | 1882 | msgid_plural "status log updated %d seconds ago" |
2286 | msgstr[0] "" | 1883 | msgstr[0] "" |
2287 | msgstr[1] "" | 1884 | msgstr[1] "" |
2288 | 1885 | ||
2289 | #: plugins/check_nagios.c:224 plugins/check_nagios.c:253 | ||
2290 | #, fuzzy | 1886 | #, fuzzy |
2291 | msgid "Expiration time must be an integer (seconds)\n" | 1887 | msgid "Expiration time must be an integer (seconds)\n" |
2292 | msgstr "skip lines muss ein Integer sein" | 1888 | msgstr "skip lines muss ein Integer sein" |
2293 | 1889 | ||
2294 | #: plugins/check_nagios.c:260 | ||
2295 | #, fuzzy | 1890 | #, fuzzy |
2296 | msgid "Timeout must be an integer (seconds)\n" | 1891 | msgid "Timeout must be an integer (seconds)\n" |
2297 | msgstr "skip lines muss ein Integer sein" | 1892 | msgstr "skip lines muss ein Integer sein" |
2298 | 1893 | ||
2299 | #: plugins/check_nagios.c:272 | ||
2300 | #, fuzzy | 1894 | #, fuzzy |
2301 | msgid "You must provide the status_log\n" | 1895 | msgid "You must provide the status_log\n" |
2302 | msgstr "%s: Hostname muss angegeben werden\n" | 1896 | msgstr "%s: Hostname muss angegeben werden\n" |
2303 | 1897 | ||
2304 | #: plugins/check_nagios.c:275 | ||
2305 | #, fuzzy | 1898 | #, fuzzy |
2306 | msgid "You must provide a process string\n" | 1899 | msgid "You must provide a process string\n" |
2307 | msgstr "%s: Hostname muss angegeben werden\n" | 1900 | msgstr "%s: Hostname muss angegeben werden\n" |
2308 | 1901 | ||
2309 | #: plugins/check_nagios.c:289 | ||
2310 | #, fuzzy | 1902 | #, fuzzy |
2311 | msgid "" | 1903 | msgid "" |
2312 | "This plugin checks the status of the Nagios process on the local machine" | 1904 | "This plugin checks the status of the Nagios process on the local machine" |
2313 | msgstr "" | 1905 | msgstr "" |
2314 | "Dieses Plugin prüft den freien Speicher auf einem gemounteten Filesystem\n" | 1906 | "Dieses Plugin prüft den freien Speicher auf einem gemounteten Filesystem\n" |
2315 | "und erzeugt einen Alarm wenn einer der angegebenen Schwellwerte " | 1907 | "und erzeugt einen Alarm wenn einer der angegebenen Schwellwerte " |
2316 | "unterschritten wird.\n" | 1908 | "unterschritten wird.\n" |
2317 | "\n" | 1909 | "\n" |
2318 | 1910 | ||
2319 | #: plugins/check_nagios.c:290 | ||
2320 | msgid "" | 1911 | msgid "" |
2321 | "The plugin will check to make sure the Nagios status log is no older than" | 1912 | "The plugin will check to make sure the Nagios status log is no older than" |
2322 | msgstr "" | 1913 | msgstr "" |
2323 | 1914 | ||
2324 | #: plugins/check_nagios.c:291 | ||
2325 | msgid "the number of minutes specified by the expires option." | 1915 | msgid "the number of minutes specified by the expires option." |
2326 | msgstr "" | 1916 | msgstr "" |
2327 | 1917 | ||
2328 | #: plugins/check_nagios.c:292 | ||
2329 | msgid "" | 1918 | msgid "" |
2330 | "It also checks the process table for a process matching the command argument." | 1919 | "It also checks the process table for a process matching the command argument." |
2331 | msgstr "" | 1920 | msgstr "" |
2332 | 1921 | ||
2333 | #: plugins/check_nagios.c:302 | ||
2334 | msgid "Name of the log file to check" | 1922 | msgid "Name of the log file to check" |
2335 | msgstr "" | 1923 | msgstr "" |
2336 | 1924 | ||
2337 | #: plugins/check_nagios.c:304 | ||
2338 | msgid "Minutes aging after which logfile is considered stale" | 1925 | msgid "Minutes aging after which logfile is considered stale" |
2339 | msgstr "" | 1926 | msgstr "" |
2340 | 1927 | ||
2341 | #: plugins/check_nagios.c:306 | ||
2342 | msgid "Substring to search for in process arguments" | 1928 | msgid "Substring to search for in process arguments" |
2343 | msgstr "" | 1929 | msgstr "" |
2344 | 1930 | ||
2345 | #: plugins/check_nagios.c:308 | ||
2346 | msgid "Timeout for the plugin in seconds" | 1931 | msgid "Timeout for the plugin in seconds" |
2347 | msgstr "" | 1932 | msgstr "" |
2348 | 1933 | ||
2349 | #: plugins/check_nt.c:142 | ||
2350 | #, c-format | 1934 | #, c-format |
2351 | msgid "Wrong client version - running: %s, required: %s" | 1935 | msgid "Wrong client version - running: %s, required: %s" |
2352 | msgstr "" | 1936 | msgstr "" |
2353 | 1937 | ||
2354 | #: plugins/check_nt.c:153 plugins/check_nt.c:218 | ||
2355 | msgid "missing -l parameters" | 1938 | msgid "missing -l parameters" |
2356 | msgstr "" | 1939 | msgstr "" |
2357 | 1940 | ||
2358 | #: plugins/check_nt.c:155 | ||
2359 | msgid "wrong -l parameter." | 1941 | msgid "wrong -l parameter." |
2360 | msgstr "" | 1942 | msgstr "" |
2361 | 1943 | ||
2362 | #: plugins/check_nt.c:159 | ||
2363 | msgid "CPU Load" | 1944 | msgid "CPU Load" |
2364 | msgstr "" | 1945 | msgstr "" |
2365 | 1946 | ||
2366 | #: plugins/check_nt.c:182 | ||
2367 | #, c-format | 1947 | #, c-format |
2368 | msgid " %lu%% (%lu min average)" | 1948 | msgid " %lu%% (%lu min average)" |
2369 | msgstr "" | 1949 | msgstr "" |
2370 | 1950 | ||
2371 | #: plugins/check_nt.c:184 | ||
2372 | #, c-format | 1951 | #, c-format |
2373 | msgid " '%lu min avg Load'=%lu%%;%lu;%lu;0;100" | 1952 | msgid " '%lu min avg Load'=%lu%%;%lu;%lu;0;100" |
2374 | msgstr "" | 1953 | msgstr "" |
2375 | 1954 | ||
2376 | #: plugins/check_nt.c:194 | ||
2377 | msgid "not enough values for -l parameters" | 1955 | msgid "not enough values for -l parameters" |
2378 | msgstr "" | 1956 | msgstr "" |
2379 | 1957 | ||
2380 | #: plugins/check_nt.c:206 | 1958 | msgid "wrong -l argument" |
2381 | #, c-format | ||
2382 | msgid "System Uptime - %u day(s) %u hour(s) %u minute(s)" | ||
2383 | msgstr "" | 1959 | msgstr "" |
2384 | 1960 | ||
2385 | #: plugins/check_nt.c:220 | 1961 | #, c-format |
2386 | msgid "wrong -l argument" | 1962 | msgid "System Uptime - %u day(s) %u hour(s) %u minute(s) |uptime=%lu" |
2387 | msgstr "" | 1963 | msgstr "" |
2388 | 1964 | ||
2389 | #: plugins/check_nt.c:236 | ||
2390 | #, c-format | 1965 | #, c-format |
2391 | msgid "%s:\\ - total: %.2f Gb - used: %.2f Gb (%.0f%%) - free %.2f Gb (%.0f%%)" | 1966 | msgid "%s:\\ - total: %.2f Gb - used: %.2f Gb (%.0f%%) - free %.2f Gb (%.0f%%)" |
2392 | msgstr "" | 1967 | msgstr "" |
2393 | 1968 | ||
2394 | #: plugins/check_nt.c:239 | ||
2395 | #, c-format | 1969 | #, c-format |
2396 | msgid "'%s:\\ Used Space'=%.2fGb;%.2f;%.2f;0.00;%.2f" | 1970 | msgid "'%s:\\ Used Space'=%.2fGb;%.2f;%.2f;0.00;%.2f" |
2397 | msgstr "" | 1971 | msgstr "" |
2398 | 1972 | ||
2399 | #: plugins/check_nt.c:253 | ||
2400 | msgid "Free disk space : Invalid drive" | 1973 | msgid "Free disk space : Invalid drive" |
2401 | msgstr "" | 1974 | msgstr "" |
2402 | 1975 | ||
2403 | #: plugins/check_nt.c:263 | ||
2404 | msgid "No service/process specified" | 1976 | msgid "No service/process specified" |
2405 | msgstr "" | 1977 | msgstr "" |
2406 | 1978 | ||
2407 | #: plugins/check_nt.c:271 plugins/check_nt.c:284 plugins/check_nt.c:288 | ||
2408 | #: plugins/check_nt.c:622 | ||
2409 | msgid "could not fetch information from server\n" | 1979 | msgid "could not fetch information from server\n" |
2410 | msgstr "" | 1980 | msgstr "" |
2411 | 1981 | ||
2412 | #: plugins/check_nt.c:296 | ||
2413 | #, c-format | 1982 | #, c-format |
2414 | msgid "" | 1983 | msgid "" |
2415 | "Memory usage: total:%.2f Mb - used: %.2f Mb (%.0f%%) - free: %.2f Mb (%.0f%%)" | 1984 | "Memory usage: total:%.2f MB - used: %.2f MB (%.0f%%) - free: %.2f MB (%.0f%%)" |
2416 | msgstr "" | 1985 | msgstr "" |
2417 | 1986 | ||
2418 | #: plugins/check_nt.c:299 | ||
2419 | #, c-format | 1987 | #, c-format |
2420 | msgid "'Memory usage'=%.2fMb;%.2f;%.2f;0.00;%.2f" | 1988 | msgid "'Memory usage'=%.2fMB;%.2f;%.2f;0.00;%.2f" |
2421 | msgstr "" | 1989 | msgstr "" |
2422 | 1990 | ||
2423 | #: plugins/check_nt.c:335 plugins/check_nt.c:420 plugins/check_nt.c:450 | ||
2424 | msgid "No counter specified" | 1991 | msgid "No counter specified" |
2425 | msgstr "" | 1992 | msgstr "" |
2426 | 1993 | ||
2427 | #: plugins/check_nt.c:367 | ||
2428 | msgid "Minimum value contains non-numbers" | 1994 | msgid "Minimum value contains non-numbers" |
2429 | msgstr "" | 1995 | msgstr "" |
2430 | 1996 | ||
2431 | #: plugins/check_nt.c:371 | ||
2432 | msgid "Maximum value contains non-numbers" | 1997 | msgid "Maximum value contains non-numbers" |
2433 | msgstr "" | 1998 | msgstr "" |
2434 | 1999 | ||
2435 | #: plugins/check_nt.c:378 | ||
2436 | msgid "No unit counter specified" | 2000 | msgid "No unit counter specified" |
2437 | msgstr "" | 2001 | msgstr "" |
2438 | 2002 | ||
2439 | #: plugins/check_nt.c:465 | ||
2440 | msgid "Please specify a variable to check" | 2003 | msgid "Please specify a variable to check" |
2441 | msgstr "" | 2004 | msgstr "" |
2442 | 2005 | ||
2443 | #: plugins/check_nt.c:549 | ||
2444 | #, fuzzy | 2006 | #, fuzzy |
2445 | msgid "Server port must be an integer\n" | 2007 | msgid "Server port must be an integer\n" |
2446 | msgstr "skip lines muss ein Integer sein" | 2008 | msgstr "skip lines muss ein Integer sein" |
2447 | 2009 | ||
2448 | #: plugins/check_nt.c:603 | ||
2449 | #, fuzzy | 2010 | #, fuzzy |
2450 | msgid "You must provide a server address or host name" | 2011 | msgid "You must provide a server address or host name" |
2451 | msgstr "Hostname oder Serveradresse muss angegeben werden" | 2012 | msgstr "Hostname oder Serveradresse muss angegeben werden" |
2452 | 2013 | ||
2453 | #: plugins/check_nt.c:609 | ||
2454 | msgid "None" | 2014 | msgid "None" |
2455 | msgstr "" | 2015 | msgstr "" |
2456 | 2016 | ||
2457 | #: plugins/check_nt.c:666 | ||
2458 | msgid "This plugin collects data from the NSClient service running on a" | 2017 | msgid "This plugin collects data from the NSClient service running on a" |
2459 | msgstr "" | 2018 | msgstr "" |
2460 | 2019 | ||
2461 | #: plugins/check_nt.c:667 | ||
2462 | msgid "Windows NT/2000/XP/2003 server." | 2020 | msgid "Windows NT/2000/XP/2003 server." |
2463 | msgstr "" | 2021 | msgstr "" |
2464 | 2022 | ||
2465 | #: plugins/check_nt.c:678 | ||
2466 | msgid "Name of the host to check" | 2023 | msgid "Name of the host to check" |
2467 | msgstr "" | 2024 | msgstr "" |
2468 | 2025 | ||
2469 | #: plugins/check_nt.c:680 | ||
2470 | #, fuzzy | 2026 | #, fuzzy |
2471 | msgid "Optional port number (default: " | 2027 | msgid "Optional port number (default: " |
2472 | msgstr "Ungültige Portnummer" | 2028 | msgstr "Ungültige Portnummer" |
2473 | 2029 | ||
2474 | #: plugins/check_nt.c:683 | ||
2475 | msgid "Password needed for the request" | 2030 | msgid "Password needed for the request" |
2476 | msgstr "" | 2031 | msgstr "" |
2477 | 2032 | ||
2478 | #: plugins/check_nt.c:685 plugins/check_nwstat.c:1661 | ||
2479 | #: plugins/check_overcr.c:432 | ||
2480 | msgid "Threshold which will result in a warning status" | 2033 | msgid "Threshold which will result in a warning status" |
2481 | msgstr "" | 2034 | msgstr "" |
2482 | 2035 | ||
2483 | #: plugins/check_nt.c:687 plugins/check_nwstat.c:1663 | ||
2484 | #: plugins/check_overcr.c:434 | ||
2485 | msgid "Threshold which will result in a critical status" | 2036 | msgid "Threshold which will result in a critical status" |
2486 | msgstr "" | 2037 | msgstr "" |
2487 | 2038 | ||
2488 | #: plugins/check_nt.c:689 | ||
2489 | msgid "Seconds before connection attempt times out (default: " | 2039 | msgid "Seconds before connection attempt times out (default: " |
2490 | msgstr "" | 2040 | msgstr "" |
2491 | 2041 | ||
2492 | #: plugins/check_nt.c:691 | ||
2493 | msgid "Parameters passed to specified check (see below)" | 2042 | msgid "Parameters passed to specified check (see below)" |
2494 | msgstr "" | 2043 | msgstr "" |
2495 | 2044 | ||
2496 | #: plugins/check_nt.c:693 | ||
2497 | msgid "Display options (currently only SHOWALL works)" | 2045 | msgid "Display options (currently only SHOWALL works)" |
2498 | msgstr "" | 2046 | msgstr "" |
2499 | 2047 | ||
2500 | #: plugins/check_nt.c:695 | ||
2501 | msgid "Return UNKNOWN on timeouts" | 2048 | msgid "Return UNKNOWN on timeouts" |
2502 | msgstr "" | 2049 | msgstr "" |
2503 | 2050 | ||
2504 | #: plugins/check_nt.c:698 | ||
2505 | msgid "Print this help screen" | 2051 | msgid "Print this help screen" |
2506 | msgstr "" | 2052 | msgstr "" |
2507 | 2053 | ||
2508 | #: plugins/check_nt.c:700 | ||
2509 | msgid "Print version information" | 2054 | msgid "Print version information" |
2510 | msgstr "" | 2055 | msgstr "" |
2511 | 2056 | ||
2512 | #: plugins/check_nt.c:702 | ||
2513 | msgid "Variable to check" | 2057 | msgid "Variable to check" |
2514 | msgstr "" | 2058 | msgstr "" |
2515 | 2059 | ||
2516 | #: plugins/check_nt.c:703 | ||
2517 | msgid "Valid variables are:" | 2060 | msgid "Valid variables are:" |
2518 | msgstr "" | 2061 | msgstr "" |
2519 | 2062 | ||
2520 | #: plugins/check_nt.c:705 | ||
2521 | msgid "Get the NSClient version" | 2063 | msgid "Get the NSClient version" |
2522 | msgstr "" | 2064 | msgstr "" |
2523 | 2065 | ||
2524 | #: plugins/check_nt.c:706 | ||
2525 | msgid "If -l <version> is specified, will return warning if versions differ." | 2066 | msgid "If -l <version> is specified, will return warning if versions differ." |
2526 | msgstr "" | 2067 | msgstr "" |
2527 | 2068 | ||
2528 | #: plugins/check_nt.c:708 | ||
2529 | msgid "Average CPU load on last x minutes." | 2069 | msgid "Average CPU load on last x minutes." |
2530 | msgstr "" | 2070 | msgstr "" |
2531 | 2071 | ||
2532 | #: plugins/check_nt.c:709 | ||
2533 | msgid "Request a -l parameter with the following syntax:" | 2072 | msgid "Request a -l parameter with the following syntax:" |
2534 | msgstr "" | 2073 | msgstr "" |
2535 | 2074 | ||
2536 | #: plugins/check_nt.c:710 | ||
2537 | msgid "-l <minutes range>,<warning threshold>,<critical threshold>." | 2075 | msgid "-l <minutes range>,<warning threshold>,<critical threshold>." |
2538 | msgstr "" | 2076 | msgstr "" |
2539 | 2077 | ||
2540 | #: plugins/check_nt.c:711 | ||
2541 | msgid "<minute range> should be less than 24*60." | 2078 | msgid "<minute range> should be less than 24*60." |
2542 | msgstr "" | 2079 | msgstr "" |
2543 | 2080 | ||
2544 | #: plugins/check_nt.c:712 | ||
2545 | msgid "" | 2081 | msgid "" |
2546 | "Thresholds are percentage and up to 10 requests can be done in one shot." | 2082 | "Thresholds are percentage and up to 10 requests can be done in one shot." |
2547 | msgstr "" | 2083 | msgstr "" |
2548 | 2084 | ||
2549 | #: plugins/check_nt.c:715 | ||
2550 | msgid "Get the uptime of the machine." | 2085 | msgid "Get the uptime of the machine." |
2551 | msgstr "" | 2086 | msgstr "" |
2552 | 2087 | ||
2553 | #: plugins/check_nt.c:716 | 2088 | msgid "-l <unit> " |
2554 | msgid "No specific parameters. No warning or critical threshold" | 2089 | msgstr "" |
2090 | |||
2091 | msgid "<unit> = seconds, minutes, hours, or days. (default: minutes)" | ||
2555 | msgstr "" | 2092 | msgstr "" |
2556 | 2093 | ||
2557 | #: plugins/check_nt.c:718 | 2094 | #, fuzzy |
2095 | msgid "Thresholds will use the unit specified above." | ||
2096 | msgstr "" | ||
2097 | "Testet den DNS Dienst auf dem angegebenen Host mit dig\n" | ||
2098 | "\n" | ||
2099 | |||
2558 | msgid "Size and percentage of disk use." | 2100 | msgid "Size and percentage of disk use." |
2559 | msgstr "" | 2101 | msgstr "" |
2560 | 2102 | ||
2561 | #: plugins/check_nt.c:719 | ||
2562 | msgid "Request a -l parameter containing the drive letter only." | 2103 | msgid "Request a -l parameter containing the drive letter only." |
2563 | msgstr "" | 2104 | msgstr "" |
2564 | 2105 | ||
2565 | #: plugins/check_nt.c:720 plugins/check_nt.c:723 | ||
2566 | msgid "Warning and critical thresholds can be specified with -w and -c." | 2106 | msgid "Warning and critical thresholds can be specified with -w and -c." |
2567 | msgstr "" | 2107 | msgstr "" |
2568 | 2108 | ||
2569 | #: plugins/check_nt.c:722 | ||
2570 | msgid "Memory use." | 2109 | msgid "Memory use." |
2571 | msgstr "" | 2110 | msgstr "" |
2572 | 2111 | ||
2573 | #: plugins/check_nt.c:725 | ||
2574 | msgid "Check the state of one or several services." | 2112 | msgid "Check the state of one or several services." |
2575 | msgstr "" | 2113 | msgstr "" |
2576 | 2114 | ||
2577 | #: plugins/check_nt.c:726 plugins/check_nt.c:735 | ||
2578 | msgid "Request a -l parameters with the following syntax:" | 2115 | msgid "Request a -l parameters with the following syntax:" |
2579 | msgstr "" | 2116 | msgstr "" |
2580 | 2117 | ||
2581 | #: plugins/check_nt.c:727 | ||
2582 | msgid "-l <service1>,<service2>,<service3>,..." | 2118 | msgid "-l <service1>,<service2>,<service3>,..." |
2583 | msgstr "" | 2119 | msgstr "" |
2584 | 2120 | ||
2585 | #: plugins/check_nt.c:728 | ||
2586 | msgid "You can specify -d SHOWALL in case you want to see working services" | 2121 | msgid "You can specify -d SHOWALL in case you want to see working services" |
2587 | msgstr "" | 2122 | msgstr "" |
2588 | 2123 | ||
2589 | #: plugins/check_nt.c:729 | ||
2590 | msgid "in the returned string." | 2124 | msgid "in the returned string." |
2591 | msgstr "" | 2125 | msgstr "" |
2592 | 2126 | ||
2593 | #: plugins/check_nt.c:731 | ||
2594 | msgid "Check if one or several process are running." | 2127 | msgid "Check if one or several process are running." |
2595 | msgstr "" | 2128 | msgstr "" |
2596 | 2129 | ||
2597 | #: plugins/check_nt.c:732 | ||
2598 | msgid "Same syntax as SERVICESTATE." | 2130 | msgid "Same syntax as SERVICESTATE." |
2599 | msgstr "" | 2131 | msgstr "" |
2600 | 2132 | ||
2601 | #: plugins/check_nt.c:734 | ||
2602 | msgid "Check any performance counter of Windows NT/2000." | 2133 | msgid "Check any performance counter of Windows NT/2000." |
2603 | msgstr "" | 2134 | msgstr "" |
2604 | 2135 | ||
2605 | #: plugins/check_nt.c:736 | ||
2606 | msgid "-l \"\\\\<performance object>\\\\counter\",\"<description>" | 2136 | msgid "-l \"\\\\<performance object>\\\\counter\",\"<description>" |
2607 | msgstr "" | 2137 | msgstr "" |
2608 | 2138 | ||
2609 | #: plugins/check_nt.c:737 | ||
2610 | msgid "The <description> parameter is optional and is given to a printf " | 2139 | msgid "The <description> parameter is optional and is given to a printf " |
2611 | msgstr "" | 2140 | msgstr "" |
2612 | 2141 | ||
2613 | #: plugins/check_nt.c:738 | ||
2614 | msgid "output command which requires a float parameter." | 2142 | msgid "output command which requires a float parameter." |
2615 | msgstr "" | 2143 | msgstr "" |
2616 | 2144 | ||
2617 | #: plugins/check_nt.c:739 | ||
2618 | #, c-format | 2145 | #, c-format |
2619 | msgid "If <description> does not include \"%%\", it is used as a label." | 2146 | msgid "If <description> does not include \"%%\", it is used as a label." |
2620 | msgstr "" | 2147 | msgstr "" |
2621 | 2148 | ||
2622 | #: plugins/check_nt.c:740 plugins/check_nt.c:755 | ||
2623 | msgid "Some examples:" | 2149 | msgid "Some examples:" |
2624 | msgstr "" | 2150 | msgstr "" |
2625 | 2151 | ||
2626 | #: plugins/check_nt.c:744 | ||
2627 | msgid "Check any performance counter object of Windows NT/2000." | 2152 | msgid "Check any performance counter object of Windows NT/2000." |
2628 | msgstr "" | 2153 | msgstr "" |
2629 | 2154 | ||
2630 | #: plugins/check_nt.c:745 | ||
2631 | msgid "" | 2155 | msgid "" |
2632 | "Syntax: check_nt -H <hostname> -p <port> -v INSTANCES -l <counter object>" | 2156 | "Syntax: check_nt -H <hostname> -p <port> -v INSTANCES -l <counter object>" |
2633 | msgstr "" | 2157 | msgstr "" |
2634 | 2158 | ||
2635 | #: plugins/check_nt.c:746 | ||
2636 | msgid "<counter object> is a Windows Perfmon Counter object (eg. Process)," | 2159 | msgid "<counter object> is a Windows Perfmon Counter object (eg. Process)," |
2637 | msgstr "" | 2160 | msgstr "" |
2638 | 2161 | ||
2639 | #: plugins/check_nt.c:747 | ||
2640 | msgid "if it is two words, it should be enclosed in quotes" | 2162 | msgid "if it is two words, it should be enclosed in quotes" |
2641 | msgstr "" | 2163 | msgstr "" |
2642 | 2164 | ||
2643 | #: plugins/check_nt.c:748 | ||
2644 | msgid "The returned results will be a comma-separated list of instances on " | 2165 | msgid "The returned results will be a comma-separated list of instances on " |
2645 | msgstr "" | 2166 | msgstr "" |
2646 | 2167 | ||
2647 | #: plugins/check_nt.c:749 | ||
2648 | msgid " the selected computer for that object." | 2168 | msgid " the selected computer for that object." |
2649 | msgstr "" | 2169 | msgstr "" |
2650 | 2170 | ||
2651 | #: plugins/check_nt.c:750 | ||
2652 | msgid "" | 2171 | msgid "" |
2653 | "The purpose of this is to be run from command line to determine what " | 2172 | "The purpose of this is to be run from command line to determine what " |
2654 | "instances" | 2173 | "instances" |
2655 | msgstr "" | 2174 | msgstr "" |
2656 | 2175 | ||
2657 | #: plugins/check_nt.c:751 | ||
2658 | msgid "" | 2176 | msgid "" |
2659 | " are available for monitoring without having to log onto the Windows server" | 2177 | " are available for monitoring without having to log onto the Windows server" |
2660 | msgstr "" | 2178 | msgstr "" |
2661 | 2179 | ||
2662 | #: plugins/check_nt.c:752 | ||
2663 | msgid " to run Perfmon directly." | 2180 | msgid " to run Perfmon directly." |
2664 | msgstr "" | 2181 | msgstr "" |
2665 | 2182 | ||
2666 | #: plugins/check_nt.c:753 | ||
2667 | msgid "" | 2183 | msgid "" |
2668 | "It can also be used in scripts that automatically create the monitoring " | 2184 | "It can also be used in scripts that automatically create the monitoring " |
2669 | "service" | 2185 | "service" |
2670 | msgstr "" | 2186 | msgstr "" |
2671 | 2187 | ||
2672 | #: plugins/check_nt.c:754 | ||
2673 | msgid " configuration files." | 2188 | msgid " configuration files." |
2674 | msgstr "" | 2189 | msgstr "" |
2675 | 2190 | ||
2676 | #: plugins/check_nt.c:756 | ||
2677 | msgid "check_nt -H 192.168.1.1 -p 1248 -v INSTANCES -l Process" | 2191 | msgid "check_nt -H 192.168.1.1 -p 1248 -v INSTANCES -l Process" |
2678 | msgstr "" | 2192 | msgstr "" |
2679 | 2193 | ||
2680 | #: plugins/check_nt.c:759 | ||
2681 | msgid "" | 2194 | msgid "" |
2682 | "- The NSClient service should be running on the server to get any information" | 2195 | "- The NSClient service should be running on the server to get any information" |
2683 | msgstr "" | 2196 | msgstr "" |
2684 | 2197 | ||
2685 | #: plugins/check_nt.c:761 | ||
2686 | msgid "- Critical thresholds should be lower than warning thresholds" | 2198 | msgid "- Critical thresholds should be lower than warning thresholds" |
2687 | msgstr "" | 2199 | msgstr "" |
2688 | 2200 | ||
2689 | #: plugins/check_nt.c:762 | ||
2690 | msgid "- Default port 1248 is sometimes in use by other services. The error" | 2201 | msgid "- Default port 1248 is sometimes in use by other services. The error" |
2691 | msgstr "" | 2202 | msgstr "" |
2692 | 2203 | ||
2693 | #: plugins/check_nt.c:763 | ||
2694 | msgid "" | 2204 | msgid "" |
2695 | "output when this happens contains \"Cannot map xxxxx to protocol number\"." | 2205 | "output when this happens contains \"Cannot map xxxxx to protocol number\"." |
2696 | msgstr "" | 2206 | msgstr "" |
2697 | 2207 | ||
2698 | #: plugins/check_nt.c:764 | ||
2699 | msgid "One fix for this is to change the port to something else on check_nt " | 2208 | msgid "One fix for this is to change the port to something else on check_nt " |
2700 | msgstr "" | 2209 | msgstr "" |
2701 | 2210 | ||
2702 | #: plugins/check_nt.c:765 | ||
2703 | msgid "and on the client service it's connecting to." | 2211 | msgid "and on the client service it's connecting to." |
2704 | msgstr "" | 2212 | msgstr "" |
2705 | 2213 | ||
2706 | #: plugins/check_ntp.c:807 plugins/check_ntp_peer.c:612 | 2214 | #, c-format |
2707 | #: plugins/check_ntp_time.c:571 | 2215 | msgid "jitter response too large (%lu bytes)\n" |
2216 | msgstr "" | ||
2217 | |||
2708 | msgid "NTP CRITICAL:" | 2218 | msgid "NTP CRITICAL:" |
2709 | msgstr "NTP CRITICAL:" | 2219 | msgstr "NTP CRITICAL:" |
2710 | 2220 | ||
2711 | #: plugins/check_ntp.c:810 plugins/check_ntp_peer.c:615 | ||
2712 | #: plugins/check_ntp_time.c:574 | ||
2713 | msgid "NTP WARNING:" | 2221 | msgid "NTP WARNING:" |
2714 | msgstr "NTP WARNING:" | 2222 | msgstr "NTP WARNING:" |
2715 | 2223 | ||
2716 | #: plugins/check_ntp.c:813 plugins/check_ntp_peer.c:618 | ||
2717 | #: plugins/check_ntp_time.c:577 | ||
2718 | msgid "NTP OK:" | 2224 | msgid "NTP OK:" |
2719 | msgstr "NTP OK:" | 2225 | msgstr "NTP OK:" |
2720 | 2226 | ||
2721 | #: plugins/check_ntp.c:816 plugins/check_ntp_peer.c:621 | ||
2722 | #: plugins/check_ntp_time.c:580 | ||
2723 | msgid "NTP UNKNOWN:" | 2227 | msgid "NTP UNKNOWN:" |
2724 | msgstr "NTP UNKNOWN:" | 2228 | msgstr "NTP UNKNOWN:" |
2725 | 2229 | ||
2726 | #: plugins/check_ntp.c:820 plugins/check_ntp_peer.c:630 | ||
2727 | #: plugins/check_ntp_time.c:584 | ||
2728 | msgid "Offset unknown" | 2230 | msgid "Offset unknown" |
2729 | msgstr "" | 2231 | msgstr "" |
2730 | 2232 | ||
2731 | #: plugins/check_ntp.c:823 plugins/check_ntp_peer.c:633 | ||
2732 | #: plugins/check_ntp_time.c:587 | ||
2733 | msgid "Offset" | 2233 | msgid "Offset" |
2734 | msgstr "" | 2234 | msgstr "" |
2735 | 2235 | ||
2736 | #: plugins/check_ntp.c:844 plugins/check_ntp_peer.c:662 | ||
2737 | #, fuzzy | 2236 | #, fuzzy |
2738 | msgid "This plugin checks the selected ntp server" | 2237 | msgid "This plugin checks the selected ntp server" |
2739 | msgstr "" | 2238 | msgstr "" |
2740 | "Testet den DNS Dienst auf dem angegebenen Host mit dig\n" | 2239 | "Testet den DNS Dienst auf dem angegebenen Host mit dig\n" |
2741 | "\n" | 2240 | "\n" |
2742 | 2241 | ||
2743 | #: plugins/check_ntp.c:854 plugins/check_ntp_peer.c:674 | ||
2744 | #: plugins/check_ntp_time.c:614 | ||
2745 | msgid "Offset to result in warning status (seconds)" | 2242 | msgid "Offset to result in warning status (seconds)" |
2746 | msgstr "" | 2243 | msgstr "" |
2747 | 2244 | ||
2748 | #: plugins/check_ntp.c:856 plugins/check_ntp_peer.c:676 | ||
2749 | #: plugins/check_ntp_time.c:616 | ||
2750 | msgid "Offset to result in critical status (seconds)" | 2245 | msgid "Offset to result in critical status (seconds)" |
2751 | msgstr "" | 2246 | msgstr "" |
2752 | 2247 | ||
2753 | #: plugins/check_ntp.c:858 plugins/check_ntp_peer.c:682 | ||
2754 | #, fuzzy | 2248 | #, fuzzy |
2755 | msgid "Warning threshold for jitter" | 2249 | msgid "Warning threshold for jitter" |
2756 | msgstr "Warning threshold Integer sein" | 2250 | msgstr "Warning threshold Integer sein" |
2757 | 2251 | ||
2758 | #: plugins/check_ntp.c:860 plugins/check_ntp_peer.c:684 | ||
2759 | #, fuzzy | 2252 | #, fuzzy |
2760 | msgid "Critical threshold for jitter" | 2253 | msgid "Critical threshold for jitter" |
2761 | msgstr "Critical threshold muss ein Integer sein" | 2254 | msgstr "Critical threshold muss ein Integer sein" |
2762 | 2255 | ||
2763 | #: plugins/check_ntp.c:870 | ||
2764 | msgid "Normal offset check:" | 2256 | msgid "Normal offset check:" |
2765 | msgstr "" | 2257 | msgstr "" |
2766 | 2258 | ||
2767 | #: plugins/check_ntp.c:873 plugins/check_ntp_peer.c:709 | ||
2768 | msgid "" | 2259 | msgid "" |
2769 | "Check jitter too, avoiding critical notifications if jitter isn't available" | 2260 | "Check jitter too, avoiding critical notifications if jitter isn't available" |
2770 | msgstr "" | 2261 | msgstr "" |
2771 | 2262 | ||
2772 | #: plugins/check_ntp.c:874 plugins/check_ntp_peer.c:710 | ||
2773 | msgid "(See Notes above for more details on thresholds formats):" | 2263 | msgid "(See Notes above for more details on thresholds formats):" |
2774 | msgstr "" | 2264 | msgstr "" |
2775 | 2265 | ||
2776 | #: plugins/check_ntp.c:879 plugins/check_ntp.c:886 | ||
2777 | msgid "WARNING: check_ntp is deprecated. Please use check_ntp_peer or" | 2266 | msgid "WARNING: check_ntp is deprecated. Please use check_ntp_peer or" |
2778 | msgstr "" | 2267 | msgstr "" |
2779 | 2268 | ||
2780 | #: plugins/check_ntp.c:880 plugins/check_ntp.c:887 | ||
2781 | msgid "check_ntp_time instead." | 2269 | msgid "check_ntp_time instead." |
2782 | msgstr "" | 2270 | msgstr "" |
2783 | 2271 | ||
2784 | #: plugins/check_ntp_peer.c:625 | ||
2785 | msgid "Server not synchronized" | 2272 | msgid "Server not synchronized" |
2786 | msgstr "" | 2273 | msgstr "" |
2787 | 2274 | ||
2788 | #: plugins/check_ntp_peer.c:627 | ||
2789 | msgid "Server has the LI_ALARM bit set" | 2275 | msgid "Server has the LI_ALARM bit set" |
2790 | msgstr "" | 2276 | msgstr "" |
2791 | 2277 | ||
2792 | #: plugins/check_ntp_peer.c:672 | ||
2793 | msgid "" | 2278 | msgid "" |
2794 | "Returns UNKNOWN instead of CRITICAL or WARNING if server isn't synchronized" | 2279 | "Returns UNKNOWN instead of CRITICAL or WARNING if server isn't synchronized" |
2795 | msgstr "" | 2280 | msgstr "" |
2796 | 2281 | ||
2797 | #: plugins/check_ntp_peer.c:678 | ||
2798 | #, fuzzy | 2282 | #, fuzzy |
2799 | msgid "Warning threshold for stratum of server's synchronization peer" | 2283 | msgid "Warning threshold for stratum of server's synchronization peer" |
2800 | msgstr "Warning threshold Integer sein" | 2284 | msgstr "Warning threshold Integer sein" |
2801 | 2285 | ||
2802 | #: plugins/check_ntp_peer.c:680 | ||
2803 | #, fuzzy | 2286 | #, fuzzy |
2804 | msgid "Critical threshold for stratum of server's synchronization peer" | 2287 | msgid "Critical threshold for stratum of server's synchronization peer" |
2805 | msgstr "Critical threshold muss ein Integer sein" | 2288 | msgstr "Critical threshold muss ein Integer sein" |
2806 | 2289 | ||
2807 | #: plugins/check_ntp_peer.c:686 | ||
2808 | #, fuzzy | 2290 | #, fuzzy |
2809 | msgid "Warning threshold for number of usable time sources (\"truechimers\")" | 2291 | msgid "Warning threshold for number of usable time sources (\"truechimers\")" |
2810 | msgstr "Warning threshold muss ein positiver Integer sein\n" | 2292 | msgstr "Warning threshold muss ein positiver Integer sein\n" |
2811 | 2293 | ||
2812 | #: plugins/check_ntp_peer.c:688 | ||
2813 | #, fuzzy | 2294 | #, fuzzy |
2814 | msgid "Critical threshold for number of usable time sources (\"truechimers\")" | 2295 | msgid "Critical threshold for number of usable time sources (\"truechimers\")" |
2815 | msgstr "Critical threshold muss ein positiver Integer sein\n" | 2296 | msgstr "Critical threshold muss ein positiver Integer sein\n" |
2816 | 2297 | ||
2817 | #: plugins/check_ntp_peer.c:693 | ||
2818 | msgid "This plugin checks an NTP server independent of any commandline" | 2298 | msgid "This plugin checks an NTP server independent of any commandline" |
2819 | msgstr "" | 2299 | msgstr "" |
2820 | 2300 | ||
2821 | #: plugins/check_ntp_peer.c:694 | ||
2822 | msgid "programs or external libraries." | 2301 | msgid "programs or external libraries." |
2823 | msgstr "" | 2302 | msgstr "" |
2824 | 2303 | ||
2825 | #: plugins/check_ntp_peer.c:697 | ||
2826 | #, fuzzy | 2304 | #, fuzzy |
2827 | msgid "Use this plugin to check the health of an NTP server. It supports" | 2305 | msgid "Use this plugin to check the health of an NTP server. It supports" |
2828 | msgstr "" | 2306 | msgstr "" |
2829 | "Testet den DNS Dienst auf dem angegebenen Host mit dig\n" | 2307 | "Testet den DNS Dienst auf dem angegebenen Host mit dig\n" |
2830 | "\n" | 2308 | "\n" |
2831 | 2309 | ||
2832 | #: plugins/check_ntp_peer.c:698 | ||
2833 | msgid "checking the offset with the sync peer, the jitter and stratum. This" | 2310 | msgid "checking the offset with the sync peer, the jitter and stratum. This" |
2834 | msgstr "" | 2311 | msgstr "" |
2835 | 2312 | ||
2836 | #: plugins/check_ntp_peer.c:699 | ||
2837 | msgid "plugin will not check the clock offset between the local host and NTP" | 2313 | msgid "plugin will not check the clock offset between the local host and NTP" |
2838 | msgstr "" | 2314 | msgstr "" |
2839 | 2315 | ||
2840 | #: plugins/check_ntp_peer.c:700 | ||
2841 | msgid "server; please use check_ntp_time for that purpose." | 2316 | msgid "server; please use check_ntp_time for that purpose." |
2842 | msgstr "" | 2317 | msgstr "" |
2843 | 2318 | ||
2844 | #: plugins/check_ntp_peer.c:706 | ||
2845 | msgid "Simple NTP server check:" | 2319 | msgid "Simple NTP server check:" |
2846 | msgstr "" | 2320 | msgstr "" |
2847 | 2321 | ||
2848 | #: plugins/check_ntp_peer.c:713 | ||
2849 | msgid "Only check the number of usable time sources (\"truechimers\"):" | 2322 | msgid "Only check the number of usable time sources (\"truechimers\"):" |
2850 | msgstr "" | 2323 | msgstr "" |
2851 | 2324 | ||
2852 | #: plugins/check_ntp_peer.c:716 | ||
2853 | msgid "Check only stratum:" | 2325 | msgid "Check only stratum:" |
2854 | msgstr "" | 2326 | msgstr "" |
2855 | 2327 | ||
2856 | #: plugins/check_ntp_time.c:602 | ||
2857 | #, fuzzy | 2328 | #, fuzzy |
2858 | msgid "This plugin checks the clock offset with the ntp server" | 2329 | msgid "This plugin checks the clock offset with the ntp server" |
2859 | msgstr "" | 2330 | msgstr "" |
2860 | "Testet den DNS Dienst auf dem angegebenen Host mit dig\n" | 2331 | "Testet den DNS Dienst auf dem angegebenen Host mit dig\n" |
2861 | "\n" | 2332 | "\n" |
2862 | 2333 | ||
2863 | #: plugins/check_ntp_time.c:612 | ||
2864 | msgid "Returns UNKNOWN instead of CRITICAL if offset cannot be found" | 2334 | msgid "Returns UNKNOWN instead of CRITICAL if offset cannot be found" |
2865 | msgstr "" | 2335 | msgstr "" |
2866 | 2336 | ||
2867 | #: plugins/check_ntp_time.c:621 | 2337 | msgid "Expected offset of the ntp server relative to local server (seconds)" |
2338 | msgstr "" | ||
2339 | |||
2868 | #, fuzzy | 2340 | #, fuzzy |
2869 | msgid "This plugin checks the clock offset between the local host and a" | 2341 | msgid "This plugin checks the clock offset between the local host and a" |
2870 | msgstr "" | 2342 | msgstr "" |
2871 | "Dieses Plugin prüft den freien Speicher auf einem gemounteten Filesystem\n" | 2343 | "Dieses Plugin prüft den freien Speicher auf einem gemounteten Filesystem\n" |
2872 | "und erzeugt einen Alarm wenn einer der angegebenen Schwellwerte " | 2344 | "und erzeugt einen Alarm wenn einer der angegebenen Schwellwerte " |
2873 | "unterschritten wird.\n" | 2345 | "unterschritten wird.\n" |
2874 | "\n" | 2346 | "\n" |
2875 | 2347 | ||
2876 | #: plugins/check_ntp_time.c:622 | ||
2877 | msgid "remote NTP server. It is independent of any commandline programs or" | 2348 | msgid "remote NTP server. It is independent of any commandline programs or" |
2878 | msgstr "" | 2349 | msgstr "" |
2879 | 2350 | ||
2880 | #: plugins/check_ntp_time.c:623 | ||
2881 | msgid "external libraries." | 2351 | msgid "external libraries." |
2882 | msgstr "" | 2352 | msgstr "" |
2883 | 2353 | ||
2884 | #: plugins/check_ntp_time.c:627 | ||
2885 | msgid "If you'd rather want to monitor an NTP server, please use" | 2354 | msgid "If you'd rather want to monitor an NTP server, please use" |
2886 | msgstr "" | 2355 | msgstr "" |
2887 | 2356 | ||
2888 | #: plugins/check_ntp_time.c:628 | ||
2889 | msgid "check_ntp_peer." | 2357 | msgid "check_ntp_peer." |
2890 | msgstr "" | 2358 | msgstr "" |
2891 | 2359 | ||
2892 | #: plugins/check_nwstat.c:194 | 2360 | msgid "--time-offset is useful for compensating for servers with known" |
2361 | msgstr "" | ||
2362 | |||
2363 | msgid "and expected clock skew." | ||
2364 | msgstr "" | ||
2365 | |||
2893 | #, c-format | 2366 | #, c-format |
2894 | msgid "NetWare %s: " | 2367 | msgid "NetWare %s: " |
2895 | msgstr "" | 2368 | msgstr "" |
2896 | 2369 | ||
2897 | #: plugins/check_nwstat.c:232 | ||
2898 | #, c-format | 2370 | #, c-format |
2899 | msgid "Up %s," | 2371 | msgid "Up %s," |
2900 | msgstr "" | 2372 | msgstr "" |
2901 | 2373 | ||
2902 | #: plugins/check_nwstat.c:240 | ||
2903 | #, c-format | 2374 | #, c-format |
2904 | msgid "Load %s - %s %s-min load average = %lu%%|load%s=%lu;%lu;%lu;0;100" | 2375 | msgid "Load %s - %s %s-min load average = %lu%%|load%s=%lu;%lu;%lu;0;100" |
2905 | msgstr "" | 2376 | msgstr "" |
2906 | 2377 | ||
2907 | #: plugins/check_nwstat.c:268 | ||
2908 | #, c-format | 2378 | #, c-format |
2909 | msgid "Conns %s - %lu current connections|Conns=%lu;%lu;%lu;;" | 2379 | msgid "Conns %s - %lu current connections|Conns=%lu;%lu;%lu;;" |
2910 | msgstr "" | 2380 | msgstr "" |
2911 | 2381 | ||
2912 | #: plugins/check_nwstat.c:293 | ||
2913 | #, c-format | 2382 | #, c-format |
2914 | msgid "%s: Long term cache hits = %lu%%" | 2383 | msgid "%s: Long term cache hits = %lu%%" |
2915 | msgstr "" | 2384 | msgstr "" |
2916 | 2385 | ||
2917 | #: plugins/check_nwstat.c:315 | ||
2918 | #, c-format | 2386 | #, c-format |
2919 | msgid "%s: Total cache buffers = %lu|Cachebuffers=%lu;%lu;%lu;;" | 2387 | msgid "%s: Total cache buffers = %lu|Cachebuffers=%lu;%lu;%lu;;" |
2920 | msgstr "" | 2388 | msgstr "" |
2921 | 2389 | ||
2922 | #: plugins/check_nwstat.c:340 | ||
2923 | #, c-format | 2390 | #, c-format |
2924 | msgid "%s: Dirty cache buffers = %lu|Dirty-Cache-Buffers=%lu;%lu;%lu;;" | 2391 | msgid "%s: Dirty cache buffers = %lu|Dirty-Cache-Buffers=%lu;%lu;%lu;;" |
2925 | msgstr "" | 2392 | msgstr "" |
2926 | 2393 | ||
2927 | #: plugins/check_nwstat.c:365 | ||
2928 | #, c-format | 2394 | #, c-format |
2929 | msgid "%s: LRU sitting time = %lu minutes" | 2395 | msgid "%s: LRU sitting time = %lu minutes" |
2930 | msgstr "" | 2396 | msgstr "" |
2931 | 2397 | ||
2932 | #: plugins/check_nwstat.c:382 plugins/check_nwstat.c:410 | ||
2933 | #: plugins/check_nwstat.c:437 plugins/check_nwstat.c:470 | ||
2934 | #: plugins/check_nwstat.c:650 plugins/check_nwstat.c:676 | ||
2935 | #: plugins/check_nwstat.c:707 plugins/check_nwstat.c:753 | ||
2936 | #: plugins/check_nwstat.c:777 | ||
2937 | #, c-format | 2398 | #, c-format |
2938 | msgid "CRITICAL - Volume '%s' does not exist!" | 2399 | msgid "CRITICAL - Volume '%s' does not exist!" |
2939 | msgstr "" | 2400 | msgstr "" |
2940 | 2401 | ||
2941 | #: plugins/check_nwstat.c:391 | ||
2942 | #, c-format | 2402 | #, c-format |
2943 | msgid "%s%lu KB free on volume %s|KBFree%s=%lu;%lu;%lu;;" | 2403 | msgid "%s%lu KB free on volume %s|KBFree%s=%lu;%lu;%lu;;" |
2944 | msgstr "" | 2404 | msgstr "" |
2945 | 2405 | ||
2946 | #: plugins/check_nwstat.c:392 plugins/check_nwstat.c:420 | ||
2947 | #: plugins/check_nwstat.c:447 plugins/check_nwstat.c:659 | ||
2948 | #: plugins/check_nwstat.c:685 plugins/check_nwstat.c:761 | ||
2949 | msgid "Only " | 2406 | msgid "Only " |
2950 | msgstr "" | 2407 | msgstr "" |
2951 | 2408 | ||
2952 | #: plugins/check_nwstat.c:419 | ||
2953 | #, c-format | 2409 | #, c-format |
2954 | msgid "%s%lu MB free on volume %s|MBFree%s=%lu;%lu;%lu;;" | 2410 | msgid "%s%lu MB free on volume %s|MBFree%s=%lu;%lu;%lu;;" |
2955 | msgstr "" | 2411 | msgstr "" |
2956 | 2412 | ||
2957 | #: plugins/check_nwstat.c:446 | ||
2958 | #, c-format | 2413 | #, c-format |
2959 | msgid "%s%lu MB used on volume %s|MBUsed%s=%lu;%lu;%lu;;" | 2414 | msgid "%s%lu MB used on volume %s|MBUsed%s=%lu;%lu;%lu;;" |
2960 | msgstr "" | 2415 | msgstr "" |
2961 | 2416 | ||
2962 | #: plugins/check_nwstat.c:494 | ||
2963 | #, c-format | 2417 | #, c-format |
2964 | msgid "" | 2418 | msgid "" |
2965 | "%lu MB (%lu%%) free on volume %s - total %lu MB|FreeMB%s=%lu;%lu;%lu;0;100" | 2419 | "%lu MB (%lu%%) free on volume %s - total %lu MB|FreeMB%s=%lu;%lu;%lu;0;100" |
2966 | msgstr "" | 2420 | msgstr "" |
2967 | 2421 | ||
2968 | #: plugins/check_nwstat.c:528 | ||
2969 | #, c-format | 2422 | #, c-format |
2970 | msgid "Directory Services Database is %s (DS version %s)" | 2423 | msgid "Directory Services Database is %s (DS version %s)" |
2971 | msgstr "" | 2424 | msgstr "" |
2972 | 2425 | ||
2973 | #: plugins/check_nwstat.c:545 | ||
2974 | #, c-format | 2426 | #, c-format |
2975 | msgid "Logins are %s" | 2427 | msgid "Logins are %s" |
2976 | msgstr "" | 2428 | msgstr "" |
2977 | 2429 | ||
2978 | #: plugins/check_nwstat.c:545 | ||
2979 | msgid "enabled" | 2430 | msgid "enabled" |
2980 | msgstr "" | 2431 | msgstr "" |
2981 | 2432 | ||
2982 | #: plugins/check_nwstat.c:545 | ||
2983 | msgid "disabled" | 2433 | msgid "disabled" |
2984 | msgstr "" | 2434 | msgstr "" |
2985 | 2435 | ||
2986 | #: plugins/check_nwstat.c:560 | ||
2987 | #, fuzzy | 2436 | #, fuzzy |
2988 | msgid "CRITICAL - NRM Status is bad!" | 2437 | msgid "CRITICAL - NRM Status is bad!" |
2989 | msgstr "CRITICAL - Serverdatum \"%100s\" konnte nicht verarbeitet werden" | 2438 | msgstr "CRITICAL - Serverdatum \"%100s\" konnte nicht verarbeitet werden" |
2990 | 2439 | ||
2991 | #: plugins/check_nwstat.c:565 | ||
2992 | msgid "Warning - NRM Status is suspect!" | 2440 | msgid "Warning - NRM Status is suspect!" |
2993 | msgstr "" | 2441 | msgstr "" |
2994 | 2442 | ||
2995 | #: plugins/check_nwstat.c:568 | ||
2996 | msgid "OK - NRM Status is good!" | 2443 | msgid "OK - NRM Status is good!" |
2997 | msgstr "" | 2444 | msgstr "" |
2998 | 2445 | ||
2999 | #: plugins/check_nwstat.c:610 | ||
3000 | #, c-format | 2446 | #, c-format |
3001 | msgid "%lu of %lu (%lu%%) packet receive buffers used" | 2447 | msgid "%lu of %lu (%lu%%) packet receive buffers used" |
3002 | msgstr "" | 2448 | msgstr "" |
3003 | 2449 | ||
3004 | #: plugins/check_nwstat.c:634 | ||
3005 | #, c-format | 2450 | #, c-format |
3006 | msgid "%lu entries in SAP table" | 2451 | msgid "%lu entries in SAP table" |
3007 | msgstr "" | 2452 | msgstr "" |
3008 | 2453 | ||
3009 | #: plugins/check_nwstat.c:636 | ||
3010 | #, c-format | 2454 | #, c-format |
3011 | msgid "%lu entries in SAP table for SAP type %d" | 2455 | msgid "%lu entries in SAP table for SAP type %d" |
3012 | msgstr "" | 2456 | msgstr "" |
3013 | 2457 | ||
3014 | #: plugins/check_nwstat.c:658 | ||
3015 | #, c-format | 2458 | #, c-format |
3016 | msgid "%s%lu KB purgeable on volume %s|Purge%s=%lu;%lu;%lu;;" | 2459 | msgid "%s%lu KB purgeable on volume %s|Purge%s=%lu;%lu;%lu;;" |
3017 | msgstr "" | 2460 | msgstr "" |
3018 | 2461 | ||
3019 | #: plugins/check_nwstat.c:684 | ||
3020 | #, c-format | 2462 | #, c-format |
3021 | msgid "%s%lu MB purgeable on volume %s|Purge%s=%lu;%lu;%lu;;" | 2463 | msgid "%s%lu MB purgeable on volume %s|Purge%s=%lu;%lu;%lu;;" |
3022 | msgstr "" | 2464 | msgstr "" |
3023 | 2465 | ||
3024 | #: plugins/check_nwstat.c:730 | ||
3025 | #, c-format | 2466 | #, c-format |
3026 | msgid "%lu MB (%lu%%) purgeable on volume %s|Purgeable%s=%lu;%lu;%lu;0;100" | 2467 | msgid "%lu MB (%lu%%) purgeable on volume %s|Purgeable%s=%lu;%lu;%lu;0;100" |
3027 | msgstr "" | 2468 | msgstr "" |
3028 | 2469 | ||
3029 | #: plugins/check_nwstat.c:761 | ||
3030 | #, c-format | 2470 | #, c-format |
3031 | msgid "%s%lu KB not yet purgeable on volume %s" | 2471 | msgid "%s%lu KB not yet purgeable on volume %s" |
3032 | msgstr "" | 2472 | msgstr "" |
3033 | 2473 | ||
3034 | #: plugins/check_nwstat.c:800 | ||
3035 | #, c-format | 2474 | #, c-format |
3036 | msgid "%lu MB (%lu%%) not yet purgeable on volume %s" | 2475 | msgid "%lu MB (%lu%%) not yet purgeable on volume %s" |
3037 | msgstr "" | 2476 | msgstr "" |
3038 | 2477 | ||
3039 | #: plugins/check_nwstat.c:821 | ||
3040 | #, c-format | 2478 | #, c-format |
3041 | msgid "%lu open files|Openfiles=%lu;%lu;%lu;0,0" | 2479 | msgid "%lu open files|Openfiles=%lu;%lu;%lu;0,0" |
3042 | msgstr "" | 2480 | msgstr "" |
3043 | 2481 | ||
3044 | #: plugins/check_nwstat.c:846 | ||
3045 | #, c-format | 2482 | #, c-format |
3046 | msgid "%lu abended threads|Abends=%lu;%lu;%lu;;" | 2483 | msgid "%lu abended threads|Abends=%lu;%lu;%lu;;" |
3047 | msgstr "" | 2484 | msgstr "" |
3048 | 2485 | ||
3049 | #: plugins/check_nwstat.c:881 | ||
3050 | #, c-format | 2486 | #, c-format |
3051 | msgid "%lu current service processes (%lu max)|Processes=%lu;%lu;%lu;0;%lu" | 2487 | msgid "%lu current service processes (%lu max)|Processes=%lu;%lu;%lu;0;%lu" |
3052 | msgstr "" | 2488 | msgstr "" |
3053 | 2489 | ||
3054 | #: plugins/check_nwstat.c:904 | ||
3055 | msgid "CRITICAL - Time not in sync with network!" | 2490 | msgid "CRITICAL - Time not in sync with network!" |
3056 | msgstr "" | 2491 | msgstr "" |
3057 | 2492 | ||
3058 | #: plugins/check_nwstat.c:907 | ||
3059 | msgid "OK - Time in sync with network!" | 2493 | msgid "OK - Time in sync with network!" |
3060 | msgstr "" | 2494 | msgstr "" |
3061 | 2495 | ||
3062 | #: plugins/check_nwstat.c:930 | ||
3063 | #, c-format | 2496 | #, c-format |
3064 | msgid "LRU sitting time = %lu seconds" | 2497 | msgid "LRU sitting time = %lu seconds" |
3065 | msgstr "" | 2498 | msgstr "" |
3066 | 2499 | ||
3067 | #: plugins/check_nwstat.c:949 | ||
3068 | #, c-format | 2500 | #, c-format |
3069 | msgid "Dirty cache buffers = %lu%% of the total|DCB=%lu;%lu;%lu;0;100" | 2501 | msgid "Dirty cache buffers = %lu%% of the total|DCB=%lu;%lu;%lu;0;100" |
3070 | msgstr "" | 2502 | msgstr "" |
3071 | 2503 | ||
3072 | #: plugins/check_nwstat.c:971 | ||
3073 | #, c-format | 2504 | #, c-format |
3074 | msgid "Total cache buffers = %lu%% of the original|TCB=%lu;%lu;%lu;0;100" | 2505 | msgid "Total cache buffers = %lu%% of the original|TCB=%lu;%lu;%lu;0;100" |
3075 | msgstr "" | 2506 | msgstr "" |
3076 | 2507 | ||
3077 | #: plugins/check_nwstat.c:989 | ||
3078 | #, c-format | 2508 | #, c-format |
3079 | msgid "NDS Version %s" | 2509 | msgid "NDS Version %s" |
3080 | msgstr "" | 2510 | msgstr "" |
3081 | 2511 | ||
3082 | #: plugins/check_nwstat.c:1005 | ||
3083 | #, c-format | 2512 | #, c-format |
3084 | msgid "Up %s" | 2513 | msgid "Up %s" |
3085 | msgstr "" | 2514 | msgstr "" |
3086 | 2515 | ||
3087 | #: plugins/check_nwstat.c:1019 | ||
3088 | #, c-format | 2516 | #, c-format |
3089 | msgid "Module %s version %s is loaded" | 2517 | msgid "Module %s version %s is loaded" |
3090 | msgstr "" | 2518 | msgstr "" |
3091 | 2519 | ||
3092 | #: plugins/check_nwstat.c:1022 | ||
3093 | #, c-format | 2520 | #, c-format |
3094 | msgid "Module %s is not loaded" | 2521 | msgid "Module %s is not loaded" |
3095 | msgstr "" | 2522 | msgstr "" |
3096 | 2523 | ||
3097 | #: plugins/check_nwstat.c:1033 plugins/check_nwstat.c:1059 | ||
3098 | #: plugins/check_nwstat.c:1085 plugins/check_nwstat.c:1111 | ||
3099 | #: plugins/check_nwstat.c:1137 plugins/check_nwstat.c:1163 | ||
3100 | #: plugins/check_nwstat.c:1189 plugins/check_nwstat.c:1215 | ||
3101 | #: plugins/check_nwstat.c:1241 plugins/check_nwstat.c:1267 | ||
3102 | #, fuzzy, c-format | 2524 | #, fuzzy, c-format |
3103 | msgid "CRITICAL - Value '%s' does not exist!" | 2525 | msgid "CRITICAL - Value '%s' does not exist!" |
3104 | msgstr "%s [%s nicht gefunden]" | 2526 | msgstr "%s [%s nicht gefunden]" |
3105 | 2527 | ||
3106 | #: plugins/check_nwstat.c:1042 plugins/check_nwstat.c:1068 | ||
3107 | #: plugins/check_nwstat.c:1094 plugins/check_nwstat.c:1120 | ||
3108 | #: plugins/check_nwstat.c:1146 plugins/check_nwstat.c:1172 | ||
3109 | #: plugins/check_nwstat.c:1198 plugins/check_nwstat.c:1224 | ||
3110 | #: plugins/check_nwstat.c:1250 plugins/check_nwstat.c:1276 | ||
3111 | #, c-format | 2528 | #, c-format |
3112 | msgid "%s is %lu|%s=%lu;%lu;%lu;;" | 2529 | msgid "%s is %lu|%s=%lu;%lu;%lu;;" |
3113 | msgstr "" | 2530 | msgstr "" |
3114 | 2531 | ||
3115 | #: plugins/check_nwstat.c:1289 plugins/check_overcr.c:285 | ||
3116 | msgid "Nothing to check!\n" | 2532 | msgid "Nothing to check!\n" |
3117 | msgstr "" | 2533 | msgstr "" |
3118 | 2534 | ||
3119 | #: plugins/check_nwstat.c:1371 plugins/check_overcr.c:355 | ||
3120 | #, fuzzy | 2535 | #, fuzzy |
3121 | msgid "Server port an integer\n" | 2536 | msgid "Server port an integer\n" |
3122 | msgstr "skip lines muss ein Integer sein" | 2537 | msgstr "skip lines muss ein Integer sein" |
3123 | 2538 | ||
3124 | #: plugins/check_nwstat.c:1601 | ||
3125 | msgid "This plugin attempts to contact the MRTGEXT NLM running on a" | 2539 | msgid "This plugin attempts to contact the MRTGEXT NLM running on a" |
3126 | msgstr "" | 2540 | msgstr "" |
3127 | 2541 | ||
3128 | #: plugins/check_nwstat.c:1602 | ||
3129 | msgid "Novell server to gather the requested system information." | 2542 | msgid "Novell server to gather the requested system information." |
3130 | msgstr "" | 2543 | msgstr "" |
3131 | 2544 | ||
3132 | #: plugins/check_nwstat.c:1614 plugins/check_overcr.c:436 | ||
3133 | msgid "Variable to check. Valid variables include:" | 2545 | msgid "Variable to check. Valid variables include:" |
3134 | msgstr "" | 2546 | msgstr "" |
3135 | 2547 | ||
3136 | #: plugins/check_nwstat.c:1615 | ||
3137 | msgid "LOAD1 = 1 minute average CPU load" | 2548 | msgid "LOAD1 = 1 minute average CPU load" |
3138 | msgstr "" | 2549 | msgstr "" |
3139 | 2550 | ||
3140 | #: plugins/check_nwstat.c:1616 | ||
3141 | msgid "LOAD5 = 5 minute average CPU load" | 2551 | msgid "LOAD5 = 5 minute average CPU load" |
3142 | msgstr "" | 2552 | msgstr "" |
3143 | 2553 | ||
3144 | #: plugins/check_nwstat.c:1617 | ||
3145 | msgid "LOAD15 = 15 minute average CPU load" | 2554 | msgid "LOAD15 = 15 minute average CPU load" |
3146 | msgstr "" | 2555 | msgstr "" |
3147 | 2556 | ||
3148 | #: plugins/check_nwstat.c:1618 | ||
3149 | msgid "CSPROCS = number of current service processes (NW 5.x only)" | 2557 | msgid "CSPROCS = number of current service processes (NW 5.x only)" |
3150 | msgstr "" | 2558 | msgstr "" |
3151 | 2559 | ||
3152 | #: plugins/check_nwstat.c:1619 | ||
3153 | msgid "ABENDS = number of abended threads (NW 5.x only)" | 2560 | msgid "ABENDS = number of abended threads (NW 5.x only)" |
3154 | msgstr "" | 2561 | msgstr "" |
3155 | 2562 | ||
3156 | #: plugins/check_nwstat.c:1620 | ||
3157 | msgid "UPTIME = server uptime" | 2563 | msgid "UPTIME = server uptime" |
3158 | msgstr "" | 2564 | msgstr "" |
3159 | 2565 | ||
3160 | #: plugins/check_nwstat.c:1621 | ||
3161 | msgid "LTCH = percent long term cache hits" | 2566 | msgid "LTCH = percent long term cache hits" |
3162 | msgstr "" | 2567 | msgstr "" |
3163 | 2568 | ||
3164 | #: plugins/check_nwstat.c:1622 | ||
3165 | msgid "CBUFF = current number of cache buffers" | 2569 | msgid "CBUFF = current number of cache buffers" |
3166 | msgstr "" | 2570 | msgstr "" |
3167 | 2571 | ||
3168 | #: plugins/check_nwstat.c:1623 | ||
3169 | msgid "CDBUFF = current number of dirty cache buffers" | 2572 | msgid "CDBUFF = current number of dirty cache buffers" |
3170 | msgstr "" | 2573 | msgstr "" |
3171 | 2574 | ||
3172 | #: plugins/check_nwstat.c:1624 | ||
3173 | msgid "DCB = dirty cache buffers as a percentage of the total" | 2575 | msgid "DCB = dirty cache buffers as a percentage of the total" |
3174 | msgstr "" | 2576 | msgstr "" |
3175 | 2577 | ||
3176 | #: plugins/check_nwstat.c:1625 | ||
3177 | msgid "TCB = dirty cache buffers as a percentage of the original" | 2578 | msgid "TCB = dirty cache buffers as a percentage of the original" |
3178 | msgstr "" | 2579 | msgstr "" |
3179 | 2580 | ||
3180 | #: plugins/check_nwstat.c:1626 | ||
3181 | msgid "OFILES = number of open files" | 2581 | msgid "OFILES = number of open files" |
3182 | msgstr "" | 2582 | msgstr "" |
3183 | 2583 | ||
3184 | #: plugins/check_nwstat.c:1627 | ||
3185 | msgid " VMF<vol> = MB of free space on Volume <vol>" | 2584 | msgid " VMF<vol> = MB of free space on Volume <vol>" |
3186 | msgstr "" | 2585 | msgstr "" |
3187 | 2586 | ||
3188 | #: plugins/check_nwstat.c:1628 | ||
3189 | msgid " VMU<vol> = MB used space on Volume <vol>" | 2587 | msgid " VMU<vol> = MB used space on Volume <vol>" |
3190 | msgstr "" | 2588 | msgstr "" |
3191 | 2589 | ||
3192 | #: plugins/check_nwstat.c:1629 | ||
3193 | msgid " VMP<vol> = MB of purgeable space on Volume <vol>" | 2590 | msgid " VMP<vol> = MB of purgeable space on Volume <vol>" |
3194 | msgstr "" | 2591 | msgstr "" |
3195 | 2592 | ||
3196 | #: plugins/check_nwstat.c:1630 | ||
3197 | msgid " VPF<vol> = percent free space on volume <vol>" | 2593 | msgid " VPF<vol> = percent free space on volume <vol>" |
3198 | msgstr "" | 2594 | msgstr "" |
3199 | 2595 | ||
3200 | #: plugins/check_nwstat.c:1631 | ||
3201 | msgid " VKF<vol> = KB of free space on volume <vol>" | 2596 | msgid " VKF<vol> = KB of free space on volume <vol>" |
3202 | msgstr "" | 2597 | msgstr "" |
3203 | 2598 | ||
3204 | #: plugins/check_nwstat.c:1632 | ||
3205 | msgid " VPP<vol> = percent purgeable space on volume <vol>" | 2599 | msgid " VPP<vol> = percent purgeable space on volume <vol>" |
3206 | msgstr "" | 2600 | msgstr "" |
3207 | 2601 | ||
3208 | #: plugins/check_nwstat.c:1633 | ||
3209 | msgid " VKP<vol> = KB of purgeable space on volume <vol>" | 2602 | msgid " VKP<vol> = KB of purgeable space on volume <vol>" |
3210 | msgstr "" | 2603 | msgstr "" |
3211 | 2604 | ||
3212 | #: plugins/check_nwstat.c:1634 | ||
3213 | msgid " VPNP<vol> = percent not yet purgeable space on volume <vol>" | 2605 | msgid " VPNP<vol> = percent not yet purgeable space on volume <vol>" |
3214 | msgstr "" | 2606 | msgstr "" |
3215 | 2607 | ||
3216 | #: plugins/check_nwstat.c:1635 | ||
3217 | msgid " VKNP<vol> = KB of not yet purgeable space on volume <vol>" | 2608 | msgid " VKNP<vol> = KB of not yet purgeable space on volume <vol>" |
3218 | msgstr "" | 2609 | msgstr "" |
3219 | 2610 | ||
3220 | #: plugins/check_nwstat.c:1636 | ||
3221 | msgid " LRUM = LRU sitting time in minutes" | 2611 | msgid " LRUM = LRU sitting time in minutes" |
3222 | msgstr "" | 2612 | msgstr "" |
3223 | 2613 | ||
3224 | #: plugins/check_nwstat.c:1637 | ||
3225 | msgid " LRUS = LRU sitting time in seconds" | 2614 | msgid " LRUS = LRU sitting time in seconds" |
3226 | msgstr "" | 2615 | msgstr "" |
3227 | 2616 | ||
3228 | #: plugins/check_nwstat.c:1638 | ||
3229 | msgid " DSDB = check to see if DS Database is open" | 2617 | msgid " DSDB = check to see if DS Database is open" |
3230 | msgstr "" | 2618 | msgstr "" |
3231 | 2619 | ||
3232 | #: plugins/check_nwstat.c:1639 | ||
3233 | msgid " DSVER = NDS version" | 2620 | msgid " DSVER = NDS version" |
3234 | msgstr "" | 2621 | msgstr "" |
3235 | 2622 | ||
3236 | #: plugins/check_nwstat.c:1640 | ||
3237 | msgid " UPRB = used packet receive buffers" | 2623 | msgid " UPRB = used packet receive buffers" |
3238 | msgstr "" | 2624 | msgstr "" |
3239 | 2625 | ||
3240 | #: plugins/check_nwstat.c:1641 | ||
3241 | msgid " PUPRB = percent (of max) used packet receive buffers" | 2626 | msgid " PUPRB = percent (of max) used packet receive buffers" |
3242 | msgstr "" | 2627 | msgstr "" |
3243 | 2628 | ||
3244 | #: plugins/check_nwstat.c:1642 | ||
3245 | msgid " SAPENTRIES = number of entries in the SAP table" | 2629 | msgid " SAPENTRIES = number of entries in the SAP table" |
3246 | msgstr "" | 2630 | msgstr "" |
3247 | 2631 | ||
3248 | #: plugins/check_nwstat.c:1643 | ||
3249 | msgid " SAPENTRIES<n> = number of entries in the SAP table for SAP type <n>" | 2632 | msgid " SAPENTRIES<n> = number of entries in the SAP table for SAP type <n>" |
3250 | msgstr "" | 2633 | msgstr "" |
3251 | 2634 | ||
3252 | #: plugins/check_nwstat.c:1644 | ||
3253 | msgid " TSYNC = timesync status" | 2635 | msgid " TSYNC = timesync status" |
3254 | msgstr "" | 2636 | msgstr "" |
3255 | 2637 | ||
3256 | #: plugins/check_nwstat.c:1645 | ||
3257 | msgid " LOGINS = check to see if logins are enabled" | 2638 | msgid " LOGINS = check to see if logins are enabled" |
3258 | msgstr "" | 2639 | msgstr "" |
3259 | 2640 | ||
3260 | #: plugins/check_nwstat.c:1646 | ||
3261 | msgid " CONNS = number of currently licensed connections" | 2641 | msgid " CONNS = number of currently licensed connections" |
3262 | msgstr "" | 2642 | msgstr "" |
3263 | 2643 | ||
3264 | #: plugins/check_nwstat.c:1647 | ||
3265 | msgid " NRMH\t= NRM Summary Status" | 2644 | msgid " NRMH\t= NRM Summary Status" |
3266 | msgstr "" | 2645 | msgstr "" |
3267 | 2646 | ||
3268 | #: plugins/check_nwstat.c:1648 | ||
3269 | msgid " NRMP<stat> = Returns the current value for a NRM health item" | 2647 | msgid " NRMP<stat> = Returns the current value for a NRM health item" |
3270 | msgstr "" | 2648 | msgstr "" |
3271 | 2649 | ||
3272 | #: plugins/check_nwstat.c:1649 | ||
3273 | msgid " NRMM<stat> = Returns the current memory stats from NRM" | 2650 | msgid " NRMM<stat> = Returns the current memory stats from NRM" |
3274 | msgstr "" | 2651 | msgstr "" |
3275 | 2652 | ||
3276 | #: plugins/check_nwstat.c:1650 | ||
3277 | msgid " NRMS<stat> = Returns the current Swapfile stats from NRM" | 2653 | msgid " NRMS<stat> = Returns the current Swapfile stats from NRM" |
3278 | msgstr "" | 2654 | msgstr "" |
3279 | 2655 | ||
3280 | #: plugins/check_nwstat.c:1651 | ||
3281 | msgid " NSS1<stat> = Statistics from _Admin:Manage_NSS\\GeneralStats.xml" | 2656 | msgid " NSS1<stat> = Statistics from _Admin:Manage_NSS\\GeneralStats.xml" |
3282 | msgstr "" | 2657 | msgstr "" |
3283 | 2658 | ||
3284 | #: plugins/check_nwstat.c:1652 | ||
3285 | msgid " NSS3<stat> = Statistics from _Admin:Manage_NSS\\NameCache.xml" | 2659 | msgid " NSS3<stat> = Statistics from _Admin:Manage_NSS\\NameCache.xml" |
3286 | msgstr "" | 2660 | msgstr "" |
3287 | 2661 | ||
3288 | #: plugins/check_nwstat.c:1653 | ||
3289 | msgid " NSS4<stat> = Statistics from _Admin:Manage_NSS\\FileStats.xml" | 2662 | msgid " NSS4<stat> = Statistics from _Admin:Manage_NSS\\FileStats.xml" |
3290 | msgstr "" | 2663 | msgstr "" |
3291 | 2664 | ||
3292 | #: plugins/check_nwstat.c:1654 | ||
3293 | msgid " NSS5<stat> = Statistics from _Admin:Manage_NSS\\ObjectCache.xml" | 2665 | msgid " NSS5<stat> = Statistics from _Admin:Manage_NSS\\ObjectCache.xml" |
3294 | msgstr "" | 2666 | msgstr "" |
3295 | 2667 | ||
3296 | #: plugins/check_nwstat.c:1655 | ||
3297 | msgid " NSS6<stat> = Statistics from _Admin:Manage_NSS\\Thread.xml" | 2668 | msgid " NSS6<stat> = Statistics from _Admin:Manage_NSS\\Thread.xml" |
3298 | msgstr "" | 2669 | msgstr "" |
3299 | 2670 | ||
3300 | #: plugins/check_nwstat.c:1656 | ||
3301 | msgid "" | 2671 | msgid "" |
3302 | " NSS7<stat> = Statistics from _Admin:Manage_NSS\\AuthorizationCache.xml" | 2672 | " NSS7<stat> = Statistics from _Admin:Manage_NSS\\AuthorizationCache.xml" |
3303 | msgstr "" | 2673 | msgstr "" |
3304 | 2674 | ||
3305 | #: plugins/check_nwstat.c:1657 | ||
3306 | msgid " NLM:<nlm> = check if NLM is loaded and report version" | 2675 | msgid " NLM:<nlm> = check if NLM is loaded and report version" |
3307 | msgstr "" | 2676 | msgstr "" |
3308 | 2677 | ||
3309 | #: plugins/check_nwstat.c:1658 | ||
3310 | msgid " (e.g. NLM:TSANDS.NLM)" | 2678 | msgid " (e.g. NLM:TSANDS.NLM)" |
3311 | msgstr "" | 2679 | msgstr "" |
3312 | 2680 | ||
3313 | #: plugins/check_nwstat.c:1665 | ||
3314 | msgid "Include server version string in results" | 2681 | msgid "Include server version string in results" |
3315 | msgstr "" | 2682 | msgstr "" |
3316 | 2683 | ||
3317 | #: plugins/check_nwstat.c:1671 | 2684 | msgid "- This plugin requires that the MRTGEXT.NLM file from James Drews' MRTG" |
3318 | msgid "- This plugin requres that the MRTGEXT.NLM file from James Drews' MRTG" | ||
3319 | msgstr "" | 2685 | msgstr "" |
3320 | 2686 | ||
3321 | #: plugins/check_nwstat.c:1672 | ||
3322 | msgid "" | 2687 | msgid "" |
3323 | " extension for NetWare be loaded on the Novell servers you wish to check." | 2688 | " extension for NetWare be loaded on the Novell servers you wish to check." |
3324 | msgstr "" | 2689 | msgstr "" |
3325 | 2690 | ||
3326 | #: plugins/check_nwstat.c:1673 | ||
3327 | msgid " (available from http://www.engr.wisc.edu/~drews/mrtg/)" | 2691 | msgid " (available from http://www.engr.wisc.edu/~drews/mrtg/)" |
3328 | msgstr "" | 2692 | msgstr "" |
3329 | 2693 | ||
3330 | #: plugins/check_nwstat.c:1674 | ||
3331 | msgid "" | 2694 | msgid "" |
3332 | "- Values for critical thresholds should be lower than warning thresholds" | 2695 | "- Values for critical thresholds should be lower than warning thresholds" |
3333 | msgstr "" | 2696 | msgstr "" |
3334 | 2697 | ||
3335 | #: plugins/check_nwstat.c:1675 | ||
3336 | msgid "" | 2698 | msgid "" |
3337 | " when the following variables are checked: VPF, VKF, LTCH, CBUFF, DCB, " | 2699 | " when the following variables are checked: VPF, VKF, LTCH, CBUFF, DCB, " |
3338 | msgstr "" | 2700 | msgstr "" |
3339 | 2701 | ||
3340 | #: plugins/check_nwstat.c:1676 | ||
3341 | msgid " TCB, LRUS and LRUM." | 2702 | msgid " TCB, LRUS and LRUM." |
3342 | msgstr "" | 2703 | msgstr "" |
3343 | 2704 | ||
3344 | #: plugins/check_overcr.c:123 | ||
3345 | msgid "Unknown error fetching load data\n" | 2705 | msgid "Unknown error fetching load data\n" |
3346 | msgstr "" | 2706 | msgstr "" |
3347 | 2707 | ||
3348 | #: plugins/check_overcr.c:127 | ||
3349 | msgid "Invalid response from server - no load information\n" | 2708 | msgid "Invalid response from server - no load information\n" |
3350 | msgstr "" | 2709 | msgstr "" |
3351 | 2710 | ||
3352 | #: plugins/check_overcr.c:133 | ||
3353 | msgid "Invalid response from server after load 1\n" | 2711 | msgid "Invalid response from server after load 1\n" |
3354 | msgstr "" | 2712 | msgstr "" |
3355 | 2713 | ||
3356 | #: plugins/check_overcr.c:139 | ||
3357 | msgid "Invalid response from server after load 5\n" | 2714 | msgid "Invalid response from server after load 5\n" |
3358 | msgstr "" | 2715 | msgstr "" |
3359 | 2716 | ||
3360 | #: plugins/check_overcr.c:164 | ||
3361 | #, c-format | 2717 | #, c-format |
3362 | msgid "Load %s - %s-min load average = %0.2f" | 2718 | msgid "Load %s - %s-min load average = %0.2f" |
3363 | msgstr "" | 2719 | msgstr "" |
3364 | 2720 | ||
3365 | #: plugins/check_overcr.c:174 | ||
3366 | msgid "Unknown error fetching disk data\n" | 2721 | msgid "Unknown error fetching disk data\n" |
3367 | msgstr "" | 2722 | msgstr "" |
3368 | 2723 | ||
3369 | #: plugins/check_overcr.c:184 plugins/check_overcr.c:236 | ||
3370 | #: plugins/check_overcr.c:240 | ||
3371 | msgid "Invalid response from server\n" | 2724 | msgid "Invalid response from server\n" |
3372 | msgstr "" | 2725 | msgstr "" |
3373 | 2726 | ||
3374 | #: plugins/check_overcr.c:211 | ||
3375 | msgid "Unknown error fetching network status\n" | 2727 | msgid "Unknown error fetching network status\n" |
3376 | msgstr "" | 2728 | msgstr "" |
3377 | 2729 | ||
3378 | #: plugins/check_overcr.c:221 | ||
3379 | #, c-format | 2730 | #, c-format |
3380 | msgid "Net %s - %d connection%s on port %d" | 2731 | msgid "Net %s - %d connection%s on port %d" |
3381 | msgstr "" | 2732 | msgstr "" |
3382 | 2733 | ||
3383 | #: plugins/check_overcr.c:232 | ||
3384 | msgid "Unknown error fetching process status\n" | 2734 | msgid "Unknown error fetching process status\n" |
3385 | msgstr "" | 2735 | msgstr "" |
3386 | 2736 | ||
3387 | #: plugins/check_overcr.c:250 | ||
3388 | #, c-format | 2737 | #, c-format |
3389 | msgid "Process %s - %d instance%s of %s running" | 2738 | msgid "Process %s - %d instance%s of %s running" |
3390 | msgstr "" | 2739 | msgstr "" |
3391 | 2740 | ||
3392 | #: plugins/check_overcr.c:277 | ||
3393 | #, c-format | 2741 | #, c-format |
3394 | msgid "Uptime %s - Up %d days %d hours %d minutes" | 2742 | msgid "Uptime %s - Up %d days %d hours %d minutes" |
3395 | msgstr "" | 2743 | msgstr "" |
3396 | 2744 | ||
3397 | #: plugins/check_overcr.c:419 | ||
3398 | msgid "" | 2745 | msgid "" |
3399 | "This plugin attempts to contact the Over-CR collector daemon running on the" | 2746 | "This plugin attempts to contact the Over-CR collector daemon running on the" |
3400 | msgstr "" | 2747 | msgstr "" |
3401 | 2748 | ||
3402 | #: plugins/check_overcr.c:420 | ||
3403 | msgid "remote UNIX server in order to gather the requested system information." | 2749 | msgid "remote UNIX server in order to gather the requested system information." |
3404 | msgstr "" | 2750 | msgstr "" |
3405 | 2751 | ||
3406 | #: plugins/check_overcr.c:437 | ||
3407 | msgid "LOAD1 = 1 minute average CPU load" | 2752 | msgid "LOAD1 = 1 minute average CPU load" |
3408 | msgstr "" | 2753 | msgstr "" |
3409 | 2754 | ||
3410 | #: plugins/check_overcr.c:438 | ||
3411 | msgid "LOAD5 = 5 minute average CPU load" | 2755 | msgid "LOAD5 = 5 minute average CPU load" |
3412 | msgstr "" | 2756 | msgstr "" |
3413 | 2757 | ||
3414 | #: plugins/check_overcr.c:439 | ||
3415 | msgid "LOAD15 = 15 minute average CPU load" | 2758 | msgid "LOAD15 = 15 minute average CPU load" |
3416 | msgstr "" | 2759 | msgstr "" |
3417 | 2760 | ||
3418 | #: plugins/check_overcr.c:440 | ||
3419 | msgid "DPU<filesys> = percent used disk space on filesystem <filesys>" | 2761 | msgid "DPU<filesys> = percent used disk space on filesystem <filesys>" |
3420 | msgstr "" | 2762 | msgstr "" |
3421 | 2763 | ||
3422 | #: plugins/check_overcr.c:441 | ||
3423 | msgid "PROC<process> = number of running processes with name <process>" | 2764 | msgid "PROC<process> = number of running processes with name <process>" |
3424 | msgstr "" | 2765 | msgstr "" |
3425 | 2766 | ||
3426 | #: plugins/check_overcr.c:442 | ||
3427 | msgid "NET<port> = number of active connections on TCP port <port>" | 2767 | msgid "NET<port> = number of active connections on TCP port <port>" |
3428 | msgstr "" | 2768 | msgstr "" |
3429 | 2769 | ||
3430 | #: plugins/check_overcr.c:443 | ||
3431 | msgid "UPTIME = system uptime in seconds" | 2770 | msgid "UPTIME = system uptime in seconds" |
3432 | msgstr "" | 2771 | msgstr "" |
3433 | 2772 | ||
3434 | #: plugins/check_overcr.c:450 | ||
3435 | msgid "This plugin requires that Eric Molitors' Over-CR collector daemon be" | 2773 | msgid "This plugin requires that Eric Molitors' Over-CR collector daemon be" |
3436 | msgstr "" | 2774 | msgstr "" |
3437 | 2775 | ||
3438 | #: plugins/check_overcr.c:451 | ||
3439 | msgid "running on the remote server." | 2776 | msgid "running on the remote server." |
3440 | msgstr "" | 2777 | msgstr "" |
3441 | 2778 | ||
3442 | #: plugins/check_overcr.c:452 | ||
3443 | msgid "Over-CR can be downloaded from http://www.molitor.org/overcr" | 2779 | msgid "Over-CR can be downloaded from http://www.molitor.org/overcr" |
3444 | msgstr "" | 2780 | msgstr "" |
3445 | 2781 | ||
3446 | #: plugins/check_overcr.c:453 | ||
3447 | msgid "This plugin was tested with version 0.99.53 of the Over-CR collector" | 2782 | msgid "This plugin was tested with version 0.99.53 of the Over-CR collector" |
3448 | msgstr "" | 2783 | msgstr "" |
3449 | 2784 | ||
3450 | #: plugins/check_overcr.c:457 | ||
3451 | msgid "" | 2785 | msgid "" |
3452 | "For the available options, the critical threshold value should always be" | 2786 | "For the available options, the critical threshold value should always be" |
3453 | msgstr "" | 2787 | msgstr "" |
3454 | 2788 | ||
3455 | #: plugins/check_overcr.c:458 | ||
3456 | msgid "" | 2789 | msgid "" |
3457 | "higher than the warning threshold value, EXCEPT with the uptime variable" | 2790 | "higher than the warning threshold value, EXCEPT with the uptime variable" |
3458 | msgstr "" | 2791 | msgstr "" |
3459 | 2792 | ||
3460 | #: plugins/check_pgsql.c:222 | ||
3461 | #, c-format | 2793 | #, c-format |
3462 | msgid "CRITICAL - no connection to '%s' (%s).\n" | 2794 | msgid "CRITICAL - no connection to '%s' (%s).\n" |
3463 | msgstr "" | 2795 | msgstr "" |
3464 | 2796 | ||
3465 | #: plugins/check_pgsql.c:250 | ||
3466 | #, c-format | 2797 | #, c-format |
3467 | msgid " %s - database %s (%f sec.)|%s\n" | 2798 | msgid " %s - database %s (%f sec.)|%s\n" |
3468 | msgstr "" | 2799 | msgstr "" |
3469 | 2800 | ||
3470 | #: plugins/check_pgsql.c:317 plugins/check_time.c:277 plugins/check_time.c:289 | ||
3471 | #: plugins/check_users.c:181 | ||
3472 | msgid "Critical threshold must be a positive integer" | 2801 | msgid "Critical threshold must be a positive integer" |
3473 | msgstr "Critical threshold muss ein positiver Integer sein" | 2802 | msgstr "Critical threshold muss ein positiver Integer sein" |
3474 | 2803 | ||
3475 | #: plugins/check_pgsql.c:323 plugins/check_time.c:258 plugins/check_time.c:282 | ||
3476 | #: plugins/check_users.c:187 plugins/check_users.c:197 | ||
3477 | #: plugins/check_users.c:203 | ||
3478 | msgid "Warning threshold must be a positive integer" | 2804 | msgid "Warning threshold must be a positive integer" |
3479 | msgstr "Warning threshold muss ein positiver Integer sein" | 2805 | msgstr "Warning threshold muss ein positiver Integer sein" |
3480 | 2806 | ||
3481 | #: plugins/check_pgsql.c:347 | 2807 | msgid "Database name exceeds the maximum length" |
3482 | msgid "Database name is not valid" | ||
3483 | msgstr "" | 2808 | msgstr "" |
3484 | 2809 | ||
3485 | #: plugins/check_pgsql.c:353 | ||
3486 | msgid "User name is not valid" | 2810 | msgid "User name is not valid" |
3487 | msgstr "" | 2811 | msgstr "" |
3488 | 2812 | ||
3489 | #: plugins/check_pgsql.c:504 | ||
3490 | #, c-format | 2813 | #, c-format |
3491 | msgid "Test whether a PostgreSQL Database is accepting connections." | 2814 | msgid "Test whether a PostgreSQL Database is accepting connections." |
3492 | msgstr "" | 2815 | msgstr "" |
3493 | 2816 | ||
3494 | #: plugins/check_pgsql.c:516 | ||
3495 | msgid "Database to check " | 2817 | msgid "Database to check " |
3496 | msgstr "" | 2818 | msgstr "" |
3497 | 2819 | ||
3498 | #: plugins/check_pgsql.c:517 | ||
3499 | #, c-format | 2820 | #, c-format |
3500 | msgid "(default: %s)" | 2821 | msgid "(default: %s)\n" |
3501 | msgstr "" | 2822 | msgstr "" |
3502 | 2823 | ||
3503 | #: plugins/check_pgsql.c:519 | ||
3504 | msgid "Login name of user" | 2824 | msgid "Login name of user" |
3505 | msgstr "" | 2825 | msgstr "" |
3506 | 2826 | ||
3507 | #: plugins/check_pgsql.c:521 | ||
3508 | msgid "Password (BIG SECURITY ISSUE)" | 2827 | msgid "Password (BIG SECURITY ISSUE)" |
3509 | msgstr "" | 2828 | msgstr "" |
3510 | 2829 | ||
3511 | #: plugins/check_pgsql.c:523 | ||
3512 | msgid "Connection parameters (keyword = value), see below" | 2830 | msgid "Connection parameters (keyword = value), see below" |
3513 | msgstr "" | 2831 | msgstr "" |
3514 | 2832 | ||
3515 | #: plugins/check_pgsql.c:530 | ||
3516 | msgid "SQL query to run. Only first column in first row will be read" | 2833 | msgid "SQL query to run. Only first column in first row will be read" |
3517 | msgstr "" | 2834 | msgstr "" |
3518 | 2835 | ||
3519 | #: plugins/check_pgsql.c:532 | 2836 | msgid "A name for the query, this string is used instead of the query" |
2837 | msgstr "" | ||
2838 | |||
2839 | msgid "in the long output of the plugin" | ||
2840 | msgstr "" | ||
2841 | |||
3520 | msgid "SQL query value to result in warning status (double)" | 2842 | msgid "SQL query value to result in warning status (double)" |
3521 | msgstr "" | 2843 | msgstr "" |
3522 | 2844 | ||
3523 | #: plugins/check_pgsql.c:534 | ||
3524 | msgid "SQL query value to result in critical status (double)" | 2845 | msgid "SQL query value to result in critical status (double)" |
3525 | msgstr "" | 2846 | msgstr "" |
3526 | 2847 | ||
3527 | #: plugins/check_pgsql.c:539 | ||
3528 | msgid "All parameters are optional." | 2848 | msgid "All parameters are optional." |
3529 | msgstr "" | 2849 | msgstr "" |
3530 | 2850 | ||
3531 | #: plugins/check_pgsql.c:540 | ||
3532 | msgid "" | 2851 | msgid "" |
3533 | "This plugin tests a PostgreSQL DBMS to determine whether it is active and" | 2852 | "This plugin tests a PostgreSQL DBMS to determine whether it is active and" |
3534 | msgstr "" | 2853 | msgstr "" |
3535 | 2854 | ||
3536 | #: plugins/check_pgsql.c:541 | ||
3537 | msgid "accepting queries. In its current operation, it simply connects to the" | 2855 | msgid "accepting queries. In its current operation, it simply connects to the" |
3538 | msgstr "" | 2856 | msgstr "" |
3539 | 2857 | ||
3540 | #: plugins/check_pgsql.c:542 | ||
3541 | msgid "" | 2858 | msgid "" |
3542 | "specified database, and then disconnects. If no database is specified, it" | 2859 | "specified database, and then disconnects. If no database is specified, it" |
3543 | msgstr "" | 2860 | msgstr "" |
3544 | 2861 | ||
3545 | #: plugins/check_pgsql.c:543 | ||
3546 | msgid "" | 2862 | msgid "" |
3547 | "connects to the template1 database, which is present in every functioning" | 2863 | "connects to the template1 database, which is present in every functioning" |
3548 | msgstr "" | 2864 | msgstr "" |
3549 | 2865 | ||
3550 | #: plugins/check_pgsql.c:544 | ||
3551 | msgid "PostgreSQL DBMS." | 2866 | msgid "PostgreSQL DBMS." |
3552 | msgstr "" | 2867 | msgstr "" |
3553 | 2868 | ||
3554 | #: plugins/check_pgsql.c:546 | ||
3555 | msgid "If a query is specified using the -q option, it will be executed after" | 2869 | msgid "If a query is specified using the -q option, it will be executed after" |
3556 | msgstr "" | 2870 | msgstr "" |
3557 | 2871 | ||
3558 | #: plugins/check_pgsql.c:547 | ||
3559 | msgid "connecting to the server. The result from the query has to be numeric." | 2872 | msgid "connecting to the server. The result from the query has to be numeric." |
3560 | msgstr "" | 2873 | msgstr "" |
3561 | 2874 | ||
3562 | #: plugins/check_pgsql.c:548 | ||
3563 | msgid "" | 2875 | msgid "" |
3564 | "Multiple SQL commands, separated by semicolon, are allowed but the result " | 2876 | "Multiple SQL commands, separated by semicolon, are allowed but the result " |
3565 | msgstr "" | 2877 | msgstr "" |
3566 | 2878 | ||
3567 | #: plugins/check_pgsql.c:549 | ||
3568 | msgid "of the last command is taken into account only. The value of the first" | 2879 | msgid "of the last command is taken into account only. The value of the first" |
3569 | msgstr "" | 2880 | msgstr "" |
3570 | 2881 | ||
3571 | #: plugins/check_pgsql.c:550 | 2882 | msgid "" |
3572 | msgid "column in the first row is used as the check result." | 2883 | "column in the first row is used as the check result. If a second column is" |
2884 | msgstr "" | ||
2885 | |||
2886 | msgid "present in the result set, this is added to the plugin output with a" | ||
2887 | msgstr "" | ||
2888 | |||
2889 | msgid "" | ||
2890 | "prefix of \"Extra Info:\". This information can be displayed in the system" | ||
2891 | msgstr "" | ||
2892 | |||
2893 | msgid "executing the plugin." | ||
3573 | msgstr "" | 2894 | msgstr "" |
3574 | 2895 | ||
3575 | #: plugins/check_pgsql.c:552 | ||
3576 | msgid "" | 2896 | msgid "" |
3577 | "See the chapter \"Monitoring Database Activity\" of the PostgreSQL manual" | 2897 | "See the chapter \"Monitoring Database Activity\" of the PostgreSQL manual" |
3578 | msgstr "" | 2898 | msgstr "" |
3579 | 2899 | ||
3580 | #: plugins/check_pgsql.c:553 | ||
3581 | msgid "" | 2900 | msgid "" |
3582 | "for details about how to access internal statistics of the database server." | 2901 | "for details about how to access internal statistics of the database server." |
3583 | msgstr "" | 2902 | msgstr "" |
3584 | 2903 | ||
3585 | #: plugins/check_pgsql.c:555 | ||
3586 | msgid "" | 2904 | msgid "" |
3587 | "For a list of available connection parameters which may be used with the -o" | 2905 | "For a list of available connection parameters which may be used with the -o" |
3588 | msgstr "" | 2906 | msgstr "" |
3589 | 2907 | ||
3590 | #: plugins/check_pgsql.c:556 | ||
3591 | msgid "" | 2908 | msgid "" |
3592 | "command line option, see the documentation for PQconnectdb() in the chapter" | 2909 | "command line option, see the documentation for PQconnectdb() in the chapter" |
3593 | msgstr "" | 2910 | msgstr "" |
3594 | 2911 | ||
3595 | #: plugins/check_pgsql.c:557 | ||
3596 | msgid "" | 2912 | msgid "" |
3597 | "\"libpq - C Library\" of the PostgreSQL manual. For example, this may be" | 2913 | "\"libpq - C Library\" of the PostgreSQL manual. For example, this may be" |
3598 | msgstr "" | 2914 | msgstr "" |
3599 | 2915 | ||
3600 | #: plugins/check_pgsql.c:558 | ||
3601 | msgid "" | 2916 | msgid "" |
3602 | "used to specify a service name in pg_service.conf to be used for additional" | 2917 | "used to specify a service name in pg_service.conf to be used for additional" |
3603 | msgstr "" | 2918 | msgstr "" |
3604 | 2919 | ||
3605 | #: plugins/check_pgsql.c:559 | ||
3606 | msgid "connection parameters: -o 'service=<name>' or to specify the SSL mode:" | 2920 | msgid "connection parameters: -o 'service=<name>' or to specify the SSL mode:" |
3607 | msgstr "" | 2921 | msgstr "" |
3608 | 2922 | ||
3609 | #: plugins/check_pgsql.c:560 | ||
3610 | msgid "-o 'sslmode=require'." | 2923 | msgid "-o 'sslmode=require'." |
3611 | msgstr "" | 2924 | msgstr "" |
3612 | 2925 | ||
3613 | #: plugins/check_pgsql.c:562 | ||
3614 | msgid "" | 2926 | msgid "" |
3615 | "The plugin will connect to a local postmaster if no host is specified. To" | 2927 | "The plugin will connect to a local postmaster if no host is specified. To" |
3616 | msgstr "" | 2928 | msgstr "" |
3617 | 2929 | ||
3618 | #: plugins/check_pgsql.c:563 | ||
3619 | msgid "" | 2930 | msgid "" |
3620 | "connect to a remote host, be sure that the remote postmaster accepts TCP/IP" | 2931 | "connect to a remote host, be sure that the remote postmaster accepts TCP/IP" |
3621 | msgstr "" | 2932 | msgstr "" |
3622 | 2933 | ||
3623 | #: plugins/check_pgsql.c:564 | ||
3624 | msgid "connections (start the postmaster with the -i option)." | 2934 | msgid "connections (start the postmaster with the -i option)." |
3625 | msgstr "" | 2935 | msgstr "" |
3626 | 2936 | ||
3627 | #: plugins/check_pgsql.c:566 | ||
3628 | msgid "" | 2937 | msgid "" |
3629 | "Typically, the monitoring user (unless the --logname option is used) should " | 2938 | "Typically, the monitoring user (unless the --logname option is used) should " |
3630 | "be" | 2939 | "be" |
3631 | msgstr "" | 2940 | msgstr "" |
3632 | 2941 | ||
3633 | #: plugins/check_pgsql.c:567 | ||
3634 | msgid "" | 2942 | msgid "" |
3635 | "able to connect to the database without a password. The plugin can also send" | 2943 | "able to connect to the database without a password. The plugin can also send" |
3636 | msgstr "" | 2944 | msgstr "" |
3637 | 2945 | ||
3638 | #: plugins/check_pgsql.c:568 | ||
3639 | msgid "a password, but no effort is made to obscure or encrypt the password." | 2946 | msgid "a password, but no effort is made to obscure or encrypt the password." |
3640 | msgstr "" | 2947 | msgstr "" |
3641 | 2948 | ||
3642 | #: plugins/check_pgsql.c:601 | ||
3643 | #, c-format | 2949 | #, c-format |
3644 | msgid "QUERY %s - %s: %s.\n" | 2950 | msgid "QUERY %s - %s: %s.\n" |
3645 | msgstr "" | 2951 | msgstr "" |
3646 | 2952 | ||
3647 | #: plugins/check_pgsql.c:601 | ||
3648 | msgid "Error with query" | 2953 | msgid "Error with query" |
3649 | msgstr "" | 2954 | msgstr "" |
3650 | 2955 | ||
3651 | #: plugins/check_pgsql.c:607 | ||
3652 | msgid "No rows returned" | 2956 | msgid "No rows returned" |
3653 | msgstr "" | 2957 | msgstr "" |
3654 | 2958 | ||
3655 | #: plugins/check_pgsql.c:612 | ||
3656 | msgid "No columns returned" | 2959 | msgid "No columns returned" |
3657 | msgstr "" | 2960 | msgstr "" |
3658 | 2961 | ||
3659 | #: plugins/check_pgsql.c:618 | ||
3660 | #, fuzzy | 2962 | #, fuzzy |
3661 | msgid "No data returned" | 2963 | msgid "No data returned" |
3662 | msgstr "Keine Daten empfangen %s\n" | 2964 | msgstr "Keine Daten empfangen %s\n" |
3663 | 2965 | ||
3664 | #: plugins/check_pgsql.c:627 | ||
3665 | msgid "Is not a numeric" | 2966 | msgid "Is not a numeric" |
3666 | msgstr "" | 2967 | msgstr "" |
3667 | 2968 | ||
3668 | #: plugins/check_pgsql.c:644 | 2969 | #, fuzzy, c-format |
2970 | msgid "%s returned %f" | ||
2971 | msgstr "%s hat %s zurückgegeben" | ||
2972 | |||
3669 | #, fuzzy, c-format | 2973 | #, fuzzy, c-format |
3670 | msgid "'%s' returned %f" | 2974 | msgid "'%s' returned %f" |
3671 | msgstr "%s hat %s zurückgegeben" | 2975 | msgstr "%s hat %s zurückgegeben" |
3672 | 2976 | ||
3673 | #: plugins/check_ping.c:141 | ||
3674 | msgid "CRITICAL - Could not interpret output from ping command\n" | 2977 | msgid "CRITICAL - Could not interpret output from ping command\n" |
3675 | msgstr "" | 2978 | msgstr "" |
3676 | 2979 | ||
3677 | #: plugins/check_ping.c:157 | ||
3678 | #, c-format | 2980 | #, c-format |
3679 | msgid "PING %s - %sPacket loss = %d%%" | 2981 | msgid "PING %s - %sPacket loss = %d%%" |
3680 | msgstr "" | 2982 | msgstr "" |
3681 | 2983 | ||
3682 | #: plugins/check_ping.c:160 | ||
3683 | #, c-format | 2984 | #, c-format |
3684 | msgid "PING %s - %sPacket loss = %d%%, RTA = %2.2f ms" | 2985 | msgid "PING %s - %sPacket loss = %d%%, RTA = %2.2f ms" |
3685 | msgstr "" | 2986 | msgstr "" |
3686 | 2987 | ||
3687 | #: plugins/check_ping.c:257 | ||
3688 | msgid "Could not realloc() addresses\n" | 2988 | msgid "Could not realloc() addresses\n" |
3689 | msgstr "" | 2989 | msgstr "" |
3690 | 2990 | ||
3691 | #: plugins/check_ping.c:272 plugins/check_ping.c:352 | ||
3692 | #, c-format | 2991 | #, c-format |
3693 | msgid "<max_packets> (%s) must be a non-negative number\n" | 2992 | msgid "<max_packets> (%s) must be a non-negative number\n" |
3694 | msgstr "" | 2993 | msgstr "" |
3695 | 2994 | ||
3696 | #: plugins/check_ping.c:306 | ||
3697 | #, c-format | 2995 | #, c-format |
3698 | msgid "<wpl> (%s) must be an integer percentage\n" | 2996 | msgid "<wpl> (%s) must be an integer percentage\n" |
3699 | msgstr "" | 2997 | msgstr "" |
3700 | 2998 | ||
3701 | #: plugins/check_ping.c:317 | ||
3702 | #, c-format | 2999 | #, c-format |
3703 | msgid "<cpl> (%s) must be an integer percentage\n" | 3000 | msgid "<cpl> (%s) must be an integer percentage\n" |
3704 | msgstr "" | 3001 | msgstr "" |
3705 | 3002 | ||
3706 | #: plugins/check_ping.c:328 | ||
3707 | #, c-format | 3003 | #, c-format |
3708 | msgid "<wrta> (%s) must be a non-negative number\n" | 3004 | msgid "<wrta> (%s) must be a non-negative number\n" |
3709 | msgstr "" | 3005 | msgstr "" |
3710 | 3006 | ||
3711 | #: plugins/check_ping.c:339 | ||
3712 | #, c-format | 3007 | #, c-format |
3713 | msgid "<crta> (%s) must be a non-negative number\n" | 3008 | msgid "<crta> (%s) must be a non-negative number\n" |
3714 | msgstr "" | 3009 | msgstr "" |
3715 | 3010 | ||
3716 | #: plugins/check_ping.c:372 | ||
3717 | #, c-format | 3011 | #, c-format |
3718 | msgid "" | 3012 | msgid "" |
3719 | "%s: Warning threshold must be integer or percentage!\n" | 3013 | "%s: Warning threshold must be integer or percentage!\n" |
3720 | "\n" | 3014 | "\n" |
3721 | msgstr "" | 3015 | msgstr "" |
3722 | 3016 | ||
3723 | #: plugins/check_ping.c:385 | ||
3724 | #, c-format | 3017 | #, c-format |
3725 | msgid "<wrta> was not set\n" | 3018 | msgid "<wrta> was not set\n" |
3726 | msgstr "" | 3019 | msgstr "" |
3727 | 3020 | ||
3728 | #: plugins/check_ping.c:389 | ||
3729 | #, c-format | 3021 | #, c-format |
3730 | msgid "<crta> was not set\n" | 3022 | msgid "<crta> was not set\n" |
3731 | msgstr "" | 3023 | msgstr "" |
3732 | 3024 | ||
3733 | #: plugins/check_ping.c:393 | ||
3734 | #, c-format | 3025 | #, c-format |
3735 | msgid "<wpl> was not set\n" | 3026 | msgid "<wpl> was not set\n" |
3736 | msgstr "" | 3027 | msgstr "" |
3737 | 3028 | ||
3738 | #: plugins/check_ping.c:397 | ||
3739 | #, c-format | 3029 | #, c-format |
3740 | msgid "<cpl> was not set\n" | 3030 | msgid "<cpl> was not set\n" |
3741 | msgstr "" | 3031 | msgstr "" |
3742 | 3032 | ||
3743 | #: plugins/check_ping.c:401 | ||
3744 | #, c-format | 3033 | #, c-format |
3745 | msgid "<wrta> (%f) cannot be larger than <crta> (%f)\n" | 3034 | msgid "<wrta> (%f) cannot be larger than <crta> (%f)\n" |
3746 | msgstr "" | 3035 | msgstr "" |
3747 | 3036 | ||
3748 | #: plugins/check_ping.c:405 | ||
3749 | #, c-format | 3037 | #, c-format |
3750 | msgid "<wpl> (%d) cannot be larger than <cpl> (%d)\n" | 3038 | msgid "<wpl> (%d) cannot be larger than <cpl> (%d)\n" |
3751 | msgstr "" | 3039 | msgstr "" |
3752 | 3040 | ||
3753 | #: plugins/check_ping.c:442 | ||
3754 | #, c-format | 3041 | #, c-format |
3755 | msgid "Cannot open stderr for %s\n" | 3042 | msgid "Cannot open stderr for %s\n" |
3756 | msgstr "" | 3043 | msgstr "" |
3757 | 3044 | ||
3758 | #: plugins/check_ping.c:492 plugins/check_ping.c:494 | ||
3759 | msgid "System call sent warnings to stderr " | 3045 | msgid "System call sent warnings to stderr " |
3760 | msgstr "" | 3046 | msgstr "" |
3761 | 3047 | ||
3762 | #: plugins/check_ping.c:519 | ||
3763 | #, fuzzy, c-format | 3048 | #, fuzzy, c-format |
3764 | msgid "CRITICAL - Network Unreachable (%s)\n" | 3049 | msgid "CRITICAL - Network Unreachable (%s)\n" |
3765 | msgstr "CRITICAL - Netzwerk nicht erreichbar (%s)" | 3050 | msgstr "CRITICAL - Netzwerk nicht erreichbar (%s)" |
3766 | 3051 | ||
3767 | #: plugins/check_ping.c:521 | ||
3768 | #, fuzzy, c-format | 3052 | #, fuzzy, c-format |
3769 | msgid "CRITICAL - Host Unreachable (%s)\n" | 3053 | msgid "CRITICAL - Host Unreachable (%s)\n" |
3770 | msgstr "CRITICAL - Netzwerk nicht erreichbar (%s)" | 3054 | msgstr "CRITICAL - Netzwerk nicht erreichbar (%s)" |
3771 | 3055 | ||
3772 | #: plugins/check_ping.c:523 | ||
3773 | #, fuzzy, c-format | 3056 | #, fuzzy, c-format |
3774 | msgid "CRITICAL - Bogus ICMP: Port Unreachable (%s)\n" | 3057 | msgid "CRITICAL - Bogus ICMP: Port Unreachable (%s)\n" |
3775 | msgstr "CRITICAL - Netzwerk nicht erreichbar (%s)" | 3058 | msgstr "CRITICAL - Netzwerk nicht erreichbar (%s)" |
3776 | 3059 | ||
3777 | #: plugins/check_ping.c:525 | ||
3778 | #, fuzzy, c-format | 3060 | #, fuzzy, c-format |
3779 | msgid "CRITICAL - Bogus ICMP: Protocol Unreachable (%s)\n" | 3061 | msgid "CRITICAL - Bogus ICMP: Protocol Unreachable (%s)\n" |
3780 | msgstr "CRITICAL - Netzwerk nicht erreichbar (%s)" | 3062 | msgstr "CRITICAL - Netzwerk nicht erreichbar (%s)" |
3781 | 3063 | ||
3782 | #: plugins/check_ping.c:527 | ||
3783 | #, fuzzy, c-format | 3064 | #, fuzzy, c-format |
3784 | msgid "CRITICAL - Network Prohibited (%s)\n" | 3065 | msgid "CRITICAL - Network Prohibited (%s)\n" |
3785 | msgstr "CRITICAL - Netzwerk nicht erreichbar (%s)" | 3066 | msgstr "CRITICAL - Netzwerk nicht erreichbar (%s)" |
3786 | 3067 | ||
3787 | #: plugins/check_ping.c:529 | ||
3788 | #, fuzzy, c-format | 3068 | #, fuzzy, c-format |
3789 | msgid "CRITICAL - Host Prohibited (%s)\n" | 3069 | msgid "CRITICAL - Host Prohibited (%s)\n" |
3790 | msgstr "CRITICAL - Netzwerk nicht erreichbar (%s)" | 3070 | msgstr "CRITICAL - Netzwerk nicht erreichbar (%s)" |
3791 | 3071 | ||
3792 | #: plugins/check_ping.c:531 | ||
3793 | #, fuzzy, c-format | 3072 | #, fuzzy, c-format |
3794 | msgid "CRITICAL - Packet Filtered (%s)\n" | 3073 | msgid "CRITICAL - Packet Filtered (%s)\n" |
3795 | msgstr "CRITICAL - Netzwerk nicht erreichbar (%s)" | 3074 | msgstr "CRITICAL - Netzwerk nicht erreichbar (%s)" |
3796 | 3075 | ||
3797 | #: plugins/check_ping.c:533 | ||
3798 | #, fuzzy, c-format | 3076 | #, fuzzy, c-format |
3799 | msgid "CRITICAL - Host not found (%s)\n" | 3077 | msgid "CRITICAL - Host not found (%s)\n" |
3800 | msgstr "CRITICAL - Text nicht gefunden%s|%s %s\n" | 3078 | msgstr "CRITICAL - Text nicht gefunden%s|%s %s\n" |
3801 | 3079 | ||
3802 | #: plugins/check_ping.c:535 | ||
3803 | #, fuzzy, c-format | 3080 | #, fuzzy, c-format |
3804 | msgid "CRITICAL - Time to live exceeded (%s)\n" | 3081 | msgid "CRITICAL - Time to live exceeded (%s)\n" |
3805 | msgstr "CRITICAL - Netzwerk nicht erreichbar (%s)" | 3082 | msgstr "CRITICAL - Netzwerk nicht erreichbar (%s)" |
3806 | 3083 | ||
3807 | #: plugins/check_ping.c:537 | ||
3808 | #, fuzzy, c-format | 3084 | #, fuzzy, c-format |
3809 | msgid "CRITICAL - Destination Unreachable (%s)\n" | 3085 | msgid "CRITICAL - Destination Unreachable (%s)\n" |
3810 | msgstr "CRITICAL - Netzwerk nicht erreichbar (%s)" | 3086 | msgstr "CRITICAL - Netzwerk nicht erreichbar (%s)" |
3811 | 3087 | ||
3812 | #: plugins/check_ping.c:544 | ||
3813 | msgid "Unable to realloc warn_text\n" | 3088 | msgid "Unable to realloc warn_text\n" |
3814 | msgstr "" | 3089 | msgstr "" |
3815 | 3090 | ||
3816 | #: plugins/check_ping.c:561 | ||
3817 | #, c-format | 3091 | #, c-format |
3818 | msgid "Use ping to check connection statistics for a remote host." | 3092 | msgid "Use ping to check connection statistics for a remote host." |
3819 | msgstr "" | 3093 | msgstr "" |
3820 | 3094 | ||
3821 | #: plugins/check_ping.c:573 | ||
3822 | msgid "host to ping" | 3095 | msgid "host to ping" |
3823 | msgstr "" | 3096 | msgstr "" |
3824 | 3097 | ||
3825 | #: plugins/check_ping.c:579 | ||
3826 | msgid "number of ICMP ECHO packets to send" | 3098 | msgid "number of ICMP ECHO packets to send" |
3827 | msgstr "" | 3099 | msgstr "" |
3828 | 3100 | ||
3829 | #: plugins/check_ping.c:580 | ||
3830 | #, c-format | 3101 | #, c-format |
3831 | msgid "(Default: %d)\n" | 3102 | msgid "(Default: %d)\n" |
3832 | msgstr "" | 3103 | msgstr "" |
3833 | 3104 | ||
3834 | #: plugins/check_ping.c:582 | ||
3835 | msgid "show HTML in the plugin output (obsoleted by urlize)" | 3105 | msgid "show HTML in the plugin output (obsoleted by urlize)" |
3836 | msgstr "" | 3106 | msgstr "" |
3837 | 3107 | ||
3838 | #: plugins/check_ping.c:587 | ||
3839 | msgid "THRESHOLD is <rta>,<pl>% where <rta> is the round trip average travel" | 3108 | msgid "THRESHOLD is <rta>,<pl>% where <rta> is the round trip average travel" |
3840 | msgstr "" | 3109 | msgstr "" |
3841 | 3110 | ||
3842 | #: plugins/check_ping.c:588 | ||
3843 | msgid "time (ms) which triggers a WARNING or CRITICAL state, and <pl> is the" | 3111 | msgid "time (ms) which triggers a WARNING or CRITICAL state, and <pl> is the" |
3844 | msgstr "" | 3112 | msgstr "" |
3845 | 3113 | ||
3846 | #: plugins/check_ping.c:589 | ||
3847 | msgid "percentage of packet loss to trigger an alarm state." | 3114 | msgid "percentage of packet loss to trigger an alarm state." |
3848 | msgstr "" | 3115 | msgstr "" |
3849 | 3116 | ||
3850 | #: plugins/check_ping.c:592 | ||
3851 | #, fuzzy | 3117 | #, fuzzy |
3852 | msgid "" | 3118 | msgid "" |
3853 | "This plugin uses the ping command to probe the specified host for packet loss" | 3119 | "This plugin uses the ping command to probe the specified host for packet loss" |
3854 | msgstr "Dieses plugin testet Gameserververbindungen zum angegebenen Host." | 3120 | msgstr "Dieses plugin testet Gameserververbindungen zum angegebenen Host." |
3855 | 3121 | ||
3856 | #: plugins/check_ping.c:593 | ||
3857 | msgid "" | 3122 | msgid "" |
3858 | "(percentage) and round trip average (milliseconds). It can produce HTML " | 3123 | "(percentage) and round trip average (milliseconds). It can produce HTML " |
3859 | "output" | 3124 | "output" |
3860 | msgstr "" | 3125 | msgstr "" |
3861 | 3126 | ||
3862 | #: plugins/check_ping.c:594 | ||
3863 | msgid "" | 3127 | msgid "" |
3864 | "linking to a traceroute CGI contributed by Ian Cass. The CGI can be found in" | 3128 | "linking to a traceroute CGI contributed by Ian Cass. The CGI can be found in" |
3865 | msgstr "" | 3129 | msgstr "" |
3866 | 3130 | ||
3867 | #: plugins/check_ping.c:595 | ||
3868 | msgid "the contrib area of the downloads section at http://www.nagios.org/" | 3131 | msgid "the contrib area of the downloads section at http://www.nagios.org/" |
3869 | msgstr "" | 3132 | msgstr "" |
3870 | 3133 | ||
3871 | #: plugins/check_procs.c:193 | ||
3872 | #, c-format | 3134 | #, c-format |
3873 | msgid "CMD: %s\n" | 3135 | msgid "CMD: %s\n" |
3874 | msgstr "" | 3136 | msgstr "" |
3875 | 3137 | ||
3876 | #: plugins/check_procs.c:198 | ||
3877 | msgid "System call sent warnings to stderr" | 3138 | msgid "System call sent warnings to stderr" |
3878 | msgstr "" | 3139 | msgstr "" |
3879 | 3140 | ||
3880 | #: plugins/check_procs.c:326 | ||
3881 | #, c-format | 3141 | #, c-format |
3882 | msgid "Not parseable: %s" | 3142 | msgid "Not parseable: %s" |
3883 | msgstr "" | 3143 | msgstr "" |
3884 | 3144 | ||
3885 | #: plugins/check_procs.c:331 | ||
3886 | #, c-format | 3145 | #, c-format |
3887 | msgid "Unable to read output\n" | 3146 | msgid "Unable to read output\n" |
3888 | msgstr "" | 3147 | msgstr "" |
3889 | 3148 | ||
3890 | #: plugins/check_procs.c:348 | ||
3891 | #, c-format | 3149 | #, c-format |
3892 | msgid "%d warn out of " | 3150 | msgid "%d warn out of " |
3893 | msgstr "" | 3151 | msgstr "" |
3894 | 3152 | ||
3895 | #: plugins/check_procs.c:353 | ||
3896 | #, c-format | 3153 | #, c-format |
3897 | msgid "%d crit, %d warn out of " | 3154 | msgid "%d crit, %d warn out of " |
3898 | msgstr "" | 3155 | msgstr "" |
3899 | 3156 | ||
3900 | #: plugins/check_procs.c:359 | ||
3901 | #, c-format | 3157 | #, c-format |
3902 | msgid " with %s" | 3158 | msgid " with %s" |
3903 | msgstr "" | 3159 | msgstr "" |
3904 | 3160 | ||
3905 | #: plugins/check_procs.c:453 | ||
3906 | #, fuzzy | 3161 | #, fuzzy |
3907 | msgid "Parent Process ID must be an integer!" | 3162 | msgid "Parent Process ID must be an integer!" |
3908 | msgstr "Argument für check_dummy muss ein Integer sein" | 3163 | msgstr "Argument für check_dummy muss ein Integer sein" |
3909 | 3164 | ||
3910 | #: plugins/check_procs.c:459 plugins/check_procs.c:586 | ||
3911 | #, c-format | 3165 | #, c-format |
3912 | msgid "%s%sSTATE = %s" | 3166 | msgid "%s%sSTATE = %s" |
3913 | msgstr "" | 3167 | msgstr "" |
3914 | 3168 | ||
3915 | #: plugins/check_procs.c:468 | ||
3916 | #, fuzzy | 3169 | #, fuzzy |
3917 | msgid "UID was not found" | 3170 | msgid "UID was not found" |
3918 | msgstr "%s [%s nicht gefunden]" | 3171 | msgstr "%s [%s nicht gefunden]" |
3919 | 3172 | ||
3920 | #: plugins/check_procs.c:474 | ||
3921 | #, fuzzy | 3173 | #, fuzzy |
3922 | msgid "User name was not found" | 3174 | msgid "User name was not found" |
3923 | msgstr "%s [%s nicht gefunden]" | 3175 | msgstr "%s [%s nicht gefunden]" |
3924 | 3176 | ||
3925 | #: plugins/check_procs.c:489 | ||
3926 | #, c-format | 3177 | #, c-format |
3927 | msgid "%s%scommand name '%s'" | 3178 | msgid "%s%scommand name '%s'" |
3928 | msgstr "" | 3179 | msgstr "" |
3929 | 3180 | ||
3930 | #: plugins/check_procs.c:524 | 3181 | #, c-format |
3182 | msgid "%s%sexclude progs '%s'" | ||
3183 | msgstr "" | ||
3184 | |||
3931 | #, fuzzy | 3185 | #, fuzzy |
3932 | msgid "RSS must be an integer!" | 3186 | msgid "RSS must be an integer!" |
3933 | msgstr "skip lines muss ein Integer sein" | 3187 | msgstr "skip lines muss ein Integer sein" |
3934 | 3188 | ||
3935 | #: plugins/check_procs.c:531 | ||
3936 | #, fuzzy | 3189 | #, fuzzy |
3937 | msgid "VSZ must be an integer!" | 3190 | msgid "VSZ must be an integer!" |
3938 | msgstr "skip lines muss ein Integer sein" | 3191 | msgstr "skip lines muss ein Integer sein" |
3939 | 3192 | ||
3940 | #: plugins/check_procs.c:539 | ||
3941 | msgid "PCPU must be a float!" | 3193 | msgid "PCPU must be a float!" |
3942 | msgstr "" | 3194 | msgstr "" |
3943 | 3195 | ||
3944 | #: plugins/check_procs.c:563 | ||
3945 | msgid "Metric must be one of PROCS, VSZ, RSS, CPU, ELAPSED!" | 3196 | msgid "Metric must be one of PROCS, VSZ, RSS, CPU, ELAPSED!" |
3946 | msgstr "" | 3197 | msgstr "" |
3947 | 3198 | ||
3948 | #: plugins/check_procs.c:694 | ||
3949 | msgid "" | 3199 | msgid "" |
3950 | "Checks all processes and generates WARNING or CRITICAL states if the " | 3200 | "Checks all processes and generates WARNING or CRITICAL states if the " |
3951 | "specified" | 3201 | "specified" |
3952 | msgstr "" | 3202 | msgstr "" |
3953 | 3203 | ||
3954 | #: plugins/check_procs.c:695 | ||
3955 | msgid "" | 3204 | msgid "" |
3956 | "metric is outside the required threshold ranges. The metric defaults to " | 3205 | "metric is outside the required threshold ranges. The metric defaults to " |
3957 | "number" | 3206 | "number" |
3958 | msgstr "" | 3207 | msgstr "" |
3959 | 3208 | ||
3960 | #: plugins/check_procs.c:696 | ||
3961 | msgid "" | 3209 | msgid "" |
3962 | "of processes. Search filters can be applied to limit the processes to check." | 3210 | "of processes. Search filters can be applied to limit the processes to check." |
3963 | msgstr "" | 3211 | msgstr "" |
3964 | 3212 | ||
3965 | #: plugins/check_procs.c:705 | ||
3966 | msgid "Generate warning state if metric is outside this range" | 3213 | msgid "Generate warning state if metric is outside this range" |
3967 | msgstr "" | 3214 | msgstr "" |
3968 | 3215 | ||
3969 | #: plugins/check_procs.c:707 | ||
3970 | msgid "Generate critical state if metric is outside this range" | 3216 | msgid "Generate critical state if metric is outside this range" |
3971 | msgstr "" | 3217 | msgstr "" |
3972 | 3218 | ||
3973 | #: plugins/check_procs.c:709 | ||
3974 | msgid "Check thresholds against metric. Valid types:" | 3219 | msgid "Check thresholds against metric. Valid types:" |
3975 | msgstr "" | 3220 | msgstr "" |
3976 | 3221 | ||
3977 | #: plugins/check_procs.c:710 | ||
3978 | msgid "PROCS - number of processes (default)" | 3222 | msgid "PROCS - number of processes (default)" |
3979 | msgstr "" | 3223 | msgstr "" |
3980 | 3224 | ||
3981 | #: plugins/check_procs.c:711 | ||
3982 | msgid "VSZ - virtual memory size" | 3225 | msgid "VSZ - virtual memory size" |
3983 | msgstr "" | 3226 | msgstr "" |
3984 | 3227 | ||
3985 | #: plugins/check_procs.c:712 | ||
3986 | msgid "RSS - resident set memory size" | 3228 | msgid "RSS - resident set memory size" |
3987 | msgstr "" | 3229 | msgstr "" |
3988 | 3230 | ||
3989 | #: plugins/check_procs.c:713 | ||
3990 | msgid "CPU - percentage CPU" | 3231 | msgid "CPU - percentage CPU" |
3991 | msgstr "" | 3232 | msgstr "" |
3992 | 3233 | ||
3993 | #: plugins/check_procs.c:716 | ||
3994 | msgid "ELAPSED - time elapsed in seconds" | 3234 | msgid "ELAPSED - time elapsed in seconds" |
3995 | msgstr "" | 3235 | msgstr "" |
3996 | 3236 | ||
3997 | #: plugins/check_procs.c:721 | ||
3998 | msgid "Extra information. Up to 3 verbosity levels" | 3237 | msgid "Extra information. Up to 3 verbosity levels" |
3999 | msgstr "" | 3238 | msgstr "" |
4000 | 3239 | ||
4001 | #: plugins/check_procs.c:724 | ||
4002 | msgid "Filter own process the traditional way by PID instead of /proc/pid/exe" | 3240 | msgid "Filter own process the traditional way by PID instead of /proc/pid/exe" |
4003 | msgstr "" | 3241 | msgstr "" |
4004 | 3242 | ||
4005 | #: plugins/check_procs.c:729 | ||
4006 | msgid "Only scan for processes that have, in the output of `ps`, one or" | 3243 | msgid "Only scan for processes that have, in the output of `ps`, one or" |
4007 | msgstr "" | 3244 | msgstr "" |
4008 | 3245 | ||
4009 | #: plugins/check_procs.c:730 | ||
4010 | msgid "more of the status flags you specify (for example R, Z, S, RS," | 3246 | msgid "more of the status flags you specify (for example R, Z, S, RS," |
4011 | msgstr "" | 3247 | msgstr "" |
4012 | 3248 | ||
4013 | #: plugins/check_procs.c:731 | ||
4014 | msgid "RSZDT, plus others based on the output of your 'ps' command)." | 3249 | msgid "RSZDT, plus others based on the output of your 'ps' command)." |
4015 | msgstr "" | 3250 | msgstr "" |
4016 | 3251 | ||
4017 | #: plugins/check_procs.c:733 | ||
4018 | msgid "Only scan for children of the parent process ID indicated." | 3252 | msgid "Only scan for children of the parent process ID indicated." |
4019 | msgstr "" | 3253 | msgstr "" |
4020 | 3254 | ||
4021 | #: plugins/check_procs.c:735 | ||
4022 | msgid "Only scan for processes with VSZ higher than indicated." | 3255 | msgid "Only scan for processes with VSZ higher than indicated." |
4023 | msgstr "" | 3256 | msgstr "" |
4024 | 3257 | ||
4025 | #: plugins/check_procs.c:737 | ||
4026 | msgid "Only scan for processes with RSS higher than indicated." | 3258 | msgid "Only scan for processes with RSS higher than indicated." |
4027 | msgstr "" | 3259 | msgstr "" |
4028 | 3260 | ||
4029 | #: plugins/check_procs.c:739 | ||
4030 | msgid "Only scan for processes with PCPU higher than indicated." | 3261 | msgid "Only scan for processes with PCPU higher than indicated." |
4031 | msgstr "" | 3262 | msgstr "" |
4032 | 3263 | ||
4033 | #: plugins/check_procs.c:741 | ||
4034 | msgid "Only scan for processes with user name or ID indicated." | 3264 | msgid "Only scan for processes with user name or ID indicated." |
4035 | msgstr "" | 3265 | msgstr "" |
4036 | 3266 | ||
4037 | #: plugins/check_procs.c:743 | ||
4038 | msgid "Only scan for processes with args that contain STRING." | 3267 | msgid "Only scan for processes with args that contain STRING." |
4039 | msgstr "" | 3268 | msgstr "" |
4040 | 3269 | ||
4041 | #: plugins/check_procs.c:745 | ||
4042 | msgid "Only scan for processes with args that contain the regex STRING." | 3270 | msgid "Only scan for processes with args that contain the regex STRING." |
4043 | msgstr "" | 3271 | msgstr "" |
4044 | 3272 | ||
4045 | #: plugins/check_procs.c:747 | ||
4046 | msgid "Only scan for exact matches of COMMAND (without path)." | 3273 | msgid "Only scan for exact matches of COMMAND (without path)." |
4047 | msgstr "" | 3274 | msgstr "" |
4048 | 3275 | ||
4049 | #: plugins/check_procs.c:749 | 3276 | msgid "Exclude processes which match this comma separated list" |
3277 | msgstr "" | ||
3278 | |||
4050 | msgid "Only scan for non kernel threads (works on Linux only)." | 3279 | msgid "Only scan for non kernel threads (works on Linux only)." |
4051 | msgstr "" | 3280 | msgstr "" |
4052 | 3281 | ||
4053 | #: plugins/check_procs.c:751 | ||
4054 | #, c-format | 3282 | #, c-format |
4055 | msgid "" | 3283 | msgid "" |
4056 | "\n" | 3284 | "\n" |
@@ -4060,7 +3288,6 @@ msgid "" | |||
4060 | "\n" | 3288 | "\n" |
4061 | msgstr "" | 3289 | msgstr "" |
4062 | 3290 | ||
4063 | #: plugins/check_procs.c:756 | ||
4064 | #, c-format | 3291 | #, c-format |
4065 | msgid "" | 3292 | msgid "" |
4066 | "This plugin checks the number of currently running processes and\n" | 3293 | "This plugin checks the number of currently running processes and\n" |
@@ -4071,1144 +3298,993 @@ msgid "" | |||
4071 | "\n" | 3298 | "\n" |
4072 | msgstr "" | 3299 | msgstr "" |
4073 | 3300 | ||
4074 | #: plugins/check_procs.c:765 | ||
4075 | msgid "Warning if not two processes with command name portsentry." | 3301 | msgid "Warning if not two processes with command name portsentry." |
4076 | msgstr "" | 3302 | msgstr "" |
4077 | 3303 | ||
4078 | #: plugins/check_procs.c:766 | ||
4079 | msgid "Critical if < 2 or > 1024 processes" | 3304 | msgid "Critical if < 2 or > 1024 processes" |
4080 | msgstr "" | 3305 | msgstr "" |
4081 | 3306 | ||
4082 | #: plugins/check_procs.c:768 | 3307 | msgid "Critical if not at least 1 process with command sshd" |
4083 | msgid "Warning alert if > 10 processes with command arguments containing" | ||
4084 | msgstr "" | 3308 | msgstr "" |
4085 | 3309 | ||
4086 | #: plugins/check_procs.c:769 | 3310 | msgid "Warning if > 1024 processes with command name sshd." |
4087 | msgid "'/usr/local/bin/perl' and owned by root" | ||
4088 | msgstr "" | 3311 | msgstr "" |
4089 | 3312 | ||
4090 | #: plugins/check_procs.c:771 | 3313 | msgid "Critical if < 1 processes with command name sshd." |
4091 | msgid "Alert if VSZ of any processes over 50K or 100K" | ||
4092 | msgstr "" | 3314 | msgstr "" |
4093 | 3315 | ||
4094 | #: plugins/check_procs.c:773 | 3316 | msgid "Warning alert if > 10 processes with command arguments containing" |
4095 | #, c-format | ||
4096 | msgid "Alert if CPU of any processes over 10%% or 20%%" | ||
4097 | msgstr "" | 3317 | msgstr "" |
4098 | 3318 | ||
4099 | #: plugins/check_radius.c:165 | 3319 | msgid "'/usr/local/bin/perl' and owned by root" |
4100 | msgid "Config file error" | ||
4101 | msgstr "" | 3320 | msgstr "" |
4102 | 3321 | ||
4103 | #: plugins/check_radius.c:174 | 3322 | msgid "Alert if VSZ of any processes over 50K or 100K" |
4104 | msgid "Out of Memory?" | ||
4105 | msgstr "" | 3323 | msgstr "" |
4106 | 3324 | ||
4107 | #: plugins/check_radius.c:178 | 3325 | msgid "Alert if CPU of any processes over 10% or 20%" |
4108 | msgid "Invalid NAS-Identifier" | 3326 | msgstr "" |
3327 | |||
3328 | msgid "Config file error\n" | ||
4109 | msgstr "" | 3329 | msgstr "" |
4110 | 3330 | ||
4111 | #: plugins/check_radius.c:183 plugins/check_radius.c:185 | ||
4112 | #: plugins/check_radius.c:191 | ||
4113 | #, fuzzy | 3331 | #, fuzzy |
4114 | msgid "Invalid NAS-IP-Address" | 3332 | msgid "Out of Memory?\n" |
4115 | msgstr "Ungültige(r) Hostname/Adresse" | 3333 | msgstr "Kein Papier" |
4116 | 3334 | ||
4117 | #: plugins/check_radius.c:188 | 3335 | #, fuzzy |
4118 | msgid "Can't find local IP for NAS-IP-Address" | 3336 | msgid "Invalid NAS-Identifier\n" |
4119 | msgstr "" | 3337 | msgstr "Ungültige(r) Hostname/Adresse" |
4120 | 3338 | ||
4121 | #: plugins/check_radius.c:202 | 3339 | #, c-format |
4122 | msgid "Timeout" | 3340 | msgid "gethostname() failed!\n" |
4123 | msgstr "" | 3341 | msgstr "" |
4124 | 3342 | ||
4125 | #: plugins/check_radius.c:204 | 3343 | #, fuzzy |
4126 | msgid "Auth Error" | 3344 | msgid "Invalid NAS-IP-Address\n" |
3345 | msgstr "Ungültige(r) Hostname/Adresse" | ||
3346 | |||
3347 | msgid "Timeout\n" | ||
4127 | msgstr "" | 3348 | msgstr "" |
4128 | 3349 | ||
4129 | #: plugins/check_radius.c:206 | 3350 | msgid "Auth Error\n" |
4130 | msgid "Auth Failed" | ||
4131 | msgstr "" | 3351 | msgstr "" |
4132 | 3352 | ||
4133 | #: plugins/check_radius.c:208 | 3353 | #, fuzzy |
4134 | msgid "Bad Response" | 3354 | msgid "Auth Failed\n" |
3355 | msgstr "Fehlgeschlagen" | ||
3356 | |||
3357 | msgid "Bad Response\n" | ||
4135 | msgstr "" | 3358 | msgstr "" |
4136 | 3359 | ||
4137 | #: plugins/check_radius.c:212 | 3360 | msgid "Auth OK\n" |
4138 | msgid "Auth OK" | ||
4139 | msgstr "" | 3361 | msgstr "" |
4140 | 3362 | ||
4141 | #: plugins/check_radius.c:213 | ||
4142 | #, fuzzy, c-format | 3363 | #, fuzzy, c-format |
4143 | msgid "Unexpected result code %d" | 3364 | msgid "Unexpected result code %d" |
4144 | msgstr "Erwartet: %s aber: %s erhalten" | 3365 | msgstr "Erwartet: %s aber: %s erhalten" |
4145 | 3366 | ||
4146 | #: plugins/check_radius.c:302 | ||
4147 | msgid "Number of retries must be a positive integer" | 3367 | msgid "Number of retries must be a positive integer" |
4148 | msgstr "" | 3368 | msgstr "" |
4149 | 3369 | ||
4150 | #: plugins/check_radius.c:316 | ||
4151 | msgid "User not specified" | 3370 | msgid "User not specified" |
4152 | msgstr "" | 3371 | msgstr "" |
4153 | 3372 | ||
4154 | #: plugins/check_radius.c:318 | ||
4155 | msgid "Password not specified" | 3373 | msgid "Password not specified" |
4156 | msgstr "" | 3374 | msgstr "" |
4157 | 3375 | ||
4158 | #: plugins/check_radius.c:320 | ||
4159 | msgid "Configuration file not specified" | 3376 | msgid "Configuration file not specified" |
4160 | msgstr "" | 3377 | msgstr "" |
4161 | 3378 | ||
4162 | #: plugins/check_radius.c:338 | ||
4163 | #, fuzzy | 3379 | #, fuzzy |
4164 | msgid "Tests to see if a RADIUS server is accepting connections." | 3380 | msgid "Tests to see if a RADIUS server is accepting connections." |
4165 | msgstr "Dieses plugin testet Gameserververbindungen zum angegebenen Host." | 3381 | msgstr "Dieses plugin testet Gameserververbindungen zum angegebenen Host." |
4166 | 3382 | ||
4167 | #: plugins/check_radius.c:350 | ||
4168 | msgid "The user to authenticate" | 3383 | msgid "The user to authenticate" |
4169 | msgstr "" | 3384 | msgstr "" |
4170 | 3385 | ||
4171 | #: plugins/check_radius.c:352 | ||
4172 | msgid "Password for authentication (SECURITY RISK)" | 3386 | msgid "Password for authentication (SECURITY RISK)" |
4173 | msgstr "" | 3387 | msgstr "" |
4174 | 3388 | ||
4175 | #: plugins/check_radius.c:354 | ||
4176 | msgid "NAS identifier" | 3389 | msgid "NAS identifier" |
4177 | msgstr "" | 3390 | msgstr "" |
4178 | 3391 | ||
4179 | #: plugins/check_radius.c:356 | ||
4180 | msgid "NAS IP Address" | 3392 | msgid "NAS IP Address" |
4181 | msgstr "" | 3393 | msgstr "" |
4182 | 3394 | ||
4183 | #: plugins/check_radius.c:358 | ||
4184 | msgid "Configuration file" | 3395 | msgid "Configuration file" |
4185 | msgstr "" | 3396 | msgstr "" |
4186 | 3397 | ||
4187 | #: plugins/check_radius.c:360 | ||
4188 | msgid "Response string to expect from the server" | 3398 | msgid "Response string to expect from the server" |
4189 | msgstr "" | 3399 | msgstr "" |
4190 | 3400 | ||
4191 | #: plugins/check_radius.c:362 | ||
4192 | msgid "Number of times to retry a failed connection" | 3401 | msgid "Number of times to retry a failed connection" |
4193 | msgstr "" | 3402 | msgstr "" |
4194 | 3403 | ||
4195 | #: plugins/check_radius.c:367 | ||
4196 | #, fuzzy | 3404 | #, fuzzy |
4197 | msgid "" | 3405 | msgid "" |
4198 | "This plugin tests a RADIUS server to see if it is accepting connections." | 3406 | "This plugin tests a RADIUS server to see if it is accepting connections." |
4199 | msgstr "Dieses plugin testet Gameserververbindungen zum angegebenen Host." | 3407 | msgstr "Dieses plugin testet Gameserververbindungen zum angegebenen Host." |
4200 | 3408 | ||
4201 | #: plugins/check_radius.c:368 | ||
4202 | msgid "" | 3409 | msgid "" |
4203 | "The server to test must be specified in the invocation, as well as a user" | 3410 | "The server to test must be specified in the invocation, as well as a user" |
4204 | msgstr "" | 3411 | msgstr "" |
4205 | 3412 | ||
4206 | #: plugins/check_radius.c:369 | 3413 | msgid "name and password. A configuration file must be present. The format of" |
4207 | msgid "" | ||
4208 | "name and password. A configuration file may also be present. The format of" | ||
4209 | msgstr "" | 3414 | msgstr "" |
4210 | 3415 | ||
4211 | #: plugins/check_radius.c:370 | ||
4212 | msgid "" | 3416 | msgid "" |
4213 | "the configuration file is described in the radiusclient library sources." | 3417 | "the configuration file is described in the radiusclient library sources." |
4214 | msgstr "" | 3418 | msgstr "" |
4215 | 3419 | ||
4216 | #: plugins/check_radius.c:371 | ||
4217 | msgid "The password option presents a substantial security issue because the" | 3420 | msgid "The password option presents a substantial security issue because the" |
4218 | msgstr "" | 3421 | msgstr "" |
4219 | 3422 | ||
4220 | #: plugins/check_radius.c:372 | ||
4221 | msgid "" | 3423 | msgid "" |
4222 | "password can possibly be determined by careful watching of the command line" | 3424 | "password can possibly be determined by careful watching of the command line" |
4223 | msgstr "" | 3425 | msgstr "" |
4224 | 3426 | ||
4225 | #: plugins/check_radius.c:373 | 3427 | msgid "in a process listing. This risk is exacerbated because the plugin will" |
4226 | msgid "in a process listing. This risk is exacerbated because the monitor will" | ||
4227 | msgstr "" | 3428 | msgstr "" |
4228 | 3429 | ||
4229 | #: plugins/check_radius.c:374 | 3430 | msgid "" |
4230 | msgid "run the plugin at regular predictable intervals. Please be sure that" | 3431 | "typically be executed at regular predictable intervals. Please be sure that" |
4231 | msgstr "" | 3432 | msgstr "" |
4232 | 3433 | ||
4233 | #: plugins/check_radius.c:375 | ||
4234 | msgid "the password used does not allow access to sensitive system resources." | 3434 | msgid "the password used does not allow access to sensitive system resources." |
4235 | msgstr "" | 3435 | msgstr "" |
4236 | 3436 | ||
4237 | #: plugins/check_real.c:91 | ||
4238 | #, c-format | 3437 | #, c-format |
4239 | msgid "Unable to connect to %s on port %d\n" | 3438 | msgid "Unable to connect to %s on port %d\n" |
4240 | msgstr "" | 3439 | msgstr "" |
4241 | 3440 | ||
4242 | #: plugins/check_real.c:113 | ||
4243 | #, c-format | 3441 | #, c-format |
4244 | msgid "No data received from %s\n" | 3442 | msgid "No data received from %s\n" |
4245 | msgstr "" | 3443 | msgstr "" |
4246 | 3444 | ||
4247 | #: plugins/check_real.c:118 plugins/check_real.c:191 | ||
4248 | #, fuzzy | 3445 | #, fuzzy |
4249 | msgid "Invalid REAL response received from host" | 3446 | msgid "Invalid REAL response received from host" |
4250 | msgstr "Ungültige HTTP Antwort von Host empfangen\n" | 3447 | msgstr "Ungültige HTTP Antwort von Host empfangen\n" |
4251 | 3448 | ||
4252 | #: plugins/check_real.c:120 plugins/check_real.c:193 | ||
4253 | #, c-format | 3449 | #, c-format |
4254 | msgid "Invalid REAL response received from host on port %d\n" | 3450 | msgid "Invalid REAL response received from host on port %d\n" |
4255 | msgstr "" | 3451 | msgstr "" |
4256 | 3452 | ||
4257 | #: plugins/check_real.c:184 plugins/check_tcp.c:311 | ||
4258 | #, c-format | 3453 | #, c-format |
4259 | msgid "No data received from host\n" | 3454 | msgid "No data received from host\n" |
4260 | msgstr "" | 3455 | msgstr "" |
4261 | 3456 | ||
4262 | #: plugins/check_real.c:247 | ||
4263 | #, c-format | 3457 | #, c-format |
4264 | msgid "REAL %s - %d second response time\n" | 3458 | msgid "REAL %s - %d second response time\n" |
4265 | msgstr "" | 3459 | msgstr "" |
4266 | 3460 | ||
4267 | #: plugins/check_real.c:336 plugins/check_ups.c:536 | ||
4268 | msgid "Warning time must be a positive integer" | 3461 | msgid "Warning time must be a positive integer" |
4269 | msgstr "Warnung time muss ein positiver Integer sein" | 3462 | msgstr "Warnung time muss ein positiver Integer sein" |
4270 | 3463 | ||
4271 | #: plugins/check_real.c:345 plugins/check_ups.c:527 | ||
4272 | msgid "Critical time must be a positive integer" | 3464 | msgid "Critical time must be a positive integer" |
4273 | msgstr "Critical time muss ein positiver Integer sein" | 3465 | msgstr "Critical time muss ein positiver Integer sein" |
4274 | 3466 | ||
4275 | #: plugins/check_real.c:381 | ||
4276 | #, fuzzy | 3467 | #, fuzzy |
4277 | msgid "You must provide a server to check" | 3468 | msgid "You must provide a server to check" |
4278 | msgstr "%s: Hostname muss angegeben werden\n" | 3469 | msgstr "%s: Hostname muss angegeben werden\n" |
4279 | 3470 | ||
4280 | #: plugins/check_real.c:413 | ||
4281 | #, fuzzy | 3471 | #, fuzzy |
4282 | msgid "This plugin tests the REAL service on the specified host." | 3472 | msgid "This plugin tests the REAL service on the specified host." |
4283 | msgstr "" | 3473 | msgstr "" |
4284 | "Testet den DNS Dienst auf dem angegebenen Host mit dig\n" | 3474 | "Testet den DNS Dienst auf dem angegebenen Host mit dig\n" |
4285 | "\n" | 3475 | "\n" |
4286 | 3476 | ||
4287 | #: plugins/check_real.c:425 | ||
4288 | msgid "Connect to this url" | 3477 | msgid "Connect to this url" |
4289 | msgstr "" | 3478 | msgstr "" |
4290 | 3479 | ||
4291 | #: plugins/check_real.c:427 | ||
4292 | #, c-format | 3480 | #, c-format |
4293 | msgid "String to expect in first line of server response (default: %s)\n" | 3481 | msgid "String to expect in first line of server response (default: %s)\n" |
4294 | msgstr "" | 3482 | msgstr "" |
4295 | 3483 | ||
4296 | #: plugins/check_real.c:437 | ||
4297 | #, fuzzy | 3484 | #, fuzzy |
4298 | msgid "This plugin will attempt to open an RTSP connection with the host." | 3485 | msgid "This plugin will attempt to open an RTSP connection with the host." |
4299 | msgstr "Dieses plugin testet Gameserververbindungen zum angegebenen Host." | 3486 | msgstr "Dieses plugin testet Gameserververbindungen zum angegebenen Host." |
4300 | 3487 | ||
4301 | #: plugins/check_real.c:438 plugins/check_smtp.c:830 | 3488 | msgid "Successful connects return STATE_OK, refusals and timeouts return" |
4302 | msgid "Successul connects return STATE_OK, refusals and timeouts return" | ||
4303 | msgstr "" | 3489 | msgstr "" |
4304 | 3490 | ||
4305 | #: plugins/check_real.c:439 | ||
4306 | msgid "" | 3491 | msgid "" |
4307 | "STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful connects," | 3492 | "STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful connects," |
4308 | msgstr "" | 3493 | msgstr "" |
4309 | 3494 | ||
4310 | #: plugins/check_real.c:440 | ||
4311 | msgid "" | 3495 | msgid "" |
4312 | "but incorrect response messages from the host result in STATE_WARNING return" | 3496 | "but incorrect response messages from the host result in STATE_WARNING return" |
4313 | msgstr "" | 3497 | msgstr "" |
4314 | 3498 | ||
4315 | #: plugins/check_real.c:441 | ||
4316 | msgid "values." | 3499 | msgid "values." |
4317 | msgstr "" | 3500 | msgstr "" |
4318 | 3501 | ||
4319 | #: plugins/check_smtp.c:150 plugins/check_swap.c:265 plugins/check_swap.c:271 | ||
4320 | #, c-format | 3502 | #, c-format |
4321 | msgid "malloc() failed!\n" | 3503 | msgid "malloc() failed!\n" |
4322 | msgstr "" | 3504 | msgstr "" |
4323 | 3505 | ||
4324 | #: plugins/check_smtp.c:154 | ||
4325 | #, c-format | 3506 | #, c-format |
4326 | msgid "gethostname() failed!\n" | 3507 | msgid "CRITICAL - Cannot create SSL context.\n" |
4327 | msgstr "" | 3508 | msgstr "" |
4328 | 3509 | ||
4329 | #: plugins/check_smtp.c:189 plugins/check_smtp.c:213 | ||
4330 | #, c-format | 3510 | #, c-format |
4331 | msgid "recv() failed\n" | 3511 | msgid "recv() failed\n" |
4332 | msgstr "" | 3512 | msgstr "" |
4333 | 3513 | ||
4334 | #: plugins/check_smtp.c:200 | ||
4335 | #, fuzzy, c-format | ||
4336 | msgid "Invalid SMTP response received from host: %s\n" | ||
4337 | msgstr "Ungültige HTTP Antwort von Host empfangen\n" | ||
4338 | |||
4339 | #: plugins/check_smtp.c:202 | ||
4340 | #, fuzzy, c-format | ||
4341 | msgid "Invalid SMTP response received from host on port %d: %s\n" | ||
4342 | msgstr "Ungültige HTTP Antwort von Host erhalten auf Port %d\n" | ||
4343 | |||
4344 | #: plugins/check_smtp.c:223 | ||
4345 | #, c-format | 3514 | #, c-format |
4346 | msgid "WARNING - TLS not supported by server\n" | 3515 | msgid "WARNING - TLS not supported by server\n" |
4347 | msgstr "" | 3516 | msgstr "" |
4348 | 3517 | ||
4349 | #: plugins/check_smtp.c:235 | ||
4350 | #, c-format | 3518 | #, c-format |
4351 | msgid "Server does not support STARTTLS\n" | 3519 | msgid "Server does not support STARTTLS\n" |
4352 | msgstr "" | 3520 | msgstr "" |
4353 | 3521 | ||
4354 | #: plugins/check_smtp.c:241 | ||
4355 | #, c-format | ||
4356 | msgid "CRITICAL - Cannot create SSL context.\n" | ||
4357 | msgstr "" | ||
4358 | |||
4359 | #: plugins/check_smtp.c:261 | ||
4360 | msgid "SMTP UNKNOWN - Cannot send EHLO command via TLS." | 3522 | msgid "SMTP UNKNOWN - Cannot send EHLO command via TLS." |
4361 | msgstr "" | 3523 | msgstr "" |
4362 | 3524 | ||
4363 | #: plugins/check_smtp.c:266 | ||
4364 | #, c-format | 3525 | #, c-format |
4365 | msgid "sent %s" | 3526 | msgid "sent %s" |
4366 | msgstr "" | 3527 | msgstr "" |
4367 | 3528 | ||
4368 | #: plugins/check_smtp.c:268 | ||
4369 | msgid "SMTP UNKNOWN - Cannot read EHLO response via TLS." | 3529 | msgid "SMTP UNKNOWN - Cannot read EHLO response via TLS." |
4370 | msgstr "" | 3530 | msgstr "" |
4371 | 3531 | ||
4372 | #: plugins/check_smtp.c:303 plugins/check_snmp.c:806 | 3532 | #, fuzzy, c-format |
3533 | msgid "Invalid SMTP response received from host: %s\n" | ||
3534 | msgstr "Ungültige HTTP Antwort von Host empfangen\n" | ||
3535 | |||
3536 | #, fuzzy, c-format | ||
3537 | msgid "Invalid SMTP response received from host on port %d: %s\n" | ||
3538 | msgstr "Ungültige HTTP Antwort von Host erhalten auf Port %d\n" | ||
3539 | |||
4373 | #, c-format | 3540 | #, c-format |
4374 | msgid "Could Not Compile Regular Expression" | 3541 | msgid "Could Not Compile Regular Expression" |
4375 | msgstr "" | 3542 | msgstr "" |
4376 | 3543 | ||
4377 | #: plugins/check_smtp.c:312 | ||
4378 | #, c-format | 3544 | #, c-format |
4379 | msgid "SMTP %s - Invalid response '%s' to command '%s'\n" | 3545 | msgid "SMTP %s - Invalid response '%s' to command '%s'\n" |
4380 | msgstr "" | 3546 | msgstr "" |
4381 | 3547 | ||
4382 | #: plugins/check_smtp.c:316 plugins/check_snmp.c:511 | ||
4383 | #, c-format | 3548 | #, c-format |
4384 | msgid "Execute Error: %s\n" | 3549 | msgid "Execute Error: %s\n" |
4385 | msgstr "" | 3550 | msgstr "" |
4386 | 3551 | ||
4387 | #: plugins/check_smtp.c:330 | ||
4388 | msgid "no authuser specified, " | 3552 | msgid "no authuser specified, " |
4389 | msgstr "" | 3553 | msgstr "" |
4390 | 3554 | ||
4391 | #: plugins/check_smtp.c:335 | ||
4392 | msgid "no authpass specified, " | 3555 | msgid "no authpass specified, " |
4393 | msgstr "" | 3556 | msgstr "" |
4394 | 3557 | ||
4395 | #: plugins/check_smtp.c:342 plugins/check_smtp.c:363 plugins/check_smtp.c:383 | ||
4396 | #: plugins/check_smtp.c:688 | ||
4397 | #, c-format | 3558 | #, c-format |
4398 | msgid "sent %s\n" | 3559 | msgid "sent %s\n" |
4399 | msgstr "" | 3560 | msgstr "" |
4400 | 3561 | ||
4401 | #: plugins/check_smtp.c:345 | ||
4402 | #, fuzzy | 3562 | #, fuzzy |
4403 | msgid "recv() failed after AUTH LOGIN, " | 3563 | msgid "recv() failed after AUTH LOGIN, " |
4404 | msgstr "Ungültige HTTP Antwort von Host empfangen\n" | 3564 | msgstr "Ungültige HTTP Antwort von Host empfangen\n" |
4405 | 3565 | ||
4406 | #: plugins/check_smtp.c:350 plugins/check_smtp.c:371 plugins/check_smtp.c:391 | ||
4407 | #: plugins/check_smtp.c:699 | ||
4408 | #, fuzzy, c-format | 3566 | #, fuzzy, c-format |
4409 | msgid "received %s\n" | 3567 | msgid "received %s\n" |
4410 | msgstr "Keine Daten empfangen %s\n" | 3568 | msgstr "Keine Daten empfangen %s\n" |
4411 | 3569 | ||
4412 | #: plugins/check_smtp.c:354 | ||
4413 | #, fuzzy | 3570 | #, fuzzy |
4414 | msgid "invalid response received after AUTH LOGIN, " | 3571 | msgid "invalid response received after AUTH LOGIN, " |
4415 | msgstr "Ungültige HTTP Antwort von Host empfangen\n" | 3572 | msgstr "Ungültige HTTP Antwort von Host empfangen\n" |
4416 | 3573 | ||
4417 | #: plugins/check_smtp.c:367 | ||
4418 | msgid "recv() failed after sending authuser, " | 3574 | msgid "recv() failed after sending authuser, " |
4419 | msgstr "" | 3575 | msgstr "" |
4420 | 3576 | ||
4421 | #: plugins/check_smtp.c:375 | ||
4422 | #, fuzzy | 3577 | #, fuzzy |
4423 | msgid "invalid response received after authuser, " | 3578 | msgid "invalid response received after authuser, " |
4424 | msgstr "Ungültige HTTP Antwort von Host empfangen\n" | 3579 | msgstr "Ungültige HTTP Antwort von Host empfangen\n" |
4425 | 3580 | ||
4426 | #: plugins/check_smtp.c:387 | ||
4427 | msgid "recv() failed after sending authpass, " | 3581 | msgid "recv() failed after sending authpass, " |
4428 | msgstr "" | 3582 | msgstr "" |
4429 | 3583 | ||
4430 | #: plugins/check_smtp.c:395 | ||
4431 | #, fuzzy | 3584 | #, fuzzy |
4432 | msgid "invalid response received after authpass, " | 3585 | msgid "invalid response received after authpass, " |
4433 | msgstr "Ungültige HTTP Antwort von Host empfangen\n" | 3586 | msgstr "Ungültige HTTP Antwort von Host empfangen\n" |
4434 | 3587 | ||
4435 | #: plugins/check_smtp.c:402 | ||
4436 | msgid "only authtype LOGIN is supported, " | 3588 | msgid "only authtype LOGIN is supported, " |
4437 | msgstr "" | 3589 | msgstr "" |
4438 | 3590 | ||
4439 | #: plugins/check_smtp.c:426 | ||
4440 | #, fuzzy, c-format | 3591 | #, fuzzy, c-format |
4441 | msgid "SMTP %s - %s%.3f sec. response time%s%s|%s\n" | 3592 | msgid "SMTP %s - %s%.3f sec. response time%s%s|%s\n" |
4442 | msgstr " - %s - %.3f Sekunden Antwortzeit %s%s|%s %s\n" | 3593 | msgstr " - %s - %.3f Sekunden Antwortzeit %s%s|%s %s\n" |
4443 | 3594 | ||
4444 | #: plugins/check_smtp.c:536 plugins/check_smtp.c:548 | ||
4445 | #, c-format | 3595 | #, c-format |
4446 | msgid "Could not realloc() units [%d]\n" | 3596 | msgid "Could not realloc() units [%d]\n" |
4447 | msgstr "" | 3597 | msgstr "" |
4448 | 3598 | ||
4449 | #: plugins/check_smtp.c:556 | ||
4450 | #, fuzzy | 3599 | #, fuzzy |
4451 | msgid "Critical time must be a positive" | 3600 | msgid "Critical time must be a positive" |
4452 | msgstr "Critical time muss ein positiver Integer sein" | 3601 | msgstr "Critical time muss ein positiver Integer sein" |
4453 | 3602 | ||
4454 | #: plugins/check_smtp.c:564 | ||
4455 | #, fuzzy | 3603 | #, fuzzy |
4456 | msgid "Warning time must be a positive" | 3604 | msgid "Warning time must be a positive" |
4457 | msgstr "Warnung time muss ein positiver Integer sein" | 3605 | msgstr "Warnung time muss ein positiver Integer sein" |
4458 | 3606 | ||
4459 | #: plugins/check_smtp.c:611 | ||
4460 | msgid "SSL support not available - install OpenSSL and recompile" | 3607 | msgid "SSL support not available - install OpenSSL and recompile" |
4461 | msgstr "" | 3608 | msgstr "" |
4462 | 3609 | ||
4463 | #: plugins/check_smtp.c:679 plugins/check_smtp.c:684 | 3610 | msgid "Set either -s/--ssl/--tls or -S/--starttls" |
3611 | msgstr "Setze entweder -s/--ssl/--tls oder -S/--starttls" | ||
3612 | |||
4464 | #, c-format | 3613 | #, c-format |
4465 | msgid "Connection closed by server before sending QUIT command\n" | 3614 | msgid "Connection closed by server before sending QUIT command\n" |
4466 | msgstr "" | 3615 | msgstr "" |
4467 | 3616 | ||
4468 | #: plugins/check_smtp.c:694 | ||
4469 | #, fuzzy, c-format | 3617 | #, fuzzy, c-format |
4470 | msgid "recv() failed after QUIT." | 3618 | msgid "recv() failed after QUIT." |
4471 | msgstr "Ungültige HTTP Antwort von Host empfangen\n" | 3619 | msgstr "Ungültige HTTP Antwort von Host empfangen\n" |
4472 | 3620 | ||
4473 | #: plugins/check_smtp.c:696 | ||
4474 | #, c-format | 3621 | #, c-format |
4475 | msgid "Connection reset by peer." | 3622 | msgid "Connection reset by peer." |
4476 | msgstr "" | 3623 | msgstr "" |
4477 | 3624 | ||
4478 | #: plugins/check_smtp.c:784 | ||
4479 | #, fuzzy | 3625 | #, fuzzy |
4480 | msgid "This plugin will attempt to open an SMTP connection with the host." | 3626 | msgid "This plugin will attempt to open an SMTP connection with the host." |
4481 | msgstr "Dieses plugin testet Gameserververbindungen zum angegebenen Host." | 3627 | msgstr "Dieses plugin testet Gameserververbindungen zum angegebenen Host." |
4482 | 3628 | ||
4483 | #: plugins/check_smtp.c:798 | ||
4484 | #, c-format | 3629 | #, c-format |
4485 | msgid " String to expect in first line of server response (default: '%s')\n" | 3630 | msgid " String to expect in first line of server response (default: '%s')\n" |
4486 | msgstr "" | 3631 | msgstr "" |
4487 | 3632 | ||
4488 | #: plugins/check_smtp.c:800 | ||
4489 | msgid "SMTP command (may be used repeatedly)" | 3633 | msgid "SMTP command (may be used repeatedly)" |
4490 | msgstr "" | 3634 | msgstr "" |
4491 | 3635 | ||
4492 | #: plugins/check_smtp.c:802 | ||
4493 | msgid "Expected response to command (may be used repeatedly)" | 3636 | msgid "Expected response to command (may be used repeatedly)" |
4494 | msgstr "" | 3637 | msgstr "" |
4495 | 3638 | ||
4496 | #: plugins/check_smtp.c:804 | ||
4497 | msgid "FROM-address to include in MAIL command, required by Exchange 2000" | 3639 | msgid "FROM-address to include in MAIL command, required by Exchange 2000" |
4498 | msgstr "" | 3640 | msgstr "" |
4499 | 3641 | ||
4500 | #: plugins/check_smtp.c:806 | ||
4501 | msgid "FQDN used for HELO" | 3642 | msgid "FQDN used for HELO" |
4502 | msgstr "" | 3643 | msgstr "" |
4503 | 3644 | ||
4504 | #: plugins/check_smtp.c:809 plugins/check_tcp.c:665 | 3645 | msgid "Use PROXY protocol prefix for the connection." |
3646 | msgstr "Benutze PROXY-Protokoll-Präfix für die Verbindung." | ||
3647 | |||
4505 | msgid "Minimum number of days a certificate has to be valid." | 3648 | msgid "Minimum number of days a certificate has to be valid." |
4506 | msgstr "" | 3649 | msgstr "" |
4507 | 3650 | ||
4508 | #: plugins/check_smtp.c:811 | 3651 | #, fuzzy |
3652 | msgid "Use SSL/TLS for the connection." | ||
3653 | msgstr "Benutze SSL/TLS für die Verbindung." | ||
3654 | |||
3655 | #, c-format | ||
3656 | msgid " Sets default port to %d.\n" | ||
3657 | msgstr " Setze den Default-Port auf %d.\n" | ||
3658 | |||
4509 | msgid "Use STARTTLS for the connection." | 3659 | msgid "Use STARTTLS for the connection." |
4510 | msgstr "" | 3660 | msgstr "Benutze STARTTLS für die Verbindung." |
4511 | 3661 | ||
4512 | #: plugins/check_smtp.c:815 | ||
4513 | msgid "SMTP AUTH type to check (default none, only LOGIN supported)" | 3662 | msgid "SMTP AUTH type to check (default none, only LOGIN supported)" |
4514 | msgstr "" | 3663 | msgstr "" |
4515 | 3664 | ||
4516 | #: plugins/check_smtp.c:817 | ||
4517 | msgid "SMTP AUTH username" | 3665 | msgid "SMTP AUTH username" |
4518 | msgstr "" | 3666 | msgstr "" |
4519 | 3667 | ||
4520 | #: plugins/check_smtp.c:819 | ||
4521 | msgid "SMTP AUTH password" | 3668 | msgid "SMTP AUTH password" |
4522 | msgstr "" | 3669 | msgstr "" |
4523 | 3670 | ||
4524 | #: plugins/check_smtp.c:821 | 3671 | msgid "Send LHLO instead of HELO/EHLO" |
3672 | msgstr "" | ||
3673 | |||
4525 | msgid "Ignore failure when sending QUIT command to server" | 3674 | msgid "Ignore failure when sending QUIT command to server" |
4526 | msgstr "" | 3675 | msgstr "" |
4527 | 3676 | ||
4528 | #: plugins/check_smtp.c:831 | ||
4529 | msgid "STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful" | 3677 | msgid "STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful" |
4530 | msgstr "" | 3678 | msgstr "" |
4531 | 3679 | ||
4532 | #: plugins/check_smtp.c:832 | ||
4533 | msgid "connects, but incorrect response messages from the host result in" | 3680 | msgid "connects, but incorrect response messages from the host result in" |
4534 | msgstr "" | 3681 | msgstr "" |
4535 | 3682 | ||
4536 | #: plugins/check_smtp.c:833 | ||
4537 | msgid "STATE_WARNING return values." | 3683 | msgid "STATE_WARNING return values." |
4538 | msgstr "" | 3684 | msgstr "" |
4539 | 3685 | ||
4540 | #: plugins/check_snmp.c:169 plugins/check_snmp.c:582 | ||
4541 | msgid "Cannot malloc" | 3686 | msgid "Cannot malloc" |
4542 | msgstr "" | 3687 | msgstr "" |
4543 | 3688 | ||
4544 | #: plugins/check_snmp.c:356 | ||
4545 | #, fuzzy, c-format | 3689 | #, fuzzy, c-format |
4546 | msgid "External command error: %s\n" | 3690 | msgid "External command error: %s\n" |
4547 | msgstr "Papierfehler" | 3691 | msgstr "Papierfehler" |
4548 | 3692 | ||
4549 | #: plugins/check_snmp.c:361 | ||
4550 | #, c-format | 3693 | #, c-format |
4551 | msgid "External command error with no output (return code: %d)\n" | 3694 | msgid "External command error with no output (return code: %d)\n" |
4552 | msgstr "" | 3695 | msgstr "" |
4553 | 3696 | ||
4554 | #: plugins/check_snmp.c:464 | ||
4555 | #, fuzzy, c-format | 3697 | #, fuzzy, c-format |
4556 | msgid "No valid data returned (%s)\n" | 3698 | msgid "No valid data returned (%s)\n" |
4557 | msgstr "Keine Daten empfangen %s\n" | 3699 | msgstr "Keine Daten empfangen %s\n" |
4558 | 3700 | ||
4559 | #: plugins/check_snmp.c:475 | ||
4560 | msgid "Time duration between plugin calls is invalid" | 3701 | msgid "Time duration between plugin calls is invalid" |
4561 | msgstr "" | 3702 | msgstr "" |
4562 | 3703 | ||
4563 | #: plugins/check_snmp.c:588 | ||
4564 | msgid "Cannot asprintf()" | 3704 | msgid "Cannot asprintf()" |
4565 | msgstr "" | 3705 | msgstr "" |
4566 | 3706 | ||
4567 | #: plugins/check_snmp.c:594 | ||
4568 | msgid "Cannot realloc()" | 3707 | msgid "Cannot realloc()" |
4569 | msgstr "" | 3708 | msgstr "" |
4570 | 3709 | ||
4571 | #: plugins/check_snmp.c:610 | ||
4572 | msgid "No previous data to calculate rate - assume okay" | 3710 | msgid "No previous data to calculate rate - assume okay" |
4573 | msgstr "" | 3711 | msgstr "" |
4574 | 3712 | ||
4575 | #: plugins/check_snmp.c:751 | ||
4576 | #, fuzzy | 3713 | #, fuzzy |
4577 | msgid "Retries interval must be a positive integer" | 3714 | msgid "Retries interval must be a positive integer" |
4578 | msgstr "Time interval muss ein positiver Integer sein" | 3715 | msgstr "Time interval muss ein positiver Integer sein" |
4579 | 3716 | ||
4580 | #: plugins/check_snmp.c:831 | 3717 | #, fuzzy |
3718 | msgid "Exit status must be a positive integer" | ||
3719 | msgstr "Maxbytes muss ein positiver Integer sein" | ||
3720 | |||
4581 | #, fuzzy, c-format | 3721 | #, fuzzy, c-format |
4582 | msgid "Could not reallocate labels[%d]" | 3722 | msgid "Could not reallocate labels[%d]" |
4583 | msgstr "Konnte addr nicht zuweisen\n" | 3723 | msgstr "Konnte addr nicht zuweisen\n" |
4584 | 3724 | ||
4585 | #: plugins/check_snmp.c:844 | ||
4586 | #, fuzzy | 3725 | #, fuzzy |
4587 | msgid "Could not reallocate labels\n" | 3726 | msgid "Could not reallocate labels\n" |
4588 | msgstr "Konnte·url·nicht·zuweisen\n" | 3727 | msgstr "Konnte·url·nicht·zuweisen\n" |
4589 | 3728 | ||
4590 | #: plugins/check_snmp.c:860 | ||
4591 | #, fuzzy, c-format | 3729 | #, fuzzy, c-format |
4592 | msgid "Could not reallocate units [%d]\n" | 3730 | msgid "Could not reallocate units [%d]\n" |
4593 | msgstr "Konnte·url·nicht·zuweisen\n" | 3731 | msgstr "Konnte·url·nicht·zuweisen\n" |
4594 | 3732 | ||
4595 | #: plugins/check_snmp.c:872 | ||
4596 | msgid "Could not realloc() units\n" | 3733 | msgid "Could not realloc() units\n" |
4597 | msgstr "" | 3734 | msgstr "" |
4598 | 3735 | ||
4599 | #: plugins/check_snmp.c:889 | ||
4600 | #, fuzzy | 3736 | #, fuzzy |
4601 | msgid "Rate multiplier must be a positive integer" | 3737 | msgid "Rate multiplier must be a positive integer" |
4602 | msgstr "Paketgröße muss ein positiver Integer sein" | 3738 | msgstr "Paketgröße muss ein positiver Integer sein" |
4603 | 3739 | ||
4604 | #: plugins/check_snmp.c:947 | ||
4605 | #, fuzzy | 3740 | #, fuzzy |
4606 | msgid "No host specified\n" | 3741 | msgid "No host specified\n" |
4607 | msgstr "" | 3742 | msgstr "" |
4608 | "Kein Hostname angegeben\n" | 3743 | "Kein Hostname angegeben\n" |
4609 | "\n" | 3744 | "\n" |
4610 | 3745 | ||
4611 | #: plugins/check_snmp.c:951 | ||
4612 | #, fuzzy | 3746 | #, fuzzy |
4613 | msgid "No OIDs specified\n" | 3747 | msgid "No OIDs specified\n" |
4614 | msgstr "" | 3748 | msgstr "" |
4615 | "Kein Hostname angegeben\n" | 3749 | "Kein Hostname angegeben\n" |
4616 | "\n" | 3750 | "\n" |
4617 | 3751 | ||
4618 | #: plugins/check_snmp.c:973 | ||
4619 | msgid "Invalid seclevel" | ||
4620 | msgstr "" | ||
4621 | |||
4622 | #: plugins/check_snmp.c:980 plugins/check_snmp.c:983 plugins/check_snmp.c:1001 | ||
4623 | #, c-format | 3752 | #, c-format |
4624 | msgid "Required parameter: %s\n" | 3753 | msgid "Required parameter: %s\n" |
4625 | msgstr "" | 3754 | msgstr "" |
4626 | 3755 | ||
4627 | #: plugins/check_snmp.c:1022 | 3756 | msgid "Invalid seclevel" |
3757 | msgstr "" | ||
3758 | |||
4628 | msgid "Invalid SNMP version" | 3759 | msgid "Invalid SNMP version" |
4629 | msgstr "" | 3760 | msgstr "" |
4630 | 3761 | ||
4631 | #: plugins/check_snmp.c:1039 | ||
4632 | msgid "Unbalanced quotes\n" | 3762 | msgid "Unbalanced quotes\n" |
4633 | msgstr "" | 3763 | msgstr "" |
4634 | 3764 | ||
4635 | #: plugins/check_snmp.c:1088 | 3765 | #, c-format |
3766 | msgid "multiplier set (%.1f), but input is not a number: %s" | ||
3767 | msgstr "" | ||
3768 | |||
4636 | msgid "Check status of remote machines and obtain system information via SNMP" | 3769 | msgid "Check status of remote machines and obtain system information via SNMP" |
4637 | msgstr "" | 3770 | msgstr "" |
4638 | 3771 | ||
4639 | #: plugins/check_snmp.c:1101 | ||
4640 | msgid "Use SNMP GETNEXT instead of SNMP GET" | 3772 | msgid "Use SNMP GETNEXT instead of SNMP GET" |
4641 | msgstr "" | 3773 | msgstr "" |
4642 | 3774 | ||
4643 | #: plugins/check_snmp.c:1103 | ||
4644 | msgid "SNMP protocol version" | 3775 | msgid "SNMP protocol version" |
4645 | msgstr "" | 3776 | msgstr "" |
4646 | 3777 | ||
4647 | #: plugins/check_snmp.c:1105 | 3778 | msgid "SNMPv3 context" |
3779 | msgstr "" | ||
3780 | |||
4648 | msgid "SNMPv3 securityLevel" | 3781 | msgid "SNMPv3 securityLevel" |
4649 | msgstr "" | 3782 | msgstr "" |
4650 | 3783 | ||
4651 | #: plugins/check_snmp.c:1107 | ||
4652 | msgid "SNMPv3 auth proto" | 3784 | msgid "SNMPv3 auth proto" |
4653 | msgstr "" | 3785 | msgstr "" |
4654 | 3786 | ||
4655 | #: plugins/check_snmp.c:1109 | ||
4656 | msgid "SNMPv3 priv proto (default DES)" | 3787 | msgid "SNMPv3 priv proto (default DES)" |
4657 | msgstr "" | 3788 | msgstr "" |
4658 | 3789 | ||
4659 | #: plugins/check_snmp.c:1113 | ||
4660 | msgid "Optional community string for SNMP communication" | 3790 | msgid "Optional community string for SNMP communication" |
4661 | msgstr "" | 3791 | msgstr "" |
4662 | 3792 | ||
4663 | #: plugins/check_snmp.c:1114 | ||
4664 | msgid "default is" | 3793 | msgid "default is" |
4665 | msgstr "" | 3794 | msgstr "" |
4666 | 3795 | ||
4667 | #: plugins/check_snmp.c:1116 | ||
4668 | msgid "SNMPv3 username" | 3796 | msgid "SNMPv3 username" |
4669 | msgstr "" | 3797 | msgstr "" |
4670 | 3798 | ||
4671 | #: plugins/check_snmp.c:1118 | ||
4672 | msgid "SNMPv3 authentication password" | 3799 | msgid "SNMPv3 authentication password" |
4673 | msgstr "" | 3800 | msgstr "" |
4674 | 3801 | ||
4675 | #: plugins/check_snmp.c:1120 | ||
4676 | msgid "SNMPv3 privacy password" | 3802 | msgid "SNMPv3 privacy password" |
4677 | msgstr "" | 3803 | msgstr "" |
4678 | 3804 | ||
4679 | #: plugins/check_snmp.c:1124 | ||
4680 | msgid "Object identifier(s) or SNMP variables whose value you wish to query" | 3805 | msgid "Object identifier(s) or SNMP variables whose value you wish to query" |
4681 | msgstr "" | 3806 | msgstr "" |
4682 | 3807 | ||
4683 | #: plugins/check_snmp.c:1126 | ||
4684 | msgid "" | 3808 | msgid "" |
4685 | "List of MIBS to be loaded (default = none if using numeric OIDs or 'ALL'" | 3809 | "List of MIBS to be loaded (default = none if using numeric OIDs or 'ALL'" |
4686 | msgstr "" | 3810 | msgstr "" |
4687 | 3811 | ||
4688 | #: plugins/check_snmp.c:1127 | ||
4689 | msgid "for symbolic OIDs.)" | 3812 | msgid "for symbolic OIDs.)" |
4690 | msgstr "" | 3813 | msgstr "" |
4691 | 3814 | ||
4692 | #: plugins/check_snmp.c:1129 | ||
4693 | msgid "Delimiter to use when parsing returned data. Default is" | 3815 | msgid "Delimiter to use when parsing returned data. Default is" |
4694 | msgstr "" | 3816 | msgstr "" |
4695 | 3817 | ||
4696 | #: plugins/check_snmp.c:1130 | ||
4697 | msgid "Any data on the right hand side of the delimiter is considered" | 3818 | msgid "Any data on the right hand side of the delimiter is considered" |
4698 | msgstr "" | 3819 | msgstr "" |
4699 | 3820 | ||
4700 | #: plugins/check_snmp.c:1131 | ||
4701 | msgid "to be the data that should be used in the evaluation." | 3821 | msgid "to be the data that should be used in the evaluation." |
4702 | msgstr "" | 3822 | msgstr "" |
4703 | 3823 | ||
4704 | #: plugins/check_snmp.c:1135 | 3824 | msgid "If the check returns a 0 length string or NULL value" |
3825 | msgstr "" | ||
3826 | |||
3827 | msgid "This option allows you to choose what status you want it to exit" | ||
3828 | msgstr "" | ||
3829 | |||
3830 | msgid "Excluding this option renders the default exit of 3(STATE_UNKNOWN)" | ||
3831 | msgstr "" | ||
3832 | |||
3833 | msgid "0 = OK" | ||
3834 | msgstr "" | ||
3835 | |||
3836 | #, fuzzy | ||
3837 | msgid "1 = WARNING" | ||
3838 | msgstr "WARNING" | ||
3839 | |||
3840 | #, fuzzy | ||
3841 | msgid "2 = CRITICAL" | ||
3842 | msgstr "CRITICAL" | ||
3843 | |||
3844 | #, fuzzy | ||
3845 | msgid "3 = UNKNOWN" | ||
3846 | msgstr "UNKNOWN" | ||
3847 | |||
4705 | #, fuzzy | 3848 | #, fuzzy |
4706 | msgid "Warning threshold range(s)" | 3849 | msgid "Warning threshold range(s)" |
4707 | msgstr "Warning threshold Integer sein" | 3850 | msgstr "Warning threshold Integer sein" |
4708 | 3851 | ||
4709 | #: plugins/check_snmp.c:1137 | ||
4710 | #, fuzzy | 3852 | #, fuzzy |
4711 | msgid "Critical threshold range(s)" | 3853 | msgid "Critical threshold range(s)" |
4712 | msgstr "Critical threshold muss ein Integer sein" | 3854 | msgstr "Critical threshold muss ein Integer sein" |
4713 | 3855 | ||
4714 | #: plugins/check_snmp.c:1139 | ||
4715 | msgid "Enable rate calculation. See 'Rate Calculation' below" | 3856 | msgid "Enable rate calculation. See 'Rate Calculation' below" |
4716 | msgstr "" | 3857 | msgstr "" |
4717 | 3858 | ||
4718 | #: plugins/check_snmp.c:1141 | ||
4719 | msgid "" | 3859 | msgid "" |
4720 | "Converts rate per second. For example, set to 60 to convert to per minute" | 3860 | "Converts rate per second. For example, set to 60 to convert to per minute" |
4721 | msgstr "" | 3861 | msgstr "" |
4722 | 3862 | ||
4723 | #: plugins/check_snmp.c:1143 | 3863 | msgid "Add/subtract the specified OFFSET to numeric sensor data" |
4724 | msgid "Add/substract the specified OFFSET to numeric sensor data" | ||
4725 | msgstr "" | 3864 | msgstr "" |
4726 | 3865 | ||
4727 | #: plugins/check_snmp.c:1147 | ||
4728 | msgid "Return OK state (for that OID) if STRING is an exact match" | 3866 | msgid "Return OK state (for that OID) if STRING is an exact match" |
4729 | msgstr "" | 3867 | msgstr "" |
4730 | 3868 | ||
4731 | #: plugins/check_snmp.c:1149 | ||
4732 | msgid "" | 3869 | msgid "" |
4733 | "Return OK state (for that OID) if extended regular expression REGEX matches" | 3870 | "Return OK state (for that OID) if extended regular expression REGEX matches" |
4734 | msgstr "" | 3871 | msgstr "" |
4735 | 3872 | ||
4736 | #: plugins/check_snmp.c:1151 | ||
4737 | msgid "" | 3873 | msgid "" |
4738 | "Return OK state (for that OID) if case-insensitive extended REGEX matches" | 3874 | "Return OK state (for that OID) if case-insensitive extended REGEX matches" |
4739 | msgstr "" | 3875 | msgstr "" |
4740 | 3876 | ||
4741 | #: plugins/check_snmp.c:1153 | ||
4742 | msgid "Invert search result (CRITICAL if found)" | 3877 | msgid "Invert search result (CRITICAL if found)" |
4743 | msgstr "" | 3878 | msgstr "" |
4744 | 3879 | ||
4745 | #: plugins/check_snmp.c:1157 | ||
4746 | msgid "Prefix label for output from plugin" | 3880 | msgid "Prefix label for output from plugin" |
4747 | msgstr "" | 3881 | msgstr "" |
4748 | 3882 | ||
4749 | #: plugins/check_snmp.c:1159 | ||
4750 | msgid "Units label(s) for output data (e.g., 'sec.')." | 3883 | msgid "Units label(s) for output data (e.g., 'sec.')." |
4751 | msgstr "" | 3884 | msgstr "" |
4752 | 3885 | ||
4753 | #: plugins/check_snmp.c:1161 | ||
4754 | msgid "Separates output on multiple OID requests" | 3886 | msgid "Separates output on multiple OID requests" |
4755 | msgstr "" | 3887 | msgstr "" |
4756 | 3888 | ||
4757 | #: plugins/check_snmp.c:1165 | 3889 | msgid "Multiplies current value, 0 < n < 1 works as divider, defaults to 1" |
4758 | msgid "Number of retries to be used in the requests" | 3890 | msgstr "" |
3891 | |||
3892 | msgid "C-style format string for float values (see option -M)" | ||
3893 | msgstr "" | ||
3894 | |||
3895 | msgid "" | ||
3896 | "NOTE the final timeout value is calculated using this formula: " | ||
3897 | "timeout_interval * retries + 5" | ||
3898 | msgstr "" | ||
3899 | |||
3900 | msgid "Number of retries to be used in the requests, default: " | ||
4759 | msgstr "" | 3901 | msgstr "" |
4760 | 3902 | ||
4761 | #: plugins/check_snmp.c:1168 | ||
4762 | msgid "Label performance data with OIDs instead of --label's" | 3903 | msgid "Label performance data with OIDs instead of --label's" |
4763 | msgstr "" | 3904 | msgstr "" |
4764 | 3905 | ||
4765 | #: plugins/check_snmp.c:1173 | 3906 | msgid "Tell snmpget to not print errors encountered when parsing MIB files" |
3907 | msgstr "" | ||
3908 | |||
4766 | msgid "" | 3909 | msgid "" |
4767 | "This plugin uses the 'snmpget' command included with the NET-SNMP package." | 3910 | "This plugin uses the 'snmpget' command included with the NET-SNMP package." |
4768 | msgstr "" | 3911 | msgstr "" |
4769 | 3912 | ||
4770 | #: plugins/check_snmp.c:1174 | ||
4771 | msgid "" | 3913 | msgid "" |
4772 | "if you don't have the package installed, you will need to download it from" | 3914 | "if you don't have the package installed, you will need to download it from" |
4773 | msgstr "" | 3915 | msgstr "" |
4774 | 3916 | ||
4775 | #: plugins/check_snmp.c:1175 | ||
4776 | msgid "http://net-snmp.sourceforge.net before you can use this plugin." | 3917 | msgid "http://net-snmp.sourceforge.net before you can use this plugin." |
4777 | msgstr "" | 3918 | msgstr "" |
4778 | 3919 | ||
4779 | #: plugins/check_snmp.c:1179 | ||
4780 | msgid "" | 3920 | msgid "" |
4781 | "- Multiple OIDs (and labels) may be indicated by a comma or space-delimited " | 3921 | "- Multiple OIDs (and labels) may be indicated by a comma or space-delimited " |
4782 | msgstr "" | 3922 | msgstr "" |
4783 | 3923 | ||
4784 | #: plugins/check_snmp.c:1180 | ||
4785 | msgid "list (lists with internal spaces must be quoted)." | 3924 | msgid "list (lists with internal spaces must be quoted)." |
4786 | msgstr "" | 3925 | msgstr "" |
4787 | 3926 | ||
4788 | #: plugins/check_snmp.c:1184 | ||
4789 | msgid "" | 3927 | msgid "" |
4790 | "- When checking multiple OIDs, separate ranges by commas like '-w " | 3928 | "- When checking multiple OIDs, separate ranges by commas like '-w " |
4791 | "1:10,1:,:20'" | 3929 | "1:10,1:,:20'" |
4792 | msgstr "" | 3930 | msgstr "" |
4793 | 3931 | ||
4794 | #: plugins/check_snmp.c:1185 | ||
4795 | msgid "- Note that only one string and one regex may be checked at present" | 3932 | msgid "- Note that only one string and one regex may be checked at present" |
4796 | msgstr "" | 3933 | msgstr "" |
4797 | 3934 | ||
4798 | #: plugins/check_snmp.c:1186 | ||
4799 | msgid "" | 3935 | msgid "" |
4800 | "- All evaluation methods other than PR, STR, and SUBSTR expect that the value" | 3936 | "- All evaluation methods other than PR, STR, and SUBSTR expect that the value" |
4801 | msgstr "" | 3937 | msgstr "" |
4802 | 3938 | ||
4803 | #: plugins/check_snmp.c:1187 | ||
4804 | msgid "returned from the SNMP query is an unsigned integer." | 3939 | msgid "returned from the SNMP query is an unsigned integer." |
4805 | msgstr "" | 3940 | msgstr "" |
4806 | 3941 | ||
4807 | #: plugins/check_snmp.c:1190 | ||
4808 | msgid "Rate Calculation:" | 3942 | msgid "Rate Calculation:" |
4809 | msgstr "" | 3943 | msgstr "" |
4810 | 3944 | ||
4811 | #: plugins/check_snmp.c:1191 | ||
4812 | msgid "In many places, SNMP returns counters that are only meaningful when" | 3945 | msgid "In many places, SNMP returns counters that are only meaningful when" |
4813 | msgstr "" | 3946 | msgstr "" |
4814 | 3947 | ||
4815 | #: plugins/check_snmp.c:1192 | ||
4816 | msgid "calculating the counter difference since the last check. check_snmp" | 3948 | msgid "calculating the counter difference since the last check. check_snmp" |
4817 | msgstr "" | 3949 | msgstr "" |
4818 | 3950 | ||
4819 | #: plugins/check_snmp.c:1193 | ||
4820 | msgid "saves the last state information in a file so that the rate per second" | 3951 | msgid "saves the last state information in a file so that the rate per second" |
4821 | msgstr "" | 3952 | msgstr "" |
4822 | 3953 | ||
4823 | #: plugins/check_snmp.c:1194 | ||
4824 | msgid "can be calculated. Use the --rate option to save state information." | 3954 | msgid "can be calculated. Use the --rate option to save state information." |
4825 | msgstr "" | 3955 | msgstr "" |
4826 | 3956 | ||
4827 | #: plugins/check_snmp.c:1195 | ||
4828 | msgid "" | 3957 | msgid "" |
4829 | "On the first run, there will be no prior state - this will return with OK." | 3958 | "On the first run, there will be no prior state - this will return with OK." |
4830 | msgstr "" | 3959 | msgstr "" |
4831 | 3960 | ||
4832 | #: plugins/check_snmp.c:1196 | ||
4833 | msgid "The state is uniquely determined by the arguments to the plugin, so" | 3961 | msgid "The state is uniquely determined by the arguments to the plugin, so" |
4834 | msgstr "" | 3962 | msgstr "" |
4835 | 3963 | ||
4836 | #: plugins/check_snmp.c:1197 | ||
4837 | msgid "changing the arguments will create a new state file." | 3964 | msgid "changing the arguments will create a new state file." |
4838 | msgstr "" | 3965 | msgstr "" |
4839 | 3966 | ||
4840 | #: plugins/check_ssh.c:165 | ||
4841 | #, fuzzy | 3967 | #, fuzzy |
4842 | msgid "Port number must be a positive integer" | 3968 | msgid "Port number must be a positive integer" |
4843 | msgstr "Port muss ein positiver Integer sein" | 3969 | msgstr "Port muss ein positiver Integer sein" |
4844 | 3970 | ||
4845 | #: plugins/check_ssh.c:232 | ||
4846 | #, c-format | 3971 | #, c-format |
4847 | msgid "Server answer: %s" | 3972 | msgid "Server answer: %s" |
4848 | msgstr "" | 3973 | msgstr "" |
4849 | 3974 | ||
4850 | #: plugins/check_ssh.c:251 | ||
4851 | #, c-format | 3975 | #, c-format |
4852 | msgid "SSH WARNING - %s (protocol %s) version mismatch, expected '%s'\n" | 3976 | msgid "SSH CRITICAL - %s (protocol %s) version mismatch, expected '%s'\n" |
3977 | msgstr "" | ||
3978 | |||
3979 | #, c-format | ||
3980 | msgid "" | ||
3981 | "SSH CRITICAL - %s (protocol %s) protocol version mismatch, expected '%s'\n" | ||
4853 | msgstr "" | 3982 | msgstr "" |
4854 | 3983 | ||
4855 | #: plugins/check_ssh.c:260 | ||
4856 | #, c-format | 3984 | #, c-format |
4857 | msgid "SSH OK - %s (protocol %s) | %s\n" | 3985 | msgid "SSH OK - %s (protocol %s) | %s\n" |
4858 | msgstr "" | 3986 | msgstr "" |
4859 | 3987 | ||
4860 | #: plugins/check_ssh.c:281 | ||
4861 | msgid "Try to connect to an SSH server at specified server and port" | 3988 | msgid "Try to connect to an SSH server at specified server and port" |
4862 | msgstr "" | 3989 | msgstr "" |
4863 | 3990 | ||
4864 | #: plugins/check_ssh.c:297 | ||
4865 | msgid "" | 3991 | msgid "" |
4866 | "Warn if string doesn't match expected server version (ex: OpenSSH_3.9p1)" | 3992 | "Alert if string doesn't match expected server version (ex: OpenSSH_3.9p1)" |
3993 | msgstr "" | ||
3994 | |||
3995 | msgid "Alert if protocol doesn't match expected protocol version (ex: 2.0)" | ||
4867 | msgstr "" | 3996 | msgstr "" |
4868 | 3997 | ||
4869 | #: plugins/check_swap.c:169 | ||
4870 | #, c-format | 3998 | #, c-format |
4871 | msgid "Command: %s\n" | 3999 | msgid "Command: %s\n" |
4872 | msgstr "" | 4000 | msgstr "" |
4873 | 4001 | ||
4874 | #: plugins/check_swap.c:171 | ||
4875 | #, c-format | 4002 | #, c-format |
4876 | msgid "Format: %s\n" | 4003 | msgid "Format: %s\n" |
4877 | msgstr "" | 4004 | msgstr "" |
4878 | 4005 | ||
4879 | #: plugins/check_swap.c:207 | ||
4880 | #, c-format | 4006 | #, c-format |
4881 | msgid "total=%.0f, used=%.0f, free=%.0f\n" | 4007 | msgid "total=%.0f, used=%.0f, free=%.0f\n" |
4882 | msgstr "" | 4008 | msgstr "" |
4883 | 4009 | ||
4884 | #: plugins/check_swap.c:221 | ||
4885 | #, c-format | 4010 | #, c-format |
4886 | msgid "total=%.0f, free=%.0f\n" | 4011 | msgid "total=%.0f, free=%.0f\n" |
4887 | msgstr "" | 4012 | msgstr "" |
4888 | 4013 | ||
4889 | #: plugins/check_swap.c:253 | ||
4890 | msgid "Error getting swap devices\n" | 4014 | msgid "Error getting swap devices\n" |
4891 | msgstr "" | 4015 | msgstr "" |
4892 | 4016 | ||
4893 | #: plugins/check_swap.c:256 | ||
4894 | msgid "SWAP OK: No swap devices defined\n" | 4017 | msgid "SWAP OK: No swap devices defined\n" |
4895 | msgstr "" | 4018 | msgstr "" |
4896 | 4019 | ||
4897 | #: plugins/check_swap.c:277 plugins/check_swap.c:319 | ||
4898 | msgid "swapctl failed: " | 4020 | msgid "swapctl failed: " |
4899 | msgstr "" | 4021 | msgstr "" |
4900 | 4022 | ||
4901 | #: plugins/check_swap.c:278 plugins/check_swap.c:320 | ||
4902 | msgid "Error in swapctl call\n" | 4023 | msgid "Error in swapctl call\n" |
4903 | msgstr "" | 4024 | msgstr "" |
4904 | 4025 | ||
4905 | #: plugins/check_swap.c:357 | ||
4906 | #, c-format | 4026 | #, c-format |
4907 | msgid "SWAP %s - %d%% free (%d MB out of %d MB) %s|" | 4027 | msgid "SWAP %s - %d%% free (%dMB out of %dMB) %s|" |
4908 | msgstr "" | 4028 | msgstr "" |
4909 | 4029 | ||
4910 | #: plugins/check_swap.c:435 | 4030 | #, fuzzy |
4911 | msgid "Warning threshold must be integer or percentage!" | 4031 | msgid "Warning threshold percentage must be <= 100!" |
4032 | msgstr "Warning threshold Integer sein" | ||
4033 | |||
4034 | #, fuzzy | ||
4035 | msgid "Warning threshold be positive integer or percentage!" | ||
4912 | msgstr "Warning threshold muss ein Integer oder ein Prozentwert sein" | 4036 | msgstr "Warning threshold muss ein Integer oder ein Prozentwert sein" |
4913 | 4037 | ||
4914 | #: plugins/check_swap.c:453 | 4038 | #, fuzzy |
4915 | msgid "Critical threshold must be integer or percentage!" | 4039 | msgid "Critical threshold percentage must be <= 100!" |
4916 | msgstr "Critical threshold muss ein Integer oder ein Prozentwert sein!" | 4040 | msgstr "Critical threshold muss ein Integer sein" |
4917 | 4041 | ||
4918 | #: plugins/check_swap.c:507 | ||
4919 | #, fuzzy | 4042 | #, fuzzy |
4920 | msgid "Warning percentage should be more than critical percentage" | 4043 | msgid "Critical threshold be positive integer or percentage!" |
4921 | msgstr "Warning threshold muss ein Integer oder ein Prozentwert sein" | 4044 | msgstr "Critical threshold muss ein Integer oder ein Prozentwert sein!" |
4922 | 4045 | ||
4923 | #: plugins/check_swap.c:511 | 4046 | msgid "" |
4924 | msgid "Warning free space should be more than critical free space" | 4047 | "no-swap result must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) " |
4048 | "or integer (0-3)." | ||
4925 | msgstr "" | 4049 | msgstr "" |
4926 | 4050 | ||
4927 | #: plugins/check_swap.c:525 | 4051 | #, fuzzy |
4052 | msgid "Warning should be more than critical" | ||
4053 | msgstr "Warning threshold muss ein Integer oder ein Prozentwert sein" | ||
4054 | |||
4928 | msgid "Check swap space on local machine." | 4055 | msgid "Check swap space on local machine." |
4929 | msgstr "" | 4056 | msgstr "" |
4930 | 4057 | ||
4931 | #: plugins/check_swap.c:535 | ||
4932 | msgid "" | 4058 | msgid "" |
4933 | "Exit with WARNING status if less than INTEGER bytes of swap space are free" | 4059 | "Exit with WARNING status if less than INTEGER bytes of swap space are free" |
4934 | msgstr "" | 4060 | msgstr "" |
4935 | 4061 | ||
4936 | #: plugins/check_swap.c:537 | ||
4937 | msgid "Exit with WARNING status if less than PERCENT of swap space is free" | 4062 | msgid "Exit with WARNING status if less than PERCENT of swap space is free" |
4938 | msgstr "" | 4063 | msgstr "" |
4939 | 4064 | ||
4940 | #: plugins/check_swap.c:539 | ||
4941 | msgid "" | 4065 | msgid "" |
4942 | "Exit with CRITICAL status if less than INTEGER bytes of swap space are free" | 4066 | "Exit with CRITICAL status if less than INTEGER bytes of swap space are free" |
4943 | msgstr "" | 4067 | msgstr "" |
4944 | 4068 | ||
4945 | #: plugins/check_swap.c:541 | 4069 | msgid "Exit with CRITICAL status if less than PERCENT of swap space is free" |
4946 | msgid "Exit with CRITCAL status if less than PERCENT of swap space is free" | ||
4947 | msgstr "" | 4070 | msgstr "" |
4948 | 4071 | ||
4949 | #: plugins/check_swap.c:543 | ||
4950 | msgid "Conduct comparisons for all swap partitions, one by one" | 4072 | msgid "Conduct comparisons for all swap partitions, one by one" |
4951 | msgstr "" | 4073 | msgstr "" |
4952 | 4074 | ||
4953 | #: plugins/check_swap.c:548 | 4075 | msgid "" |
4076 | "Resulting state when there is no swap regardless of thresholds. Default:" | ||
4077 | msgstr "" | ||
4078 | |||
4079 | msgid "" | ||
4080 | "Both INTEGER and PERCENT thresholds can be specified, they are all checked." | ||
4081 | msgstr "" | ||
4082 | |||
4954 | msgid "On AIX, if -a is specified, uses lsps -a, otherwise uses lsps -s." | 4083 | msgid "On AIX, if -a is specified, uses lsps -a, otherwise uses lsps -s." |
4955 | msgstr "" | 4084 | msgstr "" |
4956 | 4085 | ||
4957 | #: plugins/check_tcp.c:206 | ||
4958 | msgid "CRITICAL - Generic check_tcp called with unknown service\n" | 4086 | msgid "CRITICAL - Generic check_tcp called with unknown service\n" |
4959 | msgstr "" | 4087 | msgstr "" |
4960 | 4088 | ||
4961 | #: plugins/check_tcp.c:230 | ||
4962 | msgid "With UDP checks, a send/expect string must be specified." | 4089 | msgid "With UDP checks, a send/expect string must be specified." |
4963 | msgstr "" | 4090 | msgstr "" |
4964 | 4091 | ||
4965 | #: plugins/check_tcp.c:431 | ||
4966 | msgid "No arguments found" | 4092 | msgid "No arguments found" |
4967 | msgstr "" | 4093 | msgstr "" |
4968 | 4094 | ||
4969 | #: plugins/check_tcp.c:534 | ||
4970 | msgid "Maxbytes must be a positive integer" | 4095 | msgid "Maxbytes must be a positive integer" |
4971 | msgstr "Maxbytes muss ein positiver Integer sein" | 4096 | msgstr "Maxbytes muss ein positiver Integer sein" |
4972 | 4097 | ||
4973 | #: plugins/check_tcp.c:552 | ||
4974 | msgid "Refuse must be one of ok, warn, crit" | 4098 | msgid "Refuse must be one of ok, warn, crit" |
4975 | msgstr "" | 4099 | msgstr "" |
4976 | 4100 | ||
4977 | #: plugins/check_tcp.c:562 | ||
4978 | msgid "Mismatch must be one of ok, warn, crit" | 4101 | msgid "Mismatch must be one of ok, warn, crit" |
4979 | msgstr "" | 4102 | msgstr "" |
4980 | 4103 | ||
4981 | #: plugins/check_tcp.c:568 | ||
4982 | msgid "Delay must be a positive integer" | 4104 | msgid "Delay must be a positive integer" |
4983 | msgstr "Delay muss ein positiver Integer sein" | 4105 | msgstr "Delay muss ein positiver Integer sein" |
4984 | 4106 | ||
4985 | #: plugins/check_tcp.c:613 | ||
4986 | #, fuzzy | 4107 | #, fuzzy |
4987 | msgid "You must provide a server address" | 4108 | msgid "You must provide a server address" |
4988 | msgstr "%s: Hostname muss angegeben werden\n" | 4109 | msgstr "%s: Hostname muss angegeben werden\n" |
4989 | 4110 | ||
4990 | #: plugins/check_tcp.c:615 | ||
4991 | #, fuzzy | 4111 | #, fuzzy |
4992 | msgid "Invalid hostname, address or socket" | 4112 | msgid "Invalid hostname, address or socket" |
4993 | msgstr "Ungültige(r) Hostname/Adresse" | 4113 | msgstr "Ungültige(r) Hostname/Adresse" |
4994 | 4114 | ||
4995 | #: plugins/check_tcp.c:629 | ||
4996 | #, fuzzy, c-format | 4115 | #, fuzzy, c-format |
4997 | msgid "" | 4116 | msgid "" |
4998 | "This plugin tests %s connections with the specified host (or unix socket).\n" | 4117 | "This plugin tests %s connections with the specified host (or unix socket).\n" |
4999 | "\n" | 4118 | "\n" |
5000 | msgstr "Dieses plugin testet Gameserververbindungen zum angegebenen Host." | 4119 | msgstr "Dieses plugin testet Gameserververbindungen zum angegebenen Host." |
5001 | 4120 | ||
5002 | #: plugins/check_tcp.c:642 | ||
5003 | msgid "" | 4121 | msgid "" |
5004 | "Can use \\n, \\r, \\t or \\ in send or quit string. Must come before send or " | 4122 | "Can use \\n, \\r, \\t or \\\\ in send or quit string. Must come before send " |
5005 | "quit option" | 4123 | "or quit option" |
5006 | msgstr "" | 4124 | msgstr "" |
5007 | 4125 | ||
5008 | #: plugins/check_tcp.c:643 | ||
5009 | msgid "Default: nothing added to send, \\r\\n added to end of quit" | 4126 | msgid "Default: nothing added to send, \\r\\n added to end of quit" |
5010 | msgstr "" | 4127 | msgstr "" |
5011 | 4128 | ||
5012 | #: plugins/check_tcp.c:645 | ||
5013 | msgid "String to send to the server" | 4129 | msgid "String to send to the server" |
5014 | msgstr "" | 4130 | msgstr "" |
5015 | 4131 | ||
5016 | #: plugins/check_tcp.c:647 | ||
5017 | msgid "String to expect in server response" | 4132 | msgid "String to expect in server response" |
5018 | msgstr "" | 4133 | msgstr "" |
5019 | 4134 | ||
5020 | #: plugins/check_tcp.c:647 | ||
5021 | msgid "(may be repeated)" | 4135 | msgid "(may be repeated)" |
5022 | msgstr "" | 4136 | msgstr "" |
5023 | 4137 | ||
5024 | #: plugins/check_tcp.c:649 | ||
5025 | msgid "All expect strings need to occur in server response. Default is any" | 4138 | msgid "All expect strings need to occur in server response. Default is any" |
5026 | msgstr "" | 4139 | msgstr "" |
5027 | 4140 | ||
5028 | #: plugins/check_tcp.c:651 | ||
5029 | msgid "String to send server to initiate a clean close of the connection" | 4141 | msgid "String to send server to initiate a clean close of the connection" |
5030 | msgstr "" | 4142 | msgstr "" |
5031 | 4143 | ||
5032 | #: plugins/check_tcp.c:653 | ||
5033 | msgid "Accept TCP refusals with states ok, warn, crit (default: crit)" | 4144 | msgid "Accept TCP refusals with states ok, warn, crit (default: crit)" |
5034 | msgstr "" | 4145 | msgstr "" |
5035 | 4146 | ||
5036 | #: plugins/check_tcp.c:655 | ||
5037 | msgid "" | 4147 | msgid "" |
5038 | "Accept expected string mismatches with states ok, warn, crit (default: warn)" | 4148 | "Accept expected string mismatches with states ok, warn, crit (default: warn)" |
5039 | msgstr "" | 4149 | msgstr "" |
5040 | 4150 | ||
5041 | #: plugins/check_tcp.c:657 | ||
5042 | #, fuzzy | 4151 | #, fuzzy |
5043 | msgid "Hide output from TCP socket" | 4152 | msgid "Hide output from TCP socket" |
5044 | msgstr "Konnte TCP socket nicht öffnen\n" | 4153 | msgstr "Konnte TCP socket nicht öffnen\n" |
5045 | 4154 | ||
5046 | #: plugins/check_tcp.c:659 | ||
5047 | msgid "Close connection once more than this number of bytes are received" | 4155 | msgid "Close connection once more than this number of bytes are received" |
5048 | msgstr "" | 4156 | msgstr "" |
5049 | 4157 | ||
5050 | #: plugins/check_tcp.c:661 | ||
5051 | msgid "Seconds to wait between sending string and polling for response" | 4158 | msgid "Seconds to wait between sending string and polling for response" |
5052 | msgstr "" | 4159 | msgstr "" |
5053 | 4160 | ||
5054 | #: plugins/check_tcp.c:666 | ||
5055 | msgid "1st is #days for warning, 2nd is critical (if not specified - 0)." | 4161 | msgid "1st is #days for warning, 2nd is critical (if not specified - 0)." |
5056 | msgstr "" | 4162 | msgstr "" |
5057 | 4163 | ||
5058 | #: plugins/check_tcp.c:668 | ||
5059 | msgid "Use SSL for the connection." | 4164 | msgid "Use SSL for the connection." |
5060 | msgstr "" | 4165 | msgstr "" |
5061 | 4166 | ||
5062 | #: plugins/check_time.c:102 | 4167 | msgid "SSL server_name" |
4168 | msgstr "" | ||
4169 | |||
5063 | #, c-format | 4170 | #, c-format |
5064 | msgid "TIME UNKNOWN - could not connect to server %s, port %d\n" | 4171 | msgid "TIME UNKNOWN - could not connect to server %s, port %d\n" |
5065 | msgstr "" | 4172 | msgstr "" |
5066 | 4173 | ||
5067 | #: plugins/check_time.c:115 | ||
5068 | #, c-format | 4174 | #, c-format |
5069 | msgid "TIME UNKNOWN - could not send UDP request to server %s, port %d\n" | 4175 | msgid "TIME UNKNOWN - could not send UDP request to server %s, port %d\n" |
5070 | msgstr "" | 4176 | msgstr "" |
5071 | 4177 | ||
5072 | #: plugins/check_time.c:139 | ||
5073 | #, c-format | 4178 | #, c-format |
5074 | msgid "TIME UNKNOWN - no data received from server %s, port %d\n" | 4179 | msgid "TIME UNKNOWN - no data received from server %s, port %d\n" |
5075 | msgstr "" | 4180 | msgstr "" |
5076 | 4181 | ||
5077 | #: plugins/check_time.c:152 | ||
5078 | #, c-format | 4182 | #, c-format |
5079 | msgid "TIME %s - %d second response time|%s\n" | 4183 | msgid "TIME %s - %d second response time|%s\n" |
5080 | msgstr "" | 4184 | msgstr "" |
5081 | 4185 | ||
5082 | #: plugins/check_time.c:170 | ||
5083 | #, c-format | 4186 | #, c-format |
5084 | msgid "TIME %s - %lu second time difference|%s %s\n" | 4187 | msgid "TIME %s - %lu second time difference|%s %s\n" |
5085 | msgstr "" | 4188 | msgstr "" |
5086 | 4189 | ||
5087 | #: plugins/check_time.c:254 | ||
5088 | msgid "Warning thresholds must be a positive integer" | 4190 | msgid "Warning thresholds must be a positive integer" |
5089 | msgstr "Warning thresholds muss ein positiver Integer sein" | 4191 | msgstr "Warning thresholds muss ein positiver Integer sein" |
5090 | 4192 | ||
5091 | #: plugins/check_time.c:273 | ||
5092 | msgid "Critical thresholds must be a positive integer" | 4193 | msgid "Critical thresholds must be a positive integer" |
5093 | msgstr "Critical thresholds muss ein positiver Integer sein" | 4194 | msgstr "Critical thresholds muss ein positiver Integer sein" |
5094 | 4195 | ||
5095 | #: plugins/check_time.c:339 | ||
5096 | #, fuzzy | 4196 | #, fuzzy |
5097 | msgid "This plugin will check the time on the specified host." | 4197 | msgid "This plugin will check the time on the specified host." |
5098 | msgstr "" | 4198 | msgstr "" |
5099 | "Testet den DNS Dienst auf dem angegebenen Host mit dig\n" | 4199 | "Testet den DNS Dienst auf dem angegebenen Host mit dig\n" |
5100 | "\n" | 4200 | "\n" |
5101 | 4201 | ||
5102 | #: plugins/check_time.c:351 | ||
5103 | msgid "Use UDP to connect, not TCP" | 4202 | msgid "Use UDP to connect, not TCP" |
5104 | msgstr "" | 4203 | msgstr "" |
5105 | 4204 | ||
5106 | #: plugins/check_time.c:353 | ||
5107 | msgid "Time difference (sec.) necessary to result in a warning status" | 4205 | msgid "Time difference (sec.) necessary to result in a warning status" |
5108 | msgstr "" | 4206 | msgstr "" |
5109 | 4207 | ||
5110 | #: plugins/check_time.c:355 | ||
5111 | msgid "Time difference (sec.) necessary to result in a critical status" | 4208 | msgid "Time difference (sec.) necessary to result in a critical status" |
5112 | msgstr "" | 4209 | msgstr "" |
5113 | 4210 | ||
5114 | #: plugins/check_time.c:357 | ||
5115 | msgid "Response time (sec.) necessary to result in warning status" | 4211 | msgid "Response time (sec.) necessary to result in warning status" |
5116 | msgstr "" | 4212 | msgstr "" |
5117 | 4213 | ||
5118 | #: plugins/check_time.c:359 | ||
5119 | msgid "Response time (sec.) necessary to result in critical status" | 4214 | msgid "Response time (sec.) necessary to result in critical status" |
5120 | msgstr "" | 4215 | msgstr "" |
5121 | 4216 | ||
5122 | #: plugins/check_ups.c:144 | ||
5123 | msgid "On Battery, Low Battery" | 4217 | msgid "On Battery, Low Battery" |
5124 | msgstr "" | 4218 | msgstr "" |
5125 | 4219 | ||
5126 | #: plugins/check_ups.c:149 | ||
5127 | msgid "Online" | 4220 | msgid "Online" |
5128 | msgstr "" | 4221 | msgstr "" |
5129 | 4222 | ||
5130 | #: plugins/check_ups.c:152 | ||
5131 | msgid "On Battery" | 4223 | msgid "On Battery" |
5132 | msgstr "" | 4224 | msgstr "" |
5133 | 4225 | ||
5134 | #: plugins/check_ups.c:156 | ||
5135 | msgid ", Low Battery" | 4226 | msgid ", Low Battery" |
5136 | msgstr "" | 4227 | msgstr "" |
5137 | 4228 | ||
5138 | #: plugins/check_ups.c:160 | ||
5139 | msgid ", Calibrating" | 4229 | msgid ", Calibrating" |
5140 | msgstr "" | 4230 | msgstr "" |
5141 | 4231 | ||
5142 | #: plugins/check_ups.c:163 | ||
5143 | msgid ", Replace Battery" | 4232 | msgid ", Replace Battery" |
5144 | msgstr "" | 4233 | msgstr "" |
5145 | 4234 | ||
5146 | #: plugins/check_ups.c:167 | ||
5147 | msgid ", On Bypass" | 4235 | msgid ", On Bypass" |
5148 | msgstr "" | 4236 | msgstr "" |
5149 | 4237 | ||
5150 | #: plugins/check_ups.c:170 | ||
5151 | msgid ", Overload" | 4238 | msgid ", Overload" |
5152 | msgstr "" | 4239 | msgstr "" |
5153 | 4240 | ||
5154 | #: plugins/check_ups.c:173 | ||
5155 | msgid ", Trimming" | 4241 | msgid ", Trimming" |
5156 | msgstr "" | 4242 | msgstr "" |
5157 | 4243 | ||
5158 | #: plugins/check_ups.c:176 | ||
5159 | msgid ", Boosting" | 4244 | msgid ", Boosting" |
5160 | msgstr "" | 4245 | msgstr "" |
5161 | 4246 | ||
5162 | #: plugins/check_ups.c:179 | ||
5163 | msgid ", Charging" | 4247 | msgid ", Charging" |
5164 | msgstr "" | 4248 | msgstr "" |
5165 | 4249 | ||
5166 | #: plugins/check_ups.c:182 | ||
5167 | msgid ", Discharging" | 4250 | msgid ", Discharging" |
5168 | msgstr "" | 4251 | msgstr "" |
5169 | 4252 | ||
5170 | #: plugins/check_ups.c:185 | ||
5171 | msgid ", Unknown" | 4253 | msgid ", Unknown" |
5172 | msgstr "" | 4254 | msgstr "" |
5173 | 4255 | ||
5174 | #: plugins/check_ups.c:324 | ||
5175 | #, fuzzy | 4256 | #, fuzzy |
5176 | msgid "UPS does not support any available options\n" | 4257 | msgid "UPS does not support any available options\n" |
5177 | msgstr "IPv6 Unterstützung nicht vorhanden" | 4258 | msgstr "IPv6 Unterstützung nicht vorhanden" |
5178 | 4259 | ||
5179 | #: plugins/check_ups.c:348 plugins/check_ups.c:411 | ||
5180 | #, fuzzy | 4260 | #, fuzzy |
5181 | msgid "Invalid response received from host" | 4261 | msgid "Invalid response received from host" |
5182 | msgstr "Ungültige HTTP Antwort von Host empfangen\n" | 4262 | msgstr "Ungültige HTTP Antwort von Host empfangen\n" |
4263 | |||
4264 | msgid "UPS name to long for buffer" | ||
4265 | msgstr "" | ||
5183 | 4266 | ||
5184 | #: plugins/check_ups.c:420 | ||
5185 | #, fuzzy, c-format | 4267 | #, fuzzy, c-format |
5186 | msgid "CRITICAL - no such UPS '%s' on that host\n" | 4268 | msgid "CRITICAL - no such UPS '%s' on that host\n" |
5187 | msgstr "%s [%s nicht gefunden]" | 4269 | msgstr "%s [%s nicht gefunden]" |
5188 | 4270 | ||
5189 | #: plugins/check_ups.c:430 | ||
5190 | #, fuzzy | 4271 | #, fuzzy |
5191 | msgid "CRITICAL - UPS data is stale" | 4272 | msgid "CRITICAL - UPS data is stale" |
5192 | msgstr "CRITICAL - Serverdatum \"%100s\" konnte nicht verarbeitet werden" | 4273 | msgstr "CRITICAL - Serverdatum \"%100s\" konnte nicht verarbeitet werden" |
5193 | 4274 | ||
5194 | #: plugins/check_ups.c:435 | ||
5195 | #, fuzzy, c-format | 4275 | #, fuzzy, c-format |
5196 | msgid "Unknown error: %s\n" | 4276 | msgid "Unknown error: %s\n" |
5197 | msgstr "Papierfehler" | 4277 | msgstr "Papierfehler" |
5198 | 4278 | ||
5199 | #: plugins/check_ups.c:442 | ||
5200 | msgid "Error: unable to parse variable" | 4279 | msgid "Error: unable to parse variable" |
5201 | msgstr "" | 4280 | msgstr "" |
5202 | 4281 | ||
5203 | #: plugins/check_ups.c:549 | ||
5204 | msgid "Unrecognized UPS variable" | 4282 | msgid "Unrecognized UPS variable" |
5205 | msgstr "" | 4283 | msgstr "" |
5206 | 4284 | ||
5207 | #: plugins/check_ups.c:587 | ||
5208 | msgid "Error : no UPS indicated" | 4285 | msgid "Error : no UPS indicated" |
5209 | msgstr "" | 4286 | msgstr "" |
5210 | 4287 | ||
5211 | #: plugins/check_ups.c:607 | ||
5212 | #, fuzzy | 4288 | #, fuzzy |
5213 | msgid "" | 4289 | msgid "" |
5214 | "This plugin tests the UPS service on the specified host. Network UPS Tools" | 4290 | "This plugin tests the UPS service on the specified host. Network UPS Tools" |
@@ -5216,479 +4292,409 @@ msgstr "" | |||
5216 | "Testet den DNS Dienst auf dem angegebenen Host mit dig\n" | 4292 | "Testet den DNS Dienst auf dem angegebenen Host mit dig\n" |
5217 | "\n" | 4293 | "\n" |
5218 | 4294 | ||
5219 | #: plugins/check_ups.c:608 | ||
5220 | msgid "from www.networkupstools.org must be running for this plugin to work." | 4295 | msgid "from www.networkupstools.org must be running for this plugin to work." |
5221 | msgstr "" | 4296 | msgstr "" |
5222 | 4297 | ||
5223 | #: plugins/check_ups.c:620 | ||
5224 | msgid "Name of UPS" | 4298 | msgid "Name of UPS" |
5225 | msgstr "" | 4299 | msgstr "" |
5226 | 4300 | ||
5227 | #: plugins/check_ups.c:622 | ||
5228 | msgid "Output of temperatures in Celsius" | 4301 | msgid "Output of temperatures in Celsius" |
5229 | msgstr "" | 4302 | msgstr "" |
5230 | 4303 | ||
5231 | #: plugins/check_ups.c:624 | ||
5232 | msgid "Valid values for STRING are" | 4304 | msgid "Valid values for STRING are" |
5233 | msgstr "" | 4305 | msgstr "" |
5234 | 4306 | ||
5235 | #: plugins/check_ups.c:635 | ||
5236 | msgid "" | 4307 | msgid "" |
5237 | "This plugin attempts to determine the status of a UPS (Uninterruptible Power" | 4308 | "This plugin attempts to determine the status of a UPS (Uninterruptible Power" |
5238 | msgstr "" | 4309 | msgstr "" |
5239 | 4310 | ||
5240 | #: plugins/check_ups.c:636 | ||
5241 | msgid "" | 4311 | msgid "" |
5242 | "Supply) on a local or remote host. If the UPS is online or calibrating, the" | 4312 | "Supply) on a local or remote host. If the UPS is online or calibrating, the" |
5243 | msgstr "" | 4313 | msgstr "" |
5244 | 4314 | ||
5245 | #: plugins/check_ups.c:637 | ||
5246 | msgid "" | 4315 | msgid "" |
5247 | "plugin will return an OK state. If the battery is on it will return a WARNING" | 4316 | "plugin will return an OK state. If the battery is on it will return a WARNING" |
5248 | msgstr "" | 4317 | msgstr "" |
5249 | 4318 | ||
5250 | #: plugins/check_ups.c:638 | ||
5251 | msgid "" | 4319 | msgid "" |
5252 | "state. If the UPS is off or has a low battery the plugin will return a " | 4320 | "state. If the UPS is off or has a low battery the plugin will return a " |
5253 | "CRITICAL" | 4321 | "CRITICAL" |
5254 | msgstr "" | 4322 | msgstr "" |
5255 | 4323 | ||
5256 | #: plugins/check_ups.c:643 | ||
5257 | msgid "" | 4324 | msgid "" |
5258 | "You may also specify a variable to check (such as temperature, utility " | 4325 | "You may also specify a variable to check (such as temperature, utility " |
5259 | "voltage," | 4326 | "voltage," |
5260 | msgstr "" | 4327 | msgstr "" |
5261 | 4328 | ||
5262 | #: plugins/check_ups.c:644 | ||
5263 | msgid "" | 4329 | msgid "" |
5264 | "battery load, etc.) as well as warning and critical thresholds for the value" | 4330 | "battery load, etc.) as well as warning and critical thresholds for the value" |
5265 | msgstr "" | 4331 | msgstr "" |
5266 | 4332 | ||
5267 | #: plugins/check_ups.c:645 | ||
5268 | msgid "" | 4333 | msgid "" |
5269 | "of that variable. If the remote host has multiple UPS that are being " | 4334 | "of that variable. If the remote host has multiple UPS that are being " |
5270 | "monitored" | 4335 | "monitored" |
5271 | msgstr "" | 4336 | msgstr "" |
5272 | 4337 | ||
5273 | #: plugins/check_ups.c:646 | ||
5274 | msgid "you will have to use the --ups option to specify which UPS to check." | 4338 | msgid "you will have to use the --ups option to specify which UPS to check." |
5275 | msgstr "" | 4339 | msgstr "" |
5276 | 4340 | ||
5277 | #: plugins/check_ups.c:648 | ||
5278 | msgid "" | 4341 | msgid "" |
5279 | "This plugin requires that the UPSD daemon distributed with Russell Kroll's" | 4342 | "This plugin requires that the UPSD daemon distributed with Russell Kroll's" |
5280 | msgstr "" | 4343 | msgstr "" |
5281 | 4344 | ||
5282 | #: plugins/check_ups.c:649 | ||
5283 | msgid "" | 4345 | msgid "" |
5284 | "Network UPS Tools be installed on the remote host. If you do not have the" | 4346 | "Network UPS Tools be installed on the remote host. If you do not have the" |
5285 | msgstr "" | 4347 | msgstr "" |
5286 | 4348 | ||
5287 | #: plugins/check_ups.c:650 | ||
5288 | msgid "package installed on your system, you can download it from" | 4349 | msgid "package installed on your system, you can download it from" |
5289 | msgstr "" | 4350 | msgstr "" |
5290 | 4351 | ||
5291 | #: plugins/check_ups.c:651 | ||
5292 | msgid "http://www.networkupstools.org" | 4352 | msgid "http://www.networkupstools.org" |
5293 | msgstr "" | 4353 | msgstr "" |
5294 | 4354 | ||
5295 | #: plugins/check_users.c:110 | 4355 | #, fuzzy, c-format |
4356 | msgid "Could not enumerate RD sessions: %d\n" | ||
4357 | msgstr "Konnte·url·nicht·zuweisen\n" | ||
4358 | |||
5296 | #, c-format | 4359 | #, c-format |
5297 | msgid "# users=%d" | 4360 | msgid "# users=%d" |
5298 | msgstr "" | 4361 | msgstr "" |
5299 | 4362 | ||
5300 | #: plugins/check_users.c:133 | ||
5301 | msgid "Unable to read output" | 4363 | msgid "Unable to read output" |
5302 | msgstr "" | 4364 | msgstr "" |
5303 | 4365 | ||
5304 | #: plugins/check_users.c:140 | ||
5305 | #, c-format | 4366 | #, c-format |
5306 | msgid "USERS %s - %d users currently logged in |%s\n" | 4367 | msgid "USERS %s - %d users currently logged in |%s\n" |
5307 | msgstr "" | 4368 | msgstr "" |
5308 | 4369 | ||
5309 | #: plugins/check_users.c:219 | ||
5310 | #, fuzzy | 4370 | #, fuzzy |
5311 | msgid "This plugin checks the number of users currently logged in on the local" | 4371 | msgid "This plugin checks the number of users currently logged in on the local" |
5312 | msgstr "" | 4372 | msgstr "" |
5313 | "Dieses Plugin prüft den freien Speicher auf einem gemounteten Filesystem\n" | 4373 | "Dieses Plugin prüft den freien Speicher auf einem gemounteten Filesystem\n" |
5314 | "und erzeugt einen Alarm wenn einer der angegebenen Schwellwerte " | 4374 | "und erzeugt einen Alarm wenn einer der angegebenen Schwellwerte " |
5315 | "unterschritten wird.\n" | 4375 | "unterschritten wird.\n" |
5316 | "\n" | 4376 | "\n" |
5317 | 4377 | ||
5318 | #: plugins/check_users.c:220 | ||
5319 | msgid "" | 4378 | msgid "" |
5320 | "system and generates an error if the number exceeds the thresholds specified." | 4379 | "system and generates an error if the number exceeds the thresholds specified." |
5321 | msgstr "" | 4380 | msgstr "" |
5322 | 4381 | ||
5323 | #: plugins/check_users.c:230 | ||
5324 | msgid "Set WARNING status if more than INTEGER users are logged in" | 4382 | msgid "Set WARNING status if more than INTEGER users are logged in" |
5325 | msgstr "" | 4383 | msgstr "" |
5326 | 4384 | ||
5327 | #: plugins/check_users.c:232 | ||
5328 | msgid "Set CRITICAL status if more than INTEGER users are logged in" | 4385 | msgid "Set CRITICAL status if more than INTEGER users are logged in" |
5329 | msgstr "" | 4386 | msgstr "" |
5330 | 4387 | ||
5331 | #: plugins/check_ide_smart.c:256 | 4388 | msgid "" |
4389 | "DEPRECATION WARNING: the -q switch (quiet output) is no longer \"quiet\"." | ||
4390 | msgstr "" | ||
4391 | |||
4392 | msgid "Nagios-compatible output is now always returned." | ||
4393 | msgstr "" | ||
4394 | |||
4395 | msgid "SMART commands are broken and have been disabled (See Notes in --help)." | ||
4396 | msgstr "" | ||
4397 | |||
4398 | msgid "" | ||
4399 | "DEPRECATION WARNING: the -n switch (Nagios-compatible output) is now the" | ||
4400 | msgstr "" | ||
4401 | |||
4402 | msgid "default and will be removed from future releases." | ||
4403 | msgstr "" | ||
4404 | |||
5332 | #, fuzzy, c-format | 4405 | #, fuzzy, c-format |
5333 | msgid "CRITICAL - Couldn't open device %s: %s\n" | 4406 | msgid "CRITICAL - Couldn't open device %s: %s\n" |
5334 | msgstr "CRITICAL - Device konnte nicht geöffnet werden: %s\n" | 4407 | msgstr "CRITICAL - Device konnte nicht geöffnet werden: %s\n" |
5335 | 4408 | ||
5336 | #: plugins/check_ide_smart.c:261 | ||
5337 | #, c-format | 4409 | #, c-format |
5338 | msgid "CRITICAL - SMART_CMD_ENABLE\n" | 4410 | msgid "CRITICAL - SMART_CMD_ENABLE\n" |
5339 | msgstr "" | 4411 | msgstr "" |
5340 | 4412 | ||
5341 | #: plugins/check_ide_smart.c:323 plugins/check_ide_smart.c:350 | ||
5342 | #, c-format | 4413 | #, c-format |
5343 | msgid "CRITICAL - SMART_READ_VALUES: %s\n" | 4414 | msgid "CRITICAL - SMART_READ_VALUES: %s\n" |
5344 | msgstr "" | 4415 | msgstr "" |
5345 | 4416 | ||
5346 | #: plugins/check_ide_smart.c:421 | ||
5347 | #, c-format | 4417 | #, c-format |
5348 | msgid "CRITICAL - %d Harddrive PreFailure%cDetected! %d/%d tests failed.\n" | 4418 | msgid "CRITICAL - %d Harddrive PreFailure%cDetected! %d/%d tests failed.\n" |
5349 | msgstr "" | 4419 | msgstr "" |
5350 | 4420 | ||
5351 | #: plugins/check_ide_smart.c:429 | ||
5352 | #, c-format | 4421 | #, c-format |
5353 | msgid "WARNING - %d Harddrive Advisor%s Detected. %d/%d tests failed.\n" | 4422 | msgid "WARNING - %d Harddrive Advisor%s Detected. %d/%d tests failed.\n" |
5354 | msgstr "" | 4423 | msgstr "" |
5355 | 4424 | ||
5356 | #: plugins/check_ide_smart.c:437 | ||
5357 | #, c-format | 4425 | #, c-format |
5358 | msgid "OK - Operational (%d/%d tests passed)\n" | 4426 | msgid "OK - Operational (%d/%d tests passed)\n" |
5359 | msgstr "" | 4427 | msgstr "" |
5360 | 4428 | ||
5361 | #: plugins/check_ide_smart.c:441 | ||
5362 | #, c-format | 4429 | #, c-format |
5363 | msgid "ERROR - Status '%d' unknown. %d/%d tests passed\n" | 4430 | msgid "ERROR - Status '%d' unknown. %d/%d tests passed\n" |
5364 | msgstr "" | 4431 | msgstr "" |
5365 | 4432 | ||
5366 | #: plugins/check_ide_smart.c:474 | ||
5367 | #, c-format | 4433 | #, c-format |
5368 | msgid "OffLineStatus=%d {%s}, AutoOffLine=%s, OffLineTimeout=%d minutes\n" | 4434 | msgid "OffLineStatus=%d {%s}, AutoOffLine=%s, OffLineTimeout=%d minutes\n" |
5369 | msgstr "" | 4435 | msgstr "" |
5370 | 4436 | ||
5371 | #: plugins/check_ide_smart.c:480 | ||
5372 | #, c-format | 4437 | #, c-format |
5373 | msgid "OffLineCapability=%d {%s %s %s}\n" | 4438 | msgid "OffLineCapability=%d {%s %s %s}\n" |
5374 | msgstr "" | 4439 | msgstr "" |
5375 | 4440 | ||
5376 | #: plugins/check_ide_smart.c:486 | ||
5377 | #, c-format | 4441 | #, c-format |
5378 | msgid "SmartRevision=%d, CheckSum=%d, SmartCapability=%d {%s %s}\n" | 4442 | msgid "SmartRevision=%d, CheckSum=%d, SmartCapability=%d {%s %s}\n" |
5379 | msgstr "" | 4443 | msgstr "" |
5380 | 4444 | ||
5381 | #: plugins/check_ide_smart.c:508 plugins/check_ide_smart.c:532 | ||
5382 | #, c-format | 4445 | #, c-format |
5383 | msgid "CRITICAL - %s: %s\n" | 4446 | msgid "CRITICAL - %s: %s\n" |
5384 | msgstr "" | 4447 | msgstr "" |
5385 | 4448 | ||
5386 | #: plugins/check_ide_smart.c:553 plugins/check_ide_smart.c:580 | 4449 | #, c-format |
4450 | msgid "OK - Command sent (%s)\n" | ||
4451 | msgstr "" | ||
4452 | |||
5387 | #, c-format | 4453 | #, c-format |
5388 | msgid "CRITICAL - SMART_READ_THRESHOLDS: %s\n" | 4454 | msgid "CRITICAL - SMART_READ_THRESHOLDS: %s\n" |
5389 | msgstr "" | 4455 | msgstr "" |
5390 | 4456 | ||
5391 | #: plugins/check_ide_smart.c:599 | ||
5392 | #, c-format | 4457 | #, c-format |
5393 | msgid "" | 4458 | msgid "" |
5394 | "This plugin checks a local hard drive with the (Linux specific) SMART " | 4459 | "This plugin checks a local hard drive with the (Linux specific) SMART " |
5395 | "interface [http://smartlinux.sourceforge.net/smart/index.php]." | 4460 | "interface [http://smartlinux.sourceforge.net/smart/index.php]." |
5396 | msgstr "" | 4461 | msgstr "" |
5397 | 4462 | ||
5398 | #: plugins/check_ide_smart.c:609 | ||
5399 | msgid "Select device DEVICE" | 4463 | msgid "Select device DEVICE" |
5400 | msgstr "" | 4464 | msgstr "" |
5401 | 4465 | ||
5402 | #: plugins/check_ide_smart.c:610 | ||
5403 | msgid "" | 4466 | msgid "" |
5404 | "Note: if the device is selected with this option, _no_ other options are " | 4467 | "Note: if the device is specified without this option, any further option will" |
5405 | "accepted" | 4468 | msgstr "" |
4469 | |||
4470 | msgid "be ignored." | ||
4471 | msgstr "" | ||
4472 | |||
4473 | msgid "" | ||
4474 | "The SMART command modes (-i/--immediate, -0/--auto-off and -1/--auto-on) were" | ||
5406 | msgstr "" | 4475 | msgstr "" |
5407 | 4476 | ||
5408 | #: plugins/check_ide_smart.c:612 | 4477 | msgid "" |
5409 | msgid "Perform immediately offline tests" | 4478 | "broken in an underhand manner and have been disabled. You can use smartctl" |
5410 | msgstr "" | 4479 | msgstr "" |
5411 | 4480 | ||
5412 | #: plugins/check_ide_smart.c:614 | 4481 | msgid "instead:" |
5413 | msgid "Returns the number of failed tests" | ||
5414 | msgstr "" | 4482 | msgstr "" |
5415 | 4483 | ||
5416 | #: plugins/check_ide_smart.c:616 | 4484 | msgid "-0/--auto-off: use \"smartctl --offlineauto=off\"" |
5417 | msgid "Turn on automatic offline tests" | ||
5418 | msgstr "" | 4485 | msgstr "" |
5419 | 4486 | ||
5420 | #: plugins/check_ide_smart.c:618 | 4487 | msgid "-1/--auto-on: use \"smartctl --offlineauto=on\"" |
5421 | msgid "Turn off automatic offline tests" | ||
5422 | msgstr "" | 4488 | msgstr "" |
5423 | 4489 | ||
5424 | #: plugins/check_ide_smart.c:620 | 4490 | msgid "-i/--immediate: use \"smartctl --test=offline\"" |
5425 | msgid "Output suitable for the monitoring system" | ||
5426 | msgstr "" | 4491 | msgstr "" |
5427 | 4492 | ||
5428 | #: plugins/negate.c:99 | ||
5429 | #, fuzzy | 4493 | #, fuzzy |
5430 | msgid "No data returned from command\n" | 4494 | msgid "No data returned from command\n" |
5431 | msgstr "Keine Daten empfangen %s\n" | 4495 | msgstr "Keine Daten empfangen %s\n" |
5432 | 4496 | ||
5433 | #: plugins/negate.c:170 | ||
5434 | msgid "" | 4497 | msgid "" |
5435 | "Timeout result must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) " | 4498 | "Timeout result must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) " |
5436 | "or integer (0-3)." | 4499 | "or integer (0-3)." |
5437 | msgstr "" | 4500 | msgstr "" |
5438 | 4501 | ||
5439 | #: plugins/negate.c:174 | ||
5440 | msgid "" | 4502 | msgid "" |
5441 | "Ok must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or integer (0-" | 4503 | "Ok must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or integer " |
5442 | "3)." | 4504 | "(0-3)." |
5443 | msgstr "" | 4505 | msgstr "" |
5444 | 4506 | ||
5445 | #: plugins/negate.c:180 | ||
5446 | msgid "" | 4507 | msgid "" |
5447 | "Warning must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or " | 4508 | "Warning must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or " |
5448 | "integer (0-3)." | 4509 | "integer (0-3)." |
5449 | msgstr "" | 4510 | msgstr "" |
5450 | 4511 | ||
5451 | #: plugins/negate.c:185 | ||
5452 | msgid "" | 4512 | msgid "" |
5453 | "Critical must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or " | 4513 | "Critical must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or " |
5454 | "integer (0-3)." | 4514 | "integer (0-3)." |
5455 | msgstr "" | 4515 | msgstr "" |
5456 | 4516 | ||
5457 | #: plugins/negate.c:190 | ||
5458 | msgid "" | 4517 | msgid "" |
5459 | "Unknown must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or " | 4518 | "Unknown must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or " |
5460 | "integer (0-3)." | 4519 | "integer (0-3)." |
5461 | msgstr "" | 4520 | msgstr "" |
5462 | 4521 | ||
5463 | #: plugins/negate.c:217 | ||
5464 | msgid "Require path to command" | 4522 | msgid "Require path to command" |
5465 | msgstr "" | 4523 | msgstr "" |
5466 | 4524 | ||
5467 | #: plugins/negate.c:246 | ||
5468 | msgid "" | 4525 | msgid "" |
5469 | "Negates the status of a plugin (returns OK for CRITICAL and vice-versa)." | 4526 | "Negates the status of a plugin (returns OK for CRITICAL and vice-versa)." |
5470 | msgstr "" | 4527 | msgstr "" |
5471 | 4528 | ||
5472 | #: plugins/negate.c:247 | ||
5473 | msgid "Additional switches can be used to control which state becomes what." | 4529 | msgid "Additional switches can be used to control which state becomes what." |
5474 | msgstr "" | 4530 | msgstr "" |
5475 | 4531 | ||
5476 | #: plugins/negate.c:256 | ||
5477 | msgid "Keep timeout longer than the plugin timeout to retain CRITICAL status." | 4532 | msgid "Keep timeout longer than the plugin timeout to retain CRITICAL status." |
5478 | msgstr "" | 4533 | msgstr "" |
5479 | 4534 | ||
5480 | #: plugins/negate.c:258 | ||
5481 | msgid "Custom result on Negate timeouts; see below for STATUS definition\n" | 4535 | msgid "Custom result on Negate timeouts; see below for STATUS definition\n" |
5482 | msgstr "" | 4536 | msgstr "" |
5483 | 4537 | ||
5484 | #: plugins/negate.c:264 | ||
5485 | #, c-format | 4538 | #, c-format |
5486 | msgid "" | 4539 | msgid "" |
5487 | " STATUS can be 'OK', 'WARNING', 'CRITICAL' or 'UNKNOWN' without single\n" | 4540 | " STATUS can be 'OK', 'WARNING', 'CRITICAL' or 'UNKNOWN' without single\n" |
5488 | msgstr "" | 4541 | msgstr "" |
5489 | 4542 | ||
5490 | #: plugins/negate.c:265 | ||
5491 | #, c-format | 4543 | #, c-format |
5492 | msgid "" | 4544 | msgid "" |
5493 | " quotes. Numeric values are accepted. If nothing is specified, permutes\n" | 4545 | " quotes. Numeric values are accepted. If nothing is specified, permutes\n" |
5494 | msgstr "" | 4546 | msgstr "" |
5495 | 4547 | ||
5496 | #: plugins/negate.c:266 | ||
5497 | #, c-format | 4548 | #, c-format |
5498 | msgid " OK and CRITICAL.\n" | 4549 | msgid " OK and CRITICAL.\n" |
5499 | msgstr "" | 4550 | msgstr "" |
5500 | 4551 | ||
5501 | #: plugins/negate.c:268 | ||
5502 | #, c-format | 4552 | #, c-format |
5503 | msgid "" | 4553 | msgid "" |
5504 | " Substitute output text as well. Will only substitute text in CAPITALS\n" | 4554 | " Substitute output text as well. Will only substitute text in CAPITALS\n" |
5505 | msgstr "" | 4555 | msgstr "" |
5506 | 4556 | ||
5507 | #: plugins/negate.c:273 | ||
5508 | msgid "Run check_ping and invert result. Must use full path to plugin" | 4557 | msgid "Run check_ping and invert result. Must use full path to plugin" |
5509 | msgstr "" | 4558 | msgstr "" |
5510 | 4559 | ||
5511 | #: plugins/negate.c:275 | ||
5512 | msgid "This will return OK instead of WARNING and UNKNOWN instead of CRITICAL" | 4560 | msgid "This will return OK instead of WARNING and UNKNOWN instead of CRITICAL" |
5513 | msgstr "" | 4561 | msgstr "" |
5514 | 4562 | ||
5515 | #: plugins/negate.c:278 | ||
5516 | msgid "" | 4563 | msgid "" |
5517 | "This plugin is a wrapper to take the output of another plugin and invert it." | 4564 | "This plugin is a wrapper to take the output of another plugin and invert it." |
5518 | msgstr "" | 4565 | msgstr "" |
5519 | 4566 | ||
5520 | #: plugins/negate.c:279 | ||
5521 | msgid "The full path of the plugin must be provided." | 4567 | msgid "The full path of the plugin must be provided." |
5522 | msgstr "" | 4568 | msgstr "" |
5523 | 4569 | ||
5524 | #: plugins/negate.c:280 | ||
5525 | msgid "If the wrapped plugin returns OK, the wrapper will return CRITICAL." | 4570 | msgid "If the wrapped plugin returns OK, the wrapper will return CRITICAL." |
5526 | msgstr "" | 4571 | msgstr "" |
5527 | 4572 | ||
5528 | #: plugins/negate.c:281 | ||
5529 | msgid "If the wrapped plugin returns CRITICAL, the wrapper will return OK." | 4573 | msgid "If the wrapped plugin returns CRITICAL, the wrapper will return OK." |
5530 | msgstr "" | 4574 | msgstr "" |
5531 | 4575 | ||
5532 | #: plugins/negate.c:282 | ||
5533 | msgid "Otherwise, the output state of the wrapped plugin is unchanged." | 4576 | msgid "Otherwise, the output state of the wrapped plugin is unchanged." |
5534 | msgstr "" | 4577 | msgstr "" |
5535 | 4578 | ||
5536 | #: plugins/negate.c:284 | ||
5537 | msgid "" | 4579 | msgid "" |
5538 | "Using timeout-result, it is possible to override the timeout behaviour or a" | 4580 | "Using timeout-result, it is possible to override the timeout behaviour or a" |
5539 | msgstr "" | 4581 | msgstr "" |
5540 | 4582 | ||
5541 | #: plugins/negate.c:285 | ||
5542 | msgid "plugin by setting the negate timeout a bit lower." | 4583 | msgid "plugin by setting the negate timeout a bit lower." |
5543 | msgstr "" | 4584 | msgstr "" |
5544 | 4585 | ||
5545 | #: plugins/netutils.c:49 | ||
5546 | #, fuzzy, c-format | 4586 | #, fuzzy, c-format |
5547 | msgid "%s - Socket timeout after %d seconds\n" | 4587 | msgid "%s - Socket timeout after %d seconds\n" |
5548 | msgstr "CRITICAL - Dokumentendatum ist %d Sekunden in der Zukunft\n" | 4588 | msgstr "CRITICAL - Dokumentendatum ist %d Sekunden in der Zukunft\n" |
5549 | 4589 | ||
5550 | #: plugins/netutils.c:51 | ||
5551 | #, fuzzy, c-format | 4590 | #, fuzzy, c-format |
5552 | msgid "%s - Abnormal timeout after %d seconds\n" | 4591 | msgid "%s - Abnormal timeout after %d seconds\n" |
5553 | msgstr "CRITICAL - Dokumentendatum ist %d Sekunden in der Zukunft\n" | 4592 | msgstr "CRITICAL - Dokumentendatum ist %d Sekunden in der Zukunft\n" |
5554 | 4593 | ||
5555 | #: plugins/netutils.c:79 plugins/netutils.c:281 | ||
5556 | msgid "Send failed" | 4594 | msgid "Send failed" |
5557 | msgstr "" | 4595 | msgstr "" |
5558 | 4596 | ||
5559 | #: plugins/netutils.c:96 plugins/netutils.c:296 | ||
5560 | #, fuzzy | 4597 | #, fuzzy |
5561 | msgid "No data was received from host!" | 4598 | msgid "No data was received from host!" |
5562 | msgstr "Keine Daten empfangen %s\n" | 4599 | msgstr "Keine Daten empfangen %s\n" |
5563 | 4600 | ||
5564 | #: plugins/netutils.c:204 plugins/netutils.c:240 | ||
5565 | msgid "Socket creation failed" | 4601 | msgid "Socket creation failed" |
5566 | msgstr "" | 4602 | msgstr "" |
5567 | 4603 | ||
5568 | #: plugins/netutils.c:233 | ||
5569 | msgid "Supplied path too long unix domain socket" | 4604 | msgid "Supplied path too long unix domain socket" |
5570 | msgstr "" | 4605 | msgstr "" |
5571 | 4606 | ||
5572 | #: plugins/netutils.c:305 | ||
5573 | msgid "Receive failed" | 4607 | msgid "Receive failed" |
5574 | msgstr "" | 4608 | msgstr "" |
5575 | 4609 | ||
5576 | #: plugins/netutils.c:331 plugins-root/check_dhcp.c:1342 | ||
5577 | #, fuzzy, c-format | 4610 | #, fuzzy, c-format |
5578 | msgid "Invalid hostname/address - %s" | 4611 | msgid "Invalid hostname/address - %s" |
5579 | msgstr "" | 4612 | msgstr "" |
5580 | "Ungültige(r) Name/Adresse: %s\n" | 4613 | "Ungültige(r) Name/Adresse: %s\n" |
5581 | "\n" | 4614 | "\n" |
5582 | 4615 | ||
5583 | #: plugins/popen.c:142 | ||
5584 | #, fuzzy | 4616 | #, fuzzy |
5585 | msgid "Could not malloc argv array in popen()" | 4617 | msgid "Could not malloc argv array in popen()" |
5586 | msgstr "Konnte addr nicht zuweisen\n" | 4618 | msgstr "Konnte addr nicht zuweisen\n" |
5587 | 4619 | ||
5588 | #: plugins/popen.c:152 | ||
5589 | #, fuzzy | 4620 | #, fuzzy |
5590 | msgid "CRITICAL - You need more args!!!" | 4621 | msgid "CRITICAL - You need more args!!!" |
5591 | msgstr "CRITICAL - Fehler: %s\n" | 4622 | msgstr "CRITICAL - Fehler: %s\n" |
5592 | 4623 | ||
5593 | #: plugins/popen.c:209 | ||
5594 | #, fuzzy | 4624 | #, fuzzy |
5595 | msgid "Cannot catch SIGCHLD" | 4625 | msgid "Cannot catch SIGCHLD" |
5596 | msgstr "Konnte SIGALRM nicht erhalten" | 4626 | msgstr "Konnte SIGALRM nicht erhalten" |
5597 | 4627 | ||
5598 | #: plugins/popen.c:304 | ||
5599 | #, fuzzy, c-format | 4628 | #, fuzzy, c-format |
5600 | msgid "CRITICAL - Plugin timed out after %d seconds\n" | 4629 | msgid "CRITICAL - Plugin timed out after %d seconds\n" |
5601 | msgstr "CRITICAL - Dokumentendatum ist %d Sekunden in der Zukunft\n" | 4630 | msgstr "CRITICAL - Dokumentendatum ist %d Sekunden in der Zukunft\n" |
5602 | 4631 | ||
5603 | #: plugins/popen.c:307 | ||
5604 | msgid "CRITICAL - popen timeout received, but no child process" | 4632 | msgid "CRITICAL - popen timeout received, but no child process" |
5605 | msgstr "" | 4633 | msgstr "" |
5606 | 4634 | ||
5607 | #: plugins/popen.c:323 | ||
5608 | msgid "sysconf error for _SC_OPEN_MAX" | ||
5609 | msgstr "" | ||
5610 | |||
5611 | #: plugins/urlize.c:130 | ||
5612 | #, c-format | 4635 | #, c-format |
5613 | msgid "" | 4636 | msgid "" |
5614 | "%s UNKNOWN - No data received from host\n" | 4637 | "%s UNKNOWN - No data received from host\n" |
5615 | "CMD: %s</A>\n" | 4638 | "CMD: %s</A>\n" |
5616 | msgstr "" | 4639 | msgstr "" |
5617 | 4640 | ||
5618 | #: plugins/urlize.c:169 | ||
5619 | msgid "" | 4641 | msgid "" |
5620 | "This plugin wraps the text output of another command (plugin) in HTML <A>" | 4642 | "This plugin wraps the text output of another command (plugin) in HTML <A>" |
5621 | msgstr "" | 4643 | msgstr "" |
5622 | 4644 | ||
5623 | #: plugins/urlize.c:170 | ||
5624 | msgid "" | 4645 | msgid "" |
5625 | "tags, thus displaying the child plugin's output as a clickable link in " | 4646 | "tags, thus displaying the child plugin's output as a clickable link in " |
5626 | "compatible" | 4647 | "compatible" |
5627 | msgstr "" | 4648 | msgstr "" |
5628 | 4649 | ||
5629 | #: plugins/urlize.c:171 | ||
5630 | msgid "" | 4650 | msgid "" |
5631 | "monitoring status screen. This plugin returns the status of the invoked " | 4651 | "monitoring status screen. This plugin returns the status of the invoked " |
5632 | "plugin." | 4652 | "plugin." |
5633 | msgstr "" | 4653 | msgstr "" |
5634 | 4654 | ||
5635 | #: plugins/urlize.c:181 | ||
5636 | msgid "" | 4655 | msgid "" |
5637 | "Pay close attention to quoting to ensure that the shell passes the expected" | 4656 | "Pay close attention to quoting to ensure that the shell passes the expected" |
5638 | msgstr "" | 4657 | msgstr "" |
5639 | 4658 | ||
5640 | #: plugins/urlize.c:182 | ||
5641 | msgid "data to the plugin. For example, in:" | 4659 | msgid "data to the plugin. For example, in:" |
5642 | msgstr "" | 4660 | msgstr "" |
5643 | 4661 | ||
5644 | #: plugins/urlize.c:183 | ||
5645 | msgid "urlize http://example.com/ check_http -H example.com -r 'two words'" | 4662 | msgid "urlize http://example.com/ check_http -H example.com -r 'two words'" |
5646 | msgstr "" | 4663 | msgstr "" |
5647 | 4664 | ||
5648 | #: plugins/urlize.c:184 | ||
5649 | msgid "the shell will remove the single quotes and urlize will see:" | 4665 | msgid "the shell will remove the single quotes and urlize will see:" |
5650 | msgstr "" | 4666 | msgstr "" |
5651 | 4667 | ||
5652 | #: plugins/urlize.c:185 | ||
5653 | msgid "urlize http://example.com/ check_http -H example.com -r two words" | 4668 | msgid "urlize http://example.com/ check_http -H example.com -r two words" |
5654 | msgstr "" | 4669 | msgstr "" |
5655 | 4670 | ||
5656 | #: plugins/urlize.c:186 | ||
5657 | msgid "You probably want:" | 4671 | msgid "You probably want:" |
5658 | msgstr "" | 4672 | msgstr "" |
5659 | 4673 | ||
5660 | #: plugins/urlize.c:187 | ||
5661 | msgid "urlize http://example.com/ \"check_http -H example.com -r 'two words'\"" | 4674 | msgid "urlize http://example.com/ \"check_http -H example.com -r 'two words'\"" |
5662 | msgstr "" | 4675 | msgstr "" |
5663 | 4676 | ||
5664 | #: plugins/utils.c:174 | ||
5665 | #, fuzzy, c-format | ||
5666 | msgid "%s - Plugin timed out after %d seconds\n" | ||
5667 | msgstr "CRITICAL - Dokumentendatum ist %d Sekunden in der Zukunft\n" | ||
5668 | |||
5669 | #: plugins/utils.c:469 | ||
5670 | #, fuzzy | 4677 | #, fuzzy |
5671 | msgid "failed realloc in strpcpy\n" | 4678 | msgid "failed realloc in strpcpy\n" |
5672 | msgstr "konnte keinen Speicher für '%s' reservieren\n" | 4679 | msgstr "konnte keinen Speicher für '%s' reservieren\n" |
5673 | 4680 | ||
5674 | #: plugins/utils.c:511 | ||
5675 | #, fuzzy | 4681 | #, fuzzy |
5676 | msgid "failed malloc in strscat\n" | 4682 | msgid "failed malloc in strscat\n" |
5677 | msgstr "konnte keinen Speicher für '%s' reservieren\n" | 4683 | msgstr "konnte keinen Speicher für '%s' reservieren\n" |
5678 | 4684 | ||
5679 | #: plugins/utils.c:531 | ||
5680 | #, fuzzy | 4685 | #, fuzzy |
5681 | msgid "failed malloc in xvasprintf\n" | 4686 | msgid "failed malloc in xvasprintf\n" |
5682 | msgstr "konnte keinen Speicher für '%s' reservieren\n" | 4687 | msgstr "konnte keinen Speicher für '%s' reservieren\n" |
4688 | |||
4689 | msgid "sysconf error for _SC_OPEN_MAX\n" | ||
4690 | msgstr "" | ||
5683 | 4691 | ||
5684 | #: plugins/utils.h:137 | ||
5685 | #, c-format | 4692 | #, c-format |
5686 | msgid "" | 4693 | msgid "" |
5687 | " %s (-h | --help) for detailed help\n" | 4694 | " %s (-h | --help) for detailed help\n" |
5688 | " %s (-V | --version) for version information\n" | 4695 | " %s (-V | --version) for version information\n" |
5689 | msgstr "" | 4696 | msgstr "" |
5690 | 4697 | ||
5691 | #: plugins/utils.h:141 | ||
5692 | msgid "" | 4698 | msgid "" |
5693 | "\n" | 4699 | "\n" |
5694 | "Options:\n" | 4700 | "Options:\n" |
@@ -5698,7 +4704,6 @@ msgid "" | |||
5698 | " Print version information\n" | 4704 | " Print version information\n" |
5699 | msgstr "" | 4705 | msgstr "" |
5700 | 4706 | ||
5701 | #: plugins/utils.h:148 | ||
5702 | #, c-format | 4707 | #, c-format |
5703 | msgid "" | 4708 | msgid "" |
5704 | " -H, --hostname=ADDRESS\n" | 4709 | " -H, --hostname=ADDRESS\n" |
@@ -5707,7 +4712,6 @@ msgid "" | |||
5707 | " Port number (default: %s)\n" | 4712 | " Port number (default: %s)\n" |
5708 | msgstr "" | 4713 | msgstr "" |
5709 | 4714 | ||
5710 | #: plugins/utils.h:154 | ||
5711 | msgid "" | 4715 | msgid "" |
5712 | " -4, --use-ipv4\n" | 4716 | " -4, --use-ipv4\n" |
5713 | " Use IPv4 connection\n" | 4717 | " Use IPv4 connection\n" |
@@ -5715,14 +4719,12 @@ msgid "" | |||
5715 | " Use IPv6 connection\n" | 4719 | " Use IPv6 connection\n" |
5716 | msgstr "" | 4720 | msgstr "" |
5717 | 4721 | ||
5718 | #: plugins/utils.h:160 | ||
5719 | msgid "" | 4722 | msgid "" |
5720 | " -v, --verbose\n" | 4723 | " -v, --verbose\n" |
5721 | " Show details for command-line debugging (output may be truncated by\n" | 4724 | " Show details for command-line debugging (output may be truncated by\n" |
5722 | "\t\tthe monitoring system)\n" | 4725 | " the monitoring system)\n" |
5723 | msgstr "" | 4726 | msgstr "" |
5724 | 4727 | ||
5725 | #: plugins/utils.h:165 | ||
5726 | msgid "" | 4728 | msgid "" |
5727 | " -w, --warning=DOUBLE\n" | 4729 | " -w, --warning=DOUBLE\n" |
5728 | " Response time to result in warning status (seconds)\n" | 4730 | " Response time to result in warning status (seconds)\n" |
@@ -5730,7 +4732,6 @@ msgid "" | |||
5730 | " Response time to result in critical status (seconds)\n" | 4732 | " Response time to result in critical status (seconds)\n" |
5731 | msgstr "" | 4733 | msgstr "" |
5732 | 4734 | ||
5733 | #: plugins/utils.h:171 | ||
5734 | msgid "" | 4735 | msgid "" |
5735 | " -w, --warning=RANGE\n" | 4736 | " -w, --warning=RANGE\n" |
5736 | " Warning range (format: start:end). Alert if outside this range\n" | 4737 | " Warning range (format: start:end). Alert if outside this range\n" |
@@ -5738,14 +4739,18 @@ msgid "" | |||
5738 | " Critical range\n" | 4739 | " Critical range\n" |
5739 | msgstr "" | 4740 | msgstr "" |
5740 | 4741 | ||
5741 | #: plugins/utils.h:177 | ||
5742 | #, c-format | 4742 | #, c-format |
5743 | msgid "" | 4743 | msgid "" |
5744 | " -t, --timeout=INTEGER\n" | 4744 | " -t, --timeout=INTEGER\n" |
5745 | " Seconds before connection times out (default: %d)\n" | 4745 | " Seconds before connection times out (default: %d)\n" |
5746 | msgstr "" | 4746 | msgstr "" |
5747 | 4747 | ||
5748 | #: plugins/utils.h:182 | 4748 | #, c-format |
4749 | msgid "" | ||
4750 | " -t, --timeout=INTEGER\n" | ||
4751 | " Seconds before plugin times out (default: %d)\n" | ||
4752 | msgstr "" | ||
4753 | |||
5749 | msgid "" | 4754 | msgid "" |
5750 | " --extra-opts=[section][@file]\n" | 4755 | " --extra-opts=[section][@file]\n" |
5751 | " Read options from an ini file. See\n" | 4756 | " Read options from an ini file. See\n" |
@@ -5753,14 +4758,12 @@ msgid "" | |||
5753 | " for usage and examples.\n" | 4758 | " for usage and examples.\n" |
5754 | msgstr "" | 4759 | msgstr "" |
5755 | 4760 | ||
5756 | #: plugins/utils.h:190 | ||
5757 | msgid "" | 4761 | msgid "" |
5758 | " See:\n" | 4762 | " See:\n" |
5759 | " https://www.monitoring-plugins.org/doc/guidelines.html#THRESHOLDFORMAT\n" | 4763 | " https://www.monitoring-plugins.org/doc/guidelines.html#THRESHOLDFORMAT\n" |
5760 | " for THRESHOLD format and examples.\n" | 4764 | " for THRESHOLD format and examples.\n" |
5761 | msgstr "" | 4765 | msgstr "" |
5762 | 4766 | ||
5763 | #: plugins/utils.h:195 | ||
5764 | msgid "" | 4767 | msgid "" |
5765 | "\n" | 4768 | "\n" |
5766 | "Send email to help@monitoring-plugins.org if you have questions regarding\n" | 4769 | "Send email to help@monitoring-plugins.org if you have questions regarding\n" |
@@ -5769,7 +4772,6 @@ msgid "" | |||
5769 | "\n" | 4772 | "\n" |
5770 | msgstr "" | 4773 | msgstr "" |
5771 | 4774 | ||
5772 | #: plugins/utils.h:200 | ||
5773 | msgid "" | 4775 | msgid "" |
5774 | "\n" | 4776 | "\n" |
5775 | "The Monitoring Plugins come with ABSOLUTELY NO WARRANTY. You may " | 4777 | "The Monitoring Plugins come with ABSOLUTELY NO WARRANTY. You may " |
@@ -5778,410 +4780,332 @@ msgid "" | |||
5778 | "For more information about these matters, see the file named COPYING.\n" | 4780 | "For more information about these matters, see the file named COPYING.\n" |
5779 | msgstr "" | 4781 | msgstr "" |
5780 | 4782 | ||
5781 | #: plugins-root/check_dhcp.c:320 | ||
5782 | #, c-format | 4783 | #, c-format |
5783 | msgid "Error: Could not get hardware address of interface '%s'\n" | 4784 | msgid "Error: Could not get hardware address of interface '%s'\n" |
5784 | msgstr "" | 4785 | msgstr "" |
5785 | 4786 | ||
5786 | #: plugins-root/check_dhcp.c:342 | ||
5787 | #, c-format | 4787 | #, c-format |
5788 | msgid "Error: if_nametoindex error - %s.\n" | 4788 | msgid "Error: if_nametoindex error - %s.\n" |
5789 | msgstr "" | 4789 | msgstr "" |
5790 | 4790 | ||
5791 | #: plugins-root/check_dhcp.c:347 | ||
5792 | #, c-format | 4791 | #, c-format |
5793 | msgid "Error: Couldn't get hardware address from %s. sysctl 1 error - %s.\n" | 4792 | msgid "Error: Couldn't get hardware address from %s. sysctl 1 error - %s.\n" |
5794 | msgstr "" | 4793 | msgstr "" |
5795 | 4794 | ||
5796 | #: plugins-root/check_dhcp.c:352 | ||
5797 | #, c-format | 4795 | #, c-format |
5798 | msgid "" | 4796 | msgid "" |
5799 | "Error: Couldn't get hardware address from interface %s. malloc error - %s.\n" | 4797 | "Error: Couldn't get hardware address from interface %s. malloc error - %s.\n" |
5800 | msgstr "" | 4798 | msgstr "" |
5801 | 4799 | ||
5802 | #: plugins-root/check_dhcp.c:357 | ||
5803 | #, c-format | 4800 | #, c-format |
5804 | msgid "Error: Couldn't get hardware address from %s. sysctl 2 error - %s.\n" | 4801 | msgid "Error: Couldn't get hardware address from %s. sysctl 2 error - %s.\n" |
5805 | msgstr "" | 4802 | msgstr "" |
5806 | 4803 | ||
5807 | #: plugins-root/check_dhcp.c:388 | ||
5808 | #, c-format | 4804 | #, c-format |
5809 | msgid "" | 4805 | msgid "" |
5810 | "Error: can't find unit number in interface_name (%s) - expecting TypeNumber " | 4806 | "Error: can't find unit number in interface_name (%s) - expecting TypeNumber " |
5811 | "eg lnc0.\n" | 4807 | "eg lnc0.\n" |
5812 | msgstr "" | 4808 | msgstr "" |
5813 | 4809 | ||
5814 | #: plugins-root/check_dhcp.c:393 plugins-root/check_dhcp.c:405 | ||
5815 | #, c-format | 4810 | #, c-format |
5816 | msgid "" | 4811 | msgid "" |
5817 | "Error: can't read MAC address from DLPI streams interface for device %s unit " | 4812 | "Error: can't read MAC address from DLPI streams interface for device %s unit " |
5818 | "%d.\n" | 4813 | "%d.\n" |
5819 | msgstr "" | 4814 | msgstr "" |
5820 | 4815 | ||
5821 | #: plugins-root/check_dhcp.c:411 | ||
5822 | #, c-format | 4816 | #, c-format |
5823 | msgid "" | 4817 | msgid "" |
5824 | "Error: can't get MAC address for this architecture. Use the --mac option.\n" | 4818 | "Error: can't get MAC address for this architecture. Use the --mac option.\n" |
5825 | msgstr "" | 4819 | msgstr "" |
5826 | 4820 | ||
5827 | #: plugins-root/check_dhcp.c:430 | ||
5828 | #, c-format | 4821 | #, c-format |
5829 | msgid "Error: Cannot determine IP address of interface %s\n" | 4822 | msgid "Error: Cannot determine IP address of interface %s\n" |
5830 | msgstr "" | 4823 | msgstr "" |
5831 | 4824 | ||
5832 | #: plugins-root/check_dhcp.c:438 | ||
5833 | #, c-format | 4825 | #, c-format |
5834 | msgid "Error: Cannot get interface IP address on this platform.\n" | 4826 | msgid "Error: Cannot get interface IP address on this platform.\n" |
5835 | msgstr "" | 4827 | msgstr "" |
5836 | 4828 | ||
5837 | #: plugins-root/check_dhcp.c:443 | ||
5838 | #, c-format | 4829 | #, c-format |
5839 | msgid "Pretending to be relay client %s\n" | 4830 | msgid "Pretending to be relay client %s\n" |
5840 | msgstr "" | 4831 | msgstr "" |
5841 | 4832 | ||
5842 | #: plugins-root/check_dhcp.c:528 | ||
5843 | #, c-format | 4833 | #, c-format |
5844 | msgid "DHCPDISCOVER to %s port %d\n" | 4834 | msgid "DHCPDISCOVER to %s port %d\n" |
5845 | msgstr "" | 4835 | msgstr "" |
5846 | 4836 | ||
5847 | #: plugins-root/check_dhcp.c:580 | ||
5848 | #, c-format | 4837 | #, c-format |
5849 | msgid "Result=ERROR\n" | 4838 | msgid "Result=ERROR\n" |
5850 | msgstr "" | 4839 | msgstr "" |
5851 | 4840 | ||
5852 | #: plugins-root/check_dhcp.c:586 | ||
5853 | #, c-format | 4841 | #, c-format |
5854 | msgid "Result=OK\n" | 4842 | msgid "Result=OK\n" |
5855 | msgstr "" | 4843 | msgstr "" |
5856 | 4844 | ||
5857 | #: plugins-root/check_dhcp.c:596 | ||
5858 | #, c-format | 4845 | #, c-format |
5859 | msgid "DHCPOFFER from IP address %s" | 4846 | msgid "DHCPOFFER from IP address %s" |
5860 | msgstr "" | 4847 | msgstr "" |
5861 | 4848 | ||
5862 | #: plugins-root/check_dhcp.c:597 | ||
5863 | #, c-format | 4849 | #, c-format |
5864 | msgid " via %s\n" | 4850 | msgid " via %s\n" |
5865 | msgstr "" | 4851 | msgstr "" |
5866 | 4852 | ||
5867 | #: plugins-root/check_dhcp.c:604 | ||
5868 | #, c-format | 4853 | #, c-format |
5869 | msgid "" | 4854 | msgid "" |
5870 | "DHCPOFFER XID (%u) did not match DHCPDISCOVER XID (%u) - ignoring packet\n" | 4855 | "DHCPOFFER XID (%u) did not match DHCPDISCOVER XID (%u) - ignoring packet\n" |
5871 | msgstr "" | 4856 | msgstr "" |
5872 | 4857 | ||
5873 | #: plugins-root/check_dhcp.c:626 | ||
5874 | #, c-format | 4858 | #, c-format |
5875 | msgid "DHCPOFFER hardware address did not match our own - ignoring packet\n" | 4859 | msgid "DHCPOFFER hardware address did not match our own - ignoring packet\n" |
5876 | msgstr "" | 4860 | msgstr "" |
5877 | 4861 | ||
5878 | #: plugins-root/check_dhcp.c:644 | ||
5879 | #, c-format | 4862 | #, c-format |
5880 | msgid "Total responses seen on the wire: %d\n" | 4863 | msgid "Total responses seen on the wire: %d\n" |
5881 | msgstr "" | 4864 | msgstr "" |
5882 | 4865 | ||
5883 | #: plugins-root/check_dhcp.c:645 | ||
5884 | #, fuzzy, c-format | 4866 | #, fuzzy, c-format |
5885 | msgid "Valid responses for this machine: %d\n" | 4867 | msgid "Valid responses for this machine: %d\n" |
5886 | msgstr "Keine Antwort vom Host \n" | 4868 | msgstr "Keine Antwort vom Host \n" |
5887 | 4869 | ||
5888 | #: plugins-root/check_dhcp.c:660 | ||
5889 | #, c-format | 4870 | #, c-format |
5890 | msgid "send_dhcp_packet result: %d\n" | 4871 | msgid "send_dhcp_packet result: %d\n" |
5891 | msgstr "" | 4872 | msgstr "" |
5892 | 4873 | ||
5893 | #: plugins-root/check_dhcp.c:693 | ||
5894 | #, fuzzy, c-format | 4874 | #, fuzzy, c-format |
5895 | msgid "No (more) data received (nfound: %d)\n" | 4875 | msgid "No (more) data received (nfound: %d)\n" |
5896 | msgstr "Keine Daten empfangen %s\n" | 4876 | msgstr "Keine Daten empfangen %s\n" |
5897 | 4877 | ||
5898 | #: plugins-root/check_dhcp.c:712 | ||
5899 | #, c-format | 4878 | #, c-format |
5900 | msgid "recvfrom() failed, " | 4879 | msgid "recvfrom() failed, " |
5901 | msgstr "" | 4880 | msgstr "" |
5902 | 4881 | ||
5903 | #: plugins-root/check_dhcp.c:719 | ||
5904 | #, c-format | 4882 | #, c-format |
5905 | msgid "receive_dhcp_packet() result: %d\n" | 4883 | msgid "receive_dhcp_packet() result: %d\n" |
5906 | msgstr "" | 4884 | msgstr "" |
5907 | 4885 | ||
5908 | #: plugins-root/check_dhcp.c:720 | ||
5909 | #, c-format | 4886 | #, c-format |
5910 | msgid "receive_dhcp_packet() source: %s\n" | 4887 | msgid "receive_dhcp_packet() source: %s\n" |
5911 | msgstr "" | 4888 | msgstr "" |
5912 | 4889 | ||
5913 | #: plugins-root/check_dhcp.c:750 | ||
5914 | #, c-format | 4890 | #, c-format |
5915 | msgid "Error: Could not create socket!\n" | 4891 | msgid "Error: Could not create socket!\n" |
5916 | msgstr "" | 4892 | msgstr "" |
5917 | 4893 | ||
5918 | #: plugins-root/check_dhcp.c:760 | ||
5919 | #, c-format | 4894 | #, c-format |
5920 | msgid "Error: Could not set reuse address option on DHCP socket!\n" | 4895 | msgid "Error: Could not set reuse address option on DHCP socket!\n" |
5921 | msgstr "" | 4896 | msgstr "" |
5922 | 4897 | ||
5923 | #: plugins-root/check_dhcp.c:766 | ||
5924 | #, c-format | 4898 | #, c-format |
5925 | msgid "Error: Could not set broadcast option on DHCP socket!\n" | 4899 | msgid "Error: Could not set broadcast option on DHCP socket!\n" |
5926 | msgstr "" | 4900 | msgstr "" |
5927 | 4901 | ||
5928 | #: plugins-root/check_dhcp.c:775 | ||
5929 | #, c-format | 4902 | #, c-format |
5930 | msgid "" | 4903 | msgid "" |
5931 | "Error: Could not bind socket to interface %s. Check your privileges...\n" | 4904 | "Error: Could not bind socket to interface %s. Check your privileges...\n" |
5932 | msgstr "" | 4905 | msgstr "" |
5933 | 4906 | ||
5934 | #: plugins-root/check_dhcp.c:786 | ||
5935 | #, c-format | 4907 | #, c-format |
5936 | msgid "" | 4908 | msgid "" |
5937 | "Error: Could not bind to DHCP socket (port %d)! Check your privileges...\n" | 4909 | "Error: Could not bind to DHCP socket (port %d)! Check your privileges...\n" |
5938 | msgstr "" | 4910 | msgstr "" |
5939 | 4911 | ||
5940 | #: plugins-root/check_dhcp.c:820 | ||
5941 | #, c-format | 4912 | #, c-format |
5942 | msgid "Requested server address: %s\n" | 4913 | msgid "Requested server address: %s\n" |
5943 | msgstr "" | 4914 | msgstr "" |
5944 | 4915 | ||
5945 | #: plugins-root/check_dhcp.c:882 | ||
5946 | #, c-format | 4916 | #, c-format |
5947 | msgid "Lease Time: Infinite\n" | 4917 | msgid "Lease Time: Infinite\n" |
5948 | msgstr "" | 4918 | msgstr "" |
5949 | 4919 | ||
5950 | #: plugins-root/check_dhcp.c:884 | ||
5951 | #, c-format | 4920 | #, c-format |
5952 | msgid "Lease Time: %lu seconds\n" | 4921 | msgid "Lease Time: %lu seconds\n" |
5953 | msgstr "" | 4922 | msgstr "" |
5954 | 4923 | ||
5955 | #: plugins-root/check_dhcp.c:886 | ||
5956 | #, c-format | 4924 | #, c-format |
5957 | msgid "Renewal Time: Infinite\n" | 4925 | msgid "Renewal Time: Infinite\n" |
5958 | msgstr "" | 4926 | msgstr "" |
5959 | 4927 | ||
5960 | #: plugins-root/check_dhcp.c:888 | ||
5961 | #, c-format | 4928 | #, c-format |
5962 | msgid "Renewal Time: %lu seconds\n" | 4929 | msgid "Renewal Time: %lu seconds\n" |
5963 | msgstr "" | 4930 | msgstr "" |
5964 | 4931 | ||
5965 | #: plugins-root/check_dhcp.c:890 | ||
5966 | #, c-format | 4932 | #, c-format |
5967 | msgid "Rebinding Time: Infinite\n" | 4933 | msgid "Rebinding Time: Infinite\n" |
5968 | msgstr "" | 4934 | msgstr "" |
5969 | 4935 | ||
5970 | #: plugins-root/check_dhcp.c:891 | ||
5971 | #, c-format | 4936 | #, c-format |
5972 | msgid "Rebinding Time: %lu seconds\n" | 4937 | msgid "Rebinding Time: %lu seconds\n" |
5973 | msgstr "" | 4938 | msgstr "" |
5974 | 4939 | ||
5975 | #: plugins-root/check_dhcp.c:919 | ||
5976 | #, c-format | 4940 | #, c-format |
5977 | msgid "Added offer from server @ %s" | 4941 | msgid "Added offer from server @ %s" |
5978 | msgstr "" | 4942 | msgstr "" |
5979 | 4943 | ||
5980 | #: plugins-root/check_dhcp.c:920 | ||
5981 | #, c-format | 4944 | #, c-format |
5982 | msgid " of IP address %s\n" | 4945 | msgid " of IP address %s\n" |
5983 | msgstr "" | 4946 | msgstr "" |
5984 | 4947 | ||
5985 | #: plugins-root/check_dhcp.c:987 | ||
5986 | #, c-format | 4948 | #, c-format |
5987 | msgid "DHCP Server Match: Offerer=%s" | 4949 | msgid "DHCP Server Match: Offerer=%s" |
5988 | msgstr "" | 4950 | msgstr "" |
5989 | 4951 | ||
5990 | #: plugins-root/check_dhcp.c:988 | ||
5991 | #, c-format | 4952 | #, c-format |
5992 | msgid " Requested=%s" | 4953 | msgid " Requested=%s" |
5993 | msgstr "" | 4954 | msgstr "" |
5994 | 4955 | ||
5995 | #: plugins-root/check_dhcp.c:990 | ||
5996 | #, c-format | 4956 | #, c-format |
5997 | msgid " (duplicate)" | 4957 | msgid " (duplicate)" |
5998 | msgstr "" | 4958 | msgstr "" |
5999 | 4959 | ||
6000 | #: plugins-root/check_dhcp.c:991 | ||
6001 | #, c-format | 4960 | #, c-format |
6002 | msgid "\n" | 4961 | msgid "\n" |
6003 | msgstr "" | 4962 | msgstr "" |
6004 | 4963 | ||
6005 | #: plugins-root/check_dhcp.c:1039 | ||
6006 | #, c-format | 4964 | #, c-format |
6007 | msgid "No DHCPOFFERs were received.\n" | 4965 | msgid "No DHCPOFFERs were received.\n" |
6008 | msgstr "" | 4966 | msgstr "" |
6009 | 4967 | ||
6010 | #: plugins-root/check_dhcp.c:1043 | ||
6011 | #, c-format | 4968 | #, c-format |
6012 | msgid "Received %d DHCPOFFER(s)" | 4969 | msgid "Received %d DHCPOFFER(s)" |
6013 | msgstr "" | 4970 | msgstr "" |
6014 | 4971 | ||
6015 | #: plugins-root/check_dhcp.c:1046 | ||
6016 | #, c-format | 4972 | #, c-format |
6017 | msgid ", %s%d of %d requested servers responded" | 4973 | msgid ", %s%d of %d requested servers responded" |
6018 | msgstr "" | 4974 | msgstr "" |
6019 | 4975 | ||
6020 | #: plugins-root/check_dhcp.c:1049 | ||
6021 | #, c-format | 4976 | #, c-format |
6022 | msgid ", requested address (%s) was %soffered" | 4977 | msgid ", requested address (%s) was %soffered" |
6023 | msgstr "" | 4978 | msgstr "" |
6024 | 4979 | ||
6025 | #: plugins-root/check_dhcp.c:1049 | ||
6026 | msgid "not " | 4980 | msgid "not " |
6027 | msgstr "" | 4981 | msgstr "" |
6028 | 4982 | ||
6029 | #: plugins-root/check_dhcp.c:1051 | ||
6030 | #, c-format | 4983 | #, c-format |
6031 | msgid ", max lease time = " | 4984 | msgid ", max lease time = " |
6032 | msgstr "" | 4985 | msgstr "" |
6033 | 4986 | ||
6034 | #: plugins-root/check_dhcp.c:1053 | ||
6035 | #, c-format | 4987 | #, c-format |
6036 | msgid "Infinity" | 4988 | msgid "Infinity" |
6037 | msgstr "" | 4989 | msgstr "" |
6038 | 4990 | ||
6039 | #: plugins-root/check_dhcp.c:1234 | 4991 | msgid "Got unexpected non-option argument" |
4992 | msgstr "" | ||
4993 | |||
6040 | #, c-format | 4994 | #, c-format |
6041 | msgid "Error: DLPI stream API failed to get MAC in check_ctrl: %s.\n" | 4995 | msgid "Error: DLPI stream API failed to get MAC in check_ctrl: %s.\n" |
6042 | msgstr "" | 4996 | msgstr "" |
6043 | 4997 | ||
6044 | #: plugins-root/check_dhcp.c:1246 | ||
6045 | #, c-format | 4998 | #, c-format |
6046 | msgid "Error: DLPI stream API failed to get MAC in put_ctrl/putmsg(): %s.\n" | 4999 | msgid "Error: DLPI stream API failed to get MAC in put_ctrl/putmsg(): %s.\n" |
6047 | msgstr "" | 5000 | msgstr "" |
6048 | 5001 | ||
6049 | #: plugins-root/check_dhcp.c:1259 | ||
6050 | #, c-format | 5002 | #, c-format |
6051 | msgid "Error: DLPI stream API failed to get MAC in put_both/putmsg().\n" | 5003 | msgid "Error: DLPI stream API failed to get MAC in put_both/putmsg().\n" |
6052 | msgstr "" | 5004 | msgstr "" |
6053 | 5005 | ||
6054 | #: plugins-root/check_dhcp.c:1271 | ||
6055 | #, c-format | 5006 | #, c-format |
6056 | msgid "" | 5007 | msgid "" |
6057 | "Error: DLPI stream API failed to get MAC in dl_attach_req/open(%s..): %s.\n" | 5008 | "Error: DLPI stream API failed to get MAC in dl_attach_req/open(%s..): %s.\n" |
6058 | msgstr "" | 5009 | msgstr "" |
6059 | 5010 | ||
6060 | #: plugins-root/check_dhcp.c:1295 | ||
6061 | #, c-format | 5011 | #, c-format |
6062 | msgid "Error: DLPI stream API failed to get MAC in dl_bind/check_ctrl(): %s.\n" | 5012 | msgid "Error: DLPI stream API failed to get MAC in dl_bind/check_ctrl(): %s.\n" |
6063 | msgstr "" | 5013 | msgstr "" |
6064 | 5014 | ||
6065 | #: plugins-root/check_dhcp.c:1374 | ||
6066 | #, c-format | 5015 | #, c-format |
6067 | msgid "Hardware address: " | 5016 | msgid "Hardware address: " |
6068 | msgstr "" | 5017 | msgstr "" |
6069 | 5018 | ||
6070 | #: plugins-root/check_dhcp.c:1390 | ||
6071 | msgid "This plugin tests the availability of DHCP servers on a network." | 5019 | msgid "This plugin tests the availability of DHCP servers on a network." |
6072 | msgstr "" | 5020 | msgstr "" |
6073 | 5021 | ||
6074 | #: plugins-root/check_dhcp.c:1402 | ||
6075 | msgid "IP address of DHCP server that we must hear from" | 5022 | msgid "IP address of DHCP server that we must hear from" |
6076 | msgstr "" | 5023 | msgstr "" |
6077 | 5024 | ||
6078 | #: plugins-root/check_dhcp.c:1404 | ||
6079 | msgid "IP address that should be offered by at least one DHCP server" | 5025 | msgid "IP address that should be offered by at least one DHCP server" |
6080 | msgstr "" | 5026 | msgstr "" |
6081 | 5027 | ||
6082 | #: plugins-root/check_dhcp.c:1406 | ||
6083 | msgid "Seconds to wait for DHCPOFFER before timeout occurs" | 5028 | msgid "Seconds to wait for DHCPOFFER before timeout occurs" |
6084 | msgstr "" | 5029 | msgstr "" |
6085 | 5030 | ||
6086 | #: plugins-root/check_dhcp.c:1408 | ||
6087 | msgid "Interface to to use for listening (i.e. eth0)" | 5031 | msgid "Interface to to use for listening (i.e. eth0)" |
6088 | msgstr "" | 5032 | msgstr "" |
6089 | 5033 | ||
6090 | #: plugins-root/check_dhcp.c:1410 | ||
6091 | msgid "MAC address to use in the DHCP request" | 5034 | msgid "MAC address to use in the DHCP request" |
6092 | msgstr "" | 5035 | msgstr "" |
6093 | 5036 | ||
6094 | #: plugins-root/check_dhcp.c:1412 | ||
6095 | msgid "Unicast testing: mimic a DHCP relay, requires -s" | 5037 | msgid "Unicast testing: mimic a DHCP relay, requires -s" |
6096 | msgstr "" | 5038 | msgstr "" |
6097 | 5039 | ||
6098 | #: plugins-root/check_icmp.c:1295 | ||
6099 | msgid "specify a target" | 5040 | msgid "specify a target" |
6100 | msgstr "" | 5041 | msgstr "" |
6101 | 5042 | ||
6102 | #: plugins-root/check_icmp.c:1297 | 5043 | msgid "Use IPv4 (default) or IPv6 to communicate with the targets" |
5044 | msgstr "" | ||
5045 | |||
6103 | #, fuzzy | 5046 | #, fuzzy |
6104 | msgid "warning threshold (currently " | 5047 | msgid "warning threshold (currently " |
6105 | msgstr "Warning threshold Integer sein" | 5048 | msgstr "Warning threshold Integer sein" |
6106 | 5049 | ||
6107 | #: plugins-root/check_icmp.c:1300 | ||
6108 | #, fuzzy | 5050 | #, fuzzy |
6109 | msgid "critical threshold (currently " | 5051 | msgid "critical threshold (currently " |
6110 | msgstr "Critical threshold muss ein Integer sein" | 5052 | msgstr "Critical threshold muss ein Integer sein" |
6111 | 5053 | ||
6112 | #: plugins-root/check_icmp.c:1303 | ||
6113 | #, fuzzy | 5054 | #, fuzzy |
6114 | msgid "specify a source IP address or device name" | 5055 | msgid "specify a source IP address or device name" |
6115 | msgstr "Hostname oder Serveradresse muss angegeben werden" | 5056 | msgstr "Hostname oder Serveradresse muss angegeben werden" |
6116 | 5057 | ||
6117 | #: plugins-root/check_icmp.c:1305 | ||
6118 | msgid "number of packets to send (currently " | 5058 | msgid "number of packets to send (currently " |
6119 | msgstr "" | 5059 | msgstr "" |
6120 | 5060 | ||
6121 | #: plugins-root/check_icmp.c:1308 | ||
6122 | msgid "max packet interval (currently " | 5061 | msgid "max packet interval (currently " |
6123 | msgstr "" | 5062 | msgstr "" |
6124 | 5063 | ||
6125 | #: plugins-root/check_icmp.c:1311 | ||
6126 | msgid "max target interval (currently " | 5064 | msgid "max target interval (currently " |
6127 | msgstr "" | 5065 | msgstr "" |
6128 | 5066 | ||
6129 | #: plugins-root/check_icmp.c:1314 | ||
6130 | msgid "number of alive hosts required for success" | 5067 | msgid "number of alive hosts required for success" |
6131 | msgstr "" | 5068 | msgstr "" |
6132 | 5069 | ||
6133 | #: plugins-root/check_icmp.c:1317 | ||
6134 | msgid "TTL on outgoing packets (currently " | 5070 | msgid "TTL on outgoing packets (currently " |
6135 | msgstr "" | 5071 | msgstr "" |
6136 | 5072 | ||
6137 | #: plugins-root/check_icmp.c:1320 | ||
6138 | msgid "timeout value (seconds, currently " | 5073 | msgid "timeout value (seconds, currently " |
6139 | msgstr "" | 5074 | msgstr "" |
6140 | 5075 | ||
6141 | #: plugins-root/check_icmp.c:1323 | ||
6142 | msgid "Number of icmp data bytes to send" | 5076 | msgid "Number of icmp data bytes to send" |
6143 | msgstr "" | 5077 | msgstr "" |
6144 | 5078 | ||
6145 | #: plugins-root/check_icmp.c:1324 | ||
6146 | msgid "Packet size will be data bytes + icmp header (currently" | 5079 | msgid "Packet size will be data bytes + icmp header (currently" |
6147 | msgstr "" | 5080 | msgstr "" |
6148 | 5081 | ||
6149 | #: plugins-root/check_icmp.c:1326 | ||
6150 | msgid "verbose" | 5082 | msgid "verbose" |
6151 | msgstr "" | 5083 | msgstr "" |
6152 | 5084 | ||
6153 | #: plugins-root/check_icmp.c:1330 | ||
6154 | msgid "The -H switch is optional. Naming a host (or several) to check is not." | 5085 | msgid "The -H switch is optional. Naming a host (or several) to check is not." |
6155 | msgstr "" | 5086 | msgstr "" |
6156 | 5087 | ||
6157 | #: plugins-root/check_icmp.c:1332 | ||
6158 | msgid "" | 5088 | msgid "" |
6159 | "Threshold format for -w and -c is 200.25,60% for 200.25 msec RTA and 60%" | 5089 | "Threshold format for -w and -c is 200.25,60% for 200.25 msec RTA and 60%" |
6160 | msgstr "" | 5090 | msgstr "" |
6161 | 5091 | ||
6162 | #: plugins-root/check_icmp.c:1333 | ||
6163 | msgid "packet loss. The default values should work well for most users." | 5092 | msgid "packet loss. The default values should work well for most users." |
6164 | msgstr "" | 5093 | msgstr "" |
6165 | 5094 | ||
6166 | #: plugins-root/check_icmp.c:1334 | ||
6167 | msgid "" | 5095 | msgid "" |
6168 | "You can specify different RTA factors using the standardized abbreviations" | 5096 | "You can specify different RTA factors using the standardized abbreviations" |
6169 | msgstr "" | 5097 | msgstr "" |
6170 | 5098 | ||
6171 | #: plugins-root/check_icmp.c:1335 | ||
6172 | msgid "" | 5099 | msgid "" |
6173 | "us (microseconds), ms (milliseconds, default) or just plain s for seconds." | 5100 | "us (microseconds), ms (milliseconds, default) or just plain s for seconds." |
6174 | msgstr "" | 5101 | msgstr "" |
6175 | 5102 | ||
6176 | #: plugins-root/check_icmp.c:1341 | ||
6177 | msgid "The -v switch can be specified several times for increased verbosity." | 5103 | msgid "The -v switch can be specified several times for increased verbosity." |
6178 | msgstr "" | 5104 | msgstr "" |
6179 | 5105 | ||
6180 | #~ msgid "Critical threshold must be integer" | 5106 | #, fuzzy, c-format |
6181 | #~ msgstr "Critical threshold muss ein Integer sein" | 5107 | #~ msgid "%s - Plugin timed out after %d seconds\n" |
6182 | 5108 | #~ msgstr "CRITICAL - Dokumentendatum ist %d Sekunden in der Zukunft\n" | |
6183 | #~ msgid "Warning threshold must be integer" | ||
6184 | #~ msgstr "Warning threshold Integer sein" | ||
6185 | 5109 | ||
6186 | #, fuzzy | 5110 | #, fuzzy |
6187 | #~ msgid "Critical Process Count must be an integer!" | 5111 | #~ msgid "Critical Process Count must be an integer!" |
@@ -6199,10 +5123,10 @@ msgstr "" | |||
6199 | #~ msgstr "CRITICAL - Konnte kein Serverzertifikat erhalten\n" | 5123 | #~ msgstr "CRITICAL - Konnte kein Serverzertifikat erhalten\n" |
6200 | 5124 | ||
6201 | #~ msgid "Invalid HTTP response received from host\n" | 5125 | #~ msgid "Invalid HTTP response received from host\n" |
6202 | #~ msgstr "Ungültige HTTP Antwort von Host empfangen\n" | 5126 | #~ msgstr "Ungültige HTTP Antwort von Host empfangen\n" |
6203 | 5127 | ||
6204 | #~ msgid "Invalid HTTP response received from host on port %d\n" | 5128 | #~ msgid "Invalid HTTP response received from host on port %d\n" |
6205 | #~ msgstr "Ungültige HTTP Antwort von Host erhalten auf Port %d\n" | 5129 | #~ msgstr "Ungültige HTTP Antwort von Host erhalten auf Port %d\n" |
6206 | 5130 | ||
6207 | #~ msgid "HTTP CRITICAL: %s\n" | 5131 | #~ msgid "HTTP CRITICAL: %s\n" |
6208 | #~ msgstr "HTTP CRITICAL: %s\n" | 5132 | #~ msgstr "HTTP CRITICAL: %s\n" |
@@ -6230,20 +5154,12 @@ msgstr "" | |||
6230 | #~ msgstr "HTTP CRITICAL - Text nicht gefunden%s|%s %s\n" | 5154 | #~ msgstr "HTTP CRITICAL - Text nicht gefunden%s|%s %s\n" |
6231 | 5155 | ||
6232 | #, fuzzy | 5156 | #, 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" | 5157 | #~ msgid "HTTP UNKNOWN - could not allocate url\n" |
6238 | #~ msgstr "HTTP UNKNOWN - Konnte·url·nicht·zuweisen\n" | 5158 | #~ msgstr "HTTP UNKNOWN - Konnte·url·nicht·zuweisen\n" |
6239 | |||
6240 | #, fuzzy | ||
6241 | #~ msgid "HTTP UNKNOWN - Could not allocate server_url%s\n" | ||
6242 | #~ msgstr "HTTP UNKNOWN - Konnte·url·nicht·zuweisen\n" | ||
6243 | 5159 | ||
6244 | #, fuzzy | 5160 | #, fuzzy |
6245 | #~ msgid "snmpget returned an error status" | 5161 | #~ msgid "snmpget returned an error status" |
6246 | #~ msgstr "dig hat einen Fehler zurückgegeben" | 5162 | #~ msgstr "dig hat einen Fehler zurückgegeben" |
6247 | 5163 | ||
6248 | #, fuzzy | 5164 | #, fuzzy |
6249 | #~ msgid "Invalid critical threshold" | 5165 | #~ msgid "Invalid critical threshold" |
@@ -6287,7 +5203,7 @@ msgstr "" | |||
6287 | #~ " ssh anweisen Protokoll 2 zu verwenden\n" | 5203 | #~ " ssh anweisen Protokoll 2 zu verwenden\n" |
6288 | #~ " -S, --skiplines=n\n" | 5204 | #~ " -S, --skiplines=n\n" |
6289 | #~ " Ignoriere die ersten n Zeilen auf STDERR (um Logon Banner zu " | 5205 | #~ " Ignoriere die ersten n Zeilen auf STDERR (um Logon Banner zu " |
6290 | #~ "unterdrücken)\n" | 5206 | #~ "unterdrücken)\n" |
6291 | #~ " -f\n" | 5207 | #~ " -f\n" |
6292 | #~ " ssh anweisen fork zu nutzen statt ein tty zu erzeugen\n" | 5208 | #~ " ssh anweisen fork zu nutzen statt ein tty zu erzeugen\n" |
6293 | 5209 | ||
@@ -6306,13 +5222,13 @@ msgstr "" | |||
6306 | #~ " short name of host in nagios configuration [optional]\n" | 5222 | #~ " short name of host in nagios configuration [optional]\n" |
6307 | #~ msgstr "" | 5223 | #~ msgstr "" |
6308 | #~ " -C, --command='COMMAND STRING'\n" | 5224 | #~ " -C, --command='COMMAND STRING'\n" |
6309 | #~ " Befehl der auf der entfernten Maschine ausgeführt werden soll\n" | 5225 | #~ " Befehl der auf der entfernten Maschine ausgeführt werden soll\n" |
6310 | #~ " -l, --logname=USERNAME\n" | 5226 | #~ " -l, --logname=USERNAME\n" |
6311 | #~ " SSH user name auf dem entfernten Host [optional]\n" | 5227 | #~ " SSH user name auf dem entfernten Host [optional]\n" |
6312 | #~ " -i, --identity=KEYFILE\n" | 5228 | #~ " -i, --identity=KEYFILE\n" |
6313 | #~ " zu verwendende Schlüsseldatei [optional]\n" | 5229 | #~ " zu verwendende Schlüsseldatei [optional]\n" |
6314 | #~ " -O, --output=FILE\n" | 5230 | #~ " -O, --output=FILE\n" |
6315 | #~ " externe Befehlsdatei für nagios [optional]\n" | 5231 | #~ " externe Befehlsdatei für nagios [optional]\n" |
6316 | #~ " -s, --services=LIST\n" | 5232 | #~ " -s, --services=LIST\n" |
6317 | #~ " Liste von nagios Servicenamen, getrennt durch ':' [optional]\n" | 5233 | #~ " Liste von nagios Servicenamen, getrennt durch ':' [optional]\n" |
6318 | #~ " -n, --name=NAME\n" | 5234 | #~ " -n, --name=NAME\n" |
@@ -6349,15 +5265,15 @@ msgstr "" | |||
6349 | #~ "greater than zero" | 5265 | #~ "greater than zero" |
6350 | #~ msgstr "" | 5266 | #~ msgstr "" |
6351 | #~ "INPUT ERROR: C_DF (%lu) sollte kleiner sein als W_DF (%lu) und beide " | 5267 | #~ "INPUT ERROR: C_DF (%lu) sollte kleiner sein als W_DF (%lu) und beide " |
6352 | #~ "sollten größer als 0 sein" | 5268 | #~ "sollten größer als 0 sein" |
6353 | 5269 | ||
6354 | #, fuzzy | 5270 | #, fuzzy |
6355 | #~ msgid "No response from host on port %d\n" | 5271 | #~ msgid "No response from host on port %d\n" |
6356 | #~ msgstr "Ungültige HTTP Antwort von Host erhalten auf Port %d\n" | 5272 | #~ msgstr "Ungültige HTTP Antwort von Host erhalten auf Port %d\n" |
6357 | 5273 | ||
6358 | #, fuzzy | 5274 | #, fuzzy |
6359 | #~ msgid "Invalid response received from host on port %d\n" | 5275 | #~ msgid "Invalid response received from host on port %d\n" |
6360 | #~ msgstr "Ungültige HTTP Antwort von Host erhalten auf Port %d\n" | 5276 | #~ msgstr "Ungültige HTTP Antwort von Host erhalten auf Port %d\n" |
6361 | 5277 | ||
6362 | #~ msgid "%.3f seconds response time (%s)" | 5278 | #~ msgid "%.3f seconds response time (%s)" |
6363 | #~ msgstr "%.3f Sekunden Antwortzeit (%s)" | 5279 | #~ msgstr "%.3f Sekunden Antwortzeit (%s)" |
@@ -6372,7 +5288,7 @@ msgstr "" | |||
6372 | #~ " Exit with CRITICAL status if less than INTEGER --units of disk are " | 5288 | #~ " Exit with CRITICAL status if less than INTEGER --units of disk are " |
6373 | #~ "free\n" | 5289 | #~ "free\n" |
6374 | #~ " -c, --critical=PERCENT%%\n" | 5290 | #~ " -c, --critical=PERCENT%%\n" |
6375 | #~ " Exit with CRITCAL status if less than PERCENT of disk space is free\n" | 5291 | #~ " Exit with CRITICAL status if less than PERCENT of disk space is free\n" |
6376 | #~ " -C, --clear\n" | 5292 | #~ " -C, --clear\n" |
6377 | #~ " Clear thresholds\n" | 5293 | #~ " Clear thresholds\n" |
6378 | #~ msgstr "" | 5294 | #~ msgstr "" |
@@ -6385,7 +5301,7 @@ msgstr "" | |||
6385 | #~ " -c, --critical=PERCENT%%\n" | 5301 | #~ " -c, --critical=PERCENT%%\n" |
6386 | #~ " meldet Status CRITICAL, wenn weniger als PERCENT --Plattenplatz frei\n" | 5302 | #~ " meldet Status CRITICAL, wenn weniger als PERCENT --Plattenplatz frei\n" |
6387 | #~ " -C, --clear\n" | 5303 | #~ " -C, --clear\n" |
6388 | #~ " Schwellwerte löschen\n" | 5304 | #~ " Schwellwerte löschen\n" |
6389 | 5305 | ||
6390 | #~ msgid "" | 5306 | #~ msgid "" |
6391 | #~ "Examples:\n" | 5307 | #~ "Examples:\n" |
@@ -6394,7 +5310,7 @@ msgstr "" | |||
6394 | #~ msgstr "" | 5310 | #~ msgstr "" |
6395 | #~ "Beispiel:\n" | 5311 | #~ "Beispiel:\n" |
6396 | #~ " check_disk -w 10% -c 5% -p /tmp -p /var -C -w 100000 -c 50000 -p /\n" | 5312 | #~ " check_disk -w 10% -c 5% -p /tmp -p /var -C -w 100000 -c 50000 -p /\n" |
6397 | #~ " Prüft /tmp und /var mit 10%,5% und / mit 100MB, 50MB\n" | 5313 | #~ " Prüft /tmp und /var mit 10%,5% und / mit 100MB, 50MB\n" |
6398 | 5314 | ||
6399 | #~ msgid "" | 5315 | #~ msgid "" |
6400 | #~ "This plugin uses the nslookup program to obtain the IP address\n" | 5316 | #~ "This plugin uses the nslookup program to obtain the IP address\n" |
@@ -6413,10 +5329,7 @@ msgstr "" | |||
6413 | #~ msgstr "HTTP CRITICAL - Konnte keine SSL Verbindung herstellen\n" | 5329 | #~ msgstr "HTTP CRITICAL - Konnte keine SSL Verbindung herstellen\n" |
6414 | 5330 | ||
6415 | #~ msgid "Client Certificate Required\n" | 5331 | #~ msgid "Client Certificate Required\n" |
6416 | #~ msgstr "Clientzertifikat benötigt\n" | 5332 | #~ msgstr "Clientzertifikat benötigt\n" |
6417 | |||
6418 | #~ msgid "Failed" | ||
6419 | #~ msgstr "Fehlgeschlagen" | ||
6420 | 5333 | ||
6421 | #~ msgid "CRITICAL - Cannot create SSL context.\n" | 5334 | #~ msgid "CRITICAL - Cannot create SSL context.\n" |
6422 | #~ msgstr "CRITICAL - Konnte SSL Kontext nicht erzeugen.\n" | 5335 | #~ msgstr "CRITICAL - Konnte SSL Kontext nicht erzeugen.\n" |
@@ -6426,7 +5339,7 @@ msgstr "" | |||
6426 | 5339 | ||
6427 | #, fuzzy | 5340 | #, fuzzy |
6428 | #~ msgid "Failed to allocate memory for hostname" | 5341 | #~ msgid "Failed to allocate memory for hostname" |
6429 | #~ msgstr "konnte keinen Speicher für '%s' reservieren\n" | 5342 | #~ msgstr "konnte keinen Speicher für '%s' reservieren\n" |
6430 | 5343 | ||
6431 | #, fuzzy | 5344 | #, fuzzy |
6432 | #~ msgid "CRITICAL - %d of %d hosts are alive\n" | 5345 | #~ msgid "CRITICAL - %d of %d hosts are alive\n" |
@@ -6434,7 +5347,7 @@ msgstr "" | |||
6434 | 5347 | ||
6435 | #, fuzzy | 5348 | #, fuzzy |
6436 | #~ msgid "%s has no address data\n" | 5349 | #~ msgid "%s has no address data\n" |
6437 | #~ msgstr "Nameserver %s hat keine Datensätze\n" | 5350 | #~ msgstr "Nameserver %s hat keine Datensätze\n" |
6438 | 5351 | ||
6439 | #, fuzzy | 5352 | #, fuzzy |
6440 | #~ msgid "CRITICAL - Could not make SSL connection\n" | 5353 | #~ msgid "CRITICAL - Could not make SSL connection\n" |
@@ -6446,7 +5359,7 @@ msgstr "" | |||
6446 | 5359 | ||
6447 | #, fuzzy | 5360 | #, fuzzy |
6448 | #~ msgid "Certificate expires today (%s).\n" | 5361 | #~ msgid "Certificate expires today (%s).\n" |
6449 | #~ msgstr "Clientzertifikat benötigt\n" | 5362 | #~ msgstr "Clientzertifikat benötigt\n" |
6450 | 5363 | ||
6451 | #, fuzzy | 5364 | #, fuzzy |
6452 | #~ msgid "ERROR: Cannot create SSL context.\n" | 5365 | #~ msgid "ERROR: Cannot create SSL context.\n" |
@@ -6474,7 +5387,7 @@ msgstr "" | |||
6474 | #~ msgstr "Time interval muss ein positiver Integer sein" | 5387 | #~ msgstr "Time interval muss ein positiver Integer sein" |
6475 | 5388 | ||
6476 | #~ msgid "check_http: invalid option - SSL is not available\n" | 5389 | #~ msgid "check_http: invalid option - SSL is not available\n" |
6477 | #~ msgstr "check_http: ungültige Option - SSL ist nicht verfügbar\n" | 5390 | #~ msgstr "check_http: ungültige Option - SSL ist nicht verfügbar\n" |
6478 | 5391 | ||
6479 | #~ msgid "invalid hostname/address" | 5392 | #~ msgid "invalid hostname/address" |
6480 | #~ msgstr "Ungültige(r) Hostname/Adresse" | 5393 | #~ msgstr "Ungültige(r) Hostname/Adresse" |
@@ -1,6 +1,6 @@ | |||
1 | # translation of fr.po to | 1 | # translation of fr.po to |
2 | # Messages français pour Nagios Plugins | 2 | # Messages français pour Nagios Plugins |
3 | # Copyright (C) 2003-2004 Nagios Plugin Development Group | 3 | # Copyright (C) 2003-2023 Nagios Plugin Development Group |
4 | # This file is distributed under the same license as the nagiosplug package. | 4 | # This file is distributed under the same license as the nagiosplug package. |
5 | # | 5 | # |
6 | # Karl DeBisschop <kdebisschop@users.sourceforge.net>, 2003. | 6 | # Karl DeBisschop <kdebisschop@users.sourceforge.net>, 2003. |
@@ -8,112 +8,77 @@ | |||
8 | # Thomas Guyot-Sionnest <dermoth@aei.ca>, 2007. | 8 | # Thomas Guyot-Sionnest <dermoth@aei.ca>, 2007. |
9 | msgid "" | 9 | msgid "" |
10 | msgstr "" | 10 | msgstr "" |
11 | "Project-Id-Version: fr\n" | 11 | "Project-Id-Version: PACKAGE VERSION\n" |
12 | "Report-Msgid-Bugs-To: devel@monitoring-plugins.org\n" | 12 | "Report-Msgid-Bugs-To: devel@monitoring-plugins.org\n" |
13 | "POT-Creation-Date: 2014-01-19 16:30-0500\n" | 13 | "POT-Creation-Date: 2023-09-05 00:31+0200\n" |
14 | "PO-Revision-Date: 2010-04-21 23:38-0400\n" | 14 | "PO-Revision-Date: 2010-04-21 23:38-0400\n" |
15 | "Last-Translator: Thomas Guyot-Sionnest <dermoth@aei.ca>\n" | 15 | "Last-Translator: \n" |
16 | "Language-Team: Nagios Plugin Development Mailing List <nagiosplug-" | 16 | "Language-Team: Monitoring Plugin Development Team <devel@monitoring-plugins.org>\n" |
17 | "devel@monitoring-plugins.org>\n" | 17 | "Language: fr\n" |
18 | "Language: \n" | ||
19 | "MIME-Version: 1.0\n" | 18 | "MIME-Version: 1.0\n" |
20 | "Content-Type: text/plain; charset=UTF-8\n" | 19 | "Content-Type: text/plain; charset=UTF-8\n" |
21 | "Content-Transfer-Encoding: 8bit\n" | 20 | "Content-Transfer-Encoding: 8bit\n" |
22 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | 21 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" |
23 | "X-Generator: KBabel 1.11.4\n" | 22 | "X-Generator: KBabel 1.11.4\n" |
24 | 23 | ||
25 | #: plugins/check_by_ssh.c:86 plugins/check_cluster.c:76 plugins/check_dig.c:88 | ||
26 | #: plugins/check_disk.c:194 plugins/check_dns.c:102 plugins/check_dummy.c:52 | ||
27 | #: plugins/check_fping.c:93 plugins/check_game.c:82 plugins/check_hpjd.c:103 | ||
28 | #: plugins/check_http.c:167 plugins/check_ldap.c:109 plugins/check_load.c:122 | ||
29 | #: plugins/check_mrtgtraf.c:83 plugins/check_mysql.c:122 | ||
30 | #: plugins/check_nagios.c:91 plugins/check_nt.c:127 plugins/check_ntp.c:770 | ||
31 | #: plugins/check_ntp_peer.c:575 plugins/check_ntp_time.c:552 | ||
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 | ||
34 | #: plugins/check_radius.c:160 plugins/check_real.c:80 plugins/check_smtp.c:144 | ||
35 | #: plugins/check_snmp.c:240 plugins/check_ssh.c:73 plugins/check_swap.c:110 | ||
36 | #: plugins/check_tcp.c:218 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 | ||
38 | msgid "Could not parse arguments" | 24 | msgid "Could not parse arguments" |
39 | msgstr "Impossible de décomposer les arguments" | 25 | msgstr "Impossible de décomposer les arguments" |
40 | 26 | ||
41 | #: plugins/check_by_ssh.c:90 plugins/check_dig.c:82 plugins/check_dns.c:95 | ||
42 | #: plugins/check_nagios.c:95 plugins/check_pgsql.c:178 plugins/check_ping.c:99 | ||
43 | #: plugins/check_procs.c:188 plugins/check_snmp.c:336 plugins/negate.c:79 | ||
44 | msgid "Cannot catch SIGALRM" | 27 | msgid "Cannot catch SIGALRM" |
45 | msgstr "Impossible d'obtenir le signal SIGALRM" | 28 | msgstr "Impossible d'obtenir le signal SIGALRM" |
46 | 29 | ||
47 | #: plugins/check_by_ssh.c:110 | 30 | #, fuzzy, c-format |
31 | msgid "SSH connection failed: %s\n" | ||
32 | msgstr "L'exécution de la commande à distance %s à échoué\n" | ||
33 | |||
48 | #, c-format | 34 | #, c-format |
49 | msgid "Remote command execution failed: %s\n" | 35 | msgid "Remote command execution failed: %s\n" |
50 | msgstr "L'exécution de la commande à distance %s à échoué\n" | 36 | msgstr "L'exécution de la commande à distance %s à échoué\n" |
51 | 37 | ||
52 | #: plugins/check_by_ssh.c:122 | ||
53 | #, c-format | 38 | #, c-format |
54 | msgid "%s - check_by_ssh: Remote command '%s' returned status %d\n" | 39 | msgid "%s - check_by_ssh: Remote command '%s' returned status %d\n" |
55 | msgstr "" | 40 | msgstr "" |
56 | 41 | ||
57 | #: plugins/check_by_ssh.c:134 | ||
58 | #, c-format | 42 | #, c-format |
59 | msgid "SSH WARNING: could not open %s\n" | 43 | msgid "SSH WARNING: could not open %s\n" |
60 | msgstr "SSH AVERTISSEMENT: impossible d'ouvrir %s\n" | 44 | msgstr "SSH AVERTISSEMENT: impossible d'ouvrir %s\n" |
61 | 45 | ||
62 | #: plugins/check_by_ssh.c:143 | ||
63 | #, c-format | 46 | #, c-format |
64 | msgid "%s: Error parsing output\n" | 47 | msgid "%s: Error parsing output\n" |
65 | msgstr "%s: Erreur d'analyse du résultat\n" | 48 | msgstr "%s: Erreur d'analyse du résultat\n" |
66 | 49 | ||
67 | #: plugins/check_by_ssh.c:220 plugins/check_disk.c:476 | ||
68 | #: plugins/check_http.c:278 plugins/check_ldap.c:293 plugins/check_pgsql.c:311 | ||
69 | #: plugins/check_procs.c:437 plugins/check_radius.c:308 | ||
70 | #: plugins/check_real.c:356 plugins/check_smtp.c:581 plugins/check_snmp.c:736 | ||
71 | #: plugins/check_ssh.c:138 plugins/check_tcp.c:505 plugins/check_time.c:302 | ||
72 | #: plugins/check_ups.c:556 plugins/negate.c:164 | ||
73 | msgid "Timeout interval must be a positive integer" | 50 | msgid "Timeout interval must be a positive integer" |
74 | msgstr "Le délai d'attente doit être un entier positif" | 51 | msgstr "Le délai d'attente doit être un entier positif" |
75 | 52 | ||
76 | #: plugins/check_by_ssh.c:230 plugins/check_pgsql.c:341 | ||
77 | #: plugins/check_radius.c:272 plugins/check_real.c:327 | ||
78 | #: plugins/check_smtp.c:506 plugins/check_tcp.c:511 plugins/check_time.c:296 | ||
79 | #: plugins/check_ups.c:518 | ||
80 | msgid "Port must be a positive integer" | 53 | msgid "Port must be a positive integer" |
81 | msgstr "Le numéro du port doit être un entier positif" | 54 | msgstr "Le numéro du port doit être un entier positif" |
82 | 55 | ||
83 | #: plugins/check_by_ssh.c:291 | ||
84 | msgid "skip-stdout argument must be an integer" | 56 | msgid "skip-stdout argument must be an integer" |
85 | msgstr "Le nombres de lignes à sauter (skip-stdout) doit être un entier" | 57 | msgstr "Le nombres de lignes à sauter (skip-stdout) doit être un entier" |
86 | 58 | ||
87 | #: plugins/check_by_ssh.c:299 | ||
88 | msgid "skip-stderr argument must be an integer" | 59 | msgid "skip-stderr argument must be an integer" |
89 | msgstr "Le nombres de lignes à sauter (skip-stderr) doit être un entier" | 60 | msgstr "Le nombres de lignes à sauter (skip-stderr) doit être un entier" |
90 | 61 | ||
91 | #: plugins/check_by_ssh.c:322 | ||
92 | #, c-format | 62 | #, c-format |
93 | msgid "%s: You must provide a host name\n" | 63 | msgid "%s: You must provide a host name\n" |
94 | msgstr "%s: Vous devez fournir un nom d'hôte\n" | 64 | msgstr "%s: Vous devez fournir un nom d'hôte\n" |
95 | 65 | ||
96 | #: plugins/check_by_ssh.c:340 | ||
97 | msgid "No remotecmd" | 66 | msgid "No remotecmd" |
98 | msgstr "Pas de commande distante" | 67 | msgstr "Pas de commande distante" |
99 | 68 | ||
100 | #: plugins/check_by_ssh.c:354 | ||
101 | #, c-format | 69 | #, c-format |
102 | msgid "%s: Argument limit of %d exceeded\n" | 70 | msgid "%s: Argument limit of %d exceeded\n" |
103 | msgstr "" | 71 | msgstr "" |
104 | 72 | ||
105 | #: plugins/check_by_ssh.c:357 | ||
106 | msgid "Can not (re)allocate 'commargv' buffer\n" | 73 | msgid "Can not (re)allocate 'commargv' buffer\n" |
107 | msgstr "Impossible de réallouer le tampon 'commargv'\n" | 74 | msgstr "Impossible de réallouer le tampon 'commargv'\n" |
108 | 75 | ||
109 | #: plugins/check_by_ssh.c:371 | ||
110 | #, c-format | 76 | #, c-format |
111 | msgid "" | 77 | msgid "" |
112 | "%s: In passive mode, you must provide a service name for each command.\n" | 78 | "%s: In passive mode, you must provide a service name for each command.\n" |
113 | msgstr "" | 79 | msgstr "" |
114 | "%s: En mode passif, vous devez fournir un service pour chaque commande.\n" | 80 | "%s: En mode passif, vous devez fournir un service pour chaque commande.\n" |
115 | 81 | ||
116 | #: plugins/check_by_ssh.c:374 | ||
117 | #, fuzzy, c-format | 82 | #, fuzzy, c-format |
118 | msgid "" | 83 | msgid "" |
119 | "%s: In passive mode, you must provide the host short name from the " | 84 | "%s: In passive mode, you must provide the host short name from the " |
@@ -122,471 +87,353 @@ msgstr "" | |||
122 | "%s: En mode passif, vous devez fournir le nom court du hôte mentionné dans " | 87 | "%s: En mode passif, vous devez fournir le nom court du hôte mentionné dans " |
123 | "la configuration de nagios.\n" | 88 | "la configuration de nagios.\n" |
124 | 89 | ||
125 | #: plugins/check_by_ssh.c:388 | ||
126 | #, c-format | 90 | #, c-format |
127 | msgid "This plugin uses SSH to execute commands on a remote host" | 91 | msgid "This plugin uses SSH to execute commands on a remote host" |
128 | msgstr "Ce plugin utilise SSH pour exécuter des commandes sur un hôte distant" | 92 | msgstr "Ce plugin utilise SSH pour exécuter des commandes sur un hôte distant" |
129 | 93 | ||
130 | #: plugins/check_by_ssh.c:403 | ||
131 | msgid "tell ssh to use Protocol 1 [optional]" | 94 | msgid "tell ssh to use Protocol 1 [optional]" |
132 | msgstr "dire à ssh d'utiliser le protocole version 1 [optionnel]" | 95 | msgstr "dire à ssh d'utiliser le protocole version 1 [optionnel]" |
133 | 96 | ||
134 | #: plugins/check_by_ssh.c:405 | ||
135 | msgid "tell ssh to use Protocol 2 [optional]" | 97 | msgid "tell ssh to use Protocol 2 [optional]" |
136 | msgstr "dire à ssh d'utiliser le protocole 2 [optionnel]" | 98 | msgstr "dire à ssh d'utiliser le protocole 2 [optionnel]" |
137 | 99 | ||
138 | #: plugins/check_by_ssh.c:407 | ||
139 | msgid "Ignore all or (if specified) first n lines on STDOUT [optional]" | 100 | msgid "Ignore all or (if specified) first n lines on STDOUT [optional]" |
140 | msgstr "" | 101 | msgstr "" |
141 | 102 | ||
142 | #: plugins/check_by_ssh.c:409 | ||
143 | msgid "Ignore all or (if specified) first n lines on STDERR [optional]" | 103 | msgid "Ignore all or (if specified) first n lines on STDERR [optional]" |
144 | msgstr "" | 104 | msgstr "" |
145 | 105 | ||
146 | #: plugins/check_by_ssh.c:411 | 106 | msgid "Exit with an warning, if there is an output on STDERR" |
107 | msgstr "" | ||
108 | |||
147 | msgid "" | 109 | msgid "" |
148 | "tells ssh to fork rather than create a tty [optional]. This will always " | 110 | "tells ssh to fork rather than create a tty [optional]. This will always " |
149 | "return OK if ssh is executed" | 111 | "return OK if ssh is executed" |
150 | msgstr "" | 112 | msgstr "" |
151 | 113 | ||
152 | #: plugins/check_by_ssh.c:413 | ||
153 | msgid "command to execute on the remote machine" | 114 | msgid "command to execute on the remote machine" |
154 | msgstr "commande à exécuter sur la machine distante" | 115 | msgstr "commande à exécuter sur la machine distante" |
155 | 116 | ||
156 | #: plugins/check_by_ssh.c:415 | ||
157 | msgid "SSH user name on remote host [optional]" | 117 | msgid "SSH user name on remote host [optional]" |
158 | msgstr "Nom d'utilisateur ssh sur la machine distante [optionnel]" | 118 | msgstr "Nom d'utilisateur ssh sur la machine distante [optionnel]" |
159 | 119 | ||
160 | #: plugins/check_by_ssh.c:417 | ||
161 | msgid "identity of an authorized key [optional]" | 120 | msgid "identity of an authorized key [optional]" |
162 | msgstr "Identité de la clé autorisée [optionnel]" | 121 | msgstr "Identité de la clé autorisée [optionnel]" |
163 | 122 | ||
164 | #: plugins/check_by_ssh.c:419 | ||
165 | #, fuzzy | 123 | #, fuzzy |
166 | msgid "external command file for monitoring [optional]" | 124 | msgid "external command file for monitoring [optional]" |
167 | msgstr "commande externe pour nagios [optionnel]" | 125 | msgstr "commande externe pour nagios [optionnel]" |
168 | 126 | ||
169 | #: plugins/check_by_ssh.c:421 | ||
170 | #, fuzzy | 127 | #, fuzzy |
171 | msgid "list of monitoring service names, separated by ':' [optional]" | 128 | msgid "list of monitoring service names, separated by ':' [optional]" |
172 | msgstr "liste des services nagios, séparés par ':' [optionnel] " | 129 | msgstr "liste des services nagios, séparés par ':' [optionnel] " |
173 | 130 | ||
174 | #: plugins/check_by_ssh.c:423 | ||
175 | #, fuzzy | 131 | #, fuzzy |
176 | msgid "short name of host in the monitoring configuration [optional]" | 132 | msgid "short name of host in the monitoring configuration [optional]" |
177 | msgstr "nom court de l'hôte dans la configuration nagios [optionnel]" | 133 | msgstr "nom court de l'hôte dans la configuration nagios [optionnel]" |
178 | 134 | ||
179 | #: plugins/check_by_ssh.c:425 | ||
180 | msgid "Call ssh with '-o OPTION' (may be used multiple times) [optional]" | 135 | msgid "Call ssh with '-o OPTION' (may be used multiple times) [optional]" |
181 | msgstr "" | 136 | msgstr "" |
182 | "appelle ssh avec '-o OPTION' (peut être utilisé plusieurs fois) [optionnel]" | 137 | "appelle ssh avec '-o OPTION' (peut être utilisé plusieurs fois) [optionnel]" |
183 | 138 | ||
184 | #: plugins/check_by_ssh.c:427 | ||
185 | #, fuzzy | 139 | #, fuzzy |
186 | msgid "Tell ssh to use this configfile [optional]" | 140 | msgid "Tell ssh to use this configfile [optional]" |
187 | msgstr "dire à ssh d'utiliser le protocole version 1 [optionnel]" | 141 | msgstr "dire à ssh d'utiliser le protocole version 1 [optionnel]" |
188 | 142 | ||
189 | #: plugins/check_by_ssh.c:429 | ||
190 | msgid "Tell ssh to suppress warning and diagnostic messages [optional]" | 143 | msgid "Tell ssh to suppress warning and diagnostic messages [optional]" |
191 | msgstr "" | 144 | msgstr "" |
192 | "dire à ssh de supprimer les messages d'erreurs et de diagnostic [optionnel]" | 145 | "dire à ssh de supprimer les messages d'erreurs et de diagnostic [optionnel]" |
193 | 146 | ||
194 | #: plugins/check_by_ssh.c:434 | 147 | msgid "Make connection problems return UNKNOWN instead of CRITICAL" |
148 | msgstr "" | ||
149 | |||
195 | msgid "The most common mode of use is to refer to a local identity file with" | 150 | msgid "The most common mode of use is to refer to a local identity file with" |
196 | msgstr "" | 151 | msgstr "" |
197 | 152 | ||
198 | #: plugins/check_by_ssh.c:435 | ||
199 | msgid "the '-i' option. In this mode, the identity pair should have a null" | 153 | msgid "the '-i' option. In this mode, the identity pair should have a null" |
200 | msgstr "" | 154 | msgstr "" |
201 | 155 | ||
202 | #: plugins/check_by_ssh.c:436 | ||
203 | msgid "passphrase and the public key should be listed in the authorized_keys" | 156 | msgid "passphrase and the public key should be listed in the authorized_keys" |
204 | msgstr "" | 157 | msgstr "" |
205 | 158 | ||
206 | #: plugins/check_by_ssh.c:437 | ||
207 | msgid "file of the remote host. Usually the key will be restricted to running" | 159 | msgid "file of the remote host. Usually the key will be restricted to running" |
208 | msgstr "" | 160 | msgstr "" |
209 | 161 | ||
210 | #: plugins/check_by_ssh.c:438 | ||
211 | msgid "only one command on the remote server. If the remote SSH server tracks" | 162 | msgid "only one command on the remote server. If the remote SSH server tracks" |
212 | msgstr "" | 163 | msgstr "" |
213 | 164 | ||
214 | #: plugins/check_by_ssh.c:439 | ||
215 | msgid "invocation arguments, the one remote program may be an agent that can" | 165 | msgid "invocation arguments, the one remote program may be an agent that can" |
216 | msgstr "" | 166 | msgstr "" |
217 | 167 | ||
218 | #: plugins/check_by_ssh.c:440 | ||
219 | msgid "execute additional commands as proxy" | 168 | msgid "execute additional commands as proxy" |
220 | msgstr "" | 169 | msgstr "" |
221 | 170 | ||
222 | #: plugins/check_by_ssh.c:442 | ||
223 | msgid "To use passive mode, provide multiple '-C' options, and provide" | 171 | msgid "To use passive mode, provide multiple '-C' options, and provide" |
224 | msgstr "Pour utiliser le mode passif, utilisez plusieurs fois l'option '-C',et" | 172 | msgstr "Pour utiliser le mode passif, utilisez plusieurs fois l'option '-C',et" |
225 | 173 | ||
226 | #: plugins/check_by_ssh.c:443 | ||
227 | msgid "" | 174 | msgid "" |
228 | "all of -O, -s, and -n options (servicelist order must match '-C'options)" | 175 | "all of -O, -s, and -n options (servicelist order must match '-C'options)" |
229 | msgstr "" | 176 | msgstr "" |
230 | "et les options -O, -s, n (l'ordre des services doit correspondre aux " | 177 | "et les options -O, -s, n (l'ordre des services doit correspondre aux " |
231 | "multiples options '-C)" | 178 | "multiples options '-C)" |
232 | 179 | ||
233 | #: plugins/check_by_ssh.c:445 plugins/check_cluster.c:261 | ||
234 | #: plugins/check_dig.c:355 plugins/check_disk.c:924 plugins/check_http.c:1560 | ||
235 | #: plugins/check_nagios.c:312 plugins/check_ntp.c:869 | ||
236 | #: plugins/check_ntp_peer.c:705 plugins/check_ntp_time.c:633 | ||
237 | #: plugins/check_procs.c:763 plugins/negate.c:271 plugins/urlize.c:180 | ||
238 | msgid "Examples:" | 180 | msgid "Examples:" |
239 | msgstr "Exemples:" | 181 | msgstr "Exemples:" |
240 | 182 | ||
241 | #: plugins/check_by_ssh.c:460 plugins/check_cluster.c:274 | ||
242 | #: plugins/check_dig.c:367 plugins/check_disk.c:941 plugins/check_dns.c:486 | ||
243 | #: plugins/check_dummy.c:122 plugins/check_fping.c:505 | ||
244 | #: plugins/check_game.c:331 plugins/check_hpjd.c:414 plugins/check_http.c:1590 | ||
245 | #: plugins/check_ldap.c:451 plugins/check_load.c:334 plugins/check_mrtg.c:382 | ||
246 | #: plugins/check_mysql.c:569 plugins/check_nagios.c:323 plugins/check_nt.c:774 | ||
247 | #: plugins/check_ntp.c:888 plugins/check_ntp_peer.c:725 | ||
248 | #: plugins/check_ntp_time.c:642 plugins/check_nwstat.c:1685 | ||
249 | #: plugins/check_overcr.c:467 plugins/check_pgsql.c:578 | ||
250 | #: plugins/check_ping.c:603 plugins/check_procs.c:781 | ||
251 | #: plugins/check_radius.c:385 plugins/check_real.c:451 | ||
252 | #: plugins/check_smtp.c:843 plugins/check_snmp.c:1207 plugins/check_ssh.c:309 | ||
253 | #: plugins/check_swap.c:558 plugins/check_tcp.c:684 plugins/check_time.c:371 | ||
254 | #: plugins/check_ups.c:660 plugins/check_users.c:240 | ||
255 | #: plugins/check_ide_smart.c:640 plugins/negate.c:295 plugins/urlize.c:197 | ||
256 | #: plugins-root/check_dhcp.c:1422 plugins-root/check_icmp.c:1354 | ||
257 | msgid "Usage:" | 183 | msgid "Usage:" |
258 | msgstr "Utilisation:" | 184 | msgstr "Utilisation:" |
259 | 185 | ||
260 | #: plugins/check_cluster.c:230 | ||
261 | #, fuzzy, c-format | 186 | #, fuzzy, c-format |
262 | msgid "Host/Service Cluster Plugin for Monitoring" | 187 | msgid "Host/Service Cluster Plugin for Monitoring" |
263 | msgstr "Plugin de Cluster d'Hôte/Service pour Nagios 2" | 188 | msgstr "Plugin de Cluster d'Hôte/Service pour Nagios 2" |
264 | 189 | ||
265 | #: plugins/check_cluster.c:236 plugins/check_nt.c:676 | ||
266 | msgid "Options:" | 190 | msgid "Options:" |
267 | msgstr "Options:" | 191 | msgstr "Options:" |
268 | 192 | ||
269 | #: plugins/check_cluster.c:239 | ||
270 | msgid "Check service cluster status" | 193 | msgid "Check service cluster status" |
271 | msgstr "Vérifie l'état d'un cluster de services" | 194 | msgstr "Vérifie l'état d'un cluster de services" |
272 | 195 | ||
273 | #: plugins/check_cluster.c:241 | ||
274 | msgid "Check host cluster status" | 196 | msgid "Check host cluster status" |
275 | msgstr "Vérifie l'état d'un cluster d'hôtes" | 197 | msgstr "Vérifie l'état d'un cluster d'hôtes" |
276 | 198 | ||
277 | #: plugins/check_cluster.c:243 | ||
278 | msgid "Optional prepended text output (i.e. \"Host cluster\")" | 199 | msgid "Optional prepended text output (i.e. \"Host cluster\")" |
279 | msgstr "Texte optionnel accolé à la sortie (i.e. \"Cluster d'hôtes\")" | 200 | msgstr "Texte optionnel accolé à la sortie (i.e. \"Cluster d'hôtes\")" |
280 | 201 | ||
281 | #: plugins/check_cluster.c:245 plugins/check_cluster.c:248 | ||
282 | msgid "Specifies the range of hosts or services in cluster that must be in a" | 202 | msgid "Specifies the range of hosts or services in cluster that must be in a" |
283 | msgstr "Défini le nombre d'hôtes ou de services du cluster qui doivent être" | 203 | msgstr "Défini le nombre d'hôtes ou de services du cluster qui doivent être" |
284 | 204 | ||
285 | #: plugins/check_cluster.c:246 | ||
286 | msgid "non-OK state in order to return a WARNING status level" | 205 | msgid "non-OK state in order to return a WARNING status level" |
287 | msgstr "dans un état non-OK pour retourner un état AVERTISSEMENT" | 206 | msgstr "dans un état non-OK pour retourner un état AVERTISSEMENT" |
288 | 207 | ||
289 | #: plugins/check_cluster.c:249 | ||
290 | msgid "non-OK state in order to return a CRITICAL status level" | 208 | msgid "non-OK state in order to return a CRITICAL status level" |
291 | msgstr "dans un état non-OK pour retourner un état CRITIQUE" | 209 | msgstr "dans un état non-OK pour retourner un état CRITIQUE" |
292 | 210 | ||
293 | #: plugins/check_cluster.c:251 | ||
294 | msgid "The status codes of the hosts or services in the cluster, separated by" | 211 | msgid "The status codes of the hosts or services in the cluster, separated by" |
295 | msgstr "Les codes d'état des hôtes ou des services du cluster, séparés par des" | 212 | msgstr "Les codes d'état des hôtes ou des services du cluster, séparés par des" |
296 | 213 | ||
297 | #: plugins/check_cluster.c:252 | ||
298 | msgid "commas" | 214 | msgid "commas" |
299 | msgstr "virgules" | 215 | msgstr "virgules" |
300 | 216 | ||
301 | #: plugins/check_cluster.c:257 plugins/check_game.c:318 | ||
302 | #: plugins/check_http.c:1542 plugins/check_ldap.c:438 plugins/check_mrtg.c:363 | ||
303 | #: plugins/check_mrtgtraf.c:361 plugins/check_mysql.c:558 | ||
304 | #: plugins/check_nt.c:758 plugins/check_ntp.c:865 plugins/check_ntp_peer.c:696 | ||
305 | #: plugins/check_ntp_time.c:626 plugins/check_nwstat.c:1670 | ||
306 | #: plugins/check_overcr.c:456 plugins/check_snmp.c:1178 | ||
307 | #: plugins/check_swap.c:547 plugins/check_ups.c:642 plugins/negate.c:277 | ||
308 | #: plugins-root/check_icmp.c:1329 | ||
309 | msgid "Notes:" | 217 | msgid "Notes:" |
310 | msgstr "Notes:" | 218 | msgstr "Notes:" |
311 | 219 | ||
312 | #: plugins/check_cluster.c:263 | ||
313 | msgid "" | 220 | msgid "" |
314 | "Will alert critical if there are 3 or more service data points in a non-OK" | 221 | "Will alert critical if there are 3 or more service data points in a non-OK" |
315 | msgstr "" | 222 | msgstr "" |
316 | 223 | ||
317 | #: plugins/check_cluster.c:264 plugins/check_ups.c:639 | ||
318 | msgid "state." | 224 | msgid "state." |
319 | msgstr "" | 225 | msgstr "" |
320 | 226 | ||
321 | #: plugins/check_dig.c:100 plugins/check_dig.c:102 | ||
322 | #, c-format | 227 | #, c-format |
323 | msgid "Looking for: '%s'\n" | 228 | msgid "Looking for: '%s'\n" |
324 | msgstr "Recherche de: '%s'\n" | 229 | msgstr "Recherche de: '%s'\n" |
325 | 230 | ||
326 | #: plugins/check_dig.c:109 | ||
327 | msgid "dig returned an error status" | 231 | msgid "dig returned an error status" |
328 | msgstr "dig à renvoyé un état d'erreur" | 232 | msgstr "dig à renvoyé un état d'erreur" |
329 | 233 | ||
330 | #: plugins/check_dig.c:134 | ||
331 | msgid "Server not found in ANSWER SECTION" | 234 | msgid "Server not found in ANSWER SECTION" |
332 | msgstr "Le serveur n'a pas été trouvé dans l'ANSWER SECTION" | 235 | msgstr "Le serveur n'a pas été trouvé dans l'ANSWER SECTION" |
333 | 236 | ||
334 | #: plugins/check_dig.c:144 | ||
335 | msgid "No ANSWER SECTION found" | 237 | msgid "No ANSWER SECTION found" |
336 | msgstr "Pas d' ANSWER SECTION trouvé" | 238 | msgstr "Pas d' ANSWER SECTION trouvé" |
337 | 239 | ||
338 | #: plugins/check_dig.c:171 | ||
339 | msgid "Probably a non-existent host/domain" | 240 | msgid "Probably a non-existent host/domain" |
340 | msgstr "Probablement un hôte/domaine inexistant" | 241 | msgstr "Probablement un hôte/domaine inexistant" |
341 | 242 | ||
342 | #: plugins/check_dig.c:233 | ||
343 | #, c-format | 243 | #, c-format |
344 | msgid "Port must be a positive integer - %s" | 244 | msgid "Port must be a positive integer - %s" |
345 | msgstr "Le numéro du port doit être un entier positif - %s" | 245 | msgstr "Le numéro du port doit être un entier positif - %s" |
346 | 246 | ||
347 | #: plugins/check_dig.c:244 | ||
348 | #, c-format | 247 | #, c-format |
349 | msgid "Warning interval must be a positive integer - %s" | 248 | msgid "Warning interval must be a positive integer - %s" |
350 | msgstr "Le seuil d'avertissement doit être un entier positif - %s" | 249 | msgstr "Le seuil d'avertissement doit être un entier positif - %s" |
351 | 250 | ||
352 | #: plugins/check_dig.c:252 | ||
353 | #, c-format | 251 | #, c-format |
354 | msgid "Critical interval must be a positive integer - %s" | 252 | msgid "Critical interval must be a positive integer - %s" |
355 | msgstr "Le seuil critique doit être un entier positif - %s" | 253 | msgstr "Le seuil critique doit être un entier positif - %s" |
356 | 254 | ||
357 | #: plugins/check_dig.c:260 | ||
358 | #, c-format | 255 | #, c-format |
359 | msgid "Timeout interval must be a positive integer - %s" | 256 | msgid "Timeout interval must be a positive integer - %s" |
360 | msgstr "Le délai d'attente doit être un entier positif - %s" | 257 | msgstr "Le délai d'attente doit être un entier positif - %s" |
361 | 258 | ||
362 | #: plugins/check_dig.c:325 | 259 | #, fuzzy, c-format |
363 | #, c-format | 260 | msgid "This plugin tests the DNS service on the specified host using dig" |
364 | msgid "This plugin test the DNS service on the specified host using dig" | ||
365 | msgstr "Ce plugin teste le service DNS sur l'hôte spécifié en utilisant dig" | 261 | msgstr "Ce plugin teste le service DNS sur l'hôte spécifié en utilisant dig" |
366 | 262 | ||
367 | #: plugins/check_dig.c:338 | ||
368 | msgid "Force dig to only use IPv4 query transport" | 263 | msgid "Force dig to only use IPv4 query transport" |
369 | msgstr "" | 264 | msgstr "" |
370 | 265 | ||
371 | #: plugins/check_dig.c:340 | ||
372 | msgid "Force dig to only use IPv6 query transport" | 266 | msgid "Force dig to only use IPv6 query transport" |
373 | msgstr "" | 267 | msgstr "" |
374 | 268 | ||
375 | #: plugins/check_dig.c:342 | ||
376 | msgid "Machine name to lookup" | 269 | msgid "Machine name to lookup" |
377 | msgstr "Nom de machine à rechercher" | 270 | msgstr "Nom de machine à rechercher" |
378 | 271 | ||
379 | #: plugins/check_dig.c:344 | ||
380 | msgid "Record type to lookup (default: A)" | 272 | msgid "Record type to lookup (default: A)" |
381 | msgstr "Type d'enregistrement à rechercher (par défaut: A)" | 273 | msgstr "Type d'enregistrement à rechercher (par défaut: A)" |
382 | 274 | ||
383 | #: plugins/check_dig.c:346 | ||
384 | msgid "" | 275 | msgid "" |
385 | "An address expected to be in the answer section. If not set, uses whatever" | 276 | "An address expected to be in the answer section. If not set, uses whatever" |
386 | msgstr "" | 277 | msgstr "" |
387 | "Une adresse qui devrait se trouver dans la section réponce. Si omit, utilise" | 278 | "Une adresse qui devrait se trouver dans la section réponce. Si omit, utilise" |
388 | 279 | ||
389 | #: plugins/check_dig.c:347 | ||
390 | msgid "was in -l" | 280 | msgid "was in -l" |
391 | msgstr "ce qui est passé au paramètre -l" | 281 | msgstr "ce qui est passé au paramètre -l" |
392 | 282 | ||
393 | #: plugins/check_dig.c:349 | ||
394 | msgid "Pass STRING as argument(s) to dig" | 283 | msgid "Pass STRING as argument(s) to dig" |
395 | msgstr "" | 284 | msgstr "" |
396 | 285 | ||
397 | #: plugins/check_disk.c:216 | ||
398 | #, c-format | 286 | #, c-format |
399 | msgid "DISK %s: %s not found\n" | 287 | msgid "DISK %s: %s not found\n" |
400 | msgstr "DISK %s: %s non trouvé\n" | 288 | msgstr "DISK %s: %s non trouvé\n" |
401 | 289 | ||
402 | #: plugins/check_disk.c:216 plugins/check_disk.c:956 plugins/check_dns.c:241 | ||
403 | #: plugins/check_dummy.c:74 plugins/check_mysql.c:299 | ||
404 | #: plugins/check_nagios.c:104 plugins/check_nagios.c:168 | ||
405 | #: plugins/check_nagios.c:172 plugins/check_pgsql.c:601 | ||
406 | #: plugins/check_pgsql.c:618 plugins/check_pgsql.c:627 | ||
407 | #: plugins/check_pgsql.c:642 plugins/check_procs.c:351 | ||
408 | #, c-format | 290 | #, c-format |
409 | msgid "CRITICAL" | 291 | msgid "CRITICAL" |
410 | msgstr "CRITIQUE" | 292 | msgstr "CRITIQUE" |
411 | 293 | ||
412 | #: plugins/check_disk.c:550 | ||
413 | #, c-format | 294 | #, c-format |
414 | msgid "unit type %s not known\n" | 295 | msgid "unit type %s not known\n" |
415 | msgstr "unité de type %s inconnue\n" | 296 | msgstr "unité de type %s inconnue\n" |
416 | 297 | ||
417 | #: plugins/check_disk.c:553 | ||
418 | #, c-format | 298 | #, c-format |
419 | msgid "failed allocating storage for '%s'\n" | 299 | msgid "failed allocating storage for '%s'\n" |
420 | msgstr "Impossible d'allouer de l'espace pour '%s'\n" | 300 | msgstr "Impossible d'allouer de l'espace pour '%s'\n" |
421 | 301 | ||
422 | #: plugins/check_disk.c:577 plugins/check_disk.c:618 plugins/check_disk.c:626 | ||
423 | #: plugins/check_disk.c:633 plugins/check_disk.c:637 plugins/check_disk.c:677 | ||
424 | #: plugins/check_disk.c:683 plugins/check_disk.c:702 plugins/check_dummy.c:77 | ||
425 | #: plugins/check_dummy.c:80 plugins/check_pgsql.c:643 | ||
426 | #: plugins/check_procs.c:506 | ||
427 | #, c-format | 302 | #, c-format |
428 | msgid "UNKNOWN" | 303 | msgid "UNKNOWN" |
429 | msgstr "INCONNU" | 304 | msgstr "INCONNU" |
430 | 305 | ||
431 | #: plugins/check_disk.c:577 | ||
432 | msgid "Must set a threshold value before using -p\n" | 306 | msgid "Must set a threshold value before using -p\n" |
433 | msgstr "" | 307 | msgstr "" |
434 | 308 | ||
435 | #: plugins/check_disk.c:618 | ||
436 | msgid "Must set -E before selecting paths\n" | 309 | msgid "Must set -E before selecting paths\n" |
437 | msgstr "" | 310 | msgstr "" |
438 | 311 | ||
439 | #: plugins/check_disk.c:626 | ||
440 | msgid "Must set group value before selecting paths\n" | 312 | msgid "Must set group value before selecting paths\n" |
441 | msgstr "" | 313 | msgstr "" |
442 | 314 | ||
443 | #: plugins/check_disk.c:633 | ||
444 | msgid "" | 315 | msgid "" |
445 | "Paths need to be selected before using -i/-I. Use -A to select all paths " | 316 | "Paths need to be selected before using -i/-I. Use -A to select all paths " |
446 | "explicitly" | 317 | "explicitly" |
447 | msgstr "" | 318 | msgstr "" |
448 | 319 | ||
449 | #: plugins/check_disk.c:637 plugins/check_disk.c:683 plugins/check_procs.c:506 | ||
450 | msgid "Could not compile regular expression" | 320 | msgid "Could not compile regular expression" |
451 | msgstr "Impossible de compiler l'expression rationnelle" | 321 | msgstr "Impossible de compiler l'expression rationnelle" |
452 | 322 | ||
453 | #: plugins/check_disk.c:677 | ||
454 | msgid "Must set a threshold value before using -r/-R\n" | 323 | msgid "Must set a threshold value before using -r/-R\n" |
455 | msgstr "" | 324 | msgstr "" |
456 | 325 | ||
457 | #: plugins/check_disk.c:703 | ||
458 | msgid "Regular expression did not match any path or disk" | 326 | msgid "Regular expression did not match any path or disk" |
459 | msgstr "" | 327 | msgstr "" |
460 | 328 | ||
461 | #: plugins/check_disk.c:749 | ||
462 | msgid "Unknown argument" | 329 | msgid "Unknown argument" |
463 | msgstr "Argument inconnu" | 330 | msgstr "Argument inconnu" |
464 | 331 | ||
465 | #: plugins/check_disk.c:783 | ||
466 | #, c-format | 332 | #, c-format |
467 | msgid " for %s\n" | 333 | msgid " for %s\n" |
468 | msgstr " pour %s\n" | 334 | msgstr " pour %s\n" |
469 | 335 | ||
470 | #: plugins/check_disk.c:857 | ||
471 | msgid "" | 336 | msgid "" |
472 | "This plugin checks the amount of used disk space on a mounted file system" | 337 | "This plugin checks the amount of used disk space on a mounted file system" |
473 | msgstr "Ce plugin vérifie la place utilisé sur un système de fichier monté" | 338 | msgstr "Ce plugin vérifie la place utilisé sur un système de fichier monté" |
474 | 339 | ||
475 | #: plugins/check_disk.c:858 | ||
476 | msgid "" | 340 | msgid "" |
477 | "and generates an alert if free space is less than one of the threshold values" | 341 | "and generates an alert if free space is less than one of the threshold values" |
478 | msgstr "" | 342 | msgstr "" |
479 | "et génère une alerte si la place disponible est plus petite qu'un des seuils " | 343 | "et génère une alerte si la place disponible est plus petite qu'un des seuils " |
480 | "fourni" | 344 | "fourni" |
481 | 345 | ||
482 | #: plugins/check_disk.c:868 | ||
483 | msgid "Exit with WARNING status if less than INTEGER units of disk are free" | 346 | msgid "Exit with WARNING status if less than INTEGER units of disk are free" |
484 | msgstr "" | 347 | msgstr "" |
485 | "Sortir avec un résultat AVERTISSEMENT si moins de X unités de disques sont " | 348 | "Sortir avec un résultat AVERTISSEMENT si moins de X unités de disques sont " |
486 | "libres" | 349 | "libres" |
487 | 350 | ||
488 | #: plugins/check_disk.c:870 | ||
489 | msgid "Exit with WARNING status if less than PERCENT of disk space is free" | 351 | msgid "Exit with WARNING status if less than PERCENT of disk space is free" |
490 | msgstr "" | 352 | msgstr "" |
491 | "Sortir avec un résultat AVERTISSEMENT si moins de X pour-cent du disque est " | 353 | "Sortir avec un résultat AVERTISSEMENT si moins de X pour-cent du disque est " |
492 | "libre" | 354 | "libre" |
493 | 355 | ||
494 | #: plugins/check_disk.c:872 | ||
495 | msgid "Exit with CRITICAL status if less than INTEGER units of disk are free" | 356 | msgid "Exit with CRITICAL status if less than INTEGER units of disk are free" |
496 | msgstr "" | 357 | msgstr "" |
497 | "Sortir avec un résultat CRITIQUE si moins de X unités du disque sont libres" | 358 | "Sortir avec un résultat CRITIQUE si moins de X unités du disque sont libres" |
498 | 359 | ||
499 | #: plugins/check_disk.c:874 | ||
500 | #, fuzzy | 360 | #, fuzzy |
501 | msgid "Exit with CRITICAL status if less than PERCENT of disk space is free" | 361 | msgid "Exit with CRITICAL status if less than PERCENT of disk space is free" |
502 | msgstr "" | 362 | msgstr "" |
503 | "Sortir avec un résultat CRITIQUE si moins de X pour-cent du disque est libre" | 363 | "Sortir avec un résultat CRITIQUE si moins de X pour-cent du disque est libre" |
504 | 364 | ||
505 | #: plugins/check_disk.c:876 | ||
506 | msgid "Exit with WARNING status if less than PERCENT of inode space is free" | 365 | msgid "Exit with WARNING status if less than PERCENT of inode space is free" |
507 | msgstr "" | 366 | msgstr "" |
508 | "Sortir avec un résultat AVERTISSEMENT si moins de X pour-cent des inodes " | 367 | "Sortir avec un résultat AVERTISSEMENT si moins de X pour-cent des inodes " |
509 | "sont libres" | 368 | "sont libres" |
510 | 369 | ||
511 | #: plugins/check_disk.c:878 | ||
512 | msgid "Exit with CRITICAL status if less than PERCENT of inode space is free" | 370 | msgid "Exit with CRITICAL status if less than PERCENT of inode space is free" |
513 | msgstr "" | 371 | msgstr "" |
514 | "Sortir avec un résultat CRITIQUE si moins de X pour-cent des inodes sont " | 372 | "Sortir avec un résultat CRITIQUE si moins de X pour-cent des inodes sont " |
515 | "libres" | 373 | "libres" |
516 | 374 | ||
517 | #: plugins/check_disk.c:880 | 375 | msgid "" |
518 | msgid "Path or partition (may be repeated)" | 376 | "Mount point or block device as emitted by the mount(8) command (may be " |
519 | msgstr "Répertoire ou partition (peut être utilisé plusieurs fois)" | 377 | "repeated)" |
378 | msgstr "" | ||
520 | 379 | ||
521 | #: plugins/check_disk.c:882 | ||
522 | msgid "Ignore device (only works if -p unspecified)" | 380 | msgid "Ignore device (only works if -p unspecified)" |
523 | msgstr "Ignorer le périphérique (marche seulement lorsque -p est utilisé)" | 381 | msgstr "Ignorer le périphérique (marche seulement lorsque -p est utilisé)" |
524 | 382 | ||
525 | #: plugins/check_disk.c:884 | ||
526 | msgid "Clear thresholds" | 383 | msgid "Clear thresholds" |
527 | msgstr "Effacer les seuils" | 384 | msgstr "Effacer les seuils" |
528 | 385 | ||
529 | #: plugins/check_disk.c:886 | ||
530 | msgid "For paths or partitions specified with -p, only check for exact paths" | 386 | msgid "For paths or partitions specified with -p, only check for exact paths" |
531 | msgstr "" | 387 | msgstr "" |
532 | 388 | ||
533 | #: plugins/check_disk.c:888 | ||
534 | msgid "Display only devices/mountpoints with errors" | 389 | msgid "Display only devices/mountpoints with errors" |
535 | msgstr "Afficher seulement les périphériques/point de montage avec des erreurs" | 390 | msgstr "Afficher seulement les périphériques/point de montage avec des erreurs" |
536 | 391 | ||
537 | #: plugins/check_disk.c:890 | ||
538 | msgid "Don't account root-reserved blocks into freespace in perfdata" | 392 | msgid "Don't account root-reserved blocks into freespace in perfdata" |
539 | msgstr "" | 393 | msgstr "" |
540 | 394 | ||
541 | #: plugins/check_disk.c:892 | 395 | msgid "Display inode usage in perfdata" |
396 | msgstr "" | ||
397 | |||
542 | msgid "" | 398 | msgid "" |
543 | "Group paths. Thresholds apply to (free-)space of all partitions together" | 399 | "Group paths. Thresholds apply to (free-)space of all partitions together" |
544 | msgstr "" | 400 | msgstr "" |
545 | 401 | ||
546 | #: plugins/check_disk.c:894 | ||
547 | msgid "Same as '--units kB'" | 402 | msgid "Same as '--units kB'" |
548 | msgstr "Pareil à '--units kB'" | 403 | msgstr "Pareil à '--units kB'" |
549 | 404 | ||
550 | #: plugins/check_disk.c:896 | ||
551 | msgid "Only check local filesystems" | 405 | msgid "Only check local filesystems" |
552 | msgstr "Vérifier seulement les systèmes de fichiers locaux" | 406 | msgstr "Vérifier seulement les systèmes de fichiers locaux" |
553 | 407 | ||
554 | #: plugins/check_disk.c:898 | ||
555 | msgid "" | 408 | msgid "" |
556 | "Only check local filesystems against thresholds. Yet call stat on remote " | 409 | "Only check local filesystems against thresholds. Yet call stat on remote " |
557 | "filesystems" | 410 | "filesystems" |
558 | msgstr "" | 411 | msgstr "" |
559 | 412 | ||
560 | #: plugins/check_disk.c:899 | ||
561 | msgid "to test if they are accessible (e.g. to detect Stale NFS Handles)" | 413 | msgid "to test if they are accessible (e.g. to detect Stale NFS Handles)" |
562 | msgstr "" | 414 | msgstr "" |
563 | 415 | ||
564 | #: plugins/check_disk.c:901 | 416 | #, fuzzy |
565 | msgid "Display the mountpoint instead of the partition" | 417 | msgid "Display the (block) device instead of the mount point" |
566 | msgstr "Afficher le point de montage au lieu de la partition" | 418 | msgstr "Afficher le point de montage au lieu de la partition" |
567 | 419 | ||
568 | #: plugins/check_disk.c:903 | ||
569 | msgid "Same as '--units MB'" | 420 | msgid "Same as '--units MB'" |
570 | msgstr "Pareil à '--units MB'" | 421 | msgstr "Pareil à '--units MB'" |
571 | 422 | ||
572 | #: plugins/check_disk.c:905 | ||
573 | msgid "Explicitly select all paths. This is equivalent to -R '.*'" | 423 | msgid "Explicitly select all paths. This is equivalent to -R '.*'" |
574 | msgstr "" | 424 | msgstr "" |
575 | 425 | ||
576 | #: plugins/check_disk.c:907 | ||
577 | msgid "" | 426 | msgid "" |
578 | "Case insensitive regular expression for path/partition (may be repeated)" | 427 | "Case insensitive regular expression for path/partition (may be repeated)" |
579 | msgstr "" | 428 | msgstr "" |
580 | "Expression rationnelle indépendante de la case pour un répertoire ou une " | 429 | "Expression rationnelle indépendante de la case pour un répertoire ou une " |
581 | "partition (peut être utilisé plusieurs fois)" | 430 | "partition (peut être utilisé plusieurs fois)" |
582 | 431 | ||
583 | #: plugins/check_disk.c:909 | ||
584 | msgid "Regular expression for path or partition (may be repeated)" | 432 | msgid "Regular expression for path or partition (may be repeated)" |
585 | msgstr "" | 433 | msgstr "" |
586 | "Expression rationnelle pour un répertoire ou une partition (peut être " | 434 | "Expression rationnelle pour un répertoire ou une partition (peut être " |
587 | "utilisé plusieurs fois)" | 435 | "utilisé plusieurs fois)" |
588 | 436 | ||
589 | #: plugins/check_disk.c:911 | ||
590 | msgid "" | 437 | msgid "" |
591 | "Regular expression to ignore selected path/partition (case insensitive) (may " | 438 | "Regular expression to ignore selected path/partition (case insensitive) (may " |
592 | "be repeated)" | 439 | "be repeated)" |
@@ -594,200 +441,176 @@ msgstr "" | |||
594 | "Expression rationnelle pour ignorer un répertoire ou une partition (peut " | 441 | "Expression rationnelle pour ignorer un répertoire ou une partition (peut " |
595 | "être utilisé plusieurs fois)" | 442 | "être utilisé plusieurs fois)" |
596 | 443 | ||
597 | #: plugins/check_disk.c:913 | ||
598 | msgid "" | 444 | msgid "" |
599 | "Regular expression to ignore selected path or partition (may be repeated)" | 445 | "Regular expression to ignore selected path or partition (may be repeated)" |
600 | msgstr "" | 446 | msgstr "" |
601 | "Expression rationnelle pour ignorer un répertoire ou une partition (peut " | 447 | "Expression rationnelle pour ignorer un répertoire ou une partition (peut " |
602 | "être utilisé plusieurs fois)" | 448 | "être utilisé plusieurs fois)" |
603 | 449 | ||
604 | #: plugins/check_disk.c:916 | 450 | msgid "" |
451 | "Return OK if no filesystem matches, filesystem does not exist or is " | ||
452 | "inaccessible." | ||
453 | msgstr "" | ||
454 | |||
455 | msgid "(Provide this option before -p / -r / --ereg-path if used)" | ||
456 | msgstr "" | ||
457 | |||
605 | msgid "Choose bytes, kB, MB, GB, TB (default: MB)" | 458 | msgid "Choose bytes, kB, MB, GB, TB (default: MB)" |
606 | msgstr "Choisissez octets, kb, MB, GB, TB (par défaut: MB)" | 459 | msgstr "Choisissez octets, kb, MB, GB, TB (par défaut: MB)" |
607 | 460 | ||
608 | #: plugins/check_disk.c:919 | ||
609 | msgid "Ignore all filesystems of indicated type (may be repeated)" | 461 | msgid "Ignore all filesystems of indicated type (may be repeated)" |
610 | msgstr "" | 462 | msgstr "" |
611 | "Ignorer tout les systèmes de fichiers qui correspondent au type indiqué " | 463 | "Ignorer tout les systèmes de fichiers qui correspondent au type indiqué " |
612 | "(peut être utilisé plusieurs fois)" | 464 | "(peut être utilisé plusieurs fois)" |
613 | 465 | ||
614 | #: plugins/check_disk.c:921 | ||
615 | #, fuzzy | 466 | #, fuzzy |
616 | msgid "Check only filesystems of indicated type (may be repeated)" | 467 | msgid "Check only filesystems of indicated type (may be repeated)" |
617 | msgstr "" | 468 | msgstr "" |
618 | "Ignorer tout les systèmes de fichiers qui correspondent au type indiqué " | 469 | "Ignorer tout les systèmes de fichiers qui correspondent au type indiqué " |
619 | "(peut être utilisé plusieurs fois)" | 470 | "(peut être utilisé plusieurs fois)" |
620 | 471 | ||
621 | #: plugins/check_disk.c:926 | ||
622 | msgid "Checks /tmp and /var at 10% and 5%, and / at 100MB and 50MB" | 472 | msgid "Checks /tmp and /var at 10% and 5%, and / at 100MB and 50MB" |
623 | msgstr "Vérifie /tmp à 10% et /var à 5% et / à 100MB et 50MB" | 473 | msgstr "Vérifie /tmp à 10% et /var à 5% et / à 100MB et 50MB" |
624 | 474 | ||
625 | #: plugins/check_disk.c:928 | ||
626 | msgid "" | 475 | msgid "" |
627 | "Checks all filesystems not matching -r at 100M and 50M. The fs matching the -" | 476 | "Checks all filesystems not matching -r at 100M and 50M. The fs matching the -" |
628 | "r regex" | 477 | "r regex" |
629 | msgstr "" | 478 | msgstr "" |
630 | 479 | ||
631 | #: plugins/check_disk.c:929 | ||
632 | msgid "" | 480 | msgid "" |
633 | "are grouped which means the freespace thresholds are applied to all disks " | 481 | "are grouped which means the freespace thresholds are applied to all disks " |
634 | "together" | 482 | "together" |
635 | msgstr "" | 483 | msgstr "" |
636 | 484 | ||
637 | #: plugins/check_disk.c:931 | ||
638 | msgid "" | 485 | msgid "" |
639 | "Checks /foo for 1000M/500M and /bar for 5/3%. All remaining volumes use " | 486 | "Checks /foo for 1000M/500M and /bar for 5/3%. All remaining volumes use " |
640 | "100M/50M" | 487 | "100M/50M" |
641 | msgstr "" | 488 | msgstr "" |
642 | 489 | ||
643 | #: plugins/check_disk.c:957 | ||
644 | #, c-format | 490 | #, c-format |
645 | msgid "%s %s: %s\n" | 491 | msgid "%s %s: %s\n" |
646 | msgstr "" | 492 | msgstr "" |
647 | 493 | ||
648 | #: plugins/check_disk.c:957 | ||
649 | msgid "is not accessible" | 494 | msgid "is not accessible" |
650 | msgstr "" | 495 | msgstr "" |
651 | 496 | ||
652 | #: plugins/check_dns.c:116 | ||
653 | msgid "nslookup returned an error status" | 497 | msgid "nslookup returned an error status" |
654 | msgstr "nslookup à retourné un code d'erreur" | 498 | msgstr "nslookup à retourné un code d'erreur" |
655 | 499 | ||
656 | #: plugins/check_dns.c:134 | ||
657 | msgid "Warning plugin error" | 500 | msgid "Warning plugin error" |
658 | msgstr "Alerte erreur de plugin" | 501 | msgstr "Alerte erreur de plugin" |
659 | 502 | ||
660 | #: plugins/check_dns.c:154 | 503 | #, fuzzy, c-format |
504 | msgid "DNS CRITICAL - '%s' returned empty server string\n" | ||
505 | msgstr "DNS CRITIQUE - '%s' à retourné un nom d'hôte vide\n" | ||
506 | |||
507 | #, fuzzy, c-format | ||
508 | msgid "DNS CRITICAL - No response from DNS %s\n" | ||
509 | msgstr "Pas de réponse du DNS %s\n" | ||
510 | |||
661 | #, c-format | 511 | #, c-format |
662 | msgid "DNS CRITICAL - '%s' returned empty host name string\n" | 512 | msgid "DNS CRITICAL - '%s' returned empty host name string\n" |
663 | msgstr "DNS CRITIQUE - '%s' à retourné un nom d'hôte vide\n" | 513 | msgstr "DNS CRITIQUE - '%s' à retourné un nom d'hôte vide\n" |
664 | 514 | ||
665 | #: plugins/check_dns.c:160 | ||
666 | msgid "Non-authoritative answer:" | 515 | msgid "Non-authoritative answer:" |
667 | msgstr "Réponse non autoritative:" | 516 | msgstr "Réponse non autoritative:" |
668 | 517 | ||
669 | #: plugins/check_dns.c:201 | 518 | #, fuzzy, c-format |
519 | msgid "Domain '%s' was not found by the server\n" | ||
520 | msgstr "Le domaine %s n'a pas été trouvé par le serveur\n" | ||
521 | |||
670 | #, c-format | 522 | #, c-format |
671 | msgid "DNS CRITICAL - '%s' msg parsing exited with no address\n" | 523 | msgid "DNS CRITICAL - '%s' msg parsing exited with no address\n" |
672 | msgstr "DNS CRITIQUE - '%s' n'a pas retourné d'adresse\n" | 524 | msgstr "DNS CRITIQUE - '%s' n'a pas retourné d'adresse\n" |
673 | 525 | ||
674 | #: plugins/check_dns.c:216 | ||
675 | #, c-format | 526 | #, c-format |
676 | msgid "expected '%s' but got '%s'" | 527 | msgid "expected '%s' but got '%s'" |
677 | msgstr "j'attendais '%s' mais j'ai reçu '%s'" | 528 | msgstr "j'attendais '%s' mais j'ai reçu '%s'" |
678 | 529 | ||
679 | #: plugins/check_dns.c:223 | 530 | #, fuzzy, c-format |
531 | msgid "Domain '%s' was found by the server: '%s'\n" | ||
532 | msgstr "Le domaine %s n'a pas été trouvé par le serveur\n" | ||
533 | |||
680 | #, c-format | 534 | #, c-format |
681 | msgid "server %s is not authoritative for %s" | 535 | msgid "server %s is not authoritative for %s" |
682 | msgstr "serveur %s n'est pas autoritaire pour %s" | 536 | msgstr "serveur %s n'est pas autoritaire pour %s" |
683 | 537 | ||
684 | #: plugins/check_dns.c:237 plugins/check_dummy.c:68 plugins/check_nagios.c:182 | ||
685 | #: plugins/check_pgsql.c:638 plugins/check_procs.c:344 | ||
686 | #, c-format | 538 | #, c-format |
687 | msgid "OK" | 539 | msgid "OK" |
688 | msgstr "OK" | 540 | msgstr "OK" |
689 | 541 | ||
690 | #: plugins/check_dns.c:239 plugins/check_dummy.c:71 plugins/check_mysql.c:296 | ||
691 | #: plugins/check_nagios.c:182 plugins/check_pgsql.c:607 | ||
692 | #: plugins/check_pgsql.c:612 plugins/check_pgsql.c:640 | ||
693 | #: plugins/check_procs.c:346 | ||
694 | #, c-format | 542 | #, c-format |
695 | msgid "WARNING" | 543 | msgid "WARNING" |
696 | msgstr "AVERTISSEMENT" | 544 | msgstr "AVERTISSEMENT" |
697 | 545 | ||
698 | #: plugins/check_dns.c:243 | ||
699 | #, c-format | 546 | #, c-format |
700 | msgid "%.3f second response time" | 547 | msgid "%.3f second response time" |
701 | msgid_plural "%.3f seconds response time" | 548 | msgid_plural "%.3f seconds response time" |
702 | msgstr[0] "%.3f secondes de temps de réponse " | 549 | msgstr[0] "%.3f secondes de temps de réponse " |
703 | msgstr[1] "%.3f secondes de temps de réponse " | 550 | msgstr[1] "%.3f secondes de temps de réponse " |
704 | 551 | ||
705 | #: plugins/check_dns.c:244 | ||
706 | #, c-format | 552 | #, c-format |
707 | msgid ". %s returns %s" | 553 | msgid ". %s returns %s" |
708 | msgstr ". %s renvoie %s" | 554 | msgstr ". %s renvoie %s" |
709 | 555 | ||
710 | #: plugins/check_dns.c:248 | ||
711 | #, c-format | 556 | #, c-format |
712 | msgid "DNS WARNING - %s\n" | 557 | msgid "DNS WARNING - %s\n" |
713 | msgstr "DNS AVERTISSEMENT - %s\n" | 558 | msgstr "DNS AVERTISSEMENT - %s\n" |
714 | 559 | ||
715 | #: plugins/check_dns.c:249 plugins/check_dns.c:252 plugins/check_dns.c:255 | ||
716 | msgid " Probably a non-existent host/domain" | 560 | msgid " Probably a non-existent host/domain" |
717 | msgstr " Probablement un hôte/domaine inexistant" | 561 | msgstr " Probablement un hôte/domaine inexistant" |
718 | 562 | ||
719 | #: plugins/check_dns.c:251 | ||
720 | #, c-format | 563 | #, c-format |
721 | msgid "DNS CRITICAL - %s\n" | 564 | msgid "DNS CRITICAL - %s\n" |
722 | msgstr "DNS CRITIQUE - %s\n" | 565 | msgstr "DNS CRITIQUE - %s\n" |
723 | 566 | ||
724 | #: plugins/check_dns.c:254 | ||
725 | #, c-format | 567 | #, c-format |
726 | msgid "DNS UNKNOWN - %s\n" | 568 | msgid "DNS UNKNOWN - %s\n" |
727 | msgstr "DNS INCONNU - %s\n" | 569 | msgstr "DNS INCONNU - %s\n" |
728 | 570 | ||
729 | #: plugins/check_dns.c:267 | ||
730 | msgid "Note: nslookup is deprecated and may be removed from future releases." | 571 | msgid "Note: nslookup is deprecated and may be removed from future releases." |
731 | msgstr "" | 572 | msgstr "" |
732 | "Note: nslookup est obsolète et pourra être retiré dans les prochaines " | 573 | "Note: nslookup est obsolète et pourra être retiré dans les prochaines " |
733 | "versions." | 574 | "versions." |
734 | 575 | ||
735 | #: plugins/check_dns.c:268 | ||
736 | msgid "Consider using the `dig' or `host' programs instead. Run nslookup with" | 576 | msgid "Consider using the `dig' or `host' programs instead. Run nslookup with" |
737 | msgstr "" | 577 | msgstr "" |
738 | "Veuillez utiliser le programme 'dig' ou 'host' Ã la place. Faire fonctionner " | 578 | "Veuillez utiliser le programme 'dig' ou 'host' Ã la place. Faire fonctionner " |
739 | "nslookup avec" | 579 | "nslookup avec" |
740 | 580 | ||
741 | #: plugins/check_dns.c:269 | ||
742 | msgid "the `-sil[ent]' option to prevent this message from appearing." | 581 | msgid "the `-sil[ent]' option to prevent this message from appearing." |
743 | msgstr "L'option '-sil[ent]' empêche l'apparition de ce message." | 582 | msgstr "L'option '-sil[ent]' empêche l'apparition de ce message." |
744 | 583 | ||
745 | #: plugins/check_dns.c:274 | ||
746 | #, c-format | 584 | #, c-format |
747 | msgid "No response from DNS %s\n" | 585 | msgid "No response from DNS %s\n" |
748 | msgstr "Pas de réponse du DNS %s\n" | 586 | msgstr "Pas de réponse du DNS %s\n" |
749 | 587 | ||
750 | #: plugins/check_dns.c:278 | ||
751 | #, c-format | 588 | #, c-format |
752 | msgid "DNS %s has no records\n" | 589 | msgid "DNS %s has no records\n" |
753 | msgstr "Le DNS %s n'a pas d'enregistrements\n" | 590 | msgstr "Le DNS %s n'a pas d'enregistrements\n" |
754 | 591 | ||
755 | #: plugins/check_dns.c:286 | ||
756 | #, c-format | 592 | #, c-format |
757 | msgid "Connection to DNS %s was refused\n" | 593 | msgid "Connection to DNS %s was refused\n" |
758 | msgstr "La connexion au DNS %s à été refusée\n" | 594 | msgstr "La connexion au DNS %s à été refusée\n" |
759 | 595 | ||
760 | #: plugins/check_dns.c:290 | ||
761 | #, c-format | 596 | #, c-format |
762 | msgid "Query was refused by DNS server at %s\n" | 597 | msgid "Query was refused by DNS server at %s\n" |
763 | msgstr "La requête à été refusée par le serveur DNS %s\n" | 598 | msgstr "La requête à été refusée par le serveur DNS %s\n" |
764 | 599 | ||
765 | #: plugins/check_dns.c:294 | ||
766 | #, c-format | 600 | #, c-format |
767 | msgid "No information returned by DNS server at %s\n" | 601 | msgid "No information returned by DNS server at %s\n" |
768 | msgstr "Pas d'information renvoyée par le serveur DNS %s\n" | 602 | msgstr "Pas d'information renvoyée par le serveur DNS %s\n" |
769 | 603 | ||
770 | #: plugins/check_dns.c:300 | ||
771 | #, c-format | ||
772 | msgid "Domain %s was not found by the server\n" | ||
773 | msgstr "Le domaine %s n'a pas été trouvé par le serveur\n" | ||
774 | |||
775 | #: plugins/check_dns.c:304 | ||
776 | msgid "Network is unreachable\n" | 604 | msgid "Network is unreachable\n" |
777 | msgstr "Le réseau est inaccessible\n" | 605 | msgstr "Le réseau est inaccessible\n" |
778 | 606 | ||
779 | #: plugins/check_dns.c:308 | ||
780 | #, c-format | 607 | #, c-format |
781 | msgid "DNS failure for %s\n" | 608 | msgid "DNS failure for %s\n" |
782 | msgstr "DNS à échoué pour %s\n" | 609 | msgstr "DNS à échoué pour %s\n" |
783 | 610 | ||
784 | #: plugins/check_dns.c:372 plugins/check_dns.c:380 plugins/check_dns.c:387 | ||
785 | #: plugins/check_dns.c:392 plugins/check_dns.c:414 plugins/check_dns.c:422 | ||
786 | #: plugins/check_game.c:211 plugins/check_game.c:219 | ||
787 | msgid "Input buffer overflow\n" | 611 | msgid "Input buffer overflow\n" |
788 | msgstr "Le tampon d'entrée a débordé\n" | 612 | msgstr "Le tampon d'entrée a débordé\n" |
789 | 613 | ||
790 | #: plugins/check_dns.c:450 | ||
791 | msgid "" | 614 | msgid "" |
792 | "This plugin uses the nslookup program to obtain the IP address for the given " | 615 | "This plugin uses the nslookup program to obtain the IP address for the given " |
793 | "host/domain query." | 616 | "host/domain query." |
@@ -795,11 +618,9 @@ msgstr "" | |||
795 | "Ce plugin utilise le programme nslookup pour obtenir l'adresse IP de l'hôte/" | 618 | "Ce plugin utilise le programme nslookup pour obtenir l'adresse IP de l'hôte/" |
796 | "domaine à interroger." | 619 | "domaine à interroger." |
797 | 620 | ||
798 | #: plugins/check_dns.c:451 | ||
799 | msgid "An optional DNS server to use may be specified." | 621 | msgid "An optional DNS server to use may be specified." |
800 | msgstr "Un serveur DNS à utiliser peut être indiqué." | 622 | msgstr "Un serveur DNS à utiliser peut être indiqué." |
801 | 623 | ||
802 | #: plugins/check_dns.c:452 | ||
803 | msgid "" | 624 | msgid "" |
804 | "If no DNS server is specified, the default server(s) specified in /etc/" | 625 | "If no DNS server is specified, the default server(s) specified in /etc/" |
805 | "resolv.conf will be used." | 626 | "resolv.conf will be used." |
@@ -807,193 +628,158 @@ msgstr "" | |||
807 | "Si aucun serveur DNS n'est spécifié, les serveurs spécifiés dans /etc/resolv." | 628 | "Si aucun serveur DNS n'est spécifié, les serveurs spécifiés dans /etc/resolv." |
808 | "conf seront utilisé." | 629 | "conf seront utilisé." |
809 | 630 | ||
810 | #: plugins/check_dns.c:462 | ||
811 | msgid "The name or address you want to query" | 631 | msgid "The name or address you want to query" |
812 | msgstr "Le nom ou l'adresse que vous voulez interroger" | 632 | msgstr "Le nom ou l'adresse que vous voulez interroger" |
813 | 633 | ||
814 | #: plugins/check_dns.c:464 | ||
815 | msgid "Optional DNS server you want to use for the lookup" | 634 | msgid "Optional DNS server you want to use for the lookup" |
816 | msgstr "Serveur DNS que vous voulez utiliser pour la recherche" | 635 | msgstr "Serveur DNS que vous voulez utiliser pour la recherche" |
817 | 636 | ||
818 | #: plugins/check_dns.c:466 | 637 | #, fuzzy |
819 | msgid "" | 638 | msgid "" |
820 | "Optional IP-ADDRESS you expect the DNS server to return. HOST must end with" | 639 | "Optional IP-ADDRESS/CIDR you expect the DNS server to return. HOST must end" |
821 | msgstr "" | 640 | msgstr "" |
822 | "Adresse IP que le serveur DNS doit retourner. Les hôtes doivent se terminer " | 641 | "Adresse IP que le serveur DNS doit retourner. Les hôtes doivent se terminer " |
823 | 642 | ||
824 | #: plugins/check_dns.c:467 | 643 | #, fuzzy |
825 | msgid "" | 644 | msgid "" |
826 | "a dot (.). This option can be repeated multiple times (Returns OK if any" | 645 | "with a dot (.). This option can be repeated multiple times (Returns OK if any" |
827 | msgstr "avec un point (.). Cette option peut être répétée (Retourne OK si une" | 646 | msgstr "avec un point (.). Cette option peut être répétée (Retourne OK si une" |
828 | 647 | ||
829 | #: plugins/check_dns.c:468 | 648 | msgid "value matches)." |
830 | msgid "" | ||
831 | "value match). If multiple addresses are returned at once, you have to match" | ||
832 | msgstr "" | 649 | msgstr "" |
833 | "valeur correspond). Si plusieurs adresses sont retournées en même temps," | ||
834 | 650 | ||
835 | #: plugins/check_dns.c:469 | ||
836 | msgid "" | 651 | msgid "" |
837 | "the whole string of addresses separated with commas (sorted alphabetically)." | 652 | "Expect the DNS server to return NXDOMAIN (i.e. the domain was not found)" |
653 | msgstr "" | ||
654 | |||
655 | msgid "Cannot be used together with -a" | ||
838 | msgstr "" | 656 | msgstr "" |
839 | "vous devrez toutes les inscrire séparées pas des virgules (en ordre " | ||
840 | "alphabétique)" | ||
841 | 657 | ||
842 | #: plugins/check_dns.c:471 | ||
843 | msgid "Optionally expect the DNS server to be authoritative for the lookup" | 658 | msgid "Optionally expect the DNS server to be authoritative for the lookup" |
844 | msgstr "Serveur DNS qui doit normalement être autoritaire pour la recherche" | 659 | msgstr "Serveur DNS qui doit normalement être autoritaire pour la recherche" |
845 | 660 | ||
846 | #: plugins/check_dns.c:473 | ||
847 | msgid "Return warning if elapsed time exceeds value. Default off" | 661 | msgid "Return warning if elapsed time exceeds value. Default off" |
848 | msgstr "" | 662 | msgstr "" |
849 | "Renvoie une alerte si le temps écoulé dépasse la valeur indiquée. Désactivé " | 663 | "Renvoie une alerte si le temps écoulé dépasse la valeur indiquée. Désactivé " |
850 | "par défaut" | 664 | "par défaut" |
851 | 665 | ||
852 | #: plugins/check_dns.c:475 | ||
853 | msgid "Return critical if elapsed time exceeds value. Default off" | 666 | msgid "Return critical if elapsed time exceeds value. Default off" |
854 | msgstr "" | 667 | msgstr "" |
855 | "Renvoie critique si le temps utilisé dépasse la valeur indiquée. Désactivé " | 668 | "Renvoie critique si le temps utilisé dépasse la valeur indiquée. Désactivé " |
856 | "par défaut" | 669 | "par défaut" |
857 | 670 | ||
858 | #: plugins/check_dummy.c:62 | 671 | msgid "" |
672 | "Return critical if the list of expected addresses does not match all " | ||
673 | "addresses" | ||
674 | msgstr "" | ||
675 | |||
676 | msgid "returned. Default off" | ||
677 | msgstr "" | ||
678 | |||
859 | msgid "Arguments to check_dummy must be an integer" | 679 | msgid "Arguments to check_dummy must be an integer" |
860 | msgstr "Les arguments pour check_dummy doivent être des entiers" | 680 | msgstr "Les arguments pour check_dummy doivent être des entiers" |
861 | 681 | ||
862 | #: plugins/check_dummy.c:82 | ||
863 | #, c-format | 682 | #, c-format |
864 | msgid "Status %d is not a supported error state\n" | 683 | msgid "Status %d is not a supported error state\n" |
865 | msgstr "Le résultat %d n'est pas un résultat supporté\n" | 684 | msgstr "Le résultat %d n'est pas un résultat supporté\n" |
866 | 685 | ||
867 | #: plugins/check_dummy.c:104 | ||
868 | msgid "" | 686 | msgid "" |
869 | "This plugin will simply return the state corresponding to the numeric value" | 687 | "This plugin will simply return the state corresponding to the numeric value" |
870 | msgstr "" | 688 | msgstr "" |
871 | "Ce plugin renverra simplement l'état correspondant à la valeur numérique" | 689 | "Ce plugin renverra simplement l'état correspondant à la valeur numérique" |
872 | 690 | ||
873 | #: plugins/check_dummy.c:106 | ||
874 | msgid "of the <state> argument with optional text" | 691 | msgid "of the <state> argument with optional text" |
875 | msgstr "du paramètre <state> avec un texte optionnel" | 692 | msgstr "du paramètre <state> avec un texte optionnel" |
876 | 693 | ||
877 | #: plugins/check_fping.c:125 plugins/check_hpjd.c:128 plugins/check_ping.c:438 | ||
878 | #: plugins/check_swap.c:175 plugins/check_users.c:94 plugins/urlize.c:110 | ||
879 | #, c-format | 694 | #, c-format |
880 | msgid "Could not open pipe: %s\n" | 695 | msgid "Could not open pipe: %s\n" |
881 | msgstr "Impossible d'ouvrir le pipe: %s\n" | 696 | msgstr "Impossible d'ouvrir le pipe: %s\n" |
882 | 697 | ||
883 | #: plugins/check_fping.c:131 plugins/check_hpjd.c:134 plugins/check_load.c:153 | ||
884 | #: plugins/check_swap.c:181 plugins/check_users.c:100 plugins/urlize.c:116 | ||
885 | #, c-format | 698 | #, c-format |
886 | msgid "Could not open stderr for %s\n" | 699 | msgid "Could not open stderr for %s\n" |
887 | msgstr "Impossible d'ouvrir la sortie d'erreur standard pour %s\n" | 700 | msgstr "Impossible d'ouvrir la sortie d'erreur standard pour %s\n" |
888 | 701 | ||
889 | #: plugins/check_fping.c:157 | ||
890 | #, fuzzy | 702 | #, fuzzy |
891 | msgid "FPING UNKNOWN - IP address not found\n" | 703 | msgid "FPING UNKNOWN - IP address not found\n" |
892 | msgstr "PING INCONNU - Hôte non trouvé (%s)\n" | 704 | msgstr "PING INCONNU - Hôte non trouvé (%s)\n" |
893 | 705 | ||
894 | #: plugins/check_fping.c:160 | ||
895 | msgid "FPING UNKNOWN - invalid commandline argument\n" | 706 | msgid "FPING UNKNOWN - invalid commandline argument\n" |
896 | msgstr "" | 707 | msgstr "" |
897 | 708 | ||
898 | #: plugins/check_fping.c:163 | ||
899 | #, fuzzy | 709 | #, fuzzy |
900 | msgid "FPING UNKNOWN - failed system call\n" | 710 | msgid "FPING UNKNOWN - failed system call\n" |
901 | msgstr "PING INCONNU - Hôte non trouvé (%s)\n" | 711 | msgstr "PING INCONNU - Hôte non trouvé (%s)\n" |
902 | 712 | ||
903 | #: plugins/check_fping.c:187 | 713 | #, fuzzy, c-format |
714 | msgid "FPING %s - %s (rta=%f ms)|%s\n" | ||
715 | msgstr "FPING %s - %s (perte=%.0f%% )|%s\n" | ||
716 | |||
904 | #, c-format | 717 | #, c-format |
905 | msgid "FPING UNKNOWN - %s not found\n" | 718 | msgid "FPING UNKNOWN - %s not found\n" |
906 | msgstr "PING INCONNU - Hôte non trouvé (%s)\n" | 719 | msgstr "PING INCONNU - Hôte non trouvé (%s)\n" |
907 | 720 | ||
908 | #: plugins/check_fping.c:191 | ||
909 | #, c-format | 721 | #, c-format |
910 | msgid "FPING CRITICAL - %s is unreachable\n" | 722 | msgid "FPING CRITICAL - %s is unreachable\n" |
911 | msgstr "PING CRITIQUE - Hôte inaccessible (%s)\n" | 723 | msgstr "PING CRITIQUE - Hôte inaccessible (%s)\n" |
912 | 724 | ||
913 | #: plugins/check_fping.c:196 | ||
914 | #, fuzzy, c-format | 725 | #, fuzzy, c-format |
915 | msgid "FPING UNKNOWN - %s parameter error\n" | 726 | msgid "FPING UNKNOWN - %s parameter error\n" |
916 | msgstr "PING INCONNU - Hôte non trouvé (%s)\n" | 727 | msgstr "PING INCONNU - Hôte non trouvé (%s)\n" |
917 | 728 | ||
918 | #: plugins/check_fping.c:200 plugins/check_fping.c:240 | ||
919 | #, c-format | 729 | #, c-format |
920 | msgid "FPING CRITICAL - %s is down\n" | 730 | msgid "FPING CRITICAL - %s is down\n" |
921 | msgstr "FPING CRITIQUE - %s est en panne\n" | 731 | msgstr "FPING CRITIQUE - %s est en panne\n" |
922 | 732 | ||
923 | #: plugins/check_fping.c:227 | ||
924 | #, c-format | 733 | #, c-format |
925 | msgid "FPING %s - %s (loss=%.0f%%, rta=%f ms)|%s %s\n" | 734 | msgid "FPING %s - %s (loss=%.0f%%, rta=%f ms)|%s %s\n" |
926 | msgstr "FPING %s - %s (perte=%.0f%%, rta=%f ms)|%s %s\n" | 735 | msgstr "FPING %s - %s (perte=%.0f%%, rta=%f ms)|%s %s\n" |
927 | 736 | ||
928 | #: plugins/check_fping.c:253 | ||
929 | #, c-format | 737 | #, c-format |
930 | msgid "FPING %s - %s (loss=%.0f%% )|%s\n" | 738 | msgid "FPING %s - %s (loss=%.0f%% )|%s\n" |
931 | msgstr "FPING %s - %s (perte=%.0f%% )|%s\n" | 739 | msgstr "FPING %s - %s (perte=%.0f%% )|%s\n" |
932 | 740 | ||
933 | #: plugins/check_fping.c:326 plugins/check_fping.c:332 | ||
934 | #: plugins/check_hpjd.c:338 plugins/check_hpjd.c:361 plugins/check_mysql.c:371 | ||
935 | #: plugins/check_mysql.c:455 plugins/check_ntp.c:709 | ||
936 | #: plugins/check_ntp_peer.c:497 plugins/check_ntp_time.c:496 | ||
937 | #: plugins/check_pgsql.c:335 plugins/check_ping.c:295 plugins/check_ping.c:418 | ||
938 | #: plugins/check_radius.c:264 plugins/check_real.c:314 | ||
939 | #: plugins/check_real.c:376 plugins/check_smtp.c:499 plugins/check_smtp.c:641 | ||
940 | #: plugins/check_ssh.c:157 plugins/check_time.c:240 plugins/check_time.c:315 | ||
941 | #: plugins/check_ups.c:504 plugins/check_ups.c:573 | ||
942 | msgid "Invalid hostname/address" | 741 | msgid "Invalid hostname/address" |
943 | msgstr "Adresse/Nom d'hôte invalide" | 742 | msgstr "Adresse/Nom d'hôte invalide" |
944 | 743 | ||
945 | #: plugins/check_fping.c:345 plugins/check_ldap.c:353 plugins/check_ping.c:246 | ||
946 | msgid "IPv6 support not available\n" | 744 | msgid "IPv6 support not available\n" |
947 | msgstr "Support IPv6 non disponible\n" | 745 | msgstr "Support IPv6 non disponible\n" |
948 | 746 | ||
949 | #: plugins/check_fping.c:378 | ||
950 | msgid "Packet size must be a positive integer" | 747 | msgid "Packet size must be a positive integer" |
951 | msgstr "La taille du paquet doit être un entier positif" | 748 | msgstr "La taille du paquet doit être un entier positif" |
952 | 749 | ||
953 | #: plugins/check_fping.c:384 | ||
954 | msgid "Packet count must be a positive integer" | 750 | msgid "Packet count must be a positive integer" |
955 | msgstr "Le nombre de paquets doit être un entier positif" | 751 | msgstr "Le nombre de paquets doit être un entier positif" |
956 | 752 | ||
957 | #: plugins/check_fping.c:390 | ||
958 | msgid "Target timeout must be a positive integer" | 753 | msgid "Target timeout must be a positive integer" |
959 | msgstr "Le seuil d'avertissement doit être un entier positif" | 754 | msgstr "Le seuil d'avertissement doit être un entier positif" |
960 | 755 | ||
961 | #: plugins/check_fping.c:396 | ||
962 | msgid "Interval must be a positive integer" | 756 | msgid "Interval must be a positive integer" |
963 | msgstr "Le délai d'attente doit être un entier positif" | 757 | msgstr "Le délai d'attente doit être un entier positif" |
964 | 758 | ||
965 | #: plugins/check_fping.c:402 plugins/check_ntp.c:733 | ||
966 | #: plugins/check_ntp_peer.c:524 plugins/check_ntp_time.c:523 | ||
967 | #: plugins/check_radius.c:314 plugins/check_time.c:319 | ||
968 | msgid "Hostname was not supplied" | 759 | msgid "Hostname was not supplied" |
969 | msgstr "Le nom de l'hôte n'a pas été spécifié" | 760 | msgstr "Le nom de l'hôte n'a pas été spécifié" |
970 | 761 | ||
971 | #: plugins/check_fping.c:422 | ||
972 | #, c-format | 762 | #, c-format |
973 | msgid "%s: Only one threshold may be packet loss (%s)\n" | 763 | msgid "%s: Only one threshold may be packet loss (%s)\n" |
974 | msgstr "" | 764 | msgstr "" |
975 | "%s: Seulement un seuil peut être utilisé pour les pertes de paquets (%s)\n" | 765 | "%s: Seulement un seuil peut être utilisé pour les pertes de paquets (%s)\n" |
976 | 766 | ||
977 | #: plugins/check_fping.c:426 | ||
978 | #, c-format | 767 | #, c-format |
979 | msgid "%s: Only one threshold must be packet loss (%s)\n" | 768 | msgid "%s: Only one threshold must be packet loss (%s)\n" |
980 | msgstr "" | 769 | msgstr "" |
981 | "%s: Seulement un seuil doit être utilisé pour les pertes de paquets (%s)\n" | 770 | "%s: Seulement un seuil doit être utilisé pour les pertes de paquets (%s)\n" |
982 | 771 | ||
983 | #: plugins/check_fping.c:458 | ||
984 | msgid "" | 772 | msgid "" |
985 | "This plugin will use the fping command to ping the specified host for a fast " | 773 | "This plugin will use the fping command to ping the specified host for a fast " |
986 | "check" | 774 | "check" |
987 | msgstr "" | 775 | msgstr "" |
988 | "Ce plugin va utiliser la commande fping pour pinger l'hôte de manière rapide." | 776 | "Ce plugin va utiliser la commande fping pour pinger l'hôte de manière rapide." |
989 | 777 | ||
990 | #: plugins/check_fping.c:460 | ||
991 | msgid "Note that it is necessary to set the suid flag on fping." | 778 | msgid "Note that it is necessary to set the suid flag on fping." |
992 | msgstr "" | 779 | msgstr "" |
993 | "Veuillez noter qu'il est nécessaire de mettre le bit suid sur le programme " | 780 | "Veuillez noter qu'il est nécessaire de mettre le bit suid sur le programme " |
994 | "fping." | 781 | "fping." |
995 | 782 | ||
996 | #: plugins/check_fping.c:472 | ||
997 | msgid "" | 783 | msgid "" |
998 | "name or IP Address of host to ping (IP Address bypasses name lookup, " | 784 | "name or IP Address of host to ping (IP Address bypasses name lookup, " |
999 | "reducing system load)" | 785 | "reducing system load)" |
@@ -1001,39 +787,33 @@ msgstr "" | |||
1001 | "nom ou adresse IP des hôtes à pinger (l'indication d'un adresse IP évite une " | 787 | "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)" | 788 | "recherche sur le nom, ce qui réduit la charge système)" |
1003 | 789 | ||
1004 | #: plugins/check_fping.c:474 plugins/check_ping.c:575 | ||
1005 | msgid "warning threshold pair" | 790 | msgid "warning threshold pair" |
1006 | msgstr "Valeurs pour le seuil d'avertissement" | 791 | msgstr "Valeurs pour le seuil d'avertissement" |
1007 | 792 | ||
1008 | #: plugins/check_fping.c:476 plugins/check_ping.c:577 | ||
1009 | msgid "critical threshold pair" | 793 | msgid "critical threshold pair" |
1010 | msgstr "Valeurs pour le seuil critique" | 794 | msgstr "Valeurs pour le seuil critique" |
1011 | 795 | ||
1012 | #: plugins/check_fping.c:478 | 796 | msgid "Return OK after first successful reply" |
797 | msgstr "" | ||
798 | |||
1013 | msgid "size of ICMP packet" | 799 | msgid "size of ICMP packet" |
1014 | msgstr "taille du paquet ICMP" | 800 | msgstr "taille du paquet ICMP" |
1015 | 801 | ||
1016 | #: plugins/check_fping.c:480 | ||
1017 | msgid "number of ICMP packets to send" | 802 | msgid "number of ICMP packets to send" |
1018 | msgstr "nombre de paquets ICMP Ã envoyer" | 803 | msgstr "nombre de paquets ICMP Ã envoyer" |
1019 | 804 | ||
1020 | #: plugins/check_fping.c:482 | ||
1021 | msgid "Target timeout (ms)" | 805 | msgid "Target timeout (ms)" |
1022 | msgstr "" | 806 | msgstr "" |
1023 | 807 | ||
1024 | #: plugins/check_fping.c:484 | ||
1025 | msgid "Interval (ms) between sending packets" | 808 | msgid "Interval (ms) between sending packets" |
1026 | msgstr "" | 809 | msgstr "" |
1027 | 810 | ||
1028 | #: plugins/check_fping.c:486 | ||
1029 | msgid "name or IP Address of sourceip" | 811 | msgid "name or IP Address of sourceip" |
1030 | msgstr "" | 812 | msgstr "" |
1031 | 813 | ||
1032 | #: plugins/check_fping.c:488 | ||
1033 | msgid "source interface name" | 814 | msgid "source interface name" |
1034 | msgstr "" | 815 | msgstr "" |
1035 | 816 | ||
1036 | #: plugins/check_fping.c:491 | ||
1037 | #, c-format | 817 | #, c-format |
1038 | msgid "" | 818 | msgid "" |
1039 | "THRESHOLD is <rta>,<pl>%% where <rta> is the round trip average travel time " | 819 | "THRESHOLD is <rta>,<pl>%% where <rta> is the round trip average travel time " |
@@ -1042,63 +822,50 @@ msgstr "" | |||
1042 | "Le seuil est <rta>,<pl>%% ou <rta> est le temps moyen pour l'aller retour " | 822 | "Le seuil est <rta>,<pl>%% ou <rta> est le temps moyen pour l'aller retour " |
1043 | "(ms)" | 823 | "(ms)" |
1044 | 824 | ||
1045 | #: plugins/check_fping.c:492 | ||
1046 | msgid "" | 825 | msgid "" |
1047 | "which triggers a WARNING or CRITICAL state, and <pl> is the percentage of" | 826 | "which triggers a WARNING or CRITICAL state, and <pl> is the percentage of" |
1048 | msgstr "" | 827 | msgstr "" |
1049 | "qui déclenche résultat AVERTISSEMENT ou CRITIQUE, et <pl> est le pourcentage " | 828 | "qui déclenche résultat AVERTISSEMENT ou CRITIQUE, et <pl> est le pourcentage " |
1050 | "de" | 829 | "de" |
1051 | 830 | ||
1052 | #: plugins/check_fping.c:493 | ||
1053 | msgid "packet loss to trigger an alarm state." | 831 | msgid "packet loss to trigger an alarm state." |
1054 | msgstr "paquets perdu pour déclencher une alarme." | 832 | msgstr "paquets perdu pour déclencher une alarme." |
1055 | 833 | ||
1056 | #: plugins/check_fping.c:496 | ||
1057 | msgid "IPv4 is used by default. Specify -6 to use IPv6." | 834 | msgid "IPv4 is used by default. Specify -6 to use IPv6." |
1058 | msgstr "" | 835 | msgstr "" |
1059 | 836 | ||
1060 | #: plugins/check_game.c:111 | ||
1061 | #, c-format | 837 | #, c-format |
1062 | msgid "CRITICAL - Host type parameter incorrect!\n" | 838 | msgid "CRITICAL - Host type parameter incorrect!\n" |
1063 | msgstr "CRITIQUE - Argument de type hôte incorrect!\n" | 839 | msgstr "CRITIQUE - Argument de type hôte incorrect!\n" |
1064 | 840 | ||
1065 | #: plugins/check_game.c:126 | ||
1066 | #, c-format | 841 | #, c-format |
1067 | msgid "CRITICAL - Host not found\n" | 842 | msgid "CRITICAL - Host not found\n" |
1068 | msgstr "CRITIQUE - Hôte non trouvé\n" | 843 | msgstr "CRITIQUE - Hôte non trouvé\n" |
1069 | 844 | ||
1070 | #: plugins/check_game.c:130 | ||
1071 | #, c-format | 845 | #, c-format |
1072 | msgid "CRITICAL - Game server down or unavailable\n" | 846 | msgid "CRITICAL - Game server down or unavailable\n" |
1073 | msgstr "CRITIQUE - Serveur de jeux en panne ou non disponible\n" | 847 | msgstr "CRITIQUE - Serveur de jeux en panne ou non disponible\n" |
1074 | 848 | ||
1075 | #: plugins/check_game.c:134 | ||
1076 | #, c-format | 849 | #, c-format |
1077 | msgid "CRITICAL - Game server timeout\n" | 850 | msgid "CRITICAL - Game server timeout\n" |
1078 | msgstr "CRITIQUE - Temps d'attente pour le serveur de jeux dépassé\n" | 851 | msgstr "CRITIQUE - Temps d'attente pour le serveur de jeux dépassé\n" |
1079 | 852 | ||
1080 | #: plugins/check_game.c:297 | ||
1081 | #, c-format | 853 | #, c-format |
1082 | msgid "This plugin tests game server connections with the specified host." | 854 | msgid "This plugin tests game server connections with the specified host." |
1083 | msgstr "Le plugin teste la connexion au serveur de jeux avec l'hôte spécifié." | 855 | msgstr "Le plugin teste la connexion au serveur de jeux avec l'hôte spécifié." |
1084 | 856 | ||
1085 | #: plugins/check_game.c:307 | ||
1086 | msgid "Optional port of which to connect" | 857 | msgid "Optional port of which to connect" |
1087 | msgstr "" | 858 | msgstr "" |
1088 | 859 | ||
1089 | #: plugins/check_game.c:309 | ||
1090 | msgid "Field number in raw qstat output that contains game name" | 860 | msgid "Field number in raw qstat output that contains game name" |
1091 | msgstr "" | 861 | msgstr "" |
1092 | 862 | ||
1093 | #: plugins/check_game.c:311 | ||
1094 | msgid "Field number in raw qstat output that contains map name" | 863 | msgid "Field number in raw qstat output that contains map name" |
1095 | msgstr "" | 864 | msgstr "" |
1096 | 865 | ||
1097 | #: plugins/check_game.c:313 | ||
1098 | msgid "Field number in raw qstat output that contains ping time" | 866 | msgid "Field number in raw qstat output that contains ping time" |
1099 | msgstr "" | 867 | msgstr "" |
1100 | 868 | ||
1101 | #: plugins/check_game.c:319 | ||
1102 | msgid "" | 869 | msgid "" |
1103 | "This plugin uses the 'qstat' command, the popular game server status query " | 870 | "This plugin uses the 'qstat' command, the popular game server status query " |
1104 | "tool." | 871 | "tool." |
@@ -1106,789 +873,706 @@ msgstr "" | |||
1106 | "Ce plugin utilise la commande 'qstat', un programme répandu pour questioner " | 873 | "Ce plugin utilise la commande 'qstat', un programme répandu pour questioner " |
1107 | "les serveurs de jeux." | 874 | "les serveurs de jeux." |
1108 | 875 | ||
1109 | #: plugins/check_game.c:320 | ||
1110 | msgid "" | 876 | msgid "" |
1111 | "If you don't have the package installed, you will need to download it from" | 877 | "If you don't have the package installed, you will need to download it from" |
1112 | msgstr "" | 878 | msgstr "" |
1113 | "Si vous n'avez pas le programme installé, vous devrez le télécharger depuis" | 879 | "Si vous n'avez pas le programme installé, vous devrez le télécharger depuis" |
1114 | 880 | ||
1115 | #: plugins/check_game.c:321 | 881 | #, fuzzy |
1116 | msgid "" | 882 | msgid "https://github.com/multiplay/qstat before you can use this plugin." |
1117 | "http://www.activesw.com/people/steve/qstat.html before you can use this " | ||
1118 | "plugin." | ||
1119 | msgstr "" | 883 | msgstr "" |
1120 | "http://www.activesw.com/people/steve/qstat.html avant de pouvoir utiliser ce " | 884 | "http://www.activesw.com/people/steve/qstat.html avant de pouvoir utiliser ce " |
1121 | "plugin." | 885 | "plugin." |
1122 | 886 | ||
1123 | #: plugins/check_hpjd.c:239 | ||
1124 | msgid "Paper Jam" | 887 | msgid "Paper Jam" |
1125 | msgstr "Bourrage Papier" | 888 | msgstr "Bourrage Papier" |
1126 | 889 | ||
1127 | #: plugins/check_hpjd.c:243 | ||
1128 | msgid "Out of Paper" | 890 | msgid "Out of Paper" |
1129 | msgstr "Plus de Papier" | 891 | msgstr "Plus de Papier" |
1130 | 892 | ||
1131 | #: plugins/check_hpjd.c:248 | ||
1132 | msgid "Printer Offline" | 893 | msgid "Printer Offline" |
1133 | msgstr "Imprimante hors ligne" | 894 | msgstr "Imprimante hors ligne" |
1134 | 895 | ||
1135 | #: plugins/check_hpjd.c:253 | ||
1136 | msgid "Peripheral Error" | 896 | msgid "Peripheral Error" |
1137 | msgstr "Erreur du périphérique" | 897 | msgstr "Erreur du périphérique" |
1138 | 898 | ||
1139 | #: plugins/check_hpjd.c:257 | ||
1140 | msgid "Intervention Required" | 899 | msgid "Intervention Required" |
1141 | msgstr "Intervention Requise" | 900 | msgstr "Intervention Requise" |
1142 | 901 | ||
1143 | #: plugins/check_hpjd.c:261 | ||
1144 | msgid "Toner Low" | 902 | msgid "Toner Low" |
1145 | msgstr "Toner Faible" | 903 | msgstr "Toner Faible" |
1146 | 904 | ||
1147 | #: plugins/check_hpjd.c:265 | ||
1148 | msgid "Insufficient Memory" | 905 | msgid "Insufficient Memory" |
1149 | msgstr "Mémoire Insuffisante" | 906 | msgstr "Mémoire Insuffisante" |
1150 | 907 | ||
1151 | #: plugins/check_hpjd.c:269 | ||
1152 | msgid "A Door is Open" | 908 | msgid "A Door is Open" |
1153 | msgstr "Une porte est ouverte" | 909 | msgstr "Une porte est ouverte" |
1154 | 910 | ||
1155 | #: plugins/check_hpjd.c:273 | ||
1156 | msgid "Output Tray is Full" | 911 | msgid "Output Tray is Full" |
1157 | msgstr "Le bac de sortie est plein" | 912 | msgstr "Le bac de sortie est plein" |
1158 | 913 | ||
1159 | #: plugins/check_hpjd.c:277 | ||
1160 | msgid "Data too Slow for Engine" | 914 | msgid "Data too Slow for Engine" |
1161 | msgstr "Le données arrivent trop lentement pour l'imprimante" | 915 | msgstr "Le données arrivent trop lentement pour l'imprimante" |
1162 | 916 | ||
1163 | #: plugins/check_hpjd.c:281 | ||
1164 | msgid "Unknown Paper Error" | 917 | msgid "Unknown Paper Error" |
1165 | msgstr "Erreur de papier inconnue" | 918 | msgstr "Erreur de papier inconnue" |
1166 | 919 | ||
1167 | #: plugins/check_hpjd.c:286 | ||
1168 | #, c-format | 920 | #, c-format |
1169 | msgid "Printer ok - (%s)\n" | 921 | msgid "Printer ok - (%s)\n" |
1170 | msgstr "Imprimante ok - (%s)\n" | 922 | msgstr "Imprimante ok - (%s)\n" |
1171 | 923 | ||
1172 | #: plugins/check_hpjd.c:391 | 924 | #, fuzzy |
925 | msgid "Port must be a positive short integer" | ||
926 | msgstr "Le numéro du port doit être un entier positif" | ||
927 | |||
1173 | msgid "This plugin tests the STATUS of an HP printer with a JetDirect card." | 928 | msgid "This plugin tests the STATUS of an HP printer with a JetDirect card." |
1174 | msgstr "Ce plugin teste l'état d'une imprimante HP avec une carte JetDirect." | 929 | msgstr "Ce plugin teste l'état d'une imprimante HP avec une carte JetDirect." |
1175 | 930 | ||
1176 | #: plugins/check_hpjd.c:392 | ||
1177 | msgid "Net-snmp must be installed on the computer running the plugin." | 931 | msgid "Net-snmp must be installed on the computer running the plugin." |
1178 | msgstr "Net-snmp doit être installé sur l'ordinateur qui exécute le plugin." | 932 | msgstr "Net-snmp doit être installé sur l'ordinateur qui exécute le plugin." |
1179 | 933 | ||
1180 | #: plugins/check_hpjd.c:402 | ||
1181 | msgid "The SNMP community name " | 934 | msgid "The SNMP community name " |
1182 | msgstr "Le nom de la communauté SNMP " | 935 | msgstr "Le nom de la communauté SNMP " |
1183 | 936 | ||
1184 | #: plugins/check_hpjd.c:403 | ||
1185 | #, c-format | 937 | #, c-format |
1186 | msgid "(default=%s)" | 938 | msgid "(default=%s)" |
1187 | msgstr "(défaut=%s)" | 939 | msgstr "(défaut=%s)" |
1188 | 940 | ||
1189 | #: plugins/check_http.c:189 | 941 | #, fuzzy |
942 | msgid "Specify the port to check " | ||
943 | msgstr "Nom de l'hôte à vérifier" | ||
944 | |||
945 | #, fuzzy | ||
946 | msgid "Disable paper check " | ||
947 | msgstr "Variable a vérifier" | ||
948 | |||
1190 | msgid "file does not exist or is not readable" | 949 | msgid "file does not exist or is not readable" |
1191 | msgstr "" | 950 | msgstr "" |
1192 | 951 | ||
1193 | #: plugins/check_http.c:310 plugins/check_http.c:315 plugins/check_http.c:321 | ||
1194 | #: plugins/check_smtp.c:600 plugins/check_tcp.c:576 plugins/check_tcp.c:580 | ||
1195 | #: plugins/check_tcp.c:586 | ||
1196 | msgid "Invalid certificate expiration period" | 952 | msgid "Invalid certificate expiration period" |
1197 | msgstr "Période d'expiration du certificat invalide" | 953 | msgstr "Période d'expiration du certificat invalide" |
1198 | 954 | ||
1199 | #: plugins/check_http.c:348 | ||
1200 | msgid "" | 955 | msgid "" |
1201 | "Invalid option - Valid values for SSL Version are 1 (TLSv1), 2 (SSLv2) or 3 " | 956 | "Invalid option - Valid SSL/TLS versions: 2, 3, 1, 1.1, 1.2 (with optional " |
1202 | "(SSLv3)" | 957 | "'+' suffix)" |
1203 | msgstr "" | 958 | msgstr "" |
1204 | 959 | ||
1205 | #: plugins/check_http.c:354 plugins/check_tcp.c:599 | ||
1206 | msgid "Invalid option - SSL is not available" | 960 | msgid "Invalid option - SSL is not available" |
1207 | msgstr "Option invalide - SSL n'est pas disponible" | 961 | msgstr "Option invalide - SSL n'est pas disponible" |
1208 | 962 | ||
1209 | #: plugins/check_http.c:375 | 963 | msgid "Invalid max_redirs count" |
964 | msgstr "" | ||
965 | |||
1210 | msgid "Invalid onredirect option" | 966 | msgid "Invalid onredirect option" |
1211 | msgstr "" | 967 | msgstr "" |
1212 | 968 | ||
1213 | #: plugins/check_http.c:377 | ||
1214 | #, c-format | 969 | #, c-format |
1215 | msgid "option f:%d \n" | 970 | msgid "option f:%d \n" |
1216 | msgstr "option f:%d \n" | 971 | msgstr "option f:%d \n" |
1217 | 972 | ||
1218 | #: plugins/check_http.c:398 | ||
1219 | msgid "Invalid port number" | 973 | msgid "Invalid port number" |
1220 | msgstr "Numéro de port invalide" | 974 | msgstr "Numéro de port invalide" |
1221 | 975 | ||
1222 | #: plugins/check_http.c:450 | ||
1223 | #, c-format | 976 | #, c-format |
1224 | msgid "Could Not Compile Regular Expression: %s" | 977 | msgid "Could Not Compile Regular Expression: %s" |
1225 | msgstr "Impossible de compiler l'expression rationnelle: %s" | 978 | msgstr "Impossible de compiler l'expression rationnelle: %s" |
1226 | 979 | ||
1227 | #: plugins/check_http.c:464 plugins/check_ntp.c:722 | ||
1228 | #: plugins/check_ntp_peer.c:513 plugins/check_ntp_time.c:512 | ||
1229 | #: plugins/check_smtp.c:621 plugins/check_ssh.c:149 plugins/check_tcp.c:477 | ||
1230 | msgid "IPv6 support not available" | 980 | msgid "IPv6 support not available" |
1231 | msgstr "Support IPv6 non disponible" | 981 | msgstr "Support IPv6 non disponible" |
1232 | 982 | ||
1233 | #: plugins/check_http.c:529 plugins/check_ping.c:422 | ||
1234 | msgid "You must specify a server address or host name" | 983 | msgid "You must specify a server address or host name" |
1235 | msgstr "Vous devez spécifier une adresse ou un nom d'hôte" | 984 | msgstr "Vous devez spécifier une adresse ou un nom d'hôte" |
1236 | 985 | ||
1237 | #: plugins/check_http.c:543 | ||
1238 | msgid "" | 986 | msgid "" |
1239 | "If you use a client certificate you must also specify a private key file" | 987 | "If you use a client certificate you must also specify a private key file" |
1240 | msgstr "" | 988 | msgstr "" |
1241 | 989 | ||
1242 | #: plugins/check_http.c:667 plugins/check_http.c:835 | ||
1243 | msgid "HTTP UNKNOWN - Memory allocation error\n" | 990 | msgid "HTTP UNKNOWN - Memory allocation error\n" |
1244 | msgstr "HTTP INCONNU - Impossible d'allouer la mémoire\n" | 991 | msgstr "HTTP INCONNU - Impossible d'allouer la mémoire\n" |
1245 | 992 | ||
1246 | #: plugins/check_http.c:739 | ||
1247 | #, c-format | 993 | #, c-format |
1248 | msgid "%sServer date unknown, " | 994 | msgid "%sServer date unknown, " |
1249 | msgstr "%sDate du serveur inconnue, " | 995 | msgstr "%sDate du serveur inconnue, " |
1250 | 996 | ||
1251 | #: plugins/check_http.c:742 | ||
1252 | #, c-format | 997 | #, c-format |
1253 | msgid "%sDocument modification date unknown, " | 998 | msgid "%sDocument modification date unknown, " |
1254 | msgstr "%sDate de modification du document inconnue, " | 999 | msgstr "%sDate de modification du document inconnue, " |
1255 | 1000 | ||
1256 | #: plugins/check_http.c:749 | ||
1257 | #, c-format | 1001 | #, c-format |
1258 | msgid "%sServer date \"%100s\" unparsable, " | 1002 | msgid "%sServer date \"%100s\" unparsable, " |
1259 | msgstr "%sDate du serveur \"%100s\" illisible, " | 1003 | msgstr "%sDate du serveur \"%100s\" illisible, " |
1260 | 1004 | ||
1261 | #: plugins/check_http.c:752 | ||
1262 | #, c-format | 1005 | #, c-format |
1263 | msgid "%sDocument date \"%100s\" unparsable, " | 1006 | msgid "%sDocument date \"%100s\" unparsable, " |
1264 | msgstr "%sDate du document \"%100s\" illisible, " | 1007 | msgstr "%sDate du document \"%100s\" illisible, " |
1265 | 1008 | ||
1266 | #: plugins/check_http.c:755 | ||
1267 | #, c-format | 1009 | #, c-format |
1268 | msgid "%sDocument is %d seconds in the future, " | 1010 | msgid "%sDocument is %d seconds in the future, " |
1269 | msgstr "%sLa date du document est %d secondes dans le futur, " | 1011 | msgstr "%sLa date du document est %d secondes dans le futur, " |
1270 | 1012 | ||
1271 | #: plugins/check_http.c:760 | ||
1272 | #, c-format | 1013 | #, c-format |
1273 | msgid "%sLast modified %.1f days ago, " | 1014 | msgid "%sLast modified %.1f days ago, " |
1274 | msgstr "%sDernière modification %.1f jours auparavant, " | 1015 | msgstr "%sDernière modification %.1f jours auparavant, " |
1275 | 1016 | ||
1276 | #: plugins/check_http.c:763 | ||
1277 | #, c-format | 1017 | #, c-format |
1278 | msgid "%sLast modified %d:%02d:%02d ago, " | 1018 | msgid "%sLast modified %d:%02d:%02d ago, " |
1279 | msgstr "%sDernière modification %d:%02d:%02d auparavant, " | 1019 | msgstr "%sDernière modification %d:%02d:%02d auparavant, " |
1280 | 1020 | ||
1281 | #: plugins/check_http.c:876 | ||
1282 | msgid "HTTP CRITICAL - Unable to open TCP socket\n" | 1021 | msgid "HTTP CRITICAL - Unable to open TCP socket\n" |
1283 | msgstr "HTTP CRITIQUE - Impossible d'ouvrir un socket TCP\n" | 1022 | msgstr "HTTP CRITIQUE - Impossible d'ouvrir un socket TCP\n" |
1284 | 1023 | ||
1285 | #: plugins/check_http.c:995 | 1024 | #, fuzzy |
1025 | msgid "HTTP UNKNOWN - Could not allocate memory for full_page\n" | ||
1026 | msgstr "HTTP INCONNU - Impossible d'allouer une adresse\n" | ||
1027 | |||
1286 | msgid "HTTP CRITICAL - Error on receive\n" | 1028 | msgid "HTTP CRITICAL - Error on receive\n" |
1287 | msgstr "HTTP CRITIQUE - Erreur dans la réception\n" | 1029 | msgstr "HTTP CRITIQUE - Erreur dans la réception\n" |
1288 | 1030 | ||
1289 | #: plugins/check_http.c:1005 | ||
1290 | msgid "HTTP CRITICAL - No data received from host\n" | 1031 | msgid "HTTP CRITICAL - No data received from host\n" |
1291 | msgstr "HTTP CRITIQUE - Pas de données reçues de l'hôte\n" | 1032 | msgstr "HTTP CRITIQUE - Pas de données reçues de l'hôte\n" |
1292 | 1033 | ||
1293 | #: plugins/check_http.c:1056 | ||
1294 | #, c-format | 1034 | #, c-format |
1295 | msgid "Invalid HTTP response received from host: %s\n" | 1035 | msgid "Invalid HTTP response received from host: %s\n" |
1296 | msgstr "Réponse HTTP reçue de l'hôte invalide: %s\n" | 1036 | msgstr "Réponse HTTP reçue de l'hôte invalide: %s\n" |
1297 | 1037 | ||
1298 | #: plugins/check_http.c:1060 | ||
1299 | #, c-format | 1038 | #, c-format |
1300 | msgid "Invalid HTTP response received from host on port %d: %s\n" | 1039 | msgid "Invalid HTTP response received from host on port %d: %s\n" |
1301 | msgstr "Réponse HTTP reçue de l'hôte sur le port %d invalide: %s\n" | 1040 | msgstr "Réponse HTTP reçue de l'hôte sur le port %d invalide: %s\n" |
1302 | 1041 | ||
1303 | #: plugins/check_http.c:1069 | 1042 | #, c-format |
1043 | msgid "" | ||
1044 | "%s\n" | ||
1045 | "%s" | ||
1046 | msgstr "" | ||
1047 | |||
1304 | #, c-format | 1048 | #, c-format |
1305 | msgid "Status line output matched \"%s\" - " | 1049 | msgid "Status line output matched \"%s\" - " |
1306 | msgstr "La ligne d'état correspond à \"%s\" - " | 1050 | msgstr "La ligne d'état correspond à \"%s\" - " |
1307 | 1051 | ||
1308 | #: plugins/check_http.c:1080 | ||
1309 | #, c-format | 1052 | #, c-format |
1310 | msgid "HTTP CRITICAL: Invalid Status Line (%s)\n" | 1053 | msgid "HTTP CRITICAL: Invalid Status Line (%s)\n" |
1311 | msgstr "HTTP CRITIQUE: Ligne d'état non valide (%s)\n" | 1054 | msgstr "HTTP CRITIQUE: Ligne d'état non valide (%s)\n" |
1312 | 1055 | ||
1313 | #: plugins/check_http.c:1087 | ||
1314 | #, c-format | 1056 | #, c-format |
1315 | msgid "HTTP CRITICAL: Invalid Status (%s)\n" | 1057 | msgid "HTTP CRITICAL: Invalid Status (%s)\n" |
1316 | msgstr "HTTP CRITIQUE: Etat Invalide (%s)\n" | 1058 | msgstr "HTTP CRITIQUE: Etat Invalide (%s)\n" |
1317 | 1059 | ||
1318 | #: plugins/check_http.c:1091 plugins/check_http.c:1096 | ||
1319 | #: plugins/check_http.c:1106 plugins/check_http.c:1110 | ||
1320 | #, c-format | 1060 | #, c-format |
1321 | msgid "%s - " | 1061 | msgid "%s - " |
1322 | msgstr "" | 1062 | msgstr "" |
1323 | 1063 | ||
1324 | #: plugins/check_http.c:1129 | ||
1325 | #, fuzzy, c-format | 1064 | #, fuzzy, c-format |
1326 | msgid "%sheader '%s' not found on '%s://%s:%d%s', " | 1065 | msgid "%sheader '%s' not found on '%s://%s:%d%s', " |
1327 | msgstr "%schaîne non trouvée, " | 1066 | msgstr "%schaîne non trouvée, " |
1328 | 1067 | ||
1329 | #: plugins/check_http.c:1141 | ||
1330 | #, fuzzy, c-format | 1068 | #, fuzzy, c-format |
1331 | msgid "%sstring '%s' not found on '%s://%s:%d%s', " | 1069 | msgid "%sstring '%s' not found on '%s://%s:%d%s', " |
1332 | msgstr "%schaîne non trouvée, " | 1070 | msgstr "%schaîne non trouvée, " |
1333 | 1071 | ||
1334 | #: plugins/check_http.c:1154 | ||
1335 | #, c-format | 1072 | #, c-format |
1336 | msgid "%spattern not found, " | 1073 | msgid "%spattern not found, " |
1337 | msgstr "%sexpression non trouvée, " | 1074 | msgstr "%sexpression non trouvée, " |
1338 | 1075 | ||
1339 | #: plugins/check_http.c:1156 | ||
1340 | #, c-format | 1076 | #, c-format |
1341 | msgid "%spattern found, " | 1077 | msgid "%spattern found, " |
1342 | msgstr "%sexpression trouvée, " | 1078 | msgstr "%sexpression trouvée, " |
1343 | 1079 | ||
1344 | #: plugins/check_http.c:1162 | ||
1345 | #, c-format | 1080 | #, c-format |
1346 | msgid "%sExecute Error: %s, " | 1081 | msgid "%sExecute Error: %s, " |
1347 | msgstr "%sErreur d'exécution: %s, " | 1082 | msgstr "%sErreur d'exécution: %s, " |
1348 | 1083 | ||
1349 | #: plugins/check_http.c:1178 | ||
1350 | #, c-format | 1084 | #, c-format |
1351 | msgid "%spage size %d too large, " | 1085 | msgid "%spage size %d too large, " |
1352 | msgstr "%sla taille de la page est trop grande (%d), " | 1086 | msgstr "%sla taille de la page est trop grande (%d), " |
1353 | 1087 | ||
1354 | #: plugins/check_http.c:1181 | ||
1355 | #, c-format | 1088 | #, c-format |
1356 | msgid "%spage size %d too small, " | 1089 | msgid "%spage size %d too small, " |
1357 | msgstr "%sla taille de la page est trop petite (%d), " | 1090 | msgstr "%sla taille de la page est trop petite (%d), " |
1358 | 1091 | ||
1359 | #: plugins/check_http.c:1194 | ||
1360 | #, fuzzy, c-format | 1092 | #, fuzzy, c-format |
1361 | msgid "%s - %d bytes in %.3f second response time %s|%s %s %s %s %s %s %s" | 1093 | msgid "%s - %d bytes in %.3f second response time %s|%s %s %s %s %s %s %s" |
1362 | msgstr "%s - %d octets en %.3f secondes de temps de réponse %s|%s %s" | 1094 | msgstr "%s - %d octets en %.3f secondes de temps de réponse %s|%s %s" |
1363 | 1095 | ||
1364 | #: plugins/check_http.c:1206 | ||
1365 | #, c-format | 1096 | #, c-format |
1366 | msgid "%s - %d bytes in %.3f second response time %s|%s %s" | 1097 | msgid "%s - %d bytes in %.3f second response time %s|%s %s" |
1367 | msgstr "%s - %d octets en %.3f secondes de temps de réponse %s|%s %s" | 1098 | msgstr "%s - %d octets en %.3f secondes de temps de réponse %s|%s %s" |
1368 | 1099 | ||
1369 | #: plugins/check_http.c:1244 | ||
1370 | msgid "HTTP UNKNOWN - Could not allocate addr\n" | 1100 | msgid "HTTP UNKNOWN - Could not allocate addr\n" |
1371 | msgstr "HTTP INCONNU - Impossible d'allouer une adresse\n" | 1101 | msgstr "HTTP INCONNU - Impossible d'allouer une adresse\n" |
1372 | 1102 | ||
1373 | #: plugins/check_http.c:1248 plugins/check_http.c:1279 | ||
1374 | msgid "HTTP UNKNOWN - Could not allocate URL\n" | 1103 | msgid "HTTP UNKNOWN - Could not allocate URL\n" |
1375 | msgstr "HTTP INCONNU - Impossible d'allouer l'URL\n" | 1104 | msgstr "HTTP INCONNU - Impossible d'allouer l'URL\n" |
1376 | 1105 | ||
1377 | #: plugins/check_http.c:1257 | ||
1378 | #, c-format | 1106 | #, c-format |
1379 | msgid "HTTP UNKNOWN - Could not find redirect location - %s%s\n" | 1107 | msgid "HTTP UNKNOWN - Could not find redirect location - %s%s\n" |
1380 | msgstr "" | 1108 | msgstr "" |
1381 | "HTTP INCONNU - Impossible de trouver l'endroit de la redirection - %s%s\n" | 1109 | "HTTP INCONNU - Impossible de trouver l'endroit de la redirection - %s%s\n" |
1382 | 1110 | ||
1383 | #: plugins/check_http.c:1272 | ||
1384 | #, c-format | 1111 | #, c-format |
1385 | msgid "HTTP UNKNOWN - Empty redirect location%s\n" | 1112 | msgid "HTTP UNKNOWN - Empty redirect location%s\n" |
1386 | msgstr "HTTP INCONNU - endroit de redirection vide%s\n" | 1113 | msgstr "HTTP INCONNU - endroit de redirection vide%s\n" |
1387 | 1114 | ||
1388 | #: plugins/check_http.c:1322 | ||
1389 | #, c-format | 1115 | #, c-format |
1390 | msgid "HTTP UNKNOWN - Could not parse redirect location - %s%s\n" | 1116 | msgid "HTTP UNKNOWN - Could not parse redirect location - %s%s\n" |
1391 | msgstr "" | 1117 | msgstr "" |
1392 | "HTTP INCONNU - Impossible de définir l'endroit de la redirection - %s%s\n" | 1118 | "HTTP INCONNU - Impossible de définir l'endroit de la redirection - %s%s\n" |
1393 | 1119 | ||
1394 | #: plugins/check_http.c:1332 | ||
1395 | #, c-format | 1120 | #, c-format |
1396 | msgid "HTTP WARNING - maximum redirection depth %d exceeded - %s://%s:%d%s%s\n" | 1121 | msgid "HTTP WARNING - maximum redirection depth %d exceeded - %s://%s:%d%s%s\n" |
1397 | msgstr "" | 1122 | msgstr "" |
1398 | "HTTP AVERTISSEMENT - le niveau maximum de redirection %d à été dépassé - " | 1123 | "HTTP AVERTISSEMENT - le niveau maximum de redirection %d à été dépassé - " |
1399 | "%s://%s:%d%s%s\n" | 1124 | "%s://%s:%d%s%s\n" |
1400 | 1125 | ||
1401 | #: plugins/check_http.c:1340 | 1126 | #, fuzzy, c-format |
1402 | #, c-format | 1127 | msgid "HTTP CRITICAL - redirection creates an infinite loop - %s://%s:%d%s%s\n" |
1403 | msgid "HTTP WARNING - redirection creates an infinite loop - %s://%s:%d%s%s\n" | ||
1404 | msgstr "" | 1128 | msgstr "" |
1405 | "HTTP AVERTISSEMENT - la redirection crée une boucle infinie - %s://%s:%d%s" | 1129 | "HTTP AVERTISSEMENT - la redirection crée une boucle infinie - %s://%s:" |
1406 | "%s\n" | 1130 | "%d%s%s\n" |
1407 | 1131 | ||
1408 | #: plugins/check_http.c:1361 | ||
1409 | #, c-format | 1132 | #, c-format |
1410 | msgid "HTTP UNKNOWN - Redirection to port above %d - %s://%s:%d%s%s\n" | 1133 | msgid "HTTP UNKNOWN - Redirection to port above %d - %s://%s:%d%s%s\n" |
1411 | msgstr "HTTP INCONNU - Redirection à un port supérieur à %d - %s://%s:%d%s%s\n" | 1134 | msgstr "HTTP INCONNU - Redirection à un port supérieur à %d - %s://%s:%d%s%s\n" |
1412 | 1135 | ||
1413 | #: plugins/check_http.c:1366 | ||
1414 | #, c-format | 1136 | #, c-format |
1415 | msgid "Redirection to %s://%s:%d%s\n" | 1137 | msgid "Redirection to %s://%s:%d%s\n" |
1416 | msgstr "Redirection vers %s://%s:%d%s\n" | 1138 | msgstr "Redirection vers %s://%s:%d%s\n" |
1417 | 1139 | ||
1418 | #: plugins/check_http.c:1440 | ||
1419 | msgid "This plugin tests the HTTP service on the specified host. It can test" | 1140 | msgid "This plugin tests the HTTP service on the specified host. It can test" |
1420 | msgstr "" | 1141 | msgstr "" |
1421 | "Ce plugin teste le service HTTP sur l'hôte spécifié. Il peut tester les" | 1142 | "Ce plugin teste le service HTTP sur l'hôte spécifié. Il peut tester les" |
1422 | 1143 | ||
1423 | #: plugins/check_http.c:1441 | ||
1424 | msgid "normal (http) and secure (https) servers, follow redirects, search for" | 1144 | msgid "normal (http) and secure (https) servers, follow redirects, search for" |
1425 | msgstr "" | 1145 | msgstr "" |
1426 | "serveurs normaux (http) et sécurisés (https), suivre les redirections, " | 1146 | "serveurs normaux (http) et sécurisés (https), suivre les redirections, " |
1427 | "rechercher des" | 1147 | "rechercher des" |
1428 | 1148 | ||
1429 | #: plugins/check_http.c:1442 | ||
1430 | msgid "strings and regular expressions, check connection times, and report on" | 1149 | msgid "strings and regular expressions, check connection times, and report on" |
1431 | msgstr "" | 1150 | msgstr "" |
1432 | "chaînes de caractères et expressions rationnelles, vérifier le temps de " | 1151 | "chaînes de caractères et expressions rationnelles, vérifier le temps de " |
1433 | "réponse" | 1152 | "réponse" |
1434 | 1153 | ||
1435 | #: plugins/check_http.c:1443 | ||
1436 | msgid "certificate expiration times." | 1154 | msgid "certificate expiration times." |
1437 | msgstr "et rapporter la date d'expiration du certificat." | 1155 | msgstr "et rapporter la date d'expiration du certificat." |
1438 | 1156 | ||
1439 | #: plugins/check_http.c:1449 | 1157 | #, c-format |
1158 | msgid "In the first form, make an HTTP request." | ||
1159 | msgstr "" | ||
1160 | |||
1161 | #, c-format | ||
1162 | msgid "" | ||
1163 | "In the second form, connect to the server and check the TLS certificate." | ||
1164 | msgstr "" | ||
1165 | |||
1440 | #, c-format | 1166 | #, c-format |
1441 | msgid "NOTE: One or both of -H and -I must be specified" | 1167 | msgid "NOTE: One or both of -H and -I must be specified" |
1442 | msgstr "NOTE: les paramètres -H et -I peuvent être spécifiés" | 1168 | msgstr "NOTE: les paramètres -H et -I peuvent être spécifiés" |
1443 | 1169 | ||
1444 | #: plugins/check_http.c:1457 | ||
1445 | msgid "Host name argument for servers using host headers (virtual host)" | 1170 | msgid "Host name argument for servers using host headers (virtual host)" |
1446 | msgstr "" | 1171 | msgstr "" |
1447 | 1172 | ||
1448 | #: plugins/check_http.c:1458 | ||
1449 | msgid "Append a port to include it in the header (eg: example.com:5000)" | 1173 | msgid "Append a port to include it in the header (eg: example.com:5000)" |
1450 | msgstr "" | 1174 | msgstr "" |
1451 | 1175 | ||
1452 | #: plugins/check_http.c:1460 | ||
1453 | msgid "" | 1176 | msgid "" |
1454 | "IP address or name (use numeric address if possible to bypass DNS lookup)." | 1177 | "IP address or name (use numeric address if possible to bypass DNS lookup)." |
1455 | msgstr "" | 1178 | msgstr "" |
1456 | 1179 | ||
1457 | #: plugins/check_http.c:1462 | ||
1458 | msgid "Port number (default: " | 1180 | msgid "Port number (default: " |
1459 | msgstr "Numéro du port (défaut: " | 1181 | msgstr "Numéro du port (défaut: " |
1460 | 1182 | ||
1461 | #: plugins/check_http.c:1469 | ||
1462 | msgid "" | 1183 | msgid "" |
1463 | "Connect via SSL. Port defaults to 443. VERSION is optional, and prevents" | 1184 | "Connect via SSL. Port defaults to 443. VERSION is optional, and prevents" |
1464 | msgstr "" | 1185 | msgstr "" |
1465 | 1186 | ||
1466 | #: plugins/check_http.c:1470 | 1187 | msgid "auto-negotiation (2 = SSLv2, 3 = SSLv3, 1 = TLSv1, 1.1 = TLSv1.1," |
1467 | msgid "auto-negotiation (1 = TLSv1, 2 = SSLv2, 3 = SSLv3)." | 1188 | msgstr "" |
1189 | |||
1190 | msgid "1.2 = TLSv1.2). With a '+' suffix, newer versions are also accepted." | ||
1468 | msgstr "" | 1191 | msgstr "" |
1469 | 1192 | ||
1470 | #: plugins/check_http.c:1472 | ||
1471 | msgid "Enable SSL/TLS hostname extension support (SNI)" | 1193 | msgid "Enable SSL/TLS hostname extension support (SNI)" |
1472 | msgstr "" | 1194 | msgstr "" |
1473 | 1195 | ||
1474 | #: plugins/check_http.c:1474 | ||
1475 | msgid "" | 1196 | msgid "" |
1476 | "Minimum number of days a certificate has to be valid. Port defaults to 443" | 1197 | "Minimum number of days a certificate has to be valid. Port defaults to 443" |
1477 | msgstr "" | 1198 | msgstr "" |
1478 | "Nombre de jours minimum pour que le certificat soit valide. Port par défaut " | 1199 | "Nombre de jours minimum pour que le certificat soit valide. Port par défaut " |
1479 | "443" | 1200 | "443" |
1480 | 1201 | ||
1481 | #: plugins/check_http.c:1475 | 1202 | msgid "" |
1482 | msgid "(when this option is used the URL is not checked.)" | 1203 | "(when this option is used the URL is not checked by default. You can use" |
1204 | msgstr "" | ||
1205 | |||
1206 | msgid " --continue-after-certificate to override this behavior)" | ||
1207 | msgstr "" | ||
1208 | |||
1209 | msgid "" | ||
1210 | "Allows the HTTP check to continue after performing the certificate check." | ||
1211 | msgstr "" | ||
1212 | |||
1213 | msgid "Does nothing unless -C is used." | ||
1483 | msgstr "" | 1214 | msgstr "" |
1484 | 1215 | ||
1485 | #: plugins/check_http.c:1477 | ||
1486 | msgid "Name of file that contains the client certificate (PEM format)" | 1216 | msgid "Name of file that contains the client certificate (PEM format)" |
1487 | msgstr "" | 1217 | msgstr "" |
1488 | 1218 | ||
1489 | #: plugins/check_http.c:1478 | ||
1490 | msgid "to be used in establishing the SSL session" | 1219 | msgid "to be used in establishing the SSL session" |
1491 | msgstr "" | 1220 | msgstr "" |
1492 | 1221 | ||
1493 | #: plugins/check_http.c:1480 | ||
1494 | msgid "Name of file containing the private key (PEM format)" | 1222 | msgid "Name of file containing the private key (PEM format)" |
1495 | msgstr "" | 1223 | msgstr "" |
1496 | 1224 | ||
1497 | #: plugins/check_http.c:1481 | ||
1498 | msgid "matching the client certificate" | 1225 | msgid "matching the client certificate" |
1499 | msgstr "" | 1226 | msgstr "" |
1500 | 1227 | ||
1501 | #: plugins/check_http.c:1485 | ||
1502 | msgid "Comma-delimited list of strings, at least one of them is expected in" | 1228 | msgid "Comma-delimited list of strings, at least one of them is expected in" |
1503 | msgstr "" | 1229 | msgstr "" |
1504 | "Liste the chaines de charactères séparées par des virgules, au moins une " | 1230 | "Liste the chaines de charactères séparées par des virgules, au moins une " |
1505 | "d'elles" | 1231 | "d'elles" |
1506 | 1232 | ||
1507 | #: plugins/check_http.c:1486 | ||
1508 | msgid "the first (status) line of the server response (default: " | 1233 | msgid "the first (status) line of the server response (default: " |
1509 | msgstr "est attendue dans la première ligne de réponse du serveur (défaut: " | 1234 | msgstr "est attendue dans la première ligne de réponse du serveur (défaut: " |
1510 | 1235 | ||
1511 | #: plugins/check_http.c:1488 | ||
1512 | msgid "" | 1236 | msgid "" |
1513 | "If specified skips all other status line logic (ex: 3xx, 4xx, 5xx processing)" | 1237 | "If specified skips all other status line logic (ex: 3xx, 4xx, 5xx processing)" |
1514 | msgstr "" | 1238 | msgstr "" |
1515 | "Si spécifié, surpasse toute autre logique de status (ex: 3xx, 4xx, 5xx)" | 1239 | "Si spécifié, surpasse toute autre logique de status (ex: 3xx, 4xx, 5xx)" |
1516 | 1240 | ||
1517 | #: plugins/check_http.c:1490 | ||
1518 | #, fuzzy | 1241 | #, fuzzy |
1519 | msgid "String to expect in the response headers" | 1242 | msgid "String to expect in the response headers" |
1520 | msgstr "Chaîne de caractères à attendre en réponse" | 1243 | msgstr "Chaîne de caractères à attendre en réponse" |
1521 | 1244 | ||
1522 | #: plugins/check_http.c:1492 | ||
1523 | msgid "String to expect in the content" | 1245 | msgid "String to expect in the content" |
1524 | msgstr "Chaîne de caractère attendue dans le contenu" | 1246 | msgstr "Chaîne de caractère attendue dans le contenu" |
1525 | 1247 | ||
1526 | #: plugins/check_http.c:1494 | ||
1527 | msgid "URL to GET or POST (default: /)" | 1248 | msgid "URL to GET or POST (default: /)" |
1528 | msgstr "URL pour le GET ou le POST (défaut: /)" | 1249 | msgstr "URL pour le GET ou le POST (défaut: /)" |
1529 | 1250 | ||
1530 | #: plugins/check_http.c:1496 | ||
1531 | msgid "URL encoded http POST data" | 1251 | msgid "URL encoded http POST data" |
1532 | msgstr "" | 1252 | msgstr "" |
1533 | 1253 | ||
1534 | #: plugins/check_http.c:1498 | ||
1535 | msgid "Set HTTP method." | 1254 | msgid "Set HTTP method." |
1536 | msgstr "" | 1255 | msgstr "" |
1537 | 1256 | ||
1538 | #: plugins/check_http.c:1500 | ||
1539 | msgid "Don't wait for document body: stop reading after headers." | 1257 | msgid "Don't wait for document body: stop reading after headers." |
1540 | msgstr "" | 1258 | msgstr "" |
1541 | "Ne pas attendre pour le corps du document: arrêter de lire après les entêtes" | 1259 | "Ne pas attendre pour le corps du document: arrêter de lire après les entêtes" |
1542 | 1260 | ||
1543 | #: plugins/check_http.c:1501 | ||
1544 | msgid "(Note that this still does an HTTP GET or POST, not a HEAD.)" | 1261 | msgid "(Note that this still does an HTTP GET or POST, not a HEAD.)" |
1545 | msgstr "(Veuillez noter qu'un HTTP GET ou POST est effectué, pas un HEAD.)" | 1262 | msgstr "(Veuillez noter qu'un HTTP GET ou POST est effectué, pas un HEAD.)" |
1546 | 1263 | ||
1547 | #: plugins/check_http.c:1503 | ||
1548 | msgid "Warn if document is more than SECONDS old. the number can also be of" | 1264 | msgid "Warn if document is more than SECONDS old. the number can also be of" |
1549 | msgstr "" | 1265 | msgstr "" |
1550 | 1266 | ||
1551 | #: plugins/check_http.c:1504 | ||
1552 | msgid "the form \"10m\" for minutes, \"10h\" for hours, or \"10d\" for days." | 1267 | msgid "the form \"10m\" for minutes, \"10h\" for hours, or \"10d\" for days." |
1553 | msgstr "" | 1268 | msgstr "" |
1554 | 1269 | ||
1555 | #: plugins/check_http.c:1506 | ||
1556 | msgid "specify Content-Type header media type when POSTing\n" | 1270 | msgid "specify Content-Type header media type when POSTing\n" |
1557 | msgstr "" | 1271 | msgstr "" |
1558 | 1272 | ||
1559 | #: plugins/check_http.c:1509 | ||
1560 | msgid "Allow regex to span newlines (must precede -r or -R)" | 1273 | msgid "Allow regex to span newlines (must precede -r or -R)" |
1561 | msgstr "" | 1274 | msgstr "" |
1562 | 1275 | ||
1563 | #: plugins/check_http.c:1511 | ||
1564 | msgid "Search page for regex STRING" | 1276 | msgid "Search page for regex STRING" |
1565 | msgstr "" | 1277 | msgstr "" |
1566 | 1278 | ||
1567 | #: plugins/check_http.c:1513 | ||
1568 | msgid "Search page for case-insensitive regex STRING" | 1279 | msgid "Search page for case-insensitive regex STRING" |
1569 | msgstr "" | 1280 | msgstr "" |
1570 | 1281 | ||
1571 | #: plugins/check_http.c:1515 | ||
1572 | msgid "Return CRITICAL if found, OK if not\n" | 1282 | msgid "Return CRITICAL if found, OK if not\n" |
1573 | msgstr "" | 1283 | msgstr "" |
1574 | 1284 | ||
1575 | #: plugins/check_http.c:1518 | ||
1576 | msgid "Username:password on sites with basic authentication" | 1285 | msgid "Username:password on sites with basic authentication" |
1577 | msgstr "" | 1286 | msgstr "" |
1578 | 1287 | ||
1579 | #: plugins/check_http.c:1520 | ||
1580 | msgid "Username:password on proxy-servers with basic authentication" | 1288 | msgid "Username:password on proxy-servers with basic authentication" |
1581 | msgstr "" | 1289 | msgstr "" |
1582 | 1290 | ||
1583 | #: plugins/check_http.c:1522 | ||
1584 | msgid "String to be sent in http header as \"User Agent\"" | 1291 | msgid "String to be sent in http header as \"User Agent\"" |
1585 | msgstr "" | 1292 | msgstr "" |
1586 | 1293 | ||
1587 | #: plugins/check_http.c:1524 | ||
1588 | msgid "" | 1294 | msgid "" |
1589 | "Any other tags to be sent in http header. Use multiple times for additional " | 1295 | "Any other tags to be sent in http header. Use multiple times for additional " |
1590 | "headers" | 1296 | "headers" |
1591 | msgstr "" | 1297 | msgstr "" |
1592 | 1298 | ||
1593 | #: plugins/check_http.c:1526 | ||
1594 | msgid "Print additional performance data" | 1299 | msgid "Print additional performance data" |
1595 | msgstr "" | 1300 | msgstr "" |
1596 | 1301 | ||
1597 | #: plugins/check_http.c:1528 | 1302 | msgid "Print body content below status line" |
1303 | msgstr "" | ||
1304 | |||
1598 | msgid "Wrap output in HTML link (obsoleted by urlize)" | 1305 | msgid "Wrap output in HTML link (obsoleted by urlize)" |
1599 | msgstr "" | 1306 | msgstr "" |
1600 | 1307 | ||
1601 | #: plugins/check_http.c:1530 | ||
1602 | msgid "How to handle redirected pages. sticky is like follow but stick to the" | 1308 | msgid "How to handle redirected pages. sticky is like follow but stick to the" |
1603 | msgstr "" | 1309 | msgstr "" |
1604 | 1310 | ||
1605 | #: plugins/check_http.c:1531 | ||
1606 | msgid "specified IP address. stickyport also ensures port stays the same." | 1311 | msgid "specified IP address. stickyport also ensures port stays the same." |
1607 | msgstr "" | 1312 | msgstr "" |
1608 | 1313 | ||
1609 | #: plugins/check_http.c:1533 | 1314 | #, fuzzy |
1315 | msgid "Maximal number of redirects (default: " | ||
1316 | msgstr "PROCS - nombre de processus (défaut)" | ||
1317 | |||
1610 | msgid "Minimum page size required (bytes) : Maximum page size required (bytes)" | 1318 | msgid "Minimum page size required (bytes) : Maximum page size required (bytes)" |
1611 | msgstr "" | 1319 | msgstr "" |
1612 | 1320 | ||
1613 | #: plugins/check_http.c:1543 | ||
1614 | msgid "This plugin will attempt to open an HTTP connection with the host." | 1321 | msgid "This plugin will attempt to open an HTTP connection with the host." |
1615 | msgstr "Ce plugin va essayer d'ouvrir un connexion SMTP avec l'hôte." | 1322 | msgstr "Ce plugin va essayer d'ouvrir un connexion SMTP avec l'hôte." |
1616 | 1323 | ||
1617 | #: plugins/check_http.c:1544 | ||
1618 | msgid "" | 1324 | msgid "" |
1619 | "Successful connects return STATE_OK, refusals and timeouts return " | 1325 | "Successful connects return STATE_OK, refusals and timeouts return " |
1620 | "STATE_CRITICAL" | 1326 | "STATE_CRITICAL" |
1621 | msgstr "" | 1327 | msgstr "" |
1622 | 1328 | ||
1623 | #: plugins/check_http.c:1545 | ||
1624 | msgid "" | 1329 | msgid "" |
1625 | "other errors return STATE_UNKNOWN. Successful connects, but incorrect " | 1330 | "other errors return STATE_UNKNOWN. Successful connects, but incorrect " |
1626 | "response" | 1331 | "response" |
1627 | msgstr "" | 1332 | msgstr "" |
1628 | 1333 | ||
1629 | #: plugins/check_http.c:1546 | ||
1630 | msgid "" | 1334 | msgid "" |
1631 | "messages from the host result in STATE_WARNING return values. If you are" | 1335 | "messages from the host result in STATE_WARNING return values. If you are" |
1632 | msgstr "" | 1336 | msgstr "" |
1633 | 1337 | ||
1634 | #: plugins/check_http.c:1547 | ||
1635 | msgid "" | 1338 | msgid "" |
1636 | "checking a virtual server that uses 'host headers' you must supply the FQDN" | 1339 | "checking a virtual server that uses 'host headers' you must supply the FQDN" |
1637 | msgstr "" | 1340 | msgstr "" |
1638 | 1341 | ||
1639 | #: plugins/check_http.c:1548 | ||
1640 | msgid "(fully qualified domain name) as the [host_name] argument." | 1342 | msgid "(fully qualified domain name) as the [host_name] argument." |
1641 | msgstr "" | 1343 | msgstr "" |
1642 | 1344 | ||
1643 | #: plugins/check_http.c:1552 | ||
1644 | msgid "This plugin can also check whether an SSL enabled web server is able to" | 1345 | msgid "This plugin can also check whether an SSL enabled web server is able to" |
1645 | msgstr "" | 1346 | msgstr "" |
1646 | 1347 | ||
1647 | #: plugins/check_http.c:1553 | ||
1648 | msgid "serve content (optionally within a specified time) or whether the X509 " | 1348 | msgid "serve content (optionally within a specified time) or whether the X509 " |
1649 | msgstr "" | 1349 | msgstr "" |
1650 | 1350 | ||
1651 | #: plugins/check_http.c:1554 | ||
1652 | msgid "certificate is still valid for the specified number of days." | 1351 | msgid "certificate is still valid for the specified number of days." |
1653 | msgstr "" | 1352 | msgstr "" |
1654 | 1353 | ||
1655 | #: plugins/check_http.c:1556 | ||
1656 | #, fuzzy | 1354 | #, fuzzy |
1657 | msgid "Please note that this plugin does not check if the presented server" | 1355 | msgid "Please note that this plugin does not check if the presented server" |
1658 | msgstr "Ce plugin vérifie le service ntp sur l'hôte" | 1356 | msgstr "Ce plugin vérifie le service ntp sur l'hôte" |
1659 | 1357 | ||
1660 | #: plugins/check_http.c:1557 | ||
1661 | msgid "certificate matches the hostname of the server, or if the certificate" | 1358 | msgid "certificate matches the hostname of the server, or if the certificate" |
1662 | msgstr "" | 1359 | msgstr "" |
1663 | 1360 | ||
1664 | #: plugins/check_http.c:1558 | ||
1665 | msgid "has a valid chain of trust to one of the locally installed CAs." | 1361 | msgid "has a valid chain of trust to one of the locally installed CAs." |
1666 | msgstr "" | 1362 | msgstr "" |
1667 | 1363 | ||
1668 | #: plugins/check_http.c:1562 | ||
1669 | msgid "" | 1364 | msgid "" |
1670 | "When the 'www.verisign.com' server returns its content within 5 seconds," | 1365 | "When the 'www.verisign.com' server returns its content within 5 seconds," |
1671 | msgstr "" | 1366 | msgstr "" |
1672 | 1367 | ||
1673 | #: plugins/check_http.c:1563 | ||
1674 | msgid "" | 1368 | msgid "" |
1675 | "a STATE_OK will be returned. When the server returns its content but exceeds" | 1369 | "a STATE_OK will be returned. When the server returns its content but exceeds" |
1676 | msgstr "" | 1370 | msgstr "" |
1677 | 1371 | ||
1678 | #: plugins/check_http.c:1564 | ||
1679 | msgid "" | 1372 | msgid "" |
1680 | "the 5-second threshold, a STATE_WARNING will be returned. When an error " | 1373 | "the 5-second threshold, a STATE_WARNING will be returned. When an error " |
1681 | "occurs," | 1374 | "occurs," |
1682 | msgstr "" | 1375 | msgstr "" |
1683 | 1376 | ||
1684 | #: plugins/check_http.c:1565 | ||
1685 | msgid "a STATE_CRITICAL will be returned." | 1377 | msgid "a STATE_CRITICAL will be returned." |
1686 | msgstr "" | 1378 | msgstr "" |
1687 | 1379 | ||
1688 | #: plugins/check_http.c:1568 | ||
1689 | msgid "" | 1380 | msgid "" |
1690 | "When the certificate of 'www.verisign.com' is valid for more than 14 days," | 1381 | "When the certificate of 'www.verisign.com' is valid for more than 14 days," |
1691 | msgstr "" | 1382 | msgstr "" |
1692 | 1383 | ||
1693 | #: plugins/check_http.c:1569 plugins/check_http.c:1575 | ||
1694 | msgid "" | 1384 | msgid "" |
1695 | "a STATE_OK is returned. When the certificate is still valid, but for less " | 1385 | "a STATE_OK is returned. When the certificate is still valid, but for less " |
1696 | "than" | 1386 | "than" |
1697 | msgstr "" | 1387 | msgstr "" |
1698 | 1388 | ||
1699 | #: plugins/check_http.c:1570 | ||
1700 | msgid "" | 1389 | msgid "" |
1701 | "14 days, a STATE_WARNING is returned. A STATE_CRITICAL will be returned when" | 1390 | "14 days, a STATE_WARNING is returned. A STATE_CRITICAL will be returned when" |
1702 | msgstr "" | 1391 | msgstr "" |
1703 | 1392 | ||
1704 | #: plugins/check_http.c:1571 | ||
1705 | msgid "the certificate is expired." | 1393 | msgid "the certificate is expired." |
1706 | msgstr "le certificat est expiré." | 1394 | msgstr "le certificat est expiré." |
1707 | 1395 | ||
1708 | #: plugins/check_http.c:1574 | ||
1709 | msgid "" | 1396 | msgid "" |
1710 | "When the certificate of 'www.verisign.com' is valid for more than 30 days," | 1397 | "When the certificate of 'www.verisign.com' is valid for more than 30 days," |
1711 | msgstr "" | 1398 | msgstr "" |
1712 | 1399 | ||
1713 | #: plugins/check_http.c:1576 | ||
1714 | msgid "30 days, but more than 14 days, a STATE_WARNING is returned." | 1400 | msgid "30 days, but more than 14 days, a STATE_WARNING is returned." |
1715 | msgstr "" | 1401 | msgstr "" |
1716 | 1402 | ||
1717 | #: plugins/check_http.c:1577 | ||
1718 | msgid "" | 1403 | msgid "" |
1719 | "A STATE_CRITICAL will be returned when certificate expires in less than 14 " | 1404 | "A STATE_CRITICAL will be returned when certificate expires in less than 14 " |
1720 | "days" | 1405 | "days" |
1721 | msgstr "" | 1406 | msgstr "" |
1722 | 1407 | ||
1723 | #: plugins/check_ldap.c:133 | 1408 | msgid "" |
1409 | "check_http -I 192.168.100.35 -p 80 -u https://www.verisign.com/ -S -j " | ||
1410 | "CONNECT -H www.verisign.com " | ||
1411 | msgstr "" | ||
1412 | |||
1413 | msgid "" | ||
1414 | "all these options are needed: -I <proxy> -p <proxy-port> -u <check-url> -" | ||
1415 | "S(sl) -j CONNECT -H <webserver>" | ||
1416 | msgstr "" | ||
1417 | |||
1418 | msgid "" | ||
1419 | "a STATE_CRITICAL will be returned. By adding a colon to the method you can " | ||
1420 | "set the method used" | ||
1421 | msgstr "" | ||
1422 | |||
1423 | msgid "inside the proxied connection: -j CONNECT:POST" | ||
1424 | msgstr "" | ||
1425 | |||
1724 | #, c-format | 1426 | #, c-format |
1725 | msgid "Could not connect to the server at port %i\n" | 1427 | msgid "Could not connect to the server at port %i\n" |
1726 | msgstr "Impossible de se connecter au serveur port %i\n" | 1428 | msgstr "Impossible de se connecter au serveur port %i\n" |
1727 | 1429 | ||
1728 | #: plugins/check_ldap.c:142 | ||
1729 | #, c-format | 1430 | #, c-format |
1730 | msgid "Could not set protocol version %d\n" | 1431 | msgid "Could not set protocol version %d\n" |
1731 | msgstr "Impossible d'utiliser le protocole version %d\n" | 1432 | msgstr "Impossible d'utiliser le protocole version %d\n" |
1732 | 1433 | ||
1733 | #: plugins/check_ldap.c:157 | ||
1734 | #, c-format | 1434 | #, c-format |
1735 | msgid "Could not init TLS at port %i!\n" | 1435 | msgid "Could not init TLS at port %i!\n" |
1736 | msgstr "Impossible d'initialiser TLS sur le port %i!\n" | 1436 | msgstr "Impossible d'initialiser TLS sur le port %i!\n" |
1737 | 1437 | ||
1738 | #: plugins/check_ldap.c:161 | ||
1739 | #, c-format | 1438 | #, c-format |
1740 | msgid "TLS not supported by the libraries!\n" | 1439 | msgid "TLS not supported by the libraries!\n" |
1741 | msgstr "TLS n'est pas supporté!\n" | 1440 | msgstr "TLS n'est pas supporté!\n" |
1742 | 1441 | ||
1743 | #: plugins/check_ldap.c:181 | ||
1744 | #, c-format | 1442 | #, c-format |
1745 | msgid "Could not init startTLS at port %i!\n" | 1443 | msgid "Could not init startTLS at port %i!\n" |
1746 | msgstr "Impossible d'initialiser startTLS sur le port %i!\n" | 1444 | msgstr "Impossible d'initialiser startTLS sur le port %i!\n" |
1747 | 1445 | ||
1748 | #: plugins/check_ldap.c:185 | ||
1749 | #, c-format | 1446 | #, c-format |
1750 | msgid "startTLS not supported by the library, needs LDAPv3!\n" | 1447 | msgid "startTLS not supported by the library, needs LDAPv3!\n" |
1751 | msgstr "" | 1448 | msgstr "" |
1752 | "startTLS n'est pas supporté par la librairie LDAP, j'ai besoin de LDAPv3!\n" | 1449 | "startTLS n'est pas supporté par la librairie LDAP, j'ai besoin de LDAPv3!\n" |
1753 | 1450 | ||
1754 | #: plugins/check_ldap.c:195 | ||
1755 | #, c-format | 1451 | #, c-format |
1756 | msgid "Could not bind to the LDAP server\n" | 1452 | msgid "Could not bind to the LDAP server\n" |
1757 | msgstr "Impossible de se connecter au serveur LDAP\n" | 1453 | msgstr "Impossible de se connecter au serveur LDAP\n" |
1758 | 1454 | ||
1759 | #: plugins/check_ldap.c:204 | ||
1760 | #, c-format | 1455 | #, c-format |
1761 | msgid "Could not search/find objectclasses in %s\n" | 1456 | msgid "Could not search/find objectclasses in %s\n" |
1762 | msgstr "Impossible de chercher/trouver les objectclasses dans %s\n" | 1457 | msgstr "Impossible de chercher/trouver les objectclasses dans %s\n" |
1763 | 1458 | ||
1764 | #: plugins/check_ldap.c:227 | 1459 | #, fuzzy, c-format |
1460 | msgid "LDAP %s - found %d entries in %.3f seconds|%s %s\n" | ||
1461 | msgstr "%s - %d octets en %.3f secondes de temps de réponse %s|%s %s" | ||
1462 | |||
1765 | #, c-format | 1463 | #, c-format |
1766 | msgid "LDAP %s - %.3f seconds response time|%s\n" | 1464 | msgid "LDAP %s - %.3f seconds response time|%s\n" |
1767 | msgstr "LDAP %s - %.3f secondes de temps de réponse|%s\n" | 1465 | msgstr "LDAP %s - %.3f secondes de temps de réponse|%s\n" |
1768 | 1466 | ||
1769 | #: plugins/check_ldap.c:339 plugins/check_ldap.c:347 | ||
1770 | #, c-format | 1467 | #, c-format |
1771 | msgid "%s cannot be combined with %s" | 1468 | msgid "%s cannot be combined with %s" |
1772 | msgstr "" | 1469 | msgstr "" |
1773 | 1470 | ||
1774 | #: plugins/check_ldap.c:379 | ||
1775 | msgid "Please specify the host name\n" | 1471 | msgid "Please specify the host name\n" |
1776 | msgstr "Veuillez spécifier le nom de l'hôte\n" | 1472 | msgstr "Veuillez spécifier le nom de l'hôte\n" |
1777 | 1473 | ||
1778 | #: plugins/check_ldap.c:382 | ||
1779 | msgid "Please specify the LDAP base\n" | 1474 | msgid "Please specify the LDAP base\n" |
1780 | msgstr "Veuillez spécifier la base LDAP\n" | 1475 | msgstr "Veuillez spécifier la base LDAP\n" |
1781 | 1476 | ||
1782 | #: plugins/check_ldap.c:411 | ||
1783 | msgid "ldap attribute to search (default: \"(objectclass=*)\"" | 1477 | msgid "ldap attribute to search (default: \"(objectclass=*)\"" |
1784 | msgstr "" | 1478 | msgstr "" |
1785 | 1479 | ||
1786 | #: plugins/check_ldap.c:413 | ||
1787 | msgid "ldap base (eg. ou=my unit, o=my org, c=at" | 1480 | msgid "ldap base (eg. ou=my unit, o=my org, c=at" |
1788 | msgstr "" | 1481 | msgstr "" |
1789 | 1482 | ||
1790 | #: plugins/check_ldap.c:415 | ||
1791 | msgid "ldap bind DN (if required)" | 1483 | msgid "ldap bind DN (if required)" |
1792 | msgstr "" | 1484 | msgstr "" |
1793 | 1485 | ||
1794 | #: plugins/check_ldap.c:417 | 1486 | msgid "" |
1795 | msgid "ldap password (if required)" | 1487 | "ldap password (if required, or set the password through environment variable " |
1488 | "'LDAP_PASSWORD')" | ||
1796 | msgstr "" | 1489 | msgstr "" |
1797 | 1490 | ||
1798 | #: plugins/check_ldap.c:419 | ||
1799 | msgid "use starttls mechanism introduced in protocol version 3" | 1491 | msgid "use starttls mechanism introduced in protocol version 3" |
1800 | msgstr "utiliser le fonctionnement starttls du protocole version 3" | 1492 | msgstr "utiliser le fonctionnement starttls du protocole version 3" |
1801 | 1493 | ||
1802 | #: plugins/check_ldap.c:421 | ||
1803 | msgid "use ldaps (ldap v2 ssl method). this also sets the default port to" | 1494 | msgid "use ldaps (ldap v2 ssl method). this also sets the default port to" |
1804 | msgstr "" | 1495 | msgstr "" |
1805 | 1496 | ||
1806 | #: plugins/check_ldap.c:425 | ||
1807 | msgid "use ldap protocol version 2" | 1497 | msgid "use ldap protocol version 2" |
1808 | msgstr "utiliser le protocole ldap version 2" | 1498 | msgstr "utiliser le protocole ldap version 2" |
1809 | 1499 | ||
1810 | #: plugins/check_ldap.c:427 | ||
1811 | msgid "use ldap protocol version 3" | 1500 | msgid "use ldap protocol version 3" |
1812 | msgstr "utiliser le protocole ldap version 3" | 1501 | msgstr "utiliser le protocole ldap version 3" |
1813 | 1502 | ||
1814 | #: plugins/check_ldap.c:428 | ||
1815 | msgid "default protocol version:" | 1503 | msgid "default protocol version:" |
1816 | msgstr "version du protocole par défaut:" | 1504 | msgstr "version du protocole par défaut:" |
1817 | 1505 | ||
1818 | #: plugins/check_ldap.c:439 | 1506 | #, fuzzy |
1507 | msgid "Number of found entries to result in warning status" | ||
1508 | msgstr "Décalage résultant en un avertissement (secondes)" | ||
1509 | |||
1510 | #, fuzzy | ||
1511 | msgid "Number of found entries to result in critical status" | ||
1512 | msgstr "Décalage résultant en un état critique (secondes)" | ||
1513 | |||
1819 | msgid "If this plugin is called via 'check_ldaps', method 'STARTTLS' will be" | 1514 | msgid "If this plugin is called via 'check_ldaps', method 'STARTTLS' will be" |
1820 | msgstr "" | 1515 | msgstr "" |
1821 | 1516 | ||
1822 | #: plugins/check_ldap.c:440 | ||
1823 | #, c-format | 1517 | #, c-format |
1824 | msgid "" | 1518 | msgid "" |
1825 | " implied (using default port %i) unless --port=636 is specified. In that " | 1519 | " implied (using default port %i) unless --port=636 is specified. In that " |
1826 | "case\n" | 1520 | "case\n" |
1827 | msgstr "" | 1521 | msgstr "" |
1828 | 1522 | ||
1829 | #: plugins/check_ldap.c:441 | ||
1830 | msgid "'SSL on connect' will be used no matter how the plugin was called." | 1523 | msgid "'SSL on connect' will be used no matter how the plugin was called." |
1831 | msgstr "" | 1524 | msgstr "" |
1832 | 1525 | ||
1833 | #: plugins/check_ldap.c:442 | ||
1834 | msgid "" | 1526 | msgid "" |
1835 | "This detection is deprecated, please use 'check_ldap' with the '--starttls' " | 1527 | "This detection is deprecated, please use 'check_ldap' with the '--starttls' " |
1836 | "or '--ssl' flags" | 1528 | "or '--ssl' flags" |
1837 | msgstr "" | 1529 | msgstr "" |
1838 | 1530 | ||
1839 | #: plugins/check_ldap.c:443 | ||
1840 | msgid "to define the behaviour explicitly instead." | 1531 | msgid "to define the behaviour explicitly instead." |
1841 | msgstr "" | 1532 | msgstr "" |
1842 | 1533 | ||
1843 | #: plugins/check_load.c:87 | 1534 | msgid "The parameters --warn-entries and --crit-entries are optional." |
1535 | msgstr "" | ||
1536 | |||
1844 | msgid "Warning threshold must be float or float triplet!\n" | 1537 | msgid "Warning threshold must be float or float triplet!\n" |
1845 | msgstr "Le seuil d'alerte doit être un nombre à virgule flottante!\n" | 1538 | msgstr "Le seuil d'alerte doit être un nombre à virgule flottante!\n" |
1846 | 1539 | ||
1847 | #: plugins/check_load.c:132 plugins/check_load.c:148 | ||
1848 | #, c-format | 1540 | #, c-format |
1849 | msgid "Error opening %s\n" | 1541 | msgid "Error opening %s\n" |
1850 | msgstr "Erreur à l'ouverture de %s\n" | 1542 | msgstr "Erreur à l'ouverture de %s\n" |
1851 | 1543 | ||
1852 | #: plugins/check_load.c:163 | ||
1853 | #, fuzzy, c-format | 1544 | #, fuzzy, c-format |
1854 | msgid "could not parse load from uptime: %s\n" | 1545 | msgid "could not parse load from uptime %s: %d\n" |
1855 | msgstr "Lecture des arguments impossible\n" | 1546 | msgstr "Lecture des arguments impossible\n" |
1856 | 1547 | ||
1857 | #: plugins/check_load.c:169 | ||
1858 | #, c-format | 1548 | #, c-format |
1859 | msgid "Error code %d returned in %s\n" | 1549 | msgid "Error code %d returned in %s\n" |
1860 | msgstr "Le code erreur %d à été retourné par %s\n" | 1550 | msgstr "Le code erreur %d à été retourné par %s\n" |
1861 | 1551 | ||
1862 | #: plugins/check_load.c:184 | ||
1863 | #, c-format | 1552 | #, c-format |
1864 | msgid "Error in getloadavg()\n" | 1553 | msgid "Error in getloadavg()\n" |
1865 | msgstr "Erreur dans la fonction getloadavg()\n" | 1554 | msgstr "Erreur dans la fonction getloadavg()\n" |
1866 | 1555 | ||
1867 | #: plugins/check_load.c:187 plugins/check_load.c:189 | ||
1868 | #, c-format | 1556 | #, c-format |
1869 | msgid "Error processing %s\n" | 1557 | msgid "Error processing %s\n" |
1870 | msgstr "Erreur lors de l'utilisation de %s\n" | 1558 | msgstr "Erreur lors de l'utilisation de %s\n" |
1871 | 1559 | ||
1872 | #: plugins/check_load.c:198 | ||
1873 | #, c-format | 1560 | #, c-format |
1874 | msgid "load average: %.2f, %.2f, %.2f" | 1561 | msgid "load average: %.2f, %.2f, %.2f" |
1875 | msgstr "Charge moyenne: %.2f, %.2f, %.2f" | 1562 | msgstr "Charge moyenne: %.2f, %.2f, %.2f" |
1876 | 1563 | ||
1877 | #: plugins/check_load.c:291 | ||
1878 | #, c-format | 1564 | #, c-format |
1879 | msgid "Critical threshold for %d-minute load average is not specified\n" | 1565 | msgid "Critical threshold for %d-minute load average is not specified\n" |
1880 | msgstr "" | 1566 | msgstr "" |
1881 | "Le seuil critique pour la charge système après %d minutes n'est pas " | 1567 | "Le seuil critique pour la charge système après %d minutes n'est pas " |
1882 | "spécifié\n" | 1568 | "spécifié\n" |
1883 | 1569 | ||
1884 | #: plugins/check_load.c:293 | ||
1885 | #, c-format | 1570 | #, c-format |
1886 | msgid "Warning threshold for %d-minute load average is not specified\n" | 1571 | msgid "Warning threshold for %d-minute load average is not specified\n" |
1887 | msgstr "" | 1572 | msgstr "" |
1888 | "Le seuil d'avertissement pour la charge système après %d minutes n'est pas " | 1573 | "Le seuil d'avertissement pour la charge système après %d minutes n'est pas " |
1889 | "spécifié\n" | 1574 | "spécifié\n" |
1890 | 1575 | ||
1891 | #: plugins/check_load.c:295 | ||
1892 | #, c-format | 1576 | #, c-format |
1893 | msgid "" | 1577 | msgid "" |
1894 | "Parameter inconsistency: %d-minute \"warning load\" is greater than " | 1578 | "Parameter inconsistency: %d-minute \"warning load\" is greater than " |
@@ -1897,62 +1581,61 @@ msgstr "" | |||
1897 | "Arguments Incorrects: %d-minute \"alerte charge système\" est plus grand que " | 1581 | "Arguments Incorrects: %d-minute \"alerte charge système\" est plus grand que " |
1898 | "\"alerte critique charge système\"\n" | 1582 | "\"alerte critique charge système\"\n" |
1899 | 1583 | ||
1900 | #: plugins/check_load.c:311 | ||
1901 | #, c-format | 1584 | #, c-format |
1902 | msgid "This plugin tests the current system load average." | 1585 | msgid "This plugin tests the current system load average." |
1903 | msgstr "Ce plugin teste la charge système actuelle." | 1586 | msgstr "Ce plugin teste la charge système actuelle." |
1904 | 1587 | ||
1905 | #: plugins/check_load.c:321 | ||
1906 | msgid "Exit with WARNING status if load average exceeds WLOADn" | 1588 | msgid "Exit with WARNING status if load average exceeds WLOADn" |
1907 | msgstr "" | 1589 | msgstr "" |
1908 | "Sortir avec un résultat AVERTISSEMENT si la charge moyenne dépasse WLOAD" | 1590 | "Sortir avec un résultat AVERTISSEMENT si la charge moyenne dépasse WLOAD" |
1909 | 1591 | ||
1910 | #: plugins/check_load.c:323 | ||
1911 | msgid "Exit with CRITICAL status if load average exceed CLOADn" | 1592 | msgid "Exit with CRITICAL status if load average exceed CLOADn" |
1912 | msgstr "Sortir avec un résultat CRITIQUE si la charge moyenne excède CLOAD" | 1593 | msgstr "Sortir avec un résultat CRITIQUE si la charge moyenne excède CLOAD" |
1913 | 1594 | ||
1914 | #: plugins/check_load.c:324 | ||
1915 | msgid "the load average format is the same used by \"uptime\" and \"w\"" | 1595 | msgid "the load average format is the same used by \"uptime\" and \"w\"" |
1916 | msgstr "" | 1596 | msgstr "" |
1917 | 1597 | ||
1918 | #: plugins/check_load.c:326 | ||
1919 | msgid "Divide the load averages by the number of CPUs (when possible)" | 1598 | msgid "Divide the load averages by the number of CPUs (when possible)" |
1920 | msgstr "" | 1599 | msgstr "" |
1921 | 1600 | ||
1922 | #: plugins/check_mrtg.c:75 | 1601 | msgid "Number of processes to show when printing the top consuming processes." |
1602 | msgstr "" | ||
1603 | |||
1604 | msgid "NUMBER_OF_PROCS=0 disables this feature. Default value is 0" | ||
1605 | msgstr "" | ||
1606 | |||
1607 | #, c-format | ||
1608 | msgid "'%s' exited with non-zero status.\n" | ||
1609 | msgstr "" | ||
1610 | |||
1611 | #, c-format | ||
1612 | msgid "some error occurred getting procs list.\n" | ||
1613 | msgstr "" | ||
1614 | |||
1923 | msgid "Could not parse arguments\n" | 1615 | msgid "Could not parse arguments\n" |
1924 | msgstr "Lecture des arguments impossible\n" | 1616 | msgstr "Lecture des arguments impossible\n" |
1925 | 1617 | ||
1926 | #: plugins/check_mrtg.c:80 | ||
1927 | #, c-format | 1618 | #, c-format |
1928 | msgid "Unable to open MRTG log file\n" | 1619 | msgid "Unable to open MRTG log file\n" |
1929 | msgstr "Impossible d'ouvrir le fichier de log de MRTG\n" | 1620 | msgstr "Impossible d'ouvrir le fichier de log de MRTG\n" |
1930 | 1621 | ||
1931 | #: plugins/check_mrtg.c:127 | ||
1932 | #, c-format | 1622 | #, c-format |
1933 | msgid "Unable to process MRTG log file\n" | 1623 | msgid "Unable to process MRTG log file\n" |
1934 | msgstr "Impossible de traiter le fichier de log de MRTG\n" | 1624 | msgstr "Impossible de traiter le fichier de log de MRTG\n" |
1935 | 1625 | ||
1936 | #: plugins/check_mrtg.c:135 plugins/check_mrtgtraf.c:136 | ||
1937 | #, c-format | 1626 | #, c-format |
1938 | msgid "MRTG data has expired (%d minutes old)\n" | 1627 | msgid "MRTG data has expired (%d minutes old)\n" |
1939 | msgstr "Les données de MRTG on expirées (vieilles de %d minutes)\n" | 1628 | msgstr "Les données de MRTG on expirées (vieilles de %d minutes)\n" |
1940 | 1629 | ||
1941 | #: plugins/check_mrtg.c:152 plugins/check_mrtgtraf.c:195 | ||
1942 | #: plugins/check_mrtgtraf.c:196 | ||
1943 | msgid "Avg" | 1630 | msgid "Avg" |
1944 | msgstr "Moyenne" | 1631 | msgstr "Moyenne" |
1945 | 1632 | ||
1946 | #: plugins/check_mrtg.c:152 plugins/check_mrtgtraf.c:195 | ||
1947 | #: plugins/check_mrtgtraf.c:196 | ||
1948 | msgid "Max" | 1633 | msgid "Max" |
1949 | msgstr "Max" | 1634 | msgstr "Max" |
1950 | 1635 | ||
1951 | #: plugins/check_mrtg.c:221 | ||
1952 | msgid "Invalid variable number" | 1636 | msgid "Invalid variable number" |
1953 | msgstr "Numéro de la variable invalide" | 1637 | msgstr "Numéro de la variable invalide" |
1954 | 1638 | ||
1955 | #: plugins/check_mrtg.c:256 | ||
1956 | #, c-format | 1639 | #, c-format |
1957 | msgid "" | 1640 | msgid "" |
1958 | "%s is not a valid expiration time\n" | 1641 | "%s is not a valid expiration time\n" |
@@ -1961,1061 +1644,833 @@ msgstr "" | |||
1961 | "%s n'est pas un temps d'expiration valide\n" | 1644 | "%s n'est pas un temps d'expiration valide\n" |
1962 | "Utilisez '%s -h' pour de l'aide supplémentaire\n" | 1645 | "Utilisez '%s -h' pour de l'aide supplémentaire\n" |
1963 | 1646 | ||
1964 | #: plugins/check_mrtg.c:273 | ||
1965 | msgid "Invalid variable number\n" | 1647 | msgid "Invalid variable number\n" |
1966 | msgstr "Numéro de la variable invalide\n" | 1648 | msgstr "Numéro de la variable invalide\n" |
1967 | 1649 | ||
1968 | #: plugins/check_mrtg.c:300 | ||
1969 | msgid "You must supply the variable number" | 1650 | msgid "You must supply the variable number" |
1970 | msgstr "Vous devez fournir le numéro de la variable" | 1651 | msgstr "Vous devez fournir le numéro de la variable" |
1971 | 1652 | ||
1972 | #: plugins/check_mrtg.c:321 | ||
1973 | msgid "" | 1653 | msgid "" |
1974 | "This plugin will check either the average or maximum value of one of the" | 1654 | "This plugin will check either the average or maximum value of one of the" |
1975 | msgstr "Ce plugin va vérifier la moyenne ou le maximum d'une " | 1655 | msgstr "Ce plugin va vérifier la moyenne ou le maximum d'une " |
1976 | 1656 | ||
1977 | #: plugins/check_mrtg.c:322 | ||
1978 | msgid "two variables recorded in an MRTG log file." | 1657 | msgid "two variables recorded in an MRTG log file." |
1979 | msgstr "deux variables du fichier de log de MRTG." | 1658 | msgstr "deux variables du fichier de log de MRTG." |
1980 | 1659 | ||
1981 | #: plugins/check_mrtg.c:332 | ||
1982 | msgid "The MRTG log file containing the data you want to monitor" | 1660 | msgid "The MRTG log file containing the data you want to monitor" |
1983 | msgstr "" | 1661 | msgstr "" |
1984 | 1662 | ||
1985 | #: plugins/check_mrtg.c:334 | ||
1986 | msgid "Minutes before MRTG data is considered to be too old" | 1663 | msgid "Minutes before MRTG data is considered to be too old" |
1987 | msgstr "" | 1664 | msgstr "" |
1988 | 1665 | ||
1989 | #: plugins/check_mrtg.c:336 | ||
1990 | msgid "Should we check average or maximum values?" | 1666 | msgid "Should we check average or maximum values?" |
1991 | msgstr "" | 1667 | msgstr "" |
1992 | 1668 | ||
1993 | #: plugins/check_mrtg.c:338 | ||
1994 | msgid "Which variable set should we inspect? (1 or 2)" | 1669 | msgid "Which variable set should we inspect? (1 or 2)" |
1995 | msgstr "" | 1670 | msgstr "" |
1996 | 1671 | ||
1997 | #: plugins/check_mrtg.c:340 | ||
1998 | msgid "Threshold value for data to result in WARNING status" | 1672 | msgid "Threshold value for data to result in WARNING status" |
1999 | msgstr "" | 1673 | msgstr "" |
2000 | 1674 | ||
2001 | #: plugins/check_mrtg.c:342 | ||
2002 | msgid "Threshold value for data to result in CRITICAL status" | 1675 | msgid "Threshold value for data to result in CRITICAL status" |
2003 | msgstr "" | 1676 | msgstr "" |
2004 | 1677 | ||
2005 | #: plugins/check_mrtg.c:344 | ||
2006 | msgid "Type label for data (Examples: Conns, \"Processor Load\", In, Out)" | 1678 | msgid "Type label for data (Examples: Conns, \"Processor Load\", In, Out)" |
2007 | msgstr "" | 1679 | msgstr "" |
2008 | 1680 | ||
2009 | #: plugins/check_mrtg.c:346 | ||
2010 | msgid "Option units label for data (Example: Packets/Sec, Errors/Sec," | 1681 | msgid "Option units label for data (Example: Packets/Sec, Errors/Sec," |
2011 | msgstr "" | 1682 | msgstr "" |
2012 | 1683 | ||
2013 | #: plugins/check_mrtg.c:347 | ||
2014 | #, c-format | 1684 | #, c-format |
2015 | msgid "\"Bytes Per Second\", \"%% Utilization\")" | 1685 | msgid "\"Bytes Per Second\", \"%% Utilization\")" |
2016 | msgstr "" | 1686 | msgstr "" |
2017 | 1687 | ||
2018 | #: plugins/check_mrtg.c:350 | ||
2019 | msgid "" | 1688 | msgid "" |
2020 | "If the value exceeds the <vwl> threshold, a WARNING status is returned. If" | 1689 | "If the value exceeds the <vwl> threshold, a WARNING status is returned. If" |
2021 | msgstr "" | 1690 | msgstr "" |
2022 | 1691 | ||
2023 | #: plugins/check_mrtg.c:351 | ||
2024 | msgid "" | 1692 | msgid "" |
2025 | "the value exceeds the <vcl> threshold, a CRITICAL status is returned. If" | 1693 | "the value exceeds the <vcl> threshold, a CRITICAL status is returned. If" |
2026 | msgstr "" | 1694 | msgstr "" |
2027 | 1695 | ||
2028 | #: plugins/check_mrtg.c:352 | ||
2029 | msgid "the data in the log file is older than <expire_minutes> old, a WARNING" | 1696 | msgid "the data in the log file is older than <expire_minutes> old, a WARNING" |
2030 | msgstr "" | 1697 | msgstr "" |
2031 | 1698 | ||
2032 | #: plugins/check_mrtg.c:353 | ||
2033 | msgid "status is returned and a warning message is printed." | 1699 | msgid "status is returned and a warning message is printed." |
2034 | msgstr "" | 1700 | msgstr "" |
2035 | 1701 | ||
2036 | #: plugins/check_mrtg.c:356 | ||
2037 | msgid "" | 1702 | msgid "" |
2038 | "This plugin is useful for monitoring MRTG data that does not correspond to" | 1703 | "This plugin is useful for monitoring MRTG data that does not correspond to" |
2039 | msgstr "" | 1704 | msgstr "" |
2040 | 1705 | ||
2041 | #: plugins/check_mrtg.c:357 | ||
2042 | msgid "" | 1706 | msgid "" |
2043 | "bandwidth usage. (Use the check_mrtgtraf plugin for monitoring bandwidth)." | 1707 | "bandwidth usage. (Use the check_mrtgtraf plugin for monitoring bandwidth)." |
2044 | msgstr "" | 1708 | msgstr "" |
2045 | 1709 | ||
2046 | #: plugins/check_mrtg.c:358 | ||
2047 | msgid "" | 1710 | msgid "" |
2048 | "It can be used to monitor any kind of data that MRTG is monitoring - errors," | 1711 | "It can be used to monitor any kind of data that MRTG is monitoring - errors," |
2049 | msgstr "" | 1712 | msgstr "" |
2050 | 1713 | ||
2051 | #: plugins/check_mrtg.c:359 | ||
2052 | msgid "" | 1714 | msgid "" |
2053 | "packets/sec, etc. I use MRTG in conjunction with the Novell NLM that allows" | 1715 | "packets/sec, etc. I use MRTG in conjunction with the Novell NLM that allows" |
2054 | msgstr "" | 1716 | msgstr "" |
2055 | 1717 | ||
2056 | #: plugins/check_mrtg.c:360 | ||
2057 | msgid "" | 1718 | msgid "" |
2058 | "me to track processor utilization, user connections, drive space, etc and" | 1719 | "me to track processor utilization, user connections, drive space, etc and" |
2059 | msgstr "" | 1720 | msgstr "" |
2060 | 1721 | ||
2061 | #: plugins/check_mrtg.c:361 | ||
2062 | msgid "this plugin works well for monitoring that kind of data as well." | 1722 | msgid "this plugin works well for monitoring that kind of data as well." |
2063 | msgstr "" | 1723 | msgstr "" |
2064 | 1724 | ||
2065 | #: plugins/check_mrtg.c:364 | ||
2066 | msgid "" | 1725 | msgid "" |
2067 | "- This plugin only monitors one of the two variables stored in the MRTG log" | 1726 | "- This plugin only monitors one of the two variables stored in the MRTG log" |
2068 | msgstr "" | 1727 | msgstr "" |
2069 | "- Ce plugin vérifie seulement une ou deux variables écrites dans un fichier " | 1728 | "- Ce plugin vérifie seulement une ou deux variables écrites dans un fichier " |
2070 | "de log MRTG" | 1729 | "de log MRTG" |
2071 | 1730 | ||
2072 | #: plugins/check_mrtg.c:365 | ||
2073 | msgid "file. If you want to monitor both values you will have to define two" | 1731 | msgid "file. If you want to monitor both values you will have to define two" |
2074 | msgstr "" | 1732 | msgstr "" |
2075 | 1733 | ||
2076 | #: plugins/check_mrtg.c:366 | ||
2077 | msgid "commands with different values for the <variable> argument. Of course," | 1734 | msgid "commands with different values for the <variable> argument. Of course," |
2078 | msgstr "" | 1735 | msgstr "" |
2079 | 1736 | ||
2080 | #: plugins/check_mrtg.c:367 | ||
2081 | msgid "you can always hack the code to make this plugin work for you..." | 1737 | msgid "you can always hack the code to make this plugin work for you..." |
2082 | msgstr "" | 1738 | msgstr "" |
2083 | 1739 | ||
2084 | #: plugins/check_mrtg.c:368 | ||
2085 | msgid "" | 1740 | msgid "" |
2086 | "- MRTG stands for the Multi Router Traffic Grapher. It can be downloaded " | 1741 | "- MRTG stands for the Multi Router Traffic Grapher. It can be downloaded " |
2087 | "from" | 1742 | "from" |
2088 | msgstr "" | 1743 | msgstr "" |
2089 | 1744 | ||
2090 | #: plugins/check_mrtgtraf.c:88 | ||
2091 | msgid "Unable to open MRTG log file" | 1745 | msgid "Unable to open MRTG log file" |
2092 | msgstr "Impossible d'ouvrir le fichier de log de MRTG" | 1746 | msgstr "Impossible d'ouvrir le fichier de log de MRTG" |
2093 | 1747 | ||
2094 | #: plugins/check_mrtgtraf.c:130 | ||
2095 | msgid "Unable to process MRTG log file" | 1748 | msgid "Unable to process MRTG log file" |
2096 | msgstr "Impossible de traiter le fichier de log de MRTG" | 1749 | msgstr "Impossible de traiter le fichier de log de MRTG" |
2097 | 1750 | ||
2098 | #: plugins/check_mrtgtraf.c:194 | 1751 | #, fuzzy, c-format |
2099 | #, c-format | 1752 | msgid "%s. In = %0.1f %s/s, %s. Out = %0.1f %s/s|%s %s\n" |
2100 | msgid "%s. In = %0.1f %s, %s. Out = %0.1f %s|%s %s\n" | ||
2101 | msgstr "%s. Entrée = %0.1f %s, %s. Sortie = %0.1f %s|%s %s\n" | 1753 | msgstr "%s. Entrée = %0.1f %s, %s. Sortie = %0.1f %s|%s %s\n" |
2102 | 1754 | ||
2103 | #: plugins/check_mrtgtraf.c:207 | ||
2104 | #, c-format | 1755 | #, c-format |
2105 | msgid "Traffic %s - %s\n" | 1756 | msgid "Traffic %s - %s\n" |
2106 | msgstr "Trafic %s - %s\n" | 1757 | msgstr "Trafic %s - %s\n" |
2107 | 1758 | ||
2108 | #: plugins/check_mrtgtraf.c:335 | ||
2109 | msgid "" | 1759 | msgid "" |
2110 | "This plugin will check the incoming/outgoing transfer rates of a router," | 1760 | "This plugin will check the incoming/outgoing transfer rates of a router," |
2111 | msgstr "" | 1761 | msgstr "" |
2112 | "Ce plugin va vérifier le taux de transfert en entrée/sortie d'un routeur," | 1762 | "Ce plugin va vérifier le taux de transfert en entrée/sortie d'un routeur," |
2113 | 1763 | ||
2114 | #: plugins/check_mrtgtraf.c:336 | ||
2115 | msgid "switch, etc recorded in an MRTG log. If the newest log entry is older" | 1764 | msgid "switch, etc recorded in an MRTG log. If the newest log entry is older" |
2116 | msgstr "" | 1765 | msgstr "" |
2117 | 1766 | ||
2118 | #: plugins/check_mrtgtraf.c:337 | ||
2119 | msgid "than <expire_minutes>, a WARNING status is returned. If either the" | 1767 | msgid "than <expire_minutes>, a WARNING status is returned. If either the" |
2120 | msgstr "" | 1768 | msgstr "" |
2121 | 1769 | ||
2122 | #: plugins/check_mrtgtraf.c:338 | ||
2123 | msgid "incoming or outgoing rates exceed the <icl> or <ocl> thresholds (in" | 1770 | msgid "incoming or outgoing rates exceed the <icl> or <ocl> thresholds (in" |
2124 | msgstr "" | 1771 | msgstr "" |
2125 | 1772 | ||
2126 | #: plugins/check_mrtgtraf.c:339 | ||
2127 | msgid "Bytes/sec), a CRITICAL status results. If either of the rates exceed" | 1773 | msgid "Bytes/sec), a CRITICAL status results. If either of the rates exceed" |
2128 | msgstr "" | 1774 | msgstr "" |
2129 | 1775 | ||
2130 | #: plugins/check_mrtgtraf.c:340 | ||
2131 | msgid "the <iwl> or <owl> thresholds (in Bytes/sec), a WARNING status results." | 1776 | msgid "the <iwl> or <owl> thresholds (in Bytes/sec), a WARNING status results." |
2132 | msgstr "" | 1777 | msgstr "" |
2133 | 1778 | ||
2134 | #: plugins/check_mrtgtraf.c:350 | ||
2135 | msgid "File to read log from" | 1779 | msgid "File to read log from" |
2136 | msgstr "" | 1780 | msgstr "" |
2137 | 1781 | ||
2138 | #: plugins/check_mrtgtraf.c:352 | ||
2139 | msgid "Minutes after which log expires" | 1782 | msgid "Minutes after which log expires" |
2140 | msgstr "" | 1783 | msgstr "" |
2141 | 1784 | ||
2142 | #: plugins/check_mrtgtraf.c:354 | ||
2143 | msgid "Test average or maximum" | 1785 | msgid "Test average or maximum" |
2144 | msgstr "" | 1786 | msgstr "" |
2145 | 1787 | ||
2146 | #: plugins/check_mrtgtraf.c:356 | ||
2147 | msgid "Warning threshold pair <incoming>,<outgoing>" | 1788 | msgid "Warning threshold pair <incoming>,<outgoing>" |
2148 | msgstr "Paire de seuils d'avertissement <entrant>,<sortant>" | 1789 | msgstr "Paire de seuils d'avertissement <entrant>,<sortant>" |
2149 | 1790 | ||
2150 | #: plugins/check_mrtgtraf.c:358 | ||
2151 | msgid "Critical threshold pair <incoming>,<outgoing>" | 1791 | msgid "Critical threshold pair <incoming>,<outgoing>" |
2152 | msgstr "Paire de seuils critique <entrant>,<sortant>" | 1792 | msgstr "Paire de seuils critique <entrant>,<sortant>" |
2153 | 1793 | ||
2154 | #: plugins/check_mrtgtraf.c:362 | ||
2155 | msgid "" | 1794 | msgid "" |
2156 | "- MRTG stands for Multi Router Traffic Grapher. It can be downloaded from" | 1795 | "- MRTG stands for Multi Router Traffic Grapher. It can be downloaded from" |
2157 | msgstr "" | 1796 | msgstr "" |
2158 | 1797 | ||
2159 | #: plugins/check_mrtgtraf.c:364 | ||
2160 | msgid "- While MRTG can monitor things other than traffic rates, this" | 1798 | msgid "- While MRTG can monitor things other than traffic rates, this" |
2161 | msgstr "" | 1799 | msgstr "" |
2162 | 1800 | ||
2163 | #: plugins/check_mrtgtraf.c:365 | ||
2164 | msgid " plugin probably won't work with much else without modification." | 1801 | msgid " plugin probably won't work with much else without modification." |
2165 | msgstr "" | 1802 | msgstr "" |
2166 | 1803 | ||
2167 | #: plugins/check_mrtgtraf.c:366 | ||
2168 | msgid "- The calculated i/o rates are a little off from what MRTG actually" | 1804 | msgid "- The calculated i/o rates are a little off from what MRTG actually" |
2169 | msgstr "" | 1805 | msgstr "" |
2170 | 1806 | ||
2171 | #: plugins/check_mrtgtraf.c:367 | ||
2172 | msgid " reports. I'm not sure why this is right now, but will look into it" | 1807 | msgid " reports. I'm not sure why this is right now, but will look into it" |
2173 | msgstr "" | 1808 | msgstr "" |
2174 | 1809 | ||
2175 | #: plugins/check_mrtgtraf.c:368 | ||
2176 | msgid " for future enhancements of this plugin." | 1810 | msgid " for future enhancements of this plugin." |
2177 | msgstr "" | 1811 | msgstr "" |
2178 | 1812 | ||
2179 | #: plugins/check_mrtgtraf.c:378 | ||
2180 | #, c-format | 1813 | #, c-format |
2181 | msgid "Usage" | 1814 | msgid "Usage" |
2182 | msgstr "Utilisation" | 1815 | msgstr "Utilisation" |
2183 | 1816 | ||
2184 | #: plugins/check_mysql.c:171 | ||
2185 | #, fuzzy, c-format | 1817 | #, fuzzy, c-format |
2186 | msgid "status store_result error: %s\n" | 1818 | msgid "status store_result error: %s\n" |
2187 | msgstr "erreur slave store_result: %s\n" | 1819 | msgstr "erreur slave store_result: %s\n" |
2188 | 1820 | ||
2189 | #: plugins/check_mysql.c:202 | ||
2190 | #, c-format | 1821 | #, c-format |
2191 | msgid "slave query error: %s\n" | 1822 | msgid "slave query error: %s\n" |
2192 | msgstr "erreur de requête de l'esclave: %s\n" | 1823 | msgstr "erreur de requête de l'esclave: %s\n" |
2193 | 1824 | ||
2194 | #: plugins/check_mysql.c:209 | ||
2195 | #, c-format | 1825 | #, c-format |
2196 | msgid "slave store_result error: %s\n" | 1826 | msgid "slave store_result error: %s\n" |
2197 | msgstr "erreur slave store_result: %s\n" | 1827 | msgstr "erreur slave store_result: %s\n" |
2198 | 1828 | ||
2199 | #: plugins/check_mysql.c:215 | ||
2200 | msgid "No slaves defined" | 1829 | msgid "No slaves defined" |
2201 | msgstr "Pas d'esclave spécifié" | 1830 | msgstr "Pas d'esclave spécifié" |
2202 | 1831 | ||
2203 | #: plugins/check_mysql.c:223 | ||
2204 | #, c-format | 1832 | #, c-format |
2205 | msgid "slave fetch row error: %s\n" | 1833 | msgid "slave fetch row error: %s\n" |
2206 | msgstr "erreur esclave lecture d'une ligne: %s\n" | 1834 | msgstr "erreur esclave lecture d'une ligne: %s\n" |
2207 | 1835 | ||
2208 | #: plugins/check_mysql.c:228 | ||
2209 | #, c-format | 1836 | #, c-format |
2210 | msgid "Slave running: %s" | 1837 | msgid "Slave running: %s" |
2211 | msgstr "L'esclave fonctionne: %s" | 1838 | msgstr "L'esclave fonctionne: %s" |
2212 | 1839 | ||
2213 | #: plugins/check_mysql.c:505 | ||
2214 | msgid "This program tests connections to a MySQL server" | 1840 | msgid "This program tests connections to a MySQL server" |
2215 | msgstr "Ce plugin teste une connexion vers un serveur MySQL" | 1841 | msgstr "Ce plugin teste une connexion vers un serveur MySQL" |
2216 | 1842 | ||
2217 | #: plugins/check_mysql.c:516 | 1843 | msgid "Ignore authentication failure and check for mysql connectivity only" |
1844 | msgstr "" | ||
1845 | |||
2218 | msgid "Use the specified socket (has no effect if -H is used)" | 1846 | msgid "Use the specified socket (has no effect if -H is used)" |
2219 | msgstr "" | 1847 | msgstr "" |
2220 | 1848 | ||
2221 | #: plugins/check_mysql.c:519 | ||
2222 | msgid "Check database with indicated name" | 1849 | msgid "Check database with indicated name" |
2223 | msgstr "" | 1850 | msgstr "" |
2224 | 1851 | ||
2225 | #: plugins/check_mysql.c:521 | ||
2226 | msgid "Read from the specified client options file" | 1852 | msgid "Read from the specified client options file" |
2227 | msgstr "" | 1853 | msgstr "" |
2228 | 1854 | ||
2229 | #: plugins/check_mysql.c:523 | ||
2230 | msgid "Use a client options group" | 1855 | msgid "Use a client options group" |
2231 | msgstr "" | 1856 | msgstr "" |
2232 | 1857 | ||
2233 | #: plugins/check_mysql.c:525 | ||
2234 | msgid "Connect using the indicated username" | 1858 | msgid "Connect using the indicated username" |
2235 | msgstr "" | 1859 | msgstr "" |
2236 | 1860 | ||
2237 | #: plugins/check_mysql.c:527 | ||
2238 | msgid "Use the indicated password to authenticate the connection" | 1861 | msgid "Use the indicated password to authenticate the connection" |
2239 | msgstr "" | 1862 | msgstr "" |
2240 | 1863 | ||
2241 | #: plugins/check_mysql.c:528 | ||
2242 | msgid "IMPORTANT: THIS FORM OF AUTHENTICATION IS NOT SECURE!!!" | 1864 | msgid "IMPORTANT: THIS FORM OF AUTHENTICATION IS NOT SECURE!!!" |
2243 | msgstr "" | 1865 | msgstr "" |
2244 | 1866 | ||
2245 | #: plugins/check_mysql.c:529 | ||
2246 | msgid "Your clear-text password could be visible as a process table entry" | 1867 | msgid "Your clear-text password could be visible as a process table entry" |
2247 | msgstr "" | 1868 | msgstr "" |
2248 | 1869 | ||
2249 | #: plugins/check_mysql.c:531 | ||
2250 | msgid "Check if the slave thread is running properly." | 1870 | msgid "Check if the slave thread is running properly." |
2251 | msgstr "" | 1871 | msgstr "" |
2252 | 1872 | ||
2253 | #: plugins/check_mysql.c:533 | ||
2254 | msgid "Exit with WARNING status if slave server is more than INTEGER seconds" | 1873 | msgid "Exit with WARNING status if slave server is more than INTEGER seconds" |
2255 | msgstr "" | 1874 | msgstr "" |
2256 | "Sortir avec un résultat AVERTISSEMENT si le serveur esclave est plus de X " | 1875 | "Sortir avec un résultat AVERTISSEMENT si le serveur esclave est plus de X " |
2257 | 1876 | ||
2258 | #: plugins/check_mysql.c:534 plugins/check_mysql.c:537 | ||
2259 | msgid "behind master" | 1877 | msgid "behind master" |
2260 | msgstr "secondes en retard sur le maître" | 1878 | msgstr "secondes en retard sur le maître" |
2261 | 1879 | ||
2262 | #: plugins/check_mysql.c:536 | ||
2263 | msgid "Exit with CRITICAL status if slave server is more then INTEGER seconds" | 1880 | msgid "Exit with CRITICAL status if slave server is more then INTEGER seconds" |
2264 | msgstr "Sortir avec un résultat CRITIQUE si le serveur esclave est plus de X " | 1881 | msgstr "Sortir avec un résultat CRITIQUE si le serveur esclave est plus de X " |
2265 | 1882 | ||
2266 | #: plugins/check_mysql.c:539 | 1883 | msgid "Use ssl encryption" |
2267 | msgid "Use ssl encryptation" | ||
2268 | msgstr "" | 1884 | msgstr "" |
2269 | 1885 | ||
2270 | #: plugins/check_mysql.c:541 | ||
2271 | msgid "Path to CA signing the cert" | 1886 | msgid "Path to CA signing the cert" |
2272 | msgstr "" | 1887 | msgstr "" |
2273 | 1888 | ||
2274 | #: plugins/check_mysql.c:543 | ||
2275 | msgid "Path to SSL certificate" | 1889 | msgid "Path to SSL certificate" |
2276 | msgstr "" | 1890 | msgstr "" |
2277 | 1891 | ||
2278 | #: plugins/check_mysql.c:545 | ||
2279 | msgid "Path to private SSL key" | 1892 | msgid "Path to private SSL key" |
2280 | msgstr "" | 1893 | msgstr "" |
2281 | 1894 | ||
2282 | #: plugins/check_mysql.c:547 | ||
2283 | msgid "Path to CA directory" | 1895 | msgid "Path to CA directory" |
2284 | msgstr "" | 1896 | msgstr "" |
2285 | 1897 | ||
2286 | #: plugins/check_mysql.c:549 | ||
2287 | msgid "List of valid SSL ciphers" | 1898 | msgid "List of valid SSL ciphers" |
2288 | msgstr "" | 1899 | msgstr "" |
2289 | 1900 | ||
2290 | #: plugins/check_mysql.c:553 | ||
2291 | msgid "" | 1901 | msgid "" |
2292 | "There are no required arguments. By default, the local database is checked" | 1902 | "There are no required arguments. By default, the local database is checked" |
2293 | msgstr "" | 1903 | msgstr "" |
2294 | "Il n'y a pas d'arguments nécessaires. Par défaut la base de donnée locale " | 1904 | "Il n'y a pas d'arguments nécessaires. Par défaut la base de donnée locale " |
2295 | "est testée" | 1905 | "est testée" |
2296 | 1906 | ||
2297 | #: plugins/check_mysql.c:554 | ||
2298 | msgid "" | 1907 | msgid "" |
2299 | "using the default unix socket. You can force TCP on localhost by using an" | 1908 | "using the default unix socket. You can force TCP on localhost by using an" |
2300 | msgstr "" | 1909 | msgstr "" |
2301 | 1910 | ||
2302 | #: plugins/check_mysql.c:555 | ||
2303 | msgid "IP address or FQDN ('localhost' will use the socket as well)." | 1911 | msgid "IP address or FQDN ('localhost' will use the socket as well)." |
2304 | msgstr "" | 1912 | msgstr "" |
2305 | 1913 | ||
2306 | #: plugins/check_mysql.c:559 | ||
2307 | msgid "You must specify -p with an empty string to force an empty password," | 1914 | msgid "You must specify -p with an empty string to force an empty password," |
2308 | msgstr "" | 1915 | msgstr "" |
2309 | 1916 | ||
2310 | #: plugins/check_mysql.c:560 | ||
2311 | msgid "overriding any my.cnf settings." | 1917 | msgid "overriding any my.cnf settings." |
2312 | msgstr "" | 1918 | msgstr "" |
2313 | 1919 | ||
2314 | #: plugins/check_nagios.c:104 | ||
2315 | msgid "Cannot open status log for reading!" | 1920 | msgid "Cannot open status log for reading!" |
2316 | msgstr "Impossible d'ouvrir le fichier status log en lecture!" | 1921 | msgstr "Impossible d'ouvrir le fichier status log en lecture!" |
2317 | 1922 | ||
2318 | #: plugins/check_nagios.c:154 | ||
2319 | #, c-format | 1923 | #, c-format |
2320 | msgid "Found process: %s %s\n" | 1924 | msgid "Found process: %s %s\n" |
2321 | msgstr "Processus trouvé: %s %s\n" | 1925 | msgstr "Processus trouvé: %s %s\n" |
2322 | 1926 | ||
2323 | #: plugins/check_nagios.c:168 | ||
2324 | msgid "Could not locate a running Nagios process!" | 1927 | msgid "Could not locate a running Nagios process!" |
2325 | msgstr "Impossible de trouver un processus Nagios actif!" | 1928 | msgstr "Impossible de trouver un processus Nagios actif!" |
2326 | 1929 | ||
2327 | #: plugins/check_nagios.c:172 | ||
2328 | msgid "Cannot parse Nagios log file for valid time" | 1930 | msgid "Cannot parse Nagios log file for valid time" |
2329 | msgstr "" | 1931 | msgstr "" |
2330 | "Impossible de trouver une date/heure valide dans le fichier de log de Nagios" | 1932 | "Impossible de trouver une date/heure valide dans le fichier de log de Nagios" |
2331 | 1933 | ||
2332 | #: plugins/check_nagios.c:183 plugins/check_procs.c:356 | ||
2333 | #, c-format | 1934 | #, c-format |
2334 | msgid "%d process" | 1935 | msgid "%d process" |
2335 | msgid_plural "%d processes" | 1936 | msgid_plural "%d processes" |
2336 | msgstr[0] "%d processus" | 1937 | msgstr[0] "%d processus" |
2337 | msgstr[1] "%d processus" | 1938 | msgstr[1] "%d processus" |
2338 | 1939 | ||
2339 | #: plugins/check_nagios.c:186 | ||
2340 | #, c-format | 1940 | #, c-format |
2341 | msgid "status log updated %d second ago" | 1941 | msgid "status log updated %d second ago" |
2342 | msgid_plural "status log updated %d seconds ago" | 1942 | msgid_plural "status log updated %d seconds ago" |
2343 | msgstr[0] "status log mis à jour %d secondes auparavant" | 1943 | msgstr[0] "status log mis à jour %d secondes auparavant" |
2344 | msgstr[1] "status log mis à jour %d secondes auparavant" | 1944 | msgstr[1] "status log mis à jour %d secondes auparavant" |
2345 | 1945 | ||
2346 | #: plugins/check_nagios.c:224 plugins/check_nagios.c:253 | ||
2347 | msgid "Expiration time must be an integer (seconds)\n" | 1946 | msgid "Expiration time must be an integer (seconds)\n" |
2348 | msgstr "Le délai d'expiration doit être un entier (en secondes)\n" | 1947 | msgstr "Le délai d'expiration doit être un entier (en secondes)\n" |
2349 | 1948 | ||
2350 | #: plugins/check_nagios.c:260 | ||
2351 | #, fuzzy | 1949 | #, fuzzy |
2352 | msgid "Timeout must be an integer (seconds)\n" | 1950 | msgid "Timeout must be an integer (seconds)\n" |
2353 | msgstr "Le délai d'expiration doit être un entier (en secondes)\n" | 1951 | msgstr "Le délai d'expiration doit être un entier (en secondes)\n" |
2354 | 1952 | ||
2355 | #: plugins/check_nagios.c:272 | ||
2356 | msgid "You must provide the status_log\n" | 1953 | msgid "You must provide the status_log\n" |
2357 | msgstr "Vous devez fournir le status_log\n" | 1954 | msgstr "Vous devez fournir le status_log\n" |
2358 | 1955 | ||
2359 | #: plugins/check_nagios.c:275 | ||
2360 | msgid "You must provide a process string\n" | 1956 | msgid "You must provide a process string\n" |
2361 | msgstr "Vous devez fournir un nom de processus\n" | 1957 | msgstr "Vous devez fournir un nom de processus\n" |
2362 | 1958 | ||
2363 | #: plugins/check_nagios.c:289 | ||
2364 | msgid "" | 1959 | msgid "" |
2365 | "This plugin checks the status of the Nagios process on the local machine" | 1960 | "This plugin checks the status of the Nagios process on the local machine" |
2366 | msgstr "Ce plugin vérifie l'état du processus Nagios sur la machine locale." | 1961 | msgstr "Ce plugin vérifie l'état du processus Nagios sur la machine locale." |
2367 | 1962 | ||
2368 | #: plugins/check_nagios.c:290 | ||
2369 | msgid "" | 1963 | msgid "" |
2370 | "The plugin will check to make sure the Nagios status log is no older than" | 1964 | "The plugin will check to make sure the Nagios status log is no older than" |
2371 | msgstr "Ce plugin vérifie que le status log de Nagios n'est pas plus vieux que" | 1965 | msgstr "Ce plugin vérifie que le status log de Nagios n'est pas plus vieux que" |
2372 | 1966 | ||
2373 | #: plugins/check_nagios.c:291 | ||
2374 | msgid "the number of minutes specified by the expires option." | 1967 | msgid "the number of minutes specified by the expires option." |
2375 | msgstr "le nombre de minutes spécifies par l'option expire." | 1968 | msgstr "le nombre de minutes spécifies par l'option expire." |
2376 | 1969 | ||
2377 | #: plugins/check_nagios.c:292 | ||
2378 | msgid "" | 1970 | msgid "" |
2379 | "It also checks the process table for a process matching the command argument." | 1971 | "It also checks the process table for a process matching the command argument." |
2380 | msgstr "" | 1972 | msgstr "" |
2381 | 1973 | ||
2382 | #: plugins/check_nagios.c:302 | ||
2383 | msgid "Name of the log file to check" | 1974 | msgid "Name of the log file to check" |
2384 | msgstr "Nom du fichier log à vérifier" | 1975 | msgstr "Nom du fichier log à vérifier" |
2385 | 1976 | ||
2386 | #: plugins/check_nagios.c:304 | ||
2387 | msgid "Minutes aging after which logfile is considered stale" | 1977 | msgid "Minutes aging after which logfile is considered stale" |
2388 | msgstr "" | 1978 | msgstr "" |
2389 | 1979 | ||
2390 | #: plugins/check_nagios.c:306 | ||
2391 | msgid "Substring to search for in process arguments" | 1980 | msgid "Substring to search for in process arguments" |
2392 | msgstr "" | 1981 | msgstr "" |
2393 | 1982 | ||
2394 | #: plugins/check_nagios.c:308 | ||
2395 | msgid "Timeout for the plugin in seconds" | 1983 | msgid "Timeout for the plugin in seconds" |
2396 | msgstr "" | 1984 | msgstr "" |
2397 | 1985 | ||
2398 | #: plugins/check_nt.c:142 | ||
2399 | #, c-format | 1986 | #, c-format |
2400 | msgid "Wrong client version - running: %s, required: %s" | 1987 | msgid "Wrong client version - running: %s, required: %s" |
2401 | msgstr "Mauvaise version du client utilisée: %s, nécessaire: %s" | 1988 | msgstr "Mauvaise version du client utilisée: %s, nécessaire: %s" |
2402 | 1989 | ||
2403 | #: plugins/check_nt.c:153 plugins/check_nt.c:218 | ||
2404 | msgid "missing -l parameters" | 1990 | msgid "missing -l parameters" |
2405 | msgstr "Arguments -l manquants" | 1991 | msgstr "Arguments -l manquants" |
2406 | 1992 | ||
2407 | #: plugins/check_nt.c:155 | ||
2408 | msgid "wrong -l parameter." | 1993 | msgid "wrong -l parameter." |
2409 | msgstr "Arguments -l erronés." | 1994 | msgstr "Arguments -l erronés." |
2410 | 1995 | ||
2411 | #: plugins/check_nt.c:159 | ||
2412 | msgid "CPU Load" | 1996 | msgid "CPU Load" |
2413 | msgstr "Charge CPU" | 1997 | msgstr "Charge CPU" |
2414 | 1998 | ||
2415 | #: plugins/check_nt.c:182 | ||
2416 | #, c-format | 1999 | #, c-format |
2417 | msgid " %lu%% (%lu min average)" | 2000 | msgid " %lu%% (%lu min average)" |
2418 | msgstr " %lu%% (%lu moyenne minimale)" | 2001 | msgstr " %lu%% (%lu moyenne minimale)" |
2419 | 2002 | ||
2420 | #: plugins/check_nt.c:184 | ||
2421 | #, c-format | 2003 | #, c-format |
2422 | msgid " '%lu min avg Load'=%lu%%;%lu;%lu;0;100" | 2004 | msgid " '%lu min avg Load'=%lu%%;%lu;%lu;0;100" |
2423 | msgstr " '%lu Charge moyenne minimale'=%lu%%;%lu;%lu;0;100" | 2005 | msgstr " '%lu Charge moyenne minimale'=%lu%%;%lu;%lu;0;100" |
2424 | 2006 | ||
2425 | #: plugins/check_nt.c:194 | ||
2426 | msgid "not enough values for -l parameters" | 2007 | msgid "not enough values for -l parameters" |
2427 | msgstr "pas assez de valeur pour l'argument -l" | 2008 | msgstr "pas assez de valeur pour l'argument -l" |
2428 | 2009 | ||
2429 | #: plugins/check_nt.c:206 | ||
2430 | #, c-format | ||
2431 | msgid "System Uptime - %u day(s) %u hour(s) %u minute(s)" | ||
2432 | msgstr "Système démarré - %u jour(s) %u heure(s) %u minute(s)" | ||
2433 | |||
2434 | #: plugins/check_nt.c:220 | ||
2435 | msgid "wrong -l argument" | 2010 | msgid "wrong -l argument" |
2436 | msgstr "Argument -l erroné" | 2011 | msgstr "Argument -l erroné" |
2437 | 2012 | ||
2438 | #: plugins/check_nt.c:236 | 2013 | #, fuzzy, c-format |
2014 | msgid "System Uptime - %u day(s) %u hour(s) %u minute(s) |uptime=%lu" | ||
2015 | msgstr "Système démarré - %u jour(s) %u heure(s) %u minute(s)" | ||
2016 | |||
2439 | #, c-format | 2017 | #, c-format |
2440 | msgid "%s:\\ - total: %.2f Gb - used: %.2f Gb (%.0f%%) - free %.2f Gb (%.0f%%)" | 2018 | msgid "%s:\\ - total: %.2f Gb - used: %.2f Gb (%.0f%%) - free %.2f Gb (%.0f%%)" |
2441 | msgstr "" | 2019 | msgstr "" |
2442 | "%s:\\ - total: %.2f Gb - utilisé: %.2f Gb (%.0f%%) - libre %.2f Gb (%.0f%%)" | 2020 | "%s:\\ - total: %.2f Gb - utilisé: %.2f Gb (%.0f%%) - libre %.2f Gb (%.0f%%)" |
2443 | 2021 | ||
2444 | #: plugins/check_nt.c:239 | ||
2445 | #, c-format | 2022 | #, c-format |
2446 | msgid "'%s:\\ Used Space'=%.2fGb;%.2f;%.2f;0.00;%.2f" | 2023 | msgid "'%s:\\ Used Space'=%.2fGb;%.2f;%.2f;0.00;%.2f" |
2447 | msgstr "'%s:\\ Espace Utilisé'=%.2fGb;%.2f;%.2f;0.00;%.2f" | 2024 | msgstr "'%s:\\ Espace Utilisé'=%.2fGb;%.2f;%.2f;0.00;%.2f" |
2448 | 2025 | ||
2449 | #: plugins/check_nt.c:253 | ||
2450 | msgid "Free disk space : Invalid drive" | 2026 | msgid "Free disk space : Invalid drive" |
2451 | msgstr "Espace disque libre : Lecteur invalide" | 2027 | msgstr "Espace disque libre : Lecteur invalide" |
2452 | 2028 | ||
2453 | #: plugins/check_nt.c:263 | ||
2454 | msgid "No service/process specified" | 2029 | msgid "No service/process specified" |
2455 | msgstr "Pas de service/processus spécifié" | 2030 | msgstr "Pas de service/processus spécifié" |
2456 | 2031 | ||
2457 | #: plugins/check_nt.c:271 plugins/check_nt.c:284 plugins/check_nt.c:288 | ||
2458 | #: plugins/check_nt.c:622 | ||
2459 | msgid "could not fetch information from server\n" | 2032 | msgid "could not fetch information from server\n" |
2460 | msgstr "Impossible d'obtenir l'information depuis le serveur\n" | 2033 | msgstr "Impossible d'obtenir l'information depuis le serveur\n" |
2461 | 2034 | ||
2462 | #: plugins/check_nt.c:296 | 2035 | #, fuzzy, c-format |
2463 | #, c-format | ||
2464 | msgid "" | 2036 | msgid "" |
2465 | "Memory usage: total:%.2f Mb - used: %.2f Mb (%.0f%%) - free: %.2f Mb (%.0f%%)" | 2037 | "Memory usage: total:%.2f MB - used: %.2f MB (%.0f%%) - free: %.2f MB (%.0f%%)" |
2466 | msgstr "" | 2038 | msgstr "" |
2467 | "Mémoire utilisée: total:%.2f Mb - utilisée: %.2f Mb (%.0f%%) - libre: %.2f " | 2039 | "Mémoire utilisée: total:%.2f Mb - utilisée: %.2f Mb (%.0f%%) - libre: %.2f " |
2468 | "Mb (%.0f%%)" | 2040 | "Mb (%.0f%%)" |
2469 | 2041 | ||
2470 | #: plugins/check_nt.c:299 | 2042 | #, fuzzy, c-format |
2471 | #, c-format | 2043 | msgid "'Memory usage'=%.2fMB;%.2f;%.2f;0.00;%.2f" |
2472 | msgid "'Memory usage'=%.2fMb;%.2f;%.2f;0.00;%.2f" | ||
2473 | msgstr "'Mémoire utilisée'=%.2fMb;%.2f;%.2f;0.00;%.2f" | 2044 | msgstr "'Mémoire utilisée'=%.2fMb;%.2f;%.2f;0.00;%.2f" |
2474 | 2045 | ||
2475 | #: plugins/check_nt.c:335 plugins/check_nt.c:420 plugins/check_nt.c:450 | ||
2476 | msgid "No counter specified" | 2046 | msgid "No counter specified" |
2477 | msgstr "Pas de compteur spécifié" | 2047 | msgstr "Pas de compteur spécifié" |
2478 | 2048 | ||
2479 | #: plugins/check_nt.c:367 | ||
2480 | msgid "Minimum value contains non-numbers" | 2049 | msgid "Minimum value contains non-numbers" |
2481 | msgstr "La valeur minimum contient des caractères non numériques" | 2050 | msgstr "La valeur minimum contient des caractères non numériques" |
2482 | 2051 | ||
2483 | #: plugins/check_nt.c:371 | ||
2484 | msgid "Maximum value contains non-numbers" | 2052 | msgid "Maximum value contains non-numbers" |
2485 | msgstr "La valeur maximum contient des caractères non numériques" | 2053 | msgstr "La valeur maximum contient des caractères non numériques" |
2486 | 2054 | ||
2487 | #: plugins/check_nt.c:378 | ||
2488 | msgid "No unit counter specified" | 2055 | msgid "No unit counter specified" |
2489 | msgstr "Pas de compteur spécifié" | 2056 | msgstr "Pas de compteur spécifié" |
2490 | 2057 | ||
2491 | #: plugins/check_nt.c:465 | ||
2492 | msgid "Please specify a variable to check" | 2058 | msgid "Please specify a variable to check" |
2493 | msgstr "Veuillez préciser une variable a vérifier" | 2059 | msgstr "Veuillez préciser une variable a vérifier" |
2494 | 2060 | ||
2495 | #: plugins/check_nt.c:549 | ||
2496 | msgid "Server port must be an integer\n" | 2061 | msgid "Server port must be an integer\n" |
2497 | msgstr "Le port du serveur doit être un nombre entier\n" | 2062 | msgstr "Le port du serveur doit être un nombre entier\n" |
2498 | 2063 | ||
2499 | #: plugins/check_nt.c:603 | ||
2500 | msgid "You must provide a server address or host name" | 2064 | msgid "You must provide a server address or host name" |
2501 | msgstr "Vous devez spécifier une adresse ou un nom d'hôte" | 2065 | msgstr "Vous devez spécifier une adresse ou un nom d'hôte" |
2502 | 2066 | ||
2503 | #: plugins/check_nt.c:609 | ||
2504 | msgid "None" | 2067 | msgid "None" |
2505 | msgstr "Aucun" | 2068 | msgstr "Aucun" |
2506 | 2069 | ||
2507 | #: plugins/check_nt.c:666 | ||
2508 | msgid "This plugin collects data from the NSClient service running on a" | 2070 | msgid "This plugin collects data from the NSClient service running on a" |
2509 | msgstr "" | 2071 | msgstr "" |
2510 | "Ce plugin collecte les données depuis le service NSClient tournant sur un" | 2072 | "Ce plugin collecte les données depuis le service NSClient tournant sur un" |
2511 | 2073 | ||
2512 | #: plugins/check_nt.c:667 | ||
2513 | msgid "Windows NT/2000/XP/2003 server." | 2074 | msgid "Windows NT/2000/XP/2003 server." |
2514 | msgstr "Serveur Windows NT/2000/XP/2003." | 2075 | msgstr "Serveur Windows NT/2000/XP/2003." |
2515 | 2076 | ||
2516 | #: plugins/check_nt.c:678 | ||
2517 | msgid "Name of the host to check" | 2077 | msgid "Name of the host to check" |
2518 | msgstr "Nom de l'hôte à vérifier" | 2078 | msgstr "Nom de l'hôte à vérifier" |
2519 | 2079 | ||
2520 | #: plugins/check_nt.c:680 | ||
2521 | msgid "Optional port number (default: " | 2080 | msgid "Optional port number (default: " |
2522 | msgstr "Numéro de port optionnel (défaut: " | 2081 | msgstr "Numéro de port optionnel (défaut: " |
2523 | 2082 | ||
2524 | #: plugins/check_nt.c:683 | ||
2525 | msgid "Password needed for the request" | 2083 | msgid "Password needed for the request" |
2526 | msgstr "Mot de passe nécessaire pour la requête" | 2084 | msgstr "Mot de passe nécessaire pour la requête" |
2527 | 2085 | ||
2528 | #: plugins/check_nt.c:685 plugins/check_nwstat.c:1661 | ||
2529 | #: plugins/check_overcr.c:432 | ||
2530 | msgid "Threshold which will result in a warning status" | 2086 | msgid "Threshold which will result in a warning status" |
2531 | msgstr "" | 2087 | msgstr "" |
2532 | 2088 | ||
2533 | #: plugins/check_nt.c:687 plugins/check_nwstat.c:1663 | ||
2534 | #: plugins/check_overcr.c:434 | ||
2535 | msgid "Threshold which will result in a critical status" | 2089 | msgid "Threshold which will result in a critical status" |
2536 | msgstr "" | 2090 | msgstr "" |
2537 | 2091 | ||
2538 | #: plugins/check_nt.c:689 | ||
2539 | msgid "Seconds before connection attempt times out (default: " | 2092 | msgid "Seconds before connection attempt times out (default: " |
2540 | msgstr "" | 2093 | msgstr "" |
2541 | 2094 | ||
2542 | #: plugins/check_nt.c:691 | ||
2543 | msgid "Parameters passed to specified check (see below)" | 2095 | msgid "Parameters passed to specified check (see below)" |
2544 | msgstr "" | 2096 | msgstr "" |
2545 | 2097 | ||
2546 | #: plugins/check_nt.c:693 | ||
2547 | msgid "Display options (currently only SHOWALL works)" | 2098 | msgid "Display options (currently only SHOWALL works)" |
2548 | msgstr "" | 2099 | msgstr "" |
2549 | 2100 | ||
2550 | #: plugins/check_nt.c:695 | ||
2551 | msgid "Return UNKNOWN on timeouts" | 2101 | msgid "Return UNKNOWN on timeouts" |
2552 | msgstr "" | 2102 | msgstr "" |
2553 | 2103 | ||
2554 | #: plugins/check_nt.c:698 | ||
2555 | msgid "Print this help screen" | 2104 | msgid "Print this help screen" |
2556 | msgstr "Afficher l'écran d'aide" | 2105 | msgstr "Afficher l'écran d'aide" |
2557 | 2106 | ||
2558 | #: plugins/check_nt.c:700 | ||
2559 | msgid "Print version information" | 2107 | msgid "Print version information" |
2560 | msgstr "Afficher la version" | 2108 | msgstr "Afficher la version" |
2561 | 2109 | ||
2562 | #: plugins/check_nt.c:702 | ||
2563 | msgid "Variable to check" | 2110 | msgid "Variable to check" |
2564 | msgstr "Variable a vérifier" | 2111 | msgstr "Variable a vérifier" |
2565 | 2112 | ||
2566 | #: plugins/check_nt.c:703 | ||
2567 | msgid "Valid variables are:" | 2113 | msgid "Valid variables are:" |
2568 | msgstr "Les variables valides sont" | 2114 | msgstr "Les variables valides sont" |
2569 | 2115 | ||
2570 | #: plugins/check_nt.c:705 | ||
2571 | msgid "Get the NSClient version" | 2116 | msgid "Get the NSClient version" |
2572 | msgstr "Obtenir la version de NSClient" | 2117 | msgstr "Obtenir la version de NSClient" |
2573 | 2118 | ||
2574 | #: plugins/check_nt.c:706 | ||
2575 | msgid "If -l <version> is specified, will return warning if versions differ." | 2119 | msgid "If -l <version> is specified, will return warning if versions differ." |
2576 | msgstr "" | 2120 | msgstr "" |
2577 | "si l'argument -l <version> est spécifié, une alerte AVERTISSEMENT sera " | 2121 | "si l'argument -l <version> est spécifié, une alerte AVERTISSEMENT sera " |
2578 | "renvoyée, si les versions sont différentes." | 2122 | "renvoyée, si les versions sont différentes." |
2579 | 2123 | ||
2580 | #: plugins/check_nt.c:708 | ||
2581 | msgid "Average CPU load on last x minutes." | 2124 | msgid "Average CPU load on last x minutes." |
2582 | msgstr "Moyenne de la charge CPU sur les dernières x minutes." | 2125 | msgstr "Moyenne de la charge CPU sur les dernières x minutes." |
2583 | 2126 | ||
2584 | #: plugins/check_nt.c:709 | ||
2585 | msgid "Request a -l parameter with the following syntax:" | 2127 | msgid "Request a -l parameter with the following syntax:" |
2586 | msgstr "Demande un paramètre -l avec la syntaxe suivante:" | 2128 | msgstr "Demande un paramètre -l avec la syntaxe suivante:" |
2587 | 2129 | ||
2588 | #: plugins/check_nt.c:710 | ||
2589 | msgid "-l <minutes range>,<warning threshold>,<critical threshold>." | 2130 | msgid "-l <minutes range>,<warning threshold>,<critical threshold>." |
2590 | msgstr "-l <plage de minutes>,<seuil d'avertissement>,<seuil critique>." | 2131 | msgstr "-l <plage de minutes>,<seuil d'avertissement>,<seuil critique>." |
2591 | 2132 | ||
2592 | #: plugins/check_nt.c:711 | ||
2593 | msgid "<minute range> should be less than 24*60." | 2133 | msgid "<minute range> should be less than 24*60." |
2594 | msgstr "<plage de minutes> devrait être inférieur à 24*60." | 2134 | msgstr "<plage de minutes> devrait être inférieur à 24*60." |
2595 | 2135 | ||
2596 | #: plugins/check_nt.c:712 | ||
2597 | msgid "" | 2136 | msgid "" |
2598 | "Thresholds are percentage and up to 10 requests can be done in one shot." | 2137 | "Thresholds are percentage and up to 10 requests can be done in one shot." |
2599 | msgstr "" | 2138 | msgstr "" |
2600 | "Les seuils sonts en pourcentage et un maximum de 10 requêtes peuvent être " | 2139 | "Les seuils sonts en pourcentage et un maximum de 10 requêtes peuvent être " |
2601 | "effectuées à la fois." | 2140 | "effectuées à la fois." |
2602 | 2141 | ||
2603 | #: plugins/check_nt.c:715 | ||
2604 | msgid "Get the uptime of the machine." | 2142 | msgid "Get the uptime of the machine." |
2605 | msgstr "Obtenir le temps de service de la machine." | 2143 | msgstr "Obtenir le temps de service de la machine." |
2606 | 2144 | ||
2607 | #: plugins/check_nt.c:716 | 2145 | msgid "-l <unit> " |
2608 | msgid "No specific parameters. No warning or critical threshold" | 2146 | msgstr "" |
2609 | msgstr "Pas d'argument spécifique. Pas de seuil d'avertissement ou critique" | 2147 | |
2148 | msgid "<unit> = seconds, minutes, hours, or days. (default: minutes)" | ||
2149 | msgstr "" | ||
2150 | |||
2151 | #, fuzzy | ||
2152 | msgid "Thresholds will use the unit specified above." | ||
2153 | msgstr "Ce plugin va vérifier l'heure sur l'hôte spécifié." | ||
2610 | 2154 | ||
2611 | #: plugins/check_nt.c:718 | ||
2612 | msgid "Size and percentage of disk use." | 2155 | msgid "Size and percentage of disk use." |
2613 | msgstr "Taille et pourcentage de l'utilisation disque." | 2156 | msgstr "Taille et pourcentage de l'utilisation disque." |
2614 | 2157 | ||
2615 | #: plugins/check_nt.c:719 | ||
2616 | msgid "Request a -l parameter containing the drive letter only." | 2158 | msgid "Request a -l parameter containing the drive letter only." |
2617 | msgstr "Demande un paramètre -l contennant uniquement la lettre du lecteur." | 2159 | msgstr "Demande un paramètre -l contennant uniquement la lettre du lecteur." |
2618 | 2160 | ||
2619 | #: plugins/check_nt.c:720 plugins/check_nt.c:723 | ||
2620 | msgid "Warning and critical thresholds can be specified with -w and -c." | 2161 | msgid "Warning and critical thresholds can be specified with -w and -c." |
2621 | msgstr "Les seuils d'alerte et critiques peuvent être spécifiés avec -w et -c." | 2162 | msgstr "Les seuils d'alerte et critiques peuvent être spécifiés avec -w et -c." |
2622 | 2163 | ||
2623 | #: plugins/check_nt.c:722 | ||
2624 | msgid "Memory use." | 2164 | msgid "Memory use." |
2625 | msgstr "Mémoire utilisée." | 2165 | msgstr "Mémoire utilisée." |
2626 | 2166 | ||
2627 | #: plugins/check_nt.c:725 | ||
2628 | msgid "Check the state of one or several services." | 2167 | msgid "Check the state of one or several services." |
2629 | msgstr "Vérifier l'état d'un ou plusieurs services." | 2168 | msgstr "Vérifier l'état d'un ou plusieurs services." |
2630 | 2169 | ||
2631 | #: plugins/check_nt.c:726 plugins/check_nt.c:735 | ||
2632 | msgid "Request a -l parameters with the following syntax:" | 2170 | msgid "Request a -l parameters with the following syntax:" |
2633 | msgstr "Demande un paramètre -l avec la syntaxe suivante:" | 2171 | msgstr "Demande un paramètre -l avec la syntaxe suivante:" |
2634 | 2172 | ||
2635 | #: plugins/check_nt.c:727 | ||
2636 | msgid "-l <service1>,<service2>,<service3>,..." | 2173 | msgid "-l <service1>,<service2>,<service3>,..." |
2637 | msgstr "-l <service1>,<service2>,<service3>,..." | 2174 | msgstr "-l <service1>,<service2>,<service3>,..." |
2638 | 2175 | ||
2639 | #: plugins/check_nt.c:728 | ||
2640 | msgid "You can specify -d SHOWALL in case you want to see working services" | 2176 | msgid "You can specify -d SHOWALL in case you want to see working services" |
2641 | msgstr "Vous pouvez spécifier -d SHOWALL pour voir les services fonctionnant" | 2177 | msgstr "Vous pouvez spécifier -d SHOWALL pour voir les services fonctionnant" |
2642 | 2178 | ||
2643 | #: plugins/check_nt.c:729 | ||
2644 | msgid "in the returned string." | 2179 | msgid "in the returned string." |
2645 | msgstr "dans la chaîne de caractère renvoyée." | 2180 | msgstr "dans la chaîne de caractère renvoyée." |
2646 | 2181 | ||
2647 | #: plugins/check_nt.c:731 | ||
2648 | msgid "Check if one or several process are running." | 2182 | msgid "Check if one or several process are running." |
2649 | msgstr "Vérifie si un ou plusieurs processus sont démarrés." | 2183 | msgstr "Vérifie si un ou plusieurs processus sont démarrés." |
2650 | 2184 | ||
2651 | #: plugins/check_nt.c:732 | ||
2652 | msgid "Same syntax as SERVICESTATE." | 2185 | msgid "Same syntax as SERVICESTATE." |
2653 | msgstr "Même syntaxe que SERVICESTATE." | 2186 | msgstr "Même syntaxe que SERVICESTATE." |
2654 | 2187 | ||
2655 | #: plugins/check_nt.c:734 | ||
2656 | msgid "Check any performance counter of Windows NT/2000." | 2188 | msgid "Check any performance counter of Windows NT/2000." |
2657 | msgstr "Vérifier n'importe quel compteur de performance sur Windows NT/2000." | 2189 | msgstr "Vérifier n'importe quel compteur de performance sur Windows NT/2000." |
2658 | 2190 | ||
2659 | #: plugins/check_nt.c:736 | ||
2660 | msgid "-l \"\\\\<performance object>\\\\counter\",\"<description>" | 2191 | msgid "-l \"\\\\<performance object>\\\\counter\",\"<description>" |
2661 | msgstr "-l \"\\\\<catégorie>\\\\compteur\",\"<description>" | 2192 | msgstr "-l \"\\\\<catégorie>\\\\compteur\",\"<description>" |
2662 | 2193 | ||
2663 | #: plugins/check_nt.c:737 | ||
2664 | msgid "The <description> parameter is optional and is given to a printf " | 2194 | msgid "The <description> parameter is optional and is given to a printf " |
2665 | msgstr "Le paramètre <description> est optionnel et est passé à la fonction " | 2195 | msgstr "Le paramètre <description> est optionnel et est passé à la fonction " |
2666 | 2196 | ||
2667 | #: plugins/check_nt.c:738 | ||
2668 | msgid "output command which requires a float parameter." | 2197 | msgid "output command which requires a float parameter." |
2669 | msgstr "de sortie printf qui demande un paramètre de type float." | 2198 | msgstr "de sortie printf qui demande un paramètre de type float." |
2670 | 2199 | ||
2671 | #: plugins/check_nt.c:739 | ||
2672 | #, c-format | 2200 | #, c-format |
2673 | msgid "If <description> does not include \"%%\", it is used as a label." | 2201 | msgid "If <description> does not include \"%%\", it is used as a label." |
2674 | msgstr "Si <description> n'inclus pas \"%%\", il est utilisé comme étiquette." | 2202 | msgstr "Si <description> n'inclus pas \"%%\", il est utilisé comme étiquette." |
2675 | 2203 | ||
2676 | #: plugins/check_nt.c:740 plugins/check_nt.c:755 | ||
2677 | msgid "Some examples:" | 2204 | msgid "Some examples:" |
2678 | msgstr "Exemples:" | 2205 | msgstr "Exemples:" |
2679 | 2206 | ||
2680 | #: plugins/check_nt.c:744 | ||
2681 | msgid "Check any performance counter object of Windows NT/2000." | 2207 | msgid "Check any performance counter object of Windows NT/2000." |
2682 | msgstr "Vérifie n'importe quel compteur de performance de Windows NT/2000." | 2208 | msgstr "Vérifie n'importe quel compteur de performance de Windows NT/2000." |
2683 | 2209 | ||
2684 | #: plugins/check_nt.c:745 | ||
2685 | msgid "" | 2210 | msgid "" |
2686 | "Syntax: check_nt -H <hostname> -p <port> -v INSTANCES -l <counter object>" | 2211 | "Syntax: check_nt -H <hostname> -p <port> -v INSTANCES -l <counter object>" |
2687 | msgstr "" | 2212 | msgstr "" |
2688 | 2213 | ||
2689 | #: plugins/check_nt.c:746 | ||
2690 | msgid "<counter object> is a Windows Perfmon Counter object (eg. Process)," | 2214 | msgid "<counter object> is a Windows Perfmon Counter object (eg. Process)," |
2691 | msgstr "" | 2215 | msgstr "" |
2692 | 2216 | ||
2693 | #: plugins/check_nt.c:747 | ||
2694 | msgid "if it is two words, it should be enclosed in quotes" | 2217 | msgid "if it is two words, it should be enclosed in quotes" |
2695 | msgstr "" | 2218 | msgstr "" |
2696 | 2219 | ||
2697 | #: plugins/check_nt.c:748 | ||
2698 | msgid "The returned results will be a comma-separated list of instances on " | 2220 | msgid "The returned results will be a comma-separated list of instances on " |
2699 | msgstr "" | 2221 | msgstr "" |
2700 | 2222 | ||
2701 | #: plugins/check_nt.c:749 | ||
2702 | msgid " the selected computer for that object." | 2223 | msgid " the selected computer for that object." |
2703 | msgstr "" | 2224 | msgstr "" |
2704 | 2225 | ||
2705 | #: plugins/check_nt.c:750 | ||
2706 | msgid "" | 2226 | msgid "" |
2707 | "The purpose of this is to be run from command line to determine what " | 2227 | "The purpose of this is to be run from command line to determine what " |
2708 | "instances" | 2228 | "instances" |
2709 | msgstr "" | 2229 | msgstr "" |
2710 | 2230 | ||
2711 | #: plugins/check_nt.c:751 | ||
2712 | msgid "" | 2231 | msgid "" |
2713 | " are available for monitoring without having to log onto the Windows server" | 2232 | " are available for monitoring without having to log onto the Windows server" |
2714 | msgstr "" | 2233 | msgstr "" |
2715 | 2234 | ||
2716 | #: plugins/check_nt.c:752 | ||
2717 | msgid " to run Perfmon directly." | 2235 | msgid " to run Perfmon directly." |
2718 | msgstr "" | 2236 | msgstr "" |
2719 | 2237 | ||
2720 | #: plugins/check_nt.c:753 | ||
2721 | msgid "" | 2238 | msgid "" |
2722 | "It can also be used in scripts that automatically create the monitoring " | 2239 | "It can also be used in scripts that automatically create the monitoring " |
2723 | "service" | 2240 | "service" |
2724 | msgstr "" | 2241 | msgstr "" |
2725 | 2242 | ||
2726 | #: plugins/check_nt.c:754 | ||
2727 | msgid " configuration files." | 2243 | msgid " configuration files." |
2728 | msgstr "" | 2244 | msgstr "" |
2729 | 2245 | ||
2730 | #: plugins/check_nt.c:756 | ||
2731 | msgid "check_nt -H 192.168.1.1 -p 1248 -v INSTANCES -l Process" | 2246 | msgid "check_nt -H 192.168.1.1 -p 1248 -v INSTANCES -l Process" |
2732 | msgstr "" | 2247 | msgstr "" |
2733 | 2248 | ||
2734 | #: plugins/check_nt.c:759 | ||
2735 | msgid "" | 2249 | msgid "" |
2736 | "- The NSClient service should be running on the server to get any information" | 2250 | "- The NSClient service should be running on the server to get any information" |
2737 | msgstr "" | 2251 | msgstr "" |
2738 | "- Le service NSClient doit rouler sur le serveur pour obtenir les " | 2252 | "- Le service NSClient doit rouler sur le serveur pour obtenir les " |
2739 | "informations" | 2253 | "informations" |
2740 | 2254 | ||
2741 | #: plugins/check_nt.c:761 | ||
2742 | msgid "- Critical thresholds should be lower than warning thresholds" | 2255 | msgid "- Critical thresholds should be lower than warning thresholds" |
2743 | msgstr "" | 2256 | msgstr "" |
2744 | "- Les seuils critiques doivent être plus bas que les seuils d'avertissement" | 2257 | "- Les seuils critiques doivent être plus bas que les seuils d'avertissement" |
2745 | 2258 | ||
2746 | #: plugins/check_nt.c:762 | ||
2747 | msgid "- Default port 1248 is sometimes in use by other services. The error" | 2259 | msgid "- Default port 1248 is sometimes in use by other services. The error" |
2748 | msgstr "" | 2260 | msgstr "" |
2749 | "- Le port par défaut 1248 est parfois utilisé par d'autres services. L'erreur" | 2261 | "- Le port par défaut 1248 est parfois utilisé par d'autres services. L'erreur" |
2750 | 2262 | ||
2751 | #: plugins/check_nt.c:763 | ||
2752 | msgid "" | 2263 | msgid "" |
2753 | "output when this happens contains \"Cannot map xxxxx to protocol number\"." | 2264 | "output when this happens contains \"Cannot map xxxxx to protocol number\"." |
2754 | msgstr "qui en résulte contiens \"Cannot map xxxxx to protocol number\"." | 2265 | msgstr "qui en résulte contiens \"Cannot map xxxxx to protocol number\"." |
2755 | 2266 | ||
2756 | #: plugins/check_nt.c:764 | ||
2757 | msgid "One fix for this is to change the port to something else on check_nt " | 2267 | msgid "One fix for this is to change the port to something else on check_nt " |
2758 | msgstr "" | 2268 | msgstr "" |
2759 | "Une possibilité pour corriger ce problème est de changer le port dans " | 2269 | "Une possibilité pour corriger ce problème est de changer le port dans " |
2760 | "check_nt " | 2270 | "check_nt " |
2761 | 2271 | ||
2762 | #: plugins/check_nt.c:765 | ||
2763 | msgid "and on the client service it's connecting to." | 2272 | msgid "and on the client service it's connecting to." |
2764 | msgstr "et dans le service auquel il se connecte." | 2273 | msgstr "et dans le service auquel il se connecte." |
2765 | 2274 | ||
2766 | #: plugins/check_ntp.c:807 plugins/check_ntp_peer.c:612 | 2275 | #, c-format |
2767 | #: plugins/check_ntp_time.c:571 | 2276 | msgid "jitter response too large (%lu bytes)\n" |
2277 | msgstr "" | ||
2278 | |||
2768 | msgid "NTP CRITICAL:" | 2279 | msgid "NTP CRITICAL:" |
2769 | msgstr "NTP CRITIQUE:" | 2280 | msgstr "NTP CRITIQUE:" |
2770 | 2281 | ||
2771 | #: plugins/check_ntp.c:810 plugins/check_ntp_peer.c:615 | ||
2772 | #: plugins/check_ntp_time.c:574 | ||
2773 | msgid "NTP WARNING:" | 2282 | msgid "NTP WARNING:" |
2774 | msgstr "NTP AVERTISSEMENT:" | 2283 | msgstr "NTP AVERTISSEMENT:" |
2775 | 2284 | ||
2776 | #: plugins/check_ntp.c:813 plugins/check_ntp_peer.c:618 | ||
2777 | #: plugins/check_ntp_time.c:577 | ||
2778 | msgid "NTP OK:" | 2285 | msgid "NTP OK:" |
2779 | msgstr "NTP OK:" | 2286 | msgstr "NTP OK:" |
2780 | 2287 | ||
2781 | #: plugins/check_ntp.c:816 plugins/check_ntp_peer.c:621 | ||
2782 | #: plugins/check_ntp_time.c:580 | ||
2783 | msgid "NTP UNKNOWN:" | 2288 | msgid "NTP UNKNOWN:" |
2784 | msgstr "NTP INCONNU:" | 2289 | msgstr "NTP INCONNU:" |
2785 | 2290 | ||
2786 | #: plugins/check_ntp.c:820 plugins/check_ntp_peer.c:630 | ||
2787 | #: plugins/check_ntp_time.c:584 | ||
2788 | msgid "Offset unknown" | 2291 | msgid "Offset unknown" |
2789 | msgstr "Décalage inconnu" | 2292 | msgstr "Décalage inconnu" |
2790 | 2293 | ||
2791 | #: plugins/check_ntp.c:823 plugins/check_ntp_peer.c:633 | ||
2792 | #: plugins/check_ntp_time.c:587 | ||
2793 | msgid "Offset" | 2294 | msgid "Offset" |
2794 | msgstr "Décalage" | 2295 | msgstr "Décalage" |
2795 | 2296 | ||
2796 | #: plugins/check_ntp.c:844 plugins/check_ntp_peer.c:662 | ||
2797 | msgid "This plugin checks the selected ntp server" | 2297 | msgid "This plugin checks the selected ntp server" |
2798 | msgstr "Ce plugin vérifie le service ntp sur l'hôte" | 2298 | msgstr "Ce plugin vérifie le service ntp sur l'hôte" |
2799 | 2299 | ||
2800 | #: plugins/check_ntp.c:854 plugins/check_ntp_peer.c:674 | ||
2801 | #: plugins/check_ntp_time.c:614 | ||
2802 | msgid "Offset to result in warning status (seconds)" | 2300 | msgid "Offset to result in warning status (seconds)" |
2803 | msgstr "Décalage résultant en un avertissement (secondes)" | 2301 | msgstr "Décalage résultant en un avertissement (secondes)" |
2804 | 2302 | ||
2805 | #: plugins/check_ntp.c:856 plugins/check_ntp_peer.c:676 | ||
2806 | #: plugins/check_ntp_time.c:616 | ||
2807 | msgid "Offset to result in critical status (seconds)" | 2303 | msgid "Offset to result in critical status (seconds)" |
2808 | msgstr "Décalage résultant en un état critique (secondes)" | 2304 | msgstr "Décalage résultant en un état critique (secondes)" |
2809 | 2305 | ||
2810 | #: plugins/check_ntp.c:858 plugins/check_ntp_peer.c:682 | ||
2811 | msgid "Warning threshold for jitter" | 2306 | msgid "Warning threshold for jitter" |
2812 | msgstr "Seuil d'avertissement pour la variation (jitter)" | 2307 | msgstr "Seuil d'avertissement pour la variation (jitter)" |
2813 | 2308 | ||
2814 | #: plugins/check_ntp.c:860 plugins/check_ntp_peer.c:684 | ||
2815 | msgid "Critical threshold for jitter" | 2309 | msgid "Critical threshold for jitter" |
2816 | msgstr "Seuil critique pour la variation (jitter)" | 2310 | msgstr "Seuil critique pour la variation (jitter)" |
2817 | 2311 | ||
2818 | #: plugins/check_ntp.c:870 | ||
2819 | msgid "Normal offset check:" | 2312 | msgid "Normal offset check:" |
2820 | msgstr "Vérification normale du décalage:" | 2313 | msgstr "Vérification normale du décalage:" |
2821 | 2314 | ||
2822 | #: plugins/check_ntp.c:873 plugins/check_ntp_peer.c:709 | ||
2823 | msgid "" | 2315 | msgid "" |
2824 | "Check jitter too, avoiding critical notifications if jitter isn't available" | 2316 | "Check jitter too, avoiding critical notifications if jitter isn't available" |
2825 | msgstr "" | 2317 | msgstr "" |
2826 | "Vérifier aussi la variation (jitter) en évitant les notifications s'il n'est " | 2318 | "Vérifier aussi la variation (jitter) en évitant les notifications s'il n'est " |
2827 | "pas dispoible" | 2319 | "pas dispoible" |
2828 | 2320 | ||
2829 | #: plugins/check_ntp.c:874 plugins/check_ntp_peer.c:710 | ||
2830 | msgid "(See Notes above for more details on thresholds formats):" | 2321 | msgid "(See Notes above for more details on thresholds formats):" |
2831 | msgstr "" | 2322 | msgstr "" |
2832 | "(Voir les Notes ci-dessus pour plus de détails sur le format des seuils)" | 2323 | "(Voir les Notes ci-dessus pour plus de détails sur le format des seuils)" |
2833 | 2324 | ||
2834 | #: plugins/check_ntp.c:879 plugins/check_ntp.c:886 | ||
2835 | msgid "WARNING: check_ntp is deprecated. Please use check_ntp_peer or" | 2325 | msgid "WARNING: check_ntp is deprecated. Please use check_ntp_peer or" |
2836 | msgstr "ATTENTION: check_ntp est périmé, utilisez plutôt check_ntp_peer" | 2326 | msgstr "ATTENTION: check_ntp est périmé, utilisez plutôt check_ntp_peer" |
2837 | 2327 | ||
2838 | #: plugins/check_ntp.c:880 plugins/check_ntp.c:887 | ||
2839 | msgid "check_ntp_time instead." | 2328 | msgid "check_ntp_time instead." |
2840 | msgstr "ou check_ntp_time." | 2329 | msgstr "ou check_ntp_time." |
2841 | 2330 | ||
2842 | #: plugins/check_ntp_peer.c:625 | ||
2843 | msgid "Server not synchronized" | 2331 | msgid "Server not synchronized" |
2844 | msgstr "Le serveur n'est pas synchronisé" | 2332 | msgstr "Le serveur n'est pas synchronisé" |
2845 | 2333 | ||
2846 | #: plugins/check_ntp_peer.c:627 | ||
2847 | msgid "Server has the LI_ALARM bit set" | 2334 | msgid "Server has the LI_ALARM bit set" |
2848 | msgstr "" | 2335 | msgstr "" |
2849 | 2336 | ||
2850 | #: plugins/check_ntp_peer.c:672 | ||
2851 | msgid "" | 2337 | msgid "" |
2852 | "Returns UNKNOWN instead of CRITICAL or WARNING if server isn't synchronized" | 2338 | "Returns UNKNOWN instead of CRITICAL or WARNING if server isn't synchronized" |
2853 | msgstr "" | 2339 | msgstr "" |
2854 | "Retourne INCONNU au lieu de CRITIQUE ou AVERTISSEMENT si le serveur n'est " | 2340 | "Retourne INCONNU au lieu de CRITIQUE ou AVERTISSEMENT si le serveur n'est " |
2855 | "pas synchronisé" | 2341 | "pas synchronisé" |
2856 | 2342 | ||
2857 | #: plugins/check_ntp_peer.c:678 | ||
2858 | #, fuzzy | 2343 | #, fuzzy |
2859 | msgid "Warning threshold for stratum of server's synchronization peer" | 2344 | msgid "Warning threshold for stratum of server's synchronization peer" |
2860 | msgstr "Seuil d'avertissement pour le stratum" | 2345 | msgstr "Seuil d'avertissement pour le stratum" |
2861 | 2346 | ||
2862 | #: plugins/check_ntp_peer.c:680 | ||
2863 | #, fuzzy | 2347 | #, fuzzy |
2864 | msgid "Critical threshold for stratum of server's synchronization peer" | 2348 | msgid "Critical threshold for stratum of server's synchronization peer" |
2865 | msgstr "Seuil critique pour le stratum" | 2349 | msgstr "Seuil critique pour le stratum" |
2866 | 2350 | ||
2867 | #: plugins/check_ntp_peer.c:686 | ||
2868 | msgid "Warning threshold for number of usable time sources (\"truechimers\")" | 2351 | msgid "Warning threshold for number of usable time sources (\"truechimers\")" |
2869 | msgstr "" | 2352 | msgstr "" |
2870 | "Seuil d'avertissement pour le nombre de sources de temps utilisable " | 2353 | "Seuil d'avertissement pour le nombre de sources de temps utilisable " |
2871 | "(\"truechimers\")" | 2354 | "(\"truechimers\")" |
2872 | 2355 | ||
2873 | #: plugins/check_ntp_peer.c:688 | ||
2874 | msgid "Critical threshold for number of usable time sources (\"truechimers\")" | 2356 | msgid "Critical threshold for number of usable time sources (\"truechimers\")" |
2875 | msgstr "" | 2357 | msgstr "" |
2876 | "Seuil critique pour le nombre de sources de temps utilisable (\"truechimers" | 2358 | "Seuil critique pour le nombre de sources de temps utilisable " |
2877 | "\")" | 2359 | "(\"truechimers\")" |
2878 | 2360 | ||
2879 | #: plugins/check_ntp_peer.c:693 | ||
2880 | msgid "This plugin checks an NTP server independent of any commandline" | 2361 | msgid "This plugin checks an NTP server independent of any commandline" |
2881 | msgstr "Ce plugin vérifie un serveur NTP sans recours aux programmes de" | 2362 | msgstr "Ce plugin vérifie un serveur NTP sans recours aux programmes de" |
2882 | 2363 | ||
2883 | #: plugins/check_ntp_peer.c:694 | ||
2884 | msgid "programs or external libraries." | 2364 | msgid "programs or external libraries." |
2885 | msgstr "la ligne de commande ou libraries externes" | 2365 | msgstr "la ligne de commande ou libraries externes" |
2886 | 2366 | ||
2887 | #: plugins/check_ntp_peer.c:697 | ||
2888 | msgid "Use this plugin to check the health of an NTP server. It supports" | 2367 | msgid "Use this plugin to check the health of an NTP server. It supports" |
2889 | msgstr "" | 2368 | msgstr "" |
2890 | "Utilisez ce plugin pour vérifier le service NTP sur l'hôte. Il supporte la" | 2369 | "Utilisez ce plugin pour vérifier le service NTP sur l'hôte. Il supporte la" |
2891 | 2370 | ||
2892 | #: plugins/check_ntp_peer.c:698 | ||
2893 | msgid "checking the offset with the sync peer, the jitter and stratum. This" | 2371 | msgid "checking the offset with the sync peer, the jitter and stratum. This" |
2894 | msgstr "" | 2372 | msgstr "" |
2895 | "vérification du décalage avec le pair se synchronisation, la variation " | 2373 | "vérification du décalage avec le pair se synchronisation, la variation " |
2896 | "(jitter) et le stratum." | 2374 | "(jitter) et le stratum." |
2897 | 2375 | ||
2898 | #: plugins/check_ntp_peer.c:699 | ||
2899 | msgid "plugin will not check the clock offset between the local host and NTP" | 2376 | msgid "plugin will not check the clock offset between the local host and NTP" |
2900 | msgstr "" | 2377 | msgstr "" |
2901 | "Ce plugin ne vérifie pas le décalage entre le serveur local et le serveur" | 2378 | "Ce plugin ne vérifie pas le décalage entre le serveur local et le serveur" |
2902 | 2379 | ||
2903 | #: plugins/check_ntp_peer.c:700 | ||
2904 | msgid "server; please use check_ntp_time for that purpose." | 2380 | msgid "server; please use check_ntp_time for that purpose." |
2905 | msgstr "NTP; utilisez plutôt check_ntp_time à cette fin." | 2381 | msgstr "NTP; utilisez plutôt check_ntp_time à cette fin." |
2906 | 2382 | ||
2907 | #: plugins/check_ntp_peer.c:706 | ||
2908 | msgid "Simple NTP server check:" | 2383 | msgid "Simple NTP server check:" |
2909 | msgstr "Vérification simple du serveur NTP:" | 2384 | msgstr "Vérification simple du serveur NTP:" |
2910 | 2385 | ||
2911 | #: plugins/check_ntp_peer.c:713 | ||
2912 | msgid "Only check the number of usable time sources (\"truechimers\"):" | 2386 | msgid "Only check the number of usable time sources (\"truechimers\"):" |
2913 | msgstr "" | 2387 | msgstr "" |
2914 | 2388 | ||
2915 | #: plugins/check_ntp_peer.c:716 | ||
2916 | msgid "Check only stratum:" | 2389 | msgid "Check only stratum:" |
2917 | msgstr "Vérification du stratum seulement:" | 2390 | msgstr "Vérification du stratum seulement:" |
2918 | 2391 | ||
2919 | #: plugins/check_ntp_time.c:602 | ||
2920 | msgid "This plugin checks the clock offset with the ntp server" | 2392 | msgid "This plugin checks the clock offset with the ntp server" |
2921 | msgstr "Ce plugin vérifie le décalage de l'horloge avec le serveur ntp" | 2393 | msgstr "Ce plugin vérifie le décalage de l'horloge avec le serveur ntp" |
2922 | 2394 | ||
2923 | #: plugins/check_ntp_time.c:612 | ||
2924 | msgid "Returns UNKNOWN instead of CRITICAL if offset cannot be found" | 2395 | msgid "Returns UNKNOWN instead of CRITICAL if offset cannot be found" |
2925 | msgstr "Retourne INCONNU au lieu de CRITIQUE si le décalage est inconnu" | 2396 | msgstr "Retourne INCONNU au lieu de CRITIQUE si le décalage est inconnu" |
2926 | 2397 | ||
2927 | #: plugins/check_ntp_time.c:621 | 2398 | msgid "Expected offset of the ntp server relative to local server (seconds)" |
2399 | msgstr "" | ||
2400 | |||
2928 | msgid "This plugin checks the clock offset between the local host and a" | 2401 | msgid "This plugin checks the clock offset between the local host and a" |
2929 | msgstr "Ce plugin vérifie le décalage de l'horloge entre se serveur local et" | 2402 | msgstr "Ce plugin vérifie le décalage de l'horloge entre se serveur local et" |
2930 | 2403 | ||
2931 | #: plugins/check_ntp_time.c:622 | ||
2932 | msgid "remote NTP server. It is independent of any commandline programs or" | 2404 | msgid "remote NTP server. It is independent of any commandline programs or" |
2933 | msgstr "le serveur NTP distant. Il ne fait aucun recours aux programmes de" | 2405 | msgstr "le serveur NTP distant. Il ne fait aucun recours aux programmes de" |
2934 | 2406 | ||
2935 | #: plugins/check_ntp_time.c:623 | ||
2936 | msgid "external libraries." | 2407 | msgid "external libraries." |
2937 | msgstr "la ligne de commande ou libraries externes." | 2408 | msgstr "la ligne de commande ou libraries externes." |
2938 | 2409 | ||
2939 | #: plugins/check_ntp_time.c:627 | ||
2940 | msgid "If you'd rather want to monitor an NTP server, please use" | 2410 | msgid "If you'd rather want to monitor an NTP server, please use" |
2941 | msgstr "Si vous voulez plutôt surveiller un serveur NTP, veuillez" | 2411 | msgstr "Si vous voulez plutôt surveiller un serveur NTP, veuillez" |
2942 | 2412 | ||
2943 | #: plugins/check_ntp_time.c:628 | ||
2944 | msgid "check_ntp_peer." | 2413 | msgid "check_ntp_peer." |
2945 | msgstr "utiliser check_ntp_peer." | 2414 | msgstr "utiliser check_ntp_peer." |
2946 | 2415 | ||
2947 | #: plugins/check_nwstat.c:194 | 2416 | msgid "--time-offset is useful for compensating for servers with known" |
2417 | msgstr "" | ||
2418 | |||
2419 | msgid "and expected clock skew." | ||
2420 | msgstr "" | ||
2421 | |||
2948 | #, c-format | 2422 | #, c-format |
2949 | msgid "NetWare %s: " | 2423 | msgid "NetWare %s: " |
2950 | msgstr "NetWare %s: " | 2424 | msgstr "NetWare %s: " |
2951 | 2425 | ||
2952 | #: plugins/check_nwstat.c:232 | ||
2953 | #, c-format | 2426 | #, c-format |
2954 | msgid "Up %s," | 2427 | msgid "Up %s," |
2955 | msgstr "Démarré %s," | 2428 | msgstr "Démarré %s," |
2956 | 2429 | ||
2957 | #: plugins/check_nwstat.c:240 | ||
2958 | #, c-format | 2430 | #, c-format |
2959 | msgid "Load %s - %s %s-min load average = %lu%%|load%s=%lu;%lu;%lu;0;100" | 2431 | msgid "Load %s - %s %s-min load average = %lu%%|load%s=%lu;%lu;%lu;0;100" |
2960 | msgstr "" | 2432 | msgstr "" |
2961 | "Charge %s - %s %s charge système minimale = %lu%%|charge%s=%lu;%lu;%lu;0;100" | 2433 | "Charge %s - %s %s charge système minimale = %lu%%|charge%s=%lu;%lu;%lu;0;100" |
2962 | 2434 | ||
2963 | #: plugins/check_nwstat.c:268 | ||
2964 | #, c-format | 2435 | #, c-format |
2965 | msgid "Conns %s - %lu current connections|Conns=%lu;%lu;%lu;;" | 2436 | msgid "Conns %s - %lu current connections|Conns=%lu;%lu;%lu;;" |
2966 | msgstr "Conns %s - %lu connections actuelles|Conns=%lu;%lu;%lu;;" | 2437 | msgstr "Conns %s - %lu connections actuelles|Conns=%lu;%lu;%lu;;" |
2967 | 2438 | ||
2968 | #: plugins/check_nwstat.c:293 | ||
2969 | #, c-format | 2439 | #, c-format |
2970 | msgid "%s: Long term cache hits = %lu%%" | 2440 | msgid "%s: Long term cache hits = %lu%%" |
2971 | msgstr "%s: Accès cache longue durée = %lu%%" | 2441 | msgstr "%s: Accès cache longue durée = %lu%%" |
2972 | 2442 | ||
2973 | #: plugins/check_nwstat.c:315 | ||
2974 | #, c-format | 2443 | #, c-format |
2975 | msgid "%s: Total cache buffers = %lu|Cachebuffers=%lu;%lu;%lu;;" | 2444 | msgid "%s: Total cache buffers = %lu|Cachebuffers=%lu;%lu;%lu;;" |
2976 | msgstr "%s: Total des caches tampons= %lu|Caches Tampons=%lu,%lu;%lu;;" | 2445 | msgstr "%s: Total des caches tampons= %lu|Caches Tampons=%lu,%lu;%lu;;" |
2977 | 2446 | ||
2978 | #: plugins/check_nwstat.c:340 | ||
2979 | #, c-format | 2447 | #, c-format |
2980 | msgid "%s: Dirty cache buffers = %lu|Dirty-Cache-Buffers=%lu;%lu;%lu;;" | 2448 | msgid "%s: Dirty cache buffers = %lu|Dirty-Cache-Buffers=%lu;%lu;%lu;;" |
2981 | msgstr "%s: cache tampons sales = %lu|caches tampons sales=%lu;%lu;%lu;;" | 2449 | msgstr "%s: cache tampons sales = %lu|caches tampons sales=%lu;%lu;%lu;;" |
2982 | 2450 | ||
2983 | #: plugins/check_nwstat.c:365 | ||
2984 | #, c-format | 2451 | #, c-format |
2985 | msgid "%s: LRU sitting time = %lu minutes" | 2452 | msgid "%s: LRU sitting time = %lu minutes" |
2986 | msgstr "" | 2453 | msgstr "" |
2987 | 2454 | ||
2988 | #: plugins/check_nwstat.c:382 plugins/check_nwstat.c:410 | ||
2989 | #: plugins/check_nwstat.c:437 plugins/check_nwstat.c:470 | ||
2990 | #: plugins/check_nwstat.c:650 plugins/check_nwstat.c:676 | ||
2991 | #: plugins/check_nwstat.c:707 plugins/check_nwstat.c:753 | ||
2992 | #: plugins/check_nwstat.c:777 | ||
2993 | #, c-format | 2455 | #, c-format |
2994 | msgid "CRITICAL - Volume '%s' does not exist!" | 2456 | msgid "CRITICAL - Volume '%s' does not exist!" |
2995 | msgstr "CRITIQUE: Le volume '%s' n'existe pas!" | 2457 | msgstr "CRITIQUE: Le volume '%s' n'existe pas!" |
2996 | 2458 | ||
2997 | #: plugins/check_nwstat.c:391 | ||
2998 | #, c-format | 2459 | #, c-format |
2999 | msgid "%s%lu KB free on volume %s|KBFree%s=%lu;%lu;%lu;;" | 2460 | msgid "%s%lu KB free on volume %s|KBFree%s=%lu;%lu;%lu;;" |
3000 | msgstr "%s%lu KB libre sur le volume %s|KB libres%s=%lu;%lu;%lu;;" | 2461 | msgstr "%s%lu KB libre sur le volume %s|KB libres%s=%lu;%lu;%lu;;" |
3001 | 2462 | ||
3002 | #: plugins/check_nwstat.c:392 plugins/check_nwstat.c:420 | ||
3003 | #: plugins/check_nwstat.c:447 plugins/check_nwstat.c:659 | ||
3004 | #: plugins/check_nwstat.c:685 plugins/check_nwstat.c:761 | ||
3005 | msgid "Only " | 2463 | msgid "Only " |
3006 | msgstr "Seulement" | 2464 | msgstr "Seulement" |
3007 | 2465 | ||
3008 | #: plugins/check_nwstat.c:419 | ||
3009 | #, c-format | 2466 | #, c-format |
3010 | msgid "%s%lu MB free on volume %s|MBFree%s=%lu;%lu;%lu;;" | 2467 | msgid "%s%lu MB free on volume %s|MBFree%s=%lu;%lu;%lu;;" |
3011 | msgstr "%s%lu MB libre sur le volume %s|MBlibre%s=%lu;%lu;%lu;;" | 2468 | msgstr "%s%lu MB libre sur le volume %s|MBlibre%s=%lu;%lu;%lu;;" |
3012 | 2469 | ||
3013 | #: plugins/check_nwstat.c:446 | ||
3014 | #, c-format | 2470 | #, c-format |
3015 | msgid "%s%lu MB used on volume %s|MBUsed%s=%lu;%lu;%lu;;" | 2471 | msgid "%s%lu MB used on volume %s|MBUsed%s=%lu;%lu;%lu;;" |
3016 | msgstr "" | 2472 | msgstr "" |
3017 | 2473 | ||
3018 | #: plugins/check_nwstat.c:494 | ||
3019 | #, c-format | 2474 | #, c-format |
3020 | msgid "" | 2475 | msgid "" |
3021 | "%lu MB (%lu%%) free on volume %s - total %lu MB|FreeMB%s=%lu;%lu;%lu;0;100" | 2476 | "%lu MB (%lu%%) free on volume %s - total %lu MB|FreeMB%s=%lu;%lu;%lu;0;100" |
@@ -3023,1102 +2478,877 @@ msgstr "" | |||
3023 | "%lu MB (%lu%%) libre sur le volume %s - total %lu MB|MBlibre%s=%lu;%lu;" | 2478 | "%lu MB (%lu%%) libre sur le volume %s - total %lu MB|MBlibre%s=%lu;%lu;" |
3024 | "%lu;0;100" | 2479 | "%lu;0;100" |
3025 | 2480 | ||
3026 | #: plugins/check_nwstat.c:528 | ||
3027 | #, c-format | 2481 | #, c-format |
3028 | msgid "Directory Services Database is %s (DS version %s)" | 2482 | msgid "Directory Services Database is %s (DS version %s)" |
3029 | msgstr "La base de données Directory Services est %s (DS version %s)" | 2483 | msgstr "La base de données Directory Services est %s (DS version %s)" |
3030 | 2484 | ||
3031 | #: plugins/check_nwstat.c:545 | ||
3032 | #, c-format | 2485 | #, c-format |
3033 | msgid "Logins are %s" | 2486 | msgid "Logins are %s" |
3034 | msgstr "Les logins sont %s" | 2487 | msgstr "Les logins sont %s" |
3035 | 2488 | ||
3036 | #: plugins/check_nwstat.c:545 | ||
3037 | msgid "enabled" | 2489 | msgid "enabled" |
3038 | msgstr "activé" | 2490 | msgstr "activé" |
3039 | 2491 | ||
3040 | #: plugins/check_nwstat.c:545 | ||
3041 | msgid "disabled" | 2492 | msgid "disabled" |
3042 | msgstr "désactivé" | 2493 | msgstr "désactivé" |
3043 | 2494 | ||
3044 | #: plugins/check_nwstat.c:560 | ||
3045 | msgid "CRITICAL - NRM Status is bad!" | 2495 | msgid "CRITICAL - NRM Status is bad!" |
3046 | msgstr "CRITIQUE - le statut NRM est mauvais!" | 2496 | msgstr "CRITIQUE - le statut NRM est mauvais!" |
3047 | 2497 | ||
3048 | #: plugins/check_nwstat.c:565 | ||
3049 | msgid "Warning - NRM Status is suspect!" | 2498 | msgid "Warning - NRM Status is suspect!" |
3050 | msgstr "" | 2499 | msgstr "" |
3051 | 2500 | ||
3052 | #: plugins/check_nwstat.c:568 | ||
3053 | msgid "OK - NRM Status is good!" | 2501 | msgid "OK - NRM Status is good!" |
3054 | msgstr "OK - Le status du NRM est bon!" | 2502 | msgstr "OK - Le status du NRM est bon!" |
3055 | 2503 | ||
3056 | #: plugins/check_nwstat.c:610 | ||
3057 | #, c-format | 2504 | #, c-format |
3058 | msgid "%lu of %lu (%lu%%) packet receive buffers used" | 2505 | msgid "%lu of %lu (%lu%%) packet receive buffers used" |
3059 | msgstr "%lu de %lu (%lu%%) paquets du tampon de réception utilisés" | 2506 | msgstr "%lu de %lu (%lu%%) paquets du tampon de réception utilisés" |
3060 | 2507 | ||
3061 | #: plugins/check_nwstat.c:634 | ||
3062 | #, c-format | 2508 | #, c-format |
3063 | msgid "%lu entries in SAP table" | 2509 | msgid "%lu entries in SAP table" |
3064 | msgstr "%lu entrées dans la table SAP" | 2510 | msgstr "%lu entrées dans la table SAP" |
3065 | 2511 | ||
3066 | #: plugins/check_nwstat.c:636 | ||
3067 | #, c-format | 2512 | #, c-format |
3068 | msgid "%lu entries in SAP table for SAP type %d" | 2513 | msgid "%lu entries in SAP table for SAP type %d" |
3069 | msgstr "%lu entrées dans la table SAP pour le type SAP %d" | 2514 | msgstr "%lu entrées dans la table SAP pour le type SAP %d" |
3070 | 2515 | ||
3071 | #: plugins/check_nwstat.c:658 | ||
3072 | #, c-format | 2516 | #, c-format |
3073 | msgid "%s%lu KB purgeable on volume %s|Purge%s=%lu;%lu;%lu;;" | 2517 | msgid "%s%lu KB purgeable on volume %s|Purge%s=%lu;%lu;%lu;;" |
3074 | msgstr "%s%lu KB effaçables sur le volume %s|Purge%s=%lu;%lu;%lu;;" | 2518 | msgstr "%s%lu KB effaçables sur le volume %s|Purge%s=%lu;%lu;%lu;;" |
3075 | 2519 | ||
3076 | #: plugins/check_nwstat.c:684 | ||
3077 | #, c-format | 2520 | #, c-format |
3078 | msgid "%s%lu MB purgeable on volume %s|Purge%s=%lu;%lu;%lu;;" | 2521 | msgid "%s%lu MB purgeable on volume %s|Purge%s=%lu;%lu;%lu;;" |
3079 | msgstr "%s%lu KB effaçables sur le volume %s|Purge%s=%lu;%lu;%lu;;" | 2522 | msgstr "%s%lu KB effaçables sur le volume %s|Purge%s=%lu;%lu;%lu;;" |
3080 | 2523 | ||
3081 | #: plugins/check_nwstat.c:730 | ||
3082 | #, c-format | 2524 | #, c-format |
3083 | msgid "%lu MB (%lu%%) purgeable on volume %s|Purgeable%s=%lu;%lu;%lu;0;100" | 2525 | msgid "%lu MB (%lu%%) purgeable on volume %s|Purgeable%s=%lu;%lu;%lu;0;100" |
3084 | msgstr "" | 2526 | msgstr "" |
3085 | "%lu MB (%lu%%) effaçables sur le volume %s|Effacable%s=%lu;%lu;%lu;0;100" | 2527 | "%lu MB (%lu%%) effaçables sur le volume %s|Effacable%s=%lu;%lu;%lu;0;100" |
3086 | 2528 | ||
3087 | #: plugins/check_nwstat.c:761 | ||
3088 | #, c-format | 2529 | #, c-format |
3089 | msgid "%s%lu KB not yet purgeable on volume %s" | 2530 | msgid "%s%lu KB not yet purgeable on volume %s" |
3090 | msgstr "%s%lu KB pas encore effaçables sur le volume %s" | 2531 | msgstr "%s%lu KB pas encore effaçables sur le volume %s" |
3091 | 2532 | ||
3092 | #: plugins/check_nwstat.c:800 | ||
3093 | #, c-format | 2533 | #, c-format |
3094 | msgid "%lu MB (%lu%%) not yet purgeable on volume %s" | 2534 | msgid "%lu MB (%lu%%) not yet purgeable on volume %s" |
3095 | msgstr "%lu MB (%lu%%) pas encore effaçables sur le volume %s" | 2535 | msgstr "%lu MB (%lu%%) pas encore effaçables sur le volume %s" |
3096 | 2536 | ||
3097 | #: plugins/check_nwstat.c:821 | ||
3098 | #, c-format | 2537 | #, c-format |
3099 | msgid "%lu open files|Openfiles=%lu;%lu;%lu;0,0" | 2538 | msgid "%lu open files|Openfiles=%lu;%lu;%lu;0,0" |
3100 | msgstr "" | 2539 | msgstr "" |
3101 | 2540 | ||
3102 | #: plugins/check_nwstat.c:846 | ||
3103 | #, c-format | 2541 | #, c-format |
3104 | msgid "%lu abended threads|Abends=%lu;%lu;%lu;;" | 2542 | msgid "%lu abended threads|Abends=%lu;%lu;%lu;;" |
3105 | msgstr "%lu processus avortés|Avortés=%lu;%lu;%lu;;" | 2543 | msgstr "%lu processus avortés|Avortés=%lu;%lu;%lu;;" |
3106 | 2544 | ||
3107 | #: plugins/check_nwstat.c:881 | ||
3108 | #, c-format | 2545 | #, c-format |
3109 | msgid "%lu current service processes (%lu max)|Processes=%lu;%lu;%lu;0;%lu" | 2546 | msgid "%lu current service processes (%lu max)|Processes=%lu;%lu;%lu;0;%lu" |
3110 | msgstr "%lu processus services actuels (%lu max)|Processus=%lu;%lu;%lu;0;%lu" | 2547 | msgstr "%lu processus services actuels (%lu max)|Processus=%lu;%lu;%lu;0;%lu" |
3111 | 2548 | ||
3112 | #: plugins/check_nwstat.c:904 | ||
3113 | msgid "CRITICAL - Time not in sync with network!" | 2549 | msgid "CRITICAL - Time not in sync with network!" |
3114 | msgstr "CRITIQUE - Le temps n'est pas synchronisé avec le réseau!" | 2550 | msgstr "CRITIQUE - Le temps n'est pas synchronisé avec le réseau!" |
3115 | 2551 | ||
3116 | #: plugins/check_nwstat.c:907 | ||
3117 | msgid "OK - Time in sync with network!" | 2552 | msgid "OK - Time in sync with network!" |
3118 | msgstr "OK - Le temps est synchronisé avec le réseau!" | 2553 | msgstr "OK - Le temps est synchronisé avec le réseau!" |
3119 | 2554 | ||
3120 | #: plugins/check_nwstat.c:930 | ||
3121 | #, c-format | 2555 | #, c-format |
3122 | msgid "LRU sitting time = %lu seconds" | 2556 | msgid "LRU sitting time = %lu seconds" |
3123 | msgstr "LRU temps d'attente = %lu secondes" | 2557 | msgstr "LRU temps d'attente = %lu secondes" |
3124 | 2558 | ||
3125 | #: plugins/check_nwstat.c:949 | ||
3126 | #, c-format | 2559 | #, c-format |
3127 | msgid "Dirty cache buffers = %lu%% of the total|DCB=%lu;%lu;%lu;0;100" | 2560 | msgid "Dirty cache buffers = %lu%% of the total|DCB=%lu;%lu;%lu;0;100" |
3128 | msgstr "Buffers cache sales = %lu%% du total|DCB=%lu;%lu;%lu;0;100" | 2561 | msgstr "Buffers cache sales = %lu%% du total|DCB=%lu;%lu;%lu;0;100" |
3129 | 2562 | ||
3130 | #: plugins/check_nwstat.c:971 | ||
3131 | #, c-format | 2563 | #, c-format |
3132 | msgid "Total cache buffers = %lu%% of the original|TCB=%lu;%lu;%lu;0;100" | 2564 | msgid "Total cache buffers = %lu%% of the original|TCB=%lu;%lu;%lu;0;100" |
3133 | msgstr "cache tampons totaux= %lu%% de l'original|TCB=%lu;%lu;%lu;0;100" | 2565 | msgstr "cache tampons totaux= %lu%% de l'original|TCB=%lu;%lu;%lu;0;100" |
3134 | 2566 | ||
3135 | #: plugins/check_nwstat.c:989 | ||
3136 | #, c-format | 2567 | #, c-format |
3137 | msgid "NDS Version %s" | 2568 | msgid "NDS Version %s" |
3138 | msgstr "Version NDS %s" | 2569 | msgstr "Version NDS %s" |
3139 | 2570 | ||
3140 | #: plugins/check_nwstat.c:1005 | ||
3141 | #, c-format | 2571 | #, c-format |
3142 | msgid "Up %s" | 2572 | msgid "Up %s" |
3143 | msgstr "Démarré %s" | 2573 | msgstr "Démarré %s" |
3144 | 2574 | ||
3145 | #: plugins/check_nwstat.c:1019 | ||
3146 | #, c-format | 2575 | #, c-format |
3147 | msgid "Module %s version %s is loaded" | 2576 | msgid "Module %s version %s is loaded" |
3148 | msgstr "Le Module %s version %s est chargé" | 2577 | msgstr "Le Module %s version %s est chargé" |
3149 | 2578 | ||
3150 | #: plugins/check_nwstat.c:1022 | ||
3151 | #, c-format | 2579 | #, c-format |
3152 | msgid "Module %s is not loaded" | 2580 | msgid "Module %s is not loaded" |
3153 | msgstr "Le Module %s n'est pas chargé" | 2581 | msgstr "Le Module %s n'est pas chargé" |
3154 | 2582 | ||
3155 | #: plugins/check_nwstat.c:1033 plugins/check_nwstat.c:1059 | ||
3156 | #: plugins/check_nwstat.c:1085 plugins/check_nwstat.c:1111 | ||
3157 | #: plugins/check_nwstat.c:1137 plugins/check_nwstat.c:1163 | ||
3158 | #: plugins/check_nwstat.c:1189 plugins/check_nwstat.c:1215 | ||
3159 | #: plugins/check_nwstat.c:1241 plugins/check_nwstat.c:1267 | ||
3160 | #, c-format | 2583 | #, c-format |
3161 | msgid "CRITICAL - Value '%s' does not exist!" | 2584 | msgid "CRITICAL - Value '%s' does not exist!" |
3162 | msgstr "CRITIQUE: Le valeur '%s' n'existe pas!" | 2585 | msgstr "CRITIQUE: Le valeur '%s' n'existe pas!" |
3163 | 2586 | ||
3164 | #: plugins/check_nwstat.c:1042 plugins/check_nwstat.c:1068 | ||
3165 | #: plugins/check_nwstat.c:1094 plugins/check_nwstat.c:1120 | ||
3166 | #: plugins/check_nwstat.c:1146 plugins/check_nwstat.c:1172 | ||
3167 | #: plugins/check_nwstat.c:1198 plugins/check_nwstat.c:1224 | ||
3168 | #: plugins/check_nwstat.c:1250 plugins/check_nwstat.c:1276 | ||
3169 | #, c-format | 2587 | #, c-format |
3170 | msgid "%s is %lu|%s=%lu;%lu;%lu;;" | 2588 | msgid "%s is %lu|%s=%lu;%lu;%lu;;" |
3171 | msgstr "%s est %lu|%s=%lu;%lu;%lu;;" | 2589 | msgstr "%s est %lu|%s=%lu;%lu;%lu;;" |
3172 | 2590 | ||
3173 | #: plugins/check_nwstat.c:1289 plugins/check_overcr.c:285 | ||
3174 | msgid "Nothing to check!\n" | 2591 | msgid "Nothing to check!\n" |
3175 | msgstr "Rien à vérifier!\n" | 2592 | msgstr "Rien à vérifier!\n" |
3176 | 2593 | ||
3177 | #: plugins/check_nwstat.c:1371 plugins/check_overcr.c:355 | ||
3178 | msgid "Server port an integer\n" | 2594 | msgid "Server port an integer\n" |
3179 | msgstr "Le port du serveur doit être un nombre entier\n" | 2595 | msgstr "Le port du serveur doit être un nombre entier\n" |
3180 | 2596 | ||
3181 | #: plugins/check_nwstat.c:1601 | ||
3182 | msgid "This plugin attempts to contact the MRTGEXT NLM running on a" | 2597 | msgid "This plugin attempts to contact the MRTGEXT NLM running on a" |
3183 | msgstr "Ce plugin essaye de contacter le NLM MRTGEXT qui s'exécute sur" | 2598 | msgstr "Ce plugin essaye de contacter le NLM MRTGEXT qui s'exécute sur" |
3184 | 2599 | ||
3185 | #: plugins/check_nwstat.c:1602 | ||
3186 | msgid "Novell server to gather the requested system information." | 2600 | msgid "Novell server to gather the requested system information." |
3187 | msgstr "un serveur Novell pour récupérer l'information système demandée." | 2601 | msgstr "un serveur Novell pour récupérer l'information système demandée." |
3188 | 2602 | ||
3189 | #: plugins/check_nwstat.c:1614 plugins/check_overcr.c:436 | ||
3190 | msgid "Variable to check. Valid variables include:" | 2603 | msgid "Variable to check. Valid variables include:" |
3191 | msgstr "Variable à vérifier. Les variables valides sont:" | 2604 | msgstr "Variable à vérifier. Les variables valides sont:" |
3192 | 2605 | ||
3193 | #: plugins/check_nwstat.c:1615 | ||
3194 | msgid "LOAD1 = 1 minute average CPU load" | 2606 | msgid "LOAD1 = 1 minute average CPU load" |
3195 | msgstr "" | 2607 | msgstr "" |
3196 | 2608 | ||
3197 | #: plugins/check_nwstat.c:1616 | ||
3198 | msgid "LOAD5 = 5 minute average CPU load" | 2609 | msgid "LOAD5 = 5 minute average CPU load" |
3199 | msgstr "" | 2610 | msgstr "" |
3200 | 2611 | ||
3201 | #: plugins/check_nwstat.c:1617 | ||
3202 | msgid "LOAD15 = 15 minute average CPU load" | 2612 | msgid "LOAD15 = 15 minute average CPU load" |
3203 | msgstr "" | 2613 | msgstr "" |
3204 | 2614 | ||
3205 | #: plugins/check_nwstat.c:1618 | ||
3206 | msgid "CSPROCS = number of current service processes (NW 5.x only)" | 2615 | msgid "CSPROCS = number of current service processes (NW 5.x only)" |
3207 | msgstr "CSPROCS = nombres de processus services actuels (NW 5.x seulement)" | 2616 | msgstr "CSPROCS = nombres de processus services actuels (NW 5.x seulement)" |
3208 | 2617 | ||
3209 | #: plugins/check_nwstat.c:1619 | ||
3210 | msgid "ABENDS = number of abended threads (NW 5.x only)" | 2618 | msgid "ABENDS = number of abended threads (NW 5.x only)" |
3211 | msgstr "" | 2619 | msgstr "" |
3212 | 2620 | ||
3213 | #: plugins/check_nwstat.c:1620 | ||
3214 | msgid "UPTIME = server uptime" | 2621 | msgid "UPTIME = server uptime" |
3215 | msgstr "" | 2622 | msgstr "" |
3216 | 2623 | ||
3217 | #: plugins/check_nwstat.c:1621 | ||
3218 | msgid "LTCH = percent long term cache hits" | 2624 | msgid "LTCH = percent long term cache hits" |
3219 | msgstr "" | 2625 | msgstr "" |
3220 | 2626 | ||
3221 | #: plugins/check_nwstat.c:1622 | ||
3222 | msgid "CBUFF = current number of cache buffers" | 2627 | msgid "CBUFF = current number of cache buffers" |
3223 | msgstr "" | 2628 | msgstr "" |
3224 | 2629 | ||
3225 | #: plugins/check_nwstat.c:1623 | ||
3226 | msgid "CDBUFF = current number of dirty cache buffers" | 2630 | msgid "CDBUFF = current number of dirty cache buffers" |
3227 | msgstr "" | 2631 | msgstr "" |
3228 | 2632 | ||
3229 | #: plugins/check_nwstat.c:1624 | ||
3230 | msgid "DCB = dirty cache buffers as a percentage of the total" | 2633 | msgid "DCB = dirty cache buffers as a percentage of the total" |
3231 | msgstr "" | 2634 | msgstr "" |
3232 | 2635 | ||
3233 | #: plugins/check_nwstat.c:1625 | ||
3234 | msgid "TCB = dirty cache buffers as a percentage of the original" | 2636 | msgid "TCB = dirty cache buffers as a percentage of the original" |
3235 | msgstr "" | 2637 | msgstr "" |
3236 | 2638 | ||
3237 | #: plugins/check_nwstat.c:1626 | ||
3238 | msgid "OFILES = number of open files" | 2639 | msgid "OFILES = number of open files" |
3239 | msgstr "" | 2640 | msgstr "" |
3240 | 2641 | ||
3241 | #: plugins/check_nwstat.c:1627 | ||
3242 | msgid " VMF<vol> = MB of free space on Volume <vol>" | 2642 | msgid " VMF<vol> = MB of free space on Volume <vol>" |
3243 | msgstr "" | 2643 | msgstr "" |
3244 | 2644 | ||
3245 | #: plugins/check_nwstat.c:1628 | ||
3246 | msgid " VMU<vol> = MB used space on Volume <vol>" | 2645 | msgid " VMU<vol> = MB used space on Volume <vol>" |
3247 | msgstr "" | 2646 | msgstr "" |
3248 | 2647 | ||
3249 | #: plugins/check_nwstat.c:1629 | ||
3250 | msgid " VMP<vol> = MB of purgeable space on Volume <vol>" | 2648 | msgid " VMP<vol> = MB of purgeable space on Volume <vol>" |
3251 | msgstr "" | 2649 | msgstr "" |
3252 | 2650 | ||
3253 | #: plugins/check_nwstat.c:1630 | ||
3254 | msgid " VPF<vol> = percent free space on volume <vol>" | 2651 | msgid " VPF<vol> = percent free space on volume <vol>" |
3255 | msgstr "" | 2652 | msgstr "" |
3256 | 2653 | ||
3257 | #: plugins/check_nwstat.c:1631 | ||
3258 | msgid " VKF<vol> = KB of free space on volume <vol>" | 2654 | msgid " VKF<vol> = KB of free space on volume <vol>" |
3259 | msgstr "" | 2655 | msgstr "" |
3260 | 2656 | ||
3261 | #: plugins/check_nwstat.c:1632 | ||
3262 | msgid " VPP<vol> = percent purgeable space on volume <vol>" | 2657 | msgid " VPP<vol> = percent purgeable space on volume <vol>" |
3263 | msgstr "" | 2658 | msgstr "" |
3264 | 2659 | ||
3265 | #: plugins/check_nwstat.c:1633 | ||
3266 | msgid " VKP<vol> = KB of purgeable space on volume <vol>" | 2660 | msgid " VKP<vol> = KB of purgeable space on volume <vol>" |
3267 | msgstr "" | 2661 | msgstr "" |
3268 | 2662 | ||
3269 | #: plugins/check_nwstat.c:1634 | ||
3270 | msgid " VPNP<vol> = percent not yet purgeable space on volume <vol>" | 2663 | msgid " VPNP<vol> = percent not yet purgeable space on volume <vol>" |
3271 | msgstr "" | 2664 | msgstr "" |
3272 | 2665 | ||
3273 | #: plugins/check_nwstat.c:1635 | ||
3274 | msgid " VKNP<vol> = KB of not yet purgeable space on volume <vol>" | 2666 | msgid " VKNP<vol> = KB of not yet purgeable space on volume <vol>" |
3275 | msgstr "" | 2667 | msgstr "" |
3276 | 2668 | ||
3277 | #: plugins/check_nwstat.c:1636 | ||
3278 | msgid " LRUM = LRU sitting time in minutes" | 2669 | msgid " LRUM = LRU sitting time in minutes" |
3279 | msgstr "" | 2670 | msgstr "" |
3280 | 2671 | ||
3281 | #: plugins/check_nwstat.c:1637 | ||
3282 | msgid " LRUS = LRU sitting time in seconds" | 2672 | msgid " LRUS = LRU sitting time in seconds" |
3283 | msgstr " LRUS = LRU temps d'attente en secondes" | 2673 | msgstr " LRUS = LRU temps d'attente en secondes" |
3284 | 2674 | ||
3285 | #: plugins/check_nwstat.c:1638 | ||
3286 | msgid " DSDB = check to see if DS Database is open" | 2675 | msgid " DSDB = check to see if DS Database is open" |
3287 | msgstr "" | 2676 | msgstr "" |
3288 | 2677 | ||
3289 | #: plugins/check_nwstat.c:1639 | ||
3290 | msgid " DSVER = NDS version" | 2678 | msgid " DSVER = NDS version" |
3291 | msgstr "" | 2679 | msgstr "" |
3292 | 2680 | ||
3293 | #: plugins/check_nwstat.c:1640 | ||
3294 | msgid " UPRB = used packet receive buffers" | 2681 | msgid " UPRB = used packet receive buffers" |
3295 | msgstr " UPRB = paquets du tampon de réception utilisés" | 2682 | msgstr " UPRB = paquets du tampon de réception utilisés" |
3296 | 2683 | ||
3297 | #: plugins/check_nwstat.c:1641 | ||
3298 | msgid " PUPRB = percent (of max) used packet receive buffers" | 2684 | msgid " PUPRB = percent (of max) used packet receive buffers" |
3299 | msgstr "" | 2685 | msgstr "" |
3300 | 2686 | ||
3301 | #: plugins/check_nwstat.c:1642 | ||
3302 | msgid " SAPENTRIES = number of entries in the SAP table" | 2687 | msgid " SAPENTRIES = number of entries in the SAP table" |
3303 | msgstr "" | 2688 | msgstr "" |
3304 | 2689 | ||
3305 | #: plugins/check_nwstat.c:1643 | ||
3306 | msgid " SAPENTRIES<n> = number of entries in the SAP table for SAP type <n>" | 2690 | msgid " SAPENTRIES<n> = number of entries in the SAP table for SAP type <n>" |
3307 | msgstr " SAPENTRIES<n> = entrées dans la table SAP pour le type SAP <n>" | 2691 | msgstr " SAPENTRIES<n> = entrées dans la table SAP pour le type SAP <n>" |
3308 | 2692 | ||
3309 | #: plugins/check_nwstat.c:1644 | ||
3310 | msgid " TSYNC = timesync status" | 2693 | msgid " TSYNC = timesync status" |
3311 | msgstr "" | 2694 | msgstr "" |
3312 | 2695 | ||
3313 | #: plugins/check_nwstat.c:1645 | ||
3314 | msgid " LOGINS = check to see if logins are enabled" | 2696 | msgid " LOGINS = check to see if logins are enabled" |
3315 | msgstr "" | 2697 | msgstr "" |
3316 | 2698 | ||
3317 | #: plugins/check_nwstat.c:1646 | ||
3318 | msgid " CONNS = number of currently licensed connections" | 2699 | msgid " CONNS = number of currently licensed connections" |
3319 | msgstr "" | 2700 | msgstr "" |
3320 | 2701 | ||
3321 | #: plugins/check_nwstat.c:1647 | ||
3322 | msgid " NRMH\t= NRM Summary Status" | 2702 | msgid " NRMH\t= NRM Summary Status" |
3323 | msgstr "" | 2703 | msgstr "" |
3324 | 2704 | ||
3325 | #: plugins/check_nwstat.c:1648 | ||
3326 | msgid " NRMP<stat> = Returns the current value for a NRM health item" | 2705 | msgid " NRMP<stat> = Returns the current value for a NRM health item" |
3327 | msgstr "" | 2706 | msgstr "" |
3328 | 2707 | ||
3329 | #: plugins/check_nwstat.c:1649 | ||
3330 | msgid " NRMM<stat> = Returns the current memory stats from NRM" | 2708 | msgid " NRMM<stat> = Returns the current memory stats from NRM" |
3331 | msgstr "" | 2709 | msgstr "" |
3332 | 2710 | ||
3333 | #: plugins/check_nwstat.c:1650 | ||
3334 | msgid " NRMS<stat> = Returns the current Swapfile stats from NRM" | 2711 | msgid " NRMS<stat> = Returns the current Swapfile stats from NRM" |
3335 | msgstr "" | 2712 | msgstr "" |
3336 | 2713 | ||
3337 | #: plugins/check_nwstat.c:1651 | ||
3338 | msgid " NSS1<stat> = Statistics from _Admin:Manage_NSS\\GeneralStats.xml" | 2714 | msgid " NSS1<stat> = Statistics from _Admin:Manage_NSS\\GeneralStats.xml" |
3339 | msgstr "" | 2715 | msgstr "" |
3340 | 2716 | ||
3341 | #: plugins/check_nwstat.c:1652 | ||
3342 | msgid " NSS3<stat> = Statistics from _Admin:Manage_NSS\\NameCache.xml" | 2717 | msgid " NSS3<stat> = Statistics from _Admin:Manage_NSS\\NameCache.xml" |
3343 | msgstr "" | 2718 | msgstr "" |
3344 | 2719 | ||
3345 | #: plugins/check_nwstat.c:1653 | ||
3346 | msgid " NSS4<stat> = Statistics from _Admin:Manage_NSS\\FileStats.xml" | 2720 | msgid " NSS4<stat> = Statistics from _Admin:Manage_NSS\\FileStats.xml" |
3347 | msgstr "" | 2721 | msgstr "" |
3348 | 2722 | ||
3349 | #: plugins/check_nwstat.c:1654 | ||
3350 | msgid " NSS5<stat> = Statistics from _Admin:Manage_NSS\\ObjectCache.xml" | 2723 | msgid " NSS5<stat> = Statistics from _Admin:Manage_NSS\\ObjectCache.xml" |
3351 | msgstr "" | 2724 | msgstr "" |
3352 | 2725 | ||
3353 | #: plugins/check_nwstat.c:1655 | ||
3354 | msgid " NSS6<stat> = Statistics from _Admin:Manage_NSS\\Thread.xml" | 2726 | msgid " NSS6<stat> = Statistics from _Admin:Manage_NSS\\Thread.xml" |
3355 | msgstr "" | 2727 | msgstr "" |
3356 | 2728 | ||
3357 | #: plugins/check_nwstat.c:1656 | ||
3358 | msgid "" | 2729 | msgid "" |
3359 | " NSS7<stat> = Statistics from _Admin:Manage_NSS\\AuthorizationCache.xml" | 2730 | " NSS7<stat> = Statistics from _Admin:Manage_NSS\\AuthorizationCache.xml" |
3360 | msgstr "" | 2731 | msgstr "" |
3361 | 2732 | ||
3362 | #: plugins/check_nwstat.c:1657 | ||
3363 | msgid " NLM:<nlm> = check if NLM is loaded and report version" | 2733 | msgid " NLM:<nlm> = check if NLM is loaded and report version" |
3364 | msgstr "" | 2734 | msgstr "" |
3365 | 2735 | ||
3366 | #: plugins/check_nwstat.c:1658 | ||
3367 | msgid " (e.g. NLM:TSANDS.NLM)" | 2736 | msgid " (e.g. NLM:TSANDS.NLM)" |
3368 | msgstr "" | 2737 | msgstr "" |
3369 | 2738 | ||
3370 | #: plugins/check_nwstat.c:1665 | ||
3371 | msgid "Include server version string in results" | 2739 | msgid "Include server version string in results" |
3372 | msgstr "" | 2740 | msgstr "" |
3373 | 2741 | ||
3374 | #: plugins/check_nwstat.c:1671 | 2742 | msgid "- This plugin requires that the MRTGEXT.NLM file from James Drews' MRTG" |
3375 | msgid "- This plugin requres that the MRTGEXT.NLM file from James Drews' MRTG" | ||
3376 | msgstr "" | 2743 | msgstr "" |
3377 | 2744 | ||
3378 | #: plugins/check_nwstat.c:1672 | ||
3379 | msgid "" | 2745 | msgid "" |
3380 | " extension for NetWare be loaded on the Novell servers you wish to check." | 2746 | " extension for NetWare be loaded on the Novell servers you wish to check." |
3381 | msgstr "" | 2747 | msgstr "" |
3382 | 2748 | ||
3383 | #: plugins/check_nwstat.c:1673 | ||
3384 | msgid " (available from http://www.engr.wisc.edu/~drews/mrtg/)" | 2749 | msgid " (available from http://www.engr.wisc.edu/~drews/mrtg/)" |
3385 | msgstr " (disponible depuis http://www.engr.wisc.edu/~drews/mrtg/)" | 2750 | msgstr " (disponible depuis http://www.engr.wisc.edu/~drews/mrtg/)" |
3386 | 2751 | ||
3387 | #: plugins/check_nwstat.c:1674 | ||
3388 | msgid "" | 2752 | msgid "" |
3389 | "- Values for critical thresholds should be lower than warning thresholds" | 2753 | "- Values for critical thresholds should be lower than warning thresholds" |
3390 | msgstr "" | 2754 | msgstr "" |
3391 | 2755 | ||
3392 | #: plugins/check_nwstat.c:1675 | ||
3393 | msgid "" | 2756 | msgid "" |
3394 | " when the following variables are checked: VPF, VKF, LTCH, CBUFF, DCB, " | 2757 | " when the following variables are checked: VPF, VKF, LTCH, CBUFF, DCB, " |
3395 | msgstr "" | 2758 | msgstr "" |
3396 | 2759 | ||
3397 | #: plugins/check_nwstat.c:1676 | ||
3398 | msgid " TCB, LRUS and LRUM." | 2760 | msgid " TCB, LRUS and LRUM." |
3399 | msgstr "" | 2761 | msgstr "" |
3400 | 2762 | ||
3401 | #: plugins/check_overcr.c:123 | ||
3402 | msgid "Unknown error fetching load data\n" | 2763 | msgid "Unknown error fetching load data\n" |
3403 | msgstr "" | 2764 | msgstr "" |
3404 | "Erreur inconnue lors de la récupération des données de charge système\n" | 2765 | "Erreur inconnue lors de la récupération des données de charge système\n" |
3405 | 2766 | ||
3406 | #: plugins/check_overcr.c:127 | ||
3407 | msgid "Invalid response from server - no load information\n" | 2767 | msgid "Invalid response from server - no load information\n" |
3408 | msgstr "Réponse invalide du serveur - pas d'information de charge système\n" | 2768 | msgstr "Réponse invalide du serveur - pas d'information de charge système\n" |
3409 | 2769 | ||
3410 | #: plugins/check_overcr.c:133 | ||
3411 | msgid "Invalid response from server after load 1\n" | 2770 | msgid "Invalid response from server after load 1\n" |
3412 | msgstr "Réponse invalide du serveur après charge système à 1 minute\n" | 2771 | msgstr "Réponse invalide du serveur après charge système à 1 minute\n" |
3413 | 2772 | ||
3414 | #: plugins/check_overcr.c:139 | ||
3415 | msgid "Invalid response from server after load 5\n" | 2773 | msgid "Invalid response from server after load 5\n" |
3416 | msgstr "Réponse invalide du serveur après charge système à 5 minute\n" | 2774 | msgstr "Réponse invalide du serveur après charge système à 5 minute\n" |
3417 | 2775 | ||
3418 | #: plugins/check_overcr.c:164 | ||
3419 | #, c-format | 2776 | #, c-format |
3420 | msgid "Load %s - %s-min load average = %0.2f" | 2777 | msgid "Load %s - %s-min load average = %0.2f" |
3421 | msgstr "Charge %s - %s-moyenne minimale de charge système = %0.2f" | 2778 | msgstr "Charge %s - %s-moyenne minimale de charge système = %0.2f" |
3422 | 2779 | ||
3423 | #: plugins/check_overcr.c:174 | ||
3424 | msgid "Unknown error fetching disk data\n" | 2780 | msgid "Unknown error fetching disk data\n" |
3425 | msgstr "Erreur inconnue en récupérant les données des disques\n" | 2781 | msgstr "Erreur inconnue en récupérant les données des disques\n" |
3426 | 2782 | ||
3427 | #: plugins/check_overcr.c:184 plugins/check_overcr.c:236 | ||
3428 | #: plugins/check_overcr.c:240 | ||
3429 | msgid "Invalid response from server\n" | 2783 | msgid "Invalid response from server\n" |
3430 | msgstr "Réponse invalide reçue du serveur\n" | 2784 | msgstr "Réponse invalide reçue du serveur\n" |
3431 | 2785 | ||
3432 | #: plugins/check_overcr.c:211 | ||
3433 | msgid "Unknown error fetching network status\n" | 2786 | msgid "Unknown error fetching network status\n" |
3434 | msgstr "Erreur inconnue lors de la réception de l'état du réseau\n" | 2787 | msgstr "Erreur inconnue lors de la réception de l'état du réseau\n" |
3435 | 2788 | ||
3436 | #: plugins/check_overcr.c:221 | ||
3437 | #, c-format | 2789 | #, c-format |
3438 | msgid "Net %s - %d connection%s on port %d" | 2790 | msgid "Net %s - %d connection%s on port %d" |
3439 | msgstr "Net %s - %d connections%s sur le port %d" | 2791 | msgstr "Net %s - %d connections%s sur le port %d" |
3440 | 2792 | ||
3441 | #: plugins/check_overcr.c:232 | ||
3442 | msgid "Unknown error fetching process status\n" | 2793 | msgid "Unknown error fetching process status\n" |
3443 | msgstr "Erreur inconnue en récupérant l'état des processus\n" | 2794 | msgstr "Erreur inconnue en récupérant l'état des processus\n" |
3444 | 2795 | ||
3445 | #: plugins/check_overcr.c:250 | ||
3446 | #, c-format | 2796 | #, c-format |
3447 | msgid "Process %s - %d instance%s of %s running" | 2797 | msgid "Process %s - %d instance%s of %s running" |
3448 | msgstr "Processus %s - %d instances%s de %s démarrées" | 2798 | msgstr "Processus %s - %d instances%s de %s démarrées" |
3449 | 2799 | ||
3450 | #: plugins/check_overcr.c:277 | ||
3451 | #, c-format | 2800 | #, c-format |
3452 | msgid "Uptime %s - Up %d days %d hours %d minutes" | 2801 | msgid "Uptime %s - Up %d days %d hours %d minutes" |
3453 | msgstr "Temps de fonctionnement %s - Up %d jours %d heures %d minutes" | 2802 | msgstr "Temps de fonctionnement %s - Up %d jours %d heures %d minutes" |
3454 | 2803 | ||
3455 | #: plugins/check_overcr.c:419 | ||
3456 | msgid "" | 2804 | msgid "" |
3457 | "This plugin attempts to contact the Over-CR collector daemon running on the" | 2805 | "This plugin attempts to contact the Over-CR collector daemon running on the" |
3458 | msgstr "" | 2806 | msgstr "" |
3459 | "Ce plugin essaye de joindre le service Over CR tournant sur le serveur UNIX" | 2807 | "Ce plugin essaye de joindre le service Over CR tournant sur le serveur UNIX" |
3460 | 2808 | ||
3461 | #: plugins/check_overcr.c:420 | ||
3462 | msgid "remote UNIX server in order to gather the requested system information." | 2809 | msgid "remote UNIX server in order to gather the requested system information." |
3463 | msgstr "distant afin de récupérer les informations système demandées." | 2810 | msgstr "distant afin de récupérer les informations système demandées." |
3464 | 2811 | ||
3465 | #: plugins/check_overcr.c:437 | ||
3466 | msgid "LOAD1 = 1 minute average CPU load" | 2812 | msgid "LOAD1 = 1 minute average CPU load" |
3467 | msgstr "" | 2813 | msgstr "" |
3468 | 2814 | ||
3469 | #: plugins/check_overcr.c:438 | ||
3470 | msgid "LOAD5 = 5 minute average CPU load" | 2815 | msgid "LOAD5 = 5 minute average CPU load" |
3471 | msgstr "" | 2816 | msgstr "" |
3472 | 2817 | ||
3473 | #: plugins/check_overcr.c:439 | ||
3474 | msgid "LOAD15 = 15 minute average CPU load" | 2818 | msgid "LOAD15 = 15 minute average CPU load" |
3475 | msgstr "" | 2819 | msgstr "" |
3476 | 2820 | ||
3477 | #: plugins/check_overcr.c:440 | ||
3478 | msgid "DPU<filesys> = percent used disk space on filesystem <filesys>" | 2821 | msgid "DPU<filesys> = percent used disk space on filesystem <filesys>" |
3479 | msgstr "" | 2822 | msgstr "" |
3480 | 2823 | ||
3481 | #: plugins/check_overcr.c:441 | ||
3482 | msgid "PROC<process> = number of running processes with name <process>" | 2824 | msgid "PROC<process> = number of running processes with name <process>" |
3483 | msgstr "" | 2825 | msgstr "" |
3484 | 2826 | ||
3485 | #: plugins/check_overcr.c:442 | ||
3486 | msgid "NET<port> = number of active connections on TCP port <port>" | 2827 | msgid "NET<port> = number of active connections on TCP port <port>" |
3487 | msgstr "" | 2828 | msgstr "" |
3488 | 2829 | ||
3489 | #: plugins/check_overcr.c:443 | ||
3490 | msgid "UPTIME = system uptime in seconds" | 2830 | msgid "UPTIME = system uptime in seconds" |
3491 | msgstr "" | 2831 | msgstr "" |
3492 | 2832 | ||
3493 | #: plugins/check_overcr.c:450 | ||
3494 | msgid "This plugin requires that Eric Molitors' Over-CR collector daemon be" | 2833 | msgid "This plugin requires that Eric Molitors' Over-CR collector daemon be" |
3495 | msgstr "Ce plugin requiert que le daemon collecteur Over-CR d'Eric Molitors" | 2834 | msgstr "Ce plugin requiert que le daemon collecteur Over-CR d'Eric Molitors" |
3496 | 2835 | ||
3497 | #: plugins/check_overcr.c:451 | ||
3498 | msgid "running on the remote server." | 2836 | msgid "running on the remote server." |
3499 | msgstr "soit fonctionnel sur le serveur distant" | 2837 | msgstr "soit fonctionnel sur le serveur distant" |
3500 | 2838 | ||
3501 | #: plugins/check_overcr.c:452 | ||
3502 | msgid "Over-CR can be downloaded from http://www.molitor.org/overcr" | 2839 | msgid "Over-CR can be downloaded from http://www.molitor.org/overcr" |
3503 | msgstr "" | 2840 | msgstr "" |
3504 | 2841 | ||
3505 | #: plugins/check_overcr.c:453 | ||
3506 | msgid "This plugin was tested with version 0.99.53 of the Over-CR collector" | 2842 | msgid "This plugin was tested with version 0.99.53 of the Over-CR collector" |
3507 | msgstr "Ce plugin a été testé avec la version 0.99.53 su collecteur Over-CR" | 2843 | msgstr "Ce plugin a été testé avec la version 0.99.53 su collecteur Over-CR" |
3508 | 2844 | ||
3509 | #: plugins/check_overcr.c:457 | ||
3510 | msgid "" | 2845 | msgid "" |
3511 | "For the available options, the critical threshold value should always be" | 2846 | "For the available options, the critical threshold value should always be" |
3512 | msgstr "" | 2847 | msgstr "" |
3513 | "Pour toutes les options disponibles, le seuil critique doit toujours être" | 2848 | "Pour toutes les options disponibles, le seuil critique doit toujours être" |
3514 | 2849 | ||
3515 | #: plugins/check_overcr.c:458 | ||
3516 | msgid "" | 2850 | msgid "" |
3517 | "higher than the warning threshold value, EXCEPT with the uptime variable" | 2851 | "higher than the warning threshold value, EXCEPT with the uptime variable" |
3518 | msgstr "plus grand que le seuil d'alerte SAUF pour l'option uptime" | 2852 | msgstr "plus grand que le seuil d'alerte SAUF pour l'option uptime" |
3519 | 2853 | ||
3520 | #: plugins/check_pgsql.c:222 | ||
3521 | #, c-format | 2854 | #, c-format |
3522 | msgid "CRITICAL - no connection to '%s' (%s).\n" | 2855 | msgid "CRITICAL - no connection to '%s' (%s).\n" |
3523 | msgstr "CRITIQUE - pas de connexion à '%s' (%s).\n" | 2856 | msgstr "CRITIQUE - pas de connexion à '%s' (%s).\n" |
3524 | 2857 | ||
3525 | #: plugins/check_pgsql.c:250 | ||
3526 | #, fuzzy, c-format | 2858 | #, fuzzy, c-format |
3527 | msgid " %s - database %s (%f sec.)|%s\n" | 2859 | msgid " %s - database %s (%f sec.)|%s\n" |
3528 | msgstr " %s - base de données %s (%d sec.)|%s\n" | 2860 | msgstr " %s - base de données %s (%d sec.)|%s\n" |
3529 | 2861 | ||
3530 | #: plugins/check_pgsql.c:317 plugins/check_time.c:277 plugins/check_time.c:289 | ||
3531 | #: plugins/check_users.c:181 | ||
3532 | msgid "Critical threshold must be a positive integer" | 2862 | msgid "Critical threshold must be a positive integer" |
3533 | msgstr "Le seuil critique doit être un entier positif" | 2863 | msgstr "Le seuil critique doit être un entier positif" |
3534 | 2864 | ||
3535 | #: plugins/check_pgsql.c:323 plugins/check_time.c:258 plugins/check_time.c:282 | ||
3536 | #: plugins/check_users.c:187 plugins/check_users.c:197 | ||
3537 | #: plugins/check_users.c:203 | ||
3538 | msgid "Warning threshold must be a positive integer" | 2865 | msgid "Warning threshold must be a positive integer" |
3539 | msgstr "Le seuil d'avertissement doit être un entier positif" | 2866 | msgstr "Le seuil d'avertissement doit être un entier positif" |
3540 | 2867 | ||
3541 | #: plugins/check_pgsql.c:347 | 2868 | #, fuzzy |
3542 | msgid "Database name is not valid" | 2869 | msgid "Database name exceeds the maximum length" |
3543 | msgstr "Le nom de la base de données est invalide" | 2870 | msgstr "Le nom de la base de données est invalide" |
3544 | 2871 | ||
3545 | #: plugins/check_pgsql.c:353 | ||
3546 | msgid "User name is not valid" | 2872 | msgid "User name is not valid" |
3547 | msgstr "Le nom de l'utilisateur est invalide" | 2873 | msgstr "Le nom de l'utilisateur est invalide" |
3548 | 2874 | ||
3549 | #: plugins/check_pgsql.c:504 | ||
3550 | #, c-format | 2875 | #, c-format |
3551 | msgid "Test whether a PostgreSQL Database is accepting connections." | 2876 | msgid "Test whether a PostgreSQL Database is accepting connections." |
3552 | msgstr "Teste si une base de données Postgresql accepte les connections." | 2877 | msgstr "Teste si une base de données Postgresql accepte les connections." |
3553 | 2878 | ||
3554 | #: plugins/check_pgsql.c:516 | ||
3555 | msgid "Database to check " | 2879 | msgid "Database to check " |
3556 | msgstr "" | 2880 | msgstr "" |
3557 | 2881 | ||
3558 | #: plugins/check_pgsql.c:517 | 2882 | #, fuzzy, c-format |
3559 | #, c-format | 2883 | msgid "(default: %s)\n" |
3560 | msgid "(default: %s)" | 2884 | msgstr "(Défaut: %d)\n" |
3561 | msgstr "" | ||
3562 | 2885 | ||
3563 | #: plugins/check_pgsql.c:519 | ||
3564 | msgid "Login name of user" | 2886 | msgid "Login name of user" |
3565 | msgstr "Le nom d'un utilisateur" | 2887 | msgstr "Le nom d'un utilisateur" |
3566 | 2888 | ||
3567 | #: plugins/check_pgsql.c:521 | ||
3568 | msgid "Password (BIG SECURITY ISSUE)" | 2889 | msgid "Password (BIG SECURITY ISSUE)" |
3569 | msgstr "" | 2890 | msgstr "" |
3570 | 2891 | ||
3571 | #: plugins/check_pgsql.c:523 | ||
3572 | msgid "Connection parameters (keyword = value), see below" | 2892 | msgid "Connection parameters (keyword = value), see below" |
3573 | msgstr "" | 2893 | msgstr "" |
3574 | 2894 | ||
3575 | #: plugins/check_pgsql.c:530 | ||
3576 | msgid "SQL query to run. Only first column in first row will be read" | 2895 | msgid "SQL query to run. Only first column in first row will be read" |
3577 | msgstr "" | 2896 | msgstr "" |
3578 | 2897 | ||
3579 | #: plugins/check_pgsql.c:532 | 2898 | msgid "A name for the query, this string is used instead of the query" |
2899 | msgstr "" | ||
2900 | |||
2901 | msgid "in the long output of the plugin" | ||
2902 | msgstr "" | ||
2903 | |||
3580 | #, fuzzy | 2904 | #, fuzzy |
3581 | msgid "SQL query value to result in warning status (double)" | 2905 | msgid "SQL query value to result in warning status (double)" |
3582 | msgstr "Décalage résultant en un avertissement (secondes)" | 2906 | msgstr "Décalage résultant en un avertissement (secondes)" |
3583 | 2907 | ||
3584 | #: plugins/check_pgsql.c:534 | ||
3585 | #, fuzzy | 2908 | #, fuzzy |
3586 | msgid "SQL query value to result in critical status (double)" | 2909 | msgid "SQL query value to result in critical status (double)" |
3587 | msgstr "Décalage résultant en un état critique (secondes)" | 2910 | msgstr "Décalage résultant en un état critique (secondes)" |
3588 | 2911 | ||
3589 | #: plugins/check_pgsql.c:539 | ||
3590 | msgid "All parameters are optional." | 2912 | msgid "All parameters are optional." |
3591 | msgstr "" | 2913 | msgstr "" |
3592 | 2914 | ||
3593 | #: plugins/check_pgsql.c:540 | ||
3594 | msgid "" | 2915 | msgid "" |
3595 | "This plugin tests a PostgreSQL DBMS to determine whether it is active and" | 2916 | "This plugin tests a PostgreSQL DBMS to determine whether it is active and" |
3596 | msgstr "" | 2917 | msgstr "" |
3597 | 2918 | ||
3598 | #: plugins/check_pgsql.c:541 | ||
3599 | msgid "accepting queries. In its current operation, it simply connects to the" | 2919 | msgid "accepting queries. In its current operation, it simply connects to the" |
3600 | msgstr "" | 2920 | msgstr "" |
3601 | 2921 | ||
3602 | #: plugins/check_pgsql.c:542 | ||
3603 | msgid "" | 2922 | msgid "" |
3604 | "specified database, and then disconnects. If no database is specified, it" | 2923 | "specified database, and then disconnects. If no database is specified, it" |
3605 | msgstr "" | 2924 | msgstr "" |
3606 | 2925 | ||
3607 | #: plugins/check_pgsql.c:543 | ||
3608 | msgid "" | 2926 | msgid "" |
3609 | "connects to the template1 database, which is present in every functioning" | 2927 | "connects to the template1 database, which is present in every functioning" |
3610 | msgstr "" | 2928 | msgstr "" |
3611 | 2929 | ||
3612 | #: plugins/check_pgsql.c:544 | ||
3613 | msgid "PostgreSQL DBMS." | 2930 | msgid "PostgreSQL DBMS." |
3614 | msgstr "" | 2931 | msgstr "" |
3615 | 2932 | ||
3616 | #: plugins/check_pgsql.c:546 | ||
3617 | msgid "If a query is specified using the -q option, it will be executed after" | 2933 | msgid "If a query is specified using the -q option, it will be executed after" |
3618 | msgstr "" | 2934 | msgstr "" |
3619 | 2935 | ||
3620 | #: plugins/check_pgsql.c:547 | ||
3621 | msgid "connecting to the server. The result from the query has to be numeric." | 2936 | msgid "connecting to the server. The result from the query has to be numeric." |
3622 | msgstr "" | 2937 | msgstr "" |
3623 | 2938 | ||
3624 | #: plugins/check_pgsql.c:548 | ||
3625 | msgid "" | 2939 | msgid "" |
3626 | "Multiple SQL commands, separated by semicolon, are allowed but the result " | 2940 | "Multiple SQL commands, separated by semicolon, are allowed but the result " |
3627 | msgstr "" | 2941 | msgstr "" |
3628 | 2942 | ||
3629 | #: plugins/check_pgsql.c:549 | ||
3630 | msgid "of the last command is taken into account only. The value of the first" | 2943 | msgid "of the last command is taken into account only. The value of the first" |
3631 | msgstr "" | 2944 | msgstr "" |
3632 | 2945 | ||
3633 | #: plugins/check_pgsql.c:550 | 2946 | msgid "" |
3634 | msgid "column in the first row is used as the check result." | 2947 | "column in the first row is used as the check result. If a second column is" |
2948 | msgstr "" | ||
2949 | |||
2950 | msgid "present in the result set, this is added to the plugin output with a" | ||
2951 | msgstr "" | ||
2952 | |||
2953 | msgid "" | ||
2954 | "prefix of \"Extra Info:\". This information can be displayed in the system" | ||
2955 | msgstr "" | ||
2956 | |||
2957 | msgid "executing the plugin." | ||
3635 | msgstr "" | 2958 | msgstr "" |
3636 | 2959 | ||
3637 | #: plugins/check_pgsql.c:552 | ||
3638 | msgid "" | 2960 | msgid "" |
3639 | "See the chapter \"Monitoring Database Activity\" of the PostgreSQL manual" | 2961 | "See the chapter \"Monitoring Database Activity\" of the PostgreSQL manual" |
3640 | msgstr "" | 2962 | msgstr "" |
3641 | 2963 | ||
3642 | #: plugins/check_pgsql.c:553 | ||
3643 | msgid "" | 2964 | msgid "" |
3644 | "for details about how to access internal statistics of the database server." | 2965 | "for details about how to access internal statistics of the database server." |
3645 | msgstr "" | 2966 | msgstr "" |
3646 | 2967 | ||
3647 | #: plugins/check_pgsql.c:555 | ||
3648 | msgid "" | 2968 | msgid "" |
3649 | "For a list of available connection parameters which may be used with the -o" | 2969 | "For a list of available connection parameters which may be used with the -o" |
3650 | msgstr "" | 2970 | msgstr "" |
3651 | 2971 | ||
3652 | #: plugins/check_pgsql.c:556 | ||
3653 | msgid "" | 2972 | msgid "" |
3654 | "command line option, see the documentation for PQconnectdb() in the chapter" | 2973 | "command line option, see the documentation for PQconnectdb() in the chapter" |
3655 | msgstr "" | 2974 | msgstr "" |
3656 | 2975 | ||
3657 | #: plugins/check_pgsql.c:557 | ||
3658 | msgid "" | 2976 | msgid "" |
3659 | "\"libpq - C Library\" of the PostgreSQL manual. For example, this may be" | 2977 | "\"libpq - C Library\" of the PostgreSQL manual. For example, this may be" |
3660 | msgstr "" | 2978 | msgstr "" |
3661 | 2979 | ||
3662 | #: plugins/check_pgsql.c:558 | ||
3663 | msgid "" | 2980 | msgid "" |
3664 | "used to specify a service name in pg_service.conf to be used for additional" | 2981 | "used to specify a service name in pg_service.conf to be used for additional" |
3665 | msgstr "" | 2982 | msgstr "" |
3666 | 2983 | ||
3667 | #: plugins/check_pgsql.c:559 | ||
3668 | msgid "connection parameters: -o 'service=<name>' or to specify the SSL mode:" | 2984 | msgid "connection parameters: -o 'service=<name>' or to specify the SSL mode:" |
3669 | msgstr "" | 2985 | msgstr "" |
3670 | 2986 | ||
3671 | #: plugins/check_pgsql.c:560 | ||
3672 | msgid "-o 'sslmode=require'." | 2987 | msgid "-o 'sslmode=require'." |
3673 | msgstr "" | 2988 | msgstr "" |
3674 | 2989 | ||
3675 | #: plugins/check_pgsql.c:562 | ||
3676 | msgid "" | 2990 | msgid "" |
3677 | "The plugin will connect to a local postmaster if no host is specified. To" | 2991 | "The plugin will connect to a local postmaster if no host is specified. To" |
3678 | msgstr "" | 2992 | msgstr "" |
3679 | "Ce plugin va se connecter sur un postmaster local si aucun hôte n'est " | 2993 | "Ce plugin va se connecter sur un postmaster local si aucun hôte n'est " |
3680 | "spécifié." | 2994 | "spécifié." |
3681 | 2995 | ||
3682 | #: plugins/check_pgsql.c:563 | ||
3683 | msgid "" | 2996 | msgid "" |
3684 | "connect to a remote host, be sure that the remote postmaster accepts TCP/IP" | 2997 | "connect to a remote host, be sure that the remote postmaster accepts TCP/IP" |
3685 | msgstr "" | 2998 | msgstr "" |
3686 | 2999 | ||
3687 | #: plugins/check_pgsql.c:564 | ||
3688 | msgid "connections (start the postmaster with the -i option)." | 3000 | msgid "connections (start the postmaster with the -i option)." |
3689 | msgstr "" | 3001 | msgstr "" |
3690 | 3002 | ||
3691 | #: plugins/check_pgsql.c:566 | ||
3692 | msgid "" | 3003 | msgid "" |
3693 | "Typically, the monitoring user (unless the --logname option is used) should " | 3004 | "Typically, the monitoring user (unless the --logname option is used) should " |
3694 | "be" | 3005 | "be" |
3695 | msgstr "" | 3006 | msgstr "" |
3696 | 3007 | ||
3697 | #: plugins/check_pgsql.c:567 | ||
3698 | msgid "" | 3008 | msgid "" |
3699 | "able to connect to the database without a password. The plugin can also send" | 3009 | "able to connect to the database without a password. The plugin can also send" |
3700 | msgstr "" | 3010 | msgstr "" |
3701 | 3011 | ||
3702 | #: plugins/check_pgsql.c:568 | ||
3703 | msgid "a password, but no effort is made to obscure or encrypt the password." | 3012 | msgid "a password, but no effort is made to obscure or encrypt the password." |
3704 | msgstr "" | 3013 | msgstr "" |
3705 | 3014 | ||
3706 | #: plugins/check_pgsql.c:601 | ||
3707 | #, c-format | 3015 | #, c-format |
3708 | msgid "QUERY %s - %s: %s.\n" | 3016 | msgid "QUERY %s - %s: %s.\n" |
3709 | msgstr "" | 3017 | msgstr "" |
3710 | 3018 | ||
3711 | #: plugins/check_pgsql.c:601 | ||
3712 | msgid "Error with query" | 3019 | msgid "Error with query" |
3713 | msgstr "" | 3020 | msgstr "" |
3714 | 3021 | ||
3715 | #: plugins/check_pgsql.c:607 | ||
3716 | #, fuzzy | 3022 | #, fuzzy |
3717 | msgid "No rows returned" | 3023 | msgid "No rows returned" |
3718 | msgstr "Pas de données valides reçues" | 3024 | msgstr "Pas de données valides reçues" |
3719 | 3025 | ||
3720 | #: plugins/check_pgsql.c:612 | ||
3721 | #, fuzzy | 3026 | #, fuzzy |
3722 | msgid "No columns returned" | 3027 | msgid "No columns returned" |
3723 | msgstr "Pas de données valides reçues" | 3028 | msgstr "Pas de données valides reçues" |
3724 | 3029 | ||
3725 | #: plugins/check_pgsql.c:618 | ||
3726 | #, fuzzy | 3030 | #, fuzzy |
3727 | msgid "No data returned" | 3031 | msgid "No data returned" |
3728 | msgstr "Pas de données valides reçues" | 3032 | msgstr "Pas de données valides reçues" |
3729 | 3033 | ||
3730 | #: plugins/check_pgsql.c:627 | ||
3731 | msgid "Is not a numeric" | 3034 | msgid "Is not a numeric" |
3732 | msgstr "" | 3035 | msgstr "" |
3733 | 3036 | ||
3734 | #: plugins/check_pgsql.c:644 | 3037 | #, fuzzy, c-format |
3038 | msgid "%s returned %f" | ||
3039 | msgstr ". %s renvoie %s" | ||
3040 | |||
3735 | #, fuzzy, c-format | 3041 | #, fuzzy, c-format |
3736 | msgid "'%s' returned %f" | 3042 | msgid "'%s' returned %f" |
3737 | msgstr ". %s renvoie %s" | 3043 | msgstr ". %s renvoie %s" |
3738 | 3044 | ||
3739 | #: plugins/check_ping.c:141 | ||
3740 | msgid "CRITICAL - Could not interpret output from ping command\n" | 3045 | msgid "CRITICAL - Could not interpret output from ping command\n" |
3741 | msgstr "CRITIQUE - Impossible d'interpréter le réponse de la commande ping\n" | 3046 | msgstr "CRITIQUE - Impossible d'interpréter le réponse de la commande ping\n" |
3742 | 3047 | ||
3743 | #: plugins/check_ping.c:157 | ||
3744 | #, c-format | 3048 | #, c-format |
3745 | msgid "PING %s - %sPacket loss = %d%%" | 3049 | msgid "PING %s - %sPacket loss = %d%%" |
3746 | msgstr "PING %s - %s Paquets perdus = %d%%" | 3050 | msgstr "PING %s - %s Paquets perdus = %d%%" |
3747 | 3051 | ||
3748 | #: plugins/check_ping.c:160 | ||
3749 | #, c-format | 3052 | #, c-format |
3750 | msgid "PING %s - %sPacket loss = %d%%, RTA = %2.2f ms" | 3053 | msgid "PING %s - %sPacket loss = %d%%, RTA = %2.2f ms" |
3751 | msgstr "PING %s - %s Paquets perdus = %d%%, RTA = %2.2f ms" | 3054 | msgstr "PING %s - %s Paquets perdus = %d%%, RTA = %2.2f ms" |
3752 | 3055 | ||
3753 | #: plugins/check_ping.c:257 | ||
3754 | msgid "Could not realloc() addresses\n" | 3056 | msgid "Could not realloc() addresses\n" |
3755 | msgstr "Impossible de réallouer les adresses\n" | 3057 | msgstr "Impossible de réallouer les adresses\n" |
3756 | 3058 | ||
3757 | #: plugins/check_ping.c:272 plugins/check_ping.c:352 | ||
3758 | #, c-format | 3059 | #, c-format |
3759 | msgid "<max_packets> (%s) must be a non-negative number\n" | 3060 | msgid "<max_packets> (%s) must be a non-negative number\n" |
3760 | msgstr "<max_packets> (%s) doit être un nombre positif\n" | 3061 | msgstr "<max_packets> (%s) doit être un nombre positif\n" |
3761 | 3062 | ||
3762 | #: plugins/check_ping.c:306 | ||
3763 | #, c-format | 3063 | #, c-format |
3764 | msgid "<wpl> (%s) must be an integer percentage\n" | 3064 | msgid "<wpl> (%s) must be an integer percentage\n" |
3765 | msgstr "<wpl> (%s) doit être un pourcentage entier\n" | 3065 | msgstr "<wpl> (%s) doit être un pourcentage entier\n" |
3766 | 3066 | ||
3767 | #: plugins/check_ping.c:317 | ||
3768 | #, c-format | 3067 | #, c-format |
3769 | msgid "<cpl> (%s) must be an integer percentage\n" | 3068 | msgid "<cpl> (%s) must be an integer percentage\n" |
3770 | msgstr "<cpl> (%s) doit être un pourcentage entier\n" | 3069 | msgstr "<cpl> (%s) doit être un pourcentage entier\n" |
3771 | 3070 | ||
3772 | #: plugins/check_ping.c:328 | ||
3773 | #, c-format | 3071 | #, c-format |
3774 | msgid "<wrta> (%s) must be a non-negative number\n" | 3072 | msgid "<wrta> (%s) must be a non-negative number\n" |
3775 | msgstr "<wrta> (%s) doit être un nombre positif\n" | 3073 | msgstr "<wrta> (%s) doit être un nombre positif\n" |
3776 | 3074 | ||
3777 | #: plugins/check_ping.c:339 | ||
3778 | #, c-format | 3075 | #, c-format |
3779 | msgid "<crta> (%s) must be a non-negative number\n" | 3076 | msgid "<crta> (%s) must be a non-negative number\n" |
3780 | msgstr "<crta> (%s) doit être un nombre positif\n" | 3077 | msgstr "<crta> (%s) doit être un nombre positif\n" |
3781 | 3078 | ||
3782 | #: plugins/check_ping.c:372 | ||
3783 | #, c-format | 3079 | #, c-format |
3784 | msgid "" | 3080 | msgid "" |
3785 | "%s: Warning threshold must be integer or percentage!\n" | 3081 | "%s: Warning threshold must be integer or percentage!\n" |
3786 | "\n" | 3082 | "\n" |
3787 | msgstr "%s: Le seuil d'avertissement doit être un entier ou un pourcentage!\n" | 3083 | msgstr "%s: Le seuil d'avertissement doit être un entier ou un pourcentage!\n" |
3788 | 3084 | ||
3789 | #: plugins/check_ping.c:385 | ||
3790 | #, c-format | 3085 | #, c-format |
3791 | msgid "<wrta> was not set\n" | 3086 | msgid "<wrta> was not set\n" |
3792 | msgstr "<wrta> n'a pas été indiqué\n" | 3087 | msgstr "<wrta> n'a pas été indiqué\n" |
3793 | 3088 | ||
3794 | #: plugins/check_ping.c:389 | ||
3795 | #, c-format | 3089 | #, c-format |
3796 | msgid "<crta> was not set\n" | 3090 | msgid "<crta> was not set\n" |
3797 | msgstr "<crta> n'a pas été indiqué\n" | 3091 | msgstr "<crta> n'a pas été indiqué\n" |
3798 | 3092 | ||
3799 | #: plugins/check_ping.c:393 | ||
3800 | #, c-format | 3093 | #, c-format |
3801 | msgid "<wpl> was not set\n" | 3094 | msgid "<wpl> was not set\n" |
3802 | msgstr " <wpl> n'a pas été indiqué\n" | 3095 | msgstr " <wpl> n'a pas été indiqué\n" |
3803 | 3096 | ||
3804 | #: plugins/check_ping.c:397 | ||
3805 | #, c-format | 3097 | #, c-format |
3806 | msgid "<cpl> was not set\n" | 3098 | msgid "<cpl> was not set\n" |
3807 | msgstr "<cpl> n'a pas été indiqué\n" | 3099 | msgstr "<cpl> n'a pas été indiqué\n" |
3808 | 3100 | ||
3809 | #: plugins/check_ping.c:401 | ||
3810 | #, c-format | 3101 | #, c-format |
3811 | msgid "<wrta> (%f) cannot be larger than <crta> (%f)\n" | 3102 | msgid "<wrta> (%f) cannot be larger than <crta> (%f)\n" |
3812 | msgstr "<wrta> (%f) ne peut pas être plus large que <crta> (%f)\n" | 3103 | msgstr "<wrta> (%f) ne peut pas être plus large que <crta> (%f)\n" |
3813 | 3104 | ||
3814 | #: plugins/check_ping.c:405 | ||
3815 | #, c-format | 3105 | #, c-format |
3816 | msgid "<wpl> (%d) cannot be larger than <cpl> (%d)\n" | 3106 | msgid "<wpl> (%d) cannot be larger than <cpl> (%d)\n" |
3817 | msgstr "<wpl> (%d) ne peut pas être plus large que <cpl> (%d)\n" | 3107 | msgstr "<wpl> (%d) ne peut pas être plus large que <cpl> (%d)\n" |
3818 | 3108 | ||
3819 | #: plugins/check_ping.c:442 | ||
3820 | #, c-format | 3109 | #, c-format |
3821 | msgid "Cannot open stderr for %s\n" | 3110 | msgid "Cannot open stderr for %s\n" |
3822 | msgstr "Impossible d'ouvrir le canal d'erreur standard pour %s\n" | 3111 | msgstr "Impossible d'ouvrir le canal d'erreur standard pour %s\n" |
3823 | 3112 | ||
3824 | #: plugins/check_ping.c:492 plugins/check_ping.c:494 | ||
3825 | msgid "System call sent warnings to stderr " | 3113 | msgid "System call sent warnings to stderr " |
3826 | msgstr "" | 3114 | msgstr "" |
3827 | "Les appel système enverront leurs messages d'avertissement vers le canal " | 3115 | "Les appel système enverront leurs messages d'avertissement vers le canal " |
3828 | "d'erreur standard" | 3116 | "d'erreur standard" |
3829 | 3117 | ||
3830 | #: plugins/check_ping.c:519 | ||
3831 | #, fuzzy, c-format | 3118 | #, fuzzy, c-format |
3832 | msgid "CRITICAL - Network Unreachable (%s)\n" | 3119 | msgid "CRITICAL - Network Unreachable (%s)\n" |
3833 | msgstr "CRITIQUE - Le réseau est inaccessible (%s)" | 3120 | msgstr "CRITIQUE - Le réseau est inaccessible (%s)" |
3834 | 3121 | ||
3835 | #: plugins/check_ping.c:521 | ||
3836 | #, fuzzy, c-format | 3122 | #, fuzzy, c-format |
3837 | msgid "CRITICAL - Host Unreachable (%s)\n" | 3123 | msgid "CRITICAL - Host Unreachable (%s)\n" |
3838 | msgstr "CRITIQUE - Hôte inaccessible (%s)" | 3124 | msgstr "CRITIQUE - Hôte inaccessible (%s)" |
3839 | 3125 | ||
3840 | #: plugins/check_ping.c:523 | ||
3841 | #, fuzzy, c-format | 3126 | #, fuzzy, c-format |
3842 | msgid "CRITICAL - Bogus ICMP: Port Unreachable (%s)\n" | 3127 | msgid "CRITICAL - Bogus ICMP: Port Unreachable (%s)\n" |
3843 | msgstr "CRITIQUE - Paquet ICMP incorrect: Port inaccessible (%s)" | 3128 | msgstr "CRITIQUE - Paquet ICMP incorrect: Port inaccessible (%s)" |
3844 | 3129 | ||
3845 | #: plugins/check_ping.c:525 | ||
3846 | #, fuzzy, c-format | 3130 | #, fuzzy, c-format |
3847 | msgid "CRITICAL - Bogus ICMP: Protocol Unreachable (%s)\n" | 3131 | msgid "CRITICAL - Bogus ICMP: Protocol Unreachable (%s)\n" |
3848 | msgstr "CRITIQUE - Paquet ICMP incorrect: Protocole inaccessible (%s)" | 3132 | msgstr "CRITIQUE - Paquet ICMP incorrect: Protocole inaccessible (%s)" |
3849 | 3133 | ||
3850 | #: plugins/check_ping.c:527 | ||
3851 | #, fuzzy, c-format | 3134 | #, fuzzy, c-format |
3852 | msgid "CRITICAL - Network Prohibited (%s)\n" | 3135 | msgid "CRITICAL - Network Prohibited (%s)\n" |
3853 | msgstr "CRITIQUE - L'accès au réseau est interdit (%s)" | 3136 | msgstr "CRITIQUE - L'accès au réseau est interdit (%s)" |
3854 | 3137 | ||
3855 | #: plugins/check_ping.c:529 | ||
3856 | #, fuzzy, c-format | 3138 | #, fuzzy, c-format |
3857 | msgid "CRITICAL - Host Prohibited (%s)\n" | 3139 | msgid "CRITICAL - Host Prohibited (%s)\n" |
3858 | msgstr "CRITIQUE - L'accès a l'hôte est interdit (%s)" | 3140 | msgstr "CRITIQUE - L'accès a l'hôte est interdit (%s)" |
3859 | 3141 | ||
3860 | #: plugins/check_ping.c:531 | ||
3861 | #, fuzzy, c-format | 3142 | #, fuzzy, c-format |
3862 | msgid "CRITICAL - Packet Filtered (%s)\n" | 3143 | msgid "CRITICAL - Packet Filtered (%s)\n" |
3863 | msgstr "CRITIQUE - Paquet filtré (%s)" | 3144 | msgstr "CRITIQUE - Paquet filtré (%s)" |
3864 | 3145 | ||
3865 | #: plugins/check_ping.c:533 | ||
3866 | #, fuzzy, c-format | 3146 | #, fuzzy, c-format |
3867 | msgid "CRITICAL - Host not found (%s)\n" | 3147 | msgid "CRITICAL - Host not found (%s)\n" |
3868 | msgstr "CRITIQUE - Hôte non trouvé (%s)" | 3148 | msgstr "CRITIQUE - Hôte non trouvé (%s)" |
3869 | 3149 | ||
3870 | #: plugins/check_ping.c:535 | ||
3871 | #, fuzzy, c-format | 3150 | #, fuzzy, c-format |
3872 | msgid "CRITICAL - Time to live exceeded (%s)\n" | 3151 | msgid "CRITICAL - Time to live exceeded (%s)\n" |
3873 | msgstr "CRITIQUE - La durée de vie du paquet est dépassée (%s)" | 3152 | msgstr "CRITIQUE - La durée de vie du paquet est dépassée (%s)" |
3874 | 3153 | ||
3875 | #: plugins/check_ping.c:537 | ||
3876 | #, fuzzy, c-format | 3154 | #, fuzzy, c-format |
3877 | msgid "CRITICAL - Destination Unreachable (%s)\n" | 3155 | msgid "CRITICAL - Destination Unreachable (%s)\n" |
3878 | msgstr "CRITIQUE - Hôte inaccessible (%s)" | 3156 | msgstr "CRITIQUE - Hôte inaccessible (%s)" |
3879 | 3157 | ||
3880 | #: plugins/check_ping.c:544 | ||
3881 | #, fuzzy | 3158 | #, fuzzy |
3882 | msgid "Unable to realloc warn_text\n" | 3159 | msgid "Unable to realloc warn_text\n" |
3883 | msgstr "Impossible de réattribuer le texte d'avertissement" | 3160 | msgstr "Impossible de réattribuer le texte d'avertissement" |
3884 | 3161 | ||
3885 | #: plugins/check_ping.c:561 | ||
3886 | #, c-format | 3162 | #, c-format |
3887 | msgid "Use ping to check connection statistics for a remote host." | 3163 | msgid "Use ping to check connection statistics for a remote host." |
3888 | msgstr "" | 3164 | msgstr "" |
3889 | "Utilise ping pour vérifier les statistiques de connections d'un hôte distant." | 3165 | "Utilise ping pour vérifier les statistiques de connections d'un hôte distant." |
3890 | 3166 | ||
3891 | #: plugins/check_ping.c:573 | ||
3892 | msgid "host to ping" | 3167 | msgid "host to ping" |
3893 | msgstr "hôte à tester" | 3168 | msgstr "hôte à tester" |
3894 | 3169 | ||
3895 | #: plugins/check_ping.c:579 | ||
3896 | msgid "number of ICMP ECHO packets to send" | 3170 | msgid "number of ICMP ECHO packets to send" |
3897 | msgstr "nombre de paquets ICMP Ã envoyer" | 3171 | msgstr "nombre de paquets ICMP Ã envoyer" |
3898 | 3172 | ||
3899 | #: plugins/check_ping.c:580 | ||
3900 | #, c-format | 3173 | #, c-format |
3901 | msgid "(Default: %d)\n" | 3174 | msgid "(Default: %d)\n" |
3902 | msgstr "(Défaut: %d)\n" | 3175 | msgstr "(Défaut: %d)\n" |
3903 | 3176 | ||
3904 | #: plugins/check_ping.c:582 | ||
3905 | msgid "show HTML in the plugin output (obsoleted by urlize)" | 3177 | msgid "show HTML in the plugin output (obsoleted by urlize)" |
3906 | msgstr "" | 3178 | msgstr "" |
3907 | 3179 | ||
3908 | #: plugins/check_ping.c:587 | ||
3909 | msgid "THRESHOLD is <rta>,<pl>% where <rta> is the round trip average travel" | 3180 | msgid "THRESHOLD is <rta>,<pl>% where <rta> is the round trip average travel" |
3910 | msgstr "" | 3181 | msgstr "" |
3911 | "Le seuil est <rta>,<pl>% où <rta> est le temps moyen pour l'aller retour (ms)" | 3182 | "Le seuil est <rta>,<pl>% où <rta> est le temps moyen pour l'aller retour (ms)" |
3912 | 3183 | ||
3913 | #: plugins/check_ping.c:588 | ||
3914 | msgid "time (ms) which triggers a WARNING or CRITICAL state, and <pl> is the" | 3184 | msgid "time (ms) which triggers a WARNING or CRITICAL state, and <pl> is the" |
3915 | msgstr "qui déclenche un résultat AVERTISSEMENT ou CRITIQUE, et <pl> est le " | 3185 | msgstr "qui déclenche un résultat AVERTISSEMENT ou CRITIQUE, et <pl> est le " |
3916 | 3186 | ||
3917 | #: plugins/check_ping.c:589 | ||
3918 | msgid "percentage of packet loss to trigger an alarm state." | 3187 | msgid "percentage of packet loss to trigger an alarm state." |
3919 | msgstr "pourcentage de paquets perdus pour déclencher une alarme." | 3188 | msgstr "pourcentage de paquets perdus pour déclencher une alarme." |
3920 | 3189 | ||
3921 | #: plugins/check_ping.c:592 | ||
3922 | msgid "" | 3190 | msgid "" |
3923 | "This plugin uses the ping command to probe the specified host for packet loss" | 3191 | "This plugin uses the ping command to probe the specified host for packet loss" |
3924 | msgstr "" | 3192 | msgstr "" |
3925 | "Ce plugin utilise la commande ping pour vérifier l'hôte spécifié pour les " | 3193 | "Ce plugin utilise la commande ping pour vérifier l'hôte spécifié pour les " |
3926 | "pertes de paquets" | 3194 | "pertes de paquets" |
3927 | 3195 | ||
3928 | #: plugins/check_ping.c:593 | ||
3929 | msgid "" | 3196 | msgid "" |
3930 | "(percentage) and round trip average (milliseconds). It can produce HTML " | 3197 | "(percentage) and round trip average (milliseconds). It can produce HTML " |
3931 | "output" | 3198 | "output" |
3932 | msgstr "" | 3199 | msgstr "" |
3933 | 3200 | ||
3934 | #: plugins/check_ping.c:594 | ||
3935 | msgid "" | 3201 | msgid "" |
3936 | "linking to a traceroute CGI contributed by Ian Cass. The CGI can be found in" | 3202 | "linking to a traceroute CGI contributed by Ian Cass. The CGI can be found in" |
3937 | msgstr "" | 3203 | msgstr "" |
3938 | 3204 | ||
3939 | #: plugins/check_ping.c:595 | ||
3940 | msgid "the contrib area of the downloads section at http://www.nagios.org/" | 3205 | msgid "the contrib area of the downloads section at http://www.nagios.org/" |
3941 | msgstr "" | 3206 | msgstr "" |
3942 | 3207 | ||
3943 | #: plugins/check_procs.c:193 | ||
3944 | #, c-format | 3208 | #, c-format |
3945 | msgid "CMD: %s\n" | 3209 | msgid "CMD: %s\n" |
3946 | msgstr "Commande: %s\n" | 3210 | msgstr "Commande: %s\n" |
3947 | 3211 | ||
3948 | #: plugins/check_procs.c:198 | ||
3949 | msgid "System call sent warnings to stderr" | 3212 | msgid "System call sent warnings to stderr" |
3950 | msgstr "" | 3213 | msgstr "" |
3951 | "L'appel système à retourné des avertissement vers le canal d'erreur standard" | 3214 | "L'appel système à retourné des avertissement vers le canal d'erreur standard" |
3952 | 3215 | ||
3953 | #: plugins/check_procs.c:326 | ||
3954 | #, c-format | 3216 | #, c-format |
3955 | msgid "Not parseable: %s" | 3217 | msgid "Not parseable: %s" |
3956 | msgstr "Impossible de parcourir les arguments: %s" | 3218 | msgstr "Impossible de parcourir les arguments: %s" |
3957 | 3219 | ||
3958 | #: plugins/check_procs.c:331 | ||
3959 | #, c-format | 3220 | #, c-format |
3960 | msgid "Unable to read output\n" | 3221 | msgid "Unable to read output\n" |
3961 | msgstr "Impossible de lire les données en entrée\n" | 3222 | msgstr "Impossible de lire les données en entrée\n" |
3962 | 3223 | ||
3963 | #: plugins/check_procs.c:348 | ||
3964 | #, c-format | 3224 | #, c-format |
3965 | msgid "%d warn out of " | 3225 | msgid "%d warn out of " |
3966 | msgstr "%d avertissements sur" | 3226 | msgstr "%d avertissements sur" |
3967 | 3227 | ||
3968 | #: plugins/check_procs.c:353 | ||
3969 | #, c-format | 3228 | #, c-format |
3970 | msgid "%d crit, %d warn out of " | 3229 | msgid "%d crit, %d warn out of " |
3971 | msgstr "%d crit, %d alertes sur " | 3230 | msgstr "%d crit, %d alertes sur " |
3972 | 3231 | ||
3973 | #: plugins/check_procs.c:359 | ||
3974 | #, c-format | 3232 | #, c-format |
3975 | msgid " with %s" | 3233 | msgid " with %s" |
3976 | msgstr " avec %s" | 3234 | msgstr " avec %s" |
3977 | 3235 | ||
3978 | #: plugins/check_procs.c:453 | ||
3979 | msgid "Parent Process ID must be an integer!" | 3236 | msgid "Parent Process ID must be an integer!" |
3980 | msgstr "L'identifiant du processus parent doit être un entier!" | 3237 | msgstr "L'identifiant du processus parent doit être un entier!" |
3981 | 3238 | ||
3982 | #: plugins/check_procs.c:459 plugins/check_procs.c:586 | ||
3983 | #, c-format | 3239 | #, c-format |
3984 | msgid "%s%sSTATE = %s" | 3240 | msgid "%s%sSTATE = %s" |
3985 | msgstr "%s%sETAT = %s" | 3241 | msgstr "%s%sETAT = %s" |
3986 | 3242 | ||
3987 | #: plugins/check_procs.c:468 | ||
3988 | msgid "UID was not found" | 3243 | msgid "UID was not found" |
3989 | msgstr "L'UID n'a pas été trouvé" | 3244 | msgstr "L'UID n'a pas été trouvé" |
3990 | 3245 | ||
3991 | #: plugins/check_procs.c:474 | ||
3992 | msgid "User name was not found" | 3246 | msgid "User name was not found" |
3993 | msgstr "L'utilisateur n'a pas été trouvé" | 3247 | msgstr "L'utilisateur n'a pas été trouvé" |
3994 | 3248 | ||
3995 | #: plugins/check_procs.c:489 | ||
3996 | #, c-format | 3249 | #, c-format |
3997 | msgid "%s%scommand name '%s'" | 3250 | msgid "%s%scommand name '%s'" |
3998 | msgstr "%s%snom de la commande '%s'" | 3251 | msgstr "%s%snom de la commande '%s'" |
3999 | 3252 | ||
4000 | #: plugins/check_procs.c:524 | 3253 | #, c-format |
3254 | msgid "%s%sexclude progs '%s'" | ||
3255 | msgstr "" | ||
3256 | |||
4001 | msgid "RSS must be an integer!" | 3257 | msgid "RSS must be an integer!" |
4002 | msgstr "RSS doit être un entier!" | 3258 | msgstr "RSS doit être un entier!" |
4003 | 3259 | ||
4004 | #: plugins/check_procs.c:531 | ||
4005 | msgid "VSZ must be an integer!" | 3260 | msgid "VSZ must be an integer!" |
4006 | msgstr "VSZ doit être un entier!" | 3261 | msgstr "VSZ doit être un entier!" |
4007 | 3262 | ||
4008 | #: plugins/check_procs.c:539 | ||
4009 | msgid "PCPU must be a float!" | 3263 | msgid "PCPU must be a float!" |
4010 | msgstr "PCPU doit être un nombre en virgule flottante!" | 3264 | msgstr "PCPU doit être un nombre en virgule flottante!" |
4011 | 3265 | ||
4012 | #: plugins/check_procs.c:563 | ||
4013 | msgid "Metric must be one of PROCS, VSZ, RSS, CPU, ELAPSED!" | 3266 | msgid "Metric must be one of PROCS, VSZ, RSS, CPU, ELAPSED!" |
4014 | msgstr "Metric doit être l'un des PROCS, VSZ, RSS, CPU, ELAPSED!" | 3267 | msgstr "Metric doit être l'un des PROCS, VSZ, RSS, CPU, ELAPSED!" |
4015 | 3268 | ||
4016 | #: plugins/check_procs.c:694 | ||
4017 | msgid "" | 3269 | msgid "" |
4018 | "Checks all processes and generates WARNING or CRITICAL states if the " | 3270 | "Checks all processes and generates WARNING or CRITICAL states if the " |
4019 | "specified" | 3271 | "specified" |
4020 | msgstr "" | 3272 | msgstr "" |
4021 | 3273 | ||
4022 | #: plugins/check_procs.c:695 | ||
4023 | msgid "" | 3274 | msgid "" |
4024 | "metric is outside the required threshold ranges. The metric defaults to " | 3275 | "metric is outside the required threshold ranges. The metric defaults to " |
4025 | "number" | 3276 | "number" |
4026 | msgstr "" | 3277 | msgstr "" |
4027 | 3278 | ||
4028 | #: plugins/check_procs.c:696 | ||
4029 | msgid "" | 3279 | msgid "" |
4030 | "of processes. Search filters can be applied to limit the processes to check." | 3280 | "of processes. Search filters can be applied to limit the processes to check." |
4031 | msgstr "" | 3281 | msgstr "" |
4032 | 3282 | ||
4033 | #: plugins/check_procs.c:705 | ||
4034 | msgid "Generate warning state if metric is outside this range" | 3283 | msgid "Generate warning state if metric is outside this range" |
4035 | msgstr "" | 3284 | msgstr "" |
4036 | 3285 | ||
4037 | #: plugins/check_procs.c:707 | ||
4038 | msgid "Generate critical state if metric is outside this range" | 3286 | msgid "Generate critical state if metric is outside this range" |
4039 | msgstr "" | 3287 | msgstr "" |
4040 | 3288 | ||
4041 | #: plugins/check_procs.c:709 | ||
4042 | msgid "Check thresholds against metric. Valid types:" | 3289 | msgid "Check thresholds against metric. Valid types:" |
4043 | msgstr "" | 3290 | msgstr "" |
4044 | 3291 | ||
4045 | #: plugins/check_procs.c:710 | ||
4046 | msgid "PROCS - number of processes (default)" | 3292 | msgid "PROCS - number of processes (default)" |
4047 | msgstr "PROCS - nombre de processus (défaut)" | 3293 | msgstr "PROCS - nombre de processus (défaut)" |
4048 | 3294 | ||
4049 | #: plugins/check_procs.c:711 | ||
4050 | msgid "VSZ - virtual memory size" | 3295 | msgid "VSZ - virtual memory size" |
4051 | msgstr "VSZ - taille mémoire virtuelle" | 3296 | msgstr "VSZ - taille mémoire virtuelle" |
4052 | 3297 | ||
4053 | #: plugins/check_procs.c:712 | ||
4054 | msgid "RSS - resident set memory size" | 3298 | msgid "RSS - resident set memory size" |
4055 | msgstr "" | 3299 | msgstr "" |
4056 | 3300 | ||
4057 | #: plugins/check_procs.c:713 | ||
4058 | msgid "CPU - percentage CPU" | 3301 | msgid "CPU - percentage CPU" |
4059 | msgstr "CPU - pourcentage du processeur" | 3302 | msgstr "CPU - pourcentage du processeur" |
4060 | 3303 | ||
4061 | #: plugins/check_procs.c:716 | ||
4062 | msgid "ELAPSED - time elapsed in seconds" | 3304 | msgid "ELAPSED - time elapsed in seconds" |
4063 | msgstr "ELAPSED - temps écoulé en secondes" | 3305 | msgstr "ELAPSED - temps écoulé en secondes" |
4064 | 3306 | ||
4065 | #: plugins/check_procs.c:721 | ||
4066 | msgid "Extra information. Up to 3 verbosity levels" | 3307 | msgid "Extra information. Up to 3 verbosity levels" |
4067 | msgstr "informations supplémentaires. Jusqu'à 3 niveaux de verbosité" | 3308 | msgstr "informations supplémentaires. Jusqu'à 3 niveaux de verbosité" |
4068 | 3309 | ||
4069 | #: plugins/check_procs.c:724 | ||
4070 | msgid "Filter own process the traditional way by PID instead of /proc/pid/exe" | 3310 | msgid "Filter own process the traditional way by PID instead of /proc/pid/exe" |
4071 | msgstr "" | 3311 | msgstr "" |
4072 | 3312 | ||
4073 | #: plugins/check_procs.c:729 | ||
4074 | msgid "Only scan for processes that have, in the output of `ps`, one or" | 3313 | msgid "Only scan for processes that have, in the output of `ps`, one or" |
4075 | msgstr "" | 3314 | msgstr "" |
4076 | 3315 | ||
4077 | #: plugins/check_procs.c:730 | ||
4078 | msgid "more of the status flags you specify (for example R, Z, S, RS," | 3316 | msgid "more of the status flags you specify (for example R, Z, S, RS," |
4079 | msgstr "" | 3317 | msgstr "" |
4080 | 3318 | ||
4081 | #: plugins/check_procs.c:731 | ||
4082 | msgid "RSZDT, plus others based on the output of your 'ps' command)." | 3319 | msgid "RSZDT, plus others based on the output of your 'ps' command)." |
4083 | msgstr "" | 3320 | msgstr "" |
4084 | 3321 | ||
4085 | #: plugins/check_procs.c:733 | ||
4086 | msgid "Only scan for children of the parent process ID indicated." | 3322 | msgid "Only scan for children of the parent process ID indicated." |
4087 | msgstr "" | 3323 | msgstr "" |
4088 | 3324 | ||
4089 | #: plugins/check_procs.c:735 | ||
4090 | msgid "Only scan for processes with VSZ higher than indicated." | 3325 | msgid "Only scan for processes with VSZ higher than indicated." |
4091 | msgstr "" | 3326 | msgstr "" |
4092 | 3327 | ||
4093 | #: plugins/check_procs.c:737 | ||
4094 | msgid "Only scan for processes with RSS higher than indicated." | 3328 | msgid "Only scan for processes with RSS higher than indicated." |
4095 | msgstr "" | 3329 | msgstr "" |
4096 | 3330 | ||
4097 | #: plugins/check_procs.c:739 | ||
4098 | msgid "Only scan for processes with PCPU higher than indicated." | 3331 | msgid "Only scan for processes with PCPU higher than indicated." |
4099 | msgstr "" | 3332 | msgstr "" |
4100 | 3333 | ||
4101 | #: plugins/check_procs.c:741 | ||
4102 | msgid "Only scan for processes with user name or ID indicated." | 3334 | msgid "Only scan for processes with user name or ID indicated." |
4103 | msgstr "" | 3335 | msgstr "" |
4104 | 3336 | ||
4105 | #: plugins/check_procs.c:743 | ||
4106 | msgid "Only scan for processes with args that contain STRING." | 3337 | msgid "Only scan for processes with args that contain STRING." |
4107 | msgstr "" | 3338 | msgstr "" |
4108 | 3339 | ||
4109 | #: plugins/check_procs.c:745 | ||
4110 | msgid "Only scan for processes with args that contain the regex STRING." | 3340 | msgid "Only scan for processes with args that contain the regex STRING." |
4111 | msgstr "" | 3341 | msgstr "" |
4112 | 3342 | ||
4113 | #: plugins/check_procs.c:747 | ||
4114 | msgid "Only scan for exact matches of COMMAND (without path)." | 3343 | msgid "Only scan for exact matches of COMMAND (without path)." |
4115 | msgstr "" | 3344 | msgstr "" |
4116 | 3345 | ||
4117 | #: plugins/check_procs.c:749 | 3346 | msgid "Exclude processes which match this comma separated list" |
3347 | msgstr "" | ||
3348 | |||
4118 | msgid "Only scan for non kernel threads (works on Linux only)." | 3349 | msgid "Only scan for non kernel threads (works on Linux only)." |
4119 | msgstr "" | 3350 | msgstr "" |
4120 | 3351 | ||
4121 | #: plugins/check_procs.c:751 | ||
4122 | #, c-format | 3352 | #, c-format |
4123 | msgid "" | 3353 | msgid "" |
4124 | "\n" | 3354 | "\n" |
@@ -4133,7 +3363,6 @@ msgstr "" | |||
4133 | "est à l'intérieur du seuil\n" | 3363 | "est à l'intérieur du seuil\n" |
4134 | "\n" | 3364 | "\n" |
4135 | 3365 | ||
4136 | #: plugins/check_procs.c:756 | ||
4137 | #, c-format | 3366 | #, c-format |
4138 | msgid "" | 3367 | msgid "" |
4139 | "This plugin checks the number of currently running processes and\n" | 3368 | "This plugin checks the number of currently running processes and\n" |
@@ -4150,932 +3379,840 @@ msgstr "" | |||
4150 | "état actuel (ex: 'Z'), ou par le nombre de processus en cours d'exécution\n" | 3379 | "état actuel (ex: 'Z'), ou par le nombre de processus en cours d'exécution\n" |
4151 | "\n" | 3380 | "\n" |
4152 | 3381 | ||
4153 | #: plugins/check_procs.c:765 | ||
4154 | msgid "Warning if not two processes with command name portsentry." | 3382 | msgid "Warning if not two processes with command name portsentry." |
4155 | msgstr "" | 3383 | msgstr "" |
4156 | 3384 | ||
4157 | #: plugins/check_procs.c:766 | ||
4158 | msgid "Critical if < 2 or > 1024 processes" | 3385 | msgid "Critical if < 2 or > 1024 processes" |
4159 | msgstr "" | 3386 | msgstr "" |
4160 | 3387 | ||
4161 | #: plugins/check_procs.c:768 | 3388 | msgid "Critical if not at least 1 process with command sshd" |
3389 | msgstr "" | ||
3390 | |||
3391 | msgid "Warning if > 1024 processes with command name sshd." | ||
3392 | msgstr "" | ||
3393 | |||
3394 | msgid "Critical if < 1 processes with command name sshd." | ||
3395 | msgstr "" | ||
3396 | |||
4162 | msgid "Warning alert if > 10 processes with command arguments containing" | 3397 | msgid "Warning alert if > 10 processes with command arguments containing" |
4163 | msgstr "" | 3398 | msgstr "" |
4164 | 3399 | ||
4165 | #: plugins/check_procs.c:769 | ||
4166 | msgid "'/usr/local/bin/perl' and owned by root" | 3400 | msgid "'/usr/local/bin/perl' and owned by root" |
4167 | msgstr "" | 3401 | msgstr "" |
4168 | 3402 | ||
4169 | #: plugins/check_procs.c:771 | ||
4170 | msgid "Alert if VSZ of any processes over 50K or 100K" | 3403 | msgid "Alert if VSZ of any processes over 50K or 100K" |
4171 | msgstr "" | 3404 | msgstr "" |
4172 | 3405 | ||
4173 | #: plugins/check_procs.c:773 | 3406 | msgid "Alert if CPU of any processes over 10% or 20%" |
4174 | #, c-format | ||
4175 | msgid "Alert if CPU of any processes over 10%% or 20%%" | ||
4176 | msgstr "" | 3407 | msgstr "" |
4177 | 3408 | ||
4178 | #: plugins/check_radius.c:165 | 3409 | #, fuzzy |
4179 | msgid "Config file error" | 3410 | msgid "Config file error\n" |
4180 | msgstr "Erreur dans le fichier de configuration" | 3411 | msgstr "Erreur dans le fichier de configuration" |
4181 | 3412 | ||
4182 | #: plugins/check_radius.c:174 | 3413 | #, fuzzy |
4183 | msgid "Out of Memory?" | 3414 | msgid "Out of Memory?\n" |
4184 | msgstr "Manque de Mémoire?" | 3415 | msgstr "Manque de Mémoire?" |
4185 | 3416 | ||
4186 | #: plugins/check_radius.c:178 | 3417 | #, fuzzy |
4187 | msgid "Invalid NAS-Identifier" | 3418 | msgid "Invalid NAS-Identifier\n" |
4188 | msgstr "NAS-Identifier invalide" | 3419 | msgstr "NAS-Identifier invalide" |
4189 | 3420 | ||
4190 | #: plugins/check_radius.c:183 plugins/check_radius.c:185 | 3421 | #, c-format |
4191 | #: plugins/check_radius.c:191 | 3422 | msgid "gethostname() failed!\n" |
4192 | msgid "Invalid NAS-IP-Address" | 3423 | msgstr "La commande gethostname() à échoué\n" |
4193 | msgstr "NAS-IP-Address invalide" | ||
4194 | 3424 | ||
4195 | #: plugins/check_radius.c:188 | 3425 | #, fuzzy |
4196 | msgid "Can't find local IP for NAS-IP-Address" | 3426 | msgid "Invalid NAS-IP-Address\n" |
4197 | msgstr "Impossible de trouver une addresse IP locale pour le NAS-IP-Address" | 3427 | msgstr "NAS-IP-Address invalide" |
4198 | 3428 | ||
4199 | #: plugins/check_radius.c:202 | 3429 | #, fuzzy |
4200 | msgid "Timeout" | 3430 | msgid "Timeout\n" |
4201 | msgstr "Temps dépassé" | 3431 | msgstr "Temps dépassé" |
4202 | 3432 | ||
4203 | #: plugins/check_radius.c:204 | 3433 | #, fuzzy |
4204 | msgid "Auth Error" | 3434 | msgid "Auth Error\n" |
4205 | msgstr "Erreur d'authentification" | 3435 | msgstr "Erreur d'authentification" |
4206 | 3436 | ||
4207 | #: plugins/check_radius.c:206 | 3437 | #, fuzzy |
4208 | msgid "Auth Failed" | 3438 | msgid "Auth Failed\n" |
4209 | msgstr "L'authentification à échoué" | 3439 | msgstr "L'authentification à échoué" |
4210 | 3440 | ||
4211 | #: plugins/check_radius.c:208 | 3441 | #, fuzzy |
4212 | msgid "Bad Response" | 3442 | msgid "Bad Response\n" |
4213 | msgstr "Réponse invalide" | 3443 | msgstr "Réponse invalide" |
4214 | 3444 | ||
4215 | #: plugins/check_radius.c:212 | 3445 | #, fuzzy |
4216 | msgid "Auth OK" | 3446 | msgid "Auth OK\n" |
4217 | msgstr "L'authentification à réussi" | 3447 | msgstr "L'authentification à réussi" |
4218 | 3448 | ||
4219 | #: plugins/check_radius.c:213 | ||
4220 | #, c-format | 3449 | #, c-format |
4221 | msgid "Unexpected result code %d" | 3450 | msgid "Unexpected result code %d" |
4222 | msgstr "Résultat inattendu: %d" | 3451 | msgstr "Résultat inattendu: %d" |
4223 | 3452 | ||
4224 | #: plugins/check_radius.c:302 | ||
4225 | msgid "Number of retries must be a positive integer" | 3453 | msgid "Number of retries must be a positive integer" |
4226 | msgstr "Le nombre d'essai doit être un entier positif" | 3454 | msgstr "Le nombre d'essai doit être un entier positif" |
4227 | 3455 | ||
4228 | #: plugins/check_radius.c:316 | ||
4229 | msgid "User not specified" | 3456 | msgid "User not specified" |
4230 | msgstr "L'utilisateur n'a pas été spécifié" | 3457 | msgstr "L'utilisateur n'a pas été spécifié" |
4231 | 3458 | ||
4232 | #: plugins/check_radius.c:318 | ||
4233 | msgid "Password not specified" | 3459 | msgid "Password not specified" |
4234 | msgstr "Le mot de passe n'a pas été spécifié" | 3460 | msgstr "Le mot de passe n'a pas été spécifié" |
4235 | 3461 | ||
4236 | #: plugins/check_radius.c:320 | ||
4237 | msgid "Configuration file not specified" | 3462 | msgid "Configuration file not specified" |
4238 | msgstr "Le fichier de configuration n'a pas été spécifié" | 3463 | msgstr "Le fichier de configuration n'a pas été spécifié" |
4239 | 3464 | ||
4240 | #: plugins/check_radius.c:338 | ||
4241 | msgid "Tests to see if a RADIUS server is accepting connections." | 3465 | msgid "Tests to see if a RADIUS server is accepting connections." |
4242 | msgstr "Teste si un serveur RADIUS accepte les connections." | 3466 | msgstr "Teste si un serveur RADIUS accepte les connections." |
4243 | 3467 | ||
4244 | #: plugins/check_radius.c:350 | ||
4245 | msgid "The user to authenticate" | 3468 | msgid "The user to authenticate" |
4246 | msgstr "" | 3469 | msgstr "" |
4247 | 3470 | ||
4248 | #: plugins/check_radius.c:352 | ||
4249 | msgid "Password for authentication (SECURITY RISK)" | 3471 | msgid "Password for authentication (SECURITY RISK)" |
4250 | msgstr "" | 3472 | msgstr "" |
4251 | 3473 | ||
4252 | #: plugins/check_radius.c:354 | ||
4253 | msgid "NAS identifier" | 3474 | msgid "NAS identifier" |
4254 | msgstr "" | 3475 | msgstr "" |
4255 | 3476 | ||
4256 | #: plugins/check_radius.c:356 | ||
4257 | msgid "NAS IP Address" | 3477 | msgid "NAS IP Address" |
4258 | msgstr "Adresse IP NAS" | 3478 | msgstr "Adresse IP NAS" |
4259 | 3479 | ||
4260 | #: plugins/check_radius.c:358 | ||
4261 | msgid "Configuration file" | 3480 | msgid "Configuration file" |
4262 | msgstr "Fichier de configuration" | 3481 | msgstr "Fichier de configuration" |
4263 | 3482 | ||
4264 | #: plugins/check_radius.c:360 | ||
4265 | msgid "Response string to expect from the server" | 3483 | msgid "Response string to expect from the server" |
4266 | msgstr "" | 3484 | msgstr "" |
4267 | 3485 | ||
4268 | #: plugins/check_radius.c:362 | ||
4269 | msgid "Number of times to retry a failed connection" | 3486 | msgid "Number of times to retry a failed connection" |
4270 | msgstr "" | 3487 | msgstr "" |
4271 | 3488 | ||
4272 | #: plugins/check_radius.c:367 | ||
4273 | msgid "" | 3489 | msgid "" |
4274 | "This plugin tests a RADIUS server to see if it is accepting connections." | 3490 | "This plugin tests a RADIUS server to see if it is accepting connections." |
4275 | msgstr "" | 3491 | msgstr "" |
4276 | "Ce plugin teste un serveur RADIUS afin de vérifier si il accepte les " | 3492 | "Ce plugin teste un serveur RADIUS afin de vérifier si il accepte les " |
4277 | "connections." | 3493 | "connections." |
4278 | 3494 | ||
4279 | #: plugins/check_radius.c:368 | ||
4280 | msgid "" | 3495 | msgid "" |
4281 | "The server to test must be specified in the invocation, as well as a user" | 3496 | "The server to test must be specified in the invocation, as well as a user" |
4282 | msgstr "" | 3497 | msgstr "" |
4283 | 3498 | ||
4284 | #: plugins/check_radius.c:369 | 3499 | msgid "name and password. A configuration file must be present. The format of" |
4285 | msgid "" | ||
4286 | "name and password. A configuration file may also be present. The format of" | ||
4287 | msgstr "" | 3500 | msgstr "" |
4288 | 3501 | ||
4289 | #: plugins/check_radius.c:370 | ||
4290 | msgid "" | 3502 | msgid "" |
4291 | "the configuration file is described in the radiusclient library sources." | 3503 | "the configuration file is described in the radiusclient library sources." |
4292 | msgstr "" | 3504 | msgstr "" |
4293 | 3505 | ||
4294 | #: plugins/check_radius.c:371 | ||
4295 | msgid "The password option presents a substantial security issue because the" | 3506 | msgid "The password option presents a substantial security issue because the" |
4296 | msgstr "" | 3507 | msgstr "" |
4297 | 3508 | ||
4298 | #: plugins/check_radius.c:372 | ||
4299 | msgid "" | 3509 | msgid "" |
4300 | "password can possibly be determined by careful watching of the command line" | 3510 | "password can possibly be determined by careful watching of the command line" |
4301 | msgstr "" | 3511 | msgstr "" |
4302 | 3512 | ||
4303 | #: plugins/check_radius.c:373 | 3513 | msgid "in a process listing. This risk is exacerbated because the plugin will" |
4304 | msgid "in a process listing. This risk is exacerbated because the monitor will" | ||
4305 | msgstr "" | 3514 | msgstr "" |
4306 | 3515 | ||
4307 | #: plugins/check_radius.c:374 | 3516 | msgid "" |
4308 | msgid "run the plugin at regular predictable intervals. Please be sure that" | 3517 | "typically be executed at regular predictable intervals. Please be sure that" |
4309 | msgstr "" | 3518 | msgstr "" |
4310 | 3519 | ||
4311 | #: plugins/check_radius.c:375 | ||
4312 | msgid "the password used does not allow access to sensitive system resources." | 3520 | msgid "the password used does not allow access to sensitive system resources." |
4313 | msgstr "" | 3521 | msgstr "" |
4314 | 3522 | ||
4315 | #: plugins/check_real.c:91 | ||
4316 | #, c-format | 3523 | #, c-format |
4317 | msgid "Unable to connect to %s on port %d\n" | 3524 | msgid "Unable to connect to %s on port %d\n" |
4318 | msgstr "Impossible de se connecter à %s sur le port %d\n" | 3525 | msgstr "Impossible de se connecter à %s sur le port %d\n" |
4319 | 3526 | ||
4320 | #: plugins/check_real.c:113 | ||
4321 | #, c-format | 3527 | #, c-format |
4322 | msgid "No data received from %s\n" | 3528 | msgid "No data received from %s\n" |
4323 | msgstr "Pas de données reçues de %s\n" | 3529 | msgstr "Pas de données reçues de %s\n" |
4324 | 3530 | ||
4325 | #: plugins/check_real.c:118 plugins/check_real.c:191 | ||
4326 | msgid "Invalid REAL response received from host" | 3531 | msgid "Invalid REAL response received from host" |
4327 | msgstr "Réponses REAL invalide reçue de l'hôte" | 3532 | msgstr "Réponses REAL invalide reçue de l'hôte" |
4328 | 3533 | ||
4329 | #: plugins/check_real.c:120 plugins/check_real.c:193 | ||
4330 | #, c-format | 3534 | #, c-format |
4331 | msgid "Invalid REAL response received from host on port %d\n" | 3535 | msgid "Invalid REAL response received from host on port %d\n" |
4332 | msgstr "Réponses REAL invalide reçue de l'hôte sur le port %d\n" | 3536 | msgstr "Réponses REAL invalide reçue de l'hôte sur le port %d\n" |
4333 | 3537 | ||
4334 | #: plugins/check_real.c:184 plugins/check_tcp.c:311 | ||
4335 | #, c-format | 3538 | #, c-format |
4336 | msgid "No data received from host\n" | 3539 | msgid "No data received from host\n" |
4337 | msgstr "Pas de données reçues de l'hôte\n" | 3540 | msgstr "Pas de données reçues de l'hôte\n" |
4338 | 3541 | ||
4339 | #: plugins/check_real.c:247 | ||
4340 | #, c-format | 3542 | #, c-format |
4341 | msgid "REAL %s - %d second response time\n" | 3543 | msgid "REAL %s - %d second response time\n" |
4342 | msgstr "REAL %s - %d secondes de temps de réponse\n" | 3544 | msgstr "REAL %s - %d secondes de temps de réponse\n" |
4343 | 3545 | ||
4344 | #: plugins/check_real.c:336 plugins/check_ups.c:536 | ||
4345 | msgid "Warning time must be a positive integer" | 3546 | msgid "Warning time must be a positive integer" |
4346 | msgstr "Le seuil d'avertissement doit être un entier positif" | 3547 | msgstr "Le seuil d'avertissement doit être un entier positif" |
4347 | 3548 | ||
4348 | #: plugins/check_real.c:345 plugins/check_ups.c:527 | ||
4349 | msgid "Critical time must be a positive integer" | 3549 | msgid "Critical time must be a positive integer" |
4350 | msgstr "Le seuil critique doit être un entier positif" | 3550 | msgstr "Le seuil critique doit être un entier positif" |
4351 | 3551 | ||
4352 | #: plugins/check_real.c:381 | ||
4353 | msgid "You must provide a server to check" | 3552 | msgid "You must provide a server to check" |
4354 | msgstr "Vous devez fournir un serveur à vérifier" | 3553 | msgstr "Vous devez fournir un serveur à vérifier" |
4355 | 3554 | ||
4356 | #: plugins/check_real.c:413 | ||
4357 | msgid "This plugin tests the REAL service on the specified host." | 3555 | msgid "This plugin tests the REAL service on the specified host." |
4358 | msgstr "Ce plugin teste le service REAL sur l'hôte spécifié." | 3556 | msgstr "Ce plugin teste le service REAL sur l'hôte spécifié." |
4359 | 3557 | ||
4360 | #: plugins/check_real.c:425 | ||
4361 | msgid "Connect to this url" | 3558 | msgid "Connect to this url" |
4362 | msgstr "" | 3559 | msgstr "" |
4363 | 3560 | ||
4364 | #: plugins/check_real.c:427 | ||
4365 | #, c-format | 3561 | #, c-format |
4366 | msgid "String to expect in first line of server response (default: %s)\n" | 3562 | msgid "String to expect in first line of server response (default: %s)\n" |
4367 | msgstr "" | 3563 | msgstr "" |
4368 | "Texte attendu dans la première ligne de réponse du serveur (défaut: %s)\n" | 3564 | "Texte attendu dans la première ligne de réponse du serveur (défaut: %s)\n" |
4369 | 3565 | ||
4370 | #: plugins/check_real.c:437 | ||
4371 | msgid "This plugin will attempt to open an RTSP connection with the host." | 3566 | msgid "This plugin will attempt to open an RTSP connection with the host." |
4372 | msgstr "Ce plugin va essayer d'ouvrir un connexion RTSP avec l'hôte." | 3567 | msgstr "Ce plugin va essayer d'ouvrir un connexion RTSP avec l'hôte." |
4373 | 3568 | ||
4374 | #: plugins/check_real.c:438 plugins/check_smtp.c:830 | 3569 | msgid "Successful connects return STATE_OK, refusals and timeouts return" |
4375 | msgid "Successul connects return STATE_OK, refusals and timeouts return" | ||
4376 | msgstr "" | 3570 | msgstr "" |
4377 | 3571 | ||
4378 | #: plugins/check_real.c:439 | ||
4379 | msgid "" | 3572 | msgid "" |
4380 | "STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful connects," | 3573 | "STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful connects," |
4381 | msgstr "" | 3574 | msgstr "" |
4382 | 3575 | ||
4383 | #: plugins/check_real.c:440 | ||
4384 | msgid "" | 3576 | msgid "" |
4385 | "but incorrect response messages from the host result in STATE_WARNING return" | 3577 | "but incorrect response messages from the host result in STATE_WARNING return" |
4386 | msgstr "" | 3578 | msgstr "" |
4387 | 3579 | ||
4388 | #: plugins/check_real.c:441 | ||
4389 | msgid "values." | 3580 | msgid "values." |
4390 | msgstr "" | 3581 | msgstr "" |
4391 | 3582 | ||
4392 | #: plugins/check_smtp.c:150 plugins/check_swap.c:265 plugins/check_swap.c:271 | ||
4393 | #, c-format | 3583 | #, c-format |
4394 | msgid "malloc() failed!\n" | 3584 | msgid "malloc() failed!\n" |
4395 | msgstr "l'allocation mémoire à échoué!\n" | 3585 | msgstr "l'allocation mémoire à échoué!\n" |
4396 | 3586 | ||
4397 | #: plugins/check_smtp.c:154 | ||
4398 | #, c-format | 3587 | #, c-format |
4399 | msgid "gethostname() failed!\n" | 3588 | msgid "CRITICAL - Cannot create SSL context.\n" |
4400 | msgstr "La commande gethostname() à échoué\n" | 3589 | msgstr "CRITIQUE - Impossible de créer le contexte SSL.\n" |
4401 | 3590 | ||
4402 | #: plugins/check_smtp.c:189 plugins/check_smtp.c:213 | ||
4403 | #, c-format | 3591 | #, c-format |
4404 | msgid "recv() failed\n" | 3592 | msgid "recv() failed\n" |
4405 | msgstr "La commande recv() à échoué\n" | 3593 | msgstr "La commande recv() à échoué\n" |
4406 | 3594 | ||
4407 | #: plugins/check_smtp.c:200 | ||
4408 | #, c-format | ||
4409 | msgid "Invalid SMTP response received from host: %s\n" | ||
4410 | msgstr "Réponse SMTP reçue de l'hôte invalide: %s\n" | ||
4411 | |||
4412 | #: plugins/check_smtp.c:202 | ||
4413 | #, c-format | ||
4414 | msgid "Invalid SMTP response received from host on port %d: %s\n" | ||
4415 | msgstr "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 | 3595 | #, c-format |
4419 | msgid "WARNING - TLS not supported by server\n" | 3596 | msgid "WARNING - TLS not supported by server\n" |
4420 | msgstr "AVERTISSEMENT: - TLS n'est pas supporté par ce serveur\n" | 3597 | msgstr "AVERTISSEMENT: - TLS n'est pas supporté par ce serveur\n" |
4421 | 3598 | ||
4422 | #: plugins/check_smtp.c:235 | ||
4423 | #, c-format | 3599 | #, c-format |
4424 | msgid "Server does not support STARTTLS\n" | 3600 | msgid "Server does not support STARTTLS\n" |
4425 | msgstr "Le serveur ne supporte pas STARTTLS\n" | 3601 | msgstr "Le serveur ne supporte pas STARTTLS\n" |
4426 | 3602 | ||
4427 | #: plugins/check_smtp.c:241 | ||
4428 | #, c-format | ||
4429 | msgid "CRITICAL - Cannot create SSL context.\n" | ||
4430 | msgstr "CRITIQUE - Impossible de créer le contexte SSL.\n" | ||
4431 | |||
4432 | #: plugins/check_smtp.c:261 | ||
4433 | msgid "SMTP UNKNOWN - Cannot send EHLO command via TLS." | 3603 | msgid "SMTP UNKNOWN - Cannot send EHLO command via TLS." |
4434 | msgstr "" | 3604 | msgstr "" |
4435 | 3605 | ||
4436 | #: plugins/check_smtp.c:266 | ||
4437 | #, c-format | 3606 | #, c-format |
4438 | msgid "sent %s" | 3607 | msgid "sent %s" |
4439 | msgstr "envoyé %s" | 3608 | msgstr "envoyé %s" |
4440 | 3609 | ||
4441 | #: plugins/check_smtp.c:268 | ||
4442 | msgid "SMTP UNKNOWN - Cannot read EHLO response via TLS." | 3610 | msgid "SMTP UNKNOWN - Cannot read EHLO response via TLS." |
4443 | msgstr "" | 3611 | msgstr "" |
4444 | 3612 | ||
4445 | #: plugins/check_smtp.c:303 plugins/check_snmp.c:806 | 3613 | #, c-format |
3614 | msgid "Invalid SMTP response received from host: %s\n" | ||
3615 | msgstr "Réponse SMTP reçue de l'hôte invalide: %s\n" | ||
3616 | |||
3617 | #, c-format | ||
3618 | msgid "Invalid SMTP response received from host on port %d: %s\n" | ||
3619 | msgstr "Réponse SMTP reçue de l'hôte sur le port %d invalide: %s\n" | ||
3620 | |||
4446 | #, c-format | 3621 | #, c-format |
4447 | msgid "Could Not Compile Regular Expression" | 3622 | msgid "Could Not Compile Regular Expression" |
4448 | msgstr "Impossible de compiler l'expression rationnelle" | 3623 | msgstr "Impossible de compiler l'expression rationnelle" |
4449 | 3624 | ||
4450 | #: plugins/check_smtp.c:312 | ||
4451 | #, c-format | 3625 | #, c-format |
4452 | msgid "SMTP %s - Invalid response '%s' to command '%s'\n" | 3626 | msgid "SMTP %s - Invalid response '%s' to command '%s'\n" |
4453 | msgstr "SMTP %s - réponse invalide de '%s' à la commande '%s'\n" | 3627 | msgstr "SMTP %s - réponse invalide de '%s' à la commande '%s'\n" |
4454 | 3628 | ||
4455 | #: plugins/check_smtp.c:316 plugins/check_snmp.c:511 | ||
4456 | #, c-format | 3629 | #, c-format |
4457 | msgid "Execute Error: %s\n" | 3630 | msgid "Execute Error: %s\n" |
4458 | msgstr "Erreur d'exécution: %s\n" | 3631 | msgstr "Erreur d'exécution: %s\n" |
4459 | 3632 | ||
4460 | #: plugins/check_smtp.c:330 | ||
4461 | msgid "no authuser specified, " | 3633 | msgid "no authuser specified, " |
4462 | msgstr "Pas d'utilisateur pour l'authentification spécifié, " | 3634 | msgstr "Pas d'utilisateur pour l'authentification spécifié, " |
4463 | 3635 | ||
4464 | #: plugins/check_smtp.c:335 | ||
4465 | msgid "no authpass specified, " | 3636 | msgid "no authpass specified, " |
4466 | msgstr "pas de mot de passe spécifié, " | 3637 | msgstr "pas de mot de passe spécifié, " |
4467 | 3638 | ||
4468 | #: plugins/check_smtp.c:342 plugins/check_smtp.c:363 plugins/check_smtp.c:383 | ||
4469 | #: plugins/check_smtp.c:688 | ||
4470 | #, c-format | 3639 | #, c-format |
4471 | msgid "sent %s\n" | 3640 | msgid "sent %s\n" |
4472 | msgstr "envoyé %s\n" | 3641 | msgstr "envoyé %s\n" |
4473 | 3642 | ||
4474 | #: plugins/check_smtp.c:345 | ||
4475 | msgid "recv() failed after AUTH LOGIN, " | 3643 | msgid "recv() failed after AUTH LOGIN, " |
4476 | msgstr "recv() à échoué après AUTH LOGIN, " | 3644 | msgstr "recv() à échoué après AUTH LOGIN, " |
4477 | 3645 | ||
4478 | #: plugins/check_smtp.c:350 plugins/check_smtp.c:371 plugins/check_smtp.c:391 | ||
4479 | #: plugins/check_smtp.c:699 | ||
4480 | #, c-format | 3646 | #, c-format |
4481 | msgid "received %s\n" | 3647 | msgid "received %s\n" |
4482 | msgstr "reçu %s\n" | 3648 | msgstr "reçu %s\n" |
4483 | 3649 | ||
4484 | #: plugins/check_smtp.c:354 | ||
4485 | msgid "invalid response received after AUTH LOGIN, " | 3650 | msgid "invalid response received after AUTH LOGIN, " |
4486 | msgstr "Réponse invalide reçue après AUTH LOGIN, " | 3651 | msgstr "Réponse invalide reçue après AUTH LOGIN, " |
4487 | 3652 | ||
4488 | #: plugins/check_smtp.c:367 | ||
4489 | msgid "recv() failed after sending authuser, " | 3653 | msgid "recv() failed after sending authuser, " |
4490 | msgstr "La commande recv() a échoué après authuser, " | 3654 | msgstr "La commande recv() a échoué après authuser, " |
4491 | 3655 | ||
4492 | #: plugins/check_smtp.c:375 | ||
4493 | msgid "invalid response received after authuser, " | 3656 | msgid "invalid response received after authuser, " |
4494 | msgstr "Réponse invalide reçue après authuser, " | 3657 | msgstr "Réponse invalide reçue après authuser, " |
4495 | 3658 | ||
4496 | #: plugins/check_smtp.c:387 | ||
4497 | msgid "recv() failed after sending authpass, " | 3659 | msgid "recv() failed after sending authpass, " |
4498 | msgstr "la commande recv() à échoué après authpass, " | 3660 | msgstr "la commande recv() à échoué après authpass, " |
4499 | 3661 | ||
4500 | #: plugins/check_smtp.c:395 | ||
4501 | msgid "invalid response received after authpass, " | 3662 | msgid "invalid response received after authpass, " |
4502 | msgstr "Réponse invalide reçue après authpass, " | 3663 | msgstr "Réponse invalide reçue après authpass, " |
4503 | 3664 | ||
4504 | #: plugins/check_smtp.c:402 | ||
4505 | msgid "only authtype LOGIN is supported, " | 3665 | msgid "only authtype LOGIN is supported, " |
4506 | msgstr "seul la méthode d'authentification LOGIN est supportée, " | 3666 | msgstr "seul la méthode d'authentification LOGIN est supportée, " |
4507 | 3667 | ||
4508 | #: plugins/check_smtp.c:426 | ||
4509 | #, c-format | 3668 | #, c-format |
4510 | msgid "SMTP %s - %s%.3f sec. response time%s%s|%s\n" | 3669 | msgid "SMTP %s - %s%.3f sec. response time%s%s|%s\n" |
4511 | msgstr "SMTP %s - %s%.3f sec. de temps de réponse%s%s|%s\n" | 3670 | msgstr "SMTP %s - %s%.3f sec. de temps de réponse%s%s|%s\n" |
4512 | 3671 | ||
4513 | #: plugins/check_smtp.c:536 plugins/check_smtp.c:548 | ||
4514 | #, c-format | 3672 | #, c-format |
4515 | msgid "Could not realloc() units [%d]\n" | 3673 | msgid "Could not realloc() units [%d]\n" |
4516 | msgstr "Impossible de réallouer des unités [%d]\n" | 3674 | msgstr "Impossible de réallouer des unités [%d]\n" |
4517 | 3675 | ||
4518 | #: plugins/check_smtp.c:556 | ||
4519 | #, fuzzy | 3676 | #, fuzzy |
4520 | msgid "Critical time must be a positive" | 3677 | msgid "Critical time must be a positive" |
4521 | msgstr "Le seuil critique doit être un entier positif" | 3678 | msgstr "Le seuil critique doit être un entier positif" |
4522 | 3679 | ||
4523 | #: plugins/check_smtp.c:564 | ||
4524 | #, fuzzy | 3680 | #, fuzzy |
4525 | msgid "Warning time must be a positive" | 3681 | msgid "Warning time must be a positive" |
4526 | msgstr "Le seuil d'avertissement doit être un entier positif" | 3682 | msgstr "Le seuil d'avertissement doit être un entier positif" |
4527 | 3683 | ||
4528 | #: plugins/check_smtp.c:611 | ||
4529 | msgid "SSL support not available - install OpenSSL and recompile" | 3684 | msgid "SSL support not available - install OpenSSL and recompile" |
4530 | msgstr "SSL n'est pas disponible - installer OpenSSL et recompilez" | 3685 | msgstr "SSL n'est pas disponible - installer OpenSSL et recompilez" |
4531 | 3686 | ||
4532 | #: plugins/check_smtp.c:679 plugins/check_smtp.c:684 | 3687 | msgid "Set either -s/--ssl/--tls or -S/--starttls" |
3688 | msgstr "Définissez -s/--ssl/--tls ou -S/--starttls" | ||
3689 | |||
4533 | #, c-format | 3690 | #, c-format |
4534 | msgid "Connection closed by server before sending QUIT command\n" | 3691 | msgid "Connection closed by server before sending QUIT command\n" |
4535 | msgstr "" | 3692 | msgstr "" |
4536 | 3693 | ||
4537 | #: plugins/check_smtp.c:694 | ||
4538 | #, c-format | 3694 | #, c-format |
4539 | msgid "recv() failed after QUIT." | 3695 | msgid "recv() failed after QUIT." |
4540 | msgstr "recv() à échoué après QUIT." | 3696 | msgstr "recv() à échoué après QUIT." |
4541 | 3697 | ||
4542 | #: plugins/check_smtp.c:696 | ||
4543 | #, c-format | 3698 | #, c-format |
4544 | msgid "Connection reset by peer." | 3699 | msgid "Connection reset by peer." |
4545 | msgstr "" | 3700 | msgstr "" |
4546 | 3701 | ||
4547 | #: plugins/check_smtp.c:784 | ||
4548 | msgid "This plugin will attempt to open an SMTP connection with the host." | 3702 | msgid "This plugin will attempt to open an SMTP connection with the host." |
4549 | msgstr "Ce plugin va essayer d'ouvrir un connexion SMTP avec l'hôte." | 3703 | msgstr "Ce plugin va essayer d'ouvrir un connexion SMTP avec l'hôte." |
4550 | 3704 | ||
4551 | #: plugins/check_smtp.c:798 | ||
4552 | #, c-format | 3705 | #, c-format |
4553 | msgid " String to expect in first line of server response (default: '%s')\n" | 3706 | msgid " String to expect in first line of server response (default: '%s')\n" |
4554 | msgstr "" | 3707 | msgstr "" |
4555 | " Texte attendu dans la première ligne de réponse du serveur (défaut: " | 3708 | " Texte attendu dans la première ligne de réponse du serveur (défaut: " |
4556 | "'%s')\n" | 3709 | "'%s')\n" |
4557 | 3710 | ||
4558 | #: plugins/check_smtp.c:800 | ||
4559 | msgid "SMTP command (may be used repeatedly)" | 3711 | msgid "SMTP command (may be used repeatedly)" |
4560 | msgstr "Commande SMTP (peut être utilisé plusieurs fois)" | 3712 | msgstr "Commande SMTP (peut être utilisé plusieurs fois)" |
4561 | 3713 | ||
4562 | #: plugins/check_smtp.c:802 | ||
4563 | msgid "Expected response to command (may be used repeatedly)" | 3714 | msgid "Expected response to command (may be used repeatedly)" |
4564 | msgstr "" | 3715 | msgstr "" |
4565 | 3716 | ||
4566 | #: plugins/check_smtp.c:804 | ||
4567 | msgid "FROM-address to include in MAIL command, required by Exchange 2000" | 3717 | msgid "FROM-address to include in MAIL command, required by Exchange 2000" |
4568 | msgstr "" | 3718 | msgstr "" |
4569 | 3719 | ||
4570 | #: plugins/check_smtp.c:806 | ||
4571 | msgid "FQDN used for HELO" | 3720 | msgid "FQDN used for HELO" |
4572 | msgstr "" | 3721 | msgstr "" |
4573 | 3722 | ||
4574 | #: plugins/check_smtp.c:809 plugins/check_tcp.c:665 | 3723 | msgid "Use PROXY protocol prefix for the connection." |
3724 | msgstr "Utiliser le préfixe du protocole PROXY pour la connexion." | ||
3725 | |||
4575 | msgid "Minimum number of days a certificate has to be valid." | 3726 | msgid "Minimum number of days a certificate has to be valid." |
4576 | msgstr "Nombre de jours minimum pour que le certificat soit valide." | 3727 | msgstr "Nombre de jours minimum pour que le certificat soit valide." |
4577 | 3728 | ||
4578 | #: plugins/check_smtp.c:811 | 3729 | #, fuzzy |
3730 | msgid "Use SSL/TLS for the connection." | ||
3731 | msgstr "Utiliser SSL/TLS pour la connexion." | ||
3732 | |||
3733 | #, c-format | ||
3734 | msgid " Sets default port to %d.\n" | ||
3735 | msgstr " Définit le port par défaut à %d.\n" | ||
3736 | |||
4579 | msgid "Use STARTTLS for the connection." | 3737 | msgid "Use STARTTLS for the connection." |
4580 | msgstr "" | 3738 | msgstr "Utiliser STARTTLS pour la connexion." |
4581 | 3739 | ||
4582 | #: plugins/check_smtp.c:815 | ||
4583 | msgid "SMTP AUTH type to check (default none, only LOGIN supported)" | 3740 | msgid "SMTP AUTH type to check (default none, only LOGIN supported)" |
4584 | msgstr "" | 3741 | msgstr "" |
4585 | 3742 | ||
4586 | #: plugins/check_smtp.c:817 | ||
4587 | msgid "SMTP AUTH username" | 3743 | msgid "SMTP AUTH username" |
4588 | msgstr "" | 3744 | msgstr "" |
4589 | 3745 | ||
4590 | #: plugins/check_smtp.c:819 | ||
4591 | msgid "SMTP AUTH password" | 3746 | msgid "SMTP AUTH password" |
4592 | msgstr "" | 3747 | msgstr "" |
4593 | 3748 | ||
4594 | #: plugins/check_smtp.c:821 | 3749 | msgid "Send LHLO instead of HELO/EHLO" |
3750 | msgstr "" | ||
3751 | |||
4595 | msgid "Ignore failure when sending QUIT command to server" | 3752 | msgid "Ignore failure when sending QUIT command to server" |
4596 | msgstr "" | 3753 | msgstr "" |
4597 | 3754 | ||
4598 | #: plugins/check_smtp.c:831 | ||
4599 | msgid "STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful" | 3755 | msgid "STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful" |
4600 | msgstr "" | 3756 | msgstr "" |
4601 | 3757 | ||
4602 | #: plugins/check_smtp.c:832 | ||
4603 | msgid "connects, but incorrect response messages from the host result in" | 3758 | msgid "connects, but incorrect response messages from the host result in" |
4604 | msgstr "" | 3759 | msgstr "" |
4605 | 3760 | ||
4606 | #: plugins/check_smtp.c:833 | ||
4607 | msgid "STATE_WARNING return values." | 3761 | msgid "STATE_WARNING return values." |
4608 | msgstr "" | 3762 | msgstr "" |
4609 | 3763 | ||
4610 | #: plugins/check_snmp.c:169 plugins/check_snmp.c:582 | ||
4611 | msgid "Cannot malloc" | 3764 | msgid "Cannot malloc" |
4612 | msgstr "" | 3765 | msgstr "" |
4613 | 3766 | ||
4614 | #: plugins/check_snmp.c:356 | ||
4615 | #, c-format | 3767 | #, c-format |
4616 | msgid "External command error: %s\n" | 3768 | msgid "External command error: %s\n" |
4617 | msgstr "Erreur d'exécution de commande externe: %s\n" | 3769 | msgstr "Erreur d'exécution de commande externe: %s\n" |
4618 | 3770 | ||
4619 | #: plugins/check_snmp.c:361 | ||
4620 | #, c-format | 3771 | #, c-format |
4621 | msgid "External command error with no output (return code: %d)\n" | 3772 | msgid "External command error with no output (return code: %d)\n" |
4622 | msgstr "" | 3773 | msgstr "" |
4623 | 3774 | ||
4624 | #: plugins/check_snmp.c:464 | ||
4625 | #, fuzzy, c-format | 3775 | #, fuzzy, c-format |
4626 | msgid "No valid data returned (%s)\n" | 3776 | msgid "No valid data returned (%s)\n" |
4627 | msgstr "Pas de données valides reçues" | 3777 | msgstr "Pas de données valides reçues" |
4628 | 3778 | ||
4629 | #: plugins/check_snmp.c:475 | ||
4630 | msgid "Time duration between plugin calls is invalid" | 3779 | msgid "Time duration between plugin calls is invalid" |
4631 | msgstr "" | 3780 | msgstr "" |
4632 | 3781 | ||
4633 | #: plugins/check_snmp.c:588 | ||
4634 | msgid "Cannot asprintf()" | 3782 | msgid "Cannot asprintf()" |
4635 | msgstr "" | 3783 | msgstr "" |
4636 | 3784 | ||
4637 | #: plugins/check_snmp.c:594 | ||
4638 | #, fuzzy | 3785 | #, fuzzy |
4639 | msgid "Cannot realloc()" | 3786 | msgid "Cannot realloc()" |
4640 | msgstr "Impossible de réallouer des unités\n" | 3787 | msgstr "Impossible de réallouer des unités\n" |
4641 | 3788 | ||
4642 | #: plugins/check_snmp.c:610 | ||
4643 | msgid "No previous data to calculate rate - assume okay" | 3789 | msgid "No previous data to calculate rate - assume okay" |
4644 | msgstr "" | 3790 | msgstr "" |
4645 | 3791 | ||
4646 | #: plugins/check_snmp.c:751 | ||
4647 | msgid "Retries interval must be a positive integer" | 3792 | msgid "Retries interval must be a positive integer" |
4648 | msgstr "L'intervalle pour les essais doit être un entier positif" | 3793 | msgstr "L'intervalle pour les essais doit être un entier positif" |
4649 | 3794 | ||
4650 | #: plugins/check_snmp.c:831 | 3795 | #, fuzzy |
3796 | msgid "Exit status must be a positive integer" | ||
3797 | msgstr "Maxbytes doit être un entier positif" | ||
3798 | |||
4651 | #, c-format | 3799 | #, c-format |
4652 | msgid "Could not reallocate labels[%d]" | 3800 | msgid "Could not reallocate labels[%d]" |
4653 | msgstr "Impossible de réallouer des labels[%d]" | 3801 | msgstr "Impossible de réallouer des labels[%d]" |
4654 | 3802 | ||
4655 | #: plugins/check_snmp.c:844 | ||
4656 | msgid "Could not reallocate labels\n" | 3803 | msgid "Could not reallocate labels\n" |
4657 | msgstr "Impossible de réallouer des labels\n" | 3804 | msgstr "Impossible de réallouer des labels\n" |
4658 | 3805 | ||
4659 | #: plugins/check_snmp.c:860 | ||
4660 | #, c-format | 3806 | #, c-format |
4661 | msgid "Could not reallocate units [%d]\n" | 3807 | msgid "Could not reallocate units [%d]\n" |
4662 | msgstr "Impossible de réallouer des unités [%d]\n" | 3808 | msgstr "Impossible de réallouer des unités [%d]\n" |
4663 | 3809 | ||
4664 | #: plugins/check_snmp.c:872 | ||
4665 | msgid "Could not realloc() units\n" | 3810 | msgid "Could not realloc() units\n" |
4666 | msgstr "Impossible de réallouer des unités\n" | 3811 | msgstr "Impossible de réallouer des unités\n" |
4667 | 3812 | ||
4668 | #: plugins/check_snmp.c:889 | ||
4669 | #, fuzzy | 3813 | #, fuzzy |
4670 | msgid "Rate multiplier must be a positive integer" | 3814 | msgid "Rate multiplier must be a positive integer" |
4671 | msgstr "La taille du paquet doit être un entier positif" | 3815 | msgstr "La taille du paquet doit être un entier positif" |
4672 | 3816 | ||
4673 | #: plugins/check_snmp.c:947 | ||
4674 | msgid "No host specified\n" | 3817 | msgid "No host specified\n" |
4675 | msgstr "Pas d'hôte spécifié\n" | 3818 | msgstr "Pas d'hôte spécifié\n" |
4676 | 3819 | ||
4677 | #: plugins/check_snmp.c:951 | ||
4678 | msgid "No OIDs specified\n" | 3820 | msgid "No OIDs specified\n" |
4679 | msgstr "Pas de compteur spécifié\n" | 3821 | msgstr "Pas de compteur spécifié\n" |
4680 | 3822 | ||
4681 | #: plugins/check_snmp.c:973 | ||
4682 | msgid "Invalid seclevel" | ||
4683 | msgstr "" | ||
4684 | |||
4685 | #: plugins/check_snmp.c:980 plugins/check_snmp.c:983 plugins/check_snmp.c:1001 | ||
4686 | #, c-format | 3823 | #, c-format |
4687 | msgid "Required parameter: %s\n" | 3824 | msgid "Required parameter: %s\n" |
4688 | msgstr "" | 3825 | msgstr "" |
4689 | 3826 | ||
4690 | #: plugins/check_snmp.c:1022 | 3827 | msgid "Invalid seclevel" |
3828 | msgstr "" | ||
3829 | |||
4691 | msgid "Invalid SNMP version" | 3830 | msgid "Invalid SNMP version" |
4692 | msgstr "Version de SNMP invalide" | 3831 | msgstr "Version de SNMP invalide" |
4693 | 3832 | ||
4694 | #: plugins/check_snmp.c:1039 | ||
4695 | msgid "Unbalanced quotes\n" | 3833 | msgid "Unbalanced quotes\n" |
4696 | msgstr "Guillemets manquants\n" | 3834 | msgstr "Guillemets manquants\n" |
4697 | 3835 | ||
4698 | #: plugins/check_snmp.c:1088 | 3836 | #, c-format |
3837 | msgid "multiplier set (%.1f), but input is not a number: %s" | ||
3838 | msgstr "" | ||
3839 | |||
4699 | msgid "Check status of remote machines and obtain system information via SNMP" | 3840 | msgid "Check status of remote machines and obtain system information via SNMP" |
4700 | msgstr "" | 3841 | msgstr "" |
4701 | "Vérifie l'état des machines distantes et obtient l'information système via " | 3842 | "Vérifie l'état des machines distantes et obtient l'information système via " |
4702 | "SNMP" | 3843 | "SNMP" |
4703 | 3844 | ||
4704 | #: plugins/check_snmp.c:1101 | ||
4705 | msgid "Use SNMP GETNEXT instead of SNMP GET" | 3845 | msgid "Use SNMP GETNEXT instead of SNMP GET" |
4706 | msgstr "Utiliser SNMP GETNEXT au lieu de SNMP GET" | 3846 | msgstr "Utiliser SNMP GETNEXT au lieu de SNMP GET" |
4707 | 3847 | ||
4708 | #: plugins/check_snmp.c:1103 | ||
4709 | msgid "SNMP protocol version" | 3848 | msgid "SNMP protocol version" |
4710 | msgstr "Version du protocole SNMP" | 3849 | msgstr "Version du protocole SNMP" |
4711 | 3850 | ||
4712 | #: plugins/check_snmp.c:1105 | 3851 | #, fuzzy |
3852 | msgid "SNMPv3 context" | ||
3853 | msgstr "Nom d'utilisateur SNMPv3" | ||
3854 | |||
4713 | msgid "SNMPv3 securityLevel" | 3855 | msgid "SNMPv3 securityLevel" |
4714 | msgstr "Niveau de sécurité SNMPv3 (securityLevel)" | 3856 | msgstr "Niveau de sécurité SNMPv3 (securityLevel)" |
4715 | 3857 | ||
4716 | #: plugins/check_snmp.c:1107 | ||
4717 | msgid "SNMPv3 auth proto" | 3858 | msgid "SNMPv3 auth proto" |
4718 | msgstr "Protocole d'authentification SNMPv3" | 3859 | msgstr "Protocole d'authentification SNMPv3" |
4719 | 3860 | ||
4720 | #: plugins/check_snmp.c:1109 | ||
4721 | msgid "SNMPv3 priv proto (default DES)" | 3861 | msgid "SNMPv3 priv proto (default DES)" |
4722 | msgstr "" | 3862 | msgstr "" |
4723 | 3863 | ||
4724 | #: plugins/check_snmp.c:1113 | ||
4725 | msgid "Optional community string for SNMP communication" | 3864 | msgid "Optional community string for SNMP communication" |
4726 | msgstr "Communauté optionnelle pour la communication SNMP" | 3865 | msgstr "Communauté optionnelle pour la communication SNMP" |
4727 | 3866 | ||
4728 | #: plugins/check_snmp.c:1114 | ||
4729 | msgid "default is" | 3867 | msgid "default is" |
4730 | msgstr "défaut:" | 3868 | msgstr "défaut:" |
4731 | 3869 | ||
4732 | #: plugins/check_snmp.c:1116 | ||
4733 | msgid "SNMPv3 username" | 3870 | msgid "SNMPv3 username" |
4734 | msgstr "Nom d'utilisateur SNMPv3" | 3871 | msgstr "Nom d'utilisateur SNMPv3" |
4735 | 3872 | ||
4736 | #: plugins/check_snmp.c:1118 | ||
4737 | msgid "SNMPv3 authentication password" | 3873 | msgid "SNMPv3 authentication password" |
4738 | msgstr "Mot de passe d'authentification SNMPv3" | 3874 | msgstr "Mot de passe d'authentification SNMPv3" |
4739 | 3875 | ||
4740 | #: plugins/check_snmp.c:1120 | ||
4741 | msgid "SNMPv3 privacy password" | 3876 | msgid "SNMPv3 privacy password" |
4742 | msgstr "Mot de passe de confidentialité SNMPv3" | 3877 | msgstr "Mot de passe de confidentialité SNMPv3" |
4743 | 3878 | ||
4744 | #: plugins/check_snmp.c:1124 | ||
4745 | msgid "Object identifier(s) or SNMP variables whose value you wish to query" | 3879 | msgid "Object identifier(s) or SNMP variables whose value you wish to query" |
4746 | msgstr "" | 3880 | msgstr "" |
4747 | 3881 | ||
4748 | #: plugins/check_snmp.c:1126 | ||
4749 | msgid "" | 3882 | msgid "" |
4750 | "List of MIBS to be loaded (default = none if using numeric OIDs or 'ALL'" | 3883 | "List of MIBS to be loaded (default = none if using numeric OIDs or 'ALL'" |
4751 | msgstr "" | 3884 | msgstr "" |
4752 | 3885 | ||
4753 | #: plugins/check_snmp.c:1127 | ||
4754 | msgid "for symbolic OIDs.)" | 3886 | msgid "for symbolic OIDs.)" |
4755 | msgstr "" | 3887 | msgstr "" |
4756 | 3888 | ||
4757 | #: plugins/check_snmp.c:1129 | ||
4758 | msgid "Delimiter to use when parsing returned data. Default is" | 3889 | msgid "Delimiter to use when parsing returned data. Default is" |
4759 | msgstr "" | 3890 | msgstr "" |
4760 | 3891 | ||
4761 | #: plugins/check_snmp.c:1130 | ||
4762 | msgid "Any data on the right hand side of the delimiter is considered" | 3892 | msgid "Any data on the right hand side of the delimiter is considered" |
4763 | msgstr "" | 3893 | msgstr "" |
4764 | 3894 | ||
4765 | #: plugins/check_snmp.c:1131 | ||
4766 | msgid "to be the data that should be used in the evaluation." | 3895 | msgid "to be the data that should be used in the evaluation." |
4767 | msgstr "" | 3896 | msgstr "" |
4768 | 3897 | ||
4769 | #: plugins/check_snmp.c:1135 | 3898 | msgid "If the check returns a 0 length string or NULL value" |
3899 | msgstr "" | ||
3900 | |||
3901 | msgid "This option allows you to choose what status you want it to exit" | ||
3902 | msgstr "" | ||
3903 | |||
3904 | msgid "Excluding this option renders the default exit of 3(STATE_UNKNOWN)" | ||
3905 | msgstr "" | ||
3906 | |||
3907 | msgid "0 = OK" | ||
3908 | msgstr "" | ||
3909 | |||
3910 | #, fuzzy | ||
3911 | msgid "1 = WARNING" | ||
3912 | msgstr "AVERTISSEMENT" | ||
3913 | |||
3914 | #, fuzzy | ||
3915 | msgid "2 = CRITICAL" | ||
3916 | msgstr "CRITIQUE" | ||
3917 | |||
3918 | #, fuzzy | ||
3919 | msgid "3 = UNKNOWN" | ||
3920 | msgstr "INCONNU" | ||
3921 | |||
4770 | msgid "Warning threshold range(s)" | 3922 | msgid "Warning threshold range(s)" |
4771 | msgstr "Valeurs pour le seuil d'avertissement" | 3923 | msgstr "Valeurs pour le seuil d'avertissement" |
4772 | 3924 | ||
4773 | #: plugins/check_snmp.c:1137 | ||
4774 | msgid "Critical threshold range(s)" | 3925 | msgid "Critical threshold range(s)" |
4775 | msgstr "Valeurs pour le seuil critique" | 3926 | msgstr "Valeurs pour le seuil critique" |
4776 | 3927 | ||
4777 | #: plugins/check_snmp.c:1139 | ||
4778 | msgid "Enable rate calculation. See 'Rate Calculation' below" | 3928 | msgid "Enable rate calculation. See 'Rate Calculation' below" |
4779 | msgstr "" | 3929 | msgstr "" |
4780 | 3930 | ||
4781 | #: plugins/check_snmp.c:1141 | ||
4782 | msgid "" | 3931 | msgid "" |
4783 | "Converts rate per second. For example, set to 60 to convert to per minute" | 3932 | "Converts rate per second. For example, set to 60 to convert to per minute" |
4784 | msgstr "" | 3933 | msgstr "" |
4785 | 3934 | ||
4786 | #: plugins/check_snmp.c:1143 | 3935 | msgid "Add/subtract the specified OFFSET to numeric sensor data" |
4787 | msgid "Add/substract the specified OFFSET to numeric sensor data" | ||
4788 | msgstr "" | 3936 | msgstr "" |
4789 | 3937 | ||
4790 | #: plugins/check_snmp.c:1147 | ||
4791 | msgid "Return OK state (for that OID) if STRING is an exact match" | 3938 | msgid "Return OK state (for that OID) if STRING is an exact match" |
4792 | msgstr "" | 3939 | msgstr "" |
4793 | 3940 | ||
4794 | #: plugins/check_snmp.c:1149 | ||
4795 | msgid "" | 3941 | msgid "" |
4796 | "Return OK state (for that OID) if extended regular expression REGEX matches" | 3942 | "Return OK state (for that OID) if extended regular expression REGEX matches" |
4797 | msgstr "" | 3943 | msgstr "" |
4798 | 3944 | ||
4799 | #: plugins/check_snmp.c:1151 | ||
4800 | msgid "" | 3945 | msgid "" |
4801 | "Return OK state (for that OID) if case-insensitive extended REGEX matches" | 3946 | "Return OK state (for that OID) if case-insensitive extended REGEX matches" |
4802 | msgstr "" | 3947 | msgstr "" |
4803 | 3948 | ||
4804 | #: plugins/check_snmp.c:1153 | ||
4805 | msgid "Invert search result (CRITICAL if found)" | 3949 | msgid "Invert search result (CRITICAL if found)" |
4806 | msgstr "" | 3950 | msgstr "" |
4807 | 3951 | ||
4808 | #: plugins/check_snmp.c:1157 | ||
4809 | msgid "Prefix label for output from plugin" | 3952 | msgid "Prefix label for output from plugin" |
4810 | msgstr "" | 3953 | msgstr "" |
4811 | 3954 | ||
4812 | #: plugins/check_snmp.c:1159 | ||
4813 | msgid "Units label(s) for output data (e.g., 'sec.')." | 3955 | msgid "Units label(s) for output data (e.g., 'sec.')." |
4814 | msgstr "" | 3956 | msgstr "" |
4815 | 3957 | ||
4816 | #: plugins/check_snmp.c:1161 | ||
4817 | msgid "Separates output on multiple OID requests" | 3958 | msgid "Separates output on multiple OID requests" |
4818 | msgstr "" | 3959 | msgstr "" |
4819 | 3960 | ||
4820 | #: plugins/check_snmp.c:1165 | 3961 | msgid "Multiplies current value, 0 < n < 1 works as divider, defaults to 1" |
4821 | msgid "Number of retries to be used in the requests" | 3962 | msgstr "" |
3963 | |||
3964 | msgid "C-style format string for float values (see option -M)" | ||
3965 | msgstr "" | ||
3966 | |||
3967 | msgid "" | ||
3968 | "NOTE the final timeout value is calculated using this formula: " | ||
3969 | "timeout_interval * retries + 5" | ||
3970 | msgstr "" | ||
3971 | |||
3972 | #, fuzzy | ||
3973 | msgid "Number of retries to be used in the requests, default: " | ||
4822 | msgstr "Le nombre d'essai pour les requêtes" | 3974 | msgstr "Le nombre d'essai pour les requêtes" |
4823 | 3975 | ||
4824 | #: plugins/check_snmp.c:1168 | ||
4825 | msgid "Label performance data with OIDs instead of --label's" | 3976 | msgid "Label performance data with OIDs instead of --label's" |
4826 | msgstr "" | 3977 | msgstr "" |
4827 | 3978 | ||
4828 | #: plugins/check_snmp.c:1173 | 3979 | msgid "Tell snmpget to not print errors encountered when parsing MIB files" |
3980 | msgstr "" | ||
3981 | |||
4829 | msgid "" | 3982 | msgid "" |
4830 | "This plugin uses the 'snmpget' command included with the NET-SNMP package." | 3983 | "This plugin uses the 'snmpget' command included with the NET-SNMP package." |
4831 | msgstr "" | 3984 | msgstr "" |
4832 | 3985 | ||
4833 | #: plugins/check_snmp.c:1174 | ||
4834 | msgid "" | 3986 | msgid "" |
4835 | "if you don't have the package installed, you will need to download it from" | 3987 | "if you don't have the package installed, you will need to download it from" |
4836 | msgstr "" | 3988 | msgstr "" |
4837 | "Si vous n'avez pas le programme installé, vous devrez le télécharger depuis" | 3989 | "Si vous n'avez pas le programme installé, vous devrez le télécharger depuis" |
4838 | 3990 | ||
4839 | #: plugins/check_snmp.c:1175 | ||
4840 | msgid "http://net-snmp.sourceforge.net before you can use this plugin." | 3991 | msgid "http://net-snmp.sourceforge.net before you can use this plugin." |
4841 | msgstr "http://net-snmp.sourceforge.net avant de pouvoir utiliser ce plugin." | 3992 | msgstr "http://net-snmp.sourceforge.net avant de pouvoir utiliser ce plugin." |
4842 | 3993 | ||
4843 | #: plugins/check_snmp.c:1179 | ||
4844 | #, fuzzy | 3994 | #, fuzzy |
4845 | msgid "" | 3995 | msgid "" |
4846 | "- Multiple OIDs (and labels) may be indicated by a comma or space-delimited " | 3996 | "- Multiple OIDs (and labels) may be indicated by a comma or space-delimited " |
4847 | msgstr "" | 3997 | msgstr "" |
4848 | "- Des OIDs multiples peuvent être séparées par des virgules ou des espaces" | 3998 | "- Des OIDs multiples peuvent être séparées par des virgules ou des espaces" |
4849 | 3999 | ||
4850 | #: plugins/check_snmp.c:1180 | ||
4851 | #, fuzzy | 4000 | #, fuzzy |
4852 | msgid "list (lists with internal spaces must be quoted)." | 4001 | msgid "list (lists with internal spaces must be quoted)." |
4853 | msgstr "(Les liste avec espaces doivent être entre guillemets). Max:" | 4002 | msgstr "(Les liste avec espaces doivent être entre guillemets). Max:" |
4854 | 4003 | ||
4855 | #: plugins/check_snmp.c:1184 | ||
4856 | msgid "" | 4004 | msgid "" |
4857 | "- When checking multiple OIDs, separate ranges by commas like '-w " | 4005 | "- When checking multiple OIDs, separate ranges by commas like '-w " |
4858 | "1:10,1:,:20'" | 4006 | "1:10,1:,:20'" |
4859 | msgstr "" | 4007 | msgstr "" |
4860 | 4008 | ||
4861 | #: plugins/check_snmp.c:1185 | ||
4862 | msgid "- Note that only one string and one regex may be checked at present" | 4009 | msgid "- Note that only one string and one regex may be checked at present" |
4863 | msgstr "" | 4010 | msgstr "" |
4864 | 4011 | ||
4865 | #: plugins/check_snmp.c:1186 | ||
4866 | msgid "" | 4012 | msgid "" |
4867 | "- All evaluation methods other than PR, STR, and SUBSTR expect that the value" | 4013 | "- All evaluation methods other than PR, STR, and SUBSTR expect that the value" |
4868 | msgstr "" | 4014 | msgstr "" |
4869 | 4015 | ||
4870 | #: plugins/check_snmp.c:1187 | ||
4871 | msgid "returned from the SNMP query is an unsigned integer." | 4016 | msgid "returned from the SNMP query is an unsigned integer." |
4872 | msgstr "" | 4017 | msgstr "" |
4873 | 4018 | ||
4874 | #: plugins/check_snmp.c:1190 | ||
4875 | msgid "Rate Calculation:" | 4019 | msgid "Rate Calculation:" |
4876 | msgstr "" | 4020 | msgstr "" |
4877 | 4021 | ||
4878 | #: plugins/check_snmp.c:1191 | ||
4879 | msgid "In many places, SNMP returns counters that are only meaningful when" | 4022 | msgid "In many places, SNMP returns counters that are only meaningful when" |
4880 | msgstr "" | 4023 | msgstr "" |
4881 | 4024 | ||
4882 | #: plugins/check_snmp.c:1192 | ||
4883 | msgid "calculating the counter difference since the last check. check_snmp" | 4025 | msgid "calculating the counter difference since the last check. check_snmp" |
4884 | msgstr "" | 4026 | msgstr "" |
4885 | 4027 | ||
4886 | #: plugins/check_snmp.c:1193 | ||
4887 | msgid "saves the last state information in a file so that the rate per second" | 4028 | msgid "saves the last state information in a file so that the rate per second" |
4888 | msgstr "" | 4029 | msgstr "" |
4889 | 4030 | ||
4890 | #: plugins/check_snmp.c:1194 | ||
4891 | msgid "can be calculated. Use the --rate option to save state information." | 4031 | msgid "can be calculated. Use the --rate option to save state information." |
4892 | msgstr "" | 4032 | msgstr "" |
4893 | 4033 | ||
4894 | #: plugins/check_snmp.c:1195 | ||
4895 | msgid "" | 4034 | msgid "" |
4896 | "On the first run, there will be no prior state - this will return with OK." | 4035 | "On the first run, there will be no prior state - this will return with OK." |
4897 | msgstr "" | 4036 | msgstr "" |
4898 | 4037 | ||
4899 | #: plugins/check_snmp.c:1196 | ||
4900 | msgid "The state is uniquely determined by the arguments to the plugin, so" | 4038 | msgid "The state is uniquely determined by the arguments to the plugin, so" |
4901 | msgstr "" | 4039 | msgstr "" |
4902 | 4040 | ||
4903 | #: plugins/check_snmp.c:1197 | ||
4904 | msgid "changing the arguments will create a new state file." | 4041 | msgid "changing the arguments will create a new state file." |
4905 | msgstr "" | 4042 | msgstr "" |
4906 | 4043 | ||
4907 | #: plugins/check_ssh.c:165 | ||
4908 | msgid "Port number must be a positive integer" | 4044 | msgid "Port number must be a positive integer" |
4909 | msgstr "Le numéro du port doit être un nombre entier positif" | 4045 | msgstr "Le numéro du port doit être un nombre entier positif" |
4910 | 4046 | ||
4911 | #: plugins/check_ssh.c:232 | ||
4912 | #, c-format | 4047 | #, c-format |
4913 | msgid "Server answer: %s" | 4048 | msgid "Server answer: %s" |
4914 | msgstr "Réponse du serveur: %s" | 4049 | msgstr "Réponse du serveur: %s" |
4915 | 4050 | ||
4916 | #: plugins/check_ssh.c:251 | 4051 | #, fuzzy, c-format |
4917 | #, c-format | 4052 | msgid "SSH CRITICAL - %s (protocol %s) version mismatch, expected '%s'\n" |
4918 | msgid "SSH WARNING - %s (protocol %s) version mismatch, expected '%s'\n" | 4053 | msgstr "" |
4054 | "SSH AVERTISSEMENT - %s (protocole %s) différence de version, attendu'%s'\n" | ||
4055 | |||
4056 | #, fuzzy, c-format | ||
4057 | msgid "" | ||
4058 | "SSH CRITICAL - %s (protocol %s) protocol version mismatch, expected '%s'\n" | ||
4919 | msgstr "" | 4059 | msgstr "" |
4920 | "SSH AVERTISSEMENT - %s (protocole %s) différence de version, attendu'%s'\n" | 4060 | "SSH AVERTISSEMENT - %s (protocole %s) différence de version, attendu'%s'\n" |
4921 | 4061 | ||
4922 | #: plugins/check_ssh.c:260 | ||
4923 | #, fuzzy, c-format | 4062 | #, fuzzy, c-format |
4924 | msgid "SSH OK - %s (protocol %s) | %s\n" | 4063 | msgid "SSH OK - %s (protocol %s) | %s\n" |
4925 | msgstr "SSH OK - %s (protocole %s)\n" | 4064 | msgstr "SSH OK - %s (protocole %s)\n" |
4926 | 4065 | ||
4927 | #: plugins/check_ssh.c:281 | ||
4928 | msgid "Try to connect to an SSH server at specified server and port" | 4066 | msgid "Try to connect to an SSH server at specified server and port" |
4929 | msgstr "Essaye de se connecter à un serveur SSH précisé à un port précis" | 4067 | msgstr "Essaye de se connecter à un serveur SSH précisé à un port précis" |
4930 | 4068 | ||
4931 | #: plugins/check_ssh.c:297 | 4069 | #, fuzzy |
4932 | msgid "" | 4070 | msgid "" |
4933 | "Warn if string doesn't match expected server version (ex: OpenSSH_3.9p1)" | 4071 | "Alert if string doesn't match expected server version (ex: OpenSSH_3.9p1)" |
4072 | msgstr "" | ||
4073 | "AVERTISSEMENT si la chaîne ne correspond pas à la version précisée (ex: " | ||
4074 | "OpenSSH_3.9p1)" | ||
4075 | |||
4076 | #, fuzzy | ||
4077 | msgid "Alert if protocol doesn't match expected protocol version (ex: 2.0)" | ||
4934 | msgstr "" | 4078 | msgstr "" |
4935 | "AVERTISSEMENT si la chaîne ne correspond pas à la version précisée (ex: " | 4079 | "AVERTISSEMENT si la chaîne ne correspond pas à la version précisée (ex: " |
4936 | "OpenSSH_3.9p1)" | 4080 | "OpenSSH_3.9p1)" |
4937 | 4081 | ||
4938 | #: plugins/check_swap.c:169 | ||
4939 | #, c-format | 4082 | #, c-format |
4940 | msgid "Command: %s\n" | 4083 | msgid "Command: %s\n" |
4941 | msgstr "Commande: %s\n" | 4084 | msgstr "Commande: %s\n" |
4942 | 4085 | ||
4943 | #: plugins/check_swap.c:171 | ||
4944 | #, c-format | 4086 | #, c-format |
4945 | msgid "Format: %s\n" | 4087 | msgid "Format: %s\n" |
4946 | msgstr "Format: %s\n" | 4088 | msgstr "Format: %s\n" |
4947 | 4089 | ||
4948 | #: plugins/check_swap.c:207 | ||
4949 | #, c-format | 4090 | #, c-format |
4950 | msgid "total=%.0f, used=%.0f, free=%.0f\n" | 4091 | msgid "total=%.0f, used=%.0f, free=%.0f\n" |
4951 | msgstr "total=%.0f, utilisé=%.0f, libre=%.0ff\n" | 4092 | msgstr "total=%.0f, utilisé=%.0f, libre=%.0ff\n" |
4952 | 4093 | ||
4953 | #: plugins/check_swap.c:221 | ||
4954 | #, c-format | 4094 | #, c-format |
4955 | msgid "total=%.0f, free=%.0f\n" | 4095 | msgid "total=%.0f, free=%.0f\n" |
4956 | msgstr "total=%.0f, libre=%.0f\n" | 4096 | msgstr "total=%.0f, libre=%.0f\n" |
4957 | 4097 | ||
4958 | #: plugins/check_swap.c:253 | ||
4959 | msgid "Error getting swap devices\n" | 4098 | msgid "Error getting swap devices\n" |
4960 | msgstr "" | 4099 | msgstr "" |
4961 | 4100 | ||
4962 | #: plugins/check_swap.c:256 | ||
4963 | msgid "SWAP OK: No swap devices defined\n" | 4101 | msgid "SWAP OK: No swap devices defined\n" |
4964 | msgstr "SWAP OK: Pas de périphériques swap définis\n" | 4102 | msgstr "SWAP OK: Pas de périphériques swap définis\n" |
4965 | 4103 | ||
4966 | #: plugins/check_swap.c:277 plugins/check_swap.c:319 | ||
4967 | msgid "swapctl failed: " | 4104 | msgid "swapctl failed: " |
4968 | msgstr "swapctl à échoué:" | 4105 | msgstr "swapctl à échoué:" |
4969 | 4106 | ||
4970 | #: plugins/check_swap.c:278 plugins/check_swap.c:320 | ||
4971 | msgid "Error in swapctl call\n" | 4107 | msgid "Error in swapctl call\n" |
4972 | msgstr "" | 4108 | msgstr "" |
4973 | 4109 | ||
4974 | #: plugins/check_swap.c:357 | 4110 | #, fuzzy, c-format |
4975 | #, c-format | 4111 | msgid "SWAP %s - %d%% free (%dMB out of %dMB) %s|" |
4976 | msgid "SWAP %s - %d%% free (%d MB out of %d MB) %s|" | ||
4977 | msgstr "SWAP %s - %d%% libre (%d MB sur un total de %d MB) %s|" | 4112 | msgstr "SWAP %s - %d%% libre (%d MB sur un total de %d MB) %s|" |
4978 | 4113 | ||
4979 | #: plugins/check_swap.c:435 | 4114 | #, fuzzy |
4980 | msgid "Warning threshold must be integer or percentage!" | 4115 | msgid "Warning threshold percentage must be <= 100!" |
4116 | msgstr "Le seuil d'avertissement doit être un entier positif" | ||
4117 | |||
4118 | #, fuzzy | ||
4119 | msgid "Warning threshold be positive integer or percentage!" | ||
4981 | msgstr "Le seuil d'avertissement doit être un entier ou un pourcentage!" | 4120 | msgstr "Le seuil d'avertissement doit être un entier ou un pourcentage!" |
4982 | 4121 | ||
4983 | #: plugins/check_swap.c:453 | 4122 | #, fuzzy |
4984 | msgid "Critical threshold must be integer or percentage!" | 4123 | msgid "Critical threshold percentage must be <= 100!" |
4124 | msgstr "le seuil critique doit être un entier positif" | ||
4125 | |||
4126 | #, fuzzy | ||
4127 | msgid "Critical threshold be positive integer or percentage!" | ||
4985 | msgstr "Le seuil critique doit être un entier ou un pourcentage!" | 4128 | msgstr "Le seuil critique doit être un entier ou un pourcentage!" |
4986 | 4129 | ||
4987 | #: plugins/check_swap.c:507 | 4130 | #, fuzzy |
4988 | msgid "Warning percentage should be more than critical percentage" | 4131 | msgid "" |
4132 | "no-swap result must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) " | ||
4133 | "or integer (0-3)." | ||
4989 | msgstr "" | 4134 | msgstr "" |
4990 | "Le pourcentage d'avertissement doit être plus important que le pourcentage " | 4135 | "Le résultat de temps dépassé doit être un nom d'état valide (OK, WARNING, " |
4991 | "critique" | 4136 | "CRITICAL, UNKNOWN) ou un nombre entier (0-3)." |
4992 | 4137 | ||
4993 | #: plugins/check_swap.c:511 | 4138 | #, fuzzy |
4994 | msgid "Warning free space should be more than critical free space" | 4139 | msgid "Warning should be more than critical" |
4995 | msgstr "" | 4140 | msgstr "" |
4996 | "Le seuil d'avertissement pour la place libre doit être plus grand que le " | 4141 | "Le pourcentage d'avertissement doit être plus important que le pourcentage " |
4997 | "seuil critique" | 4142 | "critique" |
4998 | 4143 | ||
4999 | #: plugins/check_swap.c:525 | ||
5000 | msgid "Check swap space on local machine." | 4144 | msgid "Check swap space on local machine." |
5001 | msgstr "Vérifie l'espace swap sur la machine locale." | 4145 | msgstr "Vérifie l'espace swap sur la machine locale." |
5002 | 4146 | ||
5003 | #: plugins/check_swap.c:535 | ||
5004 | msgid "" | 4147 | msgid "" |
5005 | "Exit with WARNING status if less than INTEGER bytes of swap space are free" | 4148 | "Exit with WARNING status if less than INTEGER bytes of swap space are free" |
5006 | msgstr "" | 4149 | msgstr "" |
5007 | "Sortir avec un résultat AVERTISSEMENT si moins de X octets de mémoire " | 4150 | "Sortir avec un résultat AVERTISSEMENT si moins de X octets de mémoire " |
5008 | "virtuelle sont libres" | 4151 | "virtuelle sont libres" |
5009 | 4152 | ||
5010 | #: plugins/check_swap.c:537 | ||
5011 | msgid "Exit with WARNING status if less than PERCENT of swap space is free" | 4153 | msgid "Exit with WARNING status if less than PERCENT of swap space is free" |
5012 | msgstr "" | 4154 | msgstr "" |
5013 | "Sortir avec un résultat AVERTISSEMENT si moins de X pour cent de mémoire " | 4155 | "Sortir avec un résultat AVERTISSEMENT si moins de X pour cent de mémoire " |
5014 | "virtuelle est libre" | 4156 | "virtuelle est libre" |
5015 | 4157 | ||
5016 | #: plugins/check_swap.c:539 | ||
5017 | msgid "" | 4158 | msgid "" |
5018 | "Exit with CRITICAL status if less than INTEGER bytes of swap space are free" | 4159 | "Exit with CRITICAL status if less than INTEGER bytes of swap space are free" |
5019 | msgstr "" | 4160 | msgstr "" |
5020 | "Sortir avec un résultat CRITIQUE si moins de X octets de mémoire virtuelle " | 4161 | "Sortir avec un résultat CRITIQUE si moins de X octets de mémoire virtuelle " |
5021 | "sont libres" | 4162 | "sont libres" |
5022 | 4163 | ||
5023 | #: plugins/check_swap.c:541 | 4164 | msgid "Exit with CRITICAL status if less than PERCENT of swap space is free" |
5024 | msgid "Exit with CRITCAL status if less than PERCENT of swap space is free" | ||
5025 | msgstr "" | 4165 | msgstr "" |
5026 | "Sortir avec un résultat CRITIQUE si moins de X pour cent de mémoire " | 4166 | "Sortir avec un résultat CRITIQUE si moins de X pour cent de mémoire " |
5027 | "virtuelle est libre" | 4167 | "virtuelle est libre" |
5028 | 4168 | ||
5029 | #: plugins/check_swap.c:543 | ||
5030 | msgid "Conduct comparisons for all swap partitions, one by one" | 4169 | msgid "Conduct comparisons for all swap partitions, one by one" |
5031 | msgstr "Vérifier chacune des partitions de mémoire virtuelle séparément" | 4170 | msgstr "Vérifier chacune des partitions de mémoire virtuelle séparément" |
5032 | 4171 | ||
5033 | #: plugins/check_swap.c:548 | 4172 | msgid "" |
4173 | "Resulting state when there is no swap regardless of thresholds. Default:" | ||
4174 | msgstr "" | ||
4175 | |||
4176 | #, fuzzy | ||
4177 | msgid "" | ||
4178 | "Both INTEGER and PERCENT thresholds can be specified, they are all checked." | ||
4179 | msgstr "Les seuils d'alerte et critiques peuvent être spécifiés avec -w et -c." | ||
4180 | |||
5034 | msgid "On AIX, if -a is specified, uses lsps -a, otherwise uses lsps -s." | 4181 | msgid "On AIX, if -a is specified, uses lsps -a, otherwise uses lsps -s." |
5035 | msgstr "" | 4182 | msgstr "" |
5036 | "Sur AIX, si -a est spécifié, le plugin utilise lsps -a, sinon il utilise " | 4183 | "Sur AIX, si -a est spécifié, le plugin utilise lsps -a, sinon il utilise " |
5037 | "lsps -s." | 4184 | "lsps -s." |
5038 | 4185 | ||
5039 | #: plugins/check_tcp.c:206 | ||
5040 | msgid "CRITICAL - Generic check_tcp called with unknown service\n" | 4186 | msgid "CRITICAL - Generic check_tcp called with unknown service\n" |
5041 | msgstr "" | 4187 | msgstr "" |
5042 | "CRITIQUE -check_tcp version générique utilisé avec un service inconnu\n" | 4188 | "CRITIQUE -check_tcp version générique utilisé avec un service inconnu\n" |
5043 | 4189 | ||
5044 | #: plugins/check_tcp.c:230 | ||
5045 | msgid "With UDP checks, a send/expect string must be specified." | 4190 | msgid "With UDP checks, a send/expect string must be specified." |
5046 | msgstr "" | 4191 | msgstr "" |
5047 | "Avec la surveillance UDP, une chaîne d'envoi et un chaîne de réponse doit " | 4192 | "Avec la surveillance UDP, une chaîne d'envoi et un chaîne de réponse doit " |
5048 | "être spécifiée." | 4193 | "être spécifiée." |
5049 | 4194 | ||
5050 | #: plugins/check_tcp.c:431 | ||
5051 | msgid "No arguments found" | 4195 | msgid "No arguments found" |
5052 | msgstr "Pas de paramètres" | 4196 | msgstr "Pas de paramètres" |
5053 | 4197 | ||
5054 | #: plugins/check_tcp.c:534 | ||
5055 | msgid "Maxbytes must be a positive integer" | 4198 | msgid "Maxbytes must be a positive integer" |
5056 | msgstr "Maxbytes doit être un entier positif" | 4199 | msgstr "Maxbytes doit être un entier positif" |
5057 | 4200 | ||
5058 | #: plugins/check_tcp.c:552 | ||
5059 | msgid "Refuse must be one of ok, warn, crit" | 4201 | msgid "Refuse must be one of ok, warn, crit" |
5060 | msgstr "Refuse doit être parmis ok, warn, crit" | 4202 | msgstr "Refuse doit être parmis ok, warn, crit" |
5061 | 4203 | ||
5062 | #: plugins/check_tcp.c:562 | ||
5063 | msgid "Mismatch must be one of ok, warn, crit" | 4204 | msgid "Mismatch must be one of ok, warn, crit" |
5064 | msgstr "Mismatch doit être parmis ok, warn, crit" | 4205 | msgstr "Mismatch doit être parmis ok, warn, crit" |
5065 | 4206 | ||
5066 | #: plugins/check_tcp.c:568 | ||
5067 | msgid "Delay must be a positive integer" | 4207 | msgid "Delay must be a positive integer" |
5068 | msgstr "Delay doit être un entier positif" | 4208 | msgstr "Delay doit être un entier positif" |
5069 | 4209 | ||
5070 | #: plugins/check_tcp.c:613 | ||
5071 | msgid "You must provide a server address" | 4210 | msgid "You must provide a server address" |
5072 | msgstr "Vous devez fournir une adresse serveur" | 4211 | msgstr "Vous devez fournir une adresse serveur" |
5073 | 4212 | ||
5074 | #: plugins/check_tcp.c:615 | ||
5075 | msgid "Invalid hostname, address or socket" | 4213 | msgid "Invalid hostname, address or socket" |
5076 | msgstr "Adresse/Nom/Socket invalide" | 4214 | msgstr "Adresse/Nom/Socket invalide" |
5077 | 4215 | ||
5078 | #: plugins/check_tcp.c:629 | ||
5079 | #, c-format | 4216 | #, c-format |
5080 | msgid "" | 4217 | msgid "" |
5081 | "This plugin tests %s connections with the specified host (or unix socket).\n" | 4218 | "This plugin tests %s connections with the specified host (or unix socket).\n" |
@@ -5084,400 +4221,351 @@ msgstr "" | |||
5084 | "Ce plugin teste %s connections avec l'hôte spécifié (ou socket unix).\n" | 4221 | "Ce plugin teste %s connections avec l'hôte spécifié (ou socket unix).\n" |
5085 | "\n" | 4222 | "\n" |
5086 | 4223 | ||
5087 | #: plugins/check_tcp.c:642 | 4224 | #, fuzzy |
5088 | msgid "" | 4225 | msgid "" |
5089 | "Can use \\n, \\r, \\t or \\ in send or quit string. Must come before send or " | 4226 | "Can use \\n, \\r, \\t or \\\\ in send or quit string. Must come before send " |
5090 | "quit option" | 4227 | "or quit option" |
5091 | msgstr "" | 4228 | msgstr "" |
5092 | "Permet d'utiliser \\n, \\r, \\t ou \\ dans la chaîne de caractères send ou " | 4229 | "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." | 4230 | "quit. Doit être placé avant ces dernières." |
5094 | 4231 | ||
5095 | #: plugins/check_tcp.c:643 | ||
5096 | msgid "Default: nothing added to send, \\r\\n added to end of quit" | 4232 | msgid "Default: nothing added to send, \\r\\n added to end of quit" |
5097 | msgstr "" | 4233 | msgstr "" |
5098 | "Par défaut: Rien n'est ajouté à send, \\r\\n est ajouté à la fin de quit" | 4234 | "Par défaut: Rien n'est ajouté à send, \\r\\n est ajouté à la fin de quit" |
5099 | 4235 | ||
5100 | #: plugins/check_tcp.c:645 | ||
5101 | msgid "String to send to the server" | 4236 | msgid "String to send to the server" |
5102 | msgstr "Chaîne de caractères à envoyer au serveur" | 4237 | msgstr "Chaîne de caractères à envoyer au serveur" |
5103 | 4238 | ||
5104 | #: plugins/check_tcp.c:647 | ||
5105 | msgid "String to expect in server response" | 4239 | msgid "String to expect in server response" |
5106 | msgstr "Chaîne de caractères à attendre en réponse" | 4240 | msgstr "Chaîne de caractères à attendre en réponse" |
5107 | 4241 | ||
5108 | #: plugins/check_tcp.c:647 | ||
5109 | msgid "(may be repeated)" | 4242 | msgid "(may be repeated)" |
5110 | msgstr "(peut être utilisé plusieurs fois)" | 4243 | msgstr "(peut être utilisé plusieurs fois)" |
5111 | 4244 | ||
5112 | #: plugins/check_tcp.c:649 | ||
5113 | msgid "All expect strings need to occur in server response. Default is any" | 4245 | msgid "All expect strings need to occur in server response. Default is any" |
5114 | msgstr "" | 4246 | msgstr "" |
5115 | "Toutes les chaînes attendus (expect) doivent être repérés dans la réponse. " | 4247 | "Toutes les chaînes attendus (expect) doivent être repérés dans la réponse. " |
5116 | "Par défaut, n'importe laquelle suffit." | 4248 | "Par défaut, n'importe laquelle suffit." |
5117 | 4249 | ||
5118 | #: plugins/check_tcp.c:651 | ||
5119 | msgid "String to send server to initiate a clean close of the connection" | 4250 | msgid "String to send server to initiate a clean close of the connection" |
5120 | msgstr "Chaîne de caractères à envoyer pour fermer gracieusement la connection" | 4251 | msgstr "Chaîne de caractères à envoyer pour fermer gracieusement la connection" |
5121 | 4252 | ||
5122 | #: plugins/check_tcp.c:653 | ||
5123 | msgid "Accept TCP refusals with states ok, warn, crit (default: crit)" | 4253 | msgid "Accept TCP refusals with states ok, warn, crit (default: crit)" |
5124 | msgstr "" | 4254 | msgstr "" |
5125 | 4255 | ||
5126 | #: plugins/check_tcp.c:655 | ||
5127 | msgid "" | 4256 | msgid "" |
5128 | "Accept expected string mismatches with states ok, warn, crit (default: warn)" | 4257 | "Accept expected string mismatches with states ok, warn, crit (default: warn)" |
5129 | msgstr "" | 4258 | msgstr "" |
5130 | 4259 | ||
5131 | #: plugins/check_tcp.c:657 | ||
5132 | msgid "Hide output from TCP socket" | 4260 | msgid "Hide output from TCP socket" |
5133 | msgstr "Cacher la réponse provenant du socket TCP" | 4261 | msgstr "Cacher la réponse provenant du socket TCP" |
5134 | 4262 | ||
5135 | #: plugins/check_tcp.c:659 | ||
5136 | msgid "Close connection once more than this number of bytes are received" | 4263 | msgid "Close connection once more than this number of bytes are received" |
5137 | msgstr "" | 4264 | msgstr "" |
5138 | 4265 | ||
5139 | #: plugins/check_tcp.c:661 | ||
5140 | msgid "Seconds to wait between sending string and polling for response" | 4266 | msgid "Seconds to wait between sending string and polling for response" |
5141 | msgstr "" | 4267 | msgstr "" |
5142 | 4268 | ||
5143 | #: plugins/check_tcp.c:666 | ||
5144 | msgid "1st is #days for warning, 2nd is critical (if not specified - 0)." | 4269 | msgid "1st is #days for warning, 2nd is critical (if not specified - 0)." |
5145 | msgstr "" | 4270 | msgstr "" |
5146 | 4271 | ||
5147 | #: plugins/check_tcp.c:668 | ||
5148 | msgid "Use SSL for the connection." | 4272 | msgid "Use SSL for the connection." |
5149 | msgstr "" | 4273 | msgstr "" |
5150 | 4274 | ||
5151 | #: plugins/check_time.c:102 | 4275 | #, fuzzy |
4276 | msgid "SSL server_name" | ||
4277 | msgstr "Nom d'utilisateur SNMPv3" | ||
4278 | |||
5152 | #, c-format | 4279 | #, c-format |
5153 | msgid "TIME UNKNOWN - could not connect to server %s, port %d\n" | 4280 | msgid "TIME UNKNOWN - could not connect to server %s, port %d\n" |
5154 | msgstr "TEMPS INCONNU - impossible de se connecter au serveur %s, au port %d\n" | 4281 | msgstr "TEMPS INCONNU - impossible de se connecter au serveur %s, au port %d\n" |
5155 | 4282 | ||
5156 | #: plugins/check_time.c:115 | ||
5157 | #, c-format | 4283 | #, c-format |
5158 | msgid "TIME UNKNOWN - could not send UDP request to server %s, port %d\n" | 4284 | msgid "TIME UNKNOWN - could not send UDP request to server %s, port %d\n" |
5159 | msgstr "" | 4285 | msgstr "" |
5160 | "TEMPS INCONNU - impossible d'envoyer une requête UDP au serveur %s, au port " | 4286 | "TEMPS INCONNU - impossible d'envoyer une requête UDP au serveur %s, au port " |
5161 | "%d\n" | 4287 | "%d\n" |
5162 | 4288 | ||
5163 | #: plugins/check_time.c:139 | ||
5164 | #, c-format | 4289 | #, c-format |
5165 | msgid "TIME UNKNOWN - no data received from server %s, port %d\n" | 4290 | msgid "TIME UNKNOWN - no data received from server %s, port %d\n" |
5166 | msgstr "TEMPS INCONNU - pas de données reçues du serveur %s, du port %d\n" | 4291 | msgstr "TEMPS INCONNU - pas de données reçues du serveur %s, du port %d\n" |
5167 | 4292 | ||
5168 | #: plugins/check_time.c:152 | ||
5169 | #, c-format | 4293 | #, c-format |
5170 | msgid "TIME %s - %d second response time|%s\n" | 4294 | msgid "TIME %s - %d second response time|%s\n" |
5171 | msgstr "TEMPS %s - %d secondes de temps de réponse|%s\n" | 4295 | msgstr "TEMPS %s - %d secondes de temps de réponse|%s\n" |
5172 | 4296 | ||
5173 | #: plugins/check_time.c:170 | ||
5174 | #, c-format | 4297 | #, c-format |
5175 | msgid "TIME %s - %lu second time difference|%s %s\n" | 4298 | msgid "TIME %s - %lu second time difference|%s %s\n" |
5176 | msgstr "TEMPS %s - %lu secondes de différence|%s %s\n" | 4299 | msgstr "TEMPS %s - %lu secondes de différence|%s %s\n" |
5177 | 4300 | ||
5178 | #: plugins/check_time.c:254 | ||
5179 | msgid "Warning thresholds must be a positive integer" | 4301 | msgid "Warning thresholds must be a positive integer" |
5180 | msgstr "Les seuils d'avertissement doivent être un entier positif" | 4302 | msgstr "Les seuils d'avertissement doivent être un entier positif" |
5181 | 4303 | ||
5182 | #: plugins/check_time.c:273 | ||
5183 | msgid "Critical thresholds must be a positive integer" | 4304 | msgid "Critical thresholds must be a positive integer" |
5184 | msgstr "Les seuils critiques doivent être un entier positif" | 4305 | msgstr "Les seuils critiques doivent être un entier positif" |
5185 | 4306 | ||
5186 | #: plugins/check_time.c:339 | ||
5187 | msgid "This plugin will check the time on the specified host." | 4307 | msgid "This plugin will check the time on the specified host." |
5188 | msgstr "Ce plugin va vérifier l'heure sur l'hôte spécifié." | 4308 | msgstr "Ce plugin va vérifier l'heure sur l'hôte spécifié." |
5189 | 4309 | ||
5190 | #: plugins/check_time.c:351 | ||
5191 | msgid "Use UDP to connect, not TCP" | 4310 | msgid "Use UDP to connect, not TCP" |
5192 | msgstr "" | 4311 | msgstr "" |
5193 | 4312 | ||
5194 | #: plugins/check_time.c:353 | ||
5195 | msgid "Time difference (sec.) necessary to result in a warning status" | 4313 | msgid "Time difference (sec.) necessary to result in a warning status" |
5196 | msgstr "" | 4314 | msgstr "" |
5197 | 4315 | ||
5198 | #: plugins/check_time.c:355 | ||
5199 | msgid "Time difference (sec.) necessary to result in a critical status" | 4316 | msgid "Time difference (sec.) necessary to result in a critical status" |
5200 | msgstr "" | 4317 | msgstr "" |
5201 | 4318 | ||
5202 | #: plugins/check_time.c:357 | ||
5203 | msgid "Response time (sec.) necessary to result in warning status" | 4319 | msgid "Response time (sec.) necessary to result in warning status" |
5204 | msgstr "" | 4320 | msgstr "" |
5205 | 4321 | ||
5206 | #: plugins/check_time.c:359 | ||
5207 | msgid "Response time (sec.) necessary to result in critical status" | 4322 | msgid "Response time (sec.) necessary to result in critical status" |
5208 | msgstr "" | 4323 | msgstr "" |
5209 | 4324 | ||
5210 | #: plugins/check_ups.c:144 | ||
5211 | msgid "On Battery, Low Battery" | 4325 | msgid "On Battery, Low Battery" |
5212 | msgstr "Sur Batterie, Batterie faible" | 4326 | msgstr "Sur Batterie, Batterie faible" |
5213 | 4327 | ||
5214 | #: plugins/check_ups.c:149 | ||
5215 | msgid "Online" | 4328 | msgid "Online" |
5216 | msgstr "En marche" | 4329 | msgstr "En marche" |
5217 | 4330 | ||
5218 | #: plugins/check_ups.c:152 | ||
5219 | msgid "On Battery" | 4331 | msgid "On Battery" |
5220 | msgstr "Sur Batterie" | 4332 | msgstr "Sur Batterie" |
5221 | 4333 | ||
5222 | #: plugins/check_ups.c:156 | ||
5223 | msgid ", Low Battery" | 4334 | msgid ", Low Battery" |
5224 | msgstr ", Batterie faible" | 4335 | msgstr ", Batterie faible" |
5225 | 4336 | ||
5226 | #: plugins/check_ups.c:160 | ||
5227 | msgid ", Calibrating" | 4337 | msgid ", Calibrating" |
5228 | msgstr ", Calibration" | 4338 | msgstr ", Calibration" |
5229 | 4339 | ||
5230 | #: plugins/check_ups.c:163 | ||
5231 | msgid ", Replace Battery" | 4340 | msgid ", Replace Battery" |
5232 | msgstr ", Remplacer la batterie" | 4341 | msgstr ", Remplacer la batterie" |
5233 | 4342 | ||
5234 | #: plugins/check_ups.c:167 | ||
5235 | msgid ", On Bypass" | 4343 | msgid ", On Bypass" |
5236 | msgstr ", Sur Secteur" | 4344 | msgstr ", Sur Secteur" |
5237 | 4345 | ||
5238 | #: plugins/check_ups.c:170 | ||
5239 | msgid ", Overload" | 4346 | msgid ", Overload" |
5240 | msgstr ", Surcharge" | 4347 | msgstr ", Surcharge" |
5241 | 4348 | ||
5242 | #: plugins/check_ups.c:173 | ||
5243 | msgid ", Trimming" | 4349 | msgid ", Trimming" |
5244 | msgstr ", En Test" | 4350 | msgstr ", En Test" |
5245 | 4351 | ||
5246 | #: plugins/check_ups.c:176 | ||
5247 | msgid ", Boosting" | 4352 | msgid ", Boosting" |
5248 | msgstr "" | 4353 | msgstr "" |
5249 | 4354 | ||
5250 | #: plugins/check_ups.c:179 | ||
5251 | msgid ", Charging" | 4355 | msgid ", Charging" |
5252 | msgstr ", En charge" | 4356 | msgstr ", En charge" |
5253 | 4357 | ||
5254 | #: plugins/check_ups.c:182 | ||
5255 | msgid ", Discharging" | 4358 | msgid ", Discharging" |
5256 | msgstr ", Déchargement" | 4359 | msgstr ", Déchargement" |
5257 | 4360 | ||
5258 | #: plugins/check_ups.c:185 | ||
5259 | msgid ", Unknown" | 4361 | msgid ", Unknown" |
5260 | msgstr ", Inconnu" | 4362 | msgstr ", Inconnu" |
5261 | 4363 | ||
5262 | #: plugins/check_ups.c:324 | ||
5263 | msgid "UPS does not support any available options\n" | 4364 | msgid "UPS does not support any available options\n" |
5264 | msgstr "L'UPS ne supporte aucune des options disponibles\n" | 4365 | msgstr "L'UPS ne supporte aucune des options disponibles\n" |
5265 | 4366 | ||
5266 | #: plugins/check_ups.c:348 plugins/check_ups.c:411 | ||
5267 | msgid "Invalid response received from host" | 4367 | msgid "Invalid response received from host" |
5268 | msgstr "Réponse invalide reçue de l'hôte" | 4368 | msgstr "Réponse invalide reçue de l'hôte" |
5269 | 4369 | ||
5270 | #: plugins/check_ups.c:420 | 4370 | msgid "UPS name to long for buffer" |
4371 | msgstr "" | ||
4372 | |||
5271 | #, c-format | 4373 | #, c-format |
5272 | msgid "CRITICAL - no such UPS '%s' on that host\n" | 4374 | msgid "CRITICAL - no such UPS '%s' on that host\n" |
5273 | msgstr "CRITIQUE - pas d'UPS '%s' sur cet hôte\n" | 4375 | msgstr "CRITIQUE - pas d'UPS '%s' sur cet hôte\n" |
5274 | 4376 | ||
5275 | #: plugins/check_ups.c:430 | ||
5276 | msgid "CRITICAL - UPS data is stale" | 4377 | msgid "CRITICAL - UPS data is stale" |
5277 | msgstr "CRITIQUE - les données de l'ups ne sont plus valables" | 4378 | msgstr "CRITIQUE - les données de l'ups ne sont plus valables" |
5278 | 4379 | ||
5279 | #: plugins/check_ups.c:435 | ||
5280 | #, c-format | 4380 | #, c-format |
5281 | msgid "Unknown error: %s\n" | 4381 | msgid "Unknown error: %s\n" |
5282 | msgstr "Erreur inconnue: %s\n" | 4382 | msgstr "Erreur inconnue: %s\n" |
5283 | 4383 | ||
5284 | #: plugins/check_ups.c:442 | ||
5285 | msgid "Error: unable to parse variable" | 4384 | msgid "Error: unable to parse variable" |
5286 | msgstr "Erreur: impossible de lire la variable" | 4385 | msgstr "Erreur: impossible de lire la variable" |
5287 | 4386 | ||
5288 | #: plugins/check_ups.c:549 | ||
5289 | msgid "Unrecognized UPS variable" | 4387 | msgid "Unrecognized UPS variable" |
5290 | msgstr "Variable d'UPS non reconnue" | 4388 | msgstr "Variable d'UPS non reconnue" |
5291 | 4389 | ||
5292 | #: plugins/check_ups.c:587 | ||
5293 | msgid "Error : no UPS indicated" | 4390 | msgid "Error : no UPS indicated" |
5294 | msgstr "Erreur: pas d'UPS indiqué" | 4391 | msgstr "Erreur: pas d'UPS indiqué" |
5295 | 4392 | ||
5296 | #: plugins/check_ups.c:607 | ||
5297 | msgid "" | 4393 | msgid "" |
5298 | "This plugin tests the UPS service on the specified host. Network UPS Tools" | 4394 | "This plugin tests the UPS service on the specified host. Network UPS Tools" |
5299 | msgstr "Ce plugin teste le service UPS sur l'hôte spécifié. Network UPS Tools" | 4395 | msgstr "Ce plugin teste le service UPS sur l'hôte spécifié. Network UPS Tools" |
5300 | 4396 | ||
5301 | #: plugins/check_ups.c:608 | ||
5302 | msgid "from www.networkupstools.org must be running for this plugin to work." | 4397 | msgid "from www.networkupstools.org must be running for this plugin to work." |
5303 | msgstr "" | 4398 | msgstr "" |
5304 | "de www.networkupstools.org doit s'exécuter sur l'hôte pour que ce plugin " | 4399 | "de www.networkupstools.org doit s'exécuter sur l'hôte pour que ce plugin " |
5305 | "fonctionne." | 4400 | "fonctionne." |
5306 | 4401 | ||
5307 | #: plugins/check_ups.c:620 | ||
5308 | msgid "Name of UPS" | 4402 | msgid "Name of UPS" |
5309 | msgstr "" | 4403 | msgstr "" |
5310 | 4404 | ||
5311 | #: plugins/check_ups.c:622 | ||
5312 | msgid "Output of temperatures in Celsius" | 4405 | msgid "Output of temperatures in Celsius" |
5313 | msgstr "Affichage des températures en Celsius" | 4406 | msgstr "Affichage des températures en Celsius" |
5314 | 4407 | ||
5315 | #: plugins/check_ups.c:624 | ||
5316 | msgid "Valid values for STRING are" | 4408 | msgid "Valid values for STRING are" |
5317 | msgstr "Les variables valides pour STRING sont" | 4409 | msgstr "Les variables valides pour STRING sont" |
5318 | 4410 | ||
5319 | #: plugins/check_ups.c:635 | ||
5320 | msgid "" | 4411 | msgid "" |
5321 | "This plugin attempts to determine the status of a UPS (Uninterruptible Power" | 4412 | "This plugin attempts to determine the status of a UPS (Uninterruptible Power" |
5322 | msgstr "" | 4413 | msgstr "" |
5323 | 4414 | ||
5324 | #: plugins/check_ups.c:636 | ||
5325 | msgid "" | 4415 | msgid "" |
5326 | "Supply) on a local or remote host. If the UPS is online or calibrating, the" | 4416 | "Supply) on a local or remote host. If the UPS is online or calibrating, the" |
5327 | msgstr "" | 4417 | msgstr "" |
5328 | 4418 | ||
5329 | #: plugins/check_ups.c:637 | ||
5330 | msgid "" | 4419 | msgid "" |
5331 | "plugin will return an OK state. If the battery is on it will return a WARNING" | 4420 | "plugin will return an OK state. If the battery is on it will return a WARNING" |
5332 | msgstr "" | 4421 | msgstr "" |
5333 | 4422 | ||
5334 | #: plugins/check_ups.c:638 | ||
5335 | msgid "" | 4423 | msgid "" |
5336 | "state. If the UPS is off or has a low battery the plugin will return a " | 4424 | "state. If the UPS is off or has a low battery the plugin will return a " |
5337 | "CRITICAL" | 4425 | "CRITICAL" |
5338 | msgstr "" | 4426 | msgstr "" |
5339 | 4427 | ||
5340 | #: plugins/check_ups.c:643 | ||
5341 | msgid "" | 4428 | msgid "" |
5342 | "You may also specify a variable to check (such as temperature, utility " | 4429 | "You may also specify a variable to check (such as temperature, utility " |
5343 | "voltage," | 4430 | "voltage," |
5344 | msgstr "" | 4431 | msgstr "" |
5345 | 4432 | ||
5346 | #: plugins/check_ups.c:644 | ||
5347 | msgid "" | 4433 | msgid "" |
5348 | "battery load, etc.) as well as warning and critical thresholds for the value" | 4434 | "battery load, etc.) as well as warning and critical thresholds for the value" |
5349 | msgstr "" | 4435 | msgstr "" |
5350 | 4436 | ||
5351 | #: plugins/check_ups.c:645 | ||
5352 | msgid "" | 4437 | msgid "" |
5353 | "of that variable. If the remote host has multiple UPS that are being " | 4438 | "of that variable. If the remote host has multiple UPS that are being " |
5354 | "monitored" | 4439 | "monitored" |
5355 | msgstr "" | 4440 | msgstr "" |
5356 | 4441 | ||
5357 | #: plugins/check_ups.c:646 | ||
5358 | msgid "you will have to use the --ups option to specify which UPS to check." | 4442 | msgid "you will have to use the --ups option to specify which UPS to check." |
5359 | msgstr "" | 4443 | msgstr "" |
5360 | 4444 | ||
5361 | #: plugins/check_ups.c:648 | ||
5362 | msgid "" | 4445 | msgid "" |
5363 | "This plugin requires that the UPSD daemon distributed with Russell Kroll's" | 4446 | "This plugin requires that the UPSD daemon distributed with Russell Kroll's" |
5364 | msgstr "" | 4447 | msgstr "" |
5365 | 4448 | ||
5366 | #: plugins/check_ups.c:649 | ||
5367 | msgid "" | 4449 | msgid "" |
5368 | "Network UPS Tools be installed on the remote host. If you do not have the" | 4450 | "Network UPS Tools be installed on the remote host. If you do not have the" |
5369 | msgstr "" | 4451 | msgstr "" |
5370 | 4452 | ||
5371 | #: plugins/check_ups.c:650 | ||
5372 | msgid "package installed on your system, you can download it from" | 4453 | msgid "package installed on your system, you can download it from" |
5373 | msgstr "" | 4454 | msgstr "" |
5374 | 4455 | ||
5375 | #: plugins/check_ups.c:651 | ||
5376 | msgid "http://www.networkupstools.org" | 4456 | msgid "http://www.networkupstools.org" |
5377 | msgstr "" | 4457 | msgstr "" |
5378 | 4458 | ||
5379 | #: plugins/check_users.c:110 | 4459 | #, fuzzy, c-format |
4460 | msgid "Could not enumerate RD sessions: %d\n" | ||
4461 | msgstr "Impossible d'utiliser le protocole version %d\n" | ||
4462 | |||
5380 | #, c-format | 4463 | #, c-format |
5381 | msgid "# users=%d" | 4464 | msgid "# users=%d" |
5382 | msgstr "# utilisateurs=%d" | 4465 | msgstr "# utilisateurs=%d" |
5383 | 4466 | ||
5384 | #: plugins/check_users.c:133 | ||
5385 | msgid "Unable to read output" | 4467 | msgid "Unable to read output" |
5386 | msgstr "Impossible de lire les données en entrée" | 4468 | msgstr "Impossible de lire les données en entrée" |
5387 | 4469 | ||
5388 | #: plugins/check_users.c:140 | ||
5389 | #, c-format | 4470 | #, c-format |
5390 | msgid "USERS %s - %d users currently logged in |%s\n" | 4471 | msgid "USERS %s - %d users currently logged in |%s\n" |
5391 | msgstr "UTILISATEURS %s - %d utilisateurs actuellement connectés sur |%s\n" | 4472 | msgstr "UTILISATEURS %s - %d utilisateurs actuellement connectés sur |%s\n" |
5392 | 4473 | ||
5393 | #: plugins/check_users.c:219 | ||
5394 | msgid "This plugin checks the number of users currently logged in on the local" | 4474 | msgid "This plugin checks the number of users currently logged in on the local" |
5395 | msgstr "" | 4475 | msgstr "" |
5396 | "Ce plugin vérifie le nombre d'utilisateurs actuellement connecté sur le " | 4476 | "Ce plugin vérifie le nombre d'utilisateurs actuellement connecté sur le " |
5397 | "système local" | 4477 | "système local" |
5398 | 4478 | ||
5399 | #: plugins/check_users.c:220 | ||
5400 | msgid "" | 4479 | msgid "" |
5401 | "system and generates an error if the number exceeds the thresholds specified." | 4480 | "system and generates an error if the number exceeds the thresholds specified." |
5402 | msgstr "et génère une erreur si le nombre excède le seuil spécifié." | 4481 | msgstr "et génère une erreur si le nombre excède le seuil spécifié." |
5403 | 4482 | ||
5404 | #: plugins/check_users.c:230 | ||
5405 | msgid "Set WARNING status if more than INTEGER users are logged in" | 4483 | msgid "Set WARNING status if more than INTEGER users are logged in" |
5406 | msgstr "" | 4484 | msgstr "" |
5407 | "Sortir avec un résultat AVERTISSEMENT si plus de INTEGER utilisateurs sont " | 4485 | "Sortir avec un résultat AVERTISSEMENT si plus de INTEGER utilisateurs sont " |
5408 | "connectés" | 4486 | "connectés" |
5409 | 4487 | ||
5410 | #: plugins/check_users.c:232 | ||
5411 | msgid "Set CRITICAL status if more than INTEGER users are logged in" | 4488 | msgid "Set CRITICAL status if more than INTEGER users are logged in" |
5412 | msgstr "" | 4489 | msgstr "" |
5413 | "Sortir avec un résultat CRITIQUE si plus de INTEGER utilisateurs sont " | 4490 | "Sortir avec un résultat CRITIQUE si plus de INTEGER utilisateurs sont " |
5414 | "connectés" | 4491 | "connectés" |
5415 | 4492 | ||
5416 | #: plugins/check_ide_smart.c:256 | 4493 | msgid "" |
4494 | "DEPRECATION WARNING: the -q switch (quiet output) is no longer \"quiet\"." | ||
4495 | msgstr "" | ||
4496 | |||
4497 | msgid "Nagios-compatible output is now always returned." | ||
4498 | msgstr "" | ||
4499 | |||
4500 | msgid "SMART commands are broken and have been disabled (See Notes in --help)." | ||
4501 | msgstr "" | ||
4502 | |||
4503 | msgid "" | ||
4504 | "DEPRECATION WARNING: the -n switch (Nagios-compatible output) is now the" | ||
4505 | msgstr "" | ||
4506 | |||
4507 | #, fuzzy | ||
4508 | msgid "default and will be removed from future releases." | ||
4509 | msgstr "" | ||
4510 | "Note: nslookup est obsolète et pourra être retiré dans les prochaines " | ||
4511 | "versions." | ||
4512 | |||
5417 | #, c-format | 4513 | #, c-format |
5418 | msgid "CRITICAL - Couldn't open device %s: %s\n" | 4514 | msgid "CRITICAL - Couldn't open device %s: %s\n" |
5419 | msgstr "Critique - Impossible d'ouvrir le périphérique %s: %s\n" | 4515 | msgstr "Critique - Impossible d'ouvrir le périphérique %s: %s\n" |
5420 | 4516 | ||
5421 | #: plugins/check_ide_smart.c:261 | ||
5422 | #, c-format | 4517 | #, c-format |
5423 | msgid "CRITICAL - SMART_CMD_ENABLE\n" | 4518 | msgid "CRITICAL - SMART_CMD_ENABLE\n" |
5424 | msgstr "CRITIQUE - SMART_CMD_ENABLE\n" | 4519 | msgstr "CRITIQUE - SMART_CMD_ENABLE\n" |
5425 | 4520 | ||
5426 | #: plugins/check_ide_smart.c:323 plugins/check_ide_smart.c:350 | ||
5427 | #, c-format | 4521 | #, c-format |
5428 | msgid "CRITICAL - SMART_READ_VALUES: %s\n" | 4522 | msgid "CRITICAL - SMART_READ_VALUES: %s\n" |
5429 | msgstr "CRITIQUE - SMART_READ_VALUES: %s\n" | 4523 | msgstr "CRITIQUE - SMART_READ_VALUES: %s\n" |
5430 | 4524 | ||
5431 | #: plugins/check_ide_smart.c:421 | ||
5432 | #, c-format | 4525 | #, c-format |
5433 | msgid "CRITICAL - %d Harddrive PreFailure%cDetected! %d/%d tests failed.\n" | 4526 | msgid "CRITICAL - %d Harddrive PreFailure%cDetected! %d/%d tests failed.\n" |
5434 | msgstr "" | 4527 | msgstr "" |
5435 | "CRITIQUE - %d État de pré-panne %c Détecté! %d/%d les tests on échoués.\n" | 4528 | "CRITIQUE - %d État de pré-panne %c Détecté! %d/%d les tests on échoués.\n" |
5436 | 4529 | ||
5437 | #: plugins/check_ide_smart.c:429 | ||
5438 | #, c-format | 4530 | #, c-format |
5439 | msgid "WARNING - %d Harddrive Advisor%s Detected. %d/%d tests failed.\n" | 4531 | msgid "WARNING - %d Harddrive Advisor%s Detected. %d/%d tests failed.\n" |
5440 | msgstr "" | 4532 | msgstr "" |
5441 | "AVERTISSEMENT - %d État de pré-panne %s Détecté! %d/%d les tests on " | 4533 | "AVERTISSEMENT - %d État de pré-panne %s Détecté! %d/%d les tests on " |
5442 | "échoués.\n" | 4534 | "échoués.\n" |
5443 | 4535 | ||
5444 | #: plugins/check_ide_smart.c:437 | ||
5445 | #, c-format | 4536 | #, c-format |
5446 | msgid "OK - Operational (%d/%d tests passed)\n" | 4537 | msgid "OK - Operational (%d/%d tests passed)\n" |
5447 | msgstr "OK - En fonctionnement (%d/%d les tests on été réussi)\n" | 4538 | msgstr "OK - En fonctionnement (%d/%d les tests on été réussi)\n" |
5448 | 4539 | ||
5449 | #: plugins/check_ide_smart.c:441 | ||
5450 | #, c-format | 4540 | #, c-format |
5451 | msgid "ERROR - Status '%d' unknown. %d/%d tests passed\n" | 4541 | msgid "ERROR - Status '%d' unknown. %d/%d tests passed\n" |
5452 | msgstr "ERREUR - État '%d' inconnu. %d/%d les tests on réussi\n" | 4542 | msgstr "ERREUR - État '%d' inconnu. %d/%d les tests on réussi\n" |
5453 | 4543 | ||
5454 | #: plugins/check_ide_smart.c:474 | ||
5455 | #, c-format | 4544 | #, c-format |
5456 | msgid "OffLineStatus=%d {%s}, AutoOffLine=%s, OffLineTimeout=%d minutes\n" | 4545 | msgid "OffLineStatus=%d {%s}, AutoOffLine=%s, OffLineTimeout=%d minutes\n" |
5457 | msgstr "" | 4546 | msgstr "" |
5458 | "Etat Hors Ligne=%d {%s}, Hors Ligne Auto=%s, Temps avant arrêt=%d minutes\n" | 4547 | "Etat Hors Ligne=%d {%s}, Hors Ligne Auto=%s, Temps avant arrêt=%d minutes\n" |
5459 | 4548 | ||
5460 | #: plugins/check_ide_smart.c:480 | ||
5461 | #, c-format | 4549 | #, c-format |
5462 | msgid "OffLineCapability=%d {%s %s %s}\n" | 4550 | msgid "OffLineCapability=%d {%s %s %s}\n" |
5463 | msgstr "Capacité Hors Ligne=%d {%s %s %s}\n" | 4551 | msgstr "Capacité Hors Ligne=%d {%s %s %s}\n" |
5464 | 4552 | ||
5465 | #: plugins/check_ide_smart.c:486 | ||
5466 | #, c-format | 4553 | #, c-format |
5467 | msgid "SmartRevision=%d, CheckSum=%d, SmartCapability=%d {%s %s}\n" | 4554 | msgid "SmartRevision=%d, CheckSum=%d, SmartCapability=%d {%s %s}\n" |
5468 | msgstr "Révision Smart=%d, Somme de contrôle=%d, Capacité Smart=%d {%s %s}\n" | 4555 | msgstr "Révision Smart=%d, Somme de contrôle=%d, Capacité Smart=%d {%s %s}\n" |
5469 | 4556 | ||
5470 | #: plugins/check_ide_smart.c:508 plugins/check_ide_smart.c:532 | ||
5471 | #, c-format | 4557 | #, c-format |
5472 | msgid "CRITICAL - %s: %s\n" | 4558 | msgid "CRITICAL - %s: %s\n" |
5473 | msgstr "CRITIQUE - %s: %s\n" | 4559 | msgstr "CRITIQUE - %s: %s\n" |
5474 | 4560 | ||
5475 | #: plugins/check_ide_smart.c:553 plugins/check_ide_smart.c:580 | 4561 | #, fuzzy, c-format |
4562 | msgid "OK - Command sent (%s)\n" | ||
4563 | msgstr "Commande: %s\n" | ||
4564 | |||
5476 | #, c-format | 4565 | #, c-format |
5477 | msgid "CRITICAL - SMART_READ_THRESHOLDS: %s\n" | 4566 | msgid "CRITICAL - SMART_READ_THRESHOLDS: %s\n" |
5478 | msgstr "CRITIQUE - SMART_READ_THRESHOLDS: %s\n" | 4567 | msgstr "CRITIQUE - SMART_READ_THRESHOLDS: %s\n" |
5479 | 4568 | ||
5480 | #: plugins/check_ide_smart.c:599 | ||
5481 | #, c-format | 4569 | #, c-format |
5482 | msgid "" | 4570 | msgid "" |
5483 | "This plugin checks a local hard drive with the (Linux specific) SMART " | 4571 | "This plugin checks a local hard drive with the (Linux specific) SMART " |
@@ -5486,41 +4574,39 @@ msgstr "" | |||
5486 | "Ce plugin vérifie un disque dur local à l'aide de l'interface SMART (pour " | 4574 | "Ce plugin vérifie un disque dur local à l'aide de l'interface SMART (pour " |
5487 | "Linux) [http://smartlinux.sourceforge.net/smart/index.php]." | 4575 | "Linux) [http://smartlinux.sourceforge.net/smart/index.php]." |
5488 | 4576 | ||
5489 | #: plugins/check_ide_smart.c:609 | ||
5490 | msgid "Select device DEVICE" | 4577 | msgid "Select device DEVICE" |
5491 | msgstr "" | 4578 | msgstr "" |
5492 | 4579 | ||
5493 | #: plugins/check_ide_smart.c:610 | ||
5494 | msgid "" | 4580 | msgid "" |
5495 | "Note: if the device is selected with this option, _no_ other options are " | 4581 | "Note: if the device is specified without this option, any further option will" |
5496 | "accepted" | 4582 | msgstr "" |
4583 | |||
4584 | msgid "be ignored." | ||
4585 | msgstr "" | ||
4586 | |||
4587 | msgid "" | ||
4588 | "The SMART command modes (-i/--immediate, -0/--auto-off and -1/--auto-on) were" | ||
5497 | msgstr "" | 4589 | msgstr "" |
5498 | 4590 | ||
5499 | #: plugins/check_ide_smart.c:612 | 4591 | msgid "" |
5500 | msgid "Perform immediately offline tests" | 4592 | "broken in an underhand manner and have been disabled. You can use smartctl" |
5501 | msgstr "" | 4593 | msgstr "" |
5502 | 4594 | ||
5503 | #: plugins/check_ide_smart.c:614 | 4595 | msgid "instead:" |
5504 | msgid "Returns the number of failed tests" | ||
5505 | msgstr "" | 4596 | msgstr "" |
5506 | 4597 | ||
5507 | #: plugins/check_ide_smart.c:616 | 4598 | msgid "-0/--auto-off: use \"smartctl --offlineauto=off\"" |
5508 | msgid "Turn on automatic offline tests" | ||
5509 | msgstr "" | 4599 | msgstr "" |
5510 | 4600 | ||
5511 | #: plugins/check_ide_smart.c:618 | 4601 | msgid "-1/--auto-on: use \"smartctl --offlineauto=on\"" |
5512 | msgid "Turn off automatic offline tests" | ||
5513 | msgstr "" | 4602 | msgstr "" |
5514 | 4603 | ||
5515 | #: plugins/check_ide_smart.c:620 | 4604 | msgid "-i/--immediate: use \"smartctl --test=offline\"" |
5516 | msgid "Output suitable for the monitoring system" | ||
5517 | msgstr "" | 4605 | msgstr "" |
5518 | 4606 | ||
5519 | #: plugins/negate.c:99 | ||
5520 | msgid "No data returned from command\n" | 4607 | msgid "No data returned from command\n" |
5521 | msgstr "Pas de données reçues de la commande\n" | 4608 | msgstr "Pas de données reçues de la commande\n" |
5522 | 4609 | ||
5523 | #: plugins/negate.c:170 | ||
5524 | msgid "" | 4610 | msgid "" |
5525 | "Timeout result must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) " | 4611 | "Timeout result must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) " |
5526 | "or integer (0-3)." | 4612 | "or integer (0-3)." |
@@ -5528,7 +4614,6 @@ msgstr "" | |||
5528 | "Le résultat de temps dépassé doit être un nom d'état valide (OK, WARNING, " | 4614 | "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)." | 4615 | "CRITICAL, UNKNOWN) ou un nombre entier (0-3)." |
5530 | 4616 | ||
5531 | #: plugins/negate.c:174 | ||
5532 | msgid "" | 4617 | msgid "" |
5533 | "Ok must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or integer " | 4618 | "Ok must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or integer " |
5534 | "(0-3)." | 4619 | "(0-3)." |
@@ -5536,7 +4621,6 @@ msgstr "" | |||
5536 | "Ok doit être un nom d'état valide (OK, WARNING, CRITICAL, UNKNOWN) ou un " | 4621 | "Ok doit être un nom d'état valide (OK, WARNING, CRITICAL, UNKNOWN) ou un " |
5537 | "nombre entier (0-3)." | 4622 | "nombre entier (0-3)." |
5538 | 4623 | ||
5539 | #: plugins/negate.c:180 | ||
5540 | msgid "" | 4624 | msgid "" |
5541 | "Warning must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or " | 4625 | "Warning must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or " |
5542 | "integer (0-3)." | 4626 | "integer (0-3)." |
@@ -5544,7 +4628,6 @@ msgstr "" | |||
5544 | "Warning doit être un nom d'état valide (OK, WARNING, CRITICAL, UNKNOWN) ou " | 4628 | "Warning doit être un nom d'état valide (OK, WARNING, CRITICAL, UNKNOWN) ou " |
5545 | "un nombre entier (0-3)." | 4629 | "un nombre entier (0-3)." |
5546 | 4630 | ||
5547 | #: plugins/negate.c:185 | ||
5548 | msgid "" | 4631 | msgid "" |
5549 | "Critical must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or " | 4632 | "Critical must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or " |
5550 | "integer (0-3)." | 4633 | "integer (0-3)." |
@@ -5552,7 +4635,6 @@ msgstr "" | |||
5552 | "Critical doit être un nom d'état valide (OK, WARNING, CRITICAL, UNKNOWN) ou " | 4635 | "Critical doit être un nom d'état valide (OK, WARNING, CRITICAL, UNKNOWN) ou " |
5553 | "un nombre entier (0-3)." | 4636 | "un nombre entier (0-3)." |
5554 | 4637 | ||
5555 | #: plugins/negate.c:190 | ||
5556 | msgid "" | 4638 | msgid "" |
5557 | "Unknown must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or " | 4639 | "Unknown must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or " |
5558 | "integer (0-3)." | 4640 | "integer (0-3)." |
@@ -5560,33 +4642,27 @@ msgstr "" | |||
5560 | "Unknown doit être un nom d'état valide (OK, WARNING, CRITICAL, UNKNOWN) ou " | 4642 | "Unknown doit être un nom d'état valide (OK, WARNING, CRITICAL, UNKNOWN) ou " |
5561 | "un nombre entier (0-3)." | 4643 | "un nombre entier (0-3)." |
5562 | 4644 | ||
5563 | #: plugins/negate.c:217 | ||
5564 | msgid "Require path to command" | 4645 | msgid "Require path to command" |
5565 | msgstr "Chemin vers la commande requis" | 4646 | msgstr "Chemin vers la commande requis" |
5566 | 4647 | ||
5567 | #: plugins/negate.c:246 | ||
5568 | msgid "" | 4648 | msgid "" |
5569 | "Negates the status of a plugin (returns OK for CRITICAL and vice-versa)." | 4649 | "Negates the status of a plugin (returns OK for CRITICAL and vice-versa)." |
5570 | msgstr "" | 4650 | msgstr "" |
5571 | "Inverse le statut d'un plugin (retourne OK pour CRITIQUE et vice-versa)." | 4651 | "Inverse le statut d'un plugin (retourne OK pour CRITIQUE et vice-versa)." |
5572 | 4652 | ||
5573 | #: plugins/negate.c:247 | ||
5574 | msgid "Additional switches can be used to control which state becomes what." | 4653 | msgid "Additional switches can be used to control which state becomes what." |
5575 | msgstr "" | 4654 | msgstr "" |
5576 | "Des options additionnelles peuvent être utilisées pour contrôler quel état " | 4655 | "Des options additionnelles peuvent être utilisées pour contrôler quel état " |
5577 | "devient quoi." | 4656 | "devient quoi." |
5578 | 4657 | ||
5579 | #: plugins/negate.c:256 | ||
5580 | msgid "Keep timeout longer than the plugin timeout to retain CRITICAL status." | 4658 | msgid "Keep timeout longer than the plugin timeout to retain CRITICAL status." |
5581 | msgstr "" | 4659 | msgstr "" |
5582 | "Utilisez un délai de réponse plus long que celui du plugin afin de conserver " | 4660 | "Utilisez un délai de réponse plus long que celui du plugin afin de conserver " |
5583 | "les résultats CRITIQUE" | 4661 | "les résultats CRITIQUE" |
5584 | 4662 | ||
5585 | #: plugins/negate.c:258 | ||
5586 | msgid "Custom result on Negate timeouts; see below for STATUS definition\n" | 4663 | msgid "Custom result on Negate timeouts; see below for STATUS definition\n" |
5587 | msgstr "" | 4664 | msgstr "" |
5588 | 4665 | ||
5589 | #: plugins/negate.c:264 | ||
5590 | #, c-format | 4666 | #, c-format |
5591 | msgid "" | 4667 | msgid "" |
5592 | " STATUS can be 'OK', 'WARNING', 'CRITICAL' or 'UNKNOWN' without single\n" | 4668 | " STATUS can be 'OK', 'WARNING', 'CRITICAL' or 'UNKNOWN' without single\n" |
@@ -5594,129 +4670,99 @@ msgstr "" | |||
5594 | " STATUS peut être 'OK', 'WARNING', 'CRITICAL' ou 'UNKNOWN' sans les " | 4670 | " STATUS peut être 'OK', 'WARNING', 'CRITICAL' ou 'UNKNOWN' sans les " |
5595 | "simple\n" | 4671 | "simple\n" |
5596 | 4672 | ||
5597 | #: plugins/negate.c:265 | ||
5598 | #, c-format | 4673 | #, c-format |
5599 | msgid "" | 4674 | msgid "" |
5600 | " quotes. Numeric values are accepted. If nothing is specified, permutes\n" | 4675 | " quotes. Numeric values are accepted. If nothing is specified, permutes\n" |
5601 | msgstr " quotes. Les valeurs numériques sont acceptées. Si rien n'est\n" | 4676 | msgstr " quotes. Les valeurs numériques sont acceptées. Si rien n'est\n" |
5602 | 4677 | ||
5603 | #: plugins/negate.c:266 | ||
5604 | #, c-format | 4678 | #, c-format |
5605 | msgid " OK and CRITICAL.\n" | 4679 | msgid " OK and CRITICAL.\n" |
5606 | msgstr " spécifié, inverse OK et CRITIQUE.\n" | 4680 | msgstr " spécifié, inverse OK et CRITIQUE.\n" |
5607 | 4681 | ||
5608 | #: plugins/negate.c:268 | ||
5609 | #, c-format | 4682 | #, c-format |
5610 | msgid "" | 4683 | msgid "" |
5611 | " Substitute output text as well. Will only substitute text in CAPITALS\n" | 4684 | " Substitute output text as well. Will only substitute text in CAPITALS\n" |
5612 | msgstr "" | 4685 | msgstr "" |
5613 | 4686 | ||
5614 | #: plugins/negate.c:273 | ||
5615 | msgid "Run check_ping and invert result. Must use full path to plugin" | 4687 | msgid "Run check_ping and invert result. Must use full path to plugin" |
5616 | msgstr "" | 4688 | msgstr "" |
5617 | "Execute check_ping et inverse le résultat. Le chemin complet du plug-in doit " | 4689 | "Execute check_ping et inverse le résultat. Le chemin complet du plug-in doit " |
5618 | "être spécifié" | 4690 | "être spécifié" |
5619 | 4691 | ||
5620 | #: plugins/negate.c:275 | ||
5621 | msgid "This will return OK instead of WARNING and UNKNOWN instead of CRITICAL" | 4692 | msgid "This will return OK instead of WARNING and UNKNOWN instead of CRITICAL" |
5622 | msgstr "" | 4693 | msgstr "" |
5623 | "Ceci retournera OK au lieu de AVERTISSEMENT et INCONNU au lieu de CRITIQUE" | 4694 | "Ceci retournera OK au lieu de AVERTISSEMENT et INCONNU au lieu de CRITIQUE" |
5624 | 4695 | ||
5625 | #: plugins/negate.c:278 | ||
5626 | msgid "" | 4696 | msgid "" |
5627 | "This plugin is a wrapper to take the output of another plugin and invert it." | 4697 | "This plugin is a wrapper to take the output of another plugin and invert it." |
5628 | msgstr "" | 4698 | msgstr "" |
5629 | "Ce plugin est un adaptateur qui prends l'état d'un autre plug-in et " | 4699 | "Ce plugin est un adaptateur qui prends l'état d'un autre plug-in et " |
5630 | "l'inverse." | 4700 | "l'inverse." |
5631 | 4701 | ||
5632 | #: plugins/negate.c:279 | ||
5633 | msgid "The full path of the plugin must be provided." | 4702 | msgid "The full path of the plugin must be provided." |
5634 | msgstr "Le chemin complet du plugin doit être spécifié." | 4703 | msgstr "Le chemin complet du plugin doit être spécifié." |
5635 | 4704 | ||
5636 | #: plugins/negate.c:280 | ||
5637 | msgid "If the wrapped plugin returns OK, the wrapper will return CRITICAL." | 4705 | msgid "If the wrapped plugin returns OK, the wrapper will return CRITICAL." |
5638 | msgstr "Si le plugin executé retourne OK, l'adaptateur retournera CRITIQUE." | 4706 | msgstr "Si le plugin executé retourne OK, l'adaptateur retournera CRITIQUE." |
5639 | 4707 | ||
5640 | #: plugins/negate.c:281 | ||
5641 | msgid "If the wrapped plugin returns CRITICAL, the wrapper will return OK." | 4708 | msgid "If the wrapped plugin returns CRITICAL, the wrapper will return OK." |
5642 | msgstr "Si le plugin executé retourne CRITIQUE, l'adaptateur retournera OK." | 4709 | msgstr "Si le plugin executé retourne CRITIQUE, l'adaptateur retournera OK." |
5643 | 4710 | ||
5644 | #: plugins/negate.c:282 | ||
5645 | msgid "Otherwise, the output state of the wrapped plugin is unchanged." | 4711 | msgid "Otherwise, the output state of the wrapped plugin is unchanged." |
5646 | msgstr "Autrement, l'état du plugin executé reste inchangé." | 4712 | msgstr "Autrement, l'état du plugin executé reste inchangé." |
5647 | 4713 | ||
5648 | #: plugins/negate.c:284 | ||
5649 | msgid "" | 4714 | msgid "" |
5650 | "Using timeout-result, it is possible to override the timeout behaviour or a" | 4715 | "Using timeout-result, it is possible to override the timeout behaviour or a" |
5651 | msgstr "" | 4716 | msgstr "" |
5652 | 4717 | ||
5653 | #: plugins/negate.c:285 | ||
5654 | msgid "plugin by setting the negate timeout a bit lower." | 4718 | msgid "plugin by setting the negate timeout a bit lower." |
5655 | msgstr "" | 4719 | msgstr "" |
5656 | 4720 | ||
5657 | #: plugins/netutils.c:49 | ||
5658 | #, c-format | 4721 | #, c-format |
5659 | msgid "%s - Socket timeout after %d seconds\n" | 4722 | msgid "%s - Socket timeout after %d seconds\n" |
5660 | msgstr "%s - Le socket n'a pas répondu dans les %d secondes\n" | 4723 | msgstr "%s - Le socket n'a pas répondu dans les %d secondes\n" |
5661 | 4724 | ||
5662 | #: plugins/netutils.c:51 | ||
5663 | #, c-format | 4725 | #, c-format |
5664 | msgid "%s - Abnormal timeout after %d seconds\n" | 4726 | msgid "%s - Abnormal timeout after %d seconds\n" |
5665 | msgstr "%s - Dépassement anormal du temps de réponse après %d secondes\n" | 4727 | msgstr "%s - Dépassement anormal du temps de réponse après %d secondes\n" |
5666 | 4728 | ||
5667 | #: plugins/netutils.c:79 plugins/netutils.c:281 | ||
5668 | msgid "Send failed" | 4729 | msgid "Send failed" |
5669 | msgstr "L'envoi à échoué" | 4730 | msgstr "L'envoi à échoué" |
5670 | 4731 | ||
5671 | #: plugins/netutils.c:96 plugins/netutils.c:296 | ||
5672 | msgid "No data was received from host!" | 4732 | msgid "No data was received from host!" |
5673 | msgstr "Pas de données reçues de l'hôte!" | 4733 | msgstr "Pas de données reçues de l'hôte!" |
5674 | 4734 | ||
5675 | #: plugins/netutils.c:204 plugins/netutils.c:240 | ||
5676 | msgid "Socket creation failed" | 4735 | msgid "Socket creation failed" |
5677 | msgstr "La création du socket à échoué " | 4736 | msgstr "La création du socket à échoué " |
5678 | 4737 | ||
5679 | #: plugins/netutils.c:233 | ||
5680 | msgid "Supplied path too long unix domain socket" | 4738 | msgid "Supplied path too long unix domain socket" |
5681 | msgstr "Le chemin fourni est trop long pour un socket unix" | 4739 | msgstr "Le chemin fourni est trop long pour un socket unix" |
5682 | 4740 | ||
5683 | #: plugins/netutils.c:305 | ||
5684 | msgid "Receive failed" | 4741 | msgid "Receive failed" |
5685 | msgstr "La réception à échoué" | 4742 | msgstr "La réception à échoué" |
5686 | 4743 | ||
5687 | #: plugins/netutils.c:331 plugins-root/check_dhcp.c:1342 | ||
5688 | #, c-format | 4744 | #, c-format |
5689 | msgid "Invalid hostname/address - %s" | 4745 | msgid "Invalid hostname/address - %s" |
5690 | msgstr "Adresse/Nom invalide - %s" | 4746 | msgstr "Adresse/Nom invalide - %s" |
5691 | 4747 | ||
5692 | #: plugins/popen.c:142 | ||
5693 | msgid "Could not malloc argv array in popen()" | 4748 | msgid "Could not malloc argv array in popen()" |
5694 | msgstr "Impossible de réallouer un tableau pour les paramètres dans popen()" | 4749 | msgstr "Impossible de réallouer un tableau pour les paramètres dans popen()" |
5695 | 4750 | ||
5696 | #: plugins/popen.c:152 | ||
5697 | msgid "CRITICAL - You need more args!!!" | 4751 | msgid "CRITICAL - You need more args!!!" |
5698 | msgstr "CRITIQUE - Vous devez spécifier plus d'arguments!!!" | 4752 | msgstr "CRITIQUE - Vous devez spécifier plus d'arguments!!!" |
5699 | 4753 | ||
5700 | #: plugins/popen.c:209 | ||
5701 | msgid "Cannot catch SIGCHLD" | 4754 | msgid "Cannot catch SIGCHLD" |
5702 | msgstr "impossible d'obtenir le signal SIGCHLD" | 4755 | msgstr "impossible d'obtenir le signal SIGCHLD" |
5703 | 4756 | ||
5704 | #: plugins/popen.c:304 | ||
5705 | #, c-format | 4757 | #, c-format |
5706 | msgid "CRITICAL - Plugin timed out after %d seconds\n" | 4758 | msgid "CRITICAL - Plugin timed out after %d seconds\n" |
5707 | msgstr "CRITIQUE - Le plugin n'as pas répondu dans les %d secondes\n" | 4759 | msgstr "CRITIQUE - Le plugin n'as pas répondu dans les %d secondes\n" |
5708 | 4760 | ||
5709 | #: plugins/popen.c:307 | ||
5710 | msgid "CRITICAL - popen timeout received, but no child process" | 4761 | msgid "CRITICAL - popen timeout received, but no child process" |
5711 | msgstr "" | 4762 | msgstr "" |
5712 | "CRITIQUE - le temps d'attente à été dépassé dans la fonction popen, mais il " | 4763 | "CRITIQUE - le temps d'attente à été dépassé dans la fonction popen, mais il " |
5713 | "n'y a pas de processus fils" | 4764 | "n'y a pas de processus fils" |
5714 | 4765 | ||
5715 | #: plugins/popen.c:323 | ||
5716 | msgid "sysconf error for _SC_OPEN_MAX" | ||
5717 | msgstr "" | ||
5718 | |||
5719 | #: plugins/urlize.c:130 | ||
5720 | #, c-format | 4766 | #, c-format |
5721 | msgid "" | 4767 | msgid "" |
5722 | "%s UNKNOWN - No data received from host\n" | 4768 | "%s UNKNOWN - No data received from host\n" |
@@ -5725,7 +4771,6 @@ msgstr "" | |||
5725 | "%s INCONNU - Pas de données reçues de l'hôte\n" | 4771 | "%s INCONNU - Pas de données reçues de l'hôte\n" |
5726 | "Commande: %s</A>\n" | 4772 | "Commande: %s</A>\n" |
5727 | 4773 | ||
5728 | #: plugins/urlize.c:169 | ||
5729 | #, fuzzy | 4774 | #, fuzzy |
5730 | msgid "" | 4775 | msgid "" |
5731 | "This plugin wraps the text output of another command (plugin) in HTML <A>" | 4776 | "This plugin wraps the text output of another command (plugin) in HTML <A>" |
@@ -5733,66 +4778,51 @@ msgstr "" | |||
5733 | "Ce plugin est un adaptateur qui prends l'état d'un autre plug-in et " | 4778 | "Ce plugin est un adaptateur qui prends l'état d'un autre plug-in et " |
5734 | "l'inverse." | 4779 | "l'inverse." |
5735 | 4780 | ||
5736 | #: plugins/urlize.c:170 | ||
5737 | msgid "" | 4781 | msgid "" |
5738 | "tags, thus displaying the child plugin's output as a clickable link in " | 4782 | "tags, thus displaying the child plugin's output as a clickable link in " |
5739 | "compatible" | 4783 | "compatible" |
5740 | msgstr "" | 4784 | msgstr "" |
5741 | 4785 | ||
5742 | #: plugins/urlize.c:171 | ||
5743 | msgid "" | 4786 | msgid "" |
5744 | "monitoring status screen. This plugin returns the status of the invoked " | 4787 | "monitoring status screen. This plugin returns the status of the invoked " |
5745 | "plugin." | 4788 | "plugin." |
5746 | msgstr "" | 4789 | msgstr "" |
5747 | 4790 | ||
5748 | #: plugins/urlize.c:181 | ||
5749 | msgid "" | 4791 | msgid "" |
5750 | "Pay close attention to quoting to ensure that the shell passes the expected" | 4792 | "Pay close attention to quoting to ensure that the shell passes the expected" |
5751 | msgstr "" | 4793 | msgstr "" |
5752 | 4794 | ||
5753 | #: plugins/urlize.c:182 | ||
5754 | msgid "data to the plugin. For example, in:" | 4795 | msgid "data to the plugin. For example, in:" |
5755 | msgstr "" | 4796 | msgstr "" |
5756 | 4797 | ||
5757 | #: plugins/urlize.c:183 | ||
5758 | msgid "urlize http://example.com/ check_http -H example.com -r 'two words'" | 4798 | msgid "urlize http://example.com/ check_http -H example.com -r 'two words'" |
5759 | msgstr "" | 4799 | msgstr "" |
5760 | 4800 | ||
5761 | #: plugins/urlize.c:184 | ||
5762 | msgid "the shell will remove the single quotes and urlize will see:" | 4801 | msgid "the shell will remove the single quotes and urlize will see:" |
5763 | msgstr "" | 4802 | msgstr "" |
5764 | 4803 | ||
5765 | #: plugins/urlize.c:185 | ||
5766 | msgid "urlize http://example.com/ check_http -H example.com -r two words" | 4804 | msgid "urlize http://example.com/ check_http -H example.com -r two words" |
5767 | msgstr "" | 4805 | msgstr "" |
5768 | 4806 | ||
5769 | #: plugins/urlize.c:186 | ||
5770 | msgid "You probably want:" | 4807 | msgid "You probably want:" |
5771 | msgstr "" | 4808 | msgstr "" |
5772 | 4809 | ||
5773 | #: plugins/urlize.c:187 | ||
5774 | msgid "urlize http://example.com/ \"check_http -H example.com -r 'two words'\"" | 4810 | msgid "urlize http://example.com/ \"check_http -H example.com -r 'two words'\"" |
5775 | msgstr "" | 4811 | msgstr "" |
5776 | 4812 | ||
5777 | #: plugins/utils.c:174 | ||
5778 | #, c-format | ||
5779 | msgid "%s - Plugin timed out after %d seconds\n" | ||
5780 | msgstr "%s - Le plugin n'as pas répondu dans les %d secondes\n" | ||
5781 | |||
5782 | #: plugins/utils.c:469 | ||
5783 | msgid "failed realloc in strpcpy\n" | 4813 | msgid "failed realloc in strpcpy\n" |
5784 | msgstr "La fonction realloc à échoué dans strpcpy\n" | 4814 | msgstr "La fonction realloc à échoué dans strpcpy\n" |
5785 | 4815 | ||
5786 | #: plugins/utils.c:511 | ||
5787 | msgid "failed malloc in strscat\n" | 4816 | msgid "failed malloc in strscat\n" |
5788 | msgstr "La fonction malloc à échoué dans strscat\n" | 4817 | msgstr "La fonction malloc à échoué dans strscat\n" |
5789 | 4818 | ||
5790 | #: plugins/utils.c:531 | ||
5791 | #, fuzzy | 4819 | #, fuzzy |
5792 | msgid "failed malloc in xvasprintf\n" | 4820 | msgid "failed malloc in xvasprintf\n" |
5793 | msgstr "La fonction malloc à échoué dans strscat\n" | 4821 | msgstr "La fonction malloc à échoué dans strscat\n" |
5794 | 4822 | ||
5795 | #: plugins/utils.h:137 | 4823 | msgid "sysconf error for _SC_OPEN_MAX\n" |
4824 | msgstr "" | ||
4825 | |||
5796 | #, c-format | 4826 | #, c-format |
5797 | msgid "" | 4827 | msgid "" |
5798 | " %s (-h | --help) for detailed help\n" | 4828 | " %s (-h | --help) for detailed help\n" |
@@ -5801,7 +4831,6 @@ msgstr "" | |||
5801 | " %s (-h | --help) pour l'aide détaillée\n" | 4831 | " %s (-h | --help) pour l'aide détaillée\n" |
5802 | " %s (-V | --version) pour les informations relative à la version\n" | 4832 | " %s (-V | --version) pour les informations relative à la version\n" |
5803 | 4833 | ||
5804 | #: plugins/utils.h:141 | ||
5805 | msgid "" | 4834 | msgid "" |
5806 | "\n" | 4835 | "\n" |
5807 | "Options:\n" | 4836 | "Options:\n" |
@@ -5817,7 +4846,6 @@ msgstr "" | |||
5817 | " -V, --version\n" | 4846 | " -V, --version\n" |
5818 | " Afficher les informations relative à la version\n" | 4847 | " Afficher les informations relative à la version\n" |
5819 | 4848 | ||
5820 | #: plugins/utils.h:148 | ||
5821 | #, c-format | 4849 | #, c-format |
5822 | msgid "" | 4850 | msgid "" |
5823 | " -H, --hostname=ADDRESS\n" | 4851 | " -H, --hostname=ADDRESS\n" |
@@ -5830,7 +4858,6 @@ msgstr "" | |||
5830 | " -%c, --port=INTEGER\n" | 4858 | " -%c, --port=INTEGER\n" |
5831 | " Numéro de port (défaut: %s)\n" | 4859 | " Numéro de port (défaut: %s)\n" |
5832 | 4860 | ||
5833 | #: plugins/utils.h:154 | ||
5834 | msgid "" | 4861 | msgid "" |
5835 | " -4, --use-ipv4\n" | 4862 | " -4, --use-ipv4\n" |
5836 | " Use IPv4 connection\n" | 4863 | " Use IPv4 connection\n" |
@@ -5842,18 +4869,16 @@ msgstr "" | |||
5842 | " -6, --use-ipv6\n" | 4869 | " -6, --use-ipv6\n" |
5843 | " Utiliser une connection IPv6\n" | 4870 | " Utiliser une connection IPv6\n" |
5844 | 4871 | ||
5845 | #: plugins/utils.h:160 | ||
5846 | #, fuzzy | 4872 | #, fuzzy |
5847 | msgid "" | 4873 | msgid "" |
5848 | " -v, --verbose\n" | 4874 | " -v, --verbose\n" |
5849 | " Show details for command-line debugging (output may be truncated by\n" | 4875 | " Show details for command-line debugging (output may be truncated by\n" |
5850 | "\t\tthe monitoring system)\n" | 4876 | " the monitoring system)\n" |
5851 | msgstr "" | 4877 | msgstr "" |
5852 | " -v, --verbose\n" | 4878 | " -v, --verbose\n" |
5853 | " Affiche les informations de déboguage en ligne de commande (Nagios peut " | 4879 | " Affiche les informations de déboguage en ligne de commande (Nagios peut " |
5854 | "tronquer la sortie)\n" | 4880 | "tronquer la sortie)\n" |
5855 | 4881 | ||
5856 | #: plugins/utils.h:165 | ||
5857 | msgid "" | 4882 | msgid "" |
5858 | " -w, --warning=DOUBLE\n" | 4883 | " -w, --warning=DOUBLE\n" |
5859 | " Response time to result in warning status (seconds)\n" | 4884 | " Response time to result in warning status (seconds)\n" |
@@ -5865,7 +4890,6 @@ msgstr "" | |||
5865 | " -c, --critical=DOUBLE\n" | 4890 | " -c, --critical=DOUBLE\n" |
5866 | " Temps de réponse résultant en un état critique (secondes)\n" | 4891 | " Temps de réponse résultant en un état critique (secondes)\n" |
5867 | 4892 | ||
5868 | #: plugins/utils.h:171 | ||
5869 | msgid "" | 4893 | msgid "" |
5870 | " -w, --warning=RANGE\n" | 4894 | " -w, --warning=RANGE\n" |
5871 | " Warning range (format: start:end). Alert if outside this range\n" | 4895 | " Warning range (format: start:end). Alert if outside this range\n" |
@@ -5878,7 +4902,6 @@ msgstr "" | |||
5878 | " -c, --critical=RANGE\n" | 4902 | " -c, --critical=RANGE\n" |
5879 | " Seuil critique\n" | 4903 | " Seuil critique\n" |
5880 | 4904 | ||
5881 | #: plugins/utils.h:177 | ||
5882 | #, c-format | 4905 | #, c-format |
5883 | msgid "" | 4906 | msgid "" |
5884 | " -t, --timeout=INTEGER\n" | 4907 | " -t, --timeout=INTEGER\n" |
@@ -5887,7 +4910,14 @@ msgstr "" | |||
5887 | " -t, --timeout=INTEGER\n" | 4910 | " -t, --timeout=INTEGER\n" |
5888 | " Délais de connection en secondes (défaut: %d)\n" | 4911 | " Délais de connection en secondes (défaut: %d)\n" |
5889 | 4912 | ||
5890 | #: plugins/utils.h:182 | 4913 | #, fuzzy, c-format |
4914 | msgid "" | ||
4915 | " -t, --timeout=INTEGER\n" | ||
4916 | " Seconds before plugin times out (default: %d)\n" | ||
4917 | msgstr "" | ||
4918 | " -t, --timeout=INTEGER\n" | ||
4919 | " Délais de connection en secondes (défaut: %d)\n" | ||
4920 | |||
5891 | #, fuzzy | 4921 | #, fuzzy |
5892 | msgid "" | 4922 | msgid "" |
5893 | " --extra-opts=[section][@file]\n" | 4923 | " --extra-opts=[section][@file]\n" |
@@ -5900,7 +4930,6 @@ msgstr "" | |||
5900 | " https://www.monitoring-plugins.org/doc/extra-opts.html\n" | 4930 | " https://www.monitoring-plugins.org/doc/extra-opts.html\n" |
5901 | " pour les instructions et examples.\n" | 4931 | " pour les instructions et examples.\n" |
5902 | 4932 | ||
5903 | #: plugins/utils.h:190 | ||
5904 | #, fuzzy | 4933 | #, fuzzy |
5905 | msgid "" | 4934 | msgid "" |
5906 | " See:\n" | 4935 | " See:\n" |
@@ -5912,7 +4941,6 @@ msgstr "" | |||
5912 | "html#THRESHOLDFORMAT\n" | 4941 | "html#THRESHOLDFORMAT\n" |
5913 | " pour le format et examples des seuils (THRESHOLD).\n" | 4942 | " pour le format et examples des seuils (THRESHOLD).\n" |
5914 | 4943 | ||
5915 | #: plugins/utils.h:195 | ||
5916 | #, fuzzy | 4944 | #, fuzzy |
5917 | msgid "" | 4945 | msgid "" |
5918 | "\n" | 4946 | "\n" |
@@ -5922,14 +4950,12 @@ msgid "" | |||
5922 | "\n" | 4950 | "\n" |
5923 | msgstr "" | 4951 | msgstr "" |
5924 | "\n" | 4952 | "\n" |
5925 | "Envoyez un email à help@monitoring-plugins.org si vous avez des " | 4953 | "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 " | 4954 | "reliées à l'utilisation de ce logiciel. Pour envoyer des patches ou suggérer " |
5928 | "des\n" | 4955 | "des\n" |
5929 | "améliorations, envoyez un email à devel@monitoring-plugins.org\n" | 4956 | "améliorations, envoyez un email à devel@monitoring-plugins.org\n" |
5930 | "\n" | 4957 | "\n" |
5931 | 4958 | ||
5932 | #: plugins/utils.h:200 | ||
5933 | #, fuzzy | 4959 | #, fuzzy |
5934 | msgid "" | 4960 | msgid "" |
5935 | "\n" | 4961 | "\n" |
@@ -5943,25 +4969,21 @@ msgstr "" | |||
5943 | "des copies des plugins selon les termes de la GNU General Public License.\n" | 4969 | "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" | 4970 | "Pour de plus ample informations, voir le fichier COPYING.\n" |
5945 | 4971 | ||
5946 | #: plugins-root/check_dhcp.c:320 | ||
5947 | #, c-format | 4972 | #, c-format |
5948 | msgid "Error: Could not get hardware address of interface '%s'\n" | 4973 | msgid "Error: Could not get hardware address of interface '%s'\n" |
5949 | msgstr "" | 4974 | msgstr "" |
5950 | "Erreur: Impossible d'obtenir l'adresse matérielle pour l'interface '%s'\n" | 4975 | "Erreur: Impossible d'obtenir l'adresse matérielle pour l'interface '%s'\n" |
5951 | 4976 | ||
5952 | #: plugins-root/check_dhcp.c:342 | ||
5953 | #, c-format | 4977 | #, c-format |
5954 | msgid "Error: if_nametoindex error - %s.\n" | 4978 | msgid "Error: if_nametoindex error - %s.\n" |
5955 | msgstr "Erreur: if_nametoindex erreur - %s.\n" | 4979 | msgstr "Erreur: if_nametoindex erreur - %s.\n" |
5956 | 4980 | ||
5957 | #: plugins-root/check_dhcp.c:347 | ||
5958 | #, c-format | 4981 | #, c-format |
5959 | msgid "Error: Couldn't get hardware address from %s. sysctl 1 error - %s.\n" | 4982 | msgid "Error: Couldn't get hardware address from %s. sysctl 1 error - %s.\n" |
5960 | msgstr "" | 4983 | msgstr "" |
5961 | "Erreur: Impossible d'obtenir l'adresse matérielle depuis %s. erreur sysctl 1 " | 4984 | "Erreur: Impossible d'obtenir l'adresse matérielle depuis %s. erreur sysctl 1 " |
5962 | "- %s.\n" | 4985 | "- %s.\n" |
5963 | 4986 | ||
5964 | #: plugins-root/check_dhcp.c:352 | ||
5965 | #, c-format | 4987 | #, c-format |
5966 | msgid "" | 4988 | msgid "" |
5967 | "Error: Couldn't get hardware address from interface %s. malloc error - %s.\n" | 4989 | "Error: Couldn't get hardware address from interface %s. malloc error - %s.\n" |
@@ -5969,14 +4991,12 @@ msgstr "" | |||
5969 | "Erreur: Impossible d'obtenir l'adresse matérielle depuis l'interface %s\n" | 4991 | "Erreur: Impossible d'obtenir l'adresse matérielle depuis l'interface %s\n" |
5970 | " erreur malloc - %s.\n" | 4992 | " erreur malloc - %s.\n" |
5971 | 4993 | ||
5972 | #: plugins-root/check_dhcp.c:357 | ||
5973 | #, c-format | 4994 | #, c-format |
5974 | msgid "Error: Couldn't get hardware address from %s. sysctl 2 error - %s.\n" | 4995 | msgid "Error: Couldn't get hardware address from %s. sysctl 2 error - %s.\n" |
5975 | msgstr "" | 4996 | msgstr "" |
5976 | "Erreur: Impossible d'obtenir l'adresse matérielle depuis %s erreur sysctl 2 " | 4997 | "Erreur: Impossible d'obtenir l'adresse matérielle depuis %s erreur sysctl 2 " |
5977 | "- %s.\n" | 4998 | "- %s.\n" |
5978 | 4999 | ||
5979 | #: plugins-root/check_dhcp.c:388 | ||
5980 | #, c-format | 5000 | #, c-format |
5981 | msgid "" | 5001 | msgid "" |
5982 | "Error: can't find unit number in interface_name (%s) - expecting TypeNumber " | 5002 | "Error: can't find unit number in interface_name (%s) - expecting TypeNumber " |
@@ -5985,7 +5005,6 @@ msgstr "" | |||
5985 | "Erreur: impossible de trouver le numéro dans le nom de l'interface (%s).\n" | 5005 | "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" | 5006 | "J'attendais le nom suivi du type ex lnc0.\n" |
5987 | 5007 | ||
5988 | #: plugins-root/check_dhcp.c:393 plugins-root/check_dhcp.c:405 | ||
5989 | #, c-format | 5008 | #, c-format |
5990 | msgid "" | 5009 | msgid "" |
5991 | "Error: can't read MAC address from DLPI streams interface for device %s unit " | 5010 | "Error: can't read MAC address from DLPI streams interface for device %s unit " |
@@ -5994,7 +5013,6 @@ msgstr "" | |||
5994 | "Erreur: impossible de lire l'adresse MAC depuis l'interface DLPI pour le \n" | 5013 | "Erreur: impossible de lire l'adresse MAC depuis l'interface DLPI pour le \n" |
5995 | "périphérique %s numéro %d.\n" | 5014 | "périphérique %s numéro %d.\n" |
5996 | 5015 | ||
5997 | #: plugins-root/check_dhcp.c:411 | ||
5998 | #, c-format | 5016 | #, c-format |
5999 | msgid "" | 5017 | msgid "" |
6000 | "Error: can't get MAC address for this architecture. Use the --mac option.\n" | 5018 | "Error: can't get MAC address for this architecture. Use the --mac option.\n" |
@@ -6002,47 +5020,38 @@ msgstr "" | |||
6002 | "Erreur: impossible d'obtenir l'adresse MAC sur cette architecture. Utilisez " | 5020 | "Erreur: impossible d'obtenir l'adresse MAC sur cette architecture. Utilisez " |
6003 | "l'option --mac.\n" | 5021 | "l'option --mac.\n" |
6004 | 5022 | ||
6005 | #: plugins-root/check_dhcp.c:430 | ||
6006 | #, c-format | 5023 | #, c-format |
6007 | msgid "Error: Cannot determine IP address of interface %s\n" | 5024 | msgid "Error: Cannot determine IP address of interface %s\n" |
6008 | msgstr "Erreur: Impossible d'obtenir l'adresse IP de l'interface %s\n" | 5025 | msgstr "Erreur: Impossible d'obtenir l'adresse IP de l'interface %s\n" |
6009 | 5026 | ||
6010 | #: plugins-root/check_dhcp.c:438 | ||
6011 | #, c-format | 5027 | #, c-format |
6012 | msgid "Error: Cannot get interface IP address on this platform.\n" | 5028 | msgid "Error: Cannot get interface IP address on this platform.\n" |
6013 | msgstr "Erreur: Impossible d'obtenir l'adresse IP sur cette architecture.\n" | 5029 | msgstr "Erreur: Impossible d'obtenir l'adresse IP sur cette architecture.\n" |
6014 | 5030 | ||
6015 | #: plugins-root/check_dhcp.c:443 | ||
6016 | #, c-format | 5031 | #, c-format |
6017 | msgid "Pretending to be relay client %s\n" | 5032 | msgid "Pretending to be relay client %s\n" |
6018 | msgstr "" | 5033 | msgstr "" |
6019 | 5034 | ||
6020 | #: plugins-root/check_dhcp.c:528 | ||
6021 | #, c-format | 5035 | #, c-format |
6022 | msgid "DHCPDISCOVER to %s port %d\n" | 5036 | msgid "DHCPDISCOVER to %s port %d\n" |
6023 | msgstr "DHCPDISCOVER vers %s port %d\n" | 5037 | msgstr "DHCPDISCOVER vers %s port %d\n" |
6024 | 5038 | ||
6025 | #: plugins-root/check_dhcp.c:580 | ||
6026 | #, c-format | 5039 | #, c-format |
6027 | msgid "Result=ERROR\n" | 5040 | msgid "Result=ERROR\n" |
6028 | msgstr "Résultat=ERREUR\n" | 5041 | msgstr "Résultat=ERREUR\n" |
6029 | 5042 | ||
6030 | #: plugins-root/check_dhcp.c:586 | ||
6031 | #, c-format | 5043 | #, c-format |
6032 | msgid "Result=OK\n" | 5044 | msgid "Result=OK\n" |
6033 | msgstr "Résultat=OK\n" | 5045 | msgstr "Résultat=OK\n" |
6034 | 5046 | ||
6035 | #: plugins-root/check_dhcp.c:596 | ||
6036 | #, c-format | 5047 | #, c-format |
6037 | msgid "DHCPOFFER from IP address %s" | 5048 | msgid "DHCPOFFER from IP address %s" |
6038 | msgstr "DHCPOFFER depuis l'adresse IP %s" | 5049 | msgstr "DHCPOFFER depuis l'adresse IP %s" |
6039 | 5050 | ||
6040 | #: plugins-root/check_dhcp.c:597 | ||
6041 | #, c-format | 5051 | #, c-format |
6042 | msgid " via %s\n" | 5052 | msgid " via %s\n" |
6043 | msgstr " depuis %s\n" | 5053 | msgstr " depuis %s\n" |
6044 | 5054 | ||
6045 | #: plugins-root/check_dhcp.c:604 | ||
6046 | #, c-format | 5055 | #, c-format |
6047 | msgid "" | 5056 | msgid "" |
6048 | "DHCPOFFER XID (%u) did not match DHCPDISCOVER XID (%u) - ignoring packet\n" | 5057 | "DHCPOFFER XID (%u) did not match DHCPDISCOVER XID (%u) - ignoring packet\n" |
@@ -6050,67 +5059,55 @@ msgstr "" | |||
6050 | "DHCPOFFER XID (%u) ne correspond pas au DHCPDISCOVER XID (%u) - paquet " | 5059 | "DHCPOFFER XID (%u) ne correspond pas au DHCPDISCOVER XID (%u) - paquet " |
6051 | "ignoré\n" | 5060 | "ignoré\n" |
6052 | 5061 | ||
6053 | #: plugins-root/check_dhcp.c:626 | ||
6054 | #, c-format | 5062 | #, c-format |
6055 | msgid "DHCPOFFER hardware address did not match our own - ignoring packet\n" | 5063 | msgid "DHCPOFFER hardware address did not match our own - ignoring packet\n" |
6056 | msgstr "" | 5064 | msgstr "" |
6057 | "l'adresse matérielle du DHCPOFFER ne correspond pas à la notre paquet " | 5065 | "l'adresse matérielle du DHCPOFFER ne correspond pas à la notre paquet " |
6058 | "ignoré\n" | 5066 | "ignoré\n" |
6059 | 5067 | ||
6060 | #: plugins-root/check_dhcp.c:644 | ||
6061 | #, c-format | 5068 | #, c-format |
6062 | msgid "Total responses seen on the wire: %d\n" | 5069 | msgid "Total responses seen on the wire: %d\n" |
6063 | msgstr "Nombre total de réponses vues: %d\n" | 5070 | msgstr "Nombre total de réponses vues: %d\n" |
6064 | 5071 | ||
6065 | #: plugins-root/check_dhcp.c:645 | ||
6066 | #, c-format | 5072 | #, c-format |
6067 | msgid "Valid responses for this machine: %d\n" | 5073 | msgid "Valid responses for this machine: %d\n" |
6068 | msgstr "Nombre de réponse valides pour cette machine: %d\n" | 5074 | msgstr "Nombre de réponse valides pour cette machine: %d\n" |
6069 | 5075 | ||
6070 | #: plugins-root/check_dhcp.c:660 | ||
6071 | #, c-format | 5076 | #, c-format |
6072 | msgid "send_dhcp_packet result: %d\n" | 5077 | msgid "send_dhcp_packet result: %d\n" |
6073 | msgstr "résultat de send_dchp_packet: %d\n" | 5078 | msgstr "résultat de send_dchp_packet: %d\n" |
6074 | 5079 | ||
6075 | #: plugins-root/check_dhcp.c:693 | ||
6076 | #, c-format | 5080 | #, c-format |
6077 | msgid "No (more) data received (nfound: %d)\n" | 5081 | msgid "No (more) data received (nfound: %d)\n" |
6078 | msgstr "Plus de données reçues (nfound: %d)\n" | 5082 | msgstr "Plus de données reçues (nfound: %d)\n" |
6079 | 5083 | ||
6080 | #: plugins-root/check_dhcp.c:712 | ||
6081 | #, c-format | 5084 | #, c-format |
6082 | msgid "recvfrom() failed, " | 5085 | msgid "recvfrom() failed, " |
6083 | msgstr "recvfrom() a échoué, " | 5086 | msgstr "recvfrom() a échoué, " |
6084 | 5087 | ||
6085 | #: plugins-root/check_dhcp.c:719 | ||
6086 | #, c-format | 5088 | #, c-format |
6087 | msgid "receive_dhcp_packet() result: %d\n" | 5089 | msgid "receive_dhcp_packet() result: %d\n" |
6088 | msgstr "résultat de receive_dchp_packet(): %d\n" | 5090 | msgstr "résultat de receive_dchp_packet(): %d\n" |
6089 | 5091 | ||
6090 | #: plugins-root/check_dhcp.c:720 | ||
6091 | #, c-format | 5092 | #, c-format |
6092 | msgid "receive_dhcp_packet() source: %s\n" | 5093 | msgid "receive_dhcp_packet() source: %s\n" |
6093 | msgstr "source de receive_dchp_packet(): %s\n" | 5094 | msgstr "source de receive_dchp_packet(): %s\n" |
6094 | 5095 | ||
6095 | #: plugins-root/check_dhcp.c:750 | ||
6096 | #, c-format | 5096 | #, c-format |
6097 | msgid "Error: Could not create socket!\n" | 5097 | msgid "Error: Could not create socket!\n" |
6098 | msgstr "Erreur: Impossible de créer un socket!\n" | 5098 | msgstr "Erreur: Impossible de créer un socket!\n" |
6099 | 5099 | ||
6100 | #: plugins-root/check_dhcp.c:760 | ||
6101 | #, c-format | 5100 | #, c-format |
6102 | msgid "Error: Could not set reuse address option on DHCP socket!\n" | 5101 | msgid "Error: Could not set reuse address option on DHCP socket!\n" |
6103 | msgstr "" | 5102 | msgstr "" |
6104 | "Erreur: Impossible de configurer l'option de réutilisation de l'adresse sur\n" | 5103 | "Erreur: Impossible de configurer l'option de réutilisation de l'adresse sur\n" |
6105 | "le socket DHCP!\n" | 5104 | "le socket DHCP!\n" |
6106 | 5105 | ||
6107 | #: plugins-root/check_dhcp.c:766 | ||
6108 | #, c-format | 5106 | #, c-format |
6109 | msgid "Error: Could not set broadcast option on DHCP socket!\n" | 5107 | msgid "Error: Could not set broadcast option on DHCP socket!\n" |
6110 | msgstr "" | 5108 | msgstr "" |
6111 | "Erreur: Impossible de configurer l'option broadcast sur le socket DHCP!\n" | 5109 | "Erreur: Impossible de configurer l'option broadcast sur le socket DHCP!\n" |
6112 | 5110 | ||
6113 | #: plugins-root/check_dhcp.c:775 | ||
6114 | #, c-format | 5111 | #, c-format |
6115 | msgid "" | 5112 | msgid "" |
6116 | "Error: Could not bind socket to interface %s. Check your privileges...\n" | 5113 | "Error: Could not bind socket to interface %s. Check your privileges...\n" |
@@ -6118,7 +5115,6 @@ msgstr "" | |||
6118 | "Erreur: Impossible de connecter le socket à l'interface %s.\n" | 5115 | "Erreur: Impossible de connecter le socket à l'interface %s.\n" |
6119 | "Vérifiez vos droits...\n" | 5116 | "Vérifiez vos droits...\n" |
6120 | 5117 | ||
6121 | #: plugins-root/check_dhcp.c:786 | ||
6122 | #, c-format | 5118 | #, c-format |
6123 | msgid "" | 5119 | msgid "" |
6124 | "Error: Could not bind to DHCP socket (port %d)! Check your privileges...\n" | 5120 | "Error: Could not bind to DHCP socket (port %d)! Check your privileges...\n" |
@@ -6126,256 +5122,235 @@ msgstr "" | |||
6126 | "Erreur: Impossible de se connecter au socket (port %d)! Vérifiez vos " | 5122 | "Erreur: Impossible de se connecter au socket (port %d)! Vérifiez vos " |
6127 | "droits..\n" | 5123 | "droits..\n" |
6128 | 5124 | ||
6129 | #: plugins-root/check_dhcp.c:820 | ||
6130 | #, c-format | 5125 | #, c-format |
6131 | msgid "Requested server address: %s\n" | 5126 | msgid "Requested server address: %s\n" |
6132 | msgstr "Adresse serveur demandée: %s\n" | 5127 | msgstr "Adresse serveur demandée: %s\n" |
6133 | 5128 | ||
6134 | #: plugins-root/check_dhcp.c:882 | ||
6135 | #, c-format | 5129 | #, c-format |
6136 | msgid "Lease Time: Infinite\n" | 5130 | msgid "Lease Time: Infinite\n" |
6137 | msgstr "Durée du Bail: Infini\n" | 5131 | msgstr "Durée du Bail: Infini\n" |
6138 | 5132 | ||
6139 | #: plugins-root/check_dhcp.c:884 | ||
6140 | #, c-format | 5133 | #, c-format |
6141 | msgid "Lease Time: %lu seconds\n" | 5134 | msgid "Lease Time: %lu seconds\n" |
6142 | msgstr "Durée du Bail: %lu secondes\n" | 5135 | msgstr "Durée du Bail: %lu secondes\n" |
6143 | 5136 | ||
6144 | #: plugins-root/check_dhcp.c:886 | ||
6145 | #, c-format | 5137 | #, c-format |
6146 | msgid "Renewal Time: Infinite\n" | 5138 | msgid "Renewal Time: Infinite\n" |
6147 | msgstr "Renouvellement du bail: Infini\n" | 5139 | msgstr "Renouvellement du bail: Infini\n" |
6148 | 5140 | ||
6149 | #: plugins-root/check_dhcp.c:888 | ||
6150 | #, c-format | 5141 | #, c-format |
6151 | msgid "Renewal Time: %lu seconds\n" | 5142 | msgid "Renewal Time: %lu seconds\n" |
6152 | msgstr "Durée du renouvellement = %lu secondes\n" | 5143 | msgstr "Durée du renouvellement = %lu secondes\n" |
6153 | 5144 | ||
6154 | #: plugins-root/check_dhcp.c:890 | ||
6155 | #, c-format | 5145 | #, c-format |
6156 | msgid "Rebinding Time: Infinite\n" | 5146 | msgid "Rebinding Time: Infinite\n" |
6157 | msgstr "Délai de nouvelle demande: Infini\n" | 5147 | msgstr "Délai de nouvelle demande: Infini\n" |
6158 | 5148 | ||
6159 | #: plugins-root/check_dhcp.c:891 | ||
6160 | #, c-format | 5149 | #, c-format |
6161 | msgid "Rebinding Time: %lu seconds\n" | 5150 | msgid "Rebinding Time: %lu seconds\n" |
6162 | msgstr "Délai de nouvelle demande: %lu secondes\n" | 5151 | msgstr "Délai de nouvelle demande: %lu secondes\n" |
6163 | 5152 | ||
6164 | #: plugins-root/check_dhcp.c:919 | ||
6165 | #, c-format | 5153 | #, c-format |
6166 | msgid "Added offer from server @ %s" | 5154 | msgid "Added offer from server @ %s" |
6167 | msgstr "Rajouté offre du serveur @ %s" | 5155 | msgstr "Rajouté offre du serveur @ %s" |
6168 | 5156 | ||
6169 | #: plugins-root/check_dhcp.c:920 | ||
6170 | #, c-format | 5157 | #, c-format |
6171 | msgid " of IP address %s\n" | 5158 | msgid " of IP address %s\n" |
6172 | msgstr "de l'adresse IP %s\n" | 5159 | msgstr "de l'adresse IP %s\n" |
6173 | 5160 | ||
6174 | #: plugins-root/check_dhcp.c:987 | ||
6175 | #, c-format | 5161 | #, c-format |
6176 | msgid "DHCP Server Match: Offerer=%s" | 5162 | msgid "DHCP Server Match: Offerer=%s" |
6177 | msgstr "Correspondance du serveur DHCP: Offrant=%s" | 5163 | msgstr "Correspondance du serveur DHCP: Offrant=%s" |
6178 | 5164 | ||
6179 | #: plugins-root/check_dhcp.c:988 | ||
6180 | #, c-format | 5165 | #, c-format |
6181 | msgid " Requested=%s" | 5166 | msgid " Requested=%s" |
6182 | msgstr " Demandé=%s" | 5167 | msgstr " Demandé=%s" |
6183 | 5168 | ||
6184 | #: plugins-root/check_dhcp.c:990 | ||
6185 | #, c-format | 5169 | #, c-format |
6186 | msgid " (duplicate)" | 5170 | msgid " (duplicate)" |
6187 | msgstr "" | 5171 | msgstr "" |
6188 | 5172 | ||
6189 | #: plugins-root/check_dhcp.c:991 | ||
6190 | #, c-format | 5173 | #, c-format |
6191 | msgid "\n" | 5174 | msgid "\n" |
6192 | msgstr "" | 5175 | msgstr "" |
6193 | 5176 | ||
6194 | #: plugins-root/check_dhcp.c:1039 | ||
6195 | #, c-format | 5177 | #, c-format |
6196 | msgid "No DHCPOFFERs were received.\n" | 5178 | msgid "No DHCPOFFERs were received.\n" |
6197 | msgstr "Pas de DHCPOFFERs reçus.\n" | 5179 | msgstr "Pas de DHCPOFFERs reçus.\n" |
6198 | 5180 | ||
6199 | #: plugins-root/check_dhcp.c:1043 | ||
6200 | #, c-format | 5181 | #, c-format |
6201 | msgid "Received %d DHCPOFFER(s)" | 5182 | msgid "Received %d DHCPOFFER(s)" |
6202 | msgstr "Reçu %d DHCPOFFER(s)" | 5183 | msgstr "Reçu %d DHCPOFFER(s)" |
6203 | 5184 | ||
6204 | #: plugins-root/check_dhcp.c:1046 | ||
6205 | #, c-format | 5185 | #, c-format |
6206 | msgid ", %s%d of %d requested servers responded" | 5186 | msgid ", %s%d of %d requested servers responded" |
6207 | msgstr ", %s%d de %d serveurs ont répondus" | 5187 | msgstr ", %s%d de %d serveurs ont répondus" |
6208 | 5188 | ||
6209 | #: plugins-root/check_dhcp.c:1049 | ||
6210 | #, c-format | 5189 | #, c-format |
6211 | msgid ", requested address (%s) was %soffered" | 5190 | msgid ", requested address (%s) was %soffered" |
6212 | msgstr ", l'adresse demandée (%s) %s été offerte" | 5191 | msgstr ", l'adresse demandée (%s) %s été offerte" |
6213 | 5192 | ||
6214 | #: plugins-root/check_dhcp.c:1049 | ||
6215 | msgid "not " | 5193 | msgid "not " |
6216 | msgstr "n'as pas" | 5194 | msgstr "n'as pas" |
6217 | 5195 | ||
6218 | #: plugins-root/check_dhcp.c:1051 | ||
6219 | #, c-format | 5196 | #, c-format |
6220 | msgid ", max lease time = " | 5197 | msgid ", max lease time = " |
6221 | msgstr ", bail maximum = " | 5198 | msgstr ", bail maximum = " |
6222 | 5199 | ||
6223 | #: plugins-root/check_dhcp.c:1053 | ||
6224 | #, c-format | 5200 | #, c-format |
6225 | msgid "Infinity" | 5201 | msgid "Infinity" |
6226 | msgstr "Infini" | 5202 | msgstr "Infini" |
6227 | 5203 | ||
6228 | #: plugins-root/check_dhcp.c:1234 | 5204 | msgid "Got unexpected non-option argument" |
5205 | msgstr "" | ||
5206 | |||
6229 | #, c-format | 5207 | #, c-format |
6230 | msgid "Error: DLPI stream API failed to get MAC in check_ctrl: %s.\n" | 5208 | msgid "Error: DLPI stream API failed to get MAC in check_ctrl: %s.\n" |
6231 | msgstr "" | 5209 | msgstr "" |
6232 | "Erreur: Impossible d'obtenir la MAC par l'API DLPI dans check_ctrl: %s.\n" | 5210 | "Erreur: Impossible d'obtenir la MAC par l'API DLPI dans check_ctrl: %s.\n" |
6233 | 5211 | ||
6234 | #: plugins-root/check_dhcp.c:1246 | ||
6235 | #, c-format | 5212 | #, c-format |
6236 | msgid "Error: DLPI stream API failed to get MAC in put_ctrl/putmsg(): %s.\n" | 5213 | msgid "Error: DLPI stream API failed to get MAC in put_ctrl/putmsg(): %s.\n" |
6237 | msgstr "" | 5214 | msgstr "" |
6238 | "Erreur: Impossible d'obtenir la MAC par l'API DLPI dans put_ctrl/putmsg(): " | 5215 | "Erreur: Impossible d'obtenir la MAC par l'API DLPI dans put_ctrl/putmsg(): " |
6239 | "%s.\n" | 5216 | "%s.\n" |
6240 | 5217 | ||
6241 | #: plugins-root/check_dhcp.c:1259 | ||
6242 | #, c-format | 5218 | #, c-format |
6243 | msgid "Error: DLPI stream API failed to get MAC in put_both/putmsg().\n" | 5219 | msgid "Error: DLPI stream API failed to get MAC in put_both/putmsg().\n" |
6244 | msgstr "" | 5220 | msgstr "" |
6245 | "Erreur: Impossible d'obtenir la MAC par l'API DLPI dans put_both/putmsg().\n" | 5221 | "Erreur: Impossible d'obtenir la MAC par l'API DLPI dans put_both/putmsg().\n" |
6246 | 5222 | ||
6247 | #: plugins-root/check_dhcp.c:1271 | ||
6248 | #, c-format | 5223 | #, c-format |
6249 | msgid "" | 5224 | msgid "" |
6250 | "Error: DLPI stream API failed to get MAC in dl_attach_req/open(%s..): %s.\n" | 5225 | "Error: DLPI stream API failed to get MAC in dl_attach_req/open(%s..): %s.\n" |
6251 | msgstr "" | 5226 | msgstr "" |
6252 | "Erreur: Impossible d'obtenir la MAC par l'API DLPI dans dl_attach_req/open" | 5227 | "Erreur: Impossible d'obtenir la MAC par l'API DLPI dans dl_attach_req/" |
6253 | "(%s..): %s.\n" | 5228 | "open(%s..): %s.\n" |
6254 | 5229 | ||
6255 | #: plugins-root/check_dhcp.c:1295 | ||
6256 | #, c-format | 5230 | #, c-format |
6257 | msgid "Error: DLPI stream API failed to get MAC in dl_bind/check_ctrl(): %s.\n" | 5231 | msgid "Error: DLPI stream API failed to get MAC in dl_bind/check_ctrl(): %s.\n" |
6258 | msgstr "" | 5232 | msgstr "" |
6259 | "Erreur: Impossible d'obtenir la MAC par l'API DLPI dans dl_bind/check_ctrl" | 5233 | "Erreur: Impossible d'obtenir la MAC par l'API DLPI dans dl_bind/" |
6260 | "(): %s.\n" | 5234 | "check_ctrl(): %s.\n" |
6261 | 5235 | ||
6262 | #: plugins-root/check_dhcp.c:1374 | ||
6263 | #, c-format | 5236 | #, c-format |
6264 | msgid "Hardware address: " | 5237 | msgid "Hardware address: " |
6265 | msgstr "Adresse matérielle: " | 5238 | msgstr "Adresse matérielle: " |
6266 | 5239 | ||
6267 | #: plugins-root/check_dhcp.c:1390 | ||
6268 | msgid "This plugin tests the availability of DHCP servers on a network." | 5240 | msgid "This plugin tests the availability of DHCP servers on a network." |
6269 | msgstr "Ce plugin teste la disponibilité de serveurs DHCP dans un réseau." | 5241 | msgstr "Ce plugin teste la disponibilité de serveurs DHCP dans un réseau." |
6270 | 5242 | ||
6271 | #: plugins-root/check_dhcp.c:1402 | ||
6272 | msgid "IP address of DHCP server that we must hear from" | 5243 | msgid "IP address of DHCP server that we must hear from" |
6273 | msgstr "" | 5244 | msgstr "" |
6274 | 5245 | ||
6275 | #: plugins-root/check_dhcp.c:1404 | ||
6276 | msgid "IP address that should be offered by at least one DHCP server" | 5246 | msgid "IP address that should be offered by at least one DHCP server" |
6277 | msgstr "" | 5247 | msgstr "" |
6278 | 5248 | ||
6279 | #: plugins-root/check_dhcp.c:1406 | ||
6280 | msgid "Seconds to wait for DHCPOFFER before timeout occurs" | 5249 | msgid "Seconds to wait for DHCPOFFER before timeout occurs" |
6281 | msgstr "" | 5250 | msgstr "" |
6282 | 5251 | ||
6283 | #: plugins-root/check_dhcp.c:1408 | ||
6284 | msgid "Interface to to use for listening (i.e. eth0)" | 5252 | msgid "Interface to to use for listening (i.e. eth0)" |
6285 | msgstr "" | 5253 | msgstr "" |
6286 | 5254 | ||
6287 | #: plugins-root/check_dhcp.c:1410 | ||
6288 | msgid "MAC address to use in the DHCP request" | 5255 | msgid "MAC address to use in the DHCP request" |
6289 | msgstr "" | 5256 | msgstr "" |
6290 | 5257 | ||
6291 | #: plugins-root/check_dhcp.c:1412 | ||
6292 | msgid "Unicast testing: mimic a DHCP relay, requires -s" | 5258 | msgid "Unicast testing: mimic a DHCP relay, requires -s" |
6293 | msgstr "" | 5259 | msgstr "" |
6294 | 5260 | ||
6295 | #: plugins-root/check_icmp.c:1295 | ||
6296 | msgid "specify a target" | 5261 | msgid "specify a target" |
6297 | msgstr "" | 5262 | msgstr "" |
6298 | 5263 | ||
6299 | #: plugins-root/check_icmp.c:1297 | 5264 | msgid "Use IPv4 (default) or IPv6 to communicate with the targets" |
5265 | msgstr "" | ||
5266 | |||
6300 | msgid "warning threshold (currently " | 5267 | msgid "warning threshold (currently " |
6301 | msgstr "Valeurs pour le seuil d'avertissement (actuellement " | 5268 | msgstr "Valeurs pour le seuil d'avertissement (actuellement " |
6302 | 5269 | ||
6303 | #: plugins-root/check_icmp.c:1300 | ||
6304 | msgid "critical threshold (currently " | 5270 | msgid "critical threshold (currently " |
6305 | msgstr "Valeurs pour le seuil critique (actuellement " | 5271 | msgstr "Valeurs pour le seuil critique (actuellement " |
6306 | 5272 | ||
6307 | #: plugins-root/check_icmp.c:1303 | ||
6308 | msgid "specify a source IP address or device name" | 5273 | msgid "specify a source IP address or device name" |
6309 | msgstr "spécifiez une adresse ou un nom d'hôte" | 5274 | msgstr "spécifiez une adresse ou un nom d'hôte" |
6310 | 5275 | ||
6311 | #: plugins-root/check_icmp.c:1305 | ||
6312 | msgid "number of packets to send (currently " | 5276 | msgid "number of packets to send (currently " |
6313 | msgstr "nombre de paquets à envoyer (actuellement " | 5277 | msgstr "nombre de paquets à envoyer (actuellement " |
6314 | 5278 | ||
6315 | #: plugins-root/check_icmp.c:1308 | ||
6316 | msgid "max packet interval (currently " | 5279 | msgid "max packet interval (currently " |
6317 | msgstr "" | 5280 | msgstr "" |
6318 | 5281 | ||
6319 | #: plugins-root/check_icmp.c:1311 | ||
6320 | msgid "max target interval (currently " | 5282 | msgid "max target interval (currently " |
6321 | msgstr "" | 5283 | msgstr "" |
6322 | 5284 | ||
6323 | #: plugins-root/check_icmp.c:1314 | ||
6324 | msgid "number of alive hosts required for success" | 5285 | msgid "number of alive hosts required for success" |
6325 | msgstr "nombre d'hôtes vivants requis pour réussite" | 5286 | msgstr "nombre d'hôtes vivants requis pour réussite" |
6326 | 5287 | ||
6327 | #: plugins-root/check_icmp.c:1317 | ||
6328 | msgid "TTL on outgoing packets (currently " | 5288 | msgid "TTL on outgoing packets (currently " |
6329 | msgstr "" | 5289 | msgstr "" |
6330 | 5290 | ||
6331 | #: plugins-root/check_icmp.c:1320 | ||
6332 | msgid "timeout value (seconds, currently " | 5291 | msgid "timeout value (seconds, currently " |
6333 | msgstr "" | 5292 | msgstr "" |
6334 | 5293 | ||
6335 | #: plugins-root/check_icmp.c:1323 | ||
6336 | msgid "Number of icmp data bytes to send" | 5294 | msgid "Number of icmp data bytes to send" |
6337 | msgstr "Nombre de paquets ICMP Ã envoyer" | 5295 | msgstr "Nombre de paquets ICMP Ã envoyer" |
6338 | 5296 | ||
6339 | #: plugins-root/check_icmp.c:1324 | ||
6340 | msgid "Packet size will be data bytes + icmp header (currently" | 5297 | msgid "Packet size will be data bytes + icmp header (currently" |
6341 | msgstr "" | 5298 | msgstr "" |
6342 | 5299 | ||
6343 | #: plugins-root/check_icmp.c:1326 | ||
6344 | msgid "verbose" | 5300 | msgid "verbose" |
6345 | msgstr "" | 5301 | msgstr "" |
6346 | 5302 | ||
6347 | #: plugins-root/check_icmp.c:1330 | ||
6348 | msgid "The -H switch is optional. Naming a host (or several) to check is not." | 5303 | msgid "The -H switch is optional. Naming a host (or several) to check is not." |
6349 | msgstr "" | 5304 | msgstr "" |
6350 | 5305 | ||
6351 | #: plugins-root/check_icmp.c:1332 | ||
6352 | msgid "" | 5306 | msgid "" |
6353 | "Threshold format for -w and -c is 200.25,60% for 200.25 msec RTA and 60%" | 5307 | "Threshold format for -w and -c is 200.25,60% for 200.25 msec RTA and 60%" |
6354 | msgstr "" | 5308 | msgstr "" |
6355 | 5309 | ||
6356 | #: plugins-root/check_icmp.c:1333 | ||
6357 | msgid "packet loss. The default values should work well for most users." | 5310 | msgid "packet loss. The default values should work well for most users." |
6358 | msgstr "" | 5311 | msgstr "" |
6359 | 5312 | ||
6360 | #: plugins-root/check_icmp.c:1334 | ||
6361 | msgid "" | 5313 | msgid "" |
6362 | "You can specify different RTA factors using the standardized abbreviations" | 5314 | "You can specify different RTA factors using the standardized abbreviations" |
6363 | msgstr "" | 5315 | msgstr "" |
6364 | 5316 | ||
6365 | #: plugins-root/check_icmp.c:1335 | ||
6366 | msgid "" | 5317 | msgid "" |
6367 | "us (microseconds), ms (milliseconds, default) or just plain s for seconds." | 5318 | "us (microseconds), ms (milliseconds, default) or just plain s for seconds." |
6368 | msgstr "" | 5319 | msgstr "" |
6369 | 5320 | ||
6370 | #: plugins-root/check_icmp.c:1341 | ||
6371 | msgid "The -v switch can be specified several times for increased verbosity." | 5321 | msgid "The -v switch can be specified several times for increased verbosity." |
6372 | msgstr "" | 5322 | msgstr "" |
6373 | 5323 | ||
6374 | #~ msgid "Critical threshold must be integer" | 5324 | #~ msgid "Path or partition (may be repeated)" |
6375 | #~ msgstr "le seuil critique doit être un entier positif" | 5325 | #~ msgstr "Répertoire ou partition (peut être utilisé plusieurs fois)" |
6376 | 5326 | ||
6377 | #~ msgid "Warning threshold must be integer" | 5327 | #~ msgid "" |
6378 | #~ msgstr "Le seuil d'avertissement doit être un entier positif" | 5328 | #~ "value match). If multiple addresses are returned at once, you have to " |
5329 | #~ "match" | ||
5330 | #~ msgstr "" | ||
5331 | #~ "valeur correspond). Si plusieurs adresses sont retournées en même temps," | ||
5332 | |||
5333 | #~ msgid "" | ||
5334 | #~ "the whole string of addresses separated with commas (sorted " | ||
5335 | #~ "alphabetically)." | ||
5336 | #~ msgstr "" | ||
5337 | #~ "vous devrez toutes les inscrire séparées pas des virgules (en ordre " | ||
5338 | #~ "alphabétique)" | ||
5339 | |||
5340 | #~ msgid "No specific parameters. No warning or critical threshold" | ||
5341 | #~ msgstr "Pas d'argument spécifique. Pas de seuil d'avertissement ou critique" | ||
5342 | |||
5343 | #~ msgid "Can't find local IP for NAS-IP-Address" | ||
5344 | #~ msgstr "Impossible de trouver une addresse IP locale pour le NAS-IP-Address" | ||
5345 | |||
5346 | #~ msgid "Warning free space should be more than critical free space" | ||
5347 | #~ msgstr "" | ||
5348 | #~ "Le seuil d'avertissement pour la place libre doit être plus grand que le " | ||
5349 | #~ "seuil critique" | ||
5350 | |||
5351 | #, c-format | ||
5352 | #~ msgid "%s - Plugin timed out after %d seconds\n" | ||
5353 | #~ msgstr "%s - Le plugin n'as pas répondu dans les %d secondes\n" | ||
6379 | 5354 | ||
6380 | #~ msgid "Critical Process Count must be an integer!" | 5355 | #~ msgid "Critical Process Count must be an integer!" |
6381 | #~ msgstr "Critique Le total des processus doit être un nombre entier!" | 5356 | #~ msgstr "Critique Le total des processus doit être un nombre entier!" |
diff --git a/po/monitoring-plugins.pot b/po/monitoring-plugins.pot index 5bc2363..af48f03 100644 --- a/po/monitoring-plugins.pot +++ b/po/monitoring-plugins.pot | |||
@@ -8,7 +8,7 @@ msgid "" | |||
8 | msgstr "" | 8 | msgstr "" |
9 | "Project-Id-Version: PACKAGE VERSION\n" | 9 | "Project-Id-Version: PACKAGE VERSION\n" |
10 | "Report-Msgid-Bugs-To: devel@monitoring-plugins.org\n" | 10 | "Report-Msgid-Bugs-To: devel@monitoring-plugins.org\n" |
11 | "POT-Creation-Date: 2014-01-19 16:30-0500\n" | 11 | "POT-Creation-Date: 2023-09-12 01:33+0200\n" |
12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" | 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
13 | "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" | 13 | "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
14 | "Language-Team: LANGUAGE <LL@li.org>\n" | 14 | "Language-Team: LANGUAGE <LL@li.org>\n" |
@@ -18,3942 +18,3163 @@ 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 | ||
22 | #: plugins/check_disk.c:194 plugins/check_dns.c:102 plugins/check_dummy.c:52 | ||
23 | #: plugins/check_fping.c:93 plugins/check_game.c:82 plugins/check_hpjd.c:103 | ||
24 | #: plugins/check_http.c:167 plugins/check_ldap.c:109 plugins/check_load.c:122 | ||
25 | #: plugins/check_mrtgtraf.c:83 plugins/check_mysql.c:122 | ||
26 | #: plugins/check_nagios.c:91 plugins/check_nt.c:127 plugins/check_ntp.c:770 | ||
27 | #: plugins/check_ntp_peer.c:575 plugins/check_ntp_time.c:552 | ||
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 | ||
30 | #: plugins/check_radius.c:160 plugins/check_real.c:80 plugins/check_smtp.c:144 | ||
31 | #: plugins/check_snmp.c:240 plugins/check_ssh.c:73 plugins/check_swap.c:110 | ||
32 | #: plugins/check_tcp.c:218 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 | ||
34 | msgid "Could not parse arguments" | 21 | msgid "Could not parse arguments" |
35 | msgstr "" | 22 | msgstr "" |
36 | 23 | ||
37 | #: plugins/check_by_ssh.c:90 plugins/check_dig.c:82 plugins/check_dns.c:95 | ||
38 | #: plugins/check_nagios.c:95 plugins/check_pgsql.c:178 plugins/check_ping.c:99 | ||
39 | #: plugins/check_procs.c:188 plugins/check_snmp.c:336 plugins/negate.c:79 | ||
40 | msgid "Cannot catch SIGALRM" | 24 | msgid "Cannot catch SIGALRM" |
41 | msgstr "" | 25 | msgstr "" |
42 | 26 | ||
43 | #: plugins/check_by_ssh.c:110 | 27 | #, c-format |
28 | msgid "SSH connection failed: %s\n" | ||
29 | msgstr "" | ||
30 | |||
44 | #, c-format | 31 | #, c-format |
45 | msgid "Remote command execution failed: %s\n" | 32 | msgid "Remote command execution failed: %s\n" |
46 | msgstr "" | 33 | msgstr "" |
47 | 34 | ||
48 | #: plugins/check_by_ssh.c:122 | ||
49 | #, c-format | 35 | #, c-format |
50 | msgid "%s - check_by_ssh: Remote command '%s' returned status %d\n" | 36 | msgid "%s - check_by_ssh: Remote command '%s' returned status %d\n" |
51 | msgstr "" | 37 | msgstr "" |
52 | 38 | ||
53 | #: plugins/check_by_ssh.c:134 | ||
54 | #, c-format | 39 | #, c-format |
55 | msgid "SSH WARNING: could not open %s\n" | 40 | msgid "SSH WARNING: could not open %s\n" |
56 | msgstr "" | 41 | msgstr "" |
57 | 42 | ||
58 | #: plugins/check_by_ssh.c:143 | ||
59 | #, c-format | 43 | #, c-format |
60 | msgid "%s: Error parsing output\n" | 44 | msgid "%s: Error parsing output\n" |
61 | msgstr "" | 45 | msgstr "" |
62 | 46 | ||
63 | #: plugins/check_by_ssh.c:220 plugins/check_disk.c:476 | ||
64 | #: plugins/check_http.c:278 plugins/check_ldap.c:293 plugins/check_pgsql.c:311 | ||
65 | #: plugins/check_procs.c:437 plugins/check_radius.c:308 | ||
66 | #: plugins/check_real.c:356 plugins/check_smtp.c:581 plugins/check_snmp.c:736 | ||
67 | #: plugins/check_ssh.c:138 plugins/check_tcp.c:505 plugins/check_time.c:302 | ||
68 | #: plugins/check_ups.c:556 plugins/negate.c:164 | ||
69 | msgid "Timeout interval must be a positive integer" | 47 | msgid "Timeout interval must be a positive integer" |
70 | msgstr "" | 48 | msgstr "" |
71 | 49 | ||
72 | #: plugins/check_by_ssh.c:230 plugins/check_pgsql.c:341 | ||
73 | #: plugins/check_radius.c:272 plugins/check_real.c:327 | ||
74 | #: plugins/check_smtp.c:506 plugins/check_tcp.c:511 plugins/check_time.c:296 | ||
75 | #: plugins/check_ups.c:518 | ||
76 | msgid "Port must be a positive integer" | 50 | msgid "Port must be a positive integer" |
77 | msgstr "" | 51 | msgstr "" |
78 | 52 | ||
79 | #: plugins/check_by_ssh.c:291 | ||
80 | msgid "skip-stdout argument must be an integer" | 53 | msgid "skip-stdout argument must be an integer" |
81 | msgstr "" | 54 | msgstr "" |
82 | 55 | ||
83 | #: plugins/check_by_ssh.c:299 | ||
84 | msgid "skip-stderr argument must be an integer" | 56 | msgid "skip-stderr argument must be an integer" |
85 | msgstr "" | 57 | msgstr "" |
86 | 58 | ||
87 | #: plugins/check_by_ssh.c:322 | ||
88 | #, c-format | 59 | #, c-format |
89 | msgid "%s: You must provide a host name\n" | 60 | msgid "%s: You must provide a host name\n" |
90 | msgstr "" | 61 | msgstr "" |
91 | 62 | ||
92 | #: plugins/check_by_ssh.c:340 | ||
93 | msgid "No remotecmd" | 63 | msgid "No remotecmd" |
94 | msgstr "" | 64 | msgstr "" |
95 | 65 | ||
96 | #: plugins/check_by_ssh.c:354 | ||
97 | #, c-format | 66 | #, c-format |
98 | msgid "%s: Argument limit of %d exceeded\n" | 67 | msgid "%s: Argument limit of %d exceeded\n" |
99 | msgstr "" | 68 | msgstr "" |
100 | 69 | ||
101 | #: plugins/check_by_ssh.c:357 | ||
102 | msgid "Can not (re)allocate 'commargv' buffer\n" | 70 | msgid "Can not (re)allocate 'commargv' buffer\n" |
103 | msgstr "" | 71 | msgstr "" |
104 | 72 | ||
105 | #: plugins/check_by_ssh.c:371 | ||
106 | #, c-format | 73 | #, c-format |
107 | msgid "" | 74 | msgid "" |
108 | "%s: In passive mode, you must provide a service name for each command.\n" | 75 | "%s: In passive mode, you must provide a service name for each command.\n" |
109 | msgstr "" | 76 | msgstr "" |
110 | 77 | ||
111 | #: plugins/check_by_ssh.c:374 | ||
112 | #, c-format | 78 | #, c-format |
113 | msgid "" | 79 | msgid "" |
114 | "%s: In passive mode, you must provide the host short name from the " | 80 | "%s: In passive mode, you must provide the host short name from the " |
115 | "monitoring configs.\n" | 81 | "monitoring configs.\n" |
116 | msgstr "" | 82 | msgstr "" |
117 | 83 | ||
118 | #: plugins/check_by_ssh.c:388 | ||
119 | #, c-format | 84 | #, c-format |
120 | msgid "This plugin uses SSH to execute commands on a remote host" | 85 | msgid "This plugin uses SSH to execute commands on a remote host" |
121 | msgstr "" | 86 | msgstr "" |
122 | 87 | ||
123 | #: plugins/check_by_ssh.c:403 | ||
124 | msgid "tell ssh to use Protocol 1 [optional]" | 88 | msgid "tell ssh to use Protocol 1 [optional]" |
125 | msgstr "" | 89 | msgstr "" |
126 | 90 | ||
127 | #: plugins/check_by_ssh.c:405 | ||
128 | msgid "tell ssh to use Protocol 2 [optional]" | 91 | msgid "tell ssh to use Protocol 2 [optional]" |
129 | msgstr "" | 92 | msgstr "" |
130 | 93 | ||
131 | #: plugins/check_by_ssh.c:407 | ||
132 | msgid "Ignore all or (if specified) first n lines on STDOUT [optional]" | 94 | msgid "Ignore all or (if specified) first n lines on STDOUT [optional]" |
133 | msgstr "" | 95 | msgstr "" |
134 | 96 | ||
135 | #: plugins/check_by_ssh.c:409 | ||
136 | msgid "Ignore all or (if specified) first n lines on STDERR [optional]" | 97 | msgid "Ignore all or (if specified) first n lines on STDERR [optional]" |
137 | msgstr "" | 98 | msgstr "" |
138 | 99 | ||
139 | #: plugins/check_by_ssh.c:411 | 100 | msgid "Exit with an warning, if there is an output on STDERR" |
101 | msgstr "" | ||
102 | |||
140 | msgid "" | 103 | msgid "" |
141 | "tells ssh to fork rather than create a tty [optional]. This will always " | 104 | "tells ssh to fork rather than create a tty [optional]. This will always " |
142 | "return OK if ssh is executed" | 105 | "return OK if ssh is executed" |
143 | msgstr "" | 106 | msgstr "" |
144 | 107 | ||
145 | #: plugins/check_by_ssh.c:413 | ||
146 | msgid "command to execute on the remote machine" | 108 | msgid "command to execute on the remote machine" |
147 | msgstr "" | 109 | msgstr "" |
148 | 110 | ||
149 | #: plugins/check_by_ssh.c:415 | ||
150 | msgid "SSH user name on remote host [optional]" | 111 | msgid "SSH user name on remote host [optional]" |
151 | msgstr "" | 112 | msgstr "" |
152 | 113 | ||
153 | #: plugins/check_by_ssh.c:417 | ||
154 | msgid "identity of an authorized key [optional]" | 114 | msgid "identity of an authorized key [optional]" |
155 | msgstr "" | 115 | msgstr "" |
156 | 116 | ||
157 | #: plugins/check_by_ssh.c:419 | ||
158 | msgid "external command file for monitoring [optional]" | 117 | msgid "external command file for monitoring [optional]" |
159 | msgstr "" | 118 | msgstr "" |
160 | 119 | ||
161 | #: plugins/check_by_ssh.c:421 | ||
162 | msgid "list of monitoring service names, separated by ':' [optional]" | 120 | msgid "list of monitoring service names, separated by ':' [optional]" |
163 | msgstr "" | 121 | msgstr "" |
164 | 122 | ||
165 | #: plugins/check_by_ssh.c:423 | ||
166 | msgid "short name of host in the monitoring configuration [optional]" | 123 | msgid "short name of host in the monitoring configuration [optional]" |
167 | msgstr "" | 124 | msgstr "" |
168 | 125 | ||
169 | #: plugins/check_by_ssh.c:425 | ||
170 | msgid "Call ssh with '-o OPTION' (may be used multiple times) [optional]" | 126 | msgid "Call ssh with '-o OPTION' (may be used multiple times) [optional]" |
171 | msgstr "" | 127 | msgstr "" |
172 | 128 | ||
173 | #: plugins/check_by_ssh.c:427 | ||
174 | msgid "Tell ssh to use this configfile [optional]" | 129 | msgid "Tell ssh to use this configfile [optional]" |
175 | msgstr "" | 130 | msgstr "" |
176 | 131 | ||
177 | #: plugins/check_by_ssh.c:429 | ||
178 | msgid "Tell ssh to suppress warning and diagnostic messages [optional]" | 132 | msgid "Tell ssh to suppress warning and diagnostic messages [optional]" |
179 | msgstr "" | 133 | msgstr "" |
180 | 134 | ||
181 | #: plugins/check_by_ssh.c:434 | 135 | msgid "Make connection problems return UNKNOWN instead of CRITICAL" |
136 | msgstr "" | ||
137 | |||
182 | msgid "The most common mode of use is to refer to a local identity file with" | 138 | msgid "The most common mode of use is to refer to a local identity file with" |
183 | msgstr "" | 139 | msgstr "" |
184 | 140 | ||
185 | #: plugins/check_by_ssh.c:435 | ||
186 | msgid "the '-i' option. In this mode, the identity pair should have a null" | 141 | msgid "the '-i' option. In this mode, the identity pair should have a null" |
187 | msgstr "" | 142 | msgstr "" |
188 | 143 | ||
189 | #: plugins/check_by_ssh.c:436 | ||
190 | msgid "passphrase and the public key should be listed in the authorized_keys" | 144 | msgid "passphrase and the public key should be listed in the authorized_keys" |
191 | msgstr "" | 145 | msgstr "" |
192 | 146 | ||
193 | #: plugins/check_by_ssh.c:437 | ||
194 | msgid "file of the remote host. Usually the key will be restricted to running" | 147 | msgid "file of the remote host. Usually the key will be restricted to running" |
195 | msgstr "" | 148 | msgstr "" |
196 | 149 | ||
197 | #: plugins/check_by_ssh.c:438 | ||
198 | msgid "only one command on the remote server. If the remote SSH server tracks" | 150 | msgid "only one command on the remote server. If the remote SSH server tracks" |
199 | msgstr "" | 151 | msgstr "" |
200 | 152 | ||
201 | #: plugins/check_by_ssh.c:439 | ||
202 | msgid "invocation arguments, the one remote program may be an agent that can" | 153 | msgid "invocation arguments, the one remote program may be an agent that can" |
203 | msgstr "" | 154 | msgstr "" |
204 | 155 | ||
205 | #: plugins/check_by_ssh.c:440 | ||
206 | msgid "execute additional commands as proxy" | 156 | msgid "execute additional commands as proxy" |
207 | msgstr "" | 157 | msgstr "" |
208 | 158 | ||
209 | #: plugins/check_by_ssh.c:442 | ||
210 | msgid "To use passive mode, provide multiple '-C' options, and provide" | 159 | msgid "To use passive mode, provide multiple '-C' options, and provide" |
211 | msgstr "" | 160 | msgstr "" |
212 | 161 | ||
213 | #: plugins/check_by_ssh.c:443 | ||
214 | msgid "" | 162 | msgid "" |
215 | "all of -O, -s, and -n options (servicelist order must match '-C'options)" | 163 | "all of -O, -s, and -n options (servicelist order must match '-C'options)" |
216 | msgstr "" | 164 | msgstr "" |
217 | 165 | ||
218 | #: plugins/check_by_ssh.c:445 plugins/check_cluster.c:261 | ||
219 | #: plugins/check_dig.c:355 plugins/check_disk.c:924 plugins/check_http.c:1560 | ||
220 | #: plugins/check_nagios.c:312 plugins/check_ntp.c:869 | ||
221 | #: plugins/check_ntp_peer.c:705 plugins/check_ntp_time.c:633 | ||
222 | #: plugins/check_procs.c:763 plugins/negate.c:271 plugins/urlize.c:180 | ||
223 | msgid "Examples:" | 166 | msgid "Examples:" |
224 | msgstr "" | 167 | msgstr "" |
225 | 168 | ||
226 | #: plugins/check_by_ssh.c:460 plugins/check_cluster.c:274 | ||
227 | #: plugins/check_dig.c:367 plugins/check_disk.c:941 plugins/check_dns.c:486 | ||
228 | #: plugins/check_dummy.c:122 plugins/check_fping.c:505 | ||
229 | #: plugins/check_game.c:331 plugins/check_hpjd.c:414 plugins/check_http.c:1590 | ||
230 | #: plugins/check_ldap.c:451 plugins/check_load.c:334 plugins/check_mrtg.c:382 | ||
231 | #: plugins/check_mysql.c:569 plugins/check_nagios.c:323 plugins/check_nt.c:774 | ||
232 | #: plugins/check_ntp.c:888 plugins/check_ntp_peer.c:725 | ||
233 | #: plugins/check_ntp_time.c:642 plugins/check_nwstat.c:1685 | ||
234 | #: plugins/check_overcr.c:467 plugins/check_pgsql.c:578 | ||
235 | #: plugins/check_ping.c:603 plugins/check_procs.c:781 | ||
236 | #: plugins/check_radius.c:385 plugins/check_real.c:451 | ||
237 | #: plugins/check_smtp.c:843 plugins/check_snmp.c:1207 plugins/check_ssh.c:309 | ||
238 | #: plugins/check_swap.c:558 plugins/check_tcp.c:684 plugins/check_time.c:371 | ||
239 | #: plugins/check_ups.c:660 plugins/check_users.c:240 | ||
240 | #: plugins/check_ide_smart.c:640 plugins/negate.c:295 plugins/urlize.c:197 | ||
241 | #: plugins-root/check_dhcp.c:1422 plugins-root/check_icmp.c:1354 | ||
242 | msgid "Usage:" | 169 | msgid "Usage:" |
243 | msgstr "" | 170 | msgstr "" |
244 | 171 | ||
245 | #: plugins/check_cluster.c:230 | ||
246 | #, c-format | 172 | #, c-format |
247 | msgid "Host/Service Cluster Plugin for Monitoring" | 173 | msgid "Host/Service Cluster Plugin for Monitoring" |
248 | msgstr "" | 174 | msgstr "" |
249 | 175 | ||
250 | #: plugins/check_cluster.c:236 plugins/check_nt.c:676 | ||
251 | msgid "Options:" | 176 | msgid "Options:" |
252 | msgstr "" | 177 | msgstr "" |
253 | 178 | ||
254 | #: plugins/check_cluster.c:239 | ||
255 | msgid "Check service cluster status" | 179 | msgid "Check service cluster status" |
256 | msgstr "" | 180 | msgstr "" |
257 | 181 | ||
258 | #: plugins/check_cluster.c:241 | ||
259 | msgid "Check host cluster status" | 182 | msgid "Check host cluster status" |
260 | msgstr "" | 183 | msgstr "" |
261 | 184 | ||
262 | #: plugins/check_cluster.c:243 | ||
263 | msgid "Optional prepended text output (i.e. \"Host cluster\")" | 185 | msgid "Optional prepended text output (i.e. \"Host cluster\")" |
264 | msgstr "" | 186 | msgstr "" |
265 | 187 | ||
266 | #: plugins/check_cluster.c:245 plugins/check_cluster.c:248 | ||
267 | msgid "Specifies the range of hosts or services in cluster that must be in a" | 188 | msgid "Specifies the range of hosts or services in cluster that must be in a" |
268 | msgstr "" | 189 | msgstr "" |
269 | 190 | ||
270 | #: plugins/check_cluster.c:246 | ||
271 | msgid "non-OK state in order to return a WARNING status level" | 191 | msgid "non-OK state in order to return a WARNING status level" |
272 | msgstr "" | 192 | msgstr "" |
273 | 193 | ||
274 | #: plugins/check_cluster.c:249 | ||
275 | msgid "non-OK state in order to return a CRITICAL status level" | 194 | msgid "non-OK state in order to return a CRITICAL status level" |
276 | msgstr "" | 195 | msgstr "" |
277 | 196 | ||
278 | #: plugins/check_cluster.c:251 | ||
279 | msgid "The status codes of the hosts or services in the cluster, separated by" | 197 | msgid "The status codes of the hosts or services in the cluster, separated by" |
280 | msgstr "" | 198 | msgstr "" |
281 | 199 | ||
282 | #: plugins/check_cluster.c:252 | ||
283 | msgid "commas" | 200 | msgid "commas" |
284 | msgstr "" | 201 | msgstr "" |
285 | 202 | ||
286 | #: plugins/check_cluster.c:257 plugins/check_game.c:318 | ||
287 | #: plugins/check_http.c:1542 plugins/check_ldap.c:438 plugins/check_mrtg.c:363 | ||
288 | #: plugins/check_mrtgtraf.c:361 plugins/check_mysql.c:558 | ||
289 | #: plugins/check_nt.c:758 plugins/check_ntp.c:865 plugins/check_ntp_peer.c:696 | ||
290 | #: plugins/check_ntp_time.c:626 plugins/check_nwstat.c:1670 | ||
291 | #: plugins/check_overcr.c:456 plugins/check_snmp.c:1178 | ||
292 | #: plugins/check_swap.c:547 plugins/check_ups.c:642 plugins/negate.c:277 | ||
293 | #: plugins-root/check_icmp.c:1329 | ||
294 | msgid "Notes:" | 203 | msgid "Notes:" |
295 | msgstr "" | 204 | msgstr "" |
296 | 205 | ||
297 | #: plugins/check_cluster.c:263 | ||
298 | msgid "" | 206 | msgid "" |
299 | "Will alert critical if there are 3 or more service data points in a non-OK" | 207 | "Will alert critical if there are 3 or more service data points in a non-OK" |
300 | msgstr "" | 208 | msgstr "" |
301 | 209 | ||
302 | #: plugins/check_cluster.c:264 plugins/check_ups.c:639 | ||
303 | msgid "state." | 210 | msgid "state." |
304 | msgstr "" | 211 | msgstr "" |
305 | 212 | ||
306 | #: plugins/check_dig.c:100 plugins/check_dig.c:102 | ||
307 | #, c-format | 213 | #, c-format |
308 | msgid "Looking for: '%s'\n" | 214 | msgid "Looking for: '%s'\n" |
309 | msgstr "" | 215 | msgstr "" |
310 | 216 | ||
311 | #: plugins/check_dig.c:109 | ||
312 | msgid "dig returned an error status" | 217 | msgid "dig returned an error status" |
313 | msgstr "" | 218 | msgstr "" |
314 | 219 | ||
315 | #: plugins/check_dig.c:134 | ||
316 | msgid "Server not found in ANSWER SECTION" | 220 | msgid "Server not found in ANSWER SECTION" |
317 | msgstr "" | 221 | msgstr "" |
318 | 222 | ||
319 | #: plugins/check_dig.c:144 | ||
320 | msgid "No ANSWER SECTION found" | 223 | msgid "No ANSWER SECTION found" |
321 | msgstr "" | 224 | msgstr "" |
322 | 225 | ||
323 | #: plugins/check_dig.c:171 | ||
324 | msgid "Probably a non-existent host/domain" | 226 | msgid "Probably a non-existent host/domain" |
325 | msgstr "" | 227 | msgstr "" |
326 | 228 | ||
327 | #: plugins/check_dig.c:233 | ||
328 | #, c-format | 229 | #, c-format |
329 | msgid "Port must be a positive integer - %s" | 230 | msgid "Port must be a positive integer - %s" |
330 | msgstr "" | 231 | msgstr "" |
331 | 232 | ||
332 | #: plugins/check_dig.c:244 | ||
333 | #, c-format | 233 | #, c-format |
334 | msgid "Warning interval must be a positive integer - %s" | 234 | msgid "Warning interval must be a positive integer - %s" |
335 | msgstr "" | 235 | msgstr "" |
336 | 236 | ||
337 | #: plugins/check_dig.c:252 | ||
338 | #, c-format | 237 | #, c-format |
339 | msgid "Critical interval must be a positive integer - %s" | 238 | msgid "Critical interval must be a positive integer - %s" |
340 | msgstr "" | 239 | msgstr "" |
341 | 240 | ||
342 | #: plugins/check_dig.c:260 | ||
343 | #, c-format | 241 | #, c-format |
344 | msgid "Timeout interval must be a positive integer - %s" | 242 | msgid "Timeout interval must be a positive integer - %s" |
345 | msgstr "" | 243 | msgstr "" |
346 | 244 | ||
347 | #: plugins/check_dig.c:325 | ||
348 | #, c-format | 245 | #, c-format |
349 | msgid "This plugin test the DNS service on the specified host using dig" | 246 | msgid "This plugin tests the DNS service on the specified host using dig" |
350 | msgstr "" | 247 | msgstr "" |
351 | 248 | ||
352 | #: plugins/check_dig.c:338 | ||
353 | msgid "Force dig to only use IPv4 query transport" | 249 | msgid "Force dig to only use IPv4 query transport" |
354 | msgstr "" | 250 | msgstr "" |
355 | 251 | ||
356 | #: plugins/check_dig.c:340 | ||
357 | msgid "Force dig to only use IPv6 query transport" | 252 | msgid "Force dig to only use IPv6 query transport" |
358 | msgstr "" | 253 | msgstr "" |
359 | 254 | ||
360 | #: plugins/check_dig.c:342 | ||
361 | msgid "Machine name to lookup" | 255 | msgid "Machine name to lookup" |
362 | msgstr "" | 256 | msgstr "" |
363 | 257 | ||
364 | #: plugins/check_dig.c:344 | ||
365 | msgid "Record type to lookup (default: A)" | 258 | msgid "Record type to lookup (default: A)" |
366 | msgstr "" | 259 | msgstr "" |
367 | 260 | ||
368 | #: plugins/check_dig.c:346 | ||
369 | msgid "" | 261 | msgid "" |
370 | "An address expected to be in the answer section. If not set, uses whatever" | 262 | "An address expected to be in the answer section. If not set, uses whatever" |
371 | msgstr "" | 263 | msgstr "" |
372 | 264 | ||
373 | #: plugins/check_dig.c:347 | ||
374 | msgid "was in -l" | 265 | msgid "was in -l" |
375 | msgstr "" | 266 | msgstr "" |
376 | 267 | ||
377 | #: plugins/check_dig.c:349 | ||
378 | msgid "Pass STRING as argument(s) to dig" | 268 | msgid "Pass STRING as argument(s) to dig" |
379 | msgstr "" | 269 | msgstr "" |
380 | 270 | ||
381 | #: plugins/check_disk.c:216 | ||
382 | #, c-format | 271 | #, c-format |
383 | msgid "DISK %s: %s not found\n" | 272 | msgid "DISK %s: %s not found\n" |
384 | msgstr "" | 273 | msgstr "" |
385 | 274 | ||
386 | #: plugins/check_disk.c:216 plugins/check_disk.c:956 plugins/check_dns.c:241 | ||
387 | #: plugins/check_dummy.c:74 plugins/check_mysql.c:299 | ||
388 | #: plugins/check_nagios.c:104 plugins/check_nagios.c:168 | ||
389 | #: plugins/check_nagios.c:172 plugins/check_pgsql.c:601 | ||
390 | #: plugins/check_pgsql.c:618 plugins/check_pgsql.c:627 | ||
391 | #: plugins/check_pgsql.c:642 plugins/check_procs.c:351 | ||
392 | #, c-format | 275 | #, c-format |
393 | msgid "CRITICAL" | 276 | msgid "CRITICAL" |
394 | msgstr "" | 277 | msgstr "" |
395 | 278 | ||
396 | #: plugins/check_disk.c:550 | ||
397 | #, c-format | 279 | #, c-format |
398 | msgid "unit type %s not known\n" | 280 | msgid "unit type %s not known\n" |
399 | msgstr "" | 281 | msgstr "" |
400 | 282 | ||
401 | #: plugins/check_disk.c:553 | ||
402 | #, c-format | 283 | #, c-format |
403 | msgid "failed allocating storage for '%s'\n" | 284 | msgid "failed allocating storage for '%s'\n" |
404 | msgstr "" | 285 | msgstr "" |
405 | 286 | ||
406 | #: plugins/check_disk.c:577 plugins/check_disk.c:618 plugins/check_disk.c:626 | ||
407 | #: plugins/check_disk.c:633 plugins/check_disk.c:637 plugins/check_disk.c:677 | ||
408 | #: plugins/check_disk.c:683 plugins/check_disk.c:702 plugins/check_dummy.c:77 | ||
409 | #: plugins/check_dummy.c:80 plugins/check_pgsql.c:643 | ||
410 | #: plugins/check_procs.c:506 | ||
411 | #, c-format | 287 | #, c-format |
412 | msgid "UNKNOWN" | 288 | msgid "UNKNOWN" |
413 | msgstr "" | 289 | msgstr "" |
414 | 290 | ||
415 | #: plugins/check_disk.c:577 | ||
416 | msgid "Must set a threshold value before using -p\n" | 291 | msgid "Must set a threshold value before using -p\n" |
417 | msgstr "" | 292 | msgstr "" |
418 | 293 | ||
419 | #: plugins/check_disk.c:618 | ||
420 | msgid "Must set -E before selecting paths\n" | 294 | msgid "Must set -E before selecting paths\n" |
421 | msgstr "" | 295 | msgstr "" |
422 | 296 | ||
423 | #: plugins/check_disk.c:626 | ||
424 | msgid "Must set group value before selecting paths\n" | 297 | msgid "Must set group value before selecting paths\n" |
425 | msgstr "" | 298 | msgstr "" |
426 | 299 | ||
427 | #: plugins/check_disk.c:633 | ||
428 | msgid "" | 300 | msgid "" |
429 | "Paths need to be selected before using -i/-I. Use -A to select all paths " | 301 | "Paths need to be selected before using -i/-I. Use -A to select all paths " |
430 | "explicitly" | 302 | "explicitly" |
431 | msgstr "" | 303 | msgstr "" |
432 | 304 | ||
433 | #: plugins/check_disk.c:637 plugins/check_disk.c:683 plugins/check_procs.c:506 | ||
434 | msgid "Could not compile regular expression" | 305 | msgid "Could not compile regular expression" |
435 | msgstr "" | 306 | msgstr "" |
436 | 307 | ||
437 | #: plugins/check_disk.c:677 | ||
438 | msgid "Must set a threshold value before using -r/-R\n" | 308 | msgid "Must set a threshold value before using -r/-R\n" |
439 | msgstr "" | 309 | msgstr "" |
440 | 310 | ||
441 | #: plugins/check_disk.c:703 | ||
442 | msgid "Regular expression did not match any path or disk" | 311 | msgid "Regular expression did not match any path or disk" |
443 | msgstr "" | 312 | msgstr "" |
444 | 313 | ||
445 | #: plugins/check_disk.c:749 | ||
446 | msgid "Unknown argument" | 314 | msgid "Unknown argument" |
447 | msgstr "" | 315 | msgstr "" |
448 | 316 | ||
449 | #: plugins/check_disk.c:783 | ||
450 | #, c-format | 317 | #, c-format |
451 | msgid " for %s\n" | 318 | msgid " for %s\n" |
452 | msgstr "" | 319 | msgstr "" |
453 | 320 | ||
454 | #: plugins/check_disk.c:857 | ||
455 | msgid "" | 321 | msgid "" |
456 | "This plugin checks the amount of used disk space on a mounted file system" | 322 | "This plugin checks the amount of used disk space on a mounted file system" |
457 | msgstr "" | 323 | msgstr "" |
458 | 324 | ||
459 | #: plugins/check_disk.c:858 | ||
460 | msgid "" | 325 | msgid "" |
461 | "and generates an alert if free space is less than one of the threshold values" | 326 | "and generates an alert if free space is less than one of the threshold values" |
462 | msgstr "" | 327 | msgstr "" |
463 | 328 | ||
464 | #: plugins/check_disk.c:868 | ||
465 | msgid "Exit with WARNING status if less than INTEGER units of disk are free" | 329 | msgid "Exit with WARNING status if less than INTEGER units of disk are free" |
466 | msgstr "" | 330 | msgstr "" |
467 | 331 | ||
468 | #: plugins/check_disk.c:870 | ||
469 | msgid "Exit with WARNING status if less than PERCENT of disk space is free" | 332 | msgid "Exit with WARNING status if less than PERCENT of disk space is free" |
470 | msgstr "" | 333 | msgstr "" |
471 | 334 | ||
472 | #: plugins/check_disk.c:872 | ||
473 | msgid "Exit with CRITICAL status if less than INTEGER units of disk are free" | 335 | msgid "Exit with CRITICAL status if less than INTEGER units of disk are free" |
474 | msgstr "" | 336 | msgstr "" |
475 | 337 | ||
476 | #: plugins/check_disk.c:874 | ||
477 | msgid "Exit with CRITICAL status if less than PERCENT of disk space is free" | 338 | msgid "Exit with CRITICAL status if less than PERCENT of disk space is free" |
478 | msgstr "" | 339 | msgstr "" |
479 | 340 | ||
480 | #: plugins/check_disk.c:876 | ||
481 | msgid "Exit with WARNING status if less than PERCENT of inode space is free" | 341 | msgid "Exit with WARNING status if less than PERCENT of inode space is free" |
482 | msgstr "" | 342 | msgstr "" |
483 | 343 | ||
484 | #: plugins/check_disk.c:878 | ||
485 | msgid "Exit with CRITICAL status if less than PERCENT of inode space is free" | 344 | msgid "Exit with CRITICAL status if less than PERCENT of inode space is free" |
486 | msgstr "" | 345 | msgstr "" |
487 | 346 | ||
488 | #: plugins/check_disk.c:880 | 347 | msgid "" |
489 | msgid "Path or partition (may be repeated)" | 348 | "Mount point or block device as emitted by the mount(8) command (may be " |
349 | "repeated)" | ||
490 | msgstr "" | 350 | msgstr "" |
491 | 351 | ||
492 | #: plugins/check_disk.c:882 | ||
493 | msgid "Ignore device (only works if -p unspecified)" | 352 | msgid "Ignore device (only works if -p unspecified)" |
494 | msgstr "" | 353 | msgstr "" |
495 | 354 | ||
496 | #: plugins/check_disk.c:884 | ||
497 | msgid "Clear thresholds" | 355 | msgid "Clear thresholds" |
498 | msgstr "" | 356 | msgstr "" |
499 | 357 | ||
500 | #: plugins/check_disk.c:886 | ||
501 | msgid "For paths or partitions specified with -p, only check for exact paths" | 358 | msgid "For paths or partitions specified with -p, only check for exact paths" |
502 | msgstr "" | 359 | msgstr "" |
503 | 360 | ||
504 | #: plugins/check_disk.c:888 | ||
505 | msgid "Display only devices/mountpoints with errors" | 361 | msgid "Display only devices/mountpoints with errors" |
506 | msgstr "" | 362 | msgstr "" |
507 | 363 | ||
508 | #: plugins/check_disk.c:890 | ||
509 | msgid "Don't account root-reserved blocks into freespace in perfdata" | 364 | msgid "Don't account root-reserved blocks into freespace in perfdata" |
510 | msgstr "" | 365 | msgstr "" |
511 | 366 | ||
512 | #: plugins/check_disk.c:892 | 367 | msgid "Display inode usage in perfdata" |
368 | msgstr "" | ||
369 | |||
513 | msgid "" | 370 | msgid "" |
514 | "Group paths. Thresholds apply to (free-)space of all partitions together" | 371 | "Group paths. Thresholds apply to (free-)space of all partitions together" |
515 | msgstr "" | 372 | msgstr "" |
516 | 373 | ||
517 | #: plugins/check_disk.c:894 | ||
518 | msgid "Same as '--units kB'" | 374 | msgid "Same as '--units kB'" |
519 | msgstr "" | 375 | msgstr "" |
520 | 376 | ||
521 | #: plugins/check_disk.c:896 | ||
522 | msgid "Only check local filesystems" | 377 | msgid "Only check local filesystems" |
523 | msgstr "" | 378 | msgstr "" |
524 | 379 | ||
525 | #: plugins/check_disk.c:898 | ||
526 | msgid "" | 380 | msgid "" |
527 | "Only check local filesystems against thresholds. Yet call stat on remote " | 381 | "Only check local filesystems against thresholds. Yet call stat on remote " |
528 | "filesystems" | 382 | "filesystems" |
529 | msgstr "" | 383 | msgstr "" |
530 | 384 | ||
531 | #: plugins/check_disk.c:899 | ||
532 | msgid "to test if they are accessible (e.g. to detect Stale NFS Handles)" | 385 | msgid "to test if they are accessible (e.g. to detect Stale NFS Handles)" |
533 | msgstr "" | 386 | msgstr "" |
534 | 387 | ||
535 | #: plugins/check_disk.c:901 | 388 | msgid "Display the (block) device instead of the mount point" |
536 | msgid "Display the mountpoint instead of the partition" | ||
537 | msgstr "" | 389 | msgstr "" |
538 | 390 | ||
539 | #: plugins/check_disk.c:903 | ||
540 | msgid "Same as '--units MB'" | 391 | msgid "Same as '--units MB'" |
541 | msgstr "" | 392 | msgstr "" |
542 | 393 | ||
543 | #: plugins/check_disk.c:905 | ||
544 | msgid "Explicitly select all paths. This is equivalent to -R '.*'" | 394 | msgid "Explicitly select all paths. This is equivalent to -R '.*'" |
545 | msgstr "" | 395 | msgstr "" |
546 | 396 | ||
547 | #: plugins/check_disk.c:907 | ||
548 | msgid "" | 397 | msgid "" |
549 | "Case insensitive regular expression for path/partition (may be repeated)" | 398 | "Case insensitive regular expression for path/partition (may be repeated)" |
550 | msgstr "" | 399 | msgstr "" |
551 | 400 | ||
552 | #: plugins/check_disk.c:909 | ||
553 | msgid "Regular expression for path or partition (may be repeated)" | 401 | msgid "Regular expression for path or partition (may be repeated)" |
554 | msgstr "" | 402 | msgstr "" |
555 | 403 | ||
556 | #: plugins/check_disk.c:911 | ||
557 | msgid "" | 404 | msgid "" |
558 | "Regular expression to ignore selected path/partition (case insensitive) (may " | 405 | "Regular expression to ignore selected path/partition (case insensitive) (may " |
559 | "be repeated)" | 406 | "be repeated)" |
560 | msgstr "" | 407 | msgstr "" |
561 | 408 | ||
562 | #: plugins/check_disk.c:913 | ||
563 | msgid "" | 409 | msgid "" |
564 | "Regular expression to ignore selected path or partition (may be repeated)" | 410 | "Regular expression to ignore selected path or partition (may be repeated)" |
565 | msgstr "" | 411 | msgstr "" |
566 | 412 | ||
567 | #: plugins/check_disk.c:916 | 413 | msgid "" |
414 | "Return OK if no filesystem matches, filesystem does not exist or is " | ||
415 | "inaccessible." | ||
416 | msgstr "" | ||
417 | |||
418 | msgid "(Provide this option before -p / -r / --ereg-path if used)" | ||
419 | msgstr "" | ||
420 | |||
568 | msgid "Choose bytes, kB, MB, GB, TB (default: MB)" | 421 | msgid "Choose bytes, kB, MB, GB, TB (default: MB)" |
569 | msgstr "" | 422 | msgstr "" |
570 | 423 | ||
571 | #: plugins/check_disk.c:919 | ||
572 | msgid "Ignore all filesystems of indicated type (may be repeated)" | 424 | msgid "Ignore all filesystems of indicated type (may be repeated)" |
573 | msgstr "" | 425 | msgstr "" |
574 | 426 | ||
575 | #: plugins/check_disk.c:921 | ||
576 | msgid "Check only filesystems of indicated type (may be repeated)" | 427 | msgid "Check only filesystems of indicated type (may be repeated)" |
577 | msgstr "" | 428 | msgstr "" |
578 | 429 | ||
579 | #: plugins/check_disk.c:926 | ||
580 | msgid "Checks /tmp and /var at 10% and 5%, and / at 100MB and 50MB" | 430 | msgid "Checks /tmp and /var at 10% and 5%, and / at 100MB and 50MB" |
581 | msgstr "" | 431 | msgstr "" |
582 | 432 | ||
583 | #: plugins/check_disk.c:928 | ||
584 | msgid "" | 433 | msgid "" |
585 | "Checks all filesystems not matching -r at 100M and 50M. The fs matching the -" | 434 | "Checks all filesystems not matching -r at 100M and 50M. The fs matching the -" |
586 | "r regex" | 435 | "r regex" |
587 | msgstr "" | 436 | msgstr "" |
588 | 437 | ||
589 | #: plugins/check_disk.c:929 | ||
590 | msgid "" | 438 | msgid "" |
591 | "are grouped which means the freespace thresholds are applied to all disks " | 439 | "are grouped which means the freespace thresholds are applied to all disks " |
592 | "together" | 440 | "together" |
593 | msgstr "" | 441 | msgstr "" |
594 | 442 | ||
595 | #: plugins/check_disk.c:931 | ||
596 | msgid "" | 443 | msgid "" |
597 | "Checks /foo for 1000M/500M and /bar for 5/3%. All remaining volumes use " | 444 | "Checks /foo for 1000M/500M and /bar for 5/3%. All remaining volumes use " |
598 | "100M/50M" | 445 | "100M/50M" |
599 | msgstr "" | 446 | msgstr "" |
600 | 447 | ||
601 | #: plugins/check_disk.c:957 | ||
602 | #, c-format | 448 | #, c-format |
603 | msgid "%s %s: %s\n" | 449 | msgid "%s %s: %s\n" |
604 | msgstr "" | 450 | msgstr "" |
605 | 451 | ||
606 | #: plugins/check_disk.c:957 | ||
607 | msgid "is not accessible" | 452 | msgid "is not accessible" |
608 | msgstr "" | 453 | msgstr "" |
609 | 454 | ||
610 | #: plugins/check_dns.c:116 | ||
611 | msgid "nslookup returned an error status" | 455 | msgid "nslookup returned an error status" |
612 | msgstr "" | 456 | msgstr "" |
613 | 457 | ||
614 | #: plugins/check_dns.c:134 | ||
615 | msgid "Warning plugin error" | 458 | msgid "Warning plugin error" |
616 | msgstr "" | 459 | msgstr "" |
617 | 460 | ||
618 | #: plugins/check_dns.c:154 | 461 | #, c-format |
462 | msgid "DNS CRITICAL - '%s' returned empty server string\n" | ||
463 | msgstr "" | ||
464 | |||
465 | #, c-format | ||
466 | msgid "DNS CRITICAL - No response from DNS %s\n" | ||
467 | msgstr "" | ||
468 | |||
619 | #, c-format | 469 | #, c-format |
620 | msgid "DNS CRITICAL - '%s' returned empty host name string\n" | 470 | msgid "DNS CRITICAL - '%s' returned empty host name string\n" |
621 | msgstr "" | 471 | msgstr "" |
622 | 472 | ||
623 | #: plugins/check_dns.c:160 | ||
624 | msgid "Non-authoritative answer:" | 473 | msgid "Non-authoritative answer:" |
625 | msgstr "" | 474 | msgstr "" |
626 | 475 | ||
627 | #: plugins/check_dns.c:201 | 476 | #, c-format |
477 | msgid "Domain '%s' was not found by the server\n" | ||
478 | msgstr "" | ||
479 | |||
628 | #, c-format | 480 | #, c-format |
629 | msgid "DNS CRITICAL - '%s' msg parsing exited with no address\n" | 481 | msgid "DNS CRITICAL - '%s' msg parsing exited with no address\n" |
630 | msgstr "" | 482 | msgstr "" |
631 | 483 | ||
632 | #: plugins/check_dns.c:216 | ||
633 | #, c-format | 484 | #, c-format |
634 | msgid "expected '%s' but got '%s'" | 485 | msgid "expected '%s' but got '%s'" |
635 | msgstr "" | 486 | msgstr "" |
636 | 487 | ||
637 | #: plugins/check_dns.c:223 | 488 | #, c-format |
489 | msgid "Domain '%s' was found by the server: '%s'\n" | ||
490 | msgstr "" | ||
491 | |||
638 | #, c-format | 492 | #, c-format |
639 | msgid "server %s is not authoritative for %s" | 493 | msgid "server %s is not authoritative for %s" |
640 | msgstr "" | 494 | msgstr "" |
641 | 495 | ||
642 | #: plugins/check_dns.c:237 plugins/check_dummy.c:68 plugins/check_nagios.c:182 | ||
643 | #: plugins/check_pgsql.c:638 plugins/check_procs.c:344 | ||
644 | #, c-format | 496 | #, c-format |
645 | msgid "OK" | 497 | msgid "OK" |
646 | msgstr "" | 498 | msgstr "" |
647 | 499 | ||
648 | #: plugins/check_dns.c:239 plugins/check_dummy.c:71 plugins/check_mysql.c:296 | ||
649 | #: plugins/check_nagios.c:182 plugins/check_pgsql.c:607 | ||
650 | #: plugins/check_pgsql.c:612 plugins/check_pgsql.c:640 | ||
651 | #: plugins/check_procs.c:346 | ||
652 | #, c-format | 500 | #, c-format |
653 | msgid "WARNING" | 501 | msgid "WARNING" |
654 | msgstr "" | 502 | msgstr "" |
655 | 503 | ||
656 | #: plugins/check_dns.c:243 | ||
657 | #, c-format | 504 | #, c-format |
658 | msgid "%.3f second response time" | 505 | msgid "%.3f second response time" |
659 | msgid_plural "%.3f seconds response time" | 506 | msgid_plural "%.3f seconds response time" |
660 | msgstr[0] "" | 507 | msgstr[0] "" |
661 | msgstr[1] "" | 508 | msgstr[1] "" |
662 | 509 | ||
663 | #: plugins/check_dns.c:244 | ||
664 | #, c-format | 510 | #, c-format |
665 | msgid ". %s returns %s" | 511 | msgid ". %s returns %s" |
666 | msgstr "" | 512 | msgstr "" |
667 | 513 | ||
668 | #: plugins/check_dns.c:248 | ||
669 | #, c-format | 514 | #, c-format |
670 | msgid "DNS WARNING - %s\n" | 515 | msgid "DNS WARNING - %s\n" |
671 | msgstr "" | 516 | msgstr "" |
672 | 517 | ||
673 | #: plugins/check_dns.c:249 plugins/check_dns.c:252 plugins/check_dns.c:255 | ||
674 | msgid " Probably a non-existent host/domain" | 518 | msgid " Probably a non-existent host/domain" |
675 | msgstr "" | 519 | msgstr "" |
676 | 520 | ||
677 | #: plugins/check_dns.c:251 | ||
678 | #, c-format | 521 | #, c-format |
679 | msgid "DNS CRITICAL - %s\n" | 522 | msgid "DNS CRITICAL - %s\n" |
680 | msgstr "" | 523 | msgstr "" |
681 | 524 | ||
682 | #: plugins/check_dns.c:254 | ||
683 | #, c-format | 525 | #, c-format |
684 | msgid "DNS UNKNOWN - %s\n" | 526 | msgid "DNS UNKNOWN - %s\n" |
685 | msgstr "" | 527 | msgstr "" |
686 | 528 | ||
687 | #: plugins/check_dns.c:267 | ||
688 | msgid "Note: nslookup is deprecated and may be removed from future releases." | 529 | msgid "Note: nslookup is deprecated and may be removed from future releases." |
689 | msgstr "" | 530 | msgstr "" |
690 | 531 | ||
691 | #: plugins/check_dns.c:268 | ||
692 | msgid "Consider using the `dig' or `host' programs instead. Run nslookup with" | 532 | msgid "Consider using the `dig' or `host' programs instead. Run nslookup with" |
693 | msgstr "" | 533 | msgstr "" |
694 | 534 | ||
695 | #: plugins/check_dns.c:269 | ||
696 | msgid "the `-sil[ent]' option to prevent this message from appearing." | 535 | msgid "the `-sil[ent]' option to prevent this message from appearing." |
697 | msgstr "" | 536 | msgstr "" |
698 | 537 | ||
699 | #: plugins/check_dns.c:274 | ||
700 | #, c-format | 538 | #, c-format |
701 | msgid "No response from DNS %s\n" | 539 | msgid "No response from DNS %s\n" |
702 | msgstr "" | 540 | msgstr "" |
703 | 541 | ||
704 | #: plugins/check_dns.c:278 | ||
705 | #, c-format | 542 | #, c-format |
706 | msgid "DNS %s has no records\n" | 543 | msgid "DNS %s has no records\n" |
707 | msgstr "" | 544 | msgstr "" |
708 | 545 | ||
709 | #: plugins/check_dns.c:286 | ||
710 | #, c-format | 546 | #, c-format |
711 | msgid "Connection to DNS %s was refused\n" | 547 | msgid "Connection to DNS %s was refused\n" |
712 | msgstr "" | 548 | msgstr "" |
713 | 549 | ||
714 | #: plugins/check_dns.c:290 | ||
715 | #, c-format | 550 | #, c-format |
716 | msgid "Query was refused by DNS server at %s\n" | 551 | msgid "Query was refused by DNS server at %s\n" |
717 | msgstr "" | 552 | msgstr "" |
718 | 553 | ||
719 | #: plugins/check_dns.c:294 | ||
720 | #, c-format | 554 | #, c-format |
721 | msgid "No information returned by DNS server at %s\n" | 555 | msgid "No information returned by DNS server at %s\n" |
722 | msgstr "" | 556 | msgstr "" |
723 | 557 | ||
724 | #: plugins/check_dns.c:300 | ||
725 | #, c-format | ||
726 | msgid "Domain %s was not found by the server\n" | ||
727 | msgstr "" | ||
728 | |||
729 | #: plugins/check_dns.c:304 | ||
730 | msgid "Network is unreachable\n" | 558 | msgid "Network is unreachable\n" |
731 | msgstr "" | 559 | msgstr "" |
732 | 560 | ||
733 | #: plugins/check_dns.c:308 | ||
734 | #, c-format | 561 | #, c-format |
735 | msgid "DNS failure for %s\n" | 562 | msgid "DNS failure for %s\n" |
736 | msgstr "" | 563 | msgstr "" |
737 | 564 | ||
738 | #: plugins/check_dns.c:372 plugins/check_dns.c:380 plugins/check_dns.c:387 | ||
739 | #: plugins/check_dns.c:392 plugins/check_dns.c:414 plugins/check_dns.c:422 | ||
740 | #: plugins/check_game.c:211 plugins/check_game.c:219 | ||
741 | msgid "Input buffer overflow\n" | 565 | msgid "Input buffer overflow\n" |
742 | msgstr "" | 566 | msgstr "" |
743 | 567 | ||
744 | #: plugins/check_dns.c:450 | ||
745 | msgid "" | 568 | msgid "" |
746 | "This plugin uses the nslookup program to obtain the IP address for the given " | 569 | "This plugin uses the nslookup program to obtain the IP address for the given " |
747 | "host/domain query." | 570 | "host/domain query." |
748 | msgstr "" | 571 | msgstr "" |
749 | 572 | ||
750 | #: plugins/check_dns.c:451 | ||
751 | msgid "An optional DNS server to use may be specified." | 573 | msgid "An optional DNS server to use may be specified." |
752 | msgstr "" | 574 | msgstr "" |
753 | 575 | ||
754 | #: plugins/check_dns.c:452 | ||
755 | msgid "" | 576 | msgid "" |
756 | "If no DNS server is specified, the default server(s) specified in /etc/" | 577 | "If no DNS server is specified, the default server(s) specified in /etc/" |
757 | "resolv.conf will be used." | 578 | "resolv.conf will be used." |
758 | msgstr "" | 579 | msgstr "" |
759 | 580 | ||
760 | #: plugins/check_dns.c:462 | ||
761 | msgid "The name or address you want to query" | 581 | msgid "The name or address you want to query" |
762 | msgstr "" | 582 | msgstr "" |
763 | 583 | ||
764 | #: plugins/check_dns.c:464 | ||
765 | msgid "Optional DNS server you want to use for the lookup" | 584 | msgid "Optional DNS server you want to use for the lookup" |
766 | msgstr "" | 585 | msgstr "" |
767 | 586 | ||
768 | #: plugins/check_dns.c:466 | ||
769 | msgid "" | 587 | msgid "" |
770 | "Optional IP-ADDRESS you expect the DNS server to return. HOST must end with" | 588 | "Optional IP-ADDRESS/CIDR you expect the DNS server to return. HOST must end" |
771 | msgstr "" | 589 | msgstr "" |
772 | 590 | ||
773 | #: plugins/check_dns.c:467 | ||
774 | msgid "" | 591 | msgid "" |
775 | "a dot (.). This option can be repeated multiple times (Returns OK if any" | 592 | "with a dot (.). This option can be repeated multiple times (Returns OK if any" |
776 | msgstr "" | 593 | msgstr "" |
777 | 594 | ||
778 | #: plugins/check_dns.c:468 | 595 | msgid "value matches)." |
779 | msgid "" | ||
780 | "value match). If multiple addresses are returned at once, you have to match" | ||
781 | msgstr "" | 596 | msgstr "" |
782 | 597 | ||
783 | #: plugins/check_dns.c:469 | ||
784 | msgid "" | 598 | msgid "" |
785 | "the whole string of addresses separated with commas (sorted alphabetically)." | 599 | "Expect the DNS server to return NXDOMAIN (i.e. the domain was not found)" |
600 | msgstr "" | ||
601 | |||
602 | msgid "Cannot be used together with -a" | ||
786 | msgstr "" | 603 | msgstr "" |
787 | 604 | ||
788 | #: plugins/check_dns.c:471 | ||
789 | msgid "Optionally expect the DNS server to be authoritative for the lookup" | 605 | msgid "Optionally expect the DNS server to be authoritative for the lookup" |
790 | msgstr "" | 606 | msgstr "" |
791 | 607 | ||
792 | #: plugins/check_dns.c:473 | ||
793 | msgid "Return warning if elapsed time exceeds value. Default off" | 608 | msgid "Return warning if elapsed time exceeds value. Default off" |
794 | msgstr "" | 609 | msgstr "" |
795 | 610 | ||
796 | #: plugins/check_dns.c:475 | ||
797 | msgid "Return critical if elapsed time exceeds value. Default off" | 611 | msgid "Return critical if elapsed time exceeds value. Default off" |
798 | msgstr "" | 612 | msgstr "" |
799 | 613 | ||
800 | #: plugins/check_dummy.c:62 | 614 | msgid "" |
615 | "Return critical if the list of expected addresses does not match all " | ||
616 | "addresses" | ||
617 | msgstr "" | ||
618 | |||
619 | msgid "returned. Default off" | ||
620 | msgstr "" | ||
621 | |||
801 | msgid "Arguments to check_dummy must be an integer" | 622 | msgid "Arguments to check_dummy must be an integer" |
802 | msgstr "" | 623 | msgstr "" |
803 | 624 | ||
804 | #: plugins/check_dummy.c:82 | ||
805 | #, c-format | 625 | #, c-format |
806 | msgid "Status %d is not a supported error state\n" | 626 | msgid "Status %d is not a supported error state\n" |
807 | msgstr "" | 627 | msgstr "" |
808 | 628 | ||
809 | #: plugins/check_dummy.c:104 | ||
810 | msgid "" | 629 | msgid "" |
811 | "This plugin will simply return the state corresponding to the numeric value" | 630 | "This plugin will simply return the state corresponding to the numeric value" |
812 | msgstr "" | 631 | msgstr "" |
813 | 632 | ||
814 | #: plugins/check_dummy.c:106 | ||
815 | msgid "of the <state> argument with optional text" | 633 | msgid "of the <state> argument with optional text" |
816 | msgstr "" | 634 | msgstr "" |
817 | 635 | ||
818 | #: plugins/check_fping.c:125 plugins/check_hpjd.c:128 plugins/check_ping.c:438 | ||
819 | #: plugins/check_swap.c:175 plugins/check_users.c:94 plugins/urlize.c:110 | ||
820 | #, c-format | 636 | #, c-format |
821 | msgid "Could not open pipe: %s\n" | 637 | msgid "Could not open pipe: %s\n" |
822 | msgstr "" | 638 | msgstr "" |
823 | 639 | ||
824 | #: plugins/check_fping.c:131 plugins/check_hpjd.c:134 plugins/check_load.c:153 | ||
825 | #: plugins/check_swap.c:181 plugins/check_users.c:100 plugins/urlize.c:116 | ||
826 | #, c-format | 640 | #, c-format |
827 | msgid "Could not open stderr for %s\n" | 641 | msgid "Could not open stderr for %s\n" |
828 | msgstr "" | 642 | msgstr "" |
829 | 643 | ||
830 | #: plugins/check_fping.c:157 | ||
831 | msgid "FPING UNKNOWN - IP address not found\n" | 644 | msgid "FPING UNKNOWN - IP address not found\n" |
832 | msgstr "" | 645 | msgstr "" |
833 | 646 | ||
834 | #: plugins/check_fping.c:160 | ||
835 | msgid "FPING UNKNOWN - invalid commandline argument\n" | 647 | msgid "FPING UNKNOWN - invalid commandline argument\n" |
836 | msgstr "" | 648 | msgstr "" |
837 | 649 | ||
838 | #: plugins/check_fping.c:163 | ||
839 | msgid "FPING UNKNOWN - failed system call\n" | 650 | msgid "FPING UNKNOWN - failed system call\n" |
840 | msgstr "" | 651 | msgstr "" |
841 | 652 | ||
842 | #: plugins/check_fping.c:187 | 653 | #, c-format |
654 | msgid "FPING %s - %s (rta=%f ms)|%s\n" | ||
655 | msgstr "" | ||
656 | |||
843 | #, c-format | 657 | #, c-format |
844 | msgid "FPING UNKNOWN - %s not found\n" | 658 | msgid "FPING UNKNOWN - %s not found\n" |
845 | msgstr "" | 659 | msgstr "" |
846 | 660 | ||
847 | #: plugins/check_fping.c:191 | ||
848 | #, c-format | 661 | #, c-format |
849 | msgid "FPING CRITICAL - %s is unreachable\n" | 662 | msgid "FPING CRITICAL - %s is unreachable\n" |
850 | msgstr "" | 663 | msgstr "" |
851 | 664 | ||
852 | #: plugins/check_fping.c:196 | ||
853 | #, c-format | 665 | #, c-format |
854 | msgid "FPING UNKNOWN - %s parameter error\n" | 666 | msgid "FPING UNKNOWN - %s parameter error\n" |
855 | msgstr "" | 667 | msgstr "" |
856 | 668 | ||
857 | #: plugins/check_fping.c:200 plugins/check_fping.c:240 | ||
858 | #, c-format | 669 | #, c-format |
859 | msgid "FPING CRITICAL - %s is down\n" | 670 | msgid "FPING CRITICAL - %s is down\n" |
860 | msgstr "" | 671 | msgstr "" |
861 | 672 | ||
862 | #: plugins/check_fping.c:227 | ||
863 | #, c-format | 673 | #, c-format |
864 | msgid "FPING %s - %s (loss=%.0f%%, rta=%f ms)|%s %s\n" | 674 | msgid "FPING %s - %s (loss=%.0f%%, rta=%f ms)|%s %s\n" |
865 | msgstr "" | 675 | msgstr "" |
866 | 676 | ||
867 | #: plugins/check_fping.c:253 | ||
868 | #, c-format | 677 | #, c-format |
869 | msgid "FPING %s - %s (loss=%.0f%% )|%s\n" | 678 | msgid "FPING %s - %s (loss=%.0f%% )|%s\n" |
870 | msgstr "" | 679 | msgstr "" |
871 | 680 | ||
872 | #: plugins/check_fping.c:326 plugins/check_fping.c:332 | ||
873 | #: plugins/check_hpjd.c:338 plugins/check_hpjd.c:361 plugins/check_mysql.c:371 | ||
874 | #: plugins/check_mysql.c:455 plugins/check_ntp.c:709 | ||
875 | #: plugins/check_ntp_peer.c:497 plugins/check_ntp_time.c:496 | ||
876 | #: plugins/check_pgsql.c:335 plugins/check_ping.c:295 plugins/check_ping.c:418 | ||
877 | #: plugins/check_radius.c:264 plugins/check_real.c:314 | ||
878 | #: plugins/check_real.c:376 plugins/check_smtp.c:499 plugins/check_smtp.c:641 | ||
879 | #: plugins/check_ssh.c:157 plugins/check_time.c:240 plugins/check_time.c:315 | ||
880 | #: plugins/check_ups.c:504 plugins/check_ups.c:573 | ||
881 | msgid "Invalid hostname/address" | 681 | msgid "Invalid hostname/address" |
882 | msgstr "" | 682 | msgstr "" |
883 | 683 | ||
884 | #: plugins/check_fping.c:345 plugins/check_ldap.c:353 plugins/check_ping.c:246 | ||
885 | msgid "IPv6 support not available\n" | 684 | msgid "IPv6 support not available\n" |
886 | msgstr "" | 685 | msgstr "" |
887 | 686 | ||
888 | #: plugins/check_fping.c:378 | ||
889 | msgid "Packet size must be a positive integer" | 687 | msgid "Packet size must be a positive integer" |
890 | msgstr "" | 688 | msgstr "" |
891 | 689 | ||
892 | #: plugins/check_fping.c:384 | ||
893 | msgid "Packet count must be a positive integer" | 690 | msgid "Packet count must be a positive integer" |
894 | msgstr "" | 691 | msgstr "" |
895 | 692 | ||
896 | #: plugins/check_fping.c:390 | ||
897 | msgid "Target timeout must be a positive integer" | 693 | msgid "Target timeout must be a positive integer" |
898 | msgstr "" | 694 | msgstr "" |
899 | 695 | ||
900 | #: plugins/check_fping.c:396 | ||
901 | msgid "Interval must be a positive integer" | 696 | msgid "Interval must be a positive integer" |
902 | msgstr "" | 697 | msgstr "" |
903 | 698 | ||
904 | #: plugins/check_fping.c:402 plugins/check_ntp.c:733 | ||
905 | #: plugins/check_ntp_peer.c:524 plugins/check_ntp_time.c:523 | ||
906 | #: plugins/check_radius.c:314 plugins/check_time.c:319 | ||
907 | msgid "Hostname was not supplied" | 699 | msgid "Hostname was not supplied" |
908 | msgstr "" | 700 | msgstr "" |
909 | 701 | ||
910 | #: plugins/check_fping.c:422 | ||
911 | #, c-format | 702 | #, c-format |
912 | msgid "%s: Only one threshold may be packet loss (%s)\n" | 703 | msgid "%s: Only one threshold may be packet loss (%s)\n" |
913 | msgstr "" | 704 | msgstr "" |
914 | 705 | ||
915 | #: plugins/check_fping.c:426 | ||
916 | #, c-format | 706 | #, c-format |
917 | msgid "%s: Only one threshold must be packet loss (%s)\n" | 707 | msgid "%s: Only one threshold must be packet loss (%s)\n" |
918 | msgstr "" | 708 | msgstr "" |
919 | 709 | ||
920 | #: plugins/check_fping.c:458 | ||
921 | msgid "" | 710 | msgid "" |
922 | "This plugin will use the fping command to ping the specified host for a fast " | 711 | "This plugin will use the fping command to ping the specified host for a fast " |
923 | "check" | 712 | "check" |
924 | msgstr "" | 713 | msgstr "" |
925 | 714 | ||
926 | #: plugins/check_fping.c:460 | ||
927 | msgid "Note that it is necessary to set the suid flag on fping." | 715 | msgid "Note that it is necessary to set the suid flag on fping." |
928 | msgstr "" | 716 | msgstr "" |
929 | 717 | ||
930 | #: plugins/check_fping.c:472 | ||
931 | msgid "" | 718 | msgid "" |
932 | "name or IP Address of host to ping (IP Address bypasses name lookup, " | 719 | "name or IP Address of host to ping (IP Address bypasses name lookup, " |
933 | "reducing system load)" | 720 | "reducing system load)" |
934 | msgstr "" | 721 | msgstr "" |
935 | 722 | ||
936 | #: plugins/check_fping.c:474 plugins/check_ping.c:575 | ||
937 | msgid "warning threshold pair" | 723 | msgid "warning threshold pair" |
938 | msgstr "" | 724 | msgstr "" |
939 | 725 | ||
940 | #: plugins/check_fping.c:476 plugins/check_ping.c:577 | ||
941 | msgid "critical threshold pair" | 726 | msgid "critical threshold pair" |
942 | msgstr "" | 727 | msgstr "" |
943 | 728 | ||
944 | #: plugins/check_fping.c:478 | 729 | msgid "Return OK after first successful reply" |
730 | msgstr "" | ||
731 | |||
945 | msgid "size of ICMP packet" | 732 | msgid "size of ICMP packet" |
946 | msgstr "" | 733 | msgstr "" |
947 | 734 | ||
948 | #: plugins/check_fping.c:480 | ||
949 | msgid "number of ICMP packets to send" | 735 | msgid "number of ICMP packets to send" |
950 | msgstr "" | 736 | msgstr "" |
951 | 737 | ||
952 | #: plugins/check_fping.c:482 | ||
953 | msgid "Target timeout (ms)" | 738 | msgid "Target timeout (ms)" |
954 | msgstr "" | 739 | msgstr "" |
955 | 740 | ||
956 | #: plugins/check_fping.c:484 | ||
957 | msgid "Interval (ms) between sending packets" | 741 | msgid "Interval (ms) between sending packets" |
958 | msgstr "" | 742 | msgstr "" |
959 | 743 | ||
960 | #: plugins/check_fping.c:486 | ||
961 | msgid "name or IP Address of sourceip" | 744 | msgid "name or IP Address of sourceip" |
962 | msgstr "" | 745 | msgstr "" |
963 | 746 | ||
964 | #: plugins/check_fping.c:488 | ||
965 | msgid "source interface name" | 747 | msgid "source interface name" |
966 | msgstr "" | 748 | msgstr "" |
967 | 749 | ||
968 | #: plugins/check_fping.c:491 | ||
969 | #, c-format | 750 | #, c-format |
970 | msgid "" | 751 | msgid "" |
971 | "THRESHOLD is <rta>,<pl>%% where <rta> is the round trip average travel time " | 752 | "THRESHOLD is <rta>,<pl>%% where <rta> is the round trip average travel time " |
972 | "(ms)" | 753 | "(ms)" |
973 | msgstr "" | 754 | msgstr "" |
974 | 755 | ||
975 | #: plugins/check_fping.c:492 | ||
976 | msgid "" | 756 | msgid "" |
977 | "which triggers a WARNING or CRITICAL state, and <pl> is the percentage of" | 757 | "which triggers a WARNING or CRITICAL state, and <pl> is the percentage of" |
978 | msgstr "" | 758 | msgstr "" |
979 | 759 | ||
980 | #: plugins/check_fping.c:493 | ||
981 | msgid "packet loss to trigger an alarm state." | 760 | msgid "packet loss to trigger an alarm state." |
982 | msgstr "" | 761 | msgstr "" |
983 | 762 | ||
984 | #: plugins/check_fping.c:496 | ||
985 | msgid "IPv4 is used by default. Specify -6 to use IPv6." | 763 | msgid "IPv4 is used by default. Specify -6 to use IPv6." |
986 | msgstr "" | 764 | msgstr "" |
987 | 765 | ||
988 | #: plugins/check_game.c:111 | ||
989 | #, c-format | 766 | #, c-format |
990 | msgid "CRITICAL - Host type parameter incorrect!\n" | 767 | msgid "CRITICAL - Host type parameter incorrect!\n" |
991 | msgstr "" | 768 | msgstr "" |
992 | 769 | ||
993 | #: plugins/check_game.c:126 | ||
994 | #, c-format | 770 | #, c-format |
995 | msgid "CRITICAL - Host not found\n" | 771 | msgid "CRITICAL - Host not found\n" |
996 | msgstr "" | 772 | msgstr "" |
997 | 773 | ||
998 | #: plugins/check_game.c:130 | ||
999 | #, c-format | 774 | #, c-format |
1000 | msgid "CRITICAL - Game server down or unavailable\n" | 775 | msgid "CRITICAL - Game server down or unavailable\n" |
1001 | msgstr "" | 776 | msgstr "" |
1002 | 777 | ||
1003 | #: plugins/check_game.c:134 | ||
1004 | #, c-format | 778 | #, c-format |
1005 | msgid "CRITICAL - Game server timeout\n" | 779 | msgid "CRITICAL - Game server timeout\n" |
1006 | msgstr "" | 780 | msgstr "" |
1007 | 781 | ||
1008 | #: plugins/check_game.c:297 | ||
1009 | #, c-format | 782 | #, c-format |
1010 | msgid "This plugin tests game server connections with the specified host." | 783 | msgid "This plugin tests game server connections with the specified host." |
1011 | msgstr "" | 784 | msgstr "" |
1012 | 785 | ||
1013 | #: plugins/check_game.c:307 | ||
1014 | msgid "Optional port of which to connect" | 786 | msgid "Optional port of which to connect" |
1015 | msgstr "" | 787 | msgstr "" |
1016 | 788 | ||
1017 | #: plugins/check_game.c:309 | ||
1018 | msgid "Field number in raw qstat output that contains game name" | 789 | msgid "Field number in raw qstat output that contains game name" |
1019 | msgstr "" | 790 | msgstr "" |
1020 | 791 | ||
1021 | #: plugins/check_game.c:311 | ||
1022 | msgid "Field number in raw qstat output that contains map name" | 792 | msgid "Field number in raw qstat output that contains map name" |
1023 | msgstr "" | 793 | msgstr "" |
1024 | 794 | ||
1025 | #: plugins/check_game.c:313 | ||
1026 | msgid "Field number in raw qstat output that contains ping time" | 795 | msgid "Field number in raw qstat output that contains ping time" |
1027 | msgstr "" | 796 | msgstr "" |
1028 | 797 | ||
1029 | #: plugins/check_game.c:319 | ||
1030 | msgid "" | 798 | msgid "" |
1031 | "This plugin uses the 'qstat' command, the popular game server status query " | 799 | "This plugin uses the 'qstat' command, the popular game server status query " |
1032 | "tool." | 800 | "tool." |
1033 | msgstr "" | 801 | msgstr "" |
1034 | 802 | ||
1035 | #: plugins/check_game.c:320 | ||
1036 | msgid "" | 803 | msgid "" |
1037 | "If you don't have the package installed, you will need to download it from" | 804 | "If you don't have the package installed, you will need to download it from" |
1038 | msgstr "" | 805 | msgstr "" |
1039 | 806 | ||
1040 | #: plugins/check_game.c:321 | 807 | msgid "https://github.com/multiplay/qstat before you can use this plugin." |
1041 | msgid "" | ||
1042 | "http://www.activesw.com/people/steve/qstat.html before you can use this " | ||
1043 | "plugin." | ||
1044 | msgstr "" | 808 | msgstr "" |
1045 | 809 | ||
1046 | #: plugins/check_hpjd.c:239 | ||
1047 | msgid "Paper Jam" | 810 | msgid "Paper Jam" |
1048 | msgstr "" | 811 | msgstr "" |
1049 | 812 | ||
1050 | #: plugins/check_hpjd.c:243 | ||
1051 | msgid "Out of Paper" | 813 | msgid "Out of Paper" |
1052 | msgstr "" | 814 | msgstr "" |
1053 | 815 | ||
1054 | #: plugins/check_hpjd.c:248 | ||
1055 | msgid "Printer Offline" | 816 | msgid "Printer Offline" |
1056 | msgstr "" | 817 | msgstr "" |
1057 | 818 | ||
1058 | #: plugins/check_hpjd.c:253 | ||
1059 | msgid "Peripheral Error" | 819 | msgid "Peripheral Error" |
1060 | msgstr "" | 820 | msgstr "" |
1061 | 821 | ||
1062 | #: plugins/check_hpjd.c:257 | ||
1063 | msgid "Intervention Required" | 822 | msgid "Intervention Required" |
1064 | msgstr "" | 823 | msgstr "" |
1065 | 824 | ||
1066 | #: plugins/check_hpjd.c:261 | ||
1067 | msgid "Toner Low" | 825 | msgid "Toner Low" |
1068 | msgstr "" | 826 | msgstr "" |
1069 | 827 | ||
1070 | #: plugins/check_hpjd.c:265 | ||
1071 | msgid "Insufficient Memory" | 828 | msgid "Insufficient Memory" |
1072 | msgstr "" | 829 | msgstr "" |
1073 | 830 | ||
1074 | #: plugins/check_hpjd.c:269 | ||
1075 | msgid "A Door is Open" | 831 | msgid "A Door is Open" |
1076 | msgstr "" | 832 | msgstr "" |
1077 | 833 | ||
1078 | #: plugins/check_hpjd.c:273 | ||
1079 | msgid "Output Tray is Full" | 834 | msgid "Output Tray is Full" |
1080 | msgstr "" | 835 | msgstr "" |
1081 | 836 | ||
1082 | #: plugins/check_hpjd.c:277 | ||
1083 | msgid "Data too Slow for Engine" | 837 | msgid "Data too Slow for Engine" |
1084 | msgstr "" | 838 | msgstr "" |
1085 | 839 | ||
1086 | #: plugins/check_hpjd.c:281 | ||
1087 | msgid "Unknown Paper Error" | 840 | msgid "Unknown Paper Error" |
1088 | msgstr "" | 841 | msgstr "" |
1089 | 842 | ||
1090 | #: plugins/check_hpjd.c:286 | ||
1091 | #, c-format | 843 | #, c-format |
1092 | msgid "Printer ok - (%s)\n" | 844 | msgid "Printer ok - (%s)\n" |
1093 | msgstr "" | 845 | msgstr "" |
1094 | 846 | ||
1095 | #: plugins/check_hpjd.c:391 | 847 | msgid "Port must be a positive short integer" |
848 | msgstr "" | ||
849 | |||
1096 | msgid "This plugin tests the STATUS of an HP printer with a JetDirect card." | 850 | msgid "This plugin tests the STATUS of an HP printer with a JetDirect card." |
1097 | msgstr "" | 851 | msgstr "" |
1098 | 852 | ||
1099 | #: plugins/check_hpjd.c:392 | ||
1100 | msgid "Net-snmp must be installed on the computer running the plugin." | 853 | msgid "Net-snmp must be installed on the computer running the plugin." |
1101 | msgstr "" | 854 | msgstr "" |
1102 | 855 | ||
1103 | #: plugins/check_hpjd.c:402 | ||
1104 | msgid "The SNMP community name " | 856 | msgid "The SNMP community name " |
1105 | msgstr "" | 857 | msgstr "" |
1106 | 858 | ||
1107 | #: plugins/check_hpjd.c:403 | ||
1108 | #, c-format | 859 | #, c-format |
1109 | msgid "(default=%s)" | 860 | msgid "(default=%s)" |
1110 | msgstr "" | 861 | msgstr "" |
1111 | 862 | ||
1112 | #: plugins/check_http.c:189 | 863 | msgid "Specify the port to check " |
864 | msgstr "" | ||
865 | |||
866 | msgid "Disable paper check " | ||
867 | msgstr "" | ||
868 | |||
1113 | msgid "file does not exist or is not readable" | 869 | msgid "file does not exist or is not readable" |
1114 | msgstr "" | 870 | msgstr "" |
1115 | 871 | ||
1116 | #: plugins/check_http.c:310 plugins/check_http.c:315 plugins/check_http.c:321 | ||
1117 | #: plugins/check_smtp.c:600 plugins/check_tcp.c:576 plugins/check_tcp.c:580 | ||
1118 | #: plugins/check_tcp.c:586 | ||
1119 | msgid "Invalid certificate expiration period" | 872 | msgid "Invalid certificate expiration period" |
1120 | msgstr "" | 873 | msgstr "" |
1121 | 874 | ||
1122 | #: plugins/check_http.c:348 | ||
1123 | msgid "" | 875 | msgid "" |
1124 | "Invalid option - Valid values for SSL Version are 1 (TLSv1), 2 (SSLv2) or 3 " | 876 | "Invalid option - Valid SSL/TLS versions: 2, 3, 1, 1.1, 1.2 (with optional " |
1125 | "(SSLv3)" | 877 | "'+' suffix)" |
1126 | msgstr "" | 878 | msgstr "" |
1127 | 879 | ||
1128 | #: plugins/check_http.c:354 plugins/check_tcp.c:599 | ||
1129 | msgid "Invalid option - SSL is not available" | 880 | msgid "Invalid option - SSL is not available" |
1130 | msgstr "" | 881 | msgstr "" |
1131 | 882 | ||
1132 | #: plugins/check_http.c:375 | 883 | msgid "Invalid max_redirs count" |
884 | msgstr "" | ||
885 | |||
1133 | msgid "Invalid onredirect option" | 886 | msgid "Invalid onredirect option" |
1134 | msgstr "" | 887 | msgstr "" |
1135 | 888 | ||
1136 | #: plugins/check_http.c:377 | ||
1137 | #, c-format | 889 | #, c-format |
1138 | msgid "option f:%d \n" | 890 | msgid "option f:%d \n" |
1139 | msgstr "" | 891 | msgstr "" |
1140 | 892 | ||
1141 | #: plugins/check_http.c:398 | ||
1142 | msgid "Invalid port number" | 893 | msgid "Invalid port number" |
1143 | msgstr "" | 894 | msgstr "" |
1144 | 895 | ||
1145 | #: plugins/check_http.c:450 | ||
1146 | #, c-format | 896 | #, c-format |
1147 | msgid "Could Not Compile Regular Expression: %s" | 897 | msgid "Could Not Compile Regular Expression: %s" |
1148 | msgstr "" | 898 | msgstr "" |
1149 | 899 | ||
1150 | #: plugins/check_http.c:464 plugins/check_ntp.c:722 | ||
1151 | #: plugins/check_ntp_peer.c:513 plugins/check_ntp_time.c:512 | ||
1152 | #: plugins/check_smtp.c:621 plugins/check_ssh.c:149 plugins/check_tcp.c:477 | ||
1153 | msgid "IPv6 support not available" | 900 | msgid "IPv6 support not available" |
1154 | msgstr "" | 901 | msgstr "" |
1155 | 902 | ||
1156 | #: plugins/check_http.c:529 plugins/check_ping.c:422 | ||
1157 | msgid "You must specify a server address or host name" | 903 | msgid "You must specify a server address or host name" |
1158 | msgstr "" | 904 | msgstr "" |
1159 | 905 | ||
1160 | #: plugins/check_http.c:543 | ||
1161 | msgid "" | 906 | msgid "" |
1162 | "If you use a client certificate you must also specify a private key file" | 907 | "If you use a client certificate you must also specify a private key file" |
1163 | msgstr "" | 908 | msgstr "" |
1164 | 909 | ||
1165 | #: plugins/check_http.c:667 plugins/check_http.c:835 | ||
1166 | msgid "HTTP UNKNOWN - Memory allocation error\n" | 910 | msgid "HTTP UNKNOWN - Memory allocation error\n" |
1167 | msgstr "" | 911 | msgstr "" |
1168 | 912 | ||
1169 | #: plugins/check_http.c:739 | ||
1170 | #, c-format | 913 | #, c-format |
1171 | msgid "%sServer date unknown, " | 914 | msgid "%sServer date unknown, " |
1172 | msgstr "" | 915 | msgstr "" |
1173 | 916 | ||
1174 | #: plugins/check_http.c:742 | ||
1175 | #, c-format | 917 | #, c-format |
1176 | msgid "%sDocument modification date unknown, " | 918 | msgid "%sDocument modification date unknown, " |
1177 | msgstr "" | 919 | msgstr "" |
1178 | 920 | ||
1179 | #: plugins/check_http.c:749 | ||
1180 | #, c-format | 921 | #, c-format |
1181 | msgid "%sServer date \"%100s\" unparsable, " | 922 | msgid "%sServer date \"%100s\" unparsable, " |
1182 | msgstr "" | 923 | msgstr "" |
1183 | 924 | ||
1184 | #: plugins/check_http.c:752 | ||
1185 | #, c-format | 925 | #, c-format |
1186 | msgid "%sDocument date \"%100s\" unparsable, " | 926 | msgid "%sDocument date \"%100s\" unparsable, " |
1187 | msgstr "" | 927 | msgstr "" |
1188 | 928 | ||
1189 | #: plugins/check_http.c:755 | ||
1190 | #, c-format | 929 | #, c-format |
1191 | msgid "%sDocument is %d seconds in the future, " | 930 | msgid "%sDocument is %d seconds in the future, " |
1192 | msgstr "" | 931 | msgstr "" |
1193 | 932 | ||
1194 | #: plugins/check_http.c:760 | ||
1195 | #, c-format | 933 | #, c-format |
1196 | msgid "%sLast modified %.1f days ago, " | 934 | msgid "%sLast modified %.1f days ago, " |
1197 | msgstr "" | 935 | msgstr "" |
1198 | 936 | ||
1199 | #: plugins/check_http.c:763 | ||
1200 | #, c-format | 937 | #, c-format |
1201 | msgid "%sLast modified %d:%02d:%02d ago, " | 938 | msgid "%sLast modified %d:%02d:%02d ago, " |
1202 | msgstr "" | 939 | msgstr "" |
1203 | 940 | ||
1204 | #: plugins/check_http.c:876 | ||
1205 | msgid "HTTP CRITICAL - Unable to open TCP socket\n" | 941 | msgid "HTTP CRITICAL - Unable to open TCP socket\n" |
1206 | msgstr "" | 942 | msgstr "" |
1207 | 943 | ||
1208 | #: plugins/check_http.c:995 | 944 | msgid "HTTP UNKNOWN - Could not allocate memory for full_page\n" |
945 | msgstr "" | ||
946 | |||
1209 | msgid "HTTP CRITICAL - Error on receive\n" | 947 | msgid "HTTP CRITICAL - Error on receive\n" |
1210 | msgstr "" | 948 | msgstr "" |
1211 | 949 | ||
1212 | #: plugins/check_http.c:1005 | ||
1213 | msgid "HTTP CRITICAL - No data received from host\n" | 950 | msgid "HTTP CRITICAL - No data received from host\n" |
1214 | msgstr "" | 951 | msgstr "" |
1215 | 952 | ||
1216 | #: plugins/check_http.c:1056 | ||
1217 | #, c-format | 953 | #, c-format |
1218 | msgid "Invalid HTTP response received from host: %s\n" | 954 | msgid "Invalid HTTP response received from host: %s\n" |
1219 | msgstr "" | 955 | msgstr "" |
1220 | 956 | ||
1221 | #: plugins/check_http.c:1060 | ||
1222 | #, c-format | 957 | #, c-format |
1223 | msgid "Invalid HTTP response received from host on port %d: %s\n" | 958 | msgid "Invalid HTTP response received from host on port %d: %s\n" |
1224 | msgstr "" | 959 | msgstr "" |
1225 | 960 | ||
1226 | #: plugins/check_http.c:1069 | 961 | #, c-format |
962 | msgid "" | ||
963 | "%s\n" | ||
964 | "%s" | ||
965 | msgstr "" | ||
966 | |||
1227 | #, c-format | 967 | #, c-format |
1228 | msgid "Status line output matched \"%s\" - " | 968 | msgid "Status line output matched \"%s\" - " |
1229 | msgstr "" | 969 | msgstr "" |
1230 | 970 | ||
1231 | #: plugins/check_http.c:1080 | ||
1232 | #, c-format | 971 | #, c-format |
1233 | msgid "HTTP CRITICAL: Invalid Status Line (%s)\n" | 972 | msgid "HTTP CRITICAL: Invalid Status Line (%s)\n" |
1234 | msgstr "" | 973 | msgstr "" |
1235 | 974 | ||
1236 | #: plugins/check_http.c:1087 | ||
1237 | #, c-format | 975 | #, c-format |
1238 | msgid "HTTP CRITICAL: Invalid Status (%s)\n" | 976 | msgid "HTTP CRITICAL: Invalid Status (%s)\n" |
1239 | msgstr "" | 977 | msgstr "" |
1240 | 978 | ||
1241 | #: plugins/check_http.c:1091 plugins/check_http.c:1096 | ||
1242 | #: plugins/check_http.c:1106 plugins/check_http.c:1110 | ||
1243 | #, c-format | 979 | #, c-format |
1244 | msgid "%s - " | 980 | msgid "%s - " |
1245 | msgstr "" | 981 | msgstr "" |
1246 | 982 | ||
1247 | #: plugins/check_http.c:1129 | ||
1248 | #, c-format | 983 | #, c-format |
1249 | msgid "%sheader '%s' not found on '%s://%s:%d%s', " | 984 | msgid "%sheader '%s' not found on '%s://%s:%d%s', " |
1250 | msgstr "" | 985 | msgstr "" |
1251 | 986 | ||
1252 | #: plugins/check_http.c:1141 | ||
1253 | #, c-format | 987 | #, c-format |
1254 | msgid "%sstring '%s' not found on '%s://%s:%d%s', " | 988 | msgid "%sstring '%s' not found on '%s://%s:%d%s', " |
1255 | msgstr "" | 989 | msgstr "" |
1256 | 990 | ||
1257 | #: plugins/check_http.c:1154 | ||
1258 | #, c-format | 991 | #, c-format |
1259 | msgid "%spattern not found, " | 992 | msgid "%spattern not found, " |
1260 | msgstr "" | 993 | msgstr "" |
1261 | 994 | ||
1262 | #: plugins/check_http.c:1156 | ||
1263 | #, c-format | 995 | #, c-format |
1264 | msgid "%spattern found, " | 996 | msgid "%spattern found, " |
1265 | msgstr "" | 997 | msgstr "" |
1266 | 998 | ||
1267 | #: plugins/check_http.c:1162 | ||
1268 | #, c-format | 999 | #, c-format |
1269 | msgid "%sExecute Error: %s, " | 1000 | msgid "%sExecute Error: %s, " |
1270 | msgstr "" | 1001 | msgstr "" |
1271 | 1002 | ||
1272 | #: plugins/check_http.c:1178 | ||
1273 | #, c-format | 1003 | #, c-format |
1274 | msgid "%spage size %d too large, " | 1004 | msgid "%spage size %d too large, " |
1275 | msgstr "" | 1005 | msgstr "" |
1276 | 1006 | ||
1277 | #: plugins/check_http.c:1181 | ||
1278 | #, c-format | 1007 | #, c-format |
1279 | msgid "%spage size %d too small, " | 1008 | msgid "%spage size %d too small, " |
1280 | msgstr "" | 1009 | msgstr "" |
1281 | 1010 | ||
1282 | #: plugins/check_http.c:1194 | ||
1283 | #, c-format | 1011 | #, c-format |
1284 | msgid "%s - %d bytes in %.3f second response time %s|%s %s %s %s %s %s %s" | 1012 | msgid "%s - %d bytes in %.3f second response time %s|%s %s %s %s %s %s %s" |
1285 | msgstr "" | 1013 | msgstr "" |
1286 | 1014 | ||
1287 | #: plugins/check_http.c:1206 | ||
1288 | #, c-format | 1015 | #, c-format |
1289 | msgid "%s - %d bytes in %.3f second response time %s|%s %s" | 1016 | msgid "%s - %d bytes in %.3f second response time %s|%s %s" |
1290 | msgstr "" | 1017 | msgstr "" |
1291 | 1018 | ||
1292 | #: plugins/check_http.c:1244 | ||
1293 | msgid "HTTP UNKNOWN - Could not allocate addr\n" | 1019 | msgid "HTTP UNKNOWN - Could not allocate addr\n" |
1294 | msgstr "" | 1020 | msgstr "" |
1295 | 1021 | ||
1296 | #: plugins/check_http.c:1248 plugins/check_http.c:1279 | ||
1297 | msgid "HTTP UNKNOWN - Could not allocate URL\n" | 1022 | msgid "HTTP UNKNOWN - Could not allocate URL\n" |
1298 | msgstr "" | 1023 | msgstr "" |
1299 | 1024 | ||
1300 | #: plugins/check_http.c:1257 | ||
1301 | #, c-format | 1025 | #, c-format |
1302 | msgid "HTTP UNKNOWN - Could not find redirect location - %s%s\n" | 1026 | msgid "HTTP UNKNOWN - Could not find redirect location - %s%s\n" |
1303 | msgstr "" | 1027 | msgstr "" |
1304 | 1028 | ||
1305 | #: plugins/check_http.c:1272 | ||
1306 | #, c-format | 1029 | #, c-format |
1307 | msgid "HTTP UNKNOWN - Empty redirect location%s\n" | 1030 | msgid "HTTP UNKNOWN - Empty redirect location%s\n" |
1308 | msgstr "" | 1031 | msgstr "" |
1309 | 1032 | ||
1310 | #: plugins/check_http.c:1322 | ||
1311 | #, c-format | 1033 | #, c-format |
1312 | msgid "HTTP UNKNOWN - Could not parse redirect location - %s%s\n" | 1034 | msgid "HTTP UNKNOWN - Could not parse redirect location - %s%s\n" |
1313 | msgstr "" | 1035 | msgstr "" |
1314 | 1036 | ||
1315 | #: plugins/check_http.c:1332 | ||
1316 | #, c-format | 1037 | #, c-format |
1317 | msgid "HTTP WARNING - maximum redirection depth %d exceeded - %s://%s:%d%s%s\n" | 1038 | msgid "HTTP WARNING - maximum redirection depth %d exceeded - %s://%s:%d%s%s\n" |
1318 | msgstr "" | 1039 | msgstr "" |
1319 | 1040 | ||
1320 | #: plugins/check_http.c:1340 | ||
1321 | #, c-format | 1041 | #, c-format |
1322 | msgid "HTTP WARNING - redirection creates an infinite loop - %s://%s:%d%s%s\n" | 1042 | msgid "HTTP CRITICAL - redirection creates an infinite loop - %s://%s:%d%s%s\n" |
1323 | msgstr "" | 1043 | msgstr "" |
1324 | 1044 | ||
1325 | #: plugins/check_http.c:1361 | ||
1326 | #, c-format | 1045 | #, c-format |
1327 | msgid "HTTP UNKNOWN - Redirection to port above %d - %s://%s:%d%s%s\n" | 1046 | msgid "HTTP UNKNOWN - Redirection to port above %d - %s://%s:%d%s%s\n" |
1328 | msgstr "" | 1047 | msgstr "" |
1329 | 1048 | ||
1330 | #: plugins/check_http.c:1366 | ||
1331 | #, c-format | 1049 | #, c-format |
1332 | msgid "Redirection to %s://%s:%d%s\n" | 1050 | msgid "Redirection to %s://%s:%d%s\n" |
1333 | msgstr "" | 1051 | msgstr "" |
1334 | 1052 | ||
1335 | #: plugins/check_http.c:1440 | ||
1336 | msgid "This plugin tests the HTTP service on the specified host. It can test" | 1053 | msgid "This plugin tests the HTTP service on the specified host. It can test" |
1337 | msgstr "" | 1054 | msgstr "" |
1338 | 1055 | ||
1339 | #: plugins/check_http.c:1441 | ||
1340 | msgid "normal (http) and secure (https) servers, follow redirects, search for" | 1056 | msgid "normal (http) and secure (https) servers, follow redirects, search for" |
1341 | msgstr "" | 1057 | msgstr "" |
1342 | 1058 | ||
1343 | #: plugins/check_http.c:1442 | ||
1344 | msgid "strings and regular expressions, check connection times, and report on" | 1059 | msgid "strings and regular expressions, check connection times, and report on" |
1345 | msgstr "" | 1060 | msgstr "" |
1346 | 1061 | ||
1347 | #: plugins/check_http.c:1443 | ||
1348 | msgid "certificate expiration times." | 1062 | msgid "certificate expiration times." |
1349 | msgstr "" | 1063 | msgstr "" |
1350 | 1064 | ||
1351 | #: plugins/check_http.c:1449 | 1065 | #, c-format |
1066 | msgid "In the first form, make an HTTP request." | ||
1067 | msgstr "" | ||
1068 | |||
1069 | #, c-format | ||
1070 | msgid "" | ||
1071 | "In the second form, connect to the server and check the TLS certificate." | ||
1072 | msgstr "" | ||
1073 | |||
1352 | #, c-format | 1074 | #, c-format |
1353 | msgid "NOTE: One or both of -H and -I must be specified" | 1075 | msgid "NOTE: One or both of -H and -I must be specified" |
1354 | msgstr "" | 1076 | msgstr "" |
1355 | 1077 | ||
1356 | #: plugins/check_http.c:1457 | ||
1357 | msgid "Host name argument for servers using host headers (virtual host)" | 1078 | msgid "Host name argument for servers using host headers (virtual host)" |
1358 | msgstr "" | 1079 | msgstr "" |
1359 | 1080 | ||
1360 | #: plugins/check_http.c:1458 | ||
1361 | msgid "Append a port to include it in the header (eg: example.com:5000)" | 1081 | msgid "Append a port to include it in the header (eg: example.com:5000)" |
1362 | msgstr "" | 1082 | msgstr "" |
1363 | 1083 | ||
1364 | #: plugins/check_http.c:1460 | ||
1365 | msgid "" | 1084 | msgid "" |
1366 | "IP address or name (use numeric address if possible to bypass DNS lookup)." | 1085 | "IP address or name (use numeric address if possible to bypass DNS lookup)." |
1367 | msgstr "" | 1086 | msgstr "" |
1368 | 1087 | ||
1369 | #: plugins/check_http.c:1462 | ||
1370 | msgid "Port number (default: " | 1088 | msgid "Port number (default: " |
1371 | msgstr "" | 1089 | msgstr "" |
1372 | 1090 | ||
1373 | #: plugins/check_http.c:1469 | ||
1374 | msgid "" | 1091 | msgid "" |
1375 | "Connect via SSL. Port defaults to 443. VERSION is optional, and prevents" | 1092 | "Connect via SSL. Port defaults to 443. VERSION is optional, and prevents" |
1376 | msgstr "" | 1093 | msgstr "" |
1377 | 1094 | ||
1378 | #: plugins/check_http.c:1470 | 1095 | msgid "auto-negotiation (2 = SSLv2, 3 = SSLv3, 1 = TLSv1, 1.1 = TLSv1.1," |
1379 | msgid "auto-negotiation (1 = TLSv1, 2 = SSLv2, 3 = SSLv3)." | 1096 | msgstr "" |
1097 | |||
1098 | msgid "1.2 = TLSv1.2). With a '+' suffix, newer versions are also accepted." | ||
1380 | msgstr "" | 1099 | msgstr "" |
1381 | 1100 | ||
1382 | #: plugins/check_http.c:1472 | ||
1383 | msgid "Enable SSL/TLS hostname extension support (SNI)" | 1101 | msgid "Enable SSL/TLS hostname extension support (SNI)" |
1384 | msgstr "" | 1102 | msgstr "" |
1385 | 1103 | ||
1386 | #: plugins/check_http.c:1474 | ||
1387 | msgid "" | 1104 | msgid "" |
1388 | "Minimum number of days a certificate has to be valid. Port defaults to 443" | 1105 | "Minimum number of days a certificate has to be valid. Port defaults to 443" |
1389 | msgstr "" | 1106 | msgstr "" |
1390 | 1107 | ||
1391 | #: plugins/check_http.c:1475 | 1108 | msgid "" |
1392 | msgid "(when this option is used the URL is not checked.)" | 1109 | "(when this option is used the URL is not checked by default. You can use" |
1110 | msgstr "" | ||
1111 | |||
1112 | msgid " --continue-after-certificate to override this behavior)" | ||
1113 | msgstr "" | ||
1114 | |||
1115 | msgid "" | ||
1116 | "Allows the HTTP check to continue after performing the certificate check." | ||
1117 | msgstr "" | ||
1118 | |||
1119 | msgid "Does nothing unless -C is used." | ||
1393 | msgstr "" | 1120 | msgstr "" |
1394 | 1121 | ||
1395 | #: plugins/check_http.c:1477 | ||
1396 | msgid "Name of file that contains the client certificate (PEM format)" | 1122 | msgid "Name of file that contains the client certificate (PEM format)" |
1397 | msgstr "" | 1123 | msgstr "" |
1398 | 1124 | ||
1399 | #: plugins/check_http.c:1478 | ||
1400 | msgid "to be used in establishing the SSL session" | 1125 | msgid "to be used in establishing the SSL session" |
1401 | msgstr "" | 1126 | msgstr "" |
1402 | 1127 | ||
1403 | #: plugins/check_http.c:1480 | ||
1404 | msgid "Name of file containing the private key (PEM format)" | 1128 | msgid "Name of file containing the private key (PEM format)" |
1405 | msgstr "" | 1129 | msgstr "" |
1406 | 1130 | ||
1407 | #: plugins/check_http.c:1481 | ||
1408 | msgid "matching the client certificate" | 1131 | msgid "matching the client certificate" |
1409 | msgstr "" | 1132 | msgstr "" |
1410 | 1133 | ||
1411 | #: plugins/check_http.c:1485 | ||
1412 | msgid "Comma-delimited list of strings, at least one of them is expected in" | 1134 | msgid "Comma-delimited list of strings, at least one of them is expected in" |
1413 | msgstr "" | 1135 | msgstr "" |
1414 | 1136 | ||
1415 | #: plugins/check_http.c:1486 | ||
1416 | msgid "the first (status) line of the server response (default: " | 1137 | msgid "the first (status) line of the server response (default: " |
1417 | msgstr "" | 1138 | msgstr "" |
1418 | 1139 | ||
1419 | #: plugins/check_http.c:1488 | ||
1420 | msgid "" | 1140 | msgid "" |
1421 | "If specified skips all other status line logic (ex: 3xx, 4xx, 5xx processing)" | 1141 | "If specified skips all other status line logic (ex: 3xx, 4xx, 5xx processing)" |
1422 | msgstr "" | 1142 | msgstr "" |
1423 | 1143 | ||
1424 | #: plugins/check_http.c:1490 | ||
1425 | msgid "String to expect in the response headers" | 1144 | msgid "String to expect in the response headers" |
1426 | msgstr "" | 1145 | msgstr "" |
1427 | 1146 | ||
1428 | #: plugins/check_http.c:1492 | ||
1429 | msgid "String to expect in the content" | 1147 | msgid "String to expect in the content" |
1430 | msgstr "" | 1148 | msgstr "" |
1431 | 1149 | ||
1432 | #: plugins/check_http.c:1494 | ||
1433 | msgid "URL to GET or POST (default: /)" | 1150 | msgid "URL to GET or POST (default: /)" |
1434 | msgstr "" | 1151 | msgstr "" |
1435 | 1152 | ||
1436 | #: plugins/check_http.c:1496 | ||
1437 | msgid "URL encoded http POST data" | 1153 | msgid "URL encoded http POST data" |
1438 | msgstr "" | 1154 | msgstr "" |
1439 | 1155 | ||
1440 | #: plugins/check_http.c:1498 | ||
1441 | msgid "Set HTTP method." | 1156 | msgid "Set HTTP method." |
1442 | msgstr "" | 1157 | msgstr "" |
1443 | 1158 | ||
1444 | #: plugins/check_http.c:1500 | ||
1445 | msgid "Don't wait for document body: stop reading after headers." | 1159 | msgid "Don't wait for document body: stop reading after headers." |
1446 | msgstr "" | 1160 | msgstr "" |
1447 | 1161 | ||
1448 | #: plugins/check_http.c:1501 | ||
1449 | msgid "(Note that this still does an HTTP GET or POST, not a HEAD.)" | 1162 | msgid "(Note that this still does an HTTP GET or POST, not a HEAD.)" |
1450 | msgstr "" | 1163 | msgstr "" |
1451 | 1164 | ||
1452 | #: plugins/check_http.c:1503 | ||
1453 | msgid "Warn if document is more than SECONDS old. the number can also be of" | 1165 | msgid "Warn if document is more than SECONDS old. the number can also be of" |
1454 | msgstr "" | 1166 | msgstr "" |
1455 | 1167 | ||
1456 | #: plugins/check_http.c:1504 | ||
1457 | msgid "the form \"10m\" for minutes, \"10h\" for hours, or \"10d\" for days." | 1168 | msgid "the form \"10m\" for minutes, \"10h\" for hours, or \"10d\" for days." |
1458 | msgstr "" | 1169 | msgstr "" |
1459 | 1170 | ||
1460 | #: plugins/check_http.c:1506 | ||
1461 | msgid "specify Content-Type header media type when POSTing\n" | 1171 | msgid "specify Content-Type header media type when POSTing\n" |
1462 | msgstr "" | 1172 | msgstr "" |
1463 | 1173 | ||
1464 | #: plugins/check_http.c:1509 | ||
1465 | msgid "Allow regex to span newlines (must precede -r or -R)" | 1174 | msgid "Allow regex to span newlines (must precede -r or -R)" |
1466 | msgstr "" | 1175 | msgstr "" |
1467 | 1176 | ||
1468 | #: plugins/check_http.c:1511 | ||
1469 | msgid "Search page for regex STRING" | 1177 | msgid "Search page for regex STRING" |
1470 | msgstr "" | 1178 | msgstr "" |
1471 | 1179 | ||
1472 | #: plugins/check_http.c:1513 | ||
1473 | msgid "Search page for case-insensitive regex STRING" | 1180 | msgid "Search page for case-insensitive regex STRING" |
1474 | msgstr "" | 1181 | msgstr "" |
1475 | 1182 | ||
1476 | #: plugins/check_http.c:1515 | ||
1477 | msgid "Return CRITICAL if found, OK if not\n" | 1183 | msgid "Return CRITICAL if found, OK if not\n" |
1478 | msgstr "" | 1184 | msgstr "" |
1479 | 1185 | ||
1480 | #: plugins/check_http.c:1518 | ||
1481 | msgid "Username:password on sites with basic authentication" | 1186 | msgid "Username:password on sites with basic authentication" |
1482 | msgstr "" | 1187 | msgstr "" |
1483 | 1188 | ||
1484 | #: plugins/check_http.c:1520 | ||
1485 | msgid "Username:password on proxy-servers with basic authentication" | 1189 | msgid "Username:password on proxy-servers with basic authentication" |
1486 | msgstr "" | 1190 | msgstr "" |
1487 | 1191 | ||
1488 | #: plugins/check_http.c:1522 | ||
1489 | msgid "String to be sent in http header as \"User Agent\"" | 1192 | msgid "String to be sent in http header as \"User Agent\"" |
1490 | msgstr "" | 1193 | msgstr "" |
1491 | 1194 | ||
1492 | #: plugins/check_http.c:1524 | ||
1493 | msgid "" | 1195 | msgid "" |
1494 | "Any other tags to be sent in http header. Use multiple times for additional " | 1196 | "Any other tags to be sent in http header. Use multiple times for additional " |
1495 | "headers" | 1197 | "headers" |
1496 | msgstr "" | 1198 | msgstr "" |
1497 | 1199 | ||
1498 | #: plugins/check_http.c:1526 | ||
1499 | msgid "Print additional performance data" | 1200 | msgid "Print additional performance data" |
1500 | msgstr "" | 1201 | msgstr "" |
1501 | 1202 | ||
1502 | #: plugins/check_http.c:1528 | 1203 | msgid "Print body content below status line" |
1204 | msgstr "" | ||
1205 | |||
1503 | msgid "Wrap output in HTML link (obsoleted by urlize)" | 1206 | msgid "Wrap output in HTML link (obsoleted by urlize)" |
1504 | msgstr "" | 1207 | msgstr "" |
1505 | 1208 | ||
1506 | #: plugins/check_http.c:1530 | ||
1507 | msgid "How to handle redirected pages. sticky is like follow but stick to the" | 1209 | msgid "How to handle redirected pages. sticky is like follow but stick to the" |
1508 | msgstr "" | 1210 | msgstr "" |
1509 | 1211 | ||
1510 | #: plugins/check_http.c:1531 | ||
1511 | msgid "specified IP address. stickyport also ensures port stays the same." | 1212 | msgid "specified IP address. stickyport also ensures port stays the same." |
1512 | msgstr "" | 1213 | msgstr "" |
1513 | 1214 | ||
1514 | #: plugins/check_http.c:1533 | 1215 | msgid "Maximal number of redirects (default: " |
1216 | msgstr "" | ||
1217 | |||
1515 | msgid "Minimum page size required (bytes) : Maximum page size required (bytes)" | 1218 | msgid "Minimum page size required (bytes) : Maximum page size required (bytes)" |
1516 | msgstr "" | 1219 | msgstr "" |
1517 | 1220 | ||
1518 | #: plugins/check_http.c:1543 | ||
1519 | msgid "This plugin will attempt to open an HTTP connection with the host." | 1221 | msgid "This plugin will attempt to open an HTTP connection with the host." |
1520 | msgstr "" | 1222 | msgstr "" |
1521 | 1223 | ||
1522 | #: plugins/check_http.c:1544 | ||
1523 | msgid "" | 1224 | msgid "" |
1524 | "Successful connects return STATE_OK, refusals and timeouts return " | 1225 | "Successful connects return STATE_OK, refusals and timeouts return " |
1525 | "STATE_CRITICAL" | 1226 | "STATE_CRITICAL" |
1526 | msgstr "" | 1227 | msgstr "" |
1527 | 1228 | ||
1528 | #: plugins/check_http.c:1545 | ||
1529 | msgid "" | 1229 | msgid "" |
1530 | "other errors return STATE_UNKNOWN. Successful connects, but incorrect " | 1230 | "other errors return STATE_UNKNOWN. Successful connects, but incorrect " |
1531 | "response" | 1231 | "response" |
1532 | msgstr "" | 1232 | msgstr "" |
1533 | 1233 | ||
1534 | #: plugins/check_http.c:1546 | ||
1535 | msgid "" | 1234 | msgid "" |
1536 | "messages from the host result in STATE_WARNING return values. If you are" | 1235 | "messages from the host result in STATE_WARNING return values. If you are" |
1537 | msgstr "" | 1236 | msgstr "" |
1538 | 1237 | ||
1539 | #: plugins/check_http.c:1547 | ||
1540 | msgid "" | 1238 | msgid "" |
1541 | "checking a virtual server that uses 'host headers' you must supply the FQDN" | 1239 | "checking a virtual server that uses 'host headers' you must supply the FQDN" |
1542 | msgstr "" | 1240 | msgstr "" |
1543 | 1241 | ||
1544 | #: plugins/check_http.c:1548 | ||
1545 | msgid "(fully qualified domain name) as the [host_name] argument." | 1242 | msgid "(fully qualified domain name) as the [host_name] argument." |
1546 | msgstr "" | 1243 | msgstr "" |
1547 | 1244 | ||
1548 | #: plugins/check_http.c:1552 | ||
1549 | msgid "This plugin can also check whether an SSL enabled web server is able to" | 1245 | msgid "This plugin can also check whether an SSL enabled web server is able to" |
1550 | msgstr "" | 1246 | msgstr "" |
1551 | 1247 | ||
1552 | #: plugins/check_http.c:1553 | ||
1553 | msgid "serve content (optionally within a specified time) or whether the X509 " | 1248 | msgid "serve content (optionally within a specified time) or whether the X509 " |
1554 | msgstr "" | 1249 | msgstr "" |
1555 | 1250 | ||
1556 | #: plugins/check_http.c:1554 | ||
1557 | msgid "certificate is still valid for the specified number of days." | 1251 | msgid "certificate is still valid for the specified number of days." |
1558 | msgstr "" | 1252 | msgstr "" |
1559 | 1253 | ||
1560 | #: plugins/check_http.c:1556 | ||
1561 | msgid "Please note that this plugin does not check if the presented server" | 1254 | msgid "Please note that this plugin does not check if the presented server" |
1562 | msgstr "" | 1255 | msgstr "" |
1563 | 1256 | ||
1564 | #: plugins/check_http.c:1557 | ||
1565 | msgid "certificate matches the hostname of the server, or if the certificate" | 1257 | msgid "certificate matches the hostname of the server, or if the certificate" |
1566 | msgstr "" | 1258 | msgstr "" |
1567 | 1259 | ||
1568 | #: plugins/check_http.c:1558 | ||
1569 | msgid "has a valid chain of trust to one of the locally installed CAs." | 1260 | msgid "has a valid chain of trust to one of the locally installed CAs." |
1570 | msgstr "" | 1261 | msgstr "" |
1571 | 1262 | ||
1572 | #: plugins/check_http.c:1562 | ||
1573 | msgid "" | 1263 | msgid "" |
1574 | "When the 'www.verisign.com' server returns its content within 5 seconds," | 1264 | "When the 'www.verisign.com' server returns its content within 5 seconds," |
1575 | msgstr "" | 1265 | msgstr "" |
1576 | 1266 | ||
1577 | #: plugins/check_http.c:1563 | ||
1578 | msgid "" | 1267 | msgid "" |
1579 | "a STATE_OK will be returned. When the server returns its content but exceeds" | 1268 | "a STATE_OK will be returned. When the server returns its content but exceeds" |
1580 | msgstr "" | 1269 | msgstr "" |
1581 | 1270 | ||
1582 | #: plugins/check_http.c:1564 | ||
1583 | msgid "" | 1271 | msgid "" |
1584 | "the 5-second threshold, a STATE_WARNING will be returned. When an error " | 1272 | "the 5-second threshold, a STATE_WARNING will be returned. When an error " |
1585 | "occurs," | 1273 | "occurs," |
1586 | msgstr "" | 1274 | msgstr "" |
1587 | 1275 | ||
1588 | #: plugins/check_http.c:1565 | ||
1589 | msgid "a STATE_CRITICAL will be returned." | 1276 | msgid "a STATE_CRITICAL will be returned." |
1590 | msgstr "" | 1277 | msgstr "" |
1591 | 1278 | ||
1592 | #: plugins/check_http.c:1568 | ||
1593 | msgid "" | 1279 | msgid "" |
1594 | "When the certificate of 'www.verisign.com' is valid for more than 14 days," | 1280 | "When the certificate of 'www.verisign.com' is valid for more than 14 days," |
1595 | msgstr "" | 1281 | msgstr "" |
1596 | 1282 | ||
1597 | #: plugins/check_http.c:1569 plugins/check_http.c:1575 | ||
1598 | msgid "" | 1283 | msgid "" |
1599 | "a STATE_OK is returned. When the certificate is still valid, but for less " | 1284 | "a STATE_OK is returned. When the certificate is still valid, but for less " |
1600 | "than" | 1285 | "than" |
1601 | msgstr "" | 1286 | msgstr "" |
1602 | 1287 | ||
1603 | #: plugins/check_http.c:1570 | ||
1604 | msgid "" | 1288 | msgid "" |
1605 | "14 days, a STATE_WARNING is returned. A STATE_CRITICAL will be returned when" | 1289 | "14 days, a STATE_WARNING is returned. A STATE_CRITICAL will be returned when" |
1606 | msgstr "" | 1290 | msgstr "" |
1607 | 1291 | ||
1608 | #: plugins/check_http.c:1571 | ||
1609 | msgid "the certificate is expired." | 1292 | msgid "the certificate is expired." |
1610 | msgstr "" | 1293 | msgstr "" |
1611 | 1294 | ||
1612 | #: plugins/check_http.c:1574 | ||
1613 | msgid "" | 1295 | msgid "" |
1614 | "When the certificate of 'www.verisign.com' is valid for more than 30 days," | 1296 | "When the certificate of 'www.verisign.com' is valid for more than 30 days," |
1615 | msgstr "" | 1297 | msgstr "" |
1616 | 1298 | ||
1617 | #: plugins/check_http.c:1576 | ||
1618 | msgid "30 days, but more than 14 days, a STATE_WARNING is returned." | 1299 | msgid "30 days, but more than 14 days, a STATE_WARNING is returned." |
1619 | msgstr "" | 1300 | msgstr "" |
1620 | 1301 | ||
1621 | #: plugins/check_http.c:1577 | ||
1622 | msgid "" | 1302 | msgid "" |
1623 | "A STATE_CRITICAL will be returned when certificate expires in less than 14 " | 1303 | "A STATE_CRITICAL will be returned when certificate expires in less than 14 " |
1624 | "days" | 1304 | "days" |
1625 | msgstr "" | 1305 | msgstr "" |
1626 | 1306 | ||
1627 | #: plugins/check_ldap.c:133 | 1307 | msgid "" |
1308 | "check_http -I 192.168.100.35 -p 80 -u https://www.verisign.com/ -S -j " | ||
1309 | "CONNECT -H www.verisign.com " | ||
1310 | msgstr "" | ||
1311 | |||
1312 | msgid "" | ||
1313 | "all these options are needed: -I <proxy> -p <proxy-port> -u <check-url> -" | ||
1314 | "S(sl) -j CONNECT -H <webserver>" | ||
1315 | msgstr "" | ||
1316 | |||
1317 | msgid "" | ||
1318 | "a STATE_CRITICAL will be returned. By adding a colon to the method you can " | ||
1319 | "set the method used" | ||
1320 | msgstr "" | ||
1321 | |||
1322 | msgid "inside the proxied connection: -j CONNECT:POST" | ||
1323 | msgstr "" | ||
1324 | |||
1628 | #, c-format | 1325 | #, c-format |
1629 | msgid "Could not connect to the server at port %i\n" | 1326 | msgid "Could not connect to the server at port %i\n" |
1630 | msgstr "" | 1327 | msgstr "" |
1631 | 1328 | ||
1632 | #: plugins/check_ldap.c:142 | ||
1633 | #, c-format | 1329 | #, c-format |
1634 | msgid "Could not set protocol version %d\n" | 1330 | msgid "Could not set protocol version %d\n" |
1635 | msgstr "" | 1331 | msgstr "" |
1636 | 1332 | ||
1637 | #: plugins/check_ldap.c:157 | ||
1638 | #, c-format | 1333 | #, c-format |
1639 | msgid "Could not init TLS at port %i!\n" | 1334 | msgid "Could not init TLS at port %i!\n" |
1640 | msgstr "" | 1335 | msgstr "" |
1641 | 1336 | ||
1642 | #: plugins/check_ldap.c:161 | ||
1643 | #, c-format | 1337 | #, c-format |
1644 | msgid "TLS not supported by the libraries!\n" | 1338 | msgid "TLS not supported by the libraries!\n" |
1645 | msgstr "" | 1339 | msgstr "" |
1646 | 1340 | ||
1647 | #: plugins/check_ldap.c:181 | ||
1648 | #, c-format | 1341 | #, c-format |
1649 | msgid "Could not init startTLS at port %i!\n" | 1342 | msgid "Could not init startTLS at port %i!\n" |
1650 | msgstr "" | 1343 | msgstr "" |
1651 | 1344 | ||
1652 | #: plugins/check_ldap.c:185 | ||
1653 | #, c-format | 1345 | #, c-format |
1654 | msgid "startTLS not supported by the library, needs LDAPv3!\n" | 1346 | msgid "startTLS not supported by the library, needs LDAPv3!\n" |
1655 | msgstr "" | 1347 | msgstr "" |
1656 | 1348 | ||
1657 | #: plugins/check_ldap.c:195 | ||
1658 | #, c-format | 1349 | #, c-format |
1659 | msgid "Could not bind to the LDAP server\n" | 1350 | msgid "Could not bind to the LDAP server\n" |
1660 | msgstr "" | 1351 | msgstr "" |
1661 | 1352 | ||
1662 | #: plugins/check_ldap.c:204 | ||
1663 | #, c-format | 1353 | #, c-format |
1664 | msgid "Could not search/find objectclasses in %s\n" | 1354 | msgid "Could not search/find objectclasses in %s\n" |
1665 | msgstr "" | 1355 | msgstr "" |
1666 | 1356 | ||
1667 | #: plugins/check_ldap.c:227 | 1357 | #, c-format |
1358 | msgid "LDAP %s - found %d entries in %.3f seconds|%s %s\n" | ||
1359 | msgstr "" | ||
1360 | |||
1668 | #, c-format | 1361 | #, c-format |
1669 | msgid "LDAP %s - %.3f seconds response time|%s\n" | 1362 | msgid "LDAP %s - %.3f seconds response time|%s\n" |
1670 | msgstr "" | 1363 | msgstr "" |
1671 | 1364 | ||
1672 | #: plugins/check_ldap.c:339 plugins/check_ldap.c:347 | ||
1673 | #, c-format | 1365 | #, c-format |
1674 | msgid "%s cannot be combined with %s" | 1366 | msgid "%s cannot be combined with %s" |
1675 | msgstr "" | 1367 | msgstr "" |
1676 | 1368 | ||
1677 | #: plugins/check_ldap.c:379 | ||
1678 | msgid "Please specify the host name\n" | 1369 | msgid "Please specify the host name\n" |
1679 | msgstr "" | 1370 | msgstr "" |
1680 | 1371 | ||
1681 | #: plugins/check_ldap.c:382 | ||
1682 | msgid "Please specify the LDAP base\n" | 1372 | msgid "Please specify the LDAP base\n" |
1683 | msgstr "" | 1373 | msgstr "" |
1684 | 1374 | ||
1685 | #: plugins/check_ldap.c:411 | ||
1686 | msgid "ldap attribute to search (default: \"(objectclass=*)\"" | 1375 | msgid "ldap attribute to search (default: \"(objectclass=*)\"" |
1687 | msgstr "" | 1376 | msgstr "" |
1688 | 1377 | ||
1689 | #: plugins/check_ldap.c:413 | ||
1690 | msgid "ldap base (eg. ou=my unit, o=my org, c=at" | 1378 | msgid "ldap base (eg. ou=my unit, o=my org, c=at" |
1691 | msgstr "" | 1379 | msgstr "" |
1692 | 1380 | ||
1693 | #: plugins/check_ldap.c:415 | ||
1694 | msgid "ldap bind DN (if required)" | 1381 | msgid "ldap bind DN (if required)" |
1695 | msgstr "" | 1382 | msgstr "" |
1696 | 1383 | ||
1697 | #: plugins/check_ldap.c:417 | 1384 | msgid "" |
1698 | msgid "ldap password (if required)" | 1385 | "ldap password (if required, or set the password through environment variable " |
1386 | "'LDAP_PASSWORD')" | ||
1699 | msgstr "" | 1387 | msgstr "" |
1700 | 1388 | ||
1701 | #: plugins/check_ldap.c:419 | ||
1702 | msgid "use starttls mechanism introduced in protocol version 3" | 1389 | msgid "use starttls mechanism introduced in protocol version 3" |
1703 | msgstr "" | 1390 | msgstr "" |
1704 | 1391 | ||
1705 | #: plugins/check_ldap.c:421 | ||
1706 | msgid "use ldaps (ldap v2 ssl method). this also sets the default port to" | 1392 | msgid "use ldaps (ldap v2 ssl method). this also sets the default port to" |
1707 | msgstr "" | 1393 | msgstr "" |
1708 | 1394 | ||
1709 | #: plugins/check_ldap.c:425 | ||
1710 | msgid "use ldap protocol version 2" | 1395 | msgid "use ldap protocol version 2" |
1711 | msgstr "" | 1396 | msgstr "" |
1712 | 1397 | ||
1713 | #: plugins/check_ldap.c:427 | ||
1714 | msgid "use ldap protocol version 3" | 1398 | msgid "use ldap protocol version 3" |
1715 | msgstr "" | 1399 | msgstr "" |
1716 | 1400 | ||
1717 | #: plugins/check_ldap.c:428 | ||
1718 | msgid "default protocol version:" | 1401 | msgid "default protocol version:" |
1719 | msgstr "" | 1402 | msgstr "" |
1720 | 1403 | ||
1721 | #: plugins/check_ldap.c:439 | 1404 | msgid "Number of found entries to result in warning status" |
1405 | msgstr "" | ||
1406 | |||
1407 | msgid "Number of found entries to result in critical status" | ||
1408 | msgstr "" | ||
1409 | |||
1722 | msgid "If this plugin is called via 'check_ldaps', method 'STARTTLS' will be" | 1410 | msgid "If this plugin is called via 'check_ldaps', method 'STARTTLS' will be" |
1723 | msgstr "" | 1411 | msgstr "" |
1724 | 1412 | ||
1725 | #: plugins/check_ldap.c:440 | ||
1726 | #, c-format | 1413 | #, c-format |
1727 | msgid "" | 1414 | msgid "" |
1728 | " implied (using default port %i) unless --port=636 is specified. In that " | 1415 | " implied (using default port %i) unless --port=636 is specified. In that " |
1729 | "case\n" | 1416 | "case\n" |
1730 | msgstr "" | 1417 | msgstr "" |
1731 | 1418 | ||
1732 | #: plugins/check_ldap.c:441 | ||
1733 | msgid "'SSL on connect' will be used no matter how the plugin was called." | 1419 | msgid "'SSL on connect' will be used no matter how the plugin was called." |
1734 | msgstr "" | 1420 | msgstr "" |
1735 | 1421 | ||
1736 | #: plugins/check_ldap.c:442 | ||
1737 | msgid "" | 1422 | msgid "" |
1738 | "This detection is deprecated, please use 'check_ldap' with the '--starttls' " | 1423 | "This detection is deprecated, please use 'check_ldap' with the '--starttls' " |
1739 | "or '--ssl' flags" | 1424 | "or '--ssl' flags" |
1740 | msgstr "" | 1425 | msgstr "" |
1741 | 1426 | ||
1742 | #: plugins/check_ldap.c:443 | ||
1743 | msgid "to define the behaviour explicitly instead." | 1427 | msgid "to define the behaviour explicitly instead." |
1744 | msgstr "" | 1428 | msgstr "" |
1745 | 1429 | ||
1746 | #: plugins/check_load.c:87 | 1430 | msgid "The parameters --warn-entries and --crit-entries are optional." |
1431 | msgstr "" | ||
1432 | |||
1747 | msgid "Warning threshold must be float or float triplet!\n" | 1433 | msgid "Warning threshold must be float or float triplet!\n" |
1748 | msgstr "" | 1434 | msgstr "" |
1749 | 1435 | ||
1750 | #: plugins/check_load.c:132 plugins/check_load.c:148 | ||
1751 | #, c-format | 1436 | #, c-format |
1752 | msgid "Error opening %s\n" | 1437 | msgid "Error opening %s\n" |
1753 | msgstr "" | 1438 | msgstr "" |
1754 | 1439 | ||
1755 | #: plugins/check_load.c:163 | ||
1756 | #, c-format | 1440 | #, c-format |
1757 | msgid "could not parse load from uptime: %s\n" | 1441 | msgid "could not parse load from uptime %s: %d\n" |
1758 | msgstr "" | 1442 | msgstr "" |
1759 | 1443 | ||
1760 | #: plugins/check_load.c:169 | ||
1761 | #, c-format | 1444 | #, c-format |
1762 | msgid "Error code %d returned in %s\n" | 1445 | msgid "Error code %d returned in %s\n" |
1763 | msgstr "" | 1446 | msgstr "" |
1764 | 1447 | ||
1765 | #: plugins/check_load.c:184 | ||
1766 | #, c-format | 1448 | #, c-format |
1767 | msgid "Error in getloadavg()\n" | 1449 | msgid "Error in getloadavg()\n" |
1768 | msgstr "" | 1450 | msgstr "" |
1769 | 1451 | ||
1770 | #: plugins/check_load.c:187 plugins/check_load.c:189 | ||
1771 | #, c-format | 1452 | #, c-format |
1772 | msgid "Error processing %s\n" | 1453 | msgid "Error processing %s\n" |
1773 | msgstr "" | 1454 | msgstr "" |
1774 | 1455 | ||
1775 | #: plugins/check_load.c:198 | ||
1776 | #, c-format | 1456 | #, c-format |
1777 | msgid "load average: %.2f, %.2f, %.2f" | 1457 | msgid "load average: %.2f, %.2f, %.2f" |
1778 | msgstr "" | 1458 | msgstr "" |
1779 | 1459 | ||
1780 | #: plugins/check_load.c:291 | ||
1781 | #, c-format | 1460 | #, c-format |
1782 | msgid "Critical threshold for %d-minute load average is not specified\n" | 1461 | msgid "Critical threshold for %d-minute load average is not specified\n" |
1783 | msgstr "" | 1462 | msgstr "" |
1784 | 1463 | ||
1785 | #: plugins/check_load.c:293 | ||
1786 | #, c-format | 1464 | #, c-format |
1787 | msgid "Warning threshold for %d-minute load average is not specified\n" | 1465 | msgid "Warning threshold for %d-minute load average is not specified\n" |
1788 | msgstr "" | 1466 | msgstr "" |
1789 | 1467 | ||
1790 | #: plugins/check_load.c:295 | ||
1791 | #, c-format | 1468 | #, c-format |
1792 | msgid "" | 1469 | msgid "" |
1793 | "Parameter inconsistency: %d-minute \"warning load\" is greater than " | 1470 | "Parameter inconsistency: %d-minute \"warning load\" is greater than " |
1794 | "\"critical load\"\n" | 1471 | "\"critical load\"\n" |
1795 | msgstr "" | 1472 | msgstr "" |
1796 | 1473 | ||
1797 | #: plugins/check_load.c:311 | ||
1798 | #, c-format | 1474 | #, c-format |
1799 | msgid "This plugin tests the current system load average." | 1475 | msgid "This plugin tests the current system load average." |
1800 | msgstr "" | 1476 | msgstr "" |
1801 | 1477 | ||
1802 | #: plugins/check_load.c:321 | ||
1803 | msgid "Exit with WARNING status if load average exceeds WLOADn" | 1478 | msgid "Exit with WARNING status if load average exceeds WLOADn" |
1804 | msgstr "" | 1479 | msgstr "" |
1805 | 1480 | ||
1806 | #: plugins/check_load.c:323 | ||
1807 | msgid "Exit with CRITICAL status if load average exceed CLOADn" | 1481 | msgid "Exit with CRITICAL status if load average exceed CLOADn" |
1808 | msgstr "" | 1482 | msgstr "" |
1809 | 1483 | ||
1810 | #: plugins/check_load.c:324 | ||
1811 | msgid "the load average format is the same used by \"uptime\" and \"w\"" | 1484 | msgid "the load average format is the same used by \"uptime\" and \"w\"" |
1812 | msgstr "" | 1485 | msgstr "" |
1813 | 1486 | ||
1814 | #: plugins/check_load.c:326 | ||
1815 | msgid "Divide the load averages by the number of CPUs (when possible)" | 1487 | msgid "Divide the load averages by the number of CPUs (when possible)" |
1816 | msgstr "" | 1488 | msgstr "" |
1817 | 1489 | ||
1818 | #: plugins/check_mrtg.c:75 | 1490 | msgid "Number of processes to show when printing the top consuming processes." |
1491 | msgstr "" | ||
1492 | |||
1493 | msgid "NUMBER_OF_PROCS=0 disables this feature. Default value is 0" | ||
1494 | msgstr "" | ||
1495 | |||
1496 | #, c-format | ||
1497 | msgid "'%s' exited with non-zero status.\n" | ||
1498 | msgstr "" | ||
1499 | |||
1500 | #, c-format | ||
1501 | msgid "some error occurred getting procs list.\n" | ||
1502 | msgstr "" | ||
1503 | |||
1819 | msgid "Could not parse arguments\n" | 1504 | msgid "Could not parse arguments\n" |
1820 | msgstr "" | 1505 | msgstr "" |
1821 | 1506 | ||
1822 | #: plugins/check_mrtg.c:80 | ||
1823 | #, c-format | 1507 | #, c-format |
1824 | msgid "Unable to open MRTG log file\n" | 1508 | msgid "Unable to open MRTG log file\n" |
1825 | msgstr "" | 1509 | msgstr "" |
1826 | 1510 | ||
1827 | #: plugins/check_mrtg.c:127 | ||
1828 | #, c-format | 1511 | #, c-format |
1829 | msgid "Unable to process MRTG log file\n" | 1512 | msgid "Unable to process MRTG log file\n" |
1830 | msgstr "" | 1513 | msgstr "" |
1831 | 1514 | ||
1832 | #: plugins/check_mrtg.c:135 plugins/check_mrtgtraf.c:136 | ||
1833 | #, c-format | 1515 | #, c-format |
1834 | msgid "MRTG data has expired (%d minutes old)\n" | 1516 | msgid "MRTG data has expired (%d minutes old)\n" |
1835 | msgstr "" | 1517 | msgstr "" |
1836 | 1518 | ||
1837 | #: plugins/check_mrtg.c:152 plugins/check_mrtgtraf.c:195 | ||
1838 | #: plugins/check_mrtgtraf.c:196 | ||
1839 | msgid "Avg" | 1519 | msgid "Avg" |
1840 | msgstr "" | 1520 | msgstr "" |
1841 | 1521 | ||
1842 | #: plugins/check_mrtg.c:152 plugins/check_mrtgtraf.c:195 | ||
1843 | #: plugins/check_mrtgtraf.c:196 | ||
1844 | msgid "Max" | 1522 | msgid "Max" |
1845 | msgstr "" | 1523 | msgstr "" |
1846 | 1524 | ||
1847 | #: plugins/check_mrtg.c:221 | ||
1848 | msgid "Invalid variable number" | 1525 | msgid "Invalid variable number" |
1849 | msgstr "" | 1526 | msgstr "" |
1850 | 1527 | ||
1851 | #: plugins/check_mrtg.c:256 | ||
1852 | #, c-format | 1528 | #, c-format |
1853 | msgid "" | 1529 | msgid "" |
1854 | "%s is not a valid expiration time\n" | 1530 | "%s is not a valid expiration time\n" |
1855 | "Use '%s -h' for additional help\n" | 1531 | "Use '%s -h' for additional help\n" |
1856 | msgstr "" | 1532 | msgstr "" |
1857 | 1533 | ||
1858 | #: plugins/check_mrtg.c:273 | ||
1859 | msgid "Invalid variable number\n" | 1534 | msgid "Invalid variable number\n" |
1860 | msgstr "" | 1535 | msgstr "" |
1861 | 1536 | ||
1862 | #: plugins/check_mrtg.c:300 | ||
1863 | msgid "You must supply the variable number" | 1537 | msgid "You must supply the variable number" |
1864 | msgstr "" | 1538 | msgstr "" |
1865 | 1539 | ||
1866 | #: plugins/check_mrtg.c:321 | ||
1867 | msgid "" | 1540 | msgid "" |
1868 | "This plugin will check either the average or maximum value of one of the" | 1541 | "This plugin will check either the average or maximum value of one of the" |
1869 | msgstr "" | 1542 | msgstr "" |
1870 | 1543 | ||
1871 | #: plugins/check_mrtg.c:322 | ||
1872 | msgid "two variables recorded in an MRTG log file." | 1544 | msgid "two variables recorded in an MRTG log file." |
1873 | msgstr "" | 1545 | msgstr "" |
1874 | 1546 | ||
1875 | #: plugins/check_mrtg.c:332 | ||
1876 | msgid "The MRTG log file containing the data you want to monitor" | 1547 | msgid "The MRTG log file containing the data you want to monitor" |
1877 | msgstr "" | 1548 | msgstr "" |
1878 | 1549 | ||
1879 | #: plugins/check_mrtg.c:334 | ||
1880 | msgid "Minutes before MRTG data is considered to be too old" | 1550 | msgid "Minutes before MRTG data is considered to be too old" |
1881 | msgstr "" | 1551 | msgstr "" |
1882 | 1552 | ||
1883 | #: plugins/check_mrtg.c:336 | ||
1884 | msgid "Should we check average or maximum values?" | 1553 | msgid "Should we check average or maximum values?" |
1885 | msgstr "" | 1554 | msgstr "" |
1886 | 1555 | ||
1887 | #: plugins/check_mrtg.c:338 | ||
1888 | msgid "Which variable set should we inspect? (1 or 2)" | 1556 | msgid "Which variable set should we inspect? (1 or 2)" |
1889 | msgstr "" | 1557 | msgstr "" |
1890 | 1558 | ||
1891 | #: plugins/check_mrtg.c:340 | ||
1892 | msgid "Threshold value for data to result in WARNING status" | 1559 | msgid "Threshold value for data to result in WARNING status" |
1893 | msgstr "" | 1560 | msgstr "" |
1894 | 1561 | ||
1895 | #: plugins/check_mrtg.c:342 | ||
1896 | msgid "Threshold value for data to result in CRITICAL status" | 1562 | msgid "Threshold value for data to result in CRITICAL status" |
1897 | msgstr "" | 1563 | msgstr "" |
1898 | 1564 | ||
1899 | #: plugins/check_mrtg.c:344 | ||
1900 | msgid "Type label for data (Examples: Conns, \"Processor Load\", In, Out)" | 1565 | msgid "Type label for data (Examples: Conns, \"Processor Load\", In, Out)" |
1901 | msgstr "" | 1566 | msgstr "" |
1902 | 1567 | ||
1903 | #: plugins/check_mrtg.c:346 | ||
1904 | msgid "Option units label for data (Example: Packets/Sec, Errors/Sec," | 1568 | msgid "Option units label for data (Example: Packets/Sec, Errors/Sec," |
1905 | msgstr "" | 1569 | msgstr "" |
1906 | 1570 | ||
1907 | #: plugins/check_mrtg.c:347 | ||
1908 | #, c-format | 1571 | #, c-format |
1909 | msgid "\"Bytes Per Second\", \"%% Utilization\")" | 1572 | msgid "\"Bytes Per Second\", \"%% Utilization\")" |
1910 | msgstr "" | 1573 | msgstr "" |
1911 | 1574 | ||
1912 | #: plugins/check_mrtg.c:350 | ||
1913 | msgid "" | 1575 | msgid "" |
1914 | "If the value exceeds the <vwl> threshold, a WARNING status is returned. If" | 1576 | "If the value exceeds the <vwl> threshold, a WARNING status is returned. If" |
1915 | msgstr "" | 1577 | msgstr "" |
1916 | 1578 | ||
1917 | #: plugins/check_mrtg.c:351 | ||
1918 | msgid "" | 1579 | msgid "" |
1919 | "the value exceeds the <vcl> threshold, a CRITICAL status is returned. If" | 1580 | "the value exceeds the <vcl> threshold, a CRITICAL status is returned. If" |
1920 | msgstr "" | 1581 | msgstr "" |
1921 | 1582 | ||
1922 | #: plugins/check_mrtg.c:352 | ||
1923 | msgid "the data in the log file is older than <expire_minutes> old, a WARNING" | 1583 | msgid "the data in the log file is older than <expire_minutes> old, a WARNING" |
1924 | msgstr "" | 1584 | msgstr "" |
1925 | 1585 | ||
1926 | #: plugins/check_mrtg.c:353 | ||
1927 | msgid "status is returned and a warning message is printed." | 1586 | msgid "status is returned and a warning message is printed." |
1928 | msgstr "" | 1587 | msgstr "" |
1929 | 1588 | ||
1930 | #: plugins/check_mrtg.c:356 | ||
1931 | msgid "" | 1589 | msgid "" |
1932 | "This plugin is useful for monitoring MRTG data that does not correspond to" | 1590 | "This plugin is useful for monitoring MRTG data that does not correspond to" |
1933 | msgstr "" | 1591 | msgstr "" |
1934 | 1592 | ||
1935 | #: plugins/check_mrtg.c:357 | ||
1936 | msgid "" | 1593 | msgid "" |
1937 | "bandwidth usage. (Use the check_mrtgtraf plugin for monitoring bandwidth)." | 1594 | "bandwidth usage. (Use the check_mrtgtraf plugin for monitoring bandwidth)." |
1938 | msgstr "" | 1595 | msgstr "" |
1939 | 1596 | ||
1940 | #: plugins/check_mrtg.c:358 | ||
1941 | msgid "" | 1597 | msgid "" |
1942 | "It can be used to monitor any kind of data that MRTG is monitoring - errors," | 1598 | "It can be used to monitor any kind of data that MRTG is monitoring - errors," |
1943 | msgstr "" | 1599 | msgstr "" |
1944 | 1600 | ||
1945 | #: plugins/check_mrtg.c:359 | ||
1946 | msgid "" | 1601 | msgid "" |
1947 | "packets/sec, etc. I use MRTG in conjunction with the Novell NLM that allows" | 1602 | "packets/sec, etc. I use MRTG in conjunction with the Novell NLM that allows" |
1948 | msgstr "" | 1603 | msgstr "" |
1949 | 1604 | ||
1950 | #: plugins/check_mrtg.c:360 | ||
1951 | msgid "" | 1605 | msgid "" |
1952 | "me to track processor utilization, user connections, drive space, etc and" | 1606 | "me to track processor utilization, user connections, drive space, etc and" |
1953 | msgstr "" | 1607 | msgstr "" |
1954 | 1608 | ||
1955 | #: plugins/check_mrtg.c:361 | ||
1956 | msgid "this plugin works well for monitoring that kind of data as well." | 1609 | msgid "this plugin works well for monitoring that kind of data as well." |
1957 | msgstr "" | 1610 | msgstr "" |
1958 | 1611 | ||
1959 | #: plugins/check_mrtg.c:364 | ||
1960 | msgid "" | 1612 | msgid "" |
1961 | "- This plugin only monitors one of the two variables stored in the MRTG log" | 1613 | "- This plugin only monitors one of the two variables stored in the MRTG log" |
1962 | msgstr "" | 1614 | msgstr "" |
1963 | 1615 | ||
1964 | #: plugins/check_mrtg.c:365 | ||
1965 | msgid "file. If you want to monitor both values you will have to define two" | 1616 | msgid "file. If you want to monitor both values you will have to define two" |
1966 | msgstr "" | 1617 | msgstr "" |
1967 | 1618 | ||
1968 | #: plugins/check_mrtg.c:366 | ||
1969 | msgid "commands with different values for the <variable> argument. Of course," | 1619 | msgid "commands with different values for the <variable> argument. Of course," |
1970 | msgstr "" | 1620 | msgstr "" |
1971 | 1621 | ||
1972 | #: plugins/check_mrtg.c:367 | ||
1973 | msgid "you can always hack the code to make this plugin work for you..." | 1622 | msgid "you can always hack the code to make this plugin work for you..." |
1974 | msgstr "" | 1623 | msgstr "" |
1975 | 1624 | ||
1976 | #: plugins/check_mrtg.c:368 | ||
1977 | msgid "" | 1625 | msgid "" |
1978 | "- MRTG stands for the Multi Router Traffic Grapher. It can be downloaded " | 1626 | "- MRTG stands for the Multi Router Traffic Grapher. It can be downloaded " |
1979 | "from" | 1627 | "from" |
1980 | msgstr "" | 1628 | msgstr "" |
1981 | 1629 | ||
1982 | #: plugins/check_mrtgtraf.c:88 | ||
1983 | msgid "Unable to open MRTG log file" | 1630 | msgid "Unable to open MRTG log file" |
1984 | msgstr "" | 1631 | msgstr "" |
1985 | 1632 | ||
1986 | #: plugins/check_mrtgtraf.c:130 | ||
1987 | msgid "Unable to process MRTG log file" | 1633 | msgid "Unable to process MRTG log file" |
1988 | msgstr "" | 1634 | msgstr "" |
1989 | 1635 | ||
1990 | #: plugins/check_mrtgtraf.c:194 | ||
1991 | #, c-format | 1636 | #, c-format |
1992 | msgid "%s. In = %0.1f %s, %s. Out = %0.1f %s|%s %s\n" | 1637 | msgid "%s. In = %0.1f %s/s, %s. Out = %0.1f %s/s|%s %s\n" |
1993 | msgstr "" | 1638 | msgstr "" |
1994 | 1639 | ||
1995 | #: plugins/check_mrtgtraf.c:207 | ||
1996 | #, c-format | 1640 | #, c-format |
1997 | msgid "Traffic %s - %s\n" | 1641 | msgid "Traffic %s - %s\n" |
1998 | msgstr "" | 1642 | msgstr "" |
1999 | 1643 | ||
2000 | #: plugins/check_mrtgtraf.c:335 | ||
2001 | msgid "" | 1644 | msgid "" |
2002 | "This plugin will check the incoming/outgoing transfer rates of a router," | 1645 | "This plugin will check the incoming/outgoing transfer rates of a router," |
2003 | msgstr "" | 1646 | msgstr "" |
2004 | 1647 | ||
2005 | #: plugins/check_mrtgtraf.c:336 | ||
2006 | msgid "switch, etc recorded in an MRTG log. If the newest log entry is older" | 1648 | msgid "switch, etc recorded in an MRTG log. If the newest log entry is older" |
2007 | msgstr "" | 1649 | msgstr "" |
2008 | 1650 | ||
2009 | #: plugins/check_mrtgtraf.c:337 | ||
2010 | msgid "than <expire_minutes>, a WARNING status is returned. If either the" | 1651 | msgid "than <expire_minutes>, a WARNING status is returned. If either the" |
2011 | msgstr "" | 1652 | msgstr "" |
2012 | 1653 | ||
2013 | #: plugins/check_mrtgtraf.c:338 | ||
2014 | msgid "incoming or outgoing rates exceed the <icl> or <ocl> thresholds (in" | 1654 | msgid "incoming or outgoing rates exceed the <icl> or <ocl> thresholds (in" |
2015 | msgstr "" | 1655 | msgstr "" |
2016 | 1656 | ||
2017 | #: plugins/check_mrtgtraf.c:339 | ||
2018 | msgid "Bytes/sec), a CRITICAL status results. If either of the rates exceed" | 1657 | msgid "Bytes/sec), a CRITICAL status results. If either of the rates exceed" |
2019 | msgstr "" | 1658 | msgstr "" |
2020 | 1659 | ||
2021 | #: plugins/check_mrtgtraf.c:340 | ||
2022 | msgid "the <iwl> or <owl> thresholds (in Bytes/sec), a WARNING status results." | 1660 | msgid "the <iwl> or <owl> thresholds (in Bytes/sec), a WARNING status results." |
2023 | msgstr "" | 1661 | msgstr "" |
2024 | 1662 | ||
2025 | #: plugins/check_mrtgtraf.c:350 | ||
2026 | msgid "File to read log from" | 1663 | msgid "File to read log from" |
2027 | msgstr "" | 1664 | msgstr "" |
2028 | 1665 | ||
2029 | #: plugins/check_mrtgtraf.c:352 | ||
2030 | msgid "Minutes after which log expires" | 1666 | msgid "Minutes after which log expires" |
2031 | msgstr "" | 1667 | msgstr "" |
2032 | 1668 | ||
2033 | #: plugins/check_mrtgtraf.c:354 | ||
2034 | msgid "Test average or maximum" | 1669 | msgid "Test average or maximum" |
2035 | msgstr "" | 1670 | msgstr "" |
2036 | 1671 | ||
2037 | #: plugins/check_mrtgtraf.c:356 | ||
2038 | msgid "Warning threshold pair <incoming>,<outgoing>" | 1672 | msgid "Warning threshold pair <incoming>,<outgoing>" |
2039 | msgstr "" | 1673 | msgstr "" |
2040 | 1674 | ||
2041 | #: plugins/check_mrtgtraf.c:358 | ||
2042 | msgid "Critical threshold pair <incoming>,<outgoing>" | 1675 | msgid "Critical threshold pair <incoming>,<outgoing>" |
2043 | msgstr "" | 1676 | msgstr "" |
2044 | 1677 | ||
2045 | #: plugins/check_mrtgtraf.c:362 | ||
2046 | msgid "" | 1678 | msgid "" |
2047 | "- MRTG stands for Multi Router Traffic Grapher. It can be downloaded from" | 1679 | "- MRTG stands for Multi Router Traffic Grapher. It can be downloaded from" |
2048 | msgstr "" | 1680 | msgstr "" |
2049 | 1681 | ||
2050 | #: plugins/check_mrtgtraf.c:364 | ||
2051 | msgid "- While MRTG can monitor things other than traffic rates, this" | 1682 | msgid "- While MRTG can monitor things other than traffic rates, this" |
2052 | msgstr "" | 1683 | msgstr "" |
2053 | 1684 | ||
2054 | #: plugins/check_mrtgtraf.c:365 | ||
2055 | msgid " plugin probably won't work with much else without modification." | 1685 | msgid " plugin probably won't work with much else without modification." |
2056 | msgstr "" | 1686 | msgstr "" |
2057 | 1687 | ||
2058 | #: plugins/check_mrtgtraf.c:366 | ||
2059 | msgid "- The calculated i/o rates are a little off from what MRTG actually" | 1688 | msgid "- The calculated i/o rates are a little off from what MRTG actually" |
2060 | msgstr "" | 1689 | msgstr "" |
2061 | 1690 | ||
2062 | #: plugins/check_mrtgtraf.c:367 | ||
2063 | msgid " reports. I'm not sure why this is right now, but will look into it" | 1691 | msgid " reports. I'm not sure why this is right now, but will look into it" |
2064 | msgstr "" | 1692 | msgstr "" |
2065 | 1693 | ||
2066 | #: plugins/check_mrtgtraf.c:368 | ||
2067 | msgid " for future enhancements of this plugin." | 1694 | msgid " for future enhancements of this plugin." |
2068 | msgstr "" | 1695 | msgstr "" |
2069 | 1696 | ||
2070 | #: plugins/check_mrtgtraf.c:378 | ||
2071 | #, c-format | 1697 | #, c-format |
2072 | msgid "Usage" | 1698 | msgid "Usage" |
2073 | msgstr "" | 1699 | msgstr "" |
2074 | 1700 | ||
2075 | #: plugins/check_mysql.c:171 | ||
2076 | #, c-format | 1701 | #, c-format |
2077 | msgid "status store_result error: %s\n" | 1702 | msgid "status store_result error: %s\n" |
2078 | msgstr "" | 1703 | msgstr "" |
2079 | 1704 | ||
2080 | #: plugins/check_mysql.c:202 | ||
2081 | #, c-format | 1705 | #, c-format |
2082 | msgid "slave query error: %s\n" | 1706 | msgid "slave query error: %s\n" |
2083 | msgstr "" | 1707 | msgstr "" |
2084 | 1708 | ||
2085 | #: plugins/check_mysql.c:209 | ||
2086 | #, c-format | 1709 | #, c-format |
2087 | msgid "slave store_result error: %s\n" | 1710 | msgid "slave store_result error: %s\n" |
2088 | msgstr "" | 1711 | msgstr "" |
2089 | 1712 | ||
2090 | #: plugins/check_mysql.c:215 | ||
2091 | msgid "No slaves defined" | 1713 | msgid "No slaves defined" |
2092 | msgstr "" | 1714 | msgstr "" |
2093 | 1715 | ||
2094 | #: plugins/check_mysql.c:223 | ||
2095 | #, c-format | 1716 | #, c-format |
2096 | msgid "slave fetch row error: %s\n" | 1717 | msgid "slave fetch row error: %s\n" |
2097 | msgstr "" | 1718 | msgstr "" |
2098 | 1719 | ||
2099 | #: plugins/check_mysql.c:228 | ||
2100 | #, c-format | 1720 | #, c-format |
2101 | msgid "Slave running: %s" | 1721 | msgid "Slave running: %s" |
2102 | msgstr "" | 1722 | msgstr "" |
2103 | 1723 | ||
2104 | #: plugins/check_mysql.c:505 | ||
2105 | msgid "This program tests connections to a MySQL server" | 1724 | msgid "This program tests connections to a MySQL server" |
2106 | msgstr "" | 1725 | msgstr "" |
2107 | 1726 | ||
2108 | #: plugins/check_mysql.c:516 | 1727 | msgid "Ignore authentication failure and check for mysql connectivity only" |
1728 | msgstr "" | ||
1729 | |||
2109 | msgid "Use the specified socket (has no effect if -H is used)" | 1730 | msgid "Use the specified socket (has no effect if -H is used)" |
2110 | msgstr "" | 1731 | msgstr "" |
2111 | 1732 | ||
2112 | #: plugins/check_mysql.c:519 | ||
2113 | msgid "Check database with indicated name" | 1733 | msgid "Check database with indicated name" |
2114 | msgstr "" | 1734 | msgstr "" |
2115 | 1735 | ||
2116 | #: plugins/check_mysql.c:521 | ||
2117 | msgid "Read from the specified client options file" | 1736 | msgid "Read from the specified client options file" |
2118 | msgstr "" | 1737 | msgstr "" |
2119 | 1738 | ||
2120 | #: plugins/check_mysql.c:523 | ||
2121 | msgid "Use a client options group" | 1739 | msgid "Use a client options group" |
2122 | msgstr "" | 1740 | msgstr "" |
2123 | 1741 | ||
2124 | #: plugins/check_mysql.c:525 | ||
2125 | msgid "Connect using the indicated username" | 1742 | msgid "Connect using the indicated username" |
2126 | msgstr "" | 1743 | msgstr "" |
2127 | 1744 | ||
2128 | #: plugins/check_mysql.c:527 | ||
2129 | msgid "Use the indicated password to authenticate the connection" | 1745 | msgid "Use the indicated password to authenticate the connection" |
2130 | msgstr "" | 1746 | msgstr "" |
2131 | 1747 | ||
2132 | #: plugins/check_mysql.c:528 | ||
2133 | msgid "IMPORTANT: THIS FORM OF AUTHENTICATION IS NOT SECURE!!!" | 1748 | msgid "IMPORTANT: THIS FORM OF AUTHENTICATION IS NOT SECURE!!!" |
2134 | msgstr "" | 1749 | msgstr "" |
2135 | 1750 | ||
2136 | #: plugins/check_mysql.c:529 | ||
2137 | msgid "Your clear-text password could be visible as a process table entry" | 1751 | msgid "Your clear-text password could be visible as a process table entry" |
2138 | msgstr "" | 1752 | msgstr "" |
2139 | 1753 | ||
2140 | #: plugins/check_mysql.c:531 | ||
2141 | msgid "Check if the slave thread is running properly." | 1754 | msgid "Check if the slave thread is running properly." |
2142 | msgstr "" | 1755 | msgstr "" |
2143 | 1756 | ||
2144 | #: plugins/check_mysql.c:533 | ||
2145 | msgid "Exit with WARNING status if slave server is more than INTEGER seconds" | 1757 | msgid "Exit with WARNING status if slave server is more than INTEGER seconds" |
2146 | msgstr "" | 1758 | msgstr "" |
2147 | 1759 | ||
2148 | #: plugins/check_mysql.c:534 plugins/check_mysql.c:537 | ||
2149 | msgid "behind master" | 1760 | msgid "behind master" |
2150 | msgstr "" | 1761 | msgstr "" |
2151 | 1762 | ||
2152 | #: plugins/check_mysql.c:536 | ||
2153 | msgid "Exit with CRITICAL status if slave server is more then INTEGER seconds" | 1763 | msgid "Exit with CRITICAL status if slave server is more then INTEGER seconds" |
2154 | msgstr "" | 1764 | msgstr "" |
2155 | 1765 | ||
2156 | #: plugins/check_mysql.c:539 | 1766 | msgid "Use ssl encryption" |
2157 | msgid "Use ssl encryptation" | ||
2158 | msgstr "" | 1767 | msgstr "" |
2159 | 1768 | ||
2160 | #: plugins/check_mysql.c:541 | ||
2161 | msgid "Path to CA signing the cert" | 1769 | msgid "Path to CA signing the cert" |
2162 | msgstr "" | 1770 | msgstr "" |
2163 | 1771 | ||
2164 | #: plugins/check_mysql.c:543 | ||
2165 | msgid "Path to SSL certificate" | 1772 | msgid "Path to SSL certificate" |
2166 | msgstr "" | 1773 | msgstr "" |
2167 | 1774 | ||
2168 | #: plugins/check_mysql.c:545 | ||
2169 | msgid "Path to private SSL key" | 1775 | msgid "Path to private SSL key" |
2170 | msgstr "" | 1776 | msgstr "" |
2171 | 1777 | ||
2172 | #: plugins/check_mysql.c:547 | ||
2173 | msgid "Path to CA directory" | 1778 | msgid "Path to CA directory" |
2174 | msgstr "" | 1779 | msgstr "" |
2175 | 1780 | ||
2176 | #: plugins/check_mysql.c:549 | ||
2177 | msgid "List of valid SSL ciphers" | 1781 | msgid "List of valid SSL ciphers" |
2178 | msgstr "" | 1782 | msgstr "" |
2179 | 1783 | ||
2180 | #: plugins/check_mysql.c:553 | ||
2181 | msgid "" | 1784 | msgid "" |
2182 | "There are no required arguments. By default, the local database is checked" | 1785 | "There are no required arguments. By default, the local database is checked" |
2183 | msgstr "" | 1786 | msgstr "" |
2184 | 1787 | ||
2185 | #: plugins/check_mysql.c:554 | ||
2186 | msgid "" | 1788 | msgid "" |
2187 | "using the default unix socket. You can force TCP on localhost by using an" | 1789 | "using the default unix socket. You can force TCP on localhost by using an" |
2188 | msgstr "" | 1790 | msgstr "" |
2189 | 1791 | ||
2190 | #: plugins/check_mysql.c:555 | ||
2191 | msgid "IP address or FQDN ('localhost' will use the socket as well)." | 1792 | msgid "IP address or FQDN ('localhost' will use the socket as well)." |
2192 | msgstr "" | 1793 | msgstr "" |
2193 | 1794 | ||
2194 | #: plugins/check_mysql.c:559 | ||
2195 | msgid "You must specify -p with an empty string to force an empty password," | 1795 | msgid "You must specify -p with an empty string to force an empty password," |
2196 | msgstr "" | 1796 | msgstr "" |
2197 | 1797 | ||
2198 | #: plugins/check_mysql.c:560 | ||
2199 | msgid "overriding any my.cnf settings." | 1798 | msgid "overriding any my.cnf settings." |
2200 | msgstr "" | 1799 | msgstr "" |
2201 | 1800 | ||
2202 | #: plugins/check_nagios.c:104 | ||
2203 | msgid "Cannot open status log for reading!" | 1801 | msgid "Cannot open status log for reading!" |
2204 | msgstr "" | 1802 | msgstr "" |
2205 | 1803 | ||
2206 | #: plugins/check_nagios.c:154 | ||
2207 | #, c-format | 1804 | #, c-format |
2208 | msgid "Found process: %s %s\n" | 1805 | msgid "Found process: %s %s\n" |
2209 | msgstr "" | 1806 | msgstr "" |
2210 | 1807 | ||
2211 | #: plugins/check_nagios.c:168 | ||
2212 | msgid "Could not locate a running Nagios process!" | 1808 | msgid "Could not locate a running Nagios process!" |
2213 | msgstr "" | 1809 | msgstr "" |
2214 | 1810 | ||
2215 | #: plugins/check_nagios.c:172 | ||
2216 | msgid "Cannot parse Nagios log file for valid time" | 1811 | msgid "Cannot parse Nagios log file for valid time" |
2217 | msgstr "" | 1812 | msgstr "" |
2218 | 1813 | ||
2219 | #: plugins/check_nagios.c:183 plugins/check_procs.c:356 | ||
2220 | #, c-format | 1814 | #, c-format |
2221 | msgid "%d process" | 1815 | msgid "%d process" |
2222 | msgid_plural "%d processes" | 1816 | msgid_plural "%d processes" |
2223 | msgstr[0] "" | 1817 | msgstr[0] "" |
2224 | msgstr[1] "" | 1818 | msgstr[1] "" |
2225 | 1819 | ||
2226 | #: plugins/check_nagios.c:186 | ||
2227 | #, c-format | 1820 | #, c-format |
2228 | msgid "status log updated %d second ago" | 1821 | msgid "status log updated %d second ago" |
2229 | msgid_plural "status log updated %d seconds ago" | 1822 | msgid_plural "status log updated %d seconds ago" |
2230 | msgstr[0] "" | 1823 | msgstr[0] "" |
2231 | msgstr[1] "" | 1824 | msgstr[1] "" |
2232 | 1825 | ||
2233 | #: plugins/check_nagios.c:224 plugins/check_nagios.c:253 | ||
2234 | msgid "Expiration time must be an integer (seconds)\n" | 1826 | msgid "Expiration time must be an integer (seconds)\n" |
2235 | msgstr "" | 1827 | msgstr "" |
2236 | 1828 | ||
2237 | #: plugins/check_nagios.c:260 | ||
2238 | msgid "Timeout must be an integer (seconds)\n" | 1829 | msgid "Timeout must be an integer (seconds)\n" |
2239 | msgstr "" | 1830 | msgstr "" |
2240 | 1831 | ||
2241 | #: plugins/check_nagios.c:272 | ||
2242 | msgid "You must provide the status_log\n" | 1832 | msgid "You must provide the status_log\n" |
2243 | msgstr "" | 1833 | msgstr "" |
2244 | 1834 | ||
2245 | #: plugins/check_nagios.c:275 | ||
2246 | msgid "You must provide a process string\n" | 1835 | msgid "You must provide a process string\n" |
2247 | msgstr "" | 1836 | msgstr "" |
2248 | 1837 | ||
2249 | #: plugins/check_nagios.c:289 | ||
2250 | msgid "" | 1838 | msgid "" |
2251 | "This plugin checks the status of the Nagios process on the local machine" | 1839 | "This plugin checks the status of the Nagios process on the local machine" |
2252 | msgstr "" | 1840 | msgstr "" |
2253 | 1841 | ||
2254 | #: plugins/check_nagios.c:290 | ||
2255 | msgid "" | 1842 | msgid "" |
2256 | "The plugin will check to make sure the Nagios status log is no older than" | 1843 | "The plugin will check to make sure the Nagios status log is no older than" |
2257 | msgstr "" | 1844 | msgstr "" |
2258 | 1845 | ||
2259 | #: plugins/check_nagios.c:291 | ||
2260 | msgid "the number of minutes specified by the expires option." | 1846 | msgid "the number of minutes specified by the expires option." |
2261 | msgstr "" | 1847 | msgstr "" |
2262 | 1848 | ||
2263 | #: plugins/check_nagios.c:292 | ||
2264 | msgid "" | 1849 | msgid "" |
2265 | "It also checks the process table for a process matching the command argument." | 1850 | "It also checks the process table for a process matching the command argument." |
2266 | msgstr "" | 1851 | msgstr "" |
2267 | 1852 | ||
2268 | #: plugins/check_nagios.c:302 | ||
2269 | msgid "Name of the log file to check" | 1853 | msgid "Name of the log file to check" |
2270 | msgstr "" | 1854 | msgstr "" |
2271 | 1855 | ||
2272 | #: plugins/check_nagios.c:304 | ||
2273 | msgid "Minutes aging after which logfile is considered stale" | 1856 | msgid "Minutes aging after which logfile is considered stale" |
2274 | msgstr "" | 1857 | msgstr "" |
2275 | 1858 | ||
2276 | #: plugins/check_nagios.c:306 | ||
2277 | msgid "Substring to search for in process arguments" | 1859 | msgid "Substring to search for in process arguments" |
2278 | msgstr "" | 1860 | msgstr "" |
2279 | 1861 | ||
2280 | #: plugins/check_nagios.c:308 | ||
2281 | msgid "Timeout for the plugin in seconds" | 1862 | msgid "Timeout for the plugin in seconds" |
2282 | msgstr "" | 1863 | msgstr "" |
2283 | 1864 | ||
2284 | #: plugins/check_nt.c:142 | ||
2285 | #, c-format | 1865 | #, c-format |
2286 | msgid "Wrong client version - running: %s, required: %s" | 1866 | msgid "Wrong client version - running: %s, required: %s" |
2287 | msgstr "" | 1867 | msgstr "" |
2288 | 1868 | ||
2289 | #: plugins/check_nt.c:153 plugins/check_nt.c:218 | ||
2290 | msgid "missing -l parameters" | 1869 | msgid "missing -l parameters" |
2291 | msgstr "" | 1870 | msgstr "" |
2292 | 1871 | ||
2293 | #: plugins/check_nt.c:155 | ||
2294 | msgid "wrong -l parameter." | 1872 | msgid "wrong -l parameter." |
2295 | msgstr "" | 1873 | msgstr "" |
2296 | 1874 | ||
2297 | #: plugins/check_nt.c:159 | ||
2298 | msgid "CPU Load" | 1875 | msgid "CPU Load" |
2299 | msgstr "" | 1876 | msgstr "" |
2300 | 1877 | ||
2301 | #: plugins/check_nt.c:182 | ||
2302 | #, c-format | 1878 | #, c-format |
2303 | msgid " %lu%% (%lu min average)" | 1879 | msgid " %lu%% (%lu min average)" |
2304 | msgstr "" | 1880 | msgstr "" |
2305 | 1881 | ||
2306 | #: plugins/check_nt.c:184 | ||
2307 | #, c-format | 1882 | #, c-format |
2308 | msgid " '%lu min avg Load'=%lu%%;%lu;%lu;0;100" | 1883 | msgid " '%lu min avg Load'=%lu%%;%lu;%lu;0;100" |
2309 | msgstr "" | 1884 | msgstr "" |
2310 | 1885 | ||
2311 | #: plugins/check_nt.c:194 | ||
2312 | msgid "not enough values for -l parameters" | 1886 | msgid "not enough values for -l parameters" |
2313 | msgstr "" | 1887 | msgstr "" |
2314 | 1888 | ||
2315 | #: plugins/check_nt.c:206 | 1889 | msgid "wrong -l argument" |
2316 | #, c-format | ||
2317 | msgid "System Uptime - %u day(s) %u hour(s) %u minute(s)" | ||
2318 | msgstr "" | 1890 | msgstr "" |
2319 | 1891 | ||
2320 | #: plugins/check_nt.c:220 | 1892 | #, c-format |
2321 | msgid "wrong -l argument" | 1893 | msgid "System Uptime - %u day(s) %u hour(s) %u minute(s) |uptime=%lu" |
2322 | msgstr "" | 1894 | msgstr "" |
2323 | 1895 | ||
2324 | #: plugins/check_nt.c:236 | ||
2325 | #, c-format | 1896 | #, c-format |
2326 | msgid "%s:\\ - total: %.2f Gb - used: %.2f Gb (%.0f%%) - free %.2f Gb (%.0f%%)" | 1897 | msgid "%s:\\ - total: %.2f Gb - used: %.2f Gb (%.0f%%) - free %.2f Gb (%.0f%%)" |
2327 | msgstr "" | 1898 | msgstr "" |
2328 | 1899 | ||
2329 | #: plugins/check_nt.c:239 | ||
2330 | #, c-format | 1900 | #, c-format |
2331 | msgid "'%s:\\ Used Space'=%.2fGb;%.2f;%.2f;0.00;%.2f" | 1901 | msgid "'%s:\\ Used Space'=%.2fGb;%.2f;%.2f;0.00;%.2f" |
2332 | msgstr "" | 1902 | msgstr "" |
2333 | 1903 | ||
2334 | #: plugins/check_nt.c:253 | ||
2335 | msgid "Free disk space : Invalid drive" | 1904 | msgid "Free disk space : Invalid drive" |
2336 | msgstr "" | 1905 | msgstr "" |
2337 | 1906 | ||
2338 | #: plugins/check_nt.c:263 | ||
2339 | msgid "No service/process specified" | 1907 | msgid "No service/process specified" |
2340 | msgstr "" | 1908 | msgstr "" |
2341 | 1909 | ||
2342 | #: plugins/check_nt.c:271 plugins/check_nt.c:284 plugins/check_nt.c:288 | ||
2343 | #: plugins/check_nt.c:622 | ||
2344 | msgid "could not fetch information from server\n" | 1910 | msgid "could not fetch information from server\n" |
2345 | msgstr "" | 1911 | msgstr "" |
2346 | 1912 | ||
2347 | #: plugins/check_nt.c:296 | ||
2348 | #, c-format | 1913 | #, c-format |
2349 | msgid "" | 1914 | msgid "" |
2350 | "Memory usage: total:%.2f Mb - used: %.2f Mb (%.0f%%) - free: %.2f Mb (%.0f%%)" | 1915 | "Memory usage: total:%.2f MB - used: %.2f MB (%.0f%%) - free: %.2f MB (%.0f%%)" |
2351 | msgstr "" | 1916 | msgstr "" |
2352 | 1917 | ||
2353 | #: plugins/check_nt.c:299 | ||
2354 | #, c-format | 1918 | #, c-format |
2355 | msgid "'Memory usage'=%.2fMb;%.2f;%.2f;0.00;%.2f" | 1919 | msgid "'Memory usage'=%.2fMB;%.2f;%.2f;0.00;%.2f" |
2356 | msgstr "" | 1920 | msgstr "" |
2357 | 1921 | ||
2358 | #: plugins/check_nt.c:335 plugins/check_nt.c:420 plugins/check_nt.c:450 | ||
2359 | msgid "No counter specified" | 1922 | msgid "No counter specified" |
2360 | msgstr "" | 1923 | msgstr "" |
2361 | 1924 | ||
2362 | #: plugins/check_nt.c:367 | ||
2363 | msgid "Minimum value contains non-numbers" | 1925 | msgid "Minimum value contains non-numbers" |
2364 | msgstr "" | 1926 | msgstr "" |
2365 | 1927 | ||
2366 | #: plugins/check_nt.c:371 | ||
2367 | msgid "Maximum value contains non-numbers" | 1928 | msgid "Maximum value contains non-numbers" |
2368 | msgstr "" | 1929 | msgstr "" |
2369 | 1930 | ||
2370 | #: plugins/check_nt.c:378 | ||
2371 | msgid "No unit counter specified" | 1931 | msgid "No unit counter specified" |
2372 | msgstr "" | 1932 | msgstr "" |
2373 | 1933 | ||
2374 | #: plugins/check_nt.c:465 | ||
2375 | msgid "Please specify a variable to check" | 1934 | msgid "Please specify a variable to check" |
2376 | msgstr "" | 1935 | msgstr "" |
2377 | 1936 | ||
2378 | #: plugins/check_nt.c:549 | ||
2379 | msgid "Server port must be an integer\n" | 1937 | msgid "Server port must be an integer\n" |
2380 | msgstr "" | 1938 | msgstr "" |
2381 | 1939 | ||
2382 | #: plugins/check_nt.c:603 | ||
2383 | msgid "You must provide a server address or host name" | 1940 | msgid "You must provide a server address or host name" |
2384 | msgstr "" | 1941 | msgstr "" |
2385 | 1942 | ||
2386 | #: plugins/check_nt.c:609 | ||
2387 | msgid "None" | 1943 | msgid "None" |
2388 | msgstr "" | 1944 | msgstr "" |
2389 | 1945 | ||
2390 | #: plugins/check_nt.c:666 | ||
2391 | msgid "This plugin collects data from the NSClient service running on a" | 1946 | msgid "This plugin collects data from the NSClient service running on a" |
2392 | msgstr "" | 1947 | msgstr "" |
2393 | 1948 | ||
2394 | #: plugins/check_nt.c:667 | ||
2395 | msgid "Windows NT/2000/XP/2003 server." | 1949 | msgid "Windows NT/2000/XP/2003 server." |
2396 | msgstr "" | 1950 | msgstr "" |
2397 | 1951 | ||
2398 | #: plugins/check_nt.c:678 | ||
2399 | msgid "Name of the host to check" | 1952 | msgid "Name of the host to check" |
2400 | msgstr "" | 1953 | msgstr "" |
2401 | 1954 | ||
2402 | #: plugins/check_nt.c:680 | ||
2403 | msgid "Optional port number (default: " | 1955 | msgid "Optional port number (default: " |
2404 | msgstr "" | 1956 | msgstr "" |
2405 | 1957 | ||
2406 | #: plugins/check_nt.c:683 | ||
2407 | msgid "Password needed for the request" | 1958 | msgid "Password needed for the request" |
2408 | msgstr "" | 1959 | msgstr "" |
2409 | 1960 | ||
2410 | #: plugins/check_nt.c:685 plugins/check_nwstat.c:1661 | ||
2411 | #: plugins/check_overcr.c:432 | ||
2412 | msgid "Threshold which will result in a warning status" | 1961 | msgid "Threshold which will result in a warning status" |
2413 | msgstr "" | 1962 | msgstr "" |
2414 | 1963 | ||
2415 | #: plugins/check_nt.c:687 plugins/check_nwstat.c:1663 | ||
2416 | #: plugins/check_overcr.c:434 | ||
2417 | msgid "Threshold which will result in a critical status" | 1964 | msgid "Threshold which will result in a critical status" |
2418 | msgstr "" | 1965 | msgstr "" |
2419 | 1966 | ||
2420 | #: plugins/check_nt.c:689 | ||
2421 | msgid "Seconds before connection attempt times out (default: " | 1967 | msgid "Seconds before connection attempt times out (default: " |
2422 | msgstr "" | 1968 | msgstr "" |
2423 | 1969 | ||
2424 | #: plugins/check_nt.c:691 | ||
2425 | msgid "Parameters passed to specified check (see below)" | 1970 | msgid "Parameters passed to specified check (see below)" |
2426 | msgstr "" | 1971 | msgstr "" |
2427 | 1972 | ||
2428 | #: plugins/check_nt.c:693 | ||
2429 | msgid "Display options (currently only SHOWALL works)" | 1973 | msgid "Display options (currently only SHOWALL works)" |
2430 | msgstr "" | 1974 | msgstr "" |
2431 | 1975 | ||
2432 | #: plugins/check_nt.c:695 | ||
2433 | msgid "Return UNKNOWN on timeouts" | 1976 | msgid "Return UNKNOWN on timeouts" |
2434 | msgstr "" | 1977 | msgstr "" |
2435 | 1978 | ||
2436 | #: plugins/check_nt.c:698 | ||
2437 | msgid "Print this help screen" | 1979 | msgid "Print this help screen" |
2438 | msgstr "" | 1980 | msgstr "" |
2439 | 1981 | ||
2440 | #: plugins/check_nt.c:700 | ||
2441 | msgid "Print version information" | 1982 | msgid "Print version information" |
2442 | msgstr "" | 1983 | msgstr "" |
2443 | 1984 | ||
2444 | #: plugins/check_nt.c:702 | ||
2445 | msgid "Variable to check" | 1985 | msgid "Variable to check" |
2446 | msgstr "" | 1986 | msgstr "" |
2447 | 1987 | ||
2448 | #: plugins/check_nt.c:703 | ||
2449 | msgid "Valid variables are:" | 1988 | msgid "Valid variables are:" |
2450 | msgstr "" | 1989 | msgstr "" |
2451 | 1990 | ||
2452 | #: plugins/check_nt.c:705 | ||
2453 | msgid "Get the NSClient version" | 1991 | msgid "Get the NSClient version" |
2454 | msgstr "" | 1992 | msgstr "" |
2455 | 1993 | ||
2456 | #: plugins/check_nt.c:706 | ||
2457 | msgid "If -l <version> is specified, will return warning if versions differ." | 1994 | msgid "If -l <version> is specified, will return warning if versions differ." |
2458 | msgstr "" | 1995 | msgstr "" |
2459 | 1996 | ||
2460 | #: plugins/check_nt.c:708 | ||
2461 | msgid "Average CPU load on last x minutes." | 1997 | msgid "Average CPU load on last x minutes." |
2462 | msgstr "" | 1998 | msgstr "" |
2463 | 1999 | ||
2464 | #: plugins/check_nt.c:709 | ||
2465 | msgid "Request a -l parameter with the following syntax:" | 2000 | msgid "Request a -l parameter with the following syntax:" |
2466 | msgstr "" | 2001 | msgstr "" |
2467 | 2002 | ||
2468 | #: plugins/check_nt.c:710 | ||
2469 | msgid "-l <minutes range>,<warning threshold>,<critical threshold>." | 2003 | msgid "-l <minutes range>,<warning threshold>,<critical threshold>." |
2470 | msgstr "" | 2004 | msgstr "" |
2471 | 2005 | ||
2472 | #: plugins/check_nt.c:711 | ||
2473 | msgid "<minute range> should be less than 24*60." | 2006 | msgid "<minute range> should be less than 24*60." |
2474 | msgstr "" | 2007 | msgstr "" |
2475 | 2008 | ||
2476 | #: plugins/check_nt.c:712 | ||
2477 | msgid "" | 2009 | msgid "" |
2478 | "Thresholds are percentage and up to 10 requests can be done in one shot." | 2010 | "Thresholds are percentage and up to 10 requests can be done in one shot." |
2479 | msgstr "" | 2011 | msgstr "" |
2480 | 2012 | ||
2481 | #: plugins/check_nt.c:715 | ||
2482 | msgid "Get the uptime of the machine." | 2013 | msgid "Get the uptime of the machine." |
2483 | msgstr "" | 2014 | msgstr "" |
2484 | 2015 | ||
2485 | #: plugins/check_nt.c:716 | 2016 | msgid "-l <unit> " |
2486 | msgid "No specific parameters. No warning or critical threshold" | 2017 | msgstr "" |
2018 | |||
2019 | msgid "<unit> = seconds, minutes, hours, or days. (default: minutes)" | ||
2020 | msgstr "" | ||
2021 | |||
2022 | msgid "Thresholds will use the unit specified above." | ||
2487 | msgstr "" | 2023 | msgstr "" |
2488 | 2024 | ||
2489 | #: plugins/check_nt.c:718 | ||
2490 | msgid "Size and percentage of disk use." | 2025 | msgid "Size and percentage of disk use." |
2491 | msgstr "" | 2026 | msgstr "" |
2492 | 2027 | ||
2493 | #: plugins/check_nt.c:719 | ||
2494 | msgid "Request a -l parameter containing the drive letter only." | 2028 | msgid "Request a -l parameter containing the drive letter only." |
2495 | msgstr "" | 2029 | msgstr "" |
2496 | 2030 | ||
2497 | #: plugins/check_nt.c:720 plugins/check_nt.c:723 | ||
2498 | msgid "Warning and critical thresholds can be specified with -w and -c." | 2031 | msgid "Warning and critical thresholds can be specified with -w and -c." |
2499 | msgstr "" | 2032 | msgstr "" |
2500 | 2033 | ||
2501 | #: plugins/check_nt.c:722 | ||
2502 | msgid "Memory use." | 2034 | msgid "Memory use." |
2503 | msgstr "" | 2035 | msgstr "" |
2504 | 2036 | ||
2505 | #: plugins/check_nt.c:725 | ||
2506 | msgid "Check the state of one or several services." | 2037 | msgid "Check the state of one or several services." |
2507 | msgstr "" | 2038 | msgstr "" |
2508 | 2039 | ||
2509 | #: plugins/check_nt.c:726 plugins/check_nt.c:735 | ||
2510 | msgid "Request a -l parameters with the following syntax:" | 2040 | msgid "Request a -l parameters with the following syntax:" |
2511 | msgstr "" | 2041 | msgstr "" |
2512 | 2042 | ||
2513 | #: plugins/check_nt.c:727 | ||
2514 | msgid "-l <service1>,<service2>,<service3>,..." | 2043 | msgid "-l <service1>,<service2>,<service3>,..." |
2515 | msgstr "" | 2044 | msgstr "" |
2516 | 2045 | ||
2517 | #: plugins/check_nt.c:728 | ||
2518 | msgid "You can specify -d SHOWALL in case you want to see working services" | 2046 | msgid "You can specify -d SHOWALL in case you want to see working services" |
2519 | msgstr "" | 2047 | msgstr "" |
2520 | 2048 | ||
2521 | #: plugins/check_nt.c:729 | ||
2522 | msgid "in the returned string." | 2049 | msgid "in the returned string." |
2523 | msgstr "" | 2050 | msgstr "" |
2524 | 2051 | ||
2525 | #: plugins/check_nt.c:731 | ||
2526 | msgid "Check if one or several process are running." | 2052 | msgid "Check if one or several process are running." |
2527 | msgstr "" | 2053 | msgstr "" |
2528 | 2054 | ||
2529 | #: plugins/check_nt.c:732 | ||
2530 | msgid "Same syntax as SERVICESTATE." | 2055 | msgid "Same syntax as SERVICESTATE." |
2531 | msgstr "" | 2056 | msgstr "" |
2532 | 2057 | ||
2533 | #: plugins/check_nt.c:734 | ||
2534 | msgid "Check any performance counter of Windows NT/2000." | 2058 | msgid "Check any performance counter of Windows NT/2000." |
2535 | msgstr "" | 2059 | msgstr "" |
2536 | 2060 | ||
2537 | #: plugins/check_nt.c:736 | ||
2538 | msgid "-l \"\\\\<performance object>\\\\counter\",\"<description>" | 2061 | msgid "-l \"\\\\<performance object>\\\\counter\",\"<description>" |
2539 | msgstr "" | 2062 | msgstr "" |
2540 | 2063 | ||
2541 | #: plugins/check_nt.c:737 | ||
2542 | msgid "The <description> parameter is optional and is given to a printf " | 2064 | msgid "The <description> parameter is optional and is given to a printf " |
2543 | msgstr "" | 2065 | msgstr "" |
2544 | 2066 | ||
2545 | #: plugins/check_nt.c:738 | ||
2546 | msgid "output command which requires a float parameter." | 2067 | msgid "output command which requires a float parameter." |
2547 | msgstr "" | 2068 | msgstr "" |
2548 | 2069 | ||
2549 | #: plugins/check_nt.c:739 | ||
2550 | #, c-format | 2070 | #, c-format |
2551 | msgid "If <description> does not include \"%%\", it is used as a label." | 2071 | msgid "If <description> does not include \"%%\", it is used as a label." |
2552 | msgstr "" | 2072 | msgstr "" |
2553 | 2073 | ||
2554 | #: plugins/check_nt.c:740 plugins/check_nt.c:755 | ||
2555 | msgid "Some examples:" | 2074 | msgid "Some examples:" |
2556 | msgstr "" | 2075 | msgstr "" |
2557 | 2076 | ||
2558 | #: plugins/check_nt.c:744 | ||
2559 | msgid "Check any performance counter object of Windows NT/2000." | 2077 | msgid "Check any performance counter object of Windows NT/2000." |
2560 | msgstr "" | 2078 | msgstr "" |
2561 | 2079 | ||
2562 | #: plugins/check_nt.c:745 | ||
2563 | msgid "" | 2080 | msgid "" |
2564 | "Syntax: check_nt -H <hostname> -p <port> -v INSTANCES -l <counter object>" | 2081 | "Syntax: check_nt -H <hostname> -p <port> -v INSTANCES -l <counter object>" |
2565 | msgstr "" | 2082 | msgstr "" |
2566 | 2083 | ||
2567 | #: plugins/check_nt.c:746 | ||
2568 | msgid "<counter object> is a Windows Perfmon Counter object (eg. Process)," | 2084 | msgid "<counter object> is a Windows Perfmon Counter object (eg. Process)," |
2569 | msgstr "" | 2085 | msgstr "" |
2570 | 2086 | ||
2571 | #: plugins/check_nt.c:747 | ||
2572 | msgid "if it is two words, it should be enclosed in quotes" | 2087 | msgid "if it is two words, it should be enclosed in quotes" |
2573 | msgstr "" | 2088 | msgstr "" |
2574 | 2089 | ||
2575 | #: plugins/check_nt.c:748 | ||
2576 | msgid "The returned results will be a comma-separated list of instances on " | 2090 | msgid "The returned results will be a comma-separated list of instances on " |
2577 | msgstr "" | 2091 | msgstr "" |
2578 | 2092 | ||
2579 | #: plugins/check_nt.c:749 | ||
2580 | msgid " the selected computer for that object." | 2093 | msgid " the selected computer for that object." |
2581 | msgstr "" | 2094 | msgstr "" |
2582 | 2095 | ||
2583 | #: plugins/check_nt.c:750 | ||
2584 | msgid "" | 2096 | msgid "" |
2585 | "The purpose of this is to be run from command line to determine what " | 2097 | "The purpose of this is to be run from command line to determine what " |
2586 | "instances" | 2098 | "instances" |
2587 | msgstr "" | 2099 | msgstr "" |
2588 | 2100 | ||
2589 | #: plugins/check_nt.c:751 | ||
2590 | msgid "" | 2101 | msgid "" |
2591 | " are available for monitoring without having to log onto the Windows server" | 2102 | " are available for monitoring without having to log onto the Windows server" |
2592 | msgstr "" | 2103 | msgstr "" |
2593 | 2104 | ||
2594 | #: plugins/check_nt.c:752 | ||
2595 | msgid " to run Perfmon directly." | 2105 | msgid " to run Perfmon directly." |
2596 | msgstr "" | 2106 | msgstr "" |
2597 | 2107 | ||
2598 | #: plugins/check_nt.c:753 | ||
2599 | msgid "" | 2108 | msgid "" |
2600 | "It can also be used in scripts that automatically create the monitoring " | 2109 | "It can also be used in scripts that automatically create the monitoring " |
2601 | "service" | 2110 | "service" |
2602 | msgstr "" | 2111 | msgstr "" |
2603 | 2112 | ||
2604 | #: plugins/check_nt.c:754 | ||
2605 | msgid " configuration files." | 2113 | msgid " configuration files." |
2606 | msgstr "" | 2114 | msgstr "" |
2607 | 2115 | ||
2608 | #: plugins/check_nt.c:756 | ||
2609 | msgid "check_nt -H 192.168.1.1 -p 1248 -v INSTANCES -l Process" | 2116 | msgid "check_nt -H 192.168.1.1 -p 1248 -v INSTANCES -l Process" |
2610 | msgstr "" | 2117 | msgstr "" |
2611 | 2118 | ||
2612 | #: plugins/check_nt.c:759 | ||
2613 | msgid "" | 2119 | msgid "" |
2614 | "- The NSClient service should be running on the server to get any information" | 2120 | "- The NSClient service should be running on the server to get any information" |
2615 | msgstr "" | 2121 | msgstr "" |
2616 | 2122 | ||
2617 | #: plugins/check_nt.c:761 | ||
2618 | msgid "- Critical thresholds should be lower than warning thresholds" | 2123 | msgid "- Critical thresholds should be lower than warning thresholds" |
2619 | msgstr "" | 2124 | msgstr "" |
2620 | 2125 | ||
2621 | #: plugins/check_nt.c:762 | ||
2622 | msgid "- Default port 1248 is sometimes in use by other services. The error" | 2126 | msgid "- Default port 1248 is sometimes in use by other services. The error" |
2623 | msgstr "" | 2127 | msgstr "" |
2624 | 2128 | ||
2625 | #: plugins/check_nt.c:763 | ||
2626 | msgid "" | 2129 | msgid "" |
2627 | "output when this happens contains \"Cannot map xxxxx to protocol number\"." | 2130 | "output when this happens contains \"Cannot map xxxxx to protocol number\"." |
2628 | msgstr "" | 2131 | msgstr "" |
2629 | 2132 | ||
2630 | #: plugins/check_nt.c:764 | ||
2631 | msgid "One fix for this is to change the port to something else on check_nt " | 2133 | msgid "One fix for this is to change the port to something else on check_nt " |
2632 | msgstr "" | 2134 | msgstr "" |
2633 | 2135 | ||
2634 | #: plugins/check_nt.c:765 | ||
2635 | msgid "and on the client service it's connecting to." | 2136 | msgid "and on the client service it's connecting to." |
2636 | msgstr "" | 2137 | msgstr "" |
2637 | 2138 | ||
2638 | #: plugins/check_ntp.c:807 plugins/check_ntp_peer.c:612 | 2139 | #, c-format |
2639 | #: plugins/check_ntp_time.c:571 | 2140 | msgid "jitter response too large (%lu bytes)\n" |
2141 | msgstr "" | ||
2142 | |||
2640 | msgid "NTP CRITICAL:" | 2143 | msgid "NTP CRITICAL:" |
2641 | msgstr "" | 2144 | msgstr "" |
2642 | 2145 | ||
2643 | #: plugins/check_ntp.c:810 plugins/check_ntp_peer.c:615 | ||
2644 | #: plugins/check_ntp_time.c:574 | ||
2645 | msgid "NTP WARNING:" | 2146 | msgid "NTP WARNING:" |
2646 | msgstr "" | 2147 | msgstr "" |
2647 | 2148 | ||
2648 | #: plugins/check_ntp.c:813 plugins/check_ntp_peer.c:618 | ||
2649 | #: plugins/check_ntp_time.c:577 | ||
2650 | msgid "NTP OK:" | 2149 | msgid "NTP OK:" |
2651 | msgstr "" | 2150 | msgstr "" |
2652 | 2151 | ||
2653 | #: plugins/check_ntp.c:816 plugins/check_ntp_peer.c:621 | ||
2654 | #: plugins/check_ntp_time.c:580 | ||
2655 | msgid "NTP UNKNOWN:" | 2152 | msgid "NTP UNKNOWN:" |
2656 | msgstr "" | 2153 | msgstr "" |
2657 | 2154 | ||
2658 | #: plugins/check_ntp.c:820 plugins/check_ntp_peer.c:630 | ||
2659 | #: plugins/check_ntp_time.c:584 | ||
2660 | msgid "Offset unknown" | 2155 | msgid "Offset unknown" |
2661 | msgstr "" | 2156 | msgstr "" |
2662 | 2157 | ||
2663 | #: plugins/check_ntp.c:823 plugins/check_ntp_peer.c:633 | ||
2664 | #: plugins/check_ntp_time.c:587 | ||
2665 | msgid "Offset" | 2158 | msgid "Offset" |
2666 | msgstr "" | 2159 | msgstr "" |
2667 | 2160 | ||
2668 | #: plugins/check_ntp.c:844 plugins/check_ntp_peer.c:662 | ||
2669 | msgid "This plugin checks the selected ntp server" | 2161 | msgid "This plugin checks the selected ntp server" |
2670 | msgstr "" | 2162 | msgstr "" |
2671 | 2163 | ||
2672 | #: plugins/check_ntp.c:854 plugins/check_ntp_peer.c:674 | ||
2673 | #: plugins/check_ntp_time.c:614 | ||
2674 | msgid "Offset to result in warning status (seconds)" | 2164 | msgid "Offset to result in warning status (seconds)" |
2675 | msgstr "" | 2165 | msgstr "" |
2676 | 2166 | ||
2677 | #: plugins/check_ntp.c:856 plugins/check_ntp_peer.c:676 | ||
2678 | #: plugins/check_ntp_time.c:616 | ||
2679 | msgid "Offset to result in critical status (seconds)" | 2167 | msgid "Offset to result in critical status (seconds)" |
2680 | msgstr "" | 2168 | msgstr "" |
2681 | 2169 | ||
2682 | #: plugins/check_ntp.c:858 plugins/check_ntp_peer.c:682 | ||
2683 | msgid "Warning threshold for jitter" | 2170 | msgid "Warning threshold for jitter" |
2684 | msgstr "" | 2171 | msgstr "" |
2685 | 2172 | ||
2686 | #: plugins/check_ntp.c:860 plugins/check_ntp_peer.c:684 | ||
2687 | msgid "Critical threshold for jitter" | 2173 | msgid "Critical threshold for jitter" |
2688 | msgstr "" | 2174 | msgstr "" |
2689 | 2175 | ||
2690 | #: plugins/check_ntp.c:870 | ||
2691 | msgid "Normal offset check:" | 2176 | msgid "Normal offset check:" |
2692 | msgstr "" | 2177 | msgstr "" |
2693 | 2178 | ||
2694 | #: plugins/check_ntp.c:873 plugins/check_ntp_peer.c:709 | ||
2695 | msgid "" | 2179 | msgid "" |
2696 | "Check jitter too, avoiding critical notifications if jitter isn't available" | 2180 | "Check jitter too, avoiding critical notifications if jitter isn't available" |
2697 | msgstr "" | 2181 | msgstr "" |
2698 | 2182 | ||
2699 | #: plugins/check_ntp.c:874 plugins/check_ntp_peer.c:710 | ||
2700 | msgid "(See Notes above for more details on thresholds formats):" | 2183 | msgid "(See Notes above for more details on thresholds formats):" |
2701 | msgstr "" | 2184 | msgstr "" |
2702 | 2185 | ||
2703 | #: plugins/check_ntp.c:879 plugins/check_ntp.c:886 | ||
2704 | msgid "WARNING: check_ntp is deprecated. Please use check_ntp_peer or" | 2186 | msgid "WARNING: check_ntp is deprecated. Please use check_ntp_peer or" |
2705 | msgstr "" | 2187 | msgstr "" |
2706 | 2188 | ||
2707 | #: plugins/check_ntp.c:880 plugins/check_ntp.c:887 | ||
2708 | msgid "check_ntp_time instead." | 2189 | msgid "check_ntp_time instead." |
2709 | msgstr "" | 2190 | msgstr "" |
2710 | 2191 | ||
2711 | #: plugins/check_ntp_peer.c:625 | ||
2712 | msgid "Server not synchronized" | 2192 | msgid "Server not synchronized" |
2713 | msgstr "" | 2193 | msgstr "" |
2714 | 2194 | ||
2715 | #: plugins/check_ntp_peer.c:627 | ||
2716 | msgid "Server has the LI_ALARM bit set" | 2195 | msgid "Server has the LI_ALARM bit set" |
2717 | msgstr "" | 2196 | msgstr "" |
2718 | 2197 | ||
2719 | #: plugins/check_ntp_peer.c:672 | ||
2720 | msgid "" | 2198 | msgid "" |
2721 | "Returns UNKNOWN instead of CRITICAL or WARNING if server isn't synchronized" | 2199 | "Returns UNKNOWN instead of CRITICAL or WARNING if server isn't synchronized" |
2722 | msgstr "" | 2200 | msgstr "" |
2723 | 2201 | ||
2724 | #: plugins/check_ntp_peer.c:678 | ||
2725 | msgid "Warning threshold for stratum of server's synchronization peer" | 2202 | msgid "Warning threshold for stratum of server's synchronization peer" |
2726 | msgstr "" | 2203 | msgstr "" |
2727 | 2204 | ||
2728 | #: plugins/check_ntp_peer.c:680 | ||
2729 | msgid "Critical threshold for stratum of server's synchronization peer" | 2205 | msgid "Critical threshold for stratum of server's synchronization peer" |
2730 | msgstr "" | 2206 | msgstr "" |
2731 | 2207 | ||
2732 | #: plugins/check_ntp_peer.c:686 | ||
2733 | msgid "Warning threshold for number of usable time sources (\"truechimers\")" | 2208 | msgid "Warning threshold for number of usable time sources (\"truechimers\")" |
2734 | msgstr "" | 2209 | msgstr "" |
2735 | 2210 | ||
2736 | #: plugins/check_ntp_peer.c:688 | ||
2737 | msgid "Critical threshold for number of usable time sources (\"truechimers\")" | 2211 | msgid "Critical threshold for number of usable time sources (\"truechimers\")" |
2738 | msgstr "" | 2212 | msgstr "" |
2739 | 2213 | ||
2740 | #: plugins/check_ntp_peer.c:693 | ||
2741 | msgid "This plugin checks an NTP server independent of any commandline" | 2214 | msgid "This plugin checks an NTP server independent of any commandline" |
2742 | msgstr "" | 2215 | msgstr "" |
2743 | 2216 | ||
2744 | #: plugins/check_ntp_peer.c:694 | ||
2745 | msgid "programs or external libraries." | 2217 | msgid "programs or external libraries." |
2746 | msgstr "" | 2218 | msgstr "" |
2747 | 2219 | ||
2748 | #: plugins/check_ntp_peer.c:697 | ||
2749 | msgid "Use this plugin to check the health of an NTP server. It supports" | 2220 | msgid "Use this plugin to check the health of an NTP server. It supports" |
2750 | msgstr "" | 2221 | msgstr "" |
2751 | 2222 | ||
2752 | #: plugins/check_ntp_peer.c:698 | ||
2753 | msgid "checking the offset with the sync peer, the jitter and stratum. This" | 2223 | msgid "checking the offset with the sync peer, the jitter and stratum. This" |
2754 | msgstr "" | 2224 | msgstr "" |
2755 | 2225 | ||
2756 | #: plugins/check_ntp_peer.c:699 | ||
2757 | msgid "plugin will not check the clock offset between the local host and NTP" | 2226 | msgid "plugin will not check the clock offset between the local host and NTP" |
2758 | msgstr "" | 2227 | msgstr "" |
2759 | 2228 | ||
2760 | #: plugins/check_ntp_peer.c:700 | ||
2761 | msgid "server; please use check_ntp_time for that purpose." | 2229 | msgid "server; please use check_ntp_time for that purpose." |
2762 | msgstr "" | 2230 | msgstr "" |
2763 | 2231 | ||
2764 | #: plugins/check_ntp_peer.c:706 | ||
2765 | msgid "Simple NTP server check:" | 2232 | msgid "Simple NTP server check:" |
2766 | msgstr "" | 2233 | msgstr "" |
2767 | 2234 | ||
2768 | #: plugins/check_ntp_peer.c:713 | ||
2769 | msgid "Only check the number of usable time sources (\"truechimers\"):" | 2235 | msgid "Only check the number of usable time sources (\"truechimers\"):" |
2770 | msgstr "" | 2236 | msgstr "" |
2771 | 2237 | ||
2772 | #: plugins/check_ntp_peer.c:716 | ||
2773 | msgid "Check only stratum:" | 2238 | msgid "Check only stratum:" |
2774 | msgstr "" | 2239 | msgstr "" |
2775 | 2240 | ||
2776 | #: plugins/check_ntp_time.c:602 | ||
2777 | msgid "This plugin checks the clock offset with the ntp server" | 2241 | msgid "This plugin checks the clock offset with the ntp server" |
2778 | msgstr "" | 2242 | msgstr "" |
2779 | 2243 | ||
2780 | #: plugins/check_ntp_time.c:612 | ||
2781 | msgid "Returns UNKNOWN instead of CRITICAL if offset cannot be found" | 2244 | msgid "Returns UNKNOWN instead of CRITICAL if offset cannot be found" |
2782 | msgstr "" | 2245 | msgstr "" |
2783 | 2246 | ||
2784 | #: plugins/check_ntp_time.c:621 | 2247 | msgid "Expected offset of the ntp server relative to local server (seconds)" |
2248 | msgstr "" | ||
2249 | |||
2785 | msgid "This plugin checks the clock offset between the local host and a" | 2250 | msgid "This plugin checks the clock offset between the local host and a" |
2786 | msgstr "" | 2251 | msgstr "" |
2787 | 2252 | ||
2788 | #: plugins/check_ntp_time.c:622 | ||
2789 | msgid "remote NTP server. It is independent of any commandline programs or" | 2253 | msgid "remote NTP server. It is independent of any commandline programs or" |
2790 | msgstr "" | 2254 | msgstr "" |
2791 | 2255 | ||
2792 | #: plugins/check_ntp_time.c:623 | ||
2793 | msgid "external libraries." | 2256 | msgid "external libraries." |
2794 | msgstr "" | 2257 | msgstr "" |
2795 | 2258 | ||
2796 | #: plugins/check_ntp_time.c:627 | ||
2797 | msgid "If you'd rather want to monitor an NTP server, please use" | 2259 | msgid "If you'd rather want to monitor an NTP server, please use" |
2798 | msgstr "" | 2260 | msgstr "" |
2799 | 2261 | ||
2800 | #: plugins/check_ntp_time.c:628 | ||
2801 | msgid "check_ntp_peer." | 2262 | msgid "check_ntp_peer." |
2802 | msgstr "" | 2263 | msgstr "" |
2803 | 2264 | ||
2804 | #: plugins/check_nwstat.c:194 | 2265 | msgid "--time-offset is useful for compensating for servers with known" |
2266 | msgstr "" | ||
2267 | |||
2268 | msgid "and expected clock skew." | ||
2269 | msgstr "" | ||
2270 | |||
2805 | #, c-format | 2271 | #, c-format |
2806 | msgid "NetWare %s: " | 2272 | msgid "NetWare %s: " |
2807 | msgstr "" | 2273 | msgstr "" |
2808 | 2274 | ||
2809 | #: plugins/check_nwstat.c:232 | ||
2810 | #, c-format | 2275 | #, c-format |
2811 | msgid "Up %s," | 2276 | msgid "Up %s," |
2812 | msgstr "" | 2277 | msgstr "" |
2813 | 2278 | ||
2814 | #: plugins/check_nwstat.c:240 | ||
2815 | #, c-format | 2279 | #, c-format |
2816 | msgid "Load %s - %s %s-min load average = %lu%%|load%s=%lu;%lu;%lu;0;100" | 2280 | msgid "Load %s - %s %s-min load average = %lu%%|load%s=%lu;%lu;%lu;0;100" |
2817 | msgstr "" | 2281 | msgstr "" |
2818 | 2282 | ||
2819 | #: plugins/check_nwstat.c:268 | ||
2820 | #, c-format | 2283 | #, c-format |
2821 | msgid "Conns %s - %lu current connections|Conns=%lu;%lu;%lu;;" | 2284 | msgid "Conns %s - %lu current connections|Conns=%lu;%lu;%lu;;" |
2822 | msgstr "" | 2285 | msgstr "" |
2823 | 2286 | ||
2824 | #: plugins/check_nwstat.c:293 | ||
2825 | #, c-format | 2287 | #, c-format |
2826 | msgid "%s: Long term cache hits = %lu%%" | 2288 | msgid "%s: Long term cache hits = %lu%%" |
2827 | msgstr "" | 2289 | msgstr "" |
2828 | 2290 | ||
2829 | #: plugins/check_nwstat.c:315 | ||
2830 | #, c-format | 2291 | #, c-format |
2831 | msgid "%s: Total cache buffers = %lu|Cachebuffers=%lu;%lu;%lu;;" | 2292 | msgid "%s: Total cache buffers = %lu|Cachebuffers=%lu;%lu;%lu;;" |
2832 | msgstr "" | 2293 | msgstr "" |
2833 | 2294 | ||
2834 | #: plugins/check_nwstat.c:340 | ||
2835 | #, c-format | 2295 | #, c-format |
2836 | msgid "%s: Dirty cache buffers = %lu|Dirty-Cache-Buffers=%lu;%lu;%lu;;" | 2296 | msgid "%s: Dirty cache buffers = %lu|Dirty-Cache-Buffers=%lu;%lu;%lu;;" |
2837 | msgstr "" | 2297 | msgstr "" |
2838 | 2298 | ||
2839 | #: plugins/check_nwstat.c:365 | ||
2840 | #, c-format | 2299 | #, c-format |
2841 | msgid "%s: LRU sitting time = %lu minutes" | 2300 | msgid "%s: LRU sitting time = %lu minutes" |
2842 | msgstr "" | 2301 | msgstr "" |
2843 | 2302 | ||
2844 | #: plugins/check_nwstat.c:382 plugins/check_nwstat.c:410 | ||
2845 | #: plugins/check_nwstat.c:437 plugins/check_nwstat.c:470 | ||
2846 | #: plugins/check_nwstat.c:650 plugins/check_nwstat.c:676 | ||
2847 | #: plugins/check_nwstat.c:707 plugins/check_nwstat.c:753 | ||
2848 | #: plugins/check_nwstat.c:777 | ||
2849 | #, c-format | 2303 | #, c-format |
2850 | msgid "CRITICAL - Volume '%s' does not exist!" | 2304 | msgid "CRITICAL - Volume '%s' does not exist!" |
2851 | msgstr "" | 2305 | msgstr "" |
2852 | 2306 | ||
2853 | #: plugins/check_nwstat.c:391 | ||
2854 | #, c-format | 2307 | #, c-format |
2855 | msgid "%s%lu KB free on volume %s|KBFree%s=%lu;%lu;%lu;;" | 2308 | msgid "%s%lu KB free on volume %s|KBFree%s=%lu;%lu;%lu;;" |
2856 | msgstr "" | 2309 | msgstr "" |
2857 | 2310 | ||
2858 | #: plugins/check_nwstat.c:392 plugins/check_nwstat.c:420 | ||
2859 | #: plugins/check_nwstat.c:447 plugins/check_nwstat.c:659 | ||
2860 | #: plugins/check_nwstat.c:685 plugins/check_nwstat.c:761 | ||
2861 | msgid "Only " | 2311 | msgid "Only " |
2862 | msgstr "" | 2312 | msgstr "" |
2863 | 2313 | ||
2864 | #: plugins/check_nwstat.c:419 | ||
2865 | #, c-format | 2314 | #, c-format |
2866 | msgid "%s%lu MB free on volume %s|MBFree%s=%lu;%lu;%lu;;" | 2315 | msgid "%s%lu MB free on volume %s|MBFree%s=%lu;%lu;%lu;;" |
2867 | msgstr "" | 2316 | msgstr "" |
2868 | 2317 | ||
2869 | #: plugins/check_nwstat.c:446 | ||
2870 | #, c-format | 2318 | #, c-format |
2871 | msgid "%s%lu MB used on volume %s|MBUsed%s=%lu;%lu;%lu;;" | 2319 | msgid "%s%lu MB used on volume %s|MBUsed%s=%lu;%lu;%lu;;" |
2872 | msgstr "" | 2320 | msgstr "" |
2873 | 2321 | ||
2874 | #: plugins/check_nwstat.c:494 | ||
2875 | #, c-format | 2322 | #, c-format |
2876 | msgid "" | 2323 | msgid "" |
2877 | "%lu MB (%lu%%) free on volume %s - total %lu MB|FreeMB%s=%lu;%lu;%lu;0;100" | 2324 | "%lu MB (%lu%%) free on volume %s - total %lu MB|FreeMB%s=%lu;%lu;%lu;0;100" |
2878 | msgstr "" | 2325 | msgstr "" |
2879 | 2326 | ||
2880 | #: plugins/check_nwstat.c:528 | ||
2881 | #, c-format | 2327 | #, c-format |
2882 | msgid "Directory Services Database is %s (DS version %s)" | 2328 | msgid "Directory Services Database is %s (DS version %s)" |
2883 | msgstr "" | 2329 | msgstr "" |
2884 | 2330 | ||
2885 | #: plugins/check_nwstat.c:545 | ||
2886 | #, c-format | 2331 | #, c-format |
2887 | msgid "Logins are %s" | 2332 | msgid "Logins are %s" |
2888 | msgstr "" | 2333 | msgstr "" |
2889 | 2334 | ||
2890 | #: plugins/check_nwstat.c:545 | ||
2891 | msgid "enabled" | 2335 | msgid "enabled" |
2892 | msgstr "" | 2336 | msgstr "" |
2893 | 2337 | ||
2894 | #: plugins/check_nwstat.c:545 | ||
2895 | msgid "disabled" | 2338 | msgid "disabled" |
2896 | msgstr "" | 2339 | msgstr "" |
2897 | 2340 | ||
2898 | #: plugins/check_nwstat.c:560 | ||
2899 | msgid "CRITICAL - NRM Status is bad!" | 2341 | msgid "CRITICAL - NRM Status is bad!" |
2900 | msgstr "" | 2342 | msgstr "" |
2901 | 2343 | ||
2902 | #: plugins/check_nwstat.c:565 | ||
2903 | msgid "Warning - NRM Status is suspect!" | 2344 | msgid "Warning - NRM Status is suspect!" |
2904 | msgstr "" | 2345 | msgstr "" |
2905 | 2346 | ||
2906 | #: plugins/check_nwstat.c:568 | ||
2907 | msgid "OK - NRM Status is good!" | 2347 | msgid "OK - NRM Status is good!" |
2908 | msgstr "" | 2348 | msgstr "" |
2909 | 2349 | ||
2910 | #: plugins/check_nwstat.c:610 | ||
2911 | #, c-format | 2350 | #, c-format |
2912 | msgid "%lu of %lu (%lu%%) packet receive buffers used" | 2351 | msgid "%lu of %lu (%lu%%) packet receive buffers used" |
2913 | msgstr "" | 2352 | msgstr "" |
2914 | 2353 | ||
2915 | #: plugins/check_nwstat.c:634 | ||
2916 | #, c-format | 2354 | #, c-format |
2917 | msgid "%lu entries in SAP table" | 2355 | msgid "%lu entries in SAP table" |
2918 | msgstr "" | 2356 | msgstr "" |
2919 | 2357 | ||
2920 | #: plugins/check_nwstat.c:636 | ||
2921 | #, c-format | 2358 | #, c-format |
2922 | msgid "%lu entries in SAP table for SAP type %d" | 2359 | msgid "%lu entries in SAP table for SAP type %d" |
2923 | msgstr "" | 2360 | msgstr "" |
2924 | 2361 | ||
2925 | #: plugins/check_nwstat.c:658 | ||
2926 | #, c-format | 2362 | #, c-format |
2927 | msgid "%s%lu KB purgeable on volume %s|Purge%s=%lu;%lu;%lu;;" | 2363 | msgid "%s%lu KB purgeable on volume %s|Purge%s=%lu;%lu;%lu;;" |
2928 | msgstr "" | 2364 | msgstr "" |
2929 | 2365 | ||
2930 | #: plugins/check_nwstat.c:684 | ||
2931 | #, c-format | 2366 | #, c-format |
2932 | msgid "%s%lu MB purgeable on volume %s|Purge%s=%lu;%lu;%lu;;" | 2367 | msgid "%s%lu MB purgeable on volume %s|Purge%s=%lu;%lu;%lu;;" |
2933 | msgstr "" | 2368 | msgstr "" |
2934 | 2369 | ||
2935 | #: plugins/check_nwstat.c:730 | ||
2936 | #, c-format | 2370 | #, c-format |
2937 | msgid "%lu MB (%lu%%) purgeable on volume %s|Purgeable%s=%lu;%lu;%lu;0;100" | 2371 | msgid "%lu MB (%lu%%) purgeable on volume %s|Purgeable%s=%lu;%lu;%lu;0;100" |
2938 | msgstr "" | 2372 | msgstr "" |
2939 | 2373 | ||
2940 | #: plugins/check_nwstat.c:761 | ||
2941 | #, c-format | 2374 | #, c-format |
2942 | msgid "%s%lu KB not yet purgeable on volume %s" | 2375 | msgid "%s%lu KB not yet purgeable on volume %s" |
2943 | msgstr "" | 2376 | msgstr "" |
2944 | 2377 | ||
2945 | #: plugins/check_nwstat.c:800 | ||
2946 | #, c-format | 2378 | #, c-format |
2947 | msgid "%lu MB (%lu%%) not yet purgeable on volume %s" | 2379 | msgid "%lu MB (%lu%%) not yet purgeable on volume %s" |
2948 | msgstr "" | 2380 | msgstr "" |
2949 | 2381 | ||
2950 | #: plugins/check_nwstat.c:821 | ||
2951 | #, c-format | 2382 | #, c-format |
2952 | msgid "%lu open files|Openfiles=%lu;%lu;%lu;0,0" | 2383 | msgid "%lu open files|Openfiles=%lu;%lu;%lu;0,0" |
2953 | msgstr "" | 2384 | msgstr "" |
2954 | 2385 | ||
2955 | #: plugins/check_nwstat.c:846 | ||
2956 | #, c-format | 2386 | #, c-format |
2957 | msgid "%lu abended threads|Abends=%lu;%lu;%lu;;" | 2387 | msgid "%lu abended threads|Abends=%lu;%lu;%lu;;" |
2958 | msgstr "" | 2388 | msgstr "" |
2959 | 2389 | ||
2960 | #: plugins/check_nwstat.c:881 | ||
2961 | #, c-format | 2390 | #, c-format |
2962 | msgid "%lu current service processes (%lu max)|Processes=%lu;%lu;%lu;0;%lu" | 2391 | msgid "%lu current service processes (%lu max)|Processes=%lu;%lu;%lu;0;%lu" |
2963 | msgstr "" | 2392 | msgstr "" |
2964 | 2393 | ||
2965 | #: plugins/check_nwstat.c:904 | ||
2966 | msgid "CRITICAL - Time not in sync with network!" | 2394 | msgid "CRITICAL - Time not in sync with network!" |
2967 | msgstr "" | 2395 | msgstr "" |
2968 | 2396 | ||
2969 | #: plugins/check_nwstat.c:907 | ||
2970 | msgid "OK - Time in sync with network!" | 2397 | msgid "OK - Time in sync with network!" |
2971 | msgstr "" | 2398 | msgstr "" |
2972 | 2399 | ||
2973 | #: plugins/check_nwstat.c:930 | ||
2974 | #, c-format | 2400 | #, c-format |
2975 | msgid "LRU sitting time = %lu seconds" | 2401 | msgid "LRU sitting time = %lu seconds" |
2976 | msgstr "" | 2402 | msgstr "" |
2977 | 2403 | ||
2978 | #: plugins/check_nwstat.c:949 | ||
2979 | #, c-format | 2404 | #, c-format |
2980 | msgid "Dirty cache buffers = %lu%% of the total|DCB=%lu;%lu;%lu;0;100" | 2405 | msgid "Dirty cache buffers = %lu%% of the total|DCB=%lu;%lu;%lu;0;100" |
2981 | msgstr "" | 2406 | msgstr "" |
2982 | 2407 | ||
2983 | #: plugins/check_nwstat.c:971 | ||
2984 | #, c-format | 2408 | #, c-format |
2985 | msgid "Total cache buffers = %lu%% of the original|TCB=%lu;%lu;%lu;0;100" | 2409 | msgid "Total cache buffers = %lu%% of the original|TCB=%lu;%lu;%lu;0;100" |
2986 | msgstr "" | 2410 | msgstr "" |
2987 | 2411 | ||
2988 | #: plugins/check_nwstat.c:989 | ||
2989 | #, c-format | 2412 | #, c-format |
2990 | msgid "NDS Version %s" | 2413 | msgid "NDS Version %s" |
2991 | msgstr "" | 2414 | msgstr "" |
2992 | 2415 | ||
2993 | #: plugins/check_nwstat.c:1005 | ||
2994 | #, c-format | 2416 | #, c-format |
2995 | msgid "Up %s" | 2417 | msgid "Up %s" |
2996 | msgstr "" | 2418 | msgstr "" |
2997 | 2419 | ||
2998 | #: plugins/check_nwstat.c:1019 | ||
2999 | #, c-format | 2420 | #, c-format |
3000 | msgid "Module %s version %s is loaded" | 2421 | msgid "Module %s version %s is loaded" |
3001 | msgstr "" | 2422 | msgstr "" |
3002 | 2423 | ||
3003 | #: plugins/check_nwstat.c:1022 | ||
3004 | #, c-format | 2424 | #, c-format |
3005 | msgid "Module %s is not loaded" | 2425 | msgid "Module %s is not loaded" |
3006 | msgstr "" | 2426 | msgstr "" |
3007 | 2427 | ||
3008 | #: plugins/check_nwstat.c:1033 plugins/check_nwstat.c:1059 | ||
3009 | #: plugins/check_nwstat.c:1085 plugins/check_nwstat.c:1111 | ||
3010 | #: plugins/check_nwstat.c:1137 plugins/check_nwstat.c:1163 | ||
3011 | #: plugins/check_nwstat.c:1189 plugins/check_nwstat.c:1215 | ||
3012 | #: plugins/check_nwstat.c:1241 plugins/check_nwstat.c:1267 | ||
3013 | #, c-format | 2428 | #, c-format |
3014 | msgid "CRITICAL - Value '%s' does not exist!" | 2429 | msgid "CRITICAL - Value '%s' does not exist!" |
3015 | msgstr "" | 2430 | msgstr "" |
3016 | 2431 | ||
3017 | #: plugins/check_nwstat.c:1042 plugins/check_nwstat.c:1068 | ||
3018 | #: plugins/check_nwstat.c:1094 plugins/check_nwstat.c:1120 | ||
3019 | #: plugins/check_nwstat.c:1146 plugins/check_nwstat.c:1172 | ||
3020 | #: plugins/check_nwstat.c:1198 plugins/check_nwstat.c:1224 | ||
3021 | #: plugins/check_nwstat.c:1250 plugins/check_nwstat.c:1276 | ||
3022 | #, c-format | 2432 | #, c-format |
3023 | msgid "%s is %lu|%s=%lu;%lu;%lu;;" | 2433 | msgid "%s is %lu|%s=%lu;%lu;%lu;;" |
3024 | msgstr "" | 2434 | msgstr "" |
3025 | 2435 | ||
3026 | #: plugins/check_nwstat.c:1289 plugins/check_overcr.c:285 | ||
3027 | msgid "Nothing to check!\n" | 2436 | msgid "Nothing to check!\n" |
3028 | msgstr "" | 2437 | msgstr "" |
3029 | 2438 | ||
3030 | #: plugins/check_nwstat.c:1371 plugins/check_overcr.c:355 | ||
3031 | msgid "Server port an integer\n" | 2439 | msgid "Server port an integer\n" |
3032 | msgstr "" | 2440 | msgstr "" |
3033 | 2441 | ||
3034 | #: plugins/check_nwstat.c:1601 | ||
3035 | msgid "This plugin attempts to contact the MRTGEXT NLM running on a" | 2442 | msgid "This plugin attempts to contact the MRTGEXT NLM running on a" |
3036 | msgstr "" | 2443 | msgstr "" |
3037 | 2444 | ||
3038 | #: plugins/check_nwstat.c:1602 | ||
3039 | msgid "Novell server to gather the requested system information." | 2445 | msgid "Novell server to gather the requested system information." |
3040 | msgstr "" | 2446 | msgstr "" |
3041 | 2447 | ||
3042 | #: plugins/check_nwstat.c:1614 plugins/check_overcr.c:436 | ||
3043 | msgid "Variable to check. Valid variables include:" | 2448 | msgid "Variable to check. Valid variables include:" |
3044 | msgstr "" | 2449 | msgstr "" |
3045 | 2450 | ||
3046 | #: plugins/check_nwstat.c:1615 | ||
3047 | msgid "LOAD1 = 1 minute average CPU load" | 2451 | msgid "LOAD1 = 1 minute average CPU load" |
3048 | msgstr "" | 2452 | msgstr "" |
3049 | 2453 | ||
3050 | #: plugins/check_nwstat.c:1616 | ||
3051 | msgid "LOAD5 = 5 minute average CPU load" | 2454 | msgid "LOAD5 = 5 minute average CPU load" |
3052 | msgstr "" | 2455 | msgstr "" |
3053 | 2456 | ||
3054 | #: plugins/check_nwstat.c:1617 | ||
3055 | msgid "LOAD15 = 15 minute average CPU load" | 2457 | msgid "LOAD15 = 15 minute average CPU load" |
3056 | msgstr "" | 2458 | msgstr "" |
3057 | 2459 | ||
3058 | #: plugins/check_nwstat.c:1618 | ||
3059 | msgid "CSPROCS = number of current service processes (NW 5.x only)" | 2460 | msgid "CSPROCS = number of current service processes (NW 5.x only)" |
3060 | msgstr "" | 2461 | msgstr "" |
3061 | 2462 | ||
3062 | #: plugins/check_nwstat.c:1619 | ||
3063 | msgid "ABENDS = number of abended threads (NW 5.x only)" | 2463 | msgid "ABENDS = number of abended threads (NW 5.x only)" |
3064 | msgstr "" | 2464 | msgstr "" |
3065 | 2465 | ||
3066 | #: plugins/check_nwstat.c:1620 | ||
3067 | msgid "UPTIME = server uptime" | 2466 | msgid "UPTIME = server uptime" |
3068 | msgstr "" | 2467 | msgstr "" |
3069 | 2468 | ||
3070 | #: plugins/check_nwstat.c:1621 | ||
3071 | msgid "LTCH = percent long term cache hits" | 2469 | msgid "LTCH = percent long term cache hits" |
3072 | msgstr "" | 2470 | msgstr "" |
3073 | 2471 | ||
3074 | #: plugins/check_nwstat.c:1622 | ||
3075 | msgid "CBUFF = current number of cache buffers" | 2472 | msgid "CBUFF = current number of cache buffers" |
3076 | msgstr "" | 2473 | msgstr "" |
3077 | 2474 | ||
3078 | #: plugins/check_nwstat.c:1623 | ||
3079 | msgid "CDBUFF = current number of dirty cache buffers" | 2475 | msgid "CDBUFF = current number of dirty cache buffers" |
3080 | msgstr "" | 2476 | msgstr "" |
3081 | 2477 | ||
3082 | #: plugins/check_nwstat.c:1624 | ||
3083 | msgid "DCB = dirty cache buffers as a percentage of the total" | 2478 | msgid "DCB = dirty cache buffers as a percentage of the total" |
3084 | msgstr "" | 2479 | msgstr "" |
3085 | 2480 | ||
3086 | #: plugins/check_nwstat.c:1625 | ||
3087 | msgid "TCB = dirty cache buffers as a percentage of the original" | 2481 | msgid "TCB = dirty cache buffers as a percentage of the original" |
3088 | msgstr "" | 2482 | msgstr "" |
3089 | 2483 | ||
3090 | #: plugins/check_nwstat.c:1626 | ||
3091 | msgid "OFILES = number of open files" | 2484 | msgid "OFILES = number of open files" |
3092 | msgstr "" | 2485 | msgstr "" |
3093 | 2486 | ||
3094 | #: plugins/check_nwstat.c:1627 | ||
3095 | msgid " VMF<vol> = MB of free space on Volume <vol>" | 2487 | msgid " VMF<vol> = MB of free space on Volume <vol>" |
3096 | msgstr "" | 2488 | msgstr "" |
3097 | 2489 | ||
3098 | #: plugins/check_nwstat.c:1628 | ||
3099 | msgid " VMU<vol> = MB used space on Volume <vol>" | 2490 | msgid " VMU<vol> = MB used space on Volume <vol>" |
3100 | msgstr "" | 2491 | msgstr "" |
3101 | 2492 | ||
3102 | #: plugins/check_nwstat.c:1629 | ||
3103 | msgid " VMP<vol> = MB of purgeable space on Volume <vol>" | 2493 | msgid " VMP<vol> = MB of purgeable space on Volume <vol>" |
3104 | msgstr "" | 2494 | msgstr "" |
3105 | 2495 | ||
3106 | #: plugins/check_nwstat.c:1630 | ||
3107 | msgid " VPF<vol> = percent free space on volume <vol>" | 2496 | msgid " VPF<vol> = percent free space on volume <vol>" |
3108 | msgstr "" | 2497 | msgstr "" |
3109 | 2498 | ||
3110 | #: plugins/check_nwstat.c:1631 | ||
3111 | msgid " VKF<vol> = KB of free space on volume <vol>" | 2499 | msgid " VKF<vol> = KB of free space on volume <vol>" |
3112 | msgstr "" | 2500 | msgstr "" |
3113 | 2501 | ||
3114 | #: plugins/check_nwstat.c:1632 | ||
3115 | msgid " VPP<vol> = percent purgeable space on volume <vol>" | 2502 | msgid " VPP<vol> = percent purgeable space on volume <vol>" |
3116 | msgstr "" | 2503 | msgstr "" |
3117 | 2504 | ||
3118 | #: plugins/check_nwstat.c:1633 | ||
3119 | msgid " VKP<vol> = KB of purgeable space on volume <vol>" | 2505 | msgid " VKP<vol> = KB of purgeable space on volume <vol>" |
3120 | msgstr "" | 2506 | msgstr "" |
3121 | 2507 | ||
3122 | #: plugins/check_nwstat.c:1634 | ||
3123 | msgid " VPNP<vol> = percent not yet purgeable space on volume <vol>" | 2508 | msgid " VPNP<vol> = percent not yet purgeable space on volume <vol>" |
3124 | msgstr "" | 2509 | msgstr "" |
3125 | 2510 | ||
3126 | #: plugins/check_nwstat.c:1635 | ||
3127 | msgid " VKNP<vol> = KB of not yet purgeable space on volume <vol>" | 2511 | msgid " VKNP<vol> = KB of not yet purgeable space on volume <vol>" |
3128 | msgstr "" | 2512 | msgstr "" |
3129 | 2513 | ||
3130 | #: plugins/check_nwstat.c:1636 | ||
3131 | msgid " LRUM = LRU sitting time in minutes" | 2514 | msgid " LRUM = LRU sitting time in minutes" |
3132 | msgstr "" | 2515 | msgstr "" |
3133 | 2516 | ||
3134 | #: plugins/check_nwstat.c:1637 | ||
3135 | msgid " LRUS = LRU sitting time in seconds" | 2517 | msgid " LRUS = LRU sitting time in seconds" |
3136 | msgstr "" | 2518 | msgstr "" |
3137 | 2519 | ||
3138 | #: plugins/check_nwstat.c:1638 | ||
3139 | msgid " DSDB = check to see if DS Database is open" | 2520 | msgid " DSDB = check to see if DS Database is open" |
3140 | msgstr "" | 2521 | msgstr "" |
3141 | 2522 | ||
3142 | #: plugins/check_nwstat.c:1639 | ||
3143 | msgid " DSVER = NDS version" | 2523 | msgid " DSVER = NDS version" |
3144 | msgstr "" | 2524 | msgstr "" |
3145 | 2525 | ||
3146 | #: plugins/check_nwstat.c:1640 | ||
3147 | msgid " UPRB = used packet receive buffers" | 2526 | msgid " UPRB = used packet receive buffers" |
3148 | msgstr "" | 2527 | msgstr "" |
3149 | 2528 | ||
3150 | #: plugins/check_nwstat.c:1641 | ||
3151 | msgid " PUPRB = percent (of max) used packet receive buffers" | 2529 | msgid " PUPRB = percent (of max) used packet receive buffers" |
3152 | msgstr "" | 2530 | msgstr "" |
3153 | 2531 | ||
3154 | #: plugins/check_nwstat.c:1642 | ||
3155 | msgid " SAPENTRIES = number of entries in the SAP table" | 2532 | msgid " SAPENTRIES = number of entries in the SAP table" |
3156 | msgstr "" | 2533 | msgstr "" |
3157 | 2534 | ||
3158 | #: plugins/check_nwstat.c:1643 | ||
3159 | msgid " SAPENTRIES<n> = number of entries in the SAP table for SAP type <n>" | 2535 | msgid " SAPENTRIES<n> = number of entries in the SAP table for SAP type <n>" |
3160 | msgstr "" | 2536 | msgstr "" |
3161 | 2537 | ||
3162 | #: plugins/check_nwstat.c:1644 | ||
3163 | msgid " TSYNC = timesync status" | 2538 | msgid " TSYNC = timesync status" |
3164 | msgstr "" | 2539 | msgstr "" |
3165 | 2540 | ||
3166 | #: plugins/check_nwstat.c:1645 | ||
3167 | msgid " LOGINS = check to see if logins are enabled" | 2541 | msgid " LOGINS = check to see if logins are enabled" |
3168 | msgstr "" | 2542 | msgstr "" |
3169 | 2543 | ||
3170 | #: plugins/check_nwstat.c:1646 | ||
3171 | msgid " CONNS = number of currently licensed connections" | 2544 | msgid " CONNS = number of currently licensed connections" |
3172 | msgstr "" | 2545 | msgstr "" |
3173 | 2546 | ||
3174 | #: plugins/check_nwstat.c:1647 | ||
3175 | msgid " NRMH\t= NRM Summary Status" | 2547 | msgid " NRMH\t= NRM Summary Status" |
3176 | msgstr "" | 2548 | msgstr "" |
3177 | 2549 | ||
3178 | #: plugins/check_nwstat.c:1648 | ||
3179 | msgid " NRMP<stat> = Returns the current value for a NRM health item" | 2550 | msgid " NRMP<stat> = Returns the current value for a NRM health item" |
3180 | msgstr "" | 2551 | msgstr "" |
3181 | 2552 | ||
3182 | #: plugins/check_nwstat.c:1649 | ||
3183 | msgid " NRMM<stat> = Returns the current memory stats from NRM" | 2553 | msgid " NRMM<stat> = Returns the current memory stats from NRM" |
3184 | msgstr "" | 2554 | msgstr "" |
3185 | 2555 | ||
3186 | #: plugins/check_nwstat.c:1650 | ||
3187 | msgid " NRMS<stat> = Returns the current Swapfile stats from NRM" | 2556 | msgid " NRMS<stat> = Returns the current Swapfile stats from NRM" |
3188 | msgstr "" | 2557 | msgstr "" |
3189 | 2558 | ||
3190 | #: plugins/check_nwstat.c:1651 | ||
3191 | msgid " NSS1<stat> = Statistics from _Admin:Manage_NSS\\GeneralStats.xml" | 2559 | msgid " NSS1<stat> = Statistics from _Admin:Manage_NSS\\GeneralStats.xml" |
3192 | msgstr "" | 2560 | msgstr "" |
3193 | 2561 | ||
3194 | #: plugins/check_nwstat.c:1652 | ||
3195 | msgid " NSS3<stat> = Statistics from _Admin:Manage_NSS\\NameCache.xml" | 2562 | msgid " NSS3<stat> = Statistics from _Admin:Manage_NSS\\NameCache.xml" |
3196 | msgstr "" | 2563 | msgstr "" |
3197 | 2564 | ||
3198 | #: plugins/check_nwstat.c:1653 | ||
3199 | msgid " NSS4<stat> = Statistics from _Admin:Manage_NSS\\FileStats.xml" | 2565 | msgid " NSS4<stat> = Statistics from _Admin:Manage_NSS\\FileStats.xml" |
3200 | msgstr "" | 2566 | msgstr "" |
3201 | 2567 | ||
3202 | #: plugins/check_nwstat.c:1654 | ||
3203 | msgid " NSS5<stat> = Statistics from _Admin:Manage_NSS\\ObjectCache.xml" | 2568 | msgid " NSS5<stat> = Statistics from _Admin:Manage_NSS\\ObjectCache.xml" |
3204 | msgstr "" | 2569 | msgstr "" |
3205 | 2570 | ||
3206 | #: plugins/check_nwstat.c:1655 | ||
3207 | msgid " NSS6<stat> = Statistics from _Admin:Manage_NSS\\Thread.xml" | 2571 | msgid " NSS6<stat> = Statistics from _Admin:Manage_NSS\\Thread.xml" |
3208 | msgstr "" | 2572 | msgstr "" |
3209 | 2573 | ||
3210 | #: plugins/check_nwstat.c:1656 | ||
3211 | msgid "" | 2574 | msgid "" |
3212 | " NSS7<stat> = Statistics from _Admin:Manage_NSS\\AuthorizationCache.xml" | 2575 | " NSS7<stat> = Statistics from _Admin:Manage_NSS\\AuthorizationCache.xml" |
3213 | msgstr "" | 2576 | msgstr "" |
3214 | 2577 | ||
3215 | #: plugins/check_nwstat.c:1657 | ||
3216 | msgid " NLM:<nlm> = check if NLM is loaded and report version" | 2578 | msgid " NLM:<nlm> = check if NLM is loaded and report version" |
3217 | msgstr "" | 2579 | msgstr "" |
3218 | 2580 | ||
3219 | #: plugins/check_nwstat.c:1658 | ||
3220 | msgid " (e.g. NLM:TSANDS.NLM)" | 2581 | msgid " (e.g. NLM:TSANDS.NLM)" |
3221 | msgstr "" | 2582 | msgstr "" |
3222 | 2583 | ||
3223 | #: plugins/check_nwstat.c:1665 | ||
3224 | msgid "Include server version string in results" | 2584 | msgid "Include server version string in results" |
3225 | msgstr "" | 2585 | msgstr "" |
3226 | 2586 | ||
3227 | #: plugins/check_nwstat.c:1671 | 2587 | msgid "- This plugin requires that the MRTGEXT.NLM file from James Drews' MRTG" |
3228 | msgid "- This plugin requres that the MRTGEXT.NLM file from James Drews' MRTG" | ||
3229 | msgstr "" | 2588 | msgstr "" |
3230 | 2589 | ||
3231 | #: plugins/check_nwstat.c:1672 | ||
3232 | msgid "" | 2590 | msgid "" |
3233 | " extension for NetWare be loaded on the Novell servers you wish to check." | 2591 | " extension for NetWare be loaded on the Novell servers you wish to check." |
3234 | msgstr "" | 2592 | msgstr "" |
3235 | 2593 | ||
3236 | #: plugins/check_nwstat.c:1673 | ||
3237 | msgid " (available from http://www.engr.wisc.edu/~drews/mrtg/)" | 2594 | msgid " (available from http://www.engr.wisc.edu/~drews/mrtg/)" |
3238 | msgstr "" | 2595 | msgstr "" |
3239 | 2596 | ||
3240 | #: plugins/check_nwstat.c:1674 | ||
3241 | msgid "" | 2597 | msgid "" |
3242 | "- Values for critical thresholds should be lower than warning thresholds" | 2598 | "- Values for critical thresholds should be lower than warning thresholds" |
3243 | msgstr "" | 2599 | msgstr "" |
3244 | 2600 | ||
3245 | #: plugins/check_nwstat.c:1675 | ||
3246 | msgid "" | 2601 | msgid "" |
3247 | " when the following variables are checked: VPF, VKF, LTCH, CBUFF, DCB, " | 2602 | " when the following variables are checked: VPF, VKF, LTCH, CBUFF, DCB, " |
3248 | msgstr "" | 2603 | msgstr "" |
3249 | 2604 | ||
3250 | #: plugins/check_nwstat.c:1676 | ||
3251 | msgid " TCB, LRUS and LRUM." | 2605 | msgid " TCB, LRUS and LRUM." |
3252 | msgstr "" | 2606 | msgstr "" |
3253 | 2607 | ||
3254 | #: plugins/check_overcr.c:123 | ||
3255 | msgid "Unknown error fetching load data\n" | 2608 | msgid "Unknown error fetching load data\n" |
3256 | msgstr "" | 2609 | msgstr "" |
3257 | 2610 | ||
3258 | #: plugins/check_overcr.c:127 | ||
3259 | msgid "Invalid response from server - no load information\n" | 2611 | msgid "Invalid response from server - no load information\n" |
3260 | msgstr "" | 2612 | msgstr "" |
3261 | 2613 | ||
3262 | #: plugins/check_overcr.c:133 | ||
3263 | msgid "Invalid response from server after load 1\n" | 2614 | msgid "Invalid response from server after load 1\n" |
3264 | msgstr "" | 2615 | msgstr "" |
3265 | 2616 | ||
3266 | #: plugins/check_overcr.c:139 | ||
3267 | msgid "Invalid response from server after load 5\n" | 2617 | msgid "Invalid response from server after load 5\n" |
3268 | msgstr "" | 2618 | msgstr "" |
3269 | 2619 | ||
3270 | #: plugins/check_overcr.c:164 | ||
3271 | #, c-format | 2620 | #, c-format |
3272 | msgid "Load %s - %s-min load average = %0.2f" | 2621 | msgid "Load %s - %s-min load average = %0.2f" |
3273 | msgstr "" | 2622 | msgstr "" |
3274 | 2623 | ||
3275 | #: plugins/check_overcr.c:174 | ||
3276 | msgid "Unknown error fetching disk data\n" | 2624 | msgid "Unknown error fetching disk data\n" |
3277 | msgstr "" | 2625 | msgstr "" |
3278 | 2626 | ||
3279 | #: plugins/check_overcr.c:184 plugins/check_overcr.c:236 | ||
3280 | #: plugins/check_overcr.c:240 | ||
3281 | msgid "Invalid response from server\n" | 2627 | msgid "Invalid response from server\n" |
3282 | msgstr "" | 2628 | msgstr "" |
3283 | 2629 | ||
3284 | #: plugins/check_overcr.c:211 | ||
3285 | msgid "Unknown error fetching network status\n" | 2630 | msgid "Unknown error fetching network status\n" |
3286 | msgstr "" | 2631 | msgstr "" |
3287 | 2632 | ||
3288 | #: plugins/check_overcr.c:221 | ||
3289 | #, c-format | 2633 | #, c-format |
3290 | msgid "Net %s - %d connection%s on port %d" | 2634 | msgid "Net %s - %d connection%s on port %d" |
3291 | msgstr "" | 2635 | msgstr "" |
3292 | 2636 | ||
3293 | #: plugins/check_overcr.c:232 | ||
3294 | msgid "Unknown error fetching process status\n" | 2637 | msgid "Unknown error fetching process status\n" |
3295 | msgstr "" | 2638 | msgstr "" |
3296 | 2639 | ||
3297 | #: plugins/check_overcr.c:250 | ||
3298 | #, c-format | 2640 | #, c-format |
3299 | msgid "Process %s - %d instance%s of %s running" | 2641 | msgid "Process %s - %d instance%s of %s running" |
3300 | msgstr "" | 2642 | msgstr "" |
3301 | 2643 | ||
3302 | #: plugins/check_overcr.c:277 | ||
3303 | #, c-format | 2644 | #, c-format |
3304 | msgid "Uptime %s - Up %d days %d hours %d minutes" | 2645 | msgid "Uptime %s - Up %d days %d hours %d minutes" |
3305 | msgstr "" | 2646 | msgstr "" |
3306 | 2647 | ||
3307 | #: plugins/check_overcr.c:419 | ||
3308 | msgid "" | 2648 | msgid "" |
3309 | "This plugin attempts to contact the Over-CR collector daemon running on the" | 2649 | "This plugin attempts to contact the Over-CR collector daemon running on the" |
3310 | msgstr "" | 2650 | msgstr "" |
3311 | 2651 | ||
3312 | #: plugins/check_overcr.c:420 | ||
3313 | msgid "remote UNIX server in order to gather the requested system information." | 2652 | msgid "remote UNIX server in order to gather the requested system information." |
3314 | msgstr "" | 2653 | msgstr "" |
3315 | 2654 | ||
3316 | #: plugins/check_overcr.c:437 | ||
3317 | msgid "LOAD1 = 1 minute average CPU load" | 2655 | msgid "LOAD1 = 1 minute average CPU load" |
3318 | msgstr "" | 2656 | msgstr "" |
3319 | 2657 | ||
3320 | #: plugins/check_overcr.c:438 | ||
3321 | msgid "LOAD5 = 5 minute average CPU load" | 2658 | msgid "LOAD5 = 5 minute average CPU load" |
3322 | msgstr "" | 2659 | msgstr "" |
3323 | 2660 | ||
3324 | #: plugins/check_overcr.c:439 | ||
3325 | msgid "LOAD15 = 15 minute average CPU load" | 2661 | msgid "LOAD15 = 15 minute average CPU load" |
3326 | msgstr "" | 2662 | msgstr "" |
3327 | 2663 | ||
3328 | #: plugins/check_overcr.c:440 | ||
3329 | msgid "DPU<filesys> = percent used disk space on filesystem <filesys>" | 2664 | msgid "DPU<filesys> = percent used disk space on filesystem <filesys>" |
3330 | msgstr "" | 2665 | msgstr "" |
3331 | 2666 | ||
3332 | #: plugins/check_overcr.c:441 | ||
3333 | msgid "PROC<process> = number of running processes with name <process>" | 2667 | msgid "PROC<process> = number of running processes with name <process>" |
3334 | msgstr "" | 2668 | msgstr "" |
3335 | 2669 | ||
3336 | #: plugins/check_overcr.c:442 | ||
3337 | msgid "NET<port> = number of active connections on TCP port <port>" | 2670 | msgid "NET<port> = number of active connections on TCP port <port>" |
3338 | msgstr "" | 2671 | msgstr "" |
3339 | 2672 | ||
3340 | #: plugins/check_overcr.c:443 | ||
3341 | msgid "UPTIME = system uptime in seconds" | 2673 | msgid "UPTIME = system uptime in seconds" |
3342 | msgstr "" | 2674 | msgstr "" |
3343 | 2675 | ||
3344 | #: plugins/check_overcr.c:450 | ||
3345 | msgid "This plugin requires that Eric Molitors' Over-CR collector daemon be" | 2676 | msgid "This plugin requires that Eric Molitors' Over-CR collector daemon be" |
3346 | msgstr "" | 2677 | msgstr "" |
3347 | 2678 | ||
3348 | #: plugins/check_overcr.c:451 | ||
3349 | msgid "running on the remote server." | 2679 | msgid "running on the remote server." |
3350 | msgstr "" | 2680 | msgstr "" |
3351 | 2681 | ||
3352 | #: plugins/check_overcr.c:452 | ||
3353 | msgid "Over-CR can be downloaded from http://www.molitor.org/overcr" | 2682 | msgid "Over-CR can be downloaded from http://www.molitor.org/overcr" |
3354 | msgstr "" | 2683 | msgstr "" |
3355 | 2684 | ||
3356 | #: plugins/check_overcr.c:453 | ||
3357 | msgid "This plugin was tested with version 0.99.53 of the Over-CR collector" | 2685 | msgid "This plugin was tested with version 0.99.53 of the Over-CR collector" |
3358 | msgstr "" | 2686 | msgstr "" |
3359 | 2687 | ||
3360 | #: plugins/check_overcr.c:457 | ||
3361 | msgid "" | 2688 | msgid "" |
3362 | "For the available options, the critical threshold value should always be" | 2689 | "For the available options, the critical threshold value should always be" |
3363 | msgstr "" | 2690 | msgstr "" |
3364 | 2691 | ||
3365 | #: plugins/check_overcr.c:458 | ||
3366 | msgid "" | 2692 | msgid "" |
3367 | "higher than the warning threshold value, EXCEPT with the uptime variable" | 2693 | "higher than the warning threshold value, EXCEPT with the uptime variable" |
3368 | msgstr "" | 2694 | msgstr "" |
3369 | 2695 | ||
3370 | #: plugins/check_pgsql.c:222 | ||
3371 | #, c-format | 2696 | #, c-format |
3372 | msgid "CRITICAL - no connection to '%s' (%s).\n" | 2697 | msgid "CRITICAL - no connection to '%s' (%s).\n" |
3373 | msgstr "" | 2698 | msgstr "" |
3374 | 2699 | ||
3375 | #: plugins/check_pgsql.c:250 | ||
3376 | #, c-format | 2700 | #, c-format |
3377 | msgid " %s - database %s (%f sec.)|%s\n" | 2701 | msgid " %s - database %s (%f sec.)|%s\n" |
3378 | msgstr "" | 2702 | msgstr "" |
3379 | 2703 | ||
3380 | #: plugins/check_pgsql.c:317 plugins/check_time.c:277 plugins/check_time.c:289 | ||
3381 | #: plugins/check_users.c:181 | ||
3382 | msgid "Critical threshold must be a positive integer" | 2704 | msgid "Critical threshold must be a positive integer" |
3383 | msgstr "" | 2705 | msgstr "" |
3384 | 2706 | ||
3385 | #: plugins/check_pgsql.c:323 plugins/check_time.c:258 plugins/check_time.c:282 | ||
3386 | #: plugins/check_users.c:187 plugins/check_users.c:197 | ||
3387 | #: plugins/check_users.c:203 | ||
3388 | msgid "Warning threshold must be a positive integer" | 2707 | msgid "Warning threshold must be a positive integer" |
3389 | msgstr "" | 2708 | msgstr "" |
3390 | 2709 | ||
3391 | #: plugins/check_pgsql.c:347 | 2710 | msgid "Database name exceeds the maximum length" |
3392 | msgid "Database name is not valid" | ||
3393 | msgstr "" | 2711 | msgstr "" |
3394 | 2712 | ||
3395 | #: plugins/check_pgsql.c:353 | ||
3396 | msgid "User name is not valid" | 2713 | msgid "User name is not valid" |
3397 | msgstr "" | 2714 | msgstr "" |
3398 | 2715 | ||
3399 | #: plugins/check_pgsql.c:504 | ||
3400 | #, c-format | 2716 | #, c-format |
3401 | msgid "Test whether a PostgreSQL Database is accepting connections." | 2717 | msgid "Test whether a PostgreSQL Database is accepting connections." |
3402 | msgstr "" | 2718 | msgstr "" |
3403 | 2719 | ||
3404 | #: plugins/check_pgsql.c:516 | ||
3405 | msgid "Database to check " | 2720 | msgid "Database to check " |
3406 | msgstr "" | 2721 | msgstr "" |
3407 | 2722 | ||
3408 | #: plugins/check_pgsql.c:517 | ||
3409 | #, c-format | 2723 | #, c-format |
3410 | msgid "(default: %s)" | 2724 | msgid "(default: %s)\n" |
3411 | msgstr "" | 2725 | msgstr "" |
3412 | 2726 | ||
3413 | #: plugins/check_pgsql.c:519 | ||
3414 | msgid "Login name of user" | 2727 | msgid "Login name of user" |
3415 | msgstr "" | 2728 | msgstr "" |
3416 | 2729 | ||
3417 | #: plugins/check_pgsql.c:521 | ||
3418 | msgid "Password (BIG SECURITY ISSUE)" | 2730 | msgid "Password (BIG SECURITY ISSUE)" |
3419 | msgstr "" | 2731 | msgstr "" |
3420 | 2732 | ||
3421 | #: plugins/check_pgsql.c:523 | ||
3422 | msgid "Connection parameters (keyword = value), see below" | 2733 | msgid "Connection parameters (keyword = value), see below" |
3423 | msgstr "" | 2734 | msgstr "" |
3424 | 2735 | ||
3425 | #: plugins/check_pgsql.c:530 | ||
3426 | msgid "SQL query to run. Only first column in first row will be read" | 2736 | msgid "SQL query to run. Only first column in first row will be read" |
3427 | msgstr "" | 2737 | msgstr "" |
3428 | 2738 | ||
3429 | #: plugins/check_pgsql.c:532 | 2739 | msgid "A name for the query, this string is used instead of the query" |
2740 | msgstr "" | ||
2741 | |||
2742 | msgid "in the long output of the plugin" | ||
2743 | msgstr "" | ||
2744 | |||
3430 | msgid "SQL query value to result in warning status (double)" | 2745 | msgid "SQL query value to result in warning status (double)" |
3431 | msgstr "" | 2746 | msgstr "" |
3432 | 2747 | ||
3433 | #: plugins/check_pgsql.c:534 | ||
3434 | msgid "SQL query value to result in critical status (double)" | 2748 | msgid "SQL query value to result in critical status (double)" |
3435 | msgstr "" | 2749 | msgstr "" |
3436 | 2750 | ||
3437 | #: plugins/check_pgsql.c:539 | ||
3438 | msgid "All parameters are optional." | 2751 | msgid "All parameters are optional." |
3439 | msgstr "" | 2752 | msgstr "" |
3440 | 2753 | ||
3441 | #: plugins/check_pgsql.c:540 | ||
3442 | msgid "" | 2754 | msgid "" |
3443 | "This plugin tests a PostgreSQL DBMS to determine whether it is active and" | 2755 | "This plugin tests a PostgreSQL DBMS to determine whether it is active and" |
3444 | msgstr "" | 2756 | msgstr "" |
3445 | 2757 | ||
3446 | #: plugins/check_pgsql.c:541 | ||
3447 | msgid "accepting queries. In its current operation, it simply connects to the" | 2758 | msgid "accepting queries. In its current operation, it simply connects to the" |
3448 | msgstr "" | 2759 | msgstr "" |
3449 | 2760 | ||
3450 | #: plugins/check_pgsql.c:542 | ||
3451 | msgid "" | 2761 | msgid "" |
3452 | "specified database, and then disconnects. If no database is specified, it" | 2762 | "specified database, and then disconnects. If no database is specified, it" |
3453 | msgstr "" | 2763 | msgstr "" |
3454 | 2764 | ||
3455 | #: plugins/check_pgsql.c:543 | ||
3456 | msgid "" | 2765 | msgid "" |
3457 | "connects to the template1 database, which is present in every functioning" | 2766 | "connects to the template1 database, which is present in every functioning" |
3458 | msgstr "" | 2767 | msgstr "" |
3459 | 2768 | ||
3460 | #: plugins/check_pgsql.c:544 | ||
3461 | msgid "PostgreSQL DBMS." | 2769 | msgid "PostgreSQL DBMS." |
3462 | msgstr "" | 2770 | msgstr "" |
3463 | 2771 | ||
3464 | #: plugins/check_pgsql.c:546 | ||
3465 | msgid "If a query is specified using the -q option, it will be executed after" | 2772 | msgid "If a query is specified using the -q option, it will be executed after" |
3466 | msgstr "" | 2773 | msgstr "" |
3467 | 2774 | ||
3468 | #: plugins/check_pgsql.c:547 | ||
3469 | msgid "connecting to the server. The result from the query has to be numeric." | 2775 | msgid "connecting to the server. The result from the query has to be numeric." |
3470 | msgstr "" | 2776 | msgstr "" |
3471 | 2777 | ||
3472 | #: plugins/check_pgsql.c:548 | ||
3473 | msgid "" | 2778 | msgid "" |
3474 | "Multiple SQL commands, separated by semicolon, are allowed but the result " | 2779 | "Multiple SQL commands, separated by semicolon, are allowed but the result " |
3475 | msgstr "" | 2780 | msgstr "" |
3476 | 2781 | ||
3477 | #: plugins/check_pgsql.c:549 | ||
3478 | msgid "of the last command is taken into account only. The value of the first" | 2782 | msgid "of the last command is taken into account only. The value of the first" |
3479 | msgstr "" | 2783 | msgstr "" |
3480 | 2784 | ||
3481 | #: plugins/check_pgsql.c:550 | 2785 | msgid "" |
3482 | msgid "column in the first row is used as the check result." | 2786 | "column in the first row is used as the check result. If a second column is" |
2787 | msgstr "" | ||
2788 | |||
2789 | msgid "present in the result set, this is added to the plugin output with a" | ||
2790 | msgstr "" | ||
2791 | |||
2792 | msgid "" | ||
2793 | "prefix of \"Extra Info:\". This information can be displayed in the system" | ||
2794 | msgstr "" | ||
2795 | |||
2796 | msgid "executing the plugin." | ||
3483 | msgstr "" | 2797 | msgstr "" |
3484 | 2798 | ||
3485 | #: plugins/check_pgsql.c:552 | ||
3486 | msgid "" | 2799 | msgid "" |
3487 | "See the chapter \"Monitoring Database Activity\" of the PostgreSQL manual" | 2800 | "See the chapter \"Monitoring Database Activity\" of the PostgreSQL manual" |
3488 | msgstr "" | 2801 | msgstr "" |
3489 | 2802 | ||
3490 | #: plugins/check_pgsql.c:553 | ||
3491 | msgid "" | 2803 | msgid "" |
3492 | "for details about how to access internal statistics of the database server." | 2804 | "for details about how to access internal statistics of the database server." |
3493 | msgstr "" | 2805 | msgstr "" |
3494 | 2806 | ||
3495 | #: plugins/check_pgsql.c:555 | ||
3496 | msgid "" | 2807 | msgid "" |
3497 | "For a list of available connection parameters which may be used with the -o" | 2808 | "For a list of available connection parameters which may be used with the -o" |
3498 | msgstr "" | 2809 | msgstr "" |
3499 | 2810 | ||
3500 | #: plugins/check_pgsql.c:556 | ||
3501 | msgid "" | 2811 | msgid "" |
3502 | "command line option, see the documentation for PQconnectdb() in the chapter" | 2812 | "command line option, see the documentation for PQconnectdb() in the chapter" |
3503 | msgstr "" | 2813 | msgstr "" |
3504 | 2814 | ||
3505 | #: plugins/check_pgsql.c:557 | ||
3506 | msgid "" | 2815 | msgid "" |
3507 | "\"libpq - C Library\" of the PostgreSQL manual. For example, this may be" | 2816 | "\"libpq - C Library\" of the PostgreSQL manual. For example, this may be" |
3508 | msgstr "" | 2817 | msgstr "" |
3509 | 2818 | ||
3510 | #: plugins/check_pgsql.c:558 | ||
3511 | msgid "" | 2819 | msgid "" |
3512 | "used to specify a service name in pg_service.conf to be used for additional" | 2820 | "used to specify a service name in pg_service.conf to be used for additional" |
3513 | msgstr "" | 2821 | msgstr "" |
3514 | 2822 | ||
3515 | #: plugins/check_pgsql.c:559 | ||
3516 | msgid "connection parameters: -o 'service=<name>' or to specify the SSL mode:" | 2823 | msgid "connection parameters: -o 'service=<name>' or to specify the SSL mode:" |
3517 | msgstr "" | 2824 | msgstr "" |
3518 | 2825 | ||
3519 | #: plugins/check_pgsql.c:560 | ||
3520 | msgid "-o 'sslmode=require'." | 2826 | msgid "-o 'sslmode=require'." |
3521 | msgstr "" | 2827 | msgstr "" |
3522 | 2828 | ||
3523 | #: plugins/check_pgsql.c:562 | ||
3524 | msgid "" | 2829 | msgid "" |
3525 | "The plugin will connect to a local postmaster if no host is specified. To" | 2830 | "The plugin will connect to a local postmaster if no host is specified. To" |
3526 | msgstr "" | 2831 | msgstr "" |
3527 | 2832 | ||
3528 | #: plugins/check_pgsql.c:563 | ||
3529 | msgid "" | 2833 | msgid "" |
3530 | "connect to a remote host, be sure that the remote postmaster accepts TCP/IP" | 2834 | "connect to a remote host, be sure that the remote postmaster accepts TCP/IP" |
3531 | msgstr "" | 2835 | msgstr "" |
3532 | 2836 | ||
3533 | #: plugins/check_pgsql.c:564 | ||
3534 | msgid "connections (start the postmaster with the -i option)." | 2837 | msgid "connections (start the postmaster with the -i option)." |
3535 | msgstr "" | 2838 | msgstr "" |
3536 | 2839 | ||
3537 | #: plugins/check_pgsql.c:566 | ||
3538 | msgid "" | 2840 | msgid "" |
3539 | "Typically, the monitoring user (unless the --logname option is used) should " | 2841 | "Typically, the monitoring user (unless the --logname option is used) should " |
3540 | "be" | 2842 | "be" |
3541 | msgstr "" | 2843 | msgstr "" |
3542 | 2844 | ||
3543 | #: plugins/check_pgsql.c:567 | ||
3544 | msgid "" | 2845 | msgid "" |
3545 | "able to connect to the database without a password. The plugin can also send" | 2846 | "able to connect to the database without a password. The plugin can also send" |
3546 | msgstr "" | 2847 | msgstr "" |
3547 | 2848 | ||
3548 | #: plugins/check_pgsql.c:568 | ||
3549 | msgid "a password, but no effort is made to obscure or encrypt the password." | 2849 | msgid "a password, but no effort is made to obscure or encrypt the password." |
3550 | msgstr "" | 2850 | msgstr "" |
3551 | 2851 | ||
3552 | #: plugins/check_pgsql.c:601 | ||
3553 | #, c-format | 2852 | #, c-format |
3554 | msgid "QUERY %s - %s: %s.\n" | 2853 | msgid "QUERY %s - %s: %s.\n" |
3555 | msgstr "" | 2854 | msgstr "" |
3556 | 2855 | ||
3557 | #: plugins/check_pgsql.c:601 | ||
3558 | msgid "Error with query" | 2856 | msgid "Error with query" |
3559 | msgstr "" | 2857 | msgstr "" |
3560 | 2858 | ||
3561 | #: plugins/check_pgsql.c:607 | ||
3562 | msgid "No rows returned" | 2859 | msgid "No rows returned" |
3563 | msgstr "" | 2860 | msgstr "" |
3564 | 2861 | ||
3565 | #: plugins/check_pgsql.c:612 | ||
3566 | msgid "No columns returned" | 2862 | msgid "No columns returned" |
3567 | msgstr "" | 2863 | msgstr "" |
3568 | 2864 | ||
3569 | #: plugins/check_pgsql.c:618 | ||
3570 | msgid "No data returned" | 2865 | msgid "No data returned" |
3571 | msgstr "" | 2866 | msgstr "" |
3572 | 2867 | ||
3573 | #: plugins/check_pgsql.c:627 | ||
3574 | msgid "Is not a numeric" | 2868 | msgid "Is not a numeric" |
3575 | msgstr "" | 2869 | msgstr "" |
3576 | 2870 | ||
3577 | #: plugins/check_pgsql.c:644 | 2871 | #, c-format |
2872 | msgid "%s returned %f" | ||
2873 | msgstr "" | ||
2874 | |||
3578 | #, c-format | 2875 | #, c-format |
3579 | msgid "'%s' returned %f" | 2876 | msgid "'%s' returned %f" |
3580 | msgstr "" | 2877 | msgstr "" |
3581 | 2878 | ||
3582 | #: plugins/check_ping.c:141 | ||
3583 | msgid "CRITICAL - Could not interpret output from ping command\n" | 2879 | msgid "CRITICAL - Could not interpret output from ping command\n" |
3584 | msgstr "" | 2880 | msgstr "" |
3585 | 2881 | ||
3586 | #: plugins/check_ping.c:157 | ||
3587 | #, c-format | 2882 | #, c-format |
3588 | msgid "PING %s - %sPacket loss = %d%%" | 2883 | msgid "PING %s - %sPacket loss = %d%%" |
3589 | msgstr "" | 2884 | msgstr "" |
3590 | 2885 | ||
3591 | #: plugins/check_ping.c:160 | ||
3592 | #, c-format | 2886 | #, c-format |
3593 | msgid "PING %s - %sPacket loss = %d%%, RTA = %2.2f ms" | 2887 | msgid "PING %s - %sPacket loss = %d%%, RTA = %2.2f ms" |
3594 | msgstr "" | 2888 | msgstr "" |
3595 | 2889 | ||
3596 | #: plugins/check_ping.c:257 | ||
3597 | msgid "Could not realloc() addresses\n" | 2890 | msgid "Could not realloc() addresses\n" |
3598 | msgstr "" | 2891 | msgstr "" |
3599 | 2892 | ||
3600 | #: plugins/check_ping.c:272 plugins/check_ping.c:352 | ||
3601 | #, c-format | 2893 | #, c-format |
3602 | msgid "<max_packets> (%s) must be a non-negative number\n" | 2894 | msgid "<max_packets> (%s) must be a non-negative number\n" |
3603 | msgstr "" | 2895 | msgstr "" |
3604 | 2896 | ||
3605 | #: plugins/check_ping.c:306 | ||
3606 | #, c-format | 2897 | #, c-format |
3607 | msgid "<wpl> (%s) must be an integer percentage\n" | 2898 | msgid "<wpl> (%s) must be an integer percentage\n" |
3608 | msgstr "" | 2899 | msgstr "" |
3609 | 2900 | ||
3610 | #: plugins/check_ping.c:317 | ||
3611 | #, c-format | 2901 | #, c-format |
3612 | msgid "<cpl> (%s) must be an integer percentage\n" | 2902 | msgid "<cpl> (%s) must be an integer percentage\n" |
3613 | msgstr "" | 2903 | msgstr "" |
3614 | 2904 | ||
3615 | #: plugins/check_ping.c:328 | ||
3616 | #, c-format | 2905 | #, c-format |
3617 | msgid "<wrta> (%s) must be a non-negative number\n" | 2906 | msgid "<wrta> (%s) must be a non-negative number\n" |
3618 | msgstr "" | 2907 | msgstr "" |
3619 | 2908 | ||
3620 | #: plugins/check_ping.c:339 | ||
3621 | #, c-format | 2909 | #, c-format |
3622 | msgid "<crta> (%s) must be a non-negative number\n" | 2910 | msgid "<crta> (%s) must be a non-negative number\n" |
3623 | msgstr "" | 2911 | msgstr "" |
3624 | 2912 | ||
3625 | #: plugins/check_ping.c:372 | ||
3626 | #, c-format | 2913 | #, c-format |
3627 | msgid "" | 2914 | msgid "" |
3628 | "%s: Warning threshold must be integer or percentage!\n" | 2915 | "%s: Warning threshold must be integer or percentage!\n" |
3629 | "\n" | 2916 | "\n" |
3630 | msgstr "" | 2917 | msgstr "" |
3631 | 2918 | ||
3632 | #: plugins/check_ping.c:385 | ||
3633 | #, c-format | 2919 | #, c-format |
3634 | msgid "<wrta> was not set\n" | 2920 | msgid "<wrta> was not set\n" |
3635 | msgstr "" | 2921 | msgstr "" |
3636 | 2922 | ||
3637 | #: plugins/check_ping.c:389 | ||
3638 | #, c-format | 2923 | #, c-format |
3639 | msgid "<crta> was not set\n" | 2924 | msgid "<crta> was not set\n" |
3640 | msgstr "" | 2925 | msgstr "" |
3641 | 2926 | ||
3642 | #: plugins/check_ping.c:393 | ||
3643 | #, c-format | 2927 | #, c-format |
3644 | msgid "<wpl> was not set\n" | 2928 | msgid "<wpl> was not set\n" |
3645 | msgstr "" | 2929 | msgstr "" |
3646 | 2930 | ||
3647 | #: plugins/check_ping.c:397 | ||
3648 | #, c-format | 2931 | #, c-format |
3649 | msgid "<cpl> was not set\n" | 2932 | msgid "<cpl> was not set\n" |
3650 | msgstr "" | 2933 | msgstr "" |
3651 | 2934 | ||
3652 | #: plugins/check_ping.c:401 | ||
3653 | #, c-format | 2935 | #, c-format |
3654 | msgid "<wrta> (%f) cannot be larger than <crta> (%f)\n" | 2936 | msgid "<wrta> (%f) cannot be larger than <crta> (%f)\n" |
3655 | msgstr "" | 2937 | msgstr "" |
3656 | 2938 | ||
3657 | #: plugins/check_ping.c:405 | ||
3658 | #, c-format | 2939 | #, c-format |
3659 | msgid "<wpl> (%d) cannot be larger than <cpl> (%d)\n" | 2940 | msgid "<wpl> (%d) cannot be larger than <cpl> (%d)\n" |
3660 | msgstr "" | 2941 | msgstr "" |
3661 | 2942 | ||
3662 | #: plugins/check_ping.c:442 | ||
3663 | #, c-format | 2943 | #, c-format |
3664 | msgid "Cannot open stderr for %s\n" | 2944 | msgid "Cannot open stderr for %s\n" |
3665 | msgstr "" | 2945 | msgstr "" |
3666 | 2946 | ||
3667 | #: plugins/check_ping.c:492 plugins/check_ping.c:494 | ||
3668 | msgid "System call sent warnings to stderr " | 2947 | msgid "System call sent warnings to stderr " |
3669 | msgstr "" | 2948 | msgstr "" |
3670 | 2949 | ||
3671 | #: plugins/check_ping.c:519 | ||
3672 | #, c-format | 2950 | #, c-format |
3673 | msgid "CRITICAL - Network Unreachable (%s)\n" | 2951 | msgid "CRITICAL - Network Unreachable (%s)\n" |
3674 | msgstr "" | 2952 | msgstr "" |
3675 | 2953 | ||
3676 | #: plugins/check_ping.c:521 | ||
3677 | #, c-format | 2954 | #, c-format |
3678 | msgid "CRITICAL - Host Unreachable (%s)\n" | 2955 | msgid "CRITICAL - Host Unreachable (%s)\n" |
3679 | msgstr "" | 2956 | msgstr "" |
3680 | 2957 | ||
3681 | #: plugins/check_ping.c:523 | ||
3682 | #, c-format | 2958 | #, c-format |
3683 | msgid "CRITICAL - Bogus ICMP: Port Unreachable (%s)\n" | 2959 | msgid "CRITICAL - Bogus ICMP: Port Unreachable (%s)\n" |
3684 | msgstr "" | 2960 | msgstr "" |
3685 | 2961 | ||
3686 | #: plugins/check_ping.c:525 | ||
3687 | #, c-format | 2962 | #, c-format |
3688 | msgid "CRITICAL - Bogus ICMP: Protocol Unreachable (%s)\n" | 2963 | msgid "CRITICAL - Bogus ICMP: Protocol Unreachable (%s)\n" |
3689 | msgstr "" | 2964 | msgstr "" |
3690 | 2965 | ||
3691 | #: plugins/check_ping.c:527 | ||
3692 | #, c-format | 2966 | #, c-format |
3693 | msgid "CRITICAL - Network Prohibited (%s)\n" | 2967 | msgid "CRITICAL - Network Prohibited (%s)\n" |
3694 | msgstr "" | 2968 | msgstr "" |
3695 | 2969 | ||
3696 | #: plugins/check_ping.c:529 | ||
3697 | #, c-format | 2970 | #, c-format |
3698 | msgid "CRITICAL - Host Prohibited (%s)\n" | 2971 | msgid "CRITICAL - Host Prohibited (%s)\n" |
3699 | msgstr "" | 2972 | msgstr "" |
3700 | 2973 | ||
3701 | #: plugins/check_ping.c:531 | ||
3702 | #, c-format | 2974 | #, c-format |
3703 | msgid "CRITICAL - Packet Filtered (%s)\n" | 2975 | msgid "CRITICAL - Packet Filtered (%s)\n" |
3704 | msgstr "" | 2976 | msgstr "" |
3705 | 2977 | ||
3706 | #: plugins/check_ping.c:533 | ||
3707 | #, c-format | 2978 | #, c-format |
3708 | msgid "CRITICAL - Host not found (%s)\n" | 2979 | msgid "CRITICAL - Host not found (%s)\n" |
3709 | msgstr "" | 2980 | msgstr "" |
3710 | 2981 | ||
3711 | #: plugins/check_ping.c:535 | ||
3712 | #, c-format | 2982 | #, c-format |
3713 | msgid "CRITICAL - Time to live exceeded (%s)\n" | 2983 | msgid "CRITICAL - Time to live exceeded (%s)\n" |
3714 | msgstr "" | 2984 | msgstr "" |
3715 | 2985 | ||
3716 | #: plugins/check_ping.c:537 | ||
3717 | #, c-format | 2986 | #, c-format |
3718 | msgid "CRITICAL - Destination Unreachable (%s)\n" | 2987 | msgid "CRITICAL - Destination Unreachable (%s)\n" |
3719 | msgstr "" | 2988 | msgstr "" |
3720 | 2989 | ||
3721 | #: plugins/check_ping.c:544 | ||
3722 | msgid "Unable to realloc warn_text\n" | 2990 | msgid "Unable to realloc warn_text\n" |
3723 | msgstr "" | 2991 | msgstr "" |
3724 | 2992 | ||
3725 | #: plugins/check_ping.c:561 | ||
3726 | #, c-format | 2993 | #, c-format |
3727 | msgid "Use ping to check connection statistics for a remote host." | 2994 | msgid "Use ping to check connection statistics for a remote host." |
3728 | msgstr "" | 2995 | msgstr "" |
3729 | 2996 | ||
3730 | #: plugins/check_ping.c:573 | ||
3731 | msgid "host to ping" | 2997 | msgid "host to ping" |
3732 | msgstr "" | 2998 | msgstr "" |
3733 | 2999 | ||
3734 | #: plugins/check_ping.c:579 | ||
3735 | msgid "number of ICMP ECHO packets to send" | 3000 | msgid "number of ICMP ECHO packets to send" |
3736 | msgstr "" | 3001 | msgstr "" |
3737 | 3002 | ||
3738 | #: plugins/check_ping.c:580 | ||
3739 | #, c-format | 3003 | #, c-format |
3740 | msgid "(Default: %d)\n" | 3004 | msgid "(Default: %d)\n" |
3741 | msgstr "" | 3005 | msgstr "" |
3742 | 3006 | ||
3743 | #: plugins/check_ping.c:582 | ||
3744 | msgid "show HTML in the plugin output (obsoleted by urlize)" | 3007 | msgid "show HTML in the plugin output (obsoleted by urlize)" |
3745 | msgstr "" | 3008 | msgstr "" |
3746 | 3009 | ||
3747 | #: plugins/check_ping.c:587 | ||
3748 | msgid "THRESHOLD is <rta>,<pl>% where <rta> is the round trip average travel" | 3010 | msgid "THRESHOLD is <rta>,<pl>% where <rta> is the round trip average travel" |
3749 | msgstr "" | 3011 | msgstr "" |
3750 | 3012 | ||
3751 | #: plugins/check_ping.c:588 | ||
3752 | msgid "time (ms) which triggers a WARNING or CRITICAL state, and <pl> is the" | 3013 | msgid "time (ms) which triggers a WARNING or CRITICAL state, and <pl> is the" |
3753 | msgstr "" | 3014 | msgstr "" |
3754 | 3015 | ||
3755 | #: plugins/check_ping.c:589 | ||
3756 | msgid "percentage of packet loss to trigger an alarm state." | 3016 | msgid "percentage of packet loss to trigger an alarm state." |
3757 | msgstr "" | 3017 | msgstr "" |
3758 | 3018 | ||
3759 | #: plugins/check_ping.c:592 | ||
3760 | msgid "" | 3019 | msgid "" |
3761 | "This plugin uses the ping command to probe the specified host for packet loss" | 3020 | "This plugin uses the ping command to probe the specified host for packet loss" |
3762 | msgstr "" | 3021 | msgstr "" |
3763 | 3022 | ||
3764 | #: plugins/check_ping.c:593 | ||
3765 | msgid "" | 3023 | msgid "" |
3766 | "(percentage) and round trip average (milliseconds). It can produce HTML " | 3024 | "(percentage) and round trip average (milliseconds). It can produce HTML " |
3767 | "output" | 3025 | "output" |
3768 | msgstr "" | 3026 | msgstr "" |
3769 | 3027 | ||
3770 | #: plugins/check_ping.c:594 | ||
3771 | msgid "" | 3028 | msgid "" |
3772 | "linking to a traceroute CGI contributed by Ian Cass. The CGI can be found in" | 3029 | "linking to a traceroute CGI contributed by Ian Cass. The CGI can be found in" |
3773 | msgstr "" | 3030 | msgstr "" |
3774 | 3031 | ||
3775 | #: plugins/check_ping.c:595 | ||
3776 | msgid "the contrib area of the downloads section at http://www.nagios.org/" | 3032 | msgid "the contrib area of the downloads section at http://www.nagios.org/" |
3777 | msgstr "" | 3033 | msgstr "" |
3778 | 3034 | ||
3779 | #: plugins/check_procs.c:193 | ||
3780 | #, c-format | 3035 | #, c-format |
3781 | msgid "CMD: %s\n" | 3036 | msgid "CMD: %s\n" |
3782 | msgstr "" | 3037 | msgstr "" |
3783 | 3038 | ||
3784 | #: plugins/check_procs.c:198 | ||
3785 | msgid "System call sent warnings to stderr" | 3039 | msgid "System call sent warnings to stderr" |
3786 | msgstr "" | 3040 | msgstr "" |
3787 | 3041 | ||
3788 | #: plugins/check_procs.c:326 | ||
3789 | #, c-format | 3042 | #, c-format |
3790 | msgid "Not parseable: %s" | 3043 | msgid "Not parseable: %s" |
3791 | msgstr "" | 3044 | msgstr "" |
3792 | 3045 | ||
3793 | #: plugins/check_procs.c:331 | ||
3794 | #, c-format | 3046 | #, c-format |
3795 | msgid "Unable to read output\n" | 3047 | msgid "Unable to read output\n" |
3796 | msgstr "" | 3048 | msgstr "" |
3797 | 3049 | ||
3798 | #: plugins/check_procs.c:348 | ||
3799 | #, c-format | 3050 | #, c-format |
3800 | msgid "%d warn out of " | 3051 | msgid "%d warn out of " |
3801 | msgstr "" | 3052 | msgstr "" |
3802 | 3053 | ||
3803 | #: plugins/check_procs.c:353 | ||
3804 | #, c-format | 3054 | #, c-format |
3805 | msgid "%d crit, %d warn out of " | 3055 | msgid "%d crit, %d warn out of " |
3806 | msgstr "" | 3056 | msgstr "" |
3807 | 3057 | ||
3808 | #: plugins/check_procs.c:359 | ||
3809 | #, c-format | 3058 | #, c-format |
3810 | msgid " with %s" | 3059 | msgid " with %s" |
3811 | msgstr "" | 3060 | msgstr "" |
3812 | 3061 | ||
3813 | #: plugins/check_procs.c:453 | ||
3814 | msgid "Parent Process ID must be an integer!" | 3062 | msgid "Parent Process ID must be an integer!" |
3815 | msgstr "" | 3063 | msgstr "" |
3816 | 3064 | ||
3817 | #: plugins/check_procs.c:459 plugins/check_procs.c:586 | ||
3818 | #, c-format | 3065 | #, c-format |
3819 | msgid "%s%sSTATE = %s" | 3066 | msgid "%s%sSTATE = %s" |
3820 | msgstr "" | 3067 | msgstr "" |
3821 | 3068 | ||
3822 | #: plugins/check_procs.c:468 | ||
3823 | msgid "UID was not found" | 3069 | msgid "UID was not found" |
3824 | msgstr "" | 3070 | msgstr "" |
3825 | 3071 | ||
3826 | #: plugins/check_procs.c:474 | ||
3827 | msgid "User name was not found" | 3072 | msgid "User name was not found" |
3828 | msgstr "" | 3073 | msgstr "" |
3829 | 3074 | ||
3830 | #: plugins/check_procs.c:489 | ||
3831 | #, c-format | 3075 | #, c-format |
3832 | msgid "%s%scommand name '%s'" | 3076 | msgid "%s%scommand name '%s'" |
3833 | msgstr "" | 3077 | msgstr "" |
3834 | 3078 | ||
3835 | #: plugins/check_procs.c:524 | 3079 | #, c-format |
3080 | msgid "%s%sexclude progs '%s'" | ||
3081 | msgstr "" | ||
3082 | |||
3836 | msgid "RSS must be an integer!" | 3083 | msgid "RSS must be an integer!" |
3837 | msgstr "" | 3084 | msgstr "" |
3838 | 3085 | ||
3839 | #: plugins/check_procs.c:531 | ||
3840 | msgid "VSZ must be an integer!" | 3086 | msgid "VSZ must be an integer!" |
3841 | msgstr "" | 3087 | msgstr "" |
3842 | 3088 | ||
3843 | #: plugins/check_procs.c:539 | ||
3844 | msgid "PCPU must be a float!" | 3089 | msgid "PCPU must be a float!" |
3845 | msgstr "" | 3090 | msgstr "" |
3846 | 3091 | ||
3847 | #: plugins/check_procs.c:563 | ||
3848 | msgid "Metric must be one of PROCS, VSZ, RSS, CPU, ELAPSED!" | 3092 | msgid "Metric must be one of PROCS, VSZ, RSS, CPU, ELAPSED!" |
3849 | msgstr "" | 3093 | msgstr "" |
3850 | 3094 | ||
3851 | #: plugins/check_procs.c:694 | ||
3852 | msgid "" | 3095 | msgid "" |
3853 | "Checks all processes and generates WARNING or CRITICAL states if the " | 3096 | "Checks all processes and generates WARNING or CRITICAL states if the " |
3854 | "specified" | 3097 | "specified" |
3855 | msgstr "" | 3098 | msgstr "" |
3856 | 3099 | ||
3857 | #: plugins/check_procs.c:695 | ||
3858 | msgid "" | 3100 | msgid "" |
3859 | "metric is outside the required threshold ranges. The metric defaults to " | 3101 | "metric is outside the required threshold ranges. The metric defaults to " |
3860 | "number" | 3102 | "number" |
3861 | msgstr "" | 3103 | msgstr "" |
3862 | 3104 | ||
3863 | #: plugins/check_procs.c:696 | ||
3864 | msgid "" | 3105 | msgid "" |
3865 | "of processes. Search filters can be applied to limit the processes to check." | 3106 | "of processes. Search filters can be applied to limit the processes to check." |
3866 | msgstr "" | 3107 | msgstr "" |
3867 | 3108 | ||
3868 | #: plugins/check_procs.c:705 | ||
3869 | msgid "Generate warning state if metric is outside this range" | 3109 | msgid "Generate warning state if metric is outside this range" |
3870 | msgstr "" | 3110 | msgstr "" |
3871 | 3111 | ||
3872 | #: plugins/check_procs.c:707 | ||
3873 | msgid "Generate critical state if metric is outside this range" | 3112 | msgid "Generate critical state if metric is outside this range" |
3874 | msgstr "" | 3113 | msgstr "" |
3875 | 3114 | ||
3876 | #: plugins/check_procs.c:709 | ||
3877 | msgid "Check thresholds against metric. Valid types:" | 3115 | msgid "Check thresholds against metric. Valid types:" |
3878 | msgstr "" | 3116 | msgstr "" |
3879 | 3117 | ||
3880 | #: plugins/check_procs.c:710 | ||
3881 | msgid "PROCS - number of processes (default)" | 3118 | msgid "PROCS - number of processes (default)" |
3882 | msgstr "" | 3119 | msgstr "" |
3883 | 3120 | ||
3884 | #: plugins/check_procs.c:711 | ||
3885 | msgid "VSZ - virtual memory size" | 3121 | msgid "VSZ - virtual memory size" |
3886 | msgstr "" | 3122 | msgstr "" |
3887 | 3123 | ||
3888 | #: plugins/check_procs.c:712 | ||
3889 | msgid "RSS - resident set memory size" | 3124 | msgid "RSS - resident set memory size" |
3890 | msgstr "" | 3125 | msgstr "" |
3891 | 3126 | ||
3892 | #: plugins/check_procs.c:713 | ||
3893 | msgid "CPU - percentage CPU" | 3127 | msgid "CPU - percentage CPU" |
3894 | msgstr "" | 3128 | msgstr "" |
3895 | 3129 | ||
3896 | #: plugins/check_procs.c:716 | ||
3897 | msgid "ELAPSED - time elapsed in seconds" | 3130 | msgid "ELAPSED - time elapsed in seconds" |
3898 | msgstr "" | 3131 | msgstr "" |
3899 | 3132 | ||
3900 | #: plugins/check_procs.c:721 | ||
3901 | msgid "Extra information. Up to 3 verbosity levels" | 3133 | msgid "Extra information. Up to 3 verbosity levels" |
3902 | msgstr "" | 3134 | msgstr "" |
3903 | 3135 | ||
3904 | #: plugins/check_procs.c:724 | ||
3905 | msgid "Filter own process the traditional way by PID instead of /proc/pid/exe" | 3136 | msgid "Filter own process the traditional way by PID instead of /proc/pid/exe" |
3906 | msgstr "" | 3137 | msgstr "" |
3907 | 3138 | ||
3908 | #: plugins/check_procs.c:729 | ||
3909 | msgid "Only scan for processes that have, in the output of `ps`, one or" | 3139 | msgid "Only scan for processes that have, in the output of `ps`, one or" |
3910 | msgstr "" | 3140 | msgstr "" |
3911 | 3141 | ||
3912 | #: plugins/check_procs.c:730 | ||
3913 | msgid "more of the status flags you specify (for example R, Z, S, RS," | 3142 | msgid "more of the status flags you specify (for example R, Z, S, RS," |
3914 | msgstr "" | 3143 | msgstr "" |
3915 | 3144 | ||
3916 | #: plugins/check_procs.c:731 | ||
3917 | msgid "RSZDT, plus others based on the output of your 'ps' command)." | 3145 | msgid "RSZDT, plus others based on the output of your 'ps' command)." |
3918 | msgstr "" | 3146 | msgstr "" |
3919 | 3147 | ||
3920 | #: plugins/check_procs.c:733 | ||
3921 | msgid "Only scan for children of the parent process ID indicated." | 3148 | msgid "Only scan for children of the parent process ID indicated." |
3922 | msgstr "" | 3149 | msgstr "" |
3923 | 3150 | ||
3924 | #: plugins/check_procs.c:735 | ||
3925 | msgid "Only scan for processes with VSZ higher than indicated." | 3151 | msgid "Only scan for processes with VSZ higher than indicated." |
3926 | msgstr "" | 3152 | msgstr "" |
3927 | 3153 | ||
3928 | #: plugins/check_procs.c:737 | ||
3929 | msgid "Only scan for processes with RSS higher than indicated." | 3154 | msgid "Only scan for processes with RSS higher than indicated." |
3930 | msgstr "" | 3155 | msgstr "" |
3931 | 3156 | ||
3932 | #: plugins/check_procs.c:739 | ||
3933 | msgid "Only scan for processes with PCPU higher than indicated." | 3157 | msgid "Only scan for processes with PCPU higher than indicated." |
3934 | msgstr "" | 3158 | msgstr "" |
3935 | 3159 | ||
3936 | #: plugins/check_procs.c:741 | ||
3937 | msgid "Only scan for processes with user name or ID indicated." | 3160 | msgid "Only scan for processes with user name or ID indicated." |
3938 | msgstr "" | 3161 | msgstr "" |
3939 | 3162 | ||
3940 | #: plugins/check_procs.c:743 | ||
3941 | msgid "Only scan for processes with args that contain STRING." | 3163 | msgid "Only scan for processes with args that contain STRING." |
3942 | msgstr "" | 3164 | msgstr "" |
3943 | 3165 | ||
3944 | #: plugins/check_procs.c:745 | ||
3945 | msgid "Only scan for processes with args that contain the regex STRING." | 3166 | msgid "Only scan for processes with args that contain the regex STRING." |
3946 | msgstr "" | 3167 | msgstr "" |
3947 | 3168 | ||
3948 | #: plugins/check_procs.c:747 | ||
3949 | msgid "Only scan for exact matches of COMMAND (without path)." | 3169 | msgid "Only scan for exact matches of COMMAND (without path)." |
3950 | msgstr "" | 3170 | msgstr "" |
3951 | 3171 | ||
3952 | #: plugins/check_procs.c:749 | 3172 | msgid "Exclude processes which match this comma separated list" |
3173 | msgstr "" | ||
3174 | |||
3953 | msgid "Only scan for non kernel threads (works on Linux only)." | 3175 | msgid "Only scan for non kernel threads (works on Linux only)." |
3954 | msgstr "" | 3176 | msgstr "" |
3955 | 3177 | ||
3956 | #: plugins/check_procs.c:751 | ||
3957 | #, c-format | 3178 | #, c-format |
3958 | msgid "" | 3179 | msgid "" |
3959 | "\n" | 3180 | "\n" |
@@ -3963,7 +3184,6 @@ msgid "" | |||
3963 | "\n" | 3184 | "\n" |
3964 | msgstr "" | 3185 | msgstr "" |
3965 | 3186 | ||
3966 | #: plugins/check_procs.c:756 | ||
3967 | #, c-format | 3187 | #, c-format |
3968 | msgid "" | 3188 | msgid "" |
3969 | "This plugin checks the number of currently running processes and\n" | 3189 | "This plugin checks the number of currently running processes and\n" |
@@ -3974,1568 +3194,1335 @@ msgid "" | |||
3974 | "\n" | 3194 | "\n" |
3975 | msgstr "" | 3195 | msgstr "" |
3976 | 3196 | ||
3977 | #: plugins/check_procs.c:765 | ||
3978 | msgid "Warning if not two processes with command name portsentry." | 3197 | msgid "Warning if not two processes with command name portsentry." |
3979 | msgstr "" | 3198 | msgstr "" |
3980 | 3199 | ||
3981 | #: plugins/check_procs.c:766 | ||
3982 | msgid "Critical if < 2 or > 1024 processes" | 3200 | msgid "Critical if < 2 or > 1024 processes" |
3983 | msgstr "" | 3201 | msgstr "" |
3984 | 3202 | ||
3985 | #: plugins/check_procs.c:768 | 3203 | msgid "Critical if not at least 1 process with command sshd" |
3204 | msgstr "" | ||
3205 | |||
3206 | msgid "Warning if > 1024 processes with command name sshd." | ||
3207 | msgstr "" | ||
3208 | |||
3209 | msgid "Critical if < 1 processes with command name sshd." | ||
3210 | msgstr "" | ||
3211 | |||
3986 | msgid "Warning alert if > 10 processes with command arguments containing" | 3212 | msgid "Warning alert if > 10 processes with command arguments containing" |
3987 | msgstr "" | 3213 | msgstr "" |
3988 | 3214 | ||
3989 | #: plugins/check_procs.c:769 | ||
3990 | msgid "'/usr/local/bin/perl' and owned by root" | 3215 | msgid "'/usr/local/bin/perl' and owned by root" |
3991 | msgstr "" | 3216 | msgstr "" |
3992 | 3217 | ||
3993 | #: plugins/check_procs.c:771 | ||
3994 | msgid "Alert if VSZ of any processes over 50K or 100K" | 3218 | msgid "Alert if VSZ of any processes over 50K or 100K" |
3995 | msgstr "" | 3219 | msgstr "" |
3996 | 3220 | ||
3997 | #: plugins/check_procs.c:773 | 3221 | msgid "Alert if CPU of any processes over 10% or 20%" |
3998 | #, c-format | ||
3999 | msgid "Alert if CPU of any processes over 10%% or 20%%" | ||
4000 | msgstr "" | 3222 | msgstr "" |
4001 | 3223 | ||
4002 | #: plugins/check_radius.c:165 | 3224 | msgid "Config file error\n" |
4003 | msgid "Config file error" | ||
4004 | msgstr "" | 3225 | msgstr "" |
4005 | 3226 | ||
4006 | #: plugins/check_radius.c:174 | 3227 | msgid "Out of Memory?\n" |
4007 | msgid "Out of Memory?" | ||
4008 | msgstr "" | 3228 | msgstr "" |
4009 | 3229 | ||
4010 | #: plugins/check_radius.c:178 | 3230 | msgid "Invalid NAS-Identifier\n" |
4011 | msgid "Invalid NAS-Identifier" | ||
4012 | msgstr "" | 3231 | msgstr "" |
4013 | 3232 | ||
4014 | #: plugins/check_radius.c:183 plugins/check_radius.c:185 | 3233 | #, c-format |
4015 | #: plugins/check_radius.c:191 | 3234 | msgid "gethostname() failed!\n" |
4016 | msgid "Invalid NAS-IP-Address" | ||
4017 | msgstr "" | 3235 | msgstr "" |
4018 | 3236 | ||
4019 | #: plugins/check_radius.c:188 | 3237 | msgid "Invalid NAS-IP-Address\n" |
4020 | msgid "Can't find local IP for NAS-IP-Address" | ||
4021 | msgstr "" | 3238 | msgstr "" |
4022 | 3239 | ||
4023 | #: plugins/check_radius.c:202 | 3240 | msgid "Timeout\n" |
4024 | msgid "Timeout" | ||
4025 | msgstr "" | 3241 | msgstr "" |
4026 | 3242 | ||
4027 | #: plugins/check_radius.c:204 | 3243 | msgid "Auth Error\n" |
4028 | msgid "Auth Error" | ||
4029 | msgstr "" | 3244 | msgstr "" |
4030 | 3245 | ||
4031 | #: plugins/check_radius.c:206 | 3246 | msgid "Auth Failed\n" |
4032 | msgid "Auth Failed" | ||
4033 | msgstr "" | 3247 | msgstr "" |
4034 | 3248 | ||
4035 | #: plugins/check_radius.c:208 | 3249 | msgid "Bad Response\n" |
4036 | msgid "Bad Response" | ||
4037 | msgstr "" | 3250 | msgstr "" |
4038 | 3251 | ||
4039 | #: plugins/check_radius.c:212 | 3252 | msgid "Auth OK\n" |
4040 | msgid "Auth OK" | ||
4041 | msgstr "" | 3253 | msgstr "" |
4042 | 3254 | ||
4043 | #: plugins/check_radius.c:213 | ||
4044 | #, c-format | 3255 | #, c-format |
4045 | msgid "Unexpected result code %d" | 3256 | msgid "Unexpected result code %d" |
4046 | msgstr "" | 3257 | msgstr "" |
4047 | 3258 | ||
4048 | #: plugins/check_radius.c:302 | ||
4049 | msgid "Number of retries must be a positive integer" | 3259 | msgid "Number of retries must be a positive integer" |
4050 | msgstr "" | 3260 | msgstr "" |
4051 | 3261 | ||
4052 | #: plugins/check_radius.c:316 | ||
4053 | msgid "User not specified" | 3262 | msgid "User not specified" |
4054 | msgstr "" | 3263 | msgstr "" |
4055 | 3264 | ||
4056 | #: plugins/check_radius.c:318 | ||
4057 | msgid "Password not specified" | 3265 | msgid "Password not specified" |
4058 | msgstr "" | 3266 | msgstr "" |
4059 | 3267 | ||
4060 | #: plugins/check_radius.c:320 | ||
4061 | msgid "Configuration file not specified" | 3268 | msgid "Configuration file not specified" |
4062 | msgstr "" | 3269 | msgstr "" |
4063 | 3270 | ||
4064 | #: plugins/check_radius.c:338 | ||
4065 | msgid "Tests to see if a RADIUS server is accepting connections." | 3271 | msgid "Tests to see if a RADIUS server is accepting connections." |
4066 | msgstr "" | 3272 | msgstr "" |
4067 | 3273 | ||
4068 | #: plugins/check_radius.c:350 | ||
4069 | msgid "The user to authenticate" | 3274 | msgid "The user to authenticate" |
4070 | msgstr "" | 3275 | msgstr "" |
4071 | 3276 | ||
4072 | #: plugins/check_radius.c:352 | ||
4073 | msgid "Password for authentication (SECURITY RISK)" | 3277 | msgid "Password for authentication (SECURITY RISK)" |
4074 | msgstr "" | 3278 | msgstr "" |
4075 | 3279 | ||
4076 | #: plugins/check_radius.c:354 | ||
4077 | msgid "NAS identifier" | 3280 | msgid "NAS identifier" |
4078 | msgstr "" | 3281 | msgstr "" |
4079 | 3282 | ||
4080 | #: plugins/check_radius.c:356 | ||
4081 | msgid "NAS IP Address" | 3283 | msgid "NAS IP Address" |
4082 | msgstr "" | 3284 | msgstr "" |
4083 | 3285 | ||
4084 | #: plugins/check_radius.c:358 | ||
4085 | msgid "Configuration file" | 3286 | msgid "Configuration file" |
4086 | msgstr "" | 3287 | msgstr "" |
4087 | 3288 | ||
4088 | #: plugins/check_radius.c:360 | ||
4089 | msgid "Response string to expect from the server" | 3289 | msgid "Response string to expect from the server" |
4090 | msgstr "" | 3290 | msgstr "" |
4091 | 3291 | ||
4092 | #: plugins/check_radius.c:362 | ||
4093 | msgid "Number of times to retry a failed connection" | 3292 | msgid "Number of times to retry a failed connection" |
4094 | msgstr "" | 3293 | msgstr "" |
4095 | 3294 | ||
4096 | #: plugins/check_radius.c:367 | ||
4097 | msgid "" | 3295 | msgid "" |
4098 | "This plugin tests a RADIUS server to see if it is accepting connections." | 3296 | "This plugin tests a RADIUS server to see if it is accepting connections." |
4099 | msgstr "" | 3297 | msgstr "" |
4100 | 3298 | ||
4101 | #: plugins/check_radius.c:368 | ||
4102 | msgid "" | 3299 | msgid "" |
4103 | "The server to test must be specified in the invocation, as well as a user" | 3300 | "The server to test must be specified in the invocation, as well as a user" |
4104 | msgstr "" | 3301 | msgstr "" |
4105 | 3302 | ||
4106 | #: plugins/check_radius.c:369 | 3303 | msgid "name and password. A configuration file must be present. The format of" |
4107 | msgid "" | ||
4108 | "name and password. A configuration file may also be present. The format of" | ||
4109 | msgstr "" | 3304 | msgstr "" |
4110 | 3305 | ||
4111 | #: plugins/check_radius.c:370 | ||
4112 | msgid "" | 3306 | msgid "" |
4113 | "the configuration file is described in the radiusclient library sources." | 3307 | "the configuration file is described in the radiusclient library sources." |
4114 | msgstr "" | 3308 | msgstr "" |
4115 | 3309 | ||
4116 | #: plugins/check_radius.c:371 | ||
4117 | msgid "The password option presents a substantial security issue because the" | 3310 | msgid "The password option presents a substantial security issue because the" |
4118 | msgstr "" | 3311 | msgstr "" |
4119 | 3312 | ||
4120 | #: plugins/check_radius.c:372 | ||
4121 | msgid "" | 3313 | msgid "" |
4122 | "password can possibly be determined by careful watching of the command line" | 3314 | "password can possibly be determined by careful watching of the command line" |
4123 | msgstr "" | 3315 | msgstr "" |
4124 | 3316 | ||
4125 | #: plugins/check_radius.c:373 | 3317 | msgid "in a process listing. This risk is exacerbated because the plugin will" |
4126 | msgid "in a process listing. This risk is exacerbated because the monitor will" | ||
4127 | msgstr "" | 3318 | msgstr "" |
4128 | 3319 | ||
4129 | #: plugins/check_radius.c:374 | 3320 | msgid "" |
4130 | msgid "run the plugin at regular predictable intervals. Please be sure that" | 3321 | "typically be executed at regular predictable intervals. Please be sure that" |
4131 | msgstr "" | 3322 | msgstr "" |
4132 | 3323 | ||
4133 | #: plugins/check_radius.c:375 | ||
4134 | msgid "the password used does not allow access to sensitive system resources." | 3324 | msgid "the password used does not allow access to sensitive system resources." |
4135 | msgstr "" | 3325 | msgstr "" |
4136 | 3326 | ||
4137 | #: plugins/check_real.c:91 | ||
4138 | #, c-format | 3327 | #, c-format |
4139 | msgid "Unable to connect to %s on port %d\n" | 3328 | msgid "Unable to connect to %s on port %d\n" |
4140 | msgstr "" | 3329 | msgstr "" |
4141 | 3330 | ||
4142 | #: plugins/check_real.c:113 | ||
4143 | #, c-format | 3331 | #, c-format |
4144 | msgid "No data received from %s\n" | 3332 | msgid "No data received from %s\n" |
4145 | msgstr "" | 3333 | msgstr "" |
4146 | 3334 | ||
4147 | #: plugins/check_real.c:118 plugins/check_real.c:191 | ||
4148 | msgid "Invalid REAL response received from host" | 3335 | msgid "Invalid REAL response received from host" |
4149 | msgstr "" | 3336 | msgstr "" |
4150 | 3337 | ||
4151 | #: plugins/check_real.c:120 plugins/check_real.c:193 | ||
4152 | #, c-format | 3338 | #, c-format |
4153 | msgid "Invalid REAL response received from host on port %d\n" | 3339 | msgid "Invalid REAL response received from host on port %d\n" |
4154 | msgstr "" | 3340 | msgstr "" |
4155 | 3341 | ||
4156 | #: plugins/check_real.c:184 plugins/check_tcp.c:311 | ||
4157 | #, c-format | 3342 | #, c-format |
4158 | msgid "No data received from host\n" | 3343 | msgid "No data received from host\n" |
4159 | msgstr "" | 3344 | msgstr "" |
4160 | 3345 | ||
4161 | #: plugins/check_real.c:247 | ||
4162 | #, c-format | 3346 | #, c-format |
4163 | msgid "REAL %s - %d second response time\n" | 3347 | msgid "REAL %s - %d second response time\n" |
4164 | msgstr "" | 3348 | msgstr "" |
4165 | 3349 | ||
4166 | #: plugins/check_real.c:336 plugins/check_ups.c:536 | ||
4167 | msgid "Warning time must be a positive integer" | 3350 | msgid "Warning time must be a positive integer" |
4168 | msgstr "" | 3351 | msgstr "" |
4169 | 3352 | ||
4170 | #: plugins/check_real.c:345 plugins/check_ups.c:527 | ||
4171 | msgid "Critical time must be a positive integer" | 3353 | msgid "Critical time must be a positive integer" |
4172 | msgstr "" | 3354 | msgstr "" |
4173 | 3355 | ||
4174 | #: plugins/check_real.c:381 | ||
4175 | msgid "You must provide a server to check" | 3356 | msgid "You must provide a server to check" |
4176 | msgstr "" | 3357 | msgstr "" |
4177 | 3358 | ||
4178 | #: plugins/check_real.c:413 | ||
4179 | msgid "This plugin tests the REAL service on the specified host." | 3359 | msgid "This plugin tests the REAL service on the specified host." |
4180 | msgstr "" | 3360 | msgstr "" |
4181 | 3361 | ||
4182 | #: plugins/check_real.c:425 | ||
4183 | msgid "Connect to this url" | 3362 | msgid "Connect to this url" |
4184 | msgstr "" | 3363 | msgstr "" |
4185 | 3364 | ||
4186 | #: plugins/check_real.c:427 | ||
4187 | #, c-format | 3365 | #, c-format |
4188 | msgid "String to expect in first line of server response (default: %s)\n" | 3366 | msgid "String to expect in first line of server response (default: %s)\n" |
4189 | msgstr "" | 3367 | msgstr "" |
4190 | 3368 | ||
4191 | #: plugins/check_real.c:437 | ||
4192 | msgid "This plugin will attempt to open an RTSP connection with the host." | 3369 | msgid "This plugin will attempt to open an RTSP connection with the host." |
4193 | msgstr "" | 3370 | msgstr "" |
4194 | 3371 | ||
4195 | #: plugins/check_real.c:438 plugins/check_smtp.c:830 | 3372 | msgid "Successful connects return STATE_OK, refusals and timeouts return" |
4196 | msgid "Successul connects return STATE_OK, refusals and timeouts return" | ||
4197 | msgstr "" | 3373 | msgstr "" |
4198 | 3374 | ||
4199 | #: plugins/check_real.c:439 | ||
4200 | msgid "" | 3375 | msgid "" |
4201 | "STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful connects," | 3376 | "STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful connects," |
4202 | msgstr "" | 3377 | msgstr "" |
4203 | 3378 | ||
4204 | #: plugins/check_real.c:440 | ||
4205 | msgid "" | 3379 | msgid "" |
4206 | "but incorrect response messages from the host result in STATE_WARNING return" | 3380 | "but incorrect response messages from the host result in STATE_WARNING return" |
4207 | msgstr "" | 3381 | msgstr "" |
4208 | 3382 | ||
4209 | #: plugins/check_real.c:441 | ||
4210 | msgid "values." | 3383 | msgid "values." |
4211 | msgstr "" | 3384 | msgstr "" |
4212 | 3385 | ||
4213 | #: plugins/check_smtp.c:150 plugins/check_swap.c:265 plugins/check_swap.c:271 | ||
4214 | #, c-format | 3386 | #, c-format |
4215 | msgid "malloc() failed!\n" | 3387 | msgid "malloc() failed!\n" |
4216 | msgstr "" | 3388 | msgstr "" |
4217 | 3389 | ||
4218 | #: plugins/check_smtp.c:154 | ||
4219 | #, c-format | 3390 | #, c-format |
4220 | msgid "gethostname() failed!\n" | 3391 | msgid "CRITICAL - Cannot create SSL context.\n" |
4221 | msgstr "" | 3392 | msgstr "" |
4222 | 3393 | ||
4223 | #: plugins/check_smtp.c:189 plugins/check_smtp.c:213 | ||
4224 | #, c-format | 3394 | #, c-format |
4225 | msgid "recv() failed\n" | 3395 | msgid "recv() failed\n" |
4226 | msgstr "" | 3396 | msgstr "" |
4227 | 3397 | ||
4228 | #: plugins/check_smtp.c:200 | ||
4229 | #, c-format | ||
4230 | msgid "Invalid SMTP response received from host: %s\n" | ||
4231 | msgstr "" | ||
4232 | |||
4233 | #: plugins/check_smtp.c:202 | ||
4234 | #, c-format | ||
4235 | msgid "Invalid SMTP response received from host on port %d: %s\n" | ||
4236 | msgstr "" | ||
4237 | |||
4238 | #: plugins/check_smtp.c:223 | ||
4239 | #, c-format | 3398 | #, c-format |
4240 | msgid "WARNING - TLS not supported by server\n" | 3399 | msgid "WARNING - TLS not supported by server\n" |
4241 | msgstr "" | 3400 | msgstr "" |
4242 | 3401 | ||
4243 | #: plugins/check_smtp.c:235 | ||
4244 | #, c-format | 3402 | #, c-format |
4245 | msgid "Server does not support STARTTLS\n" | 3403 | msgid "Server does not support STARTTLS\n" |
4246 | msgstr "" | 3404 | msgstr "" |
4247 | 3405 | ||
4248 | #: plugins/check_smtp.c:241 | ||
4249 | #, c-format | ||
4250 | msgid "CRITICAL - Cannot create SSL context.\n" | ||
4251 | msgstr "" | ||
4252 | |||
4253 | #: plugins/check_smtp.c:261 | ||
4254 | msgid "SMTP UNKNOWN - Cannot send EHLO command via TLS." | 3406 | msgid "SMTP UNKNOWN - Cannot send EHLO command via TLS." |
4255 | msgstr "" | 3407 | msgstr "" |
4256 | 3408 | ||
4257 | #: plugins/check_smtp.c:266 | ||
4258 | #, c-format | 3409 | #, c-format |
4259 | msgid "sent %s" | 3410 | msgid "sent %s" |
4260 | msgstr "" | 3411 | msgstr "" |
4261 | 3412 | ||
4262 | #: plugins/check_smtp.c:268 | ||
4263 | msgid "SMTP UNKNOWN - Cannot read EHLO response via TLS." | 3413 | msgid "SMTP UNKNOWN - Cannot read EHLO response via TLS." |
4264 | msgstr "" | 3414 | msgstr "" |
4265 | 3415 | ||
4266 | #: plugins/check_smtp.c:303 plugins/check_snmp.c:806 | 3416 | #, c-format |
3417 | msgid "Invalid SMTP response received from host: %s\n" | ||
3418 | msgstr "" | ||
3419 | |||
3420 | #, c-format | ||
3421 | msgid "Invalid SMTP response received from host on port %d: %s\n" | ||
3422 | msgstr "" | ||
3423 | |||
4267 | #, c-format | 3424 | #, c-format |
4268 | msgid "Could Not Compile Regular Expression" | 3425 | msgid "Could Not Compile Regular Expression" |
4269 | msgstr "" | 3426 | msgstr "" |
4270 | 3427 | ||
4271 | #: plugins/check_smtp.c:312 | ||
4272 | #, c-format | 3428 | #, c-format |
4273 | msgid "SMTP %s - Invalid response '%s' to command '%s'\n" | 3429 | msgid "SMTP %s - Invalid response '%s' to command '%s'\n" |
4274 | msgstr "" | 3430 | msgstr "" |
4275 | 3431 | ||
4276 | #: plugins/check_smtp.c:316 plugins/check_snmp.c:511 | ||
4277 | #, c-format | 3432 | #, c-format |
4278 | msgid "Execute Error: %s\n" | 3433 | msgid "Execute Error: %s\n" |
4279 | msgstr "" | 3434 | msgstr "" |
4280 | 3435 | ||
4281 | #: plugins/check_smtp.c:330 | ||
4282 | msgid "no authuser specified, " | 3436 | msgid "no authuser specified, " |
4283 | msgstr "" | 3437 | msgstr "" |
4284 | 3438 | ||
4285 | #: plugins/check_smtp.c:335 | ||
4286 | msgid "no authpass specified, " | 3439 | msgid "no authpass specified, " |
4287 | msgstr "" | 3440 | msgstr "" |
4288 | 3441 | ||
4289 | #: plugins/check_smtp.c:342 plugins/check_smtp.c:363 plugins/check_smtp.c:383 | ||
4290 | #: plugins/check_smtp.c:688 | ||
4291 | #, c-format | 3442 | #, c-format |
4292 | msgid "sent %s\n" | 3443 | msgid "sent %s\n" |
4293 | msgstr "" | 3444 | msgstr "" |
4294 | 3445 | ||
4295 | #: plugins/check_smtp.c:345 | ||
4296 | msgid "recv() failed after AUTH LOGIN, " | 3446 | msgid "recv() failed after AUTH LOGIN, " |
4297 | msgstr "" | 3447 | msgstr "" |
4298 | 3448 | ||
4299 | #: plugins/check_smtp.c:350 plugins/check_smtp.c:371 plugins/check_smtp.c:391 | ||
4300 | #: plugins/check_smtp.c:699 | ||
4301 | #, c-format | 3449 | #, c-format |
4302 | msgid "received %s\n" | 3450 | msgid "received %s\n" |
4303 | msgstr "" | 3451 | msgstr "" |
4304 | 3452 | ||
4305 | #: plugins/check_smtp.c:354 | ||
4306 | msgid "invalid response received after AUTH LOGIN, " | 3453 | msgid "invalid response received after AUTH LOGIN, " |
4307 | msgstr "" | 3454 | msgstr "" |
4308 | 3455 | ||
4309 | #: plugins/check_smtp.c:367 | ||
4310 | msgid "recv() failed after sending authuser, " | 3456 | msgid "recv() failed after sending authuser, " |
4311 | msgstr "" | 3457 | msgstr "" |
4312 | 3458 | ||
4313 | #: plugins/check_smtp.c:375 | ||
4314 | msgid "invalid response received after authuser, " | 3459 | msgid "invalid response received after authuser, " |
4315 | msgstr "" | 3460 | msgstr "" |
4316 | 3461 | ||
4317 | #: plugins/check_smtp.c:387 | ||
4318 | msgid "recv() failed after sending authpass, " | 3462 | msgid "recv() failed after sending authpass, " |
4319 | msgstr "" | 3463 | msgstr "" |
4320 | 3464 | ||
4321 | #: plugins/check_smtp.c:395 | ||
4322 | msgid "invalid response received after authpass, " | 3465 | msgid "invalid response received after authpass, " |
4323 | msgstr "" | 3466 | msgstr "" |
4324 | 3467 | ||
4325 | #: plugins/check_smtp.c:402 | ||
4326 | msgid "only authtype LOGIN is supported, " | 3468 | msgid "only authtype LOGIN is supported, " |
4327 | msgstr "" | 3469 | msgstr "" |
4328 | 3470 | ||
4329 | #: plugins/check_smtp.c:426 | ||
4330 | #, c-format | 3471 | #, c-format |
4331 | msgid "SMTP %s - %s%.3f sec. response time%s%s|%s\n" | 3472 | msgid "SMTP %s - %s%.3f sec. response time%s%s|%s\n" |
4332 | msgstr "" | 3473 | msgstr "" |
4333 | 3474 | ||
4334 | #: plugins/check_smtp.c:536 plugins/check_smtp.c:548 | ||
4335 | #, c-format | 3475 | #, c-format |
4336 | msgid "Could not realloc() units [%d]\n" | 3476 | msgid "Could not realloc() units [%d]\n" |
4337 | msgstr "" | 3477 | msgstr "" |
4338 | 3478 | ||
4339 | #: plugins/check_smtp.c:556 | ||
4340 | msgid "Critical time must be a positive" | 3479 | msgid "Critical time must be a positive" |
4341 | msgstr "" | 3480 | msgstr "" |
4342 | 3481 | ||
4343 | #: plugins/check_smtp.c:564 | ||
4344 | msgid "Warning time must be a positive" | 3482 | msgid "Warning time must be a positive" |
4345 | msgstr "" | 3483 | msgstr "" |
4346 | 3484 | ||
4347 | #: plugins/check_smtp.c:611 | ||
4348 | msgid "SSL support not available - install OpenSSL and recompile" | 3485 | msgid "SSL support not available - install OpenSSL and recompile" |
4349 | msgstr "" | 3486 | msgstr "" |
4350 | 3487 | ||
4351 | #: plugins/check_smtp.c:679 plugins/check_smtp.c:684 | 3488 | msgid "Set either -s/--ssl/--tls or -S/--starttls" |
3489 | msgstr "" | ||
3490 | |||
4352 | #, c-format | 3491 | #, c-format |
4353 | msgid "Connection closed by server before sending QUIT command\n" | 3492 | msgid "Connection closed by server before sending QUIT command\n" |
4354 | msgstr "" | 3493 | msgstr "" |
4355 | 3494 | ||
4356 | #: plugins/check_smtp.c:694 | ||
4357 | #, c-format | 3495 | #, c-format |
4358 | msgid "recv() failed after QUIT." | 3496 | msgid "recv() failed after QUIT." |
4359 | msgstr "" | 3497 | msgstr "" |
4360 | 3498 | ||
4361 | #: plugins/check_smtp.c:696 | ||
4362 | #, c-format | 3499 | #, c-format |
4363 | msgid "Connection reset by peer." | 3500 | msgid "Connection reset by peer." |
4364 | msgstr "" | 3501 | msgstr "" |
4365 | 3502 | ||
4366 | #: plugins/check_smtp.c:784 | ||
4367 | msgid "This plugin will attempt to open an SMTP connection with the host." | 3503 | msgid "This plugin will attempt to open an SMTP connection with the host." |
4368 | msgstr "" | 3504 | msgstr "" |
4369 | 3505 | ||
4370 | #: plugins/check_smtp.c:798 | ||
4371 | #, c-format | 3506 | #, c-format |
4372 | msgid " String to expect in first line of server response (default: '%s')\n" | 3507 | msgid " String to expect in first line of server response (default: '%s')\n" |
4373 | msgstr "" | 3508 | msgstr "" |
4374 | 3509 | ||
4375 | #: plugins/check_smtp.c:800 | ||
4376 | msgid "SMTP command (may be used repeatedly)" | 3510 | msgid "SMTP command (may be used repeatedly)" |
4377 | msgstr "" | 3511 | msgstr "" |
4378 | 3512 | ||
4379 | #: plugins/check_smtp.c:802 | ||
4380 | msgid "Expected response to command (may be used repeatedly)" | 3513 | msgid "Expected response to command (may be used repeatedly)" |
4381 | msgstr "" | 3514 | msgstr "" |
4382 | 3515 | ||
4383 | #: plugins/check_smtp.c:804 | ||
4384 | msgid "FROM-address to include in MAIL command, required by Exchange 2000" | 3516 | msgid "FROM-address to include in MAIL command, required by Exchange 2000" |
4385 | msgstr "" | 3517 | msgstr "" |
4386 | 3518 | ||
4387 | #: plugins/check_smtp.c:806 | ||
4388 | msgid "FQDN used for HELO" | 3519 | msgid "FQDN used for HELO" |
4389 | msgstr "" | 3520 | msgstr "" |
4390 | 3521 | ||
4391 | #: plugins/check_smtp.c:809 plugins/check_tcp.c:665 | 3522 | msgid "Use PROXY protocol prefix for the connection." |
3523 | msgstr "" | ||
3524 | |||
4392 | msgid "Minimum number of days a certificate has to be valid." | 3525 | msgid "Minimum number of days a certificate has to be valid." |
4393 | msgstr "" | 3526 | msgstr "" |
4394 | 3527 | ||
4395 | #: plugins/check_smtp.c:811 | 3528 | msgid "Use SSL/TLS for the connection." |
3529 | msgstr "" | ||
3530 | |||
3531 | #, c-format | ||
3532 | msgid " Sets default port to %d.\n" | ||
3533 | msgstr "" | ||
3534 | |||
4396 | msgid "Use STARTTLS for the connection." | 3535 | msgid "Use STARTTLS for the connection." |
4397 | msgstr "" | 3536 | msgstr "" |
4398 | 3537 | ||
4399 | #: plugins/check_smtp.c:815 | ||
4400 | msgid "SMTP AUTH type to check (default none, only LOGIN supported)" | 3538 | msgid "SMTP AUTH type to check (default none, only LOGIN supported)" |
4401 | msgstr "" | 3539 | msgstr "" |
4402 | 3540 | ||
4403 | #: plugins/check_smtp.c:817 | ||
4404 | msgid "SMTP AUTH username" | 3541 | msgid "SMTP AUTH username" |
4405 | msgstr "" | 3542 | msgstr "" |
4406 | 3543 | ||
4407 | #: plugins/check_smtp.c:819 | ||
4408 | msgid "SMTP AUTH password" | 3544 | msgid "SMTP AUTH password" |
4409 | msgstr "" | 3545 | msgstr "" |
4410 | 3546 | ||
4411 | #: plugins/check_smtp.c:821 | 3547 | msgid "Send LHLO instead of HELO/EHLO" |
3548 | msgstr "" | ||
3549 | |||
4412 | msgid "Ignore failure when sending QUIT command to server" | 3550 | msgid "Ignore failure when sending QUIT command to server" |
4413 | msgstr "" | 3551 | msgstr "" |
4414 | 3552 | ||
4415 | #: plugins/check_smtp.c:831 | ||
4416 | msgid "STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful" | 3553 | msgid "STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful" |
4417 | msgstr "" | 3554 | msgstr "" |
4418 | 3555 | ||
4419 | #: plugins/check_smtp.c:832 | ||
4420 | msgid "connects, but incorrect response messages from the host result in" | 3556 | msgid "connects, but incorrect response messages from the host result in" |
4421 | msgstr "" | 3557 | msgstr "" |
4422 | 3558 | ||
4423 | #: plugins/check_smtp.c:833 | ||
4424 | msgid "STATE_WARNING return values." | 3559 | msgid "STATE_WARNING return values." |
4425 | msgstr "" | 3560 | msgstr "" |
4426 | 3561 | ||
4427 | #: plugins/check_snmp.c:169 plugins/check_snmp.c:582 | ||
4428 | msgid "Cannot malloc" | 3562 | msgid "Cannot malloc" |
4429 | msgstr "" | 3563 | msgstr "" |
4430 | 3564 | ||
4431 | #: plugins/check_snmp.c:356 | ||
4432 | #, c-format | 3565 | #, c-format |
4433 | msgid "External command error: %s\n" | 3566 | msgid "External command error: %s\n" |
4434 | msgstr "" | 3567 | msgstr "" |
4435 | 3568 | ||
4436 | #: plugins/check_snmp.c:361 | ||
4437 | #, c-format | 3569 | #, c-format |
4438 | msgid "External command error with no output (return code: %d)\n" | 3570 | msgid "External command error with no output (return code: %d)\n" |
4439 | msgstr "" | 3571 | msgstr "" |
4440 | 3572 | ||
4441 | #: plugins/check_snmp.c:464 | ||
4442 | #, c-format | 3573 | #, c-format |
4443 | msgid "No valid data returned (%s)\n" | 3574 | msgid "No valid data returned (%s)\n" |
4444 | msgstr "" | 3575 | msgstr "" |
4445 | 3576 | ||
4446 | #: plugins/check_snmp.c:475 | ||
4447 | msgid "Time duration between plugin calls is invalid" | 3577 | msgid "Time duration between plugin calls is invalid" |
4448 | msgstr "" | 3578 | msgstr "" |
4449 | 3579 | ||
4450 | #: plugins/check_snmp.c:588 | ||
4451 | msgid "Cannot asprintf()" | 3580 | msgid "Cannot asprintf()" |
4452 | msgstr "" | 3581 | msgstr "" |
4453 | 3582 | ||
4454 | #: plugins/check_snmp.c:594 | ||
4455 | msgid "Cannot realloc()" | 3583 | msgid "Cannot realloc()" |
4456 | msgstr "" | 3584 | msgstr "" |
4457 | 3585 | ||
4458 | #: plugins/check_snmp.c:610 | ||
4459 | msgid "No previous data to calculate rate - assume okay" | 3586 | msgid "No previous data to calculate rate - assume okay" |
4460 | msgstr "" | 3587 | msgstr "" |
4461 | 3588 | ||
4462 | #: plugins/check_snmp.c:751 | ||
4463 | msgid "Retries interval must be a positive integer" | 3589 | msgid "Retries interval must be a positive integer" |
4464 | msgstr "" | 3590 | msgstr "" |
4465 | 3591 | ||
4466 | #: plugins/check_snmp.c:831 | 3592 | msgid "Exit status must be a positive integer" |
3593 | msgstr "" | ||
3594 | |||
4467 | #, c-format | 3595 | #, c-format |
4468 | msgid "Could not reallocate labels[%d]" | 3596 | msgid "Could not reallocate labels[%d]" |
4469 | msgstr "" | 3597 | msgstr "" |
4470 | 3598 | ||
4471 | #: plugins/check_snmp.c:844 | ||
4472 | msgid "Could not reallocate labels\n" | 3599 | msgid "Could not reallocate labels\n" |
4473 | msgstr "" | 3600 | msgstr "" |
4474 | 3601 | ||
4475 | #: plugins/check_snmp.c:860 | ||
4476 | #, c-format | 3602 | #, c-format |
4477 | msgid "Could not reallocate units [%d]\n" | 3603 | msgid "Could not reallocate units [%d]\n" |
4478 | msgstr "" | 3604 | msgstr "" |
4479 | 3605 | ||
4480 | #: plugins/check_snmp.c:872 | ||
4481 | msgid "Could not realloc() units\n" | 3606 | msgid "Could not realloc() units\n" |
4482 | msgstr "" | 3607 | msgstr "" |
4483 | 3608 | ||
4484 | #: plugins/check_snmp.c:889 | ||
4485 | msgid "Rate multiplier must be a positive integer" | 3609 | msgid "Rate multiplier must be a positive integer" |
4486 | msgstr "" | 3610 | msgstr "" |
4487 | 3611 | ||
4488 | #: plugins/check_snmp.c:947 | ||
4489 | msgid "No host specified\n" | 3612 | msgid "No host specified\n" |
4490 | msgstr "" | 3613 | msgstr "" |
4491 | 3614 | ||
4492 | #: plugins/check_snmp.c:951 | ||
4493 | msgid "No OIDs specified\n" | 3615 | msgid "No OIDs specified\n" |
4494 | msgstr "" | 3616 | msgstr "" |
4495 | 3617 | ||
4496 | #: plugins/check_snmp.c:973 | ||
4497 | msgid "Invalid seclevel" | ||
4498 | msgstr "" | ||
4499 | |||
4500 | #: plugins/check_snmp.c:980 plugins/check_snmp.c:983 plugins/check_snmp.c:1001 | ||
4501 | #, c-format | 3618 | #, c-format |
4502 | msgid "Required parameter: %s\n" | 3619 | msgid "Required parameter: %s\n" |
4503 | msgstr "" | 3620 | msgstr "" |
4504 | 3621 | ||
4505 | #: plugins/check_snmp.c:1022 | 3622 | msgid "Invalid seclevel" |
3623 | msgstr "" | ||
3624 | |||
4506 | msgid "Invalid SNMP version" | 3625 | msgid "Invalid SNMP version" |
4507 | msgstr "" | 3626 | msgstr "" |
4508 | 3627 | ||
4509 | #: plugins/check_snmp.c:1039 | ||
4510 | msgid "Unbalanced quotes\n" | 3628 | msgid "Unbalanced quotes\n" |
4511 | msgstr "" | 3629 | msgstr "" |
4512 | 3630 | ||
4513 | #: plugins/check_snmp.c:1088 | 3631 | #, c-format |
3632 | msgid "multiplier set (%.1f), but input is not a number: %s" | ||
3633 | msgstr "" | ||
3634 | |||
4514 | msgid "Check status of remote machines and obtain system information via SNMP" | 3635 | msgid "Check status of remote machines and obtain system information via SNMP" |
4515 | msgstr "" | 3636 | msgstr "" |
4516 | 3637 | ||
4517 | #: plugins/check_snmp.c:1101 | ||
4518 | msgid "Use SNMP GETNEXT instead of SNMP GET" | 3638 | msgid "Use SNMP GETNEXT instead of SNMP GET" |
4519 | msgstr "" | 3639 | msgstr "" |
4520 | 3640 | ||
4521 | #: plugins/check_snmp.c:1103 | ||
4522 | msgid "SNMP protocol version" | 3641 | msgid "SNMP protocol version" |
4523 | msgstr "" | 3642 | msgstr "" |
4524 | 3643 | ||
4525 | #: plugins/check_snmp.c:1105 | 3644 | msgid "SNMPv3 context" |
3645 | msgstr "" | ||
3646 | |||
4526 | msgid "SNMPv3 securityLevel" | 3647 | msgid "SNMPv3 securityLevel" |
4527 | msgstr "" | 3648 | msgstr "" |
4528 | 3649 | ||
4529 | #: plugins/check_snmp.c:1107 | ||
4530 | msgid "SNMPv3 auth proto" | 3650 | msgid "SNMPv3 auth proto" |
4531 | msgstr "" | 3651 | msgstr "" |
4532 | 3652 | ||
4533 | #: plugins/check_snmp.c:1109 | ||
4534 | msgid "SNMPv3 priv proto (default DES)" | 3653 | msgid "SNMPv3 priv proto (default DES)" |
4535 | msgstr "" | 3654 | msgstr "" |
4536 | 3655 | ||
4537 | #: plugins/check_snmp.c:1113 | ||
4538 | msgid "Optional community string for SNMP communication" | 3656 | msgid "Optional community string for SNMP communication" |
4539 | msgstr "" | 3657 | msgstr "" |
4540 | 3658 | ||
4541 | #: plugins/check_snmp.c:1114 | ||
4542 | msgid "default is" | 3659 | msgid "default is" |
4543 | msgstr "" | 3660 | msgstr "" |
4544 | 3661 | ||
4545 | #: plugins/check_snmp.c:1116 | ||
4546 | msgid "SNMPv3 username" | 3662 | msgid "SNMPv3 username" |
4547 | msgstr "" | 3663 | msgstr "" |
4548 | 3664 | ||
4549 | #: plugins/check_snmp.c:1118 | ||
4550 | msgid "SNMPv3 authentication password" | 3665 | msgid "SNMPv3 authentication password" |
4551 | msgstr "" | 3666 | msgstr "" |
4552 | 3667 | ||
4553 | #: plugins/check_snmp.c:1120 | ||
4554 | msgid "SNMPv3 privacy password" | 3668 | msgid "SNMPv3 privacy password" |
4555 | msgstr "" | 3669 | msgstr "" |
4556 | 3670 | ||
4557 | #: plugins/check_snmp.c:1124 | ||
4558 | msgid "Object identifier(s) or SNMP variables whose value you wish to query" | 3671 | msgid "Object identifier(s) or SNMP variables whose value you wish to query" |
4559 | msgstr "" | 3672 | msgstr "" |
4560 | 3673 | ||
4561 | #: plugins/check_snmp.c:1126 | ||
4562 | msgid "" | 3674 | msgid "" |
4563 | "List of MIBS to be loaded (default = none if using numeric OIDs or 'ALL'" | 3675 | "List of MIBS to be loaded (default = none if using numeric OIDs or 'ALL'" |
4564 | msgstr "" | 3676 | msgstr "" |
4565 | 3677 | ||
4566 | #: plugins/check_snmp.c:1127 | ||
4567 | msgid "for symbolic OIDs.)" | 3678 | msgid "for symbolic OIDs.)" |
4568 | msgstr "" | 3679 | msgstr "" |
4569 | 3680 | ||
4570 | #: plugins/check_snmp.c:1129 | ||
4571 | msgid "Delimiter to use when parsing returned data. Default is" | 3681 | msgid "Delimiter to use when parsing returned data. Default is" |
4572 | msgstr "" | 3682 | msgstr "" |
4573 | 3683 | ||
4574 | #: plugins/check_snmp.c:1130 | ||
4575 | msgid "Any data on the right hand side of the delimiter is considered" | 3684 | msgid "Any data on the right hand side of the delimiter is considered" |
4576 | msgstr "" | 3685 | msgstr "" |
4577 | 3686 | ||
4578 | #: plugins/check_snmp.c:1131 | ||
4579 | msgid "to be the data that should be used in the evaluation." | 3687 | msgid "to be the data that should be used in the evaluation." |
4580 | msgstr "" | 3688 | msgstr "" |
4581 | 3689 | ||
4582 | #: plugins/check_snmp.c:1135 | 3690 | msgid "If the check returns a 0 length string or NULL value" |
3691 | msgstr "" | ||
3692 | |||
3693 | msgid "This option allows you to choose what status you want it to exit" | ||
3694 | msgstr "" | ||
3695 | |||
3696 | msgid "Excluding this option renders the default exit of 3(STATE_UNKNOWN)" | ||
3697 | msgstr "" | ||
3698 | |||
3699 | msgid "0 = OK" | ||
3700 | msgstr "" | ||
3701 | |||
3702 | msgid "1 = WARNING" | ||
3703 | msgstr "" | ||
3704 | |||
3705 | msgid "2 = CRITICAL" | ||
3706 | msgstr "" | ||
3707 | |||
3708 | msgid "3 = UNKNOWN" | ||
3709 | msgstr "" | ||
3710 | |||
4583 | msgid "Warning threshold range(s)" | 3711 | msgid "Warning threshold range(s)" |
4584 | msgstr "" | 3712 | msgstr "" |
4585 | 3713 | ||
4586 | #: plugins/check_snmp.c:1137 | ||
4587 | msgid "Critical threshold range(s)" | 3714 | msgid "Critical threshold range(s)" |
4588 | msgstr "" | 3715 | msgstr "" |
4589 | 3716 | ||
4590 | #: plugins/check_snmp.c:1139 | ||
4591 | msgid "Enable rate calculation. See 'Rate Calculation' below" | 3717 | msgid "Enable rate calculation. See 'Rate Calculation' below" |
4592 | msgstr "" | 3718 | msgstr "" |
4593 | 3719 | ||
4594 | #: plugins/check_snmp.c:1141 | ||
4595 | msgid "" | 3720 | msgid "" |
4596 | "Converts rate per second. For example, set to 60 to convert to per minute" | 3721 | "Converts rate per second. For example, set to 60 to convert to per minute" |
4597 | msgstr "" | 3722 | msgstr "" |
4598 | 3723 | ||
4599 | #: plugins/check_snmp.c:1143 | 3724 | msgid "Add/subtract the specified OFFSET to numeric sensor data" |
4600 | msgid "Add/substract the specified OFFSET to numeric sensor data" | ||
4601 | msgstr "" | 3725 | msgstr "" |
4602 | 3726 | ||
4603 | #: plugins/check_snmp.c:1147 | ||
4604 | msgid "Return OK state (for that OID) if STRING is an exact match" | 3727 | msgid "Return OK state (for that OID) if STRING is an exact match" |
4605 | msgstr "" | 3728 | msgstr "" |
4606 | 3729 | ||
4607 | #: plugins/check_snmp.c:1149 | ||
4608 | msgid "" | 3730 | msgid "" |
4609 | "Return OK state (for that OID) if extended regular expression REGEX matches" | 3731 | "Return OK state (for that OID) if extended regular expression REGEX matches" |
4610 | msgstr "" | 3732 | msgstr "" |
4611 | 3733 | ||
4612 | #: plugins/check_snmp.c:1151 | ||
4613 | msgid "" | 3734 | msgid "" |
4614 | "Return OK state (for that OID) if case-insensitive extended REGEX matches" | 3735 | "Return OK state (for that OID) if case-insensitive extended REGEX matches" |
4615 | msgstr "" | 3736 | msgstr "" |
4616 | 3737 | ||
4617 | #: plugins/check_snmp.c:1153 | ||
4618 | msgid "Invert search result (CRITICAL if found)" | 3738 | msgid "Invert search result (CRITICAL if found)" |
4619 | msgstr "" | 3739 | msgstr "" |
4620 | 3740 | ||
4621 | #: plugins/check_snmp.c:1157 | ||
4622 | msgid "Prefix label for output from plugin" | 3741 | msgid "Prefix label for output from plugin" |
4623 | msgstr "" | 3742 | msgstr "" |
4624 | 3743 | ||
4625 | #: plugins/check_snmp.c:1159 | ||
4626 | msgid "Units label(s) for output data (e.g., 'sec.')." | 3744 | msgid "Units label(s) for output data (e.g., 'sec.')." |
4627 | msgstr "" | 3745 | msgstr "" |
4628 | 3746 | ||
4629 | #: plugins/check_snmp.c:1161 | ||
4630 | msgid "Separates output on multiple OID requests" | 3747 | msgid "Separates output on multiple OID requests" |
4631 | msgstr "" | 3748 | msgstr "" |
4632 | 3749 | ||
4633 | #: plugins/check_snmp.c:1165 | 3750 | msgid "Multiplies current value, 0 < n < 1 works as divider, defaults to 1" |
4634 | msgid "Number of retries to be used in the requests" | 3751 | msgstr "" |
3752 | |||
3753 | msgid "C-style format string for float values (see option -M)" | ||
3754 | msgstr "" | ||
3755 | |||
3756 | msgid "" | ||
3757 | "NOTE the final timeout value is calculated using this formula: " | ||
3758 | "timeout_interval * retries + 5" | ||
3759 | msgstr "" | ||
3760 | |||
3761 | msgid "Number of retries to be used in the requests, default: " | ||
4635 | msgstr "" | 3762 | msgstr "" |
4636 | 3763 | ||
4637 | #: plugins/check_snmp.c:1168 | ||
4638 | msgid "Label performance data with OIDs instead of --label's" | 3764 | msgid "Label performance data with OIDs instead of --label's" |
4639 | msgstr "" | 3765 | msgstr "" |
4640 | 3766 | ||
4641 | #: plugins/check_snmp.c:1173 | 3767 | msgid "Tell snmpget to not print errors encountered when parsing MIB files" |
3768 | msgstr "" | ||
3769 | |||
4642 | msgid "" | 3770 | msgid "" |
4643 | "This plugin uses the 'snmpget' command included with the NET-SNMP package." | 3771 | "This plugin uses the 'snmpget' command included with the NET-SNMP package." |
4644 | msgstr "" | 3772 | msgstr "" |
4645 | 3773 | ||
4646 | #: plugins/check_snmp.c:1174 | ||
4647 | msgid "" | 3774 | msgid "" |
4648 | "if you don't have the package installed, you will need to download it from" | 3775 | "if you don't have the package installed, you will need to download it from" |
4649 | msgstr "" | 3776 | msgstr "" |
4650 | 3777 | ||
4651 | #: plugins/check_snmp.c:1175 | ||
4652 | msgid "http://net-snmp.sourceforge.net before you can use this plugin." | 3778 | msgid "http://net-snmp.sourceforge.net before you can use this plugin." |
4653 | msgstr "" | 3779 | msgstr "" |
4654 | 3780 | ||
4655 | #: plugins/check_snmp.c:1179 | ||
4656 | msgid "" | 3781 | msgid "" |
4657 | "- Multiple OIDs (and labels) may be indicated by a comma or space-delimited " | 3782 | "- Multiple OIDs (and labels) may be indicated by a comma or space-delimited " |
4658 | msgstr "" | 3783 | msgstr "" |
4659 | 3784 | ||
4660 | #: plugins/check_snmp.c:1180 | ||
4661 | msgid "list (lists with internal spaces must be quoted)." | 3785 | msgid "list (lists with internal spaces must be quoted)." |
4662 | msgstr "" | 3786 | msgstr "" |
4663 | 3787 | ||
4664 | #: plugins/check_snmp.c:1184 | ||
4665 | msgid "" | 3788 | msgid "" |
4666 | "- When checking multiple OIDs, separate ranges by commas like '-w " | 3789 | "- When checking multiple OIDs, separate ranges by commas like '-w " |
4667 | "1:10,1:,:20'" | 3790 | "1:10,1:,:20'" |
4668 | msgstr "" | 3791 | msgstr "" |
4669 | 3792 | ||
4670 | #: plugins/check_snmp.c:1185 | ||
4671 | msgid "- Note that only one string and one regex may be checked at present" | 3793 | msgid "- Note that only one string and one regex may be checked at present" |
4672 | msgstr "" | 3794 | msgstr "" |
4673 | 3795 | ||
4674 | #: plugins/check_snmp.c:1186 | ||
4675 | msgid "" | 3796 | msgid "" |
4676 | "- All evaluation methods other than PR, STR, and SUBSTR expect that the value" | 3797 | "- All evaluation methods other than PR, STR, and SUBSTR expect that the value" |
4677 | msgstr "" | 3798 | msgstr "" |
4678 | 3799 | ||
4679 | #: plugins/check_snmp.c:1187 | ||
4680 | msgid "returned from the SNMP query is an unsigned integer." | 3800 | msgid "returned from the SNMP query is an unsigned integer." |
4681 | msgstr "" | 3801 | msgstr "" |
4682 | 3802 | ||
4683 | #: plugins/check_snmp.c:1190 | ||
4684 | msgid "Rate Calculation:" | 3803 | msgid "Rate Calculation:" |
4685 | msgstr "" | 3804 | msgstr "" |
4686 | 3805 | ||
4687 | #: plugins/check_snmp.c:1191 | ||
4688 | msgid "In many places, SNMP returns counters that are only meaningful when" | 3806 | msgid "In many places, SNMP returns counters that are only meaningful when" |
4689 | msgstr "" | 3807 | msgstr "" |
4690 | 3808 | ||
4691 | #: plugins/check_snmp.c:1192 | ||
4692 | msgid "calculating the counter difference since the last check. check_snmp" | 3809 | msgid "calculating the counter difference since the last check. check_snmp" |
4693 | msgstr "" | 3810 | msgstr "" |
4694 | 3811 | ||
4695 | #: plugins/check_snmp.c:1193 | ||
4696 | msgid "saves the last state information in a file so that the rate per second" | 3812 | msgid "saves the last state information in a file so that the rate per second" |
4697 | msgstr "" | 3813 | msgstr "" |
4698 | 3814 | ||
4699 | #: plugins/check_snmp.c:1194 | ||
4700 | msgid "can be calculated. Use the --rate option to save state information." | 3815 | msgid "can be calculated. Use the --rate option to save state information." |
4701 | msgstr "" | 3816 | msgstr "" |
4702 | 3817 | ||
4703 | #: plugins/check_snmp.c:1195 | ||
4704 | msgid "" | 3818 | msgid "" |
4705 | "On the first run, there will be no prior state - this will return with OK." | 3819 | "On the first run, there will be no prior state - this will return with OK." |
4706 | msgstr "" | 3820 | msgstr "" |
4707 | 3821 | ||
4708 | #: plugins/check_snmp.c:1196 | ||
4709 | msgid "The state is uniquely determined by the arguments to the plugin, so" | 3822 | msgid "The state is uniquely determined by the arguments to the plugin, so" |
4710 | msgstr "" | 3823 | msgstr "" |
4711 | 3824 | ||
4712 | #: plugins/check_snmp.c:1197 | ||
4713 | msgid "changing the arguments will create a new state file." | 3825 | msgid "changing the arguments will create a new state file." |
4714 | msgstr "" | 3826 | msgstr "" |
4715 | 3827 | ||
4716 | #: plugins/check_ssh.c:165 | ||
4717 | msgid "Port number must be a positive integer" | 3828 | msgid "Port number must be a positive integer" |
4718 | msgstr "" | 3829 | msgstr "" |
4719 | 3830 | ||
4720 | #: plugins/check_ssh.c:232 | ||
4721 | #, c-format | 3831 | #, c-format |
4722 | msgid "Server answer: %s" | 3832 | msgid "Server answer: %s" |
4723 | msgstr "" | 3833 | msgstr "" |
4724 | 3834 | ||
4725 | #: plugins/check_ssh.c:251 | ||
4726 | #, c-format | 3835 | #, c-format |
4727 | msgid "SSH WARNING - %s (protocol %s) version mismatch, expected '%s'\n" | 3836 | msgid "SSH CRITICAL - %s (protocol %s) version mismatch, expected '%s'\n" |
3837 | msgstr "" | ||
3838 | |||
3839 | #, c-format | ||
3840 | msgid "" | ||
3841 | "SSH CRITICAL - %s (protocol %s) protocol version mismatch, expected '%s'\n" | ||
4728 | msgstr "" | 3842 | msgstr "" |
4729 | 3843 | ||
4730 | #: plugins/check_ssh.c:260 | ||
4731 | #, c-format | 3844 | #, c-format |
4732 | msgid "SSH OK - %s (protocol %s) | %s\n" | 3845 | msgid "SSH OK - %s (protocol %s) | %s\n" |
4733 | msgstr "" | 3846 | msgstr "" |
4734 | 3847 | ||
4735 | #: plugins/check_ssh.c:281 | ||
4736 | msgid "Try to connect to an SSH server at specified server and port" | 3848 | msgid "Try to connect to an SSH server at specified server and port" |
4737 | msgstr "" | 3849 | msgstr "" |
4738 | 3850 | ||
4739 | #: plugins/check_ssh.c:297 | ||
4740 | msgid "" | 3851 | msgid "" |
4741 | "Warn if string doesn't match expected server version (ex: OpenSSH_3.9p1)" | 3852 | "Alert if string doesn't match expected server version (ex: OpenSSH_3.9p1)" |
3853 | msgstr "" | ||
3854 | |||
3855 | msgid "Alert if protocol doesn't match expected protocol version (ex: 2.0)" | ||
4742 | msgstr "" | 3856 | msgstr "" |
4743 | 3857 | ||
4744 | #: plugins/check_swap.c:169 | ||
4745 | #, c-format | 3858 | #, c-format |
4746 | msgid "Command: %s\n" | 3859 | msgid "Command: %s\n" |
4747 | msgstr "" | 3860 | msgstr "" |
4748 | 3861 | ||
4749 | #: plugins/check_swap.c:171 | ||
4750 | #, c-format | 3862 | #, c-format |
4751 | msgid "Format: %s\n" | 3863 | msgid "Format: %s\n" |
4752 | msgstr "" | 3864 | msgstr "" |
4753 | 3865 | ||
4754 | #: plugins/check_swap.c:207 | ||
4755 | #, c-format | 3866 | #, c-format |
4756 | msgid "total=%.0f, used=%.0f, free=%.0f\n" | 3867 | msgid "total=%.0f, used=%.0f, free=%.0f\n" |
4757 | msgstr "" | 3868 | msgstr "" |
4758 | 3869 | ||
4759 | #: plugins/check_swap.c:221 | ||
4760 | #, c-format | 3870 | #, c-format |
4761 | msgid "total=%.0f, free=%.0f\n" | 3871 | msgid "total=%.0f, free=%.0f\n" |
4762 | msgstr "" | 3872 | msgstr "" |
4763 | 3873 | ||
4764 | #: plugins/check_swap.c:253 | ||
4765 | msgid "Error getting swap devices\n" | 3874 | msgid "Error getting swap devices\n" |
4766 | msgstr "" | 3875 | msgstr "" |
4767 | 3876 | ||
4768 | #: plugins/check_swap.c:256 | ||
4769 | msgid "SWAP OK: No swap devices defined\n" | 3877 | msgid "SWAP OK: No swap devices defined\n" |
4770 | msgstr "" | 3878 | msgstr "" |
4771 | 3879 | ||
4772 | #: plugins/check_swap.c:277 plugins/check_swap.c:319 | ||
4773 | msgid "swapctl failed: " | 3880 | msgid "swapctl failed: " |
4774 | msgstr "" | 3881 | msgstr "" |
4775 | 3882 | ||
4776 | #: plugins/check_swap.c:278 plugins/check_swap.c:320 | ||
4777 | msgid "Error in swapctl call\n" | 3883 | msgid "Error in swapctl call\n" |
4778 | msgstr "" | 3884 | msgstr "" |
4779 | 3885 | ||
4780 | #: plugins/check_swap.c:357 | ||
4781 | #, c-format | 3886 | #, c-format |
4782 | msgid "SWAP %s - %d%% free (%d MB out of %d MB) %s|" | 3887 | msgid "SWAP %s - %d%% free (%dMB out of %dMB) %s|" |
4783 | msgstr "" | 3888 | msgstr "" |
4784 | 3889 | ||
4785 | #: plugins/check_swap.c:435 | 3890 | msgid "Warning threshold percentage must be <= 100!" |
4786 | msgid "Warning threshold must be integer or percentage!" | ||
4787 | msgstr "" | 3891 | msgstr "" |
4788 | 3892 | ||
4789 | #: plugins/check_swap.c:453 | 3893 | msgid "Warning threshold be positive integer or percentage!" |
4790 | msgid "Critical threshold must be integer or percentage!" | ||
4791 | msgstr "" | 3894 | msgstr "" |
4792 | 3895 | ||
4793 | #: plugins/check_swap.c:507 | 3896 | msgid "Critical threshold percentage must be <= 100!" |
4794 | msgid "Warning percentage should be more than critical percentage" | ||
4795 | msgstr "" | 3897 | msgstr "" |
4796 | 3898 | ||
4797 | #: plugins/check_swap.c:511 | 3899 | msgid "Critical threshold be positive integer or percentage!" |
4798 | msgid "Warning free space should be more than critical free space" | 3900 | msgstr "" |
3901 | |||
3902 | msgid "" | ||
3903 | "no-swap result must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) " | ||
3904 | "or integer (0-3)." | ||
3905 | msgstr "" | ||
3906 | |||
3907 | msgid "Warning should be more than critical" | ||
4799 | msgstr "" | 3908 | msgstr "" |
4800 | 3909 | ||
4801 | #: plugins/check_swap.c:525 | ||
4802 | msgid "Check swap space on local machine." | 3910 | msgid "Check swap space on local machine." |
4803 | msgstr "" | 3911 | msgstr "" |
4804 | 3912 | ||
4805 | #: plugins/check_swap.c:535 | ||
4806 | msgid "" | 3913 | msgid "" |
4807 | "Exit with WARNING status if less than INTEGER bytes of swap space are free" | 3914 | "Exit with WARNING status if less than INTEGER bytes of swap space are free" |
4808 | msgstr "" | 3915 | msgstr "" |
4809 | 3916 | ||
4810 | #: plugins/check_swap.c:537 | ||
4811 | msgid "Exit with WARNING status if less than PERCENT of swap space is free" | 3917 | msgid "Exit with WARNING status if less than PERCENT of swap space is free" |
4812 | msgstr "" | 3918 | msgstr "" |
4813 | 3919 | ||
4814 | #: plugins/check_swap.c:539 | ||
4815 | msgid "" | 3920 | msgid "" |
4816 | "Exit with CRITICAL status if less than INTEGER bytes of swap space are free" | 3921 | "Exit with CRITICAL status if less than INTEGER bytes of swap space are free" |
4817 | msgstr "" | 3922 | msgstr "" |
4818 | 3923 | ||
4819 | #: plugins/check_swap.c:541 | 3924 | msgid "Exit with CRITICAL status if less than PERCENT of swap space is free" |
4820 | msgid "Exit with CRITCAL status if less than PERCENT of swap space is free" | ||
4821 | msgstr "" | 3925 | msgstr "" |
4822 | 3926 | ||
4823 | #: plugins/check_swap.c:543 | ||
4824 | msgid "Conduct comparisons for all swap partitions, one by one" | 3927 | msgid "Conduct comparisons for all swap partitions, one by one" |
4825 | msgstr "" | 3928 | msgstr "" |
4826 | 3929 | ||
4827 | #: plugins/check_swap.c:548 | 3930 | msgid "" |
3931 | "Resulting state when there is no swap regardless of thresholds. Default:" | ||
3932 | msgstr "" | ||
3933 | |||
3934 | msgid "" | ||
3935 | "Both INTEGER and PERCENT thresholds can be specified, they are all checked." | ||
3936 | msgstr "" | ||
3937 | |||
4828 | msgid "On AIX, if -a is specified, uses lsps -a, otherwise uses lsps -s." | 3938 | msgid "On AIX, if -a is specified, uses lsps -a, otherwise uses lsps -s." |
4829 | msgstr "" | 3939 | msgstr "" |
4830 | 3940 | ||
4831 | #: plugins/check_tcp.c:206 | ||
4832 | msgid "CRITICAL - Generic check_tcp called with unknown service\n" | 3941 | msgid "CRITICAL - Generic check_tcp called with unknown service\n" |
4833 | msgstr "" | 3942 | msgstr "" |
4834 | 3943 | ||
4835 | #: plugins/check_tcp.c:230 | ||
4836 | msgid "With UDP checks, a send/expect string must be specified." | 3944 | msgid "With UDP checks, a send/expect string must be specified." |
4837 | msgstr "" | 3945 | msgstr "" |
4838 | 3946 | ||
4839 | #: plugins/check_tcp.c:431 | ||
4840 | msgid "No arguments found" | 3947 | msgid "No arguments found" |
4841 | msgstr "" | 3948 | msgstr "" |
4842 | 3949 | ||
4843 | #: plugins/check_tcp.c:534 | ||
4844 | msgid "Maxbytes must be a positive integer" | 3950 | msgid "Maxbytes must be a positive integer" |
4845 | msgstr "" | 3951 | msgstr "" |
4846 | 3952 | ||
4847 | #: plugins/check_tcp.c:552 | ||
4848 | msgid "Refuse must be one of ok, warn, crit" | 3953 | msgid "Refuse must be one of ok, warn, crit" |
4849 | msgstr "" | 3954 | msgstr "" |
4850 | 3955 | ||
4851 | #: plugins/check_tcp.c:562 | ||
4852 | msgid "Mismatch must be one of ok, warn, crit" | 3956 | msgid "Mismatch must be one of ok, warn, crit" |
4853 | msgstr "" | 3957 | msgstr "" |
4854 | 3958 | ||
4855 | #: plugins/check_tcp.c:568 | ||
4856 | msgid "Delay must be a positive integer" | 3959 | msgid "Delay must be a positive integer" |
4857 | msgstr "" | 3960 | msgstr "" |
4858 | 3961 | ||
4859 | #: plugins/check_tcp.c:613 | ||
4860 | msgid "You must provide a server address" | 3962 | msgid "You must provide a server address" |
4861 | msgstr "" | 3963 | msgstr "" |
4862 | 3964 | ||
4863 | #: plugins/check_tcp.c:615 | ||
4864 | msgid "Invalid hostname, address or socket" | 3965 | msgid "Invalid hostname, address or socket" |
4865 | msgstr "" | 3966 | msgstr "" |
4866 | 3967 | ||
4867 | #: plugins/check_tcp.c:629 | ||
4868 | #, c-format | 3968 | #, c-format |
4869 | msgid "" | 3969 | msgid "" |
4870 | "This plugin tests %s connections with the specified host (or unix socket).\n" | 3970 | "This plugin tests %s connections with the specified host (or unix socket).\n" |
4871 | "\n" | 3971 | "\n" |
4872 | msgstr "" | 3972 | msgstr "" |
4873 | 3973 | ||
4874 | #: plugins/check_tcp.c:642 | ||
4875 | msgid "" | 3974 | msgid "" |
4876 | "Can use \\n, \\r, \\t or \\ in send or quit string. Must come before send or " | 3975 | "Can use \\n, \\r, \\t or \\\\ in send or quit string. Must come before send " |
4877 | "quit option" | 3976 | "or quit option" |
4878 | msgstr "" | 3977 | msgstr "" |
4879 | 3978 | ||
4880 | #: plugins/check_tcp.c:643 | ||
4881 | msgid "Default: nothing added to send, \\r\\n added to end of quit" | 3979 | msgid "Default: nothing added to send, \\r\\n added to end of quit" |
4882 | msgstr "" | 3980 | msgstr "" |
4883 | 3981 | ||
4884 | #: plugins/check_tcp.c:645 | ||
4885 | msgid "String to send to the server" | 3982 | msgid "String to send to the server" |
4886 | msgstr "" | 3983 | msgstr "" |
4887 | 3984 | ||
4888 | #: plugins/check_tcp.c:647 | ||
4889 | msgid "String to expect in server response" | 3985 | msgid "String to expect in server response" |
4890 | msgstr "" | 3986 | msgstr "" |
4891 | 3987 | ||
4892 | #: plugins/check_tcp.c:647 | ||
4893 | msgid "(may be repeated)" | 3988 | msgid "(may be repeated)" |
4894 | msgstr "" | 3989 | msgstr "" |
4895 | 3990 | ||
4896 | #: plugins/check_tcp.c:649 | ||
4897 | msgid "All expect strings need to occur in server response. Default is any" | 3991 | msgid "All expect strings need to occur in server response. Default is any" |
4898 | msgstr "" | 3992 | msgstr "" |
4899 | 3993 | ||
4900 | #: plugins/check_tcp.c:651 | ||
4901 | msgid "String to send server to initiate a clean close of the connection" | 3994 | msgid "String to send server to initiate a clean close of the connection" |
4902 | msgstr "" | 3995 | msgstr "" |
4903 | 3996 | ||
4904 | #: plugins/check_tcp.c:653 | ||
4905 | msgid "Accept TCP refusals with states ok, warn, crit (default: crit)" | 3997 | msgid "Accept TCP refusals with states ok, warn, crit (default: crit)" |
4906 | msgstr "" | 3998 | msgstr "" |
4907 | 3999 | ||
4908 | #: plugins/check_tcp.c:655 | ||
4909 | msgid "" | 4000 | msgid "" |
4910 | "Accept expected string mismatches with states ok, warn, crit (default: warn)" | 4001 | "Accept expected string mismatches with states ok, warn, crit (default: warn)" |
4911 | msgstr "" | 4002 | msgstr "" |
4912 | 4003 | ||
4913 | #: plugins/check_tcp.c:657 | ||
4914 | msgid "Hide output from TCP socket" | 4004 | msgid "Hide output from TCP socket" |
4915 | msgstr "" | 4005 | msgstr "" |
4916 | 4006 | ||
4917 | #: plugins/check_tcp.c:659 | ||
4918 | msgid "Close connection once more than this number of bytes are received" | 4007 | msgid "Close connection once more than this number of bytes are received" |
4919 | msgstr "" | 4008 | msgstr "" |
4920 | 4009 | ||
4921 | #: plugins/check_tcp.c:661 | ||
4922 | msgid "Seconds to wait between sending string and polling for response" | 4010 | msgid "Seconds to wait between sending string and polling for response" |
4923 | msgstr "" | 4011 | msgstr "" |
4924 | 4012 | ||
4925 | #: plugins/check_tcp.c:666 | ||
4926 | msgid "1st is #days for warning, 2nd is critical (if not specified - 0)." | 4013 | msgid "1st is #days for warning, 2nd is critical (if not specified - 0)." |
4927 | msgstr "" | 4014 | msgstr "" |
4928 | 4015 | ||
4929 | #: plugins/check_tcp.c:668 | ||
4930 | msgid "Use SSL for the connection." | 4016 | msgid "Use SSL for the connection." |
4931 | msgstr "" | 4017 | msgstr "" |
4932 | 4018 | ||
4933 | #: plugins/check_time.c:102 | 4019 | msgid "SSL server_name" |
4020 | msgstr "" | ||
4021 | |||
4934 | #, c-format | 4022 | #, c-format |
4935 | msgid "TIME UNKNOWN - could not connect to server %s, port %d\n" | 4023 | msgid "TIME UNKNOWN - could not connect to server %s, port %d\n" |
4936 | msgstr "" | 4024 | msgstr "" |
4937 | 4025 | ||
4938 | #: plugins/check_time.c:115 | ||
4939 | #, c-format | 4026 | #, c-format |
4940 | msgid "TIME UNKNOWN - could not send UDP request to server %s, port %d\n" | 4027 | msgid "TIME UNKNOWN - could not send UDP request to server %s, port %d\n" |
4941 | msgstr "" | 4028 | msgstr "" |
4942 | 4029 | ||
4943 | #: plugins/check_time.c:139 | ||
4944 | #, c-format | 4030 | #, c-format |
4945 | msgid "TIME UNKNOWN - no data received from server %s, port %d\n" | 4031 | msgid "TIME UNKNOWN - no data received from server %s, port %d\n" |
4946 | msgstr "" | 4032 | msgstr "" |
4947 | 4033 | ||
4948 | #: plugins/check_time.c:152 | ||
4949 | #, c-format | 4034 | #, c-format |
4950 | msgid "TIME %s - %d second response time|%s\n" | 4035 | msgid "TIME %s - %d second response time|%s\n" |
4951 | msgstr "" | 4036 | msgstr "" |
4952 | 4037 | ||
4953 | #: plugins/check_time.c:170 | ||
4954 | #, c-format | 4038 | #, c-format |
4955 | msgid "TIME %s - %lu second time difference|%s %s\n" | 4039 | msgid "TIME %s - %lu second time difference|%s %s\n" |
4956 | msgstr "" | 4040 | msgstr "" |
4957 | 4041 | ||
4958 | #: plugins/check_time.c:254 | ||
4959 | msgid "Warning thresholds must be a positive integer" | 4042 | msgid "Warning thresholds must be a positive integer" |
4960 | msgstr "" | 4043 | msgstr "" |
4961 | 4044 | ||
4962 | #: plugins/check_time.c:273 | ||
4963 | msgid "Critical thresholds must be a positive integer" | 4045 | msgid "Critical thresholds must be a positive integer" |
4964 | msgstr "" | 4046 | msgstr "" |
4965 | 4047 | ||
4966 | #: plugins/check_time.c:339 | ||
4967 | msgid "This plugin will check the time on the specified host." | 4048 | msgid "This plugin will check the time on the specified host." |
4968 | msgstr "" | 4049 | msgstr "" |
4969 | 4050 | ||
4970 | #: plugins/check_time.c:351 | ||
4971 | msgid "Use UDP to connect, not TCP" | 4051 | msgid "Use UDP to connect, not TCP" |
4972 | msgstr "" | 4052 | msgstr "" |
4973 | 4053 | ||
4974 | #: plugins/check_time.c:353 | ||
4975 | msgid "Time difference (sec.) necessary to result in a warning status" | 4054 | msgid "Time difference (sec.) necessary to result in a warning status" |
4976 | msgstr "" | 4055 | msgstr "" |
4977 | 4056 | ||
4978 | #: plugins/check_time.c:355 | ||
4979 | msgid "Time difference (sec.) necessary to result in a critical status" | 4057 | msgid "Time difference (sec.) necessary to result in a critical status" |
4980 | msgstr "" | 4058 | msgstr "" |
4981 | 4059 | ||
4982 | #: plugins/check_time.c:357 | ||
4983 | msgid "Response time (sec.) necessary to result in warning status" | 4060 | msgid "Response time (sec.) necessary to result in warning status" |
4984 | msgstr "" | 4061 | msgstr "" |
4985 | 4062 | ||
4986 | #: plugins/check_time.c:359 | ||
4987 | msgid "Response time (sec.) necessary to result in critical status" | 4063 | msgid "Response time (sec.) necessary to result in critical status" |
4988 | msgstr "" | 4064 | msgstr "" |
4989 | 4065 | ||
4990 | #: plugins/check_ups.c:144 | ||
4991 | msgid "On Battery, Low Battery" | 4066 | msgid "On Battery, Low Battery" |
4992 | msgstr "" | 4067 | msgstr "" |
4993 | 4068 | ||
4994 | #: plugins/check_ups.c:149 | ||
4995 | msgid "Online" | 4069 | msgid "Online" |
4996 | msgstr "" | 4070 | msgstr "" |
4997 | 4071 | ||
4998 | #: plugins/check_ups.c:152 | ||
4999 | msgid "On Battery" | 4072 | msgid "On Battery" |
5000 | msgstr "" | 4073 | msgstr "" |
5001 | 4074 | ||
5002 | #: plugins/check_ups.c:156 | ||
5003 | msgid ", Low Battery" | 4075 | msgid ", Low Battery" |
5004 | msgstr "" | 4076 | msgstr "" |
5005 | 4077 | ||
5006 | #: plugins/check_ups.c:160 | ||
5007 | msgid ", Calibrating" | 4078 | msgid ", Calibrating" |
5008 | msgstr "" | 4079 | msgstr "" |
5009 | 4080 | ||
5010 | #: plugins/check_ups.c:163 | ||
5011 | msgid ", Replace Battery" | 4081 | msgid ", Replace Battery" |
5012 | msgstr "" | 4082 | msgstr "" |
5013 | 4083 | ||
5014 | #: plugins/check_ups.c:167 | ||
5015 | msgid ", On Bypass" | 4084 | msgid ", On Bypass" |
5016 | msgstr "" | 4085 | msgstr "" |
5017 | 4086 | ||
5018 | #: plugins/check_ups.c:170 | ||
5019 | msgid ", Overload" | 4087 | msgid ", Overload" |
5020 | msgstr "" | 4088 | msgstr "" |
5021 | 4089 | ||
5022 | #: plugins/check_ups.c:173 | ||
5023 | msgid ", Trimming" | 4090 | msgid ", Trimming" |
5024 | msgstr "" | 4091 | msgstr "" |
5025 | 4092 | ||
5026 | #: plugins/check_ups.c:176 | ||
5027 | msgid ", Boosting" | 4093 | msgid ", Boosting" |
5028 | msgstr "" | 4094 | msgstr "" |
5029 | 4095 | ||
5030 | #: plugins/check_ups.c:179 | ||
5031 | msgid ", Charging" | 4096 | msgid ", Charging" |
5032 | msgstr "" | 4097 | msgstr "" |
5033 | 4098 | ||
5034 | #: plugins/check_ups.c:182 | ||
5035 | msgid ", Discharging" | 4099 | msgid ", Discharging" |
5036 | msgstr "" | 4100 | msgstr "" |
5037 | 4101 | ||
5038 | #: plugins/check_ups.c:185 | ||
5039 | msgid ", Unknown" | 4102 | msgid ", Unknown" |
5040 | msgstr "" | 4103 | msgstr "" |
5041 | 4104 | ||
5042 | #: plugins/check_ups.c:324 | ||
5043 | msgid "UPS does not support any available options\n" | 4105 | msgid "UPS does not support any available options\n" |
5044 | msgstr "" | 4106 | msgstr "" |
5045 | 4107 | ||
5046 | #: plugins/check_ups.c:348 plugins/check_ups.c:411 | ||
5047 | msgid "Invalid response received from host" | 4108 | msgid "Invalid response received from host" |
5048 | msgstr "" | 4109 | msgstr "" |
5049 | 4110 | ||
5050 | #: plugins/check_ups.c:420 | 4111 | msgid "UPS name to long for buffer" |
4112 | msgstr "" | ||
4113 | |||
5051 | #, c-format | 4114 | #, c-format |
5052 | msgid "CRITICAL - no such UPS '%s' on that host\n" | 4115 | msgid "CRITICAL - no such UPS '%s' on that host\n" |
5053 | msgstr "" | 4116 | msgstr "" |
5054 | 4117 | ||
5055 | #: plugins/check_ups.c:430 | ||
5056 | msgid "CRITICAL - UPS data is stale" | 4118 | msgid "CRITICAL - UPS data is stale" |
5057 | msgstr "" | 4119 | msgstr "" |
5058 | 4120 | ||
5059 | #: plugins/check_ups.c:435 | ||
5060 | #, c-format | 4121 | #, c-format |
5061 | msgid "Unknown error: %s\n" | 4122 | msgid "Unknown error: %s\n" |
5062 | msgstr "" | 4123 | msgstr "" |
5063 | 4124 | ||
5064 | #: plugins/check_ups.c:442 | ||
5065 | msgid "Error: unable to parse variable" | 4125 | msgid "Error: unable to parse variable" |
5066 | msgstr "" | 4126 | msgstr "" |
5067 | 4127 | ||
5068 | #: plugins/check_ups.c:549 | ||
5069 | msgid "Unrecognized UPS variable" | 4128 | msgid "Unrecognized UPS variable" |
5070 | msgstr "" | 4129 | msgstr "" |
5071 | 4130 | ||
5072 | #: plugins/check_ups.c:587 | ||
5073 | msgid "Error : no UPS indicated" | 4131 | msgid "Error : no UPS indicated" |
5074 | msgstr "" | 4132 | msgstr "" |
5075 | 4133 | ||
5076 | #: plugins/check_ups.c:607 | ||
5077 | msgid "" | 4134 | msgid "" |
5078 | "This plugin tests the UPS service on the specified host. Network UPS Tools" | 4135 | "This plugin tests the UPS service on the specified host. Network UPS Tools" |
5079 | msgstr "" | 4136 | msgstr "" |
5080 | 4137 | ||
5081 | #: plugins/check_ups.c:608 | ||
5082 | msgid "from www.networkupstools.org must be running for this plugin to work." | 4138 | msgid "from www.networkupstools.org must be running for this plugin to work." |
5083 | msgstr "" | 4139 | msgstr "" |
5084 | 4140 | ||
5085 | #: plugins/check_ups.c:620 | ||
5086 | msgid "Name of UPS" | 4141 | msgid "Name of UPS" |
5087 | msgstr "" | 4142 | msgstr "" |
5088 | 4143 | ||
5089 | #: plugins/check_ups.c:622 | ||
5090 | msgid "Output of temperatures in Celsius" | 4144 | msgid "Output of temperatures in Celsius" |
5091 | msgstr "" | 4145 | msgstr "" |
5092 | 4146 | ||
5093 | #: plugins/check_ups.c:624 | ||
5094 | msgid "Valid values for STRING are" | 4147 | msgid "Valid values for STRING are" |
5095 | msgstr "" | 4148 | msgstr "" |
5096 | 4149 | ||
5097 | #: plugins/check_ups.c:635 | ||
5098 | msgid "" | 4150 | msgid "" |
5099 | "This plugin attempts to determine the status of a UPS (Uninterruptible Power" | 4151 | "This plugin attempts to determine the status of a UPS (Uninterruptible Power" |
5100 | msgstr "" | 4152 | msgstr "" |
5101 | 4153 | ||
5102 | #: plugins/check_ups.c:636 | ||
5103 | msgid "" | 4154 | msgid "" |
5104 | "Supply) on a local or remote host. If the UPS is online or calibrating, the" | 4155 | "Supply) on a local or remote host. If the UPS is online or calibrating, the" |
5105 | msgstr "" | 4156 | msgstr "" |
5106 | 4157 | ||
5107 | #: plugins/check_ups.c:637 | ||
5108 | msgid "" | 4158 | msgid "" |
5109 | "plugin will return an OK state. If the battery is on it will return a WARNING" | 4159 | "plugin will return an OK state. If the battery is on it will return a WARNING" |
5110 | msgstr "" | 4160 | msgstr "" |
5111 | 4161 | ||
5112 | #: plugins/check_ups.c:638 | ||
5113 | msgid "" | 4162 | msgid "" |
5114 | "state. If the UPS is off or has a low battery the plugin will return a " | 4163 | "state. If the UPS is off or has a low battery the plugin will return a " |
5115 | "CRITICAL" | 4164 | "CRITICAL" |
5116 | msgstr "" | 4165 | msgstr "" |
5117 | 4166 | ||
5118 | #: plugins/check_ups.c:643 | ||
5119 | msgid "" | 4167 | msgid "" |
5120 | "You may also specify a variable to check (such as temperature, utility " | 4168 | "You may also specify a variable to check (such as temperature, utility " |
5121 | "voltage," | 4169 | "voltage," |
5122 | msgstr "" | 4170 | msgstr "" |
5123 | 4171 | ||
5124 | #: plugins/check_ups.c:644 | ||
5125 | msgid "" | 4172 | msgid "" |
5126 | "battery load, etc.) as well as warning and critical thresholds for the value" | 4173 | "battery load, etc.) as well as warning and critical thresholds for the value" |
5127 | msgstr "" | 4174 | msgstr "" |
5128 | 4175 | ||
5129 | #: plugins/check_ups.c:645 | ||
5130 | msgid "" | 4176 | msgid "" |
5131 | "of that variable. If the remote host has multiple UPS that are being " | 4177 | "of that variable. If the remote host has multiple UPS that are being " |
5132 | "monitored" | 4178 | "monitored" |
5133 | msgstr "" | 4179 | msgstr "" |
5134 | 4180 | ||
5135 | #: plugins/check_ups.c:646 | ||
5136 | msgid "you will have to use the --ups option to specify which UPS to check." | 4181 | msgid "you will have to use the --ups option to specify which UPS to check." |
5137 | msgstr "" | 4182 | msgstr "" |
5138 | 4183 | ||
5139 | #: plugins/check_ups.c:648 | ||
5140 | msgid "" | 4184 | msgid "" |
5141 | "This plugin requires that the UPSD daemon distributed with Russell Kroll's" | 4185 | "This plugin requires that the UPSD daemon distributed with Russell Kroll's" |
5142 | msgstr "" | 4186 | msgstr "" |
5143 | 4187 | ||
5144 | #: plugins/check_ups.c:649 | ||
5145 | msgid "" | 4188 | msgid "" |
5146 | "Network UPS Tools be installed on the remote host. If you do not have the" | 4189 | "Network UPS Tools be installed on the remote host. If you do not have the" |
5147 | msgstr "" | 4190 | msgstr "" |
5148 | 4191 | ||
5149 | #: plugins/check_ups.c:650 | ||
5150 | msgid "package installed on your system, you can download it from" | 4192 | msgid "package installed on your system, you can download it from" |
5151 | msgstr "" | 4193 | msgstr "" |
5152 | 4194 | ||
5153 | #: plugins/check_ups.c:651 | ||
5154 | msgid "http://www.networkupstools.org" | 4195 | msgid "http://www.networkupstools.org" |
5155 | msgstr "" | 4196 | msgstr "" |
5156 | 4197 | ||
5157 | #: plugins/check_users.c:110 | 4198 | #, c-format |
4199 | msgid "Could not enumerate RD sessions: %d\n" | ||
4200 | msgstr "" | ||
4201 | |||
5158 | #, c-format | 4202 | #, c-format |
5159 | msgid "# users=%d" | 4203 | msgid "# users=%d" |
5160 | msgstr "" | 4204 | msgstr "" |
5161 | 4205 | ||
5162 | #: plugins/check_users.c:133 | ||
5163 | msgid "Unable to read output" | 4206 | msgid "Unable to read output" |
5164 | msgstr "" | 4207 | msgstr "" |
5165 | 4208 | ||
5166 | #: plugins/check_users.c:140 | ||
5167 | #, c-format | 4209 | #, c-format |
5168 | msgid "USERS %s - %d users currently logged in |%s\n" | 4210 | msgid "USERS %s - %d users currently logged in |%s\n" |
5169 | msgstr "" | 4211 | msgstr "" |
5170 | 4212 | ||
5171 | #: plugins/check_users.c:219 | ||
5172 | msgid "This plugin checks the number of users currently logged in on the local" | 4213 | msgid "This plugin checks the number of users currently logged in on the local" |
5173 | msgstr "" | 4214 | msgstr "" |
5174 | 4215 | ||
5175 | #: plugins/check_users.c:220 | ||
5176 | msgid "" | 4216 | msgid "" |
5177 | "system and generates an error if the number exceeds the thresholds specified." | 4217 | "system and generates an error if the number exceeds the thresholds specified." |
5178 | msgstr "" | 4218 | msgstr "" |
5179 | 4219 | ||
5180 | #: plugins/check_users.c:230 | ||
5181 | msgid "Set WARNING status if more than INTEGER users are logged in" | 4220 | msgid "Set WARNING status if more than INTEGER users are logged in" |
5182 | msgstr "" | 4221 | msgstr "" |
5183 | 4222 | ||
5184 | #: plugins/check_users.c:232 | ||
5185 | msgid "Set CRITICAL status if more than INTEGER users are logged in" | 4223 | msgid "Set CRITICAL status if more than INTEGER users are logged in" |
5186 | msgstr "" | 4224 | msgstr "" |
5187 | 4225 | ||
5188 | #: plugins/check_ide_smart.c:256 | 4226 | msgid "" |
4227 | "DEPRECATION WARNING: the -q switch (quiet output) is no longer \"quiet\"." | ||
4228 | msgstr "" | ||
4229 | |||
4230 | msgid "Nagios-compatible output is now always returned." | ||
4231 | msgstr "" | ||
4232 | |||
4233 | msgid "SMART commands are broken and have been disabled (See Notes in --help)." | ||
4234 | msgstr "" | ||
4235 | |||
4236 | msgid "" | ||
4237 | "DEPRECATION WARNING: the -n switch (Nagios-compatible output) is now the" | ||
4238 | msgstr "" | ||
4239 | |||
4240 | msgid "default and will be removed from future releases." | ||
4241 | msgstr "" | ||
4242 | |||
5189 | #, c-format | 4243 | #, c-format |
5190 | msgid "CRITICAL - Couldn't open device %s: %s\n" | 4244 | msgid "CRITICAL - Couldn't open device %s: %s\n" |
5191 | msgstr "" | 4245 | msgstr "" |
5192 | 4246 | ||
5193 | #: plugins/check_ide_smart.c:261 | ||
5194 | #, c-format | 4247 | #, c-format |
5195 | msgid "CRITICAL - SMART_CMD_ENABLE\n" | 4248 | msgid "CRITICAL - SMART_CMD_ENABLE\n" |
5196 | msgstr "" | 4249 | msgstr "" |
5197 | 4250 | ||
5198 | #: plugins/check_ide_smart.c:323 plugins/check_ide_smart.c:350 | ||
5199 | #, c-format | 4251 | #, c-format |
5200 | msgid "CRITICAL - SMART_READ_VALUES: %s\n" | 4252 | msgid "CRITICAL - SMART_READ_VALUES: %s\n" |
5201 | msgstr "" | 4253 | msgstr "" |
5202 | 4254 | ||
5203 | #: plugins/check_ide_smart.c:421 | ||
5204 | #, c-format | 4255 | #, c-format |
5205 | msgid "CRITICAL - %d Harddrive PreFailure%cDetected! %d/%d tests failed.\n" | 4256 | msgid "CRITICAL - %d Harddrive PreFailure%cDetected! %d/%d tests failed.\n" |
5206 | msgstr "" | 4257 | msgstr "" |
5207 | 4258 | ||
5208 | #: plugins/check_ide_smart.c:429 | ||
5209 | #, c-format | 4259 | #, c-format |
5210 | msgid "WARNING - %d Harddrive Advisor%s Detected. %d/%d tests failed.\n" | 4260 | msgid "WARNING - %d Harddrive Advisor%s Detected. %d/%d tests failed.\n" |
5211 | msgstr "" | 4261 | msgstr "" |
5212 | 4262 | ||
5213 | #: plugins/check_ide_smart.c:437 | ||
5214 | #, c-format | 4263 | #, c-format |
5215 | msgid "OK - Operational (%d/%d tests passed)\n" | 4264 | msgid "OK - Operational (%d/%d tests passed)\n" |
5216 | msgstr "" | 4265 | msgstr "" |
5217 | 4266 | ||
5218 | #: plugins/check_ide_smart.c:441 | ||
5219 | #, c-format | 4267 | #, c-format |
5220 | msgid "ERROR - Status '%d' unknown. %d/%d tests passed\n" | 4268 | msgid "ERROR - Status '%d' unknown. %d/%d tests passed\n" |
5221 | msgstr "" | 4269 | msgstr "" |
5222 | 4270 | ||
5223 | #: plugins/check_ide_smart.c:474 | ||
5224 | #, c-format | 4271 | #, c-format |
5225 | msgid "OffLineStatus=%d {%s}, AutoOffLine=%s, OffLineTimeout=%d minutes\n" | 4272 | msgid "OffLineStatus=%d {%s}, AutoOffLine=%s, OffLineTimeout=%d minutes\n" |
5226 | msgstr "" | 4273 | msgstr "" |
5227 | 4274 | ||
5228 | #: plugins/check_ide_smart.c:480 | ||
5229 | #, c-format | 4275 | #, c-format |
5230 | msgid "OffLineCapability=%d {%s %s %s}\n" | 4276 | msgid "OffLineCapability=%d {%s %s %s}\n" |
5231 | msgstr "" | 4277 | msgstr "" |
5232 | 4278 | ||
5233 | #: plugins/check_ide_smart.c:486 | ||
5234 | #, c-format | 4279 | #, c-format |
5235 | msgid "SmartRevision=%d, CheckSum=%d, SmartCapability=%d {%s %s}\n" | 4280 | msgid "SmartRevision=%d, CheckSum=%d, SmartCapability=%d {%s %s}\n" |
5236 | msgstr "" | 4281 | msgstr "" |
5237 | 4282 | ||
5238 | #: plugins/check_ide_smart.c:508 plugins/check_ide_smart.c:532 | ||
5239 | #, c-format | 4283 | #, c-format |
5240 | msgid "CRITICAL - %s: %s\n" | 4284 | msgid "CRITICAL - %s: %s\n" |
5241 | msgstr "" | 4285 | msgstr "" |
5242 | 4286 | ||
5243 | #: plugins/check_ide_smart.c:553 plugins/check_ide_smart.c:580 | 4287 | #, c-format |
4288 | msgid "OK - Command sent (%s)\n" | ||
4289 | msgstr "" | ||
4290 | |||
5244 | #, c-format | 4291 | #, c-format |
5245 | msgid "CRITICAL - SMART_READ_THRESHOLDS: %s\n" | 4292 | msgid "CRITICAL - SMART_READ_THRESHOLDS: %s\n" |
5246 | msgstr "" | 4293 | msgstr "" |
5247 | 4294 | ||
5248 | #: plugins/check_ide_smart.c:599 | ||
5249 | #, c-format | 4295 | #, c-format |
5250 | msgid "" | 4296 | msgid "" |
5251 | "This plugin checks a local hard drive with the (Linux specific) SMART " | 4297 | "This plugin checks a local hard drive with the (Linux specific) SMART " |
5252 | "interface [http://smartlinux.sourceforge.net/smart/index.php]." | 4298 | "interface [http://smartlinux.sourceforge.net/smart/index.php]." |
5253 | msgstr "" | 4299 | msgstr "" |
5254 | 4300 | ||
5255 | #: plugins/check_ide_smart.c:609 | ||
5256 | msgid "Select device DEVICE" | 4301 | msgid "Select device DEVICE" |
5257 | msgstr "" | 4302 | msgstr "" |
5258 | 4303 | ||
5259 | #: plugins/check_ide_smart.c:610 | ||
5260 | msgid "" | 4304 | msgid "" |
5261 | "Note: if the device is selected with this option, _no_ other options are " | 4305 | "Note: if the device is specified without this option, any further option will" |
5262 | "accepted" | 4306 | msgstr "" |
4307 | |||
4308 | msgid "be ignored." | ||
4309 | msgstr "" | ||
4310 | |||
4311 | msgid "" | ||
4312 | "The SMART command modes (-i/--immediate, -0/--auto-off and -1/--auto-on) were" | ||
5263 | msgstr "" | 4313 | msgstr "" |
5264 | 4314 | ||
5265 | #: plugins/check_ide_smart.c:612 | 4315 | msgid "" |
5266 | msgid "Perform immediately offline tests" | 4316 | "broken in an underhand manner and have been disabled. You can use smartctl" |
5267 | msgstr "" | 4317 | msgstr "" |
5268 | 4318 | ||
5269 | #: plugins/check_ide_smart.c:614 | 4319 | msgid "instead:" |
5270 | msgid "Returns the number of failed tests" | ||
5271 | msgstr "" | 4320 | msgstr "" |
5272 | 4321 | ||
5273 | #: plugins/check_ide_smart.c:616 | 4322 | msgid "-0/--auto-off: use \"smartctl --offlineauto=off\"" |
5274 | msgid "Turn on automatic offline tests" | ||
5275 | msgstr "" | 4323 | msgstr "" |
5276 | 4324 | ||
5277 | #: plugins/check_ide_smart.c:618 | 4325 | msgid "-1/--auto-on: use \"smartctl --offlineauto=on\"" |
5278 | msgid "Turn off automatic offline tests" | ||
5279 | msgstr "" | 4326 | msgstr "" |
5280 | 4327 | ||
5281 | #: plugins/check_ide_smart.c:620 | 4328 | msgid "-i/--immediate: use \"smartctl --test=offline\"" |
5282 | msgid "Output suitable for the monitoring system" | ||
5283 | msgstr "" | 4329 | msgstr "" |
5284 | 4330 | ||
5285 | #: plugins/negate.c:99 | ||
5286 | msgid "No data returned from command\n" | 4331 | msgid "No data returned from command\n" |
5287 | msgstr "" | 4332 | msgstr "" |
5288 | 4333 | ||
5289 | #: plugins/negate.c:170 | ||
5290 | msgid "" | 4334 | msgid "" |
5291 | "Timeout result must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) " | 4335 | "Timeout result must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) " |
5292 | "or integer (0-3)." | 4336 | "or integer (0-3)." |
5293 | msgstr "" | 4337 | msgstr "" |
5294 | 4338 | ||
5295 | #: plugins/negate.c:174 | ||
5296 | msgid "" | 4339 | msgid "" |
5297 | "Ok must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or integer " | 4340 | "Ok must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or integer " |
5298 | "(0-3)." | 4341 | "(0-3)." |
5299 | msgstr "" | 4342 | msgstr "" |
5300 | 4343 | ||
5301 | #: plugins/negate.c:180 | ||
5302 | msgid "" | 4344 | msgid "" |
5303 | "Warning must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or " | 4345 | "Warning must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or " |
5304 | "integer (0-3)." | 4346 | "integer (0-3)." |
5305 | msgstr "" | 4347 | msgstr "" |
5306 | 4348 | ||
5307 | #: plugins/negate.c:185 | ||
5308 | msgid "" | 4349 | msgid "" |
5309 | "Critical must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or " | 4350 | "Critical must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or " |
5310 | "integer (0-3)." | 4351 | "integer (0-3)." |
5311 | msgstr "" | 4352 | msgstr "" |
5312 | 4353 | ||
5313 | #: plugins/negate.c:190 | ||
5314 | msgid "" | 4354 | msgid "" |
5315 | "Unknown must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or " | 4355 | "Unknown must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or " |
5316 | "integer (0-3)." | 4356 | "integer (0-3)." |
5317 | msgstr "" | 4357 | msgstr "" |
5318 | 4358 | ||
5319 | #: plugins/negate.c:217 | ||
5320 | msgid "Require path to command" | 4359 | msgid "Require path to command" |
5321 | msgstr "" | 4360 | msgstr "" |
5322 | 4361 | ||
5323 | #: plugins/negate.c:246 | ||
5324 | msgid "" | 4362 | msgid "" |
5325 | "Negates the status of a plugin (returns OK for CRITICAL and vice-versa)." | 4363 | "Negates the status of a plugin (returns OK for CRITICAL and vice-versa)." |
5326 | msgstr "" | 4364 | msgstr "" |
5327 | 4365 | ||
5328 | #: plugins/negate.c:247 | ||
5329 | msgid "Additional switches can be used to control which state becomes what." | 4366 | msgid "Additional switches can be used to control which state becomes what." |
5330 | msgstr "" | 4367 | msgstr "" |
5331 | 4368 | ||
5332 | #: plugins/negate.c:256 | ||
5333 | msgid "Keep timeout longer than the plugin timeout to retain CRITICAL status." | 4369 | msgid "Keep timeout longer than the plugin timeout to retain CRITICAL status." |
5334 | msgstr "" | 4370 | msgstr "" |
5335 | 4371 | ||
5336 | #: plugins/negate.c:258 | ||
5337 | msgid "Custom result on Negate timeouts; see below for STATUS definition\n" | 4372 | msgid "Custom result on Negate timeouts; see below for STATUS definition\n" |
5338 | msgstr "" | 4373 | msgstr "" |
5339 | 4374 | ||
5340 | #: plugins/negate.c:264 | ||
5341 | #, c-format | 4375 | #, c-format |
5342 | msgid "" | 4376 | msgid "" |
5343 | " STATUS can be 'OK', 'WARNING', 'CRITICAL' or 'UNKNOWN' without single\n" | 4377 | " STATUS can be 'OK', 'WARNING', 'CRITICAL' or 'UNKNOWN' without single\n" |
5344 | msgstr "" | 4378 | msgstr "" |
5345 | 4379 | ||
5346 | #: plugins/negate.c:265 | ||
5347 | #, c-format | 4380 | #, c-format |
5348 | msgid "" | 4381 | msgid "" |
5349 | " quotes. Numeric values are accepted. If nothing is specified, permutes\n" | 4382 | " quotes. Numeric values are accepted. If nothing is specified, permutes\n" |
5350 | msgstr "" | 4383 | msgstr "" |
5351 | 4384 | ||
5352 | #: plugins/negate.c:266 | ||
5353 | #, c-format | 4385 | #, c-format |
5354 | msgid " OK and CRITICAL.\n" | 4386 | msgid " OK and CRITICAL.\n" |
5355 | msgstr "" | 4387 | msgstr "" |
5356 | 4388 | ||
5357 | #: plugins/negate.c:268 | ||
5358 | #, c-format | 4389 | #, c-format |
5359 | msgid "" | 4390 | msgid "" |
5360 | " Substitute output text as well. Will only substitute text in CAPITALS\n" | 4391 | " Substitute output text as well. Will only substitute text in CAPITALS\n" |
5361 | msgstr "" | 4392 | msgstr "" |
5362 | 4393 | ||
5363 | #: plugins/negate.c:273 | ||
5364 | msgid "Run check_ping and invert result. Must use full path to plugin" | 4394 | msgid "Run check_ping and invert result. Must use full path to plugin" |
5365 | msgstr "" | 4395 | msgstr "" |
5366 | 4396 | ||
5367 | #: plugins/negate.c:275 | ||
5368 | msgid "This will return OK instead of WARNING and UNKNOWN instead of CRITICAL" | 4397 | msgid "This will return OK instead of WARNING and UNKNOWN instead of CRITICAL" |
5369 | msgstr "" | 4398 | msgstr "" |
5370 | 4399 | ||
5371 | #: plugins/negate.c:278 | ||
5372 | msgid "" | 4400 | msgid "" |
5373 | "This plugin is a wrapper to take the output of another plugin and invert it." | 4401 | "This plugin is a wrapper to take the output of another plugin and invert it." |
5374 | msgstr "" | 4402 | msgstr "" |
5375 | 4403 | ||
5376 | #: plugins/negate.c:279 | ||
5377 | msgid "The full path of the plugin must be provided." | 4404 | msgid "The full path of the plugin must be provided." |
5378 | msgstr "" | 4405 | msgstr "" |
5379 | 4406 | ||
5380 | #: plugins/negate.c:280 | ||
5381 | msgid "If the wrapped plugin returns OK, the wrapper will return CRITICAL." | 4407 | msgid "If the wrapped plugin returns OK, the wrapper will return CRITICAL." |
5382 | msgstr "" | 4408 | msgstr "" |
5383 | 4409 | ||
5384 | #: plugins/negate.c:281 | ||
5385 | msgid "If the wrapped plugin returns CRITICAL, the wrapper will return OK." | 4410 | msgid "If the wrapped plugin returns CRITICAL, the wrapper will return OK." |
5386 | msgstr "" | 4411 | msgstr "" |
5387 | 4412 | ||
5388 | #: plugins/negate.c:282 | ||
5389 | msgid "Otherwise, the output state of the wrapped plugin is unchanged." | 4413 | msgid "Otherwise, the output state of the wrapped plugin is unchanged." |
5390 | msgstr "" | 4414 | msgstr "" |
5391 | 4415 | ||
5392 | #: plugins/negate.c:284 | ||
5393 | msgid "" | 4416 | msgid "" |
5394 | "Using timeout-result, it is possible to override the timeout behaviour or a" | 4417 | "Using timeout-result, it is possible to override the timeout behaviour or a" |
5395 | msgstr "" | 4418 | msgstr "" |
5396 | 4419 | ||
5397 | #: plugins/negate.c:285 | ||
5398 | msgid "plugin by setting the negate timeout a bit lower." | 4420 | msgid "plugin by setting the negate timeout a bit lower." |
5399 | msgstr "" | 4421 | msgstr "" |
5400 | 4422 | ||
5401 | #: plugins/netutils.c:49 | ||
5402 | #, c-format | 4423 | #, c-format |
5403 | msgid "%s - Socket timeout after %d seconds\n" | 4424 | msgid "%s - Socket timeout after %d seconds\n" |
5404 | msgstr "" | 4425 | msgstr "" |
5405 | 4426 | ||
5406 | #: plugins/netutils.c:51 | ||
5407 | #, c-format | 4427 | #, c-format |
5408 | msgid "%s - Abnormal timeout after %d seconds\n" | 4428 | msgid "%s - Abnormal timeout after %d seconds\n" |
5409 | msgstr "" | 4429 | msgstr "" |
5410 | 4430 | ||
5411 | #: plugins/netutils.c:79 plugins/netutils.c:281 | ||
5412 | msgid "Send failed" | 4431 | msgid "Send failed" |
5413 | msgstr "" | 4432 | msgstr "" |
5414 | 4433 | ||
5415 | #: plugins/netutils.c:96 plugins/netutils.c:296 | ||
5416 | msgid "No data was received from host!" | 4434 | msgid "No data was received from host!" |
5417 | msgstr "" | 4435 | msgstr "" |
5418 | 4436 | ||
5419 | #: plugins/netutils.c:204 plugins/netutils.c:240 | ||
5420 | msgid "Socket creation failed" | 4437 | msgid "Socket creation failed" |
5421 | msgstr "" | 4438 | msgstr "" |
5422 | 4439 | ||
5423 | #: plugins/netutils.c:233 | ||
5424 | msgid "Supplied path too long unix domain socket" | 4440 | msgid "Supplied path too long unix domain socket" |
5425 | msgstr "" | 4441 | msgstr "" |
5426 | 4442 | ||
5427 | #: plugins/netutils.c:305 | ||
5428 | msgid "Receive failed" | 4443 | msgid "Receive failed" |
5429 | msgstr "" | 4444 | msgstr "" |
5430 | 4445 | ||
5431 | #: plugins/netutils.c:331 plugins-root/check_dhcp.c:1342 | ||
5432 | #, c-format | 4446 | #, c-format |
5433 | msgid "Invalid hostname/address - %s" | 4447 | msgid "Invalid hostname/address - %s" |
5434 | msgstr "" | 4448 | msgstr "" |
5435 | 4449 | ||
5436 | #: plugins/popen.c:142 | ||
5437 | msgid "Could not malloc argv array in popen()" | 4450 | msgid "Could not malloc argv array in popen()" |
5438 | msgstr "" | 4451 | msgstr "" |
5439 | 4452 | ||
5440 | #: plugins/popen.c:152 | ||
5441 | msgid "CRITICAL - You need more args!!!" | 4453 | msgid "CRITICAL - You need more args!!!" |
5442 | msgstr "" | 4454 | msgstr "" |
5443 | 4455 | ||
5444 | #: plugins/popen.c:209 | ||
5445 | msgid "Cannot catch SIGCHLD" | 4456 | msgid "Cannot catch SIGCHLD" |
5446 | msgstr "" | 4457 | msgstr "" |
5447 | 4458 | ||
5448 | #: plugins/popen.c:304 | ||
5449 | #, c-format | 4459 | #, c-format |
5450 | msgid "CRITICAL - Plugin timed out after %d seconds\n" | 4460 | msgid "CRITICAL - Plugin timed out after %d seconds\n" |
5451 | msgstr "" | 4461 | msgstr "" |
5452 | 4462 | ||
5453 | #: plugins/popen.c:307 | ||
5454 | msgid "CRITICAL - popen timeout received, but no child process" | 4463 | msgid "CRITICAL - popen timeout received, but no child process" |
5455 | msgstr "" | 4464 | msgstr "" |
5456 | 4465 | ||
5457 | #: plugins/popen.c:323 | ||
5458 | msgid "sysconf error for _SC_OPEN_MAX" | ||
5459 | msgstr "" | ||
5460 | |||
5461 | #: plugins/urlize.c:130 | ||
5462 | #, c-format | 4466 | #, c-format |
5463 | msgid "" | 4467 | msgid "" |
5464 | "%s UNKNOWN - No data received from host\n" | 4468 | "%s UNKNOWN - No data received from host\n" |
5465 | "CMD: %s</A>\n" | 4469 | "CMD: %s</A>\n" |
5466 | msgstr "" | 4470 | msgstr "" |
5467 | 4471 | ||
5468 | #: plugins/urlize.c:169 | ||
5469 | msgid "" | 4472 | msgid "" |
5470 | "This plugin wraps the text output of another command (plugin) in HTML <A>" | 4473 | "This plugin wraps the text output of another command (plugin) in HTML <A>" |
5471 | msgstr "" | 4474 | msgstr "" |
5472 | 4475 | ||
5473 | #: plugins/urlize.c:170 | ||
5474 | msgid "" | 4476 | msgid "" |
5475 | "tags, thus displaying the child plugin's output as a clickable link in " | 4477 | "tags, thus displaying the child plugin's output as a clickable link in " |
5476 | "compatible" | 4478 | "compatible" |
5477 | msgstr "" | 4479 | msgstr "" |
5478 | 4480 | ||
5479 | #: plugins/urlize.c:171 | ||
5480 | msgid "" | 4481 | msgid "" |
5481 | "monitoring status screen. This plugin returns the status of the invoked " | 4482 | "monitoring status screen. This plugin returns the status of the invoked " |
5482 | "plugin." | 4483 | "plugin." |
5483 | msgstr "" | 4484 | msgstr "" |
5484 | 4485 | ||
5485 | #: plugins/urlize.c:181 | ||
5486 | msgid "" | 4486 | msgid "" |
5487 | "Pay close attention to quoting to ensure that the shell passes the expected" | 4487 | "Pay close attention to quoting to ensure that the shell passes the expected" |
5488 | msgstr "" | 4488 | msgstr "" |
5489 | 4489 | ||
5490 | #: plugins/urlize.c:182 | ||
5491 | msgid "data to the plugin. For example, in:" | 4490 | msgid "data to the plugin. For example, in:" |
5492 | msgstr "" | 4491 | msgstr "" |
5493 | 4492 | ||
5494 | #: plugins/urlize.c:183 | ||
5495 | msgid "urlize http://example.com/ check_http -H example.com -r 'two words'" | 4493 | msgid "urlize http://example.com/ check_http -H example.com -r 'two words'" |
5496 | msgstr "" | 4494 | msgstr "" |
5497 | 4495 | ||
5498 | #: plugins/urlize.c:184 | ||
5499 | msgid "the shell will remove the single quotes and urlize will see:" | 4496 | msgid "the shell will remove the single quotes and urlize will see:" |
5500 | msgstr "" | 4497 | msgstr "" |
5501 | 4498 | ||
5502 | #: plugins/urlize.c:185 | ||
5503 | msgid "urlize http://example.com/ check_http -H example.com -r two words" | 4499 | msgid "urlize http://example.com/ check_http -H example.com -r two words" |
5504 | msgstr "" | 4500 | msgstr "" |
5505 | 4501 | ||
5506 | #: plugins/urlize.c:186 | ||
5507 | msgid "You probably want:" | 4502 | msgid "You probably want:" |
5508 | msgstr "" | 4503 | msgstr "" |
5509 | 4504 | ||
5510 | #: plugins/urlize.c:187 | ||
5511 | msgid "urlize http://example.com/ \"check_http -H example.com -r 'two words'\"" | 4505 | msgid "urlize http://example.com/ \"check_http -H example.com -r 'two words'\"" |
5512 | msgstr "" | 4506 | msgstr "" |
5513 | 4507 | ||
5514 | #: plugins/utils.c:174 | ||
5515 | #, c-format | ||
5516 | msgid "%s - Plugin timed out after %d seconds\n" | ||
5517 | msgstr "" | ||
5518 | |||
5519 | #: plugins/utils.c:469 | ||
5520 | msgid "failed realloc in strpcpy\n" | 4508 | msgid "failed realloc in strpcpy\n" |
5521 | msgstr "" | 4509 | msgstr "" |
5522 | 4510 | ||
5523 | #: plugins/utils.c:511 | ||
5524 | msgid "failed malloc in strscat\n" | 4511 | msgid "failed malloc in strscat\n" |
5525 | msgstr "" | 4512 | msgstr "" |
5526 | 4513 | ||
5527 | #: plugins/utils.c:531 | ||
5528 | msgid "failed malloc in xvasprintf\n" | 4514 | msgid "failed malloc in xvasprintf\n" |
5529 | msgstr "" | 4515 | msgstr "" |
5530 | 4516 | ||
5531 | #: plugins/utils.h:137 | 4517 | msgid "sysconf error for _SC_OPEN_MAX\n" |
4518 | msgstr "" | ||
4519 | |||
5532 | #, c-format | 4520 | #, c-format |
5533 | msgid "" | 4521 | msgid "" |
5534 | " %s (-h | --help) for detailed help\n" | 4522 | " %s (-h | --help) for detailed help\n" |
5535 | " %s (-V | --version) for version information\n" | 4523 | " %s (-V | --version) for version information\n" |
5536 | msgstr "" | 4524 | msgstr "" |
5537 | 4525 | ||
5538 | #: plugins/utils.h:141 | ||
5539 | msgid "" | 4526 | msgid "" |
5540 | "\n" | 4527 | "\n" |
5541 | "Options:\n" | 4528 | "Options:\n" |
@@ -5545,7 +4532,6 @@ msgid "" | |||
5545 | " Print version information\n" | 4532 | " Print version information\n" |
5546 | msgstr "" | 4533 | msgstr "" |
5547 | 4534 | ||
5548 | #: plugins/utils.h:148 | ||
5549 | #, c-format | 4535 | #, c-format |
5550 | msgid "" | 4536 | msgid "" |
5551 | " -H, --hostname=ADDRESS\n" | 4537 | " -H, --hostname=ADDRESS\n" |
@@ -5554,7 +4540,6 @@ msgid "" | |||
5554 | " Port number (default: %s)\n" | 4540 | " Port number (default: %s)\n" |
5555 | msgstr "" | 4541 | msgstr "" |
5556 | 4542 | ||
5557 | #: plugins/utils.h:154 | ||
5558 | msgid "" | 4543 | msgid "" |
5559 | " -4, --use-ipv4\n" | 4544 | " -4, --use-ipv4\n" |
5560 | " Use IPv4 connection\n" | 4545 | " Use IPv4 connection\n" |
@@ -5562,14 +4547,12 @@ msgid "" | |||
5562 | " Use IPv6 connection\n" | 4547 | " Use IPv6 connection\n" |
5563 | msgstr "" | 4548 | msgstr "" |
5564 | 4549 | ||
5565 | #: plugins/utils.h:160 | ||
5566 | msgid "" | 4550 | msgid "" |
5567 | " -v, --verbose\n" | 4551 | " -v, --verbose\n" |
5568 | " Show details for command-line debugging (output may be truncated by\n" | 4552 | " Show details for command-line debugging (output may be truncated by\n" |
5569 | "\t\tthe monitoring system)\n" | 4553 | " the monitoring system)\n" |
5570 | msgstr "" | 4554 | msgstr "" |
5571 | 4555 | ||
5572 | #: plugins/utils.h:165 | ||
5573 | msgid "" | 4556 | msgid "" |
5574 | " -w, --warning=DOUBLE\n" | 4557 | " -w, --warning=DOUBLE\n" |
5575 | " Response time to result in warning status (seconds)\n" | 4558 | " Response time to result in warning status (seconds)\n" |
@@ -5577,7 +4560,6 @@ msgid "" | |||
5577 | " Response time to result in critical status (seconds)\n" | 4560 | " Response time to result in critical status (seconds)\n" |
5578 | msgstr "" | 4561 | msgstr "" |
5579 | 4562 | ||
5580 | #: plugins/utils.h:171 | ||
5581 | msgid "" | 4563 | msgid "" |
5582 | " -w, --warning=RANGE\n" | 4564 | " -w, --warning=RANGE\n" |
5583 | " Warning range (format: start:end). Alert if outside this range\n" | 4565 | " Warning range (format: start:end). Alert if outside this range\n" |
@@ -5585,14 +4567,18 @@ msgid "" | |||
5585 | " Critical range\n" | 4567 | " Critical range\n" |
5586 | msgstr "" | 4568 | msgstr "" |
5587 | 4569 | ||
5588 | #: plugins/utils.h:177 | ||
5589 | #, c-format | 4570 | #, c-format |
5590 | msgid "" | 4571 | msgid "" |
5591 | " -t, --timeout=INTEGER\n" | 4572 | " -t, --timeout=INTEGER\n" |
5592 | " Seconds before connection times out (default: %d)\n" | 4573 | " Seconds before connection times out (default: %d)\n" |
5593 | msgstr "" | 4574 | msgstr "" |
5594 | 4575 | ||
5595 | #: plugins/utils.h:182 | 4576 | #, c-format |
4577 | msgid "" | ||
4578 | " -t, --timeout=INTEGER\n" | ||
4579 | " Seconds before plugin times out (default: %d)\n" | ||
4580 | msgstr "" | ||
4581 | |||
5596 | msgid "" | 4582 | msgid "" |
5597 | " --extra-opts=[section][@file]\n" | 4583 | " --extra-opts=[section][@file]\n" |
5598 | " Read options from an ini file. See\n" | 4584 | " Read options from an ini file. See\n" |
@@ -5600,14 +4586,12 @@ msgid "" | |||
5600 | " for usage and examples.\n" | 4586 | " for usage and examples.\n" |
5601 | msgstr "" | 4587 | msgstr "" |
5602 | 4588 | ||
5603 | #: plugins/utils.h:190 | ||
5604 | msgid "" | 4589 | msgid "" |
5605 | " See:\n" | 4590 | " See:\n" |
5606 | " https://www.monitoring-plugins.org/doc/guidelines.html#THRESHOLDFORMAT\n" | 4591 | " https://www.monitoring-plugins.org/doc/guidelines.html#THRESHOLDFORMAT\n" |
5607 | " for THRESHOLD format and examples.\n" | 4592 | " for THRESHOLD format and examples.\n" |
5608 | msgstr "" | 4593 | msgstr "" |
5609 | 4594 | ||
5610 | #: plugins/utils.h:195 | ||
5611 | msgid "" | 4595 | msgid "" |
5612 | "\n" | 4596 | "\n" |
5613 | "Send email to help@monitoring-plugins.org if you have questions regarding\n" | 4597 | "Send email to help@monitoring-plugins.org if you have questions regarding\n" |
@@ -5616,7 +4600,6 @@ msgid "" | |||
5616 | "\n" | 4600 | "\n" |
5617 | msgstr "" | 4601 | msgstr "" |
5618 | 4602 | ||
5619 | #: plugins/utils.h:200 | ||
5620 | msgid "" | 4603 | msgid "" |
5621 | "\n" | 4604 | "\n" |
5622 | "The Monitoring Plugins come with ABSOLUTELY NO WARRANTY. You may " | 4605 | "The Monitoring Plugins come with ABSOLUTELY NO WARRANTY. You may " |
@@ -5625,398 +4608,322 @@ msgid "" | |||
5625 | "For more information about these matters, see the file named COPYING.\n" | 4608 | "For more information about these matters, see the file named COPYING.\n" |
5626 | msgstr "" | 4609 | msgstr "" |
5627 | 4610 | ||
5628 | #: plugins-root/check_dhcp.c:320 | ||
5629 | #, c-format | 4611 | #, c-format |
5630 | msgid "Error: Could not get hardware address of interface '%s'\n" | 4612 | msgid "Error: Could not get hardware address of interface '%s'\n" |
5631 | msgstr "" | 4613 | msgstr "" |
5632 | 4614 | ||
5633 | #: plugins-root/check_dhcp.c:342 | ||
5634 | #, c-format | 4615 | #, c-format |
5635 | msgid "Error: if_nametoindex error - %s.\n" | 4616 | msgid "Error: if_nametoindex error - %s.\n" |
5636 | msgstr "" | 4617 | msgstr "" |
5637 | 4618 | ||
5638 | #: plugins-root/check_dhcp.c:347 | ||
5639 | #, c-format | 4619 | #, c-format |
5640 | msgid "Error: Couldn't get hardware address from %s. sysctl 1 error - %s.\n" | 4620 | msgid "Error: Couldn't get hardware address from %s. sysctl 1 error - %s.\n" |
5641 | msgstr "" | 4621 | msgstr "" |
5642 | 4622 | ||
5643 | #: plugins-root/check_dhcp.c:352 | ||
5644 | #, c-format | 4623 | #, c-format |
5645 | msgid "" | 4624 | msgid "" |
5646 | "Error: Couldn't get hardware address from interface %s. malloc error - %s.\n" | 4625 | "Error: Couldn't get hardware address from interface %s. malloc error - %s.\n" |
5647 | msgstr "" | 4626 | msgstr "" |
5648 | 4627 | ||
5649 | #: plugins-root/check_dhcp.c:357 | ||
5650 | #, c-format | 4628 | #, c-format |
5651 | msgid "Error: Couldn't get hardware address from %s. sysctl 2 error - %s.\n" | 4629 | msgid "Error: Couldn't get hardware address from %s. sysctl 2 error - %s.\n" |
5652 | msgstr "" | 4630 | msgstr "" |
5653 | 4631 | ||
5654 | #: plugins-root/check_dhcp.c:388 | ||
5655 | #, c-format | 4632 | #, c-format |
5656 | msgid "" | 4633 | msgid "" |
5657 | "Error: can't find unit number in interface_name (%s) - expecting TypeNumber " | 4634 | "Error: can't find unit number in interface_name (%s) - expecting TypeNumber " |
5658 | "eg lnc0.\n" | 4635 | "eg lnc0.\n" |
5659 | msgstr "" | 4636 | msgstr "" |
5660 | 4637 | ||
5661 | #: plugins-root/check_dhcp.c:393 plugins-root/check_dhcp.c:405 | ||
5662 | #, c-format | 4638 | #, c-format |
5663 | msgid "" | 4639 | msgid "" |
5664 | "Error: can't read MAC address from DLPI streams interface for device %s unit " | 4640 | "Error: can't read MAC address from DLPI streams interface for device %s unit " |
5665 | "%d.\n" | 4641 | "%d.\n" |
5666 | msgstr "" | 4642 | msgstr "" |
5667 | 4643 | ||
5668 | #: plugins-root/check_dhcp.c:411 | ||
5669 | #, c-format | 4644 | #, c-format |
5670 | msgid "" | 4645 | msgid "" |
5671 | "Error: can't get MAC address for this architecture. Use the --mac option.\n" | 4646 | "Error: can't get MAC address for this architecture. Use the --mac option.\n" |
5672 | msgstr "" | 4647 | msgstr "" |
5673 | 4648 | ||
5674 | #: plugins-root/check_dhcp.c:430 | ||
5675 | #, c-format | 4649 | #, c-format |
5676 | msgid "Error: Cannot determine IP address of interface %s\n" | 4650 | msgid "Error: Cannot determine IP address of interface %s\n" |
5677 | msgstr "" | 4651 | msgstr "" |
5678 | 4652 | ||
5679 | #: plugins-root/check_dhcp.c:438 | ||
5680 | #, c-format | 4653 | #, c-format |
5681 | msgid "Error: Cannot get interface IP address on this platform.\n" | 4654 | msgid "Error: Cannot get interface IP address on this platform.\n" |
5682 | msgstr "" | 4655 | msgstr "" |
5683 | 4656 | ||
5684 | #: plugins-root/check_dhcp.c:443 | ||
5685 | #, c-format | 4657 | #, c-format |
5686 | msgid "Pretending to be relay client %s\n" | 4658 | msgid "Pretending to be relay client %s\n" |
5687 | msgstr "" | 4659 | msgstr "" |
5688 | 4660 | ||
5689 | #: plugins-root/check_dhcp.c:528 | ||
5690 | #, c-format | 4661 | #, c-format |
5691 | msgid "DHCPDISCOVER to %s port %d\n" | 4662 | msgid "DHCPDISCOVER to %s port %d\n" |
5692 | msgstr "" | 4663 | msgstr "" |
5693 | 4664 | ||
5694 | #: plugins-root/check_dhcp.c:580 | ||
5695 | #, c-format | 4665 | #, c-format |
5696 | msgid "Result=ERROR\n" | 4666 | msgid "Result=ERROR\n" |
5697 | msgstr "" | 4667 | msgstr "" |
5698 | 4668 | ||
5699 | #: plugins-root/check_dhcp.c:586 | ||
5700 | #, c-format | 4669 | #, c-format |
5701 | msgid "Result=OK\n" | 4670 | msgid "Result=OK\n" |
5702 | msgstr "" | 4671 | msgstr "" |
5703 | 4672 | ||
5704 | #: plugins-root/check_dhcp.c:596 | ||
5705 | #, c-format | 4673 | #, c-format |
5706 | msgid "DHCPOFFER from IP address %s" | 4674 | msgid "DHCPOFFER from IP address %s" |
5707 | msgstr "" | 4675 | msgstr "" |
5708 | 4676 | ||
5709 | #: plugins-root/check_dhcp.c:597 | ||
5710 | #, c-format | 4677 | #, c-format |
5711 | msgid " via %s\n" | 4678 | msgid " via %s\n" |
5712 | msgstr "" | 4679 | msgstr "" |
5713 | 4680 | ||
5714 | #: plugins-root/check_dhcp.c:604 | ||
5715 | #, c-format | 4681 | #, c-format |
5716 | msgid "" | 4682 | msgid "" |
5717 | "DHCPOFFER XID (%u) did not match DHCPDISCOVER XID (%u) - ignoring packet\n" | 4683 | "DHCPOFFER XID (%u) did not match DHCPDISCOVER XID (%u) - ignoring packet\n" |
5718 | msgstr "" | 4684 | msgstr "" |
5719 | 4685 | ||
5720 | #: plugins-root/check_dhcp.c:626 | ||
5721 | #, c-format | 4686 | #, c-format |
5722 | msgid "DHCPOFFER hardware address did not match our own - ignoring packet\n" | 4687 | msgid "DHCPOFFER hardware address did not match our own - ignoring packet\n" |
5723 | msgstr "" | 4688 | msgstr "" |
5724 | 4689 | ||
5725 | #: plugins-root/check_dhcp.c:644 | ||
5726 | #, c-format | 4690 | #, c-format |
5727 | msgid "Total responses seen on the wire: %d\n" | 4691 | msgid "Total responses seen on the wire: %d\n" |
5728 | msgstr "" | 4692 | msgstr "" |
5729 | 4693 | ||
5730 | #: plugins-root/check_dhcp.c:645 | ||
5731 | #, c-format | 4694 | #, c-format |
5732 | msgid "Valid responses for this machine: %d\n" | 4695 | msgid "Valid responses for this machine: %d\n" |
5733 | msgstr "" | 4696 | msgstr "" |
5734 | 4697 | ||
5735 | #: plugins-root/check_dhcp.c:660 | ||
5736 | #, c-format | 4698 | #, c-format |
5737 | msgid "send_dhcp_packet result: %d\n" | 4699 | msgid "send_dhcp_packet result: %d\n" |
5738 | msgstr "" | 4700 | msgstr "" |
5739 | 4701 | ||
5740 | #: plugins-root/check_dhcp.c:693 | ||
5741 | #, c-format | 4702 | #, c-format |
5742 | msgid "No (more) data received (nfound: %d)\n" | 4703 | msgid "No (more) data received (nfound: %d)\n" |
5743 | msgstr "" | 4704 | msgstr "" |
5744 | 4705 | ||
5745 | #: plugins-root/check_dhcp.c:712 | ||
5746 | #, c-format | 4706 | #, c-format |
5747 | msgid "recvfrom() failed, " | 4707 | msgid "recvfrom() failed, " |
5748 | msgstr "" | 4708 | msgstr "" |
5749 | 4709 | ||
5750 | #: plugins-root/check_dhcp.c:719 | ||
5751 | #, c-format | 4710 | #, c-format |
5752 | msgid "receive_dhcp_packet() result: %d\n" | 4711 | msgid "receive_dhcp_packet() result: %d\n" |
5753 | msgstr "" | 4712 | msgstr "" |
5754 | 4713 | ||
5755 | #: plugins-root/check_dhcp.c:720 | ||
5756 | #, c-format | 4714 | #, c-format |
5757 | msgid "receive_dhcp_packet() source: %s\n" | 4715 | msgid "receive_dhcp_packet() source: %s\n" |
5758 | msgstr "" | 4716 | msgstr "" |
5759 | 4717 | ||
5760 | #: plugins-root/check_dhcp.c:750 | ||
5761 | #, c-format | 4718 | #, c-format |
5762 | msgid "Error: Could not create socket!\n" | 4719 | msgid "Error: Could not create socket!\n" |
5763 | msgstr "" | 4720 | msgstr "" |
5764 | 4721 | ||
5765 | #: plugins-root/check_dhcp.c:760 | ||
5766 | #, c-format | 4722 | #, c-format |
5767 | msgid "Error: Could not set reuse address option on DHCP socket!\n" | 4723 | msgid "Error: Could not set reuse address option on DHCP socket!\n" |
5768 | msgstr "" | 4724 | msgstr "" |
5769 | 4725 | ||
5770 | #: plugins-root/check_dhcp.c:766 | ||
5771 | #, c-format | 4726 | #, c-format |
5772 | msgid "Error: Could not set broadcast option on DHCP socket!\n" | 4727 | msgid "Error: Could not set broadcast option on DHCP socket!\n" |
5773 | msgstr "" | 4728 | msgstr "" |
5774 | 4729 | ||
5775 | #: plugins-root/check_dhcp.c:775 | ||
5776 | #, c-format | 4730 | #, c-format |
5777 | msgid "" | 4731 | msgid "" |
5778 | "Error: Could not bind socket to interface %s. Check your privileges...\n" | 4732 | "Error: Could not bind socket to interface %s. Check your privileges...\n" |
5779 | msgstr "" | 4733 | msgstr "" |
5780 | 4734 | ||
5781 | #: plugins-root/check_dhcp.c:786 | ||
5782 | #, c-format | 4735 | #, c-format |
5783 | msgid "" | 4736 | msgid "" |
5784 | "Error: Could not bind to DHCP socket (port %d)! Check your privileges...\n" | 4737 | "Error: Could not bind to DHCP socket (port %d)! Check your privileges...\n" |
5785 | msgstr "" | 4738 | msgstr "" |
5786 | 4739 | ||
5787 | #: plugins-root/check_dhcp.c:820 | ||
5788 | #, c-format | 4740 | #, c-format |
5789 | msgid "Requested server address: %s\n" | 4741 | msgid "Requested server address: %s\n" |
5790 | msgstr "" | 4742 | msgstr "" |
5791 | 4743 | ||
5792 | #: plugins-root/check_dhcp.c:882 | ||
5793 | #, c-format | 4744 | #, c-format |
5794 | msgid "Lease Time: Infinite\n" | 4745 | msgid "Lease Time: Infinite\n" |
5795 | msgstr "" | 4746 | msgstr "" |
5796 | 4747 | ||
5797 | #: plugins-root/check_dhcp.c:884 | ||
5798 | #, c-format | 4748 | #, c-format |
5799 | msgid "Lease Time: %lu seconds\n" | 4749 | msgid "Lease Time: %lu seconds\n" |
5800 | msgstr "" | 4750 | msgstr "" |
5801 | 4751 | ||
5802 | #: plugins-root/check_dhcp.c:886 | ||
5803 | #, c-format | 4752 | #, c-format |
5804 | msgid "Renewal Time: Infinite\n" | 4753 | msgid "Renewal Time: Infinite\n" |
5805 | msgstr "" | 4754 | msgstr "" |
5806 | 4755 | ||
5807 | #: plugins-root/check_dhcp.c:888 | ||
5808 | #, c-format | 4756 | #, c-format |
5809 | msgid "Renewal Time: %lu seconds\n" | 4757 | msgid "Renewal Time: %lu seconds\n" |
5810 | msgstr "" | 4758 | msgstr "" |
5811 | 4759 | ||
5812 | #: plugins-root/check_dhcp.c:890 | ||
5813 | #, c-format | 4760 | #, c-format |
5814 | msgid "Rebinding Time: Infinite\n" | 4761 | msgid "Rebinding Time: Infinite\n" |
5815 | msgstr "" | 4762 | msgstr "" |
5816 | 4763 | ||
5817 | #: plugins-root/check_dhcp.c:891 | ||
5818 | #, c-format | 4764 | #, c-format |
5819 | msgid "Rebinding Time: %lu seconds\n" | 4765 | msgid "Rebinding Time: %lu seconds\n" |
5820 | msgstr "" | 4766 | msgstr "" |
5821 | 4767 | ||
5822 | #: plugins-root/check_dhcp.c:919 | ||
5823 | #, c-format | 4768 | #, c-format |
5824 | msgid "Added offer from server @ %s" | 4769 | msgid "Added offer from server @ %s" |
5825 | msgstr "" | 4770 | msgstr "" |
5826 | 4771 | ||
5827 | #: plugins-root/check_dhcp.c:920 | ||
5828 | #, c-format | 4772 | #, c-format |
5829 | msgid " of IP address %s\n" | 4773 | msgid " of IP address %s\n" |
5830 | msgstr "" | 4774 | msgstr "" |
5831 | 4775 | ||
5832 | #: plugins-root/check_dhcp.c:987 | ||
5833 | #, c-format | 4776 | #, c-format |
5834 | msgid "DHCP Server Match: Offerer=%s" | 4777 | msgid "DHCP Server Match: Offerer=%s" |
5835 | msgstr "" | 4778 | msgstr "" |
5836 | 4779 | ||
5837 | #: plugins-root/check_dhcp.c:988 | ||
5838 | #, c-format | 4780 | #, c-format |
5839 | msgid " Requested=%s" | 4781 | msgid " Requested=%s" |
5840 | msgstr "" | 4782 | msgstr "" |
5841 | 4783 | ||
5842 | #: plugins-root/check_dhcp.c:990 | ||
5843 | #, c-format | 4784 | #, c-format |
5844 | msgid " (duplicate)" | 4785 | msgid " (duplicate)" |
5845 | msgstr "" | 4786 | msgstr "" |
5846 | 4787 | ||
5847 | #: plugins-root/check_dhcp.c:991 | ||
5848 | #, c-format | 4788 | #, c-format |
5849 | msgid "\n" | 4789 | msgid "\n" |
5850 | msgstr "" | 4790 | msgstr "" |
5851 | 4791 | ||
5852 | #: plugins-root/check_dhcp.c:1039 | ||
5853 | #, c-format | 4792 | #, c-format |
5854 | msgid "No DHCPOFFERs were received.\n" | 4793 | msgid "No DHCPOFFERs were received.\n" |
5855 | msgstr "" | 4794 | msgstr "" |
5856 | 4795 | ||
5857 | #: plugins-root/check_dhcp.c:1043 | ||
5858 | #, c-format | 4796 | #, c-format |
5859 | msgid "Received %d DHCPOFFER(s)" | 4797 | msgid "Received %d DHCPOFFER(s)" |
5860 | msgstr "" | 4798 | msgstr "" |
5861 | 4799 | ||
5862 | #: plugins-root/check_dhcp.c:1046 | ||
5863 | #, c-format | 4800 | #, c-format |
5864 | msgid ", %s%d of %d requested servers responded" | 4801 | msgid ", %s%d of %d requested servers responded" |
5865 | msgstr "" | 4802 | msgstr "" |
5866 | 4803 | ||
5867 | #: plugins-root/check_dhcp.c:1049 | ||
5868 | #, c-format | 4804 | #, c-format |
5869 | msgid ", requested address (%s) was %soffered" | 4805 | msgid ", requested address (%s) was %soffered" |
5870 | msgstr "" | 4806 | msgstr "" |
5871 | 4807 | ||
5872 | #: plugins-root/check_dhcp.c:1049 | ||
5873 | msgid "not " | 4808 | msgid "not " |
5874 | msgstr "" | 4809 | msgstr "" |
5875 | 4810 | ||
5876 | #: plugins-root/check_dhcp.c:1051 | ||
5877 | #, c-format | 4811 | #, c-format |
5878 | msgid ", max lease time = " | 4812 | msgid ", max lease time = " |
5879 | msgstr "" | 4813 | msgstr "" |
5880 | 4814 | ||
5881 | #: plugins-root/check_dhcp.c:1053 | ||
5882 | #, c-format | 4815 | #, c-format |
5883 | msgid "Infinity" | 4816 | msgid "Infinity" |
5884 | msgstr "" | 4817 | msgstr "" |
5885 | 4818 | ||
5886 | #: plugins-root/check_dhcp.c:1234 | 4819 | msgid "Got unexpected non-option argument" |
4820 | msgstr "" | ||
4821 | |||
5887 | #, c-format | 4822 | #, c-format |
5888 | msgid "Error: DLPI stream API failed to get MAC in check_ctrl: %s.\n" | 4823 | msgid "Error: DLPI stream API failed to get MAC in check_ctrl: %s.\n" |
5889 | msgstr "" | 4824 | msgstr "" |
5890 | 4825 | ||
5891 | #: plugins-root/check_dhcp.c:1246 | ||
5892 | #, c-format | 4826 | #, c-format |
5893 | msgid "Error: DLPI stream API failed to get MAC in put_ctrl/putmsg(): %s.\n" | 4827 | msgid "Error: DLPI stream API failed to get MAC in put_ctrl/putmsg(): %s.\n" |
5894 | msgstr "" | 4828 | msgstr "" |
5895 | 4829 | ||
5896 | #: plugins-root/check_dhcp.c:1259 | ||
5897 | #, c-format | 4830 | #, c-format |
5898 | msgid "Error: DLPI stream API failed to get MAC in put_both/putmsg().\n" | 4831 | msgid "Error: DLPI stream API failed to get MAC in put_both/putmsg().\n" |
5899 | msgstr "" | 4832 | msgstr "" |
5900 | 4833 | ||
5901 | #: plugins-root/check_dhcp.c:1271 | ||
5902 | #, c-format | 4834 | #, c-format |
5903 | msgid "" | 4835 | msgid "" |
5904 | "Error: DLPI stream API failed to get MAC in dl_attach_req/open(%s..): %s.\n" | 4836 | "Error: DLPI stream API failed to get MAC in dl_attach_req/open(%s..): %s.\n" |
5905 | msgstr "" | 4837 | msgstr "" |
5906 | 4838 | ||
5907 | #: plugins-root/check_dhcp.c:1295 | ||
5908 | #, c-format | 4839 | #, c-format |
5909 | msgid "Error: DLPI stream API failed to get MAC in dl_bind/check_ctrl(): %s.\n" | 4840 | msgid "Error: DLPI stream API failed to get MAC in dl_bind/check_ctrl(): %s.\n" |
5910 | msgstr "" | 4841 | msgstr "" |
5911 | 4842 | ||
5912 | #: plugins-root/check_dhcp.c:1374 | ||
5913 | #, c-format | 4843 | #, c-format |
5914 | msgid "Hardware address: " | 4844 | msgid "Hardware address: " |
5915 | msgstr "" | 4845 | msgstr "" |
5916 | 4846 | ||
5917 | #: plugins-root/check_dhcp.c:1390 | ||
5918 | msgid "This plugin tests the availability of DHCP servers on a network." | 4847 | msgid "This plugin tests the availability of DHCP servers on a network." |
5919 | msgstr "" | 4848 | msgstr "" |
5920 | 4849 | ||
5921 | #: plugins-root/check_dhcp.c:1402 | ||
5922 | msgid "IP address of DHCP server that we must hear from" | 4850 | msgid "IP address of DHCP server that we must hear from" |
5923 | msgstr "" | 4851 | msgstr "" |
5924 | 4852 | ||
5925 | #: plugins-root/check_dhcp.c:1404 | ||
5926 | msgid "IP address that should be offered by at least one DHCP server" | 4853 | msgid "IP address that should be offered by at least one DHCP server" |
5927 | msgstr "" | 4854 | msgstr "" |
5928 | 4855 | ||
5929 | #: plugins-root/check_dhcp.c:1406 | ||
5930 | msgid "Seconds to wait for DHCPOFFER before timeout occurs" | 4856 | msgid "Seconds to wait for DHCPOFFER before timeout occurs" |
5931 | msgstr "" | 4857 | msgstr "" |
5932 | 4858 | ||
5933 | #: plugins-root/check_dhcp.c:1408 | ||
5934 | msgid "Interface to to use for listening (i.e. eth0)" | 4859 | msgid "Interface to to use for listening (i.e. eth0)" |
5935 | msgstr "" | 4860 | msgstr "" |
5936 | 4861 | ||
5937 | #: plugins-root/check_dhcp.c:1410 | ||
5938 | msgid "MAC address to use in the DHCP request" | 4862 | msgid "MAC address to use in the DHCP request" |
5939 | msgstr "" | 4863 | msgstr "" |
5940 | 4864 | ||
5941 | #: plugins-root/check_dhcp.c:1412 | ||
5942 | msgid "Unicast testing: mimic a DHCP relay, requires -s" | 4865 | msgid "Unicast testing: mimic a DHCP relay, requires -s" |
5943 | msgstr "" | 4866 | msgstr "" |
5944 | 4867 | ||
5945 | #: plugins-root/check_icmp.c:1295 | ||
5946 | msgid "specify a target" | 4868 | msgid "specify a target" |
5947 | msgstr "" | 4869 | msgstr "" |
5948 | 4870 | ||
5949 | #: plugins-root/check_icmp.c:1297 | 4871 | msgid "Use IPv4 (default) or IPv6 to communicate with the targets" |
4872 | msgstr "" | ||
4873 | |||
5950 | msgid "warning threshold (currently " | 4874 | msgid "warning threshold (currently " |
5951 | msgstr "" | 4875 | msgstr "" |
5952 | 4876 | ||
5953 | #: plugins-root/check_icmp.c:1300 | ||
5954 | msgid "critical threshold (currently " | 4877 | msgid "critical threshold (currently " |
5955 | msgstr "" | 4878 | msgstr "" |
5956 | 4879 | ||
5957 | #: plugins-root/check_icmp.c:1303 | ||
5958 | msgid "specify a source IP address or device name" | 4880 | msgid "specify a source IP address or device name" |
5959 | msgstr "" | 4881 | msgstr "" |
5960 | 4882 | ||
5961 | #: plugins-root/check_icmp.c:1305 | ||
5962 | msgid "number of packets to send (currently " | 4883 | msgid "number of packets to send (currently " |
5963 | msgstr "" | 4884 | msgstr "" |
5964 | 4885 | ||
5965 | #: plugins-root/check_icmp.c:1308 | ||
5966 | msgid "max packet interval (currently " | 4886 | msgid "max packet interval (currently " |
5967 | msgstr "" | 4887 | msgstr "" |
5968 | 4888 | ||
5969 | #: plugins-root/check_icmp.c:1311 | ||
5970 | msgid "max target interval (currently " | 4889 | msgid "max target interval (currently " |
5971 | msgstr "" | 4890 | msgstr "" |
5972 | 4891 | ||
5973 | #: plugins-root/check_icmp.c:1314 | ||
5974 | msgid "number of alive hosts required for success" | 4892 | msgid "number of alive hosts required for success" |
5975 | msgstr "" | 4893 | msgstr "" |
5976 | 4894 | ||
5977 | #: plugins-root/check_icmp.c:1317 | ||
5978 | msgid "TTL on outgoing packets (currently " | 4895 | msgid "TTL on outgoing packets (currently " |
5979 | msgstr "" | 4896 | msgstr "" |
5980 | 4897 | ||
5981 | #: plugins-root/check_icmp.c:1320 | ||
5982 | msgid "timeout value (seconds, currently " | 4898 | msgid "timeout value (seconds, currently " |
5983 | msgstr "" | 4899 | msgstr "" |
5984 | 4900 | ||
5985 | #: plugins-root/check_icmp.c:1323 | ||
5986 | msgid "Number of icmp data bytes to send" | 4901 | msgid "Number of icmp data bytes to send" |
5987 | msgstr "" | 4902 | msgstr "" |
5988 | 4903 | ||
5989 | #: plugins-root/check_icmp.c:1324 | ||
5990 | msgid "Packet size will be data bytes + icmp header (currently" | 4904 | msgid "Packet size will be data bytes + icmp header (currently" |
5991 | msgstr "" | 4905 | msgstr "" |
5992 | 4906 | ||
5993 | #: plugins-root/check_icmp.c:1326 | ||
5994 | msgid "verbose" | 4907 | msgid "verbose" |
5995 | msgstr "" | 4908 | msgstr "" |
5996 | 4909 | ||
5997 | #: plugins-root/check_icmp.c:1330 | ||
5998 | msgid "The -H switch is optional. Naming a host (or several) to check is not." | 4910 | msgid "The -H switch is optional. Naming a host (or several) to check is not." |
5999 | msgstr "" | 4911 | msgstr "" |
6000 | 4912 | ||
6001 | #: plugins-root/check_icmp.c:1332 | ||
6002 | msgid "" | 4913 | msgid "" |
6003 | "Threshold format for -w and -c is 200.25,60% for 200.25 msec RTA and 60%" | 4914 | "Threshold format for -w and -c is 200.25,60% for 200.25 msec RTA and 60%" |
6004 | msgstr "" | 4915 | msgstr "" |
6005 | 4916 | ||
6006 | #: plugins-root/check_icmp.c:1333 | ||
6007 | msgid "packet loss. The default values should work well for most users." | 4917 | msgid "packet loss. The default values should work well for most users." |
6008 | msgstr "" | 4918 | msgstr "" |
6009 | 4919 | ||
6010 | #: plugins-root/check_icmp.c:1334 | ||
6011 | msgid "" | 4920 | msgid "" |
6012 | "You can specify different RTA factors using the standardized abbreviations" | 4921 | "You can specify different RTA factors using the standardized abbreviations" |
6013 | msgstr "" | 4922 | msgstr "" |
6014 | 4923 | ||
6015 | #: plugins-root/check_icmp.c:1335 | ||
6016 | msgid "" | 4924 | msgid "" |
6017 | "us (microseconds), ms (milliseconds, default) or just plain s for seconds." | 4925 | "us (microseconds), ms (milliseconds, default) or just plain s for seconds." |
6018 | msgstr "" | 4926 | msgstr "" |
6019 | 4927 | ||
6020 | #: plugins-root/check_icmp.c:1341 | ||
6021 | msgid "The -v switch can be specified several times for increased verbosity." | 4928 | msgid "The -v switch can be specified several times for increased verbosity." |
6022 | msgstr "" | 4929 | msgstr "" |
@@ -291,7 +291,7 @@ always returns 0. | |||
291 | .Xc | 291 | .Xc |
292 | .El | 292 | .El |
293 | .Pp | 293 | .Pp |
294 | For maximum compatability your test program should return a particular | 294 | For maximum compatibility your test program should return a particular |
295 | exit code. This is calculated by | 295 | exit code. This is calculated by |
296 | .Fn exit_status | 296 | .Fn exit_status |
297 | so it is sufficient to always return from | 297 | so it is sufficient to always return from |
@@ -309,7 +309,7 @@ directory in the source distribution contains numerous tests of | |||
309 | functionality, written using | 309 | functionality, written using |
310 | .Nm . | 310 | .Nm . |
311 | Examine them for examples of how to construct test suites. | 311 | Examine them for examples of how to construct test suites. |
312 | .Sh COMPATABILITY | 312 | .Sh COMPATIBILITY |
313 | .Nm | 313 | .Nm |
314 | strives to be compatible with the Perl Test::More and Test::Harness | 314 | strives to be compatible with the Perl Test::More and Test::Harness |
315 | modules. The test suite verifies that | 315 | modules. The test suite verifies that |
@@ -25,7 +25,7 @@ | |||
25 | */ | 25 | */ |
26 | 26 | ||
27 | /* '## __VA_ARGS__' is a gcc'ism. C99 doesn't allow the token pasting | 27 | /* '## __VA_ARGS__' is a gcc'ism. C99 doesn't allow the token pasting |
28 | and requires the caller to add the final comma if they've ommitted | 28 | and requires the caller to add the final comma if they've omitted |
29 | the optional arguments */ | 29 | the optional arguments */ |
30 | #ifdef __GNUC__ | 30 | #ifdef __GNUC__ |
31 | # define ok(e, test, ...) ((e) ? \ | 31 | # define ok(e, test, ...) ((e) ? \ |
diff --git a/tools/build_perl_modules b/tools/build_perl_modules index 5a57a47..b8cd34c 100755 --- a/tools/build_perl_modules +++ b/tools/build_perl_modules | |||
@@ -140,7 +140,7 @@ my $libs = "$destdir/$prefix/lib:$destdir/$prefix/lib/$Config{archname}"; | |||
140 | 140 | ||
141 | my $topdir = cwd(); | 141 | my $topdir = cwd(); |
142 | 142 | ||
143 | # set an initial value if there isnt one already | 143 | # set an initial value if there isn't one already |
144 | # Need to use PERL5LIB to ensure we get pre-installed mods from earlier | 144 | # Need to use PERL5LIB to ensure we get pre-installed mods from earlier |
145 | # tags in the install_order file | 145 | # tags in the install_order file |
146 | $ENV{PERL5LIB} ||= q{}; | 146 | $ENV{PERL5LIB} ||= q{}; |
@@ -149,8 +149,8 @@ $ENV{PERL5LIB} ||= q{}; | |||
149 | $ENV{PERL_AUTOINSTALL} = "--skipdeps"; | 149 | $ENV{PERL_AUTOINSTALL} = "--skipdeps"; |
150 | 150 | ||
151 | # keep a record of how many times a module build is done. This is so they may | 151 | # keep a record of how many times a module build is done. This is so they may |
152 | # be built a second time to include optional prereq's that couldnt | 152 | # be built a second time to include optional prereq's that couldn't |
153 | # previously be built due to circular dependancies | 153 | # previously be built due to circular dependencies |
154 | my %built_modules; | 154 | my %built_modules; |
155 | foreach my $tarball (@tarballs) { | 155 | foreach my $tarball (@tarballs) { |
156 | ( my $dir = $tarball ) =~ s/\.(?:tgz|tar.gz)$//; | 156 | ( my $dir = $tarball ) =~ s/\.(?:tgz|tar.gz)$//; |
diff --git a/tools/p1.pl b/tools/p1.pl index 2788dbf..9cbe6dc 100644 --- a/tools/p1.pl +++ b/tools/p1.pl | |||
@@ -2,7 +2,7 @@ | |||
2 | # | 2 | # |
3 | # Hacked version of the sample code from the perlembedded doco. | 3 | # Hacked version of the sample code from the perlembedded doco. |
4 | # | 4 | # |
5 | # Only major changes are to separate the compiling and cacheing from | 5 | # Only major changes are to separate the compiling and caching from |
6 | # the execution so that the cache can be kept in "non-volatile" parent | 6 | # the execution so that the cache can be kept in "non-volatile" parent |
7 | # process while the execution is done from "volatile" child processes | 7 | # process while the execution is done from "volatile" child processes |
8 | # and that STDOUT is redirected to a file by means of a tied filehandle | 8 | # and that STDOUT is redirected to a file by means of a tied filehandle |
diff --git a/tools/tinderbox_build b/tools/tinderbox_build index 48836b1..1a41f57 100755 --- a/tools/tinderbox_build +++ b/tools/tinderbox_build | |||
@@ -138,7 +138,7 @@ sub BuildIt { | |||
138 | # interprets that as the end of the mail, and truncates the log before | 138 | # interprets that as the end of the mail, and truncates the log before |
139 | # it gets to Tinderbox. (terry weismann, chris yeh) | 139 | # it gets to Tinderbox. (terry weismann, chris yeh) |
140 | # | 140 | # |
141 | # This was replaced by a perl 'port' of the above, writen by | 141 | # This was replaced by a perl 'port' of the above, written by |
142 | # preed@netscape.com; good things: no need for system() call, and now it's | 142 | # preed@netscape.com; good things: no need for system() call, and now it's |
143 | # all in perl, so we don't have to do OS checking like before. | 143 | # all in perl, so we don't have to do OS checking like before. |
144 | 144 | ||