tr.po 108 KB

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