de.po 129 KB

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