de.po 90 KB

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