tr.po 113 KB

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