de.po 127 KB

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