nagios-plugins.pot 102 KB

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