tr.po 120 KB

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