tr.po 123 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128
  1. # Turkish translation for apt
  2. # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009
  3. # Copyright (c) 2013 Debian L10n Turkish 2013
  4. # Mert Dirik <mertdirik@gmail.com>, 2013-2014.
  5. # This file is distributed under the same license as the apt package.
  6. # Rosetta Contributors, 2009.
  7. msgid ""
  8. msgstr ""
  9. "Project-Id-Version: apt 1.0.5\n"
  10. "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
  11. "POT-Creation-Date: 2015-12-27 19:17+0100\n"
  12. "PO-Revision-Date: 2015-10-21 18:21+0300\n"
  13. "Last-Translator: Mert Dirik <mertdirik@gmail.com>\n"
  14. "Language-Team: Debian l10n Turkish <debian-l10n-turkish@lists.debian.org>\n"
  15. "Language: tr\n"
  16. "MIME-Version: 1.0\n"
  17. "Content-Type: text/plain; charset=UTF-8\n"
  18. "Content-Transfer-Encoding: 8bit\n"
  19. "Plural-Forms: nplurals=2; plural=n!=1;\n"
  20. "X-Generator: Poedit 1.8.5\n"
  21. "X-Launchpad-Export-Date: 2013-02-04 12:16+0000\n"
  22. "X-Poedit-SearchPath-0: .\n"
  23. #. TRANSLATOR: Very short word to be displayed before unchanged files in 'apt-get update'
  24. #: apt-private/acqprogress.cc
  25. #, c-format
  26. msgid "Hit:%lu %s"
  27. msgstr "Aynı: %lu %s"
  28. #. TRANSLATOR: Very short word to be displayed for files processed in 'apt-get update'
  29. #. Potentially replaced later by "Hit:", "Ign:" or "Err:" if something (bad) happens
  30. #: apt-private/acqprogress.cc
  31. #, c-format
  32. msgid "Get:%lu %s"
  33. msgstr "İndir: %lu %s"
  34. #. TRANSLATOR: Very short word to be displayed for files in 'apt-get update'
  35. #. which failed to download, but the error is ignored (compare "Err:")
  36. #: apt-private/acqprogress.cc
  37. #, c-format
  38. msgid "Ign:%lu %s"
  39. msgstr "Yoksay:%lu %s"
  40. #. TRANSLATOR: Very short word to be displayed for files in 'apt-get update'
  41. #. which failed to download and the error is critical (compare "Ign:")
  42. #: apt-private/acqprogress.cc
  43. #, c-format
  44. msgid "Err:%lu %s"
  45. msgstr "Hata: %lu %s"
  46. #: apt-private/acqprogress.cc
  47. #, c-format
  48. msgid "Fetched %sB in %s (%sB/s)\n"
  49. msgstr "%2$s'de %1$sB alındı (%3$sB/s)\n"
  50. #: apt-private/acqprogress.cc
  51. msgid " [Working]"
  52. msgstr " [Çalışıyor]"
  53. #: apt-private/acqprogress.cc
  54. #, c-format
  55. msgid ""
  56. "Media change: please insert the disc labeled\n"
  57. " '%s'\n"
  58. "in the drive '%s' and press [Enter]\n"
  59. msgstr ""
  60. "Ortam değişimi: Lütfen '%2$s' sürücüsüne\n"
  61. " '%1$s'\n"
  62. "olarak etiketlenmiş diski takın ve [Enter] tuşuna basın\n"
  63. #: apt-private/private-cachefile.cc
  64. msgid "Correcting dependencies..."
  65. msgstr "Bağımlılıklar düzeltiliyor..."
  66. #: apt-private/private-cachefile.cc
  67. msgid " failed."
  68. msgstr " başarısız oldu."
  69. #: apt-private/private-cachefile.cc
  70. msgid "Unable to correct dependencies"
  71. msgstr "Bağımlılıklar düzeltilemedi"
  72. #: apt-private/private-cachefile.cc
  73. msgid "Unable to minimize the upgrade set"
  74. msgstr "Yükseltme kümesi küçültülemiyor"
  75. #: apt-private/private-cachefile.cc
  76. msgid " Done"
  77. msgstr " Tamamlandı"
  78. #: apt-private/private-cachefile.cc
  79. msgid "You might want to run 'apt-get -f install' to correct these."
  80. msgstr ""
  81. "Bu sorunları düzeltmek için 'apt-get -f install' komutunu çalıştırmanız "
  82. "gerekebilir."
  83. #: apt-private/private-cachefile.cc
  84. msgid "Unmet dependencies. Try using -f."
  85. msgstr "Karşılanmayan bağımlılıklar. -f kullanmayı deneyin."
  86. #: apt-private/private-cacheset.cc apt-private/private-search.cc
  87. msgid "Sorting"
  88. msgstr "Sıralama"
  89. #: apt-private/private-cacheset.cc
  90. #, c-format
  91. msgid "Note, selecting '%s' for task '%s'\n"
  92. msgstr "Not, '%2$s' görevi için '%1$s' seçiliyor\n"
  93. #: apt-private/private-cacheset.cc
  94. #, c-format
  95. msgid "Note, selecting '%s' for glob '%s'\n"
  96. msgstr "Not, '%2$s' ifadesi için '%1$s' seçiliyor\n"
  97. #: apt-private/private-cacheset.cc
  98. #, c-format
  99. msgid "Note, selecting '%s' for regex '%s'\n"
  100. msgstr "Not, '%2$s' düzenli ifadesi için '%1$s' seçiliyor\n"
  101. #: apt-private/private-cacheset.cc
  102. #, c-format
  103. msgid "Package %s is a virtual package provided by:\n"
  104. msgstr "%s paketi sanal bir pakettir, bu paketi sağlayan:\n"
  105. #: apt-private/private-cacheset.cc
  106. msgid " [Installed]"
  107. msgstr " [Kurulu]"
  108. #: apt-private/private-cacheset.cc
  109. msgid " [Not candidate version]"
  110. msgstr " [Aday sürüm değil]"
  111. #: apt-private/private-cacheset.cc
  112. msgid "You should explicitly select one to install."
  113. msgstr "Kurmak için adaylardan birini açıkça seçmelisiniz."
  114. #: apt-private/private-cacheset.cc
  115. #, c-format
  116. msgid ""
  117. "Package %s is not available, but is referred to by another package.\n"
  118. "This may mean that the package is missing, has been obsoleted, or\n"
  119. "is only available from another source\n"
  120. msgstr ""
  121. "%s paketi mevcut değil, ancak başka paket içerisinden işaret edilmiş.\n"
  122. "Bu durum bu paketin kayıp, eskidiği için bırakılmış, ya da başka bir\n"
  123. "yazılım kaynağında bulunduğu anlamına gelebilir.\n"
  124. #: apt-private/private-cacheset.cc
  125. msgid "However the following packages replace it:"
  126. msgstr "Yine de aşağıdaki paketler onun yerine geçecek:"
  127. #: apt-private/private-cacheset.cc
  128. #, c-format
  129. msgid "Package '%s' has no installation candidate"
  130. msgstr "'%s' paketi için kurulum adayı yok"
  131. #: apt-private/private-cacheset.cc
  132. #, c-format
  133. msgid "Virtual packages like '%s' can't be removed\n"
  134. msgstr "'%s' gibi sanal paketler kaldırılamaz\n"
  135. #. TRANSLATORS: Note, this is not an interactive question
  136. #: apt-private/private-cacheset.cc apt-private/private-install.cc
  137. #, c-format
  138. msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
  139. msgstr ""
  140. "'%s' kurulu değildi, dolayısıyla kaldırılmadı. Bunu mu demek istediniz: "
  141. "'%s'?\n"
  142. #: apt-private/private-cacheset.cc apt-private/private-install.cc
  143. #, c-format
  144. msgid "Package '%s' is not installed, so not removed\n"
  145. msgstr "'%s' kurulu değildi, dolayısıyla kaldırılmadı\n"
  146. #: apt-private/private-cacheset.cc
  147. #, c-format
  148. msgid "Note, selecting '%s' instead of '%s'\n"
  149. msgstr "Not, '%2$s' yerine '%1$s' seçiliyor\n"
  150. #: apt-private/private-cmndline.cc
  151. msgid "Most used commands:"
  152. msgstr ""
  153. #: apt-private/private-cmndline.cc
  154. #, c-format
  155. msgid "See %s for more information about the available commands."
  156. msgstr ""
  157. #: apt-private/private-cmndline.cc
  158. msgid ""
  159. "Configuration options and syntax is detailed in apt.conf(5).\n"
  160. "Information about how to configure sources can be found in sources.list(5).\n"
  161. "Package and version choices can be expressed via apt_preferences(5).\n"
  162. "Security details are available in apt-secure(8).\n"
  163. msgstr ""
  164. #: apt-private/private-cmndline.cc
  165. msgid "This APT has Super Cow Powers."
  166. msgstr "Bu APT'nin Süper İnek Güçleri vardır."
  167. #: apt-private/private-cmndline.cc
  168. msgid "This APT helper has Super Meep Powers."
  169. msgstr "Bu APT yardımcısının Süper Meep Güçleri var."
  170. #: apt-private/private-depends.cc apt-private/private-show.cc
  171. #: cmdline/apt-mark.cc
  172. msgid "No packages found"
  173. msgstr "Hiç paket bulunamadı"
  174. #: apt-private/private-download.cc
  175. msgid "WARNING: The following packages cannot be authenticated!"
  176. msgstr "UYARI: Aşağıdaki paketlerin aslına uygunluğu doğrulanamıyor!"
  177. #: apt-private/private-download.cc
  178. msgid "Authentication warning overridden.\n"
  179. msgstr "Kimlik denetimi uyarısı görmezden geliniyor.\n"
  180. #: apt-private/private-download.cc
  181. msgid "Some packages could not be authenticated"
  182. msgstr "Bazı paketlerin aslına uygunluğu doğrulanamadı"
  183. #: apt-private/private-download.cc
  184. msgid "Install these packages without verification?"
  185. msgstr "Paketler doğrulanmadan kurulsun mu?"
  186. #: apt-private/private-download.cc apt-private/private-install.cc
  187. #, fuzzy
  188. msgid ""
  189. "--force-yes is deprecated, use one of the options starting with --allow "
  190. "instead."
  191. msgstr ""
  192. "--force-yes seçeneği kullanımdan kaldırılmıştır, lütfen --allow ile başlayan "
  193. "seçeneklerden birini kullanın."
  194. #: apt-private/private-download.cc
  195. msgid ""
  196. "There were unauthenticated packages and -y was used without --allow-"
  197. "unauthenticated"
  198. msgstr ""
  199. "Aslına uygunluğu doğrulanamayan paketler var ve -y seçeneği --allow-"
  200. "unauthenticated olmadan kullanılmış"
  201. #: apt-private/private-download.cc
  202. #, c-format
  203. msgid "Failed to fetch %s %s\n"
  204. msgstr "%s ağdan alınamadı. %s\n"
  205. #: apt-private/private-download.cc
  206. #, c-format
  207. msgid "Couldn't determine free space in %s"
  208. msgstr "%s içindeki boş alan miktarı belirlenemedi"
  209. #: apt-private/private-download.cc
  210. #, c-format
  211. msgid "You don't have enough free space in %s."
  212. msgstr "%s içinde yeterli boş alanınız yok."
  213. #: apt-private/private-download.cc
  214. msgid "Unable to lock the download directory"
  215. msgstr "İndirme dizini kilitlenemiyor"
  216. #: apt-private/private-install.cc
  217. msgid "Internal error, InstallPackages was called with broken packages!"
  218. msgstr "İç hata, InstallPackages bozuk paketler ile çağrıldı!"
  219. #: apt-private/private-install.cc
  220. msgid "Packages need to be removed but remove is disabled."
  221. msgstr ""
  222. "Paketlerin kaldırılması gerekiyor ancak kaldırma işlemi devre dışı "
  223. "bırakılmış."
  224. #: apt-private/private-install.cc
  225. msgid ""
  226. "Essential packages were removed and -y was used without --allow-remove-"
  227. "essential."
  228. msgstr ""
  229. "Temel paketler kaldırıldı ve -y seçeneği --allow-remove-essential olmadan "
  230. "kullanıldı."
  231. #: apt-private/private-install.cc
  232. msgid "Packages were downgraded and -y was used without --allow-downgrades."
  233. msgstr ""
  234. "Paket sürümleri düşürüldü ve -y seçeneği --allow-downgrades olmadan "
  235. "kullanıldı."
  236. #: apt-private/private-install.cc
  237. msgid ""
  238. "Held packages were changed and -y was used without --allow-change-held-"
  239. "packages."
  240. msgstr ""
  241. "Tutulan paketler değişti ve -y seçeneği --allow-change-held-packages olmadan "
  242. "kullanıldı."
  243. #: apt-private/private-install.cc
  244. msgid "Internal error, Ordering didn't finish"
  245. msgstr "İç hata, Sıralama tamamlanamadı"
  246. #: apt-private/private-install.cc
  247. msgid "How odd... The sizes didn't match, email apt@packages.debian.org"
  248. msgstr ""
  249. "Ne kadar ilginç... Boyutlar eşleşmedi, apt@packages.debian.org adresine "
  250. "eposta atın"
  251. #. TRANSLATOR: The required space between number and unit is already included
  252. #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
  253. #: apt-private/private-install.cc
  254. #, c-format
  255. msgid "Need to get %sB/%sB of archives.\n"
  256. msgstr "%sB/%sB arşiv dosyası indirilecek.\n"
  257. #. TRANSLATOR: The required space between number and unit is already included
  258. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  259. #: apt-private/private-install.cc
  260. #, c-format
  261. msgid "Need to get %sB of archives.\n"
  262. msgstr "%sB arşiv dosyası indirilecek.\n"
  263. #. TRANSLATOR: The required space between number and unit is already included
  264. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  265. #: apt-private/private-install.cc
  266. #, c-format
  267. msgid "After this operation, %sB of additional disk space will be used.\n"
  268. msgstr "Bu işlem tamamlandıktan sonra %sB ek disk alanı kullanılacak.\n"
  269. #. TRANSLATOR: The required space between number and unit is already included
  270. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  271. #: apt-private/private-install.cc
  272. #, c-format
  273. msgid "After this operation, %sB disk space will be freed.\n"
  274. msgstr "Bu işlem tamamlandıktan sonra %sB disk alanı boşalacak.\n"
  275. #: apt-private/private-install.cc
  276. msgid "Trivial Only specified but this is not a trivial operation."
  277. msgstr "Sadece Önemsiz seçeneği ayarlandı, ama bu önemsiz bir işlem değil."
  278. #. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
  279. #. careful with hard to type or special characters (like non-breaking spaces)
  280. #: apt-private/private-install.cc
  281. msgid "Yes, do as I say!"
  282. msgstr "Evet, söylediğim şekilde yap!"
  283. #: apt-private/private-install.cc
  284. #, c-format
  285. msgid ""
  286. "You are about to do something potentially harmful.\n"
  287. "To continue type in the phrase '%s'\n"
  288. " ?] "
  289. msgstr ""
  290. "Tehlikeli bir iş yapmak üzeresiniz.\n"
  291. "Devam etmek için '%s' ifadesini yazınız\n"
  292. " ?] "
  293. #: apt-private/private-install.cc
  294. msgid "Abort."
  295. msgstr "Vazgeç."
  296. #: apt-private/private-install.cc
  297. msgid "Do you want to continue?"
  298. msgstr "Devam etmek istiyor musunuz?"
  299. #: apt-private/private-install.cc
  300. msgid "Some files failed to download"
  301. msgstr "Bazı dosyalar indirilemedi"
  302. #: apt-private/private-install.cc apt-private/private-source.cc
  303. msgid "Download complete and in download only mode"
  304. msgstr "İndirme işlemi tamamlandı ve sadece indirme kipinde"
  305. #: apt-private/private-install.cc
  306. msgid ""
  307. "Unable to fetch some archives, maybe run apt-get update or try with --fix-"
  308. "missing?"
  309. msgstr ""
  310. "Bazı arşivler alınamıyor, apt-get update'i çalıştırmayı ya da --fix-missing "
  311. "seçeneğini ekleyerek düzeltmeyi deneyin."
  312. #: apt-private/private-install.cc
  313. msgid "--fix-missing and media swapping is not currently supported"
  314. msgstr "--fix-missing seçeneği ve ortam takası şu an için desteklenmiyor"
  315. #: apt-private/private-install.cc
  316. msgid "Unable to correct missing packages."
  317. msgstr "Eksik paketler düzeltilemedi."
  318. #: apt-private/private-install.cc
  319. msgid "Aborting install."
  320. msgstr "Kurulum iptal ediliyor."
  321. #: apt-private/private-install.cc
  322. msgid ""
  323. "The following package disappeared from your system as\n"
  324. "all files have been overwritten by other packages:"
  325. msgid_plural ""
  326. "The following packages disappeared from your system as\n"
  327. "all files have been overwritten by other packages:"
  328. msgstr[0] ""
  329. "Tüm dosyalarının üzerine yazıldığı için aşağıdaki paket\n"
  330. "sisteminizden kayboldu:"
  331. msgstr[1] ""
  332. "Tüm dosyalarının üzerine yazıldığı için aşağıdaki paketler\n"
  333. "sisteminizden kayboldu:"
  334. #: apt-private/private-install.cc
  335. msgid "Note: This is done automatically and on purpose by dpkg."
  336. msgstr "Not: Bu eylem dpkg tarafından otomatik ve kasıtlı olarak yapılmıştır."
  337. #: apt-private/private-install.cc
  338. msgid "We are not supposed to delete stuff, can't start AutoRemover"
  339. msgstr "Nesneleri silmemiz beklenemez, AutoRemover çalıştırılamıyor"
  340. #: apt-private/private-install.cc
  341. msgid ""
  342. "Hmm, seems like the AutoRemover destroyed something which really\n"
  343. "shouldn't happen. Please file a bug report against apt."
  344. msgstr ""
  345. "AutoRemover yapmaması gereken bir yıkıma\n"
  346. "sebep oldu. Lütfen apt hakkında bir hata raporu doldurun."
  347. #.
  348. #. if (Packages == 1)
  349. #. {
  350. #. c1out << std::endl;
  351. #. c1out <<
  352. #. _("Since you only requested a single operation it is extremely likely that\n"
  353. #. "the package is simply not installable and a bug report against\n"
  354. #. "that package should be filed.") << std::endl;
  355. #. }
  356. #.
  357. #: apt-private/private-install.cc
  358. msgid "The following information may help to resolve the situation:"
  359. msgstr "Aşağıdaki bilgiler durumu çözmenize yardımcı olabilir:"
  360. #: apt-private/private-install.cc
  361. msgid "Internal Error, AutoRemover broke stuff"
  362. msgstr "İç hata, AutoRemover bazı şeyleri bozdu"
  363. #: apt-private/private-install.cc
  364. msgid ""
  365. "The following package was automatically installed and is no longer required:"
  366. msgid_plural ""
  367. "The following packages were automatically installed and are no longer "
  368. "required:"
  369. msgstr[0] ""
  370. "Aşağıdaki paket otomatik olarak kurulmuş ve artık bu pakete gerek duyulmuyor:"
  371. msgstr[1] ""
  372. "Aşağıdaki paketler otomatik olarak kurulmuş ve artık bu paketlere gerek "
  373. "duyulmuyor:"
  374. #: apt-private/private-install.cc
  375. #, c-format
  376. msgid "%lu package was automatically installed and is no longer required.\n"
  377. msgid_plural ""
  378. "%lu packages were automatically installed and are no longer required.\n"
  379. msgstr[0] "%lu paket otomatik olarak kurulmuş ve artık gerekli değil.\n"
  380. msgstr[1] "%lu paket otomatik olarak kurulmuş ve artık gerekli değil.\n"
  381. #: apt-private/private-install.cc
  382. #, c-format
  383. msgid "Use '%s' to remove it."
  384. msgid_plural "Use '%s' to remove them."
  385. msgstr[0] "Bu paketi kaldırmak için '%s' komutunu kullanın."
  386. msgstr[1] "Bu paketleri kaldırmak için '%s' komutunu kullanın."
  387. #: apt-private/private-install.cc
  388. msgid "You might want to run 'apt-get -f install' to correct these:"
  389. msgstr ""
  390. "Bunları düzeltmek için 'apt-get -f install' komutunu çalıştırmanız "
  391. "gerekebilir:"
  392. #: apt-private/private-install.cc
  393. msgid ""
  394. "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
  395. "solution)."
  396. msgstr ""
  397. "Karşılanmamış bağımlılıklar. 'apt-get -f install' komutunu paket seçeneği "
  398. "vermeden deneyin (ya da bir çözüm belirtin)."
  399. #: apt-private/private-install.cc
  400. msgid ""
  401. "Some packages could not be installed. This may mean that you have\n"
  402. "requested an impossible situation or if you are using the unstable\n"
  403. "distribution that some required packages have not yet been created\n"
  404. "or been moved out of Incoming."
  405. msgstr ""
  406. "Bazı paketler kurulamadı. Bu durum, olanaksız bir durum istemiş\n"
  407. "olduğunuzu ya da kararsız (unstable) dağıtımı kullandığınızı ve\n"
  408. "bazı paketlerin henüz oluşturulamamış ya da oluşturulmakta\n"
  409. "olduğunu gösterir."
  410. #: apt-private/private-install.cc
  411. msgid "Broken packages"
  412. msgstr "Bozuk paketler"
  413. #: apt-private/private-install.cc
  414. msgid "The following additional packages will be installed:"
  415. msgstr "Aşağıdaki ek paketler kurulacak:"
  416. #: apt-private/private-install.cc
  417. msgid "Suggested packages:"
  418. msgstr "Önerilen paketler:"
  419. #: apt-private/private-install.cc
  420. msgid "Recommended packages:"
  421. msgstr "Tavsiye edilen paketler:"
  422. #: apt-private/private-install.cc
  423. #, c-format
  424. msgid "Skipping %s, it is already installed and upgrade is not set.\n"
  425. msgstr "%s atlanıyor, bu paket zaten kurulu ve yükseltme seçilmemiş.\n"
  426. #: apt-private/private-install.cc
  427. #, c-format
  428. msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
  429. msgstr ""
  430. "%s atlanıyor, bu paket kurulu değil ve sadece yükseltmeler isteniyor.\n"
  431. #: apt-private/private-install.cc
  432. #, c-format
  433. msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
  434. msgstr ""
  435. "%s paketinin yeniden kurulumu mümkün değil, çünkü paket indirilemedi.\n"
  436. #. TRANSLATORS: First string is package name, second is version
  437. #: apt-private/private-install.cc
  438. #, c-format
  439. msgid "%s is already the newest version (%s).\n"
  440. msgstr "%s zaten en yeni sürümde (%s).\n"
  441. #: apt-private/private-install.cc cmdline/apt-get.cc cmdline/apt-mark.cc
  442. #, c-format
  443. msgid "%s set to manually installed.\n"
  444. msgstr "%s elle kurulmuş olarak ayarlandı.\n"
  445. #: apt-private/private-install.cc
  446. #, c-format
  447. msgid "Selected version '%s' (%s) for '%s'\n"
  448. msgstr "'%3$s' paketinin '%1$s' (%2$s) sürümü seçildi\n"
  449. #: apt-private/private-install.cc
  450. #, c-format
  451. msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
  452. msgstr "'%4$s' nedeniyle '%3$s' paketinin '%1$s' (%2$s) sürümü seçildi\n"
  453. #: apt-private/private-list.cc
  454. msgid "Listing"
  455. msgstr "Listeleme"
  456. #: apt-private/private-list.cc
  457. #, c-format
  458. msgid "There is %i additional version. Please use the '-a' switch to see it"
  459. msgid_plural ""
  460. "There are %i additional versions. Please use the '-a' switch to see them."
  461. msgstr[0] "Fazladan %i sürüm daha var. Görmek için '-a' anahtarını kullanın."
  462. msgstr[1] ""
  463. "Fazladan %i sürüm daha var. Bu sürümleri görmek için '-a' anahtarını "
  464. "kullanın."
  465. #: apt-private/private-main.cc
  466. msgid ""
  467. "NOTE: This is only a simulation!\n"
  468. " apt-get needs root privileges for real execution.\n"
  469. " Keep also in mind that locking is deactivated,\n"
  470. " so don't depend on the relevance to the real current situation!"
  471. msgstr ""
  472. "NOT: Bu sadece bir benzetimdir!\n"
  473. " apt-get'i gerçekten çalıştırmak için root haklarına ihtiyaç vardır.\n"
  474. " Unutmayın ki benzetim kipinde kilitleme yapılmaz, bu nedenle\n"
  475. " bu benzetimin gerçekteki durumla birebir aynı olacağına güvenmeyin!"
  476. #: apt-private/private-output.cc apt-private/private-show.cc
  477. msgid "unknown"
  478. msgstr "bilinmeyen"
  479. #: apt-private/private-output.cc
  480. #, c-format
  481. msgid "[installed,upgradable to: %s]"
  482. msgstr "[kurulu,yükseltilebilir: %s]"
  483. #: apt-private/private-output.cc
  484. msgid "[installed,local]"
  485. msgstr "[kurulu,yerel]"
  486. #: apt-private/private-output.cc
  487. msgid "[installed,auto-removable]"
  488. msgstr "[kurulu,otomatik-kaldırılabilir]"
  489. #: apt-private/private-output.cc
  490. msgid "[installed,automatic]"
  491. msgstr "[kurulu,otomatik]"
  492. #: apt-private/private-output.cc
  493. msgid "[installed]"
  494. msgstr "[kurulu]"
  495. #: apt-private/private-output.cc
  496. #, c-format
  497. msgid "[upgradable from: %s]"
  498. msgstr "[şundan yükseltilebilir: %s]"
  499. #: apt-private/private-output.cc
  500. msgid "[residual-config]"
  501. msgstr "[artık-yapılandırma]"
  502. #: apt-private/private-output.cc
  503. #, c-format
  504. msgid "but %s is installed"
  505. msgstr "ama %s kurulu"
  506. #: apt-private/private-output.cc
  507. #, c-format
  508. msgid "but %s is to be installed"
  509. msgstr "ama %s kurulacak"
  510. #: apt-private/private-output.cc
  511. msgid "but it is not installable"
  512. msgstr "ama kurulabilir değil"
  513. #: apt-private/private-output.cc
  514. msgid "but it is a virtual package"
  515. msgstr "ama o bir sanal paket"
  516. #: apt-private/private-output.cc
  517. msgid "but it is not installed"
  518. msgstr "ama kurulu değil"
  519. #: apt-private/private-output.cc
  520. msgid "but it is not going to be installed"
  521. msgstr "ama kurulmayacak"
  522. #: apt-private/private-output.cc
  523. msgid " or"
  524. msgstr " ya da"
  525. #: apt-private/private-output.cc
  526. msgid "The following packages have unmet dependencies:"
  527. msgstr "Aşağıdaki paketler karşılanmamış bağımlılıklara sahip:"
  528. #: apt-private/private-output.cc
  529. msgid "The following NEW packages will be installed:"
  530. msgstr "Aşağıdaki YENİ paketler kurulacak:"
  531. #: apt-private/private-output.cc
  532. msgid "The following packages will be REMOVED:"
  533. msgstr "Aşağıdaki paketler KALDIRILACAK:"
  534. #: apt-private/private-output.cc
  535. msgid "The following packages have been kept back:"
  536. msgstr "Aşağıdaki paketlerin mevcut durumları korunacak:"
  537. #: apt-private/private-output.cc
  538. msgid "The following packages will be upgraded:"
  539. msgstr "Aşağıdaki paketler yükseltilecek:"
  540. #: apt-private/private-output.cc
  541. msgid "The following packages will be DOWNGRADED:"
  542. msgstr "Aşağıdaki paketlerin SÜRÜMLERİ DÜŞÜRÜLECEK:"
  543. #: apt-private/private-output.cc
  544. msgid "The following held packages will be changed:"
  545. msgstr "Aşağıdaki eski sürümlerinde tutulan paketler değiştirilecek:"
  546. #: apt-private/private-output.cc
  547. #, c-format
  548. msgid "%s (due to %s)"
  549. msgstr "%s (%s nedeniyle)"
  550. #: apt-private/private-output.cc
  551. msgid ""
  552. "WARNING: The following essential packages will be removed.\n"
  553. "This should NOT be done unless you know exactly what you are doing!"
  554. msgstr ""
  555. "UYARI: Aşağıdaki temel paketler kaldırılacak.\n"
  556. "Bu işlem ne yaptığınızı tam olarak bilmediğiniz takdirde YAPILMAMALIDIR!"
  557. #: apt-private/private-output.cc
  558. #, c-format
  559. msgid "%lu upgraded, %lu newly installed, "
  560. msgstr "%lu paket yükseltilecek, %lu yeni paket kurulacak, "
  561. #: apt-private/private-output.cc
  562. #, c-format
  563. msgid "%lu reinstalled, "
  564. msgstr "%lu paket yeniden kurulacak, "
  565. #: apt-private/private-output.cc
  566. #, c-format
  567. msgid "%lu downgraded, "
  568. msgstr "%lu paketin sürümü düşürülecek, "
  569. #: apt-private/private-output.cc
  570. #, c-format
  571. msgid "%lu to remove and %lu not upgraded.\n"
  572. msgstr "%lu paket kaldırılacak ve %lu paket yükseltilmeyecek.\n"
  573. #: apt-private/private-output.cc
  574. #, c-format
  575. msgid "%lu not fully installed or removed.\n"
  576. msgstr "%lu paket tam olarak kurulmayacak ya da kaldırılmayacak.\n"
  577. #. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
  578. #. e.g. "Do you want to continue? [Y/n] "
  579. #. The user has to answer with an input matching the
  580. #. YESEXPR/NOEXPR defined in your l10n.
  581. #: apt-private/private-output.cc
  582. msgid "[Y/n]"
  583. msgstr "[E/h]"
  584. #. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
  585. #. e.g. "Should this file be removed? [y/N] "
  586. #. The user has to answer with an input matching the
  587. #. YESEXPR/NOEXPR defined in your l10n.
  588. #: apt-private/private-output.cc
  589. msgid "[y/N]"
  590. msgstr "[e/H]"
  591. #. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
  592. #: apt-private/private-output.cc
  593. msgid "Y"
  594. msgstr "E"
  595. #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
  596. #: apt-private/private-output.cc
  597. msgid "N"
  598. msgstr "H"
  599. #: apt-private/private-output.cc apt-pkg/cachefilter.cc
  600. #, c-format
  601. msgid "Regex compilation error - %s"
  602. msgstr "Regex derleme hatası - %s"
  603. #: apt-private/private-search.cc
  604. msgid "You must give at least one search pattern"
  605. msgstr "En az bir arama örüntüsü vermelisiniz"
  606. #: apt-private/private-search.cc
  607. msgid "Full Text Search"
  608. msgstr "Tam Metin Arama"
  609. #: apt-private/private-show.cc cmdline/apt-cache.cc
  610. #, c-format
  611. msgid "Package file %s is out of sync."
  612. msgstr "%s paket dosyası eşzamansız."
  613. #: apt-private/private-show.cc
  614. #, c-format
  615. msgid "There is %i additional record. Please use the '-a' switch to see it"
  616. msgid_plural ""
  617. "There are %i additional records. Please use the '-a' switch to see them."
  618. msgstr[0] ""
  619. "Fazladan %i kayıt daha var. Görmek için '-a' anahtarını kullanabilirsiniz."
  620. msgstr[1] ""
  621. "Fazladan %i kayıt daha var. Bu kayıtları görmek için '-a' anahtarını "
  622. "kullanabilirsiniz."
  623. #: apt-private/private-show.cc
  624. msgid "not a real package (virtual)"
  625. msgstr "gerçek bir paket değil (sanal)"
  626. #: apt-private/private-show.cc apt-pkg/cacheset.cc
  627. #, c-format
  628. msgid "Unable to locate package %s"
  629. msgstr "%s paketi bulunamadı"
  630. #: apt-private/private-show.cc
  631. msgid "Package files:"
  632. msgstr "Paket dosyaları:"
  633. #: apt-private/private-show.cc
  634. msgid "Cache is out of sync, can't x-ref a package file"
  635. msgstr "Önbellek eşzamanlı değil, paket dosyası 'x-ref' yapılamıyor"
  636. #. Show any packages have explicit pins
  637. #: apt-private/private-show.cc
  638. msgid "Pinned packages:"
  639. msgstr "Sabitlenmiş paketler:"
  640. #: apt-private/private-show.cc
  641. msgid "(not found)"
  642. msgstr "(bulunamadı)"
  643. #. Print the package name and the version we are forcing to
  644. #: apt-private/private-show.cc
  645. #, c-format
  646. msgid "%s -> %s with priority %d\n"
  647. msgstr "%s -> %s (öncelik: %d)\n"
  648. #: apt-private/private-show.cc
  649. msgid " Installed: "
  650. msgstr " Kurulu: "
  651. #: apt-private/private-show.cc
  652. msgid " Candidate: "
  653. msgstr " Aday: "
  654. #: apt-private/private-show.cc
  655. msgid "(none)"
  656. msgstr "(hiçbiri)"
  657. #: apt-private/private-show.cc
  658. msgid " Package pin: "
  659. msgstr " Paket sabitleme: "
  660. #. Show the priority tables
  661. #: apt-private/private-show.cc
  662. msgid " Version table:"
  663. msgstr " Sürüm çizelgesi:"
  664. #: apt-private/private-source.cc
  665. #, c-format
  666. msgid "Can not find a package for architecture '%s'"
  667. msgstr "'%s' mimarisi için bir paket bulunamadı"
  668. #: apt-private/private-source.cc
  669. #, c-format
  670. msgid "Can not find a package '%s' with version '%s'"
  671. msgstr "'%s' paketinin '%s' sürümü bulunamadı"
  672. #: apt-private/private-source.cc
  673. #, c-format
  674. msgid "Can not find a package '%s' with release '%s'"
  675. msgstr "'%s' paketi '%s' dağıtım sürümünde bulunamadı"
  676. #: apt-private/private-source.cc
  677. #, c-format
  678. msgid "Picking '%s' as source package instead of '%s'\n"
  679. msgstr "Kaynak paket olarak '%s' yerine '%s' kullanılacak\n"
  680. #: apt-private/private-source.cc
  681. #, c-format
  682. msgid "Can not find version '%s' of package '%s'"
  683. msgstr "'%2$s' paketinin '%1$s' sürümünü bulunamadı"
  684. #: apt-private/private-source.cc
  685. msgid "Must specify at least one package to fetch source for"
  686. msgstr "Kaynağının indirileceği en az bir paket seçilmeli"
  687. #: apt-private/private-source.cc
  688. #, c-format
  689. msgid "Unable to find a source package for %s"
  690. msgstr "%s paketinin kaynak paketi bulunamadı"
  691. #: apt-private/private-source.cc
  692. #, c-format
  693. msgid ""
  694. "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
  695. "%s\n"
  696. msgstr ""
  697. "NOT: '%s' paketlemesi '%s' sürüm kontrol sistemiyle aşağıdaki adreste "
  698. "yapılmaktadır:\n"
  699. "%s\n"
  700. #: apt-private/private-source.cc
  701. #, c-format
  702. msgid ""
  703. "Please use:\n"
  704. "%s\n"
  705. "to retrieve the latest (possibly unreleased) updates to the package.\n"
  706. msgstr ""
  707. "Bu paketin en son (ve muhtemelen henüz yayımlanmamış olan)\n"
  708. "sürümünü edinmek için lütfen:\n"
  709. "%s\n"
  710. "komutunu kullanın.\n"
  711. #: apt-private/private-source.cc
  712. #, c-format
  713. msgid "Skipping already downloaded file '%s'\n"
  714. msgstr "Zaten indirilmiş olan '%s' dosyası atlanıyor\n"
  715. #. TRANSLATOR: The required space between number and unit is already included
  716. #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
  717. #: apt-private/private-source.cc
  718. #, c-format
  719. msgid "Need to get %sB/%sB of source archives.\n"
  720. msgstr "%sB/%sB kaynak arşivi indirilecek.\n"
  721. #. TRANSLATOR: The required space between number and unit is already included
  722. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  723. #: apt-private/private-source.cc
  724. #, c-format
  725. msgid "Need to get %sB of source archives.\n"
  726. msgstr "%sB kaynak arşivi indirilecek.\n"
  727. #: apt-private/private-source.cc
  728. #, c-format
  729. msgid "Fetch source %s\n"
  730. msgstr "%s kaynağını al\n"
  731. #: apt-private/private-source.cc
  732. msgid "Failed to fetch some archives."
  733. msgstr "Bazı arşivler alınamadı."
  734. #: apt-private/private-source.cc
  735. #, c-format
  736. msgid "Skipping unpack of already unpacked source in %s\n"
  737. msgstr "%s için zaten açılmış bazı paketlerin açılması atlanıyor\n"
  738. #: apt-private/private-source.cc
  739. #, c-format
  740. msgid "Unpack command '%s' failed.\n"
  741. msgstr "Paket açma komutu '%s' başarısız.\n"
  742. #: apt-private/private-source.cc
  743. #, c-format
  744. msgid "Check if the 'dpkg-dev' package is installed.\n"
  745. msgstr "'dpkg-dev' paketinin kurulu olduğundan emin olun.\n"
  746. #: apt-private/private-source.cc
  747. #, c-format
  748. msgid "Build command '%s' failed.\n"
  749. msgstr "İnşa komutu '%s' başarısız oldu.\n"
  750. #: apt-private/private-source.cc
  751. #, c-format
  752. msgid ""
  753. "%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
  754. "packages"
  755. msgstr ""
  756. "'%4$s' paketlerinde %3$s paketine izin verilmediği için %2$s kaynağının %1$s "
  757. "bağımlılığı karşılanamıyor"
  758. #: apt-private/private-source.cc
  759. #, c-format
  760. msgid ""
  761. "%s dependency for %s cannot be satisfied because the package %s cannot be "
  762. "found"
  763. msgstr ""
  764. "%2$s için %1$s bağımlılığı, %3$s paketi bulunamadığı için karşılanamadı"
  765. #: apt-private/private-source.cc
  766. #, c-format
  767. msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
  768. msgstr "%2$s için %1$s bağımlılığı karşılanamadı: Kurulu %3$s paketi çok yeni"
  769. #: apt-private/private-source.cc
  770. #, c-format
  771. msgid ""
  772. "%s dependency for %s cannot be satisfied because candidate version of "
  773. "package %s can't satisfy version requirements"
  774. msgstr ""
  775. "%2$s için %1$s bağımlılığı sağlanamıyor, çünkü %3$s paketinin aday sürümü "
  776. "gerekli sürüm şartlarını karşılamıyor"
  777. #: apt-private/private-source.cc
  778. #, c-format
  779. msgid ""
  780. "%s dependency for %s cannot be satisfied because package %s has no candidate "
  781. "version"
  782. msgstr ""
  783. "%2$s için %1$s bağımlılığı sağlanamıyor, çünkü %3$s paketinin aday sürümü yok"
  784. #: apt-private/private-source.cc
  785. #, c-format
  786. msgid "Failed to satisfy %s dependency for %s: %s"
  787. msgstr "%2$s için %1$s bağımlılığı karşılanamadı: %3$s"
  788. #: apt-private/private-source.cc
  789. #, c-format
  790. msgid "Build-dependencies for %s could not be satisfied."
  791. msgstr "%s için inşa bağımlılıkları karşılanamadı."
  792. #: apt-private/private-source.cc
  793. #, c-format
  794. msgid "Unable to get build-dependency information for %s"
  795. msgstr "%s paketinin inşa-bağımlılığı bilgisi alınamıyor"
  796. #: apt-private/private-source.cc
  797. #, c-format
  798. msgid "%s has no build depends.\n"
  799. msgstr "%s paketinin hiç inşa bağımlılığı yok.\n"
  800. #: apt-private/private-source.cc
  801. msgid "Must specify at least one package to check builddeps for"
  802. msgstr "İnşa bağımlılıklarının denetleneceği en az bir paket belirtilmelidir"
  803. #: apt-private/private-source.cc
  804. #, c-format
  805. msgid ""
  806. "No architecture information available for %s. See apt.conf(5) APT::"
  807. "Architectures for setup"
  808. msgstr ""
  809. "%s mimarisinin bilgileri mevcut değil. Kurulum için apt.conf(5) rehber "
  810. "sayfasındaki APT::Architectures kısmına göz atın"
  811. #: apt-private/private-source.cc
  812. #, c-format
  813. msgid "Note, using directory '%s' to get the build dependencies\n"
  814. msgstr "Not, inşa bağımlılıklarını indirmek için '%s' dizini kullanılıyor\n"
  815. #: apt-private/private-source.cc
  816. #, c-format
  817. msgid "Note, using file '%s' to get the build dependencies\n"
  818. msgstr "Not, inşa bağımlılıklarını indirmek için '%s' dosyası kullanılıyor\n"
  819. #: apt-private/private-source.cc
  820. msgid "Failed to process build dependencies"
  821. msgstr "İnşa bağımlılıklarını işleme başarısız oldu"
  822. #: apt-private/private-sources.cc
  823. #, c-format
  824. msgid "Failed to parse %s. Edit again? "
  825. msgstr "%s ayrıştırılamadı. Tekrar düzenlemek ister misiniz? "
  826. #: apt-private/private-sources.cc
  827. #, c-format
  828. msgid "Your '%s' file changed, please run 'apt-get update'."
  829. msgstr "'%s' dosyası değişti, lütfen 'apt-get update' komutunu çalıştırın."
  830. #: apt-private/private-unmet.cc
  831. #, c-format
  832. msgid "Package %s version %s has an unmet dep:\n"
  833. msgstr "%s paketinin (sürüm %s) karşılanamayan bir bağımlılığı var:\n"
  834. #: apt-private/private-update.cc
  835. msgid "The update command takes no arguments"
  836. msgstr "'update' komutu argüman almaz"
  837. #: apt-private/private-update.cc
  838. #, c-format
  839. msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n"
  840. msgid_plural ""
  841. "%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n"
  842. msgstr[0] ""
  843. "%i paket yükseltilebilir. Bu paketi görmek için 'apt list --upgradable' "
  844. "komutunu çalıştırın.\n"
  845. msgstr[1] ""
  846. "%i paket yükseltilebilir. Bu paketleri görmek için 'apt list --upgradable' "
  847. "komutunu çalıştırın.\n"
  848. #: apt-private/private-update.cc
  849. msgid "All packages are up to date."
  850. msgstr "Tüm paketler güncel."
  851. #: cmdline/apt-cache.cc
  852. msgid "apt-cache stats does not take any arguments"
  853. msgstr "apt-cache stats komutu argüman almaz"
  854. #: cmdline/apt-cache.cc
  855. msgid "Total package names: "
  856. msgstr "Toplam paketlerin adları: "
  857. #: cmdline/apt-cache.cc
  858. msgid "Total package structures: "
  859. msgstr "Toplam paket yapıları: "
  860. #: cmdline/apt-cache.cc
  861. msgid " Normal packages: "
  862. msgstr " Normal paketler: "
  863. #: cmdline/apt-cache.cc
  864. msgid " Pure virtual packages: "
  865. msgstr " Saf sanal paketler: "
  866. #: cmdline/apt-cache.cc
  867. msgid " Single virtual packages: "
  868. msgstr " Tekil sanal paketler: "
  869. #: cmdline/apt-cache.cc
  870. msgid " Mixed virtual packages: "
  871. msgstr " Karışık sanal paketler: "
  872. #: cmdline/apt-cache.cc
  873. msgid " Missing: "
  874. msgstr " Eksik: "
  875. #: cmdline/apt-cache.cc
  876. msgid "Total distinct versions: "
  877. msgstr "Toplam farklı sürümler: "
  878. #: cmdline/apt-cache.cc
  879. msgid "Total distinct descriptions: "
  880. msgstr "Toplam farklı açıklamalar: "
  881. #: cmdline/apt-cache.cc
  882. msgid "Total dependencies: "
  883. msgstr "Toplam bağımlılıklar: "
  884. #: cmdline/apt-cache.cc
  885. msgid "Total ver/file relations: "
  886. msgstr "Toplam sürüm/dosya ilişkileri: "
  887. #: cmdline/apt-cache.cc
  888. msgid "Total Desc/File relations: "
  889. msgstr "Toplam Tanım/Dosya ilişkileri: "
  890. #: cmdline/apt-cache.cc
  891. msgid "Total Provides mappings: "
  892. msgstr "Toplam destekleme eşleştirmeleri: "
  893. #: cmdline/apt-cache.cc
  894. msgid "Total globbed strings: "
  895. msgstr "Toplam birikmiş dizgiler: "
  896. #: cmdline/apt-cache.cc
  897. msgid "Total slack space: "
  898. msgstr "Toplam serbest alan: "
  899. #: cmdline/apt-cache.cc
  900. msgid "Total space accounted for: "
  901. msgstr "Hesaplanan toplam alan: "
  902. #: cmdline/apt-cache.cc
  903. msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
  904. msgstr ""
  905. "Bu komutun kullanımı bırakılmıştır. Lütfen bunun yerine 'apt-mark showauto' "
  906. "komutunu kullanın."
  907. #: cmdline/apt-cache.cc
  908. msgid ""
  909. "Usage: apt-cache [options] command\n"
  910. " apt-cache [options] show pkg1 [pkg2 ...]\n"
  911. "\n"
  912. "apt-cache queries and displays available information about installed\n"
  913. "and installable packages. It works exclusively on the data acquired\n"
  914. "into the local cache via the 'update' command of e.g. apt-get. The\n"
  915. "displayed information may therefore be outdated if the last update was\n"
  916. "too long ago, but in exchange apt-cache works independently of the\n"
  917. "availability of the configured sources (e.g. offline).\n"
  918. msgstr ""
  919. #: cmdline/apt-cache.cc
  920. msgid "Show source records"
  921. msgstr "Paket kayıtlarını görüntüle"
  922. #: cmdline/apt-cache.cc
  923. msgid "Search the package list for a regex pattern"
  924. msgstr "Paket listesini bir düzenli ifade ile ara"
  925. #: cmdline/apt-cache.cc
  926. msgid "Show raw dependency information for a package"
  927. msgstr "Bir paketin bağımlılık bilgilerini ham haliyle görüntüle"
  928. #: cmdline/apt-cache.cc
  929. msgid "Show reverse dependency information for a package"
  930. msgstr "Bir paketin ters bağımlılık bilgilerini görüntüle"
  931. #: cmdline/apt-cache.cc
  932. msgid "Show a readable record for the package"
  933. msgstr "Bir paketin okunabilir kaydını görüntüle"
  934. #: cmdline/apt-cache.cc
  935. msgid "List the names of all packages in the system"
  936. msgstr "Sistemdeki tüm paketlerin adlarını listele"
  937. #: cmdline/apt-cache.cc
  938. msgid "Show policy settings"
  939. msgstr "İlke seçeneklerini görüntüle"
  940. #: cmdline/apt-cdrom.cc
  941. msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
  942. msgstr "Lütfen bu CD/DVD'ye bir ad verin, örneğin 'Debian 5.0.3 Disk 1'"
  943. #: cmdline/apt-cdrom.cc
  944. msgid "Please insert a Disc in the drive and press [Enter]"
  945. msgstr "Lütfen sürücüye bir Disk yerleştirin ve [Enter] tuşuna basın"
  946. #: cmdline/apt-cdrom.cc
  947. #, c-format
  948. msgid "Failed to mount '%s' to '%s'"
  949. msgstr "'%s', '%s' konumuna bağlanamadı"
  950. #: cmdline/apt-cdrom.cc
  951. msgid ""
  952. "No CD-ROM could be auto-detected or found using the default mount point.\n"
  953. "You may try the --cdrom option to set the CD-ROM mount point.\n"
  954. "See 'man apt-cdrom' for more information about the CD-ROM auto-detection and "
  955. "mount point."
  956. msgstr ""
  957. "Öntanımlı bağlama noktasında bir CD-ROM algılanamadı.\n"
  958. "CD-ROM bağlama noktasını ayarlamak için --cdrom seçeneğini kullanmayı "
  959. "deneyebilirsiniz.\n"
  960. "Otomatik CD-ROM ve bağlantı noktası algılama hakkında daha fazla bilgi almak "
  961. "için 'man apt-cdrom' komutunu kullanabilirsiniz."
  962. #: cmdline/apt-cdrom.cc
  963. msgid "Repeat this process for the rest of the CDs in your set."
  964. msgstr "Kalan CD'leriniz için bu işlemi yineleyin."
  965. #: cmdline/apt-cdrom.cc
  966. msgid ""
  967. "Usage: apt-cdrom [options] command\n"
  968. "\n"
  969. "apt-cdrom is used to add CDROM's, USB flashdrives and other removable\n"
  970. "media types as package sources to APT. The mount point and device\n"
  971. "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
  972. msgstr ""
  973. #: cmdline/apt-config.cc
  974. msgid "Arguments not in pairs"
  975. msgstr "Argümanlar çiftler halinde değil"
  976. #: cmdline/apt-config.cc
  977. #, fuzzy
  978. msgid ""
  979. "Usage: apt-config [options] command\n"
  980. "\n"
  981. "apt-config is an interface to the configuration settings used by\n"
  982. "all APT tools, mainly intended for debugging and shell scripting.\n"
  983. msgstr ""
  984. "Kullanım: apt-config [seçenekler] komut\n"
  985. "\n"
  986. "apt-config, APT ayar dosyasını okumaya yarayan basit bir araçtır\n"
  987. #: cmdline/apt-config.cc
  988. msgid "get configuration values via shell evaluation"
  989. msgstr ""
  990. #: cmdline/apt-config.cc
  991. msgid "show the active configuration setting"
  992. msgstr ""
  993. #: cmdline/apt-get.cc
  994. #, c-format
  995. msgid "Couldn't find package %s"
  996. msgstr "%s paketi bulunamadı"
  997. #: cmdline/apt-get.cc cmdline/apt-mark.cc
  998. #, c-format
  999. msgid "%s set to automatically installed.\n"
  1000. msgstr "%s otomatik olarak kurulmuş şekilde ayarlandı.\n"
  1001. #: cmdline/apt-get.cc cmdline/apt-mark.cc
  1002. msgid ""
  1003. "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
  1004. "instead."
  1005. msgstr ""
  1006. "Bu komut artık kullanılmamaktadır. Bunun yerine 'apt-mark auto' ve 'apt-mark "
  1007. "manual' kullanın."
  1008. #: cmdline/apt-get.cc
  1009. msgid "Internal error, problem resolver broke stuff"
  1010. msgstr "İç hata, sorun çözücü nesneyi bozdu"
  1011. #: cmdline/apt-get.cc
  1012. msgid "Supported modules:"
  1013. msgstr "Desteklenen birimler:"
  1014. #: cmdline/apt-get.cc
  1015. #, fuzzy
  1016. msgid ""
  1017. "Usage: apt-get [options] command\n"
  1018. " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
  1019. " apt-get [options] source pkg1 [pkg2 ...]\n"
  1020. "\n"
  1021. "apt-get is a command line interface for retrieval of packages\n"
  1022. "and information about them from authenticated sources and\n"
  1023. "for installation, upgrade and removal of packages together\n"
  1024. "with their dependencies.\n"
  1025. msgstr ""
  1026. "Kullanım: apt-get [seçenekler] komut\n"
  1027. " apt-get [seçenekler] install|remove paket1 [paket2 ...]\n"
  1028. " apt-get [seçenekler] kaynak paket1 [paket2 ...]\n"
  1029. "\n"
  1030. "apt-get, paket indirme ve kurmada kullanılan basit bir komut satırı\n"
  1031. "arayüzüdür. En sık kullanılan komutlar güncelleme (update) ve kurma\n"
  1032. "(install) komutlarıdır.\n"
  1033. #: cmdline/apt-get.cc
  1034. msgid "Retrieve new lists of packages"
  1035. msgstr "Paket listelerini yenile"
  1036. #: cmdline/apt-get.cc
  1037. msgid "Perform an upgrade"
  1038. msgstr "Yükseltme işlemini gerçekleştir"
  1039. #: cmdline/apt-get.cc
  1040. msgid "Install new packages (pkg is libc6 not libc6.deb)"
  1041. msgstr "Yeni paket kur (paket libc6.deb değil libc6 şeklinde olmalıdır)"
  1042. #: cmdline/apt-get.cc
  1043. msgid "Remove packages"
  1044. msgstr "Paket(leri) kaldır"
  1045. #: cmdline/apt-get.cc
  1046. msgid "Remove packages and config files"
  1047. msgstr "Paketleri ve yapılandırma dosyalarını kaldır"
  1048. #: cmdline/apt-get.cc cmdline/apt.cc
  1049. msgid "Remove automatically all unused packages"
  1050. msgstr "Kullanılmayan tüm paketleri otomatik olarak kaldır"
  1051. #: cmdline/apt-get.cc
  1052. msgid "Distribution upgrade, see apt-get(8)"
  1053. msgstr "Dağıtım yükseltme, ayrıntılı bilgi için apt-get(8)"
  1054. #: cmdline/apt-get.cc
  1055. msgid "Follow dselect selections"
  1056. msgstr "dselect yapılandırmalarına uy"
  1057. #: cmdline/apt-get.cc
  1058. msgid "Configure build-dependencies for source packages"
  1059. msgstr "Kaynak paketlerin inşa bağımlılıklarını yapılandır"
  1060. #: cmdline/apt-get.cc
  1061. msgid "Erase downloaded archive files"
  1062. msgstr "İndirilmiş olan arşiv dosyalarını sil"
  1063. #: cmdline/apt-get.cc
  1064. msgid "Erase old downloaded archive files"
  1065. msgstr "İndirilmiş olan eski arşiv dosyalarını sil"
  1066. #: cmdline/apt-get.cc
  1067. msgid "Verify that there are no broken dependencies"
  1068. msgstr "Eksik bağımlılık olmadığından emin ol"
  1069. #: cmdline/apt-get.cc
  1070. msgid "Download source archives"
  1071. msgstr "Kaynak paket dosyalarını indir"
  1072. #: cmdline/apt-get.cc
  1073. msgid "Download the binary package into the current directory"
  1074. msgstr "İkili paketleri içinde bulunulan dizine indir"
  1075. #: cmdline/apt-get.cc
  1076. msgid "Download and display the changelog for the given package"
  1077. msgstr "Belirtilen paketlerin değişim günlüklerini indir ve görüntüle"
  1078. #: cmdline/apt-helper.cc
  1079. msgid "Need one URL as argument"
  1080. msgstr "Argüman olarak bir adet URL'ye ihtiyaç vardır"
  1081. #: cmdline/apt-helper.cc
  1082. msgid "Must specify at least one pair url/filename"
  1083. msgstr "En az bir adet url/dosya-adı çifti belirtilmelidir"
  1084. #: cmdline/apt-helper.cc
  1085. msgid "Download Failed"
  1086. msgstr "İndirme Başarısız"
  1087. #: cmdline/apt-helper.cc
  1088. #, c-format
  1089. msgid "GetSrvRec failed for %s"
  1090. msgstr "%s için GetSrvRec başarısız oldu"
  1091. #: cmdline/apt-helper.cc
  1092. #, fuzzy
  1093. msgid ""
  1094. "Usage: apt-helper [options] command\n"
  1095. " apt-helper [options] cat-file file ...\n"
  1096. " apt-helper [options] download-file uri target-path\n"
  1097. "\n"
  1098. "apt-helper bundles a variety of commands for shell scripts to use\n"
  1099. "e.g. the same proxy configuration or acquire system as APT would.\n"
  1100. msgstr ""
  1101. "Kullanım: apt-helper [seçenekler] komut\n"
  1102. " apt-helper [seçenekler] download-file uri hedef-konum\n"
  1103. "\n"
  1104. "apt-helper apt'nin bir dâhilî yardımcı aracıdır\n"
  1105. #: cmdline/apt-helper.cc
  1106. msgid "download the given uri to the target-path"
  1107. msgstr "verilen adresi (uri) hedef yola kaydet"
  1108. #: cmdline/apt-helper.cc
  1109. msgid "lookup a SRV record (e.g. _http._tcp.ftp.debian.org)"
  1110. msgstr "Bir SRV kaydına bak (örneğin _http._tcp.ftp.debian.org)"
  1111. #: cmdline/apt-helper.cc
  1112. msgid "concatenate files, with automatic decompression"
  1113. msgstr ""
  1114. #: cmdline/apt-helper.cc
  1115. msgid "detect proxy using apt.conf"
  1116. msgstr "apt.conf kullanarak vekil sunucuyu algıla"
  1117. #: cmdline/apt-mark.cc
  1118. #, c-format
  1119. msgid "%s can not be marked as it is not installed.\n"
  1120. msgstr "%s kurulu olmadığı için işaretlenemedi.\n"
  1121. #: cmdline/apt-mark.cc
  1122. #, c-format
  1123. msgid "%s was already set to manually installed.\n"
  1124. msgstr "%s zaten elle kurulmuş olarak ayarlı.\n"
  1125. #: cmdline/apt-mark.cc
  1126. #, c-format
  1127. msgid "%s was already set to automatically installed.\n"
  1128. msgstr "%s zaten otomatik kurulmuş olarak ayarlı.\n"
  1129. #: cmdline/apt-mark.cc
  1130. #, c-format
  1131. msgid "%s was already set on hold.\n"
  1132. msgstr "%s zaten tutulacak şekilde ayarlanmış.\n"
  1133. #: cmdline/apt-mark.cc
  1134. #, c-format
  1135. msgid "%s was already not hold.\n"
  1136. msgstr "%s zaten tutulmayacak şekilde ayarlanmış.\n"
  1137. #: cmdline/apt-mark.cc
  1138. msgid "Executing dpkg failed. Are you root?"
  1139. msgstr "'dpkg' çalıştırılamadı. root olduğunuzdan emin misiniz?"
  1140. #: cmdline/apt-mark.cc
  1141. #, c-format
  1142. msgid "%s set on hold.\n"
  1143. msgstr "%s paketi tutuluyor.\n"
  1144. #: cmdline/apt-mark.cc
  1145. #, c-format
  1146. msgid "Canceled hold on %s.\n"
  1147. msgstr "%s paketini tutma işlemi iptal edildi.\n"
  1148. #: cmdline/apt-mark.cc
  1149. #, c-format
  1150. msgid "Selected %s for purge.\n"
  1151. msgstr ""
  1152. #: cmdline/apt-mark.cc
  1153. #, c-format
  1154. msgid "Selected %s for removal.\n"
  1155. msgstr ""
  1156. #: cmdline/apt-mark.cc
  1157. #, c-format
  1158. msgid "Selected %s for installation.\n"
  1159. msgstr ""
  1160. #: cmdline/apt-mark.cc
  1161. #, fuzzy
  1162. msgid ""
  1163. "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
  1164. "\n"
  1165. "apt-mark is a simple command line interface for marking packages\n"
  1166. "as manually or automatically installed. It can also be used to\n"
  1167. "manipulate the dpkg(1) selection states of packages, and to list\n"
  1168. "all packages with or without a certain marking.\n"
  1169. msgstr ""
  1170. "Kullanım: apt-mark [seçenekler] {auto|manual} paket1 [paket2 ...]\n"
  1171. "\n"
  1172. "apt-mark paketleri otomatik ya da elle kurulmuş olarak işaretlemeye\n"
  1173. "ve mevcut işaretleri görmeye yarayan basit bir komut satırı arayüzüdür.\n"
  1174. #: cmdline/apt-mark.cc
  1175. msgid "Mark the given packages as automatically installed"
  1176. msgstr "Belirtilen paketleri otomatik kurulmuş olarak işaretle"
  1177. #: cmdline/apt-mark.cc
  1178. msgid "Mark the given packages as manually installed"
  1179. msgstr "Belirtilen paketleri elle kurulmuş olarak işaretle"
  1180. #: cmdline/apt-mark.cc
  1181. msgid "Mark a package as held back"
  1182. msgstr "Paketi tutulacak şekilde işaretle"
  1183. #: cmdline/apt-mark.cc
  1184. msgid "Unset a package set as held back"
  1185. msgstr "Paketin tutuluyor işaretini kaldır"
  1186. #: cmdline/apt-mark.cc
  1187. msgid "Print the list of automatically installed packages"
  1188. msgstr "Otomatik olarak kurulmuş paketlerin listesini görüntüle"
  1189. #: cmdline/apt-mark.cc
  1190. msgid "Print the list of manually installed packages"
  1191. msgstr "Elle kurulmuş paketlerin listesini görüntüle"
  1192. #: cmdline/apt-mark.cc
  1193. msgid "Print the list of package on hold"
  1194. msgstr "Tutulur durumda olan paketlerin listesini görüntüle"
  1195. #: cmdline/apt.cc
  1196. msgid ""
  1197. "Usage: apt [options] command\n"
  1198. "\n"
  1199. "apt is a commandline package manager and provides commands for\n"
  1200. "searching and managing as well as querying information about packages.\n"
  1201. "It provides the same functionality as the specialized APT tools,\n"
  1202. "like apt-get and apt-cache, but enables options more suitable for\n"
  1203. "interactive use by default.\n"
  1204. msgstr ""
  1205. #. query
  1206. #: cmdline/apt.cc
  1207. msgid "list packages based on package names"
  1208. msgstr "Paketleri adlarına göre listele"
  1209. #: cmdline/apt.cc
  1210. msgid "search in package descriptions"
  1211. msgstr "Paket açıklamalarında arama yap"
  1212. #: cmdline/apt.cc
  1213. msgid "show package details"
  1214. msgstr "Paket ayrıntılarını görüntüle"
  1215. #. package stuff
  1216. #: cmdline/apt.cc
  1217. msgid "install packages"
  1218. msgstr "paket kur"
  1219. #: cmdline/apt.cc
  1220. msgid "remove packages"
  1221. msgstr "paket kaldır"
  1222. #. system wide stuff
  1223. #: cmdline/apt.cc
  1224. msgid "update list of available packages"
  1225. msgstr "Kullanılabilir paketlerin listesini güncelle"
  1226. #: cmdline/apt.cc
  1227. msgid "upgrade the system by installing/upgrading packages"
  1228. msgstr "sistemi yükselt (paket kurarak ve yükselterek)"
  1229. #: cmdline/apt.cc
  1230. msgid "upgrade the system by removing/installing/upgrading packages"
  1231. msgstr "sistemi yükselt (paket kurarak, yükselterek ve kaldırarak)"
  1232. #. misc
  1233. #: cmdline/apt.cc
  1234. msgid "edit the source information file"
  1235. msgstr "kaynak bilgi dosyasını düzenle"
  1236. #: methods/cdrom.cc
  1237. #, c-format
  1238. msgid "Unable to read the cdrom database %s"
  1239. msgstr "'cdrom' veritabanı %s okunamıyor"
  1240. #: methods/cdrom.cc
  1241. msgid ""
  1242. "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
  1243. "cannot be used to add new CD-ROMs"
  1244. msgstr ""
  1245. "Lütfen bu CD-ROM'un APT tarafından tanınması için apt-cdrom aracını "
  1246. "kullanın. apt-get update yeni CD-ROM'lar eklemek için kullanılamaz"
  1247. #: methods/cdrom.cc
  1248. msgid "Wrong CD-ROM"
  1249. msgstr "Yanlış CD-ROM"
  1250. #: methods/cdrom.cc
  1251. #, c-format
  1252. msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
  1253. msgstr "%s konumundaki CD-ROM çıkarılamıyor, hâlâ kullanımda olabilir."
  1254. #: methods/cdrom.cc
  1255. msgid "Disk not found."
  1256. msgstr "Disk bulunamadı."
  1257. #: methods/cdrom.cc methods/file.cc methods/rsh.cc
  1258. msgid "File not found"
  1259. msgstr "Dosya bulunamadı"
  1260. #: methods/connect.cc
  1261. #, c-format
  1262. msgid "Connecting to %s (%s)"
  1263. msgstr "Bağlanılıyor %s (%s)"
  1264. #: methods/connect.cc
  1265. #, c-format
  1266. msgid "[IP: %s %s]"
  1267. msgstr "[IP: %s %s]"
  1268. #: methods/connect.cc
  1269. #, c-format
  1270. msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
  1271. msgstr "%s için bir soket oluşturulamadı (f=%u t=%u p=%u)"
  1272. #: methods/connect.cc
  1273. #, c-format
  1274. msgid "Cannot initiate the connection to %s:%s (%s)."
  1275. msgstr "%s:%s bağlantısı başlatılamıyor (%s)."
  1276. #: methods/connect.cc
  1277. #, c-format
  1278. msgid "Could not connect to %s:%s (%s), connection timed out"
  1279. msgstr "Adrese bağlanılamadı: %s:%s (%s), bağlantı zaman aşımına uğradı"
  1280. #: methods/connect.cc methods/ftp.cc methods/rsh.cc
  1281. msgid "Failed"
  1282. msgstr "Başarısız"
  1283. #: methods/connect.cc
  1284. #, c-format
  1285. msgid "Could not connect to %s:%s (%s)."
  1286. msgstr "Adrese bağlanılamadı: %s:%s (%s)."
  1287. #. We say this mainly because the pause here is for the
  1288. #. ssh connection that is still going
  1289. #: methods/connect.cc methods/rsh.cc
  1290. #, c-format
  1291. msgid "Connecting to %s"
  1292. msgstr "Bağlanılıyor: %s"
  1293. #: methods/connect.cc
  1294. #, c-format
  1295. msgid "Could not resolve '%s'"
  1296. msgstr "'%s' çözümlenemedi"
  1297. #: methods/connect.cc
  1298. #, c-format
  1299. msgid "Temporary failure resolving '%s'"
  1300. msgstr "'%s' çözümlenirken geçici bir sorunla karşılaşıldı"
  1301. #: methods/connect.cc
  1302. #, c-format
  1303. msgid "System error resolving '%s:%s'"
  1304. msgstr "'%s:%s' çözümlenirken bir sistem hatası oluştu"
  1305. #: methods/connect.cc
  1306. #, c-format
  1307. msgid "Something wicked happened resolving '%s:%s' (%i - %s)"
  1308. msgstr "'%s:%s' (%i - %s) adresi çözümlenirken bir şeyler kötü gitti"
  1309. #: methods/connect.cc
  1310. #, c-format
  1311. msgid "Unable to connect to %s:%s:"
  1312. msgstr "Bağlanılamadı %s:%s:"
  1313. #: methods/copy.cc methods/gzip.cc methods/rred.cc
  1314. msgid "Failed to stat"
  1315. msgstr "Durum bilgisi okunamadı"
  1316. #: methods/copy.cc methods/gzip.cc methods/rred.cc
  1317. msgid "Failed to set modification time"
  1318. msgstr "Değişiklik zamanı ayarlanamadı"
  1319. #: methods/file.cc
  1320. msgid "Invalid URI, local URIS must not start with //"
  1321. msgstr "Geçersiz URI, yerel URI'ler // ile başlamamalıdır"
  1322. #. Login must be before getpeername otherwise dante won't work.
  1323. #: methods/ftp.cc
  1324. msgid "Logging in"
  1325. msgstr "Giriş yapılıyor"
  1326. #: methods/ftp.cc
  1327. msgid "Unable to determine the peer name"
  1328. msgstr "Eş adı belirlenemiyor"
  1329. #: methods/ftp.cc
  1330. msgid "Unable to determine the local name"
  1331. msgstr "Yerel ad belirlenemiyor"
  1332. #: methods/ftp.cc
  1333. #, c-format
  1334. msgid "The server refused the connection and said: %s"
  1335. msgstr "Sunucu bağlantıyı reddetti, sunucunun iletisi: %s"
  1336. #: methods/ftp.cc
  1337. #, c-format
  1338. msgid "USER failed, server said: %s"
  1339. msgstr "USER başarısız, sunucunun iletisi: %s"
  1340. #: methods/ftp.cc
  1341. #, c-format
  1342. msgid "PASS failed, server said: %s"
  1343. msgstr "PASS başarısız, sunucunun iletisi: %s"
  1344. #: methods/ftp.cc
  1345. msgid ""
  1346. "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
  1347. "is empty."
  1348. msgstr ""
  1349. "Bir Vekil sunucu belirtildi ancak oturum açma betiği belirtilmedi, Acquire::"
  1350. "ftp::ProxyLogin boş."
  1351. #: methods/ftp.cc
  1352. #, c-format
  1353. msgid "Login script command '%s' failed, server said: %s"
  1354. msgstr "Oturum açma betiği komutu '%s' başarısız oldu, sunucunun iletisi: %s"
  1355. #: methods/ftp.cc
  1356. #, c-format
  1357. msgid "TYPE failed, server said: %s"
  1358. msgstr "TYPE başarısız, sunucunun iletisi: %s"
  1359. #: methods/ftp.cc methods/rsh.cc
  1360. msgid "Connection timeout"
  1361. msgstr "Bağlantı zaman aşımına uğradı"
  1362. #: methods/ftp.cc
  1363. msgid "Server closed the connection"
  1364. msgstr "Sunucu bağlantıyı kesti"
  1365. #: methods/ftp.cc methods/rsh.cc apt-pkg/contrib/fileutl.cc
  1366. msgid "Read error"
  1367. msgstr "Okuma hatası"
  1368. #: methods/ftp.cc methods/rsh.cc
  1369. msgid "A response overflowed the buffer."
  1370. msgstr "Bir yanıt arabelleği taşırdı."
  1371. #: methods/ftp.cc
  1372. msgid "Protocol corruption"
  1373. msgstr "İletişim kuralları bozulması"
  1374. #: methods/ftp.cc methods/rsh.cc apt-pkg/contrib/fileutl.cc
  1375. msgid "Write error"
  1376. msgstr "Yazma hatası"
  1377. #: methods/ftp.cc
  1378. msgid "Could not create a socket"
  1379. msgstr "Bir soket oluşturulamadı"
  1380. #: methods/ftp.cc
  1381. msgid "Could not connect data socket, connection timed out"
  1382. msgstr "Veri soketine bağlanılamadı, bağlantı zaman aşımına uğradı"
  1383. #: methods/ftp.cc
  1384. msgid "Could not connect passive socket."
  1385. msgstr "Edilgen sokete bağlanılamadı."
  1386. #: methods/ftp.cc
  1387. msgid "getaddrinfo was unable to get a listening socket"
  1388. msgstr "getaddrinfo bir dinleme soketi alamıyor"
  1389. #: methods/ftp.cc
  1390. msgid "Could not bind a socket"
  1391. msgstr "Bir sokete bağlanılamadı"
  1392. #: methods/ftp.cc
  1393. msgid "Could not listen on the socket"
  1394. msgstr "Soket dinlenemedi"
  1395. #: methods/ftp.cc
  1396. msgid "Could not determine the socket's name"
  1397. msgstr "Soketin adı belirlenemedi"
  1398. #: methods/ftp.cc
  1399. msgid "Unable to send PORT command"
  1400. msgstr "PORT komutu gönderilemedi"
  1401. #: methods/ftp.cc
  1402. #, c-format
  1403. msgid "Unknown address family %u (AF_*)"
  1404. msgstr "Bilinmeyen adres ailesi %u (AF_*)"
  1405. #: methods/ftp.cc
  1406. #, c-format
  1407. msgid "EPRT failed, server said: %s"
  1408. msgstr "EPRT başarısız, sunucunun iletisi: %s"
  1409. #: methods/ftp.cc
  1410. msgid "Data socket connect timed out"
  1411. msgstr "Veri soketi bağlantısı zaman aşımına uğradı"
  1412. #: methods/ftp.cc
  1413. msgid "Unable to accept connection"
  1414. msgstr "Bağlantı kabul edilemiyor"
  1415. #: methods/ftp.cc methods/rsh.cc methods/server.cc
  1416. msgid "Problem hashing file"
  1417. msgstr "Dosya sağlaması yapılamadı"
  1418. #: methods/ftp.cc
  1419. #, c-format
  1420. msgid "Unable to fetch file, server said '%s'"
  1421. msgstr "Dosya alınamıyor, sunucunun iletisi: '%s'"
  1422. #: methods/ftp.cc methods/rsh.cc
  1423. msgid "Data socket timed out"
  1424. msgstr "Veri soketi zaman aşımına uğradı"
  1425. #: methods/ftp.cc
  1426. #, c-format
  1427. msgid "Data transfer failed, server said '%s'"
  1428. msgstr "Veri aktarımı başarısız, sunucunun iletisi: '%s'"
  1429. #. Get the files information
  1430. #: methods/ftp.cc
  1431. msgid "Query"
  1432. msgstr "Sorgu"
  1433. #: methods/ftp.cc
  1434. msgid "Unable to invoke "
  1435. msgstr "Çağrılamıyor "
  1436. #: methods/gpgv.cc
  1437. msgid "At least one invalid signature was encountered."
  1438. msgstr "En az bir geçersiz imza ile karşılaşıldı."
  1439. #: methods/gpgv.cc
  1440. msgid ""
  1441. "Internal error: Good signature, but could not determine key fingerprint?!"
  1442. msgstr "İç hata: İmza iyi, ancak anahtar parmak izi belirlenemedi?!"
  1443. #: methods/gpgv.cc
  1444. msgid "Could not execute 'apt-key' to verify signature (is gnupg installed?)"
  1445. msgstr "İmza doğrulama için 'apt-key' çalıştırılamadı (gnupg kurulu mu?)"
  1446. #. TRANSLATORS: %s is a single techy word like 'NODATA'
  1447. #: methods/gpgv.cc apt-pkg/acquire-item.cc
  1448. #, c-format
  1449. msgid ""
  1450. "Clearsigned file isn't valid, got '%s' (does the network require "
  1451. "authentication?)"
  1452. msgstr ""
  1453. "Temiz-imzalı dosya geçerli değil, '%s' hatası alındı (ağ kimlik doğrulama "
  1454. "gerektiriyor mu?)"
  1455. #: methods/gpgv.cc
  1456. msgid "Unknown error executing apt-key"
  1457. msgstr "apt-key çalıştırılırken bilinmeyen hata"
  1458. #: methods/gpgv.cc
  1459. msgid "The following signatures were invalid:\n"
  1460. msgstr "Aşağıdaki imzalar geçersiz:\n"
  1461. #: methods/gpgv.cc
  1462. msgid ""
  1463. "The following signatures couldn't be verified because the public key is not "
  1464. "available:\n"
  1465. msgstr "Aşağıdaki imzalar doğrulanamadı, çünkü genel anahtar mevcut değil:\n"
  1466. #: methods/gzip.cc
  1467. msgid "Empty files can't be valid archives"
  1468. msgstr "Boş dosyalar geçerli birer arşiv dosyası olamazlar"
  1469. #: methods/http.cc
  1470. msgid "Error writing to the file"
  1471. msgstr "Dosyaya yazılamadı"
  1472. #: methods/http.cc
  1473. msgid "Error reading from server. Remote end closed connection"
  1474. msgstr "Sunucundan okunurken hata. Uzak sonlu kapalı bağlantı"
  1475. #: methods/http.cc
  1476. msgid "Error reading from server"
  1477. msgstr "Sunucundan okunurken hata"
  1478. #: methods/http.cc
  1479. msgid "Error writing to file"
  1480. msgstr "Dosyaya yazılamadı"
  1481. #: methods/http.cc
  1482. msgid "Select failed"
  1483. msgstr "Seçme başarısız"
  1484. #: methods/http.cc
  1485. msgid "Connection timed out"
  1486. msgstr "Bağlantı zaman aşımına uğradı"
  1487. #: methods/http.cc
  1488. msgid "Error writing to output file"
  1489. msgstr "Çıktı dosyasına yazılırken hata"
  1490. #. Only warn if there are no sources.list.d.
  1491. #. Only warn if there is no sources.list file.
  1492. #: methods/mirror.cc apt-inst/extract.cc apt-pkg/acquire.cc apt-pkg/clean.cc
  1493. #: apt-pkg/contrib/cdromutl.cc apt-pkg/contrib/fileutl.cc apt-pkg/init.cc
  1494. #: apt-pkg/policy.cc apt-pkg/sourcelist.cc
  1495. #, c-format
  1496. msgid "Unable to read %s"
  1497. msgstr "%s okunamadı"
  1498. #: methods/mirror.cc apt-pkg/acquire.cc apt-pkg/clean.cc
  1499. #: apt-pkg/contrib/cdromutl.cc
  1500. #, c-format
  1501. msgid "Unable to change to %s"
  1502. msgstr "%s olarak değiştirilemedi"
  1503. #. FIXME: fallback to a default mirror here instead
  1504. #. and provide a config option to define that default
  1505. #: methods/mirror.cc
  1506. #, c-format
  1507. msgid "No mirror file '%s' found "
  1508. msgstr "'%s' yansı dosyası bulunamadı "
  1509. #. FIXME: fallback to a default mirror here instead
  1510. #. and provide a config option to define that default
  1511. #: methods/mirror.cc
  1512. #, c-format
  1513. msgid "Can not read mirror file '%s'"
  1514. msgstr "Yansı dosyası %s okunamıyor"
  1515. #: methods/mirror.cc
  1516. #, c-format
  1517. msgid "No entry found in mirror file '%s'"
  1518. msgstr "'%s' yansı dosyasında hiç girdi bulunmuyor"
  1519. #: methods/mirror.cc
  1520. #, c-format
  1521. msgid "[Mirror: %s]"
  1522. msgstr "[Yansı: %s]"
  1523. #: methods/rsh.cc ftparchive/multicompress.cc
  1524. msgid "Failed to create IPC pipe to subprocess"
  1525. msgstr "Altsürece IPC borusu oluşturulamadı"
  1526. #: methods/rsh.cc
  1527. msgid "Connection closed prematurely"
  1528. msgstr "Bağlantı vaktinden önce kapandı"
  1529. #: methods/server.cc
  1530. msgid "Waiting for headers"
  1531. msgstr "Başlıklar bekleniyor"
  1532. #: methods/server.cc
  1533. msgid "Bad header line"
  1534. msgstr "Kötü başlık satırı"
  1535. #: methods/server.cc
  1536. msgid "The HTTP server sent an invalid reply header"
  1537. msgstr "HTTP sunucusu geçersiz bir cevap başlığı gönderdi"
  1538. #: methods/server.cc
  1539. msgid "The HTTP server sent an invalid Content-Length header"
  1540. msgstr "HTTP sunucusu geçersiz bir Content-Length başlığı gönderdi"
  1541. #: methods/server.cc
  1542. msgid "The HTTP server sent an invalid Content-Range header"
  1543. msgstr "HTTP sunucusu geçersiz bir Content-Range başlığı gönderdi"
  1544. #: methods/server.cc
  1545. msgid "This HTTP server has broken range support"
  1546. msgstr "HTTP sunucusunun aralık desteği bozuk"
  1547. #: methods/server.cc
  1548. msgid "Unknown date format"
  1549. msgstr "Bilinmeyen tarih biçimi"
  1550. #: methods/server.cc
  1551. msgid "Bad header data"
  1552. msgstr "Kötü başlık verisi"
  1553. #: methods/server.cc
  1554. msgid "Connection failed"
  1555. msgstr "Bağlantı başarısız"
  1556. #: methods/server.cc
  1557. #, c-format
  1558. msgid ""
  1559. "Automatically disabled %s due to incorrect response from server/proxy. (man "
  1560. "5 apt.conf)"
  1561. msgstr ""
  1562. "Sunucudan/vekilden geçersiz yanıt alındığı için %s seçeneği otomatik olarak "
  1563. "devre dışı bırakıldı. (man 5 apt.conf)"
  1564. #: methods/server.cc
  1565. msgid "Internal error"
  1566. msgstr "İç hata"
  1567. #: dselect/install:33
  1568. msgid "Bad default setting!"
  1569. msgstr "Geçersiz öntanımlı ayar!"
  1570. #: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
  1571. #: dselect/install:106 dselect/update:45
  1572. msgid "Press [Enter] to continue."
  1573. msgstr "Devam etmek için [Enter] tuşuna basın."
  1574. #: dselect/install:92
  1575. msgid "Do you want to erase any previously downloaded .deb files?"
  1576. msgstr "Daha önceden indirilmiş .deb dosyalarını silmek istiyor musunuz?"
  1577. #: dselect/install:102
  1578. msgid "Some errors occurred while unpacking. Packages that were installed"
  1579. msgstr ""
  1580. "Paket açılırken bazı sorunlar çıktı. Kurulan paketler yapılandırılacak."
  1581. #: dselect/install:103
  1582. msgid "will be configured. This may result in duplicate errors"
  1583. msgstr "Bu durum, çift hata iletilerine ya da eksik bağımlılıkların neden"
  1584. #: dselect/install:104
  1585. msgid "or errors caused by missing dependencies. This is OK, only the errors"
  1586. msgstr ""
  1587. "olduğu hatalara yol açabilir. Bu durum bir sorun teşkil etmez, sadece bu "
  1588. "iletinin"
  1589. #: dselect/install:105
  1590. msgid ""
  1591. "above this message are important. Please fix them and run [I]nstall again"
  1592. msgstr ""
  1593. "üstündeki hatalar önemlidir. Lütfen bunları onarın ve [I]nstall komutunu "
  1594. "yeniden çalıştırın"
  1595. #: dselect/update:30
  1596. msgid "Merging available information"
  1597. msgstr "Kullanılabilir bilgiler birleştiriliyor"
  1598. #: cmdline/apt-extracttemplates.cc
  1599. #, fuzzy
  1600. msgid ""
  1601. "Usage: apt-extracttemplates file1 [file2 ...]\n"
  1602. "\n"
  1603. "apt-extracttemplates is used to extract config and template files\n"
  1604. "from debian packages. It is used mainly by debconf(1) to prompt for\n"
  1605. "configuration questions before installation of packages.\n"
  1606. msgstr ""
  1607. "Kullanım: apt-extracttemplates dosya1 [dosya2 ...]\n"
  1608. "\n"
  1609. "apt-extracttemplates, Debian paketlerinden ayar ve şablon bilgisini\n"
  1610. "almak için kullanılan bir araçtır\n"
  1611. "\n"
  1612. "Seçenekler:\n"
  1613. " -h Bu yardım dosyası\n"
  1614. " -t Geçici dizini ayarlar\n"
  1615. " -c=? Belirtilen ayar dosyasını kullanır\n"
  1616. " -o=? Ayar seçeneği belirtmeyi sağlar, ör -o dir::cache=/tmp\n"
  1617. #: cmdline/apt-extracttemplates.cc apt-pkg/contrib/fileutl.cc
  1618. #, c-format
  1619. msgid "Unable to mkstemp %s"
  1620. msgstr "mkstemp %s başarısız oldu"
  1621. #: cmdline/apt-extracttemplates.cc apt-pkg/contrib/fileutl.cc
  1622. #, c-format
  1623. msgid "Unable to write to %s"
  1624. msgstr "%s dosyasına yazılamıyor"
  1625. #: cmdline/apt-extracttemplates.cc
  1626. msgid "Cannot get debconf version. Is debconf installed?"
  1627. msgstr "debconf sürümü alınamıyor. debconf kurulu mu?"
  1628. #: cmdline/apt-internal-solver.cc
  1629. #, fuzzy
  1630. msgid ""
  1631. "Usage: apt-internal-solver\n"
  1632. "\n"
  1633. "apt-internal-solver is an interface to use the current internal\n"
  1634. "resolver for the APT family like an external one, for debugging or\n"
  1635. "the like.\n"
  1636. msgstr ""
  1637. "Kullanım: apt-internal-solver\n"
  1638. "\n"
  1639. "apt-internal-solver mevcut dâhilî çözücüyü (hata ayıklama\n"
  1640. "gibi sebeplerle) harici çözücü gibi kullanmaya yarayan bir\n"
  1641. "arayüzdür.\n"
  1642. "\n"
  1643. "Seçenekler:\n"
  1644. " -h Bu yardım metni.\n"
  1645. " -q Günlük tutmaya uygun çıktı - İlerleme göstergesi yok\n"
  1646. " -c=? Belirtilen yapılandırma dosyası kullan\n"
  1647. " -o=? Yapılandırma seçeneği ayarla, örneğin -o dir::cache=/tmp\n"
  1648. #: cmdline/apt-sortpkgs.cc
  1649. msgid "Unknown package record!"
  1650. msgstr "Bilinmeyen paket kaydı!"
  1651. #: cmdline/apt-sortpkgs.cc
  1652. msgid ""
  1653. "Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
  1654. "\n"
  1655. "apt-sortpkgs is a simple tool to sort package information files.\n"
  1656. "By default it sorts by binary package information, but the -s option\n"
  1657. "can be used to switch to source package ordering instead.\n"
  1658. msgstr ""
  1659. #: ftparchive/apt-ftparchive.cc
  1660. msgid "Package extension list is too long"
  1661. msgstr "Paket uzantı listesi çok uzun"
  1662. #: ftparchive/apt-ftparchive.cc
  1663. #, c-format
  1664. msgid "Error processing directory %s"
  1665. msgstr "%s dizinini işlemede hata"
  1666. #: ftparchive/apt-ftparchive.cc
  1667. msgid "Source extension list is too long"
  1668. msgstr "Kaynak uzantı listesi çok uzun"
  1669. #: ftparchive/apt-ftparchive.cc
  1670. msgid "Error writing header to contents file"
  1671. msgstr "İçindekiler dosyasına başlık yazmada hata"
  1672. #: ftparchive/apt-ftparchive.cc
  1673. #, c-format
  1674. msgid "Error processing contents %s"
  1675. msgstr "%s içeriğini işlemede hata"
  1676. #: ftparchive/apt-ftparchive.cc
  1677. msgid ""
  1678. "Usage: apt-ftparchive [options] command\n"
  1679. "Commands: packages binarypath [overridefile [pathprefix]]\n"
  1680. " sources srcpath [overridefile [pathprefix]]\n"
  1681. " contents path\n"
  1682. " release path\n"
  1683. " generate config [groups]\n"
  1684. " clean config\n"
  1685. "\n"
  1686. "apt-ftparchive generates index files for Debian archives. It supports\n"
  1687. "many styles of generation from fully automated to functional replacements\n"
  1688. "for dpkg-scanpackages and dpkg-scansources\n"
  1689. "\n"
  1690. "apt-ftparchive generates Package files from a tree of .debs. The\n"
  1691. "Package file contains the contents of all the control fields from\n"
  1692. "each package as well as the MD5 hash and filesize. An override file\n"
  1693. "is supported to force the value of Priority and Section.\n"
  1694. "\n"
  1695. "Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
  1696. "The --source-override option can be used to specify a src override file\n"
  1697. "\n"
  1698. "The 'packages' and 'sources' command should be run in the root of the\n"
  1699. "tree. BinaryPath should point to the base of the recursive search and \n"
  1700. "override file should contain the override flags. Pathprefix is\n"
  1701. "appended to the filename fields if present. Example usage from the \n"
  1702. "Debian archive:\n"
  1703. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  1704. " dists/potato/main/binary-i386/Packages\n"
  1705. "\n"
  1706. "Options:\n"
  1707. " -h This help text\n"
  1708. " --md5 Control MD5 generation\n"
  1709. " -s=? Source override file\n"
  1710. " -q Quiet\n"
  1711. " -d=? Select the optional caching database\n"
  1712. " --no-delink Enable delinking debug mode\n"
  1713. " --contents Control contents file generation\n"
  1714. " -c=? Read this configuration file\n"
  1715. " -o=? Set an arbitrary configuration option"
  1716. msgstr ""
  1717. "Kullanım: apt-ftparchive [seçenekler] komut\n"
  1718. "Komutlar: packages ikilikonumu [geçersizkılmadosyası [konumöneki]]\n"
  1719. " sources kaynakkonumu [geçersizkılmadosyası [konumöneki]]\n"
  1720. " contents konum\n"
  1721. " release konum\n"
  1722. " generate yapılandırma [gruplar]\n"
  1723. " clean yapılandırma\n"
  1724. "\n"
  1725. "apt-ftparchive Debian arşivleri için indeks dosyaları üretir. \n"
  1726. "dpkg-scanpackages ve dpkg-scansources için tamamen otomatikten\n"
  1727. "işlevsel yedeklere kadar birçok üretim çeşidini destekler.\n"
  1728. "\n"
  1729. "apt-ftparchive, .deb dizinlerinden 'Package' dosyaları üretir. 'Package'\n"
  1730. "dosyası, her paketin MD5 doğrulama ve dosya büyüklüğü gibi denetim\n"
  1731. "alanlarının bilgilerini içerir. Öncelik (Priority) ve bölüm (Section)\n"
  1732. "değerlerini istenen başka değerlerle değiştirebilmek için bir geçersiz\n"
  1733. "kılma dosyası kullanılabilir.\n"
  1734. "\n"
  1735. "Benzer şekilde, apt-ftparchive, .dscs dosyalarından 'Sources' dosyaları\n"
  1736. "üretir. '--source-override' seçeneği bir src geçersiz kılma dosyası\n"
  1737. "belirtmek için kullanıabilir.\n"
  1738. "\n"
  1739. "'packages' ve 'sources' komutları dizin ağacının kökünde çalıştırıl-\n"
  1740. "malıdır. BinaryPath özyineli aramanın temeline işaret etmeli ve\n"
  1741. "geçersiz kılma dosyası geçersiz kılma bayraklarını içermelidir.\n"
  1742. "Pathprefix mevcutsa dosya adı alanlarının sonuna eklenir. Debian\n"
  1743. "arşivinden örnek kullanım şu şekildedir:\n"
  1744. "\n"
  1745. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  1746. " dists/potato/main/binary-i386/Packages\n"
  1747. "\n"
  1748. "Seçenekler:\n"
  1749. " -h Bu yardım metni\n"
  1750. " --md5 MD5 üretimini denetle\n"
  1751. " -s=? Kaynak geçersiz kılma dosyası\n"
  1752. " -q Sessiz\n"
  1753. " -d=? Seçimlik önbellek veritabanını seç\n"
  1754. " --no-delink Bağ kurulmamış hata ayıklama kipini etkinleştir\n"
  1755. " --contents İçerik dosyası üretimini denetle\n"
  1756. " -c=? Belirtilen yapılandırma dosyası kullan\n"
  1757. " -o=? Yapılandırma seçeneği ayarla"
  1758. #: ftparchive/apt-ftparchive.cc
  1759. msgid "No selections matched"
  1760. msgstr "Hiçbir seçim eşleşmedi"
  1761. #: ftparchive/apt-ftparchive.cc
  1762. #, c-format
  1763. msgid "Some files are missing in the package file group `%s'"
  1764. msgstr "'%s' paket dosyası grubunda bazı dosyalar eksik"
  1765. #: ftparchive/cachedb.cc
  1766. #, c-format
  1767. msgid "DB was corrupted, file renamed to %s.old"
  1768. msgstr "Veritabanı bozuk, dosya adı %s.old olarak değiştirildi"
  1769. #: ftparchive/cachedb.cc
  1770. #, c-format
  1771. msgid "DB is old, attempting to upgrade %s"
  1772. msgstr "Veritabanı eski, %s yükseltilmeye çalışılıyor"
  1773. #: ftparchive/cachedb.cc
  1774. msgid ""
  1775. "DB format is invalid. If you upgraded from an older version of apt, please "
  1776. "remove and re-create the database."
  1777. msgstr ""
  1778. "Veritabanı biçimi geçersiz. Eğer apt'ın eski bir sürümünden yükseltme "
  1779. "yaptıysanız, lütfen veritabanını silin ve yeniden oluşturun."
  1780. #: ftparchive/cachedb.cc
  1781. #, c-format
  1782. msgid "Unable to open DB file %s: %s"
  1783. msgstr "Veritabanı dosyası %s açılamadı: %s"
  1784. #: ftparchive/cachedb.cc apt-inst/extract.cc
  1785. #, c-format
  1786. msgid "Failed to stat %s"
  1787. msgstr "%s durum bilgisi alınamadı"
  1788. #: ftparchive/cachedb.cc
  1789. msgid "Failed to read .dsc"
  1790. msgstr ".dsc dosyası okunamadı"
  1791. #: ftparchive/cachedb.cc
  1792. msgid "Archive has no control record"
  1793. msgstr "Arşivin denetim kaydı yok"
  1794. #: ftparchive/cachedb.cc
  1795. msgid "Unable to get a cursor"
  1796. msgstr "İmleç alınamıyor"
  1797. #: ftparchive/contents.cc
  1798. msgid "realloc - Failed to allocate memory"
  1799. msgstr "realloc - Bellek ayırma yapılamadı"
  1800. #: ftparchive/multicompress.cc
  1801. #, c-format
  1802. msgid "Unknown compression algorithm '%s'"
  1803. msgstr "Bilinmeyen sıkıştırma algoritması '%s'"
  1804. #: ftparchive/multicompress.cc
  1805. #, c-format
  1806. msgid "Compressed output %s needs a compression set"
  1807. msgstr "Sıkıştırılmış %s çıktısı bir sıkıştırma kümesine ihtiyaç duymaktadır"
  1808. #: ftparchive/multicompress.cc
  1809. msgid "Failed to fork"
  1810. msgstr "fork yapılamadı"
  1811. #: ftparchive/multicompress.cc
  1812. msgid "Compress child"
  1813. msgstr "Çocuğu sıkıştır"
  1814. #: ftparchive/multicompress.cc
  1815. #, c-format
  1816. msgid "Internal error, failed to create %s"
  1817. msgstr "İç hata, %s oluşturulamadı"
  1818. #: ftparchive/multicompress.cc
  1819. msgid "IO to subprocess/file failed"
  1820. msgstr "Altsürece/dosyaya GÇ işlemi başarısız oldu"
  1821. #: ftparchive/multicompress.cc
  1822. msgid "Failed to read while computing MD5"
  1823. msgstr "MD5 hesaplanırken okunamadı"
  1824. #: ftparchive/multicompress.cc apt-inst/extract.cc
  1825. #, c-format
  1826. msgid "Failed to rename %s to %s"
  1827. msgstr "%s, %s olarak yeniden adlandırılamadı"
  1828. #: ftparchive/override.cc
  1829. #, c-format
  1830. msgid "Unable to open %s"
  1831. msgstr "%s açılamıyor"
  1832. #. skip spaces
  1833. #. find end of word
  1834. #: ftparchive/override.cc
  1835. #, c-format
  1836. msgid "Malformed override %s line %llu (%s)"
  1837. msgstr "Hatalı geçersiz kılma %s satır %llu (%s)"
  1838. #: ftparchive/override.cc
  1839. #, c-format
  1840. msgid "Failed to read the override file %s"
  1841. msgstr "Geçersiz kılma dosyası %s okunamadı"
  1842. #: ftparchive/override.cc
  1843. #, c-format
  1844. msgid "Malformed override %s line %llu #1"
  1845. msgstr "Hatalı geçersiz kılma %s satır %llu #1"
  1846. #: ftparchive/override.cc
  1847. #, c-format
  1848. msgid "Malformed override %s line %llu #2"
  1849. msgstr "Hatalı geçersiz kılma %s satır %llu #2"
  1850. #: ftparchive/override.cc
  1851. #, c-format
  1852. msgid "Malformed override %s line %llu #3"
  1853. msgstr "Hatalı geçersiz kılma %s satır %llu #3"
  1854. #: ftparchive/writer.cc
  1855. #, c-format
  1856. msgid "W: Unable to read directory %s\n"
  1857. msgstr "U: %s dizini okunamıyor\n"
  1858. #: ftparchive/writer.cc
  1859. #, c-format
  1860. msgid "W: Unable to stat %s\n"
  1861. msgstr "U: %s durum bilgisi alınamıyor\n"
  1862. #: ftparchive/writer.cc
  1863. msgid "E: "
  1864. msgstr "H: "
  1865. #: ftparchive/writer.cc
  1866. msgid "W: "
  1867. msgstr "U: "
  1868. #: ftparchive/writer.cc
  1869. msgid "E: Errors apply to file "
  1870. msgstr "H: Hatalar şu dosya için geçerli: "
  1871. #: ftparchive/writer.cc
  1872. #, c-format
  1873. msgid "Failed to resolve %s"
  1874. msgstr "%s çözümlenemedi"
  1875. #: ftparchive/writer.cc
  1876. msgid "Tree walking failed"
  1877. msgstr "Ağaçta gezinme başarısız"
  1878. #: ftparchive/writer.cc
  1879. #, c-format
  1880. msgid "Failed to open %s"
  1881. msgstr "%s açılamadı"
  1882. #: ftparchive/writer.cc
  1883. #, c-format
  1884. msgid " DeLink %s [%s]\n"
  1885. msgstr " DeLink %s [%s]\n"
  1886. #: ftparchive/writer.cc
  1887. #, c-format
  1888. msgid "Failed to readlink %s"
  1889. msgstr "%s readlink çağrısı başarısız oldu"
  1890. #: ftparchive/writer.cc
  1891. #, c-format
  1892. msgid "*** Failed to link %s to %s"
  1893. msgstr "*** %s, %s konumuna bağlanamadı"
  1894. #: ftparchive/writer.cc
  1895. #, c-format
  1896. msgid " DeLink limit of %sB hit.\n"
  1897. msgstr " %sB'lik bağ koparma (DeLink) sınırına ulaşıldı.\n"
  1898. #: ftparchive/writer.cc
  1899. msgid "Archive had no package field"
  1900. msgstr "Arşivde paket alanı yok"
  1901. #: ftparchive/writer.cc
  1902. #, c-format
  1903. msgid " %s has no override entry\n"
  1904. msgstr " %s için geçersiz kılma girdisi yok\n"
  1905. #: ftparchive/writer.cc
  1906. #, c-format
  1907. msgid " %s maintainer is %s not %s\n"
  1908. msgstr " %s geliştiricisi %s, %s değil\n"
  1909. #: ftparchive/writer.cc
  1910. #, c-format
  1911. msgid " %s has no source override entry\n"
  1912. msgstr " '%s' paketinin yerine geçecek bir kaynak paket yok\n"
  1913. #: ftparchive/writer.cc
  1914. #, c-format
  1915. msgid " %s has no binary override entry either\n"
  1916. msgstr " '%s' paketinin yerine geçecek bir ikili paket de yok\n"
  1917. #: apt-inst/contrib/arfile.cc
  1918. msgid "Invalid archive signature"
  1919. msgstr "Geçersiz arşiv imzası"
  1920. #: apt-inst/contrib/arfile.cc
  1921. msgid "Error reading archive member header"
  1922. msgstr "Arşiv üyesi başlığı okuma hatası"
  1923. #: apt-inst/contrib/arfile.cc
  1924. #, c-format
  1925. msgid "Invalid archive member header %s"
  1926. msgstr "Geçersiz arşiv üyesi başlığı %s"
  1927. #: apt-inst/contrib/arfile.cc
  1928. msgid "Invalid archive member header"
  1929. msgstr "Geçersiz arşiv üyesi başlığı"
  1930. #: apt-inst/contrib/arfile.cc
  1931. msgid "Archive is too short"
  1932. msgstr "Arşiv çok kısa"
  1933. #: apt-inst/contrib/arfile.cc
  1934. msgid "Failed to read the archive headers"
  1935. msgstr "Arşiv başlıkları okunamadı"
  1936. #: apt-inst/contrib/extracttar.cc
  1937. #, c-format
  1938. msgid "Cannot find a configured compressor for '%s'"
  1939. msgstr "'%s' için yapılandırılmış bir sıkıştırma programı bulunmuyor"
  1940. #: apt-inst/contrib/extracttar.cc
  1941. msgid "Corrupted archive"
  1942. msgstr "Bozuk arşiv"
  1943. #: apt-inst/contrib/extracttar.cc
  1944. msgid "Tar checksum failed, archive corrupted"
  1945. msgstr "Tar sağlama toplamı başarısız, arşiv bozulmuş"
  1946. #: apt-inst/contrib/extracttar.cc
  1947. #, c-format
  1948. msgid "Unknown TAR header type %u, member %s"
  1949. msgstr "Bilinmeyen TAR başlığı türü %u, üye %s"
  1950. #: apt-inst/deb/debfile.cc
  1951. #, c-format
  1952. msgid "This is not a valid DEB archive, missing '%s' member"
  1953. msgstr "Bu dosya geçerli bir DEB arşivi değil, '%s' üyesi eksik"
  1954. #: apt-inst/deb/debfile.cc
  1955. #, c-format
  1956. msgid "Internal error, could not locate member %s"
  1957. msgstr "İç hata, %s üyesi bulunamadı"
  1958. #: apt-inst/deb/debfile.cc
  1959. msgid "Unparsable control file"
  1960. msgstr "Ayrıştırılamayan 'control' dosyası"
  1961. #: apt-inst/dirstream.cc
  1962. #, c-format
  1963. msgid "Failed to write file %s"
  1964. msgstr "%s dosyasına yazılamadı"
  1965. #: apt-inst/dirstream.cc
  1966. #, c-format
  1967. msgid "Failed to close file %s"
  1968. msgstr "%s dosyası kapatılamadı"
  1969. #: apt-inst/extract.cc
  1970. #, c-format
  1971. msgid "The path %s is too long"
  1972. msgstr "%s yolu çok uzun"
  1973. #: apt-inst/extract.cc
  1974. #, c-format
  1975. msgid "Unpacking %s more than once"
  1976. msgstr "%s paketi bir çok kez açıldı"
  1977. #: apt-inst/extract.cc
  1978. #, c-format
  1979. msgid "The directory %s is diverted"
  1980. msgstr "%s dizini yönlendirilmiş"
  1981. #: apt-inst/extract.cc
  1982. #, c-format
  1983. msgid "The package is trying to write to the diversion target %s/%s"
  1984. msgstr "Bu paket yönlendirme hedefine (%s/%s) yazmayı deniyor"
  1985. #: apt-inst/extract.cc
  1986. msgid "The diversion path is too long"
  1987. msgstr "Yönlendirme yolu çok uzun"
  1988. #: apt-inst/extract.cc
  1989. #, c-format
  1990. msgid "The directory %s is being replaced by a non-directory"
  1991. msgstr "%s dizini dizin olmayan bir öğeyle değiştirildi"
  1992. #: apt-inst/extract.cc
  1993. msgid "Failed to locate node in its hash bucket"
  1994. msgstr "Düğüm sağlama kovasında bulunamadı"
  1995. #: apt-inst/extract.cc
  1996. msgid "The path is too long"
  1997. msgstr "Yol çok uzun"
  1998. #: apt-inst/extract.cc
  1999. #, c-format
  2000. msgid "Overwrite package match with no version for %s"
  2001. msgstr "%s paketinin sürümü yok"
  2002. #: apt-inst/extract.cc
  2003. #, c-format
  2004. msgid "File %s/%s overwrites the one in the package %s"
  2005. msgstr "%s/%s dosyası %s paketindeki aynı adlı dosyanın üzerine yazmak istiyor"
  2006. #: apt-inst/extract.cc
  2007. #, c-format
  2008. msgid "Unable to stat %s"
  2009. msgstr "%s durum bilgisi alınamadı"
  2010. #: apt-inst/filelist.cc
  2011. msgid "DropNode called on still linked node"
  2012. msgstr "DropNode hâlâ bağlı olan düğüm üzerinde çağrıldı"
  2013. #: apt-inst/filelist.cc
  2014. msgid "Failed to locate the hash element!"
  2015. msgstr "Sağlama elementi bulunamadı!"
  2016. #: apt-inst/filelist.cc
  2017. msgid "Failed to allocate diversion"
  2018. msgstr "Yönlendirme tahsisi başarısız oldu"
  2019. #: apt-inst/filelist.cc
  2020. msgid "Internal error in AddDiversion"
  2021. msgstr "AddDiversion'da iç hata"
  2022. #: apt-inst/filelist.cc
  2023. #, c-format
  2024. msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
  2025. msgstr "Bir yönlendirmenin üzerine yazılmaya çalışılıyor, %s -> %s ve %s/%s"
  2026. #: apt-inst/filelist.cc
  2027. #, c-format
  2028. msgid "Double add of diversion %s -> %s"
  2029. msgstr "Aynı dosya iki kez yönlendirilemez: %s -> %s"
  2030. #: apt-inst/filelist.cc
  2031. #, c-format
  2032. msgid "Duplicate conf file %s/%s"
  2033. msgstr "%s/%s yapılandırma dosyası zaten mevcut"
  2034. #: apt-pkg/acquire-item.cc
  2035. msgid ""
  2036. "Updating from such a repository can't be done securely, and is therefore "
  2037. "disabled by default."
  2038. msgstr ""
  2039. #: apt-pkg/acquire-item.cc
  2040. msgid ""
  2041. "Data from such a repository can't be authenticated and is therefore "
  2042. "potentially dangerous to use."
  2043. msgstr ""
  2044. #: apt-pkg/acquire-item.cc
  2045. msgid ""
  2046. "See apt-secure(8) manpage for repository creation and user configuration "
  2047. "details."
  2048. msgstr ""
  2049. #: apt-pkg/acquire-item.cc apt-pkg/contrib/fileutl.cc
  2050. #, c-format
  2051. msgid "rename failed, %s (%s -> %s)."
  2052. msgstr "yeniden adlandırma başarısız, %s (%s -> %s)."
  2053. #: apt-pkg/acquire-item.cc
  2054. msgid "Hash Sum mismatch"
  2055. msgstr "Sağlama toplamları eşleşmiyor"
  2056. #: apt-pkg/acquire-item.cc
  2057. msgid "Size mismatch"
  2058. msgstr "Boyutlar eşleşmiyor"
  2059. #: apt-pkg/acquire-item.cc
  2060. msgid "Invalid file format"
  2061. msgstr "Geçersiz dosya biçimi"
  2062. #: apt-pkg/acquire-item.cc
  2063. msgid "Signature error"
  2064. msgstr "İmza hatası"
  2065. #: apt-pkg/acquire-item.cc
  2066. #, c-format
  2067. msgid ""
  2068. "An error occurred during the signature verification. The repository is not "
  2069. "updated and the previous index files will be used. GPG error: %s: %s"
  2070. msgstr ""
  2071. "İmza doğrulama sırasında bir hata meydana geldi. Depo güncel değil ve önceki "
  2072. "indeks dosyaları kullanılacak. GPG hatası: %s: %s"
  2073. #. Invalid signature file, reject (LP: #346386) (Closes: #627642)
  2074. #: apt-pkg/acquire-item.cc
  2075. #, c-format
  2076. msgid "GPG error: %s: %s"
  2077. msgstr "GPG hatası: %s: %s"
  2078. #: apt-pkg/acquire-item.cc
  2079. #, c-format
  2080. msgid ""
  2081. "Skipping acquire of configured file '%s' as repository '%s' doesn't support "
  2082. "architecture '%s'"
  2083. msgstr ""
  2084. #: apt-pkg/acquire-item.cc
  2085. #, c-format
  2086. msgid ""
  2087. "Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
  2088. "or malformed file)"
  2089. msgstr ""
  2090. "'Release' dosyasında olması beklenilen '%s' girdisi bulunamadı (sources.list "
  2091. "dosyasındaki girdi ya da satır hatalı)"
  2092. #: apt-pkg/acquire-item.cc
  2093. #, c-format
  2094. msgid ""
  2095. "Skipping acquire of configured file '%s' as repository '%s' provides only "
  2096. "weak security information for it"
  2097. msgstr ""
  2098. #: apt-pkg/acquire-item.cc
  2099. msgid "There is no public key available for the following key IDs:\n"
  2100. msgstr ""
  2101. "Aşağıdaki anahtar kimlikleri için kullanılır hiçbir genel anahtar yok:\n"
  2102. #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is
  2103. #. the time since then the file is invalid - formatted in the same way as in
  2104. #. the download progress display (e.g. 7d 3h 42min 1s)
  2105. #: apt-pkg/acquire-item.cc
  2106. #, c-format
  2107. msgid ""
  2108. "Release file for %s is expired (invalid since %s). Updates for this "
  2109. "repository will not be applied."
  2110. msgstr ""
  2111. "%s konumundaki 'Release' dosyasının vâdesi dolmuş (%s önce). Bu deponun "
  2112. "güncelleştirmeleri uygulanmayacak."
  2113. #: apt-pkg/acquire-item.cc
  2114. #, c-format
  2115. msgid "Conflicting distribution: %s (expected %s but got %s)"
  2116. msgstr "Dağıtım çakışması: %s (beklenen %s ama eldeki %s)"
  2117. #. No Release file was present, or verification failed, so fall
  2118. #. back to queueing Packages files without verification
  2119. #. only allow going further if the user explicitly wants it
  2120. #: apt-pkg/acquire-item.cc
  2121. #, fuzzy, c-format
  2122. msgid "The repository '%s' is not signed."
  2123. msgstr "'%s' deposu imzalanmamış"
  2124. #. No Release file was present so fall
  2125. #. back to queueing Packages files without verification
  2126. #. only allow going further if the user explicitly wants it
  2127. #: apt-pkg/acquire-item.cc
  2128. #, fuzzy, c-format
  2129. msgid "The repository '%s' does not have a Release file."
  2130. msgstr "'%s' deposu imzalanmamış"
  2131. #: apt-pkg/acquire-item.cc
  2132. #, c-format
  2133. msgid "The repository '%s' is no longer signed."
  2134. msgstr "'%s' deposu imzalanmamış"
  2135. #: apt-pkg/acquire-item.cc
  2136. msgid ""
  2137. "This is normally not allowed, but the option Acquire::"
  2138. "AllowDowngradeToInsecureRepositories was given to override it."
  2139. msgstr ""
  2140. "Bu duruma normalde izin verilmez, ama Acquire::"
  2141. "AllowDowngradeToInsecureRepositories seçeneği kullanıldığı için izin "
  2142. "veriliyor."
  2143. #: apt-pkg/acquire-item.cc
  2144. #, c-format
  2145. msgid ""
  2146. "I wasn't able to locate a file for the %s package. This might mean you need "
  2147. "to manually fix this package. (due to missing arch)"
  2148. msgstr ""
  2149. "%s paketindeki dosyalardan biri konumlandırılamadı. Bu durum, bu paketi elle "
  2150. "düzeltmeniz gerektiği anlamına gelebilir. (eksik mimariden dolayı)"
  2151. #: apt-pkg/acquire-item.cc
  2152. #, c-format
  2153. msgid "Can't find a source to download version '%s' of '%s'"
  2154. msgstr "'%2$s' paketinin '%1$s' sürümü hiçbir kaynakta bulunamadı"
  2155. #: apt-pkg/acquire-item.cc
  2156. #, c-format
  2157. msgid ""
  2158. "The package index files are corrupted. No Filename: field for package %s."
  2159. msgstr "Paket indeks dosyaları bozuk. %s paketinin 'Filename:' alanı yok."
  2160. #. TRANSLATOR: %s=%s is sourcename=sourceversion, e.g. apt=1.1
  2161. #: apt-pkg/acquire-item.cc
  2162. #, c-format
  2163. msgid "Changelog unavailable for %s=%s"
  2164. msgstr "%s=%s için değişim günlüğü mevcut değil"
  2165. #: apt-pkg/acquire-worker.cc
  2166. #, c-format
  2167. msgid "The method driver %s could not be found."
  2168. msgstr "Yöntem sürücüsü %s bulunamadı."
  2169. #: apt-pkg/acquire-worker.cc
  2170. #, c-format
  2171. msgid "Is the package %s installed?"
  2172. msgstr "%s paketi kurulu mu?"
  2173. #: apt-pkg/acquire-worker.cc
  2174. #, c-format
  2175. msgid "Method %s did not start correctly"
  2176. msgstr "%s yöntemi düzgün şekilde başlamadı"
  2177. #: apt-pkg/acquire-worker.cc
  2178. #, c-format
  2179. msgid ""
  2180. "Please insert the disc labeled: '%s' in the drive '%s' and press [Enter]."
  2181. msgstr ""
  2182. "Lütfen '%s' olarak etiketlenmiş diski '%s' sürücüsüne yerleştirin ve [Enter] "
  2183. "tuşuna basın."
  2184. #: apt-pkg/acquire.cc apt-pkg/cdrom.cc
  2185. #, c-format
  2186. msgid "List directory %spartial is missing."
  2187. msgstr "Liste dizini %spartial bulunamadı."
  2188. #: apt-pkg/acquire.cc
  2189. #, c-format
  2190. msgid "Archives directory %spartial is missing."
  2191. msgstr "Arşiv dizini %spartial bulunamadı."
  2192. #: apt-pkg/acquire.cc
  2193. #, c-format
  2194. msgid "Unable to lock directory %s"
  2195. msgstr "%s dizini kilitlenemiyor"
  2196. #: apt-pkg/acquire.cc
  2197. #, c-format
  2198. msgid "No sandbox user '%s' on the system, can not drop privileges"
  2199. msgstr ""
  2200. #: apt-pkg/acquire.cc
  2201. #, c-format
  2202. msgid ""
  2203. "Can't drop privileges for downloading as file '%s' couldn't be accessed by "
  2204. "user '%s'."
  2205. msgstr ""
  2206. "'%2$s' kullanıcısının '%1$s' dosyasına erişimi olmadığı için dosya "
  2207. "indirilirken ayrıcalıklar bırakılamıyor."
  2208. #: apt-pkg/acquire.cc apt-pkg/clean.cc
  2209. #, c-format
  2210. msgid "Clean of %s is not supported"
  2211. msgstr "%s temizliği desteklenmiyor"
  2212. #. only show the ETA if it makes sense
  2213. #. two days
  2214. #: apt-pkg/acquire.cc
  2215. #, c-format
  2216. msgid "Retrieving file %li of %li (%s remaining)"
  2217. msgstr "Alınan dosya: %li / %li (%s kaldı)"
  2218. #: apt-pkg/acquire.cc
  2219. #, c-format
  2220. msgid "Retrieving file %li of %li"
  2221. msgstr "Alınan dosya: %li / %li"
  2222. #: apt-pkg/algorithms.cc
  2223. #, c-format
  2224. msgid ""
  2225. "The package %s needs to be reinstalled, but I can't find an archive for it."
  2226. msgstr ""
  2227. "%s paketinin tekrar kurulması gerekli, ancak gereken arşiv dosyası "
  2228. "bulunamıyor."
  2229. #: apt-pkg/algorithms.cc
  2230. msgid ""
  2231. "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
  2232. "held packages."
  2233. msgstr ""
  2234. "Hata, pkgProblemResolver::Resolve bozuk paketlere yol açtı, bu sorunun "
  2235. "nedeni tutulan paketler olabilir."
  2236. #: apt-pkg/algorithms.cc
  2237. msgid "Unable to correct problems, you have held broken packages."
  2238. msgstr "Sorunlar giderilemedi, tutulan bozuk paketleriniz var."
  2239. #: apt-pkg/cachefile.cc
  2240. msgid "The package lists or status file could not be parsed or opened."
  2241. msgstr "Paket listeleri ya da durum dosyası ayrıştırılamadı ya da açılamadı."
  2242. #: apt-pkg/cachefile.cc
  2243. msgid "You may want to run apt-get update to correct these problems"
  2244. msgstr "Bu sorunları gidermek için apt-get update komutunu çalıştırabilirsiniz"
  2245. #: apt-pkg/cachefile.cc
  2246. msgid "The list of sources could not be read."
  2247. msgstr "Kaynak listesi okunamadı."
  2248. #: apt-pkg/cacheset.cc
  2249. #, c-format
  2250. msgid "Release '%s' for '%s' was not found"
  2251. msgstr "'%2$s' paketinin '%1$s' sürümü bulunamadı"
  2252. #: apt-pkg/cacheset.cc
  2253. #, c-format
  2254. msgid "Version '%s' for '%s' was not found"
  2255. msgstr "'%2$s' paketinin '%1$s' sürümü bulunamadı"
  2256. #: apt-pkg/cacheset.cc
  2257. #, c-format
  2258. msgid "Couldn't find task '%s'"
  2259. msgstr "'%s' görevi bulunamadı"
  2260. #: apt-pkg/cacheset.cc
  2261. #, c-format
  2262. msgid "Couldn't find any package by regex '%s'"
  2263. msgstr "'%s' düzenli ifadesini içeren herhangi bir paket bulunamadı"
  2264. #: apt-pkg/cacheset.cc
  2265. #, c-format
  2266. msgid "Couldn't find any package by glob '%s'"
  2267. msgstr "'%s' ifadesine eşleşen herhangi bir paket bulunamadı"
  2268. #: apt-pkg/cacheset.cc
  2269. #, c-format
  2270. msgid "Can't select versions from package '%s' as it is purely virtual"
  2271. msgstr "'%s' paketi tamamen sanal olduğu için sürümü seçilemiyor"
  2272. #: apt-pkg/cacheset.cc
  2273. #, c-format
  2274. msgid "Can't select newest version from package '%s' as it is purely virtual"
  2275. msgstr "'%s' paketi sanal olduğu için en yeni sürümü seçilemiyor"
  2276. #: apt-pkg/cacheset.cc
  2277. #, c-format
  2278. msgid "Can't select candidate version from package %s as it has no candidate"
  2279. msgstr "'%s' paketinin aday sürümü olmadığı için aday sürüm seçilemiyor"
  2280. #: apt-pkg/cacheset.cc
  2281. #, c-format
  2282. msgid "Can't select installed version from package %s as it is not installed"
  2283. msgstr "'%s' paketi kurulu olmadığı için kurulu sürüm seçilemiyor"
  2284. #: apt-pkg/cacheset.cc
  2285. #, c-format
  2286. msgid ""
  2287. "Can't select installed nor candidate version from package '%s' as it has "
  2288. "neither of them"
  2289. msgstr ""
  2290. "'%s' paketi kurulu olmadığı ve aday sürüme sahip olmadığı için her ikisi de "
  2291. "seçilemiyor"
  2292. #: apt-pkg/cdrom.cc
  2293. #, c-format
  2294. msgid "Line %u too long in source list %s."
  2295. msgstr "Kaynak listesinin (%2$s) %1$u numaralı satırı çok uzun."
  2296. #: apt-pkg/cdrom.cc
  2297. msgid "Unmounting CD-ROM...\n"
  2298. msgstr "CD-ROM ayrılıyor...\n"
  2299. #: apt-pkg/cdrom.cc
  2300. #, c-format
  2301. msgid "Using CD-ROM mount point %s\n"
  2302. msgstr "CD-ROM bağlama noktası %s kullanılıyor\n"
  2303. #: apt-pkg/cdrom.cc
  2304. msgid "Waiting for disc...\n"
  2305. msgstr "Disk bekleniliyor...\n"
  2306. #: apt-pkg/cdrom.cc
  2307. msgid "Mounting CD-ROM...\n"
  2308. msgstr "CD-ROM bağlanıyor...\n"
  2309. #: apt-pkg/cdrom.cc
  2310. msgid "Identifying... "
  2311. msgstr "Tanımlanıyor... "
  2312. #: apt-pkg/cdrom.cc
  2313. #, c-format
  2314. msgid "Stored label: %s\n"
  2315. msgstr "Kayıtlı etiket: %s\n"
  2316. #: apt-pkg/cdrom.cc
  2317. msgid "Scanning disc for index files...\n"
  2318. msgstr "Disk, indeks dosyaları için taranıyor...\n"
  2319. #: apt-pkg/cdrom.cc
  2320. #, c-format
  2321. msgid ""
  2322. "Found %zu package indexes, %zu source indexes, %zu translation indexes and "
  2323. "%zu signatures\n"
  2324. msgstr ""
  2325. "%zu paket indeksi, %zu kaynak indeksi, %zu çeviri indeksi ve %zu imza "
  2326. "bulundu\n"
  2327. #: apt-pkg/cdrom.cc
  2328. msgid ""
  2329. "Unable to locate any package files, perhaps this is not a Debian Disc or the "
  2330. "wrong architecture?"
  2331. msgstr ""
  2332. "Hiç paket dosyası bulunamadı. Belirttiğiniz disk bir Debian diski değil ya "
  2333. "da yanlış mimariye sahip."
  2334. #: apt-pkg/cdrom.cc
  2335. #, c-format
  2336. msgid "Found label '%s'\n"
  2337. msgstr "'%s' etiketi bulundu\n"
  2338. #: apt-pkg/cdrom.cc
  2339. msgid "That is not a valid name, try again.\n"
  2340. msgstr "Bu, geçerli bir ad değil, yeniden deneyin.\n"
  2341. #: apt-pkg/cdrom.cc
  2342. #, c-format
  2343. msgid ""
  2344. "This disc is called: \n"
  2345. "'%s'\n"
  2346. msgstr ""
  2347. "Disk adı: \n"
  2348. "'%s'\n"
  2349. #: apt-pkg/cdrom.cc
  2350. msgid "Copying package lists..."
  2351. msgstr "Paket listeleri kopyalanıyor..."
  2352. #: apt-pkg/cdrom.cc
  2353. msgid "Writing new source list\n"
  2354. msgstr "Yeni kaynak listesi yazılıyor\n"
  2355. #: apt-pkg/cdrom.cc
  2356. msgid "Source list entries for this disc are:\n"
  2357. msgstr "Bu disk için olan kaynak listesi girdileri:\n"
  2358. #: apt-pkg/clean.cc
  2359. #, c-format
  2360. msgid "Unable to stat %s."
  2361. msgstr "%s için dosya bilgisi alınamadı."
  2362. #: apt-pkg/contrib/cdromutl.cc
  2363. #, c-format
  2364. msgid "Unable to stat the mount point %s"
  2365. msgstr "Bağlama noktasının (%s) durum bilgisi alınamadı"
  2366. #: apt-pkg/contrib/cdromutl.cc
  2367. msgid "Failed to stat the cdrom"
  2368. msgstr "Cdrom durum bilgisi alınamadı"
  2369. #: apt-pkg/contrib/cmndline.cc
  2370. #, c-format
  2371. msgid ""
  2372. "Command line option '%c' [from %s] is not understood in combination with the "
  2373. "other options."
  2374. msgstr ""
  2375. "'%c' Komut satırı seçeneği [%s içinden] diğer seçeneklerle bir arada "
  2376. "tanınmıyor."
  2377. #: apt-pkg/contrib/cmndline.cc
  2378. #, c-format
  2379. msgid ""
  2380. "Command line option %s is not understood in combination with the other "
  2381. "options"
  2382. msgstr "%s komut satırı seçeneği diğer seçeneklerle bir arada anlaşılamadı"
  2383. #: apt-pkg/contrib/cmndline.cc
  2384. #, c-format
  2385. msgid "Command line option %s is not boolean"
  2386. msgstr "Komut satırı seçeneği %s mantıksal değer değil"
  2387. #: apt-pkg/contrib/cmndline.cc
  2388. #, c-format
  2389. msgid "Option %s requires an argument."
  2390. msgstr "%s seçeneği bir argüman kullanımını gerektirir."
  2391. #: apt-pkg/contrib/cmndline.cc
  2392. #, c-format
  2393. msgid "Option %s: Configuration item specification must have an =<val>."
  2394. msgstr ""
  2395. "%s seçeneği: Yapılandırma öğesi tanımlaması =<değer> şeklinde değer "
  2396. "içermelidir."
  2397. #: apt-pkg/contrib/cmndline.cc
  2398. #, c-format
  2399. msgid "Option %s requires an integer argument, not '%s'"
  2400. msgstr ""
  2401. "%s seçeneği bir tam sayı argümanının kullanımını gerektirir, '%s' değil"
  2402. #: apt-pkg/contrib/cmndline.cc
  2403. #, c-format
  2404. msgid "Option '%s' is too long"
  2405. msgstr "'%s' seçeneği çok uzun"
  2406. #: apt-pkg/contrib/cmndline.cc
  2407. #, c-format
  2408. msgid "Sense %s is not understood, try true or false."
  2409. msgstr "%s algılaması anlaşılamadı, true (doğru) ya da false (yanlış) deneyin."
  2410. #: apt-pkg/contrib/cmndline.cc
  2411. #, c-format
  2412. msgid "Invalid operation %s"
  2413. msgstr "Geçersiz işlem: %s"
  2414. #: apt-pkg/contrib/configuration.cc
  2415. #, c-format
  2416. msgid "Unrecognized type abbreviation: '%c'"
  2417. msgstr "Tanınamayan tür kısaltması: '%c'"
  2418. #: apt-pkg/contrib/configuration.cc
  2419. #, c-format
  2420. msgid "Opening configuration file %s"
  2421. msgstr "Yapılandırma dosyası (%s) açılıyor"
  2422. #: apt-pkg/contrib/configuration.cc
  2423. #, c-format
  2424. msgid "Syntax error %s:%u: Block starts with no name."
  2425. msgstr "Sözdizimi hatası %s:%u: Blok ad olmadan başlıyor."
  2426. #: apt-pkg/contrib/configuration.cc
  2427. #, c-format
  2428. msgid "Syntax error %s:%u: Malformed tag"
  2429. msgstr "Sözdizimi hatası %s:%u: Kötü biçimlendirilmiş etiket"
  2430. #: apt-pkg/contrib/configuration.cc
  2431. #, c-format
  2432. msgid "Syntax error %s:%u: Extra junk after value"
  2433. msgstr "Sözdizimi hatası %s:%u: Değerden sonra ilave gereksiz"
  2434. #: apt-pkg/contrib/configuration.cc
  2435. #, c-format
  2436. msgid "Syntax error %s:%u: Directives can only be done at the top level"
  2437. msgstr "Sözdizimi hatası %s:%u: Yönergeler sadece en üst düzeyde bitebilir"
  2438. #: apt-pkg/contrib/configuration.cc
  2439. #, c-format
  2440. msgid "Syntax error %s:%u: Too many nested includes"
  2441. msgstr "Sözdizimi hatası %s:%u: Çok fazla yuvalanmış 'include'"
  2442. #: apt-pkg/contrib/configuration.cc
  2443. #, c-format
  2444. msgid "Syntax error %s:%u: Included from here"
  2445. msgstr "Sözdizimi hatası %s:%u: Buradan 'include' edilmiş"
  2446. #: apt-pkg/contrib/configuration.cc
  2447. #, c-format
  2448. msgid "Syntax error %s:%u: Unsupported directive '%s'"
  2449. msgstr "Sözdizimi hatası %s:%u: Desteklenmeyen yönerge '%s'"
  2450. #: apt-pkg/contrib/configuration.cc
  2451. #, c-format
  2452. msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
  2453. msgstr ""
  2454. "Sözdizimi hatası %s:%u: clear yönergesi bir seçenek ağacı argümanını "
  2455. "gerektirir"
  2456. #: apt-pkg/contrib/configuration.cc
  2457. #, c-format
  2458. msgid "Syntax error %s:%u: Extra junk at end of file"
  2459. msgstr "Sözdizimi hatası %s:%u: Dosya sonunda ilave gereksiz"
  2460. #: apt-pkg/contrib/fileutl.cc
  2461. #, c-format
  2462. msgid "Problem unlinking the file %s"
  2463. msgstr "%s dosyasından bağ kaldırma sorunu"
  2464. #: apt-pkg/contrib/fileutl.cc
  2465. #, c-format
  2466. msgid "Not using locking for read only lock file %s"
  2467. msgstr "Kilitleme dosyası %s salt okunur olduğu için kilitleme kullanılmıyor"
  2468. #: apt-pkg/contrib/fileutl.cc
  2469. #, c-format
  2470. msgid "Could not open lock file %s"
  2471. msgstr "Kilit dosyası %s açılamadı"
  2472. #: apt-pkg/contrib/fileutl.cc
  2473. #, c-format
  2474. msgid "Not using locking for nfs mounted lock file %s"
  2475. msgstr "nfs ile bağlanmış kilit dosyası %s için kilitleme kullanılmıyor"
  2476. #: apt-pkg/contrib/fileutl.cc
  2477. #, c-format
  2478. msgid "Could not get lock %s"
  2479. msgstr "%s kilidi alınamadı"
  2480. #: apt-pkg/contrib/fileutl.cc
  2481. #, c-format
  2482. msgid "List of files can't be created as '%s' is not a directory"
  2483. msgstr "'%s' dizin olmadığı için dosya listeli oluşturulamıyor"
  2484. #: apt-pkg/contrib/fileutl.cc
  2485. #, c-format
  2486. msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
  2487. msgstr ""
  2488. "'%2$s' dizinindeki '%1$s' normal bir dosya olmadığı için görmezden geliniyor"
  2489. #: apt-pkg/contrib/fileutl.cc
  2490. #, c-format
  2491. msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
  2492. msgstr ""
  2493. "'%2$s' dizinindeki '%1$s' dosyası uzantısı olmadığı için görmezden geliniyor"
  2494. #: apt-pkg/contrib/fileutl.cc
  2495. #, c-format
  2496. msgid ""
  2497. "Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
  2498. msgstr ""
  2499. "'%2$s' dizinindeki '%1$s' dosyası geçersiz bir dosya uzantısı olduğu için "
  2500. "yok sayılıyor"
  2501. #: apt-pkg/contrib/fileutl.cc apt-pkg/contrib/gpgv.cc apt-pkg/deb/debsystem.cc
  2502. #, c-format
  2503. msgid "Waited for %s but it wasn't there"
  2504. msgstr "%s için beklenildi ama o gelmedi"
  2505. #: apt-pkg/contrib/fileutl.cc
  2506. #, c-format
  2507. msgid "Sub-process %s received a segmentation fault."
  2508. msgstr "%s altsüreci bir bölümleme hatası aldı (segmentation fault)."
  2509. #: apt-pkg/contrib/fileutl.cc
  2510. #, c-format
  2511. msgid "Sub-process %s received signal %u."
  2512. msgstr "%s altsüreci %u sinyali aldı."
  2513. #: apt-pkg/contrib/fileutl.cc apt-pkg/contrib/gpgv.cc
  2514. #, c-format
  2515. msgid "Sub-process %s returned an error code (%u)"
  2516. msgstr "%s altsüreci bir hata kodu gönderdi (%u)"
  2517. #: apt-pkg/contrib/fileutl.cc apt-pkg/contrib/gpgv.cc
  2518. #, c-format
  2519. msgid "Sub-process %s exited unexpectedly"
  2520. msgstr "%s altsüreci beklenmeyen bir şekilde sona erdi"
  2521. #: apt-pkg/contrib/fileutl.cc
  2522. #, c-format
  2523. msgid "Problem closing the gzip file %s"
  2524. msgstr "Gzip dosyası %s kapatılamadı"
  2525. #: apt-pkg/contrib/fileutl.cc
  2526. msgid "Failed to create subprocess IPC"
  2527. msgstr "Altsüreç IPC'si oluşturulamadı"
  2528. #: apt-pkg/contrib/fileutl.cc
  2529. msgid "Failed to exec compressor "
  2530. msgstr "Sıkıştırma programı çalıştırılamadı "
  2531. #: apt-pkg/contrib/fileutl.cc
  2532. #, c-format
  2533. msgid "Could not open file %s"
  2534. msgstr "%s dosyası açılamadı"
  2535. #: apt-pkg/contrib/fileutl.cc
  2536. #, c-format
  2537. msgid "Could not open file descriptor %d"
  2538. msgstr "Dosya tanımlayıcı %d açılamadı"
  2539. #: apt-pkg/contrib/fileutl.cc
  2540. #, c-format
  2541. msgid "read, still have %llu to read but none left"
  2542. msgstr "read, %llu bayt okunması gerekli ama hiç kalmamış"
  2543. #: apt-pkg/contrib/fileutl.cc
  2544. #, c-format
  2545. msgid "write, still have %llu to write but couldn't"
  2546. msgstr "write, yazılması gereken %llu bayt yazılamıyor"
  2547. #: apt-pkg/contrib/fileutl.cc
  2548. #, c-format
  2549. msgid "Problem closing the file %s"
  2550. msgstr "%s dosyası kapatılamadı"
  2551. #: apt-pkg/contrib/fileutl.cc
  2552. #, c-format
  2553. msgid "Problem renaming the file %s to %s"
  2554. msgstr "%s dosyası %s olarak yeniden adlandırılamadı"
  2555. #: apt-pkg/contrib/fileutl.cc
  2556. msgid "Problem syncing the file"
  2557. msgstr "Dosya eşitlenirken sorun çıktı"
  2558. #: apt-pkg/contrib/mmap.cc
  2559. msgid "Can't mmap an empty file"
  2560. msgstr "Boş dosya mmap yapılamıyor"
  2561. #: apt-pkg/contrib/mmap.cc
  2562. #, c-format
  2563. msgid "Couldn't make mmap of %llu bytes"
  2564. msgstr "%llu baytlık mmap yapılamaz"
  2565. #: apt-pkg/contrib/mmap.cc
  2566. #, c-format
  2567. msgid "Couldn't duplicate file descriptor %i"
  2568. msgstr "Dosya tanımlayıcı %i çoğaltılamadı"
  2569. #: apt-pkg/contrib/mmap.cc
  2570. msgid "Unable to close mmap"
  2571. msgstr "mmap kapatılamıyor"
  2572. #: apt-pkg/contrib/mmap.cc
  2573. msgid "Unable to synchronize mmap"
  2574. msgstr "mmap eşlenemiyor"
  2575. #: apt-pkg/contrib/mmap.cc
  2576. #, c-format
  2577. msgid "Couldn't make mmap of %lu bytes"
  2578. msgstr "%lu baytlık mmap yapılamaz"
  2579. #: apt-pkg/contrib/mmap.cc
  2580. msgid "Failed to truncate file"
  2581. msgstr "Dosya kesilemedi"
  2582. #: apt-pkg/contrib/mmap.cc
  2583. #, c-format
  2584. msgid ""
  2585. "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. "
  2586. "Current value: %lu. (man 5 apt.conf)"
  2587. msgstr ""
  2588. "Dinamik MMap yerine sığamadı. Lütfen APT::Cache-Start boyutunu artırın. "
  2589. "Kullanımdaki değer: %lu (ayrıntılı bilgi için man 5 apt.conf komutunu "
  2590. "kullanın)"
  2591. #: apt-pkg/contrib/mmap.cc
  2592. #, c-format
  2593. msgid ""
  2594. "Unable to increase the size of the MMap as the limit of %lu bytes is already "
  2595. "reached."
  2596. msgstr "%lu baytlık sınıra ulaşıldığı için MMap boyutu artırılamadı."
  2597. #: apt-pkg/contrib/mmap.cc
  2598. msgid ""
  2599. "Unable to increase size of the MMap as automatic growing is disabled by user."
  2600. msgstr ""
  2601. "Otomatik büyüme kullanıcı tarafından kapatıldığı için MMap boyutu "
  2602. "artırılamadı."
  2603. #: apt-pkg/contrib/progress.cc
  2604. #, c-format
  2605. msgid "%c%s... Error!"
  2606. msgstr "%c%s... Hata!"
  2607. #: apt-pkg/contrib/progress.cc
  2608. #, c-format
  2609. msgid "%c%s... Done"
  2610. msgstr "%c%s... Bitti"
  2611. #: apt-pkg/contrib/progress.cc
  2612. msgid "..."
  2613. msgstr "..."
  2614. #. Print the spinner
  2615. #: apt-pkg/contrib/progress.cc
  2616. #, c-format
  2617. msgid "%c%s... %u%%"
  2618. msgstr "%c%s... %u%%"
  2619. #. TRANSLATOR: d means days, h means hours, min means minutes, s means seconds
  2620. #: apt-pkg/contrib/strutl.cc
  2621. #, c-format
  2622. msgid "%lid %lih %limin %lis"
  2623. msgstr "%li gün %li saat %li dk. %li sn."
  2624. #. TRANSLATOR: h means hours, min means minutes, s means seconds
  2625. #: apt-pkg/contrib/strutl.cc
  2626. #, c-format
  2627. msgid "%lih %limin %lis"
  2628. msgstr "%li saat %li dk. %li sn."
  2629. #. TRANSLATOR: min means minutes, s means seconds
  2630. #: apt-pkg/contrib/strutl.cc
  2631. #, c-format
  2632. msgid "%limin %lis"
  2633. msgstr "%li dk. %li sn."
  2634. #. TRANSLATOR: s means seconds
  2635. #: apt-pkg/contrib/strutl.cc
  2636. #, c-format
  2637. msgid "%lis"
  2638. msgstr "%li sn."
  2639. #: apt-pkg/contrib/strutl.cc
  2640. #, c-format
  2641. msgid "Selection %s not found"
  2642. msgstr "%s seçimi bulunamadı"
  2643. #. TRANSLATOR: an identifier like Packages; Releasefile key indicating
  2644. #. a file like main/binary-amd64/Packages; another identifier like Contents;
  2645. #. filename and linenumber of the sources.list entry currently parsed
  2646. #: apt-pkg/deb/debmetaindex.cc
  2647. #, c-format
  2648. msgid "Target %s wants to acquire the same file (%s) as %s from source %s"
  2649. msgstr "%s hedefi aynı dosyayı (%s) %s olarak %s kaynağından almak istiyor"
  2650. #. TRANSLATOR: an identifier like Packages; Releasefile key indicating
  2651. #. a file like main/binary-amd64/Packages; filename and linenumber of
  2652. #. two sources.list entries
  2653. #: apt-pkg/deb/debmetaindex.cc
  2654. #, c-format
  2655. msgid "Target %s (%s) is configured multiple times in %s and %s"
  2656. msgstr "%s (%s) hedefi %s ve %s konumlarında birden fazla kez yapılandırılmış"
  2657. #: apt-pkg/deb/debmetaindex.cc
  2658. #, c-format
  2659. msgid "Unable to parse Release file %s"
  2660. msgstr "'Release' dosyası (%s) ayrıştırılamadı"
  2661. #: apt-pkg/deb/debmetaindex.cc
  2662. #, c-format
  2663. msgid "No sections in Release file %s"
  2664. msgstr "'Release' dosyası %s içinde hiç bölüm yok"
  2665. #: apt-pkg/deb/debmetaindex.cc
  2666. #, c-format
  2667. msgid "No Hash entry in Release file %s"
  2668. msgstr "'Release' dosyasında (%s) sağlama girdisi yok"
  2669. #: apt-pkg/deb/debmetaindex.cc
  2670. #, c-format
  2671. msgid ""
  2672. "No Hash entry in Release file %s, which is considered strong enough for "
  2673. "security purposes"
  2674. msgstr ""
  2675. #: apt-pkg/deb/debmetaindex.cc
  2676. #, c-format
  2677. msgid "Invalid 'Date' entry in Release file %s"
  2678. msgstr "'Release' dosyasında (%s) geçersiz 'Date' girdisi"
  2679. #: apt-pkg/deb/debmetaindex.cc
  2680. #, c-format
  2681. msgid "Invalid 'Valid-Until' entry in Release file %s"
  2682. msgstr "'Release' dosyasında (%s) geçersiz 'Valid-Until' girdisi"
  2683. #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
  2684. #: apt-pkg/deb/debmetaindex.cc
  2685. #, c-format
  2686. msgid "Conflicting values set for option %s regarding source %s %s"
  2687. msgstr "%s seçeneği için çakışan değer kümesi (kaynak %s %s)"
  2688. #: apt-pkg/deb/debmetaindex.cc
  2689. #, c-format
  2690. msgid "Invalid value set for option %s regarding source %s %s (%s)"
  2691. msgstr "%s seçeneği için geçersiz değer kümesi (kaynak: %s %s) (%s)"
  2692. #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
  2693. #, c-format
  2694. msgid "Unable to parse package file %s (%d)"
  2695. msgstr "Paket dosyası (%s) ayrıştırılamadı (%d)"
  2696. #: apt-pkg/deb/debsystem.cc
  2697. #, c-format
  2698. msgid ""
  2699. "Unable to lock the administration directory (%s), is another process using "
  2700. "it?"
  2701. msgstr ""
  2702. "Yönetim dizini (%s) kilitlenemiyor, başka bir işlem tarafından kullanılıyor "
  2703. "olmasın?"
  2704. #: apt-pkg/deb/debsystem.cc
  2705. #, c-format
  2706. msgid "Unable to lock the administration directory (%s), are you root?"
  2707. msgstr "Yönetim dizini (%s) kilitlenemiyor, root kullanıcısı mısınız?"
  2708. #. TRANSLATORS: the %s contains the recovery command, usually
  2709. #. dpkg --configure -a
  2710. #: apt-pkg/deb/debsystem.cc
  2711. #, c-format
  2712. msgid ""
  2713. "dpkg was interrupted, you must manually run '%s' to correct the problem. "
  2714. msgstr ""
  2715. "dpkg kesintiye uğradı, sorunu düzeltmek için elle '%s' komutunu çalıştırın. "
  2716. #: apt-pkg/deb/debsystem.cc
  2717. msgid "Not locked"
  2718. msgstr "Kilitlenmemiş"
  2719. #: apt-pkg/deb/dpkgpm.cc
  2720. #, c-format
  2721. msgid "Installing %s"
  2722. msgstr "%s kuruluyor"
  2723. #: apt-pkg/deb/dpkgpm.cc
  2724. #, c-format
  2725. msgid "Configuring %s"
  2726. msgstr "%s yapılandırılıyor"
  2727. #: apt-pkg/deb/dpkgpm.cc
  2728. #, c-format
  2729. msgid "Removing %s"
  2730. msgstr "%s kaldırılıyor"
  2731. #: apt-pkg/deb/dpkgpm.cc
  2732. #, c-format
  2733. msgid "Completely removing %s"
  2734. msgstr "%s tamamen kaldırılıyor"
  2735. #: apt-pkg/deb/dpkgpm.cc
  2736. #, c-format
  2737. msgid "Noting disappearance of %s"
  2738. msgstr "%s paketinin kaybolduğu not ediliyor"
  2739. #: apt-pkg/deb/dpkgpm.cc
  2740. #, c-format
  2741. msgid "Running post-installation trigger %s"
  2742. msgstr "Kurulum sonrası tetikleyicisi %s çalıştırılıyor"
  2743. #. FIXME: use a better string after freeze
  2744. #: apt-pkg/deb/dpkgpm.cc
  2745. #, c-format
  2746. msgid "Directory '%s' missing"
  2747. msgstr "'%s' dizini bulunamadı"
  2748. #: apt-pkg/deb/dpkgpm.cc
  2749. #, c-format
  2750. msgid "Could not open file '%s'"
  2751. msgstr "'%s' dosyası açılamadı"
  2752. #: apt-pkg/deb/dpkgpm.cc
  2753. #, c-format
  2754. msgid "Preparing %s"
  2755. msgstr "%s hazırlanıyor"
  2756. #: apt-pkg/deb/dpkgpm.cc
  2757. #, c-format
  2758. msgid "Unpacking %s"
  2759. msgstr "%s paketi açılıyor"
  2760. #: apt-pkg/deb/dpkgpm.cc
  2761. #, c-format
  2762. msgid "Preparing to configure %s"
  2763. msgstr "%s paketini yapılandırmaya hazırlanılıyor"
  2764. #: apt-pkg/deb/dpkgpm.cc
  2765. #, c-format
  2766. msgid "Installed %s"
  2767. msgstr "%s kuruldu"
  2768. #: apt-pkg/deb/dpkgpm.cc
  2769. #, c-format
  2770. msgid "Preparing for removal of %s"
  2771. msgstr "%s paketinin kaldırılmasına hazırlanılıyor"
  2772. #: apt-pkg/deb/dpkgpm.cc
  2773. #, c-format
  2774. msgid "Removed %s"
  2775. msgstr "%s kaldırıldı"
  2776. #: apt-pkg/deb/dpkgpm.cc
  2777. #, c-format
  2778. msgid "Preparing to completely remove %s"
  2779. msgstr "%s paketinin tamamen kaldırılmasına hazırlanılıyor"
  2780. #: apt-pkg/deb/dpkgpm.cc
  2781. #, c-format
  2782. msgid "Completely removed %s"
  2783. msgstr "%s tamamen kaldırıldı"
  2784. #: apt-pkg/deb/dpkgpm.cc
  2785. #, c-format
  2786. msgid "Can not write log (%s)"
  2787. msgstr "Günlük dosyasına yazılamıyor (%s)"
  2788. #: apt-pkg/deb/dpkgpm.cc
  2789. msgid "Is /dev/pts mounted?"
  2790. msgstr "/dev/pts bağlı mı?"
  2791. #: apt-pkg/deb/dpkgpm.cc
  2792. msgid "Operation was interrupted before it could finish"
  2793. msgstr "İşlem yarıda kesildi"
  2794. #: apt-pkg/deb/dpkgpm.cc
  2795. msgid "No apport report written because MaxReports is reached already"
  2796. msgstr ""
  2797. "En fazla rapor miktarına (MaxReports) ulaşıldığı için apport raporu yazılmadı"
  2798. #. check if its not a follow up error
  2799. #: apt-pkg/deb/dpkgpm.cc
  2800. msgid "dependency problems - leaving unconfigured"
  2801. msgstr "bağımlılık sorunları - yapılandırılmamış durumda bırakılıyor"
  2802. #: apt-pkg/deb/dpkgpm.cc
  2803. msgid ""
  2804. "No apport report written because the error message indicates its a followup "
  2805. "error from a previous failure."
  2806. msgstr ""
  2807. "Apport raporu yazılmadı çünkü hata iletisi bu durumun bir önceki hatadan "
  2808. "kaynaklanan bir hata olduğunu belirtiyor."
  2809. #: apt-pkg/deb/dpkgpm.cc
  2810. msgid ""
  2811. "No apport report written because the error message indicates a disk full "
  2812. "error"
  2813. msgstr ""
  2814. "Hata iletisi diskin dolu olduğunu belirttiği için apport raporu yazılamadı"
  2815. #: apt-pkg/deb/dpkgpm.cc
  2816. msgid ""
  2817. "No apport report written because the error message indicates a out of memory "
  2818. "error"
  2819. msgstr ""
  2820. "Hata iletisi bir bellek yetersizliği hatasına işaret ettiği için apport "
  2821. "raporu yazılamadı"
  2822. #: apt-pkg/deb/dpkgpm.cc
  2823. msgid ""
  2824. "No apport report written because the error message indicates an issue on the "
  2825. "local system"
  2826. msgstr ""
  2827. "Hata iletisi yerel bir sistem hatasına işaret ettiği için apport raporu "
  2828. "yazılamadı"
  2829. #: apt-pkg/deb/dpkgpm.cc
  2830. msgid ""
  2831. "No apport report written because the error message indicates a dpkg I/O error"
  2832. msgstr ""
  2833. "Hata iletisi bir dpkg G/Ç hatasına işaret ettiği için apport raporu "
  2834. "yazılamadı"
  2835. #: apt-pkg/depcache.cc
  2836. msgid "Building dependency tree"
  2837. msgstr "Bağımlılık ağacı oluşturuluyor"
  2838. #: apt-pkg/depcache.cc
  2839. msgid "Candidate versions"
  2840. msgstr "Aday sürümler"
  2841. #: apt-pkg/depcache.cc
  2842. msgid "Dependency generation"
  2843. msgstr "Bağımlılık oluşturma"
  2844. #: apt-pkg/depcache.cc
  2845. msgid "Reading state information"
  2846. msgstr "Durum bilgisi okunuyor"
  2847. #: apt-pkg/depcache.cc
  2848. #, c-format
  2849. msgid "Failed to open StateFile %s"
  2850. msgstr "Durum dosyası (StateFile) %s açılamadı"
  2851. #: apt-pkg/depcache.cc
  2852. #, c-format
  2853. msgid "Failed to write temporary StateFile %s"
  2854. msgstr "Geçici durum dosyasına (%s) yazma başarısız oldu"
  2855. #: apt-pkg/edsp.cc
  2856. msgid "Send scenario to solver"
  2857. msgstr "Çözücüye senaryo gönder"
  2858. #: apt-pkg/edsp.cc
  2859. msgid "Send request to solver"
  2860. msgstr "Çözücüye istek gönder"
  2861. #: apt-pkg/edsp.cc
  2862. msgid "Prepare for receiving solution"
  2863. msgstr "Çözüm almak için hazırlan"
  2864. #: apt-pkg/edsp.cc
  2865. msgid "External solver failed without a proper error message"
  2866. msgstr "Harici çözücü düzgün bir hata iletisi göstermeden başarısız oldu"
  2867. #: apt-pkg/edsp.cc
  2868. msgid "Execute external solver"
  2869. msgstr "Harici çözücüyü çalıştır"
  2870. #: apt-pkg/indexcopy.cc
  2871. #, c-format
  2872. msgid "Wrote %i records.\n"
  2873. msgstr "%i kayıt yazıldı.\n"
  2874. #: apt-pkg/indexcopy.cc
  2875. #, c-format
  2876. msgid "Wrote %i records with %i missing files.\n"
  2877. msgstr "%2$i eksik dosyayla %1$i kayıt yazıldı.\n"
  2878. #: apt-pkg/indexcopy.cc
  2879. #, c-format
  2880. msgid "Wrote %i records with %i mismatched files\n"
  2881. msgstr "%2$i eşleşmeyen dosyayla %1$i kayıt yazıldı\n"
  2882. #: apt-pkg/indexcopy.cc
  2883. #, c-format
  2884. msgid "Wrote %i records with %i missing files and %i mismatched files\n"
  2885. msgstr "%2$i eksik dosya ve %3$i eşleşmeyen dosyayla %1$i kayıt yazıldı\n"
  2886. #: apt-pkg/indexcopy.cc
  2887. #, c-format
  2888. msgid "Can't find authentication record for: %s"
  2889. msgstr "%s için kimlik doğrulama kaydı bulunamadı"
  2890. #: apt-pkg/indexcopy.cc
  2891. #, c-format
  2892. msgid "Hash mismatch for: %s"
  2893. msgstr "Sağlama yapılamadı: %s"
  2894. #: apt-pkg/init.cc
  2895. #, c-format
  2896. msgid "Packaging system '%s' is not supported"
  2897. msgstr "Paketleme sistemi '%s' desteklenmiyor"
  2898. #: apt-pkg/init.cc
  2899. msgid "Unable to determine a suitable packaging system type"
  2900. msgstr "Uygun bir paketleme sistemi türü bulunamıyor"
  2901. #: apt-pkg/install-progress.cc
  2902. #, c-format
  2903. msgid "Progress: [%3i%%]"
  2904. msgstr "Durum: [%3i%%]"
  2905. #: apt-pkg/install-progress.cc
  2906. msgid "Running dpkg"
  2907. msgstr "dpkg çalıştırılıyor"
  2908. #: apt-pkg/packagemanager.cc
  2909. #, c-format
  2910. msgid ""
  2911. "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
  2912. "under APT::Immediate-Configure for details. (%d)"
  2913. msgstr ""
  2914. "\"%s\" paketinin anında yapılandırması başarısız oldu. Ayrıntılar için apt."
  2915. "conf(5) rehber sayfasının APT::Immediate-Configure kısmına bakın. (%d)"
  2916. #: apt-pkg/packagemanager.cc
  2917. #, c-format
  2918. msgid "Could not configure '%s'. "
  2919. msgstr "'%s' paketi yapılandırılamadı. "
  2920. #: apt-pkg/packagemanager.cc
  2921. #, c-format
  2922. msgid ""
  2923. "This installation run will require temporarily removing the essential "
  2924. "package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
  2925. "you really want to do it, activate the APT::Force-LoopBreak option."
  2926. msgstr ""
  2927. "Bu kurulum, bir Çakışma/Ön-Bağımlılık döngüsü içerdiği için %s temel "
  2928. "paketinin geçici olarak kaldırılmasını gerektiriyor. Bu durum genellikle "
  2929. "kötü bir durumdur, ama ille de devam etmek isterseniz, APT::Force-LoopBreak "
  2930. "seçeneğini etkinleştirin."
  2931. #: apt-pkg/pkgcache.cc
  2932. msgid "Empty package cache"
  2933. msgstr "Paket önbelleği boş"
  2934. #: apt-pkg/pkgcache.cc
  2935. msgid "The package cache file is corrupted"
  2936. msgstr "Paket önbelleği dosyası bozulmuş"
  2937. #: apt-pkg/pkgcache.cc
  2938. msgid "The package cache file is an incompatible version"
  2939. msgstr "Paket önbelleği dosyası uyumsuz bir sürümde"
  2940. #: apt-pkg/pkgcache.cc
  2941. msgid "The package cache file is corrupted, it is too small"
  2942. msgstr "Paket önbellek dosyası bozulmuş, çok küçük"
  2943. #: apt-pkg/pkgcache.cc
  2944. #, c-format
  2945. msgid "This APT does not support the versioning system '%s'"
  2946. msgstr "Bu APT '%s' sürümleme sistemini desteklemiyor"
  2947. #: apt-pkg/pkgcache.cc
  2948. #, c-format
  2949. msgid "The package cache was built for different architectures: %s vs %s"
  2950. msgstr ""
  2951. "Paket önbelleği farklı bir mimari için oluşturulmuş: biri %s, diğeri %s"
  2952. #: apt-pkg/pkgcache.cc
  2953. msgid "Depends"
  2954. msgstr "Bağımlılıklar"
  2955. #: apt-pkg/pkgcache.cc
  2956. msgid "PreDepends"
  2957. msgstr "ÖnBağımlılıklar"
  2958. #: apt-pkg/pkgcache.cc
  2959. msgid "Suggests"
  2960. msgstr "Önerdikleri"
  2961. #: apt-pkg/pkgcache.cc
  2962. msgid "Recommends"
  2963. msgstr "Tavsiye ettikleri"
  2964. #: apt-pkg/pkgcache.cc
  2965. msgid "Conflicts"
  2966. msgstr "Çakışmalar"
  2967. #: apt-pkg/pkgcache.cc
  2968. msgid "Replaces"
  2969. msgstr "Değiştirilenler"
  2970. #: apt-pkg/pkgcache.cc
  2971. msgid "Obsoletes"
  2972. msgstr "Eskiyenler"
  2973. #: apt-pkg/pkgcache.cc
  2974. msgid "Breaks"
  2975. msgstr "Bozdukları"
  2976. #: apt-pkg/pkgcache.cc
  2977. msgid "Enhances"
  2978. msgstr "Geliştirdikleri"
  2979. #: apt-pkg/pkgcache.cc
  2980. msgid "required"
  2981. msgstr "gerekli"
  2982. #: apt-pkg/pkgcache.cc
  2983. msgid "important"
  2984. msgstr "önemli"
  2985. #: apt-pkg/pkgcache.cc
  2986. msgid "standard"
  2987. msgstr "standart"
  2988. #: apt-pkg/pkgcache.cc
  2989. msgid "optional"
  2990. msgstr "seçimlik"
  2991. #: apt-pkg/pkgcache.cc
  2992. msgid "extra"
  2993. msgstr "ilave"
  2994. #: apt-pkg/pkgcachegen.cc
  2995. msgid "Cache has an incompatible versioning system"
  2996. msgstr "Önbelleğin uyumsuz bir sürümleme sistemi var"
  2997. #. TRANSLATOR: The first placeholder is a package name,
  2998. #. the other two should be copied verbatim as they include debug info
  2999. #: apt-pkg/pkgcachegen.cc
  3000. #, c-format
  3001. msgid "Error occurred while processing %s (%s%d)"
  3002. msgstr "%s paketi işlenirken sorunlarla karşılaşıldı (%s%d)"
  3003. #: apt-pkg/pkgcachegen.cc
  3004. msgid "Wow, you exceeded the number of package names this APT is capable of."
  3005. msgstr "Vay canına, bu APT'nin alabileceği paket adları sayısını aştınız."
  3006. #: apt-pkg/pkgcachegen.cc
  3007. msgid "Wow, you exceeded the number of versions this APT is capable of."
  3008. msgstr "Vay canına, bu APT'nin alabileceği sürüm sayısını aştınız."
  3009. #: apt-pkg/pkgcachegen.cc
  3010. msgid "Wow, you exceeded the number of descriptions this APT is capable of."
  3011. msgstr "Vay canına, bu APT'nin alabileceği açıklama sayısını aştınız."
  3012. #: apt-pkg/pkgcachegen.cc
  3013. msgid "Wow, you exceeded the number of dependencies this APT is capable of."
  3014. msgstr "Vay canına, bu APT'nin alabileceği bağımlılık sayısını aştınız."
  3015. #: apt-pkg/pkgcachegen.cc
  3016. msgid "Reading package lists"
  3017. msgstr "Paket listeleri okunuyor"
  3018. #: apt-pkg/pkgcachegen.cc
  3019. msgid "IO Error saving source cache"
  3020. msgstr "Kaynak önbelleği kaydedilirken GÇ Hatası"
  3021. #: apt-pkg/pkgrecords.cc
  3022. #, c-format
  3023. msgid "Index file type '%s' is not supported"
  3024. msgstr "İndeks dosyası türü '%s' desteklenmiyor"
  3025. #: apt-pkg/policy.cc
  3026. #, c-format
  3027. msgid ""
  3028. "The value '%s' is invalid for APT::Default-Release as such a release is not "
  3029. "available in the sources"
  3030. msgstr ""
  3031. "APT::Default-Release için '%s' değeri geçersizdir, çünkü kaynaklarda böyle "
  3032. "bir sürüm yok"
  3033. #: apt-pkg/policy.cc
  3034. #, c-format
  3035. msgid "Invalid record in the preferences file %s, no Package header"
  3036. msgstr "%s tercihler dosyasında geçersiz kayıt, Paket başlığı yok"
  3037. #: apt-pkg/policy.cc
  3038. #, c-format
  3039. msgid "Did not understand pin type %s"
  3040. msgstr "İğne türü %s anlaşılamadı"
  3041. #: apt-pkg/policy.cc
  3042. #, c-format
  3043. msgid "%s: Value %s is outside the range of valid pin priorities (%d to %d)"
  3044. msgstr "%s: %s değeri geçerli iğne önceliği aralığının dışında (%d - %d arası)"
  3045. #: apt-pkg/policy.cc
  3046. msgid "No priority (or zero) specified for pin"
  3047. msgstr "İğne için öncelik belirlenmedi (ya da sıfır)"
  3048. #. TRANSLATOR: %u is a line number, the first %s is a filename of a file with the extension "second %s" and the third %s is a unique identifier for bugreports
  3049. #: apt-pkg/sourcelist.cc
  3050. #, c-format
  3051. msgid "Malformed entry %u in %s file %s (%s)"
  3052. msgstr "Hatalı girdi satır %u %s dosya %s (%s)"
  3053. #: apt-pkg/sourcelist.cc
  3054. #, c-format
  3055. msgid "Opening %s"
  3056. msgstr "%s Açılıyor"
  3057. #: apt-pkg/sourcelist.cc
  3058. #, c-format
  3059. msgid "Malformed line %u in source list %s (type)"
  3060. msgstr "Kaynak listesinin (%2$s) %1$u numaralı satırı hatalı (tür)"
  3061. #: apt-pkg/sourcelist.cc
  3062. #, c-format
  3063. msgid "Type '%s' is not known on line %u in source list %s"
  3064. msgstr "'%s' türü bilinmiyor. (Satır: %u, Kaynak Listesi: %s)"
  3065. #: apt-pkg/sourcelist.cc
  3066. #, c-format
  3067. msgid "Malformed stanza %u in source list %s (type)"
  3068. msgstr "%2$s kaynak listesinin %1$u kısmı hatalı (tür)"
  3069. #: apt-pkg/sourcelist.cc
  3070. #, c-format
  3071. msgid "Type '%s' is not known on stanza %u in source list %s"
  3072. msgstr "'%s' türü bilinmiyor (girdi: %u, kaynak listesi: %s)"
  3073. #: apt-pkg/sourcelist.cc
  3074. #, c-format
  3075. msgid "Unsupported file %s given on commandline"
  3076. msgstr ""
  3077. #: apt-pkg/srcrecords.cc
  3078. msgid "You must put some 'source' URIs in your sources.list"
  3079. msgstr "'sources.list' dosyası içine bazı 'source' adresleri koymalısınız"
  3080. #: apt-pkg/tagfile.cc
  3081. #, fuzzy, c-format
  3082. msgid "Cannot convert %s to integer: out of range"
  3083. msgstr "%s metni tam sayıya dönüştürülemiyor"
  3084. #: apt-pkg/update.cc
  3085. #, c-format
  3086. msgid "Failed to fetch %s %s"
  3087. msgstr "%s alınamadı %s"
  3088. #: apt-pkg/update.cc
  3089. msgid ""
  3090. "Some index files failed to download. They have been ignored, or old ones "
  3091. "used instead."
  3092. msgstr ""
  3093. "Bazı indeks dosyaları indirilemedi. Bu dosyalar yok sayıldılar ya da önceki "
  3094. "sürümleri kullanıldı."
  3095. #: apt-pkg/upgrade.cc
  3096. msgid "Calculating upgrade"
  3097. msgstr "Yükseltme hesaplanıyor"
  3098. #~ msgid "Problem unlinking %s"
  3099. #~ msgstr "%s bağı koparılırken sorun çıktı"
  3100. #~ msgid "Failed to unlink %s"
  3101. #~ msgstr "%s bağı koparılamadı"
  3102. #~ msgid ""
  3103. #~ "Usage: apt-cache [options] command\n"
  3104. #~ " apt-cache [options] show pkg1 [pkg2 ...]\n"
  3105. #~ "\n"
  3106. #~ "apt-cache is a low-level tool used to query information\n"
  3107. #~ "from APT's binary cache files\n"
  3108. #~ msgstr ""
  3109. #~ "Kullanım: apt-cache [seçenekler] komut\n"
  3110. #~ " apt-cache [seçenekler] show paket1 [paket2 ...]\n"
  3111. #~ "\n"
  3112. #~ "apt-cache APT'nin ikili paket önbelleğindeki dosyaları\n"
  3113. #~ "sorgulamakta kullanılan alt seviye bir araçtır.\n"
  3114. #~ msgid "Commands:"
  3115. #~ msgstr "Komutlar:"
  3116. #~ msgid ""
  3117. #~ "Options:\n"
  3118. #~ " -h This help text.\n"
  3119. #~ " -p=? The package cache.\n"
  3120. #~ " -s=? The source cache.\n"
  3121. #~ " -q Disable progress indicator.\n"
  3122. #~ " -i Show only important deps for the unmet command.\n"
  3123. #~ " -c=? Read this configuration file\n"
  3124. #~ " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  3125. #~ "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
  3126. #~ msgstr ""
  3127. #~ "Options:\n"
  3128. #~ " -h Bu yardım metni.\n"
  3129. #~ " -p=? Paket önbelleği.\n"
  3130. #~ " -s=? Kaynak önbelleği.\n"
  3131. #~ " -q İlerleme göstergesini kapat.\n"
  3132. #~ " -i unmet komutunda sadece önemli bağımlılıkları görüntüle.\n"
  3133. #~ " -c=? Belirtilen yapılandırma dosyasını kullan\n"
  3134. #~ " -o=? Herhangi bir yapılandırma seçeneğini ayarla, örneğin -o dir::"
  3135. #~ "cache=/tmp\n"
  3136. #~ "Ayrıntılı bilgi için apt-cache(8) ve apt.conf(5) rehber sayfalarına göz "
  3137. #~ "atın.\n"
  3138. #~ msgid ""
  3139. #~ "Usage: apt [options] command\n"
  3140. #~ "\n"
  3141. #~ "CLI for apt.\n"
  3142. #~ msgstr ""
  3143. #~ "Kullanım: apt [seçenekler] komut\n"
  3144. #~ "\n"
  3145. #~ "apt için komut satırı arayüzü.\n"
  3146. #, fuzzy
  3147. #~ msgid ""
  3148. #~ "Options:\n"
  3149. #~ " -h This help text\n"
  3150. #~ " -d CD-ROM mount point\n"
  3151. #~ " -r Rename a recognized CD-ROM\n"
  3152. #~ " -m No mounting\n"
  3153. #~ " -f Fast mode, don't check package files\n"
  3154. #~ " -a Thorough scan mode\n"
  3155. #~ " --no-auto-detect Do not try to auto detect drive and mount point\n"
  3156. #~ " -c=? Read this configuration file\n"
  3157. #~ " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  3158. #~ "See fstab(5)\n"
  3159. #~ msgstr ""
  3160. #~ "Seçenekler:\n"
  3161. #~ " -h Bu yardım metni.\n"
  3162. #~ " -q Günlük tutmaya uygun çıktı - İlerleme göstergesi yok\n"
  3163. #~ " -qq Hata olmadığı müddetçe çıktıya bir şey yazma\n"
  3164. #~ " -s Bir şey yapma. Sadece ne yapılacağını söyler.\n"
  3165. #~ " -f read/write auto/manual marking in the given file\n"
  3166. #~ " -c=? Belirtilen yapılandırma dosyası kullan\n"
  3167. #~ " -o=? Yapılandırma seçeneği ayarla, örneğin -o dir::cache=/tmp\n"
  3168. #~ "Ayrıntılı bilgi için apt-mark(8) ve apt.conf(5) rehber sayfalarına\n"
  3169. #~ "bakabilirsiniz."
  3170. #~ msgid ""
  3171. #~ "Options:\n"
  3172. #~ " -h This help text.\n"
  3173. #~ " -c=? Read this configuration file\n"
  3174. #~ " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  3175. #~ msgstr ""
  3176. #~ "Seçenekler:\n"
  3177. #~ " -h Bu yardım dosyası.\n"
  3178. #~ " -c=? Belirtilen ayar dosyasını görüntüler\n"
  3179. #~ " -o=? İsteğe bağlı ayar seçeneği belirtmenizi sağlar, örneğin -o dir::"
  3180. #~ "cache=/tmp\n"
  3181. #~ msgid ""
  3182. #~ "Options:\n"
  3183. #~ " -h This help text.\n"
  3184. #~ " -q Loggable output - no progress indicator\n"
  3185. #~ " -qq No output except for errors\n"
  3186. #~ " -s No-act. Just prints what would be done.\n"
  3187. #~ " -f read/write auto/manual marking in the given file\n"
  3188. #~ " -c=? Read this configuration file\n"
  3189. #~ " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  3190. #~ "See the apt-mark(8) and apt.conf(5) manual pages for more information."
  3191. #~ msgstr ""
  3192. #~ "Seçenekler:\n"
  3193. #~ " -h Bu yardım metni.\n"
  3194. #~ " -q Günlük tutmaya uygun çıktı - İlerleme göstergesi yok\n"
  3195. #~ " -qq Hata olmadığı müddetçe çıktıya bir şey yazma\n"
  3196. #~ " -s Bir şey yapma. Sadece ne yapılacağını söyler.\n"
  3197. #~ " -f read/write auto/manual marking in the given file\n"
  3198. #~ " -c=? Belirtilen yapılandırma dosyası kullan\n"
  3199. #~ " -o=? Yapılandırma seçeneği ayarla, örneğin -o dir::cache=/tmp\n"
  3200. #~ "Ayrıntılı bilgi için apt-mark(8) ve apt.conf(5) rehber sayfalarına\n"
  3201. #~ "bakabilirsiniz."
  3202. #~ msgid ""
  3203. #~ "Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
  3204. #~ "\n"
  3205. #~ "apt-sortpkgs is a simple tool to sort package files. The -s option is "
  3206. #~ "used\n"
  3207. #~ "to indicate what kind of file it is.\n"
  3208. #~ "\n"
  3209. #~ "Options:\n"
  3210. #~ " -h This help text\n"
  3211. #~ " -s Use source file sorting\n"
  3212. #~ " -c=? Read this configuration file\n"
  3213. #~ " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  3214. #~ msgstr ""
  3215. #~ "Kullanım: apt-sortpkgs [seçenekler] dosya1 [dosya2 ...]\n"
  3216. #~ "\n"
  3217. #~ "apt-sortpkgs, paket dosyalarını sıralayan basit bir araçtır.\n"
  3218. #~ "-s seçeneği ne tür bir dosya olduğunu göstermekte kullanılır.\n"
  3219. #~ "\n"
  3220. #~ "Seçenekler:\n"
  3221. #~ " -h Bu yardım metni\n"
  3222. #~ " -s Kaynak dosyası sıralamayı kullan\n"
  3223. #~ " -c=? Belirtilen yapılandırma dosyasını oku\n"
  3224. #~ " -o=? Herhangi bir yapılandırma seçeneği ayarla, örneğin -o dir::cache=/"
  3225. #~ "tmp\n"
  3226. #~ msgid "Use --allow-insecure-repositories to force the update"
  3227. #~ msgstr ""
  3228. #~ "Buna rağmen güncellemeyi yapmak için --allow-insecure-repositories "
  3229. #~ "seçeneğini kullanın"
  3230. #~ msgid ""
  3231. #~ "The data from '%s' is not signed. Packages from that repository can not "
  3232. #~ "be authenticated."
  3233. #~ msgstr ""
  3234. #~ "'%s' deposundan alınan veri imzalanmamış. Bu depodan gelen paketlerin "
  3235. #~ "aslına uygunluğu denetlenemeyecek."
  3236. #~ msgid ""
  3237. #~ "The repository '%s' does not have a Release file. This is deprecated, "
  3238. #~ "please contact the owner of the repository."
  3239. #~ msgstr ""
  3240. #~ "'%s' deposunun Release dosyası yok. Bu tür depolar gelecekte kullanımdan "
  3241. #~ "kaldırılacaktır, lütfen depo sahibiyle iletişime geçin."
  3242. #~ msgid "Child process failed"
  3243. #~ msgstr "Alt süreç başarısız"
  3244. #, fuzzy
  3245. #~ msgid "Must specifc at least one srv record"
  3246. #~ msgstr "En az bir adet url/dosya-adı çifti belirtilmelidir"
  3247. #~ msgid "Failed to create pipes"
  3248. #~ msgstr "Boru oluşturulamadı"
  3249. #~ msgid "Failed to exec gzip "
  3250. #~ msgstr "Gzip çalıştırılamadı "
  3251. #~ msgid "Total dependency version space: "
  3252. #~ msgstr "Toplam bağımlılık sürümü alanı: "
  3253. #~ msgid "%s %s for %s compiled on %s %s\n"
  3254. #~ msgstr "%s %s (%s için) %s %s tarihinde derlendi\n"
  3255. #~ msgid "You don't have enough free space in %s"
  3256. #~ msgstr "%s üzerinde yeterli boş alan yok"
  3257. #~ msgid "Done"
  3258. #~ msgstr "Bitti"
  3259. #~ msgid "Hit "
  3260. #~ msgstr "Bağlandı "
  3261. #~ msgid "Get:"
  3262. #~ msgstr "Alınıyor: "
  3263. #~ msgid "Ign "
  3264. #~ msgstr "Yoksay "
  3265. #~ msgid "Err "
  3266. #~ msgstr "Hata "
  3267. #~ msgid "Malformed stanza %u in source list %s (URI parse)"
  3268. #~ msgstr ""
  3269. #~ "Kaynak listesinin (%2$s) %1$u numaralı girdisi hatalı (URI ayrıştırma)"
  3270. #~ msgid "Malformed line %lu in source list %s ([option] unparseable)"
  3271. #~ msgstr ""
  3272. #~ "Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı ([seçenek] "
  3273. #~ "ayrıştırılamıyor)"
  3274. #~ msgid "Malformed line %lu in source list %s ([option] too short)"
  3275. #~ msgstr ""
  3276. #~ "Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı ([seçenek] çok kısa)"
  3277. #~ msgid "Malformed line %lu in source list %s ([%s] is not an assignment)"
  3278. #~ msgstr ""
  3279. #~ "Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı ([%3$s] bir atama "
  3280. #~ "değil)"
  3281. #~ msgid "Malformed line %lu in source list %s ([%s] has no key)"
  3282. #~ msgstr ""
  3283. #~ "Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı ([%3$s] seçeneğinin "
  3284. #~ "anahtarı yok)"
  3285. #~ msgid "Malformed line %lu in source list %s ([%s] key %s has no value)"
  3286. #~ msgstr ""
  3287. #~ "Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı ([%3$s] %4$s "
  3288. #~ "anahtarına değer atanmamış)"
  3289. #~ msgid "Malformed line %lu in source list %s (URI)"
  3290. #~ msgstr "Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı (URI)"
  3291. #~ msgid "Malformed line %lu in source list %s (dist)"
  3292. #~ msgstr "Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı (dist)"
  3293. #~ msgid "Malformed line %lu in source list %s (URI parse)"
  3294. #~ msgstr ""
  3295. #~ "Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı (URI ayrıştırma)"
  3296. #~ msgid "Malformed line %lu in source list %s (absolute dist)"
  3297. #~ msgstr "Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı (mutlak dist)"
  3298. #~ msgid "Malformed line %lu in source list %s (dist parse)"
  3299. #~ msgstr ""
  3300. #~ "Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı (dağıtım ayrıştırma)"
  3301. #~ msgid "Package %s %s was not found while processing file dependencies"
  3302. #~ msgstr "Dosya bağımlılıkları işlenirken %s %s paketi bulunamadı"
  3303. #~ msgid "Couldn't stat source package list %s"
  3304. #~ msgstr "Kaynak listesinin (%s) dosya bilgisi alınamadı"
  3305. #~ msgid "Collecting File Provides"
  3306. #~ msgstr "Dosya Sağlananları Toplanıyor"
  3307. #~ msgid "Unable to find hash sum for '%s' in Release file"
  3308. #~ msgstr "'Release' dosyasında '%s' için uygun bir sağlama toplamı bulunamadı"
  3309. #~ msgid "Vendor block %s contains no fingerprint"
  3310. #~ msgstr "Sağlayıcı bloğu %s parmak izi içermiyor"
  3311. #~ msgid "Unable to parse package file %s (2)"
  3312. #~ msgstr "Paket dosyası %s ayrıştırılamadı (2)"
  3313. #~ msgid "No keyring installed in %s."
  3314. #~ msgstr "%s dizininde kurulu bir anahtar yok."
  3315. #~ msgid "Failed to create FILE*"
  3316. #~ msgstr "DOSYA* oluşturulamadı"
  3317. #~ msgid "Is stdout a terminal?"
  3318. #~ msgstr "stdout bir uçbirim mi?"
  3319. #~ msgid "ioctl(TIOCGWINSZ) failed"
  3320. #~ msgstr "ioctl(TIOCGWINSZ) başarısız oldu"
  3321. #, fuzzy
  3322. #~ msgid "Internal error, Upgrade broke stuff"
  3323. #~ msgstr "İç hata, AllUpgrade bazı şeyleri bozdu"
  3324. #~ msgid "%s not a valid DEB package."
  3325. #~ msgstr "%s geçerli bir DEB paketi değil."
  3326. #~ msgid ""
  3327. #~ "Using CD-ROM mount point %s\n"
  3328. #~ "Mounting CD-ROM\n"
  3329. #~ msgstr ""
  3330. #~ "CD-ROM bağlama noktası %s kullanılıyor\n"
  3331. #~ "CD-ROM bağlanıyor\n"
  3332. #~ msgid ""
  3333. #~ "Could not patch %s with mmap and with file operation usage - the patch "
  3334. #~ "seems to be corrupt."
  3335. #~ msgstr ""
  3336. #~ "%s mmap ve dosya işlem kullanımı ile yamalanamadı - yama bozuk gibi "
  3337. #~ "duruyor."
  3338. #~ msgid ""
  3339. #~ "Could not patch %s with mmap (but no mmap specific fail) - the patch "
  3340. #~ "seems to be corrupt."
  3341. #~ msgstr ""
  3342. #~ "%s mmap ile yamalanamadı (mmap'e özel bir hata değil) - yama bozuk gibi "
  3343. #~ "duruyor."
  3344. #~ msgid "Ignore unavailable target release '%s' of package '%s'"
  3345. #~ msgstr "Mevcut olmayan hedef '%s' sürüm '%s' paketini ihmal et"
  3346. #~ msgid "Downloading %s %s"
  3347. #~ msgstr "İndiriliyor %s %s"
  3348. #~ msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
  3349. #~ msgstr ""
  3350. #~ "Bu dosya geçerli bir DEB arşivi değil, '%s', '%s' ya da '%s' üyesi yok"
  3351. #~ msgid "MD5Sum mismatch"
  3352. #~ msgstr "MD5 toplamı eşleşmiyor"
  3353. #~ msgid ""
  3354. #~ "I wasn't able to locate a file for the %s package. This might mean you "
  3355. #~ "need to manually fix this package."
  3356. #~ msgstr ""
  3357. #~ "%s paketindeki dosyalardan biri konumlandırılamadı. Bu durum, bu paketi "
  3358. #~ "elle düzeltmeniz gerektiği anlamına gelebilir."
  3359. #~ msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
  3360. #~ msgstr ""
  3361. #~ "Günlük yazılamadı, openpty() başarısız oldu (/dev/pts bağlanmadı mı?)\n"
  3362. #~ msgid "File %s doesn't start with a clearsigned message"
  3363. #~ msgstr "%s dosyası açıkimzalı bir iletiyle başlamıyor"