de.po 127 KB

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