tr.po 122 KB

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