de.po 113 KB

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