de.po 89 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612
  1. # German Language Translation File.
  2. # Copyright (C) YEAR Nagios Plugin Development Group
  3. # This file is distributed under the same license as the nagios-plugins package.
  4. # Karl DeBisschop <kdebisschop@users.sourceforge.net>, 2003.
  5. #
  6. #: plugins/check_nt.c:311
  7. #, fuzzy
  8. msgid ""
  9. msgstr ""
  10. "Project-Id-Version: nagios-plugins 1.3.99\n"
  11. "POT-Creation-Date: 2003-08-10 07:52-0400\n"
  12. "PO-Revision-Date: 2003-07-20 22:24-0400\n"
  13. "Last-Translator: Michael Wirtgen <Michael.Wirtgen@miwi-dv.com>\n"
  14. "Language-Team: de <LL@li.org>\n"
  15. "MIME-Version: 1.0\n"
  16. "Content-Type: text/plain; charset=UTF-8\n"
  17. "Content-Transfer-Encoding: 8bit\n"
  18. "Report-Msgid-Bugs-To: \n"
  19. #: plugins/check_by_ssh.c:69 plugins/check_dig.c:65 plugins/check_disk.c:157
  20. #: plugins/check_fping.c:73 plugins/check_nagios.c:60 plugins/check_nt.c:100
  21. #: plugins/check_nwstat.c:121 plugins/check_radius.c:107
  22. #: plugins/check_ssh.c:52 plugins/check_tcp.c:210 plugins/check_users.c:45
  23. #: plugins/negate.c:79
  24. msgid "Could not parse arguments\n"
  25. msgstr ""
  26. #: plugins/check_by_ssh.c:88
  27. #, c-format
  28. msgid "Unable to open pipe: %s"
  29. msgstr ""
  30. #: plugins/check_by_ssh.c:96 plugins/check_dig.c:85 plugins/check_dns.c:112
  31. #: plugins/check_fping.c:93 plugins/check_hpjd.c:114 plugins/check_load.c:112
  32. #: plugins/check_nagios.c:97 plugins/check_procs.c:123
  33. #: plugins/check_snmp.c:175 plugins/check_swap.c:112 plugins/check_users.c:56
  34. #: plugins/negate.c:93 plugins/urlize.c:89
  35. #, c-format
  36. msgid "Could not open stderr for %s\n"
  37. msgstr ""
  38. #: plugins/check_by_ssh.c:121
  39. #, c-format
  40. msgid "SSH WARNING: could not open %s\n"
  41. msgstr ""
  42. #: plugins/check_by_ssh.c:128
  43. msgid "STATUS CODE: "
  44. msgstr ""
  45. #: plugins/check_by_ssh.c:139
  46. #, c-format
  47. msgid "STATUS CODE: %d"
  48. msgstr ""
  49. #: plugins/check_by_ssh.c:140
  50. #, c-format
  51. msgid "[%d] PROCESS_SERVICE_CHECK_RESULT;%s;%s;%d;%s\n"
  52. msgstr ""
  53. #: plugins/check_by_ssh.c:224
  54. msgid "timeout interval must be an integer"
  55. msgstr ""
  56. #: plugins/check_by_ssh.c:229
  57. msgid "invalid host name"
  58. msgstr ""
  59. #: plugins/check_by_ssh.c:234
  60. msgid "port must be an integer"
  61. msgstr ""
  62. #: plugins/check_by_ssh.c:279
  63. #, c-format
  64. msgid "%s: You must provide a host name\n"
  65. msgstr ""
  66. #: plugins/check_by_ssh.c:281
  67. #, c-format
  68. msgid "%s: Invalid host name %s\n"
  69. msgstr ""
  70. #: plugins/check_by_ssh.c:297
  71. msgid "No remotecmd\n"
  72. msgstr ""
  73. #: plugins/check_by_ssh.c:315
  74. #, c-format
  75. msgid ""
  76. "%s: In passive mode, you must provide a service name for each command.\n"
  77. msgstr ""
  78. #: plugins/check_by_ssh.c:318
  79. #, c-format
  80. msgid ""
  81. "%s: In passive mode, you must provide the host short name from the nagios "
  82. "configs.\n"
  83. msgstr ""
  84. #: plugins/check_by_ssh.c:333
  85. msgid ""
  86. "Copyright (c) 1999 Karl DeBisschop <kdebisschop@users.sourceforge.net>\n"
  87. msgstr ""
  88. #: plugins/check_by_ssh.c:336
  89. msgid ""
  90. "This plugin uses SSH to execute commands on a remote host\n"
  91. "\n"
  92. msgstr ""
  93. #: plugins/check_by_ssh.c:346
  94. msgid ""
  95. " -1, --proto1\n"
  96. " tell ssh to use Protocol 1\n"
  97. " -2, --proto2\n"
  98. " tell ssh to use Protocol 2\n"
  99. " -f\n"
  100. " tells ssh to fork rather than create a tty\n"
  101. msgstr ""
  102. #: plugins/check_by_ssh.c:354
  103. msgid ""
  104. " -C, --command='COMMAND STRING'\n"
  105. " command to execute on the remote machine\n"
  106. " -l, --logname=USERNAME\n"
  107. " SSH user name on remote host [optional]\n"
  108. " -i, --identity=KEYFILE\n"
  109. " identity of an authorized key [optional]\n"
  110. " -O, --output=FILE\n"
  111. " external command file for nagios [optional]\n"
  112. " -s, --services=LIST\n"
  113. " list of nagios service names, separated by ':' [optional]\n"
  114. " -n, --name=NAME\n"
  115. " short name of host in nagios configuration [optional]\n"
  116. msgstr ""
  117. #: plugins/check_by_ssh.c:372
  118. msgid ""
  119. "\n"
  120. "The most common mode of use is to refer to a local identity file with\n"
  121. "the '-i' option. In this mode, the identity pair should have a null\n"
  122. "passphrase and the public key should be listed in the authorized_keys\n"
  123. "file of the remote host. Usually the key will be restricted to running\n"
  124. "only one command on the remote server. If the remote SSH server tracks\n"
  125. "invocation agruments, the one remote program may be an agent that can\n"
  126. "execute additional commands as proxy\n"
  127. msgstr ""
  128. #: plugins/check_by_ssh.c:381
  129. msgid ""
  130. "\n"
  131. "To use passive mode, provide multiple '-C' options, and provide\n"
  132. "all of -O, -s, and -n options (servicelist order must match '-C'\n"
  133. "options)\n"
  134. msgstr ""
  135. #: plugins/check_by_ssh.c:394
  136. #, c-format
  137. msgid ""
  138. "\n"
  139. "Usage: %s [-f46] [-t timeout] [-i identity] [-l user] -H <host> \n"
  140. " -C <command> [-n name] [-s servicelist] [-O outputfile] [-p port]\n"
  141. msgstr ""
  142. #: plugins/check_dig.c:62
  143. msgid "Cannot catch SIGALRM\n"
  144. msgstr ""
  145. #: plugins/check_dig.c:79 plugins/check_dns.c:106 plugins/check_hpjd.c:108
  146. #: plugins/check_nagios.c:91 plugins/check_procs.c:117
  147. #: plugins/check_snmp.c:169 plugins/check_swap.c:106 plugins/check_users.c:50
  148. #: plugins/negate.c:89 plugins/urlize.c:83
  149. #, c-format
  150. msgid "Could not open pipe: %s\n"
  151. msgstr ""
  152. #: plugins/check_dig.c:104
  153. msgid "Server not found in ANSWER SECTION"
  154. msgstr ""
  155. #: plugins/check_dig.c:114
  156. msgid "No ANSWER SECTION found"
  157. msgstr ""
  158. #: plugins/check_dig.c:131
  159. msgid "dig returned error status"
  160. msgstr ""
  161. #: plugins/check_dig.c:137 plugins/check_dns.c:214 plugins/check_dns.c:217
  162. #: plugins/check_dns.c:220
  163. msgid " Probably a non-existent host/domain"
  164. msgstr ""
  165. #: plugins/check_dig.c:140
  166. #, c-format
  167. msgid "DNS OK - %d seconds response time (%s)\n"
  168. msgstr ""
  169. #: plugins/check_dig.c:143 plugins/check_dns.c:213
  170. #, c-format
  171. msgid "DNS WARNING - %s\n"
  172. msgstr ""
  173. #: plugins/check_dig.c:145 plugins/check_dns.c:216
  174. #, c-format
  175. msgid "DNS CRITICAL - %s\n"
  176. msgstr ""
  177. #: plugins/check_dig.c:147 plugins/check_dns.c:219
  178. #, c-format
  179. msgid "DNS problem - %s\n"
  180. msgstr ""
  181. #: plugins/check_dig.c:184 plugins/check_pgsql.c:206 plugins/check_ping.c:194
  182. #: plugins/check_time.c:180 plugins/negate.c:168 plugins/urlize.c:68
  183. msgid "Unknown argument"
  184. msgstr ""
  185. #: plugins/check_dig.c:196 plugins/check_dig.c:247 plugins/check_hpjd.c:343
  186. #: plugins/check_real.c:364 plugins/check_smtp.c:308
  187. msgid "Invalid host name"
  188. msgstr ""
  189. #: plugins/check_dig.c:204 plugins/check_time.c:245 plugins/check_udp.c:182
  190. msgid "Server port must be a nonnegative integer\n"
  191. msgstr ""
  192. #: plugins/check_dig.c:215
  193. msgid "Warning interval must be a nonnegative integer\n"
  194. msgstr ""
  195. #: plugins/check_dig.c:223
  196. msgid "Critical interval must be a nonnegative integer\n"
  197. msgstr ""
  198. #: plugins/check_dig.c:231 plugins/check_real.c:344 plugins/check_smtp.c:278
  199. msgid "Time interval must be a nonnegative integer\n"
  200. msgstr ""
  201. #: plugins/check_dig.c:285
  202. msgid ""
  203. "Test the DNS service on the specified host using dig\n"
  204. "\n"
  205. msgstr ""
  206. #: plugins/check_dig.c:293
  207. msgid ""
  208. " -l, --lookup=STRING\n"
  209. " machine name to lookup\n"
  210. msgstr ""
  211. #: plugins/check_dig.c:312
  212. #, c-format
  213. msgid ""
  214. "Usage: %s -H host -l lookup [-p <server port>] [-w <warning interval>]\n"
  215. " [-c <critical interval>] [-t <timeout>] [-v]\n"
  216. msgstr ""
  217. #: plugins/check_disk.c:197
  218. #, c-format
  219. msgid ""
  220. "%s\n"
  221. "%.0f of %.0f %s (%.0f%%) free on %s (type %s mounted on %s) warn:%lu crit:%"
  222. "lu warn%%:%.0f%% crit%%:%.0f%%"
  223. msgstr ""
  224. #: plugins/check_disk.c:213
  225. #, c-format
  226. msgid "%s [%s not found]"
  227. msgstr ""
  228. #: plugins/check_disk.c:289
  229. msgid "Timeout Interval must be an integer!\n"
  230. msgstr ""
  231. #: plugins/check_disk.c:306 plugins/check_swap.c:247
  232. msgid "Warning threshold must be integer or percentage!\n"
  233. msgstr ""
  234. #: plugins/check_disk.c:323 plugins/check_swap.c:264
  235. msgid "Critical threshold must be integer or percentage!\n"
  236. msgstr ""
  237. #: plugins/check_disk.c:344
  238. #, c-format
  239. msgid "unit type %s not known\n"
  240. msgstr ""
  241. #: plugins/check_disk.c:347
  242. #, c-format
  243. msgid "failed allocating storage for '%s'\n"
  244. msgstr ""
  245. #: plugins/check_disk.c:414
  246. msgid "check_disk: unrecognized option\n"
  247. msgstr ""
  248. #: plugins/check_disk.c:471
  249. msgid "INPUT ERROR: No thresholds specified"
  250. msgstr ""
  251. #: plugins/check_disk.c:477
  252. #, c-format
  253. msgid ""
  254. "INPUT ERROR: C_DFP (%f) should be less than W_DFP (%.1f) and both should be "
  255. "between zero and 100 percent, inclusive"
  256. msgstr ""
  257. #: plugins/check_disk.c:484
  258. #, c-format
  259. msgid ""
  260. "INPUT ERROR: C_DF (%lu) should be less than W_DF (%lu) and both should be "
  261. "greater than zero"
  262. msgstr ""
  263. #: plugins/check_disk.c:549 plugins/check_dummy.c:80 plugins/check_http.c:995
  264. #: plugins/check_mrtg.c:303 plugins/check_mrtgtraf.c:325
  265. #: plugins/check_nwstat.c:899 plugins/check_overcr.c:419
  266. msgid "Copyright (c) 1999 Ethan Galstad <nagios@nagios.org>\n"
  267. msgstr ""
  268. #: plugins/check_disk.c:552
  269. msgid ""
  270. "This plugin checks the amount of used disk space on a mounted file system\n"
  271. "and generates an alert if free space is less than one of the threshold "
  272. "values."
  273. msgstr ""
  274. #: plugins/check_disk.c:560
  275. #, c-format
  276. msgid ""
  277. " -w, --warning=INTEGER\n"
  278. " Exit with WARNING status if less than INTEGER kilobytes of disk are free\n"
  279. " -w, --warning=PERCENT%%\n"
  280. " Exit with WARNING status if less than PERCENT of disk space is free\n"
  281. " -c, --critical=INTEGER\n"
  282. " Exit with CRITICAL status if less than INTEGER kilobytes of disk are "
  283. "free\n"
  284. " -c, --critical=PERCENT%%\n"
  285. " Exit with CRITCAL status if less than PERCENT of disk space is free\n"
  286. " -C, --clear\n"
  287. " Clear thresholds\n"
  288. msgstr ""
  289. #: plugins/check_disk.c:572
  290. msgid ""
  291. " -u, --units=STRING\n"
  292. " Choose bytes, kB, MB, GB, TB (default: MB)\n"
  293. " -k, --kilobytes\n"
  294. " Same as '--units kB'\n"
  295. " -m, --megabytes\n"
  296. " Same as '--units MB'\n"
  297. msgstr ""
  298. #: plugins/check_disk.c:580
  299. msgid ""
  300. " -l, --local\n"
  301. " Only check local filesystems\n"
  302. " -p, --path=PATH, --partition=PARTITION\n"
  303. " Path or partition (may be repeated)\n"
  304. " -x, --exclude_device=PATH <STRING>\n"
  305. " Ignore device (only works if -p unspecified)\n"
  306. " -X, --exclude-type=TYPE <STRING>\n"
  307. " Ignore all filesystems of indicated type (may be repeated)\n"
  308. " -M, --mountpoint\n"
  309. " Display the mountpoint instead of the partition\n"
  310. " -e, --errors-only\n"
  311. " Display only devices/mountpoints with errors\n"
  312. msgstr ""
  313. #: plugins/check_disk.c:600
  314. msgid ""
  315. "Examples:\n"
  316. " check_disk -w 10% -c 5% -p /tmp -p /var -C -w 100000 -c 50000 -p /\n"
  317. " Checks /tmp and /var at 10%,5% and / at 100MB, 50MB\n"
  318. msgstr ""
  319. #: plugins/check_disk.c:613
  320. #, c-format
  321. msgid ""
  322. "Usage: %s -w limit -c limit [-p path | -x device] [-t timeout] [-m] [-e]\n"
  323. " [-v] [-q]\n"
  324. " %s (-h|--help)\n"
  325. " %s (-V|--version)\n"
  326. msgstr ""
  327. #: plugins/check_dns.c:86 plugins/check_nagios.c:64 plugins/check_pgsql.c:136
  328. #: plugins/check_ping.c:79 plugins/negate.c:83
  329. msgid "Cannot catch SIGALRM"
  330. msgstr ""
  331. #: plugins/check_dns.c:124 plugins/check_dns.c:153
  332. msgid "Unknown error (plugin)"
  333. msgstr ""
  334. #: plugins/check_dns.c:148
  335. #, c-format
  336. msgid "DNS CRITICAL - '%s' returned empty host name string\n"
  337. msgstr ""
  338. #: plugins/check_dns.c:185
  339. msgid "nslookup returned error status"
  340. msgstr ""
  341. #: plugins/check_dns.c:192
  342. #, c-format
  343. msgid "DNS CRITICAL - '%s' output parsing exited with no address\n"
  344. msgstr ""
  345. #: plugins/check_dns.c:198
  346. #, c-format
  347. msgid "expected %s but got %s"
  348. msgstr ""
  349. #: plugins/check_dns.c:209
  350. #, c-format
  351. msgid "DNS ok - %.3f seconds response time, address%s %s|time=%.3f\n"
  352. msgstr ""
  353. #: plugins/check_dns.c:237
  354. #, c-format
  355. msgid "No response from name server %s\n"
  356. msgstr ""
  357. #: plugins/check_dns.c:241
  358. #, c-format
  359. msgid "Name server %s has no records\n"
  360. msgstr ""
  361. #: plugins/check_dns.c:248
  362. #, c-format
  363. msgid "Connection to name server %s was refused\n"
  364. msgstr ""
  365. #: plugins/check_dns.c:254
  366. #, c-format
  367. msgid "Domain %s was not found by the server\n"
  368. msgstr ""
  369. #: plugins/check_dns.c:258
  370. msgid "Network is unreachable\n"
  371. msgstr ""
  372. #: plugins/check_dns.c:262
  373. #, c-format
  374. msgid "Server failure for %s\n"
  375. msgstr ""
  376. #: plugins/check_dns.c:307 plugins/check_fping.c:243 plugins/check_game.c:200
  377. #: plugins/check_overcr.c:331 plugins/check_radius.c:209
  378. #: plugins/check_tcp.c:401 plugins/check_udp.c:143 plugins/check_users.c:130
  379. #, c-format
  380. msgid ""
  381. "%s: Unknown argument: %s\n"
  382. "\n"
  383. msgstr ""
  384. #: plugins/check_dns.c:324 plugins/check_dns.c:336 plugins/check_dns.c:347
  385. #: plugins/check_dns.c:352 plugins/check_dns.c:362 plugins/check_dns.c:373
  386. #: plugins/check_game.c:217 plugins/check_game.c:225
  387. msgid "Input buffer overflow\n"
  388. msgstr ""
  389. #: plugins/check_dns.c:331
  390. msgid ""
  391. "Invalid server name/address\n"
  392. "\n"
  393. msgstr ""
  394. #: plugins/check_dns.c:342 plugins/check_fping.c:257
  395. #: plugins/check_radius.c:223
  396. msgid ""
  397. "Invalid host name/address\n"
  398. "\n"
  399. msgstr ""
  400. #: plugins/check_dns.c:369
  401. #, c-format
  402. msgid ""
  403. "Invalid name/address: %s\n"
  404. "\n"
  405. msgstr ""
  406. #: plugins/check_dns.c:405
  407. msgid ""
  408. "-H, --hostname=HOST\n"
  409. " The name or address you want to query\n"
  410. "-s, --server=HOST\n"
  411. " Optional DNS server you want to use for the lookup\n"
  412. "-a, --expected-address=IP-ADDRESS\n"
  413. " Optional IP address you expect the DNS server to return\n"
  414. msgstr ""
  415. #: plugins/check_dns.c:415
  416. msgid ""
  417. "\n"
  418. "This plugin uses the nslookup program to obtain the IP address\n"
  419. "for the given host/domain query. A optional DNS server to use may\n"
  420. "be specified. If no DNS server is specified, the default server(s)\n"
  421. "specified in /etc/resolv.conf will be used.\n"
  422. msgstr ""
  423. #: plugins/check_dns.c:430
  424. #, c-format
  425. msgid ""
  426. "Usage: %s -H host [-s server] [-a expected-address] [-t timeout]\n"
  427. " %s --help\n"
  428. " %s --version\n"
  429. msgstr ""
  430. #: plugins/check_dummy.c:38
  431. msgid "Incorrect number of arguments supplied\n"
  432. msgstr ""
  433. #: plugins/check_dummy.c:48
  434. msgid "Arguments to check_dummy must be an integer\n"
  435. msgstr ""
  436. #: plugins/check_dummy.c:87
  437. msgid ""
  438. "\n"
  439. "This plugin will simply return the state corresponding to the numeric value\n"
  440. "of the <state> argument.\n"
  441. msgstr ""
  442. #: plugins/check_dummy.c:99
  443. #, c-format
  444. msgid "Usage: %s <integer state>\n"
  445. msgstr ""
  446. #: plugins/check_fping.c:87
  447. #, c-format
  448. msgid "Unable to open pipe: %s\n"
  449. msgstr ""
  450. #: plugins/check_fping.c:134
  451. #, c-format
  452. msgid "FPING unknown - %s not found\n"
  453. msgstr ""
  454. #: plugins/check_fping.c:138
  455. #, c-format
  456. msgid "FPING critical - %s is unreachable\n"
  457. msgstr ""
  458. #: plugins/check_fping.c:143
  459. #, c-format
  460. msgid "FPING critical - %s is down\n"
  461. msgstr ""
  462. #: plugins/check_fping.c:169
  463. #, c-format
  464. msgid "FPING %s - %s (loss=%f%%, rta=%f ms)\n"
  465. msgstr ""
  466. #: plugins/check_fping.c:188
  467. #, c-format
  468. msgid "FPING %s - %s (loss=%f%% )\n"
  469. msgstr ""
  470. #: plugins/check_fping.c:289
  471. msgid "Packet size must be a positive integer"
  472. msgstr ""
  473. #: plugins/check_fping.c:295
  474. msgid "Packet count must be a positive integer"
  475. msgstr ""
  476. #: plugins/check_fping.c:302
  477. msgid ""
  478. "Host name was not supplied\n"
  479. "\n"
  480. msgstr ""
  481. #: plugins/check_fping.c:325
  482. #, c-format
  483. msgid "%s: Only one threshold may be packet loss (%s)\n"
  484. msgstr ""
  485. #: plugins/check_fping.c:329
  486. #, c-format
  487. msgid "%s: Only one threshold must be packet loss (%s)\n"
  488. msgstr ""
  489. #: plugins/check_fping.c:362
  490. msgid ""
  491. "Copyright (c) 1999 Didi Rieder (adrieder@sbox.tu-graz.ac.at)\n"
  492. "\n"
  493. "This plugin will use the /bin/fping command (from saint) to ping the\n"
  494. "specified host for a fast check if the host is alive. Note that it is\n"
  495. "necessary to set the suid flag on fping.\n"
  496. "\n"
  497. msgstr ""
  498. #: plugins/check_fping.c:372
  499. #, c-format
  500. msgid ""
  501. " -H, --hostname=HOST\n"
  502. " Name or IP Address of host to ping (IP Address bypasses name lookup,\n"
  503. " reducing system load)\n"
  504. " -w, --warning=THRESHOLD\n"
  505. " warning threshold pair\n"
  506. " -c, --critical=THRESHOLD\n"
  507. " critical threshold pair\n"
  508. " -b, --bytes=INTEGER\n"
  509. " Size of ICMP packet (default: %d)\n"
  510. " -n, --number=INTEGER\n"
  511. " Number of ICMP packets to send (default: %d)\n"
  512. msgstr ""
  513. #: plugins/check_fping.c:388
  514. #, c-format
  515. msgid ""
  516. "\n"
  517. "THRESHOLD is <rta>,<pl>%% where <rta> is the round trip average travel\n"
  518. "time (ms) which triggers a WARNING or CRITICAL state, and <pl> is the\n"
  519. "percentage of packet loss to trigger an alarm state.\n"
  520. msgstr ""
  521. #: plugins/check_fping.c:402
  522. #, c-format
  523. msgid "Usage: %s <host_address>\n"
  524. msgstr ""
  525. #: plugins/check_game.c:66 plugins/check_snmp.c:157
  526. msgid "Incorrect arguments supplied\n"
  527. msgstr ""
  528. #: plugins/check_game.c:69
  529. msgid "Copyright (c) 1999 Ian Cass, Knowledge Matters Limited\n"
  530. msgstr ""
  531. #: plugins/check_game.c:70
  532. msgid "License: GPL\n"
  533. msgstr ""
  534. #: plugins/check_game.c:90
  535. #, c-format
  536. msgid "Error - Could not open pipe: %s\n"
  537. msgstr ""
  538. #: plugins/check_game.c:110
  539. msgid "ERROR: Host type parameter incorrect!\n"
  540. msgstr ""
  541. #: plugins/check_game.c:286
  542. #, c-format
  543. msgid "This plugin tests %s connections with the specified host."
  544. msgstr ""
  545. #: plugins/check_game.c:292
  546. msgid ""
  547. "<game> = Game type that is recognised by qstat (without the leading "
  548. "dash)\n"
  549. "<ip_address> = The IP address of the device you wish to query\n"
  550. " [port] = Optional port of which to connect\n"
  551. " [game_field] = Field number in raw qstat output that contains game name\n"
  552. " [map_field] = Field number in raw qstat output that contains map name\n"
  553. " [ping_field] = Field number in raw qstat output that contains ping time\n"
  554. msgstr ""
  555. #: plugins/check_game.c:302
  556. msgid ""
  557. "\n"
  558. "Notes:\n"
  559. "- This plugin uses the 'qstat' command, the popular game server status query "
  560. "tool .\n"
  561. " If you don't have the package installed, you will need to download it "
  562. "from\n"
  563. " http://www.activesw.com/people/steve/qstat.html before you can use this "
  564. "plugin.\n"
  565. msgstr ""
  566. #: plugins/check_game.c:317
  567. #, c-format
  568. msgid ""
  569. "Usage: %s <game> <ip_address> [-p port] [-gf game_field] [-mf map_field]\n"
  570. " [-pf ping_field]\n"
  571. msgstr ""
  572. #: plugins/check_hpjd.c:83 plugins/check_mrtg.c:57 plugins/check_mrtgtraf.c:67
  573. #: plugins/check_mysql.c:47 plugins/check_real.c:65 plugins/check_smtp.c:69
  574. #: plugins/check_swap.c:77 plugins/check_time.c:58
  575. msgid "Invalid command arguments supplied\n"
  576. msgstr ""
  577. #: plugins/check_hpjd.c:218
  578. msgid "Paper Jam"
  579. msgstr ""
  580. #: plugins/check_hpjd.c:222
  581. msgid "Out of Paper"
  582. msgstr ""
  583. #: plugins/check_hpjd.c:227
  584. msgid "Printer Offline"
  585. msgstr ""
  586. #: plugins/check_hpjd.c:232
  587. msgid "Peripheral Error"
  588. msgstr ""
  589. #: plugins/check_hpjd.c:236
  590. msgid "Intervention Required"
  591. msgstr ""
  592. #: plugins/check_hpjd.c:240
  593. msgid "Toner Low"
  594. msgstr ""
  595. #: plugins/check_hpjd.c:244
  596. msgid "Insufficient Memory"
  597. msgstr ""
  598. #: plugins/check_hpjd.c:248
  599. msgid "A Door is Open"
  600. msgstr ""
  601. #: plugins/check_hpjd.c:252
  602. msgid "Output Tray is Full"
  603. msgstr ""
  604. #: plugins/check_hpjd.c:256
  605. msgid "Data too Slow for Engine"
  606. msgstr ""
  607. #: plugins/check_hpjd.c:260
  608. msgid "Unknown Paper Error"
  609. msgstr ""
  610. #: plugins/check_hpjd.c:265
  611. #, c-format
  612. msgid "Printer ok - (%s)\n"
  613. msgstr ""
  614. #: plugins/check_hpjd.c:320 plugins/check_mysql.c:128 plugins/check_real.c:302
  615. #: plugins/check_smtp.c:230
  616. msgid "Invalid host name\n"
  617. msgstr ""
  618. #: plugins/check_hpjd.c:333 plugins/check_load.c:219 plugins/check_mrtg.c:224
  619. #: plugins/check_mrtgtraf.c:264 plugins/check_mysql.c:150
  620. #: plugins/check_real.c:354 plugins/check_smtp.c:298 plugins/check_swap.c:279
  621. msgid "Invalid argument\n"
  622. msgstr ""
  623. #: plugins/check_hpjd.c:379
  624. msgid ""
  625. "This plugin tests the STATUS of an HP printer with a JetDirect card.\n"
  626. "Net-snmp must be installed on the computer running the plugin.\n"
  627. "\n"
  628. msgstr ""
  629. #: plugins/check_hpjd.c:387
  630. #, c-format
  631. msgid ""
  632. " -C, --community=STRING\n"
  633. " The SNMP community name (default=%s)\n"
  634. msgstr ""
  635. #: plugins/check_hpjd.c:400
  636. #, c-format
  637. msgid "Usage: %s -H host [-C community]\n"
  638. msgstr ""
  639. #: plugins/check_http.c:135
  640. msgid "check_http: could not parse arguments\n"
  641. msgstr ""
  642. #: plugins/check_http.c:156
  643. msgid "HTTP CRITICAL - Could not make SSL connection\n"
  644. msgstr ""
  645. #: plugins/check_http.c:162 plugins/check_http.c:499
  646. msgid "ERROR: Cannot retrieve server certificate.\n"
  647. msgstr ""
  648. #: plugins/check_http.c:233
  649. msgid "unknown argument"
  650. msgstr ""
  651. #: plugins/check_http.c:245
  652. msgid "timeout interval must be a non-negative integer"
  653. msgstr ""
  654. #: plugins/check_http.c:251
  655. msgid "invalid critical threshold"
  656. msgstr ""
  657. #: plugins/check_http.c:259
  658. msgid "invalid warning threshold"
  659. msgstr ""
  660. #: plugins/check_http.c:273 plugins/check_http.c:288
  661. msgid "check_http: invalid option - SSL is not available\n"
  662. msgstr ""
  663. #: plugins/check_http.c:282
  664. msgid "invalid certificate expiration period"
  665. msgstr ""
  666. #: plugins/check_http.c:303
  667. #, c-format
  668. msgid "option f:%d \n"
  669. msgstr ""
  670. #: plugins/check_http.c:318
  671. msgid "invalid port number"
  672. msgstr ""
  673. #: plugins/check_http.c:346
  674. msgid "check_http: call for regex which was not a compiled option\n"
  675. msgstr ""
  676. #: plugins/check_http.c:360
  677. #, c-format
  678. msgid "Could Not Compile Regular Expression: %s"
  679. msgstr ""
  680. #: plugins/check_http.c:372 plugins/check_ldap.c:233 plugins/check_ping.c:217
  681. #: plugins/check_smtp.c:288 plugins/check_ssh.c:124 plugins/check_tcp.c:420
  682. msgid "IPv6 support not available\n"
  683. msgstr ""
  684. #: plugins/check_http.c:394
  685. msgid "check_http: you must specify a server address or host name\n"
  686. msgstr ""
  687. #: plugins/check_http.c:492 plugins/check_http.c:507
  688. msgid "Unable to open TCP socket"
  689. msgstr ""
  690. #: plugins/check_http.c:566
  691. msgid "Client Certificate Required\n"
  692. msgstr ""
  693. #: plugins/check_http.c:568 plugins/check_http.c:573
  694. msgid "Error in recv()"
  695. msgstr ""
  696. #: plugins/check_http.c:581
  697. #, c-format
  698. msgid "No data received %s"
  699. msgstr ""
  700. #: plugins/check_http.c:624
  701. msgid "Invalid HTTP response received from host\n"
  702. msgstr ""
  703. #: plugins/check_http.c:627
  704. #, c-format
  705. msgid "Invalid HTTP response received from host on port %d\n"
  706. msgstr ""
  707. #: plugins/check_http.c:635
  708. #, c-format
  709. msgid "HTTP OK: Status line output matched \"%s\"\n"
  710. msgstr ""
  711. #: plugins/check_http.c:650
  712. #, c-format
  713. msgid "HTTP CRITICAL: %s\n"
  714. msgstr ""
  715. #: plugins/check_http.c:659
  716. #, c-format
  717. msgid "HTTP WARNING: %s\n"
  718. msgstr ""
  719. #: plugins/check_http.c:675
  720. msgid "ERROR: could not allocate server_address"
  721. msgstr ""
  722. #: plugins/check_http.c:679
  723. msgid "ERROR: could not allocate server_url"
  724. msgstr ""
  725. #: plugins/check_http.c:727
  726. #, c-format
  727. msgid "UNKNOWN - Could not find redirect location - %s%s"
  728. msgstr ""
  729. #: plugins/check_http.c:733
  730. msgid "UNKNOWN"
  731. msgstr ""
  732. #: plugins/check_http.c:735 plugins/check_http.c:828
  733. msgid "OK"
  734. msgstr ""
  735. #: plugins/check_http.c:737
  736. msgid "WARNING"
  737. msgstr ""
  738. #: plugins/check_http.c:739
  739. msgid "CRITICAL"
  740. msgstr ""
  741. #: plugins/check_http.c:742
  742. #, c-format
  743. msgid " - %s - %.3f second response time %s%s|time=%ldus size=%dB\n"
  744. msgstr ""
  745. #: plugins/check_http.c:755
  746. #, c-format
  747. msgid "HTTP problem: %s - %.3f second response time %s%s|time=%ldus size=%dB\n"
  748. msgstr ""
  749. #: plugins/check_http.c:768 plugins/check_http.c:783 plugins/check_http.c:811
  750. #, c-format
  751. msgid "HTTP OK %s - %.3f second response time %s%s|time=%ldus size=%dB\n"
  752. msgstr ""
  753. #: plugins/check_http.c:774
  754. #, c-format
  755. msgid ""
  756. "CRITICAL - string not found%s|time=%ldus\n"
  757. " size=%dB"
  758. msgstr ""
  759. #: plugins/check_http.c:790
  760. #, c-format
  761. msgid "CRITICAL - pattern not found%s|time=%ldus size=%dB\n"
  762. msgstr ""
  763. #: plugins/check_http.c:796
  764. #, c-format
  765. msgid "CRITICAL - Execute Error: %s\n"
  766. msgstr ""
  767. #: plugins/check_http.c:806
  768. #, c-format
  769. msgid "HTTP WARNING: page size too small%s|size=%i\n"
  770. msgstr ""
  771. #: plugins/check_http.c:828
  772. #, c-format
  773. msgid "SSL seeding: %s\n"
  774. msgstr ""
  775. #: plugins/check_http.c:828
  776. msgid "Failed"
  777. msgstr ""
  778. #: plugins/check_http.c:835
  779. msgid "CRITICAL - Cannot create SSL context.\n"
  780. msgstr ""
  781. #: plugins/check_http.c:859
  782. msgid "CRITICAL - Cannot initiate SSL handshake.\n"
  783. msgstr ""
  784. #: plugins/check_http.c:887 plugins/check_http.c:899
  785. msgid "CRITICAL - Wrong time format in certificate.\n"
  786. msgstr ""
  787. #: plugins/check_http.c:928
  788. #, c-format
  789. msgid "WARNING - Certificate expires in %d day(s) (%s).\n"
  790. msgstr ""
  791. #: plugins/check_http.c:932
  792. #, c-format
  793. msgid "CRITICAL - Certificate expired on %s.\n"
  794. msgstr ""
  795. #: plugins/check_http.c:937
  796. #, c-format
  797. msgid "WARNING - Certificate expires today (%s).\n"
  798. msgstr ""
  799. #: plugins/check_http.c:941
  800. #, c-format
  801. msgid "OK - Certificate will expire on %s.\n"
  802. msgstr ""
  803. #: plugins/check_http.c:998
  804. msgid ""
  805. "This plugin tests the HTTP service on the specified host. It can test\n"
  806. "normal (http) and secure (https) servers, follow redirects, search for\n"
  807. "strings and regular expressions, check connection times, and report on\n"
  808. "certificate expiration times.\n"
  809. msgstr ""
  810. #: plugins/check_http.c:1006
  811. msgid "NOTE: One or both of -H and -I must be specified\n"
  812. msgstr ""
  813. #: plugins/check_http.c:1010
  814. #, c-format
  815. msgid ""
  816. " -H, --hostname=ADDRESS\n"
  817. " Host name argument for servers using host headers (virtual host)\n"
  818. " -I, --IP-address=ADDRESS\n"
  819. " IP address or name (use numeric address if possible to bypass DNS "
  820. "lookup).\n"
  821. " -p, --port=INTEGER\n"
  822. " Port number (default: %d)\n"
  823. msgstr ""
  824. #: plugins/check_http.c:1021
  825. msgid ""
  826. " -S, --ssl\n"
  827. " Connect via SSL\n"
  828. " -C, --certificate=INTEGER\n"
  829. " Minimum number of days a certificate has to be valid.\n"
  830. " (when this option is used the url is not checked.)\n"
  831. msgstr ""
  832. #: plugins/check_http.c:1029
  833. #, c-format
  834. msgid ""
  835. " -e, --expect=STRING\n"
  836. " String to expect in first (status) line of server response (default: %s)\n"
  837. " If specified skips all other status line logic (ex: 3xx, 4xx, 5xx "
  838. "processing)\n"
  839. " -s, --string=STRING\n"
  840. " String to expect in the content\n"
  841. " -u, --url=PATH\n"
  842. " URL to GET or POST (default: /)\n"
  843. " -P, --post=STRING\n"
  844. " URL encoded http POST data\n"
  845. msgstr ""
  846. #: plugins/check_http.c:1041
  847. msgid ""
  848. " -l, --linespan\n"
  849. " Allow regex to span newlines (must precede -r or -R)\n"
  850. " -r, --regex, --ereg=STRING\n"
  851. " Search page for regex STRING\n"
  852. " -R, --eregi=STRING\n"
  853. " Search page for case-insensitive regex STRING\n"
  854. msgstr ""
  855. #: plugins/check_http.c:1050
  856. msgid ""
  857. " -a, --authorization=AUTH_PAIR\n"
  858. " Username:password on sites with basic authentication\n"
  859. " -L, --link=URL\n"
  860. " Wrap output in HTML link (obsoleted by urlize)\n"
  861. " -f, --onredirect=<ok|warning|critical|follow>\n"
  862. " How to handle redirected pages\n"
  863. " -m, --min=INTEGER\n"
  864. " Minimum page size required (bytes)\n"
  865. msgstr ""
  866. #: plugins/check_http.c:1066
  867. msgid ""
  868. "This plugin will attempt to open an HTTP connection with the host. "
  869. "Successful\n"
  870. "connects return STATE_OK, refusals and timeouts return STATE_CRITICAL, "
  871. "other\n"
  872. "errors return STATE_UNKNOWN. Successful connects, but incorrect reponse\n"
  873. "messages from the host result in STATE_WARNING return values. If you are\n"
  874. "checking a virtual server that uses 'host headers' you must supply the FQDN\n"
  875. "(fully qualified domain name) as the [host_name] argument.\n"
  876. msgstr ""
  877. #: plugins/check_http.c:1075
  878. msgid ""
  879. "\n"
  880. "This plugin can also check whether an SSL enabled web server is able to\n"
  881. "serve content (optionally within a specified time) or whether the X509 \n"
  882. "certificate is still valid for the specified number of days.\n"
  883. msgstr ""
  884. #: plugins/check_http.c:1079
  885. msgid ""
  886. "\n"
  887. "CHECK CONTENT: check_http -w 5 -c 10 --ssl www.verisign.com\n"
  888. "\n"
  889. "When the 'www.verisign.com' server returns its content within 5 seconds, a\n"
  890. "STATE_OK will be returned. When the server returns its content but exceeds\n"
  891. "the 5-second threshold, a STATE_WARNING will be returned. When an error "
  892. "occurs,\n"
  893. "a STATE_CRITICAL will be returned.\n"
  894. "\n"
  895. msgstr ""
  896. #: plugins/check_http.c:1086
  897. msgid ""
  898. "CHECK CERTIFICATE: check_http www.verisign.com -C 14\n"
  899. "\n"
  900. "When the certificate of 'www.verisign.com' is valid for more than 14 days, "
  901. "a\n"
  902. "STATE_OK is returned. When the certificate is still valid, but for less "
  903. "than\n"
  904. "14 days, a STATE_WARNING is returned. A STATE_CRITICAL will be returned "
  905. "when\n"
  906. "the certificate is expired.\n"
  907. msgstr ""
  908. #: plugins/check_http.c:1104
  909. #, c-format
  910. msgid ""
  911. "Usage: %s (-H <vhost> | -I <IP-address>) [-u <uri>] [-p <port>]\n"
  912. " [-w <warn time>] [-c <critical time>] [-t <timeout>] [-L]\n"
  913. " [-a auth] [-f <ok | warn | critcal | follow>] [-e <expect>]\n"
  914. " [-s string] [-l] [-r <regex> | -R <case-insensitive regex>]\n"
  915. " [-P string] [-m min_pg_size] [-4|-6]\n"
  916. msgstr ""
  917. #: plugins/check_ide-smart.c:163
  918. #, c-format
  919. msgid "Critical: SMART_READ_VALUES: %s\n"
  920. msgstr ""
  921. #: plugins/check_ide-smart.c:228
  922. #, c-format
  923. msgid "Critical: %d Harddrive PreFailure%cDetected! %d/%d tests failed.\n"
  924. msgstr ""
  925. #: plugins/check_ide-smart.c:235
  926. #, c-format
  927. msgid "Warning: %d Harddrive Advisor%s Detected. %d/%d tests failed.\n"
  928. msgstr ""
  929. #: plugins/check_ide-smart.c:242
  930. #, c-format
  931. msgid "Status: Operational (%d/%d tests passed)\n"
  932. msgstr ""
  933. #: plugins/check_ide-smart.c:245
  934. #, c-format
  935. msgid "Error: Status '%d' uknown. %d/%d tests passed\n"
  936. msgstr ""
  937. #: plugins/check_ide-smart.c:274
  938. #, c-format
  939. msgid "OffLineStatus=%d {%s}, AutoOffLine=%s, OffLineTimeout=%d minutes\n"
  940. msgstr ""
  941. #: plugins/check_ide-smart.c:280
  942. #, c-format
  943. msgid "OffLineCapability=%d {%s %s %s}\n"
  944. msgstr ""
  945. #: plugins/check_ide-smart.c:286
  946. #, c-format
  947. msgid "SmartRevision=%d, CheckSum=%d, SmartCapability=%d {%s %s}\n"
  948. msgstr ""
  949. #: plugins/check_ide-smart.c:323
  950. #, c-format
  951. msgid "Critical: %s: %s\n"
  952. msgstr ""
  953. #: plugins/check_ide-smart.c:340
  954. #, c-format
  955. msgid "Critical: SMART_READ_THRESHOLDS: %s\n"
  956. msgstr ""
  957. #: plugins/check_ide-smart.c:358
  958. msgid ""
  959. "Usage: check_ide-smart [DEVICE] [OPTION]\n"
  960. " -d, --device=DEVICE\n"
  961. " Select device DEVICE\n"
  962. " -i, --immediate\n"
  963. " Perform immediately offline tests\n"
  964. " -q, --quiet-check\n"
  965. " Returns the number of failed tests\n"
  966. " -1, --auto-on\n"
  967. " Turn on automatic offline tests\n"
  968. " -0, --auto-off\n"
  969. " Turn off automatic offline tests\n"
  970. " -n, --net-saint\n"
  971. " Output suitable for Net Saint\n"
  972. " -h, --help\n"
  973. " -V, --version\n"
  974. msgstr ""
  975. #: plugins/check_ide-smart.c:432
  976. #, c-format
  977. msgid "Try `%s --help' for more information.\n"
  978. msgstr ""
  979. #: plugins/check_ide-smart.c:449
  980. #, c-format
  981. msgid "Critical: Couldn't open device: %s\n"
  982. msgstr ""
  983. #: plugins/check_ide-smart.c:454
  984. msgid "Critical: SMART_CMD_ENABLE\n"
  985. msgstr ""
  986. #: plugins/check_ldap.c:68
  987. msgid "check_ldap: could not parse arguments\n"
  988. msgstr ""
  989. #: plugins/check_ldap.c:82
  990. #, c-format
  991. msgid "Could not connect to the server at port %i\n"
  992. msgstr ""
  993. #: plugins/check_ldap.c:90
  994. #, c-format
  995. msgid "Could not set protocol version %d\n"
  996. msgstr ""
  997. #: plugins/check_ldap.c:98
  998. msgid "Could not bind to the ldap-server\n"
  999. msgstr ""
  1000. #: plugins/check_ldap.c:106
  1001. #, c-format
  1002. msgid "Could not search/find objectclasses in %s\n"
  1003. msgstr ""
  1004. #: plugins/check_ldap.c:123
  1005. #, c-format
  1006. msgid "LDAP CRITICAL - %i seconds response time\n"
  1007. msgstr ""
  1008. #: plugins/check_ldap.c:128
  1009. #, c-format
  1010. msgid "LDAP WARNING - %i seconds response time\n"
  1011. msgstr ""
  1012. #: plugins/check_ldap.c:133
  1013. #, c-format
  1014. msgid "LDAP OK - %i seconds response time\n"
  1015. msgstr ""
  1016. #: plugins/check_ldap.c:190
  1017. msgid "timeout interval must be a positive integer"
  1018. msgstr ""
  1019. #: plugins/check_ldap.c:237
  1020. msgid "check_ldap: could not parse unknown arguments\n"
  1021. msgstr ""
  1022. #: plugins/check_ldap.c:256
  1023. msgid "please specify the host name\n"
  1024. msgstr ""
  1025. #: plugins/check_ldap.c:259
  1026. msgid "please specify the LDAP base\n"
  1027. msgstr ""
  1028. #: plugins/check_ldap.c:278
  1029. msgid "Copyright (c) 1999 Didi Rieder (adrieder@sbox.tu-graz.ac.at)\n"
  1030. msgstr ""
  1031. #: plugins/check_ldap.c:289
  1032. msgid ""
  1033. " -a [--attr]\n"
  1034. " ldap attribute to search (default: \"(objectclass=*)\"\n"
  1035. " -b [--base]\n"
  1036. " ldap base (eg. ou=my unit, o=my org, c=at)\n"
  1037. " -D [--bind]\n"
  1038. " ldap bind DN (if required)\n"
  1039. " -P [--pass]\n"
  1040. " ldap password (if required)\n"
  1041. msgstr ""
  1042. #: plugins/check_ldap.c:300
  1043. #, c-format
  1044. msgid ""
  1045. " -2 [--ver2]\n"
  1046. " use ldap protocol version 2\n"
  1047. " -3 [--ver3]\n"
  1048. " use ldap protocol version 3\n"
  1049. " (default protocol version: %d)\n"
  1050. msgstr ""
  1051. #: plugins/check_ldap.c:324
  1052. #, c-format
  1053. msgid ""
  1054. "Usage: %s -H <host> -b <base_dn> [-p <port>] [-a <attr>] [-D <binddn>]\n"
  1055. " [-P <password>] [-w <warn_time>] [-c <crit_time>] [-t timeout]%s\n"
  1056. "(Note: all times are in seconds.)\n"
  1057. msgstr ""
  1058. #: plugins/check_load.c:88 plugins/check_load.c:107
  1059. #, c-format
  1060. msgid "Error opening %s\n"
  1061. msgstr ""
  1062. #: plugins/check_load.c:119
  1063. #, c-format
  1064. msgid "Error code %d returned in %s\n"
  1065. msgstr ""
  1066. #: plugins/check_load.c:127
  1067. msgid "Error in getloadavg()\n"
  1068. msgstr ""
  1069. #: plugins/check_load.c:130 plugins/check_load.c:132
  1070. #, c-format
  1071. msgid "Error processing %s\n"
  1072. msgstr ""
  1073. #: plugins/check_load.c:137
  1074. #, c-format
  1075. msgid "load average: %.2f, %.2f, %.2f"
  1076. msgstr ""
  1077. #: plugins/check_load.c:139
  1078. #, c-format
  1079. msgid "CRITICAL - %s\n"
  1080. msgstr ""
  1081. #: plugins/check_load.c:143
  1082. #, c-format
  1083. msgid "WARNING - %s\n"
  1084. msgstr ""
  1085. #: plugins/check_load.c:146
  1086. #, c-format
  1087. msgid "OK - %s\n"
  1088. msgstr ""
  1089. #: plugins/check_load.c:194
  1090. msgid "Warning threshold must be float or float triplet!\n"
  1091. msgstr ""
  1092. #: plugins/check_load.c:210
  1093. msgid "Critical threshold must be float or float triplet!\n"
  1094. msgstr ""
  1095. #: plugins/check_load.c:265
  1096. msgid "Warning threshold for 1-minute load average is not specified\n"
  1097. msgstr ""
  1098. #: plugins/check_load.c:267
  1099. msgid "Warning threshold for 5-minute load average is not specified\n"
  1100. msgstr ""
  1101. #: plugins/check_load.c:269
  1102. msgid "Warning threshold for 15-minute load average is not specified\n"
  1103. msgstr ""
  1104. #: plugins/check_load.c:271
  1105. msgid "Critical threshold for 1-minute load average is not specified\n"
  1106. msgstr ""
  1107. #: plugins/check_load.c:273
  1108. msgid "Critical threshold for 5-minute load average is not specified\n"
  1109. msgstr ""
  1110. #: plugins/check_load.c:275
  1111. msgid "Critical threshold for 15-minute load average is not specified\n"
  1112. msgstr ""
  1113. #: plugins/check_load.c:277
  1114. msgid ""
  1115. "Parameter inconsistency: 1-minute \"warning load\" greater than \"critical "
  1116. "load\".\n"
  1117. msgstr ""
  1118. #: plugins/check_load.c:279
  1119. msgid ""
  1120. "Parameter inconsistency: 5-minute \"warning load\" greater than \"critical "
  1121. "load\".\n"
  1122. msgstr ""
  1123. #: plugins/check_load.c:281
  1124. msgid ""
  1125. "Parameter inconsistency: 15-minute \"warning load\" greater than \"critical "
  1126. "load\".\n"
  1127. msgstr ""
  1128. #: plugins/check_load.c:295
  1129. msgid ""
  1130. "Copyright (c) 1999 Felipe Gustavo de Almeida <galmeida@linux.ime.usp.br>\n"
  1131. msgstr ""
  1132. #: plugins/check_load.c:298
  1133. msgid ""
  1134. "This plugin tests the current system load average.\n"
  1135. "\n"
  1136. msgstr ""
  1137. #: plugins/check_load.c:304
  1138. msgid ""
  1139. " -w, --warning=WLOAD1,WLOAD5,WLOAD15\n"
  1140. " Exit with WARNING status if load average exceeds WLOADn\n"
  1141. " -c, --critical=CLOAD1,CLOAD5,CLOAD15\n"
  1142. " Exit with CRITICAL status if load average exceed CLOADn\n"
  1143. "\n"
  1144. "the load average format is the same used by \"uptime\" and \"w\"\n"
  1145. "\n"
  1146. msgstr ""
  1147. #: plugins/check_load.c:317
  1148. #, c-format
  1149. msgid "Usage: %s -w WLOAD1,WLOAD5,WLOAD15 -c CLOAD1,CLOAD5,CLOAD15\n"
  1150. msgstr ""
  1151. #: plugins/check_mrtg.c:62 plugins/check_mrtgtraf.c:72
  1152. msgid "Unable to open MRTG log file\n"
  1153. msgstr ""
  1154. #: plugins/check_mrtg.c:110 plugins/check_mrtgtraf.c:114
  1155. msgid "Unable to process MRTG log file\n"
  1156. msgstr ""
  1157. #: plugins/check_mrtg.c:119 plugins/check_mrtgtraf.c:121
  1158. #, c-format
  1159. msgid "MRTG data has expired (%d minutes old)\n"
  1160. msgstr ""
  1161. #: plugins/check_mrtg.c:139
  1162. msgid "Ave"
  1163. msgstr ""
  1164. #: plugins/check_mrtg.c:139 plugins/check_mrtgtraf.c:175
  1165. #: plugins/check_mrtgtraf.c:183 plugins/check_mrtgtraf.c:184
  1166. #: plugins/check_mrtgtraf.c:189 plugins/check_mrtgtraf.c:190
  1167. msgid "Max"
  1168. msgstr ""
  1169. #: plugins/check_mrtg.c:203 plugins/check_mrtg.c:255
  1170. msgid "Invalid variable number\n"
  1171. msgstr ""
  1172. #: plugins/check_mrtg.c:238
  1173. #, c-format
  1174. msgid ""
  1175. "%s is not a valid expiration time\n"
  1176. "Use '%s -h' for additional help\n"
  1177. msgstr ""
  1178. #: plugins/check_mrtg.c:282
  1179. msgid "You must supply the variable number\n"
  1180. msgstr ""
  1181. #: plugins/check_mrtg.c:306
  1182. msgid ""
  1183. "This plugin will check either the average or maximum value of one of the\n"
  1184. "two variables recorded in an MRTG log file.\n"
  1185. msgstr ""
  1186. #: plugins/check_mrtg.c:314
  1187. msgid ""
  1188. " -F, --logfile=FILE\n"
  1189. " The MRTG log file containing the data you want to monitor\n"
  1190. " -e, --expires=MINUTES\n"
  1191. " Minutes before MRTG data is considered to be too old\n"
  1192. " -a, --aggregation=AVG|MAX\n"
  1193. " Should we check average or maximum values?\n"
  1194. " -v, --variable=INTEGER\n"
  1195. " Which variable set should we inspect? (1 or 2)\n"
  1196. " -w, --warning=INTEGER\n"
  1197. " Threshold value for data to result in WARNING status\n"
  1198. " -c, --critical=INTEGER\n"
  1199. " Threshold value for data to result in CRITICAL status\n"
  1200. msgstr ""
  1201. #: plugins/check_mrtg.c:328
  1202. #, c-format
  1203. msgid ""
  1204. " -l, --label=STRING\n"
  1205. " Type label for data (Examples: Conns, \"Processor Load\", In, Out)\n"
  1206. " -u, --units=STRING\n"
  1207. " Option units label for data (Example: Packets/Sec, Errors/Sec, \n"
  1208. " \"Bytes Per Second\", \"%% Utilization\")\n"
  1209. msgstr ""
  1210. #: plugins/check_mrtg.c:335
  1211. msgid ""
  1212. "If the value exceeds the <vwl> threshold, a WARNING status is returned. If\n"
  1213. "the value exceeds the <vcl> threshold, a CRITICAL status is returned. If\n"
  1214. "the data in the log file is older than <expire_minutes> old, a WARNING\n"
  1215. "status is returned and a warning message is printed.\n"
  1216. "\n"
  1217. msgstr ""
  1218. #: plugins/check_mrtg.c:341
  1219. msgid ""
  1220. "This plugin is useful for monitoring MRTG data that does not correspond to\n"
  1221. "bandwidth usage. (Use the check_mrtgtraf plugin for monitoring bandwidth).\n"
  1222. "It can be used to monitor any kind of data that MRTG is monitoring - "
  1223. "errors,\n"
  1224. "packets/sec, etc. I use MRTG in conjuction with the Novell NLM that allows\n"
  1225. "me to track processor utilization, user connections, drive space, etc and\n"
  1226. "this plugin works well for monitoring that kind of data as well.\n"
  1227. "\n"
  1228. msgstr ""
  1229. #: plugins/check_mrtg.c:348
  1230. msgid ""
  1231. "Notes:\n"
  1232. "- This plugin only monitors one of the two variables stored in the MRTG log\n"
  1233. " file. If you want to monitor both values you will have to define two\n"
  1234. " commands with different values for the <variable> argument. Of course,\n"
  1235. " you can always hack the code to make this plugin work for you...\n"
  1236. "- MRTG stands for the Multi Router Traffic Grapher. It can be downloaded "
  1237. "from\n"
  1238. " http://ee-staff.ethz.ch/~oetiker/webtools/mrtg/mrtg.html\n"
  1239. msgstr ""
  1240. #: plugins/check_mrtg.c:368
  1241. #, c-format
  1242. msgid ""
  1243. "Usage: %s -F log_file -a <AVG | MAX> -v variable -w warning -c critical\n"
  1244. " [-l label] [-u units] [-e expire_minutes] [-t timeout] [-v]\n"
  1245. msgstr ""
  1246. #: plugins/check_mrtgtraf.c:174
  1247. #, c-format
  1248. msgid "Traffic CRITICAL %s. In = %0.1f %s, %s. Out = %0.1f %s"
  1249. msgstr ""
  1250. #: plugins/check_mrtgtraf.c:175 plugins/check_mrtgtraf.c:183
  1251. #: plugins/check_mrtgtraf.c:184 plugins/check_mrtgtraf.c:189
  1252. #: plugins/check_mrtgtraf.c:190
  1253. msgid "Avg"
  1254. msgstr ""
  1255. #: plugins/check_mrtgtraf.c:182
  1256. #, c-format
  1257. msgid "Traffic WARNING %s. In = %0.1f %s, %s. Out = %0.1f %s"
  1258. msgstr ""
  1259. #: plugins/check_mrtgtraf.c:188
  1260. #, c-format
  1261. msgid "Traffic OK - %s. In = %0.1f %s, %s. Out = %0.1f %s\n"
  1262. msgstr ""
  1263. #: plugins/check_mrtgtraf.c:193
  1264. #, c-format
  1265. msgid "UNKNOWN %s\n"
  1266. msgstr ""
  1267. #: plugins/check_mrtgtraf.c:332
  1268. msgid ""
  1269. " -F, --filename=STRING\n"
  1270. " File to read log from\n"
  1271. " -e, --expires=INTEGER\n"
  1272. " Minutes after which log expires\n"
  1273. " -a, --aggregation=(AVG|MAX)\n"
  1274. " Test average or maximum\n"
  1275. " -w, --warning\n"
  1276. " Warning threshold pair \"<incoming>,<outgoing>\"\n"
  1277. " -c, --critical\n"
  1278. " Critical threshold pair \"<incoming>,<outgoing>\"\n"
  1279. msgstr ""
  1280. #: plugins/check_mrtgtraf.c:344
  1281. msgid ""
  1282. "\n"
  1283. "This plugin will check the incoming/outgoing transfer rates of a router,\n"
  1284. "switch, etc recorded in an MRTG log. If the newest log entry is older\n"
  1285. "than <expire_minutes>, a WARNING status is returned. If either the\n"
  1286. "incoming or outgoing rates exceed the <icl> or <ocl> thresholds (in\n"
  1287. "Bytes/sec), a CRITICAL status results. If either of the rates exceed\n"
  1288. "the <iwl> or <owl> thresholds (in Bytes/sec), a WARNING status results.\n"
  1289. "\n"
  1290. msgstr ""
  1291. #: plugins/check_mrtgtraf.c:352
  1292. msgid ""
  1293. "Notes:\n"
  1294. "- MRTG stands for Multi Router Traffic Grapher. It can be downloaded from\n"
  1295. " http://ee-staff.ethz.ch/~oetiker/webtools/mrtg/mrtg.html\n"
  1296. "- While MRTG can monitor things other than traffic rates, this\n"
  1297. " plugin probably won't work with much else without modification.\n"
  1298. "- The calculated i/o rates are a little off from what MRTG actually\n"
  1299. " reports. I'm not sure why this is right now, but will look into it\n"
  1300. " for future enhancements of this plugin.\n"
  1301. msgstr ""
  1302. #: plugins/check_mrtgtraf.c:370
  1303. #, c-format
  1304. msgid ""
  1305. "Usage: %s -F <log_file> -a <AVG | MAX> -v <variable> -w <warning_pair> -c "
  1306. "<critical_pair>\n"
  1307. " [-e expire_minutes] [-t timeout] [-v]\n"
  1308. msgstr ""
  1309. #: plugins/check_mysql.c:217
  1310. msgid "This program tests connections to a mysql server\n"
  1311. msgstr ""
  1312. #: plugins/check_mysql.c:225
  1313. msgid ""
  1314. " -d, --database=STRING\n"
  1315. " Check database with indicated name\n"
  1316. " -u, --username=STRING\n"
  1317. " Connect using the indicated username\n"
  1318. " -p, --password=STRING\n"
  1319. " Use the indicated password to authenticate the connection\n"
  1320. " ==> IMPORTANT: THIS FORM OF AUTHENTICATION IS NOT SECURE!!! <==\n"
  1321. " Your clear-text password will be visible as a process table entry\n"
  1322. msgstr ""
  1323. #: plugins/check_mysql.c:235
  1324. #, c-format
  1325. msgid ""
  1326. "\n"
  1327. "There are no required arguments. By default, the local database with\n"
  1328. "a server listening on MySQL standard port %d will be checked\n"
  1329. msgstr ""
  1330. #: plugins/check_mysql.c:248
  1331. #, c-format
  1332. msgid "Usage: %s [-d database] [-H host] [-P port] [-u user] [-p password]\n"
  1333. msgstr ""
  1334. #: plugins/check_nagios.c:74
  1335. msgid "Error: Cannot open status log for reading!\n"
  1336. msgstr ""
  1337. #: plugins/check_nagios.c:112
  1338. #, c-format
  1339. msgid "Found process: %s\n"
  1340. msgstr ""
  1341. #: plugins/check_nagios.c:132
  1342. msgid "Could not locate a running Nagios process!\n"
  1343. msgstr ""
  1344. #: plugins/check_nagios.c:143
  1345. #, c-format
  1346. msgid "Nagios %s: located %d process%s, status log updated %d second%s ago\n"
  1347. msgstr ""
  1348. #: plugins/check_nagios.c:182 plugins/check_nagios.c:216
  1349. #, c-format
  1350. msgid ""
  1351. "Expiration time must be an integer (seconds)\n"
  1352. "Type '%s -h' for additional help\n"
  1353. msgstr ""
  1354. #: plugins/check_nagios.c:196
  1355. #, c-format
  1356. msgid ""
  1357. "%s: Unknown argument: %c\n"
  1358. "\n"
  1359. msgstr ""
  1360. #: plugins/check_nagios.c:228
  1361. #, c-format
  1362. msgid ""
  1363. "You must provide the status_log\n"
  1364. "Type '%s -h' for additional help\n"
  1365. msgstr ""
  1366. #: plugins/check_nagios.c:232
  1367. #, c-format
  1368. msgid ""
  1369. "You must provide a process string\n"
  1370. "Type '%s -h' for additional help\n"
  1371. msgstr ""
  1372. #: plugins/check_nagios.c:250
  1373. msgid ""
  1374. "This plugin attempts to check the status of the Nagios process on the local\n"
  1375. "machine. The plugin will check to make sure the Nagios status log is no "
  1376. "older\n"
  1377. "than the number of minutes specified by the <expire_minutes> option. It "
  1378. "also\n"
  1379. "uses the /bin/ps command to check for a process matching whatever you "
  1380. "specify\n"
  1381. "by the <process_string> argument.\n"
  1382. msgstr ""
  1383. #: plugins/check_nagios.c:261
  1384. msgid ""
  1385. "-F, --filename=FILE\n"
  1386. " Name of the log file to check\n"
  1387. "-e, --expires=INTEGER\n"
  1388. " Seconds aging afterwhich logfile is condsidered stale\n"
  1389. "-C, --command=STRING\n"
  1390. " Command to search for in process table\n"
  1391. msgstr ""
  1392. #: plugins/check_nagios.c:269
  1393. msgid ""
  1394. "Example:\n"
  1395. " ./check_nagios -e 5 \\ -F /usr/local/nagios/var/status.log \\ -C /usr/"
  1396. "local/nagios/bin/nagios\n"
  1397. msgstr ""
  1398. #: plugins/check_nagios.c:282
  1399. #, c-format
  1400. msgid ""
  1401. "Usage: %s -F <status log file> -e <expire_minutes> -C <process_string>\n"
  1402. msgstr ""
  1403. #: plugins/check_nt.c:121 plugins/check_nt.c:174
  1404. msgid "missing -l parameters"
  1405. msgstr ""
  1406. #: plugins/check_nt.c:123
  1407. msgid "wrong -l parameter."
  1408. msgstr ""
  1409. #: plugins/check_nt.c:127
  1410. msgid "CPU Load"
  1411. msgstr ""
  1412. #: plugins/check_nt.c:148
  1413. #, c-format
  1414. msgid " %lu%% (%lu min average)"
  1415. msgstr ""
  1416. #: plugins/check_nt.c:155
  1417. msgid "not enough values for -l parameters"
  1418. msgstr ""
  1419. #: plugins/check_nt.c:167
  1420. #, c-format
  1421. msgid "System Uptime : %u day(s) %u hour(s) %u minute(s)"
  1422. msgstr ""
  1423. #: plugins/check_nt.c:176
  1424. msgid "wrong -l argument"
  1425. msgstr ""
  1426. #: plugins/check_nt.c:185
  1427. #, c-format
  1428. msgid "%s:\\ - total: %.2f Gb - used: %.2f Gb (%.0f%%) - free %.2f Gb (%.0f%%)"
  1429. msgstr ""
  1430. #: plugins/check_nt.c:200
  1431. msgid "Free disk space : Invalid drive "
  1432. msgstr ""
  1433. #: plugins/check_nt.c:210
  1434. msgid "No service/process specified"
  1435. msgstr ""
  1436. #: plugins/check_nt.c:214
  1437. msgid "ShowAll"
  1438. msgstr ""
  1439. #: plugins/check_nt.c:214
  1440. msgid "ShowFail"
  1441. msgstr ""
  1442. #: plugins/check_nt.c:229
  1443. #, c-format
  1444. msgid ""
  1445. "Memory usage: total:%.2f Mb - used: %.2f Mb (%.0f%%) - free: %.2f Mb (%.0f%%)"
  1446. msgstr ""
  1447. #: plugins/check_nt.c:245 plugins/check_nt.c:281
  1448. msgid "No counter specified"
  1449. msgstr ""
  1450. #: plugins/check_nt.c:396 plugins/check_nwstat.c:771
  1451. #: plugins/check_overcr.c:348
  1452. #, c-format
  1453. msgid ""
  1454. "Server port an integer (seconds)\n"
  1455. "Type '%s -h' for additional help\n"
  1456. msgstr ""
  1457. #: plugins/check_nt.c:449
  1458. msgid "None"
  1459. msgstr ""
  1460. #: plugins/check_nt.c:508
  1461. msgid ""
  1462. "Copyright (c) 2000 Yves Rubin (rubiyz@yahoo.com)\n"
  1463. "\n"
  1464. "This plugin collects data from the NSClient service running on a\n"
  1465. "Windows NT/2000/XP server.\n"
  1466. "\n"
  1467. msgstr ""
  1468. #: plugins/check_nt.c:513
  1469. #, c-format
  1470. msgid ""
  1471. "\n"
  1472. "Options:\n"
  1473. "-H, --hostname=HOST\n"
  1474. " Name of the host to check\n"
  1475. "-p, --port=INTEGER\n"
  1476. " Optional port number (default: %d)\n"
  1477. "-s <password>\n"
  1478. " Password needed for the request\n"
  1479. "-w, --warning=INTEGER\n"
  1480. " Threshold which will result in a warning status\n"
  1481. "-c, --critical=INTEGER\n"
  1482. " Threshold which will result in a critical status\n"
  1483. "-t, --timeout=INTEGER\n"
  1484. " Seconds before connection attempt times out (default: %d)\n"
  1485. "-h, --help\n"
  1486. " Print this help screen\n"
  1487. "-V, --version\n"
  1488. " Print version information\n"
  1489. msgstr ""
  1490. #: plugins/check_nt.c:531
  1491. msgid ""
  1492. "-v, --variable=STRING\n"
  1493. " Variable to check. Valid variables are:\n"
  1494. msgstr ""
  1495. #: plugins/check_nt.c:534
  1496. msgid " CLIENTVERSION = Get the NSClient version\n"
  1497. msgstr ""
  1498. #: plugins/check_nt.c:536
  1499. msgid ""
  1500. " CPULOAD = Average CPU load on last x minutes.\n"
  1501. " Request a -l parameter with the following syntax:\n"
  1502. " -l <minutes range>,<warning threshold>,<critical threshold>.\n"
  1503. " <minute range> should be less than 24*60.\n"
  1504. " Thresholds are percentage and up to 10 requests can be done in one "
  1505. "shot.\n"
  1506. " ie: -l 60,90,95,120,90,95\n"
  1507. msgstr ""
  1508. #: plugins/check_nt.c:543
  1509. msgid ""
  1510. " UPTIME = Get the uptime of the machine.\n"
  1511. " No specific parameters. No warning or critical threshold\n"
  1512. msgstr ""
  1513. #: plugins/check_nt.c:546
  1514. msgid ""
  1515. " USEDDISKSPACE = Size and percentage of disk use.\n"
  1516. " Request a -l parameter containing the drive letter only.\n"
  1517. " Warning and critical thresholds can be specified with -w and -c.\n"
  1518. msgstr ""
  1519. #: plugins/check_nt.c:550
  1520. msgid ""
  1521. " MEMUSE = Memory use.\n"
  1522. " Warning and critical thresholds can be specified with -w and -c.\n"
  1523. msgstr ""
  1524. #: plugins/check_nt.c:553
  1525. msgid ""
  1526. " SERVICESTATE = Check the state of one or several services.\n"
  1527. " Request a -l parameters with the following syntax:\n"
  1528. " -l <service1>,<service2>,<service3>,...\n"
  1529. " You can specify -d SHOWALL in case you want to see working services\n"
  1530. "\t\t in the returned string.\n"
  1531. msgstr ""
  1532. #: plugins/check_nt.c:559
  1533. msgid ""
  1534. " PROCSTATE = Check if one or several process are running.\n"
  1535. " Same syntax as SERVICESTATE.\n"
  1536. msgstr ""
  1537. #: plugins/check_nt.c:562
  1538. #, c-format
  1539. msgid ""
  1540. " COUNTER = Check any performance counter of Windows NT/2000.\n"
  1541. " Request a -l parameters with the following syntax:\n"
  1542. "\t\t -l \"\\\\<performance object>\\\\counter\",\"<description>\n"
  1543. " The <description> parameter is optional and \n"
  1544. " is given to a printf output command which require a float parameters.\n"
  1545. " Some examples:\n"
  1546. " \"Paging file usage is %%.2f %%%%\"\n"
  1547. " \"%%.f %%%% paging file used.\"\n"
  1548. msgstr ""
  1549. #: plugins/check_nt.c:571
  1550. msgid ""
  1551. "Notes:\n"
  1552. " - The NSClient service should be running on the server to get any "
  1553. "information\n"
  1554. " (http://nsclient.ready2run.nl).\n"
  1555. " - Critical thresholds should be lower than warning thresholds\n"
  1556. msgstr ""
  1557. #: plugins/check_nt.c:582
  1558. #, c-format
  1559. msgid ""
  1560. "Usage: %s -H host -v variable [-p port] [-w warning] [-c critical]\n"
  1561. " [-l params] [-d SHOWALL] [-t timeout]\n"
  1562. msgstr ""
  1563. #: plugins/check_nwstat.c:139
  1564. #, c-format
  1565. msgid "NetWare %s: "
  1566. msgstr ""
  1567. #: plugins/check_nwstat.c:170
  1568. #, c-format
  1569. msgid "Up %s,"
  1570. msgstr ""
  1571. #: plugins/check_nwstat.c:178
  1572. #, c-format
  1573. msgid "Load %s - %s %s-min load average = %lu%%"
  1574. msgstr ""
  1575. #: plugins/check_nwstat.c:199
  1576. #, c-format
  1577. msgid "Conns %s - %lu current connections"
  1578. msgstr ""
  1579. #: plugins/check_nwstat.c:218
  1580. #, c-format
  1581. msgid "%s: Long term cache hits = %lu%%"
  1582. msgstr ""
  1583. #: plugins/check_nwstat.c:237
  1584. #, c-format
  1585. msgid "%s: Total cache buffers = %lu"
  1586. msgstr ""
  1587. #: plugins/check_nwstat.c:256
  1588. #, c-format
  1589. msgid "%s: Dirty cache buffers = %lu"
  1590. msgstr ""
  1591. #: plugins/check_nwstat.c:275
  1592. #, c-format
  1593. msgid "%s: LRU sitting time = %lu minutes"
  1594. msgstr ""
  1595. #: plugins/check_nwstat.c:289 plugins/check_nwstat.c:314
  1596. #: plugins/check_nwstat.c:434 plugins/check_nwstat.c:455
  1597. #: plugins/check_nwstat.c:487 plugins/check_nwstat.c:508
  1598. #, c-format
  1599. msgid "Error: Volume '%s' does not exist!"
  1600. msgstr ""
  1601. #: plugins/check_nwstat.c:298
  1602. #, c-format
  1603. msgid "%s%lu KB free on volume %s"
  1604. msgstr ""
  1605. #: plugins/check_nwstat.c:299 plugins/check_nwstat.c:442
  1606. #: plugins/check_nwstat.c:495
  1607. msgid "Only "
  1608. msgstr ""
  1609. #: plugins/check_nwstat.c:334
  1610. #, c-format
  1611. msgid "%lu MB (%lu%%) free on volume %s"
  1612. msgstr ""
  1613. #: plugins/check_nwstat.c:353
  1614. #, c-format
  1615. msgid "Directory Services Database is %s (DS version %s)"
  1616. msgstr ""
  1617. #: plugins/check_nwstat.c:367
  1618. #, c-format
  1619. msgid "Logins are %s"
  1620. msgstr ""
  1621. #: plugins/check_nwstat.c:367
  1622. msgid "enabled"
  1623. msgstr ""
  1624. #: plugins/check_nwstat.c:367
  1625. msgid "disabled"
  1626. msgstr ""
  1627. #: plugins/check_nwstat.c:400
  1628. #, c-format
  1629. msgid "%lu of %lu (%lu%%) packet receive buffers used"
  1630. msgstr ""
  1631. #: plugins/check_nwstat.c:421
  1632. #, c-format
  1633. msgid "%lu entries in SAP table"
  1634. msgstr ""
  1635. #: plugins/check_nwstat.c:423
  1636. #, c-format
  1637. msgid "%lu entries in SAP table for SAP type %d"
  1638. msgstr ""
  1639. #: plugins/check_nwstat.c:442
  1640. #, c-format
  1641. msgid "%s%lu KB purgeable on volume %s"
  1642. msgstr ""
  1643. #: plugins/check_nwstat.c:475
  1644. #, c-format
  1645. msgid "%lu MB (%lu%%) purgeable on volume %s"
  1646. msgstr ""
  1647. #: plugins/check_nwstat.c:495
  1648. #, c-format
  1649. msgid "%s%lu KB not yet purgeable on volume %s"
  1650. msgstr ""
  1651. #: plugins/check_nwstat.c:528
  1652. #, c-format
  1653. msgid "%lu MB (%lu%%) not yet purgeable on volume %s"
  1654. msgstr ""
  1655. #: plugins/check_nwstat.c:546
  1656. #, c-format
  1657. msgid "%lu open files"
  1658. msgstr ""
  1659. #: plugins/check_nwstat.c:563
  1660. #, c-format
  1661. msgid "%lu abended threads"
  1662. msgstr ""
  1663. #: plugins/check_nwstat.c:588
  1664. #, c-format
  1665. msgid "%lu current service processes (%lu max)"
  1666. msgstr ""
  1667. #: plugins/check_nwstat.c:604
  1668. msgid "Critical: Time not in sync with network!"
  1669. msgstr ""
  1670. #: plugins/check_nwstat.c:607
  1671. msgid "OK! Time in sync with network!"
  1672. msgstr ""
  1673. #: plugins/check_nwstat.c:623
  1674. #, c-format
  1675. msgid "LRU sitting time = %lu seconds"
  1676. msgstr ""
  1677. #: plugins/check_nwstat.c:639
  1678. #, c-format
  1679. msgid "dirty cache buffers = %lu%% of the total"
  1680. msgstr ""
  1681. #: plugins/check_nwstat.c:654
  1682. #, c-format
  1683. msgid "total cache buffers = %lu%% of the original"
  1684. msgstr ""
  1685. #: plugins/check_nwstat.c:664
  1686. #, c-format
  1687. msgid "NDS Version %s"
  1688. msgstr ""
  1689. #: plugins/check_nwstat.c:673
  1690. #, c-format
  1691. msgid "Up %s"
  1692. msgstr ""
  1693. #: plugins/check_nwstat.c:683
  1694. #, c-format
  1695. msgid "Module %s version %s is loaded"
  1696. msgstr ""
  1697. #: plugins/check_nwstat.c:686
  1698. #, c-format
  1699. msgid "Module %s is not loaded"
  1700. msgstr ""
  1701. #: plugins/check_nwstat.c:691 plugins/check_overcr.c:266
  1702. msgid "Nothing to check!\n"
  1703. msgstr ""
  1704. #: plugins/check_nwstat.c:902
  1705. #, c-format
  1706. msgid ""
  1707. "Usage: %s This plugin attempts to contact the MRTGEXT NLM running\n"
  1708. "on a Novell server to gather the requested system information.\n"
  1709. "\n"
  1710. msgstr ""
  1711. #: plugins/check_nwstat.c:913
  1712. msgid ""
  1713. " -v, --variable=STRING\n"
  1714. " Variable to check. Valid variables include:\n"
  1715. " LOAD1 = 1 minute average CPU load\n"
  1716. " LOAD5 = 5 minute average CPU load\n"
  1717. " LOAD15 = 15 minute average CPU load\n"
  1718. " CSPROCS = number of current service processes (NW 5.x only)\n"
  1719. " ABENDS = number of abended threads (NW 5.x only)\n"
  1720. " UPTIME = server uptime\n"
  1721. msgstr ""
  1722. #: plugins/check_nwstat.c:923
  1723. msgid ""
  1724. " LTCH = percent long term cache hits\n"
  1725. " CBUFF = current number of cache buffers\n"
  1726. " CDBUFF = current number of dirty cache buffers\n"
  1727. " DCB = dirty cache buffers as a percentage of the total\n"
  1728. " TCB = dirty cache buffers as a percentage of the original\n"
  1729. msgstr ""
  1730. #: plugins/check_nwstat.c:930
  1731. msgid ""
  1732. " OFILES = number of open files\n"
  1733. " VPF<vol> = percent free space on volume <vol>\n"
  1734. " VKF<vol> = KB of free space on volume <vol>\n"
  1735. " VPP<vol> = percent purgeable space on volume <vol>\n"
  1736. " VKP<vol> = KB of purgeable space on volume <vol>\n"
  1737. " VPNP<vol> = percent not yet purgeable space on volume <vol>\n"
  1738. " VKNP<vol> = KB of not yet purgeable space on volume <vol>\n"
  1739. msgstr ""
  1740. #: plugins/check_nwstat.c:939
  1741. msgid ""
  1742. " LRUM = LRU sitting time in minutes\n"
  1743. " LRUS = LRU sitting time in seconds\n"
  1744. " DSDB = check to see if DS Database is open\n"
  1745. " DSVER = NDS version\n"
  1746. " UPRB = used packet receive buffers\n"
  1747. " PUPRB = percent (of max) used packet receive buffers\n"
  1748. " SAPENTRIES = number of entries in the SAP table\n"
  1749. " SAPENTRIES<n> = number of entries in the SAP table for SAP type <n>\n"
  1750. msgstr ""
  1751. #: plugins/check_nwstat.c:949
  1752. msgid ""
  1753. " TSYNC = timesync status \n"
  1754. " LOGINS = check to see if logins are enabled\n"
  1755. " CONNS = number of currently licensed connections\n"
  1756. " NLM:<nlm> = check if NLM is loaded and report version\n"
  1757. " (e.g. \"NLM:TSANDS.NLM\")\n"
  1758. msgstr ""
  1759. #: plugins/check_nwstat.c:956
  1760. msgid ""
  1761. " -w, --warning=INTEGER\n"
  1762. " Threshold which will result in a warning status\n"
  1763. " -c, --critical=INTEGER\n"
  1764. " Threshold which will result in a critical status\n"
  1765. " -o, --osversion\n"
  1766. " Include server version string in results\n"
  1767. msgstr ""
  1768. #: plugins/check_nwstat.c:966
  1769. msgid ""
  1770. "\n"
  1771. "Notes:\n"
  1772. "- This plugin requres that the MRTGEXT.NLM file from James Drews' MRTG\n"
  1773. " extension for NetWare be loaded on the Novell servers you wish to check.\n"
  1774. " (available from http://www.engr.wisc.edu/~drews/mrtg/)\n"
  1775. "- Values for critical thresholds should be lower than warning thresholds\n"
  1776. " when the following variables are checked: VPF, VKF, LTCH, CBUFF, DCB, \n"
  1777. " TCB, LRUS and LRUM.\n"
  1778. msgstr ""
  1779. #: plugins/check_nwstat.c:983
  1780. #, c-format
  1781. msgid ""
  1782. "Usage: %s -H host [-p port] [-v variable] [-w warning] [-c critical]\n"
  1783. " [-t timeout].\n"
  1784. msgstr ""
  1785. #: plugins/check_overcr.c:104
  1786. msgid "Unknown error fetching load data\n"
  1787. msgstr ""
  1788. #: plugins/check_overcr.c:108
  1789. msgid "Invalid response from server - no load information\n"
  1790. msgstr ""
  1791. #: plugins/check_overcr.c:114
  1792. msgid "Invalid response from server after load 1\n"
  1793. msgstr ""
  1794. #: plugins/check_overcr.c:120
  1795. msgid "Invalid response from server after load 5\n"
  1796. msgstr ""
  1797. #: plugins/check_overcr.c:145
  1798. #, c-format
  1799. msgid "Load %s - %s-min load average = %0.2f"
  1800. msgstr ""
  1801. #: plugins/check_overcr.c:155
  1802. msgid "Unknown error fetching disk data\n"
  1803. msgstr ""
  1804. #: plugins/check_overcr.c:165 plugins/check_overcr.c:217
  1805. #: plugins/check_overcr.c:221
  1806. msgid "Invalid response from server\n"
  1807. msgstr ""
  1808. #: plugins/check_overcr.c:192
  1809. msgid "Unknown error fetching network status\n"
  1810. msgstr ""
  1811. #: plugins/check_overcr.c:202
  1812. #, c-format
  1813. msgid "Net %s - %d connection%s on port %d"
  1814. msgstr ""
  1815. #: plugins/check_overcr.c:213
  1816. msgid "Unknown error fetching process status\n"
  1817. msgstr ""
  1818. #: plugins/check_overcr.c:231
  1819. #, c-format
  1820. msgid "Process %s - %d instance%s of %s running"
  1821. msgstr ""
  1822. #: plugins/check_overcr.c:258
  1823. #, c-format
  1824. msgid "Uptime %s - Up %d days %d hours %d minutes"
  1825. msgstr ""
  1826. #: plugins/check_overcr.c:404
  1827. #, c-format
  1828. msgid ""
  1829. "Usage: %s -H host [-p port] [-v variable] [-w warning] [-c critical]\n"
  1830. " [-t timeout]\n"
  1831. msgstr ""
  1832. #: plugins/check_overcr.c:422
  1833. msgid ""
  1834. "This plugin attempts to contact the Over-CR collector daemon running on the\n"
  1835. "remote UNIX server in order to gather the requested system information.\n"
  1836. "\n"
  1837. msgstr ""
  1838. #: plugins/check_overcr.c:432
  1839. msgid ""
  1840. "-v, --variable=STRING\n"
  1841. " Variable to check. Valid variables include:\n"
  1842. " LOAD1 = 1 minute average CPU load\n"
  1843. " LOAD5 = 5 minute average CPU load\n"
  1844. " LOAD15 = 15 minute average CPU load\n"
  1845. " DPU<filesys> = percent used disk space on filesystem <filesys>\n"
  1846. " PROC<process> = number of running processes with name <process>\n"
  1847. " NET<port> = number of active connections on TCP port <port>\n"
  1848. " UPTIME = system uptime in seconds\n"
  1849. msgstr ""
  1850. #: plugins/check_overcr.c:443
  1851. msgid ""
  1852. " -w, --warning=INTEGER\n"
  1853. " Threshold which will result in a warning status\n"
  1854. " -c, --critical=INTEGER\n"
  1855. " Threshold which will result in a critical status\n"
  1856. msgstr ""
  1857. #: plugins/check_overcr.c:451
  1858. msgid ""
  1859. "Notes:\n"
  1860. " - For the available options, the critical threshold value should always be\n"
  1861. " higher than the warning threshold value, EXCEPT with the uptime variable\n"
  1862. "\n"
  1863. msgstr ""
  1864. #: plugins/check_overcr.c:456
  1865. msgid ""
  1866. " - This plugin requres that Eric Molitors' Over-CR collector daemon be\n"
  1867. " running on the remote server. Over-CR can be downloaded from\n"
  1868. " http://www.molitor.org/overcr (This plugin was tested with version\n"
  1869. " 0.99.53 of the Over-CR collector)\n"
  1870. "\n"
  1871. msgstr ""
  1872. #: plugins/check_pgsql.c:150
  1873. #, c-format
  1874. msgid "PGSQL: CRITICAL - no connection to '%s' (%s).\n"
  1875. msgstr ""
  1876. #: plugins/check_pgsql.c:157
  1877. #, c-format
  1878. msgid "PGSQL: CRITICAL - database %s (%d sec.)\n"
  1879. msgstr ""
  1880. #: plugins/check_pgsql.c:163
  1881. #, c-format
  1882. msgid "PGSQL: WARNING - database %s (%d sec.)\n"
  1883. msgstr ""
  1884. #: plugins/check_pgsql.c:168
  1885. #, c-format
  1886. msgid "PGSQL: ok - database %s (%d sec.)\n"
  1887. msgstr ""
  1888. #: plugins/check_pgsql.c:216 plugins/check_snmp.c:445 plugins/negate.c:179
  1889. msgid "Timeout Interval must be an integer"
  1890. msgstr ""
  1891. #: plugins/check_pgsql.c:222 plugins/check_pgsql.c:228
  1892. msgid "Invalid critical threshold"
  1893. msgstr ""
  1894. #: plugins/check_pgsql.c:234
  1895. msgid "You gave an invalid host name"
  1896. msgstr ""
  1897. #: plugins/check_pgsql.c:240
  1898. msgid "Port must be an integer"
  1899. msgstr ""
  1900. #: plugins/check_pgsql.c:246
  1901. msgid "Database name is not valid"
  1902. msgstr ""
  1903. #: plugins/check_pgsql.c:252
  1904. msgid "user name is not valid"
  1905. msgstr ""
  1906. #: plugins/check_pgsql.c:386
  1907. msgid ""
  1908. "Test whether a PostgreSQL DBMS is accepting connections.\n"
  1909. "\n"
  1910. msgstr ""
  1911. #: plugins/check_ping.c:75
  1912. msgid "Could not parse arguments"
  1913. msgstr ""
  1914. #: plugins/check_ping.c:118
  1915. msgid "Error: Could not interpret output from ping command\n"
  1916. msgstr ""
  1917. #: plugins/check_ping.c:134
  1918. #, c-format
  1919. msgid "PING %s - %sPacket loss = %d%%"
  1920. msgstr ""
  1921. #: plugins/check_ping.c:137
  1922. #, c-format
  1923. msgid "PING %s - %sPacket loss = %d%%, RTA = %2.2f ms"
  1924. msgstr ""
  1925. #: plugins/check_ping.c:228
  1926. msgid "Could not realloc() addresses\n"
  1927. msgstr ""
  1928. #: plugins/check_ping.c:243 plugins/check_ping.c:323
  1929. #, c-format
  1930. msgid "<max_packets> (%s) must be a non-negative number\n"
  1931. msgstr ""
  1932. #: plugins/check_ping.c:266
  1933. #, c-format
  1934. msgid ""
  1935. "Invalid host name/address: %s\n"
  1936. "\n"
  1937. msgstr ""
  1938. #: plugins/check_ping.c:277
  1939. #, c-format
  1940. msgid "<wpl> (%s) must be an integer percentage\n"
  1941. msgstr ""
  1942. #: plugins/check_ping.c:288
  1943. #, c-format
  1944. msgid "<cpl> (%s) must be an integer percentage\n"
  1945. msgstr ""
  1946. #: plugins/check_ping.c:299
  1947. #, c-format
  1948. msgid "<wrta> (%s) must be a non-negative number\n"
  1949. msgstr ""
  1950. #: plugins/check_ping.c:310
  1951. #, c-format
  1952. msgid "<crta> (%s) must be a non-negative number\n"
  1953. msgstr ""
  1954. #: plugins/check_ping.c:341
  1955. #, c-format
  1956. msgid ""
  1957. "%s: Warning threshold must be integer or percentage!\n"
  1958. "\n"
  1959. msgstr ""
  1960. #: plugins/check_ping.c:352
  1961. msgid "<wrta> was not set\n"
  1962. msgstr ""
  1963. #: plugins/check_ping.c:356
  1964. msgid "<crta> was not set\n"
  1965. msgstr ""
  1966. #: plugins/check_ping.c:360
  1967. msgid "<wpl> was not set\n"
  1968. msgstr ""
  1969. #: plugins/check_ping.c:364
  1970. msgid "<cpl> was not set\n"
  1971. msgstr ""
  1972. #: plugins/check_ping.c:368
  1973. #, c-format
  1974. msgid "<wrta> (%f) cannot be larger than <crta> (%f)\n"
  1975. msgstr ""
  1976. #: plugins/check_ping.c:372
  1977. #, c-format
  1978. msgid "<wpl> (%d) cannot be larger than <cpl> (%d)\n"
  1979. msgstr ""
  1980. #: plugins/check_ping.c:385
  1981. msgid "Invalid host name/address"
  1982. msgstr ""
  1983. #: plugins/check_ping.c:403
  1984. #, c-format
  1985. msgid "Cannot open pipe: %s"
  1986. msgstr ""
  1987. #: plugins/check_ping.c:407
  1988. #, c-format
  1989. msgid "Cannot open stderr for %s\n"
  1990. msgstr ""
  1991. #: plugins/check_ping.c:411
  1992. msgid "(DUP!)"
  1993. msgstr ""
  1994. #: plugins/check_ping.c:415 plugins/check_ping.c:462
  1995. msgid "unable to realloc warn_text"
  1996. msgstr ""
  1997. #: plugins/check_ping.c:448
  1998. #, c-format
  1999. msgid "PING CRITICAL - Network unreachable (%s)"
  2000. msgstr ""
  2001. #: plugins/check_ping.c:452
  2002. #, c-format
  2003. msgid "PING CRITICAL - Host Unreachable (%s)"
  2004. msgstr ""
  2005. #: plugins/check_ping.c:456
  2006. #, c-format
  2007. msgid "PING CRITICAL - Host not found (%s)"
  2008. msgstr ""
  2009. #: plugins/check_ping.c:501 plugins/check_procs.c:581
  2010. msgid "Copyright (c) 1999 Ethan Galstad <nagios@nagios.org>"
  2011. msgstr ""
  2012. #: plugins/check_ping.c:504
  2013. msgid ""
  2014. "Use ping to check connection statistics for a remote host.\n"
  2015. "\n"
  2016. msgstr ""
  2017. #: plugins/check_ping.c:512
  2018. #, c-format
  2019. msgid ""
  2020. "-H, --hostname=HOST\n"
  2021. " host to ping\n"
  2022. "-w, --warning=THRESHOLD\n"
  2023. " warning threshold pair\n"
  2024. "-c, --critical=THRESHOLD\n"
  2025. " critical threshold pair\n"
  2026. "-p, --packets=INTEGER\n"
  2027. " number of ICMP ECHO packets to send (Default: %d)\n"
  2028. "-L, --link\n"
  2029. " show HTML in the plugin output (obsoleted by urlize)\n"
  2030. msgstr ""
  2031. #: plugins/check_ping.c:527
  2032. #, c-format
  2033. msgid ""
  2034. "THRESHOLD is <rta>,<pl>%% where <rta> is the round trip average travel\n"
  2035. "time (ms) which triggers a WARNING or CRITICAL state, and <pl> is the\n"
  2036. "percentage of packet loss to trigger an alarm state.\n"
  2037. "\n"
  2038. msgstr ""
  2039. #: plugins/check_ping.c:532
  2040. msgid ""
  2041. "This plugin uses the ping command to probe the specified host for packet "
  2042. "loss\n"
  2043. "(percentage) and round trip average (milliseconds). It can produce HTML "
  2044. "output\n"
  2045. "linking to a traceroute CGI contributed by Ian Cass. The CGI can be found "
  2046. "in\n"
  2047. "the contrib area of the downloads section at http://www.nagios.org\n"
  2048. "\n"
  2049. msgstr ""
  2050. #: plugins/check_procs.c:110
  2051. msgid "Unable to parse command line\n"
  2052. msgstr ""
  2053. #: plugins/check_procs.c:113
  2054. #, c-format
  2055. msgid "CMD: %s\n"
  2056. msgstr ""
  2057. #: plugins/check_procs.c:202
  2058. #, c-format
  2059. msgid "Not parseable: %s"
  2060. msgstr ""
  2061. #: plugins/check_procs.c:209
  2062. #, c-format
  2063. msgid "STDERR: %s"
  2064. msgstr ""
  2065. #: plugins/check_procs.c:211
  2066. msgid "System call sent warnings to stderr\n"
  2067. msgstr ""
  2068. #: plugins/check_procs.c:218
  2069. msgid "System call returned nonzero status\n"
  2070. msgstr ""
  2071. #: plugins/check_procs.c:223 plugins/check_users.c:92
  2072. msgid "Unable to read output\n"
  2073. msgstr ""
  2074. #: plugins/check_procs.c:236
  2075. #, c-format
  2076. msgid "%s OK: %d process%s"
  2077. msgstr ""
  2078. #: plugins/check_procs.c:240
  2079. #, c-format
  2080. msgid "PROCS WARNING: %d process%s"
  2081. msgstr ""
  2082. #: plugins/check_procs.c:243
  2083. #, c-format
  2084. msgid "%s WARNING: %d warn out of %d process%s"
  2085. msgstr ""
  2086. #: plugins/check_procs.c:249
  2087. #, c-format
  2088. msgid "PROCS CRITICAL: %d process%s"
  2089. msgstr ""
  2090. #: plugins/check_procs.c:252
  2091. #, c-format
  2092. msgid "%s CRITICAL: %d crit, %d warn out of %d process%s"
  2093. msgstr ""
  2094. #: plugins/check_procs.c:323 plugins/check_ssh.c:113
  2095. msgid ""
  2096. "Timeout Interval must be an integer!\n"
  2097. "\n"
  2098. msgstr ""
  2099. #: plugins/check_procs.c:337
  2100. msgid ""
  2101. "Critical Process Count must be an integer!\n"
  2102. "\n"
  2103. msgstr ""
  2104. #: plugins/check_procs.c:349
  2105. #, c-format
  2106. msgid ""
  2107. "%s: Warning Process Count must be an integer!\n"
  2108. "\n"
  2109. msgstr ""
  2110. #: plugins/check_procs.c:357
  2111. #, c-format
  2112. msgid ""
  2113. "%s: Parent Process ID must be an integer!\n"
  2114. "\n"
  2115. msgstr ""
  2116. #: plugins/check_procs.c:366 plugins/check_procs.c:479
  2117. #, c-format
  2118. msgid "%s%sSTATE = %s"
  2119. msgstr ""
  2120. #: plugins/check_procs.c:375
  2121. #, c-format
  2122. msgid "UID %d was not found\n"
  2123. msgstr ""
  2124. #: plugins/check_procs.c:384
  2125. #, c-format
  2126. msgid "User name %s was not found\n"
  2127. msgstr ""
  2128. #: plugins/check_procs.c:392
  2129. #, c-format
  2130. msgid "%s%sUID = %d (%s)"
  2131. msgstr ""
  2132. #: plugins/check_procs.c:401
  2133. #, c-format
  2134. msgid "%s%scommand name '%s'"
  2135. msgstr ""
  2136. #: plugins/check_procs.c:410
  2137. #, c-format
  2138. msgid "%s%sargs '%s'"
  2139. msgstr ""
  2140. #: plugins/check_procs.c:415
  2141. #, c-format
  2142. msgid "%s%sRSS >= %d"
  2143. msgstr ""
  2144. #: plugins/check_procs.c:419
  2145. #, c-format
  2146. msgid ""
  2147. "%s: RSS must be an integer!\n"
  2148. "\n"
  2149. msgstr ""
  2150. #: plugins/check_procs.c:425
  2151. #, c-format
  2152. msgid "%s%sVSZ >= %d"
  2153. msgstr ""
  2154. #: plugins/check_procs.c:429
  2155. #, c-format
  2156. msgid ""
  2157. "%s: VSZ must be an integer!\n"
  2158. "\n"
  2159. msgstr ""
  2160. #: plugins/check_procs.c:436
  2161. #, c-format
  2162. msgid "%s%sPCPU >= %.2f"
  2163. msgstr ""
  2164. #: plugins/check_procs.c:440
  2165. #, c-format
  2166. msgid ""
  2167. "%s: PCPU must be a float!\n"
  2168. "\n"
  2169. msgstr ""
  2170. #: plugins/check_procs.c:462
  2171. #, c-format
  2172. msgid ""
  2173. "%s: metric must be one of PROCS, VSZ, RSS, CPU!\n"
  2174. "\n"
  2175. msgstr ""
  2176. #: plugins/check_procs.c:499
  2177. #, c-format
  2178. msgid "wmax (%d) cannot be greater than cmax (%d)\n"
  2179. msgstr ""
  2180. #: plugins/check_procs.c:503
  2181. #, c-format
  2182. msgid "wmin (%d) cannot be less than cmin (%d)\n"
  2183. msgstr ""
  2184. #: plugins/check_procs.c:584
  2185. msgid ""
  2186. "Checks all processes and generates WARNING or CRITICAL states if the "
  2187. "specified\n"
  2188. "metric is outside the required threshold ranges. The metric defaults to "
  2189. "number\n"
  2190. "of processes. Search filters can be applied to limit the processes to "
  2191. "check.\n"
  2192. "\n"
  2193. msgstr ""
  2194. #: plugins/check_procs.c:591
  2195. msgid ""
  2196. "\n"
  2197. "Required Arguments:\n"
  2198. " -w, --warning=RANGE\n"
  2199. " Generate warning state if metric is outside this range\n"
  2200. " -c, --critical=RANGE\n"
  2201. " Generate critical state if metric is outside this range\n"
  2202. msgstr ""
  2203. #: plugins/check_procs.c:598
  2204. msgid ""
  2205. "\n"
  2206. "Optional Arguments:\n"
  2207. " -m, --metric=TYPE\n"
  2208. " Check thresholds against metric. Valid types:\n"
  2209. " PROCS - number of processes (default)\n"
  2210. " VSZ - virtual memory size\n"
  2211. " RSS - resident set memory size\n"
  2212. " CPU - percentage cpu\n"
  2213. " -v, --verbose\n"
  2214. " Extra information. Up to 3 verbosity levels\n"
  2215. msgstr ""
  2216. #: plugins/check_procs.c:609
  2217. msgid ""
  2218. "\n"
  2219. "Optional Filters:\n"
  2220. " -s, --state=STATUSFLAGS\n"
  2221. " Only scan for processes that have, in the output of `ps`, one or\n"
  2222. " more of the status flags you specify (for example R, Z, S, RS,\n"
  2223. " RSZDT, plus others based on the output of your 'ps' command).\n"
  2224. " -p, --ppid=PPID\n"
  2225. " Only scan for children of the parent process ID indicated.\n"
  2226. " -z, --vsz=VSZ\n"
  2227. " Only scan for processes with vsz higher than indicated.\n"
  2228. " -r, --rss=RSS\n"
  2229. " Only scan for processes with rss higher than indicated.\n"
  2230. msgstr ""
  2231. #: plugins/check_procs.c:622
  2232. msgid ""
  2233. " -P, --pcpu=PCPU\n"
  2234. " Only scan for processes with pcpu higher than indicated.\n"
  2235. " -u, --user=USER\n"
  2236. " Only scan for processes with user name or ID indicated.\n"
  2237. " -a, --argument-array=STRING\n"
  2238. " Only scan for processes with args that contain STRING.\n"
  2239. " -C, --command=COMMAND\n"
  2240. " Only scan for exact matches to the named COMMAND.\n"
  2241. msgstr ""
  2242. #: plugins/check_procs.c:632
  2243. msgid ""
  2244. "\n"
  2245. "RANGEs are specified 'min:max' or 'min:' or ':max' (or 'max'). If\n"
  2246. "specified 'max:min', a warning status will be generated if the\n"
  2247. "count is inside the specified range\n"
  2248. "\n"
  2249. msgstr ""
  2250. #: plugins/check_procs.c:637
  2251. msgid ""
  2252. "This plugin checks the number of currently running processes and\n"
  2253. "generates WARNING or CRITICAL states if the process count is outside\n"
  2254. "the specified threshold ranges. The process count can be filtered by\n"
  2255. "process owner, parent process PID, current state (e.g., 'Z'), or may\n"
  2256. "be the total number of running processes\n"
  2257. "\n"
  2258. msgstr ""
  2259. #: plugins/check_procs.c:644
  2260. msgid ""
  2261. "Examples:\n"
  2262. " check_procs -w 2:2 -c 2:1024 -C portsentry\n"
  2263. " Warning if not two processes with command name portsentry. Critical\n"
  2264. " if < 2 or > 1024 processes\n"
  2265. "\n"
  2266. " check_procs -w 10 -a '/usr/local/bin/perl' -u root\n"
  2267. " Warning alert if > 10 processes with command arguments containing \n"
  2268. " '/usr/local/bin/perl' and owned by root\n"
  2269. "\n"
  2270. " check_procs -w 50000 -c 100000 --metric=VSZ\n"
  2271. " Alert if vsz of any processes over 50K or 100K\n"
  2272. "\n"
  2273. msgstr ""
  2274. #: plugins/check_radius.c:112
  2275. msgid "Config file error"
  2276. msgstr ""
  2277. #: plugins/check_radius.c:119
  2278. msgid "Out of Memory?"
  2279. msgstr ""
  2280. #: plugins/check_radius.c:140
  2281. msgid "Timeout"
  2282. msgstr ""
  2283. #: plugins/check_radius.c:142
  2284. msgid "Auth Error"
  2285. msgstr ""
  2286. #: plugins/check_radius.c:144
  2287. msgid "Auth Failed"
  2288. msgstr ""
  2289. #: plugins/check_radius.c:148
  2290. msgid "Auth OK"
  2291. msgstr ""
  2292. #: plugins/check_radius.c:186 plugins/check_radius.c:257
  2293. msgid "Timeout interval must be a positive integer"
  2294. msgstr ""
  2295. #: plugins/check_radius.c:190 plugins/check_radius.c:251
  2296. msgid "Number of retries must be a positive integer"
  2297. msgstr ""
  2298. #: plugins/check_radius.c:195 plugins/check_radius.c:233
  2299. msgid "Server port must be a positive integer"
  2300. msgstr ""
  2301. #: plugins/check_radius.c:277
  2302. msgid "Copyright (c) 1999 Robert August Vincent II\n"
  2303. msgstr ""
  2304. #: plugins/check_radius.c:280
  2305. msgid ""
  2306. "Tests to see if a radius server is accepting connections.\n"
  2307. "\n"
  2308. msgstr ""
  2309. #: plugins/check_radius.c:288
  2310. msgid ""
  2311. " -u, --username=STRING\n"
  2312. " The user to authenticate\n"
  2313. " -p, --password=STRING\n"
  2314. " Password for autentication (SECURITY RISK)\n"
  2315. " -F, --filename=STRING\n"
  2316. " Configuration file\n"
  2317. " -e, --expect=STRING\n"
  2318. " Response string to expect from the server\n"
  2319. " -r, --retries=INTEGER\n"
  2320. " Number of times to retry a failed connection\n"
  2321. msgstr ""
  2322. #: plugins/check_radius.c:302
  2323. msgid ""
  2324. "\n"
  2325. "This plugin tests a radius server to see if it is accepting connections.\n"
  2326. "\n"
  2327. "The server to test must be specified in the invocation, as well as a user\n"
  2328. "name and password. A configuration file may also be present. The format of\n"
  2329. "the configuration file is described in the radiusclient library sources.\n"
  2330. "\n"
  2331. msgstr ""
  2332. #: plugins/check_radius.c:309
  2333. msgid ""
  2334. "The password option presents a substantial security issue because the\n"
  2335. "password can be determined by careful watching of the command line in\n"
  2336. "a process listing. This risk is exacerbated because nagios will\n"
  2337. "run the plugin at regular prdictable intervals. Please be sure that\n"
  2338. "the password used does not allow access to sensitive system resources,\n"
  2339. "otherwise compormise could occur.\n"
  2340. msgstr ""
  2341. #: plugins/check_real.c:76
  2342. #, c-format
  2343. msgid "Unable to connect to %s on port %d\n"
  2344. msgstr ""
  2345. #: plugins/check_real.c:98
  2346. #, c-format
  2347. msgid "No data received from %s\n"
  2348. msgstr ""
  2349. #: plugins/check_real.c:103 plugins/check_real.c:176
  2350. msgid "Invalid REAL response received from host\n"
  2351. msgstr ""
  2352. #: plugins/check_real.c:105 plugins/check_real.c:178
  2353. #, c-format
  2354. msgid "Invalid REAL response received from host on port %d\n"
  2355. msgstr ""
  2356. #: plugins/check_real.c:169 plugins/check_tcp.c:274
  2357. msgid "No data received from host\n"
  2358. msgstr ""
  2359. #: plugins/check_real.c:232
  2360. #, c-format
  2361. msgid "REAL %s - %d second response time\n"
  2362. msgstr ""
  2363. #: plugins/check_real.c:315 plugins/check_smtp.c:237 plugins/check_tcp.c:458
  2364. msgid "Server port must be a positive integer\n"
  2365. msgstr ""
  2366. #: plugins/check_real.c:324 plugins/check_smtp.c:267
  2367. msgid "Warning time must be a nonnegative integer\n"
  2368. msgstr ""
  2369. #: plugins/check_real.c:333 plugins/check_smtp.c:258
  2370. msgid "Critical time must be a nonnegative integer\n"
  2371. msgstr ""
  2372. #: plugins/check_real.c:369
  2373. msgid "You must provide a server to check\n"
  2374. msgstr ""
  2375. #: plugins/check_real.c:402
  2376. msgid "Copyright (c) 1999 Pedro Leite <leite@cic.ua.pt>\n"
  2377. msgstr ""
  2378. #: plugins/check_real.c:405
  2379. msgid ""
  2380. "This plugin tests the REAL service on the specified host.\n"
  2381. "\n"
  2382. msgstr ""
  2383. #: plugins/check_real.c:413
  2384. #, c-format
  2385. msgid ""
  2386. " -u, --url=STRING\n"
  2387. " Connect to this url\n"
  2388. " -e, --expect=STRING\n"
  2389. " String to expect in first line of server response (default: %s)\n"
  2390. msgstr ""
  2391. #: plugins/check_real.c:426
  2392. msgid ""
  2393. "This plugin will attempt to open an RTSP connection with the host.\n"
  2394. "Successul connects return STATE_OK, refusals and timeouts return\n"
  2395. "STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful connects,\n"
  2396. "but incorrect reponse messages from the host result in STATE_WARNING return\n"
  2397. "values."
  2398. msgstr ""
  2399. #: plugins/check_smtp.c:103
  2400. msgid "recv() failed\n"
  2401. msgstr ""
  2402. #: plugins/check_smtp.c:112
  2403. msgid "Invalid SMTP response received from host\n"
  2404. msgstr ""
  2405. #: plugins/check_smtp.c:114
  2406. #, c-format
  2407. msgid "Invalid SMTP response received from host on port %d\n"
  2408. msgstr ""
  2409. #: plugins/check_smtp.c:144
  2410. #, c-format
  2411. msgid ""
  2412. "DUMMYCMD: %s\n"
  2413. "%s\n"
  2414. msgstr ""
  2415. #: plugins/check_smtp.c:166
  2416. #, c-format
  2417. msgid "SMTP %s - %.3f sec. response time, %s|time=%.3f\n"
  2418. msgstr ""
  2419. #: plugins/check_smtp.c:169
  2420. #, c-format
  2421. msgid "SMTP %s - %.3f second response time|time=%.3f\n"
  2422. msgstr ""
  2423. #: plugins/check_smtp.c:350
  2424. msgid "Copyright (c) 1999-2001 Ethan Galstad <nagios@nagios.org>\n"
  2425. msgstr ""
  2426. #: plugins/check_smtp.c:353
  2427. msgid ""
  2428. "This plugin will attempt to open an SMTP connection with the host.\n"
  2429. "\n"
  2430. msgstr ""
  2431. #: plugins/check_smtp.c:364
  2432. #, c-format
  2433. msgid ""
  2434. " -e, --expect=STRING\n"
  2435. " String to expect in first line of server response (default: '%s')\n"
  2436. " -n, nocommand\n"
  2437. " Suppress SMTP command\n"
  2438. " -C, --command=STRING\n"
  2439. " SMTP command (default: '%s')\n"
  2440. " -f, --from=STRING\n"
  2441. " FROM-address to include in MAIL command, required by Exchange 2000\n"
  2442. " (default: '%s')\n"
  2443. msgstr ""
  2444. #: plugins/check_smtp.c:381
  2445. msgid ""
  2446. "\n"
  2447. "Successul connects return STATE_OK, refusals and timeouts return\n"
  2448. "STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful\n"
  2449. "connects, but incorrect reponse messages from the host result in\n"
  2450. "STATE_WARNING return values.\n"
  2451. msgstr ""
  2452. #: plugins/check_snmp.c:274
  2453. #, c-format
  2454. msgid "Execute Error: %s\n"
  2455. msgstr ""
  2456. #: plugins/check_snmp.c:281 plugins/check_snmp.c:519
  2457. #, c-format
  2458. msgid "%s UNKNOWN: call for regex which was not a compiled option"
  2459. msgstr ""
  2460. #: plugins/check_snmp.c:318 plugins/negate.c:104
  2461. #, c-format
  2462. msgid ""
  2463. "%s problem - No data recieved from host\n"
  2464. "CMD: %s\n"
  2465. msgstr ""
  2466. #: plugins/check_snmp.c:452
  2467. #, c-format
  2468. msgid "Invalid critical threshold: %s\n"
  2469. msgstr ""
  2470. #: plugins/check_snmp.c:466
  2471. #, c-format
  2472. msgid "Invalid warning threshold: %s\n"
  2473. msgstr ""
  2474. #: plugins/check_snmp.c:513
  2475. msgid "Could Not Compile Regular Expression"
  2476. msgstr ""
  2477. #: plugins/check_snmp.c:539
  2478. #, c-format
  2479. msgid "Could not realloc() labels[%d]"
  2480. msgstr ""
  2481. #: plugins/check_snmp.c:552
  2482. msgid "Could not realloc() labels\n"
  2483. msgstr ""
  2484. #: plugins/check_snmp.c:570
  2485. #, c-format
  2486. msgid "Could not realloc() units [%d]\n"
  2487. msgstr ""
  2488. #: plugins/check_snmp.c:583
  2489. msgid "Could not realloc() units\n"
  2490. msgstr ""
  2491. #: plugins/check_snmp.c:656
  2492. #, c-format
  2493. msgid ""
  2494. "Missing secname (%s) or authpassword (%s) ! \n"
  2495. ")"
  2496. msgstr ""
  2497. #: plugins/check_snmp.c:674
  2498. #, c-format
  2499. msgid "Invalid SNMP version: %s\n"
  2500. msgstr ""
  2501. #: plugins/check_snmp.c:869
  2502. msgid ""
  2503. "Check status of remote machines and obtain sustem information via SNMP\n"
  2504. "\n"
  2505. msgstr ""
  2506. #: plugins/check_snmp.c:879
  2507. msgid ""
  2508. " -P, --protocol=[1|3]\n"
  2509. " SNMP protocol version\n"
  2510. " -L, --seclevel=[noAuthNoPriv|authNoPriv|authPriv]\n"
  2511. " SNMPv3 securityLevel\n"
  2512. " -a, --authproto=[MD5|SHA]\n"
  2513. " SNMPv3 auth proto\n"
  2514. msgstr ""
  2515. #: plugins/check_snmp.c:888
  2516. #, c-format
  2517. msgid ""
  2518. " -C, --community=STRING\n"
  2519. " Optional community string for SNMP communication\n"
  2520. " (default is \"%s\")\n"
  2521. " -U, --secname=USERNAME\n"
  2522. " SNMPv3 username\n"
  2523. " -A, --authpassword=PASSWORD\n"
  2524. " SNMPv3 authentication password\n"
  2525. " -X, --privpasswd=PASSWORD\n"
  2526. " SNMPv3 crypt passwd (DES)\n"
  2527. msgstr ""
  2528. #: plugins/check_snmp.c:900
  2529. #, c-format
  2530. msgid ""
  2531. " -o, --oid=OID(s)\n"
  2532. " Object identifier(s) whose value you wish to query\n"
  2533. " -m, --miblist=STRING\n"
  2534. " List of MIBS to be loaded (default = ALL)\n"
  2535. " -d, --delimiter=STRING\n"
  2536. " Delimiter to use when parsing returned data. Default is \"%s\"\n"
  2537. " Any data on the right hand side of the delimiter is considered\n"
  2538. " to be the data that should be used in the evaluation.\n"
  2539. msgstr ""
  2540. #: plugins/check_snmp.c:910
  2541. msgid ""
  2542. " -w, --warning=INTEGER_RANGE(s)\n"
  2543. " Range(s) which will not result in a WARNING status\n"
  2544. " -c, --critical=INTEGER_RANGE(s)\n"
  2545. " Range(s) which will not result in a CRITICAL status\n"
  2546. msgstr ""
  2547. #: plugins/check_snmp.c:917
  2548. msgid ""
  2549. " -s, --string=STRING\n"
  2550. " Return OK state (for that OID) if STRING is an exact match\n"
  2551. " -r, --ereg=REGEX\n"
  2552. " Return OK state (for that OID) if extended regular expression REGEX "
  2553. "matches\n"
  2554. " -R, --eregi=REGEX\n"
  2555. " Return OK state (for that OID) if case-insensitive extended REGEX "
  2556. "matches\n"
  2557. " -l, --label=STRING\n"
  2558. " Prefix label for output from plugin (default -s 'SNMP')\n"
  2559. msgstr ""
  2560. #: plugins/check_snmp.c:928
  2561. msgid ""
  2562. " -u, --units=STRING\n"
  2563. " Units label(s) for output data (e.g., 'sec.').\n"
  2564. " -D, --output-delimiter=STRING\n"
  2565. " Separates output on multiple OID requests\n"
  2566. msgstr ""
  2567. #: plugins/check_snmp.c:938
  2568. msgid ""
  2569. "\n"
  2570. "- This plugin uses the 'snmpget' command included with the NET-SNMP "
  2571. "package.\n"
  2572. " If you don't have the package installed, you will need to download it "
  2573. "from\n"
  2574. " http://net-snmp.sourceforge.net before you can use this plugin.\n"
  2575. msgstr ""
  2576. #: plugins/check_snmp.c:943
  2577. msgid ""
  2578. "- Multiple OIDs may be indicated by a comma- or space-delimited list (lists "
  2579. "with\n"
  2580. " internal spaces must be quoted) [max 8 OIDs]\n"
  2581. msgstr ""
  2582. #: plugins/check_snmp.c:947
  2583. msgid ""
  2584. "- Ranges are inclusive and are indicated with colons. When specified as\n"
  2585. " 'min:max' a STATE_OK will be returned if the result is within the "
  2586. "indicated\n"
  2587. " range or is equal to the upper or lower bound. A non-OK state will be\n"
  2588. " returned if the result is outside the specified range.\n"
  2589. msgstr ""
  2590. #: plugins/check_snmp.c:953
  2591. msgid ""
  2592. "- If specified in the order 'max:min' a non-OK state will be returned if "
  2593. "the\n"
  2594. " result is within the (inclusive) range.\n"
  2595. msgstr ""
  2596. #: plugins/check_snmp.c:957
  2597. msgid ""
  2598. "- Upper or lower bounds may be omitted to skip checking the respective "
  2599. "limit.\n"
  2600. "- Bare integers are interpreted as upper limits.\n"
  2601. "- When checking multiple OIDs, separate ranges by commas like '-w "
  2602. "1:10,1:,:20'\n"
  2603. "- Note that only one string and one regex may be checked at present\n"
  2604. "- All evaluation methods other than PR, STR, and SUBSTR expect that the "
  2605. "value\n"
  2606. " returned from the SNMP query is an unsigned integer.\n"
  2607. msgstr ""
  2608. #: plugins/check_snmp.c:971
  2609. #, c-format
  2610. msgid ""
  2611. "Usage: %s -H <ip_address> -o <OID> [-w warn_range] [-c crit_range] \n"
  2612. " [-C community] [-s string] [-r regex] [-R regexi] [-t timeout]\n"
  2613. " [-l label] [-u units] [-p port-number] [-d delimiter]\n"
  2614. " [-D output-delimiter] [-m miblist] [-P snmp version]\n"
  2615. " [-L seclevel] [-U secname] [-a authproto] [-A authpasswd]\n"
  2616. " [-X privpasswd]\n"
  2617. msgstr ""
  2618. #: plugins/check_ssh.c:203
  2619. #, c-format
  2620. msgid "Server answer: %s"
  2621. msgstr ""
  2622. #: plugins/check_ssh.c:214
  2623. #, c-format
  2624. msgid "SSH OK - %s (protocol %s)\n"
  2625. msgstr ""
  2626. #: plugins/check_ssh.c:232
  2627. msgid "Copyright (c) 1999 Remi Paulmier <remi@sinfomic.fr>\n"
  2628. msgstr ""
  2629. #: plugins/check_ssh.c:235
  2630. msgid ""
  2631. "Try to connect to SSH server at specified server and port\n"
  2632. "\n"
  2633. msgstr ""
  2634. #: plugins/check_ssh.c:255
  2635. #, c-format
  2636. msgid "Usage: %s [-46] [-t <timeout>] [-p <port>] <host>\n"
  2637. msgstr ""
  2638. #: plugins/check_swap.c:100
  2639. #, c-format
  2640. msgid "Command: %s\n"
  2641. msgstr ""
  2642. #: plugins/check_swap.c:142
  2643. #, c-format
  2644. msgid "total=%d, free=%d\n"
  2645. msgstr ""
  2646. #: plugins/check_swap.c:159
  2647. #, c-format
  2648. msgid " %d%% free (%lu MB out of %lu MB)%s"
  2649. msgstr ""
  2650. #: plugins/check_swap.c:320
  2651. msgid "Warning percentage should be more than critical percentage\n"
  2652. msgstr ""
  2653. #: plugins/check_swap.c:324
  2654. msgid "Warning free space should be more than critical free space\n"
  2655. msgstr ""
  2656. #: plugins/check_swap.c:341
  2657. msgid ""
  2658. "Check swap space on local server.\n"
  2659. "\n"
  2660. msgstr ""
  2661. #: plugins/check_swap.c:347
  2662. #, c-format
  2663. msgid ""
  2664. "\n"
  2665. " -w, --warning=INTEGER\n"
  2666. " Exit with WARNING status if less than INTEGER bytes of swap space are "
  2667. "free\n"
  2668. " -w, --warning=PERCENT%%\n"
  2669. " Exit with WARNING status if less than PERCENT of swap space has been "
  2670. "used\n"
  2671. " -c, --critical=INTEGER\n"
  2672. " Exit with CRITICAL status if less than INTEGER bytes of swap space are "
  2673. "free\n"
  2674. " -c, --critical=PERCENT%%\n"
  2675. " Exit with CRITCAL status if less than PERCENT of swap space has been "
  2676. "used\n"
  2677. " -a, --allswaps\n"
  2678. " Conduct comparisons for all swap partitions, one by one\n"
  2679. msgstr ""
  2680. #: plugins/check_swap.c:360
  2681. msgid ""
  2682. "\n"
  2683. "On Solaris, if -a specified, uses swap -l, otherwise uses swap -s.\n"
  2684. "Will be discrepencies because swap -s counts allocated swap and includes\n"
  2685. "real memory\n"
  2686. msgstr ""
  2687. #: plugins/check_swap.c:375
  2688. #, c-format
  2689. msgid ""
  2690. "Usage:\n"
  2691. " %s [-a] -w <used_percentage>%% -c <used_percentage>%%\n"
  2692. " %s [-a] -w <bytes_free> -c <bytes_free>\n"
  2693. " %s (-h | --help) for detailed help\n"
  2694. " %s (-V | --version) for version information\n"
  2695. msgstr ""
  2696. #: plugins/check_tcp.c:201
  2697. msgid "ERROR: Generic check_tcp called with unknown service\n"
  2698. msgstr ""
  2699. #: plugins/check_tcp.c:286
  2700. msgid "Invalid response from host\n"
  2701. msgstr ""
  2702. #: plugins/check_tcp.c:325
  2703. #, c-format
  2704. msgid "%s %s%s - %.3f second response time on port %d"
  2705. msgstr ""
  2706. #: plugins/check_tcp.c:425
  2707. msgid "invalid host name or address"
  2708. msgstr ""
  2709. #: plugins/check_tcp.c:430 plugins/check_time.c:226 plugins/check_time.c:238
  2710. #: plugins/check_udp.c:162 plugins/check_users.c:141
  2711. msgid "Critical threshold must be a nonnegative integer\n"
  2712. msgstr ""
  2713. #: plugins/check_tcp.c:437 plugins/check_time.c:207 plugins/check_time.c:231
  2714. #: plugins/check_udp.c:169 plugins/check_users.c:147 plugins/check_users.c:157
  2715. #: plugins/check_users.c:164
  2716. msgid "Warning threshold must be a nonnegative integer\n"
  2717. msgstr ""
  2718. #: plugins/check_tcp.c:452
  2719. msgid "Timeout interval must be a positive integer\n"
  2720. msgstr ""
  2721. #: plugins/check_tcp.c:475
  2722. msgid "Maxbytes must be a positive integer\n"
  2723. msgstr ""
  2724. #: plugins/check_tcp.c:489
  2725. msgid "Refuse mut be one of ok, warn, crit\n"
  2726. msgstr ""
  2727. #: plugins/check_tcp.c:495
  2728. msgid "Delay must be a positive integer\n"
  2729. msgstr ""
  2730. #: plugins/check_tcp.c:500
  2731. msgid "SSL support not available. Install OpenSSL and recompile."
  2732. msgstr ""
  2733. #: plugins/check_tcp.c:508
  2734. msgid "You must provide a server address\n"
  2735. msgstr ""
  2736. #: plugins/check_tcp.c:526
  2737. msgid "ERROR: Cannot create SSL context.\n"
  2738. msgstr ""
  2739. #: plugins/check_tcp.c:552
  2740. msgid "ERROR: Cannot initiate SSL handshake.\n"
  2741. msgstr ""
  2742. #: plugins/check_tcp.c:597
  2743. #, c-format
  2744. msgid ""
  2745. "This plugin tests %s connections with the specified host.\n"
  2746. "\n"
  2747. msgstr ""
  2748. #: plugins/check_tcp.c:608
  2749. msgid ""
  2750. " -s, --send=STRING\n"
  2751. " String to send to the server\n"
  2752. " -e, --expect=STRING\n"
  2753. " String to expect in server response\n"
  2754. " -q, --quit=STRING\n"
  2755. " String to send server to initiate a clean close of the connection\n"
  2756. msgstr ""
  2757. #: plugins/check_tcp.c:616
  2758. msgid ""
  2759. " -r, --refuse=ok|warn|crit\n"
  2760. " Accept tcp refusals with states ok, warn, crit (default: crit)\n"
  2761. " -m, --maxbytes=INTEGER\n"
  2762. " Close connection once more than this number of bytes are received\n"
  2763. " -d, --delay=INTEGER\n"
  2764. " Seconds to wait between sending string and polling for response\n"
  2765. msgstr ""
  2766. #: plugins/check_tcp.c:639
  2767. #, c-format
  2768. msgid ""
  2769. "Usage: %s -H host -p port [-w <warning time>] [-c <critical time>]\n"
  2770. " [-s <send string>] [-e <expect string>] [-q <quit string>]\n"
  2771. " [-m <maximum bytes>] [-d <delay>] [-t <timeout seconds>]\n"
  2772. " [-r <refuse state>] [-v] [-4|-6]\n"
  2773. msgstr ""
  2774. #: plugins/check_time.c:76
  2775. #, c-format
  2776. msgid "TIME UNKNOWN - could not connect to server %s, port %d\n"
  2777. msgstr ""
  2778. #: plugins/check_time.c:99
  2779. #, c-format
  2780. msgid "TIME UNKNOWN - no data on recv() from server %s, port %d\n"
  2781. msgstr ""
  2782. #: plugins/check_time.c:111
  2783. #, c-format
  2784. msgid "TIME %s - %d second response time\n"
  2785. msgstr ""
  2786. #: plugins/check_time.c:125
  2787. #, c-format
  2788. msgid "TIME %s - %lu second time difference\n"
  2789. msgstr ""
  2790. #: plugins/check_time.c:189 plugins/check_time.c:262 plugins/check_udp.c:157
  2791. #: plugins/check_udp.c:198
  2792. msgid "Invalid host name/address\n"
  2793. msgstr ""
  2794. #: plugins/check_time.c:203
  2795. msgid "Warning thresholds must be a nonnegative integer\n"
  2796. msgstr ""
  2797. #: plugins/check_time.c:222
  2798. msgid "Critical thresholds must be a nonnegative integer\n"
  2799. msgstr ""
  2800. #: plugins/check_time.c:251 plugins/check_udp.c:176
  2801. msgid "Timeout interval must be a nonnegative integer\n"
  2802. msgstr ""
  2803. #: plugins/check_time.c:266 plugins/check_udp.c:203
  2804. msgid "Host name was not supplied\n"
  2805. msgstr ""
  2806. #: plugins/check_time.c:286 plugins/check_udp.c:221 plugins/check_users.c:182
  2807. msgid "Copyright (c) 1999 Ethan Galstad\n"
  2808. msgstr ""
  2809. #: plugins/check_time.c:289
  2810. msgid ""
  2811. "This plugin will check the time on the specified host.\n"
  2812. "\n"
  2813. msgstr ""
  2814. #: plugins/check_time.c:298
  2815. msgid ""
  2816. " -w, --warning-variance=INTEGER\n"
  2817. " Time difference (sec.) necessary to result in a warning status\n"
  2818. " -c, --critical-variance=INTEGER\n"
  2819. " Time difference (sec.) necessary to result in a critical status\n"
  2820. " -W, --warning-connect=INTEGER\n"
  2821. " Response time (sec.) necessary to result in warning status\n"
  2822. " -C, --critical-connect=INTEGER\n"
  2823. " Response time (sec.) necessary to result in critical status\n"
  2824. msgstr ""
  2825. #: plugins/check_time.c:319
  2826. #, c-format
  2827. msgid ""
  2828. "Usage: %s -H <host_address> [-p port] [-w variance] [-c variance]\n"
  2829. " [-W connect_time] [-C connect_time] [-t timeout]\n"
  2830. msgstr ""
  2831. #: plugins/check_udp.c:88
  2832. #, c-format
  2833. msgid "Connection %s on port %d - %d second response time\n"
  2834. msgstr ""
  2835. #: plugins/check_udp.c:89
  2836. msgid "accepted"
  2837. msgstr ""
  2838. #: plugins/check_udp.c:89
  2839. msgid "problem"
  2840. msgstr ""
  2841. #: plugins/check_udp.c:224
  2842. msgid ""
  2843. "This plugin tests an UDP connection with the specified host.\n"
  2844. "\n"
  2845. msgstr ""
  2846. #: plugins/check_udp.c:233
  2847. msgid ""
  2848. " -e, --expect=STRING <optional>\n"
  2849. " String to expect in first line of server response\n"
  2850. " -s, --send=STRING <optional>\n"
  2851. " String to send to the server when initiating the connection\n"
  2852. msgstr ""
  2853. #: plugins/check_udp.c:245
  2854. msgid ""
  2855. "This plugin will attempt to connect to the specified port on the host.\n"
  2856. "Successful connects return STATE_OK, refusals and timeouts return\n"
  2857. "STATE_CRITICAL, other errors return STATE_UNKNOWN.\n"
  2858. "\n"
  2859. msgstr ""
  2860. #: plugins/check_udp.c:262
  2861. #, c-format
  2862. msgid ""
  2863. "Usage: %s -H <host_address> [-p port] [-w warn_time] [-c crit_time]\n"
  2864. " [-e expect] [-s send] [-t to_sec] [-v]\n"
  2865. msgstr ""
  2866. #: plugins/check_ups.c:542
  2867. msgid "Copyright (c) 2000 Tom Shields"
  2868. msgstr ""
  2869. #: plugins/check_ups.c:545
  2870. msgid ""
  2871. "This plugin tests the UPS service on the specified host.\n"
  2872. "Network UPS Tools from www.exploits.org must be running for this plugin to\n"
  2873. "work.\n"
  2874. "\n"
  2875. msgstr ""
  2876. #: plugins/check_ups.c:555
  2877. msgid ""
  2878. " -u, --ups=STRING\n"
  2879. " Name of UPS\n"
  2880. msgstr ""
  2881. #: plugins/check_ups.c:565
  2882. msgid ""
  2883. "This plugin attempts to determine the status of a UPS (Uninterruptible "
  2884. "Power\n"
  2885. "Supply) on a local or remote host. If the UPS is online or calibrating, the\n"
  2886. "plugin will return an OK state. If the battery is on it will return a "
  2887. "WARNING\n"
  2888. "state. If the UPS is off or has a low battery the plugin will return a "
  2889. "CRITICAL\n"
  2890. "state.\n"
  2891. "\n"
  2892. msgstr ""
  2893. #: plugins/check_ups.c:572
  2894. msgid ""
  2895. "You may also specify a variable to check [such as temperature, utility "
  2896. "voltage,\n"
  2897. "battery load, etc.] as well as warning and critical thresholds for the "
  2898. "value of\n"
  2899. "that variable. If the remote host has multiple UPS that are being monitored "
  2900. "you\n"
  2901. "will have to use the [ups] option to specify which UPS to check.\n"
  2902. "\n"
  2903. msgstr ""
  2904. #: plugins/check_ups.c:578
  2905. msgid ""
  2906. "Notes:\n"
  2907. "\n"
  2908. "This plugin requires that the UPSD daemon distributed with Russel Kroll's\n"
  2909. "Smart UPS Tools be installed on the remote host. If you do not have the\n"
  2910. "package installed on your system, you can download it from\n"
  2911. "http://www.exploits.org/nut\n"
  2912. "\n"
  2913. msgstr ""
  2914. #: plugins/check_ups.c:593
  2915. #, c-format
  2916. msgid ""
  2917. "Usage: %s -H host [-e expect] [-p port] [-w warn] [-c crit]\n"
  2918. " [-t timeout] [-v]\n"
  2919. msgstr ""
  2920. #: plugins/check_users.c:69
  2921. #, c-format
  2922. msgid "# users=%d"
  2923. msgstr ""
  2924. #: plugins/check_users.c:94
  2925. #, c-format
  2926. msgid "USERS %s - %d users currently logged in\n"
  2927. msgstr ""
  2928. #: plugins/check_users.c:185
  2929. msgid ""
  2930. "This plugin checks the number of users currently logged in on the local\n"
  2931. "system and generates an error if the number exceeds the thresholds "
  2932. "specified.\n"
  2933. msgstr ""
  2934. #: plugins/check_users.c:193
  2935. msgid ""
  2936. " -w, --warning=INTEGER\n"
  2937. " Set WARNING status if more than INTEGER users are logged in\n"
  2938. " -c, --critical=INTEGER\n"
  2939. " Set CRITICAL status if more than INTEGER users are logged in\n"
  2940. msgstr ""
  2941. #: plugins/negate.c:234
  2942. msgid ""
  2943. "Negates the status of a plugin (returns OK for CRITICAL, and vice-versa).\n"
  2944. "\n"
  2945. msgstr ""
  2946. #: plugins/negate.c:244
  2947. msgid " [keep timeout than the plugin timeout to retain CRITICAL status]\n"
  2948. msgstr ""
  2949. #: plugins/negate.c:247
  2950. msgid ""
  2951. " negate \"/usr/local/nagios/libexec/check_ping -H host\"\n"
  2952. " Run check_ping and invert result. Must use full path to plugin\n"
  2953. " negate \"/usr/local/nagios/libexec/check_procs -a 'vi negate.c'\"\n"
  2954. " Use single quotes if you need to retain spaces\n"
  2955. msgstr ""
  2956. #: plugins/negate.c:253
  2957. msgid ""
  2958. "This plugin is a wrapper to take the output of another plugin and invert "
  2959. "it.\n"
  2960. "If the wrapped plugin returns STATE_OK, the wrapper will return "
  2961. "STATE_CRITICAL.\n"
  2962. "If the wrapped plugin returns STATE_CRITICAL, the wrapper will return "
  2963. "STATE_OK.\n"
  2964. "Otherwise, the output state of the wrapped plugin is unchanged.\n"
  2965. msgstr ""
  2966. #: plugins/negate.c:269
  2967. #, c-format
  2968. msgid "Usage: %s [-t timeout] <definition of wrapped plugin>\n"
  2969. msgstr ""
  2970. #: plugins/urlize.c:101
  2971. #, c-format
  2972. msgid ""
  2973. "%s problem - No data recieved from host\n"
  2974. "CMD: %s</A>\n"
  2975. msgstr ""
  2976. #: plugins/urlize.c:128
  2977. msgid ""
  2978. "Copyright (c) 2000 Karl DeBisschop <kdebisschop@users.sourceforge.net>\n"
  2979. msgstr ""
  2980. #: plugins/urlize.c:131
  2981. msgid ""
  2982. "\n"
  2983. "This plugin wraps the text output of another command (plugin) in HTML\n"
  2984. "<A> tags, thus displaying the plugin output in as a clickable link in\n"
  2985. "the Nagios status screen. The return status is the same as the invoked\n"
  2986. "plugin.\n"
  2987. "\n"
  2988. msgstr ""
  2989. #: plugins/urlize.c:139
  2990. msgid ""
  2991. "\n"
  2992. "Pay close attention to quoting to ensure that the shell passes the expected\n"
  2993. "data to the plugin. For example, in:\n"
  2994. "\n"
  2995. " urlize http://example.com/ check_http -H example.com -r 'two words'\n"
  2996. "\n"
  2997. "the shell will remove the single quotes and urlize will see:\n"
  2998. "\n"
  2999. " urlize http://example.com/ check_http -H example.com -r two words\n"
  3000. "\n"
  3001. "You probably want:\n"
  3002. "\n"
  3003. " urlize http://example.com/ \"check_http -H example.com -r 'two words'\"\n"
  3004. msgstr ""
  3005. #: plugins/urlize.c:162
  3006. #, c-format
  3007. msgid ""
  3008. "Usage:\n"
  3009. " %s <url> <plugin> <arg1> ... <argN>\n"
  3010. msgstr ""
  3011. #: plugins/utils.c:81
  3012. msgid ""
  3013. "\n"
  3014. "Send email to nagios-users@lists.sourceforge.net if you have questions\n"
  3015. "regarding use of this software. To submit patches or suggest improvements,\n"
  3016. "send email to nagiosplug-devel@lists.sourceforge.net\n"
  3017. msgstr ""
  3018. #: plugins/utils.c:107
  3019. msgid ""
  3020. "The nagios plugins come with ABSOLUTELY NO WARRANTY. You may redistribute\n"
  3021. "copies of the plugins under the terms of the GNU General Public License.\n"
  3022. "For more information about these matters, see the file named COPYING.\n"
  3023. msgstr ""