de.po 130 KB

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