nagios-plugins.pot 110 KB

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